1 /* Provide a more complete sys/stat header file.
2 Copyright (C) 2006, 2007 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 Foundation,
16 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
18 /* Written by Eric Blake, Paul Eggert, and Jim Meyering. */
20 #ifndef _GL_SYS_STAT_H
21 #define _GL_SYS_STAT_H
23 /* This file is supposed to be used on platforms where <sys/stat.h> is
24 incomplete. It is intended to provide definitions and prototypes
25 needed by an application. Start with what the system provides. */
26 #include @ABSOLUTE_SYS_STAT_H@
29 # define S_IFMT 0170000
32 #if STAT_MACROS_BROKEN
48 # define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
56 # define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
64 # define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
70 #ifndef S_ISDOOR /* Solaris 2.5 and up */
71 # define S_ISDOOR(m) 0
76 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
78 # define S_ISFIFO(m) 0
84 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
90 #ifndef S_ISMPB /* V7 */
92 # define S_ISMPB(m) (((m) & S_IFMT) == S_IFMPB)
93 # define S_ISMPC(m) (((m) & S_IFMT) == S_IFMPC)
100 #ifndef S_ISNAM /* Xenix */
102 # define S_ISNAM(m) (((m) & S_IFMT) == S_IFNAM)
104 # define S_ISNAM(m) 0
108 #ifndef S_ISNWK /* HP/UX */
110 # define S_ISNWK(m) (((m) & S_IFMT) == S_IFNWK)
112 # define S_ISNWK(m) 0
116 #ifndef S_ISPORT /* Solaris 10 and up */
117 # define S_ISPORT(m) 0
122 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
124 # define S_ISREG(m) 0
130 # define S_ISSOCK(m) (((m) & S_IFMT) == S_IFSOCK)
132 # define S_ISSOCK(m) 0
138 # define S_TYPEISMQ(p) 0
142 # define S_TYPEISTMO(p) 0
148 # define S_TYPEISSEM(p) (S_ISNAM ((p)->st_mode) && (p)->st_rdev == S_INSEM)
150 # define S_TYPEISSEM(p) 0
156 # define S_TYPEISSHM(p) (S_ISNAM ((p)->st_mode) && (p)->st_rdev == S_INSHD)
158 # define S_TYPEISSHM(p) 0
162 /* high performance ("contiguous data") */
164 # define S_ISCTG(p) 0
167 /* Cray DMF (data migration facility): off line, with data */
169 # define S_ISOFD(p) 0
172 /* Cray DMF (data migration facility): off line, with no data */
174 # define S_ISOFL(p) 0
177 /* 4.4BSD whiteout */
179 # define S_ISWHT(m) 0
182 /* If any of the following are undefined,
183 define them to their de facto standard values. */
185 # define S_ISUID 04000
188 # define S_ISGID 02000
191 /* S_ISVTX is a common extension to POSIX. */
193 # define S_ISVTX 01000
196 #if !S_IRUSR && S_IREAD
197 # define S_IRUSR S_IREAD
200 # define S_IRUSR 00400
203 # define S_IRGRP (S_IRUSR >> 3)
206 # define S_IROTH (S_IRUSR >> 6)
209 #if !S_IWUSR && S_IWRITE
210 # define S_IWUSR S_IWRITE
213 # define S_IWUSR 00200
216 # define S_IWGRP (S_IWUSR >> 3)
219 # define S_IWOTH (S_IWUSR >> 6)
222 #if !S_IXUSR && S_IEXEC
223 # define S_IXUSR S_IEXEC
226 # define S_IXUSR 00100
229 # define S_IXGRP (S_IXUSR >> 3)
232 # define S_IXOTH (S_IXUSR >> 6)
236 # define S_IRWXU (S_IRUSR | S_IWUSR | S_IXUSR)
239 # define S_IRWXG (S_IRGRP | S_IWGRP | S_IXGRP)
242 # define S_IRWXO (S_IROTH | S_IWOTH | S_IXOTH)
245 /* S_IXUGO is a common extension to POSIX. */
247 # define S_IXUGO (S_IXUSR | S_IXGRP | S_IXOTH)
251 # define S_IRWXUGO (S_IRWXU | S_IRWXG | S_IRWXO)
254 /* mingw does not support symlinks, therefore it does not have lstat. But
255 without links, stat does just fine. */
260 /* mingw's _mkdir() function has 1 argument, but we pass 2 arguments.
261 Additionally, it declares _mkdir (and depending on compile flags, an
262 alias mkdir), only in the nonstandard io.h. */
263 #if ! HAVE_DECL_MKDIR && HAVE_IO_H
267 rpl_mkdir (char const *name, mode_t mode)
269 return _mkdir (name);
272 # define mkdir rpl_mkdir
275 #endif /* _GL_SYS_STAT_H */