]> git.ipfire.org Git - thirdparty/git.git/blame - setup.c
object-file: update object_info_extended to reencode objects
[thirdparty/git.git] / setup.c
CommitLineData
e93fc5d7 1#include "git-compat-util.h"
0b027f6c 2#include "abspath.h"
e8cf8ef5 3#include "copy.h"
32a8f510 4#include "environment.h"
e8cf8ef5 5#include "exec-cmd.h"
f394e093 6#include "gettext.h"
dabab1d6 7#include "object-name.h"
e8cf8ef5 8#include "refs.h"
c14c234f 9#include "repository.h"
b2141fc1 10#include "config.h"
e90fdc39 11#include "dir.h"
e38da487 12#include "setup.h"
31171d9e 13#include "string-list.h"
8500e0de 14#include "chdir-notify.h"
c339932b 15#include "path.h"
60b7a92d 16#include "promisor-remote.h"
8959555c 17#include "quote.h"
74ea5c95 18#include "trace2.h"
e8cf8ef5 19#include "worktree.h"
e90fdc39
JS
20
21static int inside_git_dir = -1;
22static int inside_work_tree = -1;
fada7674 23static int work_tree_config_is_bogus;
8d1a7448
GC
24enum allowed_bare_repo {
25 ALLOWED_BARE_REPO_EXPLICIT = 0,
26 ALLOWED_BARE_REPO_ALL,
27};
d288a700 28
46c3cd44
JK
29static struct startup_info the_startup_info;
30struct startup_info *startup_info = &the_startup_info;
e6f8861b 31const char *tmp_original_cwd;
46c3cd44 32
ddc2a628
MEW
33/*
34 * The input parameter must contain an absolute path, and it must already be
35 * normalized.
36 *
37 * Find the part of an absolute path that lies inside the work tree by
38 * dereferencing symlinks outside the work tree, for example:
39 * /dir1/repo/dir2/file (work tree is /dir1/repo) -> dir2/file
40 * /dir/file (work tree is /) -> dir/file
41 * /dir/symlink1/symlink2 (symlink1 points to work tree) -> symlink2
42 * /dir/repolink/file (repolink points to /dir/repo) -> file
43 * /dir/repo (exactly equal to work tree) -> (empty string)
44 */
45static int abspath_part_inside_repo(char *path)
46{
47 size_t len;
48 size_t wtlen;
49 char *path0;
50 int off;
51 const char *work_tree = get_git_work_tree();
3d7747e3 52 struct strbuf realpath = STRBUF_INIT;
ddc2a628
MEW
53
54 if (!work_tree)
55 return -1;
56 wtlen = strlen(work_tree);
57 len = strlen(path);
6127ff63 58 off = offset_1st_component(path);
ddc2a628
MEW
59
60 /* check if work tree is already the prefix */
d8727b36 61 if (wtlen <= len && !fspathncmp(path, work_tree, wtlen)) {
ddc2a628
MEW
62 if (path[wtlen] == '/') {
63 memmove(path, path + wtlen + 1, len - wtlen);
64 return 0;
65 } else if (path[wtlen - 1] == '/' || path[wtlen] == '\0') {
66 /* work tree is the root, or the whole path */
67 memmove(path, path + wtlen, len - wtlen + 1);
68 return 0;
69 }
70 /* work tree might match beginning of a symlink to work tree */
71 off = wtlen;
72 }
73 path0 = path;
6127ff63 74 path += off;
ddc2a628
MEW
75
76 /* check each '/'-terminated level */
77 while (*path) {
78 path++;
79 if (*path == '/') {
80 *path = '\0';
3d7747e3
AM
81 strbuf_realpath(&realpath, path0, 1);
82 if (fspathcmp(realpath.buf, work_tree) == 0) {
ddc2a628 83 memmove(path0, path + 1, len - (path - path0));
3d7747e3 84 strbuf_release(&realpath);
ddc2a628
MEW
85 return 0;
86 }
87 *path = '/';
88 }
89 }
90
91 /* check whole path */
3d7747e3
AM
92 strbuf_realpath(&realpath, path0, 1);
93 if (fspathcmp(realpath.buf, work_tree) == 0) {
ddc2a628 94 *path0 = '\0';
3d7747e3 95 strbuf_release(&realpath);
ddc2a628
MEW
96 return 0;
97 }
98
3d7747e3 99 strbuf_release(&realpath);
ddc2a628
MEW
100 return -1;
101}
102
645a29c4
NTND
103/*
104 * Normalize "path", prepending the "prefix" for relative paths. If
105 * remaining_prefix is not NULL, return the actual prefix still
106 * remains in the path. For example, prefix = sub1/sub2/ and path is
107 *
108 * foo -> sub1/sub2/foo (full prefix)
109 * ../foo -> sub1/foo (remaining prefix is sub1/)
110 * ../../bar -> bar (no remaining prefix)
111 * ../../sub1/sub2/foo -> sub1/sub2/foo (but no remaining prefix)
112 * `pwd`/../bar -> sub1/bar (no remaining prefix)
113 */
114char *prefix_path_gently(const char *prefix, int len,
115 int *remaining_prefix, const char *path)
d089ebaa
JH
116{
117 const char *orig = path;
18e051a3
CMAB
118 char *sanitized;
119 if (is_absolute_path(orig)) {
3733e694 120 sanitized = xmallocz(strlen(path));
645a29c4
NTND
121 if (remaining_prefix)
122 *remaining_prefix = 0;
655ee9ea
MEW
123 if (normalize_path_copy_len(sanitized, path, remaining_prefix)) {
124 free(sanitized);
125 return NULL;
126 }
127 if (abspath_part_inside_repo(sanitized)) {
128 free(sanitized);
129 return NULL;
130 }
18e051a3 131 } else {
24041d6b 132 sanitized = xstrfmt("%.*s%s", len, len ? prefix : "", path);
645a29c4
NTND
133 if (remaining_prefix)
134 *remaining_prefix = len;
655ee9ea 135 if (normalize_path_copy_len(sanitized, sanitized, remaining_prefix)) {
546e0fd9
JK
136 free(sanitized);
137 return NULL;
d089ebaa 138 }
d089ebaa
JH
139 }
140 return sanitized;
f332726e
LT
141}
142
546e0fd9
JK
143char *prefix_path(const char *prefix, int len, const char *path)
144{
645a29c4 145 char *r = prefix_path_gently(prefix, len, NULL, path);
5c203986
ES
146 if (!r) {
147 const char *hint_path = get_git_work_tree();
148 if (!hint_path)
149 hint_path = get_git_dir();
e0020b2f 150 die(_("'%s' is outside repository at '%s'"), path,
5c203986
ES
151 absolute_path(hint_path));
152 }
546e0fd9
JK
153 return r;
154}
155
156int path_inside_repo(const char *prefix, const char *path)
157{
158 int len = prefix ? strlen(prefix) : 0;
645a29c4 159 char *r = prefix_path_gently(prefix, len, NULL, path);
546e0fd9
JK
160 if (r) {
161 free(r);
162 return 1;
163 }
164 return 0;
165}
166
c6e8c800
JH
167int check_filename(const char *prefix, const char *arg)
168{
e4da43b1 169 char *to_free = NULL;
c6e8c800
JH
170 struct stat st;
171
d51c6ee0
JK
172 if (skip_prefix(arg, ":/", &arg)) {
173 if (!*arg) /* ":/" is root dir, always exists */
4db86e8b 174 return 1;
a08cbcda 175 prefix = NULL;
42471bce
JK
176 } else if (skip_prefix(arg, ":!", &arg) ||
177 skip_prefix(arg, ":^", &arg)) {
178 if (!*arg) /* excluding everything is silly, but allowed */
179 return 1;
a08cbcda
JK
180 }
181
182 if (prefix)
183 arg = to_free = prefix_filename(prefix, arg);
184
185 if (!lstat(arg, &st)) {
e4da43b1 186 free(to_free);
c6e8c800 187 return 1; /* file exists */
e4da43b1 188 }
93dd544f 189 if (is_missing_file_error(errno)) {
e4da43b1 190 free(to_free);
c6e8c800 191 return 0; /* file does not exist */
e4da43b1 192 }
fc045fe7 193 die_errno(_("failed to stat '%s'"), arg);
c6e8c800
JH
194}
195
e270f42c
NTND
196static void NORETURN die_verify_filename(struct repository *r,
197 const char *prefix,
023e37c3
MM
198 const char *arg,
199 int diagnose_misspelt_rev)
009fee47 200{
023e37c3 201 if (!diagnose_misspelt_rev)
ab33a76e
VA
202 die(_("%s: no such path in the working tree.\n"
203 "Use 'git <command> -- <path>...' to specify paths that do not exist locally."),
023e37c3 204 arg);
0e539dca
JH
205 /*
206 * Saying "'(icase)foo' does not exist in the index" when the
207 * user gave us ":(icase)foo" is just stupid. A magic pathspec
208 * begins with a colon and is followed by a non-alnum; do not
8c135ea2 209 * let maybe_die_on_misspelt_object_name() even trigger.
0e539dca
JH
210 */
211 if (!(arg[0] == ':' && !isalnum(arg[1])))
e270f42c 212 maybe_die_on_misspelt_object_name(r, arg, prefix);
0e539dca 213
009fee47 214 /* ... or fall back the most general message. */
ab33a76e
VA
215 die(_("ambiguous argument '%s': unknown revision or path not in the working tree.\n"
216 "Use '--' to separate paths from revisions, like this:\n"
217 "'git <command> [<revision>...] -- [<file>...]'"), arg);
009fee47
MM
218
219}
220
c99eddd8
JK
221/*
222 * Check for arguments that don't resolve as actual files,
223 * but which look sufficiently like pathspecs that we'll consider
224 * them such for the purposes of rev/pathspec DWIM parsing.
225 */
226static int looks_like_pathspec(const char *arg)
227{
39e21c6e
JK
228 const char *p;
229 int escaped = 0;
230
231 /*
232 * Wildcard characters imply the user is looking to match pathspecs
233 * that aren't in the filesystem. Note that this doesn't include
234 * backslash even though it's a glob special; by itself it doesn't
235 * cause any increase in the match. Likewise ignore backslash-escaped
236 * wildcard characters.
237 */
238 for (p = arg; *p; p++) {
239 if (escaped) {
240 escaped = 0;
241 } else if (is_glob_special(*p)) {
242 if (*p == '\\')
243 escaped = 1;
244 else
245 return 1;
246 }
247 }
c99eddd8
JK
248
249 /* long-form pathspec magic */
250 if (starts_with(arg, ":("))
251 return 1;
252
253 return 0;
254}
255
e23d0b4a
LT
256/*
257 * Verify a filename that we got as an argument for a pathspec
258 * entry. Note that a filename that begins with "-" never verifies
259 * as true, because even if such a filename were to exist, we want
260 * it to be preceded by the "--" marker (or we want the user to
261 * use a format like "./-filename")
023e37c3
MM
262 *
263 * The "diagnose_misspelt_rev" is used to provide a user-friendly
264 * diagnosis when dying upon finding that "name" is not a pathname.
265 * If set to 1, the diagnosis will try to diagnose "name" as an
266 * invalid object name (e.g. HEAD:foo). If set to 0, the diagnosis
267 * will only complain about an inexisting file.
268 *
269 * This function is typically called to check that a "file or rev"
270 * argument is unambiguous. In this case, the caller will want
271 * diagnose_misspelt_rev == 1 when verifying the first non-rev
272 * argument (which could have been a revision), and
273 * diagnose_misspelt_rev == 0 for the next ones (because we already
274 * saw a filename, there's not ambiguity anymore).
e23d0b4a 275 */
023e37c3
MM
276void verify_filename(const char *prefix,
277 const char *arg,
278 int diagnose_misspelt_rev)
e23d0b4a 279{
e23d0b4a 280 if (*arg == '-')
fc045fe7 281 die(_("option '%s' must come before non-option arguments"), arg);
2cb47ab6 282 if (looks_like_pathspec(arg) || check_filename(prefix, arg))
e23d0b4a 283 return;
e270f42c 284 die_verify_filename(the_repository, prefix, arg, diagnose_misspelt_rev);
e23d0b4a
LT
285}
286
ea92f41f
JH
287/*
288 * Opposite of the above: the command line did not have -- marker
289 * and we parsed the arg as a refname. It should not be interpretable
290 * as a filename.
291 */
292void verify_non_filename(const char *prefix, const char *arg)
293{
7ae3df8c 294 if (!is_inside_work_tree() || is_inside_git_dir())
68025633 295 return;
ea92f41f
JH
296 if (*arg == '-')
297 return; /* flag */
c6e8c800
JH
298 if (!check_filename(prefix, arg))
299 return;
ab33a76e
VA
300 die(_("ambiguous argument '%s': both revision and filename\n"
301 "Use '--' to separate paths from revisions, like this:\n"
302 "'git <command> [<revision>...] -- [<file>...]'"), arg);
ea92f41f
JH
303}
304
31e26ebc 305int get_common_dir(struct strbuf *sb, const char *gitdir)
11f9dd71
MK
306{
307 const char *git_env_common_dir = getenv(GIT_COMMON_DIR_ENVIRONMENT);
308 if (git_env_common_dir) {
309 strbuf_addstr(sb, git_env_common_dir);
310 return 1;
311 } else {
312 return get_common_dir_noenv(sb, gitdir);
313 }
314}
315
316int get_common_dir_noenv(struct strbuf *sb, const char *gitdir)
4dc4e145
NTND
317{
318 struct strbuf data = STRBUF_INIT;
319 struct strbuf path = STRBUF_INIT;
31e26ebc 320 int ret = 0;
11f9dd71 321
4dc4e145
NTND
322 strbuf_addf(&path, "%s/commondir", gitdir);
323 if (file_exists(path.buf)) {
324 if (strbuf_read_file(&data, path.buf, 0) <= 0)
325 die_errno(_("failed to read %s"), path.buf);
326 while (data.len && (data.buf[data.len - 1] == '\n' ||
327 data.buf[data.len - 1] == '\r'))
328 data.len--;
329 data.buf[data.len] = '\0';
330 strbuf_reset(&path);
331 if (!is_absolute_path(data.buf))
332 strbuf_addf(&path, "%s/", gitdir);
333 strbuf_addbuf(&path, &data);
33ad9ddd 334 strbuf_add_real_path(sb, path.buf);
31e26ebc 335 ret = 1;
4ac9006f 336 } else {
4dc4e145 337 strbuf_addstr(sb, gitdir);
4ac9006f
BW
338 }
339
4dc4e145
NTND
340 strbuf_release(&data);
341 strbuf_release(&path);
31e26ebc 342 return ret;
4dc4e145 343}
d288a700 344
5f5608bc 345/*
ad1a382f 346 * Test if it looks like we're at a git directory.
5e7bfe25 347 * We want to see:
5f5608bc 348 *
790296fd 349 * - either an objects/ directory _or_ the proper
5f5608bc 350 * GIT_OBJECT_DIRECTORY environment variable
ad1a382f 351 * - a refs/ directory
8098a178 352 * - either a HEAD symlink or a HEAD file that is formatted as
c847f537
JH
353 * a proper "ref:", or a regular file HEAD that has a properly
354 * formatted sha1 object name.
5f5608bc 355 */
b3256eb8 356int is_git_directory(const char *suspect)
5f5608bc 357{
1d186b6f
NTND
358 struct strbuf path = STRBUF_INIT;
359 int ret = 0;
360 size_t len;
ad1a382f 361
4dc4e145 362 /* Check worktree-related signatures */
fa4d8c78
JK
363 strbuf_addstr(&path, suspect);
364 strbuf_complete(&path, '/');
365 strbuf_addstr(&path, "HEAD");
4dc4e145
NTND
366 if (validate_headref(path.buf))
367 goto done;
368
369 strbuf_reset(&path);
370 get_common_dir(&path, suspect);
1d186b6f 371 len = path.len;
4dc4e145
NTND
372
373 /* Check non-worktree-related signatures */
ad1a382f
SP
374 if (getenv(DB_ENVIRONMENT)) {
375 if (access(getenv(DB_ENVIRONMENT), X_OK))
1d186b6f 376 goto done;
ad1a382f
SP
377 }
378 else {
4dc4e145 379 strbuf_setlen(&path, len);
1d186b6f
NTND
380 strbuf_addstr(&path, "/objects");
381 if (access(path.buf, X_OK))
382 goto done;
ad1a382f
SP
383 }
384
1d186b6f
NTND
385 strbuf_setlen(&path, len);
386 strbuf_addstr(&path, "/refs");
387 if (access(path.buf, X_OK))
388 goto done;
ad1a382f 389
1d186b6f
NTND
390 ret = 1;
391done:
392 strbuf_release(&path);
393 return ret;
5f5608bc
LT
394}
395
ffd036b1
JK
396int is_nonbare_repository_dir(struct strbuf *path)
397{
398 int ret = 0;
399 int gitfile_error;
400 size_t orig_path_len = path->len;
401 assert(orig_path_len != 0);
402 strbuf_complete(path, '/');
403 strbuf_addstr(path, ".git");
404 if (read_gitfile_gently(path->buf, &gitfile_error) || is_git_directory(path->buf))
405 ret = 1;
406 if (gitfile_error == READ_GITFILE_ERR_OPEN_FAILED ||
407 gitfile_error == READ_GITFILE_ERR_READ_FAILED)
408 ret = 1;
409 strbuf_setlen(path, orig_path_len);
410 return ret;
411}
412
68025633
JS
413int is_inside_git_dir(void)
414{
e90fdc39
JS
415 if (inside_git_dir < 0)
416 inside_git_dir = is_inside_dir(get_git_dir());
417 return inside_git_dir;
892c41b9
ML
418}
419
892c41b9
ML
420int is_inside_work_tree(void)
421{
e90fdc39
JS
422 if (inside_work_tree < 0)
423 inside_work_tree = is_inside_dir(get_git_work_tree());
424 return inside_work_tree;
892c41b9
ML
425}
426
f3fa1838
JH
427void setup_work_tree(void)
428{
8500e0de 429 const char *work_tree;
354e6534
JS
430 static int initialized = 0;
431
432 if (initialized)
433 return;
fada7674
JK
434
435 if (work_tree_config_is_bogus)
fc045fe7 436 die(_("unable to set up work tree using invalid config"));
fada7674 437
354e6534 438 work_tree = get_git_work_tree();
8500e0de 439 if (!work_tree || chdir_notify(work_tree))
fc045fe7 440 die(_("this operation must be run in a work tree"));
0ed74813
NTND
441
442 /*
443 * Make sure subsequent git processes find correct worktree
444 * if $GIT_WORK_TREE is set relative
445 */
446 if (getenv(GIT_WORK_TREE_ENVIRONMENT))
447 setenv(GIT_WORK_TREE_ENVIRONMENT, ".", 1);
448
354e6534 449 initialized = 1;
59f0f2f3
MH
450}
451
e6f8861b
EN
452static void setup_original_cwd(void)
453{
454 struct strbuf tmp = STRBUF_INIT;
455 const char *worktree = NULL;
456 int offset = -1;
457
458 if (!tmp_original_cwd)
459 return;
460
461 /*
462 * startup_info->original_cwd points to the current working
463 * directory we inherited from our parent process, which is a
464 * directory we want to avoid removing.
465 *
466 * For convience, we would like to have the path relative to the
467 * worktree instead of an absolute path.
468 *
469 * Yes, startup_info->original_cwd is usually the same as 'prefix',
470 * but differs in two ways:
471 * - prefix has a trailing '/'
472 * - if the user passes '-C' to git, that modifies the prefix but
473 * not startup_info->original_cwd.
474 */
475
476 /* Normalize the directory */
c37c6dc6
KL
477 if (!strbuf_realpath(&tmp, tmp_original_cwd, 0)) {
478 trace2_data_string("setup", the_repository,
479 "realpath-path", tmp_original_cwd);
480 trace2_data_string("setup", the_repository,
481 "realpath-failure", strerror(errno));
482 free((char*)tmp_original_cwd);
483 tmp_original_cwd = NULL;
484 return;
485 }
486
e6f8861b
EN
487 free((char*)tmp_original_cwd);
488 tmp_original_cwd = NULL;
489 startup_info->original_cwd = strbuf_detach(&tmp, NULL);
490
491 /*
492 * Get our worktree; we only protect the current working directory
493 * if it's in the worktree.
494 */
495 worktree = get_git_work_tree();
496 if (!worktree)
497 goto no_prevention_needed;
498
499 offset = dir_inside_of(startup_info->original_cwd, worktree);
500 if (offset >= 0) {
501 /*
502 * If startup_info->original_cwd == worktree, that is already
503 * protected and we don't need original_cwd as a secondary
504 * protection measure.
505 */
506 if (!*(startup_info->original_cwd + offset))
507 goto no_prevention_needed;
508
509 /*
510 * original_cwd was inside worktree; precompose it just as
511 * we do prefix so that built up paths will match
512 */
513 startup_info->original_cwd = \
514 precompose_string_if_needed(startup_info->original_cwd
515 + offset);
516 return;
517 }
518
519no_prevention_needed:
520 free((char*)startup_info->original_cwd);
521 startup_info->original_cwd = NULL;
522}
523
a4e7e317
GC
524static int read_worktree_config(const char *var, const char *value,
525 const struct config_context *ctx UNUSED,
526 void *vdata)
58b284a2
NTND
527{
528 struct repository_format *data = vdata;
529
530 if (strcmp(var, "core.bare") == 0) {
531 data->is_bare = git_config_bool(var, value);
532 } else if (strcmp(var, "core.worktree") == 0) {
533 if (!value)
534 return config_error_nonbool(var);
13019979 535 free(data->work_tree);
58b284a2
NTND
536 data->work_tree = xstrdup(value);
537 }
538 return 0;
539}
540
ec91ffca
JK
541enum extension_result {
542 EXTENSION_ERROR = -1, /* compatible with error(), etc */
543 EXTENSION_UNKNOWN = 0,
544 EXTENSION_OK = 1
545};
546
547/*
548 * Do not add new extensions to this function. It handles extensions which are
549 * respected even in v0-format repositories for historical compatibility.
550 */
551static enum extension_result handle_extension_v0(const char *var,
552 const char *value,
553 const char *ext,
554 struct repository_format *data)
555{
556 if (!strcmp(ext, "noop")) {
557 return EXTENSION_OK;
558 } else if (!strcmp(ext, "preciousobjects")) {
559 data->precious_objects = git_config_bool(var, value);
560 return EXTENSION_OK;
561 } else if (!strcmp(ext, "partialclone")) {
ec91ffca
JK
562 data->partial_clone = xstrdup(value);
563 return EXTENSION_OK;
564 } else if (!strcmp(ext, "worktreeconfig")) {
565 data->worktree_config = git_config_bool(var, value);
566 return EXTENSION_OK;
567 }
568
569 return EXTENSION_UNKNOWN;
570}
571
572/*
573 * Record any new extensions in this function.
574 */
575static enum extension_result handle_extension(const char *var,
576 const char *value,
577 const char *ext,
578 struct repository_format *data)
579{
580 if (!strcmp(ext, "noop-v1")) {
581 return EXTENSION_OK;
e0ad9574
JH
582 } else if (!strcmp(ext, "objectformat")) {
583 int format;
ec91ffca 584
e0ad9574
JH
585 if (!value)
586 return config_error_nonbool(var);
587 format = hash_algo_by_name(value);
588 if (format == GIT_HASH_UNKNOWN)
1a8aea85
JNA
589 return error(_("invalid value for '%s': '%s'"),
590 "extensions.objectformat", value);
e0ad9574
JH
591 data->hash_algo = format;
592 return EXTENSION_OK;
593 }
ec91ffca
JK
594 return EXTENSION_UNKNOWN;
595}
596
a4e7e317
GC
597static int check_repo_format(const char *var, const char *value,
598 const struct config_context *ctx, void *vdata)
31e26ebc 599{
2cc7c2c7 600 struct repository_format *data = vdata;
00a09d57
JK
601 const char *ext;
602
31e26ebc 603 if (strcmp(var, "core.repositoryformatversion") == 0)
8868b1eb 604 data->version = git_config_int(var, value, ctx->kvi);
00a09d57 605 else if (skip_prefix(var, "extensions.", &ext)) {
ec91ffca
JK
606 switch (handle_extension_v0(var, value, ext, data)) {
607 case EXTENSION_ERROR:
608 return -1;
609 case EXTENSION_OK:
610 return 0;
611 case EXTENSION_UNKNOWN:
612 break;
613 }
614
615 switch (handle_extension(var, value, ext, data)) {
616 case EXTENSION_ERROR:
617 return -1;
618 case EXTENSION_OK:
619 string_list_append(&data->v1_only_extensions, ext);
620 return 0;
621 case EXTENSION_UNKNOWN:
2cc7c2c7 622 string_list_append(&data->unknown_extensions, ext);
ec91ffca
JK
623 return 0;
624 }
00a09d57 625 }
58b284a2 626
a4e7e317 627 return read_worktree_config(var, value, ctx, vdata);
31e26ebc
NTND
628}
629
abade65b 630static int check_repository_format_gently(const char *gitdir, struct repository_format *candidate, int *nongit_ok)
9459aa77 631{
7d0fb0da 632 struct strbuf sb = STRBUF_INIT;
2cc7c2c7 633 struct strbuf err = STRBUF_INIT;
652f18ee 634 int has_common;
00a09d57 635
652f18ee 636 has_common = get_common_dir(&sb, gitdir);
e61a509a 637 strbuf_addstr(&sb, "/config");
abade65b 638 read_repository_format(candidate, sb.buf);
2cc7c2c7 639 strbuf_release(&sb);
e61a509a 640
337e51ce 641 /*
2cc7c2c7
JK
642 * For historical use of check_repository_format() in git-init,
643 * we treat a missing config as a silent "ok", even when nongit_ok
644 * is unset.
337e51ce 645 */
abade65b 646 if (candidate->version < 0)
2cc7c2c7
JK
647 return 0;
648
abade65b 649 if (verify_repository_format(candidate, &err) < 0) {
2cc7c2c7
JK
650 if (nongit_ok) {
651 warning("%s", err.buf);
652 strbuf_release(&err);
653 *nongit_ok = -1;
654 return -1;
655 }
656 die("%s", err.buf);
657 }
658
11664196 659 repository_format_precious_objects = candidate->precious_objects;
abade65b 660 string_list_clear(&candidate->unknown_extensions, 0);
ec91ffca 661 string_list_clear(&candidate->v1_only_extensions, 0);
58b284a2 662
3867f6d6 663 if (candidate->worktree_config) {
58b284a2
NTND
664 /*
665 * pick up core.bare and core.worktree from per-worktree
666 * config if present
667 */
668 strbuf_addf(&sb, "%s/config.worktree", gitdir);
669 git_config_from_file(read_worktree_config, sb.buf, candidate);
670 strbuf_release(&sb);
671 has_common = 0;
672 }
673
652f18ee 674 if (!has_common) {
abade65b 675 if (candidate->is_bare != -1) {
676 is_bare_repository_cfg = candidate->is_bare;
652f18ee
JK
677 if (is_bare_repository_cfg == 1)
678 inside_work_tree = -1;
679 }
abade65b 680 if (candidate->work_tree) {
652f18ee 681 free(git_work_tree_cfg);
e8805af1 682 git_work_tree_cfg = xstrdup(candidate->work_tree);
2cc7c2c7 683 inside_work_tree = -1;
652f18ee 684 }
2cc7c2c7
JK
685 }
686
687 return 0;
688}
689
16af5f1a
XL
690int upgrade_repository_format(int target_version)
691{
692 struct strbuf sb = STRBUF_INIT;
693 struct strbuf err = STRBUF_INIT;
694 struct strbuf repo_version = STRBUF_INIT;
695 struct repository_format repo_fmt = REPOSITORY_FORMAT_INIT;
696
697 strbuf_git_common_path(&sb, the_repository, "config");
698 read_repository_format(&repo_fmt, sb.buf);
699 strbuf_release(&sb);
700
701 if (repo_fmt.version >= target_version)
702 return 0;
703
62f2eca6
JN
704 if (verify_repository_format(&repo_fmt, &err) < 0) {
705 error("cannot upgrade repository format from %d to %d: %s",
706 repo_fmt.version, target_version, err.buf);
16af5f1a
XL
707 strbuf_release(&err);
708 return -1;
709 }
62f2eca6
JN
710 if (!repo_fmt.version && repo_fmt.unknown_extensions.nr)
711 return error("cannot upgrade repository format: "
712 "unknown extension %s",
713 repo_fmt.unknown_extensions.items[0].string);
16af5f1a
XL
714
715 strbuf_addf(&repo_version, "%d", target_version);
716 git_config_set("core.repositoryformatversion", repo_version.buf);
717 strbuf_release(&repo_version);
718 return 1;
719}
720
e8805af1
721static void init_repository_format(struct repository_format *format)
722{
723 const struct repository_format fresh = REPOSITORY_FORMAT_INIT;
724
725 memcpy(format, &fresh, sizeof(fresh));
726}
727
652f18ee 728int read_repository_format(struct repository_format *format, const char *path)
2cc7c2c7 729{
e8805af1 730 clear_repository_format(format);
652f18ee 731 git_config_from_file(check_repo_format, path, format);
e8805af1
732 if (format->version == -1)
733 clear_repository_format(format);
2cc7c2c7
JK
734 return format->version;
735}
736
e8805af1
737void clear_repository_format(struct repository_format *format)
738{
739 string_list_clear(&format->unknown_extensions, 0);
ec91ffca 740 string_list_clear(&format->v1_only_extensions, 0);
e8805af1
741 free(format->work_tree);
742 free(format->partial_clone);
743 init_repository_format(format);
744}
745
2cc7c2c7
JK
746int verify_repository_format(const struct repository_format *format,
747 struct strbuf *err)
748{
749 if (GIT_REPO_VERSION_READ < format->version) {
274db840 750 strbuf_addf(err, _("Expected git repo version <= %d, found %d"),
2cc7c2c7
JK
751 GIT_REPO_VERSION_READ, format->version);
752 return -1;
753 }
754
755 if (format->version >= 1 && format->unknown_extensions.nr) {
00a09d57
JK
756 int i;
757
8013d7d9
AH
758 strbuf_addstr(err, Q_("unknown repository extension found:",
759 "unknown repository extensions found:",
760 format->unknown_extensions.nr));
00a09d57 761
2cc7c2c7
JK
762 for (i = 0; i < format->unknown_extensions.nr; i++)
763 strbuf_addf(err, "\n\t%s",
764 format->unknown_extensions.items[i].string);
765 return -1;
00a09d57
JK
766 }
767
ec91ffca
JK
768 if (format->version == 0 && format->v1_only_extensions.nr) {
769 int i;
770
771 strbuf_addstr(err,
8013d7d9
AH
772 Q_("repo version is 0, but v1-only extension found:",
773 "repo version is 0, but v1-only extensions found:",
774 format->v1_only_extensions.nr));
ec91ffca
JK
775
776 for (i = 0; i < format->v1_only_extensions.nr; i++)
777 strbuf_addf(err, "\n\t%s",
778 format->v1_only_extensions.items[i].string);
779 return -1;
780 }
781
2cc7c2c7 782 return 0;
9459aa77
NTND
783}
784
5f29433f
SB
785void read_gitfile_error_die(int error_code, const char *path, const char *dir)
786{
787 switch (error_code) {
788 case READ_GITFILE_ERR_STAT_FAILED:
789 case READ_GITFILE_ERR_NOT_A_FILE:
790 /* non-fatal; follow return path */
791 break;
792 case READ_GITFILE_ERR_OPEN_FAILED:
fc045fe7 793 die_errno(_("error opening '%s'"), path);
5f29433f 794 case READ_GITFILE_ERR_TOO_LARGE:
fc045fe7 795 die(_("too large to be a .git file: '%s'"), path);
5f29433f 796 case READ_GITFILE_ERR_READ_FAILED:
fc045fe7 797 die(_("error reading %s"), path);
5f29433f 798 case READ_GITFILE_ERR_INVALID_FORMAT:
fc045fe7 799 die(_("invalid gitfile format: %s"), path);
5f29433f 800 case READ_GITFILE_ERR_NO_PATH:
fc045fe7 801 die(_("no path in gitfile: %s"), path);
5f29433f 802 case READ_GITFILE_ERR_NOT_A_REPO:
fc045fe7 803 die(_("not a git repository: %s"), dir);
5f29433f 804 default:
033abf97 805 BUG("unknown error code");
5f29433f
SB
806 }
807}
808
b44ebb19
LH
809/*
810 * Try to read the location of the git directory from the .git file,
ea1d8756
HWN
811 * return path to git directory if found. The return value comes from
812 * a shared buffer.
a93bedad
EE
813 *
814 * On failure, if return_error_code is not NULL, return_error_code
815 * will be set to an error code and NULL will be returned. If
816 * return_error_code is NULL the function will die instead (for most
817 * cases).
b44ebb19 818 */
a93bedad 819const char *read_gitfile_gently(const char *path, int *return_error_code)
b44ebb19 820{
921bdd96 821 const int max_file_size = 1 << 20; /* 1MB */
a93bedad
EE
822 int error_code = 0;
823 char *buf = NULL;
824 char *dir = NULL;
40c813e0 825 const char *slash;
b44ebb19
LH
826 struct stat st;
827 int fd;
b1905aea 828 ssize_t len;
3d7747e3 829 static struct strbuf realpath = STRBUF_INIT;
b44ebb19 830
a93bedad 831 if (stat(path, &st)) {
5c4003ca 832 /* NEEDSWORK: discern between ENOENT vs other errors */
a93bedad
EE
833 error_code = READ_GITFILE_ERR_STAT_FAILED;
834 goto cleanup_return;
835 }
836 if (!S_ISREG(st.st_mode)) {
837 error_code = READ_GITFILE_ERR_NOT_A_FILE;
838 goto cleanup_return;
839 }
921bdd96
EE
840 if (st.st_size > max_file_size) {
841 error_code = READ_GITFILE_ERR_TOO_LARGE;
842 goto cleanup_return;
843 }
b44ebb19 844 fd = open(path, O_RDONLY);
a93bedad
EE
845 if (fd < 0) {
846 error_code = READ_GITFILE_ERR_OPEN_FAILED;
847 goto cleanup_return;
848 }
3733e694 849 buf = xmallocz(st.st_size);
b44ebb19
LH
850 len = read_in_full(fd, buf, st.st_size);
851 close(fd);
a93bedad
EE
852 if (len != st.st_size) {
853 error_code = READ_GITFILE_ERR_READ_FAILED;
854 goto cleanup_return;
855 }
a93bedad
EE
856 if (!starts_with(buf, "gitdir: ")) {
857 error_code = READ_GITFILE_ERR_INVALID_FORMAT;
858 goto cleanup_return;
859 }
b44ebb19
LH
860 while (buf[len - 1] == '\n' || buf[len - 1] == '\r')
861 len--;
a93bedad
EE
862 if (len < 9) {
863 error_code = READ_GITFILE_ERR_NO_PATH;
864 goto cleanup_return;
865 }
b44ebb19 866 buf[len] = '\0';
40c813e0
BK
867 dir = buf + 8;
868
869 if (!is_absolute_path(dir) && (slash = strrchr(path, '/'))) {
870 size_t pathlen = slash+1 - path;
75faa45a
JK
871 dir = xstrfmt("%.*s%.*s", (int)pathlen, path,
872 (int)(len - 8), buf + 8);
40c813e0
BK
873 free(buf);
874 buf = dir;
875 }
a93bedad
EE
876 if (!is_git_directory(dir)) {
877 error_code = READ_GITFILE_ERR_NOT_A_REPO;
878 goto cleanup_return;
879 }
3d7747e3
AM
880
881 strbuf_realpath(&realpath, dir, 1);
882 path = realpath.buf;
40c813e0 883
a93bedad 884cleanup_return:
a93bedad
EE
885 if (return_error_code)
886 *return_error_code = error_code;
5f29433f
SB
887 else if (error_code)
888 read_gitfile_error_die(error_code, path, dir);
a93bedad 889
b44ebb19 890 free(buf);
38ae8784 891 return error_code ? NULL : path;
b44ebb19
LH
892}
893
e4e30347 894static const char *setup_explicit_git_dir(const char *gitdirenv,
7333ed17 895 struct strbuf *cwd,
abade65b 896 struct repository_format *repo_fmt,
b3f66fd3 897 int *nongit_ok)
e4e30347 898{
b3f66fd3
NTND
899 const char *work_tree_env = getenv(GIT_WORK_TREE_ENVIRONMENT);
900 const char *worktree;
901 char *gitfile;
9b125da4 902 int offset;
e4e30347
JN
903
904 if (PATH_MAX - 40 < strlen(gitdirenv))
fc045fe7 905 die(_("'$%s' too big"), GIT_DIR_ENVIRONMENT);
b3f66fd3 906
13d6ec91 907 gitfile = (char*)read_gitfile(gitdirenv);
b3f66fd3
NTND
908 if (gitfile) {
909 gitfile = xstrdup(gitfile);
910 gitdirenv = gitfile;
911 }
912
e4e30347
JN
913 if (!is_git_directory(gitdirenv)) {
914 if (nongit_ok) {
915 *nongit_ok = 1;
b3f66fd3 916 free(gitfile);
e4e30347
JN
917 return NULL;
918 }
fc045fe7 919 die(_("not a git repository: '%s'"), gitdirenv);
e4e30347 920 }
b3f66fd3 921
abade65b 922 if (check_repository_format_gently(gitdirenv, repo_fmt, nongit_ok)) {
b3f66fd3
NTND
923 free(gitfile);
924 return NULL;
e4e30347 925 }
b3f66fd3
NTND
926
927 /* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */
928 if (work_tree_env)
929 set_git_work_tree(work_tree_env);
930 else if (is_bare_repository_cfg > 0) {
fada7674
JK
931 if (git_work_tree_cfg) {
932 /* #22.2, #30 */
933 warning("core.bare and core.worktree do not make sense");
934 work_tree_config_is_bogus = 1;
935 }
b3f66fd3
NTND
936
937 /* #18, #26 */
0915a5b4 938 set_git_dir(gitdirenv, 0);
b3f66fd3 939 free(gitfile);
e4e30347 940 return NULL;
b3f66fd3
NTND
941 }
942 else if (git_work_tree_cfg) { /* #6, #14 */
943 if (is_absolute_path(git_work_tree_cfg))
944 set_git_work_tree(git_work_tree_cfg);
945 else {
56b9f6e7 946 char *core_worktree;
b3f66fd3 947 if (chdir(gitdirenv))
fc045fe7 948 die_errno(_("cannot chdir to '%s'"), gitdirenv);
b3f66fd3 949 if (chdir(git_work_tree_cfg))
fc045fe7 950 die_errno(_("cannot chdir to '%s'"), git_work_tree_cfg);
56b9f6e7 951 core_worktree = xgetcwd();
7333ed17 952 if (chdir(cwd->buf))
fc045fe7 953 die_errno(_("cannot come back to cwd"));
b3f66fd3 954 set_git_work_tree(core_worktree);
56b9f6e7 955 free(core_worktree);
b3f66fd3
NTND
956 }
957 }
2cd83d10
JK
958 else if (!git_env_bool(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, 1)) {
959 /* #16d */
0915a5b4 960 set_git_dir(gitdirenv, 0);
2cd83d10
JK
961 free(gitfile);
962 return NULL;
963 }
b3f66fd3
NTND
964 else /* #2, #10 */
965 set_git_work_tree(".");
966
967 /* set_git_work_tree() must have been called by now */
968 worktree = get_git_work_tree();
969
970 /* both get_git_work_tree() and cwd are already normalized */
7333ed17 971 if (!strcmp(cwd->buf, worktree)) { /* cwd == worktree */
0915a5b4 972 set_git_dir(gitdirenv, 0);
b3f66fd3 973 free(gitfile);
e4e30347 974 return NULL;
b3f66fd3 975 }
e4e30347 976
7333ed17 977 offset = dir_inside_of(cwd->buf, worktree);
9b125da4 978 if (offset >= 0) { /* cwd inside worktree? */
0915a5b4 979 set_git_dir(gitdirenv, 1);
b3f66fd3 980 if (chdir(worktree))
fc045fe7 981 die_errno(_("cannot chdir to '%s'"), worktree);
7333ed17 982 strbuf_addch(cwd, '/');
b3f66fd3 983 free(gitfile);
7333ed17 984 return cwd->buf + offset;
93a00542 985 }
b3f66fd3
NTND
986
987 /* cwd outside worktree */
0915a5b4 988 set_git_dir(gitdirenv, 0);
b3f66fd3
NTND
989 free(gitfile);
990 return NULL;
93a00542
JN
991}
992
9951d3b3 993static const char *setup_discovered_git_dir(const char *gitdir,
7333ed17 994 struct strbuf *cwd, int offset,
abade65b 995 struct repository_format *repo_fmt,
9951d3b3 996 int *nongit_ok)
98937bef 997{
abade65b 998 if (check_repository_format_gently(gitdir, repo_fmt, nongit_ok))
9951d3b3 999 return NULL;
98937bef 1000
4868b2ea
JN
1001 /* --work-tree is set without --git-dir; use discovered one */
1002 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
2d4dcf21
JS
1003 char *to_free = NULL;
1004 const char *ret;
1005
7333ed17 1006 if (offset != cwd->len && !is_absolute_path(gitdir))
2d4dcf21 1007 gitdir = to_free = real_pathdup(gitdir, 1);
7333ed17 1008 if (chdir(cwd->buf))
fc045fe7 1009 die_errno(_("cannot come back to cwd"));
abade65b 1010 ret = setup_explicit_git_dir(gitdir, cwd, repo_fmt, nongit_ok);
2d4dcf21
JS
1011 free(to_free);
1012 return ret;
4868b2ea
JN
1013 }
1014
9951d3b3
NTND
1015 /* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */
1016 if (is_bare_repository_cfg > 0) {
0915a5b4 1017 set_git_dir(gitdir, (offset != cwd->len));
7333ed17 1018 if (chdir(cwd->buf))
fc045fe7 1019 die_errno(_("cannot come back to cwd"));
98937bef 1020 return NULL;
9951d3b3 1021 }
98937bef 1022
9951d3b3
NTND
1023 /* #0, #1, #5, #8, #9, #12, #13 */
1024 set_git_work_tree(".");
1025 if (strcmp(gitdir, DEFAULT_GIT_DIR_ENVIRONMENT))
0915a5b4 1026 set_git_dir(gitdir, 0);
98937bef 1027 inside_git_dir = 0;
9951d3b3 1028 inside_work_tree = 1;
5cf7b3b1 1029 if (offset >= cwd->len)
98937bef
NTND
1030 return NULL;
1031
df380d58
JS
1032 /* Make "offset" point past the '/' (already the case for root dirs) */
1033 if (offset != offset_1st_component(cwd->buf))
1034 offset++;
1035 /* Add a '/' at the end */
7333ed17
RS
1036 strbuf_addch(cwd, '/');
1037 return cwd->buf + offset;
98937bef
NTND
1038}
1039
1cd8031b 1040/* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */
7333ed17 1041static const char *setup_bare_git_dir(struct strbuf *cwd, int offset,
abade65b 1042 struct repository_format *repo_fmt,
7333ed17 1043 int *nongit_ok)
68698da5
JN
1044{
1045 int root_len;
1046
abade65b 1047 if (check_repository_format_gently(".", repo_fmt, nongit_ok))
1cd8031b
NTND
1048 return NULL;
1049
2cd83d10
JK
1050 setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, "0", 1);
1051
4868b2ea
JN
1052 /* --work-tree is set without --git-dir; use discovered one */
1053 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
da6f8475 1054 static const char *gitdir;
4868b2ea 1055
7333ed17
RS
1056 gitdir = offset == cwd->len ? "." : xmemdupz(cwd->buf, offset);
1057 if (chdir(cwd->buf))
fc045fe7 1058 die_errno(_("cannot come back to cwd"));
abade65b 1059 return setup_explicit_git_dir(gitdir, cwd, repo_fmt, nongit_ok);
4868b2ea
JN
1060 }
1061
68698da5 1062 inside_git_dir = 1;
1cd8031b 1063 inside_work_tree = 0;
7333ed17
RS
1064 if (offset != cwd->len) {
1065 if (chdir(cwd->buf))
fc045fe7 1066 die_errno(_("cannot come back to cwd"));
7333ed17
RS
1067 root_len = offset_1st_component(cwd->buf);
1068 strbuf_setlen(cwd, offset > root_len ? offset : root_len);
0915a5b4 1069 set_git_dir(cwd->buf, 0);
337e51ce 1070 }
1cd8031b 1071 else
0915a5b4 1072 set_git_dir(".", 0);
68698da5
JN
1073 return NULL;
1074}
1075
2565b43b 1076static dev_t get_device_or_die(const char *path, const char *prefix, int prefix_len)
60c98d1e
JN
1077{
1078 struct stat buf;
2565b43b 1079 if (stat(path, &buf)) {
fc045fe7 1080 die_errno(_("failed to stat '%*s%s%s'"),
2565b43b 1081 prefix_len,
60c98d1e
JN
1082 prefix ? prefix : "",
1083 prefix ? "/" : "", path);
2565b43b 1084 }
60c98d1e
JN
1085 return buf.st_dev;
1086}
1087
9e2326c7 1088/*
1b77d83c 1089 * A "string_list_each_func_t" function that canonicalizes an entry
4530a85b 1090 * from GIT_CEILING_DIRECTORIES using real_pathdup(), or
7ec30aaa
MH
1091 * discards it if unusable. The presence of an empty entry in
1092 * GIT_CEILING_DIRECTORIES turns off canonicalization for all
1093 * subsequent entries.
9e2326c7 1094 */
1b77d83c 1095static int canonicalize_ceiling_entry(struct string_list_item *item,
7ec30aaa 1096 void *cb_data)
9e2326c7 1097{
7ec30aaa 1098 int *empty_entry_found = cb_data;
1b77d83c 1099 char *ceil = item->string;
9e2326c7 1100
7ec30aaa
MH
1101 if (!*ceil) {
1102 *empty_entry_found = 1;
9e2326c7 1103 return 0;
7ec30aaa 1104 } else if (!is_absolute_path(ceil)) {
9e2326c7 1105 return 0;
7ec30aaa
MH
1106 } else if (*empty_entry_found) {
1107 /* Keep entry but do not canonicalize it */
1108 return 1;
1109 } else {
ce83eadd 1110 char *real_path = real_pathdup(ceil, 0);
4ac9006f 1111 if (!real_path) {
7ec30aaa 1112 return 0;
4ac9006f 1113 }
7ec30aaa 1114 free(item->string);
4ac9006f 1115 item->string = real_path;
7ec30aaa
MH
1116 return 1;
1117 }
9e2326c7
MH
1118}
1119
8959555c
JS
1120struct safe_directory_data {
1121 const char *path;
1122 int is_safe;
1123};
1124
a4e7e317
GC
1125static int safe_directory_cb(const char *key, const char *value,
1126 const struct config_context *ctx UNUSED, void *d)
8959555c
JS
1127{
1128 struct safe_directory_data *data = d;
1129
bb50ec3c
MV
1130 if (strcmp(key, "safe.directory"))
1131 return 0;
1132
0f85c4a3 1133 if (!value || !*value) {
8959555c 1134 data->is_safe = 0;
0f85c4a3
DS
1135 } else if (!strcmp(value, "*")) {
1136 data->is_safe = 1;
1137 } else {
8959555c
JS
1138 const char *interpolated = NULL;
1139
1140 if (!git_config_pathname(&interpolated, key, value) &&
1141 !fspathcmp(data->path, interpolated ? interpolated : value))
1142 data->is_safe = 1;
1143
1144 free((char *)interpolated);
1145 }
1146
1147 return 0;
1148}
1149
3b0bf270
CMAB
1150/*
1151 * Check if a repository is safe, by verifying the ownership of the
1152 * worktree (if any), the git directory, and the gitfile (if any).
1153 *
1154 * Exemptions for known-safe repositories can be added via `safe.directory`
1155 * config settings; for non-bare repositories, their worktree needs to be
1156 * added, for bare ones their git directory.
1157 */
1158static int ensure_valid_ownership(const char *gitfile,
17d3883f
JS
1159 const char *worktree, const char *gitdir,
1160 struct strbuf *report)
8959555c 1161{
3b0bf270
CMAB
1162 struct safe_directory_data data = {
1163 .path = worktree ? worktree : gitdir
1164 };
8959555c 1165
e47363e5 1166 if (!git_env_bool("GIT_TEST_ASSUME_DIFFERENT_OWNER", 0) &&
17d3883f
JS
1167 (!gitfile || is_path_owned_by_current_user(gitfile, report)) &&
1168 (!worktree || is_path_owned_by_current_user(worktree, report)) &&
1169 (!gitdir || is_path_owned_by_current_user(gitdir, report)))
8959555c
JS
1170 return 1;
1171
3b0bf270
CMAB
1172 /*
1173 * data.path is the "path" that identifies the repository and it is
1174 * constant regardless of what failed above. data.is_safe should be
1175 * initialized to false, and might be changed by the callback.
1176 */
6061601d 1177 git_protected_config(safe_directory_cb, &data);
8959555c
JS
1178
1179 return data.is_safe;
1180}
1181
a4e7e317
GC
1182static int allowed_bare_repo_cb(const char *key, const char *value,
1183 const struct config_context *ctx UNUSED,
1184 void *d)
8d1a7448
GC
1185{
1186 enum allowed_bare_repo *allowed_bare_repo = d;
1187
1188 if (strcasecmp(key, "safe.bareRepository"))
1189 return 0;
1190
1191 if (!strcmp(value, "explicit")) {
1192 *allowed_bare_repo = ALLOWED_BARE_REPO_EXPLICIT;
1193 return 0;
1194 }
1195 if (!strcmp(value, "all")) {
1196 *allowed_bare_repo = ALLOWED_BARE_REPO_ALL;
1197 return 0;
1198 }
1199 return -1;
1200}
1201
1202static enum allowed_bare_repo get_allowed_bare_repo(void)
1203{
1204 enum allowed_bare_repo result = ALLOWED_BARE_REPO_ALL;
1205 git_protected_config(allowed_bare_repo_cb, &result);
1206 return result;
1207}
1208
1209static const char *allowed_bare_repo_to_string(
1210 enum allowed_bare_repo allowed_bare_repo)
1211{
1212 switch (allowed_bare_repo) {
1213 case ALLOWED_BARE_REPO_EXPLICIT:
1214 return "explicit";
1215 case ALLOWED_BARE_REPO_ALL:
1216 return "all";
1217 default:
1218 BUG("invalid allowed_bare_repo %d",
1219 allowed_bare_repo);
1220 }
1221 return NULL;
1222}
1223
ce9b8aab
JS
1224enum discovery_result {
1225 GIT_DIR_NONE = 0,
1226 GIT_DIR_EXPLICIT,
1227 GIT_DIR_DISCOVERED,
1228 GIT_DIR_BARE,
1229 /* these are errors */
1230 GIT_DIR_HIT_CEILING = -1,
01017dce 1231 GIT_DIR_HIT_MOUNT_POINT = -2,
8959555c 1232 GIT_DIR_INVALID_GITFILE = -3,
8d1a7448
GC
1233 GIT_DIR_INVALID_OWNERSHIP = -4,
1234 GIT_DIR_DISALLOWED_BARE = -5,
ce9b8aab
JS
1235};
1236
e90fdc39
JS
1237/*
1238 * We cannot decide in this function whether we are in the work tree or
1239 * not, since the config can only be read _after_ this function was called.
ce9b8aab
JS
1240 *
1241 * Also, we avoid changing any global state (such as the current working
1242 * directory) to allow early callers.
1243 *
1244 * The directory where the search should start needs to be passed in via the
1245 * `dir` parameter; upon return, the `dir` buffer will contain the path of
1246 * the directory where the search ended, and `gitdir` will contain the path of
1247 * the discovered .git/ directory, if any. If `gitdir` is not absolute, it
1248 * is relative to `dir` (i.e. *not* necessarily the cwd).
e90fdc39 1249 */
ce9b8aab 1250static enum discovery_result setup_git_directory_gently_1(struct strbuf *dir,
01017dce 1251 struct strbuf *gitdir,
17d3883f 1252 struct strbuf *report,
01017dce 1253 int die_on_error)
d288a700 1254{
0454dd93 1255 const char *env_ceiling_dirs = getenv(CEILING_DIRECTORIES_ENVIRONMENT);
31171d9e 1256 struct string_list ceiling_dirs = STRING_LIST_INIT_DUP;
ce9b8aab 1257 const char *gitdirenv;
d17f2124 1258 int ceil_offset = -1, min_offset = offset_1st_component(dir->buf);
c7d1d1b1
RH
1259 dev_t current_device = 0;
1260 int one_filesystem = 1;
d288a700 1261
e90fdc39
JS
1262 /*
1263 * If GIT_DIR is set explicitly, we're not going
1264 * to do any discovery, but we still do repository
1265 * validation.
1266 */
ad1a382f 1267 gitdirenv = getenv(GIT_DIR_ENVIRONMENT);
ce9b8aab
JS
1268 if (gitdirenv) {
1269 strbuf_addstr(gitdir, gitdirenv);
1270 return GIT_DIR_EXPLICIT;
1271 }
d288a700 1272
31171d9e 1273 if (env_ceiling_dirs) {
7ec30aaa
MH
1274 int empty_entry_found = 0;
1275
31171d9e 1276 string_list_split(&ceiling_dirs, env_ceiling_dirs, PATH_SEP, -1);
1b77d83c 1277 filter_string_list(&ceiling_dirs, 0,
7ec30aaa 1278 canonicalize_ceiling_entry, &empty_entry_found);
ce9b8aab 1279 ceil_offset = longest_ancestor_length(dir->buf, &ceiling_dirs);
31171d9e
MH
1280 string_list_clear(&ceiling_dirs, 0);
1281 }
1282
ce9b8aab
JS
1283 if (ceil_offset < 0)
1284 ceil_offset = min_offset - 2;
d288a700 1285
e2683d51
JS
1286 if (min_offset && min_offset == dir->len &&
1287 !is_dir_sep(dir->buf[min_offset - 1])) {
1288 strbuf_addch(dir, '/');
1289 min_offset++;
1290 }
1291
892c41b9 1292 /*
ce9b8aab 1293 * Test in the following order (relative to the dir):
b44ebb19 1294 * - .git (file containing "gitdir: <path>")
e90fdc39
JS
1295 * - .git/
1296 * - ./ (bare)
b44ebb19 1297 * - ../.git
e90fdc39
JS
1298 * - ../.git/
1299 * - ../ (bare)
176b2d32 1300 * - ../../.git
e90fdc39 1301 * etc.
892c41b9 1302 */
cf87463e 1303 one_filesystem = !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM", 0);
60c98d1e 1304 if (one_filesystem)
ce9b8aab 1305 current_device = get_device_or_die(dir->buf, NULL, 0);
e90fdc39 1306 for (;;) {
01017dce 1307 int offset = dir->len, error_code = 0;
3b0bf270
CMAB
1308 char *gitdir_path = NULL;
1309 char *gitfile = NULL;
ce9b8aab
JS
1310
1311 if (offset > min_offset)
1312 strbuf_addch(dir, '/');
1313 strbuf_addstr(dir, DEFAULT_GIT_DIR_ENVIRONMENT);
01017dce
JS
1314 gitdirenv = read_gitfile_gently(dir->buf, die_on_error ?
1315 NULL : &error_code);
1316 if (!gitdirenv) {
1317 if (die_on_error ||
1318 error_code == READ_GITFILE_ERR_NOT_A_FILE) {
5c4003ca 1319 /* NEEDSWORK: fail if .git is not file nor dir */
3b0bf270 1320 if (is_git_directory(dir->buf)) {
01017dce 1321 gitdirenv = DEFAULT_GIT_DIR_ENVIRONMENT;
3b0bf270
CMAB
1322 gitdir_path = xstrdup(dir->buf);
1323 }
01017dce
JS
1324 } else if (error_code != READ_GITFILE_ERR_STAT_FAILED)
1325 return GIT_DIR_INVALID_GITFILE;
3b0bf270
CMAB
1326 } else
1327 gitfile = xstrdup(dir->buf);
1328 /*
1329 * Earlier, we tentatively added DEFAULT_GIT_DIR_ENVIRONMENT
1330 * to check that directory for a repository.
1331 * Now trim that tentative addition away, because we want to
1332 * focus on the real directory we are in.
1333 */
ce9b8aab 1334 strbuf_setlen(dir, offset);
9951d3b3 1335 if (gitdirenv) {
3b0bf270 1336 enum discovery_result ret;
d51e1dff
JS
1337 const char *gitdir_candidate =
1338 gitdir_path ? gitdir_path : gitdirenv;
3b0bf270 1339
d51e1dff 1340 if (ensure_valid_ownership(gitfile, dir->buf,
17d3883f 1341 gitdir_candidate, report)) {
3b0bf270
CMAB
1342 strbuf_addstr(gitdir, gitdirenv);
1343 ret = GIT_DIR_DISCOVERED;
1344 } else
1345 ret = GIT_DIR_INVALID_OWNERSHIP;
1346
1347 /*
1348 * Earlier, during discovery, we might have allocated
1349 * string copies for gitdir_path or gitfile so make
1350 * sure we don't leak by freeing them now, before
1351 * leaving the loop and function.
1352 *
1353 * Note: gitdirenv will be non-NULL whenever these are
1354 * allocated, therefore we need not take care of releasing
1355 * them outside of this conditional block.
1356 */
1357 free(gitdir_path);
1358 free(gitfile);
1359
1360 return ret;
9951d3b3 1361 }
9951d3b3 1362
ce9b8aab 1363 if (is_git_directory(dir->buf)) {
e35f202b 1364 trace2_data_string("setup", NULL, "implicit-bare-repository", dir->buf);
8d1a7448
GC
1365 if (get_allowed_bare_repo() == ALLOWED_BARE_REPO_EXPLICIT)
1366 return GIT_DIR_DISALLOWED_BARE;
17d3883f 1367 if (!ensure_valid_ownership(NULL, NULL, dir->buf, report))
8959555c 1368 return GIT_DIR_INVALID_OWNERSHIP;
ce9b8aab
JS
1369 strbuf_addstr(gitdir, ".");
1370 return GIT_DIR_BARE;
502ffe34 1371 }
9951d3b3 1372
ce9b8aab
JS
1373 if (offset <= min_offset)
1374 return GIT_DIR_HIT_CEILING;
1cd8031b 1375
ce9b8aab 1376 while (--offset > ceil_offset && !is_dir_sep(dir->buf[offset]))
6c1e6544 1377 ; /* continue */
ce9b8aab
JS
1378 if (offset <= ceil_offset)
1379 return GIT_DIR_HIT_CEILING;
1380
1381 strbuf_setlen(dir, offset > min_offset ? offset : min_offset);
1382 if (one_filesystem &&
1383 current_device != get_device_or_die(dir->buf, NULL, offset))
1384 return GIT_DIR_HIT_MOUNT_POINT;
892c41b9 1385 }
d288a700 1386}
5e7bfe25 1387
d3fb71b3
BW
1388int discover_git_directory(struct strbuf *commondir,
1389 struct strbuf *gitdir)
16ac8b8d
JS
1390{
1391 struct strbuf dir = STRBUF_INIT, err = STRBUF_INIT;
1392 size_t gitdir_offset = gitdir->len, cwd_len;
d3fb71b3 1393 size_t commondir_offset = commondir->len;
e8805af1 1394 struct repository_format candidate = REPOSITORY_FORMAT_INIT;
16ac8b8d
JS
1395
1396 if (strbuf_getcwd(&dir))
d3fb71b3 1397 return -1;
16ac8b8d
JS
1398
1399 cwd_len = dir.len;
17d3883f 1400 if (setup_git_directory_gently_1(&dir, gitdir, NULL, 0) <= 0) {
16ac8b8d 1401 strbuf_release(&dir);
d3fb71b3 1402 return -1;
16ac8b8d
JS
1403 }
1404
1405 /*
1406 * The returned gitdir is relative to dir, and if dir does not reflect
1407 * the current working directory, we simply make the gitdir absolute.
1408 */
1409 if (dir.len < cwd_len && !is_absolute_path(gitdir->buf + gitdir_offset)) {
1410 /* Avoid a trailing "/." */
1411 if (!strcmp(".", gitdir->buf + gitdir_offset))
1412 strbuf_setlen(gitdir, gitdir_offset);
1413 else
1414 strbuf_addch(&dir, '/');
1415 strbuf_insert(gitdir, gitdir_offset, dir.buf, dir.len);
1416 }
1417
d3fb71b3
BW
1418 get_common_dir(commondir, gitdir->buf + gitdir_offset);
1419
16ac8b8d 1420 strbuf_reset(&dir);
d3fb71b3 1421 strbuf_addf(&dir, "%s/config", commondir->buf + commondir_offset);
16ac8b8d
JS
1422 read_repository_format(&candidate, dir.buf);
1423 strbuf_release(&dir);
1424
1425 if (verify_repository_format(&candidate, &err) < 0) {
1426 warning("ignoring git dir '%s': %s",
1427 gitdir->buf + gitdir_offset, err.buf);
1428 strbuf_release(&err);
d3fb71b3 1429 strbuf_setlen(commondir, commondir_offset);
69743f9b 1430 strbuf_setlen(gitdir, gitdir_offset);
e8805af1 1431 clear_repository_format(&candidate);
d3fb71b3 1432 return -1;
16ac8b8d
JS
1433 }
1434
e8805af1 1435 clear_repository_format(&candidate);
d3fb71b3 1436 return 0;
16ac8b8d
JS
1437}
1438
a60645f9
NTND
1439const char *setup_git_directory_gently(int *nongit_ok)
1440{
ce9b8aab 1441 static struct strbuf cwd = STRBUF_INIT;
17d3883f 1442 struct strbuf dir = STRBUF_INIT, gitdir = STRBUF_INIT, report = STRBUF_INIT;
07098b81 1443 const char *prefix = NULL;
e8805af1 1444 struct repository_format repo_fmt = REPOSITORY_FORMAT_INIT;
a60645f9 1445
ce9b8aab
JS
1446 /*
1447 * We may have read an incomplete configuration before
1448 * setting-up the git directory. If so, clear the cache so
1449 * that the next queries to the configuration reload complete
1450 * configuration (including the per-repo config file that we
1451 * ignored previously).
1452 */
1453 git_config_clear();
1454
1455 /*
1456 * Let's assume that we are in a git repository.
1457 * If it turns out later that we are somewhere else, the value will be
1458 * updated accordingly.
1459 */
1460 if (nongit_ok)
1461 *nongit_ok = 0;
1462
1463 if (strbuf_getcwd(&cwd))
1464 die_errno(_("Unable to read current working directory"));
1465 strbuf_addbuf(&dir, &cwd);
1466
17d3883f 1467 switch (setup_git_directory_gently_1(&dir, &gitdir, &report, 1)) {
ce9b8aab 1468 case GIT_DIR_EXPLICIT:
abade65b 1469 prefix = setup_explicit_git_dir(gitdir.buf, &cwd, &repo_fmt, nongit_ok);
ce9b8aab
JS
1470 break;
1471 case GIT_DIR_DISCOVERED:
1472 if (dir.len < cwd.len && chdir(dir.buf))
fc045fe7 1473 die(_("cannot change to '%s'"), dir.buf);
ce9b8aab 1474 prefix = setup_discovered_git_dir(gitdir.buf, &cwd, dir.len,
abade65b 1475 &repo_fmt, nongit_ok);
ce9b8aab
JS
1476 break;
1477 case GIT_DIR_BARE:
1478 if (dir.len < cwd.len && chdir(dir.buf))
fc045fe7 1479 die(_("cannot change to '%s'"), dir.buf);
abade65b 1480 prefix = setup_bare_git_dir(&cwd, dir.len, &repo_fmt, nongit_ok);
ce9b8aab
JS
1481 break;
1482 case GIT_DIR_HIT_CEILING:
07098b81
ED
1483 if (!nongit_ok)
1484 die(_("not a git repository (or any of the parent directories): %s"),
1485 DEFAULT_GIT_DIR_ENVIRONMENT);
1486 *nongit_ok = 1;
ce9b8aab
JS
1487 break;
1488 case GIT_DIR_HIT_MOUNT_POINT:
07098b81
ED
1489 if (!nongit_ok)
1490 die(_("not a git repository (or any parent up to mount point %s)\n"
1491 "Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set)."),
1492 dir.buf);
1493 *nongit_ok = 1;
1494 break;
8959555c
JS
1495 case GIT_DIR_INVALID_OWNERSHIP:
1496 if (!nongit_ok) {
1497 struct strbuf quoted = STRBUF_INIT;
1498
17d3883f 1499 strbuf_complete(&report, '\n');
8959555c 1500 sq_quote_buf_pretty(&quoted, dir.buf);
3b0bf270 1501 die(_("detected dubious ownership in repository at '%s'\n"
17d3883f 1502 "%s"
8959555c
JS
1503 "To add an exception for this directory, call:\n"
1504 "\n"
1505 "\tgit config --global --add safe.directory %s"),
17d3883f 1506 dir.buf, report.buf, quoted.buf);
8959555c
JS
1507 }
1508 *nongit_ok = 1;
1509 break;
8d1a7448
GC
1510 case GIT_DIR_DISALLOWED_BARE:
1511 if (!nongit_ok) {
1512 die(_("cannot use bare repository '%s' (safe.bareRepository is '%s')"),
1513 dir.buf,
1514 allowed_bare_repo_to_string(get_allowed_bare_repo()));
1515 }
1516 *nongit_ok = 1;
1517 break;
07098b81
ED
1518 case GIT_DIR_NONE:
1519 /*
1520 * As a safeguard against setup_git_directory_gently_1 returning
1521 * this value, fallthrough to BUG. Otherwise it is possible to
1522 * set startup_info->have_repository to 1 when we did nothing to
1523 * find a repository.
1524 */
ce9b8aab 1525 default:
a3ba4fa7 1526 BUG("unhandled setup_git_directory_gently_1() result");
ce9b8aab
JS
1527 }
1528
07098b81
ED
1529 /*
1530 * At this point, nongit_ok is stable. If it is non-NULL and points
1531 * to a non-zero value, then this means that we haven't found a
1532 * repository and that the caller expects startup_info to reflect
1533 * this.
1534 *
1535 * Regardless of the state of nongit_ok, startup_info->prefix and
1536 * the GIT_PREFIX environment variable must always match. For details
1537 * see Documentation/config/alias.txt.
1538 */
c7d0e610 1539 if (nongit_ok && *nongit_ok)
07098b81 1540 startup_info->have_repository = 0;
c7d0e610 1541 else
07098b81 1542 startup_info->have_repository = 1;
46c3cd44 1543
73f192c9
BW
1544 /*
1545 * Not all paths through the setup code will call 'set_git_dir()' (which
1546 * directly sets up the environment) so in order to guarantee that the
1547 * environment is in a consistent state after setup, explicitly setup
1548 * the environment if we have a repository.
1549 *
1550 * NEEDSWORK: currently we allow bogus GIT_DIR values to be set in some
1551 * code paths so we also need to explicitly setup the environment if
1552 * the user has set GIT_DIR. It may be beneficial to disallow bogus
1553 * GIT_DIR values at some point in the future.
1554 */
07098b81
ED
1555 if (/* GIT_DIR_EXPLICIT, GIT_DIR_DISCOVERED, GIT_DIR_BARE */
1556 startup_info->have_repository ||
1557 /* GIT_DIR_EXPLICIT */
1558 getenv(GIT_DIR_ENVIRONMENT)) {
c14c234f
BW
1559 if (!the_repository->gitdir) {
1560 const char *gitdir = getenv(GIT_DIR_ENVIRONMENT);
1561 if (!gitdir)
1562 gitdir = DEFAULT_GIT_DIR_ENVIRONMENT;
357a03eb 1563 setup_git_env(gitdir);
c14c234f 1564 }
ebaf3bcf 1565 if (startup_info->have_repository) {
78a67668 1566 repo_set_hash_algo(the_repository, repo_fmt.hash_algo);
15a1ca1a
EB
1567 repo_set_compat_hash_algo(the_repository,
1568 GIT_HASH_UNKNOWN);
3867f6d6
VD
1569 the_repository->repository_format_worktree_config =
1570 repo_fmt.worktree_config;
ebaf3bcf
JT
1571 /* take ownership of repo_fmt.partial_clone */
1572 the_repository->repository_format_partial_clone =
1573 repo_fmt.partial_clone;
1574 repo_fmt.partial_clone = NULL;
1575 }
c14c234f 1576 }
c7d0e610
TB
1577 /*
1578 * Since precompose_string_if_needed() needs to look at
1579 * the core.precomposeunicode configuration, this
1580 * has to happen after the above block that finds
1581 * out where the repository is, i.e. a preparation
1582 * for calling git_config_get_bool().
1583 */
1584 if (prefix) {
1585 prefix = precompose_string_if_needed(prefix);
1586 startup_info->prefix = prefix;
1587 setenv(GIT_PREFIX_ENVIRONMENT, prefix, 1);
1588 } else {
1589 startup_info->prefix = NULL;
1590 setenv(GIT_PREFIX_ENVIRONMENT, "", 1);
1591 }
1592
e6f8861b 1593 setup_original_cwd();
73f192c9 1594
ce9b8aab
JS
1595 strbuf_release(&dir);
1596 strbuf_release(&gitdir);
17d3883f 1597 strbuf_release(&report);
e8805af1 1598 clear_repository_format(&repo_fmt);
ce9b8aab 1599
a60645f9
NTND
1600 return prefix;
1601}
1602
94df2506
JH
1603int git_config_perm(const char *var, const char *value)
1604{
06cbe855
HO
1605 int i;
1606 char *endptr;
1607
afe8a907 1608 if (!value)
06cbe855
HO
1609 return PERM_GROUP;
1610
1611 if (!strcmp(value, "umask"))
1612 return PERM_UMASK;
1613 if (!strcmp(value, "group"))
1614 return PERM_GROUP;
1615 if (!strcmp(value, "all") ||
1616 !strcmp(value, "world") ||
1617 !strcmp(value, "everybody"))
1618 return PERM_EVERYBODY;
1619
1620 /* Parse octal numbers */
1621 i = strtol(value, &endptr, 8);
1622
1623 /* If not an octal number, maybe true/false? */
1624 if (*endptr != 0)
1625 return git_config_bool(var, value) ? PERM_GROUP : PERM_UMASK;
1626
1627 /*
1628 * Treat values 0, 1 and 2 as compatibility cases, otherwise it is
5a688fe4 1629 * a chmod value to restrict to.
06cbe855
HO
1630 */
1631 switch (i) {
1632 case PERM_UMASK: /* 0 */
1633 return PERM_UMASK;
1634 case OLD_PERM_GROUP: /* 1 */
1635 return PERM_GROUP;
1636 case OLD_PERM_EVERYBODY: /* 2 */
1637 return PERM_EVERYBODY;
94df2506 1638 }
06cbe855
HO
1639
1640 /* A filemode value was given: 0xxx */
1641
1642 if ((i & 0600) != 0600)
fc045fe7 1643 die(_("problem with core.sharedRepository filemode value "
06cbe855 1644 "(0%.3o).\nThe owner of files must always have "
2ff30e67 1645 "read and write permissions."), i);
06cbe855
HO
1646
1647 /*
1648 * Mask filemode value. Others can not get write permission.
1649 * x flags for directories are handled separately.
1650 */
5a688fe4 1651 return -(i & 0666);
94df2506
JH
1652}
1653
cfe3917c 1654void check_repository_format(struct repository_format *fmt)
ab9cb76f 1655{
e8805af1 1656 struct repository_format repo_fmt = REPOSITORY_FORMAT_INIT;
cfe3917c 1657 if (!fmt)
1658 fmt = &repo_fmt;
1659 check_repository_format_gently(get_git_dir(), fmt, NULL);
f1c126bd 1660 startup_info->have_repository = 1;
d553aceb 1661 repo_set_hash_algo(the_repository, fmt->hash_algo);
15a1ca1a 1662 repo_set_compat_hash_algo(the_repository, GIT_HASH_UNKNOWN);
3867f6d6
VD
1663 the_repository->repository_format_worktree_config =
1664 fmt->worktree_config;
ebaf3bcf
JT
1665 the_repository->repository_format_partial_clone =
1666 xstrdup_or_null(fmt->partial_clone);
e8805af1 1667 clear_repository_format(&repo_fmt);
ab9cb76f
JH
1668}
1669
e1e5ec86
CB
1670/*
1671 * Returns the "prefix", a path to the current working directory
1672 * relative to the work tree root, or NULL, if the current working
1673 * directory is not a strict subdirectory of the work tree root. The
1674 * prefix always ends with a '/' character.
1675 */
5e7bfe25
JH
1676const char *setup_git_directory(void)
1677{
b3f66fd3 1678 return setup_git_directory_gently(NULL);
5e7bfe25 1679}
abc06822 1680
40d96325 1681const char *resolve_gitdir_gently(const char *suspect, int *return_error_code)
abc06822
FG
1682{
1683 if (is_git_directory(suspect))
1684 return suspect;
40d96325 1685 return read_gitfile_gently(suspect, return_error_code);
abc06822 1686}
1d999ddd
TR
1687
1688/* if any standard file descriptor is missing open it to /dev/null */
1689void sanitize_stdfds(void)
1690{
d9a65b6c
RS
1691 int fd = xopen("/dev/null", O_RDWR);
1692 while (fd < 2)
1693 fd = xdup(fd);
1d999ddd
TR
1694 if (fd > 2)
1695 close(fd);
1696}
de0957ce
NTND
1697
1698int daemonize(void)
1699{
1700#ifdef NO_POSIX_GOODIES
1701 errno = ENOSYS;
1702 return -1;
1703#else
1704 switch (fork()) {
1705 case 0:
1706 break;
1707 case -1:
fc045fe7 1708 die_errno(_("fork failed"));
de0957ce
NTND
1709 default:
1710 exit(0);
1711 }
1712 if (setsid() == -1)
fc045fe7 1713 die_errno(_("setsid failed"));
de0957ce
NTND
1714 close(0);
1715 close(1);
1716 close(2);
1717 sanitize_stdfds();
1718 return 0;
1719#endif
1720}
e8cf8ef5
EN
1721
1722#ifdef NO_TRUSTABLE_FILEMODE
1723#define TEST_FILEMODE 0
1724#else
1725#define TEST_FILEMODE 1
1726#endif
1727
1728#define GIT_DEFAULT_HASH_ENVIRONMENT "GIT_DEFAULT_HASH"
1729
1730static void copy_templates_1(struct strbuf *path, struct strbuf *template_path,
1731 DIR *dir)
1732{
1733 size_t path_baselen = path->len;
1734 size_t template_baselen = template_path->len;
1735 struct dirent *de;
1736
1737 /* Note: if ".git/hooks" file exists in the repository being
1738 * re-initialized, /etc/core-git/templates/hooks/update would
1739 * cause "git init" to fail here. I think this is sane but
1740 * it means that the set of templates we ship by default, along
1741 * with the way the namespace under .git/ is organized, should
1742 * be really carefully chosen.
1743 */
1744 safe_create_dir(path->buf, 1);
1745 while ((de = readdir(dir)) != NULL) {
1746 struct stat st_git, st_template;
1747 int exists = 0;
1748
1749 strbuf_setlen(path, path_baselen);
1750 strbuf_setlen(template_path, template_baselen);
1751
1752 if (de->d_name[0] == '.')
1753 continue;
1754 strbuf_addstr(path, de->d_name);
1755 strbuf_addstr(template_path, de->d_name);
1756 if (lstat(path->buf, &st_git)) {
1757 if (errno != ENOENT)
1758 die_errno(_("cannot stat '%s'"), path->buf);
1759 }
1760 else
1761 exists = 1;
1762
1763 if (lstat(template_path->buf, &st_template))
1764 die_errno(_("cannot stat template '%s'"), template_path->buf);
1765
1766 if (S_ISDIR(st_template.st_mode)) {
1767 DIR *subdir = opendir(template_path->buf);
1768 if (!subdir)
1769 die_errno(_("cannot opendir '%s'"), template_path->buf);
1770 strbuf_addch(path, '/');
1771 strbuf_addch(template_path, '/');
1772 copy_templates_1(path, template_path, subdir);
1773 closedir(subdir);
1774 }
1775 else if (exists)
1776 continue;
1777 else if (S_ISLNK(st_template.st_mode)) {
1778 struct strbuf lnk = STRBUF_INIT;
1779 if (strbuf_readlink(&lnk, template_path->buf,
1780 st_template.st_size) < 0)
1781 die_errno(_("cannot readlink '%s'"), template_path->buf);
1782 if (symlink(lnk.buf, path->buf))
1783 die_errno(_("cannot symlink '%s' '%s'"),
1784 lnk.buf, path->buf);
1785 strbuf_release(&lnk);
1786 }
1787 else if (S_ISREG(st_template.st_mode)) {
1788 if (copy_file(path->buf, template_path->buf, st_template.st_mode))
1789 die_errno(_("cannot copy '%s' to '%s'"),
1790 template_path->buf, path->buf);
1791 }
1792 else
1793 error(_("ignoring template %s"), template_path->buf);
1794 }
1795}
1796
1797static void copy_templates(const char *template_dir, const char *init_template_dir)
1798{
1799 struct strbuf path = STRBUF_INIT;
1800 struct strbuf template_path = STRBUF_INIT;
1801 size_t template_len;
1802 struct repository_format template_format = REPOSITORY_FORMAT_INIT;
1803 struct strbuf err = STRBUF_INIT;
1804 DIR *dir;
1805 char *to_free = NULL;
1806
1807 if (!template_dir)
1808 template_dir = getenv(TEMPLATE_DIR_ENVIRONMENT);
1809 if (!template_dir)
1810 template_dir = init_template_dir;
1811 if (!template_dir)
1812 template_dir = to_free = system_path(DEFAULT_GIT_TEMPLATE_DIR);
1813 if (!template_dir[0]) {
1814 free(to_free);
1815 return;
1816 }
1817
1818 strbuf_addstr(&template_path, template_dir);
1819 strbuf_complete(&template_path, '/');
1820 template_len = template_path.len;
1821
1822 dir = opendir(template_path.buf);
1823 if (!dir) {
1824 warning(_("templates not found in %s"), template_dir);
1825 goto free_return;
1826 }
1827
1828 /* Make sure that template is from the correct vintage */
1829 strbuf_addstr(&template_path, "config");
1830 read_repository_format(&template_format, template_path.buf);
1831 strbuf_setlen(&template_path, template_len);
1832
1833 /*
1834 * No mention of version at all is OK, but anything else should be
1835 * verified.
1836 */
1837 if (template_format.version >= 0 &&
1838 verify_repository_format(&template_format, &err) < 0) {
1839 warning(_("not copying templates from '%s': %s"),
1840 template_dir, err.buf);
1841 strbuf_release(&err);
1842 goto close_free_return;
1843 }
1844
1845 strbuf_addstr(&path, get_git_common_dir());
1846 strbuf_complete(&path, '/');
1847 copy_templates_1(&path, &template_path, dir);
1848close_free_return:
1849 closedir(dir);
1850free_return:
1851 free(to_free);
1852 strbuf_release(&path);
1853 strbuf_release(&template_path);
1854 clear_repository_format(&template_format);
1855}
1856
1857/*
1858 * If the git_dir is not directly inside the working tree, then git will not
1859 * find it by default, and we need to set the worktree explicitly.
1860 */
1861static int needs_work_tree_config(const char *git_dir, const char *work_tree)
1862{
1863 if (!strcmp(work_tree, "/") && !strcmp(git_dir, "/.git"))
1864 return 0;
1865 if (skip_prefix(git_dir, work_tree, &git_dir) &&
1866 !strcmp(git_dir, "/.git"))
1867 return 0;
1868 return 1;
1869}
1870
1871void initialize_repository_version(int hash_algo, int reinit)
1872{
1873 char repo_version_string[10];
1874 int repo_version = GIT_REPO_VERSION;
1875
1876 if (hash_algo != GIT_HASH_SHA1)
1877 repo_version = GIT_REPO_VERSION_READ;
1878
1879 /* This forces creation of new config file */
1880 xsnprintf(repo_version_string, sizeof(repo_version_string),
1881 "%d", repo_version);
1882 git_config_set("core.repositoryformatversion", repo_version_string);
1883
1884 if (hash_algo != GIT_HASH_SHA1)
1885 git_config_set("extensions.objectformat",
1886 hash_algos[hash_algo].name);
1887 else if (reinit)
1888 git_config_set_gently("extensions.objectformat", NULL);
1889}
1890
1891static int create_default_files(const char *template_path,
1892 const char *original_git_dir,
1893 const char *initial_branch,
1894 const struct repository_format *fmt,
1895 int prev_bare_repository,
1896 int init_shared_repository,
1897 int quiet)
1898{
1899 struct stat st1;
1900 struct strbuf buf = STRBUF_INIT;
1901 char *path;
1902 char junk[2];
1903 int reinit;
1904 int filemode;
1905 struct strbuf err = STRBUF_INIT;
1906 const char *init_template_dir = NULL;
1907 const char *work_tree = get_git_work_tree();
1908
1909 /*
1910 * First copy the templates -- we might have the default
1911 * config file there, in which case we would want to read
1912 * from it after installing.
1913 *
1914 * Before reading that config, we also need to clear out any cached
1915 * values (since we've just potentially changed what's available on
1916 * disk).
1917 */
1918 git_config_get_pathname("init.templatedir", &init_template_dir);
1919 copy_templates(template_path, init_template_dir);
1920 free((char *)init_template_dir);
1921 git_config_clear();
1922 reset_shared_repository();
1923 git_config(git_default_config, NULL);
1924
1925 /*
1926 * We must make sure command-line options continue to override any
1927 * values we might have just re-read from the config.
1928 */
1929 if (init_shared_repository != -1)
1930 set_shared_repository(init_shared_repository);
1931 /*
1932 * TODO: heed core.bare from config file in templates if no
1933 * command-line override given
1934 */
1935 is_bare_repository_cfg = prev_bare_repository || !work_tree;
1936 /* TODO (continued):
1937 *
1938 * Unfortunately, the line above is equivalent to
1939 * is_bare_repository_cfg = !work_tree;
1940 * which ignores the config entirely even if no `--[no-]bare`
1941 * command line option was present.
1942 *
1943 * To see why, note that before this function, there was this call:
1944 * prev_bare_repository = is_bare_repository()
1945 * expanding the right hand side:
1946 * = is_bare_repository_cfg && !get_git_work_tree()
1947 * = is_bare_repository_cfg && !work_tree
1948 * note that the last simplification above is valid because nothing
1949 * calls repo_init() or set_git_work_tree() between any of the
1950 * relevant calls in the code, and thus the !get_git_work_tree()
1951 * calls will return the same result each time. So, what we are
1952 * interested in computing is the right hand side of the line of
1953 * code just above this comment:
1954 * prev_bare_repository || !work_tree
1955 * = is_bare_repository_cfg && !work_tree || !work_tree
1956 * = !work_tree
1957 * because "A && !B || !B == !B" for all boolean values of A & B.
1958 */
1959
1960 /*
1961 * We would have created the above under user's umask -- under
1962 * shared-repository settings, we would need to fix them up.
1963 */
1964 if (get_shared_repository()) {
1965 adjust_shared_perm(get_git_dir());
1966 }
1967
1968 /*
1969 * We need to create a "refs" dir in any case so that older
1970 * versions of git can tell that this is a repository.
1971 */
1972 safe_create_dir(git_path("refs"), 1);
1973 adjust_shared_perm(git_path("refs"));
1974
1975 if (refs_init_db(&err))
1976 die("failed to set up refs db: %s", err.buf);
1977
1978 /*
1979 * Point the HEAD symref to the initial branch with if HEAD does
1980 * not yet exist.
1981 */
1982 path = git_path_buf(&buf, "HEAD");
1983 reinit = (!access(path, R_OK)
1984 || readlink(path, junk, sizeof(junk)-1) != -1);
1985 if (!reinit) {
1986 char *ref;
1987
1988 if (!initial_branch)
1989 initial_branch = git_default_branch_name(quiet);
1990
1991 ref = xstrfmt("refs/heads/%s", initial_branch);
1992 if (check_refname_format(ref, 0) < 0)
1993 die(_("invalid initial branch name: '%s'"),
1994 initial_branch);
1995
1996 if (create_symref("HEAD", ref, NULL) < 0)
1997 exit(1);
1998 free(ref);
1999 }
2000
2001 initialize_repository_version(fmt->hash_algo, 0);
2002
2003 /* Check filemode trustability */
2004 path = git_path_buf(&buf, "config");
2005 filemode = TEST_FILEMODE;
2006 if (TEST_FILEMODE && !lstat(path, &st1)) {
2007 struct stat st2;
2008 filemode = (!chmod(path, st1.st_mode ^ S_IXUSR) &&
2009 !lstat(path, &st2) &&
2010 st1.st_mode != st2.st_mode &&
2011 !chmod(path, st1.st_mode));
2012 if (filemode && !reinit && (st1.st_mode & S_IXUSR))
2013 filemode = 0;
2014 }
2015 git_config_set("core.filemode", filemode ? "true" : "false");
2016
2017 if (is_bare_repository())
2018 git_config_set("core.bare", "true");
2019 else {
2020 git_config_set("core.bare", "false");
2021 /* allow template config file to override the default */
2022 if (log_all_ref_updates == LOG_REFS_UNSET)
2023 git_config_set("core.logallrefupdates", "true");
2024 if (needs_work_tree_config(original_git_dir, work_tree))
2025 git_config_set("core.worktree", work_tree);
2026 }
2027
2028 if (!reinit) {
2029 /* Check if symlink is supported in the work tree */
2030 path = git_path_buf(&buf, "tXXXXXX");
2031 if (!close(xmkstemp(path)) &&
2032 !unlink(path) &&
2033 !symlink("testing", path) &&
2034 !lstat(path, &st1) &&
2035 S_ISLNK(st1.st_mode))
2036 unlink(path); /* good */
2037 else
2038 git_config_set("core.symlinks", "false");
2039
2040 /* Check if the filesystem is case-insensitive */
2041 path = git_path_buf(&buf, "CoNfIg");
2042 if (!access(path, F_OK))
2043 git_config_set("core.ignorecase", "true");
2044 probe_utf8_pathname_composition();
2045 }
2046
2047 strbuf_release(&buf);
2048 return reinit;
2049}
2050
2051static void create_object_directory(void)
2052{
2053 struct strbuf path = STRBUF_INIT;
2054 size_t baselen;
2055
2056 strbuf_addstr(&path, get_object_directory());
2057 baselen = path.len;
2058
2059 safe_create_dir(path.buf, 1);
2060
2061 strbuf_setlen(&path, baselen);
2062 strbuf_addstr(&path, "/pack");
2063 safe_create_dir(path.buf, 1);
2064
2065 strbuf_setlen(&path, baselen);
2066 strbuf_addstr(&path, "/info");
2067 safe_create_dir(path.buf, 1);
2068
2069 strbuf_release(&path);
2070}
2071
2072static void separate_git_dir(const char *git_dir, const char *git_link)
2073{
2074 struct stat st;
2075
2076 if (!stat(git_link, &st)) {
2077 const char *src;
2078
2079 if (S_ISREG(st.st_mode))
2080 src = read_gitfile(git_link);
2081 else if (S_ISDIR(st.st_mode))
2082 src = git_link;
2083 else
2084 die(_("unable to handle file type %d"), (int)st.st_mode);
2085
2086 if (rename(src, git_dir))
2087 die_errno(_("unable to move %s to %s"), src, git_dir);
2088 repair_worktrees(NULL, NULL);
2089 }
2090
2091 write_file(git_link, "gitdir: %s", git_dir);
2092}
2093
2094static void validate_hash_algorithm(struct repository_format *repo_fmt, int hash)
2095{
2096 const char *env = getenv(GIT_DEFAULT_HASH_ENVIRONMENT);
2097 /*
2098 * If we already have an initialized repo, don't allow the user to
2099 * specify a different algorithm, as that could cause corruption.
2100 * Otherwise, if the user has specified one on the command line, use it.
2101 */
2102 if (repo_fmt->version >= 0 && hash != GIT_HASH_UNKNOWN && hash != repo_fmt->hash_algo)
2103 die(_("attempt to reinitialize repository with different hash"));
2104 else if (hash != GIT_HASH_UNKNOWN)
2105 repo_fmt->hash_algo = hash;
2106 else if (env) {
2107 int env_algo = hash_algo_by_name(env);
2108 if (env_algo == GIT_HASH_UNKNOWN)
2109 die(_("unknown hash algorithm '%s'"), env);
2110 repo_fmt->hash_algo = env_algo;
2111 }
2112}
2113
2114int init_db(const char *git_dir, const char *real_git_dir,
2115 const char *template_dir, int hash, const char *initial_branch,
2116 int init_shared_repository, unsigned int flags)
2117{
2118 int reinit;
2119 int exist_ok = flags & INIT_DB_EXIST_OK;
2120 char *original_git_dir = real_pathdup(git_dir, 1);
2121 struct repository_format repo_fmt = REPOSITORY_FORMAT_INIT;
2122 int prev_bare_repository;
2123
2124 if (real_git_dir) {
2125 struct stat st;
2126
2127 if (!exist_ok && !stat(git_dir, &st))
2128 die(_("%s already exists"), git_dir);
2129
2130 if (!exist_ok && !stat(real_git_dir, &st))
2131 die(_("%s already exists"), real_git_dir);
2132
2133 set_git_dir(real_git_dir, 1);
2134 git_dir = get_git_dir();
2135 separate_git_dir(git_dir, original_git_dir);
2136 }
2137 else {
2138 set_git_dir(git_dir, 1);
2139 git_dir = get_git_dir();
2140 }
2141 startup_info->have_repository = 1;
2142
2143 /* Ensure `core.hidedotfiles` is processed */
2144 git_config(platform_core_config, NULL);
2145
2146 safe_create_dir(git_dir, 0);
2147
2148 prev_bare_repository = is_bare_repository();
2149
2150 /* Check to see if the repository version is right.
2151 * Note that a newly created repository does not have
2152 * config file, so this will not fail. What we are catching
2153 * is an attempt to reinitialize new repository with an old tool.
2154 */
2155 check_repository_format(&repo_fmt);
2156
2157 validate_hash_algorithm(&repo_fmt, hash);
2158
2159 reinit = create_default_files(template_dir, original_git_dir,
2160 initial_branch, &repo_fmt,
2161 prev_bare_repository,
2162 init_shared_repository,
2163 flags & INIT_DB_QUIET);
2164 if (reinit && initial_branch)
2165 warning(_("re-init: ignored --initial-branch=%s"),
2166 initial_branch);
2167
2168 create_object_directory();
2169
2170 if (get_shared_repository()) {
2171 char buf[10];
2172 /* We do not spell "group" and such, so that
2173 * the configuration can be read by older version
2174 * of git. Note, we use octal numbers for new share modes,
2175 * and compatibility values for PERM_GROUP and
2176 * PERM_EVERYBODY.
2177 */
2178 if (get_shared_repository() < 0)
2179 /* force to the mode value */
2180 xsnprintf(buf, sizeof(buf), "0%o", -get_shared_repository());
2181 else if (get_shared_repository() == PERM_GROUP)
2182 xsnprintf(buf, sizeof(buf), "%d", OLD_PERM_GROUP);
2183 else if (get_shared_repository() == PERM_EVERYBODY)
2184 xsnprintf(buf, sizeof(buf), "%d", OLD_PERM_EVERYBODY);
2185 else
2186 BUG("invalid value for shared_repository");
2187 git_config_set("core.sharedrepository", buf);
2188 git_config_set("receive.denyNonFastforwards", "true");
2189 }
2190
2191 if (!(flags & INIT_DB_QUIET)) {
2192 int len = strlen(git_dir);
2193
2194 if (reinit)
2195 printf(get_shared_repository()
2196 ? _("Reinitialized existing shared Git repository in %s%s\n")
2197 : _("Reinitialized existing Git repository in %s%s\n"),
2198 git_dir, len && git_dir[len-1] != '/' ? "/" : "");
2199 else
2200 printf(get_shared_repository()
2201 ? _("Initialized empty shared Git repository in %s%s\n")
2202 : _("Initialized empty Git repository in %s%s\n"),
2203 git_dir, len && git_dir[len-1] != '/' ? "/" : "");
2204 }
2205
2206 free(original_git_dir);
2207 return 0;
2208}