Linus Torvalds | 26c8a53 | 2005-07-08 16:20:59 -0700 | [diff] [blame] | 1 | /* |
Torsten Bögershausen | 3a429d3 | 2013-03-30 10:53:32 +0100 | [diff] [blame] | 2 | * Utilities for paths and pathnames |
Linus Torvalds | 26c8a53 | 2005-07-08 16:20:59 -0700 | [diff] [blame] | 3 | */ |
Elijah Newren | 61a7b98 | 2023-03-21 06:26:06 +0000 | [diff] [blame] | 4 | #include "git-compat-util.h" |
Elijah Newren | 0b027f6 | 2023-03-21 06:25:58 +0000 | [diff] [blame] | 5 | #include "abspath.h" |
Elijah Newren | 32a8f51 | 2023-03-21 06:26:03 +0000 | [diff] [blame] | 6 | #include "environment.h" |
Elijah Newren | f394e09 | 2023-03-21 06:25:54 +0000 | [diff] [blame] | 7 | #include "gettext.h" |
Elijah Newren | 41771fa | 2023-02-24 00:09:27 +0000 | [diff] [blame] | 8 | #include "hex.h" |
Brandon Williams | c14c234 | 2017-06-22 11:43:33 -0700 | [diff] [blame] | 9 | #include "repository.h" |
Matthieu Moy | 395de25 | 2009-11-17 18:24:25 +0100 | [diff] [blame] | 10 | #include "strbuf.h" |
Michael Haggerty | a5ccdbe | 2012-10-28 17:16:23 +0100 | [diff] [blame] | 11 | #include "string-list.h" |
Nguyễn Thái Ngọc Duy | 77a6d84 | 2014-11-30 15:24:54 +0700 | [diff] [blame] | 12 | #include "dir.h" |
Nguyễn Thái Ngọc Duy | 2e641d5 | 2016-04-22 20:01:29 +0700 | [diff] [blame] | 13 | #include "worktree.h" |
Elijah Newren | e38da48 | 2023-03-21 06:26:05 +0000 | [diff] [blame] | 14 | #include "setup.h" |
Jacob Keller | 99b43a6 | 2016-08-31 16:27:22 -0700 | [diff] [blame] | 15 | #include "submodule-config.h" |
Brandon Williams | e7d72d0 | 2017-06-22 11:43:35 -0700 | [diff] [blame] | 16 | #include "path.h" |
Jonathan Tan | 0abe14f | 2017-08-18 15:20:26 -0700 | [diff] [blame] | 17 | #include "packfile.h" |
Stefan Beller | 90c6215 | 2018-03-23 18:20:55 +0100 | [diff] [blame] | 18 | #include "object-store.h" |
Johannes Schindelin | 76a53d6 | 2019-10-28 12:57:18 +0000 | [diff] [blame] | 19 | #include "lockfile.h" |
Johannes Schindelin | e394a16 | 2021-07-24 22:06:53 +0000 | [diff] [blame] | 20 | #include "exec-cmd.h" |
Elijah Newren | 65156bb | 2023-04-11 00:42:02 -0700 | [diff] [blame] | 21 | #include "wrapper.h" |
Linus Torvalds | 26c8a53 | 2005-07-08 16:20:59 -0700 | [diff] [blame] | 22 | |
Ramsay Jones | f66450a | 2013-06-22 20:42:47 +0100 | [diff] [blame] | 23 | static int get_st_mode_bits(const char *path, int *mode) |
Torsten Bögershausen | 0117c2f | 2013-03-23 13:40:29 +0100 | [diff] [blame] | 24 | { |
| 25 | struct stat st; |
| 26 | if (lstat(path, &st) < 0) |
| 27 | return -1; |
| 28 | *mode = st.st_mode; |
| 29 | return 0; |
| 30 | } |
Torsten Bögershausen | 0117c2f | 2013-03-23 13:40:29 +0100 | [diff] [blame] | 31 | |
Linus Torvalds | 26c8a53 | 2005-07-08 16:20:59 -0700 | [diff] [blame] | 32 | static char bad_path[] = "/bad-path/"; |
| 33 | |
Nguyễn Thái Ngọc Duy | 4ef9caf | 2014-11-30 15:24:26 +0700 | [diff] [blame] | 34 | static struct strbuf *get_pathname(void) |
Linus Torvalds | e7676d2 | 2006-09-11 12:03:15 -0700 | [diff] [blame] | 35 | { |
Nguyễn Thái Ngọc Duy | 4ef9caf | 2014-11-30 15:24:26 +0700 | [diff] [blame] | 36 | static struct strbuf pathname_array[4] = { |
| 37 | STRBUF_INIT, STRBUF_INIT, STRBUF_INIT, STRBUF_INIT |
| 38 | }; |
Linus Torvalds | e7676d2 | 2006-09-11 12:03:15 -0700 | [diff] [blame] | 39 | static int index; |
René Scharfe | bb84735 | 2016-10-23 19:57:30 +0200 | [diff] [blame] | 40 | struct strbuf *sb = &pathname_array[index]; |
| 41 | index = (index + 1) % ARRAY_SIZE(pathname_array); |
Nguyễn Thái Ngọc Duy | 4ef9caf | 2014-11-30 15:24:26 +0700 | [diff] [blame] | 42 | strbuf_reset(sb); |
| 43 | return sb; |
Linus Torvalds | e7676d2 | 2006-09-11 12:03:15 -0700 | [diff] [blame] | 44 | } |
| 45 | |
Jeff King | 8262715 | 2017-10-03 19:30:40 -0400 | [diff] [blame] | 46 | static const char *cleanup_path(const char *path) |
Linus Torvalds | 26c8a53 | 2005-07-08 16:20:59 -0700 | [diff] [blame] | 47 | { |
| 48 | /* Clean it up */ |
Jeff King | 8262715 | 2017-10-03 19:30:40 -0400 | [diff] [blame] | 49 | if (skip_prefix(path, "./", &path)) { |
Linus Torvalds | 26c8a53 | 2005-07-08 16:20:59 -0700 | [diff] [blame] | 50 | while (*path == '/') |
| 51 | path++; |
| 52 | } |
| 53 | return path; |
| 54 | } |
| 55 | |
Nguyễn Thái Ngọc Duy | 4ef9caf | 2014-11-30 15:24:26 +0700 | [diff] [blame] | 56 | static void strbuf_cleanup_path(struct strbuf *sb) |
| 57 | { |
Jeff King | 8262715 | 2017-10-03 19:30:40 -0400 | [diff] [blame] | 58 | const char *path = cleanup_path(sb->buf); |
Nguyễn Thái Ngọc Duy | 4ef9caf | 2014-11-30 15:24:26 +0700 | [diff] [blame] | 59 | if (path > sb->buf) |
| 60 | strbuf_remove(sb, 0, path - sb->buf); |
| 61 | } |
| 62 | |
Alex Riesen | 108bebe | 2008-10-26 22:59:13 +0100 | [diff] [blame] | 63 | char *mksnpath(char *buf, size_t n, const char *fmt, ...) |
| 64 | { |
| 65 | va_list args; |
| 66 | unsigned len; |
| 67 | |
| 68 | va_start(args, fmt); |
| 69 | len = vsnprintf(buf, n, fmt, args); |
| 70 | va_end(args); |
| 71 | if (len >= n) { |
Daniel Lowe | 9db56f7 | 2008-11-10 16:07:52 -0500 | [diff] [blame] | 72 | strlcpy(buf, bad_path, n); |
Alex Riesen | 108bebe | 2008-10-26 22:59:13 +0100 | [diff] [blame] | 73 | return buf; |
| 74 | } |
Jeff King | 8262715 | 2017-10-03 19:30:40 -0400 | [diff] [blame] | 75 | return (char *)cleanup_path(buf); |
Alex Riesen | 108bebe | 2008-10-26 22:59:13 +0100 | [diff] [blame] | 76 | } |
| 77 | |
Nguyễn Thái Ngọc Duy | 557bd83 | 2014-11-30 15:24:31 +0700 | [diff] [blame] | 78 | static int dir_prefix(const char *buf, const char *dir) |
Alex Riesen | fe2d777 | 2008-10-27 10:22:21 +0100 | [diff] [blame] | 79 | { |
Nguyễn Thái Ngọc Duy | 557bd83 | 2014-11-30 15:24:31 +0700 | [diff] [blame] | 80 | int len = strlen(dir); |
| 81 | return !strncmp(buf, dir, len) && |
| 82 | (is_dir_sep(buf[len]) || buf[len] == '\0'); |
Alex Riesen | fe2d777 | 2008-10-27 10:22:21 +0100 | [diff] [blame] | 83 | } |
| 84 | |
Nguyễn Thái Ngọc Duy | 557bd83 | 2014-11-30 15:24:31 +0700 | [diff] [blame] | 85 | /* $buf =~ m|$dir/+$file| but without regex */ |
| 86 | static int is_dir_file(const char *buf, const char *dir, const char *file) |
Alex Riesen | aba13e7 | 2008-10-27 11:17:51 +0100 | [diff] [blame] | 87 | { |
Nguyễn Thái Ngọc Duy | 557bd83 | 2014-11-30 15:24:31 +0700 | [diff] [blame] | 88 | int len = strlen(dir); |
| 89 | if (strncmp(buf, dir, len) || !is_dir_sep(buf[len])) |
| 90 | return 0; |
| 91 | while (is_dir_sep(buf[len])) |
| 92 | len++; |
| 93 | return !strcmp(buf + len, file); |
| 94 | } |
| 95 | |
| 96 | static void replace_dir(struct strbuf *buf, int len, const char *newdir) |
| 97 | { |
| 98 | int newlen = strlen(newdir); |
| 99 | int need_sep = (buf->buf[len] && !is_dir_sep(buf->buf[len])) && |
| 100 | !is_dir_sep(newdir[newlen - 1]); |
| 101 | if (need_sep) |
| 102 | len--; /* keep one char, to be replaced with '/' */ |
| 103 | strbuf_splice(buf, 0, len, newdir, newlen); |
| 104 | if (need_sep) |
| 105 | buf->buf[newlen] = '/'; |
| 106 | } |
| 107 | |
David Turner | 0701530 | 2015-08-31 22:13:09 -0400 | [diff] [blame] | 108 | struct common_dir { |
| 109 | /* Not considered garbage for report_linked_checkout_garbage */ |
| 110 | unsigned ignore_garbage:1; |
| 111 | unsigned is_dir:1; |
SZEDER Gábor | c72fc40 | 2019-10-21 18:00:42 +0200 | [diff] [blame] | 112 | /* Belongs to the common dir, though it may contain paths that don't */ |
| 113 | unsigned is_common:1; |
| 114 | const char *path; |
David Turner | 0701530 | 2015-08-31 22:13:09 -0400 | [diff] [blame] | 115 | }; |
| 116 | |
| 117 | static struct common_dir common_list[] = { |
SZEDER Gábor | c72fc40 | 2019-10-21 18:00:42 +0200 | [diff] [blame] | 118 | { 0, 1, 1, "branches" }, |
| 119 | { 0, 1, 1, "common" }, |
| 120 | { 0, 1, 1, "hooks" }, |
| 121 | { 0, 1, 1, "info" }, |
| 122 | { 0, 0, 0, "info/sparse-checkout" }, |
| 123 | { 1, 1, 1, "logs" }, |
| 124 | { 1, 0, 0, "logs/HEAD" }, |
| 125 | { 0, 1, 0, "logs/refs/bisect" }, |
| 126 | { 0, 1, 0, "logs/refs/rewritten" }, |
| 127 | { 0, 1, 0, "logs/refs/worktree" }, |
| 128 | { 0, 1, 1, "lost-found" }, |
| 129 | { 0, 1, 1, "objects" }, |
| 130 | { 0, 1, 1, "refs" }, |
| 131 | { 0, 1, 0, "refs/bisect" }, |
| 132 | { 0, 1, 0, "refs/rewritten" }, |
| 133 | { 0, 1, 0, "refs/worktree" }, |
| 134 | { 0, 1, 1, "remotes" }, |
| 135 | { 0, 1, 1, "worktrees" }, |
| 136 | { 0, 1, 1, "rr-cache" }, |
| 137 | { 0, 1, 1, "svn" }, |
| 138 | { 0, 0, 1, "config" }, |
| 139 | { 1, 0, 1, "gc.pid" }, |
| 140 | { 0, 0, 1, "packed-refs" }, |
| 141 | { 0, 0, 1, "shallow" }, |
David Turner | 0701530 | 2015-08-31 22:13:09 -0400 | [diff] [blame] | 142 | { 0, 0, 0, NULL } |
Nguyễn Thái Ngọc Duy | c7b3a3d | 2014-11-30 15:24:36 +0700 | [diff] [blame] | 143 | }; |
| 144 | |
David Turner | 4e09cf2 | 2015-08-31 22:13:10 -0400 | [diff] [blame] | 145 | /* |
| 146 | * A compressed trie. A trie node consists of zero or more characters that |
| 147 | * are common to all elements with this prefix, optionally followed by some |
| 148 | * children. If value is not NULL, the trie node is a terminal node. |
| 149 | * |
| 150 | * For example, consider the following set of strings: |
| 151 | * abc |
| 152 | * def |
| 153 | * definite |
| 154 | * definition |
| 155 | * |
Li Peng | 832c0e5 | 2016-05-06 20:36:46 +0800 | [diff] [blame] | 156 | * The trie would look like: |
David Turner | 4e09cf2 | 2015-08-31 22:13:10 -0400 | [diff] [blame] | 157 | * root: len = 0, children a and d non-NULL, value = NULL. |
| 158 | * a: len = 2, contents = bc, value = (data for "abc") |
| 159 | * d: len = 2, contents = ef, children i non-NULL, value = (data for "def") |
| 160 | * i: len = 3, contents = nit, children e and i non-NULL, value = NULL |
| 161 | * e: len = 0, children all NULL, value = (data for "definite") |
| 162 | * i: len = 2, contents = on, children all NULL, |
| 163 | * value = (data for "definition") |
| 164 | */ |
| 165 | struct trie { |
| 166 | struct trie *children[256]; |
| 167 | int len; |
| 168 | char *contents; |
| 169 | void *value; |
| 170 | }; |
| 171 | |
| 172 | static struct trie *make_trie_node(const char *key, void *value) |
| 173 | { |
| 174 | struct trie *new_node = xcalloc(1, sizeof(*new_node)); |
| 175 | new_node->len = strlen(key); |
| 176 | if (new_node->len) { |
| 177 | new_node->contents = xmalloc(new_node->len); |
| 178 | memcpy(new_node->contents, key, new_node->len); |
| 179 | } |
| 180 | new_node->value = value; |
| 181 | return new_node; |
| 182 | } |
| 183 | |
| 184 | /* |
| 185 | * Add a key/value pair to a trie. The key is assumed to be \0-terminated. |
| 186 | * If there was an existing value for this key, return it. |
| 187 | */ |
| 188 | static void *add_to_trie(struct trie *root, const char *key, void *value) |
| 189 | { |
| 190 | struct trie *child; |
| 191 | void *old; |
| 192 | int i; |
| 193 | |
| 194 | if (!*key) { |
| 195 | /* we have reached the end of the key */ |
| 196 | old = root->value; |
| 197 | root->value = value; |
| 198 | return old; |
| 199 | } |
| 200 | |
| 201 | for (i = 0; i < root->len; i++) { |
| 202 | if (root->contents[i] == key[i]) |
| 203 | continue; |
| 204 | |
| 205 | /* |
| 206 | * Split this node: child will contain this node's |
| 207 | * existing children. |
| 208 | */ |
Andrey Okoshkin | 55d7d15 | 2017-10-24 18:15:05 +0300 | [diff] [blame] | 209 | child = xmalloc(sizeof(*child)); |
David Turner | 4e09cf2 | 2015-08-31 22:13:10 -0400 | [diff] [blame] | 210 | memcpy(child->children, root->children, sizeof(root->children)); |
| 211 | |
| 212 | child->len = root->len - i - 1; |
| 213 | if (child->len) { |
| 214 | child->contents = xstrndup(root->contents + i + 1, |
| 215 | child->len); |
| 216 | } |
| 217 | child->value = root->value; |
| 218 | root->value = NULL; |
| 219 | root->len = i; |
| 220 | |
| 221 | memset(root->children, 0, sizeof(root->children)); |
| 222 | root->children[(unsigned char)root->contents[i]] = child; |
| 223 | |
| 224 | /* This is the newly-added child. */ |
| 225 | root->children[(unsigned char)key[i]] = |
| 226 | make_trie_node(key + i + 1, value); |
| 227 | return NULL; |
| 228 | } |
| 229 | |
| 230 | /* We have matched the entire compressed section */ |
| 231 | if (key[i]) { |
| 232 | child = root->children[(unsigned char)key[root->len]]; |
| 233 | if (child) { |
| 234 | return add_to_trie(child, key + root->len + 1, value); |
| 235 | } else { |
| 236 | child = make_trie_node(key + root->len + 1, value); |
| 237 | root->children[(unsigned char)key[root->len]] = child; |
| 238 | return NULL; |
| 239 | } |
| 240 | } |
| 241 | |
| 242 | old = root->value; |
| 243 | root->value = value; |
| 244 | return old; |
| 245 | } |
| 246 | |
SZEDER Gábor | 7cb8c92 | 2019-10-21 18:00:40 +0200 | [diff] [blame] | 247 | typedef int (*match_fn)(const char *unmatched, void *value, void *baton); |
David Turner | 4e09cf2 | 2015-08-31 22:13:10 -0400 | [diff] [blame] | 248 | |
| 249 | /* |
| 250 | * Search a trie for some key. Find the longest /-or-\0-terminated |
SZEDER Gábor | 7cb8c92 | 2019-10-21 18:00:40 +0200 | [diff] [blame] | 251 | * prefix of the key for which the trie contains a value. If there is |
| 252 | * no such prefix, return -1. Otherwise call fn with the unmatched |
| 253 | * portion of the key and the found value. If fn returns 0 or |
| 254 | * positive, then return its return value. If fn returns negative, |
| 255 | * then call fn with the next-longest /-terminated prefix of the key |
| 256 | * (i.e. a parent directory) for which the trie contains a value, and |
| 257 | * handle its return value the same way. If there is no shorter |
| 258 | * /-terminated prefix with a value left, then return the negative |
| 259 | * return value of the most recent fn invocation. |
David Turner | 4e09cf2 | 2015-08-31 22:13:10 -0400 | [diff] [blame] | 260 | * |
| 261 | * The key is partially normalized: consecutive slashes are skipped. |
| 262 | * |
SZEDER Gábor | 7cb8c92 | 2019-10-21 18:00:40 +0200 | [diff] [blame] | 263 | * For example, consider the trie containing only [logs, |
| 264 | * logs/refs/bisect], both with values, but not logs/refs. |
David Turner | 4e09cf2 | 2015-08-31 22:13:10 -0400 | [diff] [blame] | 265 | * |
SZEDER Gábor | 7cb8c92 | 2019-10-21 18:00:40 +0200 | [diff] [blame] | 266 | * | key | unmatched | prefix to node | return value | |
| 267 | * |--------------------|----------------|------------------|--------------| |
| 268 | * | a | not called | n/a | -1 | |
| 269 | * | logstore | not called | n/a | -1 | |
| 270 | * | logs | \0 | logs | as per fn | |
| 271 | * | logs/ | / | logs | as per fn | |
| 272 | * | logs/refs | /refs | logs | as per fn | |
| 273 | * | logs/refs/ | /refs/ | logs | as per fn | |
| 274 | * | logs/refs/b | /refs/b | logs | as per fn | |
| 275 | * | logs/refs/bisected | /refs/bisected | logs | as per fn | |
| 276 | * | logs/refs/bisect | \0 | logs/refs/bisect | as per fn | |
| 277 | * | logs/refs/bisect/ | / | logs/refs/bisect | as per fn | |
| 278 | * | logs/refs/bisect/a | /a | logs/refs/bisect | as per fn | |
| 279 | * | (If fn in the previous line returns -1, then fn is called once more:) | |
| 280 | * | logs/refs/bisect/a | /refs/bisect/a | logs | as per fn | |
| 281 | * |--------------------|----------------|------------------|--------------| |
David Turner | 4e09cf2 | 2015-08-31 22:13:10 -0400 | [diff] [blame] | 282 | */ |
| 283 | static int trie_find(struct trie *root, const char *key, match_fn fn, |
| 284 | void *baton) |
| 285 | { |
| 286 | int i; |
| 287 | int result; |
| 288 | struct trie *child; |
| 289 | |
| 290 | if (!*key) { |
| 291 | /* we have reached the end of the key */ |
| 292 | if (root->value && !root->len) |
| 293 | return fn(key, root->value, baton); |
| 294 | else |
| 295 | return -1; |
| 296 | } |
| 297 | |
| 298 | for (i = 0; i < root->len; i++) { |
| 299 | /* Partial path normalization: skip consecutive slashes. */ |
| 300 | if (key[i] == '/' && key[i+1] == '/') { |
| 301 | key++; |
| 302 | continue; |
| 303 | } |
| 304 | if (root->contents[i] != key[i]) |
| 305 | return -1; |
| 306 | } |
| 307 | |
| 308 | /* Matched the entire compressed section */ |
| 309 | key += i; |
SZEDER Gábor | f45f88b | 2019-10-21 18:00:43 +0200 | [diff] [blame] | 310 | if (!*key) { |
David Turner | 4e09cf2 | 2015-08-31 22:13:10 -0400 | [diff] [blame] | 311 | /* End of key */ |
SZEDER Gábor | f45f88b | 2019-10-21 18:00:43 +0200 | [diff] [blame] | 312 | if (root->value) |
| 313 | return fn(key, root->value, baton); |
| 314 | else |
| 315 | return -1; |
| 316 | } |
David Turner | 4e09cf2 | 2015-08-31 22:13:10 -0400 | [diff] [blame] | 317 | |
| 318 | /* Partial path normalization: skip consecutive slashes */ |
| 319 | while (key[0] == '/' && key[1] == '/') |
| 320 | key++; |
| 321 | |
| 322 | child = root->children[(unsigned char)*key]; |
| 323 | if (child) |
| 324 | result = trie_find(child, key + 1, fn, baton); |
| 325 | else |
| 326 | result = -1; |
| 327 | |
| 328 | if (result >= 0 || (*key != '/' && *key != 0)) |
| 329 | return result; |
| 330 | if (root->value) |
| 331 | return fn(key, root->value, baton); |
| 332 | else |
| 333 | return -1; |
| 334 | } |
| 335 | |
| 336 | static struct trie common_trie; |
| 337 | static int common_trie_done_setup; |
| 338 | |
| 339 | static void init_common_trie(void) |
| 340 | { |
| 341 | struct common_dir *p; |
| 342 | |
| 343 | if (common_trie_done_setup) |
| 344 | return; |
| 345 | |
SZEDER Gábor | c72fc40 | 2019-10-21 18:00:42 +0200 | [diff] [blame] | 346 | for (p = common_list; p->path; p++) |
| 347 | add_to_trie(&common_trie, p->path, p); |
David Turner | 4e09cf2 | 2015-08-31 22:13:10 -0400 | [diff] [blame] | 348 | |
| 349 | common_trie_done_setup = 1; |
| 350 | } |
| 351 | |
| 352 | /* |
| 353 | * Helper function for update_common_dir: returns 1 if the dir |
| 354 | * prefix is common. |
| 355 | */ |
Jeff King | d3dcfa0 | 2023-02-24 01:39:15 -0500 | [diff] [blame] | 356 | static int check_common(const char *unmatched, void *value, |
| 357 | void *baton UNUSED) |
David Turner | 4e09cf2 | 2015-08-31 22:13:10 -0400 | [diff] [blame] | 358 | { |
| 359 | struct common_dir *dir = value; |
| 360 | |
David Turner | 4e09cf2 | 2015-08-31 22:13:10 -0400 | [diff] [blame] | 361 | if (dir->is_dir && (unmatched[0] == 0 || unmatched[0] == '/')) |
SZEDER Gábor | c72fc40 | 2019-10-21 18:00:42 +0200 | [diff] [blame] | 362 | return dir->is_common; |
David Turner | 4e09cf2 | 2015-08-31 22:13:10 -0400 | [diff] [blame] | 363 | |
| 364 | if (!dir->is_dir && unmatched[0] == 0) |
SZEDER Gábor | c72fc40 | 2019-10-21 18:00:42 +0200 | [diff] [blame] | 365 | return dir->is_common; |
David Turner | 4e09cf2 | 2015-08-31 22:13:10 -0400 | [diff] [blame] | 366 | |
| 367 | return 0; |
| 368 | } |
| 369 | |
Junio C Hamano | 1c630ba | 2015-10-15 15:43:31 -0700 | [diff] [blame] | 370 | static void update_common_dir(struct strbuf *buf, int git_dir_len, |
| 371 | const char *common_dir) |
Nguyễn Thái Ngọc Duy | c7b3a3d | 2014-11-30 15:24:36 +0700 | [diff] [blame] | 372 | { |
| 373 | char *base = buf->buf + git_dir_len; |
Johannes Schindelin | 76a53d6 | 2019-10-28 12:57:18 +0000 | [diff] [blame] | 374 | int has_lock_suffix = strbuf_strip_suffix(buf, LOCK_SUFFIX); |
| 375 | |
David Turner | 4e09cf2 | 2015-08-31 22:13:10 -0400 | [diff] [blame] | 376 | init_common_trie(); |
| 377 | if (trie_find(&common_trie, base, check_common, NULL) > 0) |
Junio C Hamano | 1c630ba | 2015-10-15 15:43:31 -0700 | [diff] [blame] | 378 | replace_dir(buf, git_dir_len, common_dir); |
Johannes Schindelin | 76a53d6 | 2019-10-28 12:57:18 +0000 | [diff] [blame] | 379 | |
| 380 | if (has_lock_suffix) |
| 381 | strbuf_addstr(buf, LOCK_SUFFIX); |
Nguyễn Thái Ngọc Duy | c7b3a3d | 2014-11-30 15:24:36 +0700 | [diff] [blame] | 382 | } |
| 383 | |
Nguyễn Thái Ngọc Duy | 77a6d84 | 2014-11-30 15:24:54 +0700 | [diff] [blame] | 384 | void report_linked_checkout_garbage(void) |
| 385 | { |
| 386 | struct strbuf sb = STRBUF_INIT; |
David Turner | 0701530 | 2015-08-31 22:13:09 -0400 | [diff] [blame] | 387 | const struct common_dir *p; |
Nguyễn Thái Ngọc Duy | 77a6d84 | 2014-11-30 15:24:54 +0700 | [diff] [blame] | 388 | int len; |
| 389 | |
Brandon Williams | c14c234 | 2017-06-22 11:43:33 -0700 | [diff] [blame] | 390 | if (!the_repository->different_commondir) |
Nguyễn Thái Ngọc Duy | 77a6d84 | 2014-11-30 15:24:54 +0700 | [diff] [blame] | 391 | return; |
| 392 | strbuf_addf(&sb, "%s/", get_git_dir()); |
| 393 | len = sb.len; |
SZEDER Gábor | c72fc40 | 2019-10-21 18:00:42 +0200 | [diff] [blame] | 394 | for (p = common_list; p->path; p++) { |
| 395 | const char *path = p->path; |
David Turner | 0701530 | 2015-08-31 22:13:09 -0400 | [diff] [blame] | 396 | if (p->ignore_garbage) |
Nguyễn Thái Ngọc Duy | 77a6d84 | 2014-11-30 15:24:54 +0700 | [diff] [blame] | 397 | continue; |
| 398 | strbuf_setlen(&sb, len); |
| 399 | strbuf_addstr(&sb, path); |
| 400 | if (file_exists(sb.buf)) |
Junio C Hamano | 0a489b0 | 2015-08-13 13:02:52 -0500 | [diff] [blame] | 401 | report_garbage(PACKDIR_FILE_GARBAGE, sb.buf); |
Nguyễn Thái Ngọc Duy | 77a6d84 | 2014-11-30 15:24:54 +0700 | [diff] [blame] | 402 | } |
| 403 | strbuf_release(&sb); |
| 404 | } |
| 405 | |
Brandon Williams | f9a8a47 | 2017-06-22 11:43:38 -0700 | [diff] [blame] | 406 | static void adjust_git_path(const struct repository *repo, |
| 407 | struct strbuf *buf, int git_dir_len) |
Nguyễn Thái Ngọc Duy | 557bd83 | 2014-11-30 15:24:31 +0700 | [diff] [blame] | 408 | { |
| 409 | const char *base = buf->buf + git_dir_len; |
Brandon Williams | c14c234 | 2017-06-22 11:43:33 -0700 | [diff] [blame] | 410 | if (is_dir_file(base, "info", "grafts")) |
Nguyễn Thái Ngọc Duy | 557bd83 | 2014-11-30 15:24:31 +0700 | [diff] [blame] | 411 | strbuf_splice(buf, 0, buf->len, |
Brandon Williams | f9a8a47 | 2017-06-22 11:43:38 -0700 | [diff] [blame] | 412 | repo->graft_file, strlen(repo->graft_file)); |
Brandon Williams | c14c234 | 2017-06-22 11:43:33 -0700 | [diff] [blame] | 413 | else if (!strcmp(base, "index")) |
Nguyễn Thái Ngọc Duy | 557bd83 | 2014-11-30 15:24:31 +0700 | [diff] [blame] | 414 | strbuf_splice(buf, 0, buf->len, |
Brandon Williams | f9a8a47 | 2017-06-22 11:43:38 -0700 | [diff] [blame] | 415 | repo->index_file, strlen(repo->index_file)); |
Brandon Williams | c14c234 | 2017-06-22 11:43:33 -0700 | [diff] [blame] | 416 | else if (dir_prefix(base, "objects")) |
Jeff King | f0eaf63 | 2018-11-12 09:50:39 -0500 | [diff] [blame] | 417 | replace_dir(buf, git_dir_len + 7, repo->objects->odb->path); |
Johannes Schindelin | 9445b49 | 2016-08-16 15:14:27 +0200 | [diff] [blame] | 418 | else if (git_hooks_path && dir_prefix(base, "hooks")) |
| 419 | replace_dir(buf, git_dir_len + 5, git_hooks_path); |
Brandon Williams | f9a8a47 | 2017-06-22 11:43:38 -0700 | [diff] [blame] | 420 | else if (repo->different_commondir) |
| 421 | update_common_dir(buf, git_dir_len, repo->commondir); |
Nguyễn Thái Ngọc Duy | 557bd83 | 2014-11-30 15:24:31 +0700 | [diff] [blame] | 422 | } |
| 423 | |
Brandon Williams | f9a8a47 | 2017-06-22 11:43:38 -0700 | [diff] [blame] | 424 | static void strbuf_worktree_gitdir(struct strbuf *buf, |
| 425 | const struct repository *repo, |
| 426 | const struct worktree *wt) |
| 427 | { |
| 428 | if (!wt) |
| 429 | strbuf_addstr(buf, repo->gitdir); |
| 430 | else if (!wt->id) |
| 431 | strbuf_addstr(buf, repo->commondir); |
| 432 | else |
| 433 | strbuf_git_common_path(buf, repo, "worktrees/%s", wt->id); |
| 434 | } |
| 435 | |
| 436 | static void do_git_path(const struct repository *repo, |
| 437 | const struct worktree *wt, struct strbuf *buf, |
Nguyễn Thái Ngọc Duy | 2e641d5 | 2016-04-22 20:01:29 +0700 | [diff] [blame] | 438 | const char *fmt, va_list args) |
Linus Torvalds | e7676d2 | 2006-09-11 12:03:15 -0700 | [diff] [blame] | 439 | { |
Nguyễn Thái Ngọc Duy | 557bd83 | 2014-11-30 15:24:31 +0700 | [diff] [blame] | 440 | int gitdir_len; |
Brandon Williams | f9a8a47 | 2017-06-22 11:43:38 -0700 | [diff] [blame] | 441 | strbuf_worktree_gitdir(buf, repo, wt); |
Nguyễn Thái Ngọc Duy | 4ef9caf | 2014-11-30 15:24:26 +0700 | [diff] [blame] | 442 | if (buf->len && !is_dir_sep(buf->buf[buf->len - 1])) |
| 443 | strbuf_addch(buf, '/'); |
Nguyễn Thái Ngọc Duy | 557bd83 | 2014-11-30 15:24:31 +0700 | [diff] [blame] | 444 | gitdir_len = buf->len; |
Nguyễn Thái Ngọc Duy | 4ef9caf | 2014-11-30 15:24:26 +0700 | [diff] [blame] | 445 | strbuf_vaddf(buf, fmt, args); |
Brandon Williams | 5431073 | 2017-06-22 11:43:39 -0700 | [diff] [blame] | 446 | if (!wt) |
| 447 | adjust_git_path(repo, buf, gitdir_len); |
Nguyễn Thái Ngọc Duy | 4ef9caf | 2014-11-30 15:24:26 +0700 | [diff] [blame] | 448 | strbuf_cleanup_path(buf); |
Linus Torvalds | 26c8a53 | 2005-07-08 16:20:59 -0700 | [diff] [blame] | 449 | } |
| 450 | |
Brandon Williams | 3181d86 | 2017-06-22 11:43:40 -0700 | [diff] [blame] | 451 | char *repo_git_path(const struct repository *repo, |
| 452 | const char *fmt, ...) |
| 453 | { |
| 454 | struct strbuf path = STRBUF_INIT; |
| 455 | va_list args; |
| 456 | va_start(args, fmt); |
| 457 | do_git_path(repo, NULL, &path, fmt, args); |
| 458 | va_end(args); |
| 459 | return strbuf_detach(&path, NULL); |
| 460 | } |
| 461 | |
| 462 | void strbuf_repo_git_path(struct strbuf *sb, |
| 463 | const struct repository *repo, |
| 464 | const char *fmt, ...) |
| 465 | { |
| 466 | va_list args; |
| 467 | va_start(args, fmt); |
| 468 | do_git_path(repo, NULL, sb, fmt, args); |
| 469 | va_end(args); |
| 470 | } |
| 471 | |
Jeff King | bb3788c | 2015-09-24 17:05:40 -0400 | [diff] [blame] | 472 | char *git_path_buf(struct strbuf *buf, const char *fmt, ...) |
| 473 | { |
| 474 | va_list args; |
| 475 | strbuf_reset(buf); |
| 476 | va_start(args, fmt); |
Brandon Williams | f9a8a47 | 2017-06-22 11:43:38 -0700 | [diff] [blame] | 477 | do_git_path(the_repository, NULL, buf, fmt, args); |
Jeff King | bb3788c | 2015-09-24 17:05:40 -0400 | [diff] [blame] | 478 | va_end(args); |
| 479 | return buf->buf; |
| 480 | } |
| 481 | |
Nguyễn Thái Ngọc Duy | 1a83c24 | 2014-11-30 15:24:28 +0700 | [diff] [blame] | 482 | void strbuf_git_path(struct strbuf *sb, const char *fmt, ...) |
Alex Riesen | aba13e7 | 2008-10-27 11:17:51 +0100 | [diff] [blame] | 483 | { |
| 484 | va_list args; |
| 485 | va_start(args, fmt); |
Brandon Williams | f9a8a47 | 2017-06-22 11:43:38 -0700 | [diff] [blame] | 486 | do_git_path(the_repository, NULL, sb, fmt, args); |
Alex Riesen | aba13e7 | 2008-10-27 11:17:51 +0100 | [diff] [blame] | 487 | va_end(args); |
Alex Riesen | aba13e7 | 2008-10-27 11:17:51 +0100 | [diff] [blame] | 488 | } |
| 489 | |
Nguyễn Thái Ngọc Duy | 57a23b7 | 2014-11-30 15:24:30 +0700 | [diff] [blame] | 490 | const char *git_path(const char *fmt, ...) |
| 491 | { |
| 492 | struct strbuf *pathname = get_pathname(); |
| 493 | va_list args; |
| 494 | va_start(args, fmt); |
Brandon Williams | f9a8a47 | 2017-06-22 11:43:38 -0700 | [diff] [blame] | 495 | do_git_path(the_repository, NULL, pathname, fmt, args); |
Nguyễn Thái Ngọc Duy | 57a23b7 | 2014-11-30 15:24:30 +0700 | [diff] [blame] | 496 | va_end(args); |
| 497 | return pathname->buf; |
Alex Riesen | aba13e7 | 2008-10-27 11:17:51 +0100 | [diff] [blame] | 498 | } |
| 499 | |
| 500 | char *git_pathdup(const char *fmt, ...) |
| 501 | { |
Nguyễn Thái Ngọc Duy | 4ef9caf | 2014-11-30 15:24:26 +0700 | [diff] [blame] | 502 | struct strbuf path = STRBUF_INIT; |
Alex Riesen | aba13e7 | 2008-10-27 11:17:51 +0100 | [diff] [blame] | 503 | va_list args; |
| 504 | va_start(args, fmt); |
Brandon Williams | f9a8a47 | 2017-06-22 11:43:38 -0700 | [diff] [blame] | 505 | do_git_path(the_repository, NULL, &path, fmt, args); |
Alex Riesen | aba13e7 | 2008-10-27 11:17:51 +0100 | [diff] [blame] | 506 | va_end(args); |
Nguyễn Thái Ngọc Duy | 4ef9caf | 2014-11-30 15:24:26 +0700 | [diff] [blame] | 507 | return strbuf_detach(&path, NULL); |
Alex Riesen | aba13e7 | 2008-10-27 11:17:51 +0100 | [diff] [blame] | 508 | } |
| 509 | |
Huynh Khoi Nguyen Nguyen | 21cf322 | 2012-06-22 11:03:23 +0200 | [diff] [blame] | 510 | char *mkpathdup(const char *fmt, ...) |
| 511 | { |
Huynh Khoi Nguyen Nguyen | 21cf322 | 2012-06-22 11:03:23 +0200 | [diff] [blame] | 512 | struct strbuf sb = STRBUF_INIT; |
| 513 | va_list args; |
Huynh Khoi Nguyen Nguyen | 21cf322 | 2012-06-22 11:03:23 +0200 | [diff] [blame] | 514 | va_start(args, fmt); |
| 515 | strbuf_vaddf(&sb, fmt, args); |
| 516 | va_end(args); |
Nguyễn Thái Ngọc Duy | 4ef9caf | 2014-11-30 15:24:26 +0700 | [diff] [blame] | 517 | strbuf_cleanup_path(&sb); |
| 518 | return strbuf_detach(&sb, NULL); |
Huynh Khoi Nguyen Nguyen | 21cf322 | 2012-06-22 11:03:23 +0200 | [diff] [blame] | 519 | } |
| 520 | |
Nguyễn Thái Ngọc Duy | dcf6926 | 2014-11-30 15:24:27 +0700 | [diff] [blame] | 521 | const char *mkpath(const char *fmt, ...) |
Linus Torvalds | 26c8a53 | 2005-07-08 16:20:59 -0700 | [diff] [blame] | 522 | { |
| 523 | va_list args; |
Nguyễn Thái Ngọc Duy | 4ef9caf | 2014-11-30 15:24:26 +0700 | [diff] [blame] | 524 | struct strbuf *pathname = get_pathname(); |
Linus Torvalds | 26c8a53 | 2005-07-08 16:20:59 -0700 | [diff] [blame] | 525 | va_start(args, fmt); |
Nguyễn Thái Ngọc Duy | 4ef9caf | 2014-11-30 15:24:26 +0700 | [diff] [blame] | 526 | strbuf_vaddf(pathname, fmt, args); |
Linus Torvalds | 26c8a53 | 2005-07-08 16:20:59 -0700 | [diff] [blame] | 527 | va_end(args); |
Nguyễn Thái Ngọc Duy | 4ef9caf | 2014-11-30 15:24:26 +0700 | [diff] [blame] | 528 | return cleanup_path(pathname->buf); |
Linus Torvalds | 26c8a53 | 2005-07-08 16:20:59 -0700 | [diff] [blame] | 529 | } |
Holger Eitzenberger | f2db68e | 2005-08-04 22:43:03 +0200 | [diff] [blame] | 530 | |
Nguyễn Thái Ngọc Duy | 2e641d5 | 2016-04-22 20:01:29 +0700 | [diff] [blame] | 531 | const char *worktree_git_path(const struct worktree *wt, const char *fmt, ...) |
| 532 | { |
| 533 | struct strbuf *pathname = get_pathname(); |
| 534 | va_list args; |
| 535 | va_start(args, fmt); |
Brandon Williams | f9a8a47 | 2017-06-22 11:43:38 -0700 | [diff] [blame] | 536 | do_git_path(the_repository, wt, pathname, fmt, args); |
Nguyễn Thái Ngọc Duy | 2e641d5 | 2016-04-22 20:01:29 +0700 | [diff] [blame] | 537 | va_end(args); |
| 538 | return pathname->buf; |
| 539 | } |
| 540 | |
Brandon Williams | b42b0c0 | 2017-06-22 11:43:41 -0700 | [diff] [blame] | 541 | static void do_worktree_path(const struct repository *repo, |
| 542 | struct strbuf *buf, |
| 543 | const char *fmt, va_list args) |
| 544 | { |
| 545 | strbuf_addstr(buf, repo->worktree); |
| 546 | if(buf->len && !is_dir_sep(buf->buf[buf->len - 1])) |
| 547 | strbuf_addch(buf, '/'); |
| 548 | |
| 549 | strbuf_vaddf(buf, fmt, args); |
| 550 | strbuf_cleanup_path(buf); |
| 551 | } |
| 552 | |
| 553 | char *repo_worktree_path(const struct repository *repo, const char *fmt, ...) |
| 554 | { |
| 555 | struct strbuf path = STRBUF_INIT; |
| 556 | va_list args; |
| 557 | |
| 558 | if (!repo->worktree) |
| 559 | return NULL; |
| 560 | |
| 561 | va_start(args, fmt); |
| 562 | do_worktree_path(repo, &path, fmt, args); |
| 563 | va_end(args); |
| 564 | |
| 565 | return strbuf_detach(&path, NULL); |
| 566 | } |
| 567 | |
| 568 | void strbuf_repo_worktree_path(struct strbuf *sb, |
| 569 | const struct repository *repo, |
| 570 | const char *fmt, ...) |
| 571 | { |
| 572 | va_list args; |
| 573 | |
| 574 | if (!repo->worktree) |
| 575 | return; |
| 576 | |
| 577 | va_start(args, fmt); |
| 578 | do_worktree_path(repo, sb, fmt, args); |
| 579 | va_end(args); |
| 580 | } |
| 581 | |
Jacob Keller | 99b43a6 | 2016-08-31 16:27:22 -0700 | [diff] [blame] | 582 | /* Returns 0 on success, negative on failure. */ |
Jacob Keller | 99b43a6 | 2016-08-31 16:27:22 -0700 | [diff] [blame] | 583 | static int do_submodule_path(struct strbuf *buf, const char *path, |
| 584 | const char *fmt, va_list args) |
Heiko Voigt | 0bad611 | 2010-07-07 15:39:11 +0200 | [diff] [blame] | 585 | { |
Max Kirillov | 11f9dd7 | 2015-09-14 01:17:42 +0300 | [diff] [blame] | 586 | struct strbuf git_submodule_common_dir = STRBUF_INIT; |
| 587 | struct strbuf git_submodule_dir = STRBUF_INIT; |
Nguyễn Thái Ngọc Duy | bbbb7de | 2017-03-26 09:42:30 +0700 | [diff] [blame] | 588 | int ret; |
Heiko Voigt | 0bad611 | 2010-07-07 15:39:11 +0200 | [diff] [blame] | 589 | |
Nguyễn Thái Ngọc Duy | bbbb7de | 2017-03-26 09:42:30 +0700 | [diff] [blame] | 590 | ret = submodule_to_gitdir(&git_submodule_dir, path); |
| 591 | if (ret) |
| 592 | goto cleanup; |
Heiko Voigt | 0bad611 | 2010-07-07 15:39:11 +0200 | [diff] [blame] | 593 | |
Nguyễn Thái Ngọc Duy | bbbb7de | 2017-03-26 09:42:30 +0700 | [diff] [blame] | 594 | strbuf_complete(&git_submodule_dir, '/'); |
| 595 | strbuf_addbuf(buf, &git_submodule_dir); |
Nguyễn Thái Ngọc Duy | 4ef9caf | 2014-11-30 15:24:26 +0700 | [diff] [blame] | 596 | strbuf_vaddf(buf, fmt, args); |
Max Kirillov | 11f9dd7 | 2015-09-14 01:17:42 +0300 | [diff] [blame] | 597 | |
| 598 | if (get_common_dir_noenv(&git_submodule_common_dir, git_submodule_dir.buf)) |
| 599 | update_common_dir(buf, git_submodule_dir.len, git_submodule_common_dir.buf); |
| 600 | |
Nguyễn Thái Ngọc Duy | 4ef9caf | 2014-11-30 15:24:26 +0700 | [diff] [blame] | 601 | strbuf_cleanup_path(buf); |
Max Kirillov | 11f9dd7 | 2015-09-14 01:17:42 +0300 | [diff] [blame] | 602 | |
Jacob Keller | 99b43a6 | 2016-08-31 16:27:22 -0700 | [diff] [blame] | 603 | cleanup: |
Max Kirillov | 11f9dd7 | 2015-09-14 01:17:42 +0300 | [diff] [blame] | 604 | strbuf_release(&git_submodule_dir); |
| 605 | strbuf_release(&git_submodule_common_dir); |
Nguyễn Thái Ngọc Duy | bbbb7de | 2017-03-26 09:42:30 +0700 | [diff] [blame] | 606 | return ret; |
Jeff King | f5895fd | 2015-08-10 05:32:22 -0400 | [diff] [blame] | 607 | } |
| 608 | |
Jeff King | f5895fd | 2015-08-10 05:32:22 -0400 | [diff] [blame] | 609 | char *git_pathdup_submodule(const char *path, const char *fmt, ...) |
| 610 | { |
Jacob Keller | 99b43a6 | 2016-08-31 16:27:22 -0700 | [diff] [blame] | 611 | int err; |
Jeff King | f5895fd | 2015-08-10 05:32:22 -0400 | [diff] [blame] | 612 | va_list args; |
| 613 | struct strbuf buf = STRBUF_INIT; |
| 614 | va_start(args, fmt); |
Jacob Keller | 99b43a6 | 2016-08-31 16:27:22 -0700 | [diff] [blame] | 615 | err = do_submodule_path(&buf, path, fmt, args); |
Jeff King | f5895fd | 2015-08-10 05:32:22 -0400 | [diff] [blame] | 616 | va_end(args); |
Jacob Keller | 99b43a6 | 2016-08-31 16:27:22 -0700 | [diff] [blame] | 617 | if (err) { |
| 618 | strbuf_release(&buf); |
| 619 | return NULL; |
| 620 | } |
Jeff King | f5895fd | 2015-08-10 05:32:22 -0400 | [diff] [blame] | 621 | return strbuf_detach(&buf, NULL); |
| 622 | } |
| 623 | |
Jacob Keller | 99b43a6 | 2016-08-31 16:27:22 -0700 | [diff] [blame] | 624 | int strbuf_git_path_submodule(struct strbuf *buf, const char *path, |
| 625 | const char *fmt, ...) |
Jeff King | f5895fd | 2015-08-10 05:32:22 -0400 | [diff] [blame] | 626 | { |
Jacob Keller | 99b43a6 | 2016-08-31 16:27:22 -0700 | [diff] [blame] | 627 | int err; |
Jeff King | f5895fd | 2015-08-10 05:32:22 -0400 | [diff] [blame] | 628 | va_list args; |
| 629 | va_start(args, fmt); |
Jacob Keller | 99b43a6 | 2016-08-31 16:27:22 -0700 | [diff] [blame] | 630 | err = do_submodule_path(buf, path, fmt, args); |
Jeff King | f5895fd | 2015-08-10 05:32:22 -0400 | [diff] [blame] | 631 | va_end(args); |
Jacob Keller | 99b43a6 | 2016-08-31 16:27:22 -0700 | [diff] [blame] | 632 | |
| 633 | return err; |
Jeff King | f5895fd | 2015-08-10 05:32:22 -0400 | [diff] [blame] | 634 | } |
| 635 | |
Brandon Williams | b337172 | 2017-06-22 11:43:37 -0700 | [diff] [blame] | 636 | static void do_git_common_path(const struct repository *repo, |
| 637 | struct strbuf *buf, |
Nguyễn Thái Ngọc Duy | 15cdfea | 2016-04-22 20:01:25 +0700 | [diff] [blame] | 638 | const char *fmt, |
| 639 | va_list args) |
| 640 | { |
Brandon Williams | b337172 | 2017-06-22 11:43:37 -0700 | [diff] [blame] | 641 | strbuf_addstr(buf, repo->commondir); |
Nguyễn Thái Ngọc Duy | 15cdfea | 2016-04-22 20:01:25 +0700 | [diff] [blame] | 642 | if (buf->len && !is_dir_sep(buf->buf[buf->len - 1])) |
| 643 | strbuf_addch(buf, '/'); |
| 644 | strbuf_vaddf(buf, fmt, args); |
| 645 | strbuf_cleanup_path(buf); |
| 646 | } |
| 647 | |
| 648 | const char *git_common_path(const char *fmt, ...) |
| 649 | { |
| 650 | struct strbuf *pathname = get_pathname(); |
| 651 | va_list args; |
| 652 | va_start(args, fmt); |
Brandon Williams | b337172 | 2017-06-22 11:43:37 -0700 | [diff] [blame] | 653 | do_git_common_path(the_repository, pathname, fmt, args); |
Nguyễn Thái Ngọc Duy | 15cdfea | 2016-04-22 20:01:25 +0700 | [diff] [blame] | 654 | va_end(args); |
| 655 | return pathname->buf; |
| 656 | } |
| 657 | |
Brandon Williams | b337172 | 2017-06-22 11:43:37 -0700 | [diff] [blame] | 658 | void strbuf_git_common_path(struct strbuf *sb, |
| 659 | const struct repository *repo, |
| 660 | const char *fmt, ...) |
Nguyễn Thái Ngọc Duy | 15cdfea | 2016-04-22 20:01:25 +0700 | [diff] [blame] | 661 | { |
| 662 | va_list args; |
| 663 | va_start(args, fmt); |
Brandon Williams | b337172 | 2017-06-22 11:43:37 -0700 | [diff] [blame] | 664 | do_git_common_path(repo, sb, fmt, args); |
Nguyễn Thái Ngọc Duy | 15cdfea | 2016-04-22 20:01:25 +0700 | [diff] [blame] | 665 | va_end(args); |
| 666 | } |
| 667 | |
Junio C Hamano | c847f53 | 2007-01-01 23:31:08 -0800 | [diff] [blame] | 668 | int validate_headref(const char *path) |
Junio C Hamano | 0870ca7 | 2005-11-18 14:59:34 -0800 | [diff] [blame] | 669 | { |
| 670 | struct stat st; |
Jeff King | 7eb4b9d | 2017-09-27 02:17:26 -0400 | [diff] [blame] | 671 | char buffer[256]; |
| 672 | const char *refname; |
Jeff King | 0bca165 | 2017-09-27 02:17:36 -0400 | [diff] [blame] | 673 | struct object_id oid; |
Heikki Orsila | 0104ca0 | 2008-04-27 21:21:58 +0300 | [diff] [blame] | 674 | int fd; |
| 675 | ssize_t len; |
Junio C Hamano | 0870ca7 | 2005-11-18 14:59:34 -0800 | [diff] [blame] | 676 | |
| 677 | if (lstat(path, &st) < 0) |
| 678 | return -1; |
| 679 | |
| 680 | /* Make sure it is a "refs/.." symlink */ |
| 681 | if (S_ISLNK(st.st_mode)) { |
| 682 | len = readlink(path, buffer, sizeof(buffer)-1); |
Junio C Hamano | 222b167 | 2009-02-12 13:02:09 -0800 | [diff] [blame] | 683 | if (len >= 5 && !memcmp("refs/", buffer, 5)) |
Junio C Hamano | 0870ca7 | 2005-11-18 14:59:34 -0800 | [diff] [blame] | 684 | return 0; |
| 685 | return -1; |
| 686 | } |
| 687 | |
| 688 | /* |
| 689 | * Anything else, just open it and try to see if it is a symbolic ref. |
| 690 | */ |
| 691 | fd = open(path, O_RDONLY); |
| 692 | if (fd < 0) |
| 693 | return -1; |
Andy Whitcroft | 93d26e4 | 2007-01-08 15:58:08 +0000 | [diff] [blame] | 694 | len = read_in_full(fd, buffer, sizeof(buffer)-1); |
Junio C Hamano | 0870ca7 | 2005-11-18 14:59:34 -0800 | [diff] [blame] | 695 | close(fd); |
| 696 | |
Jeff King | 6e68c91 | 2017-09-27 02:17:23 -0400 | [diff] [blame] | 697 | if (len < 0) |
| 698 | return -1; |
| 699 | buffer[len] = '\0'; |
| 700 | |
Junio C Hamano | 0870ca7 | 2005-11-18 14:59:34 -0800 | [diff] [blame] | 701 | /* |
| 702 | * Is it a symbolic ref? |
| 703 | */ |
Jeff King | 7eb4b9d | 2017-09-27 02:17:26 -0400 | [diff] [blame] | 704 | if (skip_prefix(buffer, "ref:", &refname)) { |
| 705 | while (isspace(*refname)) |
| 706 | refname++; |
| 707 | if (starts_with(refname, "refs/")) |
Junio C Hamano | c847f53 | 2007-01-01 23:31:08 -0800 | [diff] [blame] | 708 | return 0; |
| 709 | } |
| 710 | |
| 711 | /* |
| 712 | * Is this a detached HEAD? |
| 713 | */ |
Jeff King | 0bca165 | 2017-09-27 02:17:36 -0400 | [diff] [blame] | 714 | if (!get_oid_hex(buffer, &oid)) |
Junio C Hamano | 0870ca7 | 2005-11-18 14:59:34 -0800 | [diff] [blame] | 715 | return 0; |
Junio C Hamano | c847f53 | 2007-01-01 23:31:08 -0800 | [diff] [blame] | 716 | |
Junio C Hamano | 0870ca7 | 2005-11-18 14:59:34 -0800 | [diff] [blame] | 717 | return -1; |
| 718 | } |
| 719 | |
Matthieu Moy | 395de25 | 2009-11-17 18:24:25 +0100 | [diff] [blame] | 720 | static struct passwd *getpw_str(const char *username, size_t len) |
Andreas Ericsson | 54f4b87 | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 721 | { |
Junio C Hamano | d79374c | 2005-12-03 01:45:57 -0800 | [diff] [blame] | 722 | struct passwd *pw; |
René Scharfe | 5c0b13f | 2014-07-19 17:35:34 +0200 | [diff] [blame] | 723 | char *username_z = xmemdupz(username, len); |
Matthieu Moy | 395de25 | 2009-11-17 18:24:25 +0100 | [diff] [blame] | 724 | pw = getpwnam(username_z); |
| 725 | free(username_z); |
| 726 | return pw; |
| 727 | } |
Andreas Ericsson | 54f4b87 | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 728 | |
Matthieu Moy | 395de25 | 2009-11-17 18:24:25 +0100 | [diff] [blame] | 729 | /* |
Johannes Schindelin | 789f6f2 | 2021-07-24 22:06:50 +0000 | [diff] [blame] | 730 | * Return a string with ~ and ~user expanded via getpw*. Returns NULL on getpw |
| 731 | * failure or if path is NULL. |
Nguyễn Thái Ngọc Duy | 4aad2f1 | 2017-04-05 17:24:38 +0700 | [diff] [blame] | 732 | * |
Johannes Schindelin | 644e6b2 | 2021-07-24 22:06:51 +0000 | [diff] [blame] | 733 | * If real_home is true, strbuf_realpath($HOME) is used in the `~/` expansion. |
Johannes Schindelin | e394a16 | 2021-07-24 22:06:53 +0000 | [diff] [blame] | 734 | * |
| 735 | * If the path starts with `%(prefix)/`, the remainder is interpreted as |
| 736 | * relative to where Git is installed, and expanded to the absolute path. |
Matthieu Moy | 395de25 | 2009-11-17 18:24:25 +0100 | [diff] [blame] | 737 | */ |
Johannes Schindelin | a03b097 | 2021-07-24 22:06:52 +0000 | [diff] [blame] | 738 | char *interpolate_path(const char *path, int real_home) |
Matthieu Moy | 395de25 | 2009-11-17 18:24:25 +0100 | [diff] [blame] | 739 | { |
| 740 | struct strbuf user_path = STRBUF_INIT; |
Matthieu Moy | 395de25 | 2009-11-17 18:24:25 +0100 | [diff] [blame] | 741 | const char *to_copy = path; |
| 742 | |
Junio C Hamano | afe8a90 | 2022-05-02 09:50:37 -0700 | [diff] [blame] | 743 | if (!path) |
Matthieu Moy | 395de25 | 2009-11-17 18:24:25 +0100 | [diff] [blame] | 744 | goto return_null; |
Johannes Schindelin | e394a16 | 2021-07-24 22:06:53 +0000 | [diff] [blame] | 745 | |
| 746 | if (skip_prefix(path, "%(prefix)/", &path)) |
| 747 | return system_path(path); |
| 748 | |
Matthieu Moy | 395de25 | 2009-11-17 18:24:25 +0100 | [diff] [blame] | 749 | if (path[0] == '~') { |
Jeff King | 53ec551 | 2014-01-27 20:36:12 -0500 | [diff] [blame] | 750 | const char *first_slash = strchrnul(path, '/'); |
Matthieu Moy | 395de25 | 2009-11-17 18:24:25 +0100 | [diff] [blame] | 751 | const char *username = path + 1; |
| 752 | size_t username_len = first_slash - username; |
Matthieu Moy | df2a79f | 2009-11-19 16:21:15 +0100 | [diff] [blame] | 753 | if (username_len == 0) { |
| 754 | const char *home = getenv("HOME"); |
Jonathan Nieder | 79bf149 | 2010-07-26 10:06:51 -0500 | [diff] [blame] | 755 | if (!home) |
| 756 | goto return_null; |
Nguyễn Thái Ngọc Duy | 4aad2f1 | 2017-04-05 17:24:38 +0700 | [diff] [blame] | 757 | if (real_home) |
René Scharfe | fa2bb34 | 2017-10-01 16:44:06 +0200 | [diff] [blame] | 758 | strbuf_add_real_path(&user_path, home); |
Nguyễn Thái Ngọc Duy | 4aad2f1 | 2017-04-05 17:24:38 +0700 | [diff] [blame] | 759 | else |
| 760 | strbuf_addstr(&user_path, home); |
Johannes Schindelin | 5ca6b7b | 2016-03-23 11:55:00 +0100 | [diff] [blame] | 761 | #ifdef GIT_WINDOWS_NATIVE |
| 762 | convert_slashes(user_path.buf); |
| 763 | #endif |
Matthieu Moy | df2a79f | 2009-11-19 16:21:15 +0100 | [diff] [blame] | 764 | } else { |
| 765 | struct passwd *pw = getpw_str(username, username_len); |
| 766 | if (!pw) |
| 767 | goto return_null; |
René Scharfe | cedc61a | 2014-07-17 01:38:18 +0200 | [diff] [blame] | 768 | strbuf_addstr(&user_path, pw->pw_dir); |
Junio C Hamano | d79374c | 2005-12-03 01:45:57 -0800 | [diff] [blame] | 769 | } |
Matthieu Moy | 395de25 | 2009-11-17 18:24:25 +0100 | [diff] [blame] | 770 | to_copy = first_slash; |
Junio C Hamano | 0870ca7 | 2005-11-18 14:59:34 -0800 | [diff] [blame] | 771 | } |
René Scharfe | cedc61a | 2014-07-17 01:38:18 +0200 | [diff] [blame] | 772 | strbuf_addstr(&user_path, to_copy); |
Matthieu Moy | 395de25 | 2009-11-17 18:24:25 +0100 | [diff] [blame] | 773 | return strbuf_detach(&user_path, NULL); |
| 774 | return_null: |
| 775 | strbuf_release(&user_path); |
| 776 | return NULL; |
Junio C Hamano | d79374c | 2005-12-03 01:45:57 -0800 | [diff] [blame] | 777 | } |
Andreas Ericsson | 54f4b87 | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 778 | |
Junio C Hamano | d79374c | 2005-12-03 01:45:57 -0800 | [diff] [blame] | 779 | /* |
| 780 | * First, one directory to try is determined by the following algorithm. |
| 781 | * |
| 782 | * (0) If "strict" is given, the path is used as given and no DWIM is |
| 783 | * done. Otherwise: |
| 784 | * (1) "~/path" to mean path under the running user's home directory; |
| 785 | * (2) "~user/path" to mean path under named user's home directory; |
| 786 | * (3) "relative/path" to mean cwd relative directory; or |
| 787 | * (4) "/absolute/path" to mean absolute directory. |
| 788 | * |
Paul Tan | c8c3f1d | 2015-03-31 21:39:27 +0800 | [diff] [blame] | 789 | * Unless "strict" is given, we check "%s/.git", "%s", "%s.git/.git", "%s.git" |
| 790 | * in this order. We select the first one that is a valid git repository, and |
| 791 | * chdir() to it. If none match, or we fail to chdir, we return NULL. |
Junio C Hamano | d79374c | 2005-12-03 01:45:57 -0800 | [diff] [blame] | 792 | * |
| 793 | * If all goes well, we return the directory we used to chdir() (but |
| 794 | * before ~user is expanded), avoiding getcwd() resolving symbolic |
| 795 | * links. User relative paths are also returned as they are given, |
| 796 | * except DWIM suffixing. |
| 797 | */ |
Erik Faye-Lund | 1c64b48 | 2011-10-04 16:02:00 -0400 | [diff] [blame] | 798 | const char *enter_repo(const char *path, int strict) |
Junio C Hamano | d79374c | 2005-12-03 01:45:57 -0800 | [diff] [blame] | 799 | { |
Jeff King | e9ba678 | 2015-09-24 17:07:45 -0400 | [diff] [blame] | 800 | static struct strbuf validated_path = STRBUF_INIT; |
| 801 | static struct strbuf used_path = STRBUF_INIT; |
Junio C Hamano | d79374c | 2005-12-03 01:45:57 -0800 | [diff] [blame] | 802 | |
| 803 | if (!path) |
| 804 | return NULL; |
| 805 | |
| 806 | if (!strict) { |
| 807 | static const char *suffix[] = { |
Jeff King | b3256eb | 2012-02-02 16:59:13 -0500 | [diff] [blame] | 808 | "/.git", "", ".git/.git", ".git", NULL, |
Junio C Hamano | d79374c | 2005-12-03 01:45:57 -0800 | [diff] [blame] | 809 | }; |
Phil Hord | 0310676 | 2011-10-04 16:05:17 -0400 | [diff] [blame] | 810 | const char *gitfile; |
Junio C Hamano | d79374c | 2005-12-03 01:45:57 -0800 | [diff] [blame] | 811 | int len = strlen(path); |
| 812 | int i; |
Erik Faye-Lund | 1c64b48 | 2011-10-04 16:02:00 -0400 | [diff] [blame] | 813 | while ((1 < len) && (path[len-1] == '/')) |
Junio C Hamano | d79374c | 2005-12-03 01:45:57 -0800 | [diff] [blame] | 814 | len--; |
Erik Faye-Lund | 1c64b48 | 2011-10-04 16:02:00 -0400 | [diff] [blame] | 815 | |
Jeff King | e9ba678 | 2015-09-24 17:07:45 -0400 | [diff] [blame] | 816 | /* |
| 817 | * We can handle arbitrary-sized buffers, but this remains as a |
| 818 | * sanity check on untrusted input. |
| 819 | */ |
Junio C Hamano | d79374c | 2005-12-03 01:45:57 -0800 | [diff] [blame] | 820 | if (PATH_MAX <= len) |
| 821 | return NULL; |
Erik Faye-Lund | 1c64b48 | 2011-10-04 16:02:00 -0400 | [diff] [blame] | 822 | |
Jeff King | e9ba678 | 2015-09-24 17:07:45 -0400 | [diff] [blame] | 823 | strbuf_reset(&used_path); |
| 824 | strbuf_reset(&validated_path); |
| 825 | strbuf_add(&used_path, path, len); |
| 826 | strbuf_add(&validated_path, path, len); |
| 827 | |
| 828 | if (used_path.buf[0] == '~') { |
Johannes Schindelin | a03b097 | 2021-07-24 22:06:52 +0000 | [diff] [blame] | 829 | char *newpath = interpolate_path(used_path.buf, 0); |
Jeff King | e9ba678 | 2015-09-24 17:07:45 -0400 | [diff] [blame] | 830 | if (!newpath) |
Junio C Hamano | d79374c | 2005-12-03 01:45:57 -0800 | [diff] [blame] | 831 | return NULL; |
Jeff King | e9ba678 | 2015-09-24 17:07:45 -0400 | [diff] [blame] | 832 | strbuf_attach(&used_path, newpath, strlen(newpath), |
| 833 | strlen(newpath)); |
Junio C Hamano | d79374c | 2005-12-03 01:45:57 -0800 | [diff] [blame] | 834 | } |
Junio C Hamano | d79374c | 2005-12-03 01:45:57 -0800 | [diff] [blame] | 835 | for (i = 0; suffix[i]; i++) { |
Jeff King | b3256eb | 2012-02-02 16:59:13 -0500 | [diff] [blame] | 836 | struct stat st; |
Jeff King | e9ba678 | 2015-09-24 17:07:45 -0400 | [diff] [blame] | 837 | size_t baselen = used_path.len; |
| 838 | strbuf_addstr(&used_path, suffix[i]); |
| 839 | if (!stat(used_path.buf, &st) && |
Jeff King | b3256eb | 2012-02-02 16:59:13 -0500 | [diff] [blame] | 840 | (S_ISREG(st.st_mode) || |
Jeff King | e9ba678 | 2015-09-24 17:07:45 -0400 | [diff] [blame] | 841 | (S_ISDIR(st.st_mode) && is_git_directory(used_path.buf)))) { |
| 842 | strbuf_addstr(&validated_path, suffix[i]); |
Junio C Hamano | d79374c | 2005-12-03 01:45:57 -0800 | [diff] [blame] | 843 | break; |
| 844 | } |
Jeff King | e9ba678 | 2015-09-24 17:07:45 -0400 | [diff] [blame] | 845 | strbuf_setlen(&used_path, baselen); |
Junio C Hamano | d79374c | 2005-12-03 01:45:57 -0800 | [diff] [blame] | 846 | } |
Phil Hord | 0310676 | 2011-10-04 16:05:17 -0400 | [diff] [blame] | 847 | if (!suffix[i]) |
| 848 | return NULL; |
Junio C Hamano | 7889179 | 2015-10-20 15:24:00 -0700 | [diff] [blame] | 849 | gitfile = read_gitfile(used_path.buf); |
Jeff King | e9ba678 | 2015-09-24 17:07:45 -0400 | [diff] [blame] | 850 | if (gitfile) { |
| 851 | strbuf_reset(&used_path); |
| 852 | strbuf_addstr(&used_path, gitfile); |
| 853 | } |
| 854 | if (chdir(used_path.buf)) |
Junio C Hamano | d79374c | 2005-12-03 01:45:57 -0800 | [diff] [blame] | 855 | return NULL; |
Jeff King | e9ba678 | 2015-09-24 17:07:45 -0400 | [diff] [blame] | 856 | path = validated_path.buf; |
Junio C Hamano | d79374c | 2005-12-03 01:45:57 -0800 | [diff] [blame] | 857 | } |
Nguyễn Thái Ngọc Duy | 1f5fbe1 | 2015-09-28 20:06:14 +0700 | [diff] [blame] | 858 | else { |
| 859 | const char *gitfile = read_gitfile(path); |
| 860 | if (gitfile) |
| 861 | path = gitfile; |
| 862 | if (chdir(path)) |
| 863 | return NULL; |
| 864 | } |
Junio C Hamano | d79374c | 2005-12-03 01:45:57 -0800 | [diff] [blame] | 865 | |
Nguyễn Thái Ngọc Duy | 0f64cc4 | 2015-09-28 20:06:13 +0700 | [diff] [blame] | 866 | if (is_git_directory(".")) { |
Alexandr Miloslavskiy | 0915a5b | 2020-03-06 19:03:13 +0000 | [diff] [blame] | 867 | set_git_dir(".", 0); |
brian m. carlson | cfe3917 | 2020-02-22 20:17:37 +0000 | [diff] [blame] | 868 | check_repository_format(NULL); |
Junio C Hamano | d79374c | 2005-12-03 01:45:57 -0800 | [diff] [blame] | 869 | return path; |
Andreas Ericsson | 54f4b87 | 2005-11-17 20:37:14 +0100 | [diff] [blame] | 870 | } |
| 871 | |
| 872 | return NULL; |
| 873 | } |
Junio C Hamano | 138086a | 2006-06-09 22:07:23 -0700 | [diff] [blame] | 874 | |
Torsten Bögershausen | cbe43b8 | 2013-03-30 10:53:47 +0100 | [diff] [blame] | 875 | static int calc_shared_perm(int mode) |
Junio C Hamano | 138086a | 2006-06-09 22:07:23 -0700 | [diff] [blame] | 876 | { |
Torsten Bögershausen | cbe43b8 | 2013-03-30 10:53:47 +0100 | [diff] [blame] | 877 | int tweak; |
Junio C Hamano | 138086a | 2006-06-09 22:07:23 -0700 | [diff] [blame] | 878 | |
Jeff King | 7875acb | 2016-03-11 17:36:49 -0500 | [diff] [blame] | 879 | if (get_shared_repository() < 0) |
| 880 | tweak = -get_shared_repository(); |
Junio C Hamano | 5a688fe | 2009-03-25 16:19:36 -0700 | [diff] [blame] | 881 | else |
Jeff King | 7875acb | 2016-03-11 17:36:49 -0500 | [diff] [blame] | 882 | tweak = get_shared_repository(); |
Junio C Hamano | 94df250 | 2006-06-09 23:09:49 -0700 | [diff] [blame] | 883 | |
Junio C Hamano | 5a688fe | 2009-03-25 16:19:36 -0700 | [diff] [blame] | 884 | if (!(mode & S_IWUSR)) |
| 885 | tweak &= ~0222; |
| 886 | if (mode & S_IXUSR) |
| 887 | /* Copy read bits to execute bits */ |
| 888 | tweak |= (tweak & 0444) >> 2; |
Jeff King | 7875acb | 2016-03-11 17:36:49 -0500 | [diff] [blame] | 889 | if (get_shared_repository() < 0) |
Junio C Hamano | 5a688fe | 2009-03-25 16:19:36 -0700 | [diff] [blame] | 890 | mode = (mode & ~0777) | tweak; |
| 891 | else |
Petr Baudis | 8c6202d | 2008-07-12 03:15:03 +0200 | [diff] [blame] | 892 | mode |= tweak; |
Junio C Hamano | 94df250 | 2006-06-09 23:09:49 -0700 | [diff] [blame] | 893 | |
Torsten Bögershausen | cbe43b8 | 2013-03-30 10:53:47 +0100 | [diff] [blame] | 894 | return mode; |
| 895 | } |
| 896 | |
| 897 | |
| 898 | int adjust_shared_perm(const char *path) |
| 899 | { |
| 900 | int old_mode, new_mode; |
| 901 | |
Jeff King | 7875acb | 2016-03-11 17:36:49 -0500 | [diff] [blame] | 902 | if (!get_shared_repository()) |
Torsten Bögershausen | cbe43b8 | 2013-03-30 10:53:47 +0100 | [diff] [blame] | 903 | return 0; |
| 904 | if (get_st_mode_bits(path, &old_mode) < 0) |
| 905 | return -1; |
| 906 | |
| 907 | new_mode = calc_shared_perm(old_mode); |
| 908 | if (S_ISDIR(old_mode)) { |
Heikki Orsila | 06cbe85 | 2008-04-16 11:34:24 +0300 | [diff] [blame] | 909 | /* Copy read bits to execute bits */ |
Torsten Bögershausen | cbe43b8 | 2013-03-30 10:53:47 +0100 | [diff] [blame] | 910 | new_mode |= (new_mode & 0444) >> 2; |
Junio C Hamano | 671bbf7 | 2022-10-28 14:16:09 -0700 | [diff] [blame] | 911 | |
| 912 | /* |
| 913 | * g+s matters only if any extra access is granted |
| 914 | * based on group membership. |
| 915 | */ |
| 916 | if (FORCE_DIR_SET_GID && (new_mode & 060)) |
| 917 | new_mode |= FORCE_DIR_SET_GID; |
Heikki Orsila | 06cbe85 | 2008-04-16 11:34:24 +0300 | [diff] [blame] | 918 | } |
| 919 | |
Torsten Bögershausen | cbe43b8 | 2013-03-30 10:53:47 +0100 | [diff] [blame] | 920 | if (((old_mode ^ new_mode) & ~S_IFMT) && |
| 921 | chmod(path, (new_mode & ~S_IFMT)) < 0) |
Junio C Hamano | 138086a | 2006-06-09 22:07:23 -0700 | [diff] [blame] | 922 | return -2; |
| 923 | return 0; |
| 924 | } |
Johannes Schindelin | e5392c5 | 2007-08-01 01:28:59 +0100 | [diff] [blame] | 925 | |
David Turner | eb33876 | 2015-11-10 12:42:38 +0100 | [diff] [blame] | 926 | void safe_create_dir(const char *dir, int share) |
| 927 | { |
| 928 | if (mkdir(dir, 0777) < 0) { |
| 929 | if (errno != EEXIST) { |
| 930 | perror(dir); |
| 931 | exit(1); |
| 932 | } |
| 933 | } |
| 934 | else if (share && adjust_shared_perm(dir)) |
| 935 | die(_("Could not make %s writable by group"), dir); |
| 936 | } |
| 937 | |
Jiang Xin | 7fbd422 | 2013-10-14 10:29:39 +0800 | [diff] [blame] | 938 | static int have_same_root(const char *path1, const char *path2) |
| 939 | { |
| 940 | int is_abs1, is_abs2; |
| 941 | |
| 942 | is_abs1 = is_absolute_path(path1); |
| 943 | is_abs2 = is_absolute_path(path2); |
| 944 | return (is_abs1 && is_abs2 && tolower(path1[0]) == tolower(path2[0])) || |
| 945 | (!is_abs1 && !is_abs2); |
| 946 | } |
| 947 | |
Jiang Xin | e02ca72 | 2013-06-25 23:53:43 +0800 | [diff] [blame] | 948 | /* |
| 949 | * Give path as relative to prefix. |
| 950 | * |
| 951 | * The strbuf may or may not be used, so do not assume it contains the |
| 952 | * returned path. |
| 953 | */ |
| 954 | const char *relative_path(const char *in, const char *prefix, |
| 955 | struct strbuf *sb) |
Linus Torvalds | 044bbbc | 2008-06-19 12:34:06 -0700 | [diff] [blame] | 956 | { |
Jiang Xin | e02ca72 | 2013-06-25 23:53:43 +0800 | [diff] [blame] | 957 | int in_len = in ? strlen(in) : 0; |
| 958 | int prefix_len = prefix ? strlen(prefix) : 0; |
| 959 | int in_off = 0; |
| 960 | int prefix_off = 0; |
Junio C Hamano | 288123f | 2010-01-21 19:05:19 -0800 | [diff] [blame] | 961 | int i = 0, j = 0; |
| 962 | |
Jiang Xin | e02ca72 | 2013-06-25 23:53:43 +0800 | [diff] [blame] | 963 | if (!in_len) |
| 964 | return "./"; |
| 965 | else if (!prefix_len) |
| 966 | return in; |
| 967 | |
Johannes Schindelin | 2f36eed | 2016-01-12 08:57:22 +0100 | [diff] [blame] | 968 | if (have_same_root(in, prefix)) |
Jiang Xin | 7fbd422 | 2013-10-14 10:29:39 +0800 | [diff] [blame] | 969 | /* bypass dos_drive, for "c:" is identical to "C:" */ |
Johannes Schindelin | 2f36eed | 2016-01-12 08:57:22 +0100 | [diff] [blame] | 970 | i = j = has_dos_drive_prefix(in); |
| 971 | else { |
Jiang Xin | 7fbd422 | 2013-10-14 10:29:39 +0800 | [diff] [blame] | 972 | return in; |
| 973 | } |
| 974 | |
Jiang Xin | e02ca72 | 2013-06-25 23:53:43 +0800 | [diff] [blame] | 975 | while (i < prefix_len && j < in_len && prefix[i] == in[j]) { |
| 976 | if (is_dir_sep(prefix[i])) { |
| 977 | while (is_dir_sep(prefix[i])) |
Junio C Hamano | 288123f | 2010-01-21 19:05:19 -0800 | [diff] [blame] | 978 | i++; |
Jiang Xin | e02ca72 | 2013-06-25 23:53:43 +0800 | [diff] [blame] | 979 | while (is_dir_sep(in[j])) |
Junio C Hamano | 288123f | 2010-01-21 19:05:19 -0800 | [diff] [blame] | 980 | j++; |
Jiang Xin | e02ca72 | 2013-06-25 23:53:43 +0800 | [diff] [blame] | 981 | prefix_off = i; |
| 982 | in_off = j; |
| 983 | } else { |
| 984 | i++; |
| 985 | j++; |
| 986 | } |
| 987 | } |
| 988 | |
| 989 | if ( |
| 990 | /* "prefix" seems like prefix of "in" */ |
| 991 | i >= prefix_len && |
| 992 | /* |
| 993 | * but "/foo" is not a prefix of "/foobar" |
| 994 | * (i.e. prefix not end with '/') |
| 995 | */ |
| 996 | prefix_off < prefix_len) { |
| 997 | if (j >= in_len) { |
| 998 | /* in="/a/b", prefix="/a/b" */ |
| 999 | in_off = in_len; |
| 1000 | } else if (is_dir_sep(in[j])) { |
| 1001 | /* in="/a/b/c", prefix="/a/b" */ |
| 1002 | while (is_dir_sep(in[j])) |
| 1003 | j++; |
| 1004 | in_off = j; |
| 1005 | } else { |
| 1006 | /* in="/a/bbb/c", prefix="/a/b" */ |
| 1007 | i = prefix_off; |
| 1008 | } |
| 1009 | } else if ( |
| 1010 | /* "in" is short than "prefix" */ |
| 1011 | j >= in_len && |
| 1012 | /* "in" not end with '/' */ |
| 1013 | in_off < in_len) { |
| 1014 | if (is_dir_sep(prefix[i])) { |
| 1015 | /* in="/a/b", prefix="/a/b/c/" */ |
| 1016 | while (is_dir_sep(prefix[i])) |
| 1017 | i++; |
| 1018 | in_off = in_len; |
| 1019 | } |
| 1020 | } |
| 1021 | in += in_off; |
| 1022 | in_len -= in_off; |
| 1023 | |
| 1024 | if (i >= prefix_len) { |
| 1025 | if (!in_len) |
| 1026 | return "./"; |
| 1027 | else |
| 1028 | return in; |
| 1029 | } |
| 1030 | |
| 1031 | strbuf_reset(sb); |
| 1032 | strbuf_grow(sb, in_len); |
| 1033 | |
| 1034 | while (i < prefix_len) { |
| 1035 | if (is_dir_sep(prefix[i])) { |
| 1036 | strbuf_addstr(sb, "../"); |
| 1037 | while (is_dir_sep(prefix[i])) |
| 1038 | i++; |
Junio C Hamano | 288123f | 2010-01-21 19:05:19 -0800 | [diff] [blame] | 1039 | continue; |
Junio C Hamano | 288123f | 2010-01-21 19:05:19 -0800 | [diff] [blame] | 1040 | } |
| 1041 | i++; |
Junio C Hamano | 288123f | 2010-01-21 19:05:19 -0800 | [diff] [blame] | 1042 | } |
Jiang Xin | e02ca72 | 2013-06-25 23:53:43 +0800 | [diff] [blame] | 1043 | if (!is_dir_sep(prefix[prefix_len - 1])) |
| 1044 | strbuf_addstr(sb, "../"); |
| 1045 | |
| 1046 | strbuf_addstr(sb, in); |
| 1047 | |
| 1048 | return sb->buf; |
Linus Torvalds | 044bbbc | 2008-06-19 12:34:06 -0700 | [diff] [blame] | 1049 | } |
David Reiss | ae299be | 2008-05-19 23:48:54 -0700 | [diff] [blame] | 1050 | |
| 1051 | /* |
Jiang Xin | 41894ae | 2013-10-14 10:29:40 +0800 | [diff] [blame] | 1052 | * A simpler implementation of relative_path |
| 1053 | * |
| 1054 | * Get relative path by removing "prefix" from "in". This function |
| 1055 | * first appears in v1.5.6-1-g044bbbc, and makes git_dir shorter |
| 1056 | * to increase performance when traversing the path to work_tree. |
| 1057 | */ |
| 1058 | const char *remove_leading_path(const char *in, const char *prefix) |
| 1059 | { |
Jeff King | 4635768 | 2015-09-24 17:07:47 -0400 | [diff] [blame] | 1060 | static struct strbuf buf = STRBUF_INIT; |
Jiang Xin | 41894ae | 2013-10-14 10:29:40 +0800 | [diff] [blame] | 1061 | int i = 0, j = 0; |
| 1062 | |
| 1063 | if (!prefix || !prefix[0]) |
| 1064 | return in; |
| 1065 | while (prefix[i]) { |
| 1066 | if (is_dir_sep(prefix[i])) { |
| 1067 | if (!is_dir_sep(in[j])) |
| 1068 | return in; |
| 1069 | while (is_dir_sep(prefix[i])) |
| 1070 | i++; |
| 1071 | while (is_dir_sep(in[j])) |
| 1072 | j++; |
| 1073 | continue; |
| 1074 | } else if (in[j] != prefix[i]) { |
| 1075 | return in; |
| 1076 | } |
| 1077 | i++; |
| 1078 | j++; |
| 1079 | } |
| 1080 | if ( |
| 1081 | /* "/foo" is a prefix of "/foo" */ |
| 1082 | in[j] && |
| 1083 | /* "/foo" is not a prefix of "/foobar" */ |
| 1084 | !is_dir_sep(prefix[i-1]) && !is_dir_sep(in[j]) |
| 1085 | ) |
| 1086 | return in; |
| 1087 | while (is_dir_sep(in[j])) |
| 1088 | j++; |
Jeff King | 4635768 | 2015-09-24 17:07:47 -0400 | [diff] [blame] | 1089 | |
| 1090 | strbuf_reset(&buf); |
Jiang Xin | 41894ae | 2013-10-14 10:29:40 +0800 | [diff] [blame] | 1091 | if (!in[j]) |
Jeff King | 4635768 | 2015-09-24 17:07:47 -0400 | [diff] [blame] | 1092 | strbuf_addstr(&buf, "."); |
Jiang Xin | 41894ae | 2013-10-14 10:29:40 +0800 | [diff] [blame] | 1093 | else |
Jeff King | 4635768 | 2015-09-24 17:07:47 -0400 | [diff] [blame] | 1094 | strbuf_addstr(&buf, in + j); |
| 1095 | return buf.buf; |
Jiang Xin | 41894ae | 2013-10-14 10:29:40 +0800 | [diff] [blame] | 1096 | } |
| 1097 | |
| 1098 | /* |
Johannes Sixt | f2a782b | 2009-02-07 16:08:31 +0100 | [diff] [blame] | 1099 | * It is okay if dst == src, but they should not overlap otherwise. |
Jeff King | 9734b74 | 2020-01-30 04:52:19 -0500 | [diff] [blame] | 1100 | * The "dst" buffer must be at least as long as "src"; normalizing may shrink |
| 1101 | * the size of the path, but will never grow it. |
David Reiss | ae299be | 2008-05-19 23:48:54 -0700 | [diff] [blame] | 1102 | * |
Johannes Sixt | f2a782b | 2009-02-07 16:08:31 +0100 | [diff] [blame] | 1103 | * Performs the following normalizations on src, storing the result in dst: |
| 1104 | * - Ensures that components are separated by '/' (Windows only) |
Johannes Sixt | 7814fbe | 2016-12-14 20:37:38 +0100 | [diff] [blame] | 1105 | * - Squashes sequences of '/' except "//server/share" on Windows |
David Reiss | ae299be | 2008-05-19 23:48:54 -0700 | [diff] [blame] | 1106 | * - Removes "." components. |
| 1107 | * - Removes ".." components, and the components the precede them. |
Johannes Sixt | f2a782b | 2009-02-07 16:08:31 +0100 | [diff] [blame] | 1108 | * Returns failure (non-zero) if a ".." component appears as first path |
| 1109 | * component anytime during the normalization. Otherwise, returns success (0). |
David Reiss | ae299be | 2008-05-19 23:48:54 -0700 | [diff] [blame] | 1110 | * |
| 1111 | * Note that this function is purely textual. It does not follow symlinks, |
| 1112 | * verify the existence of the path, or make any system calls. |
Nguyễn Thái Ngọc Duy | 645a29c | 2013-07-14 15:36:03 +0700 | [diff] [blame] | 1113 | * |
| 1114 | * prefix_len != NULL is for a specific case of prefix_pathspec(): |
| 1115 | * assume that src == dst and src[0..prefix_len-1] is already |
| 1116 | * normalized, any time "../" eats up to the prefix_len part, |
| 1117 | * prefix_len is reduced. In the end prefix_len is the remaining |
| 1118 | * prefix that has not been overridden by user pathspec. |
Ray Donnelly | b2a7123 | 2015-10-01 20:04:17 +0100 | [diff] [blame] | 1119 | * |
| 1120 | * NEEDSWORK: This function doesn't perform normalization w.r.t. trailing '/'. |
| 1121 | * For everything but the root folder itself, the normalized path should not |
| 1122 | * end with a '/', then the callers need to be fixed up accordingly. |
| 1123 | * |
David Reiss | ae299be | 2008-05-19 23:48:54 -0700 | [diff] [blame] | 1124 | */ |
Nguyễn Thái Ngọc Duy | 645a29c | 2013-07-14 15:36:03 +0700 | [diff] [blame] | 1125 | int normalize_path_copy_len(char *dst, const char *src, int *prefix_len) |
David Reiss | ae299be | 2008-05-19 23:48:54 -0700 | [diff] [blame] | 1126 | { |
Johannes Sixt | f3cad0a | 2009-02-07 16:08:28 +0100 | [diff] [blame] | 1127 | char *dst0; |
Johannes Sixt | 7814fbe | 2016-12-14 20:37:38 +0100 | [diff] [blame] | 1128 | const char *end; |
David Reiss | ae299be | 2008-05-19 23:48:54 -0700 | [diff] [blame] | 1129 | |
Johannes Sixt | 7814fbe | 2016-12-14 20:37:38 +0100 | [diff] [blame] | 1130 | /* |
| 1131 | * Copy initial part of absolute path: "/", "C:/", "//server/share/". |
| 1132 | */ |
| 1133 | end = src + offset_1st_component(src); |
| 1134 | while (src < end) { |
| 1135 | char c = *src++; |
| 1136 | if (is_dir_sep(c)) |
| 1137 | c = '/'; |
| 1138 | *dst++ = c; |
| 1139 | } |
Johannes Sixt | f3cad0a | 2009-02-07 16:08:28 +0100 | [diff] [blame] | 1140 | dst0 = dst; |
David Reiss | ae299be | 2008-05-19 23:48:54 -0700 | [diff] [blame] | 1141 | |
Johannes Sixt | 7814fbe | 2016-12-14 20:37:38 +0100 | [diff] [blame] | 1142 | while (is_dir_sep(*src)) |
| 1143 | src++; |
David Reiss | ae299be | 2008-05-19 23:48:54 -0700 | [diff] [blame] | 1144 | |
Johannes Sixt | f3cad0a | 2009-02-07 16:08:28 +0100 | [diff] [blame] | 1145 | for (;;) { |
| 1146 | char c = *src; |
David Reiss | ae299be | 2008-05-19 23:48:54 -0700 | [diff] [blame] | 1147 | |
Johannes Sixt | f3cad0a | 2009-02-07 16:08:28 +0100 | [diff] [blame] | 1148 | /* |
| 1149 | * A path component that begins with . could be |
| 1150 | * special: |
| 1151 | * (1) "." and ends -- ignore and terminate. |
| 1152 | * (2) "./" -- ignore them, eat slash and continue. |
| 1153 | * (3) ".." and ends -- strip one and terminate. |
| 1154 | * (4) "../" -- strip one, eat slash and continue. |
| 1155 | */ |
| 1156 | if (c == '.') { |
| 1157 | if (!src[1]) { |
| 1158 | /* (1) */ |
| 1159 | src++; |
| 1160 | } else if (is_dir_sep(src[1])) { |
| 1161 | /* (2) */ |
| 1162 | src += 2; |
| 1163 | while (is_dir_sep(*src)) |
| 1164 | src++; |
| 1165 | continue; |
| 1166 | } else if (src[1] == '.') { |
| 1167 | if (!src[2]) { |
| 1168 | /* (3) */ |
| 1169 | src += 2; |
| 1170 | goto up_one; |
| 1171 | } else if (is_dir_sep(src[2])) { |
| 1172 | /* (4) */ |
| 1173 | src += 3; |
| 1174 | while (is_dir_sep(*src)) |
| 1175 | src++; |
| 1176 | goto up_one; |
| 1177 | } |
| 1178 | } |
| 1179 | } |
| 1180 | |
| 1181 | /* copy up to the next '/', and eat all '/' */ |
| 1182 | while ((c = *src++) != '\0' && !is_dir_sep(c)) |
| 1183 | *dst++ = c; |
| 1184 | if (is_dir_sep(c)) { |
| 1185 | *dst++ = '/'; |
| 1186 | while (is_dir_sep(c)) |
| 1187 | c = *src++; |
| 1188 | src--; |
| 1189 | } else if (!c) |
| 1190 | break; |
| 1191 | continue; |
| 1192 | |
| 1193 | up_one: |
| 1194 | /* |
| 1195 | * dst0..dst is prefix portion, and dst[-1] is '/'; |
| 1196 | * go up one level. |
| 1197 | */ |
Johannes Sixt | f42302b | 2009-02-07 16:08:30 +0100 | [diff] [blame] | 1198 | dst--; /* go to trailing '/' */ |
| 1199 | if (dst <= dst0) |
Johannes Sixt | f3cad0a | 2009-02-07 16:08:28 +0100 | [diff] [blame] | 1200 | return -1; |
Johannes Sixt | f42302b | 2009-02-07 16:08:30 +0100 | [diff] [blame] | 1201 | /* Windows: dst[-1] cannot be backslash anymore */ |
| 1202 | while (dst0 < dst && dst[-1] != '/') |
| 1203 | dst--; |
Nguyễn Thái Ngọc Duy | 645a29c | 2013-07-14 15:36:03 +0700 | [diff] [blame] | 1204 | if (prefix_len && *prefix_len > dst - dst0) |
| 1205 | *prefix_len = dst - dst0; |
Johannes Sixt | f3cad0a | 2009-02-07 16:08:28 +0100 | [diff] [blame] | 1206 | } |
David Reiss | ae299be | 2008-05-19 23:48:54 -0700 | [diff] [blame] | 1207 | *dst = '\0'; |
Johannes Sixt | f3cad0a | 2009-02-07 16:08:28 +0100 | [diff] [blame] | 1208 | return 0; |
David Reiss | ae299be | 2008-05-19 23:48:54 -0700 | [diff] [blame] | 1209 | } |
David Reiss | 0454dd9 | 2008-05-19 23:49:26 -0700 | [diff] [blame] | 1210 | |
Nguyễn Thái Ngọc Duy | 645a29c | 2013-07-14 15:36:03 +0700 | [diff] [blame] | 1211 | int normalize_path_copy(char *dst, const char *src) |
| 1212 | { |
| 1213 | return normalize_path_copy_len(dst, src, NULL); |
| 1214 | } |
| 1215 | |
David Reiss | 0454dd9 | 2008-05-19 23:49:26 -0700 | [diff] [blame] | 1216 | /* |
| 1217 | * path = Canonical absolute path |
Michael Haggerty | 9e2326c | 2012-10-28 17:16:25 +0100 | [diff] [blame] | 1218 | * prefixes = string_list containing normalized, absolute paths without |
| 1219 | * trailing slashes (except for the root directory, which is denoted by "/"). |
David Reiss | 0454dd9 | 2008-05-19 23:49:26 -0700 | [diff] [blame] | 1220 | * |
Michael Haggerty | 9e2326c | 2012-10-28 17:16:25 +0100 | [diff] [blame] | 1221 | * Determines, for each path in prefixes, whether the "prefix" |
David Reiss | 0454dd9 | 2008-05-19 23:49:26 -0700 | [diff] [blame] | 1222 | * is an ancestor directory of path. Returns the length of the longest |
| 1223 | * ancestor directory, excluding any trailing slashes, or -1 if no prefix |
Michael Haggerty | 31171d9 | 2012-10-28 17:16:24 +0100 | [diff] [blame] | 1224 | * is an ancestor. (Note that this means 0 is returned if prefixes is |
| 1225 | * ["/"].) "/foo" is not considered an ancestor of "/foobar". Directories |
David Reiss | 0454dd9 | 2008-05-19 23:49:26 -0700 | [diff] [blame] | 1226 | * are not considered to be their own ancestors. path must be in a |
| 1227 | * canonical form: empty components, or "." or ".." components are not |
Michael Haggerty | 9e2326c | 2012-10-28 17:16:25 +0100 | [diff] [blame] | 1228 | * allowed. |
David Reiss | 0454dd9 | 2008-05-19 23:49:26 -0700 | [diff] [blame] | 1229 | */ |
Michael Haggerty | 31171d9 | 2012-10-28 17:16:24 +0100 | [diff] [blame] | 1230 | int longest_ancestor_length(const char *path, struct string_list *prefixes) |
David Reiss | 0454dd9 | 2008-05-19 23:49:26 -0700 | [diff] [blame] | 1231 | { |
Michael Haggerty | a5ccdbe | 2012-10-28 17:16:23 +0100 | [diff] [blame] | 1232 | int i, max_len = -1; |
David Reiss | 0454dd9 | 2008-05-19 23:49:26 -0700 | [diff] [blame] | 1233 | |
Michael Haggerty | 31171d9 | 2012-10-28 17:16:24 +0100 | [diff] [blame] | 1234 | if (!strcmp(path, "/")) |
David Reiss | 0454dd9 | 2008-05-19 23:49:26 -0700 | [diff] [blame] | 1235 | return -1; |
| 1236 | |
Michael Haggerty | 31171d9 | 2012-10-28 17:16:24 +0100 | [diff] [blame] | 1237 | for (i = 0; i < prefixes->nr; i++) { |
| 1238 | const char *ceil = prefixes->items[i].string; |
Michael Haggerty | a5ccdbe | 2012-10-28 17:16:23 +0100 | [diff] [blame] | 1239 | int len = strlen(ceil); |
| 1240 | |
Johannes Schindelin | fdcad5a | 2022-03-23 23:00:41 +0100 | [diff] [blame] | 1241 | /* |
| 1242 | * For root directories (`/`, `C:/`, `//server/share/`) |
| 1243 | * adjust the length to exclude the trailing slash. |
| 1244 | */ |
| 1245 | if (len > 0 && ceil[len - 1] == '/') |
| 1246 | len--; |
| 1247 | |
| 1248 | if (strncmp(path, ceil, len) || |
| 1249 | path[len] != '/' || !path[len + 1]) |
Michael Haggerty | 9e2326c | 2012-10-28 17:16:25 +0100 | [diff] [blame] | 1250 | continue; /* no match */ |
David Reiss | 0454dd9 | 2008-05-19 23:49:26 -0700 | [diff] [blame] | 1251 | |
Michael Haggerty | 9e2326c | 2012-10-28 17:16:25 +0100 | [diff] [blame] | 1252 | if (len > max_len) |
David Reiss | 0454dd9 | 2008-05-19 23:49:26 -0700 | [diff] [blame] | 1253 | max_len = len; |
David Reiss | 0454dd9 | 2008-05-19 23:49:26 -0700 | [diff] [blame] | 1254 | } |
| 1255 | |
| 1256 | return max_len; |
| 1257 | } |
Johannes Schindelin | 4fcc86b | 2009-02-19 20:10:49 +0100 | [diff] [blame] | 1258 | |
| 1259 | /* strip arbitrary amount of directory separators at end of path */ |
| 1260 | static inline int chomp_trailing_dir_sep(const char *path, int len) |
| 1261 | { |
| 1262 | while (len && is_dir_sep(path[len - 1])) |
| 1263 | len--; |
| 1264 | return len; |
| 1265 | } |
| 1266 | |
| 1267 | /* |
brian m. carlson | ce17feb | 2019-08-25 23:33:39 +0000 | [diff] [blame] | 1268 | * If path ends with suffix (complete path components), returns the offset of |
| 1269 | * the last character in the path before the suffix (sans trailing directory |
| 1270 | * separators), and -1 otherwise. |
| 1271 | */ |
| 1272 | static ssize_t stripped_path_suffix_offset(const char *path, const char *suffix) |
| 1273 | { |
| 1274 | int path_len = strlen(path), suffix_len = strlen(suffix); |
| 1275 | |
| 1276 | while (suffix_len) { |
| 1277 | if (!path_len) |
| 1278 | return -1; |
| 1279 | |
| 1280 | if (is_dir_sep(path[path_len - 1])) { |
| 1281 | if (!is_dir_sep(suffix[suffix_len - 1])) |
| 1282 | return -1; |
| 1283 | path_len = chomp_trailing_dir_sep(path, path_len); |
| 1284 | suffix_len = chomp_trailing_dir_sep(suffix, suffix_len); |
| 1285 | } |
| 1286 | else if (path[--path_len] != suffix[--suffix_len]) |
| 1287 | return -1; |
| 1288 | } |
| 1289 | |
| 1290 | if (path_len && !is_dir_sep(path[path_len - 1])) |
| 1291 | return -1; |
| 1292 | return chomp_trailing_dir_sep(path, path_len); |
| 1293 | } |
| 1294 | |
| 1295 | /* |
| 1296 | * Returns true if the path ends with components, considering only complete path |
| 1297 | * components, and false otherwise. |
| 1298 | */ |
| 1299 | int ends_with_path_components(const char *path, const char *components) |
| 1300 | { |
| 1301 | return stripped_path_suffix_offset(path, components) != -1; |
| 1302 | } |
| 1303 | |
| 1304 | /* |
Johannes Schindelin | 4fcc86b | 2009-02-19 20:10:49 +0100 | [diff] [blame] | 1305 | * If path ends with suffix (complete path components), returns the |
| 1306 | * part before suffix (sans trailing directory separators). |
| 1307 | * Otherwise returns NULL. |
| 1308 | */ |
| 1309 | char *strip_path_suffix(const char *path, const char *suffix) |
| 1310 | { |
brian m. carlson | ce17feb | 2019-08-25 23:33:39 +0000 | [diff] [blame] | 1311 | ssize_t offset = stripped_path_suffix_offset(path, suffix); |
Johannes Schindelin | 4fcc86b | 2009-02-19 20:10:49 +0100 | [diff] [blame] | 1312 | |
brian m. carlson | ce17feb | 2019-08-25 23:33:39 +0000 | [diff] [blame] | 1313 | return offset == -1 ? NULL : xstrndup(path, offset); |
Johannes Schindelin | 4fcc86b | 2009-02-19 20:10:49 +0100 | [diff] [blame] | 1314 | } |
Shawn O. Pearce | 34b6cb8 | 2009-11-09 11:26:43 -0800 | [diff] [blame] | 1315 | |
| 1316 | int daemon_avoid_alias(const char *p) |
| 1317 | { |
| 1318 | int sl, ndot; |
| 1319 | |
| 1320 | /* |
| 1321 | * This resurrects the belts and suspenders paranoia check by HPA |
| 1322 | * done in <435560F7.4080006@zytor.com> thread, now enter_repo() |
Junio C Hamano | 9517e6b | 2010-02-03 21:23:18 -0800 | [diff] [blame] | 1323 | * does not do getcwd() based path canonicalization. |
Shawn O. Pearce | 34b6cb8 | 2009-11-09 11:26:43 -0800 | [diff] [blame] | 1324 | * |
| 1325 | * sl becomes true immediately after seeing '/' and continues to |
| 1326 | * be true as long as dots continue after that without intervening |
| 1327 | * non-dot character. |
| 1328 | */ |
| 1329 | if (!p || (*p != '/' && *p != '~')) |
| 1330 | return -1; |
| 1331 | sl = 1; ndot = 0; |
| 1332 | p++; |
| 1333 | |
| 1334 | while (1) { |
| 1335 | char ch = *p++; |
| 1336 | if (sl) { |
| 1337 | if (ch == '.') |
| 1338 | ndot++; |
| 1339 | else if (ch == '/') { |
| 1340 | if (ndot < 3) |
| 1341 | /* reject //, /./ and /../ */ |
| 1342 | return -1; |
| 1343 | ndot = 0; |
| 1344 | } |
| 1345 | else if (ch == 0) { |
| 1346 | if (0 < ndot && ndot < 3) |
| 1347 | /* reject /.$ and /..$ */ |
| 1348 | return -1; |
| 1349 | return 0; |
| 1350 | } |
| 1351 | else |
| 1352 | sl = ndot = 0; |
| 1353 | } |
| 1354 | else if (ch == 0) |
| 1355 | return 0; |
| 1356 | else if (ch == '/') { |
| 1357 | sl = 1; |
| 1358 | ndot = 0; |
| 1359 | } |
| 1360 | } |
| 1361 | } |
Nguyễn Thái Ngọc Duy | 4bb43de | 2010-02-16 12:22:08 +0700 | [diff] [blame] | 1362 | |
Johannes Schindelin | 525e7fb | 2019-09-16 20:44:31 +0200 | [diff] [blame] | 1363 | /* |
| 1364 | * On NTFS, we need to be careful to disallow certain synonyms of the `.git/` |
| 1365 | * directory: |
| 1366 | * |
| 1367 | * - For historical reasons, file names that end in spaces or periods are |
| 1368 | * automatically trimmed. Therefore, `.git . . ./` is a valid way to refer |
| 1369 | * to `.git/`. |
| 1370 | * |
| 1371 | * - For other historical reasons, file names that do not conform to the 8.3 |
| 1372 | * format (up to eight characters for the basename, three for the file |
| 1373 | * extension, certain characters not allowed such as `+`, etc) are associated |
| 1374 | * with a so-called "short name", at least on the `C:` drive by default. |
| 1375 | * Which means that `git~1/` is a valid way to refer to `.git/`. |
| 1376 | * |
| 1377 | * Note: Technically, `.git/` could receive the short name `git~2` if the |
| 1378 | * short name `git~1` were already used. In Git, however, we guarantee that |
| 1379 | * `.git` is the first item in a directory, therefore it will be associated |
| 1380 | * with the short name `git~1` (unless short names are disabled). |
| 1381 | * |
Johannes Schindelin | 7c3745f | 2019-08-28 12:22:17 +0200 | [diff] [blame] | 1382 | * - For yet other historical reasons, NTFS supports so-called "Alternate Data |
| 1383 | * Streams", i.e. metadata associated with a given file, referred to via |
| 1384 | * `<filename>:<stream-name>:<stream-type>`. There exists a default stream |
| 1385 | * type for directories, allowing `.git/` to be accessed via |
| 1386 | * `.git::$INDEX_ALLOCATION/`. |
| 1387 | * |
Johannes Schindelin | 525e7fb | 2019-09-16 20:44:31 +0200 | [diff] [blame] | 1388 | * When this function returns 1, it indicates that the specified file/directory |
| 1389 | * name refers to a `.git` file or directory, or to any of these synonyms, and |
| 1390 | * Git should therefore not track it. |
| 1391 | * |
Johannes Schindelin | 7c3745f | 2019-08-28 12:22:17 +0200 | [diff] [blame] | 1392 | * For performance reasons, _all_ Alternate Data Streams of `.git/` are |
| 1393 | * forbidden, not just `::$INDEX_ALLOCATION`. |
| 1394 | * |
Johannes Schindelin | 525e7fb | 2019-09-16 20:44:31 +0200 | [diff] [blame] | 1395 | * This function is intended to be used by `git fsck` even on platforms where |
| 1396 | * the backslash is a regular filename character, therefore it needs to handle |
| 1397 | * backlash characters in the provided `name` specially: they are interpreted |
| 1398 | * as directory separators. |
| 1399 | */ |
Johannes Schindelin | 1d1d69b | 2014-12-16 23:31:03 +0100 | [diff] [blame] | 1400 | int is_ntfs_dotgit(const char *name) |
| 1401 | { |
Johannes Schindelin | 3a85dc7 | 2019-09-06 21:09:35 +0200 | [diff] [blame] | 1402 | char c; |
Johannes Schindelin | 1d1d69b | 2014-12-16 23:31:03 +0100 | [diff] [blame] | 1403 | |
Johannes Schindelin | 3a85dc7 | 2019-09-06 21:09:35 +0200 | [diff] [blame] | 1404 | /* |
| 1405 | * Note that when we don't find `.git` or `git~1` we end up with `name` |
| 1406 | * advanced partway through the string. That's okay, though, as we |
| 1407 | * return immediately in those cases, without looking at `name` any |
| 1408 | * further. |
| 1409 | */ |
| 1410 | c = *(name++); |
| 1411 | if (c == '.') { |
| 1412 | /* .git */ |
| 1413 | if (((c = *(name++)) != 'g' && c != 'G') || |
| 1414 | ((c = *(name++)) != 'i' && c != 'I') || |
| 1415 | ((c = *(name++)) != 't' && c != 'T')) |
Johannes Schindelin | 288a74b | 2019-09-23 08:58:11 +0200 | [diff] [blame] | 1416 | return 0; |
Johannes Schindelin | 3a85dc7 | 2019-09-06 21:09:35 +0200 | [diff] [blame] | 1417 | } else if (c == 'g' || c == 'G') { |
| 1418 | /* git ~1 */ |
| 1419 | if (((c = *(name++)) != 'i' && c != 'I') || |
| 1420 | ((c = *(name++)) != 't' && c != 'T') || |
| 1421 | *(name++) != '~' || |
| 1422 | *(name++) != '1') |
| 1423 | return 0; |
| 1424 | } else |
| 1425 | return 0; |
| 1426 | |
| 1427 | for (;;) { |
| 1428 | c = *(name++); |
Ævar Arnfjörð Bjarmason | 9fd512c | 2022-05-16 20:10:59 +0000 | [diff] [blame] | 1429 | if (!c || is_xplatform_dir_sep(c) || c == ':') |
Johannes Schindelin | 3a85dc7 | 2019-09-06 21:09:35 +0200 | [diff] [blame] | 1430 | return 1; |
| 1431 | if (c != '.' && c != ' ') |
| 1432 | return 0; |
| 1433 | } |
Johannes Schindelin | 1d1d69b | 2014-12-16 23:31:03 +0100 | [diff] [blame] | 1434 | } |
Paul Tan | ea19289 | 2015-04-21 12:06:27 +0800 | [diff] [blame] | 1435 | |
Johannes Schindelin | e7cb0b4 | 2018-05-11 16:03:54 +0200 | [diff] [blame] | 1436 | static int is_ntfs_dot_generic(const char *name, |
| 1437 | const char *dotgit_name, |
| 1438 | size_t len, |
| 1439 | const char *dotgit_ntfs_shortname_prefix) |
| 1440 | { |
| 1441 | int saw_tilde; |
| 1442 | size_t i; |
| 1443 | |
| 1444 | if ((name[0] == '.' && !strncasecmp(name + 1, dotgit_name, len))) { |
| 1445 | i = len + 1; |
| 1446 | only_spaces_and_periods: |
| 1447 | for (;;) { |
| 1448 | char c = name[i++]; |
Johannes Schindelin | 91bd465 | 2019-08-28 12:22:17 +0200 | [diff] [blame] | 1449 | if (!c || c == ':') |
Johannes Schindelin | e7cb0b4 | 2018-05-11 16:03:54 +0200 | [diff] [blame] | 1450 | return 1; |
| 1451 | if (c != ' ' && c != '.') |
| 1452 | return 0; |
| 1453 | } |
| 1454 | } |
| 1455 | |
| 1456 | /* |
| 1457 | * Is it a regular NTFS short name, i.e. shortened to 6 characters, |
| 1458 | * followed by ~1, ... ~4? |
| 1459 | */ |
| 1460 | if (!strncasecmp(name, dotgit_name, 6) && name[6] == '~' && |
| 1461 | name[7] >= '1' && name[7] <= '4') { |
| 1462 | i = 8; |
| 1463 | goto only_spaces_and_periods; |
| 1464 | } |
| 1465 | |
| 1466 | /* |
| 1467 | * Is it a fall-back NTFS short name (for details, see |
| 1468 | * https://en.wikipedia.org/wiki/8.3_filename? |
| 1469 | */ |
| 1470 | for (i = 0, saw_tilde = 0; i < 8; i++) |
| 1471 | if (name[i] == '\0') |
| 1472 | return 0; |
| 1473 | else if (saw_tilde) { |
| 1474 | if (name[i] < '0' || name[i] > '9') |
| 1475 | return 0; |
| 1476 | } else if (name[i] == '~') { |
| 1477 | if (name[++i] < '1' || name[i] > '9') |
| 1478 | return 0; |
| 1479 | saw_tilde = 1; |
| 1480 | } else if (i >= 6) |
| 1481 | return 0; |
Torsten Bögershausen | 3063477 | 2018-10-25 18:13:08 +0200 | [diff] [blame] | 1482 | else if (name[i] & 0x80) { |
Johannes Schindelin | e7cb0b4 | 2018-05-11 16:03:54 +0200 | [diff] [blame] | 1483 | /* |
| 1484 | * We know our needles contain only ASCII, so we clamp |
| 1485 | * here to make the results of tolower() sane. |
| 1486 | */ |
| 1487 | return 0; |
| 1488 | } else if (tolower(name[i]) != dotgit_ntfs_shortname_prefix[i]) |
| 1489 | return 0; |
| 1490 | |
| 1491 | goto only_spaces_and_periods; |
| 1492 | } |
| 1493 | |
| 1494 | /* |
| 1495 | * Inline helper to make sure compiler resolves strlen() on literals at |
| 1496 | * compile time. |
| 1497 | */ |
| 1498 | static inline int is_ntfs_dot_str(const char *name, const char *dotgit_name, |
| 1499 | const char *dotgit_ntfs_shortname_prefix) |
| 1500 | { |
| 1501 | return is_ntfs_dot_generic(name, dotgit_name, strlen(dotgit_name), |
| 1502 | dotgit_ntfs_shortname_prefix); |
| 1503 | } |
| 1504 | |
| 1505 | int is_ntfs_dotgitmodules(const char *name) |
| 1506 | { |
| 1507 | return is_ntfs_dot_str(name, "gitmodules", "gi7eba"); |
| 1508 | } |
| 1509 | |
| 1510 | int is_ntfs_dotgitignore(const char *name) |
| 1511 | { |
| 1512 | return is_ntfs_dot_str(name, "gitignore", "gi250a"); |
| 1513 | } |
| 1514 | |
| 1515 | int is_ntfs_dotgitattributes(const char *name) |
| 1516 | { |
| 1517 | return is_ntfs_dot_str(name, "gitattributes", "gi7d29"); |
| 1518 | } |
| 1519 | |
Jeff King | 801ed01 | 2021-05-03 16:43:22 -0400 | [diff] [blame] | 1520 | int is_ntfs_dotmailmap(const char *name) |
| 1521 | { |
| 1522 | return is_ntfs_dot_str(name, "mailmap", "maba30"); |
| 1523 | } |
| 1524 | |
Jeff King | 2491f77 | 2017-07-28 15:25:45 -0400 | [diff] [blame] | 1525 | int looks_like_command_line_option(const char *str) |
| 1526 | { |
| 1527 | return str && str[0] == '-'; |
| 1528 | } |
| 1529 | |
Lénaïc Huard | cb7db5b | 2021-09-04 22:54:58 +0200 | [diff] [blame] | 1530 | char *xdg_config_home_for(const char *subdir, const char *filename) |
Paul Tan | ea19289 | 2015-04-21 12:06:27 +0800 | [diff] [blame] | 1531 | { |
| 1532 | const char *home, *config_home; |
| 1533 | |
Lénaïc Huard | cb7db5b | 2021-09-04 22:54:58 +0200 | [diff] [blame] | 1534 | assert(subdir); |
Paul Tan | ea19289 | 2015-04-21 12:06:27 +0800 | [diff] [blame] | 1535 | assert(filename); |
| 1536 | config_home = getenv("XDG_CONFIG_HOME"); |
| 1537 | if (config_home && *config_home) |
Lénaïc Huard | cb7db5b | 2021-09-04 22:54:58 +0200 | [diff] [blame] | 1538 | return mkpathdup("%s/%s/%s", config_home, subdir, filename); |
Paul Tan | ea19289 | 2015-04-21 12:06:27 +0800 | [diff] [blame] | 1539 | |
| 1540 | home = getenv("HOME"); |
| 1541 | if (home) |
Lénaïc Huard | cb7db5b | 2021-09-04 22:54:58 +0200 | [diff] [blame] | 1542 | return mkpathdup("%s/.config/%s/%s", home, subdir, filename); |
| 1543 | |
Paul Tan | ea19289 | 2015-04-21 12:06:27 +0800 | [diff] [blame] | 1544 | return NULL; |
| 1545 | } |
Jeff King | f932729 | 2015-08-10 05:38:57 -0400 | [diff] [blame] | 1546 | |
Lénaïc Huard | cb7db5b | 2021-09-04 22:54:58 +0200 | [diff] [blame] | 1547 | char *xdg_config_home(const char *filename) |
| 1548 | { |
| 1549 | return xdg_config_home_for("git", filename); |
| 1550 | } |
| 1551 | |
Devin Lehmacher | e7f136b | 2017-03-13 16:43:54 -0400 | [diff] [blame] | 1552 | char *xdg_cache_home(const char *filename) |
| 1553 | { |
| 1554 | const char *home, *cache_home; |
| 1555 | |
| 1556 | assert(filename); |
| 1557 | cache_home = getenv("XDG_CACHE_HOME"); |
| 1558 | if (cache_home && *cache_home) |
| 1559 | return mkpathdup("%s/git/%s", cache_home, filename); |
| 1560 | |
| 1561 | home = getenv("HOME"); |
| 1562 | if (home) |
| 1563 | return mkpathdup("%s/.cache/git/%s", home, filename); |
| 1564 | return NULL; |
| 1565 | } |
| 1566 | |
Stefan Beller | 102de88 | 2018-05-17 15:51:51 -0700 | [diff] [blame] | 1567 | REPO_GIT_PATH_FUNC(squash_msg, "SQUASH_MSG") |
| 1568 | REPO_GIT_PATH_FUNC(merge_msg, "MERGE_MSG") |
| 1569 | REPO_GIT_PATH_FUNC(merge_rr, "MERGE_RR") |
| 1570 | REPO_GIT_PATH_FUNC(merge_mode, "MERGE_MODE") |
| 1571 | REPO_GIT_PATH_FUNC(merge_head, "MERGE_HEAD") |
Denton Liu | a03b555 | 2020-04-07 10:28:07 -0400 | [diff] [blame] | 1572 | REPO_GIT_PATH_FUNC(merge_autostash, "MERGE_AUTOSTASH") |
Elijah Newren | 5291828 | 2021-03-20 00:03:52 +0000 | [diff] [blame] | 1573 | REPO_GIT_PATH_FUNC(auto_merge, "AUTO_MERGE") |
Stefan Beller | 102de88 | 2018-05-17 15:51:51 -0700 | [diff] [blame] | 1574 | REPO_GIT_PATH_FUNC(fetch_head, "FETCH_HEAD") |
| 1575 | REPO_GIT_PATH_FUNC(shallow, "shallow") |