1 .\" $OpenBSD: stat.2,v 1.3 1997/02/13 05:20:55 millert Exp $
3 .\" Copyright (c) 1980, 1991, 1993, 1994
4 .\" The Regents of the University of California. All rights reserved.
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\" notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\" notice, this list of conditions and the following disclaimer in the
13 .\" documentation and/or other materials provided with the distribution.
14 .\" 3. All advertising materials mentioning features or use of this software
15 .\" must display the following acknowledgement:
16 .\" This product includes software developed by the University of
17 .\" California, Berkeley and its contributors.
18 .\" 4. Neither the name of the University nor the names of its contributors
19 .\" may be used to endorse or promote products derived from this software
20 .\" without specific prior written permission.
22 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 .\" @(#)stat.2 8.3 (Berkeley) 4/19/94
49 .Fd #include <sys/stat.h>
53 .Fa "struct stat *buf"
57 .Fa "const char *restrict path"
58 .Fa "struct stat *restrict buf"
62 .Fa "const char *restrict path"
63 .Fa "struct stat *restrict buf"
66 .Fn fstatat "int fd" "const char *path" "struct stat *buf" "int flag"
67 .Sh TRANSITIIONAL SYNOPSIS (NOW DEPRECATED)
72 .Fa "struct stat64 *buf"
78 .Fa "const char *restrict path"
79 .Fa "struct stat64 *restrict buf"
85 .Fa "const char *restrict path"
86 .Fa "struct stat64 *restrict buf"
91 function obtains information about the file pointed to by
93 Read, write or execute
94 permission of the named file is not required, but all directories
95 listed in the path name leading to the file must be searchable.
102 except in the case where the named file is a symbolic link;
104 returns information about the link,
107 returns information about the file the link references.
108 For symbolic links, the st_mode member contains meaningful information
109 when used with the file type macros, and the st_size member contains
110 the length of the pathname contained in the symbolic link. File mode
111 bits and the contents of the remaining members of the stat structure
112 are unspecified. The value returned in the st_size member is the
113 length of the contents of the symbolic link, and does not count any
118 obtains the same information about an open file
119 known by the file descriptor
124 system call is equivalent to
128 except in the case where the
130 specifies a relative path.
131 In this case the status is retrieved from a file relative to
132 the directory associated with the file descriptor
134 instead of the current working directory.
138 are constructed by a bitwise-inclusive OR of flags from the following list,
141 .Bl -tag -width indent
142 .It Dv AT_SYMLINK_NOFOLLOW
145 names a symbolic link, the status of the symbolic link is returned.
150 is passed the special value
154 parameter, the current working directory is used and the behavior is
155 identical to a call to
159 respectively, depending on whether or not the
160 .Dv AT_SYMLINK_NOFOLLOW
166 argument is a pointer to a
171 and into which information is placed concerning the file.
173 .Dv _DARWIN_FEATURE_64_BIT_INODE
174 is not defined (see below for more information about this macro), the
176 structure is defined as:
178 struct stat { /* when _DARWIN_FEATURE_64_BIT_INODE is NOT defined */
179 dev_t st_dev; /* device inode resides on */
180 ino_t st_ino; /* inode's number */
181 mode_t st_mode; /* inode protection mode */
182 nlink_t st_nlink; /* number of hard links to the file */
183 uid_t st_uid; /* user-id of owner */
184 gid_t st_gid; /* group-id of owner */
185 dev_t st_rdev; /* device type, for special file inode */
186 struct timespec st_atimespec; /* time of last access */
187 struct timespec st_mtimespec; /* time of last data modification */
188 struct timespec st_ctimespec; /* time of last file status change */
189 off_t st_size; /* file size, in bytes */
190 quad_t st_blocks; /* blocks allocated for file */
191 u_long st_blksize;/* optimal file sys I/O ops blocksize */
192 u_long st_flags; /* user defined flags for file */
193 u_long st_gen; /* file generation number */
197 However, when the macro
198 .Dv _DARWIN_FEATURE_64_BIT_INODE
201 structure will now be defined as:
203 struct stat { /* when _DARWIN_FEATURE_64_BIT_INODE is defined */
204 dev_t st_dev; /* ID of device containing file */
205 mode_t st_mode; /* Mode of file (see below) */
206 nlink_t st_nlink; /* Number of hard links */
207 ino_t st_ino; /* File serial number */
208 uid_t st_uid; /* User ID of the file */
209 gid_t st_gid; /* Group ID of the file */
210 dev_t st_rdev; /* Device ID */
211 struct timespec st_atimespec; /* time of last access */
212 struct timespec st_mtimespec; /* time of last data modification */
213 struct timespec st_ctimespec; /* time of last status change */
214 struct timespec st_birthtimespec; /* time of file creation(birth) */
215 off_t st_size; /* file size, in bytes */
216 blkcnt_t st_blocks; /* blocks allocated for file */
217 blksize_t st_blksize; /* optimal blocksize for I/O */
218 uint32_t st_flags; /* user defined flags for file */
219 uint32_t st_gen; /* file generation number */
220 int32_t st_lspare; /* RESERVED: DO NOT USE! */
221 int64_t st_qspare[2]; /* RESERVED: DO NOT USE! */
225 The time-related fields of
228 .Bl -tag -width XXXst_birthtime
230 Time when file data last accessed.
238 Time when file data last modified.
246 Time when file status was last changed (inode data modification).
259 Time of file creation. Only set once when the file is created. This field is
260 only available in the 64 bit inode variants. On filesystems where birthtime is
261 not available, this field is set to 0 (i.e. epoch).
264 The size-related fields of the structures are as follows:
265 .Bl -tag -width XXXst_blksize
267 The optimal I/O block size for the file.
269 The actual number of blocks allocated for the file in 512-byte units.
270 As short symbolic links are stored in the inode, this number may
274 The status information word
276 has the following bits:
278 #define S_IFMT 0170000 /* type of file */
279 #define S_IFIFO 0010000 /* named pipe (fifo) */
280 #define S_IFCHR 0020000 /* character special */
281 #define S_IFDIR 0040000 /* directory */
282 #define S_IFBLK 0060000 /* block special */
283 #define S_IFREG 0100000 /* regular */
284 #define S_IFLNK 0120000 /* symbolic link */
285 #define S_IFSOCK 0140000 /* socket */
286 #define S_IFWHT 0160000 /* whiteout */
287 #define S_ISUID 0004000 /* set user id on execution */
288 #define S_ISGID 0002000 /* set group id on execution */
289 #define S_ISVTX 0001000 /* save swapped text even after use */
290 #define S_IRUSR 0000400 /* read permission, owner */
291 #define S_IWUSR 0000200 /* write permission, owner */
292 #define S_IXUSR 0000100 /* execute/search permission, owner */
295 For a list of access modes, see
301 For a list of the file flags in the
307 .Sh _DARWIN_FEATURE_64_BIT_INODE
308 In order to accommodate advanced capabilities of newer file systems, the
313 data structures were updated in Mac OSX 10.5.
315 The most obvious change is the increased size of
317 from 32 bits to 64 bits. As a consequence, storing an ino_t in an int is
318 no longer safe, and file formats storing ino_t as 32-bit values may need to
319 be updated. There are other changes as well, such as the widening of
330 for more detail on the specific changes to the other affected data structures.
332 On platforms that existed before these updates were available, ABI
333 compatibility is achieved by providing two implementations for related
334 functions: one using the legacy data structures and one using the updated
335 data structures. Variants which make use of the newer structures have their
336 symbols suffixed with $INODE64. These $INODE64 suffixes are automatically
337 appended by the compiler tool-chain and should not be used directly.
339 Platforms that were released after these updates only have the newer variants
340 available to them. These platforms have the macro
341 .Dv _DARWIN_FEATURE_ONLY_64_BIT_INODE
345 .Dv _DARWIN_FEATURE_64_BIT_INODE
346 macro should not be set directly. Instead, developers should make use of the
347 .Dv _DARWIN_NO_64_BIT_INODE
349 .Dv _DARWIN_USE_64_BIT_INODE
350 macros when the default variant is not desired. The following table details
351 the effects of defining these macros for different deployment targets.
361 .Dv _DARWIN_FEATURE_ONLY_64_BIT_INODE Sy not defined
365 user defines: < 10.5 10.5 > 10.5
369 T} 32-bit 32-bit 64-bit
371 .Dv _DARWIN_NO_64_BIT_INODE
372 T} 32-bit 32-bit 32-bit
374 .Dv _DARWIN_USE_64_BIT_INODE
375 T} 32-bit 64-bit 64-bit
385 .Dv _DARWIN_FEATURE_ONLY_64_BIT_INODE Sy defined
388 user defines: Any Deployment Target
394 .Dv _DARWIN_NO_64_BIT_INODE
399 .Dv _DARWIN_USE_64_BIT_INODE
404 .Bl -tag -width 64-bit-only -offset indent
406 32-bit inode values are enabled, and the legacy structures involving the
410 .Dv _DARWIN_FEATURE_64_BIT_INODE
413 64-bit inode values are enabled, and the expanded structures involving the
417 .Dv _DARWIN_FEATURE_64_BIT_INODE
418 is defined, and loader symbols will contain the
422 Like 64-bit, except loader symbols do not have the
426 A compile time error is generated.
429 Due to the increased benefits of the larger structure, it is highly
430 recommended that developers not define
431 .Dv _DARWIN_NO_64_BIT_INODE
433 .Dv _DARWIN_USE_64_BIT_INODE
434 when targeting Mac OSX 10.5.
436 In addition to the $INODE64 suffixed symbols, variants suffixed with 64 are
437 also available for related functions. These functions were provided as a way
438 for developers to use the updated structures in code that also made use of
439 the legacy structures. The enlarged stat structures were also prefixed with
440 64 to distinguish them from their legacy variants. These functions have been
441 deprecated and should be avoided.
443 Upon successful completion a value of 0 is returned.
444 Otherwise, a value of -1 is returned and
446 is set to indicate the error.
448 Previous versions of the system used different types for the
462 system call will fail if:
466 is not a valid open file descriptor.
470 points to an invalid address.
473 An I/O error occurs while reading from or writing to the file system.
480 system calls will fail if:
484 Search permission is denied for a component of the path prefix.
490 points to an invalid address.
493 An I/O error occurs while reading from or writing to the file system.
496 Too many symbolic links are encountered in translating the pathname.
497 This is taken to be indicative of a looping symbolic link.
499 .It Bq Er ENAMETOOLONG
500 A component of a pathname exceeds
502 characters, or an entire path name exceeds
507 The named file does not exist.
510 A component of the path prefix is not a directory.
518 system calls will fail if:
522 The file size in bytes
523 or the number of blocks allocated to the file
524 or the file serial number cannot be represented correctly
525 in the structure pointed to by
529 In addition to the errors returned by the
539 argument does not specify an absolute path and the
543 nor a valid file descriptor open for searching.
547 argument is not valid.
551 argument is not an absolute path and
555 nor a file descriptor associated with a directory.
558 The file generation number,
560 is only available to the super-user.
562 The fields in the stat structure currently marked
567 are present in preparation for inode time stamps expanding
568 to 64 bits. This, however, can break certain programs that
569 depend on the time stamps being contiguous (in calls to
571 .Sh TRANSITIONAL DESCRIPTION (NOW DEPRECATED)
577 routines are equivalent to their corresponding non-64-suffixed routine,
578 when 64-bit inodes are in effect.
579 They were added before there was support for the symbol variants, and so are
581 Instead of using these, set the
582 .Dv _DARWIN_USE_64_BIT_INODE
583 macro before including header files to force 64-bit inode support.
587 structure used by these deprecated routines is the same as the
589 structure when 64-bit inodes are in effect (see above).
601 to a socket (and thus to a pipe)
602 returns a zero'd buffer,
603 except for the blocksize field,
604 and a unique device and inode number.
610 function calls are expected to conform to
614 system call is expected to conform to POSIX.1-2008 .
618 function call appeared in
625 system calls first appeared in Mac OS X 10.5 (Leopard) and are now deprecated
626 in favor of the corresponding symbol variants.
629 system call appeared in OS X 10.10