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