/* * Copyright (c) 1991, 1992 Paul Kranenburg * Copyright (c) 1993 Branko Lankester * Copyright (c) 1993-1996 Rick Sladkey * Copyright (c) 1996-1999 Wichert Akkerman * Copyright (c) 2012 Denys Vlasenko * Copyright (c) 2012-2018 The strace developers. * All rights reserved. * * SPDX-License-Identifier: LGPL-2.1-or-later */ #include "defs.h" #include #include #include "xlat/modetypes.h" void print_symbolic_mode_t(const unsigned int mode) { const char *ifmt = ""; if (mode & S_IFMT) ifmt = xlookup(modetypes, mode & S_IFMT); 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)); } void print_numeric_umode_t(const unsigned short mode) { tprintf("%#03ho", mode); } void print_numeric_long_umask(const unsigned long mode) { tprintf("%#03lo", mode); }