2 * Utilities for paths and pathnames
6 #include "repository.h"
8 #include "string-list.h"
11 #include "submodule-config.h"
14 #include "object-store.h"
18 static int get_st_mode_bits(const char *path
, int *mode
)
21 if (lstat(path
, &st
) < 0)
27 static char bad_path
[] = "/bad-path/";
29 static struct strbuf
*get_pathname(void)
31 static struct strbuf pathname_array
[4] = {
32 STRBUF_INIT
, STRBUF_INIT
, STRBUF_INIT
, STRBUF_INIT
35 struct strbuf
*sb
= &pathname_array
[index
];
36 index
= (index
+ 1) % ARRAY_SIZE(pathname_array
);
41 static const char *cleanup_path(const char *path
)
44 if (skip_prefix(path
, "./", &path
)) {
51 static void strbuf_cleanup_path(struct strbuf
*sb
)
53 const char *path
= cleanup_path(sb
->buf
);
55 strbuf_remove(sb
, 0, path
- sb
->buf
);
58 char *mksnpath(char *buf
, size_t n
, const char *fmt
, ...)
64 len
= vsnprintf(buf
, n
, fmt
, args
);
67 strlcpy(buf
, bad_path
, n
);
70 return (char *)cleanup_path(buf
);
73 static int dir_prefix(const char *buf
, const char *dir
)
75 int len
= strlen(dir
);
76 return !strncmp(buf
, dir
, len
) &&
77 (is_dir_sep(buf
[len
]) || buf
[len
] == '\0');
80 /* $buf =~ m|$dir/+$file| but without regex */
81 static int is_dir_file(const char *buf
, const char *dir
, const char *file
)
83 int len
= strlen(dir
);
84 if (strncmp(buf
, dir
, len
) || !is_dir_sep(buf
[len
]))
86 while (is_dir_sep(buf
[len
]))
88 return !strcmp(buf
+ len
, file
);
91 static void replace_dir(struct strbuf
*buf
, int len
, const char *newdir
)
93 int newlen
= strlen(newdir
);
94 int need_sep
= (buf
->buf
[len
] && !is_dir_sep(buf
->buf
[len
])) &&
95 !is_dir_sep(newdir
[newlen
- 1]);
97 len
--; /* keep one char, to be replaced with '/' */
98 strbuf_splice(buf
, 0, len
, newdir
, newlen
);
100 buf
->buf
[newlen
] = '/';
104 /* Not considered garbage for report_linked_checkout_garbage */
105 unsigned ignore_garbage
:1;
107 /* Belongs to the common dir, though it may contain paths that don't */
108 unsigned is_common
:1;
112 static struct common_dir common_list
[] = {
113 { 0, 1, 1, "branches" },
114 { 0, 1, 1, "common" },
115 { 0, 1, 1, "hooks" },
117 { 0, 0, 0, "info/sparse-checkout" },
119 { 1, 0, 0, "logs/HEAD" },
120 { 0, 1, 0, "logs/refs/bisect" },
121 { 0, 1, 0, "logs/refs/rewritten" },
122 { 0, 1, 0, "logs/refs/worktree" },
123 { 0, 1, 1, "lost-found" },
124 { 0, 1, 1, "objects" },
126 { 0, 1, 0, "refs/bisect" },
127 { 0, 1, 0, "refs/rewritten" },
128 { 0, 1, 0, "refs/worktree" },
129 { 0, 1, 1, "remotes" },
130 { 0, 1, 1, "worktrees" },
131 { 0, 1, 1, "rr-cache" },
133 { 0, 0, 1, "config" },
134 { 1, 0, 1, "gc.pid" },
135 { 0, 0, 1, "packed-refs" },
136 { 0, 0, 1, "shallow" },
141 * A compressed trie. A trie node consists of zero or more characters that
142 * are common to all elements with this prefix, optionally followed by some
143 * children. If value is not NULL, the trie node is a terminal node.
145 * For example, consider the following set of strings:
151 * The trie would look like:
152 * root: len = 0, children a and d non-NULL, value = NULL.
153 * a: len = 2, contents = bc, value = (data for "abc")
154 * d: len = 2, contents = ef, children i non-NULL, value = (data for "def")
155 * i: len = 3, contents = nit, children e and i non-NULL, value = NULL
156 * e: len = 0, children all NULL, value = (data for "definite")
157 * i: len = 2, contents = on, children all NULL,
158 * value = (data for "definition")
161 struct trie
*children
[256];
167 static struct trie
*make_trie_node(const char *key
, void *value
)
169 struct trie
*new_node
= xcalloc(1, sizeof(*new_node
));
170 new_node
->len
= strlen(key
);
172 new_node
->contents
= xmalloc(new_node
->len
);
173 memcpy(new_node
->contents
, key
, new_node
->len
);
175 new_node
->value
= value
;
180 * Add a key/value pair to a trie. The key is assumed to be \0-terminated.
181 * If there was an existing value for this key, return it.
183 static void *add_to_trie(struct trie
*root
, const char *key
, void *value
)
190 /* we have reached the end of the key */
196 for (i
= 0; i
< root
->len
; i
++) {
197 if (root
->contents
[i
] == key
[i
])
201 * Split this node: child will contain this node's
204 child
= xmalloc(sizeof(*child
));
205 memcpy(child
->children
, root
->children
, sizeof(root
->children
));
207 child
->len
= root
->len
- i
- 1;
209 child
->contents
= xstrndup(root
->contents
+ i
+ 1,
212 child
->value
= root
->value
;
216 memset(root
->children
, 0, sizeof(root
->children
));
217 root
->children
[(unsigned char)root
->contents
[i
]] = child
;
219 /* This is the newly-added child. */
220 root
->children
[(unsigned char)key
[i
]] =
221 make_trie_node(key
+ i
+ 1, value
);
225 /* We have matched the entire compressed section */
227 child
= root
->children
[(unsigned char)key
[root
->len
]];
229 return add_to_trie(child
, key
+ root
->len
+ 1, value
);
231 child
= make_trie_node(key
+ root
->len
+ 1, value
);
232 root
->children
[(unsigned char)key
[root
->len
]] = child
;
242 typedef int (*match_fn
)(const char *unmatched
, void *value
, void *baton
);
245 * Search a trie for some key. Find the longest /-or-\0-terminated
246 * prefix of the key for which the trie contains a value. If there is
247 * no such prefix, return -1. Otherwise call fn with the unmatched
248 * portion of the key and the found value. If fn returns 0 or
249 * positive, then return its return value. If fn returns negative,
250 * then call fn with the next-longest /-terminated prefix of the key
251 * (i.e. a parent directory) for which the trie contains a value, and
252 * handle its return value the same way. If there is no shorter
253 * /-terminated prefix with a value left, then return the negative
254 * return value of the most recent fn invocation.
256 * The key is partially normalized: consecutive slashes are skipped.
258 * For example, consider the trie containing only [logs,
259 * logs/refs/bisect], both with values, but not logs/refs.
261 * | key | unmatched | prefix to node | return value |
262 * |--------------------|----------------|------------------|--------------|
263 * | a | not called | n/a | -1 |
264 * | logstore | not called | n/a | -1 |
265 * | logs | \0 | logs | as per fn |
266 * | logs/ | / | logs | as per fn |
267 * | logs/refs | /refs | logs | as per fn |
268 * | logs/refs/ | /refs/ | logs | as per fn |
269 * | logs/refs/b | /refs/b | logs | as per fn |
270 * | logs/refs/bisected | /refs/bisected | logs | as per fn |
271 * | logs/refs/bisect | \0 | logs/refs/bisect | as per fn |
272 * | logs/refs/bisect/ | / | logs/refs/bisect | as per fn |
273 * | logs/refs/bisect/a | /a | logs/refs/bisect | as per fn |
274 * | (If fn in the previous line returns -1, then fn is called once more:) |
275 * | logs/refs/bisect/a | /refs/bisect/a | logs | as per fn |
276 * |--------------------|----------------|------------------|--------------|
278 static int trie_find(struct trie
*root
, const char *key
, match_fn fn
,
286 /* we have reached the end of the key */
287 if (root
->value
&& !root
->len
)
288 return fn(key
, root
->value
, baton
);
293 for (i
= 0; i
< root
->len
; i
++) {
294 /* Partial path normalization: skip consecutive slashes. */
295 if (key
[i
] == '/' && key
[i
+1] == '/') {
299 if (root
->contents
[i
] != key
[i
])
303 /* Matched the entire compressed section */
308 return fn(key
, root
->value
, baton
);
313 /* Partial path normalization: skip consecutive slashes */
314 while (key
[0] == '/' && key
[1] == '/')
317 child
= root
->children
[(unsigned char)*key
];
319 result
= trie_find(child
, key
+ 1, fn
, baton
);
323 if (result
>= 0 || (*key
!= '/' && *key
!= 0))
326 return fn(key
, root
->value
, baton
);
331 static struct trie common_trie
;
332 static int common_trie_done_setup
;
334 static void init_common_trie(void)
336 struct common_dir
*p
;
338 if (common_trie_done_setup
)
341 for (p
= common_list
; p
->path
; p
++)
342 add_to_trie(&common_trie
, p
->path
, p
);
344 common_trie_done_setup
= 1;
348 * Helper function for update_common_dir: returns 1 if the dir
351 static int check_common(const char *unmatched
, void *value
, void *baton
)
353 struct common_dir
*dir
= value
;
355 if (dir
->is_dir
&& (unmatched
[0] == 0 || unmatched
[0] == '/'))
356 return dir
->is_common
;
358 if (!dir
->is_dir
&& unmatched
[0] == 0)
359 return dir
->is_common
;
364 static void update_common_dir(struct strbuf
*buf
, int git_dir_len
,
365 const char *common_dir
)
367 char *base
= buf
->buf
+ git_dir_len
;
368 int has_lock_suffix
= strbuf_strip_suffix(buf
, LOCK_SUFFIX
);
371 if (trie_find(&common_trie
, base
, check_common
, NULL
) > 0)
372 replace_dir(buf
, git_dir_len
, common_dir
);
375 strbuf_addstr(buf
, LOCK_SUFFIX
);
378 void report_linked_checkout_garbage(void)
380 struct strbuf sb
= STRBUF_INIT
;
381 const struct common_dir
*p
;
384 if (!the_repository
->different_commondir
)
386 strbuf_addf(&sb
, "%s/", get_git_dir());
388 for (p
= common_list
; p
->path
; p
++) {
389 const char *path
= p
->path
;
390 if (p
->ignore_garbage
)
392 strbuf_setlen(&sb
, len
);
393 strbuf_addstr(&sb
, path
);
394 if (file_exists(sb
.buf
))
395 report_garbage(PACKDIR_FILE_GARBAGE
, sb
.buf
);
400 static void adjust_git_path(const struct repository
*repo
,
401 struct strbuf
*buf
, int git_dir_len
)
403 const char *base
= buf
->buf
+ git_dir_len
;
404 if (is_dir_file(base
, "info", "grafts"))
405 strbuf_splice(buf
, 0, buf
->len
,
406 repo
->graft_file
, strlen(repo
->graft_file
));
407 else if (!strcmp(base
, "index"))
408 strbuf_splice(buf
, 0, buf
->len
,
409 repo
->index_file
, strlen(repo
->index_file
));
410 else if (dir_prefix(base
, "objects"))
411 replace_dir(buf
, git_dir_len
+ 7, repo
->objects
->odb
->path
);
412 else if (git_hooks_path
&& dir_prefix(base
, "hooks"))
413 replace_dir(buf
, git_dir_len
+ 5, git_hooks_path
);
414 else if (repo
->different_commondir
)
415 update_common_dir(buf
, git_dir_len
, repo
->commondir
);
418 static void strbuf_worktree_gitdir(struct strbuf
*buf
,
419 const struct repository
*repo
,
420 const struct worktree
*wt
)
423 strbuf_addstr(buf
, repo
->gitdir
);
425 strbuf_addstr(buf
, repo
->commondir
);
427 strbuf_git_common_path(buf
, repo
, "worktrees/%s", wt
->id
);
430 static void do_git_path(const struct repository
*repo
,
431 const struct worktree
*wt
, struct strbuf
*buf
,
432 const char *fmt
, va_list args
)
435 strbuf_worktree_gitdir(buf
, repo
, wt
);
436 if (buf
->len
&& !is_dir_sep(buf
->buf
[buf
->len
- 1]))
437 strbuf_addch(buf
, '/');
438 gitdir_len
= buf
->len
;
439 strbuf_vaddf(buf
, fmt
, args
);
441 adjust_git_path(repo
, buf
, gitdir_len
);
442 strbuf_cleanup_path(buf
);
445 char *repo_git_path(const struct repository
*repo
,
446 const char *fmt
, ...)
448 struct strbuf path
= STRBUF_INIT
;
451 do_git_path(repo
, NULL
, &path
, fmt
, args
);
453 return strbuf_detach(&path
, NULL
);
456 void strbuf_repo_git_path(struct strbuf
*sb
,
457 const struct repository
*repo
,
458 const char *fmt
, ...)
462 do_git_path(repo
, NULL
, sb
, fmt
, args
);
466 char *git_path_buf(struct strbuf
*buf
, const char *fmt
, ...)
471 do_git_path(the_repository
, NULL
, buf
, fmt
, args
);
476 void strbuf_git_path(struct strbuf
*sb
, const char *fmt
, ...)
480 do_git_path(the_repository
, NULL
, sb
, fmt
, args
);
484 const char *git_path(const char *fmt
, ...)
486 struct strbuf
*pathname
= get_pathname();
489 do_git_path(the_repository
, NULL
, pathname
, fmt
, args
);
491 return pathname
->buf
;
494 char *git_pathdup(const char *fmt
, ...)
496 struct strbuf path
= STRBUF_INIT
;
499 do_git_path(the_repository
, NULL
, &path
, fmt
, args
);
501 return strbuf_detach(&path
, NULL
);
504 char *mkpathdup(const char *fmt
, ...)
506 struct strbuf sb
= STRBUF_INIT
;
509 strbuf_vaddf(&sb
, fmt
, args
);
511 strbuf_cleanup_path(&sb
);
512 return strbuf_detach(&sb
, NULL
);
515 const char *mkpath(const char *fmt
, ...)
518 struct strbuf
*pathname
= get_pathname();
520 strbuf_vaddf(pathname
, fmt
, args
);
522 return cleanup_path(pathname
->buf
);
525 const char *worktree_git_path(const struct worktree
*wt
, const char *fmt
, ...)
527 struct strbuf
*pathname
= get_pathname();
530 do_git_path(the_repository
, wt
, pathname
, fmt
, args
);
532 return pathname
->buf
;
535 static void do_worktree_path(const struct repository
*repo
,
537 const char *fmt
, va_list args
)
539 strbuf_addstr(buf
, repo
->worktree
);
540 if(buf
->len
&& !is_dir_sep(buf
->buf
[buf
->len
- 1]))
541 strbuf_addch(buf
, '/');
543 strbuf_vaddf(buf
, fmt
, args
);
544 strbuf_cleanup_path(buf
);
547 char *repo_worktree_path(const struct repository
*repo
, const char *fmt
, ...)
549 struct strbuf path
= STRBUF_INIT
;
556 do_worktree_path(repo
, &path
, fmt
, args
);
559 return strbuf_detach(&path
, NULL
);
562 void strbuf_repo_worktree_path(struct strbuf
*sb
,
563 const struct repository
*repo
,
564 const char *fmt
, ...)
572 do_worktree_path(repo
, sb
, fmt
, args
);
576 /* Returns 0 on success, negative on failure. */
577 static int do_submodule_path(struct strbuf
*buf
, const char *path
,
578 const char *fmt
, va_list args
)
580 struct strbuf git_submodule_common_dir
= STRBUF_INIT
;
581 struct strbuf git_submodule_dir
= STRBUF_INIT
;
584 ret
= submodule_to_gitdir(&git_submodule_dir
, path
);
588 strbuf_complete(&git_submodule_dir
, '/');
589 strbuf_addbuf(buf
, &git_submodule_dir
);
590 strbuf_vaddf(buf
, fmt
, args
);
592 if (get_common_dir_noenv(&git_submodule_common_dir
, git_submodule_dir
.buf
))
593 update_common_dir(buf
, git_submodule_dir
.len
, git_submodule_common_dir
.buf
);
595 strbuf_cleanup_path(buf
);
598 strbuf_release(&git_submodule_dir
);
599 strbuf_release(&git_submodule_common_dir
);
603 char *git_pathdup_submodule(const char *path
, const char *fmt
, ...)
607 struct strbuf buf
= STRBUF_INIT
;
609 err
= do_submodule_path(&buf
, path
, fmt
, args
);
612 strbuf_release(&buf
);
615 return strbuf_detach(&buf
, NULL
);
618 int strbuf_git_path_submodule(struct strbuf
*buf
, const char *path
,
619 const char *fmt
, ...)
624 err
= do_submodule_path(buf
, path
, fmt
, args
);
630 static void do_git_common_path(const struct repository
*repo
,
635 strbuf_addstr(buf
, repo
->commondir
);
636 if (buf
->len
&& !is_dir_sep(buf
->buf
[buf
->len
- 1]))
637 strbuf_addch(buf
, '/');
638 strbuf_vaddf(buf
, fmt
, args
);
639 strbuf_cleanup_path(buf
);
642 const char *git_common_path(const char *fmt
, ...)
644 struct strbuf
*pathname
= get_pathname();
647 do_git_common_path(the_repository
, pathname
, fmt
, args
);
649 return pathname
->buf
;
652 void strbuf_git_common_path(struct strbuf
*sb
,
653 const struct repository
*repo
,
654 const char *fmt
, ...)
658 do_git_common_path(repo
, sb
, fmt
, args
);
662 int validate_headref(const char *path
)
667 struct object_id oid
;
671 if (lstat(path
, &st
) < 0)
674 /* Make sure it is a "refs/.." symlink */
675 if (S_ISLNK(st
.st_mode
)) {
676 len
= readlink(path
, buffer
, sizeof(buffer
)-1);
677 if (len
>= 5 && !memcmp("refs/", buffer
, 5))
683 * Anything else, just open it and try to see if it is a symbolic ref.
685 fd
= open(path
, O_RDONLY
);
688 len
= read_in_full(fd
, buffer
, sizeof(buffer
)-1);
696 * Is it a symbolic ref?
698 if (skip_prefix(buffer
, "ref:", &refname
)) {
699 while (isspace(*refname
))
701 if (starts_with(refname
, "refs/"))
706 * Is this a detached HEAD?
708 if (!get_oid_hex(buffer
, &oid
))
714 static struct passwd
*getpw_str(const char *username
, size_t len
)
717 char *username_z
= xmemdupz(username
, len
);
718 pw
= getpwnam(username_z
);
724 * Return a string with ~ and ~user expanded via getpw*. Returns NULL on getpw
725 * failure or if path is NULL.
727 * If real_home is true, strbuf_realpath($HOME) is used in the `~/` expansion.
729 * If the path starts with `%(prefix)/`, the remainder is interpreted as
730 * relative to where Git is installed, and expanded to the absolute path.
732 char *interpolate_path(const char *path
, int real_home
)
734 struct strbuf user_path
= STRBUF_INIT
;
735 const char *to_copy
= path
;
740 if (skip_prefix(path
, "%(prefix)/", &path
))
741 return system_path(path
);
743 if (path
[0] == '~') {
744 const char *first_slash
= strchrnul(path
, '/');
745 const char *username
= path
+ 1;
746 size_t username_len
= first_slash
- username
;
747 if (username_len
== 0) {
748 const char *home
= getenv("HOME");
752 strbuf_add_real_path(&user_path
, home
);
754 strbuf_addstr(&user_path
, home
);
755 #ifdef GIT_WINDOWS_NATIVE
756 convert_slashes(user_path
.buf
);
759 struct passwd
*pw
= getpw_str(username
, username_len
);
762 strbuf_addstr(&user_path
, pw
->pw_dir
);
764 to_copy
= first_slash
;
766 strbuf_addstr(&user_path
, to_copy
);
767 return strbuf_detach(&user_path
, NULL
);
769 strbuf_release(&user_path
);
774 * First, one directory to try is determined by the following algorithm.
776 * (0) If "strict" is given, the path is used as given and no DWIM is
778 * (1) "~/path" to mean path under the running user's home directory;
779 * (2) "~user/path" to mean path under named user's home directory;
780 * (3) "relative/path" to mean cwd relative directory; or
781 * (4) "/absolute/path" to mean absolute directory.
783 * Unless "strict" is given, we check "%s/.git", "%s", "%s.git/.git", "%s.git"
784 * in this order. We select the first one that is a valid git repository, and
785 * chdir() to it. If none match, or we fail to chdir, we return NULL.
787 * If all goes well, we return the directory we used to chdir() (but
788 * before ~user is expanded), avoiding getcwd() resolving symbolic
789 * links. User relative paths are also returned as they are given,
790 * except DWIM suffixing.
792 const char *enter_repo(const char *path
, int strict
)
794 static struct strbuf validated_path
= STRBUF_INIT
;
795 static struct strbuf used_path
= STRBUF_INIT
;
801 static const char *suffix
[] = {
802 "/.git", "", ".git/.git", ".git", NULL
,
805 int len
= strlen(path
);
807 while ((1 < len
) && (path
[len
-1] == '/'))
811 * We can handle arbitrary-sized buffers, but this remains as a
812 * sanity check on untrusted input.
817 strbuf_reset(&used_path
);
818 strbuf_reset(&validated_path
);
819 strbuf_add(&used_path
, path
, len
);
820 strbuf_add(&validated_path
, path
, len
);
822 if (used_path
.buf
[0] == '~') {
823 char *newpath
= interpolate_path(used_path
.buf
, 0);
826 strbuf_attach(&used_path
, newpath
, strlen(newpath
),
829 for (i
= 0; suffix
[i
]; i
++) {
831 size_t baselen
= used_path
.len
;
832 strbuf_addstr(&used_path
, suffix
[i
]);
833 if (!stat(used_path
.buf
, &st
) &&
834 (S_ISREG(st
.st_mode
) ||
835 (S_ISDIR(st
.st_mode
) && is_git_directory(used_path
.buf
)))) {
836 strbuf_addstr(&validated_path
, suffix
[i
]);
839 strbuf_setlen(&used_path
, baselen
);
843 gitfile
= read_gitfile(used_path
.buf
);
845 strbuf_reset(&used_path
);
846 strbuf_addstr(&used_path
, gitfile
);
848 if (chdir(used_path
.buf
))
850 path
= validated_path
.buf
;
853 const char *gitfile
= read_gitfile(path
);
860 if (is_git_directory(".")) {
862 check_repository_format(NULL
);
869 static int calc_shared_perm(int mode
)
873 if (get_shared_repository() < 0)
874 tweak
= -get_shared_repository();
876 tweak
= get_shared_repository();
878 if (!(mode
& S_IWUSR
))
881 /* Copy read bits to execute bits */
882 tweak
|= (tweak
& 0444) >> 2;
883 if (get_shared_repository() < 0)
884 mode
= (mode
& ~0777) | tweak
;
892 int adjust_shared_perm(const char *path
)
894 int old_mode
, new_mode
;
896 if (!get_shared_repository())
898 if (get_st_mode_bits(path
, &old_mode
) < 0)
901 new_mode
= calc_shared_perm(old_mode
);
902 if (S_ISDIR(old_mode
)) {
903 /* Copy read bits to execute bits */
904 new_mode
|= (new_mode
& 0444) >> 2;
907 * g+s matters only if any extra access is granted
908 * based on group membership.
910 if (FORCE_DIR_SET_GID
&& (new_mode
& 060))
911 new_mode
|= FORCE_DIR_SET_GID
;
914 if (((old_mode
^ new_mode
) & ~S_IFMT
) &&
915 chmod(path
, (new_mode
& ~S_IFMT
)) < 0)
920 void safe_create_dir(const char *dir
, int share
)
922 if (mkdir(dir
, 0777) < 0) {
923 if (errno
!= EEXIST
) {
928 else if (share
&& adjust_shared_perm(dir
))
929 die(_("Could not make %s writable by group"), dir
);
932 static int have_same_root(const char *path1
, const char *path2
)
934 int is_abs1
, is_abs2
;
936 is_abs1
= is_absolute_path(path1
);
937 is_abs2
= is_absolute_path(path2
);
938 return (is_abs1
&& is_abs2
&& tolower(path1
[0]) == tolower(path2
[0])) ||
939 (!is_abs1
&& !is_abs2
);
943 * Give path as relative to prefix.
945 * The strbuf may or may not be used, so do not assume it contains the
948 const char *relative_path(const char *in
, const char *prefix
,
951 int in_len
= in
? strlen(in
) : 0;
952 int prefix_len
= prefix
? strlen(prefix
) : 0;
959 else if (!prefix_len
)
962 if (have_same_root(in
, prefix
))
963 /* bypass dos_drive, for "c:" is identical to "C:" */
964 i
= j
= has_dos_drive_prefix(in
);
969 while (i
< prefix_len
&& j
< in_len
&& prefix
[i
] == in
[j
]) {
970 if (is_dir_sep(prefix
[i
])) {
971 while (is_dir_sep(prefix
[i
]))
973 while (is_dir_sep(in
[j
]))
984 /* "prefix" seems like prefix of "in" */
987 * but "/foo" is not a prefix of "/foobar"
988 * (i.e. prefix not end with '/')
990 prefix_off
< prefix_len
) {
992 /* in="/a/b", prefix="/a/b" */
994 } else if (is_dir_sep(in
[j
])) {
995 /* in="/a/b/c", prefix="/a/b" */
996 while (is_dir_sep(in
[j
]))
1000 /* in="/a/bbb/c", prefix="/a/b" */
1004 /* "in" is short than "prefix" */
1006 /* "in" not end with '/' */
1008 if (is_dir_sep(prefix
[i
])) {
1009 /* in="/a/b", prefix="/a/b/c/" */
1010 while (is_dir_sep(prefix
[i
]))
1018 if (i
>= prefix_len
) {
1026 strbuf_grow(sb
, in_len
);
1028 while (i
< prefix_len
) {
1029 if (is_dir_sep(prefix
[i
])) {
1030 strbuf_addstr(sb
, "../");
1031 while (is_dir_sep(prefix
[i
]))
1037 if (!is_dir_sep(prefix
[prefix_len
- 1]))
1038 strbuf_addstr(sb
, "../");
1040 strbuf_addstr(sb
, in
);
1046 * A simpler implementation of relative_path
1048 * Get relative path by removing "prefix" from "in". This function
1049 * first appears in v1.5.6-1-g044bbbc, and makes git_dir shorter
1050 * to increase performance when traversing the path to work_tree.
1052 const char *remove_leading_path(const char *in
, const char *prefix
)
1054 static struct strbuf buf
= STRBUF_INIT
;
1057 if (!prefix
|| !prefix
[0])
1060 if (is_dir_sep(prefix
[i
])) {
1061 if (!is_dir_sep(in
[j
]))
1063 while (is_dir_sep(prefix
[i
]))
1065 while (is_dir_sep(in
[j
]))
1068 } else if (in
[j
] != prefix
[i
]) {
1075 /* "/foo" is a prefix of "/foo" */
1077 /* "/foo" is not a prefix of "/foobar" */
1078 !is_dir_sep(prefix
[i
-1]) && !is_dir_sep(in
[j
])
1081 while (is_dir_sep(in
[j
]))
1086 strbuf_addstr(&buf
, ".");
1088 strbuf_addstr(&buf
, in
+ j
);
1093 * It is okay if dst == src, but they should not overlap otherwise.
1094 * The "dst" buffer must be at least as long as "src"; normalizing may shrink
1095 * the size of the path, but will never grow it.
1097 * Performs the following normalizations on src, storing the result in dst:
1098 * - Ensures that components are separated by '/' (Windows only)
1099 * - Squashes sequences of '/' except "//server/share" on Windows
1100 * - Removes "." components.
1101 * - Removes ".." components, and the components the precede them.
1102 * Returns failure (non-zero) if a ".." component appears as first path
1103 * component anytime during the normalization. Otherwise, returns success (0).
1105 * Note that this function is purely textual. It does not follow symlinks,
1106 * verify the existence of the path, or make any system calls.
1108 * prefix_len != NULL is for a specific case of prefix_pathspec():
1109 * assume that src == dst and src[0..prefix_len-1] is already
1110 * normalized, any time "../" eats up to the prefix_len part,
1111 * prefix_len is reduced. In the end prefix_len is the remaining
1112 * prefix that has not been overridden by user pathspec.
1114 * NEEDSWORK: This function doesn't perform normalization w.r.t. trailing '/'.
1115 * For everything but the root folder itself, the normalized path should not
1116 * end with a '/', then the callers need to be fixed up accordingly.
1119 int normalize_path_copy_len(char *dst
, const char *src
, int *prefix_len
)
1125 * Copy initial part of absolute path: "/", "C:/", "//server/share/".
1127 end
= src
+ offset_1st_component(src
);
1136 while (is_dir_sep(*src
))
1143 * A path component that begins with . could be
1145 * (1) "." and ends -- ignore and terminate.
1146 * (2) "./" -- ignore them, eat slash and continue.
1147 * (3) ".." and ends -- strip one and terminate.
1148 * (4) "../" -- strip one, eat slash and continue.
1154 } else if (is_dir_sep(src
[1])) {
1157 while (is_dir_sep(*src
))
1160 } else if (src
[1] == '.') {
1165 } else if (is_dir_sep(src
[2])) {
1168 while (is_dir_sep(*src
))
1175 /* copy up to the next '/', and eat all '/' */
1176 while ((c
= *src
++) != '\0' && !is_dir_sep(c
))
1178 if (is_dir_sep(c
)) {
1180 while (is_dir_sep(c
))
1189 * dst0..dst is prefix portion, and dst[-1] is '/';
1192 dst
--; /* go to trailing '/' */
1195 /* Windows: dst[-1] cannot be backslash anymore */
1196 while (dst0
< dst
&& dst
[-1] != '/')
1198 if (prefix_len
&& *prefix_len
> dst
- dst0
)
1199 *prefix_len
= dst
- dst0
;
1205 int normalize_path_copy(char *dst
, const char *src
)
1207 return normalize_path_copy_len(dst
, src
, NULL
);
1211 * path = Canonical absolute path
1212 * prefixes = string_list containing normalized, absolute paths without
1213 * trailing slashes (except for the root directory, which is denoted by "/").
1215 * Determines, for each path in prefixes, whether the "prefix"
1216 * is an ancestor directory of path. Returns the length of the longest
1217 * ancestor directory, excluding any trailing slashes, or -1 if no prefix
1218 * is an ancestor. (Note that this means 0 is returned if prefixes is
1219 * ["/"].) "/foo" is not considered an ancestor of "/foobar". Directories
1220 * are not considered to be their own ancestors. path must be in a
1221 * canonical form: empty components, or "." or ".." components are not
1224 int longest_ancestor_length(const char *path
, struct string_list
*prefixes
)
1226 int i
, max_len
= -1;
1228 if (!strcmp(path
, "/"))
1231 for (i
= 0; i
< prefixes
->nr
; i
++) {
1232 const char *ceil
= prefixes
->items
[i
].string
;
1233 int len
= strlen(ceil
);
1236 * For root directories (`/`, `C:/`, `//server/share/`)
1237 * adjust the length to exclude the trailing slash.
1239 if (len
> 0 && ceil
[len
- 1] == '/')
1242 if (strncmp(path
, ceil
, len
) ||
1243 path
[len
] != '/' || !path
[len
+ 1])
1244 continue; /* no match */
1253 /* strip arbitrary amount of directory separators at end of path */
1254 static inline int chomp_trailing_dir_sep(const char *path
, int len
)
1256 while (len
&& is_dir_sep(path
[len
- 1]))
1262 * If path ends with suffix (complete path components), returns the offset of
1263 * the last character in the path before the suffix (sans trailing directory
1264 * separators), and -1 otherwise.
1266 static ssize_t
stripped_path_suffix_offset(const char *path
, const char *suffix
)
1268 int path_len
= strlen(path
), suffix_len
= strlen(suffix
);
1270 while (suffix_len
) {
1274 if (is_dir_sep(path
[path_len
- 1])) {
1275 if (!is_dir_sep(suffix
[suffix_len
- 1]))
1277 path_len
= chomp_trailing_dir_sep(path
, path_len
);
1278 suffix_len
= chomp_trailing_dir_sep(suffix
, suffix_len
);
1280 else if (path
[--path_len
] != suffix
[--suffix_len
])
1284 if (path_len
&& !is_dir_sep(path
[path_len
- 1]))
1286 return chomp_trailing_dir_sep(path
, path_len
);
1290 * Returns true if the path ends with components, considering only complete path
1291 * components, and false otherwise.
1293 int ends_with_path_components(const char *path
, const char *components
)
1295 return stripped_path_suffix_offset(path
, components
) != -1;
1299 * If path ends with suffix (complete path components), returns the
1300 * part before suffix (sans trailing directory separators).
1301 * Otherwise returns NULL.
1303 char *strip_path_suffix(const char *path
, const char *suffix
)
1305 ssize_t offset
= stripped_path_suffix_offset(path
, suffix
);
1307 return offset
== -1 ? NULL
: xstrndup(path
, offset
);
1310 int daemon_avoid_alias(const char *p
)
1315 * This resurrects the belts and suspenders paranoia check by HPA
1316 * done in <435560F7.4080006@zytor.com> thread, now enter_repo()
1317 * does not do getcwd() based path canonicalization.
1319 * sl becomes true immediately after seeing '/' and continues to
1320 * be true as long as dots continue after that without intervening
1321 * non-dot character.
1323 if (!p
|| (*p
!= '/' && *p
!= '~'))
1333 else if (ch
== '/') {
1335 /* reject //, /./ and /../ */
1340 if (0 < ndot
&& ndot
< 3)
1341 /* reject /.$ and /..$ */
1350 else if (ch
== '/') {
1358 * On NTFS, we need to be careful to disallow certain synonyms of the `.git/`
1361 * - For historical reasons, file names that end in spaces or periods are
1362 * automatically trimmed. Therefore, `.git . . ./` is a valid way to refer
1365 * - For other historical reasons, file names that do not conform to the 8.3
1366 * format (up to eight characters for the basename, three for the file
1367 * extension, certain characters not allowed such as `+`, etc) are associated
1368 * with a so-called "short name", at least on the `C:` drive by default.
1369 * Which means that `git~1/` is a valid way to refer to `.git/`.
1371 * Note: Technically, `.git/` could receive the short name `git~2` if the
1372 * short name `git~1` were already used. In Git, however, we guarantee that
1373 * `.git` is the first item in a directory, therefore it will be associated
1374 * with the short name `git~1` (unless short names are disabled).
1376 * - For yet other historical reasons, NTFS supports so-called "Alternate Data
1377 * Streams", i.e. metadata associated with a given file, referred to via
1378 * `<filename>:<stream-name>:<stream-type>`. There exists a default stream
1379 * type for directories, allowing `.git/` to be accessed via
1380 * `.git::$INDEX_ALLOCATION/`.
1382 * When this function returns 1, it indicates that the specified file/directory
1383 * name refers to a `.git` file or directory, or to any of these synonyms, and
1384 * Git should therefore not track it.
1386 * For performance reasons, _all_ Alternate Data Streams of `.git/` are
1387 * forbidden, not just `::$INDEX_ALLOCATION`.
1389 * This function is intended to be used by `git fsck` even on platforms where
1390 * the backslash is a regular filename character, therefore it needs to handle
1391 * backlash characters in the provided `name` specially: they are interpreted
1392 * as directory separators.
1394 int is_ntfs_dotgit(const char *name
)
1399 * Note that when we don't find `.git` or `git~1` we end up with `name`
1400 * advanced partway through the string. That's okay, though, as we
1401 * return immediately in those cases, without looking at `name` any
1407 if (((c
= *(name
++)) != 'g' && c
!= 'G') ||
1408 ((c
= *(name
++)) != 'i' && c
!= 'I') ||
1409 ((c
= *(name
++)) != 't' && c
!= 'T'))
1411 } else if (c
== 'g' || c
== 'G') {
1413 if (((c
= *(name
++)) != 'i' && c
!= 'I') ||
1414 ((c
= *(name
++)) != 't' && c
!= 'T') ||
1423 if (!c
|| is_xplatform_dir_sep(c
) || c
== ':')
1425 if (c
!= '.' && c
!= ' ')
1430 static int is_ntfs_dot_generic(const char *name
,
1431 const char *dotgit_name
,
1433 const char *dotgit_ntfs_shortname_prefix
)
1438 if ((name
[0] == '.' && !strncasecmp(name
+ 1, dotgit_name
, len
))) {
1440 only_spaces_and_periods
:
1445 if (c
!= ' ' && c
!= '.')
1451 * Is it a regular NTFS short name, i.e. shortened to 6 characters,
1452 * followed by ~1, ... ~4?
1454 if (!strncasecmp(name
, dotgit_name
, 6) && name
[6] == '~' &&
1455 name
[7] >= '1' && name
[7] <= '4') {
1457 goto only_spaces_and_periods
;
1461 * Is it a fall-back NTFS short name (for details, see
1462 * https://en.wikipedia.org/wiki/8.3_filename?
1464 for (i
= 0, saw_tilde
= 0; i
< 8; i
++)
1465 if (name
[i
] == '\0')
1467 else if (saw_tilde
) {
1468 if (name
[i
] < '0' || name
[i
] > '9')
1470 } else if (name
[i
] == '~') {
1471 if (name
[++i
] < '1' || name
[i
] > '9')
1476 else if (name
[i
] & 0x80) {
1478 * We know our needles contain only ASCII, so we clamp
1479 * here to make the results of tolower() sane.
1482 } else if (tolower(name
[i
]) != dotgit_ntfs_shortname_prefix
[i
])
1485 goto only_spaces_and_periods
;
1489 * Inline helper to make sure compiler resolves strlen() on literals at
1492 static inline int is_ntfs_dot_str(const char *name
, const char *dotgit_name
,
1493 const char *dotgit_ntfs_shortname_prefix
)
1495 return is_ntfs_dot_generic(name
, dotgit_name
, strlen(dotgit_name
),
1496 dotgit_ntfs_shortname_prefix
);
1499 int is_ntfs_dotgitmodules(const char *name
)
1501 return is_ntfs_dot_str(name
, "gitmodules", "gi7eba");
1504 int is_ntfs_dotgitignore(const char *name
)
1506 return is_ntfs_dot_str(name
, "gitignore", "gi250a");
1509 int is_ntfs_dotgitattributes(const char *name
)
1511 return is_ntfs_dot_str(name
, "gitattributes", "gi7d29");
1514 int is_ntfs_dotmailmap(const char *name
)
1516 return is_ntfs_dot_str(name
, "mailmap", "maba30");
1519 int looks_like_command_line_option(const char *str
)
1521 return str
&& str
[0] == '-';
1524 char *xdg_config_home_for(const char *subdir
, const char *filename
)
1526 const char *home
, *config_home
;
1530 config_home
= getenv("XDG_CONFIG_HOME");
1531 if (config_home
&& *config_home
)
1532 return mkpathdup("%s/%s/%s", config_home
, subdir
, filename
);
1534 home
= getenv("HOME");
1536 return mkpathdup("%s/.config/%s/%s", home
, subdir
, filename
);
1541 char *xdg_config_home(const char *filename
)
1543 return xdg_config_home_for("git", filename
);
1546 char *xdg_cache_home(const char *filename
)
1548 const char *home
, *cache_home
;
1551 cache_home
= getenv("XDG_CACHE_HOME");
1552 if (cache_home
&& *cache_home
)
1553 return mkpathdup("%s/git/%s", cache_home
, filename
);
1555 home
= getenv("HOME");
1557 return mkpathdup("%s/.cache/git/%s", home
, filename
);
1561 REPO_GIT_PATH_FUNC(squash_msg
, "SQUASH_MSG")
1562 REPO_GIT_PATH_FUNC(merge_msg
, "MERGE_MSG")
1563 REPO_GIT_PATH_FUNC(merge_rr
, "MERGE_RR")
1564 REPO_GIT_PATH_FUNC(merge_mode
, "MERGE_MODE")
1565 REPO_GIT_PATH_FUNC(merge_head
, "MERGE_HEAD")
1566 REPO_GIT_PATH_FUNC(merge_autostash
, "MERGE_AUTOSTASH")
1567 REPO_GIT_PATH_FUNC(auto_merge
, "AUTO_MERGE")
1568 REPO_GIT_PATH_FUNC(fetch_head
, "FETCH_HEAD")
1569 REPO_GIT_PATH_FUNC(shallow
, "shallow")