1 /* Copyright (C) 1991-2020 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 <https://www.gnu.org/licenses/>. */
23 # define HAVE_OPENAT 1
24 # define D_INO_IN_DIRENT 1
25 # define HAVE_MSVC_INVALID_PARAMETER_HANDLER 0
26 # define HAVE_MINIMALLY_WORKING_GETCWD 0
30 #include <sys/types.h>
35 #include <fcntl.h> /* For AT_FDCWD on Solaris 9. */
37 /* If this host provides the openat function or if we're using the
38 gnulib replacement function with a native fdopendir, then enable
39 code below to make getcwd more efficient and robust. */
40 #if defined HAVE_OPENAT || (defined GNULIB_OPENAT && defined HAVE_FDOPENDIR)
41 # define HAVE_OPENAT_SUPPORT 1
43 # define HAVE_OPENAT_SUPPORT 0
47 # define __set_errno(val) (errno = (val))
51 #ifndef _D_EXACT_NAMLEN
52 # define _D_EXACT_NAMLEN(d) strlen ((d)->d_name)
54 #ifndef _D_ALLOC_NAMLEN
55 # define _D_ALLOC_NAMLEN(d) (_D_EXACT_NAMLEN (d) + 1)
64 # define mempcpy __mempcpy
69 # define MAX(a, b) ((a) < (b) ? (b) : (a))
72 # define MIN(a, b) ((a) < (b) ? (a) : (b))
75 /* In this file, PATH_MAX only serves as a threshold for choosing among two
78 # define PATH_MAX 8192
82 # define MATCHING_INO(dp, ino) ((dp)->d_ino == (ino))
84 # define MATCHING_INO(dp, ino) true
87 #if HAVE_MSVC_INVALID_PARAMETER_HANDLER
88 # include "msvc-inval.h"
92 # define __close_nocancel_nostatus close
93 # define __getcwd_generic rpl_getcwd
95 # define __fstat64 fstat
96 # define __fstatat64 fstatat
97 # define __lstat64 lstat
98 # define __closedir closedir
99 # define __opendir opendir
100 # define __readdir64 readdir
101 # define __fdopendir fdopendir
102 # define __openat openat
103 # define __rewinddir rewinddir
104 # define __openat64 openat
105 # define dirent64 dirent
107 # include <not-cancel.h>
110 /* The results of opendir() in this file are not used with dirfd and fchdir,
111 and we do not leak fds to any single-threaded code that could use stdio,
112 therefore save some unnecessary recursion in fchdir.c.
113 FIXME - if the kernel ever adds support for multi-thread safety for
114 avoiding standard fds, then we should use opendir_safer and
116 #ifdef GNULIB_defined_opendir
119 #ifdef GNULIB_defined_closedir
123 #if defined _WIN32 && !defined __CYGWIN__
124 # if HAVE_MSVC_INVALID_PARAMETER_HANDLER
126 getcwd_nothrow (char *buf
, size_t size
)
132 result
= _getcwd (buf
, size
);
144 # define getcwd_nothrow _getcwd
146 # define getcwd_system getcwd_nothrow
148 # define getcwd_system getcwd
151 /* Get the name of the current working directory, and put it in SIZE
152 bytes of BUF. Returns NULL with errno set if the directory couldn't be
153 determined or SIZE was too small. If successful, returns BUF. In GNU,
154 if BUF is NULL, an array is allocated with 'malloc'; the array is SIZE
155 bytes long, unless SIZE == 0, in which case it is as big as necessary. */
158 __getcwd_generic (char *buf
, size_t size
)
160 /* Lengths of big file name components and entire file names, and a
161 deep level of file name nesting. These numbers are not upper
162 bounds; they are merely large values suitable for initial
163 allocations, designed to be large enough for most real-world
167 BIG_FILE_NAME_COMPONENT_LENGTH
= 255,
168 BIG_FILE_NAME_LENGTH
= MIN (4095, PATH_MAX
- 1),
172 #if HAVE_OPENAT_SUPPORT
174 bool fd_needs_closing
= false;
176 char dots
[DEEP_NESTING
* sizeof ".." + BIG_FILE_NAME_COMPONENT_LENGTH
+ 1];
177 char *dotlist
= dots
;
178 size_t dotsize
= sizeof dots
;
181 DIR *dirstream
= NULL
;
182 dev_t rootdev
, thisdev
;
183 ino_t rootino
, thisino
;
187 size_t allocated
= size
;
190 #if HAVE_MINIMALLY_WORKING_GETCWD
191 /* If AT_FDCWD is not defined, the algorithm below is O(N**2) and
192 this is much slower than the system getcwd (at least on
193 GNU/Linux). So trust the system getcwd's results unless they
196 Use the system getcwd even if we have openat support, since the
197 system getcwd works even when a parent is unreadable, while the
198 openat-based approach does not.
200 But on AIX 5.1..7.1, the system getcwd is not even minimally
201 working: If the current directory name is slightly longer than
202 PATH_MAX, it omits the first directory component and returns
203 this wrong result with errno = 0. */
206 dir
= getcwd_system (buf
, size
);
207 if (dir
|| (size
&& errno
== ERANGE
))
210 /* Solaris getcwd (NULL, 0) fails with errno == EINVAL, but it has
211 internal magic that lets it work even if an ancestor directory is
212 inaccessible, which is better in many cases. So in this case try
213 again with a buffer that's almost always big enough. */
214 if (errno
== EINVAL
&& buf
== NULL
&& size
== 0)
216 char big_buffer
[BIG_FILE_NAME_LENGTH
+ 1];
217 dir
= getcwd_system (big_buffer
, sizeof big_buffer
);
222 # if HAVE_PARTLY_WORKING_GETCWD
223 /* The system getcwd works, except it sometimes fails when it
224 shouldn't, setting errno to ERANGE, ENAMETOOLONG, or ENOENT. */
225 if (errno
!= ERANGE
&& errno
!= ENAMETOOLONG
&& errno
!= ENOENT
)
233 __set_errno (EINVAL
);
237 allocated
= BIG_FILE_NAME_LENGTH
+ 1;
242 dir
= malloc (allocated
);
249 dirp
= dir
+ allocated
;
252 if (__lstat64 (".", &st
) < 0)
257 if (__lstat64 ("/", &st
) < 0)
262 while (!(thisdev
== rootdev
&& thisino
== rootino
))
271 bool use_d_ino
= true;
273 /* Look at the parent directory. */
274 #if HAVE_OPENAT_SUPPORT
275 fd
= __openat64 (fd
, "..", O_RDONLY
);
278 fd_needs_closing
= true;
279 parent_status
= __fstat64 (fd
, &st
);
281 dotlist
[dotlen
++] = '.';
282 dotlist
[dotlen
++] = '.';
283 dotlist
[dotlen
] = '\0';
284 parent_status
= __lstat64 (dotlist
, &st
);
286 if (parent_status
!= 0)
289 if (dirstream
&& __closedir (dirstream
) != 0)
295 /* Figure out if this directory is a mount point. */
298 mount_point
= dotdev
!= thisdev
;
300 /* Search for the last directory. */
301 #if HAVE_OPENAT_SUPPORT
302 dirstream
= __fdopendir (fd
);
303 if (dirstream
== NULL
)
305 fd_needs_closing
= false;
307 dirstream
= __opendir (dotlist
);
308 if (dirstream
== NULL
)
310 dotlist
[dotlen
++] = '/';
314 /* Clear errno to distinguish EOF from error if readdir returns
317 d
= __readdir64 (dirstream
);
319 /* When we've iterated through all directory entries without finding
320 one with a matching d_ino, rewind the stream and consider each
321 name again, but this time, using lstat. This is necessary in a
322 chroot on at least one system (glibc-2.3.6 + linux 2.6.12), where
323 .., ../.., ../../.., etc. all had the same device number, yet the
324 d_ino values for entries in / did not match those obtained
326 if (d
== NULL
&& errno
== 0 && use_d_ino
)
329 __rewinddir (dirstream
);
330 d
= __readdir64 (dirstream
);
336 /* EOF on dirstream, which can mean e.g., that the current
337 directory has been removed. */
338 __set_errno (ENOENT
);
341 if (d
->d_name
[0] == '.' &&
342 (d
->d_name
[1] == '\0' ||
343 (d
->d_name
[1] == '.' && d
->d_name
[2] == '\0')))
348 bool match
= (MATCHING_INO (d
, thisino
) || mount_point
);
355 #if HAVE_OPENAT_SUPPORT
356 entry_status
= __fstatat64 (fd
, d
->d_name
, &st
, AT_SYMLINK_NOFOLLOW
);
358 /* Compute size needed for this file name, or for the file
359 name ".." in the same directory, whichever is larger.
360 Room for ".." might be needed the next time through
362 size_t name_alloc
= _D_ALLOC_NAMLEN (d
);
363 size_t filesize
= dotlen
+ MAX (sizeof "..", name_alloc
);
365 if (filesize
< dotlen
)
366 goto memory_exhausted
;
368 if (dotsize
< filesize
)
370 /* My, what a deep directory tree you have, Grandma. */
371 size_t newsize
= MAX (filesize
, dotsize
* 2);
373 if (newsize
< dotsize
)
374 goto memory_exhausted
;
377 dotlist
= malloc (newsize
);
392 memcpy (dotlist
+ dotlen
, d
->d_name
, _D_ALLOC_NAMLEN (d
));
393 entry_status
= __lstat64 (dotlist
, &st
);
395 /* We don't fail here if we cannot stat() a directory entry.
396 This can happen when (network) file systems fail. If this
397 entry is in fact the one we are looking for we will find
398 out soon as we reach the end of the directory without
399 having found anything. */
400 if (entry_status
== 0 && S_ISDIR (st
.st_mode
)
401 && st
.st_dev
== thisdev
&& st
.st_ino
== thisino
)
406 dirroom
= dirp
- dir
;
407 namlen
= _D_EXACT_NAMLEN (d
);
409 if (dirroom
<= namlen
)
413 __set_errno (ERANGE
);
419 size_t oldsize
= allocated
;
421 allocated
+= MAX (allocated
, namlen
);
422 if (allocated
< oldsize
423 || ! (tmp
= realloc (dir
, allocated
)))
424 goto memory_exhausted
;
426 /* Move current contents up to the end of the buffer.
427 This is guaranteed to be non-overlapping. */
428 dirp
= memcpy (tmp
+ allocated
- (oldsize
- dirroom
),
435 memcpy (dirp
, d
->d_name
, namlen
);
442 if (dirstream
&& __closedir (dirstream
) != 0)
448 if (dirp
== &dir
[allocated
- 1])
451 #if ! HAVE_OPENAT_SUPPORT
456 used
= dir
+ allocated
- dirp
;
457 memmove (dir
, dirp
, used
);
460 /* Ensure that the buffer is only as large as necessary. */
461 buf
= (used
< allocated
? realloc (dir
, used
) : dir
);
464 /* Either buf was NULL all along, or 'realloc' failed but
465 we still have the original string. */
471 __set_errno (ENOMEM
);
476 __closedir (dirstream
);
477 #if HAVE_OPENAT_SUPPORT
478 if (fd_needs_closing
)
479 __close_nocancel_nostatus (fd
);