2 Copyright (C) Andrew Tridgell 1996
3 Copyright (C) Paul Mackerras 1996
4 Copyright (C) 2001 by Martin Pool <mbp@samba.org>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 * Produce a string representation of Unix mode bits like that used by
27 * @param buf buffer of at least 11 characters
29 void permstring(char *perms
,
32 static const char *perm_map
= "rwxrwxrwx";
35 strcpy(perms
, "----------");
38 if (mode
& (1<<i
)) perms
[9-i
] = perm_map
[8-i
];
41 /* Handle setuid/sticky bits. You might think the indices are
42 * off by one, but remember there's a type char at the
45 perms
[3] = (mode
& S_IXUSR
) ? 's' : 'S';
48 perms
[6] = (mode
& S_IXGRP
) ? 's' : 'S';
52 perms
[9] = (mode
& S_IXOTH
) ? 't' : 'T';
55 if (S_ISLNK(mode
)) perms
[0] = 'l';
56 if (S_ISDIR(mode
)) perms
[0] = 'd';
57 if (S_ISBLK(mode
)) perms
[0] = 'b';
58 if (S_ISCHR(mode
)) perms
[0] = 'c';
59 if (S_ISSOCK(mode
)) perms
[0] = 's';
60 if (S_ISFIFO(mode
)) perms
[0] = 'p';