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., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
23 #include <sys/types.h>
28 # define S_IRUSR S_IREAD
30 # define S_IRUSR 00400
36 # define S_IWUSR S_IWRITE
38 # define S_IWUSR 00200
44 # define S_IXUSR S_IEXEC
46 # define S_IXUSR 00100
50 #ifdef STAT_MACROS_BROKEN
61 #endif /* STAT_MACROS_BROKEN. */
63 #if !defined(S_ISBLK) && defined(S_IFBLK)
64 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
66 #if !defined(S_ISCHR) && defined(S_IFCHR)
67 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
69 #if !defined(S_ISDIR) && defined(S_IFDIR)
70 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
72 #if !defined(S_ISREG) && defined(S_IFREG)
73 #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
75 #if !defined(S_ISFIFO) && defined(S_IFIFO)
76 #define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
78 #if !defined(S_ISLNK) && defined(S_IFLNK)
79 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
81 #if !defined(S_ISSOCK) && defined(S_IFSOCK)
82 #define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
84 #if !defined(S_ISMPB) && defined(S_IFMPB) /* V7 */
85 #define S_ISMPB(m) (((m) & S_IFMT) == S_IFMPB)
86 #define S_ISMPC(m) (((m) & S_IFMT) == S_IFMPC)
88 #if !defined(S_ISNWK) && defined(S_IFNWK) /* HP/UX */
89 #define S_ISNWK(m) (((m) & S_IFMT) == S_IFNWK)
93 static char ftypelet ();
97 /* filemodestring - fill in string STR with an ls-style ASCII
98 representation of the st_mode field of file stats block STATP.
99 10 characters are stored in STR; no terminating null is added.
100 The characters stored in STR are:
102 0 File type. 'd' for directory, 'c' for character
103 special, 'b' for block special, 'm' for multiplex,
104 'l' for symbolic link, 's' for socket, 'p' for fifo,
105 '-' for regular, '?' for any other file type
107 1 'r' if the owner may read, '-' otherwise.
109 2 'w' if the owner may write, '-' otherwise.
111 3 'x' if the owner may execute, 's' if the file is
112 set-user-id, '-' otherwise.
113 'S' if the file is set-user-id, but the execute
116 4 'r' if group members may read, '-' otherwise.
118 5 'w' if group members may write, '-' otherwise.
120 6 'x' if group members may execute, 's' if the file is
121 set-group-id, '-' otherwise.
122 'S' if it is set-group-id but not executable.
124 7 'r' if any user may read, '-' otherwise.
126 8 'w' if any user may write, '-' otherwise.
128 9 'x' if any user may execute, 't' if the file is "sticky"
129 (will be retained in swap space after execution), '-'
131 'T' if the file is sticky but not executable. */
134 filemodestring (statp
, str
)
138 mode_string (statp
->st_mode
, str
);
141 /* Like filemodestring, but only the relevant part of the `struct stat'
142 is given as an argument. */
145 mode_string (mode
, str
)
149 str
[0] = ftypelet ((long) mode
);
150 rwx ((mode
& 0700) << 0, &str
[1]);
151 rwx ((mode
& 0070) << 3, &str
[4]);
152 rwx ((mode
& 0007) << 6, &str
[7]);
156 /* Return a character indicating the type of file described by
159 'b' for block special files
160 'c' for character special files
161 'm' for multiplexor files
162 'l' for symbolic links
165 '-' for regular files
166 '?' for any other file type. */
205 /* Look at read, write, and execute bits in BITS and set
206 flags in CHARS accordingly. */
213 chars
[0] = (bits
& S_IRUSR
) ? 'r' : '-';
214 chars
[1] = (bits
& S_IWUSR
) ? 'w' : '-';
215 chars
[2] = (bits
& S_IXUSR
) ? 'x' : '-';
218 /* Set the 's' and 't' flags in file attributes string CHARS,
219 according to the file mode BITS. */
230 /* Set-uid, but not executable by owner. */
240 /* Set-gid, but not executable by group. */
250 /* Sticky, but not executable by others. */
258 /* arch-tag: 4340830c-15a5-47d2-b45f-1d43c45a91bb
259 (do not change this comment) */