1 /* Copyright (C) 1991-2022 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 This file is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published
6 by the Free Software Foundation, either version 3 of the License,
7 or (at your option) any later version.
9 This file 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
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
22 # define HAVE_OPENAT 1
23 # define D_INO_IN_DIRENT 1
24 # define HAVE_MSVC_INVALID_PARAMETER_HANDLER 0
25 # define HAVE_MINIMALLY_WORKING_GETCWD 0
29 #include <sys/types.h>
34 #include <fcntl.h> /* For AT_FDCWD on Solaris 9. */
36 /* If this host provides the openat function or if we're using the
37 gnulib replacement function with a native fdopendir, then enable
38 code below to make getcwd more efficient and robust. */
39 #if defined HAVE_OPENAT || (defined GNULIB_OPENAT && defined HAVE_FDOPENDIR)
40 # define HAVE_OPENAT_SUPPORT 1
42 # define HAVE_OPENAT_SUPPORT 0
46 # define __set_errno(val) (errno = (val))
50 #ifndef _D_EXACT_NAMLEN
51 # define _D_EXACT_NAMLEN(d) strlen ((d)->d_name)
53 #ifndef _D_ALLOC_NAMLEN
54 # define _D_ALLOC_NAMLEN(d) (_D_EXACT_NAMLEN (d) + 1)
63 # define mempcpy __mempcpy
68 # define MAX(a, b) ((a) < (b) ? (b) : (a))
71 # define MIN(a, b) ((a) < (b) ? (a) : (b))
74 /* In this file, PATH_MAX only serves as a threshold for choosing among two
77 # define PATH_MAX 8192
81 # define MATCHING_INO(dp, ino) ((dp)->d_ino == (ino))
83 # define MATCHING_INO(dp, ino) true
86 #if HAVE_MSVC_INVALID_PARAMETER_HANDLER
87 # include "msvc-inval.h"
91 # define GETCWD_RETURN_TYPE char *
92 # define __close_nocancel_nostatus close
93 # define __getcwd_generic rpl_getcwd
96 # define __fstat64 fstat
97 # define __fstatat64 fstatat
98 # define __lstat64 lstat
99 # define __closedir closedir
100 # define __opendir opendir
101 # define __readdir64 readdir
102 # define __fdopendir fdopendir
103 # define __openat openat
104 # define __rewinddir rewinddir
105 # define __openat64 openat
106 # define dirent64 dirent
108 # include <not-cancel.h>
111 /* The results of opendir() in this file are not used with dirfd and fchdir,
112 and we do not leak fds to any single-threaded code that could use stdio,
113 therefore save some unnecessary recursion in fchdir.c.
114 FIXME - if the kernel ever adds support for multi-thread safety for
115 avoiding standard fds, then we should use opendir_safer and
117 #ifdef GNULIB_defined_opendir
120 #ifdef GNULIB_defined_closedir
124 #if defined _WIN32 && !defined __CYGWIN__
125 # if HAVE_MSVC_INVALID_PARAMETER_HANDLER
127 getcwd_nothrow (char *buf
, size_t size
)
133 result
= _getcwd (buf
, size
);
145 # define getcwd_nothrow _getcwd
147 # define getcwd_system getcwd_nothrow
149 # define getcwd_system getcwd
152 /* Get the name of the current working directory, and put it in SIZE
153 bytes of BUF. Returns NULL with errno set if the directory couldn't be
154 determined or SIZE was too small. If successful, returns BUF. In GNU,
155 if BUF is NULL, an array is allocated with 'malloc'; the array is SIZE
156 bytes long, unless SIZE == 0, in which case it is as big as necessary. */
159 __getcwd_generic (char *buf
, size_t size
)
161 /* Lengths of big file name components and entire file names, and a
162 deep level of file name nesting. These numbers are not upper
163 bounds; they are merely large values suitable for initial
164 allocations, designed to be large enough for most real-world
168 BIG_FILE_NAME_COMPONENT_LENGTH
= 255,
169 BIG_FILE_NAME_LENGTH
= MIN (4095, PATH_MAX
- 1),
173 #if HAVE_OPENAT_SUPPORT
175 bool fd_needs_closing
= false;
177 char dots
[DEEP_NESTING
* sizeof ".." + BIG_FILE_NAME_COMPONENT_LENGTH
+ 1];
178 char *dotlist
= dots
;
179 size_t dotsize
= sizeof dots
;
182 DIR *dirstream
= NULL
;
183 dev_t rootdev
, thisdev
;
184 ino_t rootino
, thisino
;
188 size_t allocated
= size
;
191 #if HAVE_MINIMALLY_WORKING_GETCWD
192 /* If AT_FDCWD is not defined, the algorithm below is O(N**2) and
193 this is much slower than the system getcwd (at least on
194 GNU/Linux). So trust the system getcwd's results unless they
197 Use the system getcwd even if we have openat support, since the
198 system getcwd works even when a parent is unreadable, while the
199 openat-based approach does not.
201 But on AIX 5.1..7.1, the system getcwd is not even minimally
202 working: If the current directory name is slightly longer than
203 PATH_MAX, it omits the first directory component and returns
204 this wrong result with errno = 0. */
207 dir
= getcwd_system (buf
, size
);
208 if (dir
|| (size
&& errno
== ERANGE
))
211 /* Solaris getcwd (NULL, 0) fails with errno == EINVAL, but it has
212 internal magic that lets it work even if an ancestor directory is
213 inaccessible, which is better in many cases. So in this case try
214 again with a buffer that's almost always big enough. */
215 if (errno
== EINVAL
&& buf
== NULL
&& size
== 0)
217 char big_buffer
[BIG_FILE_NAME_LENGTH
+ 1];
218 dir
= getcwd_system (big_buffer
, sizeof big_buffer
);
223 # if HAVE_PARTLY_WORKING_GETCWD
224 /* The system getcwd works, except it sometimes fails when it
225 shouldn't, setting errno to ERANGE, ENAMETOOLONG, or ENOENT. */
226 if (errno
!= ERANGE
&& errno
!= ENAMETOOLONG
&& errno
!= ENOENT
)
234 __set_errno (EINVAL
);
238 allocated
= BIG_FILE_NAME_LENGTH
+ 1;
243 dir
= malloc (allocated
);
250 dirp
= dir
+ allocated
;
253 if (__lstat64 (".", &st
) < 0)
258 if (__lstat64 ("/", &st
) < 0)
263 while (!(thisdev
== rootdev
&& thisino
== rootino
))
272 bool use_d_ino
= true;
274 /* Look at the parent directory. */
275 #if HAVE_OPENAT_SUPPORT
276 fd
= __openat64 (fd
, "..", O_RDONLY
);
279 fd_needs_closing
= true;
280 parent_status
= __fstat64 (fd
, &st
);
282 dotlist
[dotlen
++] = '.';
283 dotlist
[dotlen
++] = '.';
284 dotlist
[dotlen
] = '\0';
285 parent_status
= __lstat64 (dotlist
, &st
);
287 if (parent_status
!= 0)
290 if (dirstream
&& __closedir (dirstream
) != 0)
296 /* Figure out if this directory is a mount point. */
299 mount_point
= dotdev
!= thisdev
;
301 /* Search for the last directory. */
302 #if HAVE_OPENAT_SUPPORT
303 dirstream
= __fdopendir (fd
);
304 if (dirstream
== NULL
)
306 fd_needs_closing
= false;
308 dirstream
= __opendir (dotlist
);
309 if (dirstream
== NULL
)
311 dotlist
[dotlen
++] = '/';
315 /* Clear errno to distinguish EOF from error if readdir returns
318 d
= __readdir64 (dirstream
);
320 /* When we've iterated through all directory entries without finding
321 one with a matching d_ino, rewind the stream and consider each
322 name again, but this time, using lstat. This is necessary in a
323 chroot on at least one system (glibc-2.3.6 + linux 2.6.12), where
324 .., ../.., ../../.., etc. all had the same device number, yet the
325 d_ino values for entries in / did not match those obtained
327 if (d
== NULL
&& errno
== 0 && use_d_ino
)
330 __rewinddir (dirstream
);
331 d
= __readdir64 (dirstream
);
337 /* EOF on dirstream, which can mean e.g., that the current
338 directory has been removed. */
339 __set_errno (ENOENT
);
342 if (d
->d_name
[0] == '.' &&
343 (d
->d_name
[1] == '\0' ||
344 (d
->d_name
[1] == '.' && d
->d_name
[2] == '\0')))
349 bool match
= (MATCHING_INO (d
, thisino
) || mount_point
);
356 #if HAVE_OPENAT_SUPPORT
357 entry_status
= __fstatat64 (fd
, d
->d_name
, &st
, AT_SYMLINK_NOFOLLOW
);
359 /* Compute size needed for this file name, or for the file
360 name ".." in the same directory, whichever is larger.
361 Room for ".." might be needed the next time through
363 size_t name_alloc
= _D_ALLOC_NAMLEN (d
);
364 size_t filesize
= dotlen
+ MAX (sizeof "..", name_alloc
);
366 if (filesize
< dotlen
)
367 goto memory_exhausted
;
369 if (dotsize
< filesize
)
371 /* My, what a deep directory tree you have, Grandma. */
372 size_t newsize
= MAX (filesize
, dotsize
* 2);
374 if (newsize
< dotsize
)
375 goto memory_exhausted
;
378 dotlist
= malloc (newsize
);
393 memcpy (dotlist
+ dotlen
, d
->d_name
, _D_ALLOC_NAMLEN (d
));
394 entry_status
= __lstat64 (dotlist
, &st
);
396 /* We don't fail here if we cannot stat() a directory entry.
397 This can happen when (network) file systems fail. If this
398 entry is in fact the one we are looking for we will find
399 out soon as we reach the end of the directory without
400 having found anything. */
401 if (entry_status
== 0 && S_ISDIR (st
.st_mode
)
402 && st
.st_dev
== thisdev
&& st
.st_ino
== thisino
)
407 dirroom
= dirp
- dir
;
408 namlen
= _D_EXACT_NAMLEN (d
);
410 if (dirroom
<= namlen
)
414 __set_errno (ERANGE
);
420 size_t oldsize
= allocated
;
422 allocated
+= MAX (allocated
, namlen
);
423 if (allocated
< oldsize
424 || ! (tmp
= realloc (dir
, allocated
)))
425 goto memory_exhausted
;
427 /* Move current contents up to the end of the buffer.
428 This is guaranteed to be non-overlapping. */
429 dirp
= memcpy (tmp
+ allocated
- (oldsize
- dirroom
),
436 memcpy (dirp
, d
->d_name
, namlen
);
443 if (dirstream
&& __closedir (dirstream
) != 0)
449 if (dirp
== &dir
[allocated
- 1])
452 #if ! HAVE_OPENAT_SUPPORT
457 used
= dir
+ allocated
- dirp
;
458 memmove (dir
, dirp
, used
);
461 /* Ensure that the buffer is only as large as necessary. */
462 buf
= (used
< allocated
? realloc (dir
, used
) : dir
);
465 /* Either buf was NULL all along, or 'realloc' failed but
466 we still have the original string. */
472 __set_errno (ENOMEM
);
477 __closedir (dirstream
);
478 #if HAVE_OPENAT_SUPPORT
479 if (fd_needs_closing
)
480 __close_nocancel_nostatus (fd
);
492 #if defined _LIBC && !defined GETCWD_RETURN_TYPE
493 libc_hidden_def (__getcwd
)
494 weak_alias (__getcwd
, getcwd
)