]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libc/stdlib/realpath.3
Merge llvm-project release/17.x llvmorg-17.0.5-0-g98bfdac5ce82
[FreeBSD/FreeBSD.git] / lib / libc / stdlib / realpath.3
1 .\" Copyright (c) 1994
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" This code is derived from software contributed to Berkeley by
5 .\" Jan-Simon Pendry.
6 .\"
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
9 .\" are met:
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\"    notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\"    notice, this list of conditions and the following disclaimer in the
14 .\"    documentation and/or other materials provided with the distribution.
15 .\" 3. Neither the name of the University nor the names of its contributors
16 .\"    may be used to endorse or promote products derived from this software
17 .\"    without specific prior written permission.
18 .\"
19 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 .\" SUCH DAMAGE.
30 .\"
31 .Dd May 11, 2012
32 .Dt REALPATH 3
33 .Os
34 .Sh NAME
35 .Nm realpath
36 .Nd returns the canonicalized absolute pathname
37 .Sh LIBRARY
38 .Lb libc
39 .Sh SYNOPSIS
40 .In stdlib.h
41 .Ft "char *"
42 .Fn realpath "const char * restrict pathname" "char * restrict resolved_path"
43 .Sh DESCRIPTION
44 The
45 .Fn realpath
46 function resolves all symbolic links, extra
47 .Dq /
48 characters and references to
49 .Pa /./
50 and
51 .Pa /../
52 in
53 .Fa pathname ,
54 and copies the resulting absolute pathname into
55 the memory pointed to by
56 .Fa resolved_path .
57 The
58 .Fa resolved_path
59 argument
60 .Em must
61 point to a buffer capable of storing at least
62 .Dv PATH_MAX
63 characters, or be
64 .Dv NULL .
65 .Pp
66 The
67 .Fn realpath
68 function will resolve both absolute and relative paths
69 and return the absolute pathname corresponding to
70 .Fa pathname .
71 All components of
72 .Fa pathname
73 must exist when
74 .Fn realpath
75 is called, and all but the last component must name either directories or
76 symlinks pointing to the directories.
77 .Sh "RETURN VALUES"
78 The
79 .Fn realpath
80 function returns
81 .Fa resolved_path
82 on success.
83 If the function was supplied
84 .Dv NULL
85 as
86 .Fa resolved_path ,
87 and operation did not cause errors, the returned value is
88 a null-terminated string in a buffer allocated by a call to
89 .Fn malloc 3 .
90 If an error occurs,
91 .Fn realpath
92 returns
93 .Dv NULL ,
94 and if
95 .Fa resolved_path
96 is not
97 .Dv NULL ,
98 the array that it points to contains the pathname which caused the problem.
99 .Sh ERRORS
100 The function
101 .Fn realpath
102 may fail and set the external variable
103 .Va errno
104 for any of the errors specified for the library functions
105 .Xr lstat 2 ,
106 .Xr readlink 2
107 and
108 .Xr getcwd 3 .
109 .Sh SEE ALSO
110 .Xr getcwd 3
111 .\" .Sh STANDARDS
112 .\" The
113 .\" .Fn realpath
114 .\" function conforms to
115 .\" .St -p1003.1-2001 .
116 .Sh HISTORY
117 The
118 .Fn realpath
119 function first appeared in
120 .Bx 4.4 .
121 .Sh CAVEATS
122 This implementation of
123 .Fn realpath
124 differs slightly from the Solaris implementation.
125 The
126 .Bx 4.4
127 version always returns absolute pathnames,
128 whereas the Solaris implementation will,
129 under certain circumstances, return a relative
130 .Fa resolved_path
131 when given a relative
132 .Fa pathname .