3 * Copyright (c) 1989, 1991 The Regents of the University of California.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 4. Neither the name of the University nor the names of its contributors
15 * may be used to endorse or promote products derived from this software
16 * without specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 #if defined(LIBC_SCCS) && !defined(lint)
32 static char sccsid
[] = "@(#)getcwd.c 5.11 (Berkeley) 2/24/91";
33 #endif /* LIBC_SCCS and not lint */
35 #include <sys/param.h>
46 #define bcopy(a,b,c) memmove (b,a,c)
49 (dp->d_name[0] == '.' && (dp->d_name[1] == '\0' || \
50 (dp->d_name[1] == '.' && dp->d_name[2] == '\0')))
59 register struct dirent
*dp
;
60 register DIR *dir
= NULL
;
64 register char *bpt
, *bup
;
68 size_t ptsize
, upsize
;
73 * If no buffer specified by the user, allocate one as necessary.
74 * If a buffer is specified, the size has to be non-zero. The path
75 * is built from the end of the buffer backwards.
90 if (!(pt
= (char *) malloc (ptsize
= 1024 - 4)))
100 * Allocate bytes (1024 - malloc space) for the string of "../"'s.
101 * Should always be enough (it's 340 levels). If it's not, allocate
102 * as necessary. Special * case the first stat, it's ".", not "..".
105 if (!(up
= (char *) malloc (upsize
= 1024 - 4)))
109 eup
= up
+ MAXPATHLEN
;
114 /* Save root values, so know when to stop. */
120 errno
= 0; /* XXX readdir has no error return. */
122 for (first
= 1;; first
= 0)
124 /* Stat the current level. */
128 /* Save current node values. */
132 /* Check for reaching root. */
133 if (root_dev
== dev
&& root_ino
== ino
)
137 * It's unclear that it's a requirement to copy the
138 * path to the beginning of the buffer, but it's always
139 * been that way and stuff would probably break.
141 (void) bcopy (bpt
, pt
, ept
- bpt
);
147 * Build pointer to the parent directory, allocating memory
148 * as necessary. Max length is 3 for "../", the largest
149 * possible component name, plus a trailing NULL.
152 if (bup
+ 3 + MAXNAMLEN
+ 1 >= eup
)
154 if (!(up
= (char *) realloc (up
, upsize
*= 2)))
165 /* Open and stat parent directory. */
166 if (!(dir
= opendir (up
)) || fstat (__dirfd (dir
), &s
))
169 /* Add trailing slash for next directory. */
173 * If it's a mount point, have to stat each element because
174 * the inode number in the directory is for the entry in the
175 * parent directory, not the inode number of the mounted file.
183 if (!(dp
= readdir (dir
)))
185 if (dp
->d_ino
== ino
)
192 if (!(dp
= readdir (dir
)))
196 bcopy (dp
->d_name
, bup
, strlen (dp
->d_name
) + 1);
198 /* Save the first error for later. */
206 if (s
.st_dev
== dev
&& s
.st_ino
== ino
)
211 * Check for length of the current name, preceding slash,
215 if (bpt
- pt
<= strlen (dp
->d_name
) + (first
? 1 : 2))
226 if (!(pt
= (char *) realloc (pt
, ptsize
*= 2)))
232 (void) bcopy (bpt
, ept
- len
, len
);
237 bpt
-= strlen (dp
->d_name
);
238 bcopy (dp
->d_name
, bpt
, strlen (dp
->d_name
));
239 (void) closedir (dir
);
242 /* Truncate any file name. */
248 * If readdir set errno, use it, not any saved error; otherwise,
249 * didn't find the current directory in its parent directory, set
254 errno
= save_errno
? save_errno
: ENOENT
;
261 (void) closedir (dir
);
263 return (char *) NULL
;
266 #endif /* _REENT_ONLY */
267 #endif /* !_NO_GETCWD */