]> git.saurik.com Git - apple/xnu.git/blame - bsd/sys/stat.h
xnu-792.6.22.tar.gz
[apple/xnu.git] / bsd / sys / stat.h
CommitLineData
1c79356b 1/*
91447636 2 * Copyright (c) 2000-2005 Apple Computer, Inc. All rights reserved.
1c79356b
A
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
e5568f75
A
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.
1c79356b 11 *
e5568f75
A
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
1c79356b
A
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
e5568f75
A
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
18 * under the License.
1c79356b
A
19 *
20 * @APPLE_LICENSE_HEADER_END@
21 */
22/* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */
23/*-
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.
31 *
32 * Redistribution and use in source and binary forms, with or without
33 * modification, are permitted provided that the following conditions
34 * are met:
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.
47 *
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
58 * SUCH DAMAGE.
59 *
60 * @(#)stat.h 8.9 (Berkeley) 8/17/94
61 */
62
63
64#ifndef _SYS_STAT_H_
65#define _SYS_STAT_H_
66
91447636
A
67#include <sys/_types.h>
68#include <sys/cdefs.h>
69
70/*
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
73 * <sys/types.h>.
74 */
75#ifndef _BLKCNT_T
76typedef __darwin_blkcnt_t blkcnt_t;
77#define _BLKCNT_T
78#endif
79
80#ifndef _BLKSIZE_T
81typedef __darwin_blksize_t blksize_t;
82#define _BLKSIZE_T
83#endif
84
85#ifndef _DEV_T
86typedef __darwin_dev_t dev_t; /* device number */
87#define _DEV_T
88#endif
89
90#ifndef _INO_T
91typedef __darwin_ino_t ino_t; /* inode number */
92#define _INO_T
93#endif
94
95#ifndef _MODE_T
96typedef __darwin_mode_t mode_t;
97#define _MODE_T
98#endif
99
100#ifndef _NLINK_T
101typedef __uint16_t nlink_t; /* link count */
102#define _NLINK_T
103#endif
104
105#ifndef _UID_T
106typedef __darwin_uid_t uid_t; /* user id */
107#define _UID_T
108#endif
109
110#ifndef _GID_T
111typedef __darwin_gid_t gid_t;
112#define _GID_T
113#endif
1c79356b 114
91447636
A
115#ifndef _OFF_T
116typedef __darwin_off_t off_t;
117#define _OFF_T
118#endif
119
120#ifndef _TIME_T
121#define _TIME_T
122typedef __darwin_time_t time_t;
123#endif
124
125/* [XSI] The timespec structure may be defined as described in <time.h> */
126#ifndef _TIMESPEC
127#define _TIMESPEC
128struct timespec {
129 time_t tv_sec; /* seconds */
130 long tv_nsec; /* and nanoseconds */
131};
132// LP64todo - should this move?
133#ifdef KERNEL
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
137 */
138struct user_timespec {
139 user_time_t tv_sec; /* seconds */
140 __int64_t tv_nsec; /* and nanoseconds */
141};
142#endif // KERNEL
143#endif /* _TIMESPEC */
144
145
146#ifndef _POSIX_C_SOURCE
147/*
148 * XXX So deprecated, it would make your head spin
149 *
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
153 * vnode_internal.h).
154 */
1c79356b 155struct ostat {
91447636
A
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 */
1c79356b
A
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 */
91447636
A
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 */
1c79356b 171};
91447636 172#endif /* !_POSIX_C_SOURCE */
1c79356b 173
91447636
A
174/*
175 * [XSI] This structure is used as the second parameter to the fstat(),
176 * lstat(), and stat() functions.
177 */
1c79356b 178struct stat {
91447636
A
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
1c79356b
A
187 struct timespec st_atimespec; /* time of last access */
188 struct timespec st_mtimespec; /* time of last data modification */
91447636 189 struct timespec st_ctimespec; /* time of last status change */
1c79356b 190#else
91447636
A
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 */
197#endif
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! */
1c79356b
A
205};
206
91447636
A
207// LP64todo - should this move?
208#ifdef KERNEL
209#include <machine/types.h>
1c79356b 210
91447636
A
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
214 */
215#if __DARWIN_ALIGN_NATURAL
216#pragma options align=natural
1c79356b
A
217#endif
218
91447636
A
219struct user_stat {
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 */
231#else
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 */
1c79356b 238#endif
91447636
A
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! */
246};
247
248#if __DARWIN_ALIGN_NATURAL
249#pragma options align=reset
250#endif
251
252extern void munge_stat(struct stat *sbp, struct user_stat *usbp);
1c79356b 253
91447636 254#endif // KERNEL
1c79356b 255
91447636
A
256
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
1c79356b
A
261#endif
262
91447636
A
263/*
264 * [XSI] The following are symbolic names for the values of type mode_t. They
265 * are bitmap values.
266 */
267#ifndef S_IFMT
268/* File type */
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 */
280#endif
1c79356b 281
91447636
A
282/* File mode */
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 */
1c79356b 298
91447636
A
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 */
302
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 */
1c79356b 308#endif
91447636 309#endif /* !S_IFMT */
1c79356b 310
91447636
A
311/*
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.
316 */
55e303ae 317#define S_ISBLK(m) (((m) & 0170000) == 0060000) /* block special */
91447636
A
318#define S_ISCHR(m) (((m) & 0170000) == 0020000) /* char special */
319#define S_ISDIR(m) (((m) & 0170000) == 0040000) /* directory */
55e303ae 320#define S_ISFIFO(m) (((m) & 0170000) == 0010000) /* fifo or socket */
91447636 321#define S_ISREG(m) (((m) & 0170000) == 0100000) /* regular file */
55e303ae
A
322#define S_ISLNK(m) (((m) & 0170000) == 0120000) /* symbolic link */
323#define S_ISSOCK(m) (((m) & 0170000) == 0140000) /* socket */
91447636 324#ifndef _POSIX_C_SOURCE
55e303ae 325#define S_ISWHT(m) (((m) & 0170000) == 0160000) /* whiteout */
91447636 326#define S_ISXATTR(m) (((m) & 0200000) == 0200000) /* extended attribute */
1c79356b
A
327#endif
328
91447636
A
329/*
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.
338 *
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.
343 */
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 */
347
348/*
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.
356 *
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.
361 */
362#define S_TYPEISTMO(buf) (0) /* Test for a typed memory object */
363
364
365#ifndef _POSIX_C_SOURCE
1c79356b
A
366#define ACCESSPERMS (S_IRWXU|S_IRWXG|S_IRWXO) /* 0777 */
367 /* 7777 */
368#define ALLPERMS (S_ISUID|S_ISGID|S_ISTXT|S_IRWXU|S_IRWXG|S_IRWXO)
369 /* 0666 */
370#define DEFFILEMODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)
371
372#define S_BLKSIZE 512 /* block size used in the stat struct */
373
374/*
375 * Definitions of flags stored in file flags word.
376 *
377 * Super-user and owner changeable flags.
378 */
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 */
384/*
385 * Super-user changeable flags.
386 */
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 */
391
392#ifdef KERNEL
393/*
394 * Shorthand abbreviations of above.
395 */
396#define OPAQUE (UF_OPAQUE)
397#define APPEND (UF_APPEND | SF_APPEND)
398#define IMMUTABLE (UF_IMMUTABLE | SF_IMMUTABLE)
399#endif
400#endif
401
402#ifndef KERNEL
1c79356b
A
403
404__BEGIN_DECLS
91447636
A
405/* [XSI] */
406int chmod(const char *, mode_t);
407int fchmod(int, mode_t);
408int fstat(int, struct stat *);
409int lstat(const char *, struct stat *);
410int mkdir(const char *, mode_t);
411int mkfifo(const char *, mode_t);
412int stat(const char *, struct stat *);
413int mknod(const char *, mode_t, dev_t);
414mode_t umask(mode_t);
415
416#ifndef _POSIX_C_SOURCE
417#ifndef _FILESEC_T
418struct _filesec;
419typedef struct _filesec *filesec_t;
420#define _FILESEC_T
1c79356b 421#endif
91447636
A
422int chflags(const char *, __uint32_t);
423int chmodx_np(const char *, filesec_t);
424int fchflags(int, __uint32_t);
425int fchmodx_np(int, filesec_t);
426int fstatx_np(int, struct stat *, filesec_t);
427int lstatx_np(const char *, struct stat *, filesec_t);
428int mkdirx_np(const char *, filesec_t);
429int mkfifox_np(const char *, filesec_t);
430int statx_np(const char *, struct stat *, filesec_t);
431int umaskx_np(filesec_t);
432#endif /* POSIX_C_SOURCE */
1c79356b
A
433__END_DECLS
434#endif
435#endif /* !_SYS_STAT_H_ */