xref: /illumos-gate/usr/src/boot/sys/sys/stat.h (revision 199767f8)
1*199767f8SToomas Soome /*-
2*199767f8SToomas Soome  * Copyright (c) 1982, 1986, 1989, 1993
3*199767f8SToomas Soome  *	The Regents of the University of California.  All rights reserved.
4*199767f8SToomas Soome  * (c) UNIX System Laboratories, Inc.
5*199767f8SToomas Soome  * All or some portions of this file are derived from material licensed
6*199767f8SToomas Soome  * to the University of California by American Telephone and Telegraph
7*199767f8SToomas Soome  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8*199767f8SToomas Soome  * the permission of UNIX System Laboratories, Inc.
9*199767f8SToomas Soome  *
10*199767f8SToomas Soome  * Redistribution and use in source and binary forms, with or without
11*199767f8SToomas Soome  * modification, are permitted provided that the following conditions
12*199767f8SToomas Soome  * are met:
13*199767f8SToomas Soome  * 1. Redistributions of source code must retain the above copyright
14*199767f8SToomas Soome  *    notice, this list of conditions and the following disclaimer.
15*199767f8SToomas Soome  * 2. Redistributions in binary form must reproduce the above copyright
16*199767f8SToomas Soome  *    notice, this list of conditions and the following disclaimer in the
17*199767f8SToomas Soome  *    documentation and/or other materials provided with the distribution.
18*199767f8SToomas Soome  * 4. Neither the name of the University nor the names of its contributors
19*199767f8SToomas Soome  *    may be used to endorse or promote products derived from this software
20*199767f8SToomas Soome  *    without specific prior written permission.
21*199767f8SToomas Soome  *
22*199767f8SToomas Soome  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23*199767f8SToomas Soome  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24*199767f8SToomas Soome  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25*199767f8SToomas Soome  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26*199767f8SToomas Soome  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27*199767f8SToomas Soome  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28*199767f8SToomas Soome  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29*199767f8SToomas Soome  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30*199767f8SToomas Soome  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31*199767f8SToomas Soome  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32*199767f8SToomas Soome  * SUCH DAMAGE.
33*199767f8SToomas Soome  *
34*199767f8SToomas Soome  *	@(#)stat.h	8.12 (Berkeley) 6/16/95
35*199767f8SToomas Soome  * $FreeBSD$
36*199767f8SToomas Soome  */
37*199767f8SToomas Soome 
38*199767f8SToomas Soome #ifndef _SYS_STAT_H_
39*199767f8SToomas Soome #define	_SYS_STAT_H_
40*199767f8SToomas Soome 
41*199767f8SToomas Soome #include <sys/cdefs.h>
42*199767f8SToomas Soome #include <sys/_timespec.h>
43*199767f8SToomas Soome #include <sys/_types.h>
44*199767f8SToomas Soome 
45*199767f8SToomas Soome #ifndef _BLKSIZE_T_DECLARED
46*199767f8SToomas Soome typedef	__blksize_t	blksize_t;
47*199767f8SToomas Soome #define	_BLKSIZE_T_DECLARED
48*199767f8SToomas Soome #endif
49*199767f8SToomas Soome 
50*199767f8SToomas Soome #ifndef _BLKCNT_T_DECLARED
51*199767f8SToomas Soome typedef	__blkcnt_t	blkcnt_t;
52*199767f8SToomas Soome #define	_BLKCNT_T_DECLARED
53*199767f8SToomas Soome #endif
54*199767f8SToomas Soome 
55*199767f8SToomas Soome #ifndef _DEV_T_DECLARED
56*199767f8SToomas Soome typedef	__dev_t		dev_t;
57*199767f8SToomas Soome #define	_DEV_T_DECLARED
58*199767f8SToomas Soome #endif
59*199767f8SToomas Soome 
60*199767f8SToomas Soome #ifndef _FFLAGS_T_DECLARED
61*199767f8SToomas Soome typedef	__fflags_t	fflags_t;
62*199767f8SToomas Soome #define	_FFLAGS_T_DECLARED
63*199767f8SToomas Soome #endif
64*199767f8SToomas Soome 
65*199767f8SToomas Soome #ifndef _GID_T_DECLARED
66*199767f8SToomas Soome typedef	__gid_t		gid_t;
67*199767f8SToomas Soome #define	_GID_T_DECLARED
68*199767f8SToomas Soome #endif
69*199767f8SToomas Soome 
70*199767f8SToomas Soome #ifndef _INO_T_DECLARED
71*199767f8SToomas Soome typedef	__ino_t		ino_t;
72*199767f8SToomas Soome #define	_INO_T_DECLARED
73*199767f8SToomas Soome #endif
74*199767f8SToomas Soome 
75*199767f8SToomas Soome #ifndef _MODE_T_DECLARED
76*199767f8SToomas Soome typedef	__mode_t	mode_t;
77*199767f8SToomas Soome #define	_MODE_T_DECLARED
78*199767f8SToomas Soome #endif
79*199767f8SToomas Soome 
80*199767f8SToomas Soome #ifndef _NLINK_T_DECLARED
81*199767f8SToomas Soome typedef	__nlink_t	nlink_t;
82*199767f8SToomas Soome #define	_NLINK_T_DECLARED
83*199767f8SToomas Soome #endif
84*199767f8SToomas Soome 
85*199767f8SToomas Soome #ifndef _OFF_T_DECLARED
86*199767f8SToomas Soome typedef	__off_t		off_t;
87*199767f8SToomas Soome #define	_OFF_T_DECLARED
88*199767f8SToomas Soome #endif
89*199767f8SToomas Soome 
90*199767f8SToomas Soome #ifndef _UID_T_DECLARED
91*199767f8SToomas Soome typedef	__uid_t		uid_t;
92*199767f8SToomas Soome #define	_UID_T_DECLARED
93*199767f8SToomas Soome #endif
94*199767f8SToomas Soome 
95*199767f8SToomas Soome #if !defined(_KERNEL) && __BSD_VISIBLE
96*199767f8SToomas Soome /*
97*199767f8SToomas Soome  * XXX We get miscellaneous namespace pollution with this.
98*199767f8SToomas Soome  */
99*199767f8SToomas Soome #include <sys/time.h>
100*199767f8SToomas Soome #endif
101*199767f8SToomas Soome 
102*199767f8SToomas Soome #ifdef _KERNEL
103*199767f8SToomas Soome struct ostat {
104*199767f8SToomas Soome 	__uint16_t st_dev;		/* inode's device */
105*199767f8SToomas Soome 	ino_t	  st_ino;		/* inode's number */
106*199767f8SToomas Soome 	mode_t	  st_mode;		/* inode protection mode */
107*199767f8SToomas Soome 	nlink_t	  st_nlink;		/* number of hard links */
108*199767f8SToomas Soome 	__uint16_t st_uid;		/* user ID of the file's owner */
109*199767f8SToomas Soome 	__uint16_t st_gid;		/* group ID of the file's group */
110*199767f8SToomas Soome 	__uint16_t st_rdev;		/* device type */
111*199767f8SToomas Soome 	__int32_t st_size;		/* file size, in bytes */
112*199767f8SToomas Soome 	struct	timespec st_atim;	/* time of last access */
113*199767f8SToomas Soome 	struct	timespec st_mtim;	/* time of last data modification */
114*199767f8SToomas Soome 	struct	timespec st_ctim;	/* time of last file status change */
115*199767f8SToomas Soome 	__int32_t st_blksize;		/* optimal blocksize for I/O */
116*199767f8SToomas Soome 	__int32_t st_blocks;		/* blocks allocated for file */
117*199767f8SToomas Soome 	fflags_t  st_flags;		/* user defined flags for file */
118*199767f8SToomas Soome 	__uint32_t st_gen;		/* file generation number */
119*199767f8SToomas Soome };
120*199767f8SToomas Soome #endif
121*199767f8SToomas Soome 
122*199767f8SToomas Soome struct stat {
123*199767f8SToomas Soome 	__dev_t   st_dev;		/* inode's device */
124*199767f8SToomas Soome 	ino_t	  st_ino;		/* inode's number */
125*199767f8SToomas Soome 	mode_t	  st_mode;		/* inode protection mode */
126*199767f8SToomas Soome 	nlink_t	  st_nlink;		/* number of hard links */
127*199767f8SToomas Soome 	uid_t	  st_uid;		/* user ID of the file's owner */
128*199767f8SToomas Soome 	gid_t	  st_gid;		/* group ID of the file's group */
129*199767f8SToomas Soome 	__dev_t   st_rdev;		/* device type */
130*199767f8SToomas Soome 	struct	timespec st_atim;	/* time of last access */
131*199767f8SToomas Soome 	struct	timespec st_mtim;	/* time of last data modification */
132*199767f8SToomas Soome 	struct	timespec st_ctim;	/* time of last file status change */
133*199767f8SToomas Soome 	off_t	  st_size;		/* file size, in bytes */
134*199767f8SToomas Soome 	blkcnt_t st_blocks;		/* blocks allocated for file */
135*199767f8SToomas Soome 	blksize_t st_blksize;		/* optimal blocksize for I/O */
136*199767f8SToomas Soome 	fflags_t  st_flags;		/* user defined flags for file */
137*199767f8SToomas Soome 	__uint32_t st_gen;		/* file generation number */
138*199767f8SToomas Soome 	__int32_t st_lspare;
139*199767f8SToomas Soome 	struct timespec st_birthtim;	/* time of file creation */
140*199767f8SToomas Soome 	/*
141*199767f8SToomas Soome 	 * Explicitly pad st_birthtim to 16 bytes so that the size of
142*199767f8SToomas Soome 	 * struct stat is backwards compatible.  We use bitfields instead
143*199767f8SToomas Soome 	 * of an array of chars so that this doesn't require a C99 compiler
144*199767f8SToomas Soome 	 * to compile if the size of the padding is 0.  We use 2 bitfields
145*199767f8SToomas Soome 	 * to cover up to 64 bits on 32-bit machines.  We assume that
146*199767f8SToomas Soome 	 * CHAR_BIT is 8...
147*199767f8SToomas Soome 	 */
148*199767f8SToomas Soome 	unsigned int :(8 / 2) * (16 - (int)sizeof(struct timespec));
149*199767f8SToomas Soome 	unsigned int :(8 / 2) * (16 - (int)sizeof(struct timespec));
150*199767f8SToomas Soome };
151*199767f8SToomas Soome 
152*199767f8SToomas Soome #ifdef _KERNEL
153*199767f8SToomas Soome struct nstat {
154*199767f8SToomas Soome 	__dev_t   st_dev;		/* inode's device */
155*199767f8SToomas Soome 	ino_t	  st_ino;		/* inode's number */
156*199767f8SToomas Soome 	__uint32_t st_mode;		/* inode protection mode */
157*199767f8SToomas Soome 	__uint32_t st_nlink;		/* number of hard links */
158*199767f8SToomas Soome 	uid_t	  st_uid;		/* user ID of the file's owner */
159*199767f8SToomas Soome 	gid_t	  st_gid;		/* group ID of the file's group */
160*199767f8SToomas Soome 	__dev_t   st_rdev;		/* device type */
161*199767f8SToomas Soome 	struct	timespec st_atim;	/* time of last access */
162*199767f8SToomas Soome 	struct	timespec st_mtim;	/* time of last data modification */
163*199767f8SToomas Soome 	struct	timespec st_ctim;	/* time of last file status change */
164*199767f8SToomas Soome 	off_t	  st_size;		/* file size, in bytes */
165*199767f8SToomas Soome 	blkcnt_t st_blocks;		/* blocks allocated for file */
166*199767f8SToomas Soome 	blksize_t st_blksize;		/* optimal blocksize for I/O */
167*199767f8SToomas Soome 	fflags_t  st_flags;		/* user defined flags for file */
168*199767f8SToomas Soome 	__uint32_t st_gen;		/* file generation number */
169*199767f8SToomas Soome 	struct timespec st_birthtim;	/* time of file creation */
170*199767f8SToomas Soome 	/*
171*199767f8SToomas Soome 	 * See above about the following padding.
172*199767f8SToomas Soome 	 */
173*199767f8SToomas Soome 	unsigned int :(8 / 2) * (16 - (int)sizeof(struct timespec));
174*199767f8SToomas Soome 	unsigned int :(8 / 2) * (16 - (int)sizeof(struct timespec));
175*199767f8SToomas Soome };
176*199767f8SToomas Soome #endif
177*199767f8SToomas Soome 
178*199767f8SToomas Soome #ifndef _KERNEL
179*199767f8SToomas Soome #define	st_atime		st_atim.tv_sec
180*199767f8SToomas Soome #define	st_mtime		st_mtim.tv_sec
181*199767f8SToomas Soome #define	st_ctime		st_ctim.tv_sec
182*199767f8SToomas Soome #if __BSD_VISIBLE
183*199767f8SToomas Soome #define	st_birthtime		st_birthtim.tv_sec
184*199767f8SToomas Soome #endif
185*199767f8SToomas Soome 
186*199767f8SToomas Soome /* For compatibility. */
187*199767f8SToomas Soome #if __BSD_VISIBLE
188*199767f8SToomas Soome #define	st_atimespec		st_atim
189*199767f8SToomas Soome #define	st_mtimespec		st_mtim
190*199767f8SToomas Soome #define	st_ctimespec		st_ctim
191*199767f8SToomas Soome #define	st_birthtimespec	st_birthtim
192*199767f8SToomas Soome #endif
193*199767f8SToomas Soome #endif /* !_KERNEL */
194*199767f8SToomas Soome 
195*199767f8SToomas Soome #define	S_ISUID	0004000			/* set user id on execution */
196*199767f8SToomas Soome #define	S_ISGID	0002000			/* set group id on execution */
197*199767f8SToomas Soome #if __BSD_VISIBLE
198*199767f8SToomas Soome #define	S_ISTXT	0001000			/* sticky bit */
199*199767f8SToomas Soome #endif
200*199767f8SToomas Soome 
201*199767f8SToomas Soome #define	S_IRWXU	0000700			/* RWX mask for owner */
202*199767f8SToomas Soome #define	S_IRUSR	0000400			/* R for owner */
203*199767f8SToomas Soome #define	S_IWUSR	0000200			/* W for owner */
204*199767f8SToomas Soome #define	S_IXUSR	0000100			/* X for owner */
205*199767f8SToomas Soome 
206*199767f8SToomas Soome #if __BSD_VISIBLE
207*199767f8SToomas Soome #define	S_IREAD		S_IRUSR
208*199767f8SToomas Soome #define	S_IWRITE	S_IWUSR
209*199767f8SToomas Soome #define	S_IEXEC		S_IXUSR
210*199767f8SToomas Soome #endif
211*199767f8SToomas Soome 
212*199767f8SToomas Soome #define	S_IRWXG	0000070			/* RWX mask for group */
213*199767f8SToomas Soome #define	S_IRGRP	0000040			/* R for group */
214*199767f8SToomas Soome #define	S_IWGRP	0000020			/* W for group */
215*199767f8SToomas Soome #define	S_IXGRP	0000010			/* X for group */
216*199767f8SToomas Soome 
217*199767f8SToomas Soome #define	S_IRWXO	0000007			/* RWX mask for other */
218*199767f8SToomas Soome #define	S_IROTH	0000004			/* R for other */
219*199767f8SToomas Soome #define	S_IWOTH	0000002			/* W for other */
220*199767f8SToomas Soome #define	S_IXOTH	0000001			/* X for other */
221*199767f8SToomas Soome 
222*199767f8SToomas Soome #if __XSI_VISIBLE
223*199767f8SToomas Soome #define	S_IFMT	 0170000		/* type of file mask */
224*199767f8SToomas Soome #define	S_IFIFO	 0010000		/* named pipe (fifo) */
225*199767f8SToomas Soome #define	S_IFCHR	 0020000		/* character special */
226*199767f8SToomas Soome #define	S_IFDIR	 0040000		/* directory */
227*199767f8SToomas Soome #define	S_IFBLK	 0060000		/* block special */
228*199767f8SToomas Soome #define	S_IFREG	 0100000		/* regular */
229*199767f8SToomas Soome #define	S_IFLNK	 0120000		/* symbolic link */
230*199767f8SToomas Soome #define	S_IFSOCK 0140000		/* socket */
231*199767f8SToomas Soome #define	S_ISVTX	 0001000		/* save swapped text even after use */
232*199767f8SToomas Soome #endif
233*199767f8SToomas Soome #if __BSD_VISIBLE
234*199767f8SToomas Soome #define	S_IFWHT  0160000		/* whiteout */
235*199767f8SToomas Soome #endif
236*199767f8SToomas Soome 
237*199767f8SToomas Soome #define	S_ISDIR(m)	(((m) & 0170000) == 0040000)	/* directory */
238*199767f8SToomas Soome #define	S_ISCHR(m)	(((m) & 0170000) == 0020000)	/* char special */
239*199767f8SToomas Soome #define	S_ISBLK(m)	(((m) & 0170000) == 0060000)	/* block special */
240*199767f8SToomas Soome #define	S_ISREG(m)	(((m) & 0170000) == 0100000)	/* regular file */
241*199767f8SToomas Soome #define	S_ISFIFO(m)	(((m) & 0170000) == 0010000)	/* fifo or socket */
242*199767f8SToomas Soome #if __POSIX_VISIBLE >= 200112
243*199767f8SToomas Soome #define	S_ISLNK(m)	(((m) & 0170000) == 0120000)	/* symbolic link */
244*199767f8SToomas Soome #define	S_ISSOCK(m)	(((m) & 0170000) == 0140000)	/* socket */
245*199767f8SToomas Soome #endif
246*199767f8SToomas Soome #if __BSD_VISIBLE
247*199767f8SToomas Soome #define	S_ISWHT(m)	(((m) & 0170000) == 0160000)	/* whiteout */
248*199767f8SToomas Soome #endif
249*199767f8SToomas Soome 
250*199767f8SToomas Soome #if __BSD_VISIBLE
251*199767f8SToomas Soome #define	ACCESSPERMS	(S_IRWXU|S_IRWXG|S_IRWXO)	/* 0777 */
252*199767f8SToomas Soome 							/* 7777 */
253*199767f8SToomas Soome #define	ALLPERMS	(S_ISUID|S_ISGID|S_ISTXT|S_IRWXU|S_IRWXG|S_IRWXO)
254*199767f8SToomas Soome 							/* 0666 */
255*199767f8SToomas Soome #define	DEFFILEMODE	(S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)
256*199767f8SToomas Soome 
257*199767f8SToomas Soome #define S_BLKSIZE	512		/* block size used in the stat struct */
258*199767f8SToomas Soome 
259*199767f8SToomas Soome /*
260*199767f8SToomas Soome  * Definitions of flags stored in file flags word.
261*199767f8SToomas Soome  *
262*199767f8SToomas Soome  * Super-user and owner changeable flags.
263*199767f8SToomas Soome  */
264*199767f8SToomas Soome #define	UF_SETTABLE	0x0000ffff	/* mask of owner changeable flags */
265*199767f8SToomas Soome #define	UF_NODUMP	0x00000001	/* do not dump file */
266*199767f8SToomas Soome #define	UF_IMMUTABLE	0x00000002	/* file may not be changed */
267*199767f8SToomas Soome #define	UF_APPEND	0x00000004	/* writes to file may only append */
268*199767f8SToomas Soome #define	UF_OPAQUE	0x00000008	/* directory is opaque wrt. union */
269*199767f8SToomas Soome #define	UF_NOUNLINK	0x00000010	/* file may not be removed or renamed */
270*199767f8SToomas Soome /*
271*199767f8SToomas Soome  * These two bits are defined in MacOS X.  They are not currently used in
272*199767f8SToomas Soome  * FreeBSD.
273*199767f8SToomas Soome  */
274*199767f8SToomas Soome #if 0
275*199767f8SToomas Soome #define	UF_COMPRESSED	0x00000020	/* file is compressed */
276*199767f8SToomas Soome #define	UF_TRACKED	0x00000040	/* renames and deletes are tracked */
277*199767f8SToomas Soome #endif
278*199767f8SToomas Soome 
279*199767f8SToomas Soome #define	UF_SYSTEM	0x00000080	/* Windows system file bit */
280*199767f8SToomas Soome #define	UF_SPARSE	0x00000100	/* sparse file */
281*199767f8SToomas Soome #define	UF_OFFLINE	0x00000200	/* file is offline */
282*199767f8SToomas Soome #define	UF_REPARSE	0x00000400	/* Windows reparse point file bit */
283*199767f8SToomas Soome #define	UF_ARCHIVE	0x00000800	/* file needs to be archived */
284*199767f8SToomas Soome #define	UF_READONLY	0x00001000	/* Windows readonly file bit */
285*199767f8SToomas Soome /* This is the same as the MacOS X definition of UF_HIDDEN. */
286*199767f8SToomas Soome #define	UF_HIDDEN	0x00008000	/* file is hidden */
287*199767f8SToomas Soome 
288*199767f8SToomas Soome /*
289*199767f8SToomas Soome  * Super-user changeable flags.
290*199767f8SToomas Soome  */
291*199767f8SToomas Soome #define	SF_SETTABLE	0xffff0000	/* mask of superuser changeable flags */
292*199767f8SToomas Soome #define	SF_ARCHIVED	0x00010000	/* file is archived */
293*199767f8SToomas Soome #define	SF_IMMUTABLE	0x00020000	/* file may not be changed */
294*199767f8SToomas Soome #define	SF_APPEND	0x00040000	/* writes to file may only append */
295*199767f8SToomas Soome #define	SF_NOUNLINK	0x00100000	/* file may not be removed or renamed */
296*199767f8SToomas Soome #define	SF_SNAPSHOT	0x00200000	/* snapshot inode */
297*199767f8SToomas Soome 
298*199767f8SToomas Soome #ifdef _KERNEL
299*199767f8SToomas Soome /*
300*199767f8SToomas Soome  * Shorthand abbreviations of above.
301*199767f8SToomas Soome  */
302*199767f8SToomas Soome #define	OPAQUE		(UF_OPAQUE)
303*199767f8SToomas Soome #define	APPEND		(UF_APPEND | SF_APPEND)
304*199767f8SToomas Soome #define	IMMUTABLE	(UF_IMMUTABLE | SF_IMMUTABLE)
305*199767f8SToomas Soome #define	NOUNLINK	(UF_NOUNLINK | SF_NOUNLINK)
306*199767f8SToomas Soome #endif
307*199767f8SToomas Soome 
308*199767f8SToomas Soome #endif /* __BSD_VISIBLE */
309*199767f8SToomas Soome 
310*199767f8SToomas Soome #if __POSIX_VISIBLE >= 200809
311*199767f8SToomas Soome #define	UTIME_NOW	-1
312*199767f8SToomas Soome #define	UTIME_OMIT	-2
313*199767f8SToomas Soome #endif
314*199767f8SToomas Soome 
315*199767f8SToomas Soome #ifndef _KERNEL
316*199767f8SToomas Soome __BEGIN_DECLS
317*199767f8SToomas Soome #if __BSD_VISIBLE
318*199767f8SToomas Soome int	chflags(const char *, unsigned long);
319*199767f8SToomas Soome int	chflagsat(int, const char *, unsigned long, int);
320*199767f8SToomas Soome #endif
321*199767f8SToomas Soome int	chmod(const char *, mode_t);
322*199767f8SToomas Soome #if __BSD_VISIBLE
323*199767f8SToomas Soome int	fchflags(int, unsigned long);
324*199767f8SToomas Soome #endif
325*199767f8SToomas Soome #if __POSIX_VISIBLE >= 200112
326*199767f8SToomas Soome int	fchmod(int, mode_t);
327*199767f8SToomas Soome #endif
328*199767f8SToomas Soome #if __POSIX_VISIBLE >= 200809
329*199767f8SToomas Soome int	fchmodat(int, const char *, mode_t, int);
330*199767f8SToomas Soome int	futimens(int fd, const struct timespec times[2]);
331*199767f8SToomas Soome int	utimensat(int fd, const char *path, const struct timespec times[2],
332*199767f8SToomas Soome 		int flag);
333*199767f8SToomas Soome #endif
334*199767f8SToomas Soome int	fstat(int, struct stat *);
335*199767f8SToomas Soome #if __BSD_VISIBLE
336*199767f8SToomas Soome int	lchflags(const char *, unsigned long);
337*199767f8SToomas Soome int	lchmod(const char *, mode_t);
338*199767f8SToomas Soome #endif
339*199767f8SToomas Soome #if __POSIX_VISIBLE >= 200112
340*199767f8SToomas Soome int	lstat(const char * __restrict, struct stat * __restrict);
341*199767f8SToomas Soome #endif
342*199767f8SToomas Soome int	mkdir(const char *, mode_t);
343*199767f8SToomas Soome int	mkfifo(const char *, mode_t);
344*199767f8SToomas Soome #if !defined(_MKNOD_DECLARED) && __XSI_VISIBLE
345*199767f8SToomas Soome int	mknod(const char *, mode_t, dev_t);
346*199767f8SToomas Soome #define	_MKNOD_DECLARED
347*199767f8SToomas Soome #endif
348*199767f8SToomas Soome int	stat(const char * __restrict, struct stat * __restrict);
349*199767f8SToomas Soome mode_t	umask(mode_t);
350*199767f8SToomas Soome #if __POSIX_VISIBLE >= 200809
351*199767f8SToomas Soome int	fstatat(int, const char *, struct stat *, int);
352*199767f8SToomas Soome int	mkdirat(int, const char *, mode_t);
353*199767f8SToomas Soome int	mkfifoat(int, const char *, mode_t);
354*199767f8SToomas Soome #endif
355*199767f8SToomas Soome #if __XSI_VISIBLE >= 700
356*199767f8SToomas Soome int	mknodat(int, const char *, mode_t, dev_t);
357*199767f8SToomas Soome #endif
358*199767f8SToomas Soome __END_DECLS
359*199767f8SToomas Soome #endif /* !_KERNEL */
360*199767f8SToomas Soome 
361*199767f8SToomas Soome #endif /* !_SYS_STAT_H_ */
362