]>
git.saurik.com Git - apple/libc.git/blob - stdlib/FreeBSD/realpath.c
2 * Copyright (c) 2003 Constantin S. Svintsoff <kostik@iclub.nsu.ru>
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 * 3. The names of the authors may not be used to endorse or promote
13 * products derived from this software without specific prior written
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 #if defined(LIBC_SCCS) && !defined(lint)
30 static char sccsid
[] = "@(#)realpath.c 8.1 (Berkeley) 2/16/94";
31 #endif /* LIBC_SCCS and not lint */
32 #include <sys/cdefs.h>
33 __FBSDID("$FreeBSD: src/lib/libc/stdlib/realpath.c,v 1.20 2003/05/28 08:23:01 fjoe Exp $");
35 #include "namespace.h"
36 #include <sys/param.h>
43 #include "un-namespace.h"
46 * char *realpath(const char *path, char resolved[PATH_MAX]);
48 * Find the real name of path, by removing all ".", ".." and symlink
49 * components. Returns (resolved) on success, or (NULL) on failure,
50 * in which case the path which caused trouble is left in (resolved).
53 realpath(const char *path
, char resolved
[PATH_MAX
])
57 size_t left_len
, resolved_len
;
60 char left
[PATH_MAX
], next_token
[PATH_MAX
], symlink
[PATH_MAX
];
70 left_len
= strlcpy(left
, path
+ 1, sizeof(left
));
72 if (getcwd(resolved
, PATH_MAX
) == NULL
) {
73 strlcpy(resolved
, ".", PATH_MAX
);
76 resolved_len
= strlen(resolved
);
77 left_len
= strlcpy(left
, path
, sizeof(left
));
79 if (left_len
>= sizeof(left
) || resolved_len
>= PATH_MAX
) {
85 * Iterate over path components in `left'.
87 while (left_len
!= 0) {
89 * Extract the next path component and adjust `left'
92 p
= strchr(left
, '/');
93 s
= p
? p
: left
+ left_len
;
94 if (s
- left
>= sizeof(next_token
)) {
98 memcpy(next_token
, left
, s
- left
);
99 next_token
[s
- left
] = '\0';
100 left_len
-= s
- left
;
102 memmove(left
, s
+ 1, left_len
+ 1);
103 if (resolved
[resolved_len
- 1] != '/') {
104 if (resolved_len
+ 1 >= PATH_MAX
) {
105 errno
= ENAMETOOLONG
;
108 resolved
[resolved_len
++] = '/';
109 resolved
[resolved_len
] = '\0';
111 if (next_token
[0] == '\0')
113 else if (strcmp(next_token
, ".") == 0)
115 else if (strcmp(next_token
, "..") == 0) {
117 * Strip the last path component except when we have
120 if (resolved_len
> 1) {
121 resolved
[resolved_len
- 1] = '\0';
122 q
= strrchr(resolved
, '/') + 1;
124 resolved_len
= q
- resolved
;
130 * Append the next path component and lstat() it. If
131 * lstat() fails we still can return successfully if
132 * there are no more path components left.
134 resolved_len
= strlcat(resolved
, next_token
, PATH_MAX
);
135 if (resolved_len
>= PATH_MAX
) {
136 errno
= ENAMETOOLONG
;
139 if (lstat(resolved
, &sb
) != 0) {
140 if (errno
== ENOENT
&& p
== NULL
) {
146 if (S_ISLNK(sb
.st_mode
)) {
147 if (symlinks
++ > MAXSYMLINKS
) {
151 slen
= readlink(resolved
, symlink
, sizeof(symlink
) - 1);
154 symlink
[slen
] = '\0';
155 if (symlink
[0] == '/') {
158 } else if (resolved_len
> 1) {
159 /* Strip the last path component. */
160 resolved
[resolved_len
- 1] = '\0';
161 q
= strrchr(resolved
, '/') + 1;
163 resolved_len
= q
- resolved
;
167 * If there are any path components left, then
168 * append them to symlink. The result is placed
172 if (symlink
[slen
- 1] != '/') {
173 if (slen
+ 1 >= sizeof(symlink
)) {
174 errno
= ENAMETOOLONG
;
178 symlink
[slen
+ 1] = 0;
180 left_len
= strlcat(symlink
, left
, sizeof(left
));
181 if (left_len
>= sizeof(left
)) {
182 errno
= ENAMETOOLONG
;
186 left_len
= strlcpy(left
, symlink
, sizeof(left
));
191 * Remove trailing slash except when the resolved pathname
194 if (resolved_len
> 1 && resolved
[resolved_len
- 1] == '/')
195 resolved
[resolved_len
- 1] = '\0';