]> git.ipfire.org Git - thirdparty/git.git/blame - abspath.c
environment: move comment_line_char from cache.h
[thirdparty/git.git] / abspath.c
CommitLineData
5b8e6f85
DP
1#include "cache.h"
2
90b4a71c
JH
3/*
4 * Do not use this for inspecting *tracked* content. When path is a
5 * symlink to a directory, we do not want to say it is a directory when
6 * dealing with tracked content in the working tree.
7 */
8int is_directory(const char *path)
9{
10 struct stat st;
11 return (!stat(path, &st) && S_ISDIR(st.st_mode));
12}
13
05b458c1
BW
14/* removes the last path component from 'path' except if 'path' is root */
15static void strip_last_component(struct strbuf *path)
16{
17 size_t offset = offset_1st_component(path->buf);
18 size_t len = path->len;
19
20 /* Find start of the last component */
21 while (offset < len && !is_dir_sep(path->buf[len - 1]))
22 len--;
23 /* Skip sequences of multiple path-separators */
24 while (offset < len && is_dir_sep(path->buf[len - 1]))
25 len--;
26
27 strbuf_setlen(path, len);
28}
29
30/* get (and remove) the next component in 'remaining' and place it in 'next' */
31static void get_next_component(struct strbuf *next, struct strbuf *remaining)
32{
33 char *start = NULL;
34 char *end = NULL;
35
36 strbuf_reset(next);
37
38 /* look for the next component */
39 /* Skip sequences of multiple path-separators */
40 for (start = remaining->buf; is_dir_sep(*start); start++)
41 ; /* nothing */
42 /* Find end of the path component */
43 for (end = start; *end && !is_dir_sep(*end); end++)
44 ; /* nothing */
45
46 strbuf_add(next, start, end - start);
47 /* remove the component from 'remaining' */
48 strbuf_remove(remaining, 0, end - remaining->buf);
49}
50
e9a379c3
JS
51/* copies root part from remaining to resolved, canonicalizing it on the way */
52static void get_root_part(struct strbuf *resolved, struct strbuf *remaining)
53{
54 int offset = offset_1st_component(remaining->buf);
55
56 strbuf_reset(resolved);
57 strbuf_add(resolved, remaining->buf, offset);
58#ifdef GIT_WINDOWS_NATIVE
59 convert_slashes(resolved->buf);
60#endif
61 strbuf_remove(remaining, 0, offset);
62}
63
5b8e6f85 64/* We allow "recursive" symbolic links. Only within reason, though. */
7aeb81f1
BW
65#ifndef MAXSYMLINKS
66#define MAXSYMLINKS 32
67#endif
5b8e6f85 68
e2a57aac 69/*
be6e0dae 70 * If set, any number of trailing components may be missing; otherwise, only one
71 * may be.
e2a57aac 72 */
be6e0dae 73#define REALPATH_MANY_MISSING (1 << 0)
74/* Should we die if there's an error? */
75#define REALPATH_DIE_ON_ERROR (1 << 1)
76
77static char *strbuf_realpath_1(struct strbuf *resolved, const char *path,
78 int flags)
5b8e6f85 79{
05b458c1
BW
80 struct strbuf remaining = STRBUF_INIT;
81 struct strbuf next = STRBUF_INIT;
82 struct strbuf symlink = STRBUF_INIT;
038e55fe 83 char *retval = NULL;
05b458c1 84 int num_symlinks = 0;
5b8e6f85
DP
85 struct stat st;
86
038e55fe 87 if (!*path) {
be6e0dae 88 if (flags & REALPATH_DIE_ON_ERROR)
038e55fe
MH
89 die("The empty string is not a valid path");
90 else
91 goto error_out;
92 }
3efe5d1d 93
e9a379c3
JS
94 strbuf_addstr(&remaining, path);
95 get_root_part(resolved, &remaining);
5b8e6f85 96
e9a379c3 97 if (!resolved->len) {
05b458c1 98 /* relative path; can use CWD as the initial resolved path */
a1ae4841 99 if (strbuf_getcwd(resolved)) {
be6e0dae 100 if (flags & REALPATH_DIE_ON_ERROR)
05b458c1
BW
101 die_errno("unable to get current working directory");
102 else
103 goto error_out;
104 }
05b458c1
BW
105 }
106
107 /* Iterate over the remaining path components */
108 while (remaining.len > 0) {
109 get_next_component(&next, &remaining);
110
111 if (next.len == 0) {
112 continue; /* empty component */
113 } else if (next.len == 1 && !strcmp(next.buf, ".")) {
114 continue; /* '.' component */
115 } else if (next.len == 2 && !strcmp(next.buf, "..")) {
116 /* '..' component; strip the last path component */
a1ae4841 117 strip_last_component(resolved);
05b458c1 118 continue;
5b8e6f85
DP
119 }
120
05b458c1 121 /* append the next component and resolve resultant path */
a1ae4841
BW
122 if (!is_dir_sep(resolved->buf[resolved->len - 1]))
123 strbuf_addch(resolved, '/');
124 strbuf_addbuf(resolved, &next);
05b458c1 125
a1ae4841 126 if (lstat(resolved->buf, &st)) {
05b458c1 127 /* error out unless this was the last component */
be6e0dae 128 if (errno != ENOENT ||
129 (!(flags & REALPATH_MANY_MISSING) && remaining.len)) {
130 if (flags & REALPATH_DIE_ON_ERROR)
05b458c1 131 die_errno("Invalid path '%s'",
a1ae4841 132 resolved->buf);
038e55fe
MH
133 else
134 goto error_out;
135 }
05b458c1
BW
136 } else if (S_ISLNK(st.st_mode)) {
137 ssize_t len;
138 strbuf_reset(&symlink);
5b8e6f85 139
05b458c1 140 if (num_symlinks++ > MAXSYMLINKS) {
0b9864aa
BW
141 errno = ELOOP;
142
be6e0dae 143 if (flags & REALPATH_DIE_ON_ERROR)
05b458c1
BW
144 die("More than %d nested symlinks "
145 "on path '%s'", MAXSYMLINKS, path);
038e55fe
MH
146 else
147 goto error_out;
148 }
5b8e6f85 149
a1ae4841 150 len = strbuf_readlink(&symlink, resolved->buf,
05b458c1 151 st.st_size);
038e55fe 152 if (len < 0) {
be6e0dae 153 if (flags & REALPATH_DIE_ON_ERROR)
2fdb9ce0 154 die_errno("Invalid symlink '%s'",
a1ae4841 155 resolved->buf);
038e55fe
MH
156 else
157 goto error_out;
158 }
05b458c1
BW
159
160 if (is_absolute_path(symlink.buf)) {
161 /* absolute symlink; set resolved to root */
e9a379c3 162 get_root_part(resolved, &symlink);
05b458c1
BW
163 } else {
164 /*
165 * relative symlink
166 * strip off the last component since it will
167 * be replaced with the contents of the symlink
168 */
a1ae4841 169 strip_last_component(resolved);
05b458c1
BW
170 }
171
172 /*
173 * if there are still remaining components to resolve
174 * then append them to symlink
175 */
176 if (remaining.len) {
177 strbuf_addch(&symlink, '/');
178 strbuf_addbuf(&symlink, &remaining);
179 }
180
181 /*
182 * use the symlink as the remaining components that
64127575 183 * need to be resolved
05b458c1
BW
184 */
185 strbuf_swap(&symlink, &remaining);
186 }
5b8e6f85
DP
187 }
188
a1ae4841 189 retval = resolved->buf;
05b458c1 190
038e55fe 191error_out:
05b458c1
BW
192 strbuf_release(&remaining);
193 strbuf_release(&next);
194 strbuf_release(&symlink);
5b8e6f85 195
a1ae4841
BW
196 if (!retval)
197 strbuf_reset(resolved);
198
038e55fe
MH
199 return retval;
200}
201
be6e0dae 202/*
203 * Return the real path (i.e., absolute path, with symlinks resolved
204 * and extra slashes removed) equivalent to the specified path. (If
205 * you want an absolute path but don't mind links, use
206 * absolute_path().) Places the resolved realpath in the provided strbuf.
207 *
208 * The directory part of path (i.e., everything up to the last
209 * dir_sep) must denote a valid, existing directory, but the last
210 * component need not exist. If die_on_error is set, then die with an
211 * informative error message if there is a problem. Otherwise, return
212 * NULL on errors (without generating any output).
213 */
214char *strbuf_realpath(struct strbuf *resolved, const char *path,
215 int die_on_error)
216{
217 return strbuf_realpath_1(resolved, path,
218 die_on_error ? REALPATH_DIE_ON_ERROR : 0);
219}
220
221/*
222 * Just like strbuf_realpath, but allows an arbitrary number of path
223 * components to be missing.
224 */
225char *strbuf_realpath_forgiving(struct strbuf *resolved, const char *path,
226 int die_on_error)
227{
228 return strbuf_realpath_1(resolved, path,
229 ((die_on_error ? REALPATH_DIE_ON_ERROR : 0) |
230 REALPATH_MANY_MISSING));
231}
232
ce83eadd 233char *real_pathdup(const char *path, int die_on_error)
72417640
BW
234{
235 struct strbuf realpath = STRBUF_INIT;
236 char *retval = NULL;
237
ce83eadd 238 if (strbuf_realpath(&realpath, path, die_on_error))
72417640
BW
239 retval = strbuf_detach(&realpath, NULL);
240
241 strbuf_release(&realpath);
242
243 return retval;
244}
245
e2a57aac
CMN
246/*
247 * Use this to get an absolute path from a relative one. If you want
3d7747e3 248 * to resolve links, you should use strbuf_realpath.
e2a57aac
CMN
249 */
250const char *absolute_path(const char *path)
10c4c881 251{
679eebe2
RS
252 static struct strbuf sb = STRBUF_INIT;
253 strbuf_reset(&sb);
254 strbuf_add_absolute_path(&sb, path);
255 return sb.buf;
10c4c881 256}
06876284 257
b1edb40f
RS
258char *absolute_pathdup(const char *path)
259{
260 struct strbuf sb = STRBUF_INIT;
261 strbuf_add_absolute_path(&sb, path);
262 return strbuf_detach(&sb, NULL);
263}
264
e4da43b1 265char *prefix_filename(const char *pfx, const char *arg)
06876284 266{
e4da43b1 267 struct strbuf path = STRBUF_INIT;
116fb64e
JK
268 size_t pfx_len = pfx ? strlen(pfx) : 0;
269
af10e8b1
JK
270 if (!pfx_len)
271 ; /* nothing to prefix */
272 else if (is_absolute_path(arg))
06876284 273 pfx_len = 0;
af10e8b1 274 else
fc2b6214 275 strbuf_add(&path, pfx, pfx_len);
af10e8b1 276
fc2b6214 277 strbuf_addstr(&path, arg);
af10e8b1 278#ifdef GIT_WINDOWS_NATIVE
8e9b2080 279 convert_slashes(path.buf + pfx_len);
06876284 280#endif
e4da43b1 281 return strbuf_detach(&path, NULL);
06876284 282}
a8bfa99d
JH
283
284char *prefix_filename_except_for_dash(const char *pfx, const char *arg)
285{
286 if (!strcmp(arg, "-"))
287 return xstrdup(arg);
288 return prefix_filename(pfx, arg);
289}