Raw
1 #define DISABLE_SIGN_COMPARE_WARNINGS
2
3 #include "git-compat-util.h"
4 #include "abspath.h"
5 #include "copy.h"
6 #include "environment.h"
7 #include "exec-cmd.h"
8 #include "gettext.h"
9 #include "hex.h"
10 #include "object-file.h"
11 #include "object-name.h"
12 #include "refs.h"
13 #include "repository.h"
14 #include "config.h"
15 #include "dir.h"
16 #include "setup.h"
17 #include "shallow.h"
18 #include "string-list.h"
19 #include "strvec.h"
20 #include "chdir-notify.h"
21 #include "path.h"
22 #include "quote.h"
23 #include "trace.h"
24 #include "trace2.h"
25 #include "worktree.h"
26
27 enum allowed_bare_repo {
28 ALLOWED_BARE_REPO_EXPLICIT = 0,
29 ALLOWED_BARE_REPO_ALL,
30 };
31
32 static struct startup_info the_startup_info;
33 struct startup_info *startup_info = &the_startup_info;
34 const char *tmp_original_cwd;
35
36 /*
37 * The input parameter must contain an absolute path, and it must already be
38 * normalized.
39 *
40 * Find the part of an absolute path that lies inside the work tree by
41 * dereferencing symlinks outside the work tree, for example:
42 * /dir1/repo/dir2/file (work tree is /dir1/repo) -> dir2/file
43 * /dir/file (work tree is /) -> dir/file
44 * /dir/symlink1/symlink2 (symlink1 points to work tree) -> symlink2
45 * /dir/repolink/file (repolink points to /dir/repo) -> file
46 * /dir/repo (exactly equal to work tree) -> (empty string)
47 */
48 static int abspath_part_inside_repo(struct repository *repo, char *path)
49 {
50 size_t len;
51 size_t wtlen;
52 char *path0;
53 int off;
54 const char *work_tree = precompose_string_if_needed(repo_get_work_tree(repo));
55 struct strbuf realpath = STRBUF_INIT;
56
57 if (!work_tree)
58 return -1;
59 wtlen = strlen(work_tree);
60 len = strlen(path);
61 off = offset_1st_component(path);
62
63 /* check if work tree is already the prefix */
64 if (wtlen <= len && !fspathncmp(path, work_tree, wtlen)) {
65 if (path[wtlen] == '/') {
66 memmove(path, path + wtlen + 1, len - wtlen);
67 return 0;
68 } else if (path[wtlen - 1] == '/' || path[wtlen] == '\0') {
69 /* work tree is the root, or the whole path */
70 memmove(path, path + wtlen, len - wtlen + 1);
71 return 0;
72 }
73 /* work tree might match beginning of a symlink to work tree */
74 off = wtlen;
75 }
76 path0 = path;
77 path += off;
78
79 /* check each '/'-terminated level */
80 while (*path) {
81 path++;
82 if (*path == '/') {
83 *path = '\0';
84 strbuf_realpath(&realpath, path0, 1);
85 if (fspathcmp(realpath.buf, work_tree) == 0) {
86 memmove(path0, path + 1, len - (path - path0));
87 strbuf_release(&realpath);
88 return 0;
89 }
90 *path = '/';
91 }
92 }
93
94 /* check whole path */
95 strbuf_realpath(&realpath, path0, 1);
96 if (fspathcmp(realpath.buf, work_tree) == 0) {
97 *path0 = '\0';
98 strbuf_release(&realpath);
99 return 0;
100 }
101
102 strbuf_release(&realpath);
103 return -1;
104 }
105
106 /*
107 * Normalize "path", prepending the "prefix" for relative paths. If
108 * remaining_prefix is not NULL, return the actual prefix still
109 * remains in the path. For example, prefix = sub1/sub2/ and path is
110 *
111 * foo -> sub1/sub2/foo (full prefix)
112 * ../foo -> sub1/foo (remaining prefix is sub1/)
113 * ../../bar -> bar (no remaining prefix)
114 * ../../sub1/sub2/foo -> sub1/sub2/foo (but no remaining prefix)
115 * `pwd`/../bar -> sub1/bar (no remaining prefix)
116 */
117 char *prefix_path_gently(struct repository *repo,
118 const char *prefix, int len,
119 int *remaining_prefix, const char *path)
120 {
121 const char *orig = path;
122 char *sanitized;
123 if (is_absolute_path(orig)) {
124 sanitized = xmallocz(strlen(path));
125 if (remaining_prefix)
126 *remaining_prefix = 0;
127 if (normalize_path_copy_len(sanitized, path, remaining_prefix)) {
128 free(sanitized);
129 return NULL;
130 }
131 if (abspath_part_inside_repo(repo, sanitized)) {
132 free(sanitized);
133 return NULL;
134 }
135 } else {
136 sanitized = xstrfmt("%.*s%s", len, len ? prefix : "", path);
137 if (remaining_prefix)
138 *remaining_prefix = len;
139 if (normalize_path_copy_len(sanitized, sanitized, remaining_prefix)) {
140 free(sanitized);
141 return NULL;
142 }
143 }
144 return sanitized;
145 }
146
147 char *prefix_path(struct repository *repo, const char *prefix, int len, const char *path)
148 {
149 char *r = prefix_path_gently(repo, prefix, len, NULL, path);
150 if (!r) {
151 const char *hint_path = repo_get_work_tree(repo);
152 if (!hint_path)
153 hint_path = repo_get_git_dir(repo);
154 die(_("'%s' is outside repository at '%s'"), path,
155 absolute_path(hint_path));
156 }
157 return r;
158 }
159
160 int path_inside_repo(struct repository *repo, const char *prefix, const char *path)
161 {
162 int len = prefix ? strlen(prefix) : 0;
163 char *r = prefix_path_gently(repo, prefix, len, NULL, path);
164 if (r) {
165 free(r);
166 return 1;
167 }
168 return 0;
169 }
170
171 int check_filename(const char *prefix, const char *arg)
172 {
173 char *to_free = NULL;
174 struct stat st;
175
176 if (skip_prefix(arg, ":/", &arg)) {
177 if (!*arg) /* ":/" is root dir, always exists */
178 return 1;
179 prefix = NULL;
180 } else if (skip_prefix(arg, ":!", &arg) ||
181 skip_prefix(arg, ":^", &arg)) {
182 if (!*arg) /* excluding everything is silly, but allowed */
183 return 1;
184 }
185
186 if (prefix)
187 arg = to_free = prefix_filename(prefix, arg);
188
189 if (!lstat(arg, &st)) {
190 free(to_free);
191 return 1; /* file exists */
192 }
193 if (is_missing_file_error(errno)) {
194 free(to_free);
195 return 0; /* file does not exist */
196 }
197 die_errno(_("failed to stat '%s'"), arg);
198 }
199
200 static void NORETURN die_verify_filename(struct repository *r,
201 const char *prefix,
202 const char *arg,
203 int diagnose_misspelt_rev)
204 {
205 if (!diagnose_misspelt_rev)
206 die(_("%s: no such path in the working tree.\n"
207 "Use 'git <command> -- <path>...' to specify paths that do not exist locally."),
208 arg);
209 /*
210 * Saying "'(icase)foo' does not exist in the index" when the
211 * user gave us ":(icase)foo" is just stupid. A magic pathspec
212 * begins with a colon and is followed by a non-alnum; do not
213 * let maybe_die_on_misspelt_object_name() even trigger.
214 */
215 if (!(arg[0] == ':' && !isalnum(arg[1])))
216 maybe_die_on_misspelt_object_name(r, arg, prefix);
217
218 /* ... or fall back the most general message. */
219 die(_("ambiguous argument '%s': unknown revision or path not in the working tree.\n"
220 "Use '--' to separate paths from revisions, like this:\n"
221 "'git <command> [<revision>...] -- [<file>...]'"), arg);
222
223 }
224
225 /*
226 * Check for arguments that don't resolve as actual files,
227 * but which look sufficiently like pathspecs that we'll consider
228 * them such for the purposes of rev/pathspec DWIM parsing.
229 */
230 static int looks_like_pathspec(const char *arg)
231 {
232 const char *p;
233 int escaped = 0;
234
235 /*
236 * Wildcard characters imply the user is looking to match pathspecs
237 * that aren't in the filesystem. Note that this doesn't include
238 * backslash even though it's a glob special; by itself it doesn't
239 * cause any increase in the match. Likewise ignore backslash-escaped
240 * wildcard characters.
241 */
242 for (p = arg; *p; p++) {
243 if (escaped) {
244 escaped = 0;
245 } else if (is_glob_special(*p)) {
246 if (*p == '\\')
247 escaped = 1;
248 else
249 return 1;
250 }
251 }
252
253 /* long-form pathspec magic */
254 if (starts_with(arg, ":("))
255 return 1;
256
257 return 0;
258 }
259
260 /*
261 * Verify a filename that we got as an argument for a pathspec
262 * entry. Note that a filename that begins with "-" never verifies
263 * as true, because even if such a filename were to exist, we want
264 * it to be preceded by the "--" marker (or we want the user to
265 * use a format like "./-filename")
266 *
267 * The "diagnose_misspelt_rev" is used to provide a user-friendly
268 * diagnosis when dying upon finding that "name" is not a pathname.
269 * If set to 1, the diagnosis will try to diagnose "name" as an
270 * invalid object name (e.g. HEAD:foo). If set to 0, the diagnosis
271 * will only complain about an inexisting file.
272 *
273 * This function is typically called to check that a "file or rev"
274 * argument is unambiguous. In this case, the caller will want
275 * diagnose_misspelt_rev == 1 when verifying the first non-rev
276 * argument (which could have been a revision), and
277 * diagnose_misspelt_rev == 0 for the next ones (because we already
278 * saw a filename, there's not ambiguity anymore).
279 */
280 void verify_filename(struct repository *repo,
281 const char *prefix,
282 const char *arg,
283 int diagnose_misspelt_rev)
284 {
285 if (*arg == '-')
286 die(_("option '%s' must come before non-option arguments"), arg);
287 if (looks_like_pathspec(arg) || check_filename(prefix, arg))
288 return;
289 die_verify_filename(repo, prefix, arg, diagnose_misspelt_rev);
290 }
291
292 /*
293 * Opposite of the above: the command line did not have -- marker
294 * and we parsed the arg as a refname. It should not be interpretable
295 * as a filename.
296 */
297 void verify_non_filename(struct repository *repo, const char *prefix, const char *arg)
298 {
299 if (!is_inside_work_tree(repo) || is_inside_git_dir(repo))
300 return;
301 if (*arg == '-')
302 return; /* flag */
303 if (!check_filename(prefix, arg))
304 return;
305 die(_("ambiguous argument '%s': both revision and filename\n"
306 "Use '--' to separate paths from revisions, like this:\n"
307 "'git <command> [<revision>...] -- [<file>...]'"), arg);
308 }
309
310 int get_common_dir(struct strbuf *sb, const char *gitdir)
311 {
312 const char *git_env_common_dir = getenv(GIT_COMMON_DIR_ENVIRONMENT);
313 if (git_env_common_dir) {
314 strbuf_addstr(sb, git_env_common_dir);
315 return 1;
316 } else {
317 return get_common_dir_noenv(sb, gitdir);
318 }
319 }
320
321 int get_common_dir_noenv(struct strbuf *sb, const char *gitdir)
322 {
323 struct strbuf data = STRBUF_INIT;
324 struct strbuf path = STRBUF_INIT;
325 int ret = 0;
326
327 strbuf_addf(&path, "%s/commondir", gitdir);
328 if (file_exists(path.buf)) {
329 if (strbuf_read_file(&data, path.buf, 0) <= 0)
330 die_errno(_("failed to read %s"), path.buf);
331 while (data.len && (data.buf[data.len - 1] == '\n' ||
332 data.buf[data.len - 1] == '\r'))
333 data.len--;
334 data.buf[data.len] = '\0';
335 strbuf_reset(&path);
336 if (!is_absolute_path(data.buf))
337 strbuf_addf(&path, "%s/", gitdir);
338 strbuf_addbuf(&path, &data);
339 strbuf_add_real_path(sb, path.buf);
340 ret = 1;
341 } else {
342 strbuf_addstr(sb, gitdir);
343 }
344
345 strbuf_release(&data);
346 strbuf_release(&path);
347 return ret;
348 }
349
350 static int validate_headref(const char *path)
351 {
352 struct stat st;
353 char buffer[256];
354 const char *refname;
355 struct object_id oid;
356 int fd;
357 ssize_t len;
358
359 if (lstat(path, &st) < 0)
360 return -1;
361
362 /* Make sure it is a "refs/.." symlink */
363 if (S_ISLNK(st.st_mode)) {
364 len = readlink(path, buffer, sizeof(buffer)-1);
365 if (len >= 5 && !memcmp("refs/", buffer, 5))
366 return 0;
367 return -1;
368 }
369
370 /*
371 * Anything else, just open it and try to see if it is a symbolic ref.
372 */
373 fd = open(path, O_RDONLY);
374 if (fd < 0)
375 return -1;
376 len = read_in_full(fd, buffer, sizeof(buffer)-1);
377 close(fd);
378
379 if (len < 0)
380 return -1;
381 buffer[len] = '\0';
382
383 /*
384 * Is it a symbolic ref?
385 */
386 if (skip_prefix(buffer, "ref:", &refname)) {
387 while (isspace(*refname))
388 refname++;
389 if (starts_with(refname, "refs/"))
390 return 0;
391 }
392
393 /*
394 * Is this a detached HEAD?
395 */
396 if (get_oid_hex_any(buffer, &oid) != GIT_HASH_UNKNOWN)
397 return 0;
398
399 return -1;
400 }
401
402 /*
403 * Test if it looks like we're at a git directory.
404 * We want to see:
405 *
406 * - either an objects/ directory _or_ the proper
407 * GIT_OBJECT_DIRECTORY environment variable
408 * - a refs/ directory
409 * - either a HEAD symlink or a HEAD file that is formatted as
410 * a proper "ref:", or a regular file HEAD that has a properly
411 * formatted sha1 object name.
412 */
413 int is_git_directory(const char *suspect)
414 {
415 struct strbuf path = STRBUF_INIT;
416 int ret = 0;
417 size_t len;
418
419 /* Check worktree-related signatures */
420 strbuf_addstr(&path, suspect);
421 strbuf_complete(&path, '/');
422 strbuf_addstr(&path, "HEAD");
423 if (validate_headref(path.buf))
424 goto done;
425
426 strbuf_reset(&path);
427 get_common_dir(&path, suspect);
428 len = path.len;
429
430 /* Check non-worktree-related signatures */
431 if (getenv(DB_ENVIRONMENT)) {
432 if (access(getenv(DB_ENVIRONMENT), X_OK))
433 goto done;
434 }
435 else {
436 strbuf_setlen(&path, len);
437 strbuf_addstr(&path, "/objects");
438 if (access(path.buf, X_OK))
439 goto done;
440 }
441
442 strbuf_setlen(&path, len);
443 strbuf_addstr(&path, "/refs");
444 if (access(path.buf, X_OK))
445 goto done;
446
447 ret = 1;
448 done:
449 strbuf_release(&path);
450 return ret;
451 }
452
453 int is_nonbare_repository_dir(struct strbuf *path)
454 {
455 int ret = 0;
456 int gitfile_error;
457 size_t orig_path_len = path->len;
458 assert(orig_path_len != 0);
459 strbuf_complete(path, '/');
460 strbuf_addstr(path, ".git");
461 if (read_gitfile_gently(path->buf, &gitfile_error) || is_git_directory(path->buf))
462 ret = 1;
463 if (gitfile_error == READ_GITFILE_ERR_OPEN_FAILED ||
464 gitfile_error == READ_GITFILE_ERR_READ_FAILED)
465 ret = 1;
466 strbuf_setlen(path, orig_path_len);
467 return ret;
468 }
469
470 int is_inside_git_dir(struct repository *repo)
471 {
472 struct strbuf buf = STRBUF_INIT;
473 int ret = is_inside_dir(strbuf_realpath(&buf, repo_get_git_dir(repo), 1));
474 strbuf_release(&buf);
475 return ret;
476 }
477
478 int is_inside_work_tree(struct repository *repo)
479 {
480 struct strbuf buf = STRBUF_INIT;
481 const char *worktree;
482 int ret;
483
484 worktree = repo_get_work_tree(repo);
485 if (!worktree)
486 return 0;
487
488 ret = is_inside_dir(strbuf_realpath(&buf, worktree, 1));
489
490 strbuf_release(&buf);
491 return ret;
492 }
493
494 void setup_work_tree(struct repository *repo)
495 {
496 const char *work_tree;
497
498 if (repo->worktree_config_is_bogus)
499 die(_("unable to set up work tree using invalid config"));
500
501 work_tree = repo_get_work_tree(repo);
502 if (!work_tree || chdir_notify(work_tree))
503 die(_("this operation must be run in a work tree"));
504
505 /*
506 * Make sure subsequent git processes find correct worktree
507 * if $GIT_WORK_TREE is set relative
508 */
509 if (getenv(GIT_WORK_TREE_ENVIRONMENT))
510 setenv(GIT_WORK_TREE_ENVIRONMENT, ".", 1);
511 }
512
513 static void setup_original_cwd(struct repository *repo)
514 {
515 struct strbuf tmp = STRBUF_INIT;
516 const char *worktree = NULL;
517 int offset = -1;
518
519 if (!tmp_original_cwd)
520 return;
521
522 /*
523 * startup_info->original_cwd points to the current working
524 * directory we inherited from our parent process, which is a
525 * directory we want to avoid removing.
526 *
527 * For convenience, we would like to have the path relative to the
528 * worktree instead of an absolute path.
529 *
530 * Yes, startup_info->original_cwd is usually the same as 'prefix',
531 * but differs in two ways:
532 * - prefix has a trailing '/'
533 * - if the user passes '-C' to git, that modifies the prefix but
534 * not startup_info->original_cwd.
535 */
536
537 /* Normalize the directory */
538 if (!strbuf_realpath(&tmp, tmp_original_cwd, 0)) {
539 trace2_data_string("setup", repo,
540 "realpath-path", tmp_original_cwd);
541 trace2_data_string("setup", repo,
542 "realpath-failure", strerror(errno));
543 free((char*)tmp_original_cwd);
544 tmp_original_cwd = NULL;
545 return;
546 }
547
548 free((char*)tmp_original_cwd);
549 tmp_original_cwd = NULL;
550 startup_info->original_cwd = strbuf_detach(&tmp, NULL);
551
552 /*
553 * Get our worktree; we only protect the current working directory
554 * if it's in the worktree.
555 */
556 worktree = repo_get_work_tree(repo);
557 if (!worktree)
558 goto no_prevention_needed;
559
560 offset = dir_inside_of(startup_info->original_cwd, worktree);
561 if (offset >= 0) {
562 /*
563 * If startup_info->original_cwd == worktree, that is already
564 * protected and we don't need original_cwd as a secondary
565 * protection measure.
566 */
567 if (!*(startup_info->original_cwd + offset))
568 goto no_prevention_needed;
569
570 /*
571 * original_cwd was inside worktree; precompose it just as
572 * we do prefix so that built up paths will match
573 */
574 startup_info->original_cwd = \
575 precompose_string_if_needed(startup_info->original_cwd
576 + offset);
577 return;
578 }
579
580 no_prevention_needed:
581 free((char*)startup_info->original_cwd);
582 startup_info->original_cwd = NULL;
583 }
584
585 static int read_worktree_config(const char *var, const char *value,
586 const struct config_context *ctx UNUSED,
587 void *vdata)
588 {
589 struct repository_format *data = vdata;
590
591 if (strcmp(var, "core.bare") == 0) {
592 data->is_bare = git_config_bool(var, value);
593 } else if (strcmp(var, "core.worktree") == 0) {
594 if (!value)
595 return config_error_nonbool(var);
596 free(data->work_tree);
597 data->work_tree = xstrdup(value);
598 }
599 return 0;
600 }
601
602 enum extension_result {
603 EXTENSION_ERROR = -1, /* compatible with error(), etc */
604 EXTENSION_UNKNOWN = 0,
605 EXTENSION_OK = 1
606 };
607
608 /*
609 * Do not add new extensions to this function. It handles extensions which are
610 * respected even in v0-format repositories for historical compatibility.
611 */
612 static enum extension_result handle_extension_v0(const char *var,
613 const char *value,
614 const char *ext,
615 struct repository_format *data)
616 {
617 if (!strcmp(ext, "noop")) {
618 return EXTENSION_OK;
619 } else if (!strcmp(ext, "preciousobjects")) {
620 data->precious_objects = git_config_bool(var, value);
621 return EXTENSION_OK;
622 } else if (!strcmp(ext, "partialclone")) {
623 if (!value)
624 return config_error_nonbool(var);
625 data->partial_clone = xstrdup(value);
626 return EXTENSION_OK;
627 } else if (!strcmp(ext, "worktreeconfig")) {
628 data->worktree_config = git_config_bool(var, value);
629 return EXTENSION_OK;
630 }
631
632 return EXTENSION_UNKNOWN;
633 }
634
635 static void parse_reference_uri(const char *value, char **format,
636 char **payload)
637 {
638 const char *schema_end;
639
640 schema_end = strstr(value, "://");
641 if (!schema_end) {
642 *format = xstrdup(value);
643 *payload = NULL;
644 } else {
645 *format = xstrndup(value, schema_end - value);
646 *payload = xstrdup_or_null(schema_end + 3);
647 }
648 }
649
650 /*
651 * Record any new extensions in this function.
652 */
653 static enum extension_result handle_extension(const char *var,
654 const char *value,
655 const char *ext,
656 struct repository_format *data)
657 {
658 if (!strcmp(ext, "noop-v1")) {
659 return EXTENSION_OK;
660 } else if (!strcmp(ext, "objectformat")) {
661 int format;
662
663 if (!value)
664 return config_error_nonbool(var);
665 format = hash_algo_by_name(value);
666 if (format == GIT_HASH_UNKNOWN)
667 return error(_("invalid value for '%s': '%s'"),
668 "extensions.objectformat", value);
669 data->hash_algo = format;
670 return EXTENSION_OK;
671 } else if (!strcmp(ext, "compatobjectformat")) {
672 struct string_list_item *item;
673 int format;
674
675 if (!value)
676 return config_error_nonbool(var);
677 format = hash_algo_by_name(value);
678 if (format == GIT_HASH_UNKNOWN)
679 return error(_("invalid value for '%s': '%s'"),
680 "extensions.compatobjectformat", value);
681 /* For now only support compatObjectFormat being specified once. */
682 for_each_string_list_item(item, &data->v1_only_extensions) {
683 if (!strcmp(item->string, "compatobjectformat"))
684 return error(_("'%s' already specified as '%s'"),
685 "extensions.compatobjectformat",
686 hash_algos[data->compat_hash_algo].name);
687 }
688 data->compat_hash_algo = format;
689 return EXTENSION_OK;
690 } else if (!strcmp(ext, "refstorage")) {
691 unsigned int format;
692 char *format_str;
693
694 if (!value)
695 return config_error_nonbool(var);
696
697 parse_reference_uri(value, &format_str,
698 &data->ref_storage_payload);
699
700 format = ref_storage_format_by_name(format_str);
701 free(format_str);
702
703 if (format == REF_STORAGE_FORMAT_UNKNOWN)
704 return error(_("invalid value for '%s': '%s'"),
705 "extensions.refstorage", value);
706 data->ref_storage_format = format;
707 return EXTENSION_OK;
708 } else if (!strcmp(ext, "relativeworktrees")) {
709 data->relative_worktrees = git_config_bool(var, value);
710 return EXTENSION_OK;
711 } else if (!strcmp(ext, "submodulepathconfig")) {
712 data->submodule_path_cfg = git_config_bool(var, value);
713 return EXTENSION_OK;
714 }
715 return EXTENSION_UNKNOWN;
716 }
717
718 static int check_repo_format(const char *var, const char *value,
719 const struct config_context *ctx, void *vdata)
720 {
721 struct repository_format *data = vdata;
722 const char *ext;
723
724 if (strcmp(var, "core.repositoryformatversion") == 0)
725 data->version = git_config_int(var, value, ctx->kvi);
726 else if (skip_prefix(var, "extensions.", &ext)) {
727 switch (handle_extension_v0(var, value, ext, data)) {
728 case EXTENSION_ERROR:
729 return -1;
730 case EXTENSION_OK:
731 return 0;
732 case EXTENSION_UNKNOWN:
733 break;
734 }
735
736 switch (handle_extension(var, value, ext, data)) {
737 case EXTENSION_ERROR:
738 return -1;
739 case EXTENSION_OK:
740 string_list_append(&data->v1_only_extensions, ext);
741 return 0;
742 case EXTENSION_UNKNOWN:
743 string_list_append(&data->unknown_extensions, ext);
744 return 0;
745 }
746 }
747
748 return read_worktree_config(var, value, ctx, vdata);
749 }
750
751 static int read_and_verify_repository_format(struct repository_format *format,
752 const char *gitdir,
753 int *nongit_ok)
754 {
755 struct strbuf sb = STRBUF_INIT;
756 struct strbuf err = STRBUF_INIT;
757 int has_common;
758
759 has_common = get_common_dir(&sb, gitdir);
760 strbuf_addstr(&sb, "/config");
761 read_repository_format(format, sb.buf);
762 strbuf_release(&sb);
763
764 /*
765 * For historical use of check_and_apply_repository_format() in git-init,
766 * we treat a missing config as a silent "ok", even when nongit_ok
767 * is unset.
768 */
769 if (format->version < 0)
770 return 0;
771
772 if (verify_repository_format(format, &err) < 0) {
773 if (nongit_ok) {
774 warning("%s", err.buf);
775 strbuf_release(&err);
776 *nongit_ok = -1;
777 return -1;
778 }
779 die("%s", err.buf);
780 }
781
782 string_list_clear(&format->unknown_extensions, 0);
783 string_list_clear(&format->v1_only_extensions, 0);
784
785 if (format->worktree_config) {
786 /*
787 * pick up core.bare and core.worktree from per-worktree
788 * config if present
789 */
790 strbuf_addf(&sb, "%s/config.worktree", gitdir);
791 git_config_from_file(read_worktree_config, sb.buf, format);
792 strbuf_release(&sb);
793 has_common = 0;
794 }
795
796 if (startup_info->force_bare_repository) {
797 format->is_bare = 1;
798 FREE_AND_NULL(format->work_tree);
799 } else if (has_common) {
800 /*
801 * When sharing a common dir with another repository (e.g. a
802 * linked worktree), do not let this repository's config
803 * dictate bareness; it is inherited from the main worktree.
804 */
805 format->is_bare = -1;
806
807 /*
808 * Furthermore, "core.worktree" is supposed to be ignored when
809 * we have a commondir configured, unless it comes from the
810 * per-worktree configuration.
811 */
812 FREE_AND_NULL(format->work_tree);
813 }
814
815 return 0;
816 }
817
818 int upgrade_repository_format(struct repository *repo, int target_version)
819 {
820 struct strbuf sb = STRBUF_INIT;
821 struct strbuf err = STRBUF_INIT;
822 struct strbuf repo_version = STRBUF_INIT;
823 struct repository_format repo_fmt = REPOSITORY_FORMAT_INIT;
824 int ret;
825
826 repo_common_path_append(repo, &sb, "config");
827 read_repository_format(&repo_fmt, sb.buf);
828 strbuf_release(&sb);
829
830 if (repo_fmt.version >= target_version) {
831 ret = 0;
832 goto out;
833 }
834
835 if (verify_repository_format(&repo_fmt, &err) < 0) {
836 ret = error("cannot upgrade repository format from %d to %d: %s",
837 repo_fmt.version, target_version, err.buf);
838 goto out;
839 }
840 if (!repo_fmt.version && repo_fmt.unknown_extensions.nr) {
841 ret = error("cannot upgrade repository format: "
842 "unknown extension %s",
843 repo_fmt.unknown_extensions.items[0].string);
844 goto out;
845 }
846
847 strbuf_addf(&repo_version, "%d", target_version);
848 repo_config_set(repo, "core.repositoryformatversion", repo_version.buf);
849
850 ret = 1;
851
852 out:
853 clear_repository_format(&repo_fmt);
854 strbuf_release(&repo_version);
855 strbuf_release(&err);
856 return ret;
857 }
858
859 static void init_repository_format(struct repository_format *format)
860 {
861 const struct repository_format fresh = REPOSITORY_FORMAT_INIT;
862
863 memcpy(format, &fresh, sizeof(fresh));
864 }
865
866 int read_repository_format(struct repository_format *format, const char *path)
867 {
868 clear_repository_format(format);
869 format->hash_algo = GIT_HASH_SHA1_LEGACY;
870 git_config_from_file(check_repo_format, path, format);
871 if (format->version == -1) {
872 clear_repository_format(format);
873 format->hash_algo = GIT_HASH_SHA1_LEGACY;
874 }
875 return format->version;
876 }
877
878 void clear_repository_format(struct repository_format *format)
879 {
880 string_list_clear(&format->unknown_extensions, 0);
881 string_list_clear(&format->v1_only_extensions, 0);
882 free(format->work_tree);
883 free(format->partial_clone);
884 free(format->ref_storage_payload);
885 init_repository_format(format);
886 }
887
888 int verify_repository_format(const struct repository_format *format,
889 struct strbuf *err)
890 {
891 if (GIT_REPO_VERSION_READ < format->version) {
892 strbuf_addf(err, _("Expected git repo version <= %d, found %d"),
893 GIT_REPO_VERSION_READ, format->version);
894 return -1;
895 }
896
897 if (format->version >= 1 && format->unknown_extensions.nr) {
898 int i;
899
900 strbuf_addstr(err, Q_("unknown repository extension found:",
901 "unknown repository extensions found:",
902 format->unknown_extensions.nr));
903
904 for (i = 0; i < format->unknown_extensions.nr; i++)
905 strbuf_addf(err, "\n\t%s",
906 format->unknown_extensions.items[i].string);
907 return -1;
908 }
909
910 if (format->version == 0 && format->v1_only_extensions.nr) {
911 int i;
912
913 strbuf_addstr(err,
914 Q_("repo version is 0, but v1-only extension found:",
915 "repo version is 0, but v1-only extensions found:",
916 format->v1_only_extensions.nr));
917
918 for (i = 0; i < format->v1_only_extensions.nr; i++)
919 strbuf_addf(err, "\n\t%s",
920 format->v1_only_extensions.items[i].string);
921 return -1;
922 }
923
924 return 0;
925 }
926
927 void read_gitfile_error_die(int error_code, const char *path)
928 {
929 switch (error_code) {
930 case READ_GITFILE_ERR_NOT_A_FILE:
931 case READ_GITFILE_ERR_STAT_FAILED:
932 case READ_GITFILE_ERR_MISSING:
933 case READ_GITFILE_ERR_IS_A_DIR:
934 /* non-fatal; follow return path */
935 break;
936 case READ_GITFILE_ERR_OPEN_FAILED:
937 die_errno(_("error opening '%s'"), path);
938 case READ_GITFILE_ERR_TOO_LARGE:
939 die(_("too large to be a .git file: '%s'"), path);
940 case READ_GITFILE_ERR_READ_FAILED:
941 die(_("error reading %s"), path);
942 case READ_GITFILE_ERR_INVALID_FORMAT:
943 die(_("invalid gitfile format: %s"), path);
944 case READ_GITFILE_ERR_NO_PATH:
945 die(_("no path in gitfile: %s"), path);
946 case READ_GITFILE_ERR_NOT_A_REPO:
947 die(_("gitfile does not point to a valid repository: %s"),
948 path);
949 default:
950 BUG("unknown error code");
951 }
952 }
953
954 /*
955 * Try to read the location of the git directory from the .git file,
956 * return path to git directory if found. The return value comes from
957 * a shared buffer.
958 *
959 * On failure, if return_error_code is not NULL, return_error_code
960 * will be set to an error code and NULL will be returned. If
961 * return_error_code is NULL the function will die instead (for most
962 * cases).
963 */
964 const char *read_gitfile_gently(const char *path, int *return_error_code)
965 {
966 const int max_file_size = 1 << 20; /* 1MB */
967 int error_code = 0;
968 char *buf = NULL;
969 char *dir = NULL;
970 const char *slash;
971 struct stat st;
972 int fd;
973 ssize_t len;
974 static struct strbuf realpath = STRBUF_INIT;
975
976 if (stat(path, &st)) {
977 if (errno == ENOENT || errno == ENOTDIR)
978 error_code = READ_GITFILE_ERR_MISSING;
979 else
980 error_code = READ_GITFILE_ERR_STAT_FAILED;
981 goto cleanup_return;
982 }
983 if (S_ISDIR(st.st_mode)) {
984 error_code = READ_GITFILE_ERR_IS_A_DIR;
985 goto cleanup_return;
986 }
987 if (!S_ISREG(st.st_mode)) {
988 error_code = READ_GITFILE_ERR_NOT_A_FILE;
989 goto cleanup_return;
990 }
991 if (st.st_size > max_file_size) {
992 error_code = READ_GITFILE_ERR_TOO_LARGE;
993 goto cleanup_return;
994 }
995 fd = open(path, O_RDONLY);
996 if (fd < 0) {
997 error_code = READ_GITFILE_ERR_OPEN_FAILED;
998 goto cleanup_return;
999 }
1000 buf = xmallocz(st.st_size);
1001 len = read_in_full(fd, buf, st.st_size);
1002 close(fd);
1003 if (len != st.st_size) {
1004 error_code = READ_GITFILE_ERR_READ_FAILED;
1005 goto cleanup_return;
1006 }
1007 if (!starts_with(buf, "gitdir: ")) {
1008 error_code = READ_GITFILE_ERR_INVALID_FORMAT;
1009 goto cleanup_return;
1010 }
1011 while (buf[len - 1] == '\n' || buf[len - 1] == '\r')
1012 len--;
1013 if (len < 9) {
1014 error_code = READ_GITFILE_ERR_NO_PATH;
1015 goto cleanup_return;
1016 }
1017 buf[len] = '\0';
1018 dir = buf + 8;
1019
1020 if (!is_absolute_path(dir) && (slash = strrchr(path, '/'))) {
1021 size_t pathlen = slash+1 - path;
1022 dir = xstrfmt("%.*s%.*s", (int)pathlen, path,
1023 (int)(len - 8), buf + 8);
1024 free(buf);
1025 buf = dir;
1026 }
1027 if (!is_git_directory(dir)) {
1028 error_code = READ_GITFILE_ERR_NOT_A_REPO;
1029 goto cleanup_return;
1030 }
1031
1032 strbuf_realpath(&realpath, dir, 1);
1033 path = realpath.buf;
1034
1035 cleanup_return:
1036 if (return_error_code)
1037 *return_error_code = error_code;
1038 else if (error_code)
1039 read_gitfile_error_die(error_code, path);
1040
1041 free(buf);
1042 return error_code ? NULL : path;
1043 }
1044
1045 static void apply_gitdir_and_environment(struct repository *repo, const char *path)
1046 {
1047 struct strvec to_free = STRVEC_INIT;
1048 struct set_gitdir_args args = {
1049 .commondir = getenv_safe(&to_free, GIT_COMMON_DIR_ENVIRONMENT),
1050 .graft_file = getenv_safe(&to_free, GRAFT_ENVIRONMENT),
1051 .index_file = getenv_safe(&to_free, INDEX_ENVIRONMENT),
1052 .disable_ref_updates = !!getenv(GIT_QUARANTINE_ENVIRONMENT),
1053 };
1054
1055 repo_set_gitdir(repo, path, &args);
1056
1057 strvec_clear(&to_free);
1058 }
1059
1060 static void update_relative_gitdir(const char *old_cwd,
1061 const char *new_cwd,
1062 void *data)
1063 {
1064 struct repository *repo = data;
1065 char *path = reparent_relative_path(old_cwd, new_cwd,
1066 repo_get_git_dir(repo));
1067 trace_printf_key(&trace_setup_key,
1068 "setup: move $GIT_DIR to '%s'",
1069 path);
1070 apply_gitdir_and_environment(repo, path);
1071 xsetenv(GIT_DIR_ENVIRONMENT, path, 1);
1072 free(path);
1073 }
1074
1075 static void apply_and_export_relative_gitdir(struct repository *repo, const char *path, int make_realpath)
1076 {
1077 struct strbuf realpath = STRBUF_INIT;
1078
1079 if (make_realpath) {
1080 strbuf_realpath(&realpath, path, 1);
1081 path = realpath.buf;
1082 }
1083
1084 apply_gitdir_and_environment(repo, path);
1085 xsetenv(GIT_DIR_ENVIRONMENT, path, 1);
1086
1087 if (!is_absolute_path(path))
1088 chdir_notify_register(update_relative_gitdir, repo);
1089
1090 strbuf_release(&realpath);
1091 }
1092
1093 struct repo_discovery {
1094 struct repository_format format;
1095 char *gitdir;
1096 char *worktree;
1097 char *prefix;
1098 };
1099
1100 #define REPO_DISCOVERY_INIT { \
1101 .format = REPOSITORY_FORMAT_INIT, \
1102 }
1103
1104 static void repo_discovery_release(struct repo_discovery *r)
1105 {
1106 clear_repository_format(&r->format);
1107 free(r->gitdir);
1108 free(r->worktree);
1109 free(r->prefix);
1110 }
1111
1112 static void repo_discovery_set_gitdir(struct repo_discovery *r,
1113 const char *gitdir,
1114 int make_realpath)
1115 {
1116 free(r->gitdir);
1117 if (make_realpath) {
1118 struct strbuf realpath = STRBUF_INIT;
1119 strbuf_realpath(&realpath, gitdir, 1);
1120 r->gitdir = strbuf_detach(&realpath, NULL);
1121 } else {
1122 r->gitdir = xstrdup(gitdir);
1123 }
1124 }
1125
1126 static void repo_discovery_set_worktree(struct repo_discovery *r,
1127 const char *worktree)
1128 {
1129 free(r->worktree);
1130 r->worktree = real_pathdup(worktree, 1);
1131 }
1132
1133 static void repo_discover_explicit_gitdir(struct repo_discovery *discovery,
1134 const char *gitdirenv,
1135 struct strbuf *cwd,
1136 int *nongit_ok)
1137 {
1138 const char *work_tree_env = getenv(GIT_WORK_TREE_ENVIRONMENT);
1139 char *gitfile;
1140 int offset;
1141
1142 if (PATH_MAX - 40 < strlen(gitdirenv))
1143 die(_("'$%s' too big"), GIT_DIR_ENVIRONMENT);
1144
1145 gitfile = (char*)read_gitfile(gitdirenv);
1146 if (gitfile) {
1147 gitfile = xstrdup(gitfile);
1148 gitdirenv = gitfile;
1149 }
1150
1151 if (!is_git_directory(gitdirenv)) {
1152 if (nongit_ok) {
1153 *nongit_ok = 1;
1154 goto out;
1155 }
1156 die(_("not a git repository: '%s'"), gitdirenv);
1157 }
1158
1159 if (read_and_verify_repository_format(&discovery->format, gitdirenv, nongit_ok))
1160 goto out;
1161
1162 /* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */
1163 if (work_tree_env) {
1164 /*
1165 * The environment variable overrides "core.worktree". This
1166 * also has the consequence that we don't want to flag cases as
1167 * bogus where we have both "core.worktree" and "core.bare", so
1168 * we have to explicitly unset the configuration.
1169 */
1170 FREE_AND_NULL(discovery->format.work_tree);
1171 repo_discovery_set_worktree(discovery, work_tree_env);
1172 } else if (discovery->format.is_bare > 0) {
1173 /* #18, #26 */
1174 repo_discovery_set_gitdir(discovery, gitdirenv, 0);
1175 goto out;
1176 } else if (discovery->format.work_tree) { /* #6, #14 */
1177 if (is_absolute_path(discovery->format.work_tree)) {
1178 repo_discovery_set_worktree(discovery, discovery->format.work_tree);
1179 } else {
1180 char *core_worktree;
1181 if (chdir(gitdirenv))
1182 die_errno(_("cannot chdir to '%s'"), gitdirenv);
1183 if (chdir(discovery->format.work_tree))
1184 die_errno(_("cannot chdir to '%s'"), discovery->format.work_tree);
1185 core_worktree = xgetcwd();
1186 if (chdir(cwd->buf))
1187 die_errno(_("cannot come back to cwd"));
1188 repo_discovery_set_worktree(discovery, core_worktree);
1189 free(core_worktree);
1190 }
1191 } else if (!git_env_bool(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, 1)) {
1192 /* #16d */
1193 repo_discovery_set_gitdir(discovery, gitdirenv, 0);
1194 goto out;
1195 } else { /* #2, #10 */
1196 repo_discovery_set_worktree(discovery, ".");
1197 }
1198
1199 /* both the worktree and cwd are already normalized */
1200 if (!strcmp(cwd->buf, discovery->worktree)) { /* cwd == worktree */
1201 repo_discovery_set_gitdir(discovery, gitdirenv, 0);
1202 goto out;
1203 }
1204
1205 offset = dir_inside_of(cwd->buf, discovery->worktree);
1206 if (offset >= 0) { /* cwd inside discovery->worktree? */
1207 repo_discovery_set_gitdir(discovery, gitdirenv, 1);
1208 if (chdir(discovery->worktree))
1209 die_errno(_("cannot chdir to '%s'"), discovery->worktree);
1210 discovery->prefix = xstrfmt("%s/", cwd->buf + offset);
1211 goto out;
1212 }
1213
1214 /* cwd outside worktree */
1215 repo_discovery_set_gitdir(discovery, gitdirenv, 0);
1216
1217 out:
1218 free(gitfile);
1219 }
1220
1221 static void repo_discover_implicit_gitdir(struct repo_discovery *discovery,
1222 const char *gitdir,
1223 struct strbuf *cwd, int offset,
1224 int *nongit_ok)
1225 {
1226 if (read_and_verify_repository_format(&discovery->format, gitdir, nongit_ok))
1227 return;
1228
1229 /* --work-tree is set without --git-dir; use discovered one */
1230 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || discovery->format.work_tree) {
1231 char *to_free = NULL;
1232
1233 if (offset != cwd->len && !is_absolute_path(gitdir))
1234 gitdir = to_free = real_pathdup(gitdir, 1);
1235 if (chdir(cwd->buf))
1236 die_errno(_("cannot come back to cwd"));
1237 repo_discover_explicit_gitdir(discovery, gitdir, cwd,
1238 nongit_ok);
1239 free(to_free);
1240 return;
1241 }
1242
1243 /* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */
1244 if (discovery->format.is_bare > 0) {
1245 repo_discovery_set_gitdir(discovery, gitdir, (offset != cwd->len));
1246 if (chdir(cwd->buf))
1247 die_errno(_("cannot come back to cwd"));
1248 return;
1249 }
1250
1251 /* #0, #1, #5, #8, #9, #12, #13 */
1252 repo_discovery_set_worktree(discovery, ".");
1253 if (strcmp(gitdir, DEFAULT_GIT_DIR_ENVIRONMENT))
1254 repo_discovery_set_gitdir(discovery, gitdir, 0);
1255 if (offset >= cwd->len)
1256 return;
1257
1258 /* Make "offset" point past the '/' (already the case for root dirs) */
1259 if (offset != offset_1st_component(cwd->buf))
1260 offset++;
1261 discovery->prefix = xstrfmt("%s/", cwd->buf + offset);
1262 }
1263
1264 /* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */
1265 static void repo_discover_bare_gitdir(struct repo_discovery *discovery,
1266 struct strbuf *cwd, int offset,
1267 int *nongit_ok)
1268 {
1269 int root_len;
1270
1271 if (read_and_verify_repository_format(&discovery->format, ".", nongit_ok))
1272 return;
1273
1274 setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, "0", 1);
1275
1276 /* --work-tree is set without --git-dir; use discovered one */
1277 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || discovery->format.work_tree) {
1278 char *gitdir = offset == cwd->len ? xstrdup(".") : xmemdupz(cwd->buf, offset);
1279 if (chdir(cwd->buf))
1280 die_errno(_("cannot come back to cwd"));
1281 repo_discover_explicit_gitdir(discovery, gitdir, cwd, nongit_ok);
1282 free(gitdir);
1283 return;
1284 }
1285
1286 if (offset != cwd->len) {
1287 if (chdir(cwd->buf))
1288 die_errno(_("cannot come back to cwd"));
1289 root_len = offset_1st_component(cwd->buf);
1290 strbuf_setlen(cwd, offset > root_len ? offset : root_len);
1291 repo_discovery_set_gitdir(discovery, cwd->buf, 0);
1292 } else {
1293 repo_discovery_set_gitdir(discovery, ".", 0);
1294 }
1295 }
1296
1297 static dev_t get_device_or_die(const char *path, const char *prefix, int prefix_len)
1298 {
1299 struct stat buf;
1300 if (stat(path, &buf)) {
1301 die_errno(_("failed to stat '%*s%s%s'"),
1302 prefix_len,
1303 prefix ? prefix : "",
1304 prefix ? "/" : "", path);
1305 }
1306 return buf.st_dev;
1307 }
1308
1309 /*
1310 * A "string_list_each_func_t" function that canonicalizes an entry
1311 * from GIT_CEILING_DIRECTORIES using real_pathdup(), or
1312 * discards it if unusable. The presence of an empty entry in
1313 * GIT_CEILING_DIRECTORIES turns off canonicalization for all
1314 * subsequent entries.
1315 */
1316 static int canonicalize_ceiling_entry(struct string_list_item *item,
1317 void *cb_data)
1318 {
1319 int *empty_entry_found = cb_data;
1320 char *ceil = item->string;
1321
1322 if (!*ceil) {
1323 *empty_entry_found = 1;
1324 return 0;
1325 } else if (!is_absolute_path(ceil)) {
1326 return 0;
1327 } else if (*empty_entry_found) {
1328 /* Keep entry but do not canonicalize it */
1329 return 1;
1330 } else {
1331 char *real_path = real_pathdup(ceil, 0);
1332 if (!real_path) {
1333 return 0;
1334 }
1335 free(item->string);
1336 item->string = real_path;
1337 return 1;
1338 }
1339 }
1340
1341 struct safe_directory_data {
1342 char *path;
1343 int is_safe;
1344 };
1345
1346 static int safe_directory_cb(const char *key, const char *value,
1347 const struct config_context *ctx UNUSED, void *d)
1348 {
1349 struct safe_directory_data *data = d;
1350
1351 if (strcmp(key, "safe.directory"))
1352 return 0;
1353
1354 if (!value || !*value) {
1355 data->is_safe = 0;
1356 } else if (!strcmp(value, "*")) {
1357 data->is_safe = 1;
1358 } else {
1359 char *allowed = NULL;
1360
1361 if (!git_config_pathname(&allowed, key, value) && allowed) {
1362 char *normalized = NULL;
1363
1364 /*
1365 * Setting safe.directory to a non-absolute path
1366 * makes little sense---it won't be relative to
1367 * the configuration file the item is defined in.
1368 * Except for ".", which means "if we are at the top
1369 * level of a repository, then it is OK", which is
1370 * slightly tighter than "*" that allows discovery.
1371 */
1372 if (!is_absolute_path(allowed) && strcmp(allowed, ".")) {
1373 warning(_("safe.directory '%s' not absolute"),
1374 allowed);
1375 goto next;
1376 }
1377
1378 /*
1379 * A .gitconfig in $HOME may be shared across
1380 * different machines and safe.directory entries
1381 * may or may not exist as paths on all of these
1382 * machines. In other words, it is not a warning
1383 * worthy event when there is no such path on this
1384 * machine---the entry may be useful elsewhere.
1385 */
1386 normalized = real_pathdup(allowed, 0);
1387 if (!normalized)
1388 goto next;
1389
1390 if (ends_with(normalized, "/*")) {
1391 size_t len = strlen(normalized);
1392 if (!fspathncmp(normalized, data->path, len - 1))
1393 data->is_safe = 1;
1394 } else if (!fspathcmp(data->path, normalized)) {
1395 data->is_safe = 1;
1396 }
1397 next:
1398 free(normalized);
1399 free(allowed);
1400 }
1401 }
1402
1403 return 0;
1404 }
1405
1406 /*
1407 * Check if a repository is safe, by verifying the ownership of the
1408 * worktree (if any), the git directory, and the gitfile (if any).
1409 *
1410 * Exemptions for known-safe repositories can be added via `safe.directory`
1411 * config settings; for non-bare repositories, their worktree needs to be
1412 * added, for bare ones their git directory.
1413 */
1414 static int ensure_valid_ownership(const char *gitfile,
1415 const char *worktree, const char *gitdir,
1416 struct strbuf *report)
1417 {
1418 struct safe_directory_data data = { 0 };
1419
1420 if (!git_env_bool("GIT_TEST_ASSUME_DIFFERENT_OWNER", 0) &&
1421 (!gitfile || is_path_owned_by_current_user(gitfile, report)) &&
1422 (!worktree || is_path_owned_by_current_user(worktree, report)) &&
1423 (!gitdir || is_path_owned_by_current_user(gitdir, report)))
1424 return 1;
1425
1426 /*
1427 * normalize the data.path for comparison with normalized paths
1428 * that come from the configuration file. The path is unsafe
1429 * if it cannot be normalized.
1430 */
1431 data.path = real_pathdup(worktree ? worktree : gitdir, 0);
1432 if (!data.path)
1433 return 0;
1434
1435 /*
1436 * data.path is the "path" that identifies the repository and it is
1437 * constant regardless of what failed above. data.is_safe should be
1438 * initialized to false, and might be changed by the callback.
1439 */
1440 git_protected_config(safe_directory_cb, &data);
1441
1442 free(data.path);
1443 return data.is_safe;
1444 }
1445
1446 void die_upon_dubious_ownership(const char *gitfile, const char *worktree,
1447 const char *gitdir)
1448 {
1449 struct strbuf report = STRBUF_INIT, quoted = STRBUF_INIT;
1450 const char *path;
1451
1452 if (ensure_valid_ownership(gitfile, worktree, gitdir, &report))
1453 return;
1454
1455 strbuf_complete(&report, '\n');
1456 path = gitfile ? gitfile : gitdir;
1457 sq_quote_buf_pretty(&quoted, path);
1458
1459 die(_("detected dubious ownership in repository at '%s'\n"
1460 "%s"
1461 "To add an exception for this directory, call:\n"
1462 "\n"
1463 "\tgit config --global --add safe.directory %s"),
1464 path, report.buf, quoted.buf);
1465 }
1466
1467 static int allowed_bare_repo_cb(const char *key, const char *value,
1468 const struct config_context *ctx UNUSED,
1469 void *d)
1470 {
1471 enum allowed_bare_repo *allowed_bare_repo = d;
1472
1473 if (strcasecmp(key, "safe.bareRepository"))
1474 return 0;
1475
1476 if (!strcmp(value, "explicit")) {
1477 *allowed_bare_repo = ALLOWED_BARE_REPO_EXPLICIT;
1478 return 0;
1479 }
1480 if (!strcmp(value, "all")) {
1481 *allowed_bare_repo = ALLOWED_BARE_REPO_ALL;
1482 return 0;
1483 }
1484 return -1;
1485 }
1486
1487 static enum allowed_bare_repo get_allowed_bare_repo(void)
1488 {
1489 #ifdef WITH_BREAKING_CHANGES
1490 enum allowed_bare_repo result = ALLOWED_BARE_REPO_EXPLICIT;
1491 #else
1492 enum allowed_bare_repo result = ALLOWED_BARE_REPO_ALL;
1493 #endif
1494 git_protected_config(allowed_bare_repo_cb, &result);
1495 return result;
1496 }
1497
1498 static const char *allowed_bare_repo_to_string(
1499 enum allowed_bare_repo allowed_bare_repo)
1500 {
1501 switch (allowed_bare_repo) {
1502 case ALLOWED_BARE_REPO_EXPLICIT:
1503 return "explicit";
1504 case ALLOWED_BARE_REPO_ALL:
1505 return "all";
1506 default:
1507 BUG("invalid allowed_bare_repo %d",
1508 allowed_bare_repo);
1509 }
1510 return NULL;
1511 }
1512
1513 static int is_implicit_bare_repo(const char *path)
1514 {
1515 /*
1516 * what we found is a ".git" directory at the root of
1517 * the working tree.
1518 */
1519 if (ends_with_path_components(path, ".git"))
1520 return 1;
1521
1522 /*
1523 * we are inside $GIT_DIR of a secondary worktree of a
1524 * non-bare repository.
1525 */
1526 if (strstr(path, "/.git/worktrees/"))
1527 return 1;
1528
1529 /*
1530 * we are inside $GIT_DIR of a worktree of a non-embedded
1531 * submodule, whose superproject is not a bare repository.
1532 */
1533 if (strstr(path, "/.git/modules/"))
1534 return 1;
1535
1536 return 0;
1537 }
1538
1539 /*
1540 * We cannot decide in this function whether we are in the work tree or
1541 * not, since the config can only be read _after_ this function was called.
1542 *
1543 * Also, we avoid changing any global state (such as the current working
1544 * directory) to allow early callers.
1545 *
1546 * The directory where the search should start needs to be passed in via the
1547 * `dir` parameter; upon return, the `dir` buffer will contain the path of
1548 * the directory where the search ended, and `gitdir` will contain the path of
1549 * the discovered .git/ directory, if any. If `gitdir` is not absolute, it
1550 * is relative to `dir` (i.e. *not* necessarily the cwd).
1551 */
1552 static enum discovery_result repo_discovery_find_dir(struct strbuf *dir,
1553 struct strbuf *gitdir,
1554 struct strbuf *report,
1555 int die_on_error)
1556 {
1557 const char *env_ceiling_dirs = getenv(CEILING_DIRECTORIES_ENVIRONMENT);
1558 struct string_list ceiling_dirs = STRING_LIST_INIT_DUP;
1559 const char *gitdirenv;
1560 int ceil_offset = -1, min_offset = offset_1st_component(dir->buf);
1561 dev_t current_device = 0;
1562 int one_filesystem = 1;
1563
1564 /*
1565 * If GIT_DIR is set explicitly, we're not going
1566 * to do any discovery, but we still do repository
1567 * validation.
1568 */
1569 gitdirenv = getenv(GIT_DIR_ENVIRONMENT);
1570 if (gitdirenv) {
1571 strbuf_addstr(gitdir, gitdirenv);
1572 return GIT_DIR_EXPLICIT;
1573 }
1574
1575 if (env_ceiling_dirs) {
1576 int empty_entry_found = 0;
1577 static const char path_sep[] = { PATH_SEP, '\0' };
1578
1579 string_list_split(&ceiling_dirs, env_ceiling_dirs, path_sep, -1);
1580 filter_string_list(&ceiling_dirs, 0,
1581 canonicalize_ceiling_entry, &empty_entry_found);
1582 ceil_offset = longest_ancestor_length(dir->buf, &ceiling_dirs);
1583 string_list_clear(&ceiling_dirs, 0);
1584 }
1585
1586 if (ceil_offset < 0)
1587 ceil_offset = min_offset - 2;
1588
1589 if (min_offset && min_offset == dir->len &&
1590 !is_dir_sep(dir->buf[min_offset - 1])) {
1591 strbuf_addch(dir, '/');
1592 min_offset++;
1593 }
1594
1595 /*
1596 * Test in the following order (relative to the dir):
1597 * - .git (file containing "gitdir: <path>")
1598 * - .git/
1599 * - ./ (bare)
1600 * - ../.git
1601 * - ../.git/
1602 * - ../ (bare)
1603 * - ../../.git
1604 * etc.
1605 */
1606 one_filesystem = !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM", 0);
1607 if (one_filesystem)
1608 current_device = get_device_or_die(dir->buf, NULL, 0);
1609 for (;;) {
1610 int offset = dir->len, error_code = 0;
1611 char *gitdir_path = NULL;
1612 char *gitfile = NULL;
1613
1614 if (offset > min_offset)
1615 strbuf_addch(dir, '/');
1616 strbuf_addstr(dir, DEFAULT_GIT_DIR_ENVIRONMENT);
1617 gitdirenv = read_gitfile_gently(dir->buf, &error_code);
1618 if (!gitdirenv) {
1619 switch (error_code) {
1620 case READ_GITFILE_ERR_MISSING:
1621 /* no .git in this directory, move on */
1622 break;
1623 case READ_GITFILE_ERR_IS_A_DIR:
1624 if (is_git_directory(dir->buf)) {
1625 gitdirenv = DEFAULT_GIT_DIR_ENVIRONMENT;
1626 gitdir_path = xstrdup(dir->buf);
1627 }
1628 break;
1629 case READ_GITFILE_ERR_STAT_FAILED:
1630 if (die_on_error)
1631 die(_("error reading '%s'"), dir->buf);
1632 else
1633 return GIT_DIR_INVALID_GITFILE;
1634 case READ_GITFILE_ERR_NOT_A_FILE:
1635 if (die_on_error)
1636 die(_("not a regular file: '%s'"), dir->buf);
1637 else
1638 return GIT_DIR_INVALID_GITFILE;
1639 default:
1640 if (die_on_error)
1641 read_gitfile_error_die(error_code, dir->buf);
1642 else
1643 return GIT_DIR_INVALID_GITFILE;
1644 }
1645 } else {
1646 gitfile = xstrdup(dir->buf);
1647 }
1648 /*
1649 * Earlier, we tentatively added DEFAULT_GIT_DIR_ENVIRONMENT
1650 * to check that directory for a repository.
1651 * Now trim that tentative addition away, because we want to
1652 * focus on the real directory we are in.
1653 */
1654 strbuf_setlen(dir, offset);
1655 if (gitdirenv) {
1656 enum discovery_result ret;
1657 const char *gitdir_candidate =
1658 gitdir_path ? gitdir_path : gitdirenv;
1659
1660 if (ensure_valid_ownership(gitfile, dir->buf,
1661 gitdir_candidate, report)) {
1662 strbuf_addstr(gitdir, gitdirenv);
1663 ret = GIT_DIR_DISCOVERED;
1664 } else
1665 ret = GIT_DIR_INVALID_OWNERSHIP;
1666
1667 /*
1668 * Earlier, during discovery, we might have allocated
1669 * string copies for gitdir_path or gitfile so make
1670 * sure we don't leak by freeing them now, before
1671 * leaving the loop and function.
1672 *
1673 * Note: gitdirenv will be non-NULL whenever these are
1674 * allocated, therefore we need not take care of releasing
1675 * them outside of this conditional block.
1676 */
1677 free(gitdir_path);
1678 free(gitfile);
1679
1680 return ret;
1681 }
1682
1683 if (is_git_directory(dir->buf)) {
1684 trace2_data_string("setup", NULL, "implicit-bare-repository", dir->buf);
1685 if (get_allowed_bare_repo() == ALLOWED_BARE_REPO_EXPLICIT &&
1686 !is_implicit_bare_repo(dir->buf))
1687 return GIT_DIR_DISALLOWED_BARE;
1688 if (!ensure_valid_ownership(NULL, NULL, dir->buf, report))
1689 return GIT_DIR_INVALID_OWNERSHIP;
1690 strbuf_addstr(gitdir, ".");
1691 return GIT_DIR_BARE;
1692 }
1693
1694 if (offset <= min_offset)
1695 return GIT_DIR_HIT_CEILING;
1696
1697 while (--offset > ceil_offset && !is_dir_sep(dir->buf[offset]))
1698 ; /* continue */
1699 if (offset <= ceil_offset)
1700 return GIT_DIR_HIT_CEILING;
1701
1702 strbuf_setlen(dir, offset > min_offset ? offset : min_offset);
1703 if (one_filesystem &&
1704 current_device != get_device_or_die(dir->buf, NULL, offset))
1705 return GIT_DIR_HIT_MOUNT_POINT;
1706 }
1707 }
1708
1709 enum discovery_result discover_git_directory_reason(struct strbuf *commondir,
1710 struct strbuf *gitdir)
1711 {
1712 struct strbuf dir = STRBUF_INIT, err = STRBUF_INIT;
1713 size_t gitdir_offset = gitdir->len, cwd_len;
1714 size_t commondir_offset = commondir->len;
1715 struct repository_format candidate = REPOSITORY_FORMAT_INIT;
1716 enum discovery_result result;
1717
1718 if (strbuf_getcwd(&dir))
1719 return GIT_DIR_CWD_FAILURE;
1720
1721 cwd_len = dir.len;
1722 result = repo_discovery_find_dir(&dir, gitdir, NULL, 0);
1723 if (result <= 0) {
1724 strbuf_release(&dir);
1725 return result;
1726 }
1727
1728 /*
1729 * The returned gitdir is relative to dir, and if dir does not reflect
1730 * the current working directory, we simply make the gitdir absolute.
1731 */
1732 if (dir.len < cwd_len && !is_absolute_path(gitdir->buf + gitdir_offset)) {
1733 /* Avoid a trailing "/." */
1734 if (!strcmp(".", gitdir->buf + gitdir_offset))
1735 strbuf_setlen(gitdir, gitdir_offset);
1736 else
1737 strbuf_addch(&dir, '/');
1738 strbuf_insert(gitdir, gitdir_offset, dir.buf, dir.len);
1739 }
1740
1741 get_common_dir(commondir, gitdir->buf + gitdir_offset);
1742
1743 strbuf_reset(&dir);
1744 strbuf_addf(&dir, "%s/config", commondir->buf + commondir_offset);
1745 read_repository_format(&candidate, dir.buf);
1746 strbuf_release(&dir);
1747
1748 if (verify_repository_format(&candidate, &err) < 0) {
1749 warning("ignoring git dir '%s': %s",
1750 gitdir->buf + gitdir_offset, err.buf);
1751 strbuf_release(&err);
1752 strbuf_setlen(commondir, commondir_offset);
1753 strbuf_setlen(gitdir, gitdir_offset);
1754 clear_repository_format(&candidate);
1755 return GIT_DIR_INVALID_FORMAT;
1756 }
1757
1758 clear_repository_format(&candidate);
1759 return result;
1760 }
1761
1762 int apply_repository_format(struct repository *repo,
1763 const struct repository_format *format,
1764 enum apply_repository_format_flags flags,
1765 struct strbuf *err)
1766 {
1767 if (verify_repository_format(format, err) < 0)
1768 return -1;
1769
1770 if (format->is_bare > 0 && format->work_tree) {
1771 /* #22.2, #30 */
1772 warning("core.bare and core.worktree do not make sense");
1773 repo->worktree_config_is_bogus = true;
1774 }
1775
1776 if (flags & APPLY_REPOSITORY_FORMAT_HONOR_ENV) {
1777 const char *shallow_file;
1778
1779 shallow_file = getenv(GIT_SHALLOW_FILE_ENVIRONMENT);
1780 if (shallow_file)
1781 set_alternate_shallow_file(repo, shallow_file);
1782 }
1783
1784 repo->bare_cfg = format->is_bare;
1785 repo_set_hash_algo(repo, format->hash_algo);
1786 repo_set_compat_hash_algo(repo, format->compat_hash_algo);
1787 repo_set_ref_storage_format(repo,
1788 format->ref_storage_format,
1789 format->ref_storage_payload);
1790 repo->repository_format_worktree_config =
1791 format->worktree_config;
1792 repo->repository_format_submodule_path_cfg =
1793 format->submodule_path_cfg;
1794 repo->repository_format_relative_worktrees =
1795 format->relative_worktrees;
1796 repo->repository_format_partial_clone =
1797 xstrdup_or_null(format->partial_clone);
1798 repo->repository_format_precious_objects =
1799 format->precious_objects;
1800
1801 return 0;
1802 }
1803
1804 const char *enter_repo(struct repository *repo, const char *path, unsigned flags)
1805 {
1806 static struct strbuf validated_path = STRBUF_INIT;
1807 static struct strbuf used_path = STRBUF_INIT;
1808
1809 if (!path)
1810 return NULL;
1811
1812 if (!(flags & ENTER_REPO_STRICT)) {
1813 static const char *suffix[] = {
1814 "/.git", "", ".git/.git", ".git", NULL,
1815 };
1816 const char *gitfile;
1817 int len = strlen(path);
1818 int i;
1819 while ((1 < len) && (path[len-1] == '/'))
1820 len--;
1821
1822 /*
1823 * We can handle arbitrary-sized buffers, but this remains as a
1824 * sanity check on untrusted input.
1825 */
1826 if (PATH_MAX <= len)
1827 return NULL;
1828
1829 strbuf_reset(&used_path);
1830 strbuf_reset(&validated_path);
1831 strbuf_add(&used_path, path, len);
1832 strbuf_add(&validated_path, path, len);
1833
1834 if (used_path.buf[0] == '~') {
1835 char *newpath = interpolate_path(used_path.buf, 0);
1836 if (!newpath)
1837 return NULL;
1838 strbuf_attach(&used_path, newpath, strlen(newpath),
1839 strlen(newpath));
1840 }
1841 for (i = 0; suffix[i]; i++) {
1842 struct stat st;
1843 size_t baselen = used_path.len;
1844 strbuf_addstr(&used_path, suffix[i]);
1845 if (!stat(used_path.buf, &st) &&
1846 (S_ISREG(st.st_mode) ||
1847 (S_ISDIR(st.st_mode) && is_git_directory(used_path.buf)))) {
1848 strbuf_addstr(&validated_path, suffix[i]);
1849 break;
1850 }
1851 strbuf_setlen(&used_path, baselen);
1852 }
1853 if (!suffix[i])
1854 return NULL;
1855 gitfile = read_gitfile(used_path.buf);
1856 if (!(flags & ENTER_REPO_ANY_OWNER_OK))
1857 die_upon_dubious_ownership(gitfile, NULL, used_path.buf);
1858 if (gitfile) {
1859 strbuf_reset(&used_path);
1860 strbuf_addstr(&used_path, gitfile);
1861 }
1862 if (chdir(used_path.buf))
1863 return NULL;
1864 path = validated_path.buf;
1865 }
1866 else {
1867 const char *gitfile = read_gitfile(path);
1868 if (!(flags & ENTER_REPO_ANY_OWNER_OK))
1869 die_upon_dubious_ownership(gitfile, NULL, path);
1870 if (gitfile)
1871 path = gitfile;
1872 if (chdir(path))
1873 return NULL;
1874 }
1875
1876 if (is_git_directory(".")) {
1877 struct repository_format fmt = REPOSITORY_FORMAT_INIT;
1878 struct strbuf err = STRBUF_INIT;
1879
1880 apply_and_export_relative_gitdir(repo, ".", 0);
1881 read_and_verify_repository_format(&fmt, ".", NULL);
1882 if (apply_repository_format(repo, &fmt, APPLY_REPOSITORY_FORMAT_HONOR_ENV, &err) < 0)
1883 die("%s", err.buf);
1884 repo->objects = odb_new(repo, ODB_NEW_HONOR_ENV);
1885 startup_info->have_repository = 1;
1886
1887 clear_repository_format(&fmt);
1888 strbuf_release(&err);
1889 return path;
1890 }
1891
1892 return NULL;
1893 }
1894
1895 /*
1896 * Note. This works only before you used a work tree. This was added
1897 * primarily to support git-clone to work in a new repository it just
1898 * created, and is not meant to flip between different work trees.
1899 */
1900 static void set_git_work_tree(struct repository *repo, const char *new_work_tree)
1901 {
1902 if (repo->worktree_initialized) {
1903 struct strbuf realpath = STRBUF_INIT;
1904
1905 strbuf_realpath(&realpath, new_work_tree, 1);
1906 new_work_tree = realpath.buf;
1907 if (strcmp(new_work_tree, repo->worktree))
1908 die("internal error: work tree has already been set\n"
1909 "Current worktree: %s\nNew worktree: %s",
1910 repo->worktree, new_work_tree);
1911 strbuf_release(&realpath);
1912 return;
1913 }
1914 repo->worktree_initialized = true;
1915 repo_set_worktree(repo, new_work_tree);
1916 }
1917
1918 static void repo_discover(struct repo_discovery *discovery, int *nongit_ok)
1919 {
1920 struct strbuf cwd = STRBUF_INIT;
1921 struct strbuf dir = STRBUF_INIT, gitdir = STRBUF_INIT, report = STRBUF_INIT;
1922
1923 /*
1924 * Let's assume that we are in a git repository.
1925 * If it turns out later that we are somewhere else, the value will be
1926 * updated accordingly.
1927 */
1928 if (nongit_ok)
1929 *nongit_ok = 0;
1930
1931 if (strbuf_getcwd(&cwd))
1932 die_errno(_("Unable to read current working directory"));
1933 strbuf_addbuf(&dir, &cwd);
1934
1935 switch (repo_discovery_find_dir(&dir, &gitdir, &report, 1)) {
1936 case GIT_DIR_EXPLICIT:
1937 repo_discover_explicit_gitdir(discovery, gitdir.buf, &cwd,
1938 nongit_ok);
1939 break;
1940 case GIT_DIR_DISCOVERED:
1941 if (dir.len < cwd.len && chdir(dir.buf))
1942 die(_("cannot change to '%s'"), dir.buf);
1943 repo_discover_implicit_gitdir(discovery, gitdir.buf, &cwd, dir.len,
1944 nongit_ok);
1945 break;
1946 case GIT_DIR_BARE:
1947 if (dir.len < cwd.len && chdir(dir.buf))
1948 die(_("cannot change to '%s'"), dir.buf);
1949 repo_discover_bare_gitdir(discovery, &cwd, dir.len, nongit_ok);
1950 break;
1951 case GIT_DIR_HIT_CEILING:
1952 if (!nongit_ok)
1953 die(_("not a git repository (or any of the parent directories): %s"),
1954 DEFAULT_GIT_DIR_ENVIRONMENT);
1955 *nongit_ok = 1;
1956 break;
1957 case GIT_DIR_HIT_MOUNT_POINT:
1958 if (!nongit_ok)
1959 die(_("not a git repository (or any parent up to mount point %s)\n"
1960 "Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set)."),
1961 dir.buf);
1962 *nongit_ok = 1;
1963 break;
1964 case GIT_DIR_INVALID_OWNERSHIP:
1965 if (!nongit_ok) {
1966 struct strbuf quoted = STRBUF_INIT;
1967
1968 strbuf_complete(&report, '\n');
1969 sq_quote_buf_pretty(&quoted, dir.buf);
1970 die(_("detected dubious ownership in repository at '%s'\n"
1971 "%s"
1972 "To add an exception for this directory, call:\n"
1973 "\n"
1974 "\tgit config --global --add safe.directory %s"),
1975 dir.buf, report.buf, quoted.buf);
1976 }
1977 *nongit_ok = 1;
1978 break;
1979 case GIT_DIR_DISALLOWED_BARE:
1980 if (!nongit_ok) {
1981 die(_("cannot use bare repository '%s' (safe.bareRepository is '%s')"),
1982 dir.buf,
1983 allowed_bare_repo_to_string(get_allowed_bare_repo()));
1984 }
1985 *nongit_ok = 1;
1986 break;
1987 case GIT_DIR_CWD_FAILURE:
1988 case GIT_DIR_INVALID_FORMAT:
1989 /*
1990 * As a safeguard against repo_discovery_find_dir returning
1991 * these values, fallthrough to BUG. Otherwise it is possible to
1992 * set startup_info->have_repository to 1 when we did nothing to
1993 * find a repository.
1994 */
1995 default:
1996 BUG("unhandled repo_discovery_find_dir() result");
1997 }
1998
1999 strbuf_release(&dir);
2000 strbuf_release(&cwd);
2001 strbuf_release(&gitdir);
2002 strbuf_release(&report);
2003 }
2004
2005 const char *setup_git_directory_gently(struct repository *repo, int *nongit_ok)
2006 {
2007 struct repo_discovery discovery = REPO_DISCOVERY_INIT;
2008
2009 /*
2010 * We may have read an incomplete configuration before
2011 * setting-up the git directory. If so, clear the cache so
2012 * that the next queries to the configuration reload complete
2013 * configuration (including the per-repo config file that we
2014 * ignored previously).
2015 */
2016 repo_config_clear(repo);
2017
2018 repo_discover(&discovery, nongit_ok);
2019
2020 /*
2021 * At this point, nongit_ok is stable. If it is non-NULL and points
2022 * to a non-zero value, then this means that we haven't found a
2023 * repository and that the caller expects startup_info to reflect
2024 * this.
2025 *
2026 * Regardless of the state of nongit_ok, the_repository->prefix and
2027 * the GIT_PREFIX environment variable must always match. For details
2028 * see Documentation/config/alias.adoc.
2029 */
2030 if (nongit_ok && *nongit_ok)
2031 startup_info->have_repository = 0;
2032 else
2033 startup_info->have_repository = 1;
2034
2035 /*
2036 * Not all paths through the setup code will have recorded a gitdir
2037 * above, so in order to guarantee that the environment is in a
2038 * consistent state after setup, explicitly set up the gitdir and
2039 * environment if we have a repository.
2040 *
2041 * NEEDSWORK: currently we allow bogus GIT_DIR values to be set in some
2042 * code paths so we also need to explicitly setup the environment if
2043 * the user has set GIT_DIR. It may be beneficial to disallow bogus
2044 * GIT_DIR values at some point in the future.
2045 */
2046 if (/* GIT_DIR_EXPLICIT, GIT_DIR_DISCOVERED, GIT_DIR_BARE */
2047 startup_info->have_repository ||
2048 /* GIT_DIR_EXPLICIT */
2049 getenv(GIT_DIR_ENVIRONMENT)) {
2050 if (discovery.worktree)
2051 set_git_work_tree(repo, discovery.worktree);
2052
2053 if (discovery.gitdir) {
2054 apply_and_export_relative_gitdir(repo, discovery.gitdir, 0);
2055 } else {
2056 const char *gitdir = getenv(GIT_DIR_ENVIRONMENT);
2057 if (!gitdir)
2058 gitdir = DEFAULT_GIT_DIR_ENVIRONMENT;
2059 apply_gitdir_and_environment(repo, gitdir);
2060 }
2061
2062 if (startup_info->have_repository) {
2063 struct strbuf err = STRBUF_INIT;
2064 const char *ref_backend_uri;
2065
2066 /*
2067 * The env variable should override the repository config
2068 * for 'extensions.refStorage'.
2069 */
2070 ref_backend_uri = getenv(GIT_REFERENCE_BACKEND_ENVIRONMENT);
2071 if (ref_backend_uri) {
2072 char *format;
2073
2074 free(discovery.format.ref_storage_payload);
2075
2076 parse_reference_uri(ref_backend_uri, &format, &discovery.format.ref_storage_payload);
2077 discovery.format.ref_storage_format = ref_storage_format_by_name(format);
2078 if (discovery.format.ref_storage_format == REF_STORAGE_FORMAT_UNKNOWN)
2079 die(_("unknown ref storage format: '%s'"), format);
2080
2081 free(format);
2082 }
2083
2084 if (apply_repository_format(repo, &discovery.format,
2085 APPLY_REPOSITORY_FORMAT_HONOR_ENV, &err) < 0)
2086 die("%s", err.buf);
2087 repo->objects = odb_new(repo, ODB_NEW_HONOR_ENV);
2088
2089 clear_repository_format(&discovery.format);
2090 strbuf_release(&err);
2091 }
2092 }
2093 /*
2094 * Since precompose_string_if_needed() needs to look at
2095 * the core.precomposeunicode configuration, this
2096 * has to happen after the above block that finds
2097 * out where the repository is, i.e. a preparation
2098 * for calling repo_config_get_bool().
2099 */
2100 if (discovery.prefix) {
2101 const char *prefix = precompose_string_if_needed(discovery.prefix);
2102 repo->prefix = xstrdup(prefix);
2103 setenv(GIT_PREFIX_ENVIRONMENT, repo->prefix, 1);
2104 } else {
2105 FREE_AND_NULL(repo->prefix);
2106 setenv(GIT_PREFIX_ENVIRONMENT, "", 1);
2107 }
2108
2109 setup_original_cwd(repo);
2110
2111 repo_discovery_release(&discovery);
2112 return repo->prefix;
2113 }
2114
2115 int git_config_perm(const char *var, const char *value)
2116 {
2117 int i;
2118 char *endptr;
2119
2120 if (!value)
2121 return PERM_GROUP;
2122
2123 if (!strcmp(value, "umask"))
2124 return PERM_UMASK;
2125 if (!strcmp(value, "group"))
2126 return PERM_GROUP;
2127 if (!strcmp(value, "all") ||
2128 !strcmp(value, "world") ||
2129 !strcmp(value, "everybody"))
2130 return PERM_EVERYBODY;
2131
2132 /* Parse octal numbers */
2133 i = strtol(value, &endptr, 8);
2134
2135 /* If not an octal number, maybe true/false? */
2136 if (*endptr != 0)
2137 return git_config_bool(var, value) ? PERM_GROUP : PERM_UMASK;
2138
2139 /*
2140 * Treat values 0, 1 and 2 as compatibility cases, otherwise it is
2141 * a chmod value to restrict to.
2142 */
2143 switch (i) {
2144 case PERM_UMASK: /* 0 */
2145 return PERM_UMASK;
2146 case OLD_PERM_GROUP: /* 1 */
2147 return PERM_GROUP;
2148 case OLD_PERM_EVERYBODY: /* 2 */
2149 return PERM_EVERYBODY;
2150 }
2151
2152 /* A filemode value was given: 0xxx */
2153
2154 if ((i & 0600) != 0600)
2155 die(_("problem with core.sharedRepository filemode value "
2156 "(0%.3o).\nThe owner of files must always have "
2157 "read and write permissions."), i);
2158
2159 /*
2160 * Mask filemode value. Others can not get write permission.
2161 * x flags for directories are handled separately.
2162 */
2163 return -(i & 0666);
2164 }
2165
2166 /*
2167 * Returns the "prefix", a path to the current working directory
2168 * relative to the work tree root, or NULL, if the current working
2169 * directory is not a strict subdirectory of the work tree root. The
2170 * prefix always ends with a '/' character.
2171 */
2172 const char *setup_git_directory(struct repository *repo)
2173 {
2174 return setup_git_directory_gently(repo, NULL);
2175 }
2176
2177 const char *resolve_gitdir_gently(const char *suspect, int *return_error_code)
2178 {
2179 if (is_git_directory(suspect))
2180 return suspect;
2181 return read_gitfile_gently(suspect, return_error_code);
2182 }
2183
2184 /* if any standard file descriptor is missing open it to /dev/null */
2185 void sanitize_stdfds(void)
2186 {
2187 int fd = xopen("/dev/null", O_RDWR);
2188 while (fd < 2)
2189 fd = xdup(fd);
2190 if (fd > 2)
2191 close(fd);
2192 }
2193
2194 int daemonize(void)
2195 {
2196 #ifdef NO_POSIX_GOODIES
2197 errno = ENOSYS;
2198 return -1;
2199 #else
2200 pid_t parent_pid = getpid();
2201 pid_t child_pid = fork();
2202
2203 switch (child_pid) {
2204 case 0:
2205 /*
2206 * We're in the child process, so we take ownership of
2207 * all tempfiles.
2208 */
2209 reassign_tempfile_ownership(parent_pid, getpid());
2210 break;
2211 case -1:
2212 die_errno(_("fork failed"));
2213 default:
2214 /*
2215 * We're in the parent process, so we drop ownership of
2216 * all tempfiles to prevent us from removing them upon
2217 * exit.
2218 */
2219 reassign_tempfile_ownership(parent_pid, child_pid);
2220 exit(0);
2221 }
2222 if (setsid() == -1)
2223 die_errno(_("setsid failed"));
2224 close(0);
2225 close(1);
2226 close(2);
2227 sanitize_stdfds();
2228 return 0;
2229 #endif
2230 }
2231
2232 struct template_dir_cb_data {
2233 char *path;
2234 int initialized;
2235 };
2236
2237 static int template_dir_cb(const char *key, const char *value,
2238 const struct config_context *ctx UNUSED, void *d)
2239 {
2240 struct template_dir_cb_data *data = d;
2241
2242 if (strcmp(key, "init.templatedir"))
2243 return 0;
2244
2245 if (!value) {
2246 data->path = NULL;
2247 } else {
2248 char *path = NULL;
2249
2250 FREE_AND_NULL(data->path);
2251 if (!git_config_pathname(&path, key, value))
2252 data->path = path ? path : xstrdup(value);
2253 }
2254
2255 return 0;
2256 }
2257
2258 const char *get_template_dir(const char *option_template)
2259 {
2260 const char *template_dir = option_template;
2261
2262 if (!template_dir)
2263 template_dir = getenv(TEMPLATE_DIR_ENVIRONMENT);
2264 if (!template_dir) {
2265 static struct template_dir_cb_data data;
2266
2267 if (!data.initialized) {
2268 git_protected_config(template_dir_cb, &data);
2269 data.initialized = 1;
2270 }
2271 template_dir = data.path;
2272 }
2273 if (!template_dir) {
2274 static char *dir;
2275
2276 if (!dir)
2277 dir = system_path(DEFAULT_GIT_TEMPLATE_DIR);
2278 template_dir = dir;
2279 }
2280 return template_dir;
2281 }
2282
2283 #ifdef NO_TRUSTABLE_FILEMODE
2284 #define TEST_FILEMODE 0
2285 #else
2286 #define TEST_FILEMODE 1
2287 #endif
2288
2289 #define GIT_DEFAULT_HASH_ENVIRONMENT "GIT_DEFAULT_HASH"
2290
2291 static void copy_templates_1(struct repository *repo,
2292 struct strbuf *path,
2293 struct strbuf *template_path,
2294 DIR *dir)
2295 {
2296 size_t path_baselen = path->len;
2297 size_t template_baselen = template_path->len;
2298 struct dirent *de;
2299
2300 /* Note: if ".git/hooks" file exists in the repository being
2301 * re-initialized, /etc/core-git/templates/hooks/update would
2302 * cause "git init" to fail here. I think this is sane but
2303 * it means that the set of templates we ship by default, along
2304 * with the way the namespace under .git/ is organized, should
2305 * be really carefully chosen.
2306 */
2307 safe_create_dir(repo, path->buf, 1);
2308 while ((de = readdir(dir)) != NULL) {
2309 struct stat st_git, st_template;
2310 int exists = 0;
2311
2312 strbuf_setlen(path, path_baselen);
2313 strbuf_setlen(template_path, template_baselen);
2314
2315 if (de->d_name[0] == '.')
2316 continue;
2317 strbuf_addstr(path, de->d_name);
2318 strbuf_addstr(template_path, de->d_name);
2319 if (lstat(path->buf, &st_git)) {
2320 if (errno != ENOENT)
2321 die_errno(_("cannot stat '%s'"), path->buf);
2322 }
2323 else
2324 exists = 1;
2325
2326 if (lstat(template_path->buf, &st_template))
2327 die_errno(_("cannot stat template '%s'"), template_path->buf);
2328
2329 if (S_ISDIR(st_template.st_mode)) {
2330 DIR *subdir = opendir(template_path->buf);
2331 if (!subdir)
2332 die_errno(_("cannot opendir '%s'"), template_path->buf);
2333 strbuf_addch(path, '/');
2334 strbuf_addch(template_path, '/');
2335 copy_templates_1(repo, path, template_path, subdir);
2336 closedir(subdir);
2337 }
2338 else if (exists)
2339 continue;
2340 else if (S_ISLNK(st_template.st_mode)) {
2341 struct strbuf lnk = STRBUF_INIT;
2342 if (strbuf_readlink(&lnk, template_path->buf,
2343 st_template.st_size) < 0)
2344 die_errno(_("cannot readlink '%s'"), template_path->buf);
2345 if (symlink(lnk.buf, path->buf))
2346 die_errno(_("cannot symlink '%s' '%s'"),
2347 lnk.buf, path->buf);
2348 strbuf_release(&lnk);
2349 }
2350 else if (S_ISREG(st_template.st_mode)) {
2351 if (copy_file(repo, path->buf, template_path->buf, st_template.st_mode))
2352 die_errno(_("cannot copy '%s' to '%s'"),
2353 template_path->buf, path->buf);
2354 }
2355 else
2356 error(_("ignoring template %s"), template_path->buf);
2357 }
2358 }
2359
2360 static void copy_templates(struct repository *repo, const char *option_template)
2361 {
2362 const char *template_dir = get_template_dir(option_template);
2363 struct strbuf path = STRBUF_INIT;
2364 struct strbuf template_path = STRBUF_INIT;
2365 size_t template_len;
2366 struct repository_format template_format = REPOSITORY_FORMAT_INIT;
2367 struct strbuf err = STRBUF_INIT;
2368 DIR *dir;
2369 char *to_free = NULL;
2370
2371 if (!template_dir || !*template_dir)
2372 return;
2373
2374 strbuf_addstr(&template_path, template_dir);
2375 strbuf_complete(&template_path, '/');
2376 template_len = template_path.len;
2377
2378 dir = opendir(template_path.buf);
2379 if (!dir) {
2380 warning(_("templates not found in %s"), template_dir);
2381 goto free_return;
2382 }
2383
2384 /* Make sure that template is from the correct vintage */
2385 strbuf_addstr(&template_path, "config");
2386 read_repository_format(&template_format, template_path.buf);
2387 strbuf_setlen(&template_path, template_len);
2388
2389 /*
2390 * No mention of version at all is OK, but anything else should be
2391 * verified.
2392 */
2393 if (template_format.version >= 0 &&
2394 verify_repository_format(&template_format, &err) < 0) {
2395 warning(_("not copying templates from '%s': %s"),
2396 template_dir, err.buf);
2397 strbuf_release(&err);
2398 goto close_free_return;
2399 }
2400
2401 strbuf_addstr(&path, repo_get_common_dir(repo));
2402 strbuf_complete(&path, '/');
2403 copy_templates_1(repo, &path, &template_path, dir);
2404 close_free_return:
2405 closedir(dir);
2406 free_return:
2407 free(to_free);
2408 strbuf_release(&path);
2409 strbuf_release(&template_path);
2410 clear_repository_format(&template_format);
2411 }
2412
2413 /*
2414 * If the git_dir is not directly inside the working tree, then git will not
2415 * find it by default, and we need to set the worktree explicitly.
2416 */
2417 static int needs_work_tree_config(const char *git_dir, const char *work_tree)
2418 {
2419 if (!strcmp(work_tree, "/") && !strcmp(git_dir, "/.git"))
2420 return 0;
2421 if (skip_prefix(git_dir, work_tree, &git_dir) &&
2422 !strcmp(git_dir, "/.git"))
2423 return 0;
2424 return 1;
2425 }
2426
2427 void initialize_repository_version(struct repository *repo,
2428 int hash_algo,
2429 enum ref_storage_format ref_storage_format,
2430 int reinit)
2431 {
2432 struct strbuf repo_version = STRBUF_INIT;
2433 int target_version = GIT_REPO_VERSION;
2434 int default_submodule_path_config = 0;
2435
2436 /*
2437 * Note that we initialize the repository version to 1 when the ref
2438 * storage format is unknown. This is on purpose so that we can add the
2439 * correct object format to the config during git-clone(1). The format
2440 * version will get adjusted by git-clone(1) once it has learned about
2441 * the remote repository's format.
2442 */
2443 if (hash_algo != GIT_HASH_SHA1_LEGACY ||
2444 ref_storage_format != REF_STORAGE_FORMAT_FILES ||
2445 repo->ref_storage_payload)
2446 target_version = GIT_REPO_VERSION_READ;
2447
2448 if (hash_algo != GIT_HASH_SHA1_LEGACY && hash_algo != GIT_HASH_UNKNOWN)
2449 repo_config_set(repo, "extensions.objectformat",
2450 hash_algos[hash_algo].name);
2451 else if (reinit)
2452 repo_config_set_gently(repo, "extensions.objectformat", NULL);
2453
2454 if (repo->ref_storage_payload) {
2455 struct strbuf ref_uri = STRBUF_INIT;
2456
2457 strbuf_addf(&ref_uri, "%s://%s",
2458 ref_storage_format_to_name(ref_storage_format),
2459 repo->ref_storage_payload);
2460 repo_config_set(repo, "extensions.refstorage", ref_uri.buf);
2461 strbuf_release(&ref_uri);
2462 } else if (ref_storage_format != REF_STORAGE_FORMAT_FILES) {
2463 repo_config_set(repo, "extensions.refstorage",
2464 ref_storage_format_to_name(ref_storage_format));
2465 } else if (reinit) {
2466 repo_config_set_gently(repo, "extensions.refstorage", NULL);
2467 }
2468
2469 if (reinit) {
2470 struct strbuf config = STRBUF_INIT;
2471 struct repository_format repo_fmt = REPOSITORY_FORMAT_INIT;
2472
2473 repo_common_path_append(repo, &config, "config");
2474 read_repository_format(&repo_fmt, config.buf);
2475
2476 if (repo_fmt.v1_only_extensions.nr)
2477 target_version = GIT_REPO_VERSION_READ;
2478
2479 strbuf_release(&config);
2480 clear_repository_format(&repo_fmt);
2481 }
2482
2483 repo_config_get_bool(repo, "init.defaultSubmodulePathConfig",
2484 &default_submodule_path_config);
2485 if (default_submodule_path_config) {
2486 /* extensions.submodulepathconfig requires at least version 1 */
2487 if (target_version == 0)
2488 target_version = 1;
2489 repo_config_set(repo, "extensions.submodulepathconfig", "true");
2490 }
2491
2492 strbuf_addf(&repo_version, "%d", target_version);
2493 repo_config_set(repo, "core.repositoryformatversion", repo_version.buf);
2494
2495 strbuf_release(&repo_version);
2496 }
2497
2498 static int is_reinit(struct repository *repo)
2499 {
2500 struct strbuf buf = STRBUF_INIT;
2501 char junk[2];
2502 int ret;
2503
2504 repo_git_path_replace(repo, &buf, "HEAD");
2505 ret = !access(buf.buf, R_OK) || readlink(buf.buf, junk, sizeof(junk) - 1) != -1;
2506 strbuf_release(&buf);
2507 return ret;
2508 }
2509
2510 void create_reference_database(struct repository *repo,
2511 const char *initial_branch, int quiet)
2512 {
2513 struct strbuf err = STRBUF_INIT;
2514 char *to_free = NULL;
2515 int reinit = is_reinit(repo);
2516
2517 if (ref_store_create_on_disk(get_main_ref_store(repo), 0, &err))
2518 die("failed to set up refs db: %s", err.buf);
2519
2520 /*
2521 * Point the HEAD symref to the initial branch with if HEAD does
2522 * not yet exist.
2523 */
2524 if (!reinit) {
2525 char *ref;
2526
2527 if (!initial_branch)
2528 initial_branch = to_free =
2529 repo_default_branch_name(repo, quiet);
2530
2531 ref = xstrfmt("refs/heads/%s", initial_branch);
2532 if (check_refname_format(ref, 0) < 0)
2533 die(_("invalid initial branch name: '%s'"),
2534 initial_branch);
2535
2536 if (refs_update_symref(get_main_ref_store(repo), "HEAD", ref, NULL) < 0)
2537 exit(1);
2538 free(ref);
2539 }
2540
2541 if (reinit && initial_branch)
2542 warning(_("re-init: ignored --initial-branch=%s"),
2543 initial_branch);
2544
2545 strbuf_release(&err);
2546 free(to_free);
2547 }
2548
2549 static int create_default_files(struct repository *repo,
2550 const char *template_path,
2551 const char *original_git_dir,
2552 const struct repository_format *fmt,
2553 int init_shared_repository)
2554 {
2555 struct stat st1;
2556 struct strbuf path = STRBUF_INIT;
2557 int reinit;
2558 int filemode;
2559 const char *work_tree = repo_get_work_tree(repo);
2560
2561 /*
2562 * First copy the templates -- we might have the default
2563 * config file there, in which case we would want to read
2564 * from it after installing.
2565 *
2566 * Before reading that config, we also need to clear out any cached
2567 * values (since we've just potentially changed what's available on
2568 * disk).
2569 */
2570 copy_templates(repo, template_path);
2571 repo_config_clear(repo);
2572 repo_settings_reset_shared_repository(repo);
2573 repo_config(repo, git_default_config, NULL);
2574
2575 reinit = is_reinit(repo);
2576
2577 /*
2578 * We must make sure command-line options continue to override any
2579 * values we might have just re-read from the config.
2580 */
2581 if (init_shared_repository != -1)
2582 repo_settings_set_shared_repository(repo,
2583 init_shared_repository);
2584
2585 repo->bare_cfg = !work_tree;
2586
2587 /*
2588 * We would have created the above under user's umask -- under
2589 * shared-repository settings, we would need to fix them up.
2590 */
2591 if (repo_settings_get_shared_repository(repo)) {
2592 adjust_shared_perm(repo, repo_get_git_dir(repo));
2593 }
2594
2595 initialize_repository_version(repo, fmt->hash_algo, fmt->ref_storage_format, reinit);
2596
2597 /* Check filemode trustability */
2598 repo_git_path_replace(repo, &path, "config");
2599 filemode = TEST_FILEMODE;
2600 if (TEST_FILEMODE && !lstat(path.buf, &st1)) {
2601 struct stat st2;
2602 filemode = (!chmod(path.buf, st1.st_mode ^ S_IXUSR) &&
2603 !lstat(path.buf, &st2) &&
2604 st1.st_mode != st2.st_mode &&
2605 !chmod(path.buf, st1.st_mode));
2606 if (filemode && !reinit && (st1.st_mode & S_IXUSR))
2607 filemode = 0;
2608 }
2609 repo_config_set(repo, "core.filemode", filemode ? "true" : "false");
2610
2611 if (is_bare_repository(repo))
2612 repo_config_set(repo, "core.bare", "true");
2613 else {
2614 const char *value;
2615
2616 repo_config_set(repo, "core.bare", "false");
2617
2618 /* allow template config file to override the default */
2619 if (repo_config_get_string_tmp(repo, "core.logallrefupdates", &value))
2620 repo_config_set(repo, "core.logallrefupdates", "true");
2621
2622 if (needs_work_tree_config(original_git_dir, work_tree))
2623 repo_config_set(repo, "core.worktree", work_tree);
2624 }
2625
2626 if (!reinit) {
2627 /* Check if symlink is supported in the work tree */
2628 repo_git_path_replace(repo, &path, "tXXXXXX");
2629 if (!close(xmkstemp(path.buf)) &&
2630 !unlink(path.buf) &&
2631 !symlink("testing", path.buf) &&
2632 !lstat(path.buf, &st1) &&
2633 S_ISLNK(st1.st_mode))
2634 unlink(path.buf); /* good */
2635 else
2636 repo_config_set(repo, "core.symlinks", "false");
2637
2638 /* Check if the filesystem is case-insensitive */
2639 repo_git_path_replace(repo, &path, "CoNfIg");
2640 if (!access(path.buf, F_OK))
2641 repo_config_set(repo, "core.ignorecase", "true");
2642 probe_utf8_pathname_composition();
2643 }
2644
2645 strbuf_release(&path);
2646 return reinit;
2647 }
2648
2649 static void create_object_database(struct repository *repo)
2650 {
2651 /*
2652 * Create the "objects" directory in the common directory. This is done
2653 * so that the repository can be discovered regardless of the backend
2654 * used.
2655 *
2656 * Note that we only do this in case the object directory wasn't
2657 * overwritten via an environment variable. If it _is_ being overridden
2658 * then we skip this step, as the repository won't be discoverable
2659 * anyway without the environment variable.
2660 */
2661 if (!getenv(DB_ENVIRONMENT)) {
2662 struct strbuf objects_dir = STRBUF_INIT;
2663 repo_common_path_append(repo, &objects_dir, "objects");
2664 safe_create_dir(repo, objects_dir.buf, 1);
2665 strbuf_release(&objects_dir);
2666 }
2667
2668 repo->objects = odb_new(repo, ODB_NEW_HONOR_ENV);
2669
2670 if (odb_source_create_on_disk(repo->objects->sources) < 0)
2671 die(_("failed creating object database"));
2672 }
2673
2674 static void separate_git_dir(struct repository *repo,
2675 const char *git_dir, const char *git_link)
2676 {
2677 struct stat st;
2678
2679 if (!stat(git_link, &st)) {
2680 const char *src;
2681
2682 if (S_ISREG(st.st_mode))
2683 src = read_gitfile(git_link);
2684 else if (S_ISDIR(st.st_mode))
2685 src = git_link;
2686 else
2687 die(_("unable to handle file type %d"), (int)st.st_mode);
2688
2689 if (rename(src, git_dir))
2690 die_errno(_("unable to move %s to %s"), src, git_dir);
2691 repair_worktrees_after_gitdir_move(repo, src);
2692 }
2693
2694 write_file(git_link, "gitdir: %s", git_dir);
2695 }
2696
2697 struct default_format_config {
2698 int hash;
2699 enum ref_storage_format ref_format;
2700 };
2701
2702 static int read_default_format_config(const char *key, const char *value,
2703 const struct config_context *ctx UNUSED,
2704 void *payload)
2705 {
2706 struct default_format_config *cfg = payload;
2707 char *str = NULL;
2708 int ret;
2709
2710 if (!strcmp(key, "init.defaultobjectformat")) {
2711 ret = git_config_string(&str, key, value);
2712 if (ret)
2713 goto out;
2714 cfg->hash = hash_algo_by_name(str);
2715 if (cfg->hash == GIT_HASH_UNKNOWN)
2716 warning(_("unknown hash algorithm '%s'"), str);
2717 goto out;
2718 }
2719
2720 if (!strcmp(key, "init.defaultrefformat")) {
2721 ret = git_config_string(&str, key, value);
2722 if (ret)
2723 goto out;
2724 cfg->ref_format = ref_storage_format_by_name(str);
2725 if (cfg->ref_format == REF_STORAGE_FORMAT_UNKNOWN)
2726 warning(_("unknown ref storage format '%s'"), str);
2727 goto out;
2728 }
2729
2730 /*
2731 * Enable the reftable format when "features.experimental" is enabled.
2732 * "init.defaultRefFormat" takes precedence over this setting.
2733 */
2734 if (!strcmp(key, "feature.experimental") &&
2735 cfg->ref_format == REF_STORAGE_FORMAT_UNKNOWN &&
2736 git_config_bool(key, value)) {
2737 cfg->ref_format = REF_STORAGE_FORMAT_REFTABLE;
2738 ret = 0;
2739 goto out;
2740 }
2741
2742 ret = 0;
2743 out:
2744 free(str);
2745 return ret;
2746 }
2747
2748 static void repository_format_configure(struct repository_format *repo_fmt,
2749 int hash, enum ref_storage_format ref_format)
2750 {
2751 struct default_format_config cfg = {
2752 .hash = GIT_HASH_UNKNOWN,
2753 .ref_format = REF_STORAGE_FORMAT_UNKNOWN,
2754 };
2755 struct config_options opts = {
2756 .respect_includes = 1,
2757 .ignore_repo = 1,
2758 .ignore_worktree = 1,
2759 };
2760 const char *ref_backend_uri;
2761 const char *env;
2762
2763 config_with_options(read_default_format_config, &cfg, NULL, NULL, &opts);
2764
2765 /*
2766 * If we already have an initialized repo, don't allow the user to
2767 * specify a different algorithm, as that could cause corruption.
2768 * Otherwise, if the user has specified one on the command line, use it.
2769 */
2770 env = getenv(GIT_DEFAULT_HASH_ENVIRONMENT);
2771 if (repo_fmt->version >= 0 && hash != GIT_HASH_UNKNOWN && hash != repo_fmt->hash_algo)
2772 die(_("attempt to reinitialize repository with different hash"));
2773 else if (hash != GIT_HASH_UNKNOWN)
2774 repo_fmt->hash_algo = hash;
2775 else if (env) {
2776 int env_algo = hash_algo_by_name(env);
2777 if (env_algo == GIT_HASH_UNKNOWN)
2778 die(_("unknown hash algorithm '%s'"), env);
2779 if (repo_fmt->version < 0 ||
2780 repo_fmt->hash_algo == GIT_HASH_UNKNOWN)
2781 repo_fmt->hash_algo = env_algo;
2782 } else if (cfg.hash != GIT_HASH_UNKNOWN) {
2783 repo_fmt->hash_algo = cfg.hash;
2784 }
2785
2786 env = getenv("GIT_DEFAULT_REF_FORMAT");
2787 if (repo_fmt->version >= 0 &&
2788 ref_format != REF_STORAGE_FORMAT_UNKNOWN &&
2789 ref_format != repo_fmt->ref_storage_format) {
2790 die(_("attempt to reinitialize repository with different reference storage format"));
2791 } else if (ref_format != REF_STORAGE_FORMAT_UNKNOWN) {
2792 repo_fmt->ref_storage_format = ref_format;
2793 } else if (env) {
2794 ref_format = ref_storage_format_by_name(env);
2795 if (ref_format == REF_STORAGE_FORMAT_UNKNOWN)
2796 die(_("unknown ref storage format '%s'"), env);
2797 if (repo_fmt->version < 0 ||
2798 repo_fmt->ref_storage_format == REF_STORAGE_FORMAT_UNKNOWN)
2799 repo_fmt->ref_storage_format = ref_format;
2800 } else if (cfg.ref_format != REF_STORAGE_FORMAT_UNKNOWN) {
2801 repo_fmt->ref_storage_format = cfg.ref_format;
2802 } else {
2803 repo_fmt->ref_storage_format = REF_STORAGE_FORMAT_DEFAULT;
2804 }
2805
2806
2807 ref_backend_uri = getenv(GIT_REFERENCE_BACKEND_ENVIRONMENT);
2808 if (ref_backend_uri) {
2809 char *backend, *payload;
2810 enum ref_storage_format format;
2811
2812 parse_reference_uri(ref_backend_uri, &backend, &payload);
2813 format = ref_storage_format_by_name(backend);
2814 if (format == REF_STORAGE_FORMAT_UNKNOWN)
2815 die(_("unknown ref storage format: '%s'"), backend);
2816
2817 repo_fmt->ref_storage_format = format;
2818 repo_fmt->ref_storage_payload = payload;
2819
2820 free(backend);
2821 }
2822 }
2823
2824 int init_db(struct repository *repo,
2825 const char *git_dir,
2826 const char *real_git_dir,
2827 const char *worktree,
2828 const char *template_dir, int hash,
2829 enum ref_storage_format ref_storage_format,
2830 const char *initial_branch,
2831 int init_shared_repository, unsigned int flags)
2832 {
2833 int reinit;
2834 int exist_ok = flags & INIT_DB_EXIST_OK;
2835 char *original_git_dir = real_pathdup(git_dir, 1);
2836 struct repository_format repo_fmt = REPOSITORY_FORMAT_INIT;
2837 struct strbuf err = STRBUF_INIT;
2838
2839 if (real_git_dir) {
2840 struct stat st;
2841
2842 if (!exist_ok && !stat(git_dir, &st))
2843 die(_("%s already exists"), git_dir);
2844
2845 if (!exist_ok && !stat(real_git_dir, &st))
2846 die(_("%s already exists"), real_git_dir);
2847
2848 apply_and_export_relative_gitdir(repo, real_git_dir, 1);
2849 git_dir = repo_get_git_dir(repo);
2850 separate_git_dir(repo, git_dir, original_git_dir);
2851 } else {
2852 apply_and_export_relative_gitdir(repo, git_dir, 1);
2853 git_dir = repo_get_git_dir(repo);
2854 }
2855
2856 if (worktree)
2857 set_git_work_tree(repo, worktree);
2858
2859 /*
2860 * Check to see if the repository version is right.
2861 * Note that a newly created repository does not have
2862 * config file, so this will not fail. What we are catching
2863 * is an attempt to reinitialize new repository with an old tool.
2864 */
2865 read_and_verify_repository_format(&repo_fmt, repo_get_git_dir(repo), NULL);
2866 repository_format_configure(&repo_fmt, hash, ref_storage_format);
2867 if (apply_repository_format(repo, &repo_fmt, APPLY_REPOSITORY_FORMAT_HONOR_ENV, &err) < 0)
2868 die("%s", err.buf);
2869
2870 /*
2871 * Ensure `core.hidedotfiles` is processed. This must happen after we
2872 * have set up the repository format such that we can evaluate
2873 * includeIf conditions correctly in the case of re-initialization.
2874 */
2875 repo_config(repo, git_default_core_config, NULL);
2876
2877 safe_create_dir(repo, git_dir, 0);
2878
2879 reinit = create_default_files(repo, template_dir, original_git_dir,
2880 &repo_fmt, init_shared_repository);
2881
2882 if (!(flags & INIT_DB_SKIP_REFDB))
2883 create_reference_database(repo, initial_branch, flags & INIT_DB_QUIET);
2884 create_object_database(repo);
2885
2886 startup_info->have_repository = 1;
2887
2888 if (repo_settings_get_shared_repository(repo)) {
2889 char buf[10];
2890 /* We do not spell "group" and such, so that
2891 * the configuration can be read by older version
2892 * of git. Note, we use octal numbers for new share modes,
2893 * and compatibility values for PERM_GROUP and
2894 * PERM_EVERYBODY.
2895 */
2896 if (repo_settings_get_shared_repository(repo) < 0)
2897 /* force to the mode value */
2898 xsnprintf(buf, sizeof(buf), "0%o", -repo_settings_get_shared_repository(repo));
2899 else if (repo_settings_get_shared_repository(repo) == PERM_GROUP)
2900 xsnprintf(buf, sizeof(buf), "%d", OLD_PERM_GROUP);
2901 else if (repo_settings_get_shared_repository(repo) == PERM_EVERYBODY)
2902 xsnprintf(buf, sizeof(buf), "%d", OLD_PERM_EVERYBODY);
2903 else
2904 BUG("invalid value for shared_repository");
2905 repo_config_set(repo, "core.sharedrepository", buf);
2906 repo_config_set(repo, "receive.denyNonFastforwards", "true");
2907 }
2908
2909 if (!(flags & INIT_DB_QUIET)) {
2910 int len = strlen(git_dir);
2911
2912 if (reinit)
2913 printf(repo_settings_get_shared_repository(repo)
2914 ? _("Reinitialized existing shared Git repository in %s%s\n")
2915 : _("Reinitialized existing Git repository in %s%s\n"),
2916 git_dir, len && git_dir[len-1] != '/' ? "/" : "");
2917 else
2918 printf(repo_settings_get_shared_repository(repo)
2919 ? _("Initialized empty shared Git repository in %s%s\n")
2920 : _("Initialized empty Git repository in %s%s\n"),
2921 git_dir, len && git_dir[len-1] != '/' ? "/" : "");
2922 }
2923
2924 clear_repository_format(&repo_fmt);
2925 strbuf_release(&err);
2926 free(original_git_dir);
2927 return 0;
2928 }