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