2015-12-17 20:56:48 +03:00
/*
* Copyright ( c ) 1991 , 1992 Paul Kranenburg < pk @ cs . few . eur . nl >
* Copyright ( c ) 1993 Branko Lankester < branko @ hacktic . nl >
* Copyright ( c ) 1993 - 1996 Rick Sladkey < jrs @ world . std . com >
* Copyright ( c ) 1996 - 1999 Wichert Akkerman < wichert @ cistron . nl >
* Copyright ( c ) 2012 Denys Vlasenko < vda . linux @ googlemail . com >
2018-06-14 14:00:00 +03:00
* Copyright ( c ) 2012 - 2018 The strace developers .
2015-12-17 20:56:48 +03:00
* All rights reserved .
*
2018-12-10 03:00:00 +03:00
* SPDX - License - Identifier : LGPL - 2.1 - or - later
2015-12-17 20:56:48 +03:00
*/
2014-12-06 06:53:16 +03:00
# include "defs.h"
# include <fcntl.h>
2015-03-28 20:21:09 +03:00
# include <sys/stat.h>
2014-12-06 06:53:16 +03:00
# include "xlat/modetypes.h"
2016-08-03 17:05:39 +03:00
void
print_symbolic_mode_t ( const unsigned int mode )
2014-12-06 06:53:16 +03:00
{
2018-04-04 16:32:05 +03:00
const char * ifmt = " " ;
2016-08-03 17:05:39 +03:00
2018-04-04 16:32:05 +03:00
if ( mode & S_IFMT )
2016-08-03 17:05:39 +03:00
ifmt = xlookup ( modetypes , mode & S_IFMT ) ;
2018-04-04 16:32:05 +03:00
if ( ! ifmt | | xlat_verbose ( xlat_verbosity ) ! = XLAT_STYLE_ABBREV )
tprintf ( " %#03o " , mode ) ;
if ( ! ifmt | | xlat_verbose ( xlat_verbosity ) = = XLAT_STYLE_RAW )
return ;
( xlat_verbose ( xlat_verbosity ) = = XLAT_STYLE_ABBREV
? tprintf : tprintf_comment ) ( " %s%s%s%s%s%#03o " ,
ifmt , ifmt [ 0 ] ? " | " : " " ,
( mode & S_ISUID ) ? " S_ISUID| " : " " ,
( mode & S_ISGID ) ? " S_ISGID| " : " " ,
( mode & S_ISVTX ) ? " S_ISVTX| " : " " ,
mode & ~ ( S_IFMT | S_ISUID | S_ISGID | S_ISVTX ) ) ;
2016-08-03 17:05:39 +03:00
}
void
print_numeric_umode_t ( const unsigned short mode )
{
tprintf ( " %#03ho " , mode ) ;
}
void
print_numeric_long_umask ( const unsigned long mode )
{
tprintf ( " %#03lo " , mode ) ;
2014-12-06 06:53:16 +03:00
}