]> git.ipfire.org Git - thirdparty/git.git/blame - path.c
commit: use SEQ_DIR instead of hardcoding "sequencer"
[thirdparty/git.git] / path.c
CommitLineData
26c8a533 1/*
3a429d3b 2 * Utilities for paths and pathnames
26c8a533
LT
3 */
4#include "cache.h"
395de250 5#include "strbuf.h"
a5ccdbe4 6#include "string-list.h"
26c8a533 7
f66450ae 8static int get_st_mode_bits(const char *path, int *mode)
0117c2f0
TB
9{
10 struct stat st;
11 if (lstat(path, &st) < 0)
12 return -1;
13 *mode = st.st_mode;
14 return 0;
15}
0117c2f0 16
26c8a533
LT
17static char bad_path[] = "/bad-path/";
18
4ef9caf5 19static struct strbuf *get_pathname(void)
e7676d2f 20{
4ef9caf5
NTND
21 static struct strbuf pathname_array[4] = {
22 STRBUF_INIT, STRBUF_INIT, STRBUF_INIT, STRBUF_INIT
23 };
e7676d2f 24 static int index;
4ef9caf5
NTND
25 struct strbuf *sb = &pathname_array[3 & ++index];
26 strbuf_reset(sb);
27 return sb;
e7676d2f
LT
28}
29
26c8a533
LT
30static char *cleanup_path(char *path)
31{
32 /* Clean it up */
33 if (!memcmp(path, "./", 2)) {
34 path += 2;
35 while (*path == '/')
36 path++;
37 }
38 return path;
39}
40
4ef9caf5
NTND
41static void strbuf_cleanup_path(struct strbuf *sb)
42{
43 char *path = cleanup_path(sb->buf);
44 if (path > sb->buf)
45 strbuf_remove(sb, 0, path - sb->buf);
46}
47
108bebea
AR
48char *mksnpath(char *buf, size_t n, const char *fmt, ...)
49{
50 va_list args;
51 unsigned len;
52
53 va_start(args, fmt);
54 len = vsnprintf(buf, n, fmt, args);
55 va_end(args);
56 if (len >= n) {
9db56f71 57 strlcpy(buf, bad_path, n);
108bebea
AR
58 return buf;
59 }
60 return cleanup_path(buf);
61}
62
557bd833
NTND
63static int dir_prefix(const char *buf, const char *dir)
64{
65 int len = strlen(dir);
66 return !strncmp(buf, dir, len) &&
67 (is_dir_sep(buf[len]) || buf[len] == '\0');
68}
69
70/* $buf =~ m|$dir/+$file| but without regex */
71static int is_dir_file(const char *buf, const char *dir, const char *file)
72{
73 int len = strlen(dir);
74 if (strncmp(buf, dir, len) || !is_dir_sep(buf[len]))
75 return 0;
76 while (is_dir_sep(buf[len]))
77 len++;
78 return !strcmp(buf + len, file);
79}
80
81static void replace_dir(struct strbuf *buf, int len, const char *newdir)
82{
83 int newlen = strlen(newdir);
84 int need_sep = (buf->buf[len] && !is_dir_sep(buf->buf[len])) &&
85 !is_dir_sep(newdir[newlen - 1]);
86 if (need_sep)
87 len--; /* keep one char, to be replaced with '/' */
88 strbuf_splice(buf, 0, len, newdir, newlen);
89 if (need_sep)
90 buf->buf[newlen] = '/';
91}
92
93static void adjust_git_path(struct strbuf *buf, int git_dir_len)
94{
95 const char *base = buf->buf + git_dir_len;
96 if (git_graft_env && is_dir_file(base, "info", "grafts"))
97 strbuf_splice(buf, 0, buf->len,
98 get_graft_file(), strlen(get_graft_file()));
99 else if (git_index_env && !strcmp(base, "index"))
100 strbuf_splice(buf, 0, buf->len,
101 get_index_file(), strlen(get_index_file()));
102 else if (git_db_env && dir_prefix(base, "objects"))
103 replace_dir(buf, git_dir_len + 7, get_object_directory());
104}
105
8afdaf39 106static void do_git_path(struct strbuf *buf, const char *fmt, va_list args)
fe2d7776 107{
557bd833
NTND
108 int gitdir_len;
109 strbuf_addstr(buf, get_git_dir());
4ef9caf5
NTND
110 if (buf->len && !is_dir_sep(buf->buf[buf->len - 1]))
111 strbuf_addch(buf, '/');
557bd833 112 gitdir_len = buf->len;
4ef9caf5 113 strbuf_vaddf(buf, fmt, args);
557bd833 114 adjust_git_path(buf, gitdir_len);
4ef9caf5 115 strbuf_cleanup_path(buf);
fe2d7776
AR
116}
117
1a83c240 118void strbuf_git_path(struct strbuf *sb, const char *fmt, ...)
aba13e7c
AR
119{
120 va_list args;
121 va_start(args, fmt);
8afdaf39 122 do_git_path(sb, fmt, args);
aba13e7c 123 va_end(args);
aba13e7c
AR
124}
125
57a23b77
NTND
126const char *git_path(const char *fmt, ...)
127{
128 struct strbuf *pathname = get_pathname();
129 va_list args;
130 va_start(args, fmt);
131 do_git_path(pathname, fmt, args);
132 va_end(args);
133 return pathname->buf;
134}
135
aba13e7c
AR
136char *git_pathdup(const char *fmt, ...)
137{
4ef9caf5 138 struct strbuf path = STRBUF_INIT;
aba13e7c
AR
139 va_list args;
140 va_start(args, fmt);
8afdaf39 141 do_git_path(&path, fmt, args);
aba13e7c 142 va_end(args);
4ef9caf5 143 return strbuf_detach(&path, NULL);
aba13e7c
AR
144}
145
21cf3227
HKNN
146char *mkpathdup(const char *fmt, ...)
147{
21cf3227
HKNN
148 struct strbuf sb = STRBUF_INIT;
149 va_list args;
21cf3227
HKNN
150 va_start(args, fmt);
151 strbuf_vaddf(&sb, fmt, args);
152 va_end(args);
4ef9caf5
NTND
153 strbuf_cleanup_path(&sb);
154 return strbuf_detach(&sb, NULL);
21cf3227
HKNN
155}
156
dcf69262 157const char *mkpath(const char *fmt, ...)
26c8a533
LT
158{
159 va_list args;
4ef9caf5 160 struct strbuf *pathname = get_pathname();
26c8a533 161 va_start(args, fmt);
4ef9caf5 162 strbuf_vaddf(pathname, fmt, args);
26c8a533 163 va_end(args);
4ef9caf5 164 return cleanup_path(pathname->buf);
26c8a533
LT
165}
166
21cf3227
HKNN
167void home_config_paths(char **global, char **xdg, char *file)
168{
169 char *xdg_home = getenv("XDG_CONFIG_HOME");
170 char *home = getenv("HOME");
171 char *to_free = NULL;
172
173 if (!home) {
174 if (global)
175 *global = NULL;
176 } else {
177 if (!xdg_home) {
178 to_free = mkpathdup("%s/.config", home);
179 xdg_home = to_free;
180 }
181 if (global)
182 *global = mkpathdup("%s/.gitconfig", home);
183 }
184
06b2d872
MM
185 if (xdg) {
186 if (!xdg_home)
187 *xdg = NULL;
188 else
189 *xdg = mkpathdup("%s/git/%s", xdg_home, file);
190 }
21cf3227
HKNN
191
192 free(to_free);
193}
194
dcf69262 195const char *git_path_submodule(const char *path, const char *fmt, ...)
0bad611b 196{
4ef9caf5 197 struct strbuf *buf = get_pathname();
0bad611b
HV
198 const char *git_dir;
199 va_list args;
0bad611b 200
4ef9caf5
NTND
201 strbuf_addstr(buf, path);
202 if (buf->len && buf->buf[buf->len - 1] != '/')
203 strbuf_addch(buf, '/');
204 strbuf_addstr(buf, ".git");
0bad611b 205
4ef9caf5 206 git_dir = read_gitfile(buf->buf);
0bad611b 207 if (git_dir) {
4ef9caf5
NTND
208 strbuf_reset(buf);
209 strbuf_addstr(buf, git_dir);
0bad611b 210 }
4ef9caf5 211 strbuf_addch(buf, '/');
0bad611b
HV
212
213 va_start(args, fmt);
4ef9caf5 214 strbuf_vaddf(buf, fmt, args);
0bad611b 215 va_end(args);
4ef9caf5
NTND
216 strbuf_cleanup_path(buf);
217 return buf->buf;
0bad611b 218}
f2db68ed 219
c847f537 220int validate_headref(const char *path)
0870ca7f
JH
221{
222 struct stat st;
223 char *buf, buffer[256];
c847f537 224 unsigned char sha1[20];
0104ca09
HO
225 int fd;
226 ssize_t len;
0870ca7f
JH
227
228 if (lstat(path, &st) < 0)
229 return -1;
230
231 /* Make sure it is a "refs/.." symlink */
232 if (S_ISLNK(st.st_mode)) {
233 len = readlink(path, buffer, sizeof(buffer)-1);
222b1673 234 if (len >= 5 && !memcmp("refs/", buffer, 5))
0870ca7f
JH
235 return 0;
236 return -1;
237 }
238
239 /*
240 * Anything else, just open it and try to see if it is a symbolic ref.
241 */
242 fd = open(path, O_RDONLY);
243 if (fd < 0)
244 return -1;
93d26e4c 245 len = read_in_full(fd, buffer, sizeof(buffer)-1);
0870ca7f
JH
246 close(fd);
247
248 /*
249 * Is it a symbolic ref?
250 */
c847f537 251 if (len < 4)
0870ca7f 252 return -1;
c847f537
JH
253 if (!memcmp("ref:", buffer, 4)) {
254 buf = buffer + 4;
255 len -= 4;
256 while (len && isspace(*buf))
257 buf++, len--;
222b1673 258 if (len >= 5 && !memcmp("refs/", buf, 5))
c847f537
JH
259 return 0;
260 }
261
262 /*
263 * Is this a detached HEAD?
264 */
265 if (!get_sha1_hex(buffer, sha1))
0870ca7f 266 return 0;
c847f537 267
0870ca7f
JH
268 return -1;
269}
270
395de250 271static struct passwd *getpw_str(const char *username, size_t len)
54f4b874 272{
d79374c7 273 struct passwd *pw;
5c0b13f8 274 char *username_z = xmemdupz(username, len);
395de250
MM
275 pw = getpwnam(username_z);
276 free(username_z);
277 return pw;
278}
54f4b874 279
395de250
MM
280/*
281 * Return a string with ~ and ~user expanded via getpw*. If buf != NULL,
282 * then it is a newly allocated string. Returns NULL on getpw failure or
283 * if path is NULL.
284 */
285char *expand_user_path(const char *path)
286{
287 struct strbuf user_path = STRBUF_INIT;
395de250
MM
288 const char *to_copy = path;
289
290 if (path == NULL)
291 goto return_null;
292 if (path[0] == '~') {
53ec551c 293 const char *first_slash = strchrnul(path, '/');
395de250
MM
294 const char *username = path + 1;
295 size_t username_len = first_slash - username;
df2a79f4
MM
296 if (username_len == 0) {
297 const char *home = getenv("HOME");
79bf1490
JN
298 if (!home)
299 goto return_null;
cedc61a9 300 strbuf_addstr(&user_path, home);
df2a79f4
MM
301 } else {
302 struct passwd *pw = getpw_str(username, username_len);
303 if (!pw)
304 goto return_null;
cedc61a9 305 strbuf_addstr(&user_path, pw->pw_dir);
54f4b874 306 }
395de250 307 to_copy = first_slash;
d79374c7 308 }
cedc61a9 309 strbuf_addstr(&user_path, to_copy);
395de250
MM
310 return strbuf_detach(&user_path, NULL);
311return_null:
312 strbuf_release(&user_path);
313 return NULL;
54f4b874
AE
314}
315
d79374c7
JH
316/*
317 * First, one directory to try is determined by the following algorithm.
318 *
319 * (0) If "strict" is given, the path is used as given and no DWIM is
320 * done. Otherwise:
321 * (1) "~/path" to mean path under the running user's home directory;
322 * (2) "~user/path" to mean path under named user's home directory;
323 * (3) "relative/path" to mean cwd relative directory; or
324 * (4) "/absolute/path" to mean absolute directory.
325 *
326 * Unless "strict" is given, we try access() for existence of "%s.git/.git",
327 * "%s/.git", "%s.git", "%s" in this order. The first one that exists is
328 * what we try.
329 *
330 * Second, we try chdir() to that. Upon failure, we return NULL.
331 *
332 * Then, we try if the current directory is a valid git repository.
333 * Upon failure, we return NULL.
334 *
335 * If all goes well, we return the directory we used to chdir() (but
336 * before ~user is expanded), avoiding getcwd() resolving symbolic
337 * links. User relative paths are also returned as they are given,
338 * except DWIM suffixing.
339 */
1c64b48e 340const char *enter_repo(const char *path, int strict)
54f4b874 341{
d79374c7
JH
342 static char used_path[PATH_MAX];
343 static char validated_path[PATH_MAX];
344
345 if (!path)
54f4b874
AE
346 return NULL;
347
d79374c7
JH
348 if (!strict) {
349 static const char *suffix[] = {
b3256eb8 350 "/.git", "", ".git/.git", ".git", NULL,
d79374c7 351 };
03106768 352 const char *gitfile;
d79374c7
JH
353 int len = strlen(path);
354 int i;
1c64b48e 355 while ((1 < len) && (path[len-1] == '/'))
d79374c7 356 len--;
1c64b48e 357
d79374c7 358 if (PATH_MAX <= len)
54f4b874 359 return NULL;
1c64b48e
EFL
360 strncpy(used_path, path, len); used_path[len] = 0 ;
361 strcpy(validated_path, used_path);
362
363 if (used_path[0] == '~') {
364 char *newpath = expand_user_path(used_path);
395de250
MM
365 if (!newpath || (PATH_MAX - 10 < strlen(newpath))) {
366 free(newpath);
d79374c7 367 return NULL;
395de250
MM
368 }
369 /*
370 * Copy back into the static buffer. A pity
371 * since newpath was not bounded, but other
372 * branches of the if are limited by PATH_MAX
373 * anyway.
374 */
375 strcpy(used_path, newpath); free(newpath);
d79374c7
JH
376 }
377 else if (PATH_MAX - 10 < len)
378 return NULL;
1c64b48e 379 len = strlen(used_path);
d79374c7 380 for (i = 0; suffix[i]; i++) {
b3256eb8 381 struct stat st;
1c64b48e 382 strcpy(used_path + len, suffix[i]);
b3256eb8
JK
383 if (!stat(used_path, &st) &&
384 (S_ISREG(st.st_mode) ||
385 (S_ISDIR(st.st_mode) && is_git_directory(used_path)))) {
d79374c7
JH
386 strcat(validated_path, suffix[i]);
387 break;
388 }
389 }
03106768
PH
390 if (!suffix[i])
391 return NULL;
392 gitfile = read_gitfile(used_path) ;
393 if (gitfile)
394 strcpy(used_path, gitfile);
395 if (chdir(used_path))
0870ca7f 396 return NULL;
d79374c7 397 path = validated_path;
0870ca7f 398 }
d79374c7
JH
399 else if (chdir(path))
400 return NULL;
54f4b874 401
d79374c7 402 if (access("objects", X_OK) == 0 && access("refs", X_OK) == 0 &&
c847f537 403 validate_headref("HEAD") == 0) {
717c3972 404 set_git_dir(".");
1644162a 405 check_repository_format();
d79374c7 406 return path;
54f4b874
AE
407 }
408
409 return NULL;
410}
138086a7 411
cbe43b84 412static int calc_shared_perm(int mode)
138086a7 413{
cbe43b84 414 int tweak;
138086a7 415
5a688fe4 416 if (shared_repository < 0)
cbe43b84 417 tweak = -shared_repository;
5a688fe4 418 else
cbe43b84 419 tweak = shared_repository;
5a688fe4
JH
420
421 if (!(mode & S_IWUSR))
422 tweak &= ~0222;
423 if (mode & S_IXUSR)
424 /* Copy read bits to execute bits */
425 tweak |= (tweak & 0444) >> 2;
426 if (shared_repository < 0)
427 mode = (mode & ~0777) | tweak;
428 else
8c6202d8 429 mode |= tweak;
06cbe855 430
cbe43b84
TB
431 return mode;
432}
433
434
435int adjust_shared_perm(const char *path)
436{
437 int old_mode, new_mode;
438
439 if (!shared_repository)
440 return 0;
441 if (get_st_mode_bits(path, &old_mode) < 0)
442 return -1;
443
444 new_mode = calc_shared_perm(old_mode);
445 if (S_ISDIR(old_mode)) {
06cbe855 446 /* Copy read bits to execute bits */
cbe43b84
TB
447 new_mode |= (new_mode & 0444) >> 2;
448 new_mode |= FORCE_DIR_SET_GID;
06cbe855
HO
449 }
450
cbe43b84
TB
451 if (((old_mode ^ new_mode) & ~S_IFMT) &&
452 chmod(path, (new_mode & ~S_IFMT)) < 0)
138086a7
JH
453 return -2;
454 return 0;
455}
e5392c51 456
7fbd4221
JX
457static int have_same_root(const char *path1, const char *path2)
458{
459 int is_abs1, is_abs2;
460
461 is_abs1 = is_absolute_path(path1);
462 is_abs2 = is_absolute_path(path2);
463 return (is_abs1 && is_abs2 && tolower(path1[0]) == tolower(path2[0])) ||
464 (!is_abs1 && !is_abs2);
465}
466
e02ca72f
JX
467/*
468 * Give path as relative to prefix.
469 *
470 * The strbuf may or may not be used, so do not assume it contains the
471 * returned path.
472 */
473const char *relative_path(const char *in, const char *prefix,
474 struct strbuf *sb)
044bbbcb 475{
e02ca72f
JX
476 int in_len = in ? strlen(in) : 0;
477 int prefix_len = prefix ? strlen(prefix) : 0;
478 int in_off = 0;
479 int prefix_off = 0;
288123f0
JH
480 int i = 0, j = 0;
481
e02ca72f
JX
482 if (!in_len)
483 return "./";
484 else if (!prefix_len)
485 return in;
486
7fbd4221
JX
487 if (have_same_root(in, prefix)) {
488 /* bypass dos_drive, for "c:" is identical to "C:" */
489 if (has_dos_drive_prefix(in)) {
490 i = 2;
491 j = 2;
492 }
493 } else {
494 return in;
495 }
496
e02ca72f
JX
497 while (i < prefix_len && j < in_len && prefix[i] == in[j]) {
498 if (is_dir_sep(prefix[i])) {
499 while (is_dir_sep(prefix[i]))
288123f0 500 i++;
e02ca72f
JX
501 while (is_dir_sep(in[j]))
502 j++;
503 prefix_off = i;
504 in_off = j;
505 } else {
506 i++;
507 j++;
508 }
509 }
510
511 if (
512 /* "prefix" seems like prefix of "in" */
513 i >= prefix_len &&
514 /*
515 * but "/foo" is not a prefix of "/foobar"
516 * (i.e. prefix not end with '/')
517 */
518 prefix_off < prefix_len) {
519 if (j >= in_len) {
520 /* in="/a/b", prefix="/a/b" */
521 in_off = in_len;
522 } else if (is_dir_sep(in[j])) {
523 /* in="/a/b/c", prefix="/a/b" */
524 while (is_dir_sep(in[j]))
288123f0 525 j++;
e02ca72f
JX
526 in_off = j;
527 } else {
528 /* in="/a/bbb/c", prefix="/a/b" */
529 i = prefix_off;
530 }
531 } else if (
532 /* "in" is short than "prefix" */
533 j >= in_len &&
534 /* "in" not end with '/' */
535 in_off < in_len) {
536 if (is_dir_sep(prefix[i])) {
537 /* in="/a/b", prefix="/a/b/c/" */
538 while (is_dir_sep(prefix[i]))
539 i++;
540 in_off = in_len;
541 }
542 }
543 in += in_off;
544 in_len -= in_off;
545
546 if (i >= prefix_len) {
547 if (!in_len)
548 return "./";
549 else
550 return in;
551 }
552
553 strbuf_reset(sb);
554 strbuf_grow(sb, in_len);
555
556 while (i < prefix_len) {
557 if (is_dir_sep(prefix[i])) {
558 strbuf_addstr(sb, "../");
559 while (is_dir_sep(prefix[i]))
560 i++;
288123f0 561 continue;
288123f0
JH
562 }
563 i++;
288123f0 564 }
e02ca72f
JX
565 if (!is_dir_sep(prefix[prefix_len - 1]))
566 strbuf_addstr(sb, "../");
567
568 strbuf_addstr(sb, in);
569
570 return sb->buf;
044bbbcb 571}
ae299be0 572
41894ae3
JX
573/*
574 * A simpler implementation of relative_path
575 *
576 * Get relative path by removing "prefix" from "in". This function
577 * first appears in v1.5.6-1-g044bbbc, and makes git_dir shorter
578 * to increase performance when traversing the path to work_tree.
579 */
580const char *remove_leading_path(const char *in, const char *prefix)
581{
582 static char buf[PATH_MAX + 1];
583 int i = 0, j = 0;
584
585 if (!prefix || !prefix[0])
586 return in;
587 while (prefix[i]) {
588 if (is_dir_sep(prefix[i])) {
589 if (!is_dir_sep(in[j]))
590 return in;
591 while (is_dir_sep(prefix[i]))
592 i++;
593 while (is_dir_sep(in[j]))
594 j++;
595 continue;
596 } else if (in[j] != prefix[i]) {
597 return in;
598 }
599 i++;
600 j++;
601 }
602 if (
603 /* "/foo" is a prefix of "/foo" */
604 in[j] &&
605 /* "/foo" is not a prefix of "/foobar" */
606 !is_dir_sep(prefix[i-1]) && !is_dir_sep(in[j])
607 )
608 return in;
609 while (is_dir_sep(in[j]))
610 j++;
611 if (!in[j])
612 strcpy(buf, ".");
613 else
614 strcpy(buf, in + j);
615 return buf;
616}
617
ae299be0 618/*
f2a782b8 619 * It is okay if dst == src, but they should not overlap otherwise.
ae299be0 620 *
f2a782b8
JS
621 * Performs the following normalizations on src, storing the result in dst:
622 * - Ensures that components are separated by '/' (Windows only)
623 * - Squashes sequences of '/'.
ae299be0
DR
624 * - Removes "." components.
625 * - Removes ".." components, and the components the precede them.
f2a782b8
JS
626 * Returns failure (non-zero) if a ".." component appears as first path
627 * component anytime during the normalization. Otherwise, returns success (0).
ae299be0
DR
628 *
629 * Note that this function is purely textual. It does not follow symlinks,
630 * verify the existence of the path, or make any system calls.
645a29c4
NTND
631 *
632 * prefix_len != NULL is for a specific case of prefix_pathspec():
633 * assume that src == dst and src[0..prefix_len-1] is already
634 * normalized, any time "../" eats up to the prefix_len part,
635 * prefix_len is reduced. In the end prefix_len is the remaining
636 * prefix that has not been overridden by user pathspec.
ae299be0 637 */
645a29c4 638int normalize_path_copy_len(char *dst, const char *src, int *prefix_len)
ae299be0 639{
f3cad0ad 640 char *dst0;
ae299be0 641
f3cad0ad
JS
642 if (has_dos_drive_prefix(src)) {
643 *dst++ = *src++;
644 *dst++ = *src++;
ae299be0 645 }
f3cad0ad 646 dst0 = dst;
ae299be0 647
f3cad0ad 648 if (is_dir_sep(*src)) {
ae299be0 649 *dst++ = '/';
f3cad0ad
JS
650 while (is_dir_sep(*src))
651 src++;
652 }
653
654 for (;;) {
655 char c = *src;
656
657 /*
658 * A path component that begins with . could be
659 * special:
660 * (1) "." and ends -- ignore and terminate.
661 * (2) "./" -- ignore them, eat slash and continue.
662 * (3) ".." and ends -- strip one and terminate.
663 * (4) "../" -- strip one, eat slash and continue.
664 */
665 if (c == '.') {
666 if (!src[1]) {
667 /* (1) */
668 src++;
669 } else if (is_dir_sep(src[1])) {
670 /* (2) */
671 src += 2;
672 while (is_dir_sep(*src))
673 src++;
674 continue;
675 } else if (src[1] == '.') {
676 if (!src[2]) {
677 /* (3) */
678 src += 2;
679 goto up_one;
680 } else if (is_dir_sep(src[2])) {
681 /* (4) */
682 src += 3;
683 while (is_dir_sep(*src))
684 src++;
685 goto up_one;
686 }
687 }
688 }
ae299be0 689
f3cad0ad
JS
690 /* copy up to the next '/', and eat all '/' */
691 while ((c = *src++) != '\0' && !is_dir_sep(c))
692 *dst++ = c;
693 if (is_dir_sep(c)) {
694 *dst++ = '/';
695 while (is_dir_sep(c))
696 c = *src++;
697 src--;
698 } else if (!c)
699 break;
700 continue;
701
702 up_one:
703 /*
704 * dst0..dst is prefix portion, and dst[-1] is '/';
705 * go up one level.
706 */
f42302b4
JS
707 dst--; /* go to trailing '/' */
708 if (dst <= dst0)
f3cad0ad 709 return -1;
f42302b4
JS
710 /* Windows: dst[-1] cannot be backslash anymore */
711 while (dst0 < dst && dst[-1] != '/')
712 dst--;
645a29c4
NTND
713 if (prefix_len && *prefix_len > dst - dst0)
714 *prefix_len = dst - dst0;
f3cad0ad 715 }
ae299be0 716 *dst = '\0';
f3cad0ad 717 return 0;
ae299be0 718}
0454dd93 719
645a29c4
NTND
720int normalize_path_copy(char *dst, const char *src)
721{
722 return normalize_path_copy_len(dst, src, NULL);
723}
724
0454dd93
DR
725/*
726 * path = Canonical absolute path
9e2326c7
MH
727 * prefixes = string_list containing normalized, absolute paths without
728 * trailing slashes (except for the root directory, which is denoted by "/").
0454dd93 729 *
9e2326c7 730 * Determines, for each path in prefixes, whether the "prefix"
0454dd93
DR
731 * is an ancestor directory of path. Returns the length of the longest
732 * ancestor directory, excluding any trailing slashes, or -1 if no prefix
31171d9e
MH
733 * is an ancestor. (Note that this means 0 is returned if prefixes is
734 * ["/"].) "/foo" is not considered an ancestor of "/foobar". Directories
0454dd93
DR
735 * are not considered to be their own ancestors. path must be in a
736 * canonical form: empty components, or "." or ".." components are not
9e2326c7 737 * allowed.
0454dd93 738 */
31171d9e 739int longest_ancestor_length(const char *path, struct string_list *prefixes)
0454dd93 740{
a5ccdbe4 741 int i, max_len = -1;
0454dd93 742
31171d9e 743 if (!strcmp(path, "/"))
0454dd93
DR
744 return -1;
745
31171d9e
MH
746 for (i = 0; i < prefixes->nr; i++) {
747 const char *ceil = prefixes->items[i].string;
a5ccdbe4
MH
748 int len = strlen(ceil);
749
9e2326c7
MH
750 if (len == 1 && ceil[0] == '/')
751 len = 0; /* root matches anything, with length 0 */
752 else if (!strncmp(path, ceil, len) && path[len] == '/')
753 ; /* match of length len */
754 else
755 continue; /* no match */
0454dd93 756
9e2326c7 757 if (len > max_len)
0454dd93 758 max_len = len;
0454dd93
DR
759 }
760
761 return max_len;
762}
4fcc86b0
JS
763
764/* strip arbitrary amount of directory separators at end of path */
765static inline int chomp_trailing_dir_sep(const char *path, int len)
766{
767 while (len && is_dir_sep(path[len - 1]))
768 len--;
769 return len;
770}
771
772/*
773 * If path ends with suffix (complete path components), returns the
774 * part before suffix (sans trailing directory separators).
775 * Otherwise returns NULL.
776 */
777char *strip_path_suffix(const char *path, const char *suffix)
778{
779 int path_len = strlen(path), suffix_len = strlen(suffix);
780
781 while (suffix_len) {
782 if (!path_len)
783 return NULL;
784
785 if (is_dir_sep(path[path_len - 1])) {
786 if (!is_dir_sep(suffix[suffix_len - 1]))
787 return NULL;
788 path_len = chomp_trailing_dir_sep(path, path_len);
789 suffix_len = chomp_trailing_dir_sep(suffix, suffix_len);
790 }
791 else if (path[--path_len] != suffix[--suffix_len])
792 return NULL;
793 }
794
795 if (path_len && !is_dir_sep(path[path_len - 1]))
796 return NULL;
797 return xstrndup(path, chomp_trailing_dir_sep(path, path_len));
798}
34b6cb8b
SP
799
800int daemon_avoid_alias(const char *p)
801{
802 int sl, ndot;
803
804 /*
805 * This resurrects the belts and suspenders paranoia check by HPA
806 * done in <435560F7.4080006@zytor.com> thread, now enter_repo()
9517e6b8 807 * does not do getcwd() based path canonicalization.
34b6cb8b
SP
808 *
809 * sl becomes true immediately after seeing '/' and continues to
810 * be true as long as dots continue after that without intervening
811 * non-dot character.
812 */
813 if (!p || (*p != '/' && *p != '~'))
814 return -1;
815 sl = 1; ndot = 0;
816 p++;
817
818 while (1) {
819 char ch = *p++;
820 if (sl) {
821 if (ch == '.')
822 ndot++;
823 else if (ch == '/') {
824 if (ndot < 3)
825 /* reject //, /./ and /../ */
826 return -1;
827 ndot = 0;
828 }
829 else if (ch == 0) {
830 if (0 < ndot && ndot < 3)
831 /* reject /.$ and /..$ */
832 return -1;
833 return 0;
834 }
835 else
836 sl = ndot = 0;
837 }
838 else if (ch == 0)
839 return 0;
840 else if (ch == '/') {
841 sl = 1;
842 ndot = 0;
843 }
844 }
845}