2 * Utilities for paths and pathnames
5 #include "repository.h"
7 #include "string-list.h"
10 #include "submodule-config.h"
13 #include "object-store.h"
15 static int get_st_mode_bits(const char *path
, int *mode
)
18 if (lstat(path
, &st
) < 0)
24 static char bad_path
[] = "/bad-path/";
26 static struct strbuf
*get_pathname(void)
28 static struct strbuf pathname_array
[4] = {
29 STRBUF_INIT
, STRBUF_INIT
, STRBUF_INIT
, STRBUF_INIT
32 struct strbuf
*sb
= &pathname_array
[index
];
33 index
= (index
+ 1) % ARRAY_SIZE(pathname_array
);
38 static const char *cleanup_path(const char *path
)
41 if (skip_prefix(path
, "./", &path
)) {
48 static void strbuf_cleanup_path(struct strbuf
*sb
)
50 const char *path
= cleanup_path(sb
->buf
);
52 strbuf_remove(sb
, 0, path
- sb
->buf
);
55 char *mksnpath(char *buf
, size_t n
, const char *fmt
, ...)
61 len
= vsnprintf(buf
, n
, fmt
, args
);
64 strlcpy(buf
, bad_path
, n
);
67 return (char *)cleanup_path(buf
);
70 static int dir_prefix(const char *buf
, const char *dir
)
72 int len
= strlen(dir
);
73 return !strncmp(buf
, dir
, len
) &&
74 (is_dir_sep(buf
[len
]) || buf
[len
] == '\0');
77 /* $buf =~ m|$dir/+$file| but without regex */
78 static int is_dir_file(const char *buf
, const char *dir
, const char *file
)
80 int len
= strlen(dir
);
81 if (strncmp(buf
, dir
, len
) || !is_dir_sep(buf
[len
]))
83 while (is_dir_sep(buf
[len
]))
85 return !strcmp(buf
+ len
, file
);
88 static void replace_dir(struct strbuf
*buf
, int len
, const char *newdir
)
90 int newlen
= strlen(newdir
);
91 int need_sep
= (buf
->buf
[len
] && !is_dir_sep(buf
->buf
[len
])) &&
92 !is_dir_sep(newdir
[newlen
- 1]);
94 len
--; /* keep one char, to be replaced with '/' */
95 strbuf_splice(buf
, 0, len
, newdir
, newlen
);
97 buf
->buf
[newlen
] = '/';
101 /* Not considered garbage for report_linked_checkout_garbage */
102 unsigned ignore_garbage
:1;
104 /* Not common even though its parent is */
109 static struct common_dir common_list
[] = {
110 { 0, 1, 0, "branches" },
111 { 0, 1, 0, "common" },
112 { 0, 1, 0, "hooks" },
114 { 0, 0, 1, "info/sparse-checkout" },
116 { 1, 1, 1, "logs/HEAD" },
117 { 0, 1, 1, "logs/refs/bisect" },
118 { 0, 1, 1, "logs/refs/rewritten" },
119 { 0, 1, 1, "logs/refs/worktree" },
120 { 0, 1, 0, "lost-found" },
121 { 0, 1, 0, "objects" },
123 { 0, 1, 1, "refs/bisect" },
124 { 0, 1, 1, "refs/rewritten" },
125 { 0, 1, 1, "refs/worktree" },
126 { 0, 1, 0, "remotes" },
127 { 0, 1, 0, "worktrees" },
128 { 0, 1, 0, "rr-cache" },
130 { 0, 0, 0, "config" },
131 { 1, 0, 0, "gc.pid" },
132 { 0, 0, 0, "packed-refs" },
133 { 0, 0, 0, "shallow" },
138 * A compressed trie. A trie node consists of zero or more characters that
139 * are common to all elements with this prefix, optionally followed by some
140 * children. If value is not NULL, the trie node is a terminal node.
142 * For example, consider the following set of strings:
148 * The trie would look like:
149 * root: len = 0, children a and d non-NULL, value = NULL.
150 * a: len = 2, contents = bc, value = (data for "abc")
151 * d: len = 2, contents = ef, children i non-NULL, value = (data for "def")
152 * i: len = 3, contents = nit, children e and i non-NULL, value = NULL
153 * e: len = 0, children all NULL, value = (data for "definite")
154 * i: len = 2, contents = on, children all NULL,
155 * value = (data for "definition")
158 struct trie
*children
[256];
164 static struct trie
*make_trie_node(const char *key
, void *value
)
166 struct trie
*new_node
= xcalloc(1, sizeof(*new_node
));
167 new_node
->len
= strlen(key
);
169 new_node
->contents
= xmalloc(new_node
->len
);
170 memcpy(new_node
->contents
, key
, new_node
->len
);
172 new_node
->value
= value
;
177 * Add a key/value pair to a trie. The key is assumed to be \0-terminated.
178 * If there was an existing value for this key, return it.
180 static void *add_to_trie(struct trie
*root
, const char *key
, void *value
)
187 /* we have reached the end of the key */
193 for (i
= 0; i
< root
->len
; i
++) {
194 if (root
->contents
[i
] == key
[i
])
198 * Split this node: child will contain this node's
201 child
= xmalloc(sizeof(*child
));
202 memcpy(child
->children
, root
->children
, sizeof(root
->children
));
204 child
->len
= root
->len
- i
- 1;
206 child
->contents
= xstrndup(root
->contents
+ i
+ 1,
209 child
->value
= root
->value
;
213 memset(root
->children
, 0, sizeof(root
->children
));
214 root
->children
[(unsigned char)root
->contents
[i
]] = child
;
216 /* This is the newly-added child. */
217 root
->children
[(unsigned char)key
[i
]] =
218 make_trie_node(key
+ i
+ 1, value
);
222 /* We have matched the entire compressed section */
224 child
= root
->children
[(unsigned char)key
[root
->len
]];
226 return add_to_trie(child
, key
+ root
->len
+ 1, value
);
228 child
= make_trie_node(key
+ root
->len
+ 1, value
);
229 root
->children
[(unsigned char)key
[root
->len
]] = child
;
239 typedef int (*match_fn
)(const char *unmatched
, void *data
, void *baton
);
242 * Search a trie for some key. Find the longest /-or-\0-terminated
243 * prefix of the key for which the trie contains a value. Call fn
244 * with the unmatched portion of the key and the found value, and
245 * return its return value. If there is no such prefix, return -1.
247 * The key is partially normalized: consecutive slashes are skipped.
249 * For example, consider the trie containing only [refs,
250 * refs/worktree] (both with values).
252 * | key | unmatched | val from node | return value |
253 * |-----------------|------------|---------------|--------------|
254 * | a | not called | n/a | -1 |
255 * | refs | \0 | refs | as per fn |
256 * | refs/ | / | refs | as per fn |
257 * | refs/w | /w | refs | as per fn |
258 * | refs/worktree | \0 | refs/worktree | as per fn |
259 * | refs/worktree/ | / | refs/worktree | as per fn |
260 * | refs/worktree/a | /a | refs/worktree | as per fn |
261 * |-----------------|------------|---------------|--------------|
264 static int trie_find(struct trie
*root
, const char *key
, match_fn fn
,
272 /* we have reached the end of the key */
273 if (root
->value
&& !root
->len
)
274 return fn(key
, root
->value
, baton
);
279 for (i
= 0; i
< root
->len
; i
++) {
280 /* Partial path normalization: skip consecutive slashes. */
281 if (key
[i
] == '/' && key
[i
+1] == '/') {
285 if (root
->contents
[i
] != key
[i
])
289 /* Matched the entire compressed section */
293 return fn(key
, root
->value
, baton
);
295 /* Partial path normalization: skip consecutive slashes */
296 while (key
[0] == '/' && key
[1] == '/')
299 child
= root
->children
[(unsigned char)*key
];
301 result
= trie_find(child
, key
+ 1, fn
, baton
);
305 if (result
>= 0 || (*key
!= '/' && *key
!= 0))
308 return fn(key
, root
->value
, baton
);
313 static struct trie common_trie
;
314 static int common_trie_done_setup
;
316 static void init_common_trie(void)
318 struct common_dir
*p
;
320 if (common_trie_done_setup
)
323 for (p
= common_list
; p
->dirname
; p
++)
324 add_to_trie(&common_trie
, p
->dirname
, p
);
326 common_trie_done_setup
= 1;
330 * Helper function for update_common_dir: returns 1 if the dir
333 static int check_common(const char *unmatched
, void *value
, void *baton
)
335 struct common_dir
*dir
= value
;
340 if (dir
->is_dir
&& (unmatched
[0] == 0 || unmatched
[0] == '/'))
341 return !dir
->exclude
;
343 if (!dir
->is_dir
&& unmatched
[0] == 0)
344 return !dir
->exclude
;
349 static void update_common_dir(struct strbuf
*buf
, int git_dir_len
,
350 const char *common_dir
)
352 char *base
= buf
->buf
+ git_dir_len
;
354 if (trie_find(&common_trie
, base
, check_common
, NULL
) > 0)
355 replace_dir(buf
, git_dir_len
, common_dir
);
358 void report_linked_checkout_garbage(void)
360 struct strbuf sb
= STRBUF_INIT
;
361 const struct common_dir
*p
;
364 if (!the_repository
->different_commondir
)
366 strbuf_addf(&sb
, "%s/", get_git_dir());
368 for (p
= common_list
; p
->dirname
; p
++) {
369 const char *path
= p
->dirname
;
370 if (p
->ignore_garbage
)
372 strbuf_setlen(&sb
, len
);
373 strbuf_addstr(&sb
, path
);
374 if (file_exists(sb
.buf
))
375 report_garbage(PACKDIR_FILE_GARBAGE
, sb
.buf
);
380 static void adjust_git_path(const struct repository
*repo
,
381 struct strbuf
*buf
, int git_dir_len
)
383 const char *base
= buf
->buf
+ git_dir_len
;
384 if (is_dir_file(base
, "info", "grafts"))
385 strbuf_splice(buf
, 0, buf
->len
,
386 repo
->graft_file
, strlen(repo
->graft_file
));
387 else if (!strcmp(base
, "index"))
388 strbuf_splice(buf
, 0, buf
->len
,
389 repo
->index_file
, strlen(repo
->index_file
));
390 else if (dir_prefix(base
, "objects"))
391 replace_dir(buf
, git_dir_len
+ 7, repo
->objects
->odb
->path
);
392 else if (git_hooks_path
&& dir_prefix(base
, "hooks"))
393 replace_dir(buf
, git_dir_len
+ 5, git_hooks_path
);
394 else if (repo
->different_commondir
)
395 update_common_dir(buf
, git_dir_len
, repo
->commondir
);
398 static void strbuf_worktree_gitdir(struct strbuf
*buf
,
399 const struct repository
*repo
,
400 const struct worktree
*wt
)
403 strbuf_addstr(buf
, repo
->gitdir
);
405 strbuf_addstr(buf
, repo
->commondir
);
407 strbuf_git_common_path(buf
, repo
, "worktrees/%s", wt
->id
);
410 static void do_git_path(const struct repository
*repo
,
411 const struct worktree
*wt
, struct strbuf
*buf
,
412 const char *fmt
, va_list args
)
415 strbuf_worktree_gitdir(buf
, repo
, wt
);
416 if (buf
->len
&& !is_dir_sep(buf
->buf
[buf
->len
- 1]))
417 strbuf_addch(buf
, '/');
418 gitdir_len
= buf
->len
;
419 strbuf_vaddf(buf
, fmt
, args
);
421 adjust_git_path(repo
, buf
, gitdir_len
);
422 strbuf_cleanup_path(buf
);
425 char *repo_git_path(const struct repository
*repo
,
426 const char *fmt
, ...)
428 struct strbuf path
= STRBUF_INIT
;
431 do_git_path(repo
, NULL
, &path
, fmt
, args
);
433 return strbuf_detach(&path
, NULL
);
436 void strbuf_repo_git_path(struct strbuf
*sb
,
437 const struct repository
*repo
,
438 const char *fmt
, ...)
442 do_git_path(repo
, NULL
, sb
, fmt
, args
);
446 char *git_path_buf(struct strbuf
*buf
, const char *fmt
, ...)
451 do_git_path(the_repository
, NULL
, buf
, fmt
, args
);
456 void strbuf_git_path(struct strbuf
*sb
, const char *fmt
, ...)
460 do_git_path(the_repository
, NULL
, sb
, fmt
, args
);
464 const char *git_path(const char *fmt
, ...)
466 struct strbuf
*pathname
= get_pathname();
469 do_git_path(the_repository
, NULL
, pathname
, fmt
, args
);
471 return pathname
->buf
;
474 char *git_pathdup(const char *fmt
, ...)
476 struct strbuf path
= STRBUF_INIT
;
479 do_git_path(the_repository
, NULL
, &path
, fmt
, args
);
481 return strbuf_detach(&path
, NULL
);
484 char *mkpathdup(const char *fmt
, ...)
486 struct strbuf sb
= STRBUF_INIT
;
489 strbuf_vaddf(&sb
, fmt
, args
);
491 strbuf_cleanup_path(&sb
);
492 return strbuf_detach(&sb
, NULL
);
495 const char *mkpath(const char *fmt
, ...)
498 struct strbuf
*pathname
= get_pathname();
500 strbuf_vaddf(pathname
, fmt
, args
);
502 return cleanup_path(pathname
->buf
);
505 const char *worktree_git_path(const struct worktree
*wt
, const char *fmt
, ...)
507 struct strbuf
*pathname
= get_pathname();
510 do_git_path(the_repository
, wt
, pathname
, fmt
, args
);
512 return pathname
->buf
;
515 static void do_worktree_path(const struct repository
*repo
,
517 const char *fmt
, va_list args
)
519 strbuf_addstr(buf
, repo
->worktree
);
520 if(buf
->len
&& !is_dir_sep(buf
->buf
[buf
->len
- 1]))
521 strbuf_addch(buf
, '/');
523 strbuf_vaddf(buf
, fmt
, args
);
524 strbuf_cleanup_path(buf
);
527 char *repo_worktree_path(const struct repository
*repo
, const char *fmt
, ...)
529 struct strbuf path
= STRBUF_INIT
;
536 do_worktree_path(repo
, &path
, fmt
, args
);
539 return strbuf_detach(&path
, NULL
);
542 void strbuf_repo_worktree_path(struct strbuf
*sb
,
543 const struct repository
*repo
,
544 const char *fmt
, ...)
552 do_worktree_path(repo
, sb
, fmt
, args
);
556 /* Returns 0 on success, negative on failure. */
557 static int do_submodule_path(struct strbuf
*buf
, const char *path
,
558 const char *fmt
, va_list args
)
560 struct strbuf git_submodule_common_dir
= STRBUF_INIT
;
561 struct strbuf git_submodule_dir
= STRBUF_INIT
;
564 ret
= submodule_to_gitdir(&git_submodule_dir
, path
);
568 strbuf_complete(&git_submodule_dir
, '/');
569 strbuf_addbuf(buf
, &git_submodule_dir
);
570 strbuf_vaddf(buf
, fmt
, args
);
572 if (get_common_dir_noenv(&git_submodule_common_dir
, git_submodule_dir
.buf
))
573 update_common_dir(buf
, git_submodule_dir
.len
, git_submodule_common_dir
.buf
);
575 strbuf_cleanup_path(buf
);
578 strbuf_release(&git_submodule_dir
);
579 strbuf_release(&git_submodule_common_dir
);
583 char *git_pathdup_submodule(const char *path
, const char *fmt
, ...)
587 struct strbuf buf
= STRBUF_INIT
;
589 err
= do_submodule_path(&buf
, path
, fmt
, args
);
592 strbuf_release(&buf
);
595 return strbuf_detach(&buf
, NULL
);
598 int strbuf_git_path_submodule(struct strbuf
*buf
, const char *path
,
599 const char *fmt
, ...)
604 err
= do_submodule_path(buf
, path
, fmt
, args
);
610 static void do_git_common_path(const struct repository
*repo
,
615 strbuf_addstr(buf
, repo
->commondir
);
616 if (buf
->len
&& !is_dir_sep(buf
->buf
[buf
->len
- 1]))
617 strbuf_addch(buf
, '/');
618 strbuf_vaddf(buf
, fmt
, args
);
619 strbuf_cleanup_path(buf
);
622 const char *git_common_path(const char *fmt
, ...)
624 struct strbuf
*pathname
= get_pathname();
627 do_git_common_path(the_repository
, pathname
, fmt
, args
);
629 return pathname
->buf
;
632 void strbuf_git_common_path(struct strbuf
*sb
,
633 const struct repository
*repo
,
634 const char *fmt
, ...)
638 do_git_common_path(repo
, sb
, fmt
, args
);
642 int validate_headref(const char *path
)
647 struct object_id oid
;
651 if (lstat(path
, &st
) < 0)
654 /* Make sure it is a "refs/.." symlink */
655 if (S_ISLNK(st
.st_mode
)) {
656 len
= readlink(path
, buffer
, sizeof(buffer
)-1);
657 if (len
>= 5 && !memcmp("refs/", buffer
, 5))
663 * Anything else, just open it and try to see if it is a symbolic ref.
665 fd
= open(path
, O_RDONLY
);
668 len
= read_in_full(fd
, buffer
, sizeof(buffer
)-1);
676 * Is it a symbolic ref?
678 if (skip_prefix(buffer
, "ref:", &refname
)) {
679 while (isspace(*refname
))
681 if (starts_with(refname
, "refs/"))
686 * Is this a detached HEAD?
688 if (!get_oid_hex(buffer
, &oid
))
694 static struct passwd
*getpw_str(const char *username
, size_t len
)
697 char *username_z
= xmemdupz(username
, len
);
698 pw
= getpwnam(username_z
);
704 * Return a string with ~ and ~user expanded via getpw*. If buf != NULL,
705 * then it is a newly allocated string. Returns NULL on getpw failure or
708 * If real_home is true, real_path($HOME) is used in the expansion.
710 char *expand_user_path(const char *path
, int real_home
)
712 struct strbuf user_path
= STRBUF_INIT
;
713 const char *to_copy
= path
;
717 if (path
[0] == '~') {
718 const char *first_slash
= strchrnul(path
, '/');
719 const char *username
= path
+ 1;
720 size_t username_len
= first_slash
- username
;
721 if (username_len
== 0) {
722 const char *home
= getenv("HOME");
726 strbuf_add_real_path(&user_path
, home
);
728 strbuf_addstr(&user_path
, home
);
729 #ifdef GIT_WINDOWS_NATIVE
730 convert_slashes(user_path
.buf
);
733 struct passwd
*pw
= getpw_str(username
, username_len
);
736 strbuf_addstr(&user_path
, pw
->pw_dir
);
738 to_copy
= first_slash
;
740 strbuf_addstr(&user_path
, to_copy
);
741 return strbuf_detach(&user_path
, NULL
);
743 strbuf_release(&user_path
);
748 * First, one directory to try is determined by the following algorithm.
750 * (0) If "strict" is given, the path is used as given and no DWIM is
752 * (1) "~/path" to mean path under the running user's home directory;
753 * (2) "~user/path" to mean path under named user's home directory;
754 * (3) "relative/path" to mean cwd relative directory; or
755 * (4) "/absolute/path" to mean absolute directory.
757 * Unless "strict" is given, we check "%s/.git", "%s", "%s.git/.git", "%s.git"
758 * in this order. We select the first one that is a valid git repository, and
759 * chdir() to it. If none match, or we fail to chdir, we return NULL.
761 * If all goes well, we return the directory we used to chdir() (but
762 * before ~user is expanded), avoiding getcwd() resolving symbolic
763 * links. User relative paths are also returned as they are given,
764 * except DWIM suffixing.
766 const char *enter_repo(const char *path
, int strict
)
768 static struct strbuf validated_path
= STRBUF_INIT
;
769 static struct strbuf used_path
= STRBUF_INIT
;
775 static const char *suffix
[] = {
776 "/.git", "", ".git/.git", ".git", NULL
,
779 int len
= strlen(path
);
781 while ((1 < len
) && (path
[len
-1] == '/'))
785 * We can handle arbitrary-sized buffers, but this remains as a
786 * sanity check on untrusted input.
791 strbuf_reset(&used_path
);
792 strbuf_reset(&validated_path
);
793 strbuf_add(&used_path
, path
, len
);
794 strbuf_add(&validated_path
, path
, len
);
796 if (used_path
.buf
[0] == '~') {
797 char *newpath
= expand_user_path(used_path
.buf
, 0);
800 strbuf_attach(&used_path
, newpath
, strlen(newpath
),
803 for (i
= 0; suffix
[i
]; i
++) {
805 size_t baselen
= used_path
.len
;
806 strbuf_addstr(&used_path
, suffix
[i
]);
807 if (!stat(used_path
.buf
, &st
) &&
808 (S_ISREG(st
.st_mode
) ||
809 (S_ISDIR(st
.st_mode
) && is_git_directory(used_path
.buf
)))) {
810 strbuf_addstr(&validated_path
, suffix
[i
]);
813 strbuf_setlen(&used_path
, baselen
);
817 gitfile
= read_gitfile(used_path
.buf
);
819 strbuf_reset(&used_path
);
820 strbuf_addstr(&used_path
, gitfile
);
822 if (chdir(used_path
.buf
))
824 path
= validated_path
.buf
;
827 const char *gitfile
= read_gitfile(path
);
834 if (is_git_directory(".")) {
836 check_repository_format();
843 static int calc_shared_perm(int mode
)
847 if (get_shared_repository() < 0)
848 tweak
= -get_shared_repository();
850 tweak
= get_shared_repository();
852 if (!(mode
& S_IWUSR
))
855 /* Copy read bits to execute bits */
856 tweak
|= (tweak
& 0444) >> 2;
857 if (get_shared_repository() < 0)
858 mode
= (mode
& ~0777) | tweak
;
866 int adjust_shared_perm(const char *path
)
868 int old_mode
, new_mode
;
870 if (!get_shared_repository())
872 if (get_st_mode_bits(path
, &old_mode
) < 0)
875 new_mode
= calc_shared_perm(old_mode
);
876 if (S_ISDIR(old_mode
)) {
877 /* Copy read bits to execute bits */
878 new_mode
|= (new_mode
& 0444) >> 2;
879 new_mode
|= FORCE_DIR_SET_GID
;
882 if (((old_mode
^ new_mode
) & ~S_IFMT
) &&
883 chmod(path
, (new_mode
& ~S_IFMT
)) < 0)
888 void safe_create_dir(const char *dir
, int share
)
890 if (mkdir(dir
, 0777) < 0) {
891 if (errno
!= EEXIST
) {
896 else if (share
&& adjust_shared_perm(dir
))
897 die(_("Could not make %s writable by group"), dir
);
900 static int have_same_root(const char *path1
, const char *path2
)
902 int is_abs1
, is_abs2
;
904 is_abs1
= is_absolute_path(path1
);
905 is_abs2
= is_absolute_path(path2
);
906 return (is_abs1
&& is_abs2
&& tolower(path1
[0]) == tolower(path2
[0])) ||
907 (!is_abs1
&& !is_abs2
);
911 * Give path as relative to prefix.
913 * The strbuf may or may not be used, so do not assume it contains the
916 const char *relative_path(const char *in
, const char *prefix
,
919 int in_len
= in
? strlen(in
) : 0;
920 int prefix_len
= prefix
? strlen(prefix
) : 0;
927 else if (!prefix_len
)
930 if (have_same_root(in
, prefix
))
931 /* bypass dos_drive, for "c:" is identical to "C:" */
932 i
= j
= has_dos_drive_prefix(in
);
937 while (i
< prefix_len
&& j
< in_len
&& prefix
[i
] == in
[j
]) {
938 if (is_dir_sep(prefix
[i
])) {
939 while (is_dir_sep(prefix
[i
]))
941 while (is_dir_sep(in
[j
]))
952 /* "prefix" seems like prefix of "in" */
955 * but "/foo" is not a prefix of "/foobar"
956 * (i.e. prefix not end with '/')
958 prefix_off
< prefix_len
) {
960 /* in="/a/b", prefix="/a/b" */
962 } else if (is_dir_sep(in
[j
])) {
963 /* in="/a/b/c", prefix="/a/b" */
964 while (is_dir_sep(in
[j
]))
968 /* in="/a/bbb/c", prefix="/a/b" */
972 /* "in" is short than "prefix" */
974 /* "in" not end with '/' */
976 if (is_dir_sep(prefix
[i
])) {
977 /* in="/a/b", prefix="/a/b/c/" */
978 while (is_dir_sep(prefix
[i
]))
986 if (i
>= prefix_len
) {
994 strbuf_grow(sb
, in_len
);
996 while (i
< prefix_len
) {
997 if (is_dir_sep(prefix
[i
])) {
998 strbuf_addstr(sb
, "../");
999 while (is_dir_sep(prefix
[i
]))
1005 if (!is_dir_sep(prefix
[prefix_len
- 1]))
1006 strbuf_addstr(sb
, "../");
1008 strbuf_addstr(sb
, in
);
1014 * A simpler implementation of relative_path
1016 * Get relative path by removing "prefix" from "in". This function
1017 * first appears in v1.5.6-1-g044bbbc, and makes git_dir shorter
1018 * to increase performance when traversing the path to work_tree.
1020 const char *remove_leading_path(const char *in
, const char *prefix
)
1022 static struct strbuf buf
= STRBUF_INIT
;
1025 if (!prefix
|| !prefix
[0])
1028 if (is_dir_sep(prefix
[i
])) {
1029 if (!is_dir_sep(in
[j
]))
1031 while (is_dir_sep(prefix
[i
]))
1033 while (is_dir_sep(in
[j
]))
1036 } else if (in
[j
] != prefix
[i
]) {
1043 /* "/foo" is a prefix of "/foo" */
1045 /* "/foo" is not a prefix of "/foobar" */
1046 !is_dir_sep(prefix
[i
-1]) && !is_dir_sep(in
[j
])
1049 while (is_dir_sep(in
[j
]))
1054 strbuf_addstr(&buf
, ".");
1056 strbuf_addstr(&buf
, in
+ j
);
1061 * It is okay if dst == src, but they should not overlap otherwise.
1063 * Performs the following normalizations on src, storing the result in dst:
1064 * - Ensures that components are separated by '/' (Windows only)
1065 * - Squashes sequences of '/' except "//server/share" on Windows
1066 * - Removes "." components.
1067 * - Removes ".." components, and the components the precede them.
1068 * Returns failure (non-zero) if a ".." component appears as first path
1069 * component anytime during the normalization. Otherwise, returns success (0).
1071 * Note that this function is purely textual. It does not follow symlinks,
1072 * verify the existence of the path, or make any system calls.
1074 * prefix_len != NULL is for a specific case of prefix_pathspec():
1075 * assume that src == dst and src[0..prefix_len-1] is already
1076 * normalized, any time "../" eats up to the prefix_len part,
1077 * prefix_len is reduced. In the end prefix_len is the remaining
1078 * prefix that has not been overridden by user pathspec.
1080 * NEEDSWORK: This function doesn't perform normalization w.r.t. trailing '/'.
1081 * For everything but the root folder itself, the normalized path should not
1082 * end with a '/', then the callers need to be fixed up accordingly.
1085 int normalize_path_copy_len(char *dst
, const char *src
, int *prefix_len
)
1091 * Copy initial part of absolute path: "/", "C:/", "//server/share/".
1093 end
= src
+ offset_1st_component(src
);
1102 while (is_dir_sep(*src
))
1109 * A path component that begins with . could be
1111 * (1) "." and ends -- ignore and terminate.
1112 * (2) "./" -- ignore them, eat slash and continue.
1113 * (3) ".." and ends -- strip one and terminate.
1114 * (4) "../" -- strip one, eat slash and continue.
1120 } else if (is_dir_sep(src
[1])) {
1123 while (is_dir_sep(*src
))
1126 } else if (src
[1] == '.') {
1131 } else if (is_dir_sep(src
[2])) {
1134 while (is_dir_sep(*src
))
1141 /* copy up to the next '/', and eat all '/' */
1142 while ((c
= *src
++) != '\0' && !is_dir_sep(c
))
1144 if (is_dir_sep(c
)) {
1146 while (is_dir_sep(c
))
1155 * dst0..dst is prefix portion, and dst[-1] is '/';
1158 dst
--; /* go to trailing '/' */
1161 /* Windows: dst[-1] cannot be backslash anymore */
1162 while (dst0
< dst
&& dst
[-1] != '/')
1164 if (prefix_len
&& *prefix_len
> dst
- dst0
)
1165 *prefix_len
= dst
- dst0
;
1171 int normalize_path_copy(char *dst
, const char *src
)
1173 return normalize_path_copy_len(dst
, src
, NULL
);
1177 * path = Canonical absolute path
1178 * prefixes = string_list containing normalized, absolute paths without
1179 * trailing slashes (except for the root directory, which is denoted by "/").
1181 * Determines, for each path in prefixes, whether the "prefix"
1182 * is an ancestor directory of path. Returns the length of the longest
1183 * ancestor directory, excluding any trailing slashes, or -1 if no prefix
1184 * is an ancestor. (Note that this means 0 is returned if prefixes is
1185 * ["/"].) "/foo" is not considered an ancestor of "/foobar". Directories
1186 * are not considered to be their own ancestors. path must be in a
1187 * canonical form: empty components, or "." or ".." components are not
1190 int longest_ancestor_length(const char *path
, struct string_list
*prefixes
)
1192 int i
, max_len
= -1;
1194 if (!strcmp(path
, "/"))
1197 for (i
= 0; i
< prefixes
->nr
; i
++) {
1198 const char *ceil
= prefixes
->items
[i
].string
;
1199 int len
= strlen(ceil
);
1201 if (len
== 1 && ceil
[0] == '/')
1202 len
= 0; /* root matches anything, with length 0 */
1203 else if (!strncmp(path
, ceil
, len
) && path
[len
] == '/')
1204 ; /* match of length len */
1206 continue; /* no match */
1215 /* strip arbitrary amount of directory separators at end of path */
1216 static inline int chomp_trailing_dir_sep(const char *path
, int len
)
1218 while (len
&& is_dir_sep(path
[len
- 1]))
1224 * If path ends with suffix (complete path components), returns the offset of
1225 * the last character in the path before the suffix (sans trailing directory
1226 * separators), and -1 otherwise.
1228 static ssize_t
stripped_path_suffix_offset(const char *path
, const char *suffix
)
1230 int path_len
= strlen(path
), suffix_len
= strlen(suffix
);
1232 while (suffix_len
) {
1236 if (is_dir_sep(path
[path_len
- 1])) {
1237 if (!is_dir_sep(suffix
[suffix_len
- 1]))
1239 path_len
= chomp_trailing_dir_sep(path
, path_len
);
1240 suffix_len
= chomp_trailing_dir_sep(suffix
, suffix_len
);
1242 else if (path
[--path_len
] != suffix
[--suffix_len
])
1246 if (path_len
&& !is_dir_sep(path
[path_len
- 1]))
1248 return chomp_trailing_dir_sep(path
, path_len
);
1252 * Returns true if the path ends with components, considering only complete path
1253 * components, and false otherwise.
1255 int ends_with_path_components(const char *path
, const char *components
)
1257 return stripped_path_suffix_offset(path
, components
) != -1;
1261 * If path ends with suffix (complete path components), returns the
1262 * part before suffix (sans trailing directory separators).
1263 * Otherwise returns NULL.
1265 char *strip_path_suffix(const char *path
, const char *suffix
)
1267 ssize_t offset
= stripped_path_suffix_offset(path
, suffix
);
1269 return offset
== -1 ? NULL
: xstrndup(path
, offset
);
1272 int daemon_avoid_alias(const char *p
)
1277 * This resurrects the belts and suspenders paranoia check by HPA
1278 * done in <435560F7.4080006@zytor.com> thread, now enter_repo()
1279 * does not do getcwd() based path canonicalization.
1281 * sl becomes true immediately after seeing '/' and continues to
1282 * be true as long as dots continue after that without intervening
1283 * non-dot character.
1285 if (!p
|| (*p
!= '/' && *p
!= '~'))
1295 else if (ch
== '/') {
1297 /* reject //, /./ and /../ */
1302 if (0 < ndot
&& ndot
< 3)
1303 /* reject /.$ and /..$ */
1312 else if (ch
== '/') {
1319 static int only_spaces_and_periods(const char *path
, size_t len
, size_t skip
)
1327 if (c
!= ' ' && c
!= '.')
1333 int is_ntfs_dotgit(const char *name
)
1337 for (len
= 0; ; len
++)
1338 if (!name
[len
] || name
[len
] == '\\' || is_dir_sep(name
[len
])) {
1339 if (only_spaces_and_periods(name
, len
, 4) &&
1340 !strncasecmp(name
, ".git", 4))
1342 if (only_spaces_and_periods(name
, len
, 5) &&
1343 !strncasecmp(name
, "git~1", 5))
1345 if (name
[len
] != '\\')
1352 static int is_ntfs_dot_generic(const char *name
,
1353 const char *dotgit_name
,
1355 const char *dotgit_ntfs_shortname_prefix
)
1360 if ((name
[0] == '.' && !strncasecmp(name
+ 1, dotgit_name
, len
))) {
1362 only_spaces_and_periods
:
1367 if (c
!= ' ' && c
!= '.')
1373 * Is it a regular NTFS short name, i.e. shortened to 6 characters,
1374 * followed by ~1, ... ~4?
1376 if (!strncasecmp(name
, dotgit_name
, 6) && name
[6] == '~' &&
1377 name
[7] >= '1' && name
[7] <= '4') {
1379 goto only_spaces_and_periods
;
1383 * Is it a fall-back NTFS short name (for details, see
1384 * https://en.wikipedia.org/wiki/8.3_filename?
1386 for (i
= 0, saw_tilde
= 0; i
< 8; i
++)
1387 if (name
[i
] == '\0')
1389 else if (saw_tilde
) {
1390 if (name
[i
] < '0' || name
[i
] > '9')
1392 } else if (name
[i
] == '~') {
1393 if (name
[++i
] < '1' || name
[i
] > '9')
1398 else if (name
[i
] & 0x80) {
1400 * We know our needles contain only ASCII, so we clamp
1401 * here to make the results of tolower() sane.
1404 } else if (tolower(name
[i
]) != dotgit_ntfs_shortname_prefix
[i
])
1407 goto only_spaces_and_periods
;
1411 * Inline helper to make sure compiler resolves strlen() on literals at
1414 static inline int is_ntfs_dot_str(const char *name
, const char *dotgit_name
,
1415 const char *dotgit_ntfs_shortname_prefix
)
1417 return is_ntfs_dot_generic(name
, dotgit_name
, strlen(dotgit_name
),
1418 dotgit_ntfs_shortname_prefix
);
1421 int is_ntfs_dotgitmodules(const char *name
)
1423 return is_ntfs_dot_str(name
, "gitmodules", "gi7eba");
1426 int is_ntfs_dotgitignore(const char *name
)
1428 return is_ntfs_dot_str(name
, "gitignore", "gi250a");
1431 int is_ntfs_dotgitattributes(const char *name
)
1433 return is_ntfs_dot_str(name
, "gitattributes", "gi7d29");
1436 int looks_like_command_line_option(const char *str
)
1438 return str
&& str
[0] == '-';
1441 char *xdg_config_home(const char *filename
)
1443 const char *home
, *config_home
;
1446 config_home
= getenv("XDG_CONFIG_HOME");
1447 if (config_home
&& *config_home
)
1448 return mkpathdup("%s/git/%s", config_home
, filename
);
1450 home
= getenv("HOME");
1452 return mkpathdup("%s/.config/git/%s", home
, filename
);
1456 char *xdg_cache_home(const char *filename
)
1458 const char *home
, *cache_home
;
1461 cache_home
= getenv("XDG_CACHE_HOME");
1462 if (cache_home
&& *cache_home
)
1463 return mkpathdup("%s/git/%s", cache_home
, filename
);
1465 home
= getenv("HOME");
1467 return mkpathdup("%s/.cache/git/%s", home
, filename
);
1471 REPO_GIT_PATH_FUNC(cherry_pick_head
, "CHERRY_PICK_HEAD")
1472 REPO_GIT_PATH_FUNC(revert_head
, "REVERT_HEAD")
1473 REPO_GIT_PATH_FUNC(squash_msg
, "SQUASH_MSG")
1474 REPO_GIT_PATH_FUNC(merge_msg
, "MERGE_MSG")
1475 REPO_GIT_PATH_FUNC(merge_rr
, "MERGE_RR")
1476 REPO_GIT_PATH_FUNC(merge_mode
, "MERGE_MODE")
1477 REPO_GIT_PATH_FUNC(merge_head
, "MERGE_HEAD")
1478 REPO_GIT_PATH_FUNC(fetch_head
, "FETCH_HEAD")
1479 REPO_GIT_PATH_FUNC(shallow
, "shallow")