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