t: add test_oid option to select hash algorithm
[git/debian.git] / setup.c
blob94e68bb4f48efc5707f0358a35d28c3d84f5c4fd
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"
9 static int inside_git_dir = -1;
10 static int inside_work_tree = -1;
11 static int work_tree_config_is_bogus;
13 static struct startup_info the_startup_info;
14 struct startup_info *startup_info = &the_startup_info;
17 * The input parameter must contain an absolute path, and it must already be
18 * normalized.
20 * Find the part of an absolute path that lies inside the work tree by
21 * dereferencing symlinks outside the work tree, for example:
22 * /dir1/repo/dir2/file (work tree is /dir1/repo) -> dir2/file
23 * /dir/file (work tree is /) -> dir/file
24 * /dir/symlink1/symlink2 (symlink1 points to work tree) -> symlink2
25 * /dir/repolink/file (repolink points to /dir/repo) -> file
26 * /dir/repo (exactly equal to work tree) -> (empty string)
28 static int abspath_part_inside_repo(char *path)
30 size_t len;
31 size_t wtlen;
32 char *path0;
33 int off;
34 const char *work_tree = get_git_work_tree();
35 struct strbuf realpath = STRBUF_INIT;
37 if (!work_tree)
38 return -1;
39 wtlen = strlen(work_tree);
40 len = strlen(path);
41 off = offset_1st_component(path);
43 /* check if work tree is already the prefix */
44 if (wtlen <= len && !fspathncmp(path, work_tree, wtlen)) {
45 if (path[wtlen] == '/') {
46 memmove(path, path + wtlen + 1, len - wtlen);
47 return 0;
48 } else if (path[wtlen - 1] == '/' || path[wtlen] == '\0') {
49 /* work tree is the root, or the whole path */
50 memmove(path, path + wtlen, len - wtlen + 1);
51 return 0;
53 /* work tree might match beginning of a symlink to work tree */
54 off = wtlen;
56 path0 = path;
57 path += off;
59 /* check each '/'-terminated level */
60 while (*path) {
61 path++;
62 if (*path == '/') {
63 *path = '\0';
64 strbuf_realpath(&realpath, path0, 1);
65 if (fspathcmp(realpath.buf, work_tree) == 0) {
66 memmove(path0, path + 1, len - (path - path0));
67 strbuf_release(&realpath);
68 return 0;
70 *path = '/';
74 /* check whole path */
75 strbuf_realpath(&realpath, path0, 1);
76 if (fspathcmp(realpath.buf, work_tree) == 0) {
77 *path0 = '\0';
78 strbuf_release(&realpath);
79 return 0;
82 strbuf_release(&realpath);
83 return -1;
87 * Normalize "path", prepending the "prefix" for relative paths. If
88 * remaining_prefix is not NULL, return the actual prefix still
89 * remains in the path. For example, prefix = sub1/sub2/ and path is
91 * foo -> sub1/sub2/foo (full prefix)
92 * ../foo -> sub1/foo (remaining prefix is sub1/)
93 * ../../bar -> bar (no remaining prefix)
94 * ../../sub1/sub2/foo -> sub1/sub2/foo (but no remaining prefix)
95 * `pwd`/../bar -> sub1/bar (no remaining prefix)
97 char *prefix_path_gently(const char *prefix, int len,
98 int *remaining_prefix, const char *path)
100 const char *orig = path;
101 char *sanitized;
102 if (is_absolute_path(orig)) {
103 sanitized = xmallocz(strlen(path));
104 if (remaining_prefix)
105 *remaining_prefix = 0;
106 if (normalize_path_copy_len(sanitized, path, remaining_prefix)) {
107 free(sanitized);
108 return NULL;
110 if (abspath_part_inside_repo(sanitized)) {
111 free(sanitized);
112 return NULL;
114 } else {
115 sanitized = xstrfmt("%.*s%s", len, len ? prefix : "", path);
116 if (remaining_prefix)
117 *remaining_prefix = len;
118 if (normalize_path_copy_len(sanitized, sanitized, remaining_prefix)) {
119 free(sanitized);
120 return NULL;
123 return sanitized;
126 char *prefix_path(const char *prefix, int len, const char *path)
128 char *r = prefix_path_gently(prefix, len, NULL, path);
129 if (!r) {
130 const char *hint_path = get_git_work_tree();
131 if (!hint_path)
132 hint_path = get_git_dir();
133 die(_("'%s' is outside repository at '%s'"), path,
134 absolute_path(hint_path));
136 return r;
139 int path_inside_repo(const char *prefix, const char *path)
141 int len = prefix ? strlen(prefix) : 0;
142 char *r = prefix_path_gently(prefix, len, NULL, path);
143 if (r) {
144 free(r);
145 return 1;
147 return 0;
150 int check_filename(const char *prefix, const char *arg)
152 char *to_free = NULL;
153 struct stat st;
155 if (skip_prefix(arg, ":/", &arg)) {
156 if (!*arg) /* ":/" is root dir, always exists */
157 return 1;
158 prefix = NULL;
159 } else if (skip_prefix(arg, ":!", &arg) ||
160 skip_prefix(arg, ":^", &arg)) {
161 if (!*arg) /* excluding everything is silly, but allowed */
162 return 1;
165 if (prefix)
166 arg = to_free = prefix_filename(prefix, arg);
168 if (!lstat(arg, &st)) {
169 free(to_free);
170 return 1; /* file exists */
172 if (is_missing_file_error(errno)) {
173 free(to_free);
174 return 0; /* file does not exist */
176 die_errno(_("failed to stat '%s'"), arg);
179 static void NORETURN die_verify_filename(struct repository *r,
180 const char *prefix,
181 const char *arg,
182 int diagnose_misspelt_rev)
184 if (!diagnose_misspelt_rev)
185 die(_("%s: no such path in the working tree.\n"
186 "Use 'git <command> -- <path>...' to specify paths that do not exist locally."),
187 arg);
189 * Saying "'(icase)foo' does not exist in the index" when the
190 * user gave us ":(icase)foo" is just stupid. A magic pathspec
191 * begins with a colon and is followed by a non-alnum; do not
192 * let maybe_die_on_misspelt_object_name() even trigger.
194 if (!(arg[0] == ':' && !isalnum(arg[1])))
195 maybe_die_on_misspelt_object_name(r, arg, prefix);
197 /* ... or fall back the most general message. */
198 die(_("ambiguous argument '%s': unknown revision or path not in the working tree.\n"
199 "Use '--' to separate paths from revisions, like this:\n"
200 "'git <command> [<revision>...] -- [<file>...]'"), arg);
205 * Check for arguments that don't resolve as actual files,
206 * but which look sufficiently like pathspecs that we'll consider
207 * them such for the purposes of rev/pathspec DWIM parsing.
209 static int looks_like_pathspec(const char *arg)
211 const char *p;
212 int escaped = 0;
215 * Wildcard characters imply the user is looking to match pathspecs
216 * that aren't in the filesystem. Note that this doesn't include
217 * backslash even though it's a glob special; by itself it doesn't
218 * cause any increase in the match. Likewise ignore backslash-escaped
219 * wildcard characters.
221 for (p = arg; *p; p++) {
222 if (escaped) {
223 escaped = 0;
224 } else if (is_glob_special(*p)) {
225 if (*p == '\\')
226 escaped = 1;
227 else
228 return 1;
232 /* long-form pathspec magic */
233 if (starts_with(arg, ":("))
234 return 1;
236 return 0;
240 * Verify a filename that we got as an argument for a pathspec
241 * entry. Note that a filename that begins with "-" never verifies
242 * as true, because even if such a filename were to exist, we want
243 * it to be preceded by the "--" marker (or we want the user to
244 * use a format like "./-filename")
246 * The "diagnose_misspelt_rev" is used to provide a user-friendly
247 * diagnosis when dying upon finding that "name" is not a pathname.
248 * If set to 1, the diagnosis will try to diagnose "name" as an
249 * invalid object name (e.g. HEAD:foo). If set to 0, the diagnosis
250 * will only complain about an inexisting file.
252 * This function is typically called to check that a "file or rev"
253 * argument is unambiguous. In this case, the caller will want
254 * diagnose_misspelt_rev == 1 when verifying the first non-rev
255 * argument (which could have been a revision), and
256 * diagnose_misspelt_rev == 0 for the next ones (because we already
257 * saw a filename, there's not ambiguity anymore).
259 void verify_filename(const char *prefix,
260 const char *arg,
261 int diagnose_misspelt_rev)
263 if (*arg == '-')
264 die(_("option '%s' must come before non-option arguments"), arg);
265 if (looks_like_pathspec(arg) || check_filename(prefix, arg))
266 return;
267 die_verify_filename(the_repository, prefix, arg, diagnose_misspelt_rev);
271 * Opposite of the above: the command line did not have -- marker
272 * and we parsed the arg as a refname. It should not be interpretable
273 * as a filename.
275 void verify_non_filename(const char *prefix, const char *arg)
277 if (!is_inside_work_tree() || is_inside_git_dir())
278 return;
279 if (*arg == '-')
280 return; /* flag */
281 if (!check_filename(prefix, arg))
282 return;
283 die(_("ambiguous argument '%s': both revision and filename\n"
284 "Use '--' to separate paths from revisions, like this:\n"
285 "'git <command> [<revision>...] -- [<file>...]'"), arg);
288 int get_common_dir(struct strbuf *sb, const char *gitdir)
290 const char *git_env_common_dir = getenv(GIT_COMMON_DIR_ENVIRONMENT);
291 if (git_env_common_dir) {
292 strbuf_addstr(sb, git_env_common_dir);
293 return 1;
294 } else {
295 return get_common_dir_noenv(sb, gitdir);
299 int get_common_dir_noenv(struct strbuf *sb, const char *gitdir)
301 struct strbuf data = STRBUF_INIT;
302 struct strbuf path = STRBUF_INIT;
303 int ret = 0;
305 strbuf_addf(&path, "%s/commondir", gitdir);
306 if (file_exists(path.buf)) {
307 if (strbuf_read_file(&data, path.buf, 0) <= 0)
308 die_errno(_("failed to read %s"), path.buf);
309 while (data.len && (data.buf[data.len - 1] == '\n' ||
310 data.buf[data.len - 1] == '\r'))
311 data.len--;
312 data.buf[data.len] = '\0';
313 strbuf_reset(&path);
314 if (!is_absolute_path(data.buf))
315 strbuf_addf(&path, "%s/", gitdir);
316 strbuf_addbuf(&path, &data);
317 strbuf_add_real_path(sb, path.buf);
318 ret = 1;
319 } else {
320 strbuf_addstr(sb, gitdir);
323 strbuf_release(&data);
324 strbuf_release(&path);
325 return ret;
329 * Test if it looks like we're at a git directory.
330 * We want to see:
332 * - either an objects/ directory _or_ the proper
333 * GIT_OBJECT_DIRECTORY environment variable
334 * - a refs/ directory
335 * - either a HEAD symlink or a HEAD file that is formatted as
336 * a proper "ref:", or a regular file HEAD that has a properly
337 * formatted sha1 object name.
339 int is_git_directory(const char *suspect)
341 struct strbuf path = STRBUF_INIT;
342 int ret = 0;
343 size_t len;
345 /* Check worktree-related signatures */
346 strbuf_addstr(&path, suspect);
347 strbuf_complete(&path, '/');
348 strbuf_addstr(&path, "HEAD");
349 if (validate_headref(path.buf))
350 goto done;
352 strbuf_reset(&path);
353 get_common_dir(&path, suspect);
354 len = path.len;
356 /* Check non-worktree-related signatures */
357 if (getenv(DB_ENVIRONMENT)) {
358 if (access(getenv(DB_ENVIRONMENT), X_OK))
359 goto done;
361 else {
362 strbuf_setlen(&path, len);
363 strbuf_addstr(&path, "/objects");
364 if (access(path.buf, X_OK))
365 goto done;
368 strbuf_setlen(&path, len);
369 strbuf_addstr(&path, "/refs");
370 if (access(path.buf, X_OK))
371 goto done;
373 ret = 1;
374 done:
375 strbuf_release(&path);
376 return ret;
379 int is_nonbare_repository_dir(struct strbuf *path)
381 int ret = 0;
382 int gitfile_error;
383 size_t orig_path_len = path->len;
384 assert(orig_path_len != 0);
385 strbuf_complete(path, '/');
386 strbuf_addstr(path, ".git");
387 if (read_gitfile_gently(path->buf, &gitfile_error) || is_git_directory(path->buf))
388 ret = 1;
389 if (gitfile_error == READ_GITFILE_ERR_OPEN_FAILED ||
390 gitfile_error == READ_GITFILE_ERR_READ_FAILED)
391 ret = 1;
392 strbuf_setlen(path, orig_path_len);
393 return ret;
396 int is_inside_git_dir(void)
398 if (inside_git_dir < 0)
399 inside_git_dir = is_inside_dir(get_git_dir());
400 return inside_git_dir;
403 int is_inside_work_tree(void)
405 if (inside_work_tree < 0)
406 inside_work_tree = is_inside_dir(get_git_work_tree());
407 return inside_work_tree;
410 void setup_work_tree(void)
412 const char *work_tree;
413 static int initialized = 0;
415 if (initialized)
416 return;
418 if (work_tree_config_is_bogus)
419 die(_("unable to set up work tree using invalid config"));
421 work_tree = get_git_work_tree();
422 if (!work_tree || chdir_notify(work_tree))
423 die(_("this operation must be run in a work tree"));
426 * Make sure subsequent git processes find correct worktree
427 * if $GIT_WORK_TREE is set relative
429 if (getenv(GIT_WORK_TREE_ENVIRONMENT))
430 setenv(GIT_WORK_TREE_ENVIRONMENT, ".", 1);
432 initialized = 1;
435 static int read_worktree_config(const char *var, const char *value, void *vdata)
437 struct repository_format *data = vdata;
439 if (strcmp(var, "core.bare") == 0) {
440 data->is_bare = git_config_bool(var, value);
441 } else if (strcmp(var, "core.worktree") == 0) {
442 if (!value)
443 return config_error_nonbool(var);
444 free(data->work_tree);
445 data->work_tree = xstrdup(value);
447 return 0;
450 static int check_repo_format(const char *var, const char *value, void *vdata)
452 struct repository_format *data = vdata;
453 const char *ext;
455 if (strcmp(var, "core.repositoryformatversion") == 0)
456 data->version = git_config_int(var, value);
457 else if (skip_prefix(var, "extensions.", &ext)) {
459 * record any known extensions here; otherwise,
460 * we fall through to recording it as unknown, and
461 * check_repository_format will complain
463 if (!strcmp(ext, "noop"))
465 else if (!strcmp(ext, "preciousobjects"))
466 data->precious_objects = git_config_bool(var, value);
467 else if (!strcmp(ext, "partialclone")) {
468 if (!value)
469 return config_error_nonbool(var);
470 data->partial_clone = xstrdup(value);
471 } else if (!strcmp(ext, "worktreeconfig"))
472 data->worktree_config = git_config_bool(var, value);
473 else if (!strcmp(ext, "objectformat")) {
474 int format;
476 if (!value)
477 return config_error_nonbool(var);
478 format = hash_algo_by_name(value);
479 if (format == GIT_HASH_UNKNOWN)
480 return error("invalid value for 'extensions.objectformat'");
481 data->hash_algo = format;
482 } else
483 string_list_append(&data->unknown_extensions, ext);
486 return read_worktree_config(var, value, vdata);
489 static int check_repository_format_gently(const char *gitdir, struct repository_format *candidate, int *nongit_ok)
491 struct strbuf sb = STRBUF_INIT;
492 struct strbuf err = STRBUF_INIT;
493 int has_common;
495 has_common = get_common_dir(&sb, gitdir);
496 strbuf_addstr(&sb, "/config");
497 read_repository_format(candidate, sb.buf);
498 strbuf_release(&sb);
501 * For historical use of check_repository_format() in git-init,
502 * we treat a missing config as a silent "ok", even when nongit_ok
503 * is unset.
505 if (candidate->version < 0)
506 return 0;
508 if (verify_repository_format(candidate, &err) < 0) {
509 if (nongit_ok) {
510 warning("%s", err.buf);
511 strbuf_release(&err);
512 *nongit_ok = -1;
513 return -1;
515 die("%s", err.buf);
518 repository_format_precious_objects = candidate->precious_objects;
519 set_repository_format_partial_clone(candidate->partial_clone);
520 repository_format_worktree_config = candidate->worktree_config;
521 string_list_clear(&candidate->unknown_extensions, 0);
523 if (repository_format_worktree_config) {
525 * pick up core.bare and core.worktree from per-worktree
526 * config if present
528 strbuf_addf(&sb, "%s/config.worktree", gitdir);
529 git_config_from_file(read_worktree_config, sb.buf, candidate);
530 strbuf_release(&sb);
531 has_common = 0;
534 if (!has_common) {
535 if (candidate->is_bare != -1) {
536 is_bare_repository_cfg = candidate->is_bare;
537 if (is_bare_repository_cfg == 1)
538 inside_work_tree = -1;
540 if (candidate->work_tree) {
541 free(git_work_tree_cfg);
542 git_work_tree_cfg = xstrdup(candidate->work_tree);
543 inside_work_tree = -1;
547 return 0;
550 int upgrade_repository_format(int target_version)
552 struct strbuf sb = STRBUF_INIT;
553 struct strbuf err = STRBUF_INIT;
554 struct strbuf repo_version = STRBUF_INIT;
555 struct repository_format repo_fmt = REPOSITORY_FORMAT_INIT;
557 strbuf_git_common_path(&sb, the_repository, "config");
558 read_repository_format(&repo_fmt, sb.buf);
559 strbuf_release(&sb);
561 if (repo_fmt.version >= target_version)
562 return 0;
564 if (verify_repository_format(&repo_fmt, &err) < 0) {
565 error("cannot upgrade repository format from %d to %d: %s",
566 repo_fmt.version, target_version, err.buf);
567 strbuf_release(&err);
568 return -1;
570 if (!repo_fmt.version && repo_fmt.unknown_extensions.nr)
571 return error("cannot upgrade repository format: "
572 "unknown extension %s",
573 repo_fmt.unknown_extensions.items[0].string);
575 strbuf_addf(&repo_version, "%d", target_version);
576 git_config_set("core.repositoryformatversion", repo_version.buf);
577 strbuf_release(&repo_version);
578 return 1;
581 static void init_repository_format(struct repository_format *format)
583 const struct repository_format fresh = REPOSITORY_FORMAT_INIT;
585 memcpy(format, &fresh, sizeof(fresh));
588 int read_repository_format(struct repository_format *format, const char *path)
590 clear_repository_format(format);
591 git_config_from_file(check_repo_format, path, format);
592 if (format->version == -1)
593 clear_repository_format(format);
594 return format->version;
597 void clear_repository_format(struct repository_format *format)
599 string_list_clear(&format->unknown_extensions, 0);
600 free(format->work_tree);
601 free(format->partial_clone);
602 init_repository_format(format);
605 int verify_repository_format(const struct repository_format *format,
606 struct strbuf *err)
608 if (GIT_REPO_VERSION_READ < format->version) {
609 strbuf_addf(err, _("Expected git repo version <= %d, found %d"),
610 GIT_REPO_VERSION_READ, format->version);
611 return -1;
614 if (format->version >= 1 && format->unknown_extensions.nr) {
615 int i;
617 strbuf_addstr(err, _("unknown repository extensions found:"));
619 for (i = 0; i < format->unknown_extensions.nr; i++)
620 strbuf_addf(err, "\n\t%s",
621 format->unknown_extensions.items[i].string);
622 return -1;
625 if (format->version <= 0 && format->hash_algo != GIT_HASH_SHA1) {
626 strbuf_addstr(err, _("extensions.objectFormat is not valid in repo v0"));
627 return -1;
630 return 0;
633 void read_gitfile_error_die(int error_code, const char *path, const char *dir)
635 switch (error_code) {
636 case READ_GITFILE_ERR_STAT_FAILED:
637 case READ_GITFILE_ERR_NOT_A_FILE:
638 /* non-fatal; follow return path */
639 break;
640 case READ_GITFILE_ERR_OPEN_FAILED:
641 die_errno(_("error opening '%s'"), path);
642 case READ_GITFILE_ERR_TOO_LARGE:
643 die(_("too large to be a .git file: '%s'"), path);
644 case READ_GITFILE_ERR_READ_FAILED:
645 die(_("error reading %s"), path);
646 case READ_GITFILE_ERR_INVALID_FORMAT:
647 die(_("invalid gitfile format: %s"), path);
648 case READ_GITFILE_ERR_NO_PATH:
649 die(_("no path in gitfile: %s"), path);
650 case READ_GITFILE_ERR_NOT_A_REPO:
651 die(_("not a git repository: %s"), dir);
652 default:
653 BUG("unknown error code");
658 * Try to read the location of the git directory from the .git file,
659 * return path to git directory if found. The return value comes from
660 * a shared buffer.
662 * On failure, if return_error_code is not NULL, return_error_code
663 * will be set to an error code and NULL will be returned. If
664 * return_error_code is NULL the function will die instead (for most
665 * cases).
667 const char *read_gitfile_gently(const char *path, int *return_error_code)
669 const int max_file_size = 1 << 20; /* 1MB */
670 int error_code = 0;
671 char *buf = NULL;
672 char *dir = NULL;
673 const char *slash;
674 struct stat st;
675 int fd;
676 ssize_t len;
677 static struct strbuf realpath = STRBUF_INIT;
679 if (stat(path, &st)) {
680 /* NEEDSWORK: discern between ENOENT vs other errors */
681 error_code = READ_GITFILE_ERR_STAT_FAILED;
682 goto cleanup_return;
684 if (!S_ISREG(st.st_mode)) {
685 error_code = READ_GITFILE_ERR_NOT_A_FILE;
686 goto cleanup_return;
688 if (st.st_size > max_file_size) {
689 error_code = READ_GITFILE_ERR_TOO_LARGE;
690 goto cleanup_return;
692 fd = open(path, O_RDONLY);
693 if (fd < 0) {
694 error_code = READ_GITFILE_ERR_OPEN_FAILED;
695 goto cleanup_return;
697 buf = xmallocz(st.st_size);
698 len = read_in_full(fd, buf, st.st_size);
699 close(fd);
700 if (len != st.st_size) {
701 error_code = READ_GITFILE_ERR_READ_FAILED;
702 goto cleanup_return;
704 if (!starts_with(buf, "gitdir: ")) {
705 error_code = READ_GITFILE_ERR_INVALID_FORMAT;
706 goto cleanup_return;
708 while (buf[len - 1] == '\n' || buf[len - 1] == '\r')
709 len--;
710 if (len < 9) {
711 error_code = READ_GITFILE_ERR_NO_PATH;
712 goto cleanup_return;
714 buf[len] = '\0';
715 dir = buf + 8;
717 if (!is_absolute_path(dir) && (slash = strrchr(path, '/'))) {
718 size_t pathlen = slash+1 - path;
719 dir = xstrfmt("%.*s%.*s", (int)pathlen, path,
720 (int)(len - 8), buf + 8);
721 free(buf);
722 buf = dir;
724 if (!is_git_directory(dir)) {
725 error_code = READ_GITFILE_ERR_NOT_A_REPO;
726 goto cleanup_return;
729 strbuf_realpath(&realpath, dir, 1);
730 path = realpath.buf;
732 cleanup_return:
733 if (return_error_code)
734 *return_error_code = error_code;
735 else if (error_code)
736 read_gitfile_error_die(error_code, path, dir);
738 free(buf);
739 return error_code ? NULL : path;
742 static const char *setup_explicit_git_dir(const char *gitdirenv,
743 struct strbuf *cwd,
744 struct repository_format *repo_fmt,
745 int *nongit_ok)
747 const char *work_tree_env = getenv(GIT_WORK_TREE_ENVIRONMENT);
748 const char *worktree;
749 char *gitfile;
750 int offset;
752 if (PATH_MAX - 40 < strlen(gitdirenv))
753 die(_("'$%s' too big"), GIT_DIR_ENVIRONMENT);
755 gitfile = (char*)read_gitfile(gitdirenv);
756 if (gitfile) {
757 gitfile = xstrdup(gitfile);
758 gitdirenv = gitfile;
761 if (!is_git_directory(gitdirenv)) {
762 if (nongit_ok) {
763 *nongit_ok = 1;
764 free(gitfile);
765 return NULL;
767 die(_("not a git repository: '%s'"), gitdirenv);
770 if (check_repository_format_gently(gitdirenv, repo_fmt, nongit_ok)) {
771 free(gitfile);
772 return NULL;
775 /* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */
776 if (work_tree_env)
777 set_git_work_tree(work_tree_env);
778 else if (is_bare_repository_cfg > 0) {
779 if (git_work_tree_cfg) {
780 /* #22.2, #30 */
781 warning("core.bare and core.worktree do not make sense");
782 work_tree_config_is_bogus = 1;
785 /* #18, #26 */
786 set_git_dir(gitdirenv, 0);
787 free(gitfile);
788 return NULL;
790 else if (git_work_tree_cfg) { /* #6, #14 */
791 if (is_absolute_path(git_work_tree_cfg))
792 set_git_work_tree(git_work_tree_cfg);
793 else {
794 char *core_worktree;
795 if (chdir(gitdirenv))
796 die_errno(_("cannot chdir to '%s'"), gitdirenv);
797 if (chdir(git_work_tree_cfg))
798 die_errno(_("cannot chdir to '%s'"), git_work_tree_cfg);
799 core_worktree = xgetcwd();
800 if (chdir(cwd->buf))
801 die_errno(_("cannot come back to cwd"));
802 set_git_work_tree(core_worktree);
803 free(core_worktree);
806 else if (!git_env_bool(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, 1)) {
807 /* #16d */
808 set_git_dir(gitdirenv, 0);
809 free(gitfile);
810 return NULL;
812 else /* #2, #10 */
813 set_git_work_tree(".");
815 /* set_git_work_tree() must have been called by now */
816 worktree = get_git_work_tree();
818 /* both get_git_work_tree() and cwd are already normalized */
819 if (!strcmp(cwd->buf, worktree)) { /* cwd == worktree */
820 set_git_dir(gitdirenv, 0);
821 free(gitfile);
822 return NULL;
825 offset = dir_inside_of(cwd->buf, worktree);
826 if (offset >= 0) { /* cwd inside worktree? */
827 set_git_dir(gitdirenv, 1);
828 if (chdir(worktree))
829 die_errno(_("cannot chdir to '%s'"), worktree);
830 strbuf_addch(cwd, '/');
831 free(gitfile);
832 return cwd->buf + offset;
835 /* cwd outside worktree */
836 set_git_dir(gitdirenv, 0);
837 free(gitfile);
838 return NULL;
841 static const char *setup_discovered_git_dir(const char *gitdir,
842 struct strbuf *cwd, int offset,
843 struct repository_format *repo_fmt,
844 int *nongit_ok)
846 if (check_repository_format_gently(gitdir, repo_fmt, nongit_ok))
847 return NULL;
849 /* --work-tree is set without --git-dir; use discovered one */
850 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
851 char *to_free = NULL;
852 const char *ret;
854 if (offset != cwd->len && !is_absolute_path(gitdir))
855 gitdir = to_free = real_pathdup(gitdir, 1);
856 if (chdir(cwd->buf))
857 die_errno(_("cannot come back to cwd"));
858 ret = setup_explicit_git_dir(gitdir, cwd, repo_fmt, nongit_ok);
859 free(to_free);
860 return ret;
863 /* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */
864 if (is_bare_repository_cfg > 0) {
865 set_git_dir(gitdir, (offset != cwd->len));
866 if (chdir(cwd->buf))
867 die_errno(_("cannot come back to cwd"));
868 return NULL;
871 /* #0, #1, #5, #8, #9, #12, #13 */
872 set_git_work_tree(".");
873 if (strcmp(gitdir, DEFAULT_GIT_DIR_ENVIRONMENT))
874 set_git_dir(gitdir, 0);
875 inside_git_dir = 0;
876 inside_work_tree = 1;
877 if (offset >= cwd->len)
878 return NULL;
880 /* Make "offset" point past the '/' (already the case for root dirs) */
881 if (offset != offset_1st_component(cwd->buf))
882 offset++;
883 /* Add a '/' at the end */
884 strbuf_addch(cwd, '/');
885 return cwd->buf + offset;
888 /* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */
889 static const char *setup_bare_git_dir(struct strbuf *cwd, int offset,
890 struct repository_format *repo_fmt,
891 int *nongit_ok)
893 int root_len;
895 if (check_repository_format_gently(".", repo_fmt, nongit_ok))
896 return NULL;
898 setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, "0", 1);
900 /* --work-tree is set without --git-dir; use discovered one */
901 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
902 static const char *gitdir;
904 gitdir = offset == cwd->len ? "." : xmemdupz(cwd->buf, offset);
905 if (chdir(cwd->buf))
906 die_errno(_("cannot come back to cwd"));
907 return setup_explicit_git_dir(gitdir, cwd, repo_fmt, nongit_ok);
910 inside_git_dir = 1;
911 inside_work_tree = 0;
912 if (offset != cwd->len) {
913 if (chdir(cwd->buf))
914 die_errno(_("cannot come back to cwd"));
915 root_len = offset_1st_component(cwd->buf);
916 strbuf_setlen(cwd, offset > root_len ? offset : root_len);
917 set_git_dir(cwd->buf, 0);
919 else
920 set_git_dir(".", 0);
921 return NULL;
924 static dev_t get_device_or_die(const char *path, const char *prefix, int prefix_len)
926 struct stat buf;
927 if (stat(path, &buf)) {
928 die_errno(_("failed to stat '%*s%s%s'"),
929 prefix_len,
930 prefix ? prefix : "",
931 prefix ? "/" : "", path);
933 return buf.st_dev;
937 * A "string_list_each_func_t" function that canonicalizes an entry
938 * from GIT_CEILING_DIRECTORIES using real_pathdup(), or
939 * discards it if unusable. The presence of an empty entry in
940 * GIT_CEILING_DIRECTORIES turns off canonicalization for all
941 * subsequent entries.
943 static int canonicalize_ceiling_entry(struct string_list_item *item,
944 void *cb_data)
946 int *empty_entry_found = cb_data;
947 char *ceil = item->string;
949 if (!*ceil) {
950 *empty_entry_found = 1;
951 return 0;
952 } else if (!is_absolute_path(ceil)) {
953 return 0;
954 } else if (*empty_entry_found) {
955 /* Keep entry but do not canonicalize it */
956 return 1;
957 } else {
958 char *real_path = real_pathdup(ceil, 0);
959 if (!real_path) {
960 return 0;
962 free(item->string);
963 item->string = real_path;
964 return 1;
968 enum discovery_result {
969 GIT_DIR_NONE = 0,
970 GIT_DIR_EXPLICIT,
971 GIT_DIR_DISCOVERED,
972 GIT_DIR_BARE,
973 /* these are errors */
974 GIT_DIR_HIT_CEILING = -1,
975 GIT_DIR_HIT_MOUNT_POINT = -2,
976 GIT_DIR_INVALID_GITFILE = -3
980 * We cannot decide in this function whether we are in the work tree or
981 * not, since the config can only be read _after_ this function was called.
983 * Also, we avoid changing any global state (such as the current working
984 * directory) to allow early callers.
986 * The directory where the search should start needs to be passed in via the
987 * `dir` parameter; upon return, the `dir` buffer will contain the path of
988 * the directory where the search ended, and `gitdir` will contain the path of
989 * the discovered .git/ directory, if any. If `gitdir` is not absolute, it
990 * is relative to `dir` (i.e. *not* necessarily the cwd).
992 static enum discovery_result setup_git_directory_gently_1(struct strbuf *dir,
993 struct strbuf *gitdir,
994 int die_on_error)
996 const char *env_ceiling_dirs = getenv(CEILING_DIRECTORIES_ENVIRONMENT);
997 struct string_list ceiling_dirs = STRING_LIST_INIT_DUP;
998 const char *gitdirenv;
999 int ceil_offset = -1, min_offset = offset_1st_component(dir->buf);
1000 dev_t current_device = 0;
1001 int one_filesystem = 1;
1004 * If GIT_DIR is set explicitly, we're not going
1005 * to do any discovery, but we still do repository
1006 * validation.
1008 gitdirenv = getenv(GIT_DIR_ENVIRONMENT);
1009 if (gitdirenv) {
1010 strbuf_addstr(gitdir, gitdirenv);
1011 return GIT_DIR_EXPLICIT;
1014 if (env_ceiling_dirs) {
1015 int empty_entry_found = 0;
1017 string_list_split(&ceiling_dirs, env_ceiling_dirs, PATH_SEP, -1);
1018 filter_string_list(&ceiling_dirs, 0,
1019 canonicalize_ceiling_entry, &empty_entry_found);
1020 ceil_offset = longest_ancestor_length(dir->buf, &ceiling_dirs);
1021 string_list_clear(&ceiling_dirs, 0);
1024 if (ceil_offset < 0)
1025 ceil_offset = min_offset - 2;
1027 if (min_offset && min_offset == dir->len &&
1028 !is_dir_sep(dir->buf[min_offset - 1])) {
1029 strbuf_addch(dir, '/');
1030 min_offset++;
1034 * Test in the following order (relative to the dir):
1035 * - .git (file containing "gitdir: <path>")
1036 * - .git/
1037 * - ./ (bare)
1038 * - ../.git
1039 * - ../.git/
1040 * - ../ (bare)
1041 * - ../../.git
1042 * etc.
1044 one_filesystem = !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM", 0);
1045 if (one_filesystem)
1046 current_device = get_device_or_die(dir->buf, NULL, 0);
1047 for (;;) {
1048 int offset = dir->len, error_code = 0;
1050 if (offset > min_offset)
1051 strbuf_addch(dir, '/');
1052 strbuf_addstr(dir, DEFAULT_GIT_DIR_ENVIRONMENT);
1053 gitdirenv = read_gitfile_gently(dir->buf, die_on_error ?
1054 NULL : &error_code);
1055 if (!gitdirenv) {
1056 if (die_on_error ||
1057 error_code == READ_GITFILE_ERR_NOT_A_FILE) {
1058 /* NEEDSWORK: fail if .git is not file nor dir */
1059 if (is_git_directory(dir->buf))
1060 gitdirenv = DEFAULT_GIT_DIR_ENVIRONMENT;
1061 } else if (error_code != READ_GITFILE_ERR_STAT_FAILED)
1062 return GIT_DIR_INVALID_GITFILE;
1064 strbuf_setlen(dir, offset);
1065 if (gitdirenv) {
1066 strbuf_addstr(gitdir, gitdirenv);
1067 return GIT_DIR_DISCOVERED;
1070 if (is_git_directory(dir->buf)) {
1071 strbuf_addstr(gitdir, ".");
1072 return GIT_DIR_BARE;
1075 if (offset <= min_offset)
1076 return GIT_DIR_HIT_CEILING;
1078 while (--offset > ceil_offset && !is_dir_sep(dir->buf[offset]))
1079 ; /* continue */
1080 if (offset <= ceil_offset)
1081 return GIT_DIR_HIT_CEILING;
1083 strbuf_setlen(dir, offset > min_offset ? offset : min_offset);
1084 if (one_filesystem &&
1085 current_device != get_device_or_die(dir->buf, NULL, offset))
1086 return GIT_DIR_HIT_MOUNT_POINT;
1090 int discover_git_directory(struct strbuf *commondir,
1091 struct strbuf *gitdir)
1093 struct strbuf dir = STRBUF_INIT, err = STRBUF_INIT;
1094 size_t gitdir_offset = gitdir->len, cwd_len;
1095 size_t commondir_offset = commondir->len;
1096 struct repository_format candidate = REPOSITORY_FORMAT_INIT;
1098 if (strbuf_getcwd(&dir))
1099 return -1;
1101 cwd_len = dir.len;
1102 if (setup_git_directory_gently_1(&dir, gitdir, 0) <= 0) {
1103 strbuf_release(&dir);
1104 return -1;
1108 * The returned gitdir is relative to dir, and if dir does not reflect
1109 * the current working directory, we simply make the gitdir absolute.
1111 if (dir.len < cwd_len && !is_absolute_path(gitdir->buf + gitdir_offset)) {
1112 /* Avoid a trailing "/." */
1113 if (!strcmp(".", gitdir->buf + gitdir_offset))
1114 strbuf_setlen(gitdir, gitdir_offset);
1115 else
1116 strbuf_addch(&dir, '/');
1117 strbuf_insert(gitdir, gitdir_offset, dir.buf, dir.len);
1120 get_common_dir(commondir, gitdir->buf + gitdir_offset);
1122 strbuf_reset(&dir);
1123 strbuf_addf(&dir, "%s/config", commondir->buf + commondir_offset);
1124 read_repository_format(&candidate, dir.buf);
1125 strbuf_release(&dir);
1127 if (verify_repository_format(&candidate, &err) < 0) {
1128 warning("ignoring git dir '%s': %s",
1129 gitdir->buf + gitdir_offset, err.buf);
1130 strbuf_release(&err);
1131 strbuf_setlen(commondir, commondir_offset);
1132 strbuf_setlen(gitdir, gitdir_offset);
1133 clear_repository_format(&candidate);
1134 return -1;
1137 clear_repository_format(&candidate);
1138 return 0;
1141 const char *setup_git_directory_gently(int *nongit_ok)
1143 static struct strbuf cwd = STRBUF_INIT;
1144 struct strbuf dir = STRBUF_INIT, gitdir = STRBUF_INIT;
1145 const char *prefix = NULL;
1146 struct repository_format repo_fmt = REPOSITORY_FORMAT_INIT;
1149 * We may have read an incomplete configuration before
1150 * setting-up the git directory. If so, clear the cache so
1151 * that the next queries to the configuration reload complete
1152 * configuration (including the per-repo config file that we
1153 * ignored previously).
1155 git_config_clear();
1158 * Let's assume that we are in a git repository.
1159 * If it turns out later that we are somewhere else, the value will be
1160 * updated accordingly.
1162 if (nongit_ok)
1163 *nongit_ok = 0;
1165 if (strbuf_getcwd(&cwd))
1166 die_errno(_("Unable to read current working directory"));
1167 strbuf_addbuf(&dir, &cwd);
1169 switch (setup_git_directory_gently_1(&dir, &gitdir, 1)) {
1170 case GIT_DIR_EXPLICIT:
1171 prefix = setup_explicit_git_dir(gitdir.buf, &cwd, &repo_fmt, nongit_ok);
1172 break;
1173 case GIT_DIR_DISCOVERED:
1174 if (dir.len < cwd.len && chdir(dir.buf))
1175 die(_("cannot change to '%s'"), dir.buf);
1176 prefix = setup_discovered_git_dir(gitdir.buf, &cwd, dir.len,
1177 &repo_fmt, nongit_ok);
1178 break;
1179 case GIT_DIR_BARE:
1180 if (dir.len < cwd.len && chdir(dir.buf))
1181 die(_("cannot change to '%s'"), dir.buf);
1182 prefix = setup_bare_git_dir(&cwd, dir.len, &repo_fmt, nongit_ok);
1183 break;
1184 case GIT_DIR_HIT_CEILING:
1185 if (!nongit_ok)
1186 die(_("not a git repository (or any of the parent directories): %s"),
1187 DEFAULT_GIT_DIR_ENVIRONMENT);
1188 *nongit_ok = 1;
1189 break;
1190 case GIT_DIR_HIT_MOUNT_POINT:
1191 if (!nongit_ok)
1192 die(_("not a git repository (or any parent up to mount point %s)\n"
1193 "Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set)."),
1194 dir.buf);
1195 *nongit_ok = 1;
1196 break;
1197 case GIT_DIR_NONE:
1199 * As a safeguard against setup_git_directory_gently_1 returning
1200 * this value, fallthrough to BUG. Otherwise it is possible to
1201 * set startup_info->have_repository to 1 when we did nothing to
1202 * find a repository.
1204 default:
1205 BUG("unhandled setup_git_directory_1() result");
1209 * At this point, nongit_ok is stable. If it is non-NULL and points
1210 * to a non-zero value, then this means that we haven't found a
1211 * repository and that the caller expects startup_info to reflect
1212 * this.
1214 * Regardless of the state of nongit_ok, startup_info->prefix and
1215 * the GIT_PREFIX environment variable must always match. For details
1216 * see Documentation/config/alias.txt.
1218 if (nongit_ok && *nongit_ok) {
1219 startup_info->have_repository = 0;
1220 startup_info->prefix = NULL;
1221 setenv(GIT_PREFIX_ENVIRONMENT, "", 1);
1222 } else {
1223 startup_info->have_repository = 1;
1224 startup_info->prefix = prefix;
1225 if (prefix)
1226 setenv(GIT_PREFIX_ENVIRONMENT, prefix, 1);
1227 else
1228 setenv(GIT_PREFIX_ENVIRONMENT, "", 1);
1232 * Not all paths through the setup code will call 'set_git_dir()' (which
1233 * directly sets up the environment) so in order to guarantee that the
1234 * environment is in a consistent state after setup, explicitly setup
1235 * the environment if we have a repository.
1237 * NEEDSWORK: currently we allow bogus GIT_DIR values to be set in some
1238 * code paths so we also need to explicitly setup the environment if
1239 * the user has set GIT_DIR. It may be beneficial to disallow bogus
1240 * GIT_DIR values at some point in the future.
1242 if (/* GIT_DIR_EXPLICIT, GIT_DIR_DISCOVERED, GIT_DIR_BARE */
1243 startup_info->have_repository ||
1244 /* GIT_DIR_EXPLICIT */
1245 getenv(GIT_DIR_ENVIRONMENT)) {
1246 if (!the_repository->gitdir) {
1247 const char *gitdir = getenv(GIT_DIR_ENVIRONMENT);
1248 if (!gitdir)
1249 gitdir = DEFAULT_GIT_DIR_ENVIRONMENT;
1250 setup_git_env(gitdir);
1252 if (startup_info->have_repository)
1253 repo_set_hash_algo(the_repository, repo_fmt.hash_algo);
1256 strbuf_release(&dir);
1257 strbuf_release(&gitdir);
1258 clear_repository_format(&repo_fmt);
1260 return prefix;
1263 int git_config_perm(const char *var, const char *value)
1265 int i;
1266 char *endptr;
1268 if (value == NULL)
1269 return PERM_GROUP;
1271 if (!strcmp(value, "umask"))
1272 return PERM_UMASK;
1273 if (!strcmp(value, "group"))
1274 return PERM_GROUP;
1275 if (!strcmp(value, "all") ||
1276 !strcmp(value, "world") ||
1277 !strcmp(value, "everybody"))
1278 return PERM_EVERYBODY;
1280 /* Parse octal numbers */
1281 i = strtol(value, &endptr, 8);
1283 /* If not an octal number, maybe true/false? */
1284 if (*endptr != 0)
1285 return git_config_bool(var, value) ? PERM_GROUP : PERM_UMASK;
1288 * Treat values 0, 1 and 2 as compatibility cases, otherwise it is
1289 * a chmod value to restrict to.
1291 switch (i) {
1292 case PERM_UMASK: /* 0 */
1293 return PERM_UMASK;
1294 case OLD_PERM_GROUP: /* 1 */
1295 return PERM_GROUP;
1296 case OLD_PERM_EVERYBODY: /* 2 */
1297 return PERM_EVERYBODY;
1300 /* A filemode value was given: 0xxx */
1302 if ((i & 0600) != 0600)
1303 die(_("problem with core.sharedRepository filemode value "
1304 "(0%.3o).\nThe owner of files must always have "
1305 "read and write permissions."), i);
1308 * Mask filemode value. Others can not get write permission.
1309 * x flags for directories are handled separately.
1311 return -(i & 0666);
1314 void check_repository_format(struct repository_format *fmt)
1316 struct repository_format repo_fmt = REPOSITORY_FORMAT_INIT;
1317 if (!fmt)
1318 fmt = &repo_fmt;
1319 check_repository_format_gently(get_git_dir(), fmt, NULL);
1320 startup_info->have_repository = 1;
1321 repo_set_hash_algo(the_repository, fmt->hash_algo);
1322 clear_repository_format(&repo_fmt);
1326 * Returns the "prefix", a path to the current working directory
1327 * relative to the work tree root, or NULL, if the current working
1328 * directory is not a strict subdirectory of the work tree root. The
1329 * prefix always ends with a '/' character.
1331 const char *setup_git_directory(void)
1333 return setup_git_directory_gently(NULL);
1336 const char *resolve_gitdir_gently(const char *suspect, int *return_error_code)
1338 if (is_git_directory(suspect))
1339 return suspect;
1340 return read_gitfile_gently(suspect, return_error_code);
1343 /* if any standard file descriptor is missing open it to /dev/null */
1344 void sanitize_stdfds(void)
1346 int fd = open("/dev/null", O_RDWR, 0);
1347 while (fd != -1 && fd < 2)
1348 fd = dup(fd);
1349 if (fd == -1)
1350 die_errno(_("open /dev/null or dup failed"));
1351 if (fd > 2)
1352 close(fd);
1355 int daemonize(void)
1357 #ifdef NO_POSIX_GOODIES
1358 errno = ENOSYS;
1359 return -1;
1360 #else
1361 switch (fork()) {
1362 case 0:
1363 break;
1364 case -1:
1365 die_errno(_("fork failed"));
1366 default:
1367 exit(0);
1369 if (setsid() == -1)
1370 die_errno(_("setsid failed"));
1371 close(0);
1372 close(1);
1373 close(2);
1374 sanitize_stdfds();
1375 return 0;
1376 #endif