8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / man / man2 / resolvepath.2
blob76da1bd1fca22d0c98516c5ead6e0cc0eceb0ec6
1 '\" te
2 .\"  Copyright (c) 1997, Sun Microsystems, Inc.  All Rights Reserved
3 .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License").  You may not use this file except in compliance with the License.
4 .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing.  See the License for the specific language governing permissions and limitations under the License.
5 .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE.  If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
6 .TH RESOLVEPATH 2 "May 12, 1997"
7 .SH NAME
8 resolvepath \- resolve all symbolic links of a path name
9 .SH SYNOPSIS
10 .LP
11 .nf
12 #include <unistd.h>
14 \fBint\fR \fBresolvepath\fR(\fBconst char *\fR\fIpath\fR, \fBchar *\fR\fIbuf\fR, \fBsize_t\fR \fIbufsiz\fR);
15 .fi
17 .SH DESCRIPTION
18 .sp
19 .LP
20 The \fBresolvepath()\fR function fully resolves all symbolic links in the path
21 name \fIpath\fR into a resulting path name free of symbolic links and places
22 the resulting path name in the buffer \fIbuf\fR which has size \fIbufsiz\fR.
23 The resulting path name names the same file or directory as the original path
24 name. All ``\fB\&.\fR'' components are eliminated and every non-leading
25 ``\fB\&..\fR'' component is eliminated together with its preceding directory
26 component. If leading ``\fB\&..\fR'' components reach to the root directory,
27 they are replaced by ``\fB/\fR''. If the number of bytes in the resulting path
28 name is less than \fIbufsiz\fR, the contents of the remainder of \fIbuf\fR are
29 unspecified.
30 .SH RETURN VALUES
31 .sp
32 .LP
33 Upon successful completion, \fBresolvepath()\fR returns the count of bytes
34 placed in the buffer. Otherwise, it returns  \fB\(mi1\fR, leaves the buffer
35 unchanged, and sets \fBerrno\fR to indicate the error.
36 .SH ERRORS
37 .sp
38 .LP
39 The \fBresolvepath()\fR function will fail if:
40 .sp
41 .ne 2
42 .na
43 \fB\fBEACCES\fR\fR
44 .ad
45 .RS 16n
46 Search permission is denied for a component of the path prefix of \fIpath\fR or
47 for a path prefix component resulting from the resolution of a symbolic link.
48 .RE
50 .sp
51 .ne 2
52 .na
53 \fB\fBEFAULT\fR\fR
54 .ad
55 .RS 16n
56 The \fIpath\fR or \fIbuf\fR argument points to an illegal address.
57 .RE
59 .sp
60 .ne 2
61 .na
62 \fB\fBEIO\fR\fR
63 .ad
64 .RS 16n
65 An I/O error occurred while reading from the file system.
66 .RE
68 .sp
69 .ne 2
70 .na
71 \fB\fBENOENT\fR\fR
72 .ad
73 .RS 16n
74 The \fIpath\fR argument is an empty string or a component of \fIpath\fR or a
75 path name component produced by resolving a symbolic link does not name an
76 existing file.
77 .RE
79 .sp
80 .ne 2
81 .na
82 \fB\fBELOOP\fR\fR
83 .ad
84 .RS 16n
85 Too many symbolic links were encountered in resolving \fIpath\fR.
86 .RE
88 .sp
89 .ne 2
90 .na
91 \fB\fBENAMETOOLONG\fR\fR
92 .ad
93 .RS 16n
94 The length of \fIpath\fR exceeds \fIPATH_MAX\fR, or a path name component is
95 longer than \fINAME_MAX\fR. Path name resolution of a symbolic link produced an
96 intermediate result whose length exceeds \fIPATH_MAX\fR or a component whose
97 length exceeds \fINAME_MAX\fR.
98 .RE
101 .ne 2
103 \fB\fBENOTDIR\fR\fR
105 .RS 16n
106 A component of the path prefix of \fIpath\fR or of a path prefix component
107 resulting from the resolution of a symbolic link is not a directory.
110 .SH USAGE
113 No more than \fIPATH_MAX\fR bytes will be placed in the buffer. Applications
114 should not assume that the returned contents of the buffer are null-terminated.
115 .SH SEE ALSO
118 \fBreadlink\fR(2), \fBrealpath\fR(3C)