]> git.ipfire.org Git - thirdparty/git.git/blame - path.c
path: move related function to path
[thirdparty/git.git] / path.c
CommitLineData
26c8a533 1/*
3a429d3b 2 * Utilities for paths and pathnames
26c8a533 3 */
61a7b982 4#include "git-compat-util.h"
0b027f6c 5#include "abspath.h"
32a8f510 6#include "environment.h"
f394e093 7#include "gettext.h"
41771fa4 8#include "hex.h"
c14c234f 9#include "repository.h"
395de250 10#include "strbuf.h"
a5ccdbe4 11#include "string-list.h"
77a6d840 12#include "dir.h"
2e641d58 13#include "worktree.h"
e38da487 14#include "setup.h"
99b43a61 15#include "submodule-config.h"
e7d72d07 16#include "path.h"
0abe14f6 17#include "packfile.h"
90c62155 18#include "object-store.h"
76a53d64 19#include "lockfile.h"
e394a160 20#include "exec-cmd.h"
65156bb7 21#include "wrapper.h"
26c8a533 22
f66450ae 23static int get_st_mode_bits(const char *path, int *mode)
0117c2f0
TB
24{
25 struct stat st;
26 if (lstat(path, &st) < 0)
27 return -1;
28 *mode = st.st_mode;
29 return 0;
30}
0117c2f0 31
26c8a533
LT
32static char bad_path[] = "/bad-path/";
33
4ef9caf5 34static struct strbuf *get_pathname(void)
e7676d2f 35{
4ef9caf5
NTND
36 static struct strbuf pathname_array[4] = {
37 STRBUF_INIT, STRBUF_INIT, STRBUF_INIT, STRBUF_INIT
38 };
e7676d2f 39 static int index;
bb84735c
RS
40 struct strbuf *sb = &pathname_array[index];
41 index = (index + 1) % ARRAY_SIZE(pathname_array);
4ef9caf5
NTND
42 strbuf_reset(sb);
43 return sb;
e7676d2f
LT
44}
45
8262715b 46static const char *cleanup_path(const char *path)
26c8a533
LT
47{
48 /* Clean it up */
8262715b 49 if (skip_prefix(path, "./", &path)) {
26c8a533
LT
50 while (*path == '/')
51 path++;
52 }
53 return path;
54}
55
4ef9caf5
NTND
56static void strbuf_cleanup_path(struct strbuf *sb)
57{
8262715b 58 const char *path = cleanup_path(sb->buf);
4ef9caf5
NTND
59 if (path > sb->buf)
60 strbuf_remove(sb, 0, path - sb->buf);
61}
62
108bebea
AR
63char *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) {
9db56f71 72 strlcpy(buf, bad_path, n);
108bebea
AR
73 return buf;
74 }
8262715b 75 return (char *)cleanup_path(buf);
108bebea
AR
76}
77
557bd833 78static int dir_prefix(const char *buf, const char *dir)
fe2d7776 79{
557bd833
NTND
80 int len = strlen(dir);
81 return !strncmp(buf, dir, len) &&
82 (is_dir_sep(buf[len]) || buf[len] == '\0');
83}
fe2d7776 84
557bd833
NTND
85/* $buf =~ m|$dir/+$file| but without regex */
86static int is_dir_file(const char *buf, const char *dir, const char *file)
87{
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
96static 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
0701530c
DT
108struct common_dir {
109 /* Not considered garbage for report_linked_checkout_garbage */
110 unsigned ignore_garbage:1;
111 unsigned is_dir:1;
c72fc40d
SG
112 /* Belongs to the common dir, though it may contain paths that don't */
113 unsigned is_common:1;
114 const char *path;
0701530c
DT
115};
116
117static struct common_dir common_list[] = {
c72fc40d
SG
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" },
0701530c 142 { 0, 0, 0, NULL }
c7b3a3d2
NTND
143};
144
4e09cf2a
DT
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 *
832c0e5e 156 * The trie would look like:
4e09cf2a
DT
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 */
165struct trie {
166 struct trie *children[256];
167 int len;
168 char *contents;
169 void *value;
170};
171
172static struct trie *make_trie_node(const char *key, void *value)
c7b3a3d2 173{
4e09cf2a
DT
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}
c7b3a3d2 183
4e09cf2a
DT
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 */
188static 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 */
55d7d158 209 child = xmalloc(sizeof(*child));
4e09cf2a
DT
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);
c7b3a3d2 216 }
4e09cf2a
DT
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;
c7b3a3d2
NTND
239 }
240 }
4e09cf2a
DT
241
242 old = root->value;
243 root->value = value;
244 return old;
245}
246
7cb8c929 247typedef int (*match_fn)(const char *unmatched, void *value, void *baton);
4e09cf2a
DT
248
249/*
250 * Search a trie for some key. Find the longest /-or-\0-terminated
7cb8c929
SG
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.
4e09cf2a
DT
260 *
261 * The key is partially normalized: consecutive slashes are skipped.
262 *
7cb8c929
SG
263 * For example, consider the trie containing only [logs,
264 * logs/refs/bisect], both with values, but not logs/refs.
4e09cf2a 265 *
7cb8c929
SG
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 * |--------------------|----------------|------------------|--------------|
4e09cf2a
DT
282 */
283static 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;
f45f88b2 310 if (!*key) {
4e09cf2a 311 /* End of key */
f45f88b2
SG
312 if (root->value)
313 return fn(key, root->value, baton);
314 else
315 return -1;
316 }
4e09cf2a
DT
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
336static struct trie common_trie;
337static int common_trie_done_setup;
338
339static void init_common_trie(void)
340{
341 struct common_dir *p;
342
343 if (common_trie_done_setup)
344 return;
345
c72fc40d
SG
346 for (p = common_list; p->path; p++)
347 add_to_trie(&common_trie, p->path, p);
4e09cf2a
DT
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 */
d3dcfa04
JK
356static int check_common(const char *unmatched, void *value,
357 void *baton UNUSED)
4e09cf2a
DT
358{
359 struct common_dir *dir = value;
360
4e09cf2a 361 if (dir->is_dir && (unmatched[0] == 0 || unmatched[0] == '/'))
c72fc40d 362 return dir->is_common;
4e09cf2a
DT
363
364 if (!dir->is_dir && unmatched[0] == 0)
c72fc40d 365 return dir->is_common;
4e09cf2a
DT
366
367 return 0;
368}
369
1c630bad
JH
370static void update_common_dir(struct strbuf *buf, int git_dir_len,
371 const char *common_dir)
4e09cf2a
DT
372{
373 char *base = buf->buf + git_dir_len;
76a53d64
JS
374 int has_lock_suffix = strbuf_strip_suffix(buf, LOCK_SUFFIX);
375
4e09cf2a
DT
376 init_common_trie();
377 if (trie_find(&common_trie, base, check_common, NULL) > 0)
1c630bad 378 replace_dir(buf, git_dir_len, common_dir);
76a53d64
JS
379
380 if (has_lock_suffix)
381 strbuf_addstr(buf, LOCK_SUFFIX);
c7b3a3d2
NTND
382}
383
77a6d840
NTND
384void report_linked_checkout_garbage(void)
385{
386 struct strbuf sb = STRBUF_INIT;
0701530c 387 const struct common_dir *p;
77a6d840
NTND
388 int len;
389
c14c234f 390 if (!the_repository->different_commondir)
77a6d840
NTND
391 return;
392 strbuf_addf(&sb, "%s/", get_git_dir());
393 len = sb.len;
c72fc40d
SG
394 for (p = common_list; p->path; p++) {
395 const char *path = p->path;
0701530c 396 if (p->ignore_garbage)
77a6d840
NTND
397 continue;
398 strbuf_setlen(&sb, len);
399 strbuf_addstr(&sb, path);
400 if (file_exists(sb.buf))
0a489b06 401 report_garbage(PACKDIR_FILE_GARBAGE, sb.buf);
77a6d840
NTND
402 }
403 strbuf_release(&sb);
fe2d7776
AR
404}
405
f9a8a47e
BW
406static void adjust_git_path(const struct repository *repo,
407 struct strbuf *buf, int git_dir_len)
557bd833
NTND
408{
409 const char *base = buf->buf + git_dir_len;
c14c234f 410 if (is_dir_file(base, "info", "grafts"))
557bd833 411 strbuf_splice(buf, 0, buf->len,
f9a8a47e 412 repo->graft_file, strlen(repo->graft_file));
c14c234f 413 else if (!strcmp(base, "index"))
557bd833 414 strbuf_splice(buf, 0, buf->len,
f9a8a47e 415 repo->index_file, strlen(repo->index_file));
c14c234f 416 else if (dir_prefix(base, "objects"))
f0eaf638 417 replace_dir(buf, git_dir_len + 7, repo->objects->odb->path);
9445b492
JS
418 else if (git_hooks_path && dir_prefix(base, "hooks"))
419 replace_dir(buf, git_dir_len + 5, git_hooks_path);
f9a8a47e
BW
420 else if (repo->different_commondir)
421 update_common_dir(buf, git_dir_len, repo->commondir);
557bd833
NTND
422}
423
f9a8a47e
BW
424static 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
436static void do_git_path(const struct repository *repo,
437 const struct worktree *wt, struct strbuf *buf,
2e641d58 438 const char *fmt, va_list args)
fe2d7776 439{
557bd833 440 int gitdir_len;
f9a8a47e 441 strbuf_worktree_gitdir(buf, repo, wt);
4ef9caf5
NTND
442 if (buf->len && !is_dir_sep(buf->buf[buf->len - 1]))
443 strbuf_addch(buf, '/');
557bd833 444 gitdir_len = buf->len;
4ef9caf5 445 strbuf_vaddf(buf, fmt, args);
54310733
BW
446 if (!wt)
447 adjust_git_path(repo, buf, gitdir_len);
4ef9caf5 448 strbuf_cleanup_path(buf);
fe2d7776
AR
449}
450
3181d863
BW
451char *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
462void 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
bb3788ce
JK
472char *git_path_buf(struct strbuf *buf, const char *fmt, ...)
473{
474 va_list args;
475 strbuf_reset(buf);
476 va_start(args, fmt);
f9a8a47e 477 do_git_path(the_repository, NULL, buf, fmt, args);
bb3788ce
JK
478 va_end(args);
479 return buf->buf;
480}
481
1a83c240 482void strbuf_git_path(struct strbuf *sb, const char *fmt, ...)
aba13e7c
AR
483{
484 va_list args;
485 va_start(args, fmt);
f9a8a47e 486 do_git_path(the_repository, NULL, sb, fmt, args);
aba13e7c 487 va_end(args);
aba13e7c
AR
488}
489
57a23b77 490const char *git_path(const char *fmt, ...)
aba13e7c 491{
57a23b77 492 struct strbuf *pathname = get_pathname();
aba13e7c
AR
493 va_list args;
494 va_start(args, fmt);
f9a8a47e 495 do_git_path(the_repository, NULL, pathname, fmt, args);
aba13e7c 496 va_end(args);
57a23b77 497 return pathname->buf;
aba13e7c
AR
498}
499
aba13e7c 500char *git_pathdup(const char *fmt, ...)
21cf3227 501{
4ef9caf5 502 struct strbuf path = STRBUF_INIT;
21cf3227 503 va_list args;
21cf3227 504 va_start(args, fmt);
f9a8a47e 505 do_git_path(the_repository, NULL, &path, fmt, args);
21cf3227 506 va_end(args);
4ef9caf5 507 return strbuf_detach(&path, NULL);
21cf3227
HKNN
508}
509
21cf3227 510char *mkpathdup(const char *fmt, ...)
26c8a533 511{
21cf3227 512 struct strbuf sb = STRBUF_INIT;
26c8a533 513 va_list args;
26c8a533 514 va_start(args, fmt);
21cf3227 515 strbuf_vaddf(&sb, fmt, args);
26c8a533 516 va_end(args);
4ef9caf5
NTND
517 strbuf_cleanup_path(&sb);
518 return strbuf_detach(&sb, NULL);
26c8a533
LT
519}
520
dcf69262 521const char *mkpath(const char *fmt, ...)
26c8a533 522{
26c8a533 523 va_list args;
4ef9caf5 524 struct strbuf *pathname = get_pathname();
26c8a533 525 va_start(args, fmt);
4ef9caf5 526 strbuf_vaddf(pathname, fmt, args);
26c8a533 527 va_end(args);
4ef9caf5 528 return cleanup_path(pathname->buf);
26c8a533 529}
f2db68ed 530
2e641d58
NTND
531const 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);
f9a8a47e 536 do_git_path(the_repository, wt, pathname, fmt, args);
2e641d58
NTND
537 va_end(args);
538 return pathname->buf;
539}
540
b42b0c09
BW
541static 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
553char *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
568void 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
99b43a61 582/* Returns 0 on success, negative on failure. */
99b43a61
JK
583static int do_submodule_path(struct strbuf *buf, const char *path,
584 const char *fmt, va_list args)
0bad611b 585{
11f9dd71
MK
586 struct strbuf git_submodule_common_dir = STRBUF_INIT;
587 struct strbuf git_submodule_dir = STRBUF_INIT;
bbbb7de7 588 int ret;
0bad611b 589
bbbb7de7
NTND
590 ret = submodule_to_gitdir(&git_submodule_dir, path);
591 if (ret)
592 goto cleanup;
0bad611b 593
bbbb7de7
NTND
594 strbuf_complete(&git_submodule_dir, '/');
595 strbuf_addbuf(buf, &git_submodule_dir);
4ef9caf5 596 strbuf_vaddf(buf, fmt, args);
11f9dd71
MK
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
4ef9caf5 601 strbuf_cleanup_path(buf);
11f9dd71 602
99b43a61 603cleanup:
11f9dd71
MK
604 strbuf_release(&git_submodule_dir);
605 strbuf_release(&git_submodule_common_dir);
bbbb7de7 606 return ret;
f5895fd3
JK
607}
608
f5895fd3
JK
609char *git_pathdup_submodule(const char *path, const char *fmt, ...)
610{
99b43a61 611 int err;
f5895fd3
JK
612 va_list args;
613 struct strbuf buf = STRBUF_INIT;
614 va_start(args, fmt);
99b43a61 615 err = do_submodule_path(&buf, path, fmt, args);
f5895fd3 616 va_end(args);
99b43a61
JK
617 if (err) {
618 strbuf_release(&buf);
619 return NULL;
620 }
f5895fd3
JK
621 return strbuf_detach(&buf, NULL);
622}
623
99b43a61
JK
624int strbuf_git_path_submodule(struct strbuf *buf, const char *path,
625 const char *fmt, ...)
f5895fd3 626{
99b43a61 627 int err;
f5895fd3
JK
628 va_list args;
629 va_start(args, fmt);
99b43a61 630 err = do_submodule_path(buf, path, fmt, args);
f5895fd3 631 va_end(args);
99b43a61
JK
632
633 return err;
f5895fd3
JK
634}
635
b337172c
BW
636static void do_git_common_path(const struct repository *repo,
637 struct strbuf *buf,
15cdfea7
NTND
638 const char *fmt,
639 va_list args)
640{
b337172c 641 strbuf_addstr(buf, repo->commondir);
15cdfea7
NTND
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
648const char *git_common_path(const char *fmt, ...)
649{
650 struct strbuf *pathname = get_pathname();
651 va_list args;
652 va_start(args, fmt);
b337172c 653 do_git_common_path(the_repository, pathname, fmt, args);
15cdfea7
NTND
654 va_end(args);
655 return pathname->buf;
656}
657
b337172c
BW
658void strbuf_git_common_path(struct strbuf *sb,
659 const struct repository *repo,
660 const char *fmt, ...)
15cdfea7
NTND
661{
662 va_list args;
663 va_start(args, fmt);
b337172c 664 do_git_common_path(repo, sb, fmt, args);
15cdfea7
NTND
665 va_end(args);
666}
667
c847f537 668int validate_headref(const char *path)
0870ca7f
JH
669{
670 struct stat st;
7eb4b9d0
JK
671 char buffer[256];
672 const char *refname;
0bca165f 673 struct object_id oid;
0104ca09
HO
674 int fd;
675 ssize_t len;
0870ca7f
JH
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);
222b1673 683 if (len >= 5 && !memcmp("refs/", buffer, 5))
0870ca7f
JH
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;
93d26e4c 694 len = read_in_full(fd, buffer, sizeof(buffer)-1);
0870ca7f
JH
695 close(fd);
696
6e68c914
JK
697 if (len < 0)
698 return -1;
699 buffer[len] = '\0';
700
0870ca7f
JH
701 /*
702 * Is it a symbolic ref?
703 */
7eb4b9d0
JK
704 if (skip_prefix(buffer, "ref:", &refname)) {
705 while (isspace(*refname))
706 refname++;
707 if (starts_with(refname, "refs/"))
c847f537
JH
708 return 0;
709 }
710
711 /*
712 * Is this a detached HEAD?
713 */
0bca165f 714 if (!get_oid_hex(buffer, &oid))
0870ca7f 715 return 0;
c847f537 716
0870ca7f
JH
717 return -1;
718}
719
395de250 720static struct passwd *getpw_str(const char *username, size_t len)
54f4b874 721{
d79374c7 722 struct passwd *pw;
5c0b13f8 723 char *username_z = xmemdupz(username, len);
395de250
MM
724 pw = getpwnam(username_z);
725 free(username_z);
726 return pw;
727}
54f4b874 728
395de250 729/*
789f6f22
JS
730 * Return a string with ~ and ~user expanded via getpw*. Returns NULL on getpw
731 * failure or if path is NULL.
4aad2f16 732 *
644e6b2c 733 * If real_home is true, strbuf_realpath($HOME) is used in the `~/` expansion.
e394a160
JS
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.
395de250 737 */
a03b097d 738char *interpolate_path(const char *path, int real_home)
395de250
MM
739{
740 struct strbuf user_path = STRBUF_INIT;
395de250
MM
741 const char *to_copy = path;
742
afe8a907 743 if (!path)
395de250 744 goto return_null;
e394a160
JS
745
746 if (skip_prefix(path, "%(prefix)/", &path))
747 return system_path(path);
748
395de250 749 if (path[0] == '~') {
53ec551c 750 const char *first_slash = strchrnul(path, '/');
395de250
MM
751 const char *username = path + 1;
752 size_t username_len = first_slash - username;
df2a79f4
MM
753 if (username_len == 0) {
754 const char *home = getenv("HOME");
79bf1490
JN
755 if (!home)
756 goto return_null;
4aad2f16 757 if (real_home)
fa2bb344 758 strbuf_add_real_path(&user_path, home);
4aad2f16
NTND
759 else
760 strbuf_addstr(&user_path, home);
5ca6b7bb
JS
761#ifdef GIT_WINDOWS_NATIVE
762 convert_slashes(user_path.buf);
763#endif
df2a79f4
MM
764 } else {
765 struct passwd *pw = getpw_str(username, username_len);
766 if (!pw)
767 goto return_null;
cedc61a9 768 strbuf_addstr(&user_path, pw->pw_dir);
54f4b874 769 }
395de250 770 to_copy = first_slash;
d79374c7 771 }
cedc61a9 772 strbuf_addstr(&user_path, to_copy);
395de250
MM
773 return strbuf_detach(&user_path, NULL);
774return_null:
775 strbuf_release(&user_path);
776 return NULL;
54f4b874
AE
777}
778
d79374c7
JH
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 *
c8c3f1d0
PT
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.
d79374c7
JH
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 */
1c64b48e 798const char *enter_repo(const char *path, int strict)
54f4b874 799{
e9ba6781
JK
800 static struct strbuf validated_path = STRBUF_INIT;
801 static struct strbuf used_path = STRBUF_INIT;
d79374c7
JH
802
803 if (!path)
54f4b874
AE
804 return NULL;
805
d79374c7
JH
806 if (!strict) {
807 static const char *suffix[] = {
b3256eb8 808 "/.git", "", ".git/.git", ".git", NULL,
d79374c7 809 };
03106768 810 const char *gitfile;
d79374c7
JH
811 int len = strlen(path);
812 int i;
1c64b48e 813 while ((1 < len) && (path[len-1] == '/'))
d79374c7 814 len--;
1c64b48e 815
e9ba6781
JK
816 /*
817 * We can handle arbitrary-sized buffers, but this remains as a
818 * sanity check on untrusted input.
819 */
d79374c7 820 if (PATH_MAX <= len)
54f4b874 821 return NULL;
1c64b48e 822
e9ba6781
JK
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] == '~') {
a03b097d 829 char *newpath = interpolate_path(used_path.buf, 0);
e9ba6781 830 if (!newpath)
d79374c7 831 return NULL;
e9ba6781
JK
832 strbuf_attach(&used_path, newpath, strlen(newpath),
833 strlen(newpath));
d79374c7 834 }
d79374c7 835 for (i = 0; suffix[i]; i++) {
b3256eb8 836 struct stat st;
e9ba6781
JK
837 size_t baselen = used_path.len;
838 strbuf_addstr(&used_path, suffix[i]);
839 if (!stat(used_path.buf, &st) &&
b3256eb8 840 (S_ISREG(st.st_mode) ||
e9ba6781
JK
841 (S_ISDIR(st.st_mode) && is_git_directory(used_path.buf)))) {
842 strbuf_addstr(&validated_path, suffix[i]);
d79374c7
JH
843 break;
844 }
e9ba6781 845 strbuf_setlen(&used_path, baselen);
d79374c7 846 }
03106768
PH
847 if (!suffix[i])
848 return NULL;
78891795 849 gitfile = read_gitfile(used_path.buf);
e9ba6781
JK
850 if (gitfile) {
851 strbuf_reset(&used_path);
852 strbuf_addstr(&used_path, gitfile);
853 }
854 if (chdir(used_path.buf))
0870ca7f 855 return NULL;
e9ba6781 856 path = validated_path.buf;
0870ca7f 857 }
1f5fbe1f
NTND
858 else {
859 const char *gitfile = read_gitfile(path);
860 if (gitfile)
861 path = gitfile;
862 if (chdir(path))
863 return NULL;
864 }
54f4b874 865
0f64cc40 866 if (is_git_directory(".")) {
0915a5b4 867 set_git_dir(".", 0);
cfe3917c 868 check_repository_format(NULL);
d79374c7 869 return path;
54f4b874
AE
870 }
871
872 return NULL;
873}
138086a7 874
cbe43b84 875static int calc_shared_perm(int mode)
138086a7 876{
cbe43b84 877 int tweak;
138086a7 878
7875acb6
JK
879 if (get_shared_repository() < 0)
880 tweak = -get_shared_repository();
5a688fe4 881 else
7875acb6 882 tweak = get_shared_repository();
5a688fe4
JH
883
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;
7875acb6 889 if (get_shared_repository() < 0)
5a688fe4
JH
890 mode = (mode & ~0777) | tweak;
891 else
8c6202d8 892 mode |= tweak;
06cbe855 893
cbe43b84
TB
894 return mode;
895}
896
897
898int adjust_shared_perm(const char *path)
899{
900 int old_mode, new_mode;
901
7875acb6 902 if (!get_shared_repository())
cbe43b84
TB
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)) {
06cbe855 909 /* Copy read bits to execute bits */
cbe43b84 910 new_mode |= (new_mode & 0444) >> 2;
671bbf7b
JH
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;
06cbe855
HO
918 }
919
cbe43b84
TB
920 if (((old_mode ^ new_mode) & ~S_IFMT) &&
921 chmod(path, (new_mode & ~S_IFMT)) < 0)
138086a7
JH
922 return -2;
923 return 0;
924}
e5392c51 925
eb33876c
DT
926void 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
7fbd4221
JX
938static 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
e02ca72f
JX
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 */
954const char *relative_path(const char *in, const char *prefix,
955 struct strbuf *sb)
044bbbcb 956{
e02ca72f
JX
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;
288123f0
JH
961 int i = 0, j = 0;
962
e02ca72f
JX
963 if (!in_len)
964 return "./";
965 else if (!prefix_len)
966 return in;
967
2f36eed9 968 if (have_same_root(in, prefix))
7fbd4221 969 /* bypass dos_drive, for "c:" is identical to "C:" */
2f36eed9
JS
970 i = j = has_dos_drive_prefix(in);
971 else {
7fbd4221
JX
972 return in;
973 }
974
e02ca72f
JX
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]))
288123f0 978 i++;
e02ca72f
JX
979 while (is_dir_sep(in[j]))
980 j++;
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]))
288123f0 1003 j++;
e02ca72f
JX
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++;
288123f0 1039 continue;
288123f0
JH
1040 }
1041 i++;
288123f0 1042 }
e02ca72f
JX
1043 if (!is_dir_sep(prefix[prefix_len - 1]))
1044 strbuf_addstr(sb, "../");
1045
1046 strbuf_addstr(sb, in);
1047
1048 return sb->buf;
044bbbcb 1049}
ae299be0 1050
41894ae3
JX
1051/*
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 */
1058const char *remove_leading_path(const char *in, const char *prefix)
1059{
46357688 1060 static struct strbuf buf = STRBUF_INIT;
41894ae3
JX
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++;
46357688
JK
1089
1090 strbuf_reset(&buf);
41894ae3 1091 if (!in[j])
46357688 1092 strbuf_addstr(&buf, ".");
41894ae3 1093 else
46357688
JK
1094 strbuf_addstr(&buf, in + j);
1095 return buf.buf;
41894ae3
JX
1096}
1097
ae299be0 1098/*
f2a782b8 1099 * It is okay if dst == src, but they should not overlap otherwise.
9734b74a
JK
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.
ae299be0 1102 *
f2a782b8
JS
1103 * Performs the following normalizations on src, storing the result in dst:
1104 * - Ensures that components are separated by '/' (Windows only)
7814fbe3 1105 * - Squashes sequences of '/' except "//server/share" on Windows
ae299be0
DR
1106 * - Removes "." components.
1107 * - Removes ".." components, and the components the precede them.
f2a782b8
JS
1108 * Returns failure (non-zero) if a ".." component appears as first path
1109 * component anytime during the normalization. Otherwise, returns success (0).
ae299be0
DR
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.
645a29c4
NTND
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.
b2a7123b
RD
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 *
ae299be0 1124 */
645a29c4 1125int normalize_path_copy_len(char *dst, const char *src, int *prefix_len)
ae299be0 1126{
f3cad0ad 1127 char *dst0;
7814fbe3 1128 const char *end;
ae299be0 1129
7814fbe3
JS
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 }
f3cad0ad 1140 dst0 = dst;
ae299be0 1141
7814fbe3
JS
1142 while (is_dir_sep(*src))
1143 src++;
f3cad0ad
JS
1144
1145 for (;;) {
1146 char c = *src;
1147
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 }
ae299be0 1180
f3cad0ad
JS
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 */
f42302b4
JS
1198 dst--; /* go to trailing '/' */
1199 if (dst <= dst0)
f3cad0ad 1200 return -1;
f42302b4
JS
1201 /* Windows: dst[-1] cannot be backslash anymore */
1202 while (dst0 < dst && dst[-1] != '/')
1203 dst--;
645a29c4
NTND
1204 if (prefix_len && *prefix_len > dst - dst0)
1205 *prefix_len = dst - dst0;
f3cad0ad 1206 }
ae299be0 1207 *dst = '\0';
f3cad0ad 1208 return 0;
ae299be0 1209}
0454dd93 1210
645a29c4
NTND
1211int normalize_path_copy(char *dst, const char *src)
1212{
1213 return normalize_path_copy_len(dst, src, NULL);
1214}
1215
aba07068
CW
1216int strbuf_normalize_path(struct strbuf *src)
1217{
1218 struct strbuf dst = STRBUF_INIT;
1219
1220 strbuf_grow(&dst, src->len);
1221 if (normalize_path_copy(dst.buf, src->buf) < 0) {
1222 strbuf_release(&dst);
1223 return -1;
1224 }
1225
1226 /*
1227 * normalize_path does not tell us the new length, so we have to
1228 * compute it by looking for the new NUL it placed
1229 */
1230 strbuf_setlen(&dst, strlen(dst.buf));
1231 strbuf_swap(src, &dst);
1232 strbuf_release(&dst);
1233 return 0;
1234}
1235
0454dd93
DR
1236/*
1237 * path = Canonical absolute path
9e2326c7
MH
1238 * prefixes = string_list containing normalized, absolute paths without
1239 * trailing slashes (except for the root directory, which is denoted by "/").
0454dd93 1240 *
9e2326c7 1241 * Determines, for each path in prefixes, whether the "prefix"
0454dd93
DR
1242 * is an ancestor directory of path. Returns the length of the longest
1243 * ancestor directory, excluding any trailing slashes, or -1 if no prefix
31171d9e
MH
1244 * is an ancestor. (Note that this means 0 is returned if prefixes is
1245 * ["/"].) "/foo" is not considered an ancestor of "/foobar". Directories
0454dd93
DR
1246 * are not considered to be their own ancestors. path must be in a
1247 * canonical form: empty components, or "." or ".." components are not
9e2326c7 1248 * allowed.
0454dd93 1249 */
31171d9e 1250int longest_ancestor_length(const char *path, struct string_list *prefixes)
0454dd93 1251{
a5ccdbe4 1252 int i, max_len = -1;
0454dd93 1253
31171d9e 1254 if (!strcmp(path, "/"))
0454dd93
DR
1255 return -1;
1256
31171d9e
MH
1257 for (i = 0; i < prefixes->nr; i++) {
1258 const char *ceil = prefixes->items[i].string;
a5ccdbe4
MH
1259 int len = strlen(ceil);
1260
fdcad5a5
JS
1261 /*
1262 * For root directories (`/`, `C:/`, `//server/share/`)
1263 * adjust the length to exclude the trailing slash.
1264 */
1265 if (len > 0 && ceil[len - 1] == '/')
1266 len--;
1267
1268 if (strncmp(path, ceil, len) ||
1269 path[len] != '/' || !path[len + 1])
9e2326c7 1270 continue; /* no match */
0454dd93 1271
9e2326c7 1272 if (len > max_len)
0454dd93 1273 max_len = len;
0454dd93
DR
1274 }
1275
1276 return max_len;
1277}
4fcc86b0
JS
1278
1279/* strip arbitrary amount of directory separators at end of path */
1280static inline int chomp_trailing_dir_sep(const char *path, int len)
1281{
1282 while (len && is_dir_sep(path[len - 1]))
1283 len--;
1284 return len;
1285}
1286
1287/*
ce17feb1 1288 * If path ends with suffix (complete path components), returns the offset of
1289 * the last character in the path before the suffix (sans trailing directory
1290 * separators), and -1 otherwise.
4fcc86b0 1291 */
ce17feb1 1292static ssize_t stripped_path_suffix_offset(const char *path, const char *suffix)
4fcc86b0
JS
1293{
1294 int path_len = strlen(path), suffix_len = strlen(suffix);
1295
1296 while (suffix_len) {
1297 if (!path_len)
ce17feb1 1298 return -1;
4fcc86b0
JS
1299
1300 if (is_dir_sep(path[path_len - 1])) {
1301 if (!is_dir_sep(suffix[suffix_len - 1]))
ce17feb1 1302 return -1;
4fcc86b0
JS
1303 path_len = chomp_trailing_dir_sep(path, path_len);
1304 suffix_len = chomp_trailing_dir_sep(suffix, suffix_len);
1305 }
1306 else if (path[--path_len] != suffix[--suffix_len])
ce17feb1 1307 return -1;
4fcc86b0
JS
1308 }
1309
1310 if (path_len && !is_dir_sep(path[path_len - 1]))
ce17feb1 1311 return -1;
1312 return chomp_trailing_dir_sep(path, path_len);
1313}
1314
1315/*
1316 * Returns true if the path ends with components, considering only complete path
1317 * components, and false otherwise.
1318 */
1319int ends_with_path_components(const char *path, const char *components)
1320{
1321 return stripped_path_suffix_offset(path, components) != -1;
1322}
1323
1324/*
1325 * If path ends with suffix (complete path components), returns the
1326 * part before suffix (sans trailing directory separators).
1327 * Otherwise returns NULL.
1328 */
1329char *strip_path_suffix(const char *path, const char *suffix)
1330{
1331 ssize_t offset = stripped_path_suffix_offset(path, suffix);
1332
1333 return offset == -1 ? NULL : xstrndup(path, offset);
4fcc86b0 1334}
34b6cb8b
SP
1335
1336int daemon_avoid_alias(const char *p)
1337{
1338 int sl, ndot;
1339
1340 /*
1341 * This resurrects the belts and suspenders paranoia check by HPA
1342 * done in <435560F7.4080006@zytor.com> thread, now enter_repo()
9517e6b8 1343 * does not do getcwd() based path canonicalization.
34b6cb8b
SP
1344 *
1345 * sl becomes true immediately after seeing '/' and continues to
1346 * be true as long as dots continue after that without intervening
1347 * non-dot character.
1348 */
1349 if (!p || (*p != '/' && *p != '~'))
1350 return -1;
1351 sl = 1; ndot = 0;
1352 p++;
1353
1354 while (1) {
1355 char ch = *p++;
1356 if (sl) {
1357 if (ch == '.')
1358 ndot++;
1359 else if (ch == '/') {
1360 if (ndot < 3)
1361 /* reject //, /./ and /../ */
1362 return -1;
1363 ndot = 0;
1364 }
1365 else if (ch == 0) {
1366 if (0 < ndot && ndot < 3)
1367 /* reject /.$ and /..$ */
1368 return -1;
1369 return 0;
1370 }
1371 else
1372 sl = ndot = 0;
1373 }
1374 else if (ch == 0)
1375 return 0;
1376 else if (ch == '/') {
1377 sl = 1;
1378 ndot = 0;
1379 }
1380 }
1381}
4bb43de2 1382
525e7fba
JS
1383/*
1384 * On NTFS, we need to be careful to disallow certain synonyms of the `.git/`
1385 * directory:
1386 *
1387 * - For historical reasons, file names that end in spaces or periods are
1388 * automatically trimmed. Therefore, `.git . . ./` is a valid way to refer
1389 * to `.git/`.
1390 *
1391 * - For other historical reasons, file names that do not conform to the 8.3
1392 * format (up to eight characters for the basename, three for the file
1393 * extension, certain characters not allowed such as `+`, etc) are associated
1394 * with a so-called "short name", at least on the `C:` drive by default.
1395 * Which means that `git~1/` is a valid way to refer to `.git/`.
1396 *
1397 * Note: Technically, `.git/` could receive the short name `git~2` if the
1398 * short name `git~1` were already used. In Git, however, we guarantee that
1399 * `.git` is the first item in a directory, therefore it will be associated
1400 * with the short name `git~1` (unless short names are disabled).
1401 *
7c3745fc
JS
1402 * - For yet other historical reasons, NTFS supports so-called "Alternate Data
1403 * Streams", i.e. metadata associated with a given file, referred to via
1404 * `<filename>:<stream-name>:<stream-type>`. There exists a default stream
1405 * type for directories, allowing `.git/` to be accessed via
1406 * `.git::$INDEX_ALLOCATION/`.
1407 *
525e7fba
JS
1408 * When this function returns 1, it indicates that the specified file/directory
1409 * name refers to a `.git` file or directory, or to any of these synonyms, and
1410 * Git should therefore not track it.
1411 *
7c3745fc
JS
1412 * For performance reasons, _all_ Alternate Data Streams of `.git/` are
1413 * forbidden, not just `::$INDEX_ALLOCATION`.
1414 *
525e7fba
JS
1415 * This function is intended to be used by `git fsck` even on platforms where
1416 * the backslash is a regular filename character, therefore it needs to handle
1417 * backlash characters in the provided `name` specially: they are interpreted
1418 * as directory separators.
1419 */
1d1d69bc 1420int is_ntfs_dotgit(const char *name)
1d1d69bc 1421{
3a85dc7d
JS
1422 char c;
1423
1424 /*
1425 * Note that when we don't find `.git` or `git~1` we end up with `name`
1426 * advanced partway through the string. That's okay, though, as we
1427 * return immediately in those cases, without looking at `name` any
1428 * further.
1429 */
1430 c = *(name++);
1431 if (c == '.') {
1432 /* .git */
1433 if (((c = *(name++)) != 'g' && c != 'G') ||
1434 ((c = *(name++)) != 'i' && c != 'I') ||
1435 ((c = *(name++)) != 't' && c != 'T'))
288a74bc 1436 return 0;
3a85dc7d
JS
1437 } else if (c == 'g' || c == 'G') {
1438 /* git ~1 */
1439 if (((c = *(name++)) != 'i' && c != 'I') ||
1440 ((c = *(name++)) != 't' && c != 'T') ||
1441 *(name++) != '~' ||
1442 *(name++) != '1')
1443 return 0;
1444 } else
1d1d69bc 1445 return 0;
3a85dc7d
JS
1446
1447 for (;;) {
1448 c = *(name++);
9fd512c8 1449 if (!c || is_xplatform_dir_sep(c) || c == ':')
3a85dc7d
JS
1450 return 1;
1451 if (c != '.' && c != ' ')
1d1d69bc
JS
1452 return 0;
1453 }
1d1d69bc 1454}
ea19289b 1455
e7cb0b44
JS
1456static int is_ntfs_dot_generic(const char *name,
1457 const char *dotgit_name,
1458 size_t len,
1459 const char *dotgit_ntfs_shortname_prefix)
1460{
1461 int saw_tilde;
1462 size_t i;
1463
1464 if ((name[0] == '.' && !strncasecmp(name + 1, dotgit_name, len))) {
1465 i = len + 1;
1466only_spaces_and_periods:
1467 for (;;) {
1468 char c = name[i++];
91bd4658 1469 if (!c || c == ':')
e7cb0b44
JS
1470 return 1;
1471 if (c != ' ' && c != '.')
1472 return 0;
1473 }
1474 }
1475
1476 /*
1477 * Is it a regular NTFS short name, i.e. shortened to 6 characters,
1478 * followed by ~1, ... ~4?
1479 */
1480 if (!strncasecmp(name, dotgit_name, 6) && name[6] == '~' &&
1481 name[7] >= '1' && name[7] <= '4') {
1482 i = 8;
1483 goto only_spaces_and_periods;
1484 }
1485
1486 /*
1487 * Is it a fall-back NTFS short name (for details, see
1488 * https://en.wikipedia.org/wiki/8.3_filename?
1489 */
1490 for (i = 0, saw_tilde = 0; i < 8; i++)
1491 if (name[i] == '\0')
1492 return 0;
1493 else if (saw_tilde) {
1494 if (name[i] < '0' || name[i] > '9')
1495 return 0;
1496 } else if (name[i] == '~') {
1497 if (name[++i] < '1' || name[i] > '9')
1498 return 0;
1499 saw_tilde = 1;
1500 } else if (i >= 6)
1501 return 0;
30634774 1502 else if (name[i] & 0x80) {
e7cb0b44
JS
1503 /*
1504 * We know our needles contain only ASCII, so we clamp
1505 * here to make the results of tolower() sane.
1506 */
1507 return 0;
1508 } else if (tolower(name[i]) != dotgit_ntfs_shortname_prefix[i])
1509 return 0;
1510
1511 goto only_spaces_and_periods;
1512}
1513
1514/*
1515 * Inline helper to make sure compiler resolves strlen() on literals at
1516 * compile time.
1517 */
1518static inline int is_ntfs_dot_str(const char *name, const char *dotgit_name,
1519 const char *dotgit_ntfs_shortname_prefix)
1520{
1521 return is_ntfs_dot_generic(name, dotgit_name, strlen(dotgit_name),
1522 dotgit_ntfs_shortname_prefix);
1523}
1524
1525int is_ntfs_dotgitmodules(const char *name)
1526{
1527 return is_ntfs_dot_str(name, "gitmodules", "gi7eba");
1528}
1529
1530int is_ntfs_dotgitignore(const char *name)
1531{
1532 return is_ntfs_dot_str(name, "gitignore", "gi250a");
1533}
1534
1535int is_ntfs_dotgitattributes(const char *name)
1536{
1537 return is_ntfs_dot_str(name, "gitattributes", "gi7d29");
1538}
1539
801ed010
JK
1540int is_ntfs_dotmailmap(const char *name)
1541{
1542 return is_ntfs_dot_str(name, "mailmap", "maba30");
1543}
1544
2491f77b
JK
1545int looks_like_command_line_option(const char *str)
1546{
1547 return str && str[0] == '-';
1548}
1549
cb7db5bb 1550char *xdg_config_home_for(const char *subdir, const char *filename)
ea19289b
PT
1551{
1552 const char *home, *config_home;
1553
cb7db5bb 1554 assert(subdir);
ea19289b
PT
1555 assert(filename);
1556 config_home = getenv("XDG_CONFIG_HOME");
1557 if (config_home && *config_home)
cb7db5bb 1558 return mkpathdup("%s/%s/%s", config_home, subdir, filename);
ea19289b
PT
1559
1560 home = getenv("HOME");
1561 if (home)
cb7db5bb
LH
1562 return mkpathdup("%s/.config/%s/%s", home, subdir, filename);
1563
ea19289b
PT
1564 return NULL;
1565}
f932729c 1566
cb7db5bb
LH
1567char *xdg_config_home(const char *filename)
1568{
1569 return xdg_config_home_for("git", filename);
1570}
1571
e7f136bf
DL
1572char *xdg_cache_home(const char *filename)
1573{
1574 const char *home, *cache_home;
1575
1576 assert(filename);
1577 cache_home = getenv("XDG_CACHE_HOME");
1578 if (cache_home && *cache_home)
1579 return mkpathdup("%s/git/%s", cache_home, filename);
1580
1581 home = getenv("HOME");
1582 if (home)
1583 return mkpathdup("%s/.cache/git/%s", home, filename);
1584 return NULL;
1585}
1586
102de880
SB
1587REPO_GIT_PATH_FUNC(squash_msg, "SQUASH_MSG")
1588REPO_GIT_PATH_FUNC(merge_msg, "MERGE_MSG")
1589REPO_GIT_PATH_FUNC(merge_rr, "MERGE_RR")
1590REPO_GIT_PATH_FUNC(merge_mode, "MERGE_MODE")
1591REPO_GIT_PATH_FUNC(merge_head, "MERGE_HEAD")
a03b5553 1592REPO_GIT_PATH_FUNC(merge_autostash, "MERGE_AUTOSTASH")
5291828d 1593REPO_GIT_PATH_FUNC(auto_merge, "AUTO_MERGE")
102de880
SB
1594REPO_GIT_PATH_FUNC(fetch_head, "FETCH_HEAD")
1595REPO_GIT_PATH_FUNC(shallow, "shallow")