1 /* Return the canonical absolute name of a given file.
2 Copyright (C) 1996-2011 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 # define _GL_USE_STDLIB_ALLOC 1
23 #if !HAVE_CANONICALIZE_FILE_NAME || !FUNC_REALPATH_WORKS || defined _LIBC
25 /* Don't use __attribute__ __nonnull__ in this compilation unit. Otherwise gcc
26 optimizes away the name == NULL test below. */
27 #define _GL_ARG_NONNULL(params)
36 #if HAVE_SYS_PARAM_H || defined _LIBC
37 # include <sys/param.h>
44 # include <shlib-compat.h>
46 # define SHLIB_COMPAT(lib, introduced, obsoleted) 0
47 # define versioned_symbol(lib, local, symbol, version) extern int dummy
48 # define compat_symbol(lib, local, symbol, version)
49 # define weak_alias(local, symbol)
50 # define __canonicalize_file_name canonicalize_file_name
51 # define __realpath realpath
56 /* When building the relocatable program wrapper, use the system's getcwd
57 function, not the gnulib override, otherwise we would get a link error.
62 /* We want the directory in Unix syntax, not in VMS syntax. */
63 # define __getcwd(buf, max) getcwd (buf, max, 0)
65 # define __getcwd getcwd
68 # define __getcwd(buf, max) getwd (buf)
70 # define __readlink readlink
71 # define __set_errno(e) errno = (e)
74 # define MAXSYMLINKS SYMLOOP_MAX
76 # define MAXSYMLINKS 20
81 #ifndef DOUBLE_SLASH_IS_DISTINCT_ROOT
82 # define DOUBLE_SLASH_IS_DISTINCT_ROOT 0
85 #if !FUNC_REALPATH_WORKS || defined _LIBC
86 /* Return the canonical absolute name of file NAME. A canonical name
87 does not contain any `.', `..' components nor any repeated path
88 separators ('/') or symlinks. All path components must exist. If
89 RESOLVED is null, the result is malloc'd; otherwise, if the
90 canonical name is PATH_MAX chars or more, returns null with `errno'
91 set to ENAMETOOLONG; if the name fits in fewer than PATH_MAX chars,
92 returns the name in RESOLVED. If the name cannot be resolved and
93 RESOLVED is non-NULL, it contains the path of the first component
94 that cannot be resolved. If the path can be resolved, RESOLVED
95 holds the same value as the value returned. */
98 __realpath (const char *name
, char *resolved
)
100 char *rpath
, *dest
, *extra_buf
= NULL
;
101 const char *start
, *end
, *rpath_limit
;
107 /* As per Single Unix Specification V2 we must return an error if
108 either parameter is a null pointer. We extend this to allow
109 the RESOLVED parameter to be NULL in case the we are expected to
110 allocate the room for the return value. */
111 __set_errno (EINVAL
);
117 /* As per Single Unix Specification V2 we must return an error if
118 the name argument points to an empty string. */
119 __set_errno (ENOENT
);
126 path_max
= pathconf (name
, _PC_PATH_MAX
);
131 if (resolved
== NULL
)
133 rpath
= malloc (path_max
);
136 /* It's easier to set errno to ENOMEM than to rely on the
137 'malloc-posix' gnulib module. */
144 rpath_limit
= rpath
+ path_max
;
148 if (!__getcwd (rpath
, path_max
))
153 dest
= strchr (rpath
, '\0');
159 if (DOUBLE_SLASH_IS_DISTINCT_ROOT
&& name
[1] == '/')
163 for (start
= end
= name
; *start
; start
= end
)
172 /* Skip sequence of multiple path-separators. */
173 while (*start
== '/')
176 /* Find end of path component. */
177 for (end
= start
; *end
&& *end
!= '/'; ++end
)
180 if (end
- start
== 0)
182 else if (end
- start
== 1 && start
[0] == '.')
184 else if (end
- start
== 2 && start
[0] == '.' && start
[1] == '.')
186 /* Back up to previous component, ignore if at root already. */
187 if (dest
> rpath
+ 1)
188 while ((--dest
)[-1] != '/');
189 if (DOUBLE_SLASH_IS_DISTINCT_ROOT
&& dest
== rpath
+ 1
200 if (dest
+ (end
- start
) >= rpath_limit
)
202 ptrdiff_t dest_offset
= dest
- rpath
;
207 __set_errno (ENAMETOOLONG
);
208 if (dest
> rpath
+ 1)
213 new_size
= rpath_limit
- rpath
;
214 if (end
- start
+ 1 > path_max
)
215 new_size
+= end
- start
+ 1;
217 new_size
+= path_max
;
218 new_rpath
= (char *) realloc (rpath
, new_size
);
219 if (new_rpath
== NULL
)
221 /* It's easier to set errno to ENOMEM than to rely on the
222 'realloc-posix' gnulib module. */
227 rpath_limit
= rpath
+ new_size
;
229 dest
= rpath
+ dest_offset
;
233 dest
= __mempcpy (dest
, start
, end
- start
);
235 memcpy (dest
, start
, end
- start
);
241 if (__lxstat64 (_STAT_VER
, rpath
, &st
) < 0)
243 if (lstat (rpath
, &st
) < 0)
247 if (S_ISLNK (st
.st_mode
))
252 if (++num_links
> MAXSYMLINKS
)
258 buf
= malloca (path_max
);
265 n
= __readlink (rpath
, buf
, path_max
- 1);
268 int saved_errno
= errno
;
277 extra_buf
= malloca (path_max
);
287 if ((long int) (n
+ len
) >= path_max
)
290 __set_errno (ENAMETOOLONG
);
294 /* Careful here, end may be a pointer into extra_buf... */
295 memmove (&extra_buf
[n
], end
, len
+ 1);
296 name
= end
= memcpy (extra_buf
, buf
, n
);
300 dest
= rpath
+ 1; /* It's an absolute symlink */
301 if (DOUBLE_SLASH_IS_DISTINCT_ROOT
&& buf
[1] == '/')
306 /* Back up to previous component, ignore if at root
308 if (dest
> rpath
+ 1)
309 while ((--dest
)[-1] != '/');
310 if (DOUBLE_SLASH_IS_DISTINCT_ROOT
&& dest
== rpath
+ 1
315 else if (!S_ISDIR (st
.st_mode
) && *end
!= '\0')
317 __set_errno (ENOTDIR
);
322 if (dest
> rpath
+ 1 && dest
[-1] == '/')
324 if (DOUBLE_SLASH_IS_DISTINCT_ROOT
&& dest
== rpath
+ 1 && *dest
== '/')
335 int saved_errno
= errno
;
338 if (resolved
== NULL
)
344 versioned_symbol (libc
, __realpath
, realpath
, GLIBC_2_3
);
345 #endif /* !FUNC_REALPATH_WORKS || defined _LIBC */
348 #if SHLIB_COMPAT(libc, GLIBC_2_0, GLIBC_2_3)
350 attribute_compat_text_section
351 __old_realpath (const char *name
, char *resolved
)
353 if (resolved
== NULL
)
355 __set_errno (EINVAL
);
359 return __realpath (name
, resolved
);
361 compat_symbol (libc
, __old_realpath
, realpath
, GLIBC_2_0
);
366 __canonicalize_file_name (const char *name
)
368 return __realpath (name
, NULL
);
370 weak_alias (__canonicalize_file_name
, canonicalize_file_name
)
374 /* This declaration is solely to ensure that after preprocessing
375 this file is never empty. */