sha1_name.c: resolve ref: to ref:HEAD
[git/mjg.git] / setup.c
blobd2335a85c6c1c15ca358f894470afe7db8cf3448
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 static char *prefix_path_gently(const char *prefix, int len, const char *path)
10 const char *orig = path;
11 char *sanitized;
12 if (is_absolute_path(orig)) {
13 const char *temp = real_path(path);
14 sanitized = xmalloc(len + strlen(temp) + 1);
15 strcpy(sanitized, temp);
16 } else {
17 sanitized = xmalloc(len + strlen(path) + 1);
18 if (len)
19 memcpy(sanitized, prefix, len);
20 strcpy(sanitized + len, path);
22 if (normalize_path_copy(sanitized, sanitized))
23 goto error_out;
24 if (is_absolute_path(orig)) {
25 size_t root_len, len, total;
26 const char *work_tree = get_git_work_tree();
27 if (!work_tree)
28 goto error_out;
29 len = strlen(work_tree);
30 root_len = offset_1st_component(work_tree);
31 total = strlen(sanitized) + 1;
32 if (strncmp(sanitized, work_tree, len) ||
33 (len > root_len && sanitized[len] != '\0' && sanitized[len] != '/')) {
34 error_out:
35 free(sanitized);
36 return NULL;
38 if (sanitized[len] == '/')
39 len++;
40 memmove(sanitized, sanitized + len, total - len);
42 return sanitized;
45 char *prefix_path(const char *prefix, int len, const char *path)
47 char *r = prefix_path_gently(prefix, len, path);
48 if (!r)
49 die("'%s' is outside repository", path);
50 return r;
53 int path_inside_repo(const char *prefix, const char *path)
55 int len = prefix ? strlen(prefix) : 0;
56 char *r = prefix_path_gently(prefix, len, path);
57 if (r) {
58 free(r);
59 return 1;
61 return 0;
64 int check_filename(const char *prefix, const char *arg)
66 const char *name;
67 struct stat st;
69 if (!prefixcmp(arg, ":/")) {
70 if (arg[2] == '\0') /* ":/" is root dir, always exists */
71 return 1;
72 name = arg + 2;
73 } else if (prefix)
74 name = prefix_filename(prefix, strlen(prefix), arg);
75 else
76 name = arg;
77 if (!lstat(name, &st))
78 return 1; /* file exists */
79 if (errno == ENOENT || errno == ENOTDIR)
80 return 0; /* file does not exist */
81 die_errno("failed to stat '%s'", arg);
84 static void NORETURN die_verify_filename(const char *prefix,
85 const char *arg,
86 int diagnose_misspelt_rev)
88 if (!diagnose_misspelt_rev)
89 die("%s: no such path in the working tree.\n"
90 "Use 'git <command> -- <path>...' to specify paths that do not exist locally.",
91 arg);
93 * Saying "'(icase)foo' does not exist in the index" when the
94 * user gave us ":(icase)foo" is just stupid. A magic pathspec
95 * begins with a colon and is followed by a non-alnum; do not
96 * let maybe_die_on_misspelt_object_name() even trigger.
98 if (!(arg[0] == ':' && !isalnum(arg[1])))
99 maybe_die_on_misspelt_object_name(arg, prefix);
101 /* ... or fall back the most general message. */
102 die("ambiguous argument '%s': unknown revision or path not in the working tree.\n"
103 "Use '--' to separate paths from revisions, like this:\n"
104 "'git <command> [<revision>...] -- [<file>...]'", arg);
109 * Verify a filename that we got as an argument for a pathspec
110 * entry. Note that a filename that begins with "-" never verifies
111 * as true, because even if such a filename were to exist, we want
112 * it to be preceded by the "--" marker (or we want the user to
113 * use a format like "./-filename")
115 * The "diagnose_misspelt_rev" is used to provide a user-friendly
116 * diagnosis when dying upon finding that "name" is not a pathname.
117 * If set to 1, the diagnosis will try to diagnose "name" as an
118 * invalid object name (e.g. HEAD:foo). If set to 0, the diagnosis
119 * will only complain about an inexisting file.
121 * This function is typically called to check that a "file or rev"
122 * argument is unambiguous. In this case, the caller will want
123 * diagnose_misspelt_rev == 1 when verifying the first non-rev
124 * argument (which could have been a revision), and
125 * diagnose_misspelt_rev == 0 for the next ones (because we already
126 * saw a filename, there's not ambiguity anymore).
128 void verify_filename(const char *prefix,
129 const char *arg,
130 int diagnose_misspelt_rev)
132 if (*arg == '-')
133 die("bad flag '%s' used after filename", arg);
134 if (check_filename(prefix, arg))
135 return;
136 die_verify_filename(prefix, arg, diagnose_misspelt_rev);
140 * Opposite of the above: the command line did not have -- marker
141 * and we parsed the arg as a refname. It should not be interpretable
142 * as a filename.
144 void verify_non_filename(const char *prefix, const char *arg)
146 if (!is_inside_work_tree() || is_inside_git_dir())
147 return;
148 if (*arg == '-')
149 return; /* flag */
150 if (!check_filename(prefix, arg))
151 return;
152 die("ambiguous argument '%s': both revision and filename\n"
153 "Use '--' to separate paths from revisions, like this:\n"
154 "'git <command> [<revision>...] -- [<file>...]'", arg);
158 * Magic pathspec
160 * NEEDSWORK: These need to be moved to dir.h or even to a new
161 * pathspec.h when we restructure get_pathspec() users to use the
162 * "struct pathspec" interface.
164 * Possible future magic semantics include stuff like:
166 * { PATHSPEC_NOGLOB, '!', "noglob" },
167 * { PATHSPEC_ICASE, '\0', "icase" },
168 * { PATHSPEC_RECURSIVE, '*', "recursive" },
169 * { PATHSPEC_REGEXP, '\0', "regexp" },
172 #define PATHSPEC_FROMTOP (1<<0)
174 static struct pathspec_magic {
175 unsigned bit;
176 char mnemonic; /* this cannot be ':'! */
177 const char *name;
178 } pathspec_magic[] = {
179 { PATHSPEC_FROMTOP, '/', "top" },
183 * Take an element of a pathspec and check for magic signatures.
184 * Append the result to the prefix.
186 * For now, we only parse the syntax and throw out anything other than
187 * "top" magic.
189 * NEEDSWORK: This needs to be rewritten when we start migrating
190 * get_pathspec() users to use the "struct pathspec" interface. For
191 * example, a pathspec element may be marked as case-insensitive, but
192 * the prefix part must always match literally, and a single stupid
193 * string cannot express such a case.
195 static const char *prefix_pathspec(const char *prefix, int prefixlen, const char *elt)
197 unsigned magic = 0;
198 const char *copyfrom = elt;
199 int i;
201 if (elt[0] != ':') {
202 ; /* nothing to do */
203 } else if (elt[1] == '(') {
204 /* longhand */
205 const char *nextat;
206 for (copyfrom = elt + 2;
207 *copyfrom && *copyfrom != ')';
208 copyfrom = nextat) {
209 size_t len = strcspn(copyfrom, ",)");
210 if (copyfrom[len] == '\0')
211 nextat = copyfrom + len;
212 else if (copyfrom[len] == ')')
213 nextat = copyfrom + len;
214 else if (copyfrom[len] == ',')
215 nextat = copyfrom + len + 1;
216 if (!len)
217 continue;
218 for (i = 0; i < ARRAY_SIZE(pathspec_magic); i++)
219 if (strlen(pathspec_magic[i].name) == len &&
220 !strncmp(pathspec_magic[i].name, copyfrom, len)) {
221 magic |= pathspec_magic[i].bit;
222 break;
224 if (ARRAY_SIZE(pathspec_magic) <= i)
225 die("Invalid pathspec magic '%.*s' in '%s'",
226 (int) len, copyfrom, elt);
228 if (*copyfrom != ')')
229 die("Missing ')' at the end of pathspec magic in '%s'", elt);
230 copyfrom++;
231 } else {
232 /* shorthand */
233 for (copyfrom = elt + 1;
234 *copyfrom && *copyfrom != ':';
235 copyfrom++) {
236 char ch = *copyfrom;
238 if (!is_pathspec_magic(ch))
239 break;
240 for (i = 0; i < ARRAY_SIZE(pathspec_magic); i++)
241 if (pathspec_magic[i].mnemonic == ch) {
242 magic |= pathspec_magic[i].bit;
243 break;
245 if (ARRAY_SIZE(pathspec_magic) <= i)
246 die("Unimplemented pathspec magic '%c' in '%s'",
247 ch, elt);
249 if (*copyfrom == ':')
250 copyfrom++;
253 if (magic & PATHSPEC_FROMTOP)
254 return xstrdup(copyfrom);
255 else
256 return prefix_path(prefix, prefixlen, copyfrom);
260 * N.B. get_pathspec() is deprecated in favor of the "struct pathspec"
261 * based interface - see pathspec_magic above.
263 * Arguments:
264 * - prefix - a path relative to the root of the working tree
265 * - pathspec - a list of paths underneath the prefix path
267 * Iterates over pathspec, prepending each path with prefix,
268 * and return the resulting list.
270 * If pathspec is empty, return a singleton list containing prefix.
272 * If pathspec and prefix are both empty, return an empty list.
274 * This is typically used by built-in commands such as add.c, in order
275 * to normalize argv arguments provided to the built-in into a list of
276 * paths to process, all relative to the root of the working tree.
278 const char **get_pathspec(const char *prefix, const char **pathspec)
280 const char *entry = *pathspec;
281 const char **src, **dst;
282 int prefixlen;
284 if (!prefix && !entry)
285 return NULL;
287 if (!entry) {
288 static const char *spec[2];
289 spec[0] = prefix;
290 spec[1] = NULL;
291 return spec;
294 /* Otherwise we have to re-write the entries.. */
295 src = pathspec;
296 dst = pathspec;
297 prefixlen = prefix ? strlen(prefix) : 0;
298 while (*src) {
299 *(dst++) = prefix_pathspec(prefix, prefixlen, *src);
300 src++;
302 *dst = NULL;
303 if (!*pathspec)
304 return NULL;
305 return pathspec;
309 * Test if it looks like we're at a git directory.
310 * We want to see:
312 * - either an objects/ directory _or_ the proper
313 * GIT_OBJECT_DIRECTORY environment variable
314 * - a refs/ directory
315 * - either a HEAD symlink or a HEAD file that is formatted as
316 * a proper "ref:", or a regular file HEAD that has a properly
317 * formatted sha1 object name.
319 int is_git_directory(const char *suspect)
321 char path[PATH_MAX];
322 size_t len = strlen(suspect);
324 if (PATH_MAX <= len + strlen("/objects"))
325 die("Too long path: %.*s", 60, suspect);
326 strcpy(path, suspect);
327 if (getenv(DB_ENVIRONMENT)) {
328 if (access(getenv(DB_ENVIRONMENT), X_OK))
329 return 0;
331 else {
332 strcpy(path + len, "/objects");
333 if (access(path, X_OK))
334 return 0;
337 strcpy(path + len, "/refs");
338 if (access(path, X_OK))
339 return 0;
341 strcpy(path + len, "/HEAD");
342 if (validate_headref(path))
343 return 0;
345 return 1;
348 int is_inside_git_dir(void)
350 if (inside_git_dir < 0)
351 inside_git_dir = is_inside_dir(get_git_dir());
352 return inside_git_dir;
355 int is_inside_work_tree(void)
357 if (inside_work_tree < 0)
358 inside_work_tree = is_inside_dir(get_git_work_tree());
359 return inside_work_tree;
362 void setup_work_tree(void)
364 const char *work_tree, *git_dir;
365 static int initialized = 0;
367 if (initialized)
368 return;
369 work_tree = get_git_work_tree();
370 git_dir = get_git_dir();
371 if (!is_absolute_path(git_dir))
372 git_dir = real_path(get_git_dir());
373 if (!work_tree || chdir(work_tree))
374 die("This operation must be run in a work tree");
377 * Make sure subsequent git processes find correct worktree
378 * if $GIT_WORK_TREE is set relative
380 if (getenv(GIT_WORK_TREE_ENVIRONMENT))
381 setenv(GIT_WORK_TREE_ENVIRONMENT, ".", 1);
383 set_git_dir(relative_path(git_dir, work_tree));
384 initialized = 1;
387 static int check_repository_format_gently(const char *gitdir, int *nongit_ok)
389 char repo_config[PATH_MAX+1];
392 * git_config() can't be used here because it calls git_pathdup()
393 * to get $GIT_CONFIG/config. That call will make setup_git_env()
394 * set git_dir to ".git".
396 * We are in gitdir setup, no git dir has been found useable yet.
397 * Use a gentler version of git_config() to check if this repo
398 * is a good one.
400 snprintf(repo_config, PATH_MAX, "%s/config", gitdir);
401 git_config_early(check_repository_format_version, NULL, repo_config);
402 if (GIT_REPO_VERSION < repository_format_version) {
403 if (!nongit_ok)
404 die ("Expected git repo version <= %d, found %d",
405 GIT_REPO_VERSION, repository_format_version);
406 warning("Expected git repo version <= %d, found %d",
407 GIT_REPO_VERSION, repository_format_version);
408 warning("Please upgrade Git");
409 *nongit_ok = -1;
410 return -1;
412 return 0;
416 * Try to read the location of the git directory from the .git file,
417 * return path to git directory if found.
419 const char *read_gitfile(const char *path)
421 char *buf;
422 char *dir;
423 const char *slash;
424 struct stat st;
425 int fd;
426 ssize_t len;
428 if (stat(path, &st))
429 return NULL;
430 if (!S_ISREG(st.st_mode))
431 return NULL;
432 fd = open(path, O_RDONLY);
433 if (fd < 0)
434 die_errno("Error opening '%s'", path);
435 buf = xmalloc(st.st_size + 1);
436 len = read_in_full(fd, buf, st.st_size);
437 close(fd);
438 if (len != st.st_size)
439 die("Error reading %s", path);
440 buf[len] = '\0';
441 if (prefixcmp(buf, "gitdir: "))
442 die("Invalid gitfile format: %s", path);
443 while (buf[len - 1] == '\n' || buf[len - 1] == '\r')
444 len--;
445 if (len < 9)
446 die("No path in gitfile: %s", path);
447 buf[len] = '\0';
448 dir = buf + 8;
450 if (!is_absolute_path(dir) && (slash = strrchr(path, '/'))) {
451 size_t pathlen = slash+1 - path;
452 size_t dirlen = pathlen + len - 8;
453 dir = xmalloc(dirlen + 1);
454 strncpy(dir, path, pathlen);
455 strncpy(dir + pathlen, buf + 8, len - 8);
456 dir[dirlen] = '\0';
457 free(buf);
458 buf = dir;
461 if (!is_git_directory(dir))
462 die("Not a git repository: %s", dir);
463 path = real_path(dir);
465 free(buf);
466 return path;
469 static const char *setup_explicit_git_dir(const char *gitdirenv,
470 char *cwd, int len,
471 int *nongit_ok)
473 const char *work_tree_env = getenv(GIT_WORK_TREE_ENVIRONMENT);
474 const char *worktree;
475 char *gitfile;
476 int offset;
478 if (PATH_MAX - 40 < strlen(gitdirenv))
479 die("'$%s' too big", GIT_DIR_ENVIRONMENT);
481 gitfile = (char*)read_gitfile(gitdirenv);
482 if (gitfile) {
483 gitfile = xstrdup(gitfile);
484 gitdirenv = gitfile;
487 if (!is_git_directory(gitdirenv)) {
488 if (nongit_ok) {
489 *nongit_ok = 1;
490 free(gitfile);
491 return NULL;
493 die("Not a git repository: '%s'", gitdirenv);
496 if (check_repository_format_gently(gitdirenv, nongit_ok)) {
497 free(gitfile);
498 return NULL;
501 /* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */
502 if (work_tree_env)
503 set_git_work_tree(work_tree_env);
504 else if (is_bare_repository_cfg > 0) {
505 if (git_work_tree_cfg) /* #22.2, #30 */
506 die("core.bare and core.worktree do not make sense");
508 /* #18, #26 */
509 set_git_dir(gitdirenv);
510 free(gitfile);
511 return NULL;
513 else if (git_work_tree_cfg) { /* #6, #14 */
514 if (is_absolute_path(git_work_tree_cfg))
515 set_git_work_tree(git_work_tree_cfg);
516 else {
517 char core_worktree[PATH_MAX];
518 if (chdir(gitdirenv))
519 die_errno("Could not chdir to '%s'", gitdirenv);
520 if (chdir(git_work_tree_cfg))
521 die_errno("Could not chdir to '%s'", git_work_tree_cfg);
522 if (!getcwd(core_worktree, PATH_MAX))
523 die_errno("Could not get directory '%s'", git_work_tree_cfg);
524 if (chdir(cwd))
525 die_errno("Could not come back to cwd");
526 set_git_work_tree(core_worktree);
529 else if (!git_env_bool(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, 1)) {
530 /* #16d */
531 set_git_dir(gitdirenv);
532 free(gitfile);
533 return NULL;
535 else /* #2, #10 */
536 set_git_work_tree(".");
538 /* set_git_work_tree() must have been called by now */
539 worktree = get_git_work_tree();
541 /* both get_git_work_tree() and cwd are already normalized */
542 if (!strcmp(cwd, worktree)) { /* cwd == worktree */
543 set_git_dir(gitdirenv);
544 free(gitfile);
545 return NULL;
548 offset = dir_inside_of(cwd, worktree);
549 if (offset >= 0) { /* cwd inside worktree? */
550 set_git_dir(real_path(gitdirenv));
551 if (chdir(worktree))
552 die_errno("Could not chdir to '%s'", worktree);
553 cwd[len++] = '/';
554 cwd[len] = '\0';
555 free(gitfile);
556 return cwd + offset;
559 /* cwd outside worktree */
560 set_git_dir(gitdirenv);
561 free(gitfile);
562 return NULL;
565 static const char *setup_discovered_git_dir(const char *gitdir,
566 char *cwd, int offset, int len,
567 int *nongit_ok)
569 if (check_repository_format_gently(gitdir, nongit_ok))
570 return NULL;
572 /* --work-tree is set without --git-dir; use discovered one */
573 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
574 if (offset != len && !is_absolute_path(gitdir))
575 gitdir = xstrdup(real_path(gitdir));
576 if (chdir(cwd))
577 die_errno("Could not come back to cwd");
578 return setup_explicit_git_dir(gitdir, cwd, len, nongit_ok);
581 /* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */
582 if (is_bare_repository_cfg > 0) {
583 set_git_dir(offset == len ? gitdir : real_path(gitdir));
584 if (chdir(cwd))
585 die_errno("Could not come back to cwd");
586 return NULL;
589 /* #0, #1, #5, #8, #9, #12, #13 */
590 set_git_work_tree(".");
591 if (strcmp(gitdir, DEFAULT_GIT_DIR_ENVIRONMENT))
592 set_git_dir(gitdir);
593 inside_git_dir = 0;
594 inside_work_tree = 1;
595 if (offset == len)
596 return NULL;
598 /* Make "offset" point to past the '/', and add a '/' at the end */
599 offset++;
600 cwd[len++] = '/';
601 cwd[len] = 0;
602 return cwd + offset;
605 /* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */
606 static const char *setup_bare_git_dir(char *cwd, int offset, int len, int *nongit_ok)
608 int root_len;
610 if (check_repository_format_gently(".", nongit_ok))
611 return NULL;
613 setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, "0", 1);
615 /* --work-tree is set without --git-dir; use discovered one */
616 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
617 const char *gitdir;
619 gitdir = offset == len ? "." : xmemdupz(cwd, offset);
620 if (chdir(cwd))
621 die_errno("Could not come back to cwd");
622 return setup_explicit_git_dir(gitdir, cwd, len, nongit_ok);
625 inside_git_dir = 1;
626 inside_work_tree = 0;
627 if (offset != len) {
628 if (chdir(cwd))
629 die_errno("Cannot come back to cwd");
630 root_len = offset_1st_component(cwd);
631 cwd[offset > root_len ? offset : root_len] = '\0';
632 set_git_dir(cwd);
634 else
635 set_git_dir(".");
636 return NULL;
639 static const char *setup_nongit(const char *cwd, int *nongit_ok)
641 if (!nongit_ok)
642 die("Not a git repository (or any of the parent directories): %s", DEFAULT_GIT_DIR_ENVIRONMENT);
643 if (chdir(cwd))
644 die_errno("Cannot come back to cwd");
645 *nongit_ok = 1;
646 return NULL;
649 static dev_t get_device_or_die(const char *path, const char *prefix, int prefix_len)
651 struct stat buf;
652 if (stat(path, &buf)) {
653 die_errno("failed to stat '%*s%s%s'",
654 prefix_len,
655 prefix ? prefix : "",
656 prefix ? "/" : "", path);
658 return buf.st_dev;
662 * A "string_list_each_func_t" function that canonicalizes an entry
663 * from GIT_CEILING_DIRECTORIES using real_path_if_valid(), or
664 * discards it if unusable. The presence of an empty entry in
665 * GIT_CEILING_DIRECTORIES turns off canonicalization for all
666 * subsequent entries.
668 static int canonicalize_ceiling_entry(struct string_list_item *item,
669 void *cb_data)
671 int *empty_entry_found = cb_data;
672 char *ceil = item->string;
674 if (!*ceil) {
675 *empty_entry_found = 1;
676 return 0;
677 } else if (!is_absolute_path(ceil)) {
678 return 0;
679 } else if (*empty_entry_found) {
680 /* Keep entry but do not canonicalize it */
681 return 1;
682 } else {
683 const char *real_path = real_path_if_valid(ceil);
684 if (!real_path)
685 return 0;
686 free(item->string);
687 item->string = xstrdup(real_path);
688 return 1;
693 * We cannot decide in this function whether we are in the work tree or
694 * not, since the config can only be read _after_ this function was called.
696 static const char *setup_git_directory_gently_1(int *nongit_ok)
698 const char *env_ceiling_dirs = getenv(CEILING_DIRECTORIES_ENVIRONMENT);
699 struct string_list ceiling_dirs = STRING_LIST_INIT_DUP;
700 static char cwd[PATH_MAX+1];
701 const char *gitdirenv, *ret;
702 char *gitfile;
703 int len, offset, offset_parent, ceil_offset = -1;
704 dev_t current_device = 0;
705 int one_filesystem = 1;
708 * Let's assume that we are in a git repository.
709 * If it turns out later that we are somewhere else, the value will be
710 * updated accordingly.
712 if (nongit_ok)
713 *nongit_ok = 0;
715 if (!getcwd(cwd, sizeof(cwd)-1))
716 die_errno("Unable to read current working directory");
717 offset = len = strlen(cwd);
720 * If GIT_DIR is set explicitly, we're not going
721 * to do any discovery, but we still do repository
722 * validation.
724 gitdirenv = getenv(GIT_DIR_ENVIRONMENT);
725 if (gitdirenv)
726 return setup_explicit_git_dir(gitdirenv, cwd, len, nongit_ok);
728 if (env_ceiling_dirs) {
729 int empty_entry_found = 0;
731 string_list_split(&ceiling_dirs, env_ceiling_dirs, PATH_SEP, -1);
732 filter_string_list(&ceiling_dirs, 0,
733 canonicalize_ceiling_entry, &empty_entry_found);
734 ceil_offset = longest_ancestor_length(cwd, &ceiling_dirs);
735 string_list_clear(&ceiling_dirs, 0);
738 if (ceil_offset < 0 && has_dos_drive_prefix(cwd))
739 ceil_offset = 1;
742 * Test in the following order (relative to the cwd):
743 * - .git (file containing "gitdir: <path>")
744 * - .git/
745 * - ./ (bare)
746 * - ../.git
747 * - ../.git/
748 * - ../ (bare)
749 * - ../../.git/
750 * etc.
752 one_filesystem = !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM", 0);
753 if (one_filesystem)
754 current_device = get_device_or_die(".", NULL, 0);
755 for (;;) {
756 gitfile = (char*)read_gitfile(DEFAULT_GIT_DIR_ENVIRONMENT);
757 if (gitfile)
758 gitdirenv = gitfile = xstrdup(gitfile);
759 else {
760 if (is_git_directory(DEFAULT_GIT_DIR_ENVIRONMENT))
761 gitdirenv = DEFAULT_GIT_DIR_ENVIRONMENT;
764 if (gitdirenv) {
765 ret = setup_discovered_git_dir(gitdirenv,
766 cwd, offset, len,
767 nongit_ok);
768 free(gitfile);
769 return ret;
771 free(gitfile);
773 if (is_git_directory("."))
774 return setup_bare_git_dir(cwd, offset, len, nongit_ok);
776 offset_parent = offset;
777 while (--offset_parent > ceil_offset && cwd[offset_parent] != '/');
778 if (offset_parent <= ceil_offset)
779 return setup_nongit(cwd, nongit_ok);
780 if (one_filesystem) {
781 dev_t parent_device = get_device_or_die("..", cwd, offset);
782 if (parent_device != current_device) {
783 if (nongit_ok) {
784 if (chdir(cwd))
785 die_errno("Cannot come back to cwd");
786 *nongit_ok = 1;
787 return NULL;
789 cwd[offset] = '\0';
790 die("Not a git repository (or any parent up to mount point %s)\n"
791 "Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).", cwd);
794 if (chdir("..")) {
795 cwd[offset] = '\0';
796 die_errno("Cannot change to '%s/..'", cwd);
798 offset = offset_parent;
802 const char *setup_git_directory_gently(int *nongit_ok)
804 const char *prefix;
806 prefix = setup_git_directory_gently_1(nongit_ok);
807 if (prefix)
808 setenv(GIT_PREFIX_ENVIRONMENT, prefix, 1);
809 else
810 setenv(GIT_PREFIX_ENVIRONMENT, "", 1);
812 if (startup_info) {
813 startup_info->have_repository = !nongit_ok || !*nongit_ok;
814 startup_info->prefix = prefix;
816 return prefix;
819 int git_config_perm(const char *var, const char *value)
821 int i;
822 char *endptr;
824 if (value == NULL)
825 return PERM_GROUP;
827 if (!strcmp(value, "umask"))
828 return PERM_UMASK;
829 if (!strcmp(value, "group"))
830 return PERM_GROUP;
831 if (!strcmp(value, "all") ||
832 !strcmp(value, "world") ||
833 !strcmp(value, "everybody"))
834 return PERM_EVERYBODY;
836 /* Parse octal numbers */
837 i = strtol(value, &endptr, 8);
839 /* If not an octal number, maybe true/false? */
840 if (*endptr != 0)
841 return git_config_bool(var, value) ? PERM_GROUP : PERM_UMASK;
844 * Treat values 0, 1 and 2 as compatibility cases, otherwise it is
845 * a chmod value to restrict to.
847 switch (i) {
848 case PERM_UMASK: /* 0 */
849 return PERM_UMASK;
850 case OLD_PERM_GROUP: /* 1 */
851 return PERM_GROUP;
852 case OLD_PERM_EVERYBODY: /* 2 */
853 return PERM_EVERYBODY;
856 /* A filemode value was given: 0xxx */
858 if ((i & 0600) != 0600)
859 die("Problem with core.sharedRepository filemode value "
860 "(0%.3o).\nThe owner of files must always have "
861 "read and write permissions.", i);
864 * Mask filemode value. Others can not get write permission.
865 * x flags for directories are handled separately.
867 return -(i & 0666);
870 int check_repository_format_version(const char *var, const char *value, void *cb)
872 if (strcmp(var, "core.repositoryformatversion") == 0)
873 repository_format_version = git_config_int(var, value);
874 else if (strcmp(var, "core.sharedrepository") == 0)
875 shared_repository = git_config_perm(var, value);
876 else if (strcmp(var, "core.bare") == 0) {
877 is_bare_repository_cfg = git_config_bool(var, value);
878 if (is_bare_repository_cfg == 1)
879 inside_work_tree = -1;
880 } else if (strcmp(var, "core.worktree") == 0) {
881 if (!value)
882 return config_error_nonbool(var);
883 free(git_work_tree_cfg);
884 git_work_tree_cfg = xstrdup(value);
885 inside_work_tree = -1;
887 return 0;
890 int check_repository_format(void)
892 return check_repository_format_gently(get_git_dir(), NULL);
896 * Returns the "prefix", a path to the current working directory
897 * relative to the work tree root, or NULL, if the current working
898 * directory is not a strict subdirectory of the work tree root. The
899 * prefix always ends with a '/' character.
901 const char *setup_git_directory(void)
903 return setup_git_directory_gently(NULL);
906 const char *resolve_gitdir(const char *suspect)
908 if (is_git_directory(suspect))
909 return suspect;
910 return read_gitfile(suspect);