1 /* Copyright (C) 1991-2017 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 Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the 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 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
27 /* AIX requires this to be the first thing in the file. */
28 #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. */
139 # define MAX(a, b) ((a) < (b) ? (b) : (a))
144 # define mempcpy __mempcpy
146 # define HAVE_MEMPCPY 1
149 #if !defined __alloca && !defined __GNU_LIBRARY__
153 # define alloca(n) __builtin_alloca (n)
154 # else /* Not GCC. */
155 # if defined sparc || defined HAVE_ALLOCA_H
157 # else /* Not sparc or HAVE_ALLOCA_H. */
159 extern char *alloca ();
160 # endif /* Not _AIX. */
161 # endif /* sparc or HAVE_ALLOCA_H. */
164 # define __alloca alloca
168 #if defined HAVE_LIMITS_H || defined STDC_HEADERS || defined __GNU_LIBRARY__
171 # include <sys/param.h>
175 # include <not-cancel.h>
176 # include <kernel-features.h>
178 # define openat64_not_cancel_3(dfd, name, mode) openat64 (dfd, name, mode)
179 # define close_not_cancel_no_status(fd) close (fd)
184 # define PATH_MAX MAXPATHLEN
186 # define PATH_MAX 1024
190 #if !defined STDC_HEADERS && !defined __GNU_LIBRARY__
192 # define size_t unsigned int
195 #ifndef __GNU_LIBRARY__
196 # define __lstat64 stat64
200 # define __rewinddir rewinddir
204 # define __getcwd getcwd
207 #ifndef GETCWD_RETURN_TYPE
208 # define GETCWD_RETURN_TYPE char *
211 #ifdef __ASSUME_ATFCTS
212 # define __have_atfcts 1
214 static int __rtld_have_atfcts
;
215 # define __have_atfcts __rtld_have_atfcts
218 /* Get the pathname of the current working directory, and put it in SIZE
219 bytes of BUF. Returns NULL if the directory couldn't be determined or
220 SIZE was too small. If successful, returns BUF. In GNU, if BUF is
221 NULL, an array is allocated with `malloc'; the array is SIZE bytes long,
222 unless SIZE == 0, in which case it is as big as necessary. */
225 __getcwd (char *buf
, size_t size
)
227 #ifndef __ASSUME_ATFCTS
228 static const char dots
[]
229 = "../../../../../../../../../../../../../../../../../../../../../../../\
230 ../../../../../../../../../../../../../../../../../../../../../../../../../../\
231 ../../../../../../../../../../../../../../../../../../../../../../../../../..";
232 const char *dotp
= &dots
[sizeof (dots
)];
233 const char *dotlist
= dots
;
234 size_t dotsize
= sizeof (dots
) - 1;
236 int prev_errno
= errno
;
237 DIR *dirstream
= NULL
;
238 bool fd_needs_closing
= false;
242 #ifndef NO_ALLOCATION
243 size_t allocated
= size
;
248 __set_errno (EINVAL
);
252 allocated
= PATH_MAX
+ 1;
257 path
= malloc (allocated
);
263 # define allocated size
267 char *pathp
= path
+ allocated
;
271 if (__lstat64 (".", &st
) < 0)
273 dev_t thisdev
= st
.st_dev
;
274 ino_t thisino
= st
.st_ino
;
276 if (__lstat64 ("/", &st
) < 0)
278 dev_t rootdev
= st
.st_dev
;
279 ino_t rootino
= st
.st_ino
;
281 while (!(thisdev
== rootdev
&& thisino
== rootino
))
283 if (__have_atfcts
>= 0)
289 fd
= openat64_not_cancel_3 (fd
, "..", mode
);
295 fd_needs_closing
= true;
296 if (__fstat64 (fd
, &st
) < 0)
299 #ifndef __ASSUME_ATFCTS
300 else if (errno
== ENOSYS
)
304 /* Look at the parent directory. */
307 # ifdef NO_ALLOCATION
308 __set_errno (ENOMEM
);
311 /* My, what a deep directory tree you have, Grandma. */
315 new = malloc (dotsize
* 2 + 1);
319 dotp
= mempcpy (new, dots
, dotsize
);
321 memcpy (new, dots
, dotsize
);
322 dotp
= &new[dotsize
];
327 new = realloc ((__ptr_t
) dotlist
, dotsize
* 2 + 1);
330 dotp
= &new[dotsize
];
333 *((char *) mempcpy ((char *) dotp
, new, dotsize
)) = '\0';
336 memcpy ((char *) dotp
, new, dotsize
);
346 /* Figure out if this directory is a mount point. */
347 if (__lstat64 (dotp
, &st
) < 0)
354 if (dirstream
&& __closedir (dirstream
) != 0)
360 dev_t dotdev
= st
.st_dev
;
361 ino_t dotino
= st
.st_ino
;
362 bool mount_point
= dotdev
!= thisdev
;
364 /* Search for the last directory. */
365 if (__have_atfcts
>= 0)
366 dirstream
= __fdopendir (fd
);
367 #ifndef __ASSUME_ATFCTS
369 dirstream
= __opendir (dotp
);
371 if (dirstream
== NULL
)
373 fd_needs_closing
= false;
376 bool use_d_ino
= true;
379 /* Clear errno to distinguish EOF from error if readdir returns
382 d
= __readdir (dirstream
);
387 /* When we've iterated through all directory entries
388 without finding one with a matching d_ino, rewind the
389 stream and consider each name again, but this time, using
390 lstat64. This is necessary in a chroot on at least one
395 __rewinddir (dirstream
);
399 /* EOF on dirstream, which means that the current directory
401 __set_errno (ENOENT
);
406 #ifdef _DIRENT_HAVE_D_TYPE
407 if (d
->d_type
!= DT_DIR
&& d
->d_type
!= DT_UNKNOWN
)
410 if (d
->d_name
[0] == '.'
411 && (d
->d_name
[1] == '\0'
412 || (d
->d_name
[1] == '.' && d
->d_name
[2] == '\0')))
414 if (use_d_ino
&& !mount_point
&& (ino_t
) d
->d_ino
!= thisino
)
417 if (__have_atfcts
>= 0)
419 /* We don't fail here if we cannot stat64() a directory entry.
420 This can happen when (network) filesystems fail. If this
421 entry is in fact the one we are looking for we will find
422 out soon as we reach the end of the directory without
423 having found anything. */
424 if (__fstatat64 (fd
, d
->d_name
, &st
, AT_SYMLINK_NOFOLLOW
) < 0)
427 #ifndef __ASSUME_ATFCTS
430 char name
[dotlist
+ dotsize
- dotp
+ 1 + _D_ALLOC_NAMLEN (d
)];
432 char *tmp
= mempcpy (name
, dotp
, dotlist
+ dotsize
- dotp
);
434 strcpy (tmp
, d
->d_name
);
436 memcpy (name
, dotp
, dotlist
+ dotsize
- dotp
);
437 name
[dotlist
+ dotsize
- dotp
] = '/';
438 strcpy (&name
[dotlist
+ dotsize
- dotp
+ 1], d
->d_name
);
440 /* We don't fail here if we cannot stat64() a directory entry.
441 This can happen when (network) filesystems fail. If this
442 entry is in fact the one we are looking for we will find
443 out soon as we reach the end of the directory without
444 having found anything. */
445 if (__lstat64 (name
, &st
) < 0)
449 if (S_ISDIR (st
.st_mode
)
450 && st
.st_dev
== thisdev
&& st
.st_ino
== thisino
)
454 size_t namlen
= _D_EXACT_NAMLEN (d
);
456 if ((size_t) (pathp
- path
) <= namlen
)
458 #ifndef NO_ALLOCATION
461 size_t oldsize
= allocated
;
463 allocated
= 2 * MAX (allocated
, namlen
);
464 char *tmp
= realloc (path
, allocated
);
468 /* Move current contents up to the end of the buffer.
469 This is guaranteed to be non-overlapping. */
470 pathp
= memcpy (tmp
+ allocated
- (path
+ oldsize
- pathp
),
471 tmp
+ (pathp
- path
),
472 path
+ oldsize
- pathp
);
478 __set_errno (ERANGE
);
483 (void) memcpy (pathp
, d
->d_name
, namlen
);
490 if (dirstream
!= NULL
&& __closedir (dirstream
) != 0)
496 if (pathp
== &path
[allocated
- 1])
499 #ifndef __ASSUME_ATFCTS
501 free ((__ptr_t
) dotlist
);
504 size_t used
= path
+ allocated
- pathp
;
505 memmove (path
, pathp
, used
);
508 /* Ensure that the buffer is only as large as necessary. */
509 buf
= realloc (path
, used
);
512 /* Either buf was NULL all along, or `realloc' failed but
513 we still have the original string. */
516 /* Restore errno on successful return. */
517 __set_errno (prev_errno
);
522 int save_errno
= errno
;
523 #ifndef __ASSUME_ATFCTS
525 free ((__ptr_t
) dotlist
);
527 if (dirstream
!= NULL
)
528 __closedir (dirstream
);
529 if (fd_needs_closing
)
530 close_not_cancel_no_status (fd
);
531 #ifndef NO_ALLOCATION
535 __set_errno (save_errno
);
539 #if defined _LIBC && !defined __getcwd
540 weak_alias (__getcwd
, getcwd
)