2 #include "repository.h"
5 #include "string-list.h"
6 #include "chdir-notify.h"
7 #include "promisor-remote.h"
10 static int inside_git_dir
= -1;
11 static int inside_work_tree
= -1;
12 static int work_tree_config_is_bogus
;
14 static struct startup_info the_startup_info
;
15 struct startup_info
*startup_info
= &the_startup_info
;
16 const char *tmp_original_cwd
;
19 * The input parameter must contain an absolute path, and it must already be
22 * Find the part of an absolute path that lies inside the work tree by
23 * dereferencing symlinks outside the work tree, for example:
24 * /dir1/repo/dir2/file (work tree is /dir1/repo) -> dir2/file
25 * /dir/file (work tree is /) -> dir/file
26 * /dir/symlink1/symlink2 (symlink1 points to work tree) -> symlink2
27 * /dir/repolink/file (repolink points to /dir/repo) -> file
28 * /dir/repo (exactly equal to work tree) -> (empty string)
30 static int abspath_part_inside_repo(char *path
)
36 const char *work_tree
= get_git_work_tree();
37 struct strbuf realpath
= STRBUF_INIT
;
41 wtlen
= strlen(work_tree
);
43 off
= offset_1st_component(path
);
45 /* check if work tree is already the prefix */
46 if (wtlen
<= len
&& !fspathncmp(path
, work_tree
, wtlen
)) {
47 if (path
[wtlen
] == '/') {
48 memmove(path
, path
+ wtlen
+ 1, len
- wtlen
);
50 } else if (path
[wtlen
- 1] == '/' || path
[wtlen
] == '\0') {
51 /* work tree is the root, or the whole path */
52 memmove(path
, path
+ wtlen
, len
- wtlen
+ 1);
55 /* work tree might match beginning of a symlink to work tree */
61 /* check each '/'-terminated level */
66 strbuf_realpath(&realpath
, path0
, 1);
67 if (fspathcmp(realpath
.buf
, work_tree
) == 0) {
68 memmove(path0
, path
+ 1, len
- (path
- path0
));
69 strbuf_release(&realpath
);
76 /* check whole path */
77 strbuf_realpath(&realpath
, path0
, 1);
78 if (fspathcmp(realpath
.buf
, work_tree
) == 0) {
80 strbuf_release(&realpath
);
84 strbuf_release(&realpath
);
89 * Normalize "path", prepending the "prefix" for relative paths. If
90 * remaining_prefix is not NULL, return the actual prefix still
91 * remains in the path. For example, prefix = sub1/sub2/ and path is
93 * foo -> sub1/sub2/foo (full prefix)
94 * ../foo -> sub1/foo (remaining prefix is sub1/)
95 * ../../bar -> bar (no remaining prefix)
96 * ../../sub1/sub2/foo -> sub1/sub2/foo (but no remaining prefix)
97 * `pwd`/../bar -> sub1/bar (no remaining prefix)
99 char *prefix_path_gently(const char *prefix
, int len
,
100 int *remaining_prefix
, const char *path
)
102 const char *orig
= path
;
104 if (is_absolute_path(orig
)) {
105 sanitized
= xmallocz(strlen(path
));
106 if (remaining_prefix
)
107 *remaining_prefix
= 0;
108 if (normalize_path_copy_len(sanitized
, path
, remaining_prefix
)) {
112 if (abspath_part_inside_repo(sanitized
)) {
117 sanitized
= xstrfmt("%.*s%s", len
, len
? prefix
: "", path
);
118 if (remaining_prefix
)
119 *remaining_prefix
= len
;
120 if (normalize_path_copy_len(sanitized
, sanitized
, remaining_prefix
)) {
128 char *prefix_path(const char *prefix
, int len
, const char *path
)
130 char *r
= prefix_path_gently(prefix
, len
, NULL
, path
);
132 const char *hint_path
= get_git_work_tree();
134 hint_path
= get_git_dir();
135 die(_("'%s' is outside repository at '%s'"), path
,
136 absolute_path(hint_path
));
141 int path_inside_repo(const char *prefix
, const char *path
)
143 int len
= prefix
? strlen(prefix
) : 0;
144 char *r
= prefix_path_gently(prefix
, len
, NULL
, path
);
152 int check_filename(const char *prefix
, const char *arg
)
154 char *to_free
= NULL
;
157 if (skip_prefix(arg
, ":/", &arg
)) {
158 if (!*arg
) /* ":/" is root dir, always exists */
161 } else if (skip_prefix(arg
, ":!", &arg
) ||
162 skip_prefix(arg
, ":^", &arg
)) {
163 if (!*arg
) /* excluding everything is silly, but allowed */
168 arg
= to_free
= prefix_filename(prefix
, arg
);
170 if (!lstat(arg
, &st
)) {
172 return 1; /* file exists */
174 if (is_missing_file_error(errno
)) {
176 return 0; /* file does not exist */
178 die_errno(_("failed to stat '%s'"), arg
);
181 static void NORETURN
die_verify_filename(struct repository
*r
,
184 int diagnose_misspelt_rev
)
186 if (!diagnose_misspelt_rev
)
187 die(_("%s: no such path in the working tree.\n"
188 "Use 'git <command> -- <path>...' to specify paths that do not exist locally."),
191 * Saying "'(icase)foo' does not exist in the index" when the
192 * user gave us ":(icase)foo" is just stupid. A magic pathspec
193 * begins with a colon and is followed by a non-alnum; do not
194 * let maybe_die_on_misspelt_object_name() even trigger.
196 if (!(arg
[0] == ':' && !isalnum(arg
[1])))
197 maybe_die_on_misspelt_object_name(r
, arg
, prefix
);
199 /* ... or fall back the most general message. */
200 die(_("ambiguous argument '%s': unknown revision or path not in the working tree.\n"
201 "Use '--' to separate paths from revisions, like this:\n"
202 "'git <command> [<revision>...] -- [<file>...]'"), arg
);
207 * Check for arguments that don't resolve as actual files,
208 * but which look sufficiently like pathspecs that we'll consider
209 * them such for the purposes of rev/pathspec DWIM parsing.
211 static int looks_like_pathspec(const char *arg
)
217 * Wildcard characters imply the user is looking to match pathspecs
218 * that aren't in the filesystem. Note that this doesn't include
219 * backslash even though it's a glob special; by itself it doesn't
220 * cause any increase in the match. Likewise ignore backslash-escaped
221 * wildcard characters.
223 for (p
= arg
; *p
; p
++) {
226 } else if (is_glob_special(*p
)) {
234 /* long-form pathspec magic */
235 if (starts_with(arg
, ":("))
242 * Verify a filename that we got as an argument for a pathspec
243 * entry. Note that a filename that begins with "-" never verifies
244 * as true, because even if such a filename were to exist, we want
245 * it to be preceded by the "--" marker (or we want the user to
246 * use a format like "./-filename")
248 * The "diagnose_misspelt_rev" is used to provide a user-friendly
249 * diagnosis when dying upon finding that "name" is not a pathname.
250 * If set to 1, the diagnosis will try to diagnose "name" as an
251 * invalid object name (e.g. HEAD:foo). If set to 0, the diagnosis
252 * will only complain about an inexisting file.
254 * This function is typically called to check that a "file or rev"
255 * argument is unambiguous. In this case, the caller will want
256 * diagnose_misspelt_rev == 1 when verifying the first non-rev
257 * argument (which could have been a revision), and
258 * diagnose_misspelt_rev == 0 for the next ones (because we already
259 * saw a filename, there's not ambiguity anymore).
261 void verify_filename(const char *prefix
,
263 int diagnose_misspelt_rev
)
266 die(_("option '%s' must come before non-option arguments"), arg
);
267 if (looks_like_pathspec(arg
) || check_filename(prefix
, arg
))
269 die_verify_filename(the_repository
, prefix
, arg
, diagnose_misspelt_rev
);
273 * Opposite of the above: the command line did not have -- marker
274 * and we parsed the arg as a refname. It should not be interpretable
277 void verify_non_filename(const char *prefix
, const char *arg
)
279 if (!is_inside_work_tree() || is_inside_git_dir())
283 if (!check_filename(prefix
, arg
))
285 die(_("ambiguous argument '%s': both revision and filename\n"
286 "Use '--' to separate paths from revisions, like this:\n"
287 "'git <command> [<revision>...] -- [<file>...]'"), arg
);
290 int get_common_dir(struct strbuf
*sb
, const char *gitdir
)
292 const char *git_env_common_dir
= getenv(GIT_COMMON_DIR_ENVIRONMENT
);
293 if (git_env_common_dir
) {
294 strbuf_addstr(sb
, git_env_common_dir
);
297 return get_common_dir_noenv(sb
, gitdir
);
301 int get_common_dir_noenv(struct strbuf
*sb
, const char *gitdir
)
303 struct strbuf data
= STRBUF_INIT
;
304 struct strbuf path
= STRBUF_INIT
;
307 strbuf_addf(&path
, "%s/commondir", gitdir
);
308 if (file_exists(path
.buf
)) {
309 if (strbuf_read_file(&data
, path
.buf
, 0) <= 0)
310 die_errno(_("failed to read %s"), path
.buf
);
311 while (data
.len
&& (data
.buf
[data
.len
- 1] == '\n' ||
312 data
.buf
[data
.len
- 1] == '\r'))
314 data
.buf
[data
.len
] = '\0';
316 if (!is_absolute_path(data
.buf
))
317 strbuf_addf(&path
, "%s/", gitdir
);
318 strbuf_addbuf(&path
, &data
);
319 strbuf_add_real_path(sb
, path
.buf
);
322 strbuf_addstr(sb
, gitdir
);
325 strbuf_release(&data
);
326 strbuf_release(&path
);
331 * Test if it looks like we're at a git directory.
334 * - either an objects/ directory _or_ the proper
335 * GIT_OBJECT_DIRECTORY environment variable
336 * - a refs/ directory
337 * - either a HEAD symlink or a HEAD file that is formatted as
338 * a proper "ref:", or a regular file HEAD that has a properly
339 * formatted sha1 object name.
341 int is_git_directory(const char *suspect
)
343 struct strbuf path
= STRBUF_INIT
;
347 /* Check worktree-related signatures */
348 strbuf_addstr(&path
, suspect
);
349 strbuf_complete(&path
, '/');
350 strbuf_addstr(&path
, "HEAD");
351 if (validate_headref(path
.buf
))
355 get_common_dir(&path
, suspect
);
358 /* Check non-worktree-related signatures */
359 if (getenv(DB_ENVIRONMENT
)) {
360 if (access(getenv(DB_ENVIRONMENT
), X_OK
))
364 strbuf_setlen(&path
, len
);
365 strbuf_addstr(&path
, "/objects");
366 if (access(path
.buf
, X_OK
))
370 strbuf_setlen(&path
, len
);
371 strbuf_addstr(&path
, "/refs");
372 if (access(path
.buf
, X_OK
))
377 strbuf_release(&path
);
381 int is_nonbare_repository_dir(struct strbuf
*path
)
385 size_t orig_path_len
= path
->len
;
386 assert(orig_path_len
!= 0);
387 strbuf_complete(path
, '/');
388 strbuf_addstr(path
, ".git");
389 if (read_gitfile_gently(path
->buf
, &gitfile_error
) || is_git_directory(path
->buf
))
391 if (gitfile_error
== READ_GITFILE_ERR_OPEN_FAILED
||
392 gitfile_error
== READ_GITFILE_ERR_READ_FAILED
)
394 strbuf_setlen(path
, orig_path_len
);
398 int is_inside_git_dir(void)
400 if (inside_git_dir
< 0)
401 inside_git_dir
= is_inside_dir(get_git_dir());
402 return inside_git_dir
;
405 int is_inside_work_tree(void)
407 if (inside_work_tree
< 0)
408 inside_work_tree
= is_inside_dir(get_git_work_tree());
409 return inside_work_tree
;
412 void setup_work_tree(void)
414 const char *work_tree
;
415 static int initialized
= 0;
420 if (work_tree_config_is_bogus
)
421 die(_("unable to set up work tree using invalid config"));
423 work_tree
= get_git_work_tree();
424 if (!work_tree
|| chdir_notify(work_tree
))
425 die(_("this operation must be run in a work tree"));
428 * Make sure subsequent git processes find correct worktree
429 * if $GIT_WORK_TREE is set relative
431 if (getenv(GIT_WORK_TREE_ENVIRONMENT
))
432 setenv(GIT_WORK_TREE_ENVIRONMENT
, ".", 1);
437 static void setup_original_cwd(void)
439 struct strbuf tmp
= STRBUF_INIT
;
440 const char *worktree
= NULL
;
443 if (!tmp_original_cwd
)
447 * startup_info->original_cwd points to the current working
448 * directory we inherited from our parent process, which is a
449 * directory we want to avoid removing.
451 * For convience, we would like to have the path relative to the
452 * worktree instead of an absolute path.
454 * Yes, startup_info->original_cwd is usually the same as 'prefix',
455 * but differs in two ways:
456 * - prefix has a trailing '/'
457 * - if the user passes '-C' to git, that modifies the prefix but
458 * not startup_info->original_cwd.
461 /* Normalize the directory */
462 strbuf_realpath(&tmp
, tmp_original_cwd
, 1);
463 free((char*)tmp_original_cwd
);
464 tmp_original_cwd
= NULL
;
465 startup_info
->original_cwd
= strbuf_detach(&tmp
, NULL
);
468 * Get our worktree; we only protect the current working directory
469 * if it's in the worktree.
471 worktree
= get_git_work_tree();
473 goto no_prevention_needed
;
475 offset
= dir_inside_of(startup_info
->original_cwd
, worktree
);
478 * If startup_info->original_cwd == worktree, that is already
479 * protected and we don't need original_cwd as a secondary
480 * protection measure.
482 if (!*(startup_info
->original_cwd
+ offset
))
483 goto no_prevention_needed
;
486 * original_cwd was inside worktree; precompose it just as
487 * we do prefix so that built up paths will match
489 startup_info
->original_cwd
= \
490 precompose_string_if_needed(startup_info
->original_cwd
495 no_prevention_needed
:
496 free((char*)startup_info
->original_cwd
);
497 startup_info
->original_cwd
= NULL
;
500 static int read_worktree_config(const char *var
, const char *value
, void *vdata
)
502 struct repository_format
*data
= vdata
;
504 if (strcmp(var
, "core.bare") == 0) {
505 data
->is_bare
= git_config_bool(var
, value
);
506 } else if (strcmp(var
, "core.worktree") == 0) {
508 return config_error_nonbool(var
);
509 free(data
->work_tree
);
510 data
->work_tree
= xstrdup(value
);
515 enum extension_result
{
516 EXTENSION_ERROR
= -1, /* compatible with error(), etc */
517 EXTENSION_UNKNOWN
= 0,
522 * Do not add new extensions to this function. It handles extensions which are
523 * respected even in v0-format repositories for historical compatibility.
525 static enum extension_result
handle_extension_v0(const char *var
,
528 struct repository_format
*data
)
530 if (!strcmp(ext
, "noop")) {
532 } else if (!strcmp(ext
, "preciousobjects")) {
533 data
->precious_objects
= git_config_bool(var
, value
);
535 } else if (!strcmp(ext
, "partialclone")) {
536 data
->partial_clone
= xstrdup(value
);
538 } else if (!strcmp(ext
, "worktreeconfig")) {
539 data
->worktree_config
= git_config_bool(var
, value
);
543 return EXTENSION_UNKNOWN
;
547 * Record any new extensions in this function.
549 static enum extension_result
handle_extension(const char *var
,
552 struct repository_format
*data
)
554 if (!strcmp(ext
, "noop-v1")) {
556 } else if (!strcmp(ext
, "objectformat")) {
560 return config_error_nonbool(var
);
561 format
= hash_algo_by_name(value
);
562 if (format
== GIT_HASH_UNKNOWN
)
563 return error("invalid value for 'extensions.objectformat'");
564 data
->hash_algo
= format
;
567 return EXTENSION_UNKNOWN
;
570 static int check_repo_format(const char *var
, const char *value
, void *vdata
)
572 struct repository_format
*data
= vdata
;
575 if (strcmp(var
, "core.repositoryformatversion") == 0)
576 data
->version
= git_config_int(var
, value
);
577 else if (skip_prefix(var
, "extensions.", &ext
)) {
578 switch (handle_extension_v0(var
, value
, ext
, data
)) {
579 case EXTENSION_ERROR
:
583 case EXTENSION_UNKNOWN
:
587 switch (handle_extension(var
, value
, ext
, data
)) {
588 case EXTENSION_ERROR
:
591 string_list_append(&data
->v1_only_extensions
, ext
);
593 case EXTENSION_UNKNOWN
:
594 string_list_append(&data
->unknown_extensions
, ext
);
599 return read_worktree_config(var
, value
, vdata
);
602 static int check_repository_format_gently(const char *gitdir
, struct repository_format
*candidate
, int *nongit_ok
)
604 struct strbuf sb
= STRBUF_INIT
;
605 struct strbuf err
= STRBUF_INIT
;
608 has_common
= get_common_dir(&sb
, gitdir
);
609 strbuf_addstr(&sb
, "/config");
610 read_repository_format(candidate
, sb
.buf
);
614 * For historical use of check_repository_format() in git-init,
615 * we treat a missing config as a silent "ok", even when nongit_ok
618 if (candidate
->version
< 0)
621 if (verify_repository_format(candidate
, &err
) < 0) {
623 warning("%s", err
.buf
);
624 strbuf_release(&err
);
631 repository_format_precious_objects
= candidate
->precious_objects
;
632 repository_format_worktree_config
= candidate
->worktree_config
;
633 string_list_clear(&candidate
->unknown_extensions
, 0);
634 string_list_clear(&candidate
->v1_only_extensions
, 0);
636 if (repository_format_worktree_config
) {
638 * pick up core.bare and core.worktree from per-worktree
641 strbuf_addf(&sb
, "%s/config.worktree", gitdir
);
642 git_config_from_file(read_worktree_config
, sb
.buf
, candidate
);
648 if (candidate
->is_bare
!= -1) {
649 is_bare_repository_cfg
= candidate
->is_bare
;
650 if (is_bare_repository_cfg
== 1)
651 inside_work_tree
= -1;
653 if (candidate
->work_tree
) {
654 free(git_work_tree_cfg
);
655 git_work_tree_cfg
= xstrdup(candidate
->work_tree
);
656 inside_work_tree
= -1;
663 int upgrade_repository_format(int target_version
)
665 struct strbuf sb
= STRBUF_INIT
;
666 struct strbuf err
= STRBUF_INIT
;
667 struct strbuf repo_version
= STRBUF_INIT
;
668 struct repository_format repo_fmt
= REPOSITORY_FORMAT_INIT
;
670 strbuf_git_common_path(&sb
, the_repository
, "config");
671 read_repository_format(&repo_fmt
, sb
.buf
);
674 if (repo_fmt
.version
>= target_version
)
677 if (verify_repository_format(&repo_fmt
, &err
) < 0) {
678 error("cannot upgrade repository format from %d to %d: %s",
679 repo_fmt
.version
, target_version
, err
.buf
);
680 strbuf_release(&err
);
683 if (!repo_fmt
.version
&& repo_fmt
.unknown_extensions
.nr
)
684 return error("cannot upgrade repository format: "
685 "unknown extension %s",
686 repo_fmt
.unknown_extensions
.items
[0].string
);
688 strbuf_addf(&repo_version
, "%d", target_version
);
689 git_config_set("core.repositoryformatversion", repo_version
.buf
);
690 strbuf_release(&repo_version
);
694 static void init_repository_format(struct repository_format
*format
)
696 const struct repository_format fresh
= REPOSITORY_FORMAT_INIT
;
698 memcpy(format
, &fresh
, sizeof(fresh
));
701 int read_repository_format(struct repository_format
*format
, const char *path
)
703 clear_repository_format(format
);
704 git_config_from_file(check_repo_format
, path
, format
);
705 if (format
->version
== -1)
706 clear_repository_format(format
);
707 return format
->version
;
710 void clear_repository_format(struct repository_format
*format
)
712 string_list_clear(&format
->unknown_extensions
, 0);
713 string_list_clear(&format
->v1_only_extensions
, 0);
714 free(format
->work_tree
);
715 free(format
->partial_clone
);
716 init_repository_format(format
);
719 int verify_repository_format(const struct repository_format
*format
,
722 if (GIT_REPO_VERSION_READ
< format
->version
) {
723 strbuf_addf(err
, _("Expected git repo version <= %d, found %d"),
724 GIT_REPO_VERSION_READ
, format
->version
);
728 if (format
->version
>= 1 && format
->unknown_extensions
.nr
) {
731 strbuf_addstr(err
, Q_("unknown repository extension found:",
732 "unknown repository extensions found:",
733 format
->unknown_extensions
.nr
));
735 for (i
= 0; i
< format
->unknown_extensions
.nr
; i
++)
736 strbuf_addf(err
, "\n\t%s",
737 format
->unknown_extensions
.items
[i
].string
);
741 if (format
->version
== 0 && format
->v1_only_extensions
.nr
) {
745 Q_("repo version is 0, but v1-only extension found:",
746 "repo version is 0, but v1-only extensions found:",
747 format
->v1_only_extensions
.nr
));
749 for (i
= 0; i
< format
->v1_only_extensions
.nr
; i
++)
750 strbuf_addf(err
, "\n\t%s",
751 format
->v1_only_extensions
.items
[i
].string
);
758 void read_gitfile_error_die(int error_code
, const char *path
, const char *dir
)
760 switch (error_code
) {
761 case READ_GITFILE_ERR_STAT_FAILED
:
762 case READ_GITFILE_ERR_NOT_A_FILE
:
763 /* non-fatal; follow return path */
765 case READ_GITFILE_ERR_OPEN_FAILED
:
766 die_errno(_("error opening '%s'"), path
);
767 case READ_GITFILE_ERR_TOO_LARGE
:
768 die(_("too large to be a .git file: '%s'"), path
);
769 case READ_GITFILE_ERR_READ_FAILED
:
770 die(_("error reading %s"), path
);
771 case READ_GITFILE_ERR_INVALID_FORMAT
:
772 die(_("invalid gitfile format: %s"), path
);
773 case READ_GITFILE_ERR_NO_PATH
:
774 die(_("no path in gitfile: %s"), path
);
775 case READ_GITFILE_ERR_NOT_A_REPO
:
776 die(_("not a git repository: %s"), dir
);
778 BUG("unknown error code");
783 * Try to read the location of the git directory from the .git file,
784 * return path to git directory if found. The return value comes from
787 * On failure, if return_error_code is not NULL, return_error_code
788 * will be set to an error code and NULL will be returned. If
789 * return_error_code is NULL the function will die instead (for most
792 const char *read_gitfile_gently(const char *path
, int *return_error_code
)
794 const int max_file_size
= 1 << 20; /* 1MB */
802 static struct strbuf realpath
= STRBUF_INIT
;
804 if (stat(path
, &st
)) {
805 /* NEEDSWORK: discern between ENOENT vs other errors */
806 error_code
= READ_GITFILE_ERR_STAT_FAILED
;
809 if (!S_ISREG(st
.st_mode
)) {
810 error_code
= READ_GITFILE_ERR_NOT_A_FILE
;
813 if (st
.st_size
> max_file_size
) {
814 error_code
= READ_GITFILE_ERR_TOO_LARGE
;
817 fd
= open(path
, O_RDONLY
);
819 error_code
= READ_GITFILE_ERR_OPEN_FAILED
;
822 buf
= xmallocz(st
.st_size
);
823 len
= read_in_full(fd
, buf
, st
.st_size
);
825 if (len
!= st
.st_size
) {
826 error_code
= READ_GITFILE_ERR_READ_FAILED
;
829 if (!starts_with(buf
, "gitdir: ")) {
830 error_code
= READ_GITFILE_ERR_INVALID_FORMAT
;
833 while (buf
[len
- 1] == '\n' || buf
[len
- 1] == '\r')
836 error_code
= READ_GITFILE_ERR_NO_PATH
;
842 if (!is_absolute_path(dir
) && (slash
= strrchr(path
, '/'))) {
843 size_t pathlen
= slash
+1 - path
;
844 dir
= xstrfmt("%.*s%.*s", (int)pathlen
, path
,
845 (int)(len
- 8), buf
+ 8);
849 if (!is_git_directory(dir
)) {
850 error_code
= READ_GITFILE_ERR_NOT_A_REPO
;
854 strbuf_realpath(&realpath
, dir
, 1);
858 if (return_error_code
)
859 *return_error_code
= error_code
;
861 read_gitfile_error_die(error_code
, path
, dir
);
864 return error_code
? NULL
: path
;
867 static const char *setup_explicit_git_dir(const char *gitdirenv
,
869 struct repository_format
*repo_fmt
,
872 const char *work_tree_env
= getenv(GIT_WORK_TREE_ENVIRONMENT
);
873 const char *worktree
;
877 if (PATH_MAX
- 40 < strlen(gitdirenv
))
878 die(_("'$%s' too big"), GIT_DIR_ENVIRONMENT
);
880 gitfile
= (char*)read_gitfile(gitdirenv
);
882 gitfile
= xstrdup(gitfile
);
886 if (!is_git_directory(gitdirenv
)) {
892 die(_("not a git repository: '%s'"), gitdirenv
);
895 if (check_repository_format_gently(gitdirenv
, repo_fmt
, nongit_ok
)) {
900 /* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */
902 set_git_work_tree(work_tree_env
);
903 else if (is_bare_repository_cfg
> 0) {
904 if (git_work_tree_cfg
) {
906 warning("core.bare and core.worktree do not make sense");
907 work_tree_config_is_bogus
= 1;
911 set_git_dir(gitdirenv
, 0);
915 else if (git_work_tree_cfg
) { /* #6, #14 */
916 if (is_absolute_path(git_work_tree_cfg
))
917 set_git_work_tree(git_work_tree_cfg
);
920 if (chdir(gitdirenv
))
921 die_errno(_("cannot chdir to '%s'"), gitdirenv
);
922 if (chdir(git_work_tree_cfg
))
923 die_errno(_("cannot chdir to '%s'"), git_work_tree_cfg
);
924 core_worktree
= xgetcwd();
926 die_errno(_("cannot come back to cwd"));
927 set_git_work_tree(core_worktree
);
931 else if (!git_env_bool(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT
, 1)) {
933 set_git_dir(gitdirenv
, 0);
938 set_git_work_tree(".");
940 /* set_git_work_tree() must have been called by now */
941 worktree
= get_git_work_tree();
943 /* both get_git_work_tree() and cwd are already normalized */
944 if (!strcmp(cwd
->buf
, worktree
)) { /* cwd == worktree */
945 set_git_dir(gitdirenv
, 0);
950 offset
= dir_inside_of(cwd
->buf
, worktree
);
951 if (offset
>= 0) { /* cwd inside worktree? */
952 set_git_dir(gitdirenv
, 1);
954 die_errno(_("cannot chdir to '%s'"), worktree
);
955 strbuf_addch(cwd
, '/');
957 return cwd
->buf
+ offset
;
960 /* cwd outside worktree */
961 set_git_dir(gitdirenv
, 0);
966 static const char *setup_discovered_git_dir(const char *gitdir
,
967 struct strbuf
*cwd
, int offset
,
968 struct repository_format
*repo_fmt
,
971 if (check_repository_format_gently(gitdir
, repo_fmt
, nongit_ok
))
974 /* --work-tree is set without --git-dir; use discovered one */
975 if (getenv(GIT_WORK_TREE_ENVIRONMENT
) || git_work_tree_cfg
) {
976 char *to_free
= NULL
;
979 if (offset
!= cwd
->len
&& !is_absolute_path(gitdir
))
980 gitdir
= to_free
= real_pathdup(gitdir
, 1);
982 die_errno(_("cannot come back to cwd"));
983 ret
= setup_explicit_git_dir(gitdir
, cwd
, repo_fmt
, nongit_ok
);
988 /* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */
989 if (is_bare_repository_cfg
> 0) {
990 set_git_dir(gitdir
, (offset
!= cwd
->len
));
992 die_errno(_("cannot come back to cwd"));
996 /* #0, #1, #5, #8, #9, #12, #13 */
997 set_git_work_tree(".");
998 if (strcmp(gitdir
, DEFAULT_GIT_DIR_ENVIRONMENT
))
999 set_git_dir(gitdir
, 0);
1001 inside_work_tree
= 1;
1002 if (offset
>= cwd
->len
)
1005 /* Make "offset" point past the '/' (already the case for root dirs) */
1006 if (offset
!= offset_1st_component(cwd
->buf
))
1008 /* Add a '/' at the end */
1009 strbuf_addch(cwd
, '/');
1010 return cwd
->buf
+ offset
;
1013 /* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */
1014 static const char *setup_bare_git_dir(struct strbuf
*cwd
, int offset
,
1015 struct repository_format
*repo_fmt
,
1020 if (check_repository_format_gently(".", repo_fmt
, nongit_ok
))
1023 setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT
, "0", 1);
1025 /* --work-tree is set without --git-dir; use discovered one */
1026 if (getenv(GIT_WORK_TREE_ENVIRONMENT
) || git_work_tree_cfg
) {
1027 static const char *gitdir
;
1029 gitdir
= offset
== cwd
->len
? "." : xmemdupz(cwd
->buf
, offset
);
1030 if (chdir(cwd
->buf
))
1031 die_errno(_("cannot come back to cwd"));
1032 return setup_explicit_git_dir(gitdir
, cwd
, repo_fmt
, nongit_ok
);
1036 inside_work_tree
= 0;
1037 if (offset
!= cwd
->len
) {
1038 if (chdir(cwd
->buf
))
1039 die_errno(_("cannot come back to cwd"));
1040 root_len
= offset_1st_component(cwd
->buf
);
1041 strbuf_setlen(cwd
, offset
> root_len
? offset
: root_len
);
1042 set_git_dir(cwd
->buf
, 0);
1045 set_git_dir(".", 0);
1049 static dev_t
get_device_or_die(const char *path
, const char *prefix
, int prefix_len
)
1052 if (stat(path
, &buf
)) {
1053 die_errno(_("failed to stat '%*s%s%s'"),
1055 prefix
? prefix
: "",
1056 prefix
? "/" : "", path
);
1062 * A "string_list_each_func_t" function that canonicalizes an entry
1063 * from GIT_CEILING_DIRECTORIES using real_pathdup(), or
1064 * discards it if unusable. The presence of an empty entry in
1065 * GIT_CEILING_DIRECTORIES turns off canonicalization for all
1066 * subsequent entries.
1068 static int canonicalize_ceiling_entry(struct string_list_item
*item
,
1071 int *empty_entry_found
= cb_data
;
1072 char *ceil
= item
->string
;
1075 *empty_entry_found
= 1;
1077 } else if (!is_absolute_path(ceil
)) {
1079 } else if (*empty_entry_found
) {
1080 /* Keep entry but do not canonicalize it */
1083 char *real_path
= real_pathdup(ceil
, 0);
1088 item
->string
= real_path
;
1093 struct safe_directory_data
{
1098 static int safe_directory_cb(const char *key
, const char *value
, void *d
)
1100 struct safe_directory_data
*data
= d
;
1102 if (!value
|| !*value
)
1105 const char *interpolated
= NULL
;
1107 if (!git_config_pathname(&interpolated
, key
, value
) &&
1108 !fspathcmp(data
->path
, interpolated
? interpolated
: value
))
1111 free((char *)interpolated
);
1117 static int ensure_valid_ownership(const char *path
)
1119 struct safe_directory_data data
= { .path
= path
};
1121 if (is_path_owned_by_current_user(path
))
1124 read_very_early_config(safe_directory_cb
, &data
);
1126 return data
.is_safe
;
1129 enum discovery_result
{
1134 /* these are errors */
1135 GIT_DIR_HIT_CEILING
= -1,
1136 GIT_DIR_HIT_MOUNT_POINT
= -2,
1137 GIT_DIR_INVALID_GITFILE
= -3,
1138 GIT_DIR_INVALID_OWNERSHIP
= -4
1142 * We cannot decide in this function whether we are in the work tree or
1143 * not, since the config can only be read _after_ this function was called.
1145 * Also, we avoid changing any global state (such as the current working
1146 * directory) to allow early callers.
1148 * The directory where the search should start needs to be passed in via the
1149 * `dir` parameter; upon return, the `dir` buffer will contain the path of
1150 * the directory where the search ended, and `gitdir` will contain the path of
1151 * the discovered .git/ directory, if any. If `gitdir` is not absolute, it
1152 * is relative to `dir` (i.e. *not* necessarily the cwd).
1154 static enum discovery_result
setup_git_directory_gently_1(struct strbuf
*dir
,
1155 struct strbuf
*gitdir
,
1158 const char *env_ceiling_dirs
= getenv(CEILING_DIRECTORIES_ENVIRONMENT
);
1159 struct string_list ceiling_dirs
= STRING_LIST_INIT_DUP
;
1160 const char *gitdirenv
;
1161 int ceil_offset
= -1, min_offset
= offset_1st_component(dir
->buf
);
1162 dev_t current_device
= 0;
1163 int one_filesystem
= 1;
1166 * If GIT_DIR is set explicitly, we're not going
1167 * to do any discovery, but we still do repository
1170 gitdirenv
= getenv(GIT_DIR_ENVIRONMENT
);
1172 strbuf_addstr(gitdir
, gitdirenv
);
1173 return GIT_DIR_EXPLICIT
;
1176 if (env_ceiling_dirs
) {
1177 int empty_entry_found
= 0;
1179 string_list_split(&ceiling_dirs
, env_ceiling_dirs
, PATH_SEP
, -1);
1180 filter_string_list(&ceiling_dirs
, 0,
1181 canonicalize_ceiling_entry
, &empty_entry_found
);
1182 ceil_offset
= longest_ancestor_length(dir
->buf
, &ceiling_dirs
);
1183 string_list_clear(&ceiling_dirs
, 0);
1186 if (ceil_offset
< 0)
1187 ceil_offset
= min_offset
- 2;
1189 if (min_offset
&& min_offset
== dir
->len
&&
1190 !is_dir_sep(dir
->buf
[min_offset
- 1])) {
1191 strbuf_addch(dir
, '/');
1196 * Test in the following order (relative to the dir):
1197 * - .git (file containing "gitdir: <path>")
1206 one_filesystem
= !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM", 0);
1208 current_device
= get_device_or_die(dir
->buf
, NULL
, 0);
1210 int offset
= dir
->len
, error_code
= 0;
1212 if (offset
> min_offset
)
1213 strbuf_addch(dir
, '/');
1214 strbuf_addstr(dir
, DEFAULT_GIT_DIR_ENVIRONMENT
);
1215 gitdirenv
= read_gitfile_gently(dir
->buf
, die_on_error
?
1216 NULL
: &error_code
);
1219 error_code
== READ_GITFILE_ERR_NOT_A_FILE
) {
1220 /* NEEDSWORK: fail if .git is not file nor dir */
1221 if (is_git_directory(dir
->buf
))
1222 gitdirenv
= DEFAULT_GIT_DIR_ENVIRONMENT
;
1223 } else if (error_code
!= READ_GITFILE_ERR_STAT_FAILED
)
1224 return GIT_DIR_INVALID_GITFILE
;
1226 strbuf_setlen(dir
, offset
);
1228 if (!ensure_valid_ownership(dir
->buf
))
1229 return GIT_DIR_INVALID_OWNERSHIP
;
1230 strbuf_addstr(gitdir
, gitdirenv
);
1231 return GIT_DIR_DISCOVERED
;
1234 if (is_git_directory(dir
->buf
)) {
1235 if (!ensure_valid_ownership(dir
->buf
))
1236 return GIT_DIR_INVALID_OWNERSHIP
;
1237 strbuf_addstr(gitdir
, ".");
1238 return GIT_DIR_BARE
;
1241 if (offset
<= min_offset
)
1242 return GIT_DIR_HIT_CEILING
;
1244 while (--offset
> ceil_offset
&& !is_dir_sep(dir
->buf
[offset
]))
1246 if (offset
<= ceil_offset
)
1247 return GIT_DIR_HIT_CEILING
;
1249 strbuf_setlen(dir
, offset
> min_offset
? offset
: min_offset
);
1250 if (one_filesystem
&&
1251 current_device
!= get_device_or_die(dir
->buf
, NULL
, offset
))
1252 return GIT_DIR_HIT_MOUNT_POINT
;
1256 int discover_git_directory(struct strbuf
*commondir
,
1257 struct strbuf
*gitdir
)
1259 struct strbuf dir
= STRBUF_INIT
, err
= STRBUF_INIT
;
1260 size_t gitdir_offset
= gitdir
->len
, cwd_len
;
1261 size_t commondir_offset
= commondir
->len
;
1262 struct repository_format candidate
= REPOSITORY_FORMAT_INIT
;
1264 if (strbuf_getcwd(&dir
))
1268 if (setup_git_directory_gently_1(&dir
, gitdir
, 0) <= 0) {
1269 strbuf_release(&dir
);
1274 * The returned gitdir is relative to dir, and if dir does not reflect
1275 * the current working directory, we simply make the gitdir absolute.
1277 if (dir
.len
< cwd_len
&& !is_absolute_path(gitdir
->buf
+ gitdir_offset
)) {
1278 /* Avoid a trailing "/." */
1279 if (!strcmp(".", gitdir
->buf
+ gitdir_offset
))
1280 strbuf_setlen(gitdir
, gitdir_offset
);
1282 strbuf_addch(&dir
, '/');
1283 strbuf_insert(gitdir
, gitdir_offset
, dir
.buf
, dir
.len
);
1286 get_common_dir(commondir
, gitdir
->buf
+ gitdir_offset
);
1289 strbuf_addf(&dir
, "%s/config", commondir
->buf
+ commondir_offset
);
1290 read_repository_format(&candidate
, dir
.buf
);
1291 strbuf_release(&dir
);
1293 if (verify_repository_format(&candidate
, &err
) < 0) {
1294 warning("ignoring git dir '%s': %s",
1295 gitdir
->buf
+ gitdir_offset
, err
.buf
);
1296 strbuf_release(&err
);
1297 strbuf_setlen(commondir
, commondir_offset
);
1298 strbuf_setlen(gitdir
, gitdir_offset
);
1299 clear_repository_format(&candidate
);
1303 /* take ownership of candidate.partial_clone */
1304 the_repository
->repository_format_partial_clone
=
1305 candidate
.partial_clone
;
1306 candidate
.partial_clone
= NULL
;
1308 clear_repository_format(&candidate
);
1312 const char *setup_git_directory_gently(int *nongit_ok
)
1314 static struct strbuf cwd
= STRBUF_INIT
;
1315 struct strbuf dir
= STRBUF_INIT
, gitdir
= STRBUF_INIT
;
1316 const char *prefix
= NULL
;
1317 struct repository_format repo_fmt
= REPOSITORY_FORMAT_INIT
;
1320 * We may have read an incomplete configuration before
1321 * setting-up the git directory. If so, clear the cache so
1322 * that the next queries to the configuration reload complete
1323 * configuration (including the per-repo config file that we
1324 * ignored previously).
1329 * Let's assume that we are in a git repository.
1330 * If it turns out later that we are somewhere else, the value will be
1331 * updated accordingly.
1336 if (strbuf_getcwd(&cwd
))
1337 die_errno(_("Unable to read current working directory"));
1338 strbuf_addbuf(&dir
, &cwd
);
1340 switch (setup_git_directory_gently_1(&dir
, &gitdir
, 1)) {
1341 case GIT_DIR_EXPLICIT
:
1342 prefix
= setup_explicit_git_dir(gitdir
.buf
, &cwd
, &repo_fmt
, nongit_ok
);
1344 case GIT_DIR_DISCOVERED
:
1345 if (dir
.len
< cwd
.len
&& chdir(dir
.buf
))
1346 die(_("cannot change to '%s'"), dir
.buf
);
1347 prefix
= setup_discovered_git_dir(gitdir
.buf
, &cwd
, dir
.len
,
1348 &repo_fmt
, nongit_ok
);
1351 if (dir
.len
< cwd
.len
&& chdir(dir
.buf
))
1352 die(_("cannot change to '%s'"), dir
.buf
);
1353 prefix
= setup_bare_git_dir(&cwd
, dir
.len
, &repo_fmt
, nongit_ok
);
1355 case GIT_DIR_HIT_CEILING
:
1357 die(_("not a git repository (or any of the parent directories): %s"),
1358 DEFAULT_GIT_DIR_ENVIRONMENT
);
1361 case GIT_DIR_HIT_MOUNT_POINT
:
1363 die(_("not a git repository (or any parent up to mount point %s)\n"
1364 "Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set)."),
1368 case GIT_DIR_INVALID_OWNERSHIP
:
1370 struct strbuf quoted
= STRBUF_INIT
;
1372 sq_quote_buf_pretty("ed
, dir
.buf
);
1373 die(_("unsafe repository ('%s' is owned by someone else)\n"
1374 "To add an exception for this directory, call:\n"
1376 "\tgit config --global --add safe.directory %s"),
1377 dir
.buf
, quoted
.buf
);
1383 * As a safeguard against setup_git_directory_gently_1 returning
1384 * this value, fallthrough to BUG. Otherwise it is possible to
1385 * set startup_info->have_repository to 1 when we did nothing to
1386 * find a repository.
1389 BUG("unhandled setup_git_directory_1() result");
1393 * At this point, nongit_ok is stable. If it is non-NULL and points
1394 * to a non-zero value, then this means that we haven't found a
1395 * repository and that the caller expects startup_info to reflect
1398 * Regardless of the state of nongit_ok, startup_info->prefix and
1399 * the GIT_PREFIX environment variable must always match. For details
1400 * see Documentation/config/alias.txt.
1402 if (nongit_ok
&& *nongit_ok
)
1403 startup_info
->have_repository
= 0;
1405 startup_info
->have_repository
= 1;
1408 * Not all paths through the setup code will call 'set_git_dir()' (which
1409 * directly sets up the environment) so in order to guarantee that the
1410 * environment is in a consistent state after setup, explicitly setup
1411 * the environment if we have a repository.
1413 * NEEDSWORK: currently we allow bogus GIT_DIR values to be set in some
1414 * code paths so we also need to explicitly setup the environment if
1415 * the user has set GIT_DIR. It may be beneficial to disallow bogus
1416 * GIT_DIR values at some point in the future.
1418 if (/* GIT_DIR_EXPLICIT, GIT_DIR_DISCOVERED, GIT_DIR_BARE */
1419 startup_info
->have_repository
||
1420 /* GIT_DIR_EXPLICIT */
1421 getenv(GIT_DIR_ENVIRONMENT
)) {
1422 if (!the_repository
->gitdir
) {
1423 const char *gitdir
= getenv(GIT_DIR_ENVIRONMENT
);
1425 gitdir
= DEFAULT_GIT_DIR_ENVIRONMENT
;
1426 setup_git_env(gitdir
);
1428 if (startup_info
->have_repository
) {
1429 repo_set_hash_algo(the_repository
, repo_fmt
.hash_algo
);
1430 /* take ownership of repo_fmt.partial_clone */
1431 the_repository
->repository_format_partial_clone
=
1432 repo_fmt
.partial_clone
;
1433 repo_fmt
.partial_clone
= NULL
;
1437 * Since precompose_string_if_needed() needs to look at
1438 * the core.precomposeunicode configuration, this
1439 * has to happen after the above block that finds
1440 * out where the repository is, i.e. a preparation
1441 * for calling git_config_get_bool().
1444 prefix
= precompose_string_if_needed(prefix
);
1445 startup_info
->prefix
= prefix
;
1446 setenv(GIT_PREFIX_ENVIRONMENT
, prefix
, 1);
1448 startup_info
->prefix
= NULL
;
1449 setenv(GIT_PREFIX_ENVIRONMENT
, "", 1);
1452 setup_original_cwd();
1454 strbuf_release(&dir
);
1455 strbuf_release(&gitdir
);
1456 clear_repository_format(&repo_fmt
);
1461 int git_config_perm(const char *var
, const char *value
)
1469 if (!strcmp(value
, "umask"))
1471 if (!strcmp(value
, "group"))
1473 if (!strcmp(value
, "all") ||
1474 !strcmp(value
, "world") ||
1475 !strcmp(value
, "everybody"))
1476 return PERM_EVERYBODY
;
1478 /* Parse octal numbers */
1479 i
= strtol(value
, &endptr
, 8);
1481 /* If not an octal number, maybe true/false? */
1483 return git_config_bool(var
, value
) ? PERM_GROUP
: PERM_UMASK
;
1486 * Treat values 0, 1 and 2 as compatibility cases, otherwise it is
1487 * a chmod value to restrict to.
1490 case PERM_UMASK
: /* 0 */
1492 case OLD_PERM_GROUP
: /* 1 */
1494 case OLD_PERM_EVERYBODY
: /* 2 */
1495 return PERM_EVERYBODY
;
1498 /* A filemode value was given: 0xxx */
1500 if ((i
& 0600) != 0600)
1501 die(_("problem with core.sharedRepository filemode value "
1502 "(0%.3o).\nThe owner of files must always have "
1503 "read and write permissions."), i
);
1506 * Mask filemode value. Others can not get write permission.
1507 * x flags for directories are handled separately.
1512 void check_repository_format(struct repository_format
*fmt
)
1514 struct repository_format repo_fmt
= REPOSITORY_FORMAT_INIT
;
1517 check_repository_format_gently(get_git_dir(), fmt
, NULL
);
1518 startup_info
->have_repository
= 1;
1519 repo_set_hash_algo(the_repository
, fmt
->hash_algo
);
1520 the_repository
->repository_format_partial_clone
=
1521 xstrdup_or_null(fmt
->partial_clone
);
1522 clear_repository_format(&repo_fmt
);
1526 * Returns the "prefix", a path to the current working directory
1527 * relative to the work tree root, or NULL, if the current working
1528 * directory is not a strict subdirectory of the work tree root. The
1529 * prefix always ends with a '/' character.
1531 const char *setup_git_directory(void)
1533 return setup_git_directory_gently(NULL
);
1536 const char *resolve_gitdir_gently(const char *suspect
, int *return_error_code
)
1538 if (is_git_directory(suspect
))
1540 return read_gitfile_gently(suspect
, return_error_code
);
1543 /* if any standard file descriptor is missing open it to /dev/null */
1544 void sanitize_stdfds(void)
1546 int fd
= xopen("/dev/null", O_RDWR
);
1555 #ifdef NO_POSIX_GOODIES
1563 die_errno(_("fork failed"));
1568 die_errno(_("setsid failed"));