2 * Copyright (c) 2000-2005 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
22 /* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */
24 * Copyright (c) 1982, 1986, 1989, 1993
25 * The Regents of the University of California. All rights reserved.
26 * (c) UNIX System Laboratories, Inc.
27 * All or some portions of this file are derived from material licensed
28 * to the University of California by American Telephone and Telegraph
29 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
30 * the permission of UNIX System Laboratories, Inc.
32 * Redistribution and use in source and binary forms, with or without
33 * modification, are permitted provided that the following conditions
35 * 1. Redistributions of source code must retain the above copyright
36 * notice, this list of conditions and the following disclaimer.
37 * 2. Redistributions in binary form must reproduce the above copyright
38 * notice, this list of conditions and the following disclaimer in the
39 * documentation and/or other materials provided with the distribution.
40 * 3. All advertising materials mentioning features or use of this software
41 * must display the following acknowledgement:
42 * This product includes software developed by the University of
43 * California, Berkeley and its contributors.
44 * 4. Neither the name of the University nor the names of its contributors
45 * may be used to endorse or promote products derived from this software
46 * without specific prior written permission.
48 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
49 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
52 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
60 * @(#)stat.h 8.9 (Berkeley) 8/17/94
67 #include <sys/_types.h>
68 #include <sys/cdefs.h>
71 * [XSI] The blkcnt_t, blksize_t, dev_t, ino_t, mode_t, nlink_t, uid_t,
72 * gid_t, off_t, and time_t types shall be defined as described in
76 typedef __darwin_blkcnt_t blkcnt_t
;
81 typedef __darwin_blksize_t blksize_t
;
86 typedef __darwin_dev_t dev_t
; /* device number */
91 typedef __darwin_ino_t ino_t
; /* inode number */
96 typedef __darwin_mode_t mode_t
;
101 typedef __uint16_t nlink_t
; /* link count */
106 typedef __darwin_uid_t uid_t
; /* user id */
111 typedef __darwin_gid_t gid_t
;
116 typedef __darwin_off_t off_t
;
122 typedef __darwin_time_t
time_t;
125 /* [XSI] The timespec structure may be defined as described in <time.h> */
129 time_t tv_sec
; /* seconds */
130 long tv_nsec
; /* and nanoseconds */
132 // LP64todo - should this move?
134 /* LP64 version of struct timespec. time_t is a long and must grow when
135 * we're dealing with a 64-bit process.
136 * WARNING - keep in sync with struct timespec
138 struct user_timespec
{
139 user_time_t tv_sec
; /* seconds */
140 __int64_t tv_nsec
; /* and nanoseconds */
143 #endif /* _TIMESPEC */
146 #ifndef _POSIX_C_SOURCE
148 * XXX So deprecated, it would make your head spin
150 * The old stat structure. In fact, this is not used by the kernel at all,
151 * and should not be used by user space, and should be removed from this
152 * header file entirely (along with the unused cvtstat() prototype in
156 __uint16_t st_dev
; /* inode's device */
157 ino_t st_ino
; /* inode's number */
158 mode_t st_mode
; /* inode protection mode */
159 nlink_t st_nlink
; /* number of hard links */
160 __uint16_t st_uid
; /* user ID of the file's owner */
161 __uint16_t st_gid
; /* group ID of the file's group */
162 __uint16_t st_rdev
; /* device type */
163 __int32_t st_size
; /* file size, in bytes */
164 struct timespec st_atimespec
; /* time of last access */
165 struct timespec st_mtimespec
; /* time of last data modification */
166 struct timespec st_ctimespec
; /* time of last file status change */
167 __int32_t st_blksize
; /* optimal blocksize for I/O */
168 __int32_t st_blocks
; /* blocks allocated for file */
169 __uint32_t st_flags
; /* user defined flags for file */
170 __uint32_t st_gen
; /* file generation number */
172 #endif /* !_POSIX_C_SOURCE */
175 * [XSI] This structure is used as the second parameter to the fstat(),
176 * lstat(), and stat() functions.
179 dev_t st_dev
; /* [XSI] ID of device containing file */
180 ino_t st_ino
; /* [XSI] File serial number */
181 mode_t st_mode
; /* [XSI] Mode of file (see below) */
182 nlink_t st_nlink
; /* [XSI] Number of hard links */
183 uid_t st_uid
; /* [XSI] User ID of the file */
184 gid_t st_gid
; /* [XSI] Group ID of the file */
185 dev_t st_rdev
; /* [XSI] Device ID */
186 #ifndef _POSIX_C_SOURCE
187 struct timespec st_atimespec
; /* time of last access */
188 struct timespec st_mtimespec
; /* time of last data modification */
189 struct timespec st_ctimespec
; /* time of last status change */
191 time_t st_atime
; /* [XSI] Time of last access */
192 long st_atimensec
; /* nsec of last access */
193 time_t st_mtime
; /* [XSI] Last data modification time */
194 long st_mtimensec
; /* last data modification nsec */
195 time_t st_ctime
; /* [XSI] Time of last status change */
196 long st_ctimensec
; /* nsec of last status change */
198 off_t st_size
; /* [XSI] file size, in bytes */
199 blkcnt_t st_blocks
; /* [XSI] blocks allocated for file */
200 blksize_t st_blksize
; /* [XSI] optimal blocksize for I/O */
201 __uint32_t st_flags
; /* user defined flags for file */
202 __uint32_t st_gen
; /* file generation number */
203 __int32_t st_lspare
; /* RESERVED: DO NOT USE! */
204 __int64_t st_qspare
[2]; /* RESERVED: DO NOT USE! */
207 // LP64todo - should this move?
209 #include <machine/types.h>
211 /* LP64 version of struct stat. time_t (see timespec) is a long and must
212 * grow when we're dealing with a 64-bit process.
213 * WARNING - keep in sync with struct stat
215 #if __DARWIN_ALIGN_NATURAL
216 #pragma options align=natural
220 dev_t st_dev
; /* [XSI] ID of device containing file */
221 ino_t st_ino
; /* [XSI] File serial number */
222 mode_t st_mode
; /* [XSI] Mode of file (see below) */
223 nlink_t st_nlink
; /* [XSI] Number of hard links */
224 uid_t st_uid
; /* [XSI] User ID of the file */
225 gid_t st_gid
; /* [XSI] Group ID of the file */
226 dev_t st_rdev
; /* [XSI] Device ID */
227 #ifndef _POSIX_C_SOURCE
228 struct user_timespec st_atimespec
; /* time of last access */
229 struct user_timespec st_mtimespec
; /* time of last data modification */
230 struct user_timespec st_ctimespec
; /* time of last status change */
232 user_time_t st_atime
; /* [XSI] Time of last access */
233 __int64_t st_atimensec
; /* nsec of last access */
234 user_time_t st_mtime
; /* [XSI] Last data modification */
235 __int64_t st_mtimensec
; /* last data modification nsec */
236 user_time_t st_ctime
; /* [XSI] Time of last status change */
237 __int64_t st_ctimensec
; /* nsec of last status change */
239 off_t st_size
; /* [XSI] File size, in bytes */
240 blkcnt_t st_blocks
; /* [XSI] Blocks allocated for file */
241 blksize_t st_blksize
; /* [XSI] Optimal blocksize for I/O */
242 __uint32_t st_flags
; /* user defined flags for file */
243 __uint32_t st_gen
; /* file generation number */
244 __int32_t st_lspare
; /* RESERVED: DO NOT USE! */
245 __int64_t st_qspare
[2]; /* RESERVED: DO NOT USE! */
248 #if __DARWIN_ALIGN_NATURAL
249 #pragma options align=reset
252 extern void munge_stat(struct stat
*sbp
, struct user_stat
*usbp
);
257 #ifndef _POSIX_C_SOURCE
258 #define st_atime st_atimespec.tv_sec
259 #define st_mtime st_mtimespec.tv_sec
260 #define st_ctime st_ctimespec.tv_sec
264 * [XSI] The following are symbolic names for the values of type mode_t. They
269 #define S_IFMT 0170000 /* [XSI] type of file mask */
270 #define S_IFIFO 0010000 /* [XSI] named pipe (fifo) */
271 #define S_IFCHR 0020000 /* [XSI] character special */
272 #define S_IFDIR 0040000 /* [XSI] directory */
273 #define S_IFBLK 0060000 /* [XSI] block special */
274 #define S_IFREG 0100000 /* [XSI] regular */
275 #define S_IFLNK 0120000 /* [XSI] symbolic link */
276 #define S_IFSOCK 0140000 /* [XSI] socket */
277 #ifndef _POSIX_C_SOURCE
278 #define S_IFWHT 0160000 /* whiteout */
279 #define S_IFXATTR 0200000 /* extended attribute */
283 /* Read, write, execute/search by owner */
284 #define S_IRWXU 0000700 /* [XSI] RWX mask for owner */
285 #define S_IRUSR 0000400 /* [XSI] R for owner */
286 #define S_IWUSR 0000200 /* [XSI] W for owner */
287 #define S_IXUSR 0000100 /* [XSI] X for owner */
288 /* Read, write, execute/search by group */
289 #define S_IRWXG 0000070 /* [XSI] RWX mask for group */
290 #define S_IRGRP 0000040 /* [XSI] R for group */
291 #define S_IWGRP 0000020 /* [XSI] W for group */
292 #define S_IXGRP 0000010 /* [XSI] X for group */
293 /* Read, write, execute/search by others */
294 #define S_IRWXO 0000007 /* [XSI] RWX mask for other */
295 #define S_IROTH 0000004 /* [XSI] R for other */
296 #define S_IWOTH 0000002 /* [XSI] W for other */
297 #define S_IXOTH 0000001 /* [XSI] X for other */
299 #define S_ISUID 0004000 /* [XSI] set user id on execution */
300 #define S_ISGID 0002000 /* [XSI] set group id on execution */
301 #define S_ISVTX 0001000 /* [XSI] directory restrcted delete */
303 #ifndef _POSIX_C_SOURCE
304 #define S_ISTXT S_ISVTX /* sticky bit: not supported */
305 #define S_IREAD S_IRUSR /* backward compatability */
306 #define S_IWRITE S_IWUSR /* backward compatability */
307 #define S_IEXEC S_IXUSR /* backward compatability */
312 * [XSI] The following macros shall be provided to test whether a file is
313 * of the specified type. The value m supplied to the macros is the value
314 * of st_mode from a stat structure. The macro shall evaluate to a non-zero
315 * value if the test is true; 0 if the test is false.
317 #define S_ISBLK(m) (((m) & 0170000) == 0060000) /* block special */
318 #define S_ISCHR(m) (((m) & 0170000) == 0020000) /* char special */
319 #define S_ISDIR(m) (((m) & 0170000) == 0040000) /* directory */
320 #define S_ISFIFO(m) (((m) & 0170000) == 0010000) /* fifo or socket */
321 #define S_ISREG(m) (((m) & 0170000) == 0100000) /* regular file */
322 #define S_ISLNK(m) (((m) & 0170000) == 0120000) /* symbolic link */
323 #define S_ISSOCK(m) (((m) & 0170000) == 0140000) /* socket */
324 #ifndef _POSIX_C_SOURCE
325 #define S_ISWHT(m) (((m) & 0170000) == 0160000) /* whiteout */
326 #define S_ISXATTR(m) (((m) & 0200000) == 0200000) /* extended attribute */
330 * [XSI] The implementation may implement message queues, semaphores, or
331 * shared memory objects as distinct file types. The following macros
332 * shall be provided to test whether a file is of the specified type.
333 * The value of the buf argument supplied to the macros is a pointer to
334 * a stat structure. The macro shall evaluate to a non-zero value if
335 * the specified object is implemented as a distinct file type and the
336 * specified file type is contained in the stat structure referenced by
337 * buf. Otherwise, the macro shall evaluate to zero.
339 * NOTE: The current implementation does not do this, although
340 * this may change in future revisions, and co currently only
341 * provides these macros to ensure source compatability with
342 * implementations which do.
344 #define S_TYPEISMQ(buf) (0) /* Test for a message queue */
345 #define S_TYPEISSEM(buf) (0) /* Test for a semaphore */
346 #define S_TYPEISSHM(buf) (0) /* Test for a shared memory object */
349 * [TYM] The implementation may implement typed memory objects as distinct
350 * file types, and the following macro shall test whether a file is of the
351 * specified type. The value of the buf argument supplied to the macros is
352 * a pointer to a stat structure. The macro shall evaluate to a non-zero
353 * value if the specified object is implemented as a distinct file type and
354 * the specified file type is contained in the stat structure referenced by
355 * buf. Otherwise, the macro shall evaluate to zero.
357 * NOTE: The current implementation does not do this, although
358 * this may change in future revisions, and co currently only
359 * provides this macro to ensure source compatability with
360 * implementations which do.
362 #define S_TYPEISTMO(buf) (0) /* Test for a typed memory object */
365 #ifndef _POSIX_C_SOURCE
366 #define ACCESSPERMS (S_IRWXU|S_IRWXG|S_IRWXO) /* 0777 */
368 #define ALLPERMS (S_ISUID|S_ISGID|S_ISTXT|S_IRWXU|S_IRWXG|S_IRWXO)
370 #define DEFFILEMODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)
372 #define S_BLKSIZE 512 /* block size used in the stat struct */
375 * Definitions of flags stored in file flags word.
377 * Super-user and owner changeable flags.
379 #define UF_SETTABLE 0x0000ffff /* mask of owner changeable flags */
380 #define UF_NODUMP 0x00000001 /* do not dump file */
381 #define UF_IMMUTABLE 0x00000002 /* file may not be changed */
382 #define UF_APPEND 0x00000004 /* writes to file may only append */
383 #define UF_OPAQUE 0x00000008 /* directory is opaque wrt. union */
385 * Super-user changeable flags.
387 #define SF_SETTABLE 0xffff0000 /* mask of superuser changeable flags */
388 #define SF_ARCHIVED 0x00010000 /* file is archived */
389 #define SF_IMMUTABLE 0x00020000 /* file may not be changed */
390 #define SF_APPEND 0x00040000 /* writes to file may only append */
394 * Shorthand abbreviations of above.
396 #define OPAQUE (UF_OPAQUE)
397 #define APPEND (UF_APPEND | SF_APPEND)
398 #define IMMUTABLE (UF_IMMUTABLE | SF_IMMUTABLE)
406 int chmod(const char *, mode_t
);
407 int fchmod(int, mode_t
);
408 int fstat(int, struct stat
*);
409 int lstat(const char *, struct stat
*);
410 int mkdir(const char *, mode_t
);
411 int mkfifo(const char *, mode_t
);
412 int stat(const char *, struct stat
*);
413 int mknod(const char *, mode_t
, dev_t
);
414 mode_t
umask(mode_t
);
416 #ifndef _POSIX_C_SOURCE
419 typedef struct _filesec
*filesec_t
;
422 int chflags(const char *, __uint32_t
);
423 int chmodx_np(const char *, filesec_t
);
424 int fchflags(int, __uint32_t
);
425 int fchmodx_np(int, filesec_t
);
426 int fstatx_np(int, struct stat
*, filesec_t
);
427 int lstatx_np(const char *, struct stat
*, filesec_t
);
428 int mkdirx_np(const char *, filesec_t
);
429 int mkfifox_np(const char *, filesec_t
);
430 int statx_np(const char *, struct stat
*, filesec_t
);
431 int umaskx_np(filesec_t
);
432 #endif /* POSIX_C_SOURCE */
435 #endif /* !_SYS_STAT_H_ */