1 /* filemode.c -- make a string describing file modes
2 Copyright (C) 1985, 1990, 1993 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
22 #include <sys/types.h>
27 # define S_IRUSR S_IREAD
29 # define S_IRUSR 00400
35 # define S_IWUSR S_IWRITE
37 # define S_IWUSR 00200
43 # define S_IXUSR S_IEXEC
45 # define S_IXUSR 00100
49 #ifdef STAT_MACROS_BROKEN
60 #endif /* STAT_MACROS_BROKEN. */
62 #if !defined(S_ISBLK) && defined(S_IFBLK)
63 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
65 #if !defined(S_ISCHR) && defined(S_IFCHR)
66 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
68 #if !defined(S_ISDIR) && defined(S_IFDIR)
69 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
71 #if !defined(S_ISREG) && defined(S_IFREG)
72 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
74 #if !defined(S_ISFIFO) && defined(S_IFIFO)
75 #define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
77 #if !defined(S_ISLNK) && defined(S_IFLNK)
78 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
80 #if !defined(S_ISSOCK) && defined(S_IFSOCK)
81 #define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
83 #if !defined(S_ISMPB) && defined(S_IFMPB) /* V7 */
84 #define S_ISMPB(m) (((m) & S_IFMT) == S_IFMPB)
85 #define S_ISMPC(m) (((m) & S_IFMT) == S_IFMPC)
87 #if !defined(S_ISNWK) && defined(S_IFNWK) /* HP/UX */
88 #define S_ISNWK(m) (((m) & S_IFMT) == S_IFNWK)
92 static char ftypelet ();
96 /* filemodestring - fill in string STR with an ls-style ASCII
97 representation of the st_mode field of file stats block STATP.
98 10 characters are stored in STR; no terminating null is added.
99 The characters stored in STR are:
101 0 File type. 'd' for directory, 'c' for character
102 special, 'b' for block special, 'm' for multiplex,
103 'l' for symbolic link, 's' for socket, 'p' for fifo,
104 '-' for regular, '?' for any other file type
106 1 'r' if the owner may read, '-' otherwise.
108 2 'w' if the owner may write, '-' otherwise.
110 3 'x' if the owner may execute, 's' if the file is
111 set-user-id, '-' otherwise.
112 'S' if the file is set-user-id, but the execute
115 4 'r' if group members may read, '-' otherwise.
117 5 'w' if group members may write, '-' otherwise.
119 6 'x' if group members may execute, 's' if the file is
120 set-group-id, '-' otherwise.
121 'S' if it is set-group-id but not executable.
123 7 'r' if any user may read, '-' otherwise.
125 8 'w' if any user may write, '-' otherwise.
127 9 'x' if any user may execute, 't' if the file is "sticky"
128 (will be retained in swap space after execution), '-'
130 'T' if the file is sticky but not executable. */
133 filemodestring (statp
, str
)
137 mode_string (statp
->st_mode
, str
);
140 /* Like filemodestring, but only the relevant part of the `struct stat'
141 is given as an argument. */
144 mode_string (mode
, str
)
148 str
[0] = ftypelet ((long) mode
);
149 rwx ((mode
& 0700) << 0, &str
[1]);
150 rwx ((mode
& 0070) << 3, &str
[4]);
151 rwx ((mode
& 0007) << 6, &str
[7]);
155 /* Return a character indicating the type of file described by
158 'b' for block special files
159 'c' for character special files
160 'm' for multiplexor files
161 'l' for symbolic links
164 '-' for regular files
165 '?' for any other file type. */
204 /* Look at read, write, and execute bits in BITS and set
205 flags in CHARS accordingly. */
212 chars
[0] = (bits
& S_IRUSR
) ? 'r' : '-';
213 chars
[1] = (bits
& S_IWUSR
) ? 'w' : '-';
214 chars
[2] = (bits
& S_IXUSR
) ? 'x' : '-';
217 /* Set the 's' and 't' flags in file attributes string CHARS,
218 according to the file mode BITS. */
229 /* Set-uid, but not executable by owner. */
239 /* Set-gid, but not executable by group. */
249 /* Sticky, but not executable by others. */