]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libc/gen/getcwd.3
Fix "version introduced" in numerous manual pages
[FreeBSD/FreeBSD.git] / lib / libc / gen / getcwd.3
1 .\" Copyright (c) 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 .\" 3. 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 .Dd April 17, 2010
29 .Dt GETCWD 3
30 .Os
31 .Sh NAME
32 .Nm getcwd ,
33 .Nm getwd
34 .Nd get working directory pathname
35 .Sh LIBRARY
36 .Lb libc
37 .Sh SYNOPSIS
38 .In unistd.h
39 .Ft char *
40 .Fn getcwd "char *buf" "size_t size"
41 .Ft char *
42 .Fn getwd "char *buf"
43 .Sh DESCRIPTION
44 The
45 .Fn getcwd
46 function copies the absolute pathname of the current working directory
47 into the memory referenced by
48 .Fa buf
49 and returns a pointer to
50 .Fa buf .
51 The
52 .Fa size
53 argument is the size, in bytes, of the array referenced by
54 .Fa buf .
55 .Pp
56 If
57 .Fa buf
58 is
59 .Dv NULL ,
60 space is allocated as necessary to store the pathname.
61 This space may later be
62 .Xr free 3 Ns 'd .
63 .Pp
64 The function
65 .Fn getwd
66 is a compatibility routine which calls
67 .Fn getcwd
68 with its
69 .Fa buf
70 argument and a size of
71 .Dv MAXPATHLEN
72 (as defined in the include
73 file
74 .In sys/param.h ) .
75 Obviously,
76 .Fa buf
77 should be at least
78 .Dv MAXPATHLEN
79 bytes in length.
80 .Pp
81 These routines have traditionally been used by programs to save the
82 name of a working directory for the purpose of returning to it.
83 A much faster and less error-prone method of accomplishing this is to
84 open the current directory
85 .Pq Ql .\&
86 and use the
87 .Xr fchdir 2
88 function to return.
89 .Sh RETURN VALUES
90 Upon successful completion, a pointer to the pathname is returned.
91 Otherwise a
92 .Dv NULL
93 pointer is returned and the global variable
94 .Va errno
95 is set to indicate the error.
96 In addition,
97 .Fn getwd
98 copies the error message associated with
99 .Va errno
100 into the memory referenced by
101 .Fa buf .
102 .Sh ERRORS
103 The
104 .Fn getcwd
105 function
106 will fail if:
107 .Bl -tag -width Er
108 .It Bq Er EINVAL
109 The
110 .Fa size
111 argument is zero.
112 .It Bq Er ENOENT
113 A component of the pathname no longer exists.
114 .It Bq Er ENOMEM
115 Insufficient memory is available.
116 .It Bq Er ERANGE
117 The
118 .Fa size
119 argument is greater than zero but smaller than the length of the pathname
120 plus 1.
121 .El
122 .Pp
123 The
124 .Fn getcwd
125 function
126 may fail if:
127 .Bl -tag -width Er
128 .It Bq Er EACCES
129 Read or search permission was denied for a component of the pathname.
130 This is only checked in limited cases, depending on implementation details.
131 .El
132 .Sh SEE ALSO
133 .Xr chdir 2 ,
134 .Xr fchdir 2 ,
135 .Xr malloc 3 ,
136 .Xr strerror 3
137 .Sh STANDARDS
138 The
139 .Fn getcwd
140 function
141 conforms to
142 .St -p1003.1-90 .
143 The ability to specify a
144 .Dv NULL
145 pointer and have
146 .Fn getcwd
147 allocate memory as necessary is an extension.
148 .Sh HISTORY
149 The
150 .Fn getwd
151 function appeared in
152 .Bx 4.0 .
153 .Sh BUGS
154 The
155 .Fn getwd
156 function
157 does not do sufficient error checking and is not able to return very
158 long, but valid, paths.
159 It is provided for compatibility.