]> git.ipfire.org Git - thirdparty/git.git/blame - path.c
path: optimize common dir checking
[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"
77a6d840 7#include "dir.h"
26c8a533 8
f66450ae 9static int get_st_mode_bits(const char *path, int *mode)
0117c2f0
TB
10{
11 struct stat st;
12 if (lstat(path, &st) < 0)
13 return -1;
14 *mode = st.st_mode;
15 return 0;
16}
0117c2f0 17
26c8a533
LT
18static char bad_path[] = "/bad-path/";
19
4ef9caf5 20static struct strbuf *get_pathname(void)
e7676d2f 21{
4ef9caf5
NTND
22 static struct strbuf pathname_array[4] = {
23 STRBUF_INIT, STRBUF_INIT, STRBUF_INIT, STRBUF_INIT
24 };
e7676d2f 25 static int index;
4ef9caf5
NTND
26 struct strbuf *sb = &pathname_array[3 & ++index];
27 strbuf_reset(sb);
28 return sb;
e7676d2f
LT
29}
30
26c8a533
LT
31static char *cleanup_path(char *path)
32{
33 /* Clean it up */
34 if (!memcmp(path, "./", 2)) {
35 path += 2;
36 while (*path == '/')
37 path++;
38 }
39 return path;
40}
41
4ef9caf5
NTND
42static void strbuf_cleanup_path(struct strbuf *sb)
43{
44 char *path = cleanup_path(sb->buf);
45 if (path > sb->buf)
46 strbuf_remove(sb, 0, path - sb->buf);
47}
48
108bebea
AR
49char *mksnpath(char *buf, size_t n, const char *fmt, ...)
50{
51 va_list args;
52 unsigned len;
53
54 va_start(args, fmt);
55 len = vsnprintf(buf, n, fmt, args);
56 va_end(args);
57 if (len >= n) {
9db56f71 58 strlcpy(buf, bad_path, n);
108bebea
AR
59 return buf;
60 }
61 return cleanup_path(buf);
62}
63
557bd833 64static int dir_prefix(const char *buf, const char *dir)
fe2d7776 65{
557bd833
NTND
66 int len = strlen(dir);
67 return !strncmp(buf, dir, len) &&
68 (is_dir_sep(buf[len]) || buf[len] == '\0');
69}
fe2d7776 70
557bd833
NTND
71/* $buf =~ m|$dir/+$file| but without regex */
72static int is_dir_file(const char *buf, const char *dir, const char *file)
73{
74 int len = strlen(dir);
75 if (strncmp(buf, dir, len) || !is_dir_sep(buf[len]))
76 return 0;
77 while (is_dir_sep(buf[len]))
78 len++;
79 return !strcmp(buf + len, file);
80}
81
82static void replace_dir(struct strbuf *buf, int len, const char *newdir)
83{
84 int newlen = strlen(newdir);
85 int need_sep = (buf->buf[len] && !is_dir_sep(buf->buf[len])) &&
86 !is_dir_sep(newdir[newlen - 1]);
87 if (need_sep)
88 len--; /* keep one char, to be replaced with '/' */
89 strbuf_splice(buf, 0, len, newdir, newlen);
90 if (need_sep)
91 buf->buf[newlen] = '/';
92}
93
0701530c
DT
94struct common_dir {
95 /* Not considered garbage for report_linked_checkout_garbage */
96 unsigned ignore_garbage:1;
97 unsigned is_dir:1;
98 /* Not common even though its parent is */
99 unsigned exclude:1;
100 const char *dirname;
101};
102
103static struct common_dir common_list[] = {
104 { 0, 1, 0, "branches" },
105 { 0, 1, 0, "hooks" },
106 { 0, 1, 0, "info" },
107 { 0, 0, 1, "info/sparse-checkout" },
108 { 1, 1, 0, "logs" },
109 { 1, 1, 1, "logs/HEAD" },
110 { 0, 1, 0, "lost-found" },
111 { 0, 1, 0, "objects" },
112 { 0, 1, 0, "refs" },
113 { 0, 1, 0, "remotes" },
114 { 0, 1, 0, "worktrees" },
115 { 0, 1, 0, "rr-cache" },
116 { 0, 1, 0, "svn" },
117 { 0, 0, 0, "config" },
118 { 1, 0, 0, "gc.pid" },
119 { 0, 0, 0, "packed-refs" },
120 { 0, 0, 0, "shallow" },
121 { 0, 0, 0, NULL }
c7b3a3d2
NTND
122};
123
4e09cf2a
DT
124/*
125 * A compressed trie. A trie node consists of zero or more characters that
126 * are common to all elements with this prefix, optionally followed by some
127 * children. If value is not NULL, the trie node is a terminal node.
128 *
129 * For example, consider the following set of strings:
130 * abc
131 * def
132 * definite
133 * definition
134 *
135 * The trie would look look like:
136 * root: len = 0, children a and d non-NULL, value = NULL.
137 * a: len = 2, contents = bc, value = (data for "abc")
138 * d: len = 2, contents = ef, children i non-NULL, value = (data for "def")
139 * i: len = 3, contents = nit, children e and i non-NULL, value = NULL
140 * e: len = 0, children all NULL, value = (data for "definite")
141 * i: len = 2, contents = on, children all NULL,
142 * value = (data for "definition")
143 */
144struct trie {
145 struct trie *children[256];
146 int len;
147 char *contents;
148 void *value;
149};
150
151static struct trie *make_trie_node(const char *key, void *value)
c7b3a3d2 152{
4e09cf2a
DT
153 struct trie *new_node = xcalloc(1, sizeof(*new_node));
154 new_node->len = strlen(key);
155 if (new_node->len) {
156 new_node->contents = xmalloc(new_node->len);
157 memcpy(new_node->contents, key, new_node->len);
158 }
159 new_node->value = value;
160 return new_node;
161}
c7b3a3d2 162
4e09cf2a
DT
163/*
164 * Add a key/value pair to a trie. The key is assumed to be \0-terminated.
165 * If there was an existing value for this key, return it.
166 */
167static void *add_to_trie(struct trie *root, const char *key, void *value)
168{
169 struct trie *child;
170 void *old;
171 int i;
172
173 if (!*key) {
174 /* we have reached the end of the key */
175 old = root->value;
176 root->value = value;
177 return old;
178 }
179
180 for (i = 0; i < root->len; i++) {
181 if (root->contents[i] == key[i])
182 continue;
183
184 /*
185 * Split this node: child will contain this node's
186 * existing children.
187 */
188 child = malloc(sizeof(*child));
189 memcpy(child->children, root->children, sizeof(root->children));
190
191 child->len = root->len - i - 1;
192 if (child->len) {
193 child->contents = xstrndup(root->contents + i + 1,
194 child->len);
c7b3a3d2 195 }
4e09cf2a
DT
196 child->value = root->value;
197 root->value = NULL;
198 root->len = i;
199
200 memset(root->children, 0, sizeof(root->children));
201 root->children[(unsigned char)root->contents[i]] = child;
202
203 /* This is the newly-added child. */
204 root->children[(unsigned char)key[i]] =
205 make_trie_node(key + i + 1, value);
206 return NULL;
207 }
208
209 /* We have matched the entire compressed section */
210 if (key[i]) {
211 child = root->children[(unsigned char)key[root->len]];
212 if (child) {
213 return add_to_trie(child, key + root->len + 1, value);
214 } else {
215 child = make_trie_node(key + root->len + 1, value);
216 root->children[(unsigned char)key[root->len]] = child;
217 return NULL;
c7b3a3d2
NTND
218 }
219 }
4e09cf2a
DT
220
221 old = root->value;
222 root->value = value;
223 return old;
224}
225
226typedef int (*match_fn)(const char *unmatched, void *data, void *baton);
227
228/*
229 * Search a trie for some key. Find the longest /-or-\0-terminated
230 * prefix of the key for which the trie contains a value. Call fn
231 * with the unmatched portion of the key and the found value, and
232 * return its return value. If there is no such prefix, return -1.
233 *
234 * The key is partially normalized: consecutive slashes are skipped.
235 *
236 * For example, consider the trie containing only [refs,
237 * refs/worktree] (both with values).
238 *
239 * | key | unmatched | val from node | return value |
240 * |-----------------|------------|---------------|--------------|
241 * | a | not called | n/a | -1 |
242 * | refs | \0 | refs | as per fn |
243 * | refs/ | / | refs | as per fn |
244 * | refs/w | /w | refs | as per fn |
245 * | refs/worktree | \0 | refs/worktree | as per fn |
246 * | refs/worktree/ | / | refs/worktree | as per fn |
247 * | refs/worktree/a | /a | refs/worktree | as per fn |
248 * |-----------------|------------|---------------|--------------|
249 *
250 */
251static int trie_find(struct trie *root, const char *key, match_fn fn,
252 void *baton)
253{
254 int i;
255 int result;
256 struct trie *child;
257
258 if (!*key) {
259 /* we have reached the end of the key */
260 if (root->value && !root->len)
261 return fn(key, root->value, baton);
262 else
263 return -1;
264 }
265
266 for (i = 0; i < root->len; i++) {
267 /* Partial path normalization: skip consecutive slashes. */
268 if (key[i] == '/' && key[i+1] == '/') {
269 key++;
270 continue;
271 }
272 if (root->contents[i] != key[i])
273 return -1;
274 }
275
276 /* Matched the entire compressed section */
277 key += i;
278 if (!*key)
279 /* End of key */
280 return fn(key, root->value, baton);
281
282 /* Partial path normalization: skip consecutive slashes */
283 while (key[0] == '/' && key[1] == '/')
284 key++;
285
286 child = root->children[(unsigned char)*key];
287 if (child)
288 result = trie_find(child, key + 1, fn, baton);
289 else
290 result = -1;
291
292 if (result >= 0 || (*key != '/' && *key != 0))
293 return result;
294 if (root->value)
295 return fn(key, root->value, baton);
296 else
297 return -1;
298}
299
300static struct trie common_trie;
301static int common_trie_done_setup;
302
303static void init_common_trie(void)
304{
305 struct common_dir *p;
306
307 if (common_trie_done_setup)
308 return;
309
310 for (p = common_list; p->dirname; p++)
311 add_to_trie(&common_trie, p->dirname, p);
312
313 common_trie_done_setup = 1;
314}
315
316/*
317 * Helper function for update_common_dir: returns 1 if the dir
318 * prefix is common.
319 */
320static int check_common(const char *unmatched, void *value, void *baton)
321{
322 struct common_dir *dir = value;
323
324 if (!dir)
325 return 0;
326
327 if (dir->is_dir && (unmatched[0] == 0 || unmatched[0] == '/'))
328 return !dir->exclude;
329
330 if (!dir->is_dir && unmatched[0] == 0)
331 return !dir->exclude;
332
333 return 0;
334}
335
336static void update_common_dir(struct strbuf *buf, int git_dir_len)
337{
338 char *base = buf->buf + git_dir_len;
339 init_common_trie();
340 if (trie_find(&common_trie, base, check_common, NULL) > 0)
341 replace_dir(buf, git_dir_len, get_git_common_dir());
c7b3a3d2
NTND
342}
343
77a6d840
NTND
344void report_linked_checkout_garbage(void)
345{
346 struct strbuf sb = STRBUF_INIT;
0701530c 347 const struct common_dir *p;
77a6d840
NTND
348 int len;
349
350 if (!git_common_dir_env)
351 return;
352 strbuf_addf(&sb, "%s/", get_git_dir());
353 len = sb.len;
0701530c
DT
354 for (p = common_list; p->dirname; p++) {
355 const char *path = p->dirname;
356 if (p->ignore_garbage)
77a6d840
NTND
357 continue;
358 strbuf_setlen(&sb, len);
359 strbuf_addstr(&sb, path);
360 if (file_exists(sb.buf))
361 report_garbage("unused in linked checkout", sb.buf);
362 }
363 strbuf_release(&sb);
fe2d7776
AR
364}
365
557bd833
NTND
366static void adjust_git_path(struct strbuf *buf, int git_dir_len)
367{
368 const char *base = buf->buf + git_dir_len;
369 if (git_graft_env && is_dir_file(base, "info", "grafts"))
370 strbuf_splice(buf, 0, buf->len,
371 get_graft_file(), strlen(get_graft_file()));
372 else if (git_index_env && !strcmp(base, "index"))
373 strbuf_splice(buf, 0, buf->len,
374 get_index_file(), strlen(get_index_file()));
375 else if (git_db_env && dir_prefix(base, "objects"))
376 replace_dir(buf, git_dir_len + 7, get_object_directory());
c7b3a3d2
NTND
377 else if (git_common_dir_env)
378 update_common_dir(buf, git_dir_len);
557bd833
NTND
379}
380
8afdaf39 381static void do_git_path(struct strbuf *buf, const char *fmt, va_list args)
fe2d7776 382{
557bd833
NTND
383 int gitdir_len;
384 strbuf_addstr(buf, get_git_dir());
4ef9caf5
NTND
385 if (buf->len && !is_dir_sep(buf->buf[buf->len - 1]))
386 strbuf_addch(buf, '/');
557bd833 387 gitdir_len = buf->len;
4ef9caf5 388 strbuf_vaddf(buf, fmt, args);
557bd833 389 adjust_git_path(buf, gitdir_len);
4ef9caf5 390 strbuf_cleanup_path(buf);
fe2d7776
AR
391}
392
1a83c240 393void strbuf_git_path(struct strbuf *sb, const char *fmt, ...)
aba13e7c
AR
394{
395 va_list args;
396 va_start(args, fmt);
8afdaf39 397 do_git_path(sb, fmt, args);
aba13e7c 398 va_end(args);
aba13e7c
AR
399}
400
57a23b77 401const char *git_path(const char *fmt, ...)
aba13e7c 402{
57a23b77 403 struct strbuf *pathname = get_pathname();
aba13e7c
AR
404 va_list args;
405 va_start(args, fmt);
57a23b77 406 do_git_path(pathname, fmt, args);
aba13e7c 407 va_end(args);
57a23b77 408 return pathname->buf;
aba13e7c
AR
409}
410
aba13e7c 411char *git_pathdup(const char *fmt, ...)
21cf3227 412{
4ef9caf5 413 struct strbuf path = STRBUF_INIT;
21cf3227 414 va_list args;
21cf3227 415 va_start(args, fmt);
8afdaf39 416 do_git_path(&path, fmt, args);
21cf3227 417 va_end(args);
4ef9caf5 418 return strbuf_detach(&path, NULL);
21cf3227
HKNN
419}
420
21cf3227 421char *mkpathdup(const char *fmt, ...)
26c8a533 422{
21cf3227 423 struct strbuf sb = STRBUF_INIT;
26c8a533 424 va_list args;
26c8a533 425 va_start(args, fmt);
21cf3227 426 strbuf_vaddf(&sb, fmt, args);
26c8a533 427 va_end(args);
4ef9caf5
NTND
428 strbuf_cleanup_path(&sb);
429 return strbuf_detach(&sb, NULL);
26c8a533
LT
430}
431
dcf69262 432const char *mkpath(const char *fmt, ...)
26c8a533 433{
26c8a533 434 va_list args;
4ef9caf5 435 struct strbuf *pathname = get_pathname();
26c8a533 436 va_start(args, fmt);
4ef9caf5 437 strbuf_vaddf(pathname, fmt, args);
26c8a533 438 va_end(args);
4ef9caf5 439 return cleanup_path(pathname->buf);
26c8a533 440}
f2db68ed 441
f5895fd3
JK
442static void do_submodule_path(struct strbuf *buf, const char *path,
443 const char *fmt, va_list args)
0bad611b 444{
0bad611b 445 const char *git_dir;
0bad611b 446
4ef9caf5
NTND
447 strbuf_addstr(buf, path);
448 if (buf->len && buf->buf[buf->len - 1] != '/')
449 strbuf_addch(buf, '/');
450 strbuf_addstr(buf, ".git");
0bad611b 451
4ef9caf5 452 git_dir = read_gitfile(buf->buf);
0bad611b 453 if (git_dir) {
4ef9caf5
NTND
454 strbuf_reset(buf);
455 strbuf_addstr(buf, git_dir);
0bad611b 456 }
4ef9caf5 457 strbuf_addch(buf, '/');
0bad611b 458
4ef9caf5 459 strbuf_vaddf(buf, fmt, args);
4ef9caf5 460 strbuf_cleanup_path(buf);
f5895fd3
JK
461}
462
f5895fd3
JK
463char *git_pathdup_submodule(const char *path, const char *fmt, ...)
464{
465 va_list args;
466 struct strbuf buf = STRBUF_INIT;
467 va_start(args, fmt);
468 do_submodule_path(&buf, path, fmt, args);
469 va_end(args);
470 return strbuf_detach(&buf, NULL);
471}
472
473void strbuf_git_path_submodule(struct strbuf *buf, const char *path,
474 const char *fmt, ...)
475{
476 va_list args;
477 va_start(args, fmt);
478 do_submodule_path(buf, path, fmt, args);
479 va_end(args);
480}
481
c847f537 482int validate_headref(const char *path)
0870ca7f
JH
483{
484 struct stat st;
485 char *buf, buffer[256];
c847f537 486 unsigned char sha1[20];
0104ca09
HO
487 int fd;
488 ssize_t len;
0870ca7f
JH
489
490 if (lstat(path, &st) < 0)
491 return -1;
492
493 /* Make sure it is a "refs/.." symlink */
494 if (S_ISLNK(st.st_mode)) {
495 len = readlink(path, buffer, sizeof(buffer)-1);
222b1673 496 if (len >= 5 && !memcmp("refs/", buffer, 5))
0870ca7f
JH
497 return 0;
498 return -1;
499 }
500
501 /*
502 * Anything else, just open it and try to see if it is a symbolic ref.
503 */
504 fd = open(path, O_RDONLY);
505 if (fd < 0)
506 return -1;
93d26e4c 507 len = read_in_full(fd, buffer, sizeof(buffer)-1);
0870ca7f
JH
508 close(fd);
509
510 /*
511 * Is it a symbolic ref?
512 */
c847f537 513 if (len < 4)
0870ca7f 514 return -1;
c847f537
JH
515 if (!memcmp("ref:", buffer, 4)) {
516 buf = buffer + 4;
517 len -= 4;
518 while (len && isspace(*buf))
519 buf++, len--;
222b1673 520 if (len >= 5 && !memcmp("refs/", buf, 5))
c847f537
JH
521 return 0;
522 }
523
524 /*
525 * Is this a detached HEAD?
526 */
527 if (!get_sha1_hex(buffer, sha1))
0870ca7f 528 return 0;
c847f537 529
0870ca7f
JH
530 return -1;
531}
532
395de250 533static struct passwd *getpw_str(const char *username, size_t len)
54f4b874 534{
d79374c7 535 struct passwd *pw;
5c0b13f8 536 char *username_z = xmemdupz(username, len);
395de250
MM
537 pw = getpwnam(username_z);
538 free(username_z);
539 return pw;
540}
54f4b874 541
395de250
MM
542/*
543 * Return a string with ~ and ~user expanded via getpw*. If buf != NULL,
544 * then it is a newly allocated string. Returns NULL on getpw failure or
545 * if path is NULL.
546 */
547char *expand_user_path(const char *path)
548{
549 struct strbuf user_path = STRBUF_INIT;
395de250
MM
550 const char *to_copy = path;
551
552 if (path == NULL)
553 goto return_null;
554 if (path[0] == '~') {
53ec551c 555 const char *first_slash = strchrnul(path, '/');
395de250
MM
556 const char *username = path + 1;
557 size_t username_len = first_slash - username;
df2a79f4
MM
558 if (username_len == 0) {
559 const char *home = getenv("HOME");
79bf1490
JN
560 if (!home)
561 goto return_null;
cedc61a9 562 strbuf_addstr(&user_path, home);
df2a79f4
MM
563 } else {
564 struct passwd *pw = getpw_str(username, username_len);
565 if (!pw)
566 goto return_null;
cedc61a9 567 strbuf_addstr(&user_path, pw->pw_dir);
54f4b874 568 }
395de250 569 to_copy = first_slash;
d79374c7 570 }
cedc61a9 571 strbuf_addstr(&user_path, to_copy);
395de250
MM
572 return strbuf_detach(&user_path, NULL);
573return_null:
574 strbuf_release(&user_path);
575 return NULL;
54f4b874
AE
576}
577
d79374c7
JH
578/*
579 * First, one directory to try is determined by the following algorithm.
580 *
581 * (0) If "strict" is given, the path is used as given and no DWIM is
582 * done. Otherwise:
583 * (1) "~/path" to mean path under the running user's home directory;
584 * (2) "~user/path" to mean path under named user's home directory;
585 * (3) "relative/path" to mean cwd relative directory; or
586 * (4) "/absolute/path" to mean absolute directory.
587 *
c8c3f1d0
PT
588 * Unless "strict" is given, we check "%s/.git", "%s", "%s.git/.git", "%s.git"
589 * in this order. We select the first one that is a valid git repository, and
590 * chdir() to it. If none match, or we fail to chdir, we return NULL.
d79374c7
JH
591 *
592 * If all goes well, we return the directory we used to chdir() (but
593 * before ~user is expanded), avoiding getcwd() resolving symbolic
594 * links. User relative paths are also returned as they are given,
595 * except DWIM suffixing.
596 */
1c64b48e 597const char *enter_repo(const char *path, int strict)
54f4b874 598{
d79374c7
JH
599 static char used_path[PATH_MAX];
600 static char validated_path[PATH_MAX];
601
602 if (!path)
54f4b874
AE
603 return NULL;
604
d79374c7
JH
605 if (!strict) {
606 static const char *suffix[] = {
b3256eb8 607 "/.git", "", ".git/.git", ".git", NULL,
d79374c7 608 };
03106768 609 const char *gitfile;
d79374c7
JH
610 int len = strlen(path);
611 int i;
1c64b48e 612 while ((1 < len) && (path[len-1] == '/'))
d79374c7 613 len--;
1c64b48e 614
d79374c7 615 if (PATH_MAX <= len)
54f4b874 616 return NULL;
1c64b48e
EFL
617 strncpy(used_path, path, len); used_path[len] = 0 ;
618 strcpy(validated_path, used_path);
619
620 if (used_path[0] == '~') {
621 char *newpath = expand_user_path(used_path);
395de250
MM
622 if (!newpath || (PATH_MAX - 10 < strlen(newpath))) {
623 free(newpath);
d79374c7 624 return NULL;
395de250
MM
625 }
626 /*
627 * Copy back into the static buffer. A pity
628 * since newpath was not bounded, but other
629 * branches of the if are limited by PATH_MAX
630 * anyway.
631 */
632 strcpy(used_path, newpath); free(newpath);
d79374c7
JH
633 }
634 else if (PATH_MAX - 10 < len)
635 return NULL;
1c64b48e 636 len = strlen(used_path);
d79374c7 637 for (i = 0; suffix[i]; i++) {
b3256eb8 638 struct stat st;
1c64b48e 639 strcpy(used_path + len, suffix[i]);
b3256eb8
JK
640 if (!stat(used_path, &st) &&
641 (S_ISREG(st.st_mode) ||
642 (S_ISDIR(st.st_mode) && is_git_directory(used_path)))) {
d79374c7
JH
643 strcat(validated_path, suffix[i]);
644 break;
645 }
646 }
03106768
PH
647 if (!suffix[i])
648 return NULL;
649 gitfile = read_gitfile(used_path) ;
650 if (gitfile)
651 strcpy(used_path, gitfile);
652 if (chdir(used_path))
0870ca7f 653 return NULL;
d79374c7 654 path = validated_path;
0870ca7f 655 }
d79374c7
JH
656 else if (chdir(path))
657 return NULL;
54f4b874 658
d79374c7 659 if (access("objects", X_OK) == 0 && access("refs", X_OK) == 0 &&
c847f537 660 validate_headref("HEAD") == 0) {
717c3972 661 set_git_dir(".");
1644162a 662 check_repository_format();
d79374c7 663 return path;
54f4b874
AE
664 }
665
666 return NULL;
667}
138086a7 668
cbe43b84 669static int calc_shared_perm(int mode)
138086a7 670{
cbe43b84 671 int tweak;
138086a7 672
5a688fe4 673 if (shared_repository < 0)
cbe43b84 674 tweak = -shared_repository;
5a688fe4 675 else
cbe43b84 676 tweak = shared_repository;
5a688fe4
JH
677
678 if (!(mode & S_IWUSR))
679 tweak &= ~0222;
680 if (mode & S_IXUSR)
681 /* Copy read bits to execute bits */
682 tweak |= (tweak & 0444) >> 2;
683 if (shared_repository < 0)
684 mode = (mode & ~0777) | tweak;
685 else
8c6202d8 686 mode |= tweak;
06cbe855 687
cbe43b84
TB
688 return mode;
689}
690
691
692int adjust_shared_perm(const char *path)
693{
694 int old_mode, new_mode;
695
696 if (!shared_repository)
697 return 0;
698 if (get_st_mode_bits(path, &old_mode) < 0)
699 return -1;
700
701 new_mode = calc_shared_perm(old_mode);
702 if (S_ISDIR(old_mode)) {
06cbe855 703 /* Copy read bits to execute bits */
cbe43b84
TB
704 new_mode |= (new_mode & 0444) >> 2;
705 new_mode |= FORCE_DIR_SET_GID;
06cbe855
HO
706 }
707
cbe43b84
TB
708 if (((old_mode ^ new_mode) & ~S_IFMT) &&
709 chmod(path, (new_mode & ~S_IFMT)) < 0)
138086a7
JH
710 return -2;
711 return 0;
712}
e5392c51 713
7fbd4221
JX
714static int have_same_root(const char *path1, const char *path2)
715{
716 int is_abs1, is_abs2;
717
718 is_abs1 = is_absolute_path(path1);
719 is_abs2 = is_absolute_path(path2);
720 return (is_abs1 && is_abs2 && tolower(path1[0]) == tolower(path2[0])) ||
721 (!is_abs1 && !is_abs2);
722}
723
e02ca72f
JX
724/*
725 * Give path as relative to prefix.
726 *
727 * The strbuf may or may not be used, so do not assume it contains the
728 * returned path.
729 */
730const char *relative_path(const char *in, const char *prefix,
731 struct strbuf *sb)
044bbbcb 732{
e02ca72f
JX
733 int in_len = in ? strlen(in) : 0;
734 int prefix_len = prefix ? strlen(prefix) : 0;
735 int in_off = 0;
736 int prefix_off = 0;
288123f0
JH
737 int i = 0, j = 0;
738
e02ca72f
JX
739 if (!in_len)
740 return "./";
741 else if (!prefix_len)
742 return in;
743
7fbd4221
JX
744 if (have_same_root(in, prefix)) {
745 /* bypass dos_drive, for "c:" is identical to "C:" */
746 if (has_dos_drive_prefix(in)) {
747 i = 2;
748 j = 2;
749 }
750 } else {
751 return in;
752 }
753
e02ca72f
JX
754 while (i < prefix_len && j < in_len && prefix[i] == in[j]) {
755 if (is_dir_sep(prefix[i])) {
756 while (is_dir_sep(prefix[i]))
288123f0 757 i++;
e02ca72f
JX
758 while (is_dir_sep(in[j]))
759 j++;
760 prefix_off = i;
761 in_off = j;
762 } else {
763 i++;
764 j++;
765 }
766 }
767
768 if (
769 /* "prefix" seems like prefix of "in" */
770 i >= prefix_len &&
771 /*
772 * but "/foo" is not a prefix of "/foobar"
773 * (i.e. prefix not end with '/')
774 */
775 prefix_off < prefix_len) {
776 if (j >= in_len) {
777 /* in="/a/b", prefix="/a/b" */
778 in_off = in_len;
779 } else if (is_dir_sep(in[j])) {
780 /* in="/a/b/c", prefix="/a/b" */
781 while (is_dir_sep(in[j]))
288123f0 782 j++;
e02ca72f
JX
783 in_off = j;
784 } else {
785 /* in="/a/bbb/c", prefix="/a/b" */
786 i = prefix_off;
787 }
788 } else if (
789 /* "in" is short than "prefix" */
790 j >= in_len &&
791 /* "in" not end with '/' */
792 in_off < in_len) {
793 if (is_dir_sep(prefix[i])) {
794 /* in="/a/b", prefix="/a/b/c/" */
795 while (is_dir_sep(prefix[i]))
796 i++;
797 in_off = in_len;
798 }
799 }
800 in += in_off;
801 in_len -= in_off;
802
803 if (i >= prefix_len) {
804 if (!in_len)
805 return "./";
806 else
807 return in;
808 }
809
810 strbuf_reset(sb);
811 strbuf_grow(sb, in_len);
812
813 while (i < prefix_len) {
814 if (is_dir_sep(prefix[i])) {
815 strbuf_addstr(sb, "../");
816 while (is_dir_sep(prefix[i]))
817 i++;
288123f0 818 continue;
288123f0
JH
819 }
820 i++;
288123f0 821 }
e02ca72f
JX
822 if (!is_dir_sep(prefix[prefix_len - 1]))
823 strbuf_addstr(sb, "../");
824
825 strbuf_addstr(sb, in);
826
827 return sb->buf;
044bbbcb 828}
ae299be0 829
41894ae3
JX
830/*
831 * A simpler implementation of relative_path
832 *
833 * Get relative path by removing "prefix" from "in". This function
834 * first appears in v1.5.6-1-g044bbbc, and makes git_dir shorter
835 * to increase performance when traversing the path to work_tree.
836 */
837const char *remove_leading_path(const char *in, const char *prefix)
838{
839 static char buf[PATH_MAX + 1];
840 int i = 0, j = 0;
841
842 if (!prefix || !prefix[0])
843 return in;
844 while (prefix[i]) {
845 if (is_dir_sep(prefix[i])) {
846 if (!is_dir_sep(in[j]))
847 return in;
848 while (is_dir_sep(prefix[i]))
849 i++;
850 while (is_dir_sep(in[j]))
851 j++;
852 continue;
853 } else if (in[j] != prefix[i]) {
854 return in;
855 }
856 i++;
857 j++;
858 }
859 if (
860 /* "/foo" is a prefix of "/foo" */
861 in[j] &&
862 /* "/foo" is not a prefix of "/foobar" */
863 !is_dir_sep(prefix[i-1]) && !is_dir_sep(in[j])
864 )
865 return in;
866 while (is_dir_sep(in[j]))
867 j++;
868 if (!in[j])
869 strcpy(buf, ".");
870 else
871 strcpy(buf, in + j);
872 return buf;
873}
874
ae299be0 875/*
f2a782b8 876 * It is okay if dst == src, but they should not overlap otherwise.
ae299be0 877 *
f2a782b8
JS
878 * Performs the following normalizations on src, storing the result in dst:
879 * - Ensures that components are separated by '/' (Windows only)
880 * - Squashes sequences of '/'.
ae299be0
DR
881 * - Removes "." components.
882 * - Removes ".." components, and the components the precede them.
f2a782b8
JS
883 * Returns failure (non-zero) if a ".." component appears as first path
884 * component anytime during the normalization. Otherwise, returns success (0).
ae299be0
DR
885 *
886 * Note that this function is purely textual. It does not follow symlinks,
887 * verify the existence of the path, or make any system calls.
645a29c4
NTND
888 *
889 * prefix_len != NULL is for a specific case of prefix_pathspec():
890 * assume that src == dst and src[0..prefix_len-1] is already
891 * normalized, any time "../" eats up to the prefix_len part,
892 * prefix_len is reduced. In the end prefix_len is the remaining
893 * prefix that has not been overridden by user pathspec.
ae299be0 894 */
645a29c4 895int normalize_path_copy_len(char *dst, const char *src, int *prefix_len)
ae299be0 896{
f3cad0ad 897 char *dst0;
ae299be0 898
f3cad0ad
JS
899 if (has_dos_drive_prefix(src)) {
900 *dst++ = *src++;
901 *dst++ = *src++;
ae299be0 902 }
f3cad0ad 903 dst0 = dst;
ae299be0 904
f3cad0ad 905 if (is_dir_sep(*src)) {
ae299be0 906 *dst++ = '/';
f3cad0ad
JS
907 while (is_dir_sep(*src))
908 src++;
909 }
910
911 for (;;) {
912 char c = *src;
913
914 /*
915 * A path component that begins with . could be
916 * special:
917 * (1) "." and ends -- ignore and terminate.
918 * (2) "./" -- ignore them, eat slash and continue.
919 * (3) ".." and ends -- strip one and terminate.
920 * (4) "../" -- strip one, eat slash and continue.
921 */
922 if (c == '.') {
923 if (!src[1]) {
924 /* (1) */
925 src++;
926 } else if (is_dir_sep(src[1])) {
927 /* (2) */
928 src += 2;
929 while (is_dir_sep(*src))
930 src++;
931 continue;
932 } else if (src[1] == '.') {
933 if (!src[2]) {
934 /* (3) */
935 src += 2;
936 goto up_one;
937 } else if (is_dir_sep(src[2])) {
938 /* (4) */
939 src += 3;
940 while (is_dir_sep(*src))
941 src++;
942 goto up_one;
943 }
944 }
945 }
ae299be0 946
f3cad0ad
JS
947 /* copy up to the next '/', and eat all '/' */
948 while ((c = *src++) != '\0' && !is_dir_sep(c))
949 *dst++ = c;
950 if (is_dir_sep(c)) {
951 *dst++ = '/';
952 while (is_dir_sep(c))
953 c = *src++;
954 src--;
955 } else if (!c)
956 break;
957 continue;
958
959 up_one:
960 /*
961 * dst0..dst is prefix portion, and dst[-1] is '/';
962 * go up one level.
963 */
f42302b4
JS
964 dst--; /* go to trailing '/' */
965 if (dst <= dst0)
f3cad0ad 966 return -1;
f42302b4
JS
967 /* Windows: dst[-1] cannot be backslash anymore */
968 while (dst0 < dst && dst[-1] != '/')
969 dst--;
645a29c4
NTND
970 if (prefix_len && *prefix_len > dst - dst0)
971 *prefix_len = dst - dst0;
f3cad0ad 972 }
ae299be0 973 *dst = '\0';
f3cad0ad 974 return 0;
ae299be0 975}
0454dd93 976
645a29c4
NTND
977int normalize_path_copy(char *dst, const char *src)
978{
979 return normalize_path_copy_len(dst, src, NULL);
980}
981
0454dd93
DR
982/*
983 * path = Canonical absolute path
9e2326c7
MH
984 * prefixes = string_list containing normalized, absolute paths without
985 * trailing slashes (except for the root directory, which is denoted by "/").
0454dd93 986 *
9e2326c7 987 * Determines, for each path in prefixes, whether the "prefix"
0454dd93
DR
988 * is an ancestor directory of path. Returns the length of the longest
989 * ancestor directory, excluding any trailing slashes, or -1 if no prefix
31171d9e
MH
990 * is an ancestor. (Note that this means 0 is returned if prefixes is
991 * ["/"].) "/foo" is not considered an ancestor of "/foobar". Directories
0454dd93
DR
992 * are not considered to be their own ancestors. path must be in a
993 * canonical form: empty components, or "." or ".." components are not
9e2326c7 994 * allowed.
0454dd93 995 */
31171d9e 996int longest_ancestor_length(const char *path, struct string_list *prefixes)
0454dd93 997{
a5ccdbe4 998 int i, max_len = -1;
0454dd93 999
31171d9e 1000 if (!strcmp(path, "/"))
0454dd93
DR
1001 return -1;
1002
31171d9e
MH
1003 for (i = 0; i < prefixes->nr; i++) {
1004 const char *ceil = prefixes->items[i].string;
a5ccdbe4
MH
1005 int len = strlen(ceil);
1006
9e2326c7
MH
1007 if (len == 1 && ceil[0] == '/')
1008 len = 0; /* root matches anything, with length 0 */
1009 else if (!strncmp(path, ceil, len) && path[len] == '/')
1010 ; /* match of length len */
1011 else
1012 continue; /* no match */
0454dd93 1013
9e2326c7 1014 if (len > max_len)
0454dd93 1015 max_len = len;
0454dd93
DR
1016 }
1017
1018 return max_len;
1019}
4fcc86b0
JS
1020
1021/* strip arbitrary amount of directory separators at end of path */
1022static inline int chomp_trailing_dir_sep(const char *path, int len)
1023{
1024 while (len && is_dir_sep(path[len - 1]))
1025 len--;
1026 return len;
1027}
1028
1029/*
1030 * If path ends with suffix (complete path components), returns the
1031 * part before suffix (sans trailing directory separators).
1032 * Otherwise returns NULL.
1033 */
1034char *strip_path_suffix(const char *path, const char *suffix)
1035{
1036 int path_len = strlen(path), suffix_len = strlen(suffix);
1037
1038 while (suffix_len) {
1039 if (!path_len)
1040 return NULL;
1041
1042 if (is_dir_sep(path[path_len - 1])) {
1043 if (!is_dir_sep(suffix[suffix_len - 1]))
1044 return NULL;
1045 path_len = chomp_trailing_dir_sep(path, path_len);
1046 suffix_len = chomp_trailing_dir_sep(suffix, suffix_len);
1047 }
1048 else if (path[--path_len] != suffix[--suffix_len])
1049 return NULL;
1050 }
1051
1052 if (path_len && !is_dir_sep(path[path_len - 1]))
1053 return NULL;
1054 return xstrndup(path, chomp_trailing_dir_sep(path, path_len));
1055}
34b6cb8b
SP
1056
1057int daemon_avoid_alias(const char *p)
1058{
1059 int sl, ndot;
1060
1061 /*
1062 * This resurrects the belts and suspenders paranoia check by HPA
1063 * done in <435560F7.4080006@zytor.com> thread, now enter_repo()
9517e6b8 1064 * does not do getcwd() based path canonicalization.
34b6cb8b
SP
1065 *
1066 * sl becomes true immediately after seeing '/' and continues to
1067 * be true as long as dots continue after that without intervening
1068 * non-dot character.
1069 */
1070 if (!p || (*p != '/' && *p != '~'))
1071 return -1;
1072 sl = 1; ndot = 0;
1073 p++;
1074
1075 while (1) {
1076 char ch = *p++;
1077 if (sl) {
1078 if (ch == '.')
1079 ndot++;
1080 else if (ch == '/') {
1081 if (ndot < 3)
1082 /* reject //, /./ and /../ */
1083 return -1;
1084 ndot = 0;
1085 }
1086 else if (ch == 0) {
1087 if (0 < ndot && ndot < 3)
1088 /* reject /.$ and /..$ */
1089 return -1;
1090 return 0;
1091 }
1092 else
1093 sl = ndot = 0;
1094 }
1095 else if (ch == 0)
1096 return 0;
1097 else if (ch == '/') {
1098 sl = 1;
1099 ndot = 0;
1100 }
1101 }
1102}
4bb43de2 1103
1d1d69bc
JS
1104static int only_spaces_and_periods(const char *path, size_t len, size_t skip)
1105{
1106 if (len < skip)
1107 return 0;
1108 len -= skip;
1109 path += skip;
1110 while (len-- > 0) {
1111 char c = *(path++);
1112 if (c != ' ' && c != '.')
1113 return 0;
1114 }
1115 return 1;
1116}
1117
1118int is_ntfs_dotgit(const char *name)
1119{
1120 int len;
1121
1122 for (len = 0; ; len++)
1123 if (!name[len] || name[len] == '\\' || is_dir_sep(name[len])) {
1124 if (only_spaces_and_periods(name, len, 4) &&
1125 !strncasecmp(name, ".git", 4))
1126 return 1;
1127 if (only_spaces_and_periods(name, len, 5) &&
1128 !strncasecmp(name, "git~1", 5))
1129 return 1;
1130 if (name[len] != '\\')
1131 return 0;
1132 name += len + 1;
1133 len = -1;
1134 }
1135}
ea19289b
PT
1136
1137char *xdg_config_home(const char *filename)
1138{
1139 const char *home, *config_home;
1140
1141 assert(filename);
1142 config_home = getenv("XDG_CONFIG_HOME");
1143 if (config_home && *config_home)
1144 return mkpathdup("%s/git/%s", config_home, filename);
1145
1146 home = getenv("HOME");
1147 if (home)
1148 return mkpathdup("%s/.config/git/%s", home, filename);
1149 return NULL;
1150}
f932729c
JK
1151
1152GIT_PATH_FUNC(git_path_cherry_pick_head, "CHERRY_PICK_HEAD")
1153GIT_PATH_FUNC(git_path_revert_head, "REVERT_HEAD")
1154GIT_PATH_FUNC(git_path_squash_msg, "SQUASH_MSG")
1155GIT_PATH_FUNC(git_path_merge_msg, "MERGE_MSG")
1156GIT_PATH_FUNC(git_path_merge_rr, "MERGE_RR")
1157GIT_PATH_FUNC(git_path_merge_mode, "MERGE_MODE")
1158GIT_PATH_FUNC(git_path_merge_head, "MERGE_HEAD")
1159GIT_PATH_FUNC(git_path_fetch_head, "FETCH_HEAD")
1160GIT_PATH_FUNC(git_path_shallow, "shallow")