]> git.ipfire.org Git - thirdparty/git.git/blame - setup.c
The sixth batch
[thirdparty/git.git] / setup.c
CommitLineData
d288a700 1#include "cache.h"
c14c234f 2#include "repository.h"
b2141fc1 3#include "config.h"
e90fdc39 4#include "dir.h"
31171d9e 5#include "string-list.h"
8500e0de 6#include "chdir-notify.h"
60b7a92d 7#include "promisor-remote.h"
e90fdc39
JS
8
9static int inside_git_dir = -1;
10static int inside_work_tree = -1;
fada7674 11static int work_tree_config_is_bogus;
d288a700 12
46c3cd44
JK
13static struct startup_info the_startup_info;
14struct startup_info *startup_info = &the_startup_info;
15
ddc2a628
MEW
16/*
17 * The input parameter must contain an absolute path, and it must already be
18 * normalized.
19 *
20 * Find the part of an absolute path that lies inside the work tree by
21 * dereferencing symlinks outside the work tree, for example:
22 * /dir1/repo/dir2/file (work tree is /dir1/repo) -> dir2/file
23 * /dir/file (work tree is /) -> dir/file
24 * /dir/symlink1/symlink2 (symlink1 points to work tree) -> symlink2
25 * /dir/repolink/file (repolink points to /dir/repo) -> file
26 * /dir/repo (exactly equal to work tree) -> (empty string)
27 */
28static int abspath_part_inside_repo(char *path)
29{
30 size_t len;
31 size_t wtlen;
32 char *path0;
33 int off;
34 const char *work_tree = get_git_work_tree();
3d7747e3 35 struct strbuf realpath = STRBUF_INIT;
ddc2a628
MEW
36
37 if (!work_tree)
38 return -1;
39 wtlen = strlen(work_tree);
40 len = strlen(path);
6127ff63 41 off = offset_1st_component(path);
ddc2a628
MEW
42
43 /* check if work tree is already the prefix */
d8727b36 44 if (wtlen <= len && !fspathncmp(path, work_tree, wtlen)) {
ddc2a628
MEW
45 if (path[wtlen] == '/') {
46 memmove(path, path + wtlen + 1, len - wtlen);
47 return 0;
48 } else if (path[wtlen - 1] == '/' || path[wtlen] == '\0') {
49 /* work tree is the root, or the whole path */
50 memmove(path, path + wtlen, len - wtlen + 1);
51 return 0;
52 }
53 /* work tree might match beginning of a symlink to work tree */
54 off = wtlen;
55 }
56 path0 = path;
6127ff63 57 path += off;
ddc2a628
MEW
58
59 /* check each '/'-terminated level */
60 while (*path) {
61 path++;
62 if (*path == '/') {
63 *path = '\0';
3d7747e3
AM
64 strbuf_realpath(&realpath, path0, 1);
65 if (fspathcmp(realpath.buf, work_tree) == 0) {
ddc2a628 66 memmove(path0, path + 1, len - (path - path0));
3d7747e3 67 strbuf_release(&realpath);
ddc2a628
MEW
68 return 0;
69 }
70 *path = '/';
71 }
72 }
73
74 /* check whole path */
3d7747e3
AM
75 strbuf_realpath(&realpath, path0, 1);
76 if (fspathcmp(realpath.buf, work_tree) == 0) {
ddc2a628 77 *path0 = '\0';
3d7747e3 78 strbuf_release(&realpath);
ddc2a628
MEW
79 return 0;
80 }
81
3d7747e3 82 strbuf_release(&realpath);
ddc2a628
MEW
83 return -1;
84}
85
645a29c4
NTND
86/*
87 * Normalize "path", prepending the "prefix" for relative paths. If
88 * remaining_prefix is not NULL, return the actual prefix still
89 * remains in the path. For example, prefix = sub1/sub2/ and path is
90 *
91 * foo -> sub1/sub2/foo (full prefix)
92 * ../foo -> sub1/foo (remaining prefix is sub1/)
93 * ../../bar -> bar (no remaining prefix)
94 * ../../sub1/sub2/foo -> sub1/sub2/foo (but no remaining prefix)
95 * `pwd`/../bar -> sub1/bar (no remaining prefix)
96 */
97char *prefix_path_gently(const char *prefix, int len,
98 int *remaining_prefix, const char *path)
d089ebaa
JH
99{
100 const char *orig = path;
18e051a3
CMAB
101 char *sanitized;
102 if (is_absolute_path(orig)) {
3733e694 103 sanitized = xmallocz(strlen(path));
645a29c4
NTND
104 if (remaining_prefix)
105 *remaining_prefix = 0;
655ee9ea
MEW
106 if (normalize_path_copy_len(sanitized, path, remaining_prefix)) {
107 free(sanitized);
108 return NULL;
109 }
110 if (abspath_part_inside_repo(sanitized)) {
111 free(sanitized);
112 return NULL;
113 }
18e051a3 114 } else {
24041d6b 115 sanitized = xstrfmt("%.*s%s", len, len ? prefix : "", path);
645a29c4
NTND
116 if (remaining_prefix)
117 *remaining_prefix = len;
655ee9ea 118 if (normalize_path_copy_len(sanitized, sanitized, remaining_prefix)) {
546e0fd9
JK
119 free(sanitized);
120 return NULL;
d089ebaa 121 }
d089ebaa
JH
122 }
123 return sanitized;
f332726e
LT
124}
125
546e0fd9
JK
126char *prefix_path(const char *prefix, int len, const char *path)
127{
645a29c4 128 char *r = prefix_path_gently(prefix, len, NULL, path);
5c203986
ES
129 if (!r) {
130 const char *hint_path = get_git_work_tree();
131 if (!hint_path)
132 hint_path = get_git_dir();
e0020b2f 133 die(_("'%s' is outside repository at '%s'"), path,
5c203986
ES
134 absolute_path(hint_path));
135 }
546e0fd9
JK
136 return r;
137}
138
139int path_inside_repo(const char *prefix, const char *path)
140{
141 int len = prefix ? strlen(prefix) : 0;
645a29c4 142 char *r = prefix_path_gently(prefix, len, NULL, path);
546e0fd9
JK
143 if (r) {
144 free(r);
145 return 1;
146 }
147 return 0;
148}
149
c6e8c800
JH
150int check_filename(const char *prefix, const char *arg)
151{
e4da43b1 152 char *to_free = NULL;
c6e8c800
JH
153 struct stat st;
154
d51c6ee0
JK
155 if (skip_prefix(arg, ":/", &arg)) {
156 if (!*arg) /* ":/" is root dir, always exists */
4db86e8b 157 return 1;
a08cbcda 158 prefix = NULL;
42471bce
JK
159 } else if (skip_prefix(arg, ":!", &arg) ||
160 skip_prefix(arg, ":^", &arg)) {
161 if (!*arg) /* excluding everything is silly, but allowed */
162 return 1;
a08cbcda
JK
163 }
164
165 if (prefix)
166 arg = to_free = prefix_filename(prefix, arg);
167
168 if (!lstat(arg, &st)) {
e4da43b1 169 free(to_free);
c6e8c800 170 return 1; /* file exists */
e4da43b1 171 }
93dd544f 172 if (is_missing_file_error(errno)) {
e4da43b1 173 free(to_free);
c6e8c800 174 return 0; /* file does not exist */
e4da43b1 175 }
fc045fe7 176 die_errno(_("failed to stat '%s'"), arg);
c6e8c800
JH
177}
178
e270f42c
NTND
179static void NORETURN die_verify_filename(struct repository *r,
180 const char *prefix,
023e37c3
MM
181 const char *arg,
182 int diagnose_misspelt_rev)
009fee47 183{
023e37c3 184 if (!diagnose_misspelt_rev)
ab33a76e
VA
185 die(_("%s: no such path in the working tree.\n"
186 "Use 'git <command> -- <path>...' to specify paths that do not exist locally."),
023e37c3 187 arg);
0e539dca
JH
188 /*
189 * Saying "'(icase)foo' does not exist in the index" when the
190 * user gave us ":(icase)foo" is just stupid. A magic pathspec
191 * begins with a colon and is followed by a non-alnum; do not
8c135ea2 192 * let maybe_die_on_misspelt_object_name() even trigger.
0e539dca
JH
193 */
194 if (!(arg[0] == ':' && !isalnum(arg[1])))
e270f42c 195 maybe_die_on_misspelt_object_name(r, arg, prefix);
0e539dca 196
009fee47 197 /* ... or fall back the most general message. */
ab33a76e
VA
198 die(_("ambiguous argument '%s': unknown revision or path not in the working tree.\n"
199 "Use '--' to separate paths from revisions, like this:\n"
200 "'git <command> [<revision>...] -- [<file>...]'"), arg);
009fee47
MM
201
202}
203
c99eddd8
JK
204/*
205 * Check for arguments that don't resolve as actual files,
206 * but which look sufficiently like pathspecs that we'll consider
207 * them such for the purposes of rev/pathspec DWIM parsing.
208 */
209static int looks_like_pathspec(const char *arg)
210{
39e21c6e
JK
211 const char *p;
212 int escaped = 0;
213
214 /*
215 * Wildcard characters imply the user is looking to match pathspecs
216 * that aren't in the filesystem. Note that this doesn't include
217 * backslash even though it's a glob special; by itself it doesn't
218 * cause any increase in the match. Likewise ignore backslash-escaped
219 * wildcard characters.
220 */
221 for (p = arg; *p; p++) {
222 if (escaped) {
223 escaped = 0;
224 } else if (is_glob_special(*p)) {
225 if (*p == '\\')
226 escaped = 1;
227 else
228 return 1;
229 }
230 }
c99eddd8
JK
231
232 /* long-form pathspec magic */
233 if (starts_with(arg, ":("))
234 return 1;
235
236 return 0;
237}
238
e23d0b4a
LT
239/*
240 * Verify a filename that we got as an argument for a pathspec
241 * entry. Note that a filename that begins with "-" never verifies
242 * as true, because even if such a filename were to exist, we want
243 * it to be preceded by the "--" marker (or we want the user to
244 * use a format like "./-filename")
023e37c3
MM
245 *
246 * The "diagnose_misspelt_rev" is used to provide a user-friendly
247 * diagnosis when dying upon finding that "name" is not a pathname.
248 * If set to 1, the diagnosis will try to diagnose "name" as an
249 * invalid object name (e.g. HEAD:foo). If set to 0, the diagnosis
250 * will only complain about an inexisting file.
251 *
252 * This function is typically called to check that a "file or rev"
253 * argument is unambiguous. In this case, the caller will want
254 * diagnose_misspelt_rev == 1 when verifying the first non-rev
255 * argument (which could have been a revision), and
256 * diagnose_misspelt_rev == 0 for the next ones (because we already
257 * saw a filename, there's not ambiguity anymore).
e23d0b4a 258 */
023e37c3
MM
259void verify_filename(const char *prefix,
260 const char *arg,
261 int diagnose_misspelt_rev)
e23d0b4a 262{
e23d0b4a 263 if (*arg == '-')
fc045fe7 264 die(_("option '%s' must come before non-option arguments"), arg);
2cb47ab6 265 if (looks_like_pathspec(arg) || check_filename(prefix, arg))
e23d0b4a 266 return;
e270f42c 267 die_verify_filename(the_repository, prefix, arg, diagnose_misspelt_rev);
e23d0b4a
LT
268}
269
ea92f41f
JH
270/*
271 * Opposite of the above: the command line did not have -- marker
272 * and we parsed the arg as a refname. It should not be interpretable
273 * as a filename.
274 */
275void verify_non_filename(const char *prefix, const char *arg)
276{
7ae3df8c 277 if (!is_inside_work_tree() || is_inside_git_dir())
68025633 278 return;
ea92f41f
JH
279 if (*arg == '-')
280 return; /* flag */
c6e8c800
JH
281 if (!check_filename(prefix, arg))
282 return;
ab33a76e
VA
283 die(_("ambiguous argument '%s': both revision and filename\n"
284 "Use '--' to separate paths from revisions, like this:\n"
285 "'git <command> [<revision>...] -- [<file>...]'"), arg);
ea92f41f
JH
286}
287
31e26ebc 288int get_common_dir(struct strbuf *sb, const char *gitdir)
11f9dd71
MK
289{
290 const char *git_env_common_dir = getenv(GIT_COMMON_DIR_ENVIRONMENT);
291 if (git_env_common_dir) {
292 strbuf_addstr(sb, git_env_common_dir);
293 return 1;
294 } else {
295 return get_common_dir_noenv(sb, gitdir);
296 }
297}
298
299int get_common_dir_noenv(struct strbuf *sb, const char *gitdir)
4dc4e145
NTND
300{
301 struct strbuf data = STRBUF_INIT;
302 struct strbuf path = STRBUF_INIT;
31e26ebc 303 int ret = 0;
11f9dd71 304
4dc4e145
NTND
305 strbuf_addf(&path, "%s/commondir", gitdir);
306 if (file_exists(path.buf)) {
307 if (strbuf_read_file(&data, path.buf, 0) <= 0)
308 die_errno(_("failed to read %s"), path.buf);
309 while (data.len && (data.buf[data.len - 1] == '\n' ||
310 data.buf[data.len - 1] == '\r'))
311 data.len--;
312 data.buf[data.len] = '\0';
313 strbuf_reset(&path);
314 if (!is_absolute_path(data.buf))
315 strbuf_addf(&path, "%s/", gitdir);
316 strbuf_addbuf(&path, &data);
33ad9ddd 317 strbuf_add_real_path(sb, path.buf);
31e26ebc 318 ret = 1;
4ac9006f 319 } else {
4dc4e145 320 strbuf_addstr(sb, gitdir);
4ac9006f
BW
321 }
322
4dc4e145
NTND
323 strbuf_release(&data);
324 strbuf_release(&path);
31e26ebc 325 return ret;
4dc4e145 326}
d288a700 327
5f5608bc 328/*
ad1a382f 329 * Test if it looks like we're at a git directory.
5e7bfe25 330 * We want to see:
5f5608bc 331 *
790296fd 332 * - either an objects/ directory _or_ the proper
5f5608bc 333 * GIT_OBJECT_DIRECTORY environment variable
ad1a382f 334 * - a refs/ directory
8098a178 335 * - either a HEAD symlink or a HEAD file that is formatted as
c847f537
JH
336 * a proper "ref:", or a regular file HEAD that has a properly
337 * formatted sha1 object name.
5f5608bc 338 */
b3256eb8 339int is_git_directory(const char *suspect)
5f5608bc 340{
1d186b6f
NTND
341 struct strbuf path = STRBUF_INIT;
342 int ret = 0;
343 size_t len;
ad1a382f 344
4dc4e145 345 /* Check worktree-related signatures */
fa4d8c78
JK
346 strbuf_addstr(&path, suspect);
347 strbuf_complete(&path, '/');
348 strbuf_addstr(&path, "HEAD");
4dc4e145
NTND
349 if (validate_headref(path.buf))
350 goto done;
351
352 strbuf_reset(&path);
353 get_common_dir(&path, suspect);
1d186b6f 354 len = path.len;
4dc4e145
NTND
355
356 /* Check non-worktree-related signatures */
ad1a382f
SP
357 if (getenv(DB_ENVIRONMENT)) {
358 if (access(getenv(DB_ENVIRONMENT), X_OK))
1d186b6f 359 goto done;
ad1a382f
SP
360 }
361 else {
4dc4e145 362 strbuf_setlen(&path, len);
1d186b6f
NTND
363 strbuf_addstr(&path, "/objects");
364 if (access(path.buf, X_OK))
365 goto done;
ad1a382f
SP
366 }
367
1d186b6f
NTND
368 strbuf_setlen(&path, len);
369 strbuf_addstr(&path, "/refs");
370 if (access(path.buf, X_OK))
371 goto done;
ad1a382f 372
1d186b6f
NTND
373 ret = 1;
374done:
375 strbuf_release(&path);
376 return ret;
5f5608bc
LT
377}
378
ffd036b1
JK
379int is_nonbare_repository_dir(struct strbuf *path)
380{
381 int ret = 0;
382 int gitfile_error;
383 size_t orig_path_len = path->len;
384 assert(orig_path_len != 0);
385 strbuf_complete(path, '/');
386 strbuf_addstr(path, ".git");
387 if (read_gitfile_gently(path->buf, &gitfile_error) || is_git_directory(path->buf))
388 ret = 1;
389 if (gitfile_error == READ_GITFILE_ERR_OPEN_FAILED ||
390 gitfile_error == READ_GITFILE_ERR_READ_FAILED)
391 ret = 1;
392 strbuf_setlen(path, orig_path_len);
393 return ret;
394}
395
68025633
JS
396int is_inside_git_dir(void)
397{
e90fdc39
JS
398 if (inside_git_dir < 0)
399 inside_git_dir = is_inside_dir(get_git_dir());
400 return inside_git_dir;
892c41b9
ML
401}
402
892c41b9
ML
403int is_inside_work_tree(void)
404{
e90fdc39
JS
405 if (inside_work_tree < 0)
406 inside_work_tree = is_inside_dir(get_git_work_tree());
407 return inside_work_tree;
892c41b9
ML
408}
409
f3fa1838
JH
410void setup_work_tree(void)
411{
8500e0de 412 const char *work_tree;
354e6534
JS
413 static int initialized = 0;
414
415 if (initialized)
416 return;
fada7674
JK
417
418 if (work_tree_config_is_bogus)
fc045fe7 419 die(_("unable to set up work tree using invalid config"));
fada7674 420
354e6534 421 work_tree = get_git_work_tree();
8500e0de 422 if (!work_tree || chdir_notify(work_tree))
fc045fe7 423 die(_("this operation must be run in a work tree"));
0ed74813
NTND
424
425 /*
426 * Make sure subsequent git processes find correct worktree
427 * if $GIT_WORK_TREE is set relative
428 */
429 if (getenv(GIT_WORK_TREE_ENVIRONMENT))
430 setenv(GIT_WORK_TREE_ENVIRONMENT, ".", 1);
431
354e6534 432 initialized = 1;
59f0f2f3
MH
433}
434
58b284a2
NTND
435static int read_worktree_config(const char *var, const char *value, void *vdata)
436{
437 struct repository_format *data = vdata;
438
439 if (strcmp(var, "core.bare") == 0) {
440 data->is_bare = git_config_bool(var, value);
441 } else if (strcmp(var, "core.worktree") == 0) {
442 if (!value)
443 return config_error_nonbool(var);
13019979 444 free(data->work_tree);
58b284a2
NTND
445 data->work_tree = xstrdup(value);
446 }
447 return 0;
448}
449
2cc7c2c7 450static int check_repo_format(const char *var, const char *value, void *vdata)
31e26ebc 451{
2cc7c2c7 452 struct repository_format *data = vdata;
00a09d57
JK
453 const char *ext;
454
31e26ebc 455 if (strcmp(var, "core.repositoryformatversion") == 0)
2cc7c2c7 456 data->version = git_config_int(var, value);
00a09d57 457 else if (skip_prefix(var, "extensions.", &ext)) {
16af5f1a 458 data->has_extensions = 1;
00a09d57
JK
459 /*
460 * record any known extensions here; otherwise,
461 * we fall through to recording it as unknown, and
462 * check_repository_format will complain
463 */
464 if (!strcmp(ext, "noop"))
465 ;
067fbd41 466 else if (!strcmp(ext, "preciousobjects"))
2cc7c2c7 467 data->precious_objects = git_config_bool(var, value);
75b97fec
JT
468 else if (!strcmp(ext, "partialclone")) {
469 if (!value)
470 return config_error_nonbool(var);
471 data->partial_clone = xstrdup(value);
58b284a2
NTND
472 } else if (!strcmp(ext, "worktreeconfig"))
473 data->worktree_config = git_config_bool(var, value);
474 else
2cc7c2c7 475 string_list_append(&data->unknown_extensions, ext);
00a09d57 476 }
58b284a2
NTND
477
478 return read_worktree_config(var, value, vdata);
31e26ebc
NTND
479}
480
abade65b 481static int check_repository_format_gently(const char *gitdir, struct repository_format *candidate, int *nongit_ok)
9459aa77 482{
7d0fb0da 483 struct strbuf sb = STRBUF_INIT;
2cc7c2c7 484 struct strbuf err = STRBUF_INIT;
652f18ee 485 int has_common;
00a09d57 486
652f18ee 487 has_common = get_common_dir(&sb, gitdir);
e61a509a 488 strbuf_addstr(&sb, "/config");
abade65b 489 read_repository_format(candidate, sb.buf);
2cc7c2c7 490 strbuf_release(&sb);
e61a509a 491
337e51ce 492 /*
2cc7c2c7
JK
493 * For historical use of check_repository_format() in git-init,
494 * we treat a missing config as a silent "ok", even when nongit_ok
495 * is unset.
337e51ce 496 */
abade65b 497 if (candidate->version < 0)
2cc7c2c7
JK
498 return 0;
499
abade65b 500 if (verify_repository_format(candidate, &err) < 0) {
2cc7c2c7
JK
501 if (nongit_ok) {
502 warning("%s", err.buf);
503 strbuf_release(&err);
504 *nongit_ok = -1;
505 return -1;
506 }
507 die("%s", err.buf);
508 }
509
14c7fa26
XL
510 if (candidate->version >= 1) {
511 repository_format_precious_objects = candidate->precious_objects;
512 set_repository_format_partial_clone(candidate->partial_clone);
513 repository_format_worktree_config = candidate->worktree_config;
514 } else {
515 repository_format_precious_objects = 0;
516 set_repository_format_partial_clone(NULL);
517 repository_format_worktree_config = 0;
518 }
abade65b 519 string_list_clear(&candidate->unknown_extensions, 0);
58b284a2
NTND
520
521 if (repository_format_worktree_config) {
522 /*
523 * pick up core.bare and core.worktree from per-worktree
524 * config if present
525 */
526 strbuf_addf(&sb, "%s/config.worktree", gitdir);
527 git_config_from_file(read_worktree_config, sb.buf, candidate);
528 strbuf_release(&sb);
529 has_common = 0;
530 }
531
652f18ee 532 if (!has_common) {
abade65b 533 if (candidate->is_bare != -1) {
534 is_bare_repository_cfg = candidate->is_bare;
652f18ee
JK
535 if (is_bare_repository_cfg == 1)
536 inside_work_tree = -1;
537 }
abade65b 538 if (candidate->work_tree) {
652f18ee 539 free(git_work_tree_cfg);
e8805af1 540 git_work_tree_cfg = xstrdup(candidate->work_tree);
2cc7c2c7 541 inside_work_tree = -1;
652f18ee 542 }
2cc7c2c7
JK
543 }
544
545 return 0;
546}
547
16af5f1a
XL
548int upgrade_repository_format(int target_version)
549{
550 struct strbuf sb = STRBUF_INIT;
551 struct strbuf err = STRBUF_INIT;
552 struct strbuf repo_version = STRBUF_INIT;
553 struct repository_format repo_fmt = REPOSITORY_FORMAT_INIT;
554
555 strbuf_git_common_path(&sb, the_repository, "config");
556 read_repository_format(&repo_fmt, sb.buf);
557 strbuf_release(&sb);
558
559 if (repo_fmt.version >= target_version)
560 return 0;
561
562 if (verify_repository_format(&repo_fmt, &err) < 0 ||
563 (!repo_fmt.version && repo_fmt.has_extensions)) {
564 warning("unable to upgrade repository format from %d to %d: %s",
565 repo_fmt.version, target_version, err.buf);
566 strbuf_release(&err);
567 return -1;
568 }
569
570 strbuf_addf(&repo_version, "%d", target_version);
571 git_config_set("core.repositoryformatversion", repo_version.buf);
572 strbuf_release(&repo_version);
573 return 1;
574}
575
e8805af1
576static void init_repository_format(struct repository_format *format)
577{
578 const struct repository_format fresh = REPOSITORY_FORMAT_INIT;
579
580 memcpy(format, &fresh, sizeof(fresh));
581}
582
652f18ee 583int read_repository_format(struct repository_format *format, const char *path)
2cc7c2c7 584{
e8805af1 585 clear_repository_format(format);
652f18ee 586 git_config_from_file(check_repo_format, path, format);
e8805af1
587 if (format->version == -1)
588 clear_repository_format(format);
2cc7c2c7
JK
589 return format->version;
590}
591
e8805af1
592void clear_repository_format(struct repository_format *format)
593{
594 string_list_clear(&format->unknown_extensions, 0);
595 free(format->work_tree);
596 free(format->partial_clone);
597 init_repository_format(format);
598}
599
2cc7c2c7
JK
600int verify_repository_format(const struct repository_format *format,
601 struct strbuf *err)
602{
603 if (GIT_REPO_VERSION_READ < format->version) {
274db840 604 strbuf_addf(err, _("Expected git repo version <= %d, found %d"),
2cc7c2c7
JK
605 GIT_REPO_VERSION_READ, format->version);
606 return -1;
607 }
608
609 if (format->version >= 1 && format->unknown_extensions.nr) {
00a09d57
JK
610 int i;
611
274db840 612 strbuf_addstr(err, _("unknown repository extensions found:"));
00a09d57 613
2cc7c2c7
JK
614 for (i = 0; i < format->unknown_extensions.nr; i++)
615 strbuf_addf(err, "\n\t%s",
616 format->unknown_extensions.items[i].string);
617 return -1;
00a09d57
JK
618 }
619
2cc7c2c7 620 return 0;
9459aa77
NTND
621}
622
5f29433f
SB
623void read_gitfile_error_die(int error_code, const char *path, const char *dir)
624{
625 switch (error_code) {
626 case READ_GITFILE_ERR_STAT_FAILED:
627 case READ_GITFILE_ERR_NOT_A_FILE:
628 /* non-fatal; follow return path */
629 break;
630 case READ_GITFILE_ERR_OPEN_FAILED:
fc045fe7 631 die_errno(_("error opening '%s'"), path);
5f29433f 632 case READ_GITFILE_ERR_TOO_LARGE:
fc045fe7 633 die(_("too large to be a .git file: '%s'"), path);
5f29433f 634 case READ_GITFILE_ERR_READ_FAILED:
fc045fe7 635 die(_("error reading %s"), path);
5f29433f 636 case READ_GITFILE_ERR_INVALID_FORMAT:
fc045fe7 637 die(_("invalid gitfile format: %s"), path);
5f29433f 638 case READ_GITFILE_ERR_NO_PATH:
fc045fe7 639 die(_("no path in gitfile: %s"), path);
5f29433f 640 case READ_GITFILE_ERR_NOT_A_REPO:
fc045fe7 641 die(_("not a git repository: %s"), dir);
5f29433f 642 default:
033abf97 643 BUG("unknown error code");
5f29433f
SB
644 }
645}
646
b44ebb19
LH
647/*
648 * Try to read the location of the git directory from the .git file,
ea1d8756
HWN
649 * return path to git directory if found. The return value comes from
650 * a shared buffer.
a93bedad
EE
651 *
652 * On failure, if return_error_code is not NULL, return_error_code
653 * will be set to an error code and NULL will be returned. If
654 * return_error_code is NULL the function will die instead (for most
655 * cases).
b44ebb19 656 */
a93bedad 657const char *read_gitfile_gently(const char *path, int *return_error_code)
b44ebb19 658{
921bdd96 659 const int max_file_size = 1 << 20; /* 1MB */
a93bedad
EE
660 int error_code = 0;
661 char *buf = NULL;
662 char *dir = NULL;
40c813e0 663 const char *slash;
b44ebb19
LH
664 struct stat st;
665 int fd;
b1905aea 666 ssize_t len;
3d7747e3 667 static struct strbuf realpath = STRBUF_INIT;
b44ebb19 668
a93bedad 669 if (stat(path, &st)) {
5c4003ca 670 /* NEEDSWORK: discern between ENOENT vs other errors */
a93bedad
EE
671 error_code = READ_GITFILE_ERR_STAT_FAILED;
672 goto cleanup_return;
673 }
674 if (!S_ISREG(st.st_mode)) {
675 error_code = READ_GITFILE_ERR_NOT_A_FILE;
676 goto cleanup_return;
677 }
921bdd96
EE
678 if (st.st_size > max_file_size) {
679 error_code = READ_GITFILE_ERR_TOO_LARGE;
680 goto cleanup_return;
681 }
b44ebb19 682 fd = open(path, O_RDONLY);
a93bedad
EE
683 if (fd < 0) {
684 error_code = READ_GITFILE_ERR_OPEN_FAILED;
685 goto cleanup_return;
686 }
3733e694 687 buf = xmallocz(st.st_size);
b44ebb19
LH
688 len = read_in_full(fd, buf, st.st_size);
689 close(fd);
a93bedad
EE
690 if (len != st.st_size) {
691 error_code = READ_GITFILE_ERR_READ_FAILED;
692 goto cleanup_return;
693 }
a93bedad
EE
694 if (!starts_with(buf, "gitdir: ")) {
695 error_code = READ_GITFILE_ERR_INVALID_FORMAT;
696 goto cleanup_return;
697 }
b44ebb19
LH
698 while (buf[len - 1] == '\n' || buf[len - 1] == '\r')
699 len--;
a93bedad
EE
700 if (len < 9) {
701 error_code = READ_GITFILE_ERR_NO_PATH;
702 goto cleanup_return;
703 }
b44ebb19 704 buf[len] = '\0';
40c813e0
BK
705 dir = buf + 8;
706
707 if (!is_absolute_path(dir) && (slash = strrchr(path, '/'))) {
708 size_t pathlen = slash+1 - path;
75faa45a
JK
709 dir = xstrfmt("%.*s%.*s", (int)pathlen, path,
710 (int)(len - 8), buf + 8);
40c813e0
BK
711 free(buf);
712 buf = dir;
713 }
a93bedad
EE
714 if (!is_git_directory(dir)) {
715 error_code = READ_GITFILE_ERR_NOT_A_REPO;
716 goto cleanup_return;
717 }
3d7747e3
AM
718
719 strbuf_realpath(&realpath, dir, 1);
720 path = realpath.buf;
40c813e0 721
a93bedad 722cleanup_return:
a93bedad
EE
723 if (return_error_code)
724 *return_error_code = error_code;
5f29433f
SB
725 else if (error_code)
726 read_gitfile_error_die(error_code, path, dir);
a93bedad 727
b44ebb19 728 free(buf);
38ae8784 729 return error_code ? NULL : path;
b44ebb19
LH
730}
731
e4e30347 732static const char *setup_explicit_git_dir(const char *gitdirenv,
7333ed17 733 struct strbuf *cwd,
abade65b 734 struct repository_format *repo_fmt,
b3f66fd3 735 int *nongit_ok)
e4e30347 736{
b3f66fd3
NTND
737 const char *work_tree_env = getenv(GIT_WORK_TREE_ENVIRONMENT);
738 const char *worktree;
739 char *gitfile;
9b125da4 740 int offset;
e4e30347
JN
741
742 if (PATH_MAX - 40 < strlen(gitdirenv))
fc045fe7 743 die(_("'$%s' too big"), GIT_DIR_ENVIRONMENT);
b3f66fd3 744
13d6ec91 745 gitfile = (char*)read_gitfile(gitdirenv);
b3f66fd3
NTND
746 if (gitfile) {
747 gitfile = xstrdup(gitfile);
748 gitdirenv = gitfile;
749 }
750
e4e30347
JN
751 if (!is_git_directory(gitdirenv)) {
752 if (nongit_ok) {
753 *nongit_ok = 1;
b3f66fd3 754 free(gitfile);
e4e30347
JN
755 return NULL;
756 }
fc045fe7 757 die(_("not a git repository: '%s'"), gitdirenv);
e4e30347 758 }
b3f66fd3 759
abade65b 760 if (check_repository_format_gently(gitdirenv, repo_fmt, nongit_ok)) {
b3f66fd3
NTND
761 free(gitfile);
762 return NULL;
e4e30347 763 }
b3f66fd3
NTND
764
765 /* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */
766 if (work_tree_env)
767 set_git_work_tree(work_tree_env);
768 else if (is_bare_repository_cfg > 0) {
fada7674
JK
769 if (git_work_tree_cfg) {
770 /* #22.2, #30 */
771 warning("core.bare and core.worktree do not make sense");
772 work_tree_config_is_bogus = 1;
773 }
b3f66fd3
NTND
774
775 /* #18, #26 */
0915a5b4 776 set_git_dir(gitdirenv, 0);
b3f66fd3 777 free(gitfile);
e4e30347 778 return NULL;
b3f66fd3
NTND
779 }
780 else if (git_work_tree_cfg) { /* #6, #14 */
781 if (is_absolute_path(git_work_tree_cfg))
782 set_git_work_tree(git_work_tree_cfg);
783 else {
56b9f6e7 784 char *core_worktree;
b3f66fd3 785 if (chdir(gitdirenv))
fc045fe7 786 die_errno(_("cannot chdir to '%s'"), gitdirenv);
b3f66fd3 787 if (chdir(git_work_tree_cfg))
fc045fe7 788 die_errno(_("cannot chdir to '%s'"), git_work_tree_cfg);
56b9f6e7 789 core_worktree = xgetcwd();
7333ed17 790 if (chdir(cwd->buf))
fc045fe7 791 die_errno(_("cannot come back to cwd"));
b3f66fd3 792 set_git_work_tree(core_worktree);
56b9f6e7 793 free(core_worktree);
b3f66fd3
NTND
794 }
795 }
2cd83d10
JK
796 else if (!git_env_bool(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, 1)) {
797 /* #16d */
0915a5b4 798 set_git_dir(gitdirenv, 0);
2cd83d10
JK
799 free(gitfile);
800 return NULL;
801 }
b3f66fd3
NTND
802 else /* #2, #10 */
803 set_git_work_tree(".");
804
805 /* set_git_work_tree() must have been called by now */
806 worktree = get_git_work_tree();
807
808 /* both get_git_work_tree() and cwd are already normalized */
7333ed17 809 if (!strcmp(cwd->buf, worktree)) { /* cwd == worktree */
0915a5b4 810 set_git_dir(gitdirenv, 0);
b3f66fd3 811 free(gitfile);
e4e30347 812 return NULL;
b3f66fd3 813 }
e4e30347 814
7333ed17 815 offset = dir_inside_of(cwd->buf, worktree);
9b125da4 816 if (offset >= 0) { /* cwd inside worktree? */
0915a5b4 817 set_git_dir(gitdirenv, 1);
b3f66fd3 818 if (chdir(worktree))
fc045fe7 819 die_errno(_("cannot chdir to '%s'"), worktree);
7333ed17 820 strbuf_addch(cwd, '/');
b3f66fd3 821 free(gitfile);
7333ed17 822 return cwd->buf + offset;
93a00542 823 }
b3f66fd3
NTND
824
825 /* cwd outside worktree */
0915a5b4 826 set_git_dir(gitdirenv, 0);
b3f66fd3
NTND
827 free(gitfile);
828 return NULL;
93a00542
JN
829}
830
9951d3b3 831static const char *setup_discovered_git_dir(const char *gitdir,
7333ed17 832 struct strbuf *cwd, int offset,
abade65b 833 struct repository_format *repo_fmt,
9951d3b3 834 int *nongit_ok)
98937bef 835{
abade65b 836 if (check_repository_format_gently(gitdir, repo_fmt, nongit_ok))
9951d3b3 837 return NULL;
98937bef 838
4868b2ea
JN
839 /* --work-tree is set without --git-dir; use discovered one */
840 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
2d4dcf21
JS
841 char *to_free = NULL;
842 const char *ret;
843
7333ed17 844 if (offset != cwd->len && !is_absolute_path(gitdir))
2d4dcf21 845 gitdir = to_free = real_pathdup(gitdir, 1);
7333ed17 846 if (chdir(cwd->buf))
fc045fe7 847 die_errno(_("cannot come back to cwd"));
abade65b 848 ret = setup_explicit_git_dir(gitdir, cwd, repo_fmt, nongit_ok);
2d4dcf21
JS
849 free(to_free);
850 return ret;
4868b2ea
JN
851 }
852
9951d3b3
NTND
853 /* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */
854 if (is_bare_repository_cfg > 0) {
0915a5b4 855 set_git_dir(gitdir, (offset != cwd->len));
7333ed17 856 if (chdir(cwd->buf))
fc045fe7 857 die_errno(_("cannot come back to cwd"));
98937bef 858 return NULL;
9951d3b3 859 }
98937bef 860
9951d3b3
NTND
861 /* #0, #1, #5, #8, #9, #12, #13 */
862 set_git_work_tree(".");
863 if (strcmp(gitdir, DEFAULT_GIT_DIR_ENVIRONMENT))
0915a5b4 864 set_git_dir(gitdir, 0);
98937bef 865 inside_git_dir = 0;
9951d3b3 866 inside_work_tree = 1;
5cf7b3b1 867 if (offset >= cwd->len)
98937bef
NTND
868 return NULL;
869
df380d58
JS
870 /* Make "offset" point past the '/' (already the case for root dirs) */
871 if (offset != offset_1st_component(cwd->buf))
872 offset++;
873 /* Add a '/' at the end */
7333ed17
RS
874 strbuf_addch(cwd, '/');
875 return cwd->buf + offset;
98937bef
NTND
876}
877
1cd8031b 878/* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */
7333ed17 879static const char *setup_bare_git_dir(struct strbuf *cwd, int offset,
abade65b 880 struct repository_format *repo_fmt,
7333ed17 881 int *nongit_ok)
68698da5
JN
882{
883 int root_len;
884
abade65b 885 if (check_repository_format_gently(".", repo_fmt, nongit_ok))
1cd8031b
NTND
886 return NULL;
887
2cd83d10
JK
888 setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, "0", 1);
889
4868b2ea
JN
890 /* --work-tree is set without --git-dir; use discovered one */
891 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
da6f8475 892 static const char *gitdir;
4868b2ea 893
7333ed17
RS
894 gitdir = offset == cwd->len ? "." : xmemdupz(cwd->buf, offset);
895 if (chdir(cwd->buf))
fc045fe7 896 die_errno(_("cannot come back to cwd"));
abade65b 897 return setup_explicit_git_dir(gitdir, cwd, repo_fmt, nongit_ok);
4868b2ea
JN
898 }
899
68698da5 900 inside_git_dir = 1;
1cd8031b 901 inside_work_tree = 0;
7333ed17
RS
902 if (offset != cwd->len) {
903 if (chdir(cwd->buf))
fc045fe7 904 die_errno(_("cannot come back to cwd"));
7333ed17
RS
905 root_len = offset_1st_component(cwd->buf);
906 strbuf_setlen(cwd, offset > root_len ? offset : root_len);
0915a5b4 907 set_git_dir(cwd->buf, 0);
337e51ce 908 }
1cd8031b 909 else
0915a5b4 910 set_git_dir(".", 0);
68698da5
JN
911 return NULL;
912}
913
2565b43b 914static dev_t get_device_or_die(const char *path, const char *prefix, int prefix_len)
60c98d1e
JN
915{
916 struct stat buf;
2565b43b 917 if (stat(path, &buf)) {
fc045fe7 918 die_errno(_("failed to stat '%*s%s%s'"),
2565b43b 919 prefix_len,
60c98d1e
JN
920 prefix ? prefix : "",
921 prefix ? "/" : "", path);
2565b43b 922 }
60c98d1e
JN
923 return buf.st_dev;
924}
925
9e2326c7 926/*
1b77d83c 927 * A "string_list_each_func_t" function that canonicalizes an entry
4530a85b 928 * from GIT_CEILING_DIRECTORIES using real_pathdup(), or
7ec30aaa
MH
929 * discards it if unusable. The presence of an empty entry in
930 * GIT_CEILING_DIRECTORIES turns off canonicalization for all
931 * subsequent entries.
9e2326c7 932 */
1b77d83c 933static int canonicalize_ceiling_entry(struct string_list_item *item,
7ec30aaa 934 void *cb_data)
9e2326c7 935{
7ec30aaa 936 int *empty_entry_found = cb_data;
1b77d83c 937 char *ceil = item->string;
9e2326c7 938
7ec30aaa
MH
939 if (!*ceil) {
940 *empty_entry_found = 1;
9e2326c7 941 return 0;
7ec30aaa 942 } else if (!is_absolute_path(ceil)) {
9e2326c7 943 return 0;
7ec30aaa
MH
944 } else if (*empty_entry_found) {
945 /* Keep entry but do not canonicalize it */
946 return 1;
947 } else {
ce83eadd 948 char *real_path = real_pathdup(ceil, 0);
4ac9006f 949 if (!real_path) {
7ec30aaa 950 return 0;
4ac9006f 951 }
7ec30aaa 952 free(item->string);
4ac9006f 953 item->string = real_path;
7ec30aaa
MH
954 return 1;
955 }
9e2326c7
MH
956}
957
ce9b8aab
JS
958enum discovery_result {
959 GIT_DIR_NONE = 0,
960 GIT_DIR_EXPLICIT,
961 GIT_DIR_DISCOVERED,
962 GIT_DIR_BARE,
963 /* these are errors */
964 GIT_DIR_HIT_CEILING = -1,
01017dce
JS
965 GIT_DIR_HIT_MOUNT_POINT = -2,
966 GIT_DIR_INVALID_GITFILE = -3
ce9b8aab
JS
967};
968
e90fdc39
JS
969/*
970 * We cannot decide in this function whether we are in the work tree or
971 * not, since the config can only be read _after_ this function was called.
ce9b8aab
JS
972 *
973 * Also, we avoid changing any global state (such as the current working
974 * directory) to allow early callers.
975 *
976 * The directory where the search should start needs to be passed in via the
977 * `dir` parameter; upon return, the `dir` buffer will contain the path of
978 * the directory where the search ended, and `gitdir` will contain the path of
979 * the discovered .git/ directory, if any. If `gitdir` is not absolute, it
980 * is relative to `dir` (i.e. *not* necessarily the cwd).
e90fdc39 981 */
ce9b8aab 982static enum discovery_result setup_git_directory_gently_1(struct strbuf *dir,
01017dce
JS
983 struct strbuf *gitdir,
984 int die_on_error)
d288a700 985{
0454dd93 986 const char *env_ceiling_dirs = getenv(CEILING_DIRECTORIES_ENVIRONMENT);
31171d9e 987 struct string_list ceiling_dirs = STRING_LIST_INIT_DUP;
ce9b8aab 988 const char *gitdirenv;
d17f2124 989 int ceil_offset = -1, min_offset = offset_1st_component(dir->buf);
c7d1d1b1
RH
990 dev_t current_device = 0;
991 int one_filesystem = 1;
d288a700 992
e90fdc39
JS
993 /*
994 * If GIT_DIR is set explicitly, we're not going
995 * to do any discovery, but we still do repository
996 * validation.
997 */
ad1a382f 998 gitdirenv = getenv(GIT_DIR_ENVIRONMENT);
ce9b8aab
JS
999 if (gitdirenv) {
1000 strbuf_addstr(gitdir, gitdirenv);
1001 return GIT_DIR_EXPLICIT;
1002 }
d288a700 1003
31171d9e 1004 if (env_ceiling_dirs) {
7ec30aaa
MH
1005 int empty_entry_found = 0;
1006
31171d9e 1007 string_list_split(&ceiling_dirs, env_ceiling_dirs, PATH_SEP, -1);
1b77d83c 1008 filter_string_list(&ceiling_dirs, 0,
7ec30aaa 1009 canonicalize_ceiling_entry, &empty_entry_found);
ce9b8aab 1010 ceil_offset = longest_ancestor_length(dir->buf, &ceiling_dirs);
31171d9e
MH
1011 string_list_clear(&ceiling_dirs, 0);
1012 }
1013
ce9b8aab
JS
1014 if (ceil_offset < 0)
1015 ceil_offset = min_offset - 2;
d288a700 1016
e2683d51
JS
1017 if (min_offset && min_offset == dir->len &&
1018 !is_dir_sep(dir->buf[min_offset - 1])) {
1019 strbuf_addch(dir, '/');
1020 min_offset++;
1021 }
1022
892c41b9 1023 /*
ce9b8aab 1024 * Test in the following order (relative to the dir):
b44ebb19 1025 * - .git (file containing "gitdir: <path>")
e90fdc39
JS
1026 * - .git/
1027 * - ./ (bare)
b44ebb19 1028 * - ../.git
e90fdc39
JS
1029 * - ../.git/
1030 * - ../ (bare)
176b2d32 1031 * - ../../.git
e90fdc39 1032 * etc.
892c41b9 1033 */
cf87463e 1034 one_filesystem = !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM", 0);
60c98d1e 1035 if (one_filesystem)
ce9b8aab 1036 current_device = get_device_or_die(dir->buf, NULL, 0);
e90fdc39 1037 for (;;) {
01017dce 1038 int offset = dir->len, error_code = 0;
ce9b8aab
JS
1039
1040 if (offset > min_offset)
1041 strbuf_addch(dir, '/');
1042 strbuf_addstr(dir, DEFAULT_GIT_DIR_ENVIRONMENT);
01017dce
JS
1043 gitdirenv = read_gitfile_gently(dir->buf, die_on_error ?
1044 NULL : &error_code);
1045 if (!gitdirenv) {
1046 if (die_on_error ||
1047 error_code == READ_GITFILE_ERR_NOT_A_FILE) {
5c4003ca 1048 /* NEEDSWORK: fail if .git is not file nor dir */
01017dce
JS
1049 if (is_git_directory(dir->buf))
1050 gitdirenv = DEFAULT_GIT_DIR_ENVIRONMENT;
1051 } else if (error_code != READ_GITFILE_ERR_STAT_FAILED)
1052 return GIT_DIR_INVALID_GITFILE;
9951d3b3 1053 }
ce9b8aab 1054 strbuf_setlen(dir, offset);
9951d3b3 1055 if (gitdirenv) {
ce9b8aab
JS
1056 strbuf_addstr(gitdir, gitdirenv);
1057 return GIT_DIR_DISCOVERED;
9951d3b3 1058 }
9951d3b3 1059
ce9b8aab
JS
1060 if (is_git_directory(dir->buf)) {
1061 strbuf_addstr(gitdir, ".");
1062 return GIT_DIR_BARE;
502ffe34 1063 }
9951d3b3 1064
ce9b8aab
JS
1065 if (offset <= min_offset)
1066 return GIT_DIR_HIT_CEILING;
1cd8031b 1067
ce9b8aab 1068 while (--offset > ceil_offset && !is_dir_sep(dir->buf[offset]))
6c1e6544 1069 ; /* continue */
ce9b8aab
JS
1070 if (offset <= ceil_offset)
1071 return GIT_DIR_HIT_CEILING;
1072
1073 strbuf_setlen(dir, offset > min_offset ? offset : min_offset);
1074 if (one_filesystem &&
1075 current_device != get_device_or_die(dir->buf, NULL, offset))
1076 return GIT_DIR_HIT_MOUNT_POINT;
892c41b9 1077 }
d288a700 1078}
5e7bfe25 1079
d3fb71b3
BW
1080int discover_git_directory(struct strbuf *commondir,
1081 struct strbuf *gitdir)
16ac8b8d
JS
1082{
1083 struct strbuf dir = STRBUF_INIT, err = STRBUF_INIT;
1084 size_t gitdir_offset = gitdir->len, cwd_len;
d3fb71b3 1085 size_t commondir_offset = commondir->len;
e8805af1 1086 struct repository_format candidate = REPOSITORY_FORMAT_INIT;
16ac8b8d
JS
1087
1088 if (strbuf_getcwd(&dir))
d3fb71b3 1089 return -1;
16ac8b8d
JS
1090
1091 cwd_len = dir.len;
01017dce 1092 if (setup_git_directory_gently_1(&dir, gitdir, 0) <= 0) {
16ac8b8d 1093 strbuf_release(&dir);
d3fb71b3 1094 return -1;
16ac8b8d
JS
1095 }
1096
1097 /*
1098 * The returned gitdir is relative to dir, and if dir does not reflect
1099 * the current working directory, we simply make the gitdir absolute.
1100 */
1101 if (dir.len < cwd_len && !is_absolute_path(gitdir->buf + gitdir_offset)) {
1102 /* Avoid a trailing "/." */
1103 if (!strcmp(".", gitdir->buf + gitdir_offset))
1104 strbuf_setlen(gitdir, gitdir_offset);
1105 else
1106 strbuf_addch(&dir, '/');
1107 strbuf_insert(gitdir, gitdir_offset, dir.buf, dir.len);
1108 }
1109
d3fb71b3
BW
1110 get_common_dir(commondir, gitdir->buf + gitdir_offset);
1111
16ac8b8d 1112 strbuf_reset(&dir);
d3fb71b3 1113 strbuf_addf(&dir, "%s/config", commondir->buf + commondir_offset);
16ac8b8d
JS
1114 read_repository_format(&candidate, dir.buf);
1115 strbuf_release(&dir);
1116
1117 if (verify_repository_format(&candidate, &err) < 0) {
1118 warning("ignoring git dir '%s': %s",
1119 gitdir->buf + gitdir_offset, err.buf);
1120 strbuf_release(&err);
d3fb71b3 1121 strbuf_setlen(commondir, commondir_offset);
69743f9b 1122 strbuf_setlen(gitdir, gitdir_offset);
e8805af1 1123 clear_repository_format(&candidate);
d3fb71b3 1124 return -1;
16ac8b8d
JS
1125 }
1126
e8805af1 1127 clear_repository_format(&candidate);
d3fb71b3 1128 return 0;
16ac8b8d
JS
1129}
1130
a60645f9
NTND
1131const char *setup_git_directory_gently(int *nongit_ok)
1132{
ce9b8aab
JS
1133 static struct strbuf cwd = STRBUF_INIT;
1134 struct strbuf dir = STRBUF_INIT, gitdir = STRBUF_INIT;
07098b81 1135 const char *prefix = NULL;
e8805af1 1136 struct repository_format repo_fmt = REPOSITORY_FORMAT_INIT;
a60645f9 1137
ce9b8aab
JS
1138 /*
1139 * We may have read an incomplete configuration before
1140 * setting-up the git directory. If so, clear the cache so
1141 * that the next queries to the configuration reload complete
1142 * configuration (including the per-repo config file that we
1143 * ignored previously).
1144 */
1145 git_config_clear();
1146
1147 /*
1148 * Let's assume that we are in a git repository.
1149 * If it turns out later that we are somewhere else, the value will be
1150 * updated accordingly.
1151 */
1152 if (nongit_ok)
1153 *nongit_ok = 0;
1154
1155 if (strbuf_getcwd(&cwd))
1156 die_errno(_("Unable to read current working directory"));
1157 strbuf_addbuf(&dir, &cwd);
1158
01017dce 1159 switch (setup_git_directory_gently_1(&dir, &gitdir, 1)) {
ce9b8aab 1160 case GIT_DIR_EXPLICIT:
abade65b 1161 prefix = setup_explicit_git_dir(gitdir.buf, &cwd, &repo_fmt, nongit_ok);
ce9b8aab
JS
1162 break;
1163 case GIT_DIR_DISCOVERED:
1164 if (dir.len < cwd.len && chdir(dir.buf))
fc045fe7 1165 die(_("cannot change to '%s'"), dir.buf);
ce9b8aab 1166 prefix = setup_discovered_git_dir(gitdir.buf, &cwd, dir.len,
abade65b 1167 &repo_fmt, nongit_ok);
ce9b8aab
JS
1168 break;
1169 case GIT_DIR_BARE:
1170 if (dir.len < cwd.len && chdir(dir.buf))
fc045fe7 1171 die(_("cannot change to '%s'"), dir.buf);
abade65b 1172 prefix = setup_bare_git_dir(&cwd, dir.len, &repo_fmt, nongit_ok);
ce9b8aab
JS
1173 break;
1174 case GIT_DIR_HIT_CEILING:
07098b81
ED
1175 if (!nongit_ok)
1176 die(_("not a git repository (or any of the parent directories): %s"),
1177 DEFAULT_GIT_DIR_ENVIRONMENT);
1178 *nongit_ok = 1;
ce9b8aab
JS
1179 break;
1180 case GIT_DIR_HIT_MOUNT_POINT:
07098b81
ED
1181 if (!nongit_ok)
1182 die(_("not a git repository (or any parent up to mount point %s)\n"
1183 "Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set)."),
1184 dir.buf);
1185 *nongit_ok = 1;
1186 break;
1187 case GIT_DIR_NONE:
1188 /*
1189 * As a safeguard against setup_git_directory_gently_1 returning
1190 * this value, fallthrough to BUG. Otherwise it is possible to
1191 * set startup_info->have_repository to 1 when we did nothing to
1192 * find a repository.
1193 */
ce9b8aab 1194 default:
033abf97 1195 BUG("unhandled setup_git_directory_1() result");
ce9b8aab
JS
1196 }
1197
07098b81
ED
1198 /*
1199 * At this point, nongit_ok is stable. If it is non-NULL and points
1200 * to a non-zero value, then this means that we haven't found a
1201 * repository and that the caller expects startup_info to reflect
1202 * this.
1203 *
1204 * Regardless of the state of nongit_ok, startup_info->prefix and
1205 * the GIT_PREFIX environment variable must always match. For details
1206 * see Documentation/config/alias.txt.
1207 */
1208 if (nongit_ok && *nongit_ok) {
1209 startup_info->have_repository = 0;
1210 startup_info->prefix = NULL;
a6f7f9a3 1211 setenv(GIT_PREFIX_ENVIRONMENT, "", 1);
07098b81
ED
1212 } else {
1213 startup_info->have_repository = 1;
1214 startup_info->prefix = prefix;
1215 if (prefix)
1216 setenv(GIT_PREFIX_ENVIRONMENT, prefix, 1);
1217 else
1218 setenv(GIT_PREFIX_ENVIRONMENT, "", 1);
1219 }
46c3cd44 1220
73f192c9
BW
1221 /*
1222 * Not all paths through the setup code will call 'set_git_dir()' (which
1223 * directly sets up the environment) so in order to guarantee that the
1224 * environment is in a consistent state after setup, explicitly setup
1225 * the environment if we have a repository.
1226 *
1227 * NEEDSWORK: currently we allow bogus GIT_DIR values to be set in some
1228 * code paths so we also need to explicitly setup the environment if
1229 * the user has set GIT_DIR. It may be beneficial to disallow bogus
1230 * GIT_DIR values at some point in the future.
1231 */
07098b81
ED
1232 if (/* GIT_DIR_EXPLICIT, GIT_DIR_DISCOVERED, GIT_DIR_BARE */
1233 startup_info->have_repository ||
1234 /* GIT_DIR_EXPLICIT */
1235 getenv(GIT_DIR_ENVIRONMENT)) {
c14c234f
BW
1236 if (!the_repository->gitdir) {
1237 const char *gitdir = getenv(GIT_DIR_ENVIRONMENT);
1238 if (!gitdir)
1239 gitdir = DEFAULT_GIT_DIR_ENVIRONMENT;
357a03eb 1240 setup_git_env(gitdir);
c14c234f 1241 }
78a67668 1242 if (startup_info->have_repository)
1243 repo_set_hash_algo(the_repository, repo_fmt.hash_algo);
c14c234f 1244 }
73f192c9 1245
ce9b8aab
JS
1246 strbuf_release(&dir);
1247 strbuf_release(&gitdir);
e8805af1 1248 clear_repository_format(&repo_fmt);
ce9b8aab 1249
a60645f9
NTND
1250 return prefix;
1251}
1252
94df2506
JH
1253int git_config_perm(const char *var, const char *value)
1254{
06cbe855
HO
1255 int i;
1256 char *endptr;
1257
1258 if (value == NULL)
1259 return PERM_GROUP;
1260
1261 if (!strcmp(value, "umask"))
1262 return PERM_UMASK;
1263 if (!strcmp(value, "group"))
1264 return PERM_GROUP;
1265 if (!strcmp(value, "all") ||
1266 !strcmp(value, "world") ||
1267 !strcmp(value, "everybody"))
1268 return PERM_EVERYBODY;
1269
1270 /* Parse octal numbers */
1271 i = strtol(value, &endptr, 8);
1272
1273 /* If not an octal number, maybe true/false? */
1274 if (*endptr != 0)
1275 return git_config_bool(var, value) ? PERM_GROUP : PERM_UMASK;
1276
1277 /*
1278 * Treat values 0, 1 and 2 as compatibility cases, otherwise it is
5a688fe4 1279 * a chmod value to restrict to.
06cbe855
HO
1280 */
1281 switch (i) {
1282 case PERM_UMASK: /* 0 */
1283 return PERM_UMASK;
1284 case OLD_PERM_GROUP: /* 1 */
1285 return PERM_GROUP;
1286 case OLD_PERM_EVERYBODY: /* 2 */
1287 return PERM_EVERYBODY;
94df2506 1288 }
06cbe855
HO
1289
1290 /* A filemode value was given: 0xxx */
1291
1292 if ((i & 0600) != 0600)
fc045fe7 1293 die(_("problem with core.sharedRepository filemode value "
06cbe855 1294 "(0%.3o).\nThe owner of files must always have "
2ff30e67 1295 "read and write permissions."), i);
06cbe855
HO
1296
1297 /*
1298 * Mask filemode value. Others can not get write permission.
1299 * x flags for directories are handled separately.
1300 */
5a688fe4 1301 return -(i & 0666);
94df2506
JH
1302}
1303
cfe3917c 1304void check_repository_format(struct repository_format *fmt)
ab9cb76f 1305{
e8805af1 1306 struct repository_format repo_fmt = REPOSITORY_FORMAT_INIT;
cfe3917c 1307 if (!fmt)
1308 fmt = &repo_fmt;
1309 check_repository_format_gently(get_git_dir(), fmt, NULL);
f1c126bd 1310 startup_info->have_repository = 1;
e8805af1 1311 clear_repository_format(&repo_fmt);
ab9cb76f
JH
1312}
1313
e1e5ec86
CB
1314/*
1315 * Returns the "prefix", a path to the current working directory
1316 * relative to the work tree root, or NULL, if the current working
1317 * directory is not a strict subdirectory of the work tree root. The
1318 * prefix always ends with a '/' character.
1319 */
5e7bfe25
JH
1320const char *setup_git_directory(void)
1321{
b3f66fd3 1322 return setup_git_directory_gently(NULL);
5e7bfe25 1323}
abc06822 1324
40d96325 1325const char *resolve_gitdir_gently(const char *suspect, int *return_error_code)
abc06822
FG
1326{
1327 if (is_git_directory(suspect))
1328 return suspect;
40d96325 1329 return read_gitfile_gently(suspect, return_error_code);
abc06822 1330}
1d999ddd
TR
1331
1332/* if any standard file descriptor is missing open it to /dev/null */
1333void sanitize_stdfds(void)
1334{
1335 int fd = open("/dev/null", O_RDWR, 0);
1336 while (fd != -1 && fd < 2)
1337 fd = dup(fd);
1338 if (fd == -1)
fc045fe7 1339 die_errno(_("open /dev/null or dup failed"));
1d999ddd
TR
1340 if (fd > 2)
1341 close(fd);
1342}
de0957ce
NTND
1343
1344int daemonize(void)
1345{
1346#ifdef NO_POSIX_GOODIES
1347 errno = ENOSYS;
1348 return -1;
1349#else
1350 switch (fork()) {
1351 case 0:
1352 break;
1353 case -1:
fc045fe7 1354 die_errno(_("fork failed"));
de0957ce
NTND
1355 default:
1356 exit(0);
1357 }
1358 if (setsid() == -1)
fc045fe7 1359 die_errno(_("setsid failed"));
de0957ce
NTND
1360 close(0);
1361 close(1);
1362 close(2);
1363 sanitize_stdfds();
1364 return 0;
1365#endif
1366}