1READLINKAT(2) Linux Programmer's Manual READLINKAT(2)
2
3
4
6 readlinkat - read value of a symbolic link relative to a directory file
7 descriptor
8
10 #include <fcntl.h> /* Definition of AT_* constants */
11 #include <unistd.h>
12
13 int readlinkat(int dirfd, const char *pathname,
14 char *buf, size_t bufsiz);
15
16 Feature Test Macro Requirements for glibc (see feature_test_macros(7)):
17
18 readlinkat():
19 Since glibc 2.10:
20 _XOPEN_SOURCE >= 700 || _POSIX_C_SOURCE >= 200809L
21 Before glibc 2.10:
22 _ATFILE_SOURCE
23
25 The readlinkat() system call operates in exactly the same way as read‐
26 link(2), except for the differences described in this manual page.
27
28 If the pathname given in pathname is relative, then it is interpreted
29 relative to the directory referred to by the file descriptor dirfd
30 (rather than relative to the current working directory of the calling
31 process, as is done by readlink(2) for a relative pathname).
32
33 If pathname is relative and dirfd is the special value AT_FDCWD, then
34 pathname is interpreted relative to the current working directory of
35 the calling process (like readlink(2)).
36
37 If pathname is absolute, then dirfd is ignored.
38
39 Since Linux 2.6.39, pathname can be an empty string, in which case the
40 call operates on the file referred to by dirfd (which may have been
41 obtained using the open(2) O_PATH flag). In this case, dirfd can refer
42 to any type of file, not just a directory.
43
44
46 On success, readlinkat() returns the number of bytes placed in buf. On
47 error, -1 is returned and errno is set to indicate the error.
48
50 The same errors that occur for readlink(2) can also occur for read‐
51 linkat(). The following additional errors can occur for readlinkat():
52
53 EBADF dirfd is not a valid file descriptor.
54
55 ENOTDIR
56 pathname is relative and dirfd is a file descriptor referring to
57 a file other than a directory.
58
60 readlinkat() was added to Linux in kernel 2.6.16; library support was
61 added to glibc in version 2.4.
62
64 POSIX.1-2008.
65
67 See openat(2) for an explanation of the need for readlinkat().
68
70 openat(2), readlink(2), path_resolution(7)
71
73 This page is part of release 3.53 of the Linux man-pages project. A
74 description of the project, and information about reporting bugs, can
75 be found at http://www.kernel.org/doc/man-pages/.
76
77
78
79Linux 2013-07-31 READLINKAT(2)