2 * Utilities for paths and pathnames
6 #include "string-list.h"
9 static int get_st_mode_bits(const char *path
, int *mode
)
12 if (lstat(path
, &st
) < 0)
18 static char bad_path
[] = "/bad-path/";
20 static struct strbuf
*get_pathname(void)
22 static struct strbuf pathname_array
[4] = {
23 STRBUF_INIT
, STRBUF_INIT
, STRBUF_INIT
, STRBUF_INIT
26 struct strbuf
*sb
= &pathname_array
[3 & ++index
];
31 static char *cleanup_path(char *path
)
34 if (!memcmp(path
, "./", 2)) {
42 static void strbuf_cleanup_path(struct strbuf
*sb
)
44 char *path
= cleanup_path(sb
->buf
);
46 strbuf_remove(sb
, 0, path
- sb
->buf
);
49 char *mksnpath(char *buf
, size_t n
, const char *fmt
, ...)
55 len
= vsnprintf(buf
, n
, fmt
, args
);
58 strlcpy(buf
, bad_path
, n
);
61 return cleanup_path(buf
);
64 static int dir_prefix(const char *buf
, const char *dir
)
66 int len
= strlen(dir
);
67 return !strncmp(buf
, dir
, len
) &&
68 (is_dir_sep(buf
[len
]) || buf
[len
] == '\0');
71 /* $buf =~ m|$dir/+$file| but without regex */
72 static int is_dir_file(const char *buf
, const char *dir
, const char *file
)
74 int len
= strlen(dir
);
75 if (strncmp(buf
, dir
, len
) || !is_dir_sep(buf
[len
]))
77 while (is_dir_sep(buf
[len
]))
79 return !strcmp(buf
+ len
, file
);
82 static void replace_dir(struct strbuf
*buf
, int len
, const char *newdir
)
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]);
88 len
--; /* keep one char, to be replaced with '/' */
89 strbuf_splice(buf
, 0, len
, newdir
, newlen
);
91 buf
->buf
[newlen
] = '/';
94 static const char *common_list
[] = {
95 "/branches", "/hooks", "/info", "!/logs", "/lost-found",
96 "/objects", "/refs", "/remotes", "/worktrees", "/rr-cache", "/svn",
97 "config", "!gc.pid", "packed-refs", "shallow",
101 static void update_common_dir(struct strbuf
*buf
, int git_dir_len
)
103 char *base
= buf
->buf
+ git_dir_len
;
106 if (is_dir_file(base
, "logs", "HEAD") ||
107 is_dir_file(base
, "info", "sparse-checkout"))
108 return; /* keep this in $GIT_DIR */
109 for (p
= common_list
; *p
; p
++) {
110 const char *path
= *p
;
118 if (is_dir
&& dir_prefix(base
, path
)) {
119 replace_dir(buf
, git_dir_len
, get_git_common_dir());
122 if (!is_dir
&& !strcmp(base
, path
)) {
123 replace_dir(buf
, git_dir_len
, get_git_common_dir());
129 void report_linked_checkout_garbage(void)
131 struct strbuf sb
= STRBUF_INIT
;
135 if (!git_common_dir_env
)
137 strbuf_addf(&sb
, "%s/", get_git_dir());
139 for (p
= common_list
; *p
; p
++) {
140 const char *path
= *p
;
143 strbuf_setlen(&sb
, len
);
144 strbuf_addstr(&sb
, path
);
145 if (file_exists(sb
.buf
))
146 report_garbage("unused in linked checkout", sb
.buf
);
151 static void adjust_git_path(struct strbuf
*buf
, int git_dir_len
)
153 const char *base
= buf
->buf
+ git_dir_len
;
154 if (git_graft_env
&& is_dir_file(base
, "info", "grafts"))
155 strbuf_splice(buf
, 0, buf
->len
,
156 get_graft_file(), strlen(get_graft_file()));
157 else if (git_index_env
&& !strcmp(base
, "index"))
158 strbuf_splice(buf
, 0, buf
->len
,
159 get_index_file(), strlen(get_index_file()));
160 else if (git_db_env
&& dir_prefix(base
, "objects"))
161 replace_dir(buf
, git_dir_len
+ 7, get_object_directory());
162 else if (git_common_dir_env
)
163 update_common_dir(buf
, git_dir_len
);
166 static void do_git_path(struct strbuf
*buf
, const char *fmt
, va_list args
)
169 strbuf_addstr(buf
, get_git_dir());
170 if (buf
->len
&& !is_dir_sep(buf
->buf
[buf
->len
- 1]))
171 strbuf_addch(buf
, '/');
172 gitdir_len
= buf
->len
;
173 strbuf_vaddf(buf
, fmt
, args
);
174 adjust_git_path(buf
, gitdir_len
);
175 strbuf_cleanup_path(buf
);
178 void strbuf_git_path(struct strbuf
*sb
, const char *fmt
, ...)
182 do_git_path(sb
, fmt
, args
);
186 const char *git_path(const char *fmt
, ...)
188 struct strbuf
*pathname
= get_pathname();
191 do_git_path(pathname
, fmt
, args
);
193 return pathname
->buf
;
196 char *git_pathdup(const char *fmt
, ...)
198 struct strbuf path
= STRBUF_INIT
;
201 do_git_path(&path
, fmt
, args
);
203 return strbuf_detach(&path
, NULL
);
206 char *mkpathdup(const char *fmt
, ...)
208 struct strbuf sb
= STRBUF_INIT
;
211 strbuf_vaddf(&sb
, fmt
, args
);
213 strbuf_cleanup_path(&sb
);
214 return strbuf_detach(&sb
, NULL
);
217 const char *mkpath(const char *fmt
, ...)
220 struct strbuf
*pathname
= get_pathname();
222 strbuf_vaddf(pathname
, fmt
, args
);
224 return cleanup_path(pathname
->buf
);
227 void home_config_paths(char **global
, char **xdg
, char *file
)
229 char *xdg_home
= getenv("XDG_CONFIG_HOME");
230 char *home
= getenv("HOME");
231 char *to_free
= NULL
;
238 to_free
= mkpathdup("%s/.config", home
);
242 *global
= mkpathdup("%s/.gitconfig", home
);
249 *xdg
= mkpathdup("%s/git/%s", xdg_home
, file
);
255 const char *git_path_submodule(const char *path
, const char *fmt
, ...)
257 struct strbuf
*buf
= get_pathname();
261 strbuf_addstr(buf
, path
);
262 if (buf
->len
&& buf
->buf
[buf
->len
- 1] != '/')
263 strbuf_addch(buf
, '/');
264 strbuf_addstr(buf
, ".git");
266 git_dir
= read_gitfile(buf
->buf
);
269 strbuf_addstr(buf
, git_dir
);
271 strbuf_addch(buf
, '/');
274 strbuf_vaddf(buf
, fmt
, args
);
276 strbuf_cleanup_path(buf
);
280 int validate_headref(const char *path
)
283 char *buf
, buffer
[256];
284 unsigned char sha1
[20];
288 if (lstat(path
, &st
) < 0)
291 /* Make sure it is a "refs/.." symlink */
292 if (S_ISLNK(st
.st_mode
)) {
293 len
= readlink(path
, buffer
, sizeof(buffer
)-1);
294 if (len
>= 5 && !memcmp("refs/", buffer
, 5))
300 * Anything else, just open it and try to see if it is a symbolic ref.
302 fd
= open(path
, O_RDONLY
);
305 len
= read_in_full(fd
, buffer
, sizeof(buffer
)-1);
309 * Is it a symbolic ref?
313 if (!memcmp("ref:", buffer
, 4)) {
316 while (len
&& isspace(*buf
))
318 if (len
>= 5 && !memcmp("refs/", buf
, 5))
323 * Is this a detached HEAD?
325 if (!get_sha1_hex(buffer
, sha1
))
331 static struct passwd
*getpw_str(const char *username
, size_t len
)
334 char *username_z
= xmemdupz(username
, len
);
335 pw
= getpwnam(username_z
);
341 * Return a string with ~ and ~user expanded via getpw*. If buf != NULL,
342 * then it is a newly allocated string. Returns NULL on getpw failure or
345 char *expand_user_path(const char *path
)
347 struct strbuf user_path
= STRBUF_INIT
;
348 const char *to_copy
= path
;
352 if (path
[0] == '~') {
353 const char *first_slash
= strchrnul(path
, '/');
354 const char *username
= path
+ 1;
355 size_t username_len
= first_slash
- username
;
356 if (username_len
== 0) {
357 const char *home
= getenv("HOME");
360 strbuf_addstr(&user_path
, home
);
362 struct passwd
*pw
= getpw_str(username
, username_len
);
365 strbuf_addstr(&user_path
, pw
->pw_dir
);
367 to_copy
= first_slash
;
369 strbuf_addstr(&user_path
, to_copy
);
370 return strbuf_detach(&user_path
, NULL
);
372 strbuf_release(&user_path
);
377 * First, one directory to try is determined by the following algorithm.
379 * (0) If "strict" is given, the path is used as given and no DWIM is
381 * (1) "~/path" to mean path under the running user's home directory;
382 * (2) "~user/path" to mean path under named user's home directory;
383 * (3) "relative/path" to mean cwd relative directory; or
384 * (4) "/absolute/path" to mean absolute directory.
386 * Unless "strict" is given, we check "%s/.git", "%s", "%s.git/.git", "%s.git"
387 * in this order. We select the first one that is a valid git repository, and
388 * chdir() to it. If none match, or we fail to chdir, we return NULL.
390 * If all goes well, we return the directory we used to chdir() (but
391 * before ~user is expanded), avoiding getcwd() resolving symbolic
392 * links. User relative paths are also returned as they are given,
393 * except DWIM suffixing.
395 const char *enter_repo(const char *path
, int strict
)
397 static char used_path
[PATH_MAX
];
398 static char validated_path
[PATH_MAX
];
404 static const char *suffix
[] = {
405 "/.git", "", ".git/.git", ".git", NULL
,
408 int len
= strlen(path
);
410 while ((1 < len
) && (path
[len
-1] == '/'))
415 strncpy(used_path
, path
, len
); used_path
[len
] = 0 ;
416 strcpy(validated_path
, used_path
);
418 if (used_path
[0] == '~') {
419 char *newpath
= expand_user_path(used_path
);
420 if (!newpath
|| (PATH_MAX
- 10 < strlen(newpath
))) {
425 * Copy back into the static buffer. A pity
426 * since newpath was not bounded, but other
427 * branches of the if are limited by PATH_MAX
430 strcpy(used_path
, newpath
); free(newpath
);
432 else if (PATH_MAX
- 10 < len
)
434 len
= strlen(used_path
);
435 for (i
= 0; suffix
[i
]; i
++) {
437 strcpy(used_path
+ len
, suffix
[i
]);
438 if (!stat(used_path
, &st
) &&
439 (S_ISREG(st
.st_mode
) ||
440 (S_ISDIR(st
.st_mode
) && is_git_directory(used_path
)))) {
441 strcat(validated_path
, suffix
[i
]);
447 gitfile
= read_gitfile(used_path
) ;
449 strcpy(used_path
, gitfile
);
450 if (chdir(used_path
))
452 path
= validated_path
;
454 else if (chdir(path
))
457 if (access("objects", X_OK
) == 0 && access("refs", X_OK
) == 0 &&
458 validate_headref("HEAD") == 0) {
460 check_repository_format();
467 static int calc_shared_perm(int mode
)
471 if (shared_repository
< 0)
472 tweak
= -shared_repository
;
474 tweak
= shared_repository
;
476 if (!(mode
& S_IWUSR
))
479 /* Copy read bits to execute bits */
480 tweak
|= (tweak
& 0444) >> 2;
481 if (shared_repository
< 0)
482 mode
= (mode
& ~0777) | tweak
;
490 int adjust_shared_perm(const char *path
)
492 int old_mode
, new_mode
;
494 if (!shared_repository
)
496 if (get_st_mode_bits(path
, &old_mode
) < 0)
499 new_mode
= calc_shared_perm(old_mode
);
500 if (S_ISDIR(old_mode
)) {
501 /* Copy read bits to execute bits */
502 new_mode
|= (new_mode
& 0444) >> 2;
503 new_mode
|= FORCE_DIR_SET_GID
;
506 if (((old_mode
^ new_mode
) & ~S_IFMT
) &&
507 chmod(path
, (new_mode
& ~S_IFMT
)) < 0)
512 static int have_same_root(const char *path1
, const char *path2
)
514 int is_abs1
, is_abs2
;
516 is_abs1
= is_absolute_path(path1
);
517 is_abs2
= is_absolute_path(path2
);
518 return (is_abs1
&& is_abs2
&& tolower(path1
[0]) == tolower(path2
[0])) ||
519 (!is_abs1
&& !is_abs2
);
523 * Give path as relative to prefix.
525 * The strbuf may or may not be used, so do not assume it contains the
528 const char *relative_path(const char *in
, const char *prefix
,
531 int in_len
= in
? strlen(in
) : 0;
532 int prefix_len
= prefix
? strlen(prefix
) : 0;
539 else if (!prefix_len
)
542 if (have_same_root(in
, prefix
)) {
543 /* bypass dos_drive, for "c:" is identical to "C:" */
544 if (has_dos_drive_prefix(in
)) {
552 while (i
< prefix_len
&& j
< in_len
&& prefix
[i
] == in
[j
]) {
553 if (is_dir_sep(prefix
[i
])) {
554 while (is_dir_sep(prefix
[i
]))
556 while (is_dir_sep(in
[j
]))
567 /* "prefix" seems like prefix of "in" */
570 * but "/foo" is not a prefix of "/foobar"
571 * (i.e. prefix not end with '/')
573 prefix_off
< prefix_len
) {
575 /* in="/a/b", prefix="/a/b" */
577 } else if (is_dir_sep(in
[j
])) {
578 /* in="/a/b/c", prefix="/a/b" */
579 while (is_dir_sep(in
[j
]))
583 /* in="/a/bbb/c", prefix="/a/b" */
587 /* "in" is short than "prefix" */
589 /* "in" not end with '/' */
591 if (is_dir_sep(prefix
[i
])) {
592 /* in="/a/b", prefix="/a/b/c/" */
593 while (is_dir_sep(prefix
[i
]))
601 if (i
>= prefix_len
) {
609 strbuf_grow(sb
, in_len
);
611 while (i
< prefix_len
) {
612 if (is_dir_sep(prefix
[i
])) {
613 strbuf_addstr(sb
, "../");
614 while (is_dir_sep(prefix
[i
]))
620 if (!is_dir_sep(prefix
[prefix_len
- 1]))
621 strbuf_addstr(sb
, "../");
623 strbuf_addstr(sb
, in
);
629 * A simpler implementation of relative_path
631 * Get relative path by removing "prefix" from "in". This function
632 * first appears in v1.5.6-1-g044bbbc, and makes git_dir shorter
633 * to increase performance when traversing the path to work_tree.
635 const char *remove_leading_path(const char *in
, const char *prefix
)
637 static char buf
[PATH_MAX
+ 1];
640 if (!prefix
|| !prefix
[0])
643 if (is_dir_sep(prefix
[i
])) {
644 if (!is_dir_sep(in
[j
]))
646 while (is_dir_sep(prefix
[i
]))
648 while (is_dir_sep(in
[j
]))
651 } else if (in
[j
] != prefix
[i
]) {
658 /* "/foo" is a prefix of "/foo" */
660 /* "/foo" is not a prefix of "/foobar" */
661 !is_dir_sep(prefix
[i
-1]) && !is_dir_sep(in
[j
])
664 while (is_dir_sep(in
[j
]))
674 * It is okay if dst == src, but they should not overlap otherwise.
676 * Performs the following normalizations on src, storing the result in dst:
677 * - Ensures that components are separated by '/' (Windows only)
678 * - Squashes sequences of '/'.
679 * - Removes "." components.
680 * - Removes ".." components, and the components the precede them.
681 * Returns failure (non-zero) if a ".." component appears as first path
682 * component anytime during the normalization. Otherwise, returns success (0).
684 * Note that this function is purely textual. It does not follow symlinks,
685 * verify the existence of the path, or make any system calls.
687 * prefix_len != NULL is for a specific case of prefix_pathspec():
688 * assume that src == dst and src[0..prefix_len-1] is already
689 * normalized, any time "../" eats up to the prefix_len part,
690 * prefix_len is reduced. In the end prefix_len is the remaining
691 * prefix that has not been overridden by user pathspec.
693 int normalize_path_copy_len(char *dst
, const char *src
, int *prefix_len
)
697 if (has_dos_drive_prefix(src
)) {
703 if (is_dir_sep(*src
)) {
705 while (is_dir_sep(*src
))
713 * A path component that begins with . could be
715 * (1) "." and ends -- ignore and terminate.
716 * (2) "./" -- ignore them, eat slash and continue.
717 * (3) ".." and ends -- strip one and terminate.
718 * (4) "../" -- strip one, eat slash and continue.
724 } else if (is_dir_sep(src
[1])) {
727 while (is_dir_sep(*src
))
730 } else if (src
[1] == '.') {
735 } else if (is_dir_sep(src
[2])) {
738 while (is_dir_sep(*src
))
745 /* copy up to the next '/', and eat all '/' */
746 while ((c
= *src
++) != '\0' && !is_dir_sep(c
))
750 while (is_dir_sep(c
))
759 * dst0..dst is prefix portion, and dst[-1] is '/';
762 dst
--; /* go to trailing '/' */
765 /* Windows: dst[-1] cannot be backslash anymore */
766 while (dst0
< dst
&& dst
[-1] != '/')
768 if (prefix_len
&& *prefix_len
> dst
- dst0
)
769 *prefix_len
= dst
- dst0
;
775 int normalize_path_copy(char *dst
, const char *src
)
777 return normalize_path_copy_len(dst
, src
, NULL
);
781 * path = Canonical absolute path
782 * prefixes = string_list containing normalized, absolute paths without
783 * trailing slashes (except for the root directory, which is denoted by "/").
785 * Determines, for each path in prefixes, whether the "prefix"
786 * is an ancestor directory of path. Returns the length of the longest
787 * ancestor directory, excluding any trailing slashes, or -1 if no prefix
788 * is an ancestor. (Note that this means 0 is returned if prefixes is
789 * ["/"].) "/foo" is not considered an ancestor of "/foobar". Directories
790 * are not considered to be their own ancestors. path must be in a
791 * canonical form: empty components, or "." or ".." components are not
794 int longest_ancestor_length(const char *path
, struct string_list
*prefixes
)
798 if (!strcmp(path
, "/"))
801 for (i
= 0; i
< prefixes
->nr
; i
++) {
802 const char *ceil
= prefixes
->items
[i
].string
;
803 int len
= strlen(ceil
);
805 if (len
== 1 && ceil
[0] == '/')
806 len
= 0; /* root matches anything, with length 0 */
807 else if (!strncmp(path
, ceil
, len
) && path
[len
] == '/')
808 ; /* match of length len */
810 continue; /* no match */
819 /* strip arbitrary amount of directory separators at end of path */
820 static inline int chomp_trailing_dir_sep(const char *path
, int len
)
822 while (len
&& is_dir_sep(path
[len
- 1]))
828 * If path ends with suffix (complete path components), returns the
829 * part before suffix (sans trailing directory separators).
830 * Otherwise returns NULL.
832 char *strip_path_suffix(const char *path
, const char *suffix
)
834 int path_len
= strlen(path
), suffix_len
= strlen(suffix
);
840 if (is_dir_sep(path
[path_len
- 1])) {
841 if (!is_dir_sep(suffix
[suffix_len
- 1]))
843 path_len
= chomp_trailing_dir_sep(path
, path_len
);
844 suffix_len
= chomp_trailing_dir_sep(suffix
, suffix_len
);
846 else if (path
[--path_len
] != suffix
[--suffix_len
])
850 if (path_len
&& !is_dir_sep(path
[path_len
- 1]))
852 return xstrndup(path
, chomp_trailing_dir_sep(path
, path_len
));
855 int daemon_avoid_alias(const char *p
)
860 * This resurrects the belts and suspenders paranoia check by HPA
861 * done in <435560F7.4080006@zytor.com> thread, now enter_repo()
862 * does not do getcwd() based path canonicalization.
864 * sl becomes true immediately after seeing '/' and continues to
865 * be true as long as dots continue after that without intervening
868 if (!p
|| (*p
!= '/' && *p
!= '~'))
878 else if (ch
== '/') {
880 /* reject //, /./ and /../ */
885 if (0 < ndot
&& ndot
< 3)
886 /* reject /.$ and /..$ */
895 else if (ch
== '/') {
902 static int only_spaces_and_periods(const char *path
, size_t len
, size_t skip
)
910 if (c
!= ' ' && c
!= '.')
916 int is_ntfs_dotgit(const char *name
)
920 for (len
= 0; ; len
++)
921 if (!name
[len
] || name
[len
] == '\\' || is_dir_sep(name
[len
])) {
922 if (only_spaces_and_periods(name
, len
, 4) &&
923 !strncasecmp(name
, ".git", 4))
925 if (only_spaces_and_periods(name
, len
, 5) &&
926 !strncasecmp(name
, "git~1", 5))
928 if (name
[len
] != '\\')