1 /* Test of getcwd() function.
2 Copyright (C) 2009-2017 Free Software Foundation, Inc.
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 <http://www.gnu.org/licenses/>. */
32 #if ! HAVE_GETPAGESIZE
33 # define getpagesize() 0
36 /* This size is chosen to be larger than PATH_MAX (4k), yet smaller than
37 the 16kB pagesize on ia64 linux. Those conditions make the code below
38 trigger a bug in glibc's getcwd implementation before 2.4.90-10. */
39 #define TARGET_LEN (5 * 1024)
41 #if defined HAVE_OPENAT || (defined GNULIB_OPENAT && defined HAVE_FDOPENDIR)
42 # define HAVE_OPENAT_SUPPORT 1
44 # define HAVE_OPENAT_SUPPORT 0
47 /* Keep this test in sync with m4/getcwd-abort-bug.m4. */
52 size_t initial_cwd_len
;
55 /* The bug is triggered when PATH_MAX < getpagesize (), so skip
56 this relatively expensive and invasive test if that's not true. */
58 int bug_possible
= PATH_MAX
< getpagesize ();
65 cwd
= getcwd (NULL
, 0);
69 initial_cwd_len
= strlen (cwd
);
72 if (HAVE_OPENAT_SUPPORT
)
74 static char const dir_name
[] = "confdir-14B---";
75 size_t desired_depth
= ((TARGET_LEN
- 1 - initial_cwd_len
)
78 for (d
= 0; d
< desired_depth
; d
++)
80 if (mkdir (dir_name
, S_IRWXU
) < 0 || chdir (dir_name
) < 0)
82 if (! (errno
== ERANGE
|| errno
== ENAMETOOLONG
84 fail
= 3; /* Unable to construct deep hierarchy. */
89 /* If libc has the bug in question, this invocation of getcwd
90 results in a failed assertion. */
91 cwd
= getcwd (NULL
, 0);
93 fail
= 4; /* getcwd didn't assert, but it failed for a long name
94 where the answer could have been learned. */
97 /* Call rmdir first, in case the above chdir failed. */
101 if (chdir ("..") < 0)
113 /* The length of this name must be 8. */
114 #define DIR_NAME "confdir3"
115 #define DIR_NAME_LEN 8
116 #define DIR_NAME_SIZE (DIR_NAME_LEN + 1)
118 /* The length of "../". */
119 #define DOTDOTSLASH_LEN 3
121 /* Leftover bytes in the buffer, to work around library or OS bugs. */
124 /* Keep this test in sync with m4/getcwd-path-max.m4. */
126 test_long_name (void)
129 /* The Hurd doesn't define this, so getcwd can't exhibit the bug --
130 at least not on a local file system. And if we were to start worrying
131 about remote file systems, we'd have to enable the wrapper function
132 all of the time, just to be safe. That's not worth the cost. */
134 #elif ((INT_MAX / (DIR_NAME_SIZE / DOTDOTSLASH_LEN + 1) \
135 - DIR_NAME_SIZE - BUF_SLOP) \
137 /* FIXME: Assuming there's a system for which this is true,
138 this should be done in a compile test. */
141 char buf
[PATH_MAX
* (DIR_NAME_SIZE
/ DOTDOTSLASH_LEN
+ 1)
142 + DIR_NAME_SIZE
+ BUF_SLOP
];
143 char *cwd
= getcwd (buf
, PATH_MAX
);
144 size_t initial_cwd_len
;
152 cwd_len
= initial_cwd_len
= strlen (cwd
);
156 # ifdef HAVE_GETCWD_SHORTER
157 /* On OS/X <= 10.9 for example, we're restricted to shorter paths
158 as lstat() doesn't support more than PATH_MAX. */
159 size_t dotdot_max
= PATH_MAX
* 2;
161 size_t dotdot_max
= PATH_MAX
* (DIR_NAME_SIZE
/ DOTDOTSLASH_LEN
);
165 cwd_len
+= DIR_NAME_SIZE
;
166 /* If mkdir or chdir fails, it could be that this system cannot create
167 any file with an absolute name longer than PATH_MAX, such as cygwin.
168 If so, leave fail as 0, because the current working directory can't
169 be too long for getcwd if it can't even be created. For other
170 errors, be pessimistic and consider that as a failure, too. */
171 if (mkdir (DIR_NAME
, S_IRWXU
) < 0 || chdir (DIR_NAME
) < 0)
173 if (! (errno
== ERANGE
|| errno
== ENAMETOOLONG
|| errno
== ENOENT
))
178 if (PATH_MAX
<= cwd_len
&& cwd_len
< PATH_MAX
+ DIR_NAME_SIZE
)
180 c
= getcwd (buf
, PATH_MAX
);
181 if (!c
&& errno
== ENOENT
)
191 if (! (errno
== ERANGE
|| errno
== ENAMETOOLONG
))
198 if (dotdot_max
<= cwd_len
- initial_cwd_len
)
200 if (dotdot_max
+ DIR_NAME_SIZE
< cwd_len
- initial_cwd_len
)
202 c
= getcwd (buf
, cwd_len
+ 1);
205 if (! (errno
== ERANGE
|| errno
== ENOENT
206 || errno
== ENAMETOOLONG
))
211 if (HAVE_OPENAT_SUPPORT
|| errno
== ERANGE
|| errno
== ENOENT
)
219 if (c
&& strlen (c
) != cwd_len
)
227 /* Leaving behind such a deep directory is not polite.
228 So clean up here, right away, even though the driving
229 shell script would also clean up. */
233 /* Try rmdir first, in case the chdir failed. */
235 for (i
= 0; i
<= n_chdirs
; i
++)
237 if (chdir ("..") < 0)
239 if (rmdir (DIR_NAME
) != 0)
249 main (int argc
, char **argv
)
251 return test_abort_bug () * 10 + test_long_name ();