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