]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man2/fstatat.2
Reordered sections to be more consistent, in some cases renaming
[thirdparty/man-pages.git] / man2 / fstatat.2
CommitLineData
956a6446
MK
1.\" Hey Emacs! This file is -*- nroff -*- source.
2.\"
3.\" This manpage is Copyright (C) 2006, Michael Kerrisk
4.\"
5.\" Permission is granted to make and distribute verbatim copies of this
6.\" manual provided the copyright notice and this permission notice are
7.\" preserved on all copies.
8.\"
9.\" Permission is granted to copy and distribute modified versions of this
10.\" manual under the conditions for verbatim copying, provided that the
11.\" entire resulting derived work is distributed under the terms of a
12.\" permission notice identical to this one.
c13182ef 13.\"
956a6446
MK
14.\" Since the Linux kernel and libraries are constantly changing, this
15.\" manual page may be incorrect or out-of-date. The author(s) assume no
16.\" responsibility for errors or omissions, or for damages resulting from
17.\" the use of the information contained herein. The author(s) may not
18.\" have taken the same level of care in the production of this manual,
19.\" which is licensed free of charge, as they might when working
20.\" professionally.
c13182ef 21.\"
956a6446
MK
22.\" Formatted or processed versions of this manual, if unaccompanied by
23.\" the source, must acknowledge the copyright and authors of this work.
24.\"
25.\"
26.TH FSTATAT 2 2006-04-30 "Linux 2.6.16" "Linux Programmer's Manual"
27.SH NAME
ce372a5b 28fstatat \- get file status relative to a directory file descriptor
956a6446
MK
29.SH SYNOPSIS
30.nf
d44417fb 31.B #define _ATFILE_SOURCE
f4d34a38 32.B #include <sys/stat.h>
956a6446 33.sp
1343b604 34.BI "int fstatat(int " dirfd ", const char *" pathname ", struct stat *" \
c13182ef 35buf ,
521bf584 36.BI " int " flags );
956a6446
MK
37.fi
38.SH DESCRIPTION
39The
40.BR fstatat ()
41system call operates in exactly the same way as
42.BR stat (2),
43except for the differences described in this manual page.
44
c13182ef 45If the pathname given in
1343b604 46.I pathname
956a6446
MK
47is relative, then it is interpreted relative to the directory
48referred to by the file descriptor
c13182ef
MK
49.IR dirfd
50(rather than relative to the current working directory of
956a6446
MK
51the calling process, as is done by
52.BR stat (2)
53for a relative pathname).
54
1343b604
MK
55If
56.I pathname
c13182ef 57is relative and
956a6446
MK
58.I dirfd
59is the special value
60.BR AT_FDCWD ,
61then
1343b604 62.I pathname
c13182ef 63is interpreted relative to the current working
956a6446
MK
64directory of the calling process (like
65.BR stat (2)).
66
1343b604
MK
67If
68.IR pathname
c13182ef
MK
69is absolute, then
70.I dirfd
956a6446
MK
71is ignored.
72
73.I flags
74can either be 0, or include the following flag:
75.TP
76.B AT_SYMLINK_NOFOLLOW
c13182ef 77If
1343b604 78.I pathname
c13182ef 79is a symbolic link, do not dereference it:
956a6446 80instead return information about the link itself, like
c13182ef 81.BR lstat (2).
956a6446
MK
82(By default,
83.BR fstatat ()
160c2d5a 84dereferences symbolic links, like
7005bc22 85.BR stat (2).)
956a6446
MK
86.SH "RETURN VALUE"
87On success,
c13182ef
MK
88.BR fstatat ()
89returns 0.
956a6446
MK
90On error, \-1 is returned and
91.I errno
92is set to indicate the error.
93.SH ERRORS
94The same errors that occur for
95.BR stat (2)
96can also occur for
97.BR fstatat ().
c13182ef 98The following additional errors can occur for
956a6446
MK
99.BR fstatat ():
100.TP
101.B EBADF
102.I dirfd
103is not a valid file descriptor.
104.TP
105.B EINVAL
106Invalid flag specified in
107.IR flags .
108.TP
109.B ENOTDIR
1343b604 110.I pathname
b328773d 111is relative and
956a6446
MK
112.I dirfd
113is a file descriptor referring to a file other than a directory.
a1d5f77c
MK
114.SH VERSIONS
115.BR fstatat ()
116was added to Linux in kernel 2.6.16.
117.SH "CONFORMING TO"
118This system call is non-standard but is proposed
119for inclusion in a future revision of POSIX.1.
120A similar system call exists on Solaris.
956a6446
MK
121.SH NOTES
122See
123.BR openat (2)
124for an explanation of the need for
125.BR fstatat ().
956a6446
MK
126.SH "SEE ALSO"
127.BR openat (2),
128.BR path_resolution (2),
129.BR stat (2)