]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - lib/libc/sys/readlink.2
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / lib / libc / sys / readlink.2
1 .\" Copyright (c) 1983, 1991, 1993
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 .\" 4. 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 .\"     @(#)readlink.2  8.1 (Berkeley) 6/4/93
29 .\" $FreeBSD$
30 .\"
31 .Dd April 10, 2008
32 .Dt READLINK 2
33 .Os
34 .Sh NAME
35 .Nm readlink ,
36 .Nm readlinkat
37 .Nd read value of a symbolic link
38 .Sh LIBRARY
39 .Lb libc
40 .Sh SYNOPSIS
41 .In unistd.h
42 .Ft ssize_t
43 .Fn readlink "const char *restrict path" "char *restrict buf" "size_t bufsiz"
44 .Ft ssize_t
45 .Fo readlinkat
46 .Fa "int fd" "const char *restrict path" "char *restrict buf" "size_t bufsize"
47 .Fc
48 .Sh DESCRIPTION
49 The
50 .Fn readlink
51 system call
52 places the contents of the symbolic link
53 .Fa path
54 in the buffer
55 .Fa buf ,
56 which has size
57 .Fa bufsiz .
58 The
59 .Fn readlink
60 system call does not append a
61 .Dv NUL
62 character to
63 .Fa buf .
64 .Pp
65 The
66 .Fn readlinkat
67 system call is equivalent to
68 .Fn readlink
69 except in the case where
70 .Fa path
71 specifies a relative path.
72 In this case the symbolic link whose content is read relative to the
73 directory associated with the file descriptor
74 .Fa fd
75 instead of the current working directory.
76 If
77 .Fn readlinkat
78 is passed the special value
79 .Dv AT_FDCWD
80 in the
81 .Fa fd
82 parameter, the current working directory is used and the behavior is
83 identical to a call to
84 .Fn readlink .
85 .Sh RETURN VALUES
86 The call returns the count of characters placed in the buffer
87 if it succeeds, or a \-1 if an error occurs, placing the error
88 code in the global variable
89 .Va errno .
90 .Sh ERRORS
91 The
92 .Fn readlink
93 system call
94 will fail if:
95 .Bl -tag -width Er
96 .It Bq Er ENOTDIR
97 A component of the path prefix is not a directory.
98 .It Bq Er ENAMETOOLONG
99 A component of a pathname exceeded 255 characters,
100 or an entire path name exceeded 1023 characters.
101 .It Bq Er ENOENT
102 The named file does not exist.
103 .It Bq Er EACCES
104 Search permission is denied for a component of the path prefix.
105 .It Bq Er ELOOP
106 Too many symbolic links were encountered in translating the pathname.
107 .It Bq Er EINVAL
108 The named file is not a symbolic link.
109 .It Bq Er EIO
110 An I/O error occurred while reading from the file system.
111 .It Bq Er EFAULT
112 The
113 .Fa buf
114 argument
115 extends outside the process's allocated address space.
116 .El
117 .Pp
118 In addition to the errors returned by the
119 .Fn readlink ,
120 the
121 .Fn readlinkat
122 may fail if:
123 .Bl -tag -width Er
124 .It Bq Er EBADF
125 The
126 .Fa path
127 argument does not specify an absolute path and the
128 .Fa fd
129 argument is neither
130 .Dv AT_FDCWD
131 nor a valid file descriptor open for searching.
132 .It Bq Er ENOTDIR
133 The
134 .Fa path
135 argument is not an absolute path and
136 .Fa fd
137 is neither
138 .Dv AT_FDCWD
139 nor a file descriptor associated with a directory.
140 .El
141 .Sh SEE ALSO
142 .Xr lstat 2 ,
143 .Xr stat 2 ,
144 .Xr symlink 2 ,
145 .Xr symlink 7
146 .Sh STANDARDS
147 The
148 .Fn readlinkat
149 system call follows The Open Group Extended API Set 2 specification.
150 .Sh HISTORY
151 The
152 .Fn readlink
153 system call appeared in
154 .Bx 4.2 .
155 The
156 .Fn readlinkat
157 system call appeared in
158 .Fx 8.0 .