1.\" Copyright (c) 1980, 1991, 1993, 1994 2.\" The Regents of the University of California. All rights reserved. 3.\" 4.\" Redistribution and use in source and binary forms, with or without 5.\" modification, are permitted provided that the following conditions 6.\" are met: 7.\" 1. Redistributions of source code must retain the above copyright 8.\" notice, this list of conditions and the following disclaimer. 9.\" 2. Redistributions in binary form must reproduce the above copyright 10.\" notice, this list of conditions and the following disclaimer in the 11.\" documentation and/or other materials provided with the distribution. 12.\" 3. Neither the name of the University nor the names of its contributors 13.\" may be used to endorse or promote products derived from this software 14.\" without specific prior written permission. 15.\" 16.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 17.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 20.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26.\" SUCH DAMAGE. 27.\" 28.Dd September 22, 2026 29.Dt STAT 2 30.Os 31.Sh NAME 32.Nm stat , 33.Nm lstat , 34.Nm fstat , 35.Nm fstatat 36.Nd get file status 37.Sh LIBRARY 38.Lb libc 39.Sh SYNOPSIS 40.In sys/stat.h 41.Ft int 42.Fn stat "const char * restrict path" "struct stat * restrict sb" 43.Ft int 44.Fn lstat "const char * restrict path" "struct stat * restrict sb" 45.Ft int 46.Fn fstat "int fd" "struct stat *sb" 47.Ft int 48.Fn fstatat "int fd" "const char *path" "struct stat *sb" "int flag" 49.Sh DESCRIPTION 50The 51.Fn stat 52system call obtains information about the file pointed to by 53.Fa path . 54Read, write or execute 55permission of the named file is not required, but all directories 56listed in the path name leading to the file must be searchable. 57.Pp 58The 59.Fn lstat 60system call is like 61.Fn stat 62except when the named file is a symbolic link, 63in which case 64.Fn lstat 65returns information about the link, 66while 67.Fn stat 68returns information about the file the link references. 69.Pp 70The 71.Fn fstat 72system call obtains the same information about an open file 73known by the file descriptor 74.Fa fd . 75.Pp 76The 77.Fn fstatat 78system call is equivalent to 79.Fn stat 80and 81.Fn lstat 82except when the 83.Fa path 84specifies a relative path. 85For 86.Fn fstatat 87and relative 88.Fa path , 89the status is retrieved from a file relative to 90the directory associated with the file descriptor 91.Fa fd 92instead of the current working directory. 93.Pp 94The values for the 95.Fa flag 96are constructed by a bitwise-inclusive OR of flags from this list, 97defined in 98.In fcntl.h : 99.Bl -tag -width indent 100.It Dv AT_SYMLINK_NOFOLLOW 101If 102.Fa path 103names a symbolic link, the status of the symbolic link is returned. 104.It Dv AT_RESOLVE_BENEATH 105Only walk paths below the starting directory. 106See the description of the 107.Dv O_RESOLVE_BENEATH 108flag in the 109.Xr open 2 110manual page. 111.It Dv AT_EMPTY_PATH 112If the 113.Fa path 114argument is an empty string, operate on the file or directory 115referenced by the descriptor 116.Fa fd . 117If 118.Fa fd 119is equal to 120.Dv AT_FDCWD , 121operate on the current working directory. 122.El 123.Pp 124If 125.Fn fstatat 126is passed the special value 127.Dv AT_FDCWD 128in the 129.Fa fd 130parameter, the current working directory is used and the behavior is 131identical to a call to 132.Fn stat 133or 134.Fn lstat 135respectively, depending on whether or not the 136.Dv AT_SYMLINK_NOFOLLOW 137bit is set in 138.Fa flag . 139.Pp 140When 141.Fn fstatat 142is called with an absolute 143.Fa path , 144it ignores the 145.Fa fd 146argument. 147.Pp 148The 149.Fa sb 150argument is a pointer to a 151.Vt stat 152structure 153as defined by 154.In sys/stat.h 155and into which information is placed concerning the file. 156.Pp 157The fields of 158.Vt "struct stat" 159related to the file system are: 160.Bl -tag -width ".Va st_bsdflags" 161.It Va st_dev 162Numeric ID of the device containing the file. 163.It Va st_ino 164The file's inode number. 165.It Va st_nlink 166Number of hard links to the file. 167.It Va st_flags 168Flags enabled for the file. 169See 170.Xr chflags 2 171for the list of flags and their description. 172.It Va st_rdev 173Numeric ID of the device referenced by the file, if the file is a 174character or block special; otherwise unspecified. 175.It Va st_bsdflags 176Miscellaneous file flags (see below). 177.El 178.Pp 179The 180.Va st_dev 181and 182.Va st_ino 183fields together identify the file uniquely within the system. 184.Pp 185The time-related fields of 186.Vt "struct stat" 187are: 188.Bl -tag -width ".Va st_birthtim" 189.It Va st_atim 190Time when file data was last accessed. 191Changed implicitly by syscalls such as 192.Xr read 2 193and 194.Xr readv 2 , 195and explicitly by 196.Xr utimes 2 . 197.It Va st_mtim 198Time when file data was last modified. 199Changed implicitly by syscalls such as 200.Xr truncate 2 , 201.Xr write 2 , 202and 203.Xr writev 2 , 204and explicitly by 205.Xr utimes 2 . 206Also, any syscall which modifies directory content changes the 207.Va st_mtim 208for the affected directory. 209For instance, 210.Xr creat 2 , 211.Xr mkdir 2 , 212.Xr rename 2 , 213.Xr link 2 , 214and 215.Xr unlink 2 . 216.It Va st_ctim 217Time when file status was last changed (inode data modification). 218Changed implicitly by any syscall that affects file metadata, including 219.Va st_mtim , 220such as 221.Xr chflags 2 , 222.Xr chmod 2 , 223.Xr chown 2 , 224.Xr truncate 2 , 225.Xr utimes 2 , 226and 227.Xr write 2 . 228Also, any syscall which modifies directory content changes the 229.Va st_ctim 230for the affected directory. 231For instance, 232.Xr creat 2 , 233.Xr mkdir 2 , 234.Xr rename 2 , 235.Xr link 2 , 236and 237.Xr unlink 2 . 238.It Va st_birthtim 239Time when the inode was created. 240.El 241.Pp 242These time-related macros are defined for compatibility: 243.Bd -literal 244#define st_atime st_atim.tv_sec 245#define st_mtime st_mtim.tv_sec 246#define st_ctime st_ctim.tv_sec 247#ifndef _POSIX_SOURCE 248#define st_birthtime st_birthtim.tv_sec 249#endif 250 251#ifndef _POSIX_SOURCE 252#define st_atimespec st_atim 253#define st_mtimespec st_mtim 254#define st_ctimespec st_ctim 255#define st_birthtimespec st_birthtim 256#endif 257.Ed 258.Pp 259Size-related fields of the 260.Vt "struct stat" 261are: 262.Bl -tag -width ".Va st_blksize" 263.It Va st_size 264File size in bytes. 265.It Va st_blksize 266Optimal I/O block size for the file. 267.It Va st_blocks 268Actual number of blocks allocated for the file. 269.Pp 270For files located on non-synthetic filesystems, the block size is 512 bytes. 271As short symbolic links are stored in the inode, this number may 272be zero. 273.Pp 274For file descriptors referencing specific non-file objects, 275the field is type-specific. 276.Pp 277For POSIX shared memory segments 278.Pq see Xr shm_open 2 , 279the block size is 512 bytes. 280For older versions of 281.Fx 282.Pq before 15.2 and 16.0 283the block size was equal to the platform page size 284.Pq Xr getpagesize 2 . 285.El 286.Pp 287The access-related fields of 288.Vt "struct stat" 289are: 290.Bl -tag -width ".Va st_mode" 291.It Va st_uid 292User ID of the file's owner. 293.It Va st_gid 294Group ID of the file. 295.It Va st_mode 296Status of the file (see below). 297.El 298.Pp 299The status information word 300.Fa st_mode 301has these bits: 302.Bd -literal 303#define S_IFMT 0170000 /* type of file mask */ 304#define S_IFIFO 0010000 /* named pipe (fifo) */ 305#define S_IFCHR 0020000 /* character special */ 306#define S_IFDIR 0040000 /* directory */ 307#define S_IFBLK 0060000 /* block special */ 308#define S_IFREG 0100000 /* regular */ 309#define S_IFLNK 0120000 /* symbolic link */ 310#define S_IFSOCK 0140000 /* socket */ 311#define S_IFWHT 0160000 /* whiteout */ 312#define S_ISUID 0004000 /* set user id on execution */ 313#define S_ISGID 0002000 /* set group id on execution */ 314#define S_ISVTX 0001000 /* sticky(7) bit is set */ 315#define S_IRWXU 0000700 /* RWX mask for owner */ 316#define S_IRUSR 0000400 /* read permission, owner */ 317#define S_IWUSR 0000200 /* write permission, owner */ 318#define S_IXUSR 0000100 /* execute/search permission, owner */ 319#define S_IRWXG 0000070 /* RWX mask for group */ 320#define S_IRGRP 0000040 /* read permission, group */ 321#define S_IWGRP 0000020 /* write permission, group */ 322#define S_IXGRP 0000010 /* execute/search permission, group */ 323#define S_IRWXO 0000007 /* RWX mask for other */ 324#define S_IROTH 0000004 /* read permission, other */ 325#define S_IWOTH 0000002 /* write permission, other */ 326#define S_IXOTH 0000001 /* execute/search permission, other */ 327.Ed 328.Pp 329For a list of access modes, see 330.In sys/stat.h , 331.Xr access 2 332and 333.Xr chmod 2 . 334These macros are available to test whether a 335.Va st_mode 336value passed in the 337.Fa m 338argument corresponds to a file of the specified type: 339.Bl -tag -width ".Fn S_ISFIFO m" 340.It Fn S_ISBLK m 341Test for a block special file. 342.It Fn S_ISCHR m 343Test for a character special file. 344.It Fn S_ISDIR m 345Test for a directory. 346.It Fn S_ISFIFO m 347Test for a pipe or FIFO special file. 348.It Fn S_ISLNK m 349Test for a symbolic link. 350.It Fn S_ISREG m 351Test for a regular file. 352.It Fn S_ISSOCK m 353Test for a socket. 354.It Fn S_ISWHT m 355Test for a whiteout. 356.El 357.Pp 358The macros evaluate to a non-zero value if the test is true 359or to the value 0 if the test is false. 360.Pp 361The 362.Va st_bsdflags 363field contains the following flags, defined in 364.In sys/stat.h : 365.Bl -tag -width indent 366.It Dv SFBSD_NAMEDATTR 367The file is a named attribute or a named attribute directory. 368.El 369.Sh RETURN VALUES 370.Rv -std 371.Sh COMPATIBILITY 372Previous versions of the system used different types for the 373.Va st_dev , 374.Va st_uid , 375.Va st_gid , 376.Va st_rdev , 377.Va st_size , 378.Va st_blksize 379and 380.Va st_blocks 381fields. 382.Sh ERRORS 383The 384.Fn stat 385and 386.Fn lstat 387system calls will fail if: 388.Bl -tag -width Er 389.It Bq Er EACCES 390Search permission is denied for a component of the path prefix. 391.It Bq Er EFAULT 392The 393.Fa sb 394or 395.Fa path 396argument 397points to an invalid address. 398.It Bq Er EIO 399An I/O error occurred while reading from or writing to the file system. 400.It Bq Er EINTEGRITY 401Corrupted data was detected while reading from the file system. 402.It Bq Er ELOOP 403Too many symbolic links were encountered in translating the pathname. 404.It Bq Er ENAMETOOLONG 405A component of a pathname exceeded 255 characters, 406or an entire path name exceeded 1023 characters. 407.It Bq Er ENOENT 408The named file does not exist. 409.It Bq Er ENOTDIR 410A component of the path prefix is not a directory. 411.It Bq Er EOVERFLOW 412The file size in bytes cannot be 413represented correctly in the structure pointed to by 414.Fa sb . 415.El 416.Pp 417The 418.Fn fstat 419system call will fail if: 420.Bl -tag -width Er 421.It Bq Er EBADF 422The 423.Fa fd 424argument 425is not a valid open file descriptor. 426.It Bq Er EFAULT 427The 428.Fa sb 429argument 430points to an invalid address. 431.It Bq Er EIO 432An I/O error occurred while reading from or writing to the file system. 433.It Bq Er EINTEGRITY 434Corrupted data was detected while reading from the file system. 435.It Bq Er EOVERFLOW 436The file size in bytes cannot be 437represented correctly in the structure pointed to by 438.Fa sb . 439.El 440.Pp 441In addition to the errors returned by the 442.Fn lstat , 443the 444.Fn fstatat 445may fail if: 446.Bl -tag -width Er 447.It Bq Er EBADF 448The 449.Fa path 450argument does not specify an absolute path and the 451.Fa fd 452argument is neither 453.Dv AT_FDCWD 454nor a valid file descriptor open for searching. 455.It Bq Er EINVAL 456The value of the 457.Fa flag 458argument is not valid. 459.It Bq Er ENOTDIR 460The 461.Fa path 462argument is not an absolute path and 463.Fa fd 464is neither 465.Dv AT_FDCWD 466nor a file descriptor associated with a directory. 467.It Bq Er ENOTCAPABLE 468.Fa path 469is an absolute path, 470or contained a ".." component leading to a 471directory outside of the directory hierarchy specified by 472.Fa fd , 473and the process is in capability mode or the 474.Dv AT_RESOLVE_BENEATH 475flag was specified. 476.El 477.Sh SEE ALSO 478.Xr access 2 , 479.Xr chmod 2 , 480.Xr chown 2 , 481.Xr fhstat 2 , 482.Xr statfs 2 , 483.Xr utimes 2 , 484.Xr sticky 7 , 485.Xr symlink 7 486.Sh STANDARDS 487The 488.Fn stat 489and 490.Fn fstat 491system calls are expected to conform to 492.St -p1003.1-90 . 493The 494.Fn fstatat 495system call follows The Open Group Extended API Set 2 specification. 496.Pp 497The 498.Va st_bsdflags 499field is a non-portable 500.Fx Ns -only 501extension. 502.Sh HISTORY 503The 504.Fn stat 505and 506.Fn fstat 507system calls appeared in 508.At v1 . 509The 510.Fn lstat 511system call appeared in 512.Bx 4.2 . 513The 514.Fn fstatat 515system call appeared in 516.Fx 8.0 . 517.Sh BUGS 518Applying 519.Fn fstat 520to a socket 521returns a zeroed buffer, 522except for the blocksize field, 523and a unique device and inode number. 524