1 /* Copyright (C) 2011-2020 Free Software Foundation, Inc.
2 This file is part of gnulib.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
9 This program 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/>. */
27 /* Favor GPL getcwd.c if both getcwd and getcwd-lgpl modules are in use. */
31 /* Get the name of the current working directory, and put it in SIZE
32 bytes of BUF. Returns NULL if the directory couldn't be determined
33 (perhaps because the absolute name was longer than PATH_MAX, or
34 because of missing read/search permissions on parent directories)
35 or SIZE was too small. If successful, returns BUF. If BUF is
36 NULL, an array is allocated with 'malloc'; the array is SIZE bytes
37 long, unless SIZE == 0, in which case it is as big as
41 # if defined _WIN32 && !defined __CYGWIN__
42 # define getcwd _getcwd
46 rpl_getcwd (char *buf
, size_t size
)
51 /* Handle single size operations. */
59 return getcwd (buf
, size
);
70 result
= getcwd (buf
, size
);
73 int saved_errno
= errno
;
80 /* Flexible sizing requested. Avoid over-allocation for the common
81 case of a name that fits within a 4k page, minus some space for
82 local variables, to be sure we don't skip over a guard page. */
86 ptr
= getcwd (tmp
, size
);
89 result
= strdup (ptr
);
98 /* My what a large directory name we have. */
102 ptr
= realloc (buf
, size
);
110 result
= getcwd (buf
, size
);
112 while (!result
&& errno
== ERANGE
);
116 int saved_errno
= errno
;
122 /* Here result == buf. */
123 /* Shrink result before returning it. */
124 size_t actual_size
= strlen (result
) + 1;
125 if (actual_size
< size
)
127 char *shrinked_result
= realloc (result
, actual_size
);
128 if (shrinked_result
!= NULL
)
129 result
= shrinked_result
;