read_gitfile_gently: fix use-after-free
[git/mjg.git] / setup.c
blob97bb5e3b93e8e678832a6d9f057eaa0ec48ed9ac
1 #include "cache.h"
2 #include "dir.h"
3 #include "string-list.h"
5 static int inside_git_dir = -1;
6 static int inside_work_tree = -1;
8 /*
9 * The input parameter must contain an absolute path, and it must already be
10 * normalized.
12 * Find the part of an absolute path that lies inside the work tree by
13 * dereferencing symlinks outside the work tree, for example:
14 * /dir1/repo/dir2/file (work tree is /dir1/repo) -> dir2/file
15 * /dir/file (work tree is /) -> dir/file
16 * /dir/symlink1/symlink2 (symlink1 points to work tree) -> symlink2
17 * /dir/repolink/file (repolink points to /dir/repo) -> file
18 * /dir/repo (exactly equal to work tree) -> (empty string)
20 static int abspath_part_inside_repo(char *path)
22 size_t len;
23 size_t wtlen;
24 char *path0;
25 int off;
26 const char *work_tree = get_git_work_tree();
28 if (!work_tree)
29 return -1;
30 wtlen = strlen(work_tree);
31 len = strlen(path);
32 off = offset_1st_component(path);
34 /* check if work tree is already the prefix */
35 if (wtlen <= len && !strncmp(path, work_tree, wtlen)) {
36 if (path[wtlen] == '/') {
37 memmove(path, path + wtlen + 1, len - wtlen);
38 return 0;
39 } else if (path[wtlen - 1] == '/' || path[wtlen] == '\0') {
40 /* work tree is the root, or the whole path */
41 memmove(path, path + wtlen, len - wtlen + 1);
42 return 0;
44 /* work tree might match beginning of a symlink to work tree */
45 off = wtlen;
47 path0 = path;
48 path += off;
50 /* check each '/'-terminated level */
51 while (*path) {
52 path++;
53 if (*path == '/') {
54 *path = '\0';
55 if (strcmp(real_path(path0), work_tree) == 0) {
56 memmove(path0, path + 1, len - (path - path0));
57 return 0;
59 *path = '/';
63 /* check whole path */
64 if (strcmp(real_path(path0), work_tree) == 0) {
65 *path0 = '\0';
66 return 0;
69 return -1;
73 * Normalize "path", prepending the "prefix" for relative paths. If
74 * remaining_prefix is not NULL, return the actual prefix still
75 * remains in the path. For example, prefix = sub1/sub2/ and path is
77 * foo -> sub1/sub2/foo (full prefix)
78 * ../foo -> sub1/foo (remaining prefix is sub1/)
79 * ../../bar -> bar (no remaining prefix)
80 * ../../sub1/sub2/foo -> sub1/sub2/foo (but no remaining prefix)
81 * `pwd`/../bar -> sub1/bar (no remaining prefix)
83 char *prefix_path_gently(const char *prefix, int len,
84 int *remaining_prefix, const char *path)
86 const char *orig = path;
87 char *sanitized;
88 if (is_absolute_path(orig)) {
89 sanitized = xmalloc(strlen(path) + 1);
90 if (remaining_prefix)
91 *remaining_prefix = 0;
92 if (normalize_path_copy_len(sanitized, path, remaining_prefix)) {
93 free(sanitized);
94 return NULL;
96 if (abspath_part_inside_repo(sanitized)) {
97 free(sanitized);
98 return NULL;
100 } else {
101 sanitized = xmalloc(len + strlen(path) + 1);
102 if (len)
103 memcpy(sanitized, prefix, len);
104 strcpy(sanitized + len, path);
105 if (remaining_prefix)
106 *remaining_prefix = len;
107 if (normalize_path_copy_len(sanitized, sanitized, remaining_prefix)) {
108 free(sanitized);
109 return NULL;
112 return sanitized;
115 char *prefix_path(const char *prefix, int len, const char *path)
117 char *r = prefix_path_gently(prefix, len, NULL, path);
118 if (!r)
119 die("'%s' is outside repository", path);
120 return r;
123 int path_inside_repo(const char *prefix, const char *path)
125 int len = prefix ? strlen(prefix) : 0;
126 char *r = prefix_path_gently(prefix, len, NULL, path);
127 if (r) {
128 free(r);
129 return 1;
131 return 0;
134 int check_filename(const char *prefix, const char *arg)
136 const char *name;
137 struct stat st;
139 if (starts_with(arg, ":/")) {
140 if (arg[2] == '\0') /* ":/" is root dir, always exists */
141 return 1;
142 name = arg + 2;
143 } else if (!no_wildcard(arg))
144 return 1;
145 else if (prefix)
146 name = prefix_filename(prefix, strlen(prefix), arg);
147 else
148 name = arg;
149 if (!lstat(name, &st))
150 return 1; /* file exists */
151 if (errno == ENOENT || errno == ENOTDIR)
152 return 0; /* file does not exist */
153 die_errno("failed to stat '%s'", arg);
156 static void NORETURN die_verify_filename(const char *prefix,
157 const char *arg,
158 int diagnose_misspelt_rev)
160 if (!diagnose_misspelt_rev)
161 die("%s: no such path in the working tree.\n"
162 "Use 'git <command> -- <path>...' to specify paths that do not exist locally.",
163 arg);
165 * Saying "'(icase)foo' does not exist in the index" when the
166 * user gave us ":(icase)foo" is just stupid. A magic pathspec
167 * begins with a colon and is followed by a non-alnum; do not
168 * let maybe_die_on_misspelt_object_name() even trigger.
170 if (!(arg[0] == ':' && !isalnum(arg[1])))
171 maybe_die_on_misspelt_object_name(arg, prefix);
173 /* ... or fall back the most general message. */
174 die("ambiguous argument '%s': unknown revision or path not in the working tree.\n"
175 "Use '--' to separate paths from revisions, like this:\n"
176 "'git <command> [<revision>...] -- [<file>...]'", arg);
181 * Verify a filename that we got as an argument for a pathspec
182 * entry. Note that a filename that begins with "-" never verifies
183 * as true, because even if such a filename were to exist, we want
184 * it to be preceded by the "--" marker (or we want the user to
185 * use a format like "./-filename")
187 * The "diagnose_misspelt_rev" is used to provide a user-friendly
188 * diagnosis when dying upon finding that "name" is not a pathname.
189 * If set to 1, the diagnosis will try to diagnose "name" as an
190 * invalid object name (e.g. HEAD:foo). If set to 0, the diagnosis
191 * will only complain about an inexisting file.
193 * This function is typically called to check that a "file or rev"
194 * argument is unambiguous. In this case, the caller will want
195 * diagnose_misspelt_rev == 1 when verifying the first non-rev
196 * argument (which could have been a revision), and
197 * diagnose_misspelt_rev == 0 for the next ones (because we already
198 * saw a filename, there's not ambiguity anymore).
200 void verify_filename(const char *prefix,
201 const char *arg,
202 int diagnose_misspelt_rev)
204 if (*arg == '-')
205 die("bad flag '%s' used after filename", arg);
206 if (check_filename(prefix, arg))
207 return;
208 die_verify_filename(prefix, arg, diagnose_misspelt_rev);
212 * Opposite of the above: the command line did not have -- marker
213 * and we parsed the arg as a refname. It should not be interpretable
214 * as a filename.
216 void verify_non_filename(const char *prefix, const char *arg)
218 if (!is_inside_work_tree() || is_inside_git_dir())
219 return;
220 if (*arg == '-')
221 return; /* flag */
222 if (!check_filename(prefix, arg))
223 return;
224 die("ambiguous argument '%s': both revision and filename\n"
225 "Use '--' to separate paths from revisions, like this:\n"
226 "'git <command> [<revision>...] -- [<file>...]'", arg);
229 int get_common_dir(struct strbuf *sb, const char *gitdir)
231 struct strbuf data = STRBUF_INIT;
232 struct strbuf path = STRBUF_INIT;
233 const char *git_common_dir = getenv(GIT_COMMON_DIR_ENVIRONMENT);
234 int ret = 0;
235 if (git_common_dir) {
236 strbuf_addstr(sb, git_common_dir);
237 return 1;
239 strbuf_addf(&path, "%s/commondir", gitdir);
240 if (file_exists(path.buf)) {
241 if (strbuf_read_file(&data, path.buf, 0) <= 0)
242 die_errno(_("failed to read %s"), path.buf);
243 while (data.len && (data.buf[data.len - 1] == '\n' ||
244 data.buf[data.len - 1] == '\r'))
245 data.len--;
246 data.buf[data.len] = '\0';
247 strbuf_reset(&path);
248 if (!is_absolute_path(data.buf))
249 strbuf_addf(&path, "%s/", gitdir);
250 strbuf_addbuf(&path, &data);
251 strbuf_addstr(sb, real_path(path.buf));
252 ret = 1;
253 } else
254 strbuf_addstr(sb, gitdir);
255 strbuf_release(&data);
256 strbuf_release(&path);
257 return ret;
261 * Test if it looks like we're at a git directory.
262 * We want to see:
264 * - either an objects/ directory _or_ the proper
265 * GIT_OBJECT_DIRECTORY environment variable
266 * - a refs/ directory
267 * - either a HEAD symlink or a HEAD file that is formatted as
268 * a proper "ref:", or a regular file HEAD that has a properly
269 * formatted sha1 object name.
271 int is_git_directory(const char *suspect)
273 struct strbuf path = STRBUF_INIT;
274 int ret = 0;
275 size_t len;
277 /* Check worktree-related signatures */
278 strbuf_addf(&path, "%s/HEAD", suspect);
279 if (validate_headref(path.buf))
280 goto done;
282 strbuf_reset(&path);
283 get_common_dir(&path, suspect);
284 len = path.len;
286 /* Check non-worktree-related signatures */
287 if (getenv(DB_ENVIRONMENT)) {
288 if (access(getenv(DB_ENVIRONMENT), X_OK))
289 goto done;
291 else {
292 strbuf_setlen(&path, len);
293 strbuf_addstr(&path, "/objects");
294 if (access(path.buf, X_OK))
295 goto done;
298 strbuf_setlen(&path, len);
299 strbuf_addstr(&path, "/refs");
300 if (access(path.buf, X_OK))
301 goto done;
303 ret = 1;
304 done:
305 strbuf_release(&path);
306 return ret;
309 int is_inside_git_dir(void)
311 if (inside_git_dir < 0)
312 inside_git_dir = is_inside_dir(get_git_dir());
313 return inside_git_dir;
316 int is_inside_work_tree(void)
318 if (inside_work_tree < 0)
319 inside_work_tree = is_inside_dir(get_git_work_tree());
320 return inside_work_tree;
323 void setup_work_tree(void)
325 const char *work_tree, *git_dir;
326 static int initialized = 0;
328 if (initialized)
329 return;
330 work_tree = get_git_work_tree();
331 git_dir = get_git_dir();
332 if (!is_absolute_path(git_dir))
333 git_dir = real_path(get_git_dir());
334 if (!work_tree || chdir(work_tree))
335 die("This operation must be run in a work tree");
338 * Make sure subsequent git processes find correct worktree
339 * if $GIT_WORK_TREE is set relative
341 if (getenv(GIT_WORK_TREE_ENVIRONMENT))
342 setenv(GIT_WORK_TREE_ENVIRONMENT, ".", 1);
344 set_git_dir(remove_leading_path(git_dir, work_tree));
345 initialized = 1;
348 static int check_repo_format(const char *var, const char *value, void *cb)
350 if (strcmp(var, "core.repositoryformatversion") == 0)
351 repository_format_version = git_config_int(var, value);
352 else if (strcmp(var, "core.sharedrepository") == 0)
353 shared_repository = git_config_perm(var, value);
354 return 0;
357 static int check_repository_format_gently(const char *gitdir, int *nongit_ok)
359 struct strbuf sb = STRBUF_INIT;
360 const char *repo_config;
361 config_fn_t fn;
362 int ret = 0;
364 if (get_common_dir(&sb, gitdir))
365 fn = check_repo_format;
366 else
367 fn = check_repository_format_version;
368 strbuf_addstr(&sb, "/config");
369 repo_config = sb.buf;
372 * git_config() can't be used here because it calls git_pathdup()
373 * to get $GIT_CONFIG/config. That call will make setup_git_env()
374 * set git_dir to ".git".
376 * We are in gitdir setup, no git dir has been found useable yet.
377 * Use a gentler version of git_config() to check if this repo
378 * is a good one.
380 git_config_early(fn, NULL, repo_config);
381 if (GIT_REPO_VERSION < repository_format_version) {
382 if (!nongit_ok)
383 die ("Expected git repo version <= %d, found %d",
384 GIT_REPO_VERSION, repository_format_version);
385 warning("Expected git repo version <= %d, found %d",
386 GIT_REPO_VERSION, repository_format_version);
387 warning("Please upgrade Git");
388 *nongit_ok = -1;
389 ret = -1;
391 strbuf_release(&sb);
392 return ret;
395 static void update_linked_gitdir(const char *gitfile, const char *gitdir)
397 struct strbuf path = STRBUF_INIT;
398 struct stat st;
400 strbuf_addf(&path, "%s/gitfile", gitdir);
401 if (stat(path.buf, &st) || st.st_mtime + 24 * 3600 < time(NULL))
402 write_file(path.buf, 0, "%s\n", gitfile);
403 strbuf_release(&path);
407 * Try to read the location of the git directory from the .git file,
408 * return path to git directory if found.
410 * On failure, if return_error_code is not NULL, return_error_code
411 * will be set to an error code and NULL will be returned. If
412 * return_error_code is NULL the function will die instead (for most
413 * cases).
415 const char *read_gitfile_gently(const char *path, int *return_error_code)
417 const int max_file_size = 1 << 20; /* 1MB */
418 int error_code = 0;
419 char *buf = NULL;
420 char *dir = NULL;
421 const char *slash;
422 struct stat st;
423 int fd;
424 ssize_t len;
426 if (stat(path, &st)) {
427 error_code = READ_GITFILE_ERR_STAT_FAILED;
428 goto cleanup_return;
430 if (!S_ISREG(st.st_mode)) {
431 error_code = READ_GITFILE_ERR_NOT_A_FILE;
432 goto cleanup_return;
434 if (st.st_size > max_file_size) {
435 error_code = READ_GITFILE_ERR_TOO_LARGE;
436 goto cleanup_return;
438 fd = open(path, O_RDONLY);
439 if (fd < 0) {
440 error_code = READ_GITFILE_ERR_OPEN_FAILED;
441 goto cleanup_return;
443 buf = xmalloc(st.st_size + 1);
444 len = read_in_full(fd, buf, st.st_size);
445 close(fd);
446 if (len != st.st_size) {
447 error_code = READ_GITFILE_ERR_READ_FAILED;
448 goto cleanup_return;
450 buf[len] = '\0';
451 if (!starts_with(buf, "gitdir: ")) {
452 error_code = READ_GITFILE_ERR_INVALID_FORMAT;
453 goto cleanup_return;
455 while (buf[len - 1] == '\n' || buf[len - 1] == '\r')
456 len--;
457 if (len < 9) {
458 error_code = READ_GITFILE_ERR_NO_PATH;
459 goto cleanup_return;
461 buf[len] = '\0';
462 dir = buf + 8;
464 if (!is_absolute_path(dir) && (slash = strrchr(path, '/'))) {
465 size_t pathlen = slash+1 - path;
466 size_t dirlen = pathlen + len - 8;
467 dir = xmalloc(dirlen + 1);
468 strncpy(dir, path, pathlen);
469 strncpy(dir + pathlen, buf + 8, len - 8);
470 dir[dirlen] = '\0';
471 free(buf);
472 buf = dir;
474 if (!is_git_directory(dir)) {
475 error_code = READ_GITFILE_ERR_NOT_A_REPO;
476 goto cleanup_return;
478 update_linked_gitdir(path, dir);
479 path = real_path(dir);
481 cleanup_return:
482 if (return_error_code)
483 *return_error_code = error_code;
484 else if (error_code) {
485 switch (error_code) {
486 case READ_GITFILE_ERR_STAT_FAILED:
487 case READ_GITFILE_ERR_NOT_A_FILE:
488 /* non-fatal; follow return path */
489 break;
490 case READ_GITFILE_ERR_OPEN_FAILED:
491 die_errno("Error opening '%s'", path);
492 case READ_GITFILE_ERR_TOO_LARGE:
493 die("Too large to be a .git file: '%s'", path);
494 case READ_GITFILE_ERR_READ_FAILED:
495 die("Error reading %s", path);
496 case READ_GITFILE_ERR_INVALID_FORMAT:
497 die("Invalid gitfile format: %s", path);
498 case READ_GITFILE_ERR_NO_PATH:
499 die("No path in gitfile: %s", path);
500 case READ_GITFILE_ERR_NOT_A_REPO:
501 die("Not a git repository: %s", dir);
502 default:
503 assert(0);
507 free(buf);
508 return error_code ? NULL : path;
511 static const char *setup_explicit_git_dir(const char *gitdirenv,
512 struct strbuf *cwd,
513 int *nongit_ok)
515 const char *work_tree_env = getenv(GIT_WORK_TREE_ENVIRONMENT);
516 const char *worktree;
517 char *gitfile;
518 int offset;
520 if (PATH_MAX - 40 < strlen(gitdirenv))
521 die("'$%s' too big", GIT_DIR_ENVIRONMENT);
523 gitfile = (char*)read_gitfile(gitdirenv);
524 if (gitfile) {
525 gitfile = xstrdup(gitfile);
526 gitdirenv = gitfile;
529 if (!is_git_directory(gitdirenv)) {
530 if (nongit_ok) {
531 *nongit_ok = 1;
532 free(gitfile);
533 return NULL;
535 die("Not a git repository: '%s'", gitdirenv);
538 if (check_repository_format_gently(gitdirenv, nongit_ok)) {
539 free(gitfile);
540 return NULL;
543 /* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */
544 if (work_tree_env)
545 set_git_work_tree(work_tree_env);
546 else if (is_bare_repository_cfg > 0) {
547 if (git_work_tree_cfg) /* #22.2, #30 */
548 die("core.bare and core.worktree do not make sense");
550 /* #18, #26 */
551 set_git_dir(gitdirenv);
552 free(gitfile);
553 return NULL;
555 else if (git_work_tree_cfg) { /* #6, #14 */
556 if (is_absolute_path(git_work_tree_cfg))
557 set_git_work_tree(git_work_tree_cfg);
558 else {
559 char *core_worktree;
560 if (chdir(gitdirenv))
561 die_errno("Could not chdir to '%s'", gitdirenv);
562 if (chdir(git_work_tree_cfg))
563 die_errno("Could not chdir to '%s'", git_work_tree_cfg);
564 core_worktree = xgetcwd();
565 if (chdir(cwd->buf))
566 die_errno("Could not come back to cwd");
567 set_git_work_tree(core_worktree);
568 free(core_worktree);
571 else if (!git_env_bool(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, 1)) {
572 /* #16d */
573 set_git_dir(gitdirenv);
574 free(gitfile);
575 return NULL;
577 else /* #2, #10 */
578 set_git_work_tree(".");
580 /* set_git_work_tree() must have been called by now */
581 worktree = get_git_work_tree();
583 /* both get_git_work_tree() and cwd are already normalized */
584 if (!strcmp(cwd->buf, worktree)) { /* cwd == worktree */
585 set_git_dir(gitdirenv);
586 free(gitfile);
587 return NULL;
590 offset = dir_inside_of(cwd->buf, worktree);
591 if (offset >= 0) { /* cwd inside worktree? */
592 set_git_dir(real_path(gitdirenv));
593 if (chdir(worktree))
594 die_errno("Could not chdir to '%s'", worktree);
595 strbuf_addch(cwd, '/');
596 free(gitfile);
597 return cwd->buf + offset;
600 /* cwd outside worktree */
601 set_git_dir(gitdirenv);
602 free(gitfile);
603 return NULL;
606 static const char *setup_discovered_git_dir(const char *gitdir,
607 struct strbuf *cwd, int offset,
608 int *nongit_ok)
610 if (check_repository_format_gently(gitdir, nongit_ok))
611 return NULL;
613 /* --work-tree is set without --git-dir; use discovered one */
614 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
615 if (offset != cwd->len && !is_absolute_path(gitdir))
616 gitdir = xstrdup(real_path(gitdir));
617 if (chdir(cwd->buf))
618 die_errno("Could not come back to cwd");
619 return setup_explicit_git_dir(gitdir, cwd, nongit_ok);
622 /* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */
623 if (is_bare_repository_cfg > 0) {
624 set_git_dir(offset == cwd->len ? gitdir : real_path(gitdir));
625 if (chdir(cwd->buf))
626 die_errno("Could not come back to cwd");
627 return NULL;
630 /* #0, #1, #5, #8, #9, #12, #13 */
631 set_git_work_tree(".");
632 if (strcmp(gitdir, DEFAULT_GIT_DIR_ENVIRONMENT))
633 set_git_dir(gitdir);
634 inside_git_dir = 0;
635 inside_work_tree = 1;
636 if (offset == cwd->len)
637 return NULL;
639 /* Make "offset" point to past the '/', and add a '/' at the end */
640 offset++;
641 strbuf_addch(cwd, '/');
642 return cwd->buf + offset;
645 /* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */
646 static const char *setup_bare_git_dir(struct strbuf *cwd, int offset,
647 int *nongit_ok)
649 int root_len;
651 if (check_repository_format_gently(".", nongit_ok))
652 return NULL;
654 setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, "0", 1);
656 /* --work-tree is set without --git-dir; use discovered one */
657 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
658 const char *gitdir;
660 gitdir = offset == cwd->len ? "." : xmemdupz(cwd->buf, offset);
661 if (chdir(cwd->buf))
662 die_errno("Could not come back to cwd");
663 return setup_explicit_git_dir(gitdir, cwd, nongit_ok);
666 inside_git_dir = 1;
667 inside_work_tree = 0;
668 if (offset != cwd->len) {
669 if (chdir(cwd->buf))
670 die_errno("Cannot come back to cwd");
671 root_len = offset_1st_component(cwd->buf);
672 strbuf_setlen(cwd, offset > root_len ? offset : root_len);
673 set_git_dir(cwd->buf);
675 else
676 set_git_dir(".");
677 return NULL;
680 static const char *setup_nongit(const char *cwd, int *nongit_ok)
682 if (!nongit_ok)
683 die("Not a git repository (or any of the parent directories): %s", DEFAULT_GIT_DIR_ENVIRONMENT);
684 if (chdir(cwd))
685 die_errno("Cannot come back to cwd");
686 *nongit_ok = 1;
687 return NULL;
690 static dev_t get_device_or_die(const char *path, const char *prefix, int prefix_len)
692 struct stat buf;
693 if (stat(path, &buf)) {
694 die_errno("failed to stat '%*s%s%s'",
695 prefix_len,
696 prefix ? prefix : "",
697 prefix ? "/" : "", path);
699 return buf.st_dev;
703 * A "string_list_each_func_t" function that canonicalizes an entry
704 * from GIT_CEILING_DIRECTORIES using real_path_if_valid(), or
705 * discards it if unusable. The presence of an empty entry in
706 * GIT_CEILING_DIRECTORIES turns off canonicalization for all
707 * subsequent entries.
709 static int canonicalize_ceiling_entry(struct string_list_item *item,
710 void *cb_data)
712 int *empty_entry_found = cb_data;
713 char *ceil = item->string;
715 if (!*ceil) {
716 *empty_entry_found = 1;
717 return 0;
718 } else if (!is_absolute_path(ceil)) {
719 return 0;
720 } else if (*empty_entry_found) {
721 /* Keep entry but do not canonicalize it */
722 return 1;
723 } else {
724 const char *real_path = real_path_if_valid(ceil);
725 if (!real_path)
726 return 0;
727 free(item->string);
728 item->string = xstrdup(real_path);
729 return 1;
734 * We cannot decide in this function whether we are in the work tree or
735 * not, since the config can only be read _after_ this function was called.
737 static const char *setup_git_directory_gently_1(int *nongit_ok)
739 const char *env_ceiling_dirs = getenv(CEILING_DIRECTORIES_ENVIRONMENT);
740 struct string_list ceiling_dirs = STRING_LIST_INIT_DUP;
741 static struct strbuf cwd = STRBUF_INIT;
742 const char *gitdirenv, *ret;
743 char *gitfile;
744 int offset, offset_parent, ceil_offset = -1;
745 dev_t current_device = 0;
746 int one_filesystem = 1;
749 * We may have read an incomplete configuration before
750 * setting-up the git directory. If so, clear the cache so
751 * that the next queries to the configuration reload complete
752 * configuration (including the per-repo config file that we
753 * ignored previously).
755 git_config_clear();
758 * Let's assume that we are in a git repository.
759 * If it turns out later that we are somewhere else, the value will be
760 * updated accordingly.
762 if (nongit_ok)
763 *nongit_ok = 0;
765 if (strbuf_getcwd(&cwd))
766 die_errno("Unable to read current working directory");
767 offset = cwd.len;
770 * If GIT_DIR is set explicitly, we're not going
771 * to do any discovery, but we still do repository
772 * validation.
774 gitdirenv = getenv(GIT_DIR_ENVIRONMENT);
775 if (gitdirenv)
776 return setup_explicit_git_dir(gitdirenv, &cwd, nongit_ok);
778 if (env_ceiling_dirs) {
779 int empty_entry_found = 0;
781 string_list_split(&ceiling_dirs, env_ceiling_dirs, PATH_SEP, -1);
782 filter_string_list(&ceiling_dirs, 0,
783 canonicalize_ceiling_entry, &empty_entry_found);
784 ceil_offset = longest_ancestor_length(cwd.buf, &ceiling_dirs);
785 string_list_clear(&ceiling_dirs, 0);
788 if (ceil_offset < 0 && has_dos_drive_prefix(cwd.buf))
789 ceil_offset = 1;
792 * Test in the following order (relative to the cwd):
793 * - .git (file containing "gitdir: <path>")
794 * - .git/
795 * - ./ (bare)
796 * - ../.git
797 * - ../.git/
798 * - ../ (bare)
799 * - ../../.git/
800 * etc.
802 one_filesystem = !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM", 0);
803 if (one_filesystem)
804 current_device = get_device_or_die(".", NULL, 0);
805 for (;;) {
806 gitfile = (char*)read_gitfile(DEFAULT_GIT_DIR_ENVIRONMENT);
807 if (gitfile)
808 gitdirenv = gitfile = xstrdup(gitfile);
809 else {
810 if (is_git_directory(DEFAULT_GIT_DIR_ENVIRONMENT))
811 gitdirenv = DEFAULT_GIT_DIR_ENVIRONMENT;
814 if (gitdirenv) {
815 ret = setup_discovered_git_dir(gitdirenv,
816 &cwd, offset,
817 nongit_ok);
818 free(gitfile);
819 return ret;
821 free(gitfile);
823 if (is_git_directory("."))
824 return setup_bare_git_dir(&cwd, offset, nongit_ok);
826 offset_parent = offset;
827 while (--offset_parent > ceil_offset && cwd.buf[offset_parent] != '/');
828 if (offset_parent <= ceil_offset)
829 return setup_nongit(cwd.buf, nongit_ok);
830 if (one_filesystem) {
831 dev_t parent_device = get_device_or_die("..", cwd.buf,
832 offset);
833 if (parent_device != current_device) {
834 if (nongit_ok) {
835 if (chdir(cwd.buf))
836 die_errno("Cannot come back to cwd");
837 *nongit_ok = 1;
838 return NULL;
840 strbuf_setlen(&cwd, offset);
841 die("Not a git repository (or any parent up to mount point %s)\n"
842 "Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).",
843 cwd.buf);
846 if (chdir("..")) {
847 strbuf_setlen(&cwd, offset);
848 die_errno("Cannot change to '%s/..'", cwd.buf);
850 offset = offset_parent;
854 const char *setup_git_directory_gently(int *nongit_ok)
856 const char *prefix;
858 prefix = setup_git_directory_gently_1(nongit_ok);
859 if (prefix)
860 setenv(GIT_PREFIX_ENVIRONMENT, prefix, 1);
861 else
862 setenv(GIT_PREFIX_ENVIRONMENT, "", 1);
864 if (startup_info) {
865 startup_info->have_repository = !nongit_ok || !*nongit_ok;
866 startup_info->prefix = prefix;
868 return prefix;
871 int git_config_perm(const char *var, const char *value)
873 int i;
874 char *endptr;
876 if (value == NULL)
877 return PERM_GROUP;
879 if (!strcmp(value, "umask"))
880 return PERM_UMASK;
881 if (!strcmp(value, "group"))
882 return PERM_GROUP;
883 if (!strcmp(value, "all") ||
884 !strcmp(value, "world") ||
885 !strcmp(value, "everybody"))
886 return PERM_EVERYBODY;
888 /* Parse octal numbers */
889 i = strtol(value, &endptr, 8);
891 /* If not an octal number, maybe true/false? */
892 if (*endptr != 0)
893 return git_config_bool(var, value) ? PERM_GROUP : PERM_UMASK;
896 * Treat values 0, 1 and 2 as compatibility cases, otherwise it is
897 * a chmod value to restrict to.
899 switch (i) {
900 case PERM_UMASK: /* 0 */
901 return PERM_UMASK;
902 case OLD_PERM_GROUP: /* 1 */
903 return PERM_GROUP;
904 case OLD_PERM_EVERYBODY: /* 2 */
905 return PERM_EVERYBODY;
908 /* A filemode value was given: 0xxx */
910 if ((i & 0600) != 0600)
911 die("Problem with core.sharedRepository filemode value "
912 "(0%.3o).\nThe owner of files must always have "
913 "read and write permissions.", i);
916 * Mask filemode value. Others can not get write permission.
917 * x flags for directories are handled separately.
919 return -(i & 0666);
922 int check_repository_format_version(const char *var, const char *value, void *cb)
924 int ret = check_repo_format(var, value, cb);
925 if (ret)
926 return ret;
927 if (strcmp(var, "core.bare") == 0) {
928 is_bare_repository_cfg = git_config_bool(var, value);
929 if (is_bare_repository_cfg == 1)
930 inside_work_tree = -1;
931 } else if (strcmp(var, "core.worktree") == 0) {
932 if (!value)
933 return config_error_nonbool(var);
934 free(git_work_tree_cfg);
935 git_work_tree_cfg = xstrdup(value);
936 inside_work_tree = -1;
938 return 0;
941 int check_repository_format(void)
943 return check_repository_format_gently(get_git_dir(), NULL);
947 * Returns the "prefix", a path to the current working directory
948 * relative to the work tree root, or NULL, if the current working
949 * directory is not a strict subdirectory of the work tree root. The
950 * prefix always ends with a '/' character.
952 const char *setup_git_directory(void)
954 return setup_git_directory_gently(NULL);
957 const char *resolve_gitdir(const char *suspect)
959 if (is_git_directory(suspect))
960 return suspect;
961 return read_gitfile(suspect);
964 /* if any standard file descriptor is missing open it to /dev/null */
965 void sanitize_stdfds(void)
967 int fd = open("/dev/null", O_RDWR, 0);
968 while (fd != -1 && fd < 2)
969 fd = dup(fd);
970 if (fd == -1)
971 die_errno("open /dev/null or dup failed");
972 if (fd > 2)
973 close(fd);
976 int daemonize(void)
978 #ifdef NO_POSIX_GOODIES
979 errno = ENOSYS;
980 return -1;
981 #else
982 switch (fork()) {
983 case 0:
984 break;
985 case -1:
986 die_errno("fork failed");
987 default:
988 exit(0);
990 if (setsid() == -1)
991 die_errno("setsid failed");
992 close(0);
993 close(1);
994 close(2);
995 sanitize_stdfds();
996 return 0;
997 #endif