1 /* Copyright (C) 2011-2018 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
42 rpl_getcwd (char *buf
, size_t size
)
47 /* Handle single size operations. */
55 return getcwd (buf
, size
);
66 result
= getcwd (buf
, size
);
69 int saved_errno
= errno
;
76 /* Flexible sizing requested. Avoid over-allocation for the common
77 case of a name that fits within a 4k page, minus some space for
78 local variables, to be sure we don't skip over a guard page. */
82 ptr
= getcwd (tmp
, size
);
85 result
= strdup (ptr
);
94 /* My what a large directory name we have. */
98 ptr
= realloc (buf
, size
);
106 result
= getcwd (buf
, size
);
108 while (!result
&& errno
== ERANGE
);
112 int saved_errno
= errno
;
118 /* Trim to fit, if possible. */
119 result
= realloc (buf
, strlen (buf
) + 1);