]> git.ipfire.org Git - thirdparty/git.git/blame - setup.c
clean: improve performance when removing lots of directories
[thirdparty/git.git] / setup.c
CommitLineData
d288a700 1#include "cache.h"
e90fdc39 2#include "dir.h"
31171d9e 3#include "string-list.h"
e90fdc39
JS
4
5static int inside_git_dir = -1;
6static int inside_work_tree = -1;
d288a700 7
ddc2a628
MEW
8/*
9 * The input parameter must contain an absolute path, and it must already be
10 * normalized.
11 *
12 * Find the part of an absolute path that lies inside the work tree by
13 * dereferencing symlinks outside the work tree, for example:
14 * /dir1/repo/dir2/file (work tree is /dir1/repo) -> dir2/file
15 * /dir/file (work tree is /) -> dir/file
16 * /dir/symlink1/symlink2 (symlink1 points to work tree) -> symlink2
17 * /dir/repolink/file (repolink points to /dir/repo) -> file
18 * /dir/repo (exactly equal to work tree) -> (empty string)
19 */
20static int abspath_part_inside_repo(char *path)
21{
22 size_t len;
23 size_t wtlen;
24 char *path0;
25 int off;
26 const char *work_tree = get_git_work_tree();
27
28 if (!work_tree)
29 return -1;
30 wtlen = strlen(work_tree);
31 len = strlen(path);
6127ff63 32 off = offset_1st_component(path);
ddc2a628
MEW
33
34 /* check if work tree is already the prefix */
35 if (wtlen <= len && !strncmp(path, work_tree, wtlen)) {
36 if (path[wtlen] == '/') {
37 memmove(path, path + wtlen + 1, len - wtlen);
38 return 0;
39 } else if (path[wtlen - 1] == '/' || path[wtlen] == '\0') {
40 /* work tree is the root, or the whole path */
41 memmove(path, path + wtlen, len - wtlen + 1);
42 return 0;
43 }
44 /* work tree might match beginning of a symlink to work tree */
45 off = wtlen;
46 }
47 path0 = path;
6127ff63 48 path += off;
ddc2a628
MEW
49
50 /* check each '/'-terminated level */
51 while (*path) {
52 path++;
53 if (*path == '/') {
54 *path = '\0';
55 if (strcmp(real_path(path0), work_tree) == 0) {
56 memmove(path0, path + 1, len - (path - path0));
57 return 0;
58 }
59 *path = '/';
60 }
61 }
62
63 /* check whole path */
64 if (strcmp(real_path(path0), work_tree) == 0) {
65 *path0 = '\0';
66 return 0;
67 }
68
69 return -1;
70}
71
645a29c4
NTND
72/*
73 * Normalize "path", prepending the "prefix" for relative paths. If
74 * remaining_prefix is not NULL, return the actual prefix still
75 * remains in the path. For example, prefix = sub1/sub2/ and path is
76 *
77 * foo -> sub1/sub2/foo (full prefix)
78 * ../foo -> sub1/foo (remaining prefix is sub1/)
79 * ../../bar -> bar (no remaining prefix)
80 * ../../sub1/sub2/foo -> sub1/sub2/foo (but no remaining prefix)
81 * `pwd`/../bar -> sub1/bar (no remaining prefix)
82 */
83char *prefix_path_gently(const char *prefix, int len,
84 int *remaining_prefix, const char *path)
d089ebaa
JH
85{
86 const char *orig = path;
18e051a3
CMAB
87 char *sanitized;
88 if (is_absolute_path(orig)) {
655ee9ea 89 sanitized = xmalloc(strlen(path) + 1);
645a29c4
NTND
90 if (remaining_prefix)
91 *remaining_prefix = 0;
655ee9ea
MEW
92 if (normalize_path_copy_len(sanitized, path, remaining_prefix)) {
93 free(sanitized);
94 return NULL;
95 }
96 if (abspath_part_inside_repo(sanitized)) {
97 free(sanitized);
98 return NULL;
99 }
18e051a3
CMAB
100 } else {
101 sanitized = xmalloc(len + strlen(path) + 1);
d089ebaa
JH
102 if (len)
103 memcpy(sanitized, prefix, len);
104 strcpy(sanitized + len, path);
645a29c4
NTND
105 if (remaining_prefix)
106 *remaining_prefix = len;
655ee9ea 107 if (normalize_path_copy_len(sanitized, sanitized, remaining_prefix)) {
546e0fd9
JK
108 free(sanitized);
109 return NULL;
d089ebaa 110 }
d089ebaa
JH
111 }
112 return sanitized;
f332726e
LT
113}
114
546e0fd9
JK
115char *prefix_path(const char *prefix, int len, const char *path)
116{
645a29c4 117 char *r = prefix_path_gently(prefix, len, NULL, path);
546e0fd9
JK
118 if (!r)
119 die("'%s' is outside repository", path);
120 return r;
121}
122
123int path_inside_repo(const char *prefix, const char *path)
124{
125 int len = prefix ? strlen(prefix) : 0;
645a29c4 126 char *r = prefix_path_gently(prefix, len, NULL, path);
546e0fd9
JK
127 if (r) {
128 free(r);
129 return 1;
130 }
131 return 0;
132}
133
c6e8c800
JH
134int check_filename(const char *prefix, const char *arg)
135{
136 const char *name;
137 struct stat st;
138
59556548 139 if (starts_with(arg, ":/")) {
4db86e8b
NTND
140 if (arg[2] == '\0') /* ":/" is root dir, always exists */
141 return 1;
142 name = arg + 2;
28fcc0b7
NTND
143 } else if (!no_wildcard(arg))
144 return 1;
145 else if (prefix)
4db86e8b
NTND
146 name = prefix_filename(prefix, strlen(prefix), arg);
147 else
148 name = arg;
c6e8c800
JH
149 if (!lstat(name, &st))
150 return 1; /* file exists */
151 if (errno == ENOENT || errno == ENOTDIR)
152 return 0; /* file does not exist */
153 die_errno("failed to stat '%s'", arg);
154}
155
023e37c3
MM
156static void NORETURN die_verify_filename(const char *prefix,
157 const char *arg,
158 int diagnose_misspelt_rev)
009fee47 159{
023e37c3
MM
160 if (!diagnose_misspelt_rev)
161 die("%s: no such path in the working tree.\n"
4d4b5739 162 "Use 'git <command> -- <path>...' to specify paths that do not exist locally.",
023e37c3 163 arg);
0e539dca
JH
164 /*
165 * Saying "'(icase)foo' does not exist in the index" when the
166 * user gave us ":(icase)foo" is just stupid. A magic pathspec
167 * begins with a colon and is followed by a non-alnum; do not
8c135ea2 168 * let maybe_die_on_misspelt_object_name() even trigger.
0e539dca
JH
169 */
170 if (!(arg[0] == ':' && !isalnum(arg[1])))
8c135ea2 171 maybe_die_on_misspelt_object_name(arg, prefix);
0e539dca 172
009fee47
MM
173 /* ... or fall back the most general message. */
174 die("ambiguous argument '%s': unknown revision or path not in the working tree.\n"
4d4b5739
MM
175 "Use '--' to separate paths from revisions, like this:\n"
176 "'git <command> [<revision>...] -- [<file>...]'", arg);
009fee47
MM
177
178}
179
e23d0b4a
LT
180/*
181 * Verify a filename that we got as an argument for a pathspec
182 * entry. Note that a filename that begins with "-" never verifies
183 * as true, because even if such a filename were to exist, we want
184 * it to be preceded by the "--" marker (or we want the user to
185 * use a format like "./-filename")
023e37c3
MM
186 *
187 * The "diagnose_misspelt_rev" is used to provide a user-friendly
188 * diagnosis when dying upon finding that "name" is not a pathname.
189 * If set to 1, the diagnosis will try to diagnose "name" as an
190 * invalid object name (e.g. HEAD:foo). If set to 0, the diagnosis
191 * will only complain about an inexisting file.
192 *
193 * This function is typically called to check that a "file or rev"
194 * argument is unambiguous. In this case, the caller will want
195 * diagnose_misspelt_rev == 1 when verifying the first non-rev
196 * argument (which could have been a revision), and
197 * diagnose_misspelt_rev == 0 for the next ones (because we already
198 * saw a filename, there's not ambiguity anymore).
e23d0b4a 199 */
023e37c3
MM
200void verify_filename(const char *prefix,
201 const char *arg,
202 int diagnose_misspelt_rev)
e23d0b4a 203{
e23d0b4a
LT
204 if (*arg == '-')
205 die("bad flag '%s' used after filename", arg);
c6e8c800 206 if (check_filename(prefix, arg))
e23d0b4a 207 return;
023e37c3 208 die_verify_filename(prefix, arg, diagnose_misspelt_rev);
e23d0b4a
LT
209}
210
ea92f41f
JH
211/*
212 * Opposite of the above: the command line did not have -- marker
213 * and we parsed the arg as a refname. It should not be interpretable
214 * as a filename.
215 */
216void verify_non_filename(const char *prefix, const char *arg)
217{
7ae3df8c 218 if (!is_inside_work_tree() || is_inside_git_dir())
68025633 219 return;
ea92f41f
JH
220 if (*arg == '-')
221 return; /* flag */
c6e8c800
JH
222 if (!check_filename(prefix, arg))
223 return;
224 die("ambiguous argument '%s': both revision and filename\n"
4d4b5739
MM
225 "Use '--' to separate paths from revisions, like this:\n"
226 "'git <command> [<revision>...] -- [<file>...]'", arg);
ea92f41f
JH
227}
228
31e26ebc 229int get_common_dir(struct strbuf *sb, const char *gitdir)
4dc4e145
NTND
230{
231 struct strbuf data = STRBUF_INIT;
232 struct strbuf path = STRBUF_INIT;
233 const char *git_common_dir = getenv(GIT_COMMON_DIR_ENVIRONMENT);
31e26ebc 234 int ret = 0;
4dc4e145
NTND
235 if (git_common_dir) {
236 strbuf_addstr(sb, git_common_dir);
31e26ebc 237 return 1;
4dc4e145
NTND
238 }
239 strbuf_addf(&path, "%s/commondir", gitdir);
240 if (file_exists(path.buf)) {
241 if (strbuf_read_file(&data, path.buf, 0) <= 0)
242 die_errno(_("failed to read %s"), path.buf);
243 while (data.len && (data.buf[data.len - 1] == '\n' ||
244 data.buf[data.len - 1] == '\r'))
245 data.len--;
246 data.buf[data.len] = '\0';
247 strbuf_reset(&path);
248 if (!is_absolute_path(data.buf))
249 strbuf_addf(&path, "%s/", gitdir);
250 strbuf_addbuf(&path, &data);
251 strbuf_addstr(sb, real_path(path.buf));
31e26ebc 252 ret = 1;
4dc4e145
NTND
253 } else
254 strbuf_addstr(sb, gitdir);
255 strbuf_release(&data);
256 strbuf_release(&path);
31e26ebc 257 return ret;
4dc4e145 258}
d288a700 259
5f5608bc 260/*
ad1a382f 261 * Test if it looks like we're at a git directory.
5e7bfe25 262 * We want to see:
5f5608bc 263 *
790296fd 264 * - either an objects/ directory _or_ the proper
5f5608bc 265 * GIT_OBJECT_DIRECTORY environment variable
ad1a382f 266 * - a refs/ directory
8098a178 267 * - either a HEAD symlink or a HEAD file that is formatted as
c847f537
JH
268 * a proper "ref:", or a regular file HEAD that has a properly
269 * formatted sha1 object name.
5f5608bc 270 */
b3256eb8 271int is_git_directory(const char *suspect)
5f5608bc 272{
1d186b6f
NTND
273 struct strbuf path = STRBUF_INIT;
274 int ret = 0;
275 size_t len;
ad1a382f 276
4dc4e145
NTND
277 /* Check worktree-related signatures */
278 strbuf_addf(&path, "%s/HEAD", suspect);
279 if (validate_headref(path.buf))
280 goto done;
281
282 strbuf_reset(&path);
283 get_common_dir(&path, suspect);
1d186b6f 284 len = path.len;
4dc4e145
NTND
285
286 /* Check non-worktree-related signatures */
ad1a382f
SP
287 if (getenv(DB_ENVIRONMENT)) {
288 if (access(getenv(DB_ENVIRONMENT), X_OK))
1d186b6f 289 goto done;
ad1a382f
SP
290 }
291 else {
4dc4e145 292 strbuf_setlen(&path, len);
1d186b6f
NTND
293 strbuf_addstr(&path, "/objects");
294 if (access(path.buf, X_OK))
295 goto done;
ad1a382f
SP
296 }
297
1d186b6f
NTND
298 strbuf_setlen(&path, len);
299 strbuf_addstr(&path, "/refs");
300 if (access(path.buf, X_OK))
301 goto done;
ad1a382f 302
1d186b6f
NTND
303 ret = 1;
304done:
305 strbuf_release(&path);
306 return ret;
5f5608bc
LT
307}
308
68025633
JS
309int is_inside_git_dir(void)
310{
e90fdc39
JS
311 if (inside_git_dir < 0)
312 inside_git_dir = is_inside_dir(get_git_dir());
313 return inside_git_dir;
892c41b9
ML
314}
315
892c41b9
ML
316int is_inside_work_tree(void)
317{
e90fdc39
JS
318 if (inside_work_tree < 0)
319 inside_work_tree = is_inside_dir(get_git_work_tree());
320 return inside_work_tree;
892c41b9
ML
321}
322
f3fa1838
JH
323void setup_work_tree(void)
324{
354e6534
JS
325 const char *work_tree, *git_dir;
326 static int initialized = 0;
327
328 if (initialized)
329 return;
330 work_tree = get_git_work_tree();
331 git_dir = get_git_dir();
59f0f2f3 332 if (!is_absolute_path(git_dir))
e2a57aac 333 git_dir = real_path(get_git_dir());
59f0f2f3
MH
334 if (!work_tree || chdir(work_tree))
335 die("This operation must be run in a work tree");
0ed74813
NTND
336
337 /*
338 * Make sure subsequent git processes find correct worktree
339 * if $GIT_WORK_TREE is set relative
340 */
341 if (getenv(GIT_WORK_TREE_ENVIRONMENT))
342 setenv(GIT_WORK_TREE_ENVIRONMENT, ".", 1);
343
41894ae3 344 set_git_dir(remove_leading_path(git_dir, work_tree));
354e6534 345 initialized = 1;
59f0f2f3
MH
346}
347
31e26ebc
NTND
348static int check_repo_format(const char *var, const char *value, void *cb)
349{
350 if (strcmp(var, "core.repositoryformatversion") == 0)
351 repository_format_version = git_config_int(var, value);
352 else if (strcmp(var, "core.sharedrepository") == 0)
353 shared_repository = git_config_perm(var, value);
354 return 0;
355}
356
337e51ce 357static int check_repository_format_gently(const char *gitdir, int *nongit_ok)
9459aa77 358{
7d0fb0da
NTND
359 struct strbuf sb = STRBUF_INIT;
360 const char *repo_config;
31e26ebc 361 config_fn_t fn;
7d0fb0da 362 int ret = 0;
337e51ce 363
31e26ebc
NTND
364 if (get_common_dir(&sb, gitdir))
365 fn = check_repo_format;
366 else
367 fn = check_repository_format_version;
e61a509a
NTND
368 strbuf_addstr(&sb, "/config");
369 repo_config = sb.buf;
370
337e51ce
NTND
371 /*
372 * git_config() can't be used here because it calls git_pathdup()
373 * to get $GIT_CONFIG/config. That call will make setup_git_env()
374 * set git_dir to ".git".
375 *
376 * We are in gitdir setup, no git dir has been found useable yet.
377 * Use a gentler version of git_config() to check if this repo
378 * is a good one.
379 */
31e26ebc 380 git_config_early(fn, NULL, repo_config);
9459aa77
NTND
381 if (GIT_REPO_VERSION < repository_format_version) {
382 if (!nongit_ok)
383 die ("Expected git repo version <= %d, found %d",
384 GIT_REPO_VERSION, repository_format_version);
385 warning("Expected git repo version <= %d, found %d",
386 GIT_REPO_VERSION, repository_format_version);
387 warning("Please upgrade Git");
388 *nongit_ok = -1;
7d0fb0da 389 ret = -1;
9459aa77 390 }
7d0fb0da
NTND
391 strbuf_release(&sb);
392 return ret;
9459aa77
NTND
393}
394
23af91d1
NTND
395static void update_linked_gitdir(const char *gitfile, const char *gitdir)
396{
397 struct strbuf path = STRBUF_INIT;
398 struct stat st;
399
400 strbuf_addf(&path, "%s/gitfile", gitdir);
401 if (stat(path.buf, &st) || st.st_mtime + 24 * 3600 < time(NULL))
402 write_file(path.buf, 0, "%s\n", gitfile);
403 strbuf_release(&path);
404}
405
b44ebb19
LH
406/*
407 * Try to read the location of the git directory from the .git file,
408 * return path to git directory if found.
a93bedad
EE
409 *
410 * On failure, if return_error_code is not NULL, return_error_code
411 * will be set to an error code and NULL will be returned. If
412 * return_error_code is NULL the function will die instead (for most
413 * cases).
b44ebb19 414 */
a93bedad 415const char *read_gitfile_gently(const char *path, int *return_error_code)
b44ebb19 416{
921bdd96 417 const int max_file_size = 1 << 20; /* 1MB */
a93bedad
EE
418 int error_code = 0;
419 char *buf = NULL;
420 char *dir = NULL;
40c813e0 421 const char *slash;
b44ebb19
LH
422 struct stat st;
423 int fd;
b1905aea 424 ssize_t len;
b44ebb19 425
a93bedad
EE
426 if (stat(path, &st)) {
427 error_code = READ_GITFILE_ERR_STAT_FAILED;
428 goto cleanup_return;
429 }
430 if (!S_ISREG(st.st_mode)) {
431 error_code = READ_GITFILE_ERR_NOT_A_FILE;
432 goto cleanup_return;
433 }
921bdd96
EE
434 if (st.st_size > max_file_size) {
435 error_code = READ_GITFILE_ERR_TOO_LARGE;
436 goto cleanup_return;
437 }
b44ebb19 438 fd = open(path, O_RDONLY);
a93bedad
EE
439 if (fd < 0) {
440 error_code = READ_GITFILE_ERR_OPEN_FAILED;
441 goto cleanup_return;
442 }
b44ebb19
LH
443 buf = xmalloc(st.st_size + 1);
444 len = read_in_full(fd, buf, st.st_size);
445 close(fd);
a93bedad
EE
446 if (len != st.st_size) {
447 error_code = READ_GITFILE_ERR_READ_FAILED;
448 goto cleanup_return;
449 }
b44ebb19 450 buf[len] = '\0';
a93bedad
EE
451 if (!starts_with(buf, "gitdir: ")) {
452 error_code = READ_GITFILE_ERR_INVALID_FORMAT;
453 goto cleanup_return;
454 }
b44ebb19
LH
455 while (buf[len - 1] == '\n' || buf[len - 1] == '\r')
456 len--;
a93bedad
EE
457 if (len < 9) {
458 error_code = READ_GITFILE_ERR_NO_PATH;
459 goto cleanup_return;
460 }
b44ebb19 461 buf[len] = '\0';
40c813e0
BK
462 dir = buf + 8;
463
464 if (!is_absolute_path(dir) && (slash = strrchr(path, '/'))) {
465 size_t pathlen = slash+1 - path;
466 size_t dirlen = pathlen + len - 8;
467 dir = xmalloc(dirlen + 1);
468 strncpy(dir, path, pathlen);
469 strncpy(dir + pathlen, buf + 8, len - 8);
470 dir[dirlen] = '\0';
471 free(buf);
472 buf = dir;
473 }
a93bedad
EE
474 if (!is_git_directory(dir)) {
475 error_code = READ_GITFILE_ERR_NOT_A_REPO;
476 goto cleanup_return;
477 }
23af91d1 478 update_linked_gitdir(path, dir);
e2a57aac 479 path = real_path(dir);
40c813e0 480
a93bedad 481cleanup_return:
b44ebb19 482 free(buf);
a93bedad
EE
483
484 if (return_error_code)
485 *return_error_code = error_code;
486
487 if (error_code) {
488 if (return_error_code)
489 return NULL;
490
491 switch (error_code) {
492 case READ_GITFILE_ERR_STAT_FAILED:
493 case READ_GITFILE_ERR_NOT_A_FILE:
494 return NULL;
495 case READ_GITFILE_ERR_OPEN_FAILED:
496 die_errno("Error opening '%s'", path);
921bdd96
EE
497 case READ_GITFILE_ERR_TOO_LARGE:
498 die("Too large to be a .git file: '%s'", path);
a93bedad
EE
499 case READ_GITFILE_ERR_READ_FAILED:
500 die("Error reading %s", path);
501 case READ_GITFILE_ERR_INVALID_FORMAT:
502 die("Invalid gitfile format: %s", path);
503 case READ_GITFILE_ERR_NO_PATH:
504 die("No path in gitfile: %s", path);
505 case READ_GITFILE_ERR_NOT_A_REPO:
506 die("Not a git repository: %s", dir);
507 default:
508 assert(0);
509 }
510 }
511
b44ebb19
LH
512 return path;
513}
514
e4e30347 515static const char *setup_explicit_git_dir(const char *gitdirenv,
7333ed17 516 struct strbuf *cwd,
b3f66fd3 517 int *nongit_ok)
e4e30347 518{
b3f66fd3
NTND
519 const char *work_tree_env = getenv(GIT_WORK_TREE_ENVIRONMENT);
520 const char *worktree;
521 char *gitfile;
9b125da4 522 int offset;
e4e30347
JN
523
524 if (PATH_MAX - 40 < strlen(gitdirenv))
525 die("'$%s' too big", GIT_DIR_ENVIRONMENT);
b3f66fd3 526
13d6ec91 527 gitfile = (char*)read_gitfile(gitdirenv);
b3f66fd3
NTND
528 if (gitfile) {
529 gitfile = xstrdup(gitfile);
530 gitdirenv = gitfile;
531 }
532
e4e30347
JN
533 if (!is_git_directory(gitdirenv)) {
534 if (nongit_ok) {
535 *nongit_ok = 1;
b3f66fd3 536 free(gitfile);
e4e30347
JN
537 return NULL;
538 }
539 die("Not a git repository: '%s'", gitdirenv);
540 }
b3f66fd3
NTND
541
542 if (check_repository_format_gently(gitdirenv, nongit_ok)) {
543 free(gitfile);
544 return NULL;
e4e30347 545 }
b3f66fd3
NTND
546
547 /* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */
548 if (work_tree_env)
549 set_git_work_tree(work_tree_env);
550 else if (is_bare_repository_cfg > 0) {
551 if (git_work_tree_cfg) /* #22.2, #30 */
552 die("core.bare and core.worktree do not make sense");
553
554 /* #18, #26 */
555 set_git_dir(gitdirenv);
556 free(gitfile);
e4e30347 557 return NULL;
b3f66fd3
NTND
558 }
559 else if (git_work_tree_cfg) { /* #6, #14 */
560 if (is_absolute_path(git_work_tree_cfg))
561 set_git_work_tree(git_work_tree_cfg);
562 else {
56b9f6e7 563 char *core_worktree;
b3f66fd3
NTND
564 if (chdir(gitdirenv))
565 die_errno("Could not chdir to '%s'", gitdirenv);
566 if (chdir(git_work_tree_cfg))
567 die_errno("Could not chdir to '%s'", git_work_tree_cfg);
56b9f6e7 568 core_worktree = xgetcwd();
7333ed17 569 if (chdir(cwd->buf))
b3f66fd3
NTND
570 die_errno("Could not come back to cwd");
571 set_git_work_tree(core_worktree);
56b9f6e7 572 free(core_worktree);
b3f66fd3
NTND
573 }
574 }
2cd83d10
JK
575 else if (!git_env_bool(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, 1)) {
576 /* #16d */
577 set_git_dir(gitdirenv);
578 free(gitfile);
579 return NULL;
580 }
b3f66fd3
NTND
581 else /* #2, #10 */
582 set_git_work_tree(".");
583
584 /* set_git_work_tree() must have been called by now */
585 worktree = get_git_work_tree();
586
587 /* both get_git_work_tree() and cwd are already normalized */
7333ed17 588 if (!strcmp(cwd->buf, worktree)) { /* cwd == worktree */
b3f66fd3
NTND
589 set_git_dir(gitdirenv);
590 free(gitfile);
e4e30347 591 return NULL;
b3f66fd3 592 }
e4e30347 593
7333ed17 594 offset = dir_inside_of(cwd->buf, worktree);
9b125da4 595 if (offset >= 0) { /* cwd inside worktree? */
e2a57aac 596 set_git_dir(real_path(gitdirenv));
b3f66fd3
NTND
597 if (chdir(worktree))
598 die_errno("Could not chdir to '%s'", worktree);
7333ed17 599 strbuf_addch(cwd, '/');
b3f66fd3 600 free(gitfile);
7333ed17 601 return cwd->buf + offset;
93a00542 602 }
b3f66fd3
NTND
603
604 /* cwd outside worktree */
605 set_git_dir(gitdirenv);
606 free(gitfile);
607 return NULL;
93a00542
JN
608}
609
9951d3b3 610static const char *setup_discovered_git_dir(const char *gitdir,
7333ed17 611 struct strbuf *cwd, int offset,
9951d3b3 612 int *nongit_ok)
98937bef 613{
9951d3b3
NTND
614 if (check_repository_format_gently(gitdir, nongit_ok))
615 return NULL;
98937bef 616
4868b2ea
JN
617 /* --work-tree is set without --git-dir; use discovered one */
618 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
7333ed17 619 if (offset != cwd->len && !is_absolute_path(gitdir))
e2a57aac 620 gitdir = xstrdup(real_path(gitdir));
7333ed17 621 if (chdir(cwd->buf))
4868b2ea 622 die_errno("Could not come back to cwd");
7333ed17 623 return setup_explicit_git_dir(gitdir, cwd, nongit_ok);
4868b2ea
JN
624 }
625
9951d3b3
NTND
626 /* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */
627 if (is_bare_repository_cfg > 0) {
7333ed17
RS
628 set_git_dir(offset == cwd->len ? gitdir : real_path(gitdir));
629 if (chdir(cwd->buf))
9951d3b3 630 die_errno("Could not come back to cwd");
98937bef 631 return NULL;
9951d3b3 632 }
98937bef 633
9951d3b3
NTND
634 /* #0, #1, #5, #8, #9, #12, #13 */
635 set_git_work_tree(".");
636 if (strcmp(gitdir, DEFAULT_GIT_DIR_ENVIRONMENT))
637 set_git_dir(gitdir);
98937bef 638 inside_git_dir = 0;
9951d3b3 639 inside_work_tree = 1;
7333ed17 640 if (offset == cwd->len)
98937bef
NTND
641 return NULL;
642
643 /* Make "offset" point to past the '/', and add a '/' at the end */
644 offset++;
7333ed17
RS
645 strbuf_addch(cwd, '/');
646 return cwd->buf + offset;
98937bef
NTND
647}
648
1cd8031b 649/* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */
7333ed17
RS
650static const char *setup_bare_git_dir(struct strbuf *cwd, int offset,
651 int *nongit_ok)
68698da5
JN
652{
653 int root_len;
654
1cd8031b
NTND
655 if (check_repository_format_gently(".", nongit_ok))
656 return NULL;
657
2cd83d10
JK
658 setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, "0", 1);
659
4868b2ea
JN
660 /* --work-tree is set without --git-dir; use discovered one */
661 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
662 const char *gitdir;
663
7333ed17
RS
664 gitdir = offset == cwd->len ? "." : xmemdupz(cwd->buf, offset);
665 if (chdir(cwd->buf))
4868b2ea 666 die_errno("Could not come back to cwd");
7333ed17 667 return setup_explicit_git_dir(gitdir, cwd, nongit_ok);
4868b2ea
JN
668 }
669
68698da5 670 inside_git_dir = 1;
1cd8031b 671 inside_work_tree = 0;
7333ed17
RS
672 if (offset != cwd->len) {
673 if (chdir(cwd->buf))
8fc0ae80 674 die_errno("Cannot come back to cwd");
7333ed17
RS
675 root_len = offset_1st_component(cwd->buf);
676 strbuf_setlen(cwd, offset > root_len ? offset : root_len);
677 set_git_dir(cwd->buf);
337e51ce 678 }
1cd8031b 679 else
68698da5 680 set_git_dir(".");
68698da5
JN
681 return NULL;
682}
683
f161edeb
JN
684static const char *setup_nongit(const char *cwd, int *nongit_ok)
685{
686 if (!nongit_ok)
687 die("Not a git repository (or any of the parent directories): %s", DEFAULT_GIT_DIR_ENVIRONMENT);
688 if (chdir(cwd))
689 die_errno("Cannot come back to cwd");
690 *nongit_ok = 1;
691 return NULL;
692}
693
2565b43b 694static dev_t get_device_or_die(const char *path, const char *prefix, int prefix_len)
60c98d1e
JN
695{
696 struct stat buf;
2565b43b
CB
697 if (stat(path, &buf)) {
698 die_errno("failed to stat '%*s%s%s'",
699 prefix_len,
60c98d1e
JN
700 prefix ? prefix : "",
701 prefix ? "/" : "", path);
2565b43b 702 }
60c98d1e
JN
703 return buf.st_dev;
704}
705
9e2326c7 706/*
1b77d83c
MH
707 * A "string_list_each_func_t" function that canonicalizes an entry
708 * from GIT_CEILING_DIRECTORIES using real_path_if_valid(), or
7ec30aaa
MH
709 * discards it if unusable. The presence of an empty entry in
710 * GIT_CEILING_DIRECTORIES turns off canonicalization for all
711 * subsequent entries.
9e2326c7 712 */
1b77d83c 713static int canonicalize_ceiling_entry(struct string_list_item *item,
7ec30aaa 714 void *cb_data)
9e2326c7 715{
7ec30aaa 716 int *empty_entry_found = cb_data;
1b77d83c 717 char *ceil = item->string;
9e2326c7 718
7ec30aaa
MH
719 if (!*ceil) {
720 *empty_entry_found = 1;
9e2326c7 721 return 0;
7ec30aaa 722 } else if (!is_absolute_path(ceil)) {
9e2326c7 723 return 0;
7ec30aaa
MH
724 } else if (*empty_entry_found) {
725 /* Keep entry but do not canonicalize it */
726 return 1;
727 } else {
728 const char *real_path = real_path_if_valid(ceil);
729 if (!real_path)
730 return 0;
731 free(item->string);
732 item->string = xstrdup(real_path);
733 return 1;
734 }
9e2326c7
MH
735}
736
e90fdc39
JS
737/*
738 * We cannot decide in this function whether we are in the work tree or
739 * not, since the config can only be read _after_ this function was called.
740 */
a60645f9 741static const char *setup_git_directory_gently_1(int *nongit_ok)
d288a700 742{
0454dd93 743 const char *env_ceiling_dirs = getenv(CEILING_DIRECTORIES_ENVIRONMENT);
31171d9e 744 struct string_list ceiling_dirs = STRING_LIST_INIT_DUP;
7333ed17 745 static struct strbuf cwd = STRBUF_INIT;
9951d3b3
NTND
746 const char *gitdirenv, *ret;
747 char *gitfile;
7333ed17 748 int offset, offset_parent, ceil_offset = -1;
c7d1d1b1
RH
749 dev_t current_device = 0;
750 int one_filesystem = 1;
d288a700 751
3c8687a7
TA
752 /*
753 * We may have read an incomplete configuration before
754 * setting-up the git directory. If so, clear the cache so
755 * that the next queries to the configuration reload complete
756 * configuration (including the per-repo config file that we
757 * ignored previously).
758 */
759 git_config_clear();
760
af05d679
SG
761 /*
762 * Let's assume that we are in a git repository.
763 * If it turns out later that we are somewhere else, the value will be
764 * updated accordingly.
765 */
766 if (nongit_ok)
767 *nongit_ok = 0;
768
7333ed17 769 if (strbuf_getcwd(&cwd))
b3f66fd3 770 die_errno("Unable to read current working directory");
7333ed17 771 offset = cwd.len;
b3f66fd3 772
e90fdc39
JS
773 /*
774 * If GIT_DIR is set explicitly, we're not going
775 * to do any discovery, but we still do repository
776 * validation.
777 */
ad1a382f 778 gitdirenv = getenv(GIT_DIR_ENVIRONMENT);
e4e30347 779 if (gitdirenv)
7333ed17 780 return setup_explicit_git_dir(gitdirenv, &cwd, nongit_ok);
d288a700 781
31171d9e 782 if (env_ceiling_dirs) {
7ec30aaa
MH
783 int empty_entry_found = 0;
784
31171d9e 785 string_list_split(&ceiling_dirs, env_ceiling_dirs, PATH_SEP, -1);
1b77d83c 786 filter_string_list(&ceiling_dirs, 0,
7ec30aaa 787 canonicalize_ceiling_entry, &empty_entry_found);
7333ed17 788 ceil_offset = longest_ancestor_length(cwd.buf, &ceiling_dirs);
31171d9e
MH
789 string_list_clear(&ceiling_dirs, 0);
790 }
791
7333ed17 792 if (ceil_offset < 0 && has_dos_drive_prefix(cwd.buf))
17d778e7 793 ceil_offset = 1;
d288a700 794
892c41b9 795 /*
e90fdc39 796 * Test in the following order (relative to the cwd):
b44ebb19 797 * - .git (file containing "gitdir: <path>")
e90fdc39
JS
798 * - .git/
799 * - ./ (bare)
b44ebb19 800 * - ../.git
e90fdc39
JS
801 * - ../.git/
802 * - ../ (bare)
803 * - ../../.git/
804 * etc.
892c41b9 805 */
cf87463e 806 one_filesystem = !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM", 0);
60c98d1e 807 if (one_filesystem)
2565b43b 808 current_device = get_device_or_die(".", NULL, 0);
e90fdc39 809 for (;;) {
13d6ec91 810 gitfile = (char*)read_gitfile(DEFAULT_GIT_DIR_ENVIRONMENT);
9951d3b3
NTND
811 if (gitfile)
812 gitdirenv = gitfile = xstrdup(gitfile);
813 else {
814 if (is_git_directory(DEFAULT_GIT_DIR_ENVIRONMENT))
815 gitdirenv = DEFAULT_GIT_DIR_ENVIRONMENT;
816 }
817
818 if (gitdirenv) {
819 ret = setup_discovered_git_dir(gitdirenv,
7333ed17 820 &cwd, offset,
9951d3b3
NTND
821 nongit_ok);
822 free(gitfile);
823 return ret;
824 }
825 free(gitfile);
826
68698da5 827 if (is_git_directory("."))
7333ed17 828 return setup_bare_git_dir(&cwd, offset, nongit_ok);
1cd8031b 829
2565b43b 830 offset_parent = offset;
7333ed17 831 while (--offset_parent > ceil_offset && cwd.buf[offset_parent] != '/');
2565b43b 832 if (offset_parent <= ceil_offset)
7333ed17 833 return setup_nongit(cwd.buf, nongit_ok);
8030e442 834 if (one_filesystem) {
7333ed17
RS
835 dev_t parent_device = get_device_or_die("..", cwd.buf,
836 offset);
60c98d1e 837 if (parent_device != current_device) {
8030e442 838 if (nongit_ok) {
7333ed17 839 if (chdir(cwd.buf))
8030e442
LD
840 die_errno("Cannot come back to cwd");
841 *nongit_ok = 1;
842 return NULL;
843 }
7333ed17 844 strbuf_setlen(&cwd, offset);
2565b43b 845 die("Not a git repository (or any parent up to mount point %s)\n"
7333ed17
RS
846 "Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).",
847 cwd.buf);
8030e442
LD
848 }
849 }
502ffe34 850 if (chdir("..")) {
7333ed17
RS
851 strbuf_setlen(&cwd, offset);
852 die_errno("Cannot change to '%s/..'", cwd.buf);
502ffe34 853 }
2565b43b 854 offset = offset_parent;
892c41b9 855 }
d288a700 856}
5e7bfe25 857
a60645f9
NTND
858const char *setup_git_directory_gently(int *nongit_ok)
859{
860 const char *prefix;
861
862 prefix = setup_git_directory_gently_1(nongit_ok);
1f5d271f 863 if (prefix)
a6f7f9a3 864 setenv(GIT_PREFIX_ENVIRONMENT, prefix, 1);
1f5d271f 865 else
a6f7f9a3 866 setenv(GIT_PREFIX_ENVIRONMENT, "", 1);
1f5d271f 867
f07d6a1a 868 if (startup_info) {
a60645f9 869 startup_info->have_repository = !nongit_ok || !*nongit_ok;
f07d6a1a
NTND
870 startup_info->prefix = prefix;
871 }
a60645f9
NTND
872 return prefix;
873}
874
94df2506
JH
875int git_config_perm(const char *var, const char *value)
876{
06cbe855
HO
877 int i;
878 char *endptr;
879
880 if (value == NULL)
881 return PERM_GROUP;
882
883 if (!strcmp(value, "umask"))
884 return PERM_UMASK;
885 if (!strcmp(value, "group"))
886 return PERM_GROUP;
887 if (!strcmp(value, "all") ||
888 !strcmp(value, "world") ||
889 !strcmp(value, "everybody"))
890 return PERM_EVERYBODY;
891
892 /* Parse octal numbers */
893 i = strtol(value, &endptr, 8);
894
895 /* If not an octal number, maybe true/false? */
896 if (*endptr != 0)
897 return git_config_bool(var, value) ? PERM_GROUP : PERM_UMASK;
898
899 /*
900 * Treat values 0, 1 and 2 as compatibility cases, otherwise it is
5a688fe4 901 * a chmod value to restrict to.
06cbe855
HO
902 */
903 switch (i) {
904 case PERM_UMASK: /* 0 */
905 return PERM_UMASK;
906 case OLD_PERM_GROUP: /* 1 */
907 return PERM_GROUP;
908 case OLD_PERM_EVERYBODY: /* 2 */
909 return PERM_EVERYBODY;
94df2506 910 }
06cbe855
HO
911
912 /* A filemode value was given: 0xxx */
913
914 if ((i & 0600) != 0600)
915 die("Problem with core.sharedRepository filemode value "
916 "(0%.3o).\nThe owner of files must always have "
917 "read and write permissions.", i);
918
919 /*
920 * Mask filemode value. Others can not get write permission.
921 * x flags for directories are handled separately.
922 */
5a688fe4 923 return -(i & 0666);
94df2506
JH
924}
925
ef90d6d4 926int check_repository_format_version(const char *var, const char *value, void *cb)
ab9cb76f 927{
31e26ebc
NTND
928 int ret = check_repo_format(var, value, cb);
929 if (ret)
930 return ret;
931 if (strcmp(var, "core.bare") == 0) {
e90fdc39
JS
932 is_bare_repository_cfg = git_config_bool(var, value);
933 if (is_bare_repository_cfg == 1)
934 inside_work_tree = -1;
935 } else if (strcmp(var, "core.worktree") == 0) {
180483c5
JH
936 if (!value)
937 return config_error_nonbool(var);
8e0f7003 938 free(git_work_tree_cfg);
e90fdc39
JS
939 git_work_tree_cfg = xstrdup(value);
940 inside_work_tree = -1;
941 }
299726d5 942 return 0;
ab9cb76f
JH
943}
944
945int check_repository_format(void)
946{
337e51ce 947 return check_repository_format_gently(get_git_dir(), NULL);
ab9cb76f
JH
948}
949
e1e5ec86
CB
950/*
951 * Returns the "prefix", a path to the current working directory
952 * relative to the work tree root, or NULL, if the current working
953 * directory is not a strict subdirectory of the work tree root. The
954 * prefix always ends with a '/' character.
955 */
5e7bfe25
JH
956const char *setup_git_directory(void)
957{
b3f66fd3 958 return setup_git_directory_gently(NULL);
5e7bfe25 959}
abc06822
FG
960
961const char *resolve_gitdir(const char *suspect)
962{
963 if (is_git_directory(suspect))
964 return suspect;
efc5fb6a 965 return read_gitfile(suspect);
abc06822 966}
1d999ddd
TR
967
968/* if any standard file descriptor is missing open it to /dev/null */
969void sanitize_stdfds(void)
970{
971 int fd = open("/dev/null", O_RDWR, 0);
972 while (fd != -1 && fd < 2)
973 fd = dup(fd);
974 if (fd == -1)
975 die_errno("open /dev/null or dup failed");
976 if (fd > 2)
977 close(fd);
978}
de0957ce
NTND
979
980int daemonize(void)
981{
982#ifdef NO_POSIX_GOODIES
983 errno = ENOSYS;
984 return -1;
985#else
986 switch (fork()) {
987 case 0:
988 break;
989 case -1:
990 die_errno("fork failed");
991 default:
992 exit(0);
993 }
994 if (setsid() == -1)
995 die_errno("setsid failed");
996 close(0);
997 close(1);
998 close(2);
999 sanitize_stdfds();
1000 return 0;
1001#endif
1002}