1 /* Copyright (C) 1991, 92, 93, 94, 95, 96, 97 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If not,
16 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
28 /* AIX requires this to be the first thing in the file. */
29 #if defined _AIX && !defined __GNUC__
38 #include <sys/types.h>
45 #if !defined __GNU_LIBRARY__ && !defined STDC_HEADERS
49 # define __set_errno(val) errno = (val)
56 #if defined USGr3 && !defined DIRENT
59 #if defined Xenix && !defined SYSNDIR
63 #if defined POSIX || defined DIRENT || defined __GNU_LIBRARY__
65 # ifndef __GNU_LIBRARY__
66 # define D_NAMLEN(d) strlen((d)->d_name)
68 # define HAVE_D_NAMLEN
69 # define D_NAMLEN(d) ((d)->d_namlen)
71 #else /* not POSIX or DIRENT */
72 # define dirent direct
73 # define D_NAMLEN(d) ((d)->d_namlen)
74 # define HAVE_D_NAMLEN
75 # if defined USG && !defined sgi
77 # include <sys/ndir.h>
78 # else /* Not SYSNDIR */
84 #endif /* POSIX or DIRENT or __GNU_LIBRARY__ */
86 #if defined HAVE_UNISTD_H || defined __GNU_LIBRARY__
90 #if defined STDC_HEADERS || defined __GNU_LIBRARY__ || defined POSIX
94 #else /* No standard headers. */
104 # else /* Not USG. */
110 # else /* Not NeXT. */
112 # include <strings.h>
118 extern void bzero ();
121 extern void bcopy ();
128 extern char *malloc (), *realloc ();
131 #endif /* Standard headers. */
134 # define memcpy(d, s, n) bcopy((s), (d), (n))
135 # define memmove memcpy
136 #endif /* Not ANSI_STRING. */
138 #if !defined __alloca && !defined __GNU_LIBRARY__
142 # define alloca(n) __builtin_alloca (n)
143 # else /* Not GCC. */
144 # if defined sparc || defined HAVE_ALLOCA_H
146 # else /* Not sparc or HAVE_ALLOCA_H. */
148 extern char *alloca ();
149 # endif /* Not _AIX. */
150 # endif /* sparc or HAVE_ALLOCA_H. */
153 # define __alloca alloca
157 #if defined HAVE_LIMITS_H || defined STDC_HEADERS || defined __GNU_LIBRARY__
160 # include <sys/param.h>
165 # define PATH_MAX MAXPATHLEN
167 # define PATH_MAX 1024
171 #if !defined STDC_HEADERS && !defined __GNU_LIBRARY__
173 # define size_t unsigned int
176 #if !__STDC__ && !defined const
180 #ifndef __GNU_LIBRARY__
181 # define __lstat stat
185 # define __getcwd getcwd
188 /* Get the pathname of the current working directory, and put it in SIZE
189 bytes of BUF. Returns NULL if the directory couldn't be determined or
190 SIZE was too small. If successful, returns BUF. In GNU, if BUF is
191 NULL, an array is allocated with `malloc'; the array is SIZE bytes long,
192 unless SIZE <= 0, in which case it is as big as necessary. */
199 static const char dots[]
200 = "../../../../../../../../../../../../../../../../../../../../../../../\
201 ../../../../../../../../../../../../../../../../../../../../../../../../../../\
202 ../../../../../../../../../../../../../../../../../../../../../../../../../..";
203 const char *dotp, *dotlist;
205 dev_t rootdev, thisdev;
206 ino_t rootino, thisino;
208 register char *pathp;
215 __set_errno (EINVAL);
226 path = malloc (size);
234 if (__lstat (".", &st) < 0)
239 if (__lstat ("/", &st) < 0)
244 dotsize = sizeof (dots) - 1;
245 dotp = &dots[sizeof (dots)];
247 while (!(thisdev == rootdev && thisino == rootino))
249 register DIR *dirstream;
255 /* Look at the parent directory. */
258 /* My, what a deep directory tree you have, Grandma. */
262 new = malloc (dotsize * 2 + 1);
266 dotp = mempcpy (new, dots, dotsize);
268 memcpy (new, dots, dotsize);
269 dotp = &new[dotsize];
274 new = realloc ((__ptr_t) dotlist, dotsize * 2 + 1);
277 dotp = &new[dotsize];
280 *((char *) mempcpy (dotp, new, dotsize)) = '\0';
283 memcpy (dotp, new, dotsize);
292 /* Figure out if this directory is a mount point. */
293 if (__lstat (dotp, &st) < 0)
297 mount_point = dotdev != thisdev;
299 /* Search for the last directory. */
300 dirstream = __opendir (dotp);
301 if (dirstream == NULL)
303 while ((d = __readdir (dirstream)) != NULL)
305 if (d->d_name[0] == '.' &&
306 (d->d_name[1] == '\0' ||
307 (d->d_name[1] == '.' && d->d_name[2] == '\0')))
309 if (mount_point || (ino_t) d->d_ino == thisino)
311 char name[dotlist + dotsize - dotp + 1 + _D_ALLOC_NAMLEN (d)];
313 char *tmp = mempcpy (name, dotp, dotlist + dotsize - dotp);
315 strcpy (tmp, d->d_name);
317 memcpy (name, dotp, dotlist + dotsize - dotp);
318 name[dotlist + dotsize - dotp] = '/';
319 strcpy (&name[dotlist + dotsize - dotp + 1], d->d_name);
321 if (__lstat (name, &st) < 0)
324 (void) __closedir (dirstream);
328 if (st.st_dev == thisdev && st.st_ino == thisino)
335 (void) __closedir (dirstream);
341 size_t namlen = _D_EXACT_NAMLEN (d);
343 if ((size_t) (pathp - path) <= namlen)
347 (void) __closedir (dirstream);
348 __set_errno (ERANGE);
354 buf = realloc (path, size);
357 (void) __closedir (dirstream);
359 __set_errno (ENOMEM);/* closedir might have changed it.*/
362 pathp = &buf[pathp - path + size / 2];
364 /* Move current contents up to the end of the buffer.
365 This is guaranteed to be non-overlapping. */
366 memcpy (pathp, pathp - size / 2, path + size - pathp);
370 (void) memcpy (pathp, d->d_name, namlen);
372 (void) __closedir (dirstream);
379 if (pathp == &path[size - 1])
383 free ((__ptr_t) dotlist);
385 memmove (path, pathp, path + size - pathp);
390 free ((__ptr_t) dotlist);
395 weak_alias (__getcwd, getcwd)