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