2 #include "repository.h"
5 #include "string-list.h"
7 static int inside_git_dir
= -1;
8 static int inside_work_tree
= -1;
9 static int work_tree_config_is_bogus
;
11 static struct startup_info the_startup_info
;
12 struct startup_info
*startup_info
= &the_startup_info
;
15 * The input parameter must contain an absolute path, and it must already be
18 * Find the part of an absolute path that lies inside the work tree by
19 * dereferencing symlinks outside the work tree, for example:
20 * /dir1/repo/dir2/file (work tree is /dir1/repo) -> dir2/file
21 * /dir/file (work tree is /) -> dir/file
22 * /dir/symlink1/symlink2 (symlink1 points to work tree) -> symlink2
23 * /dir/repolink/file (repolink points to /dir/repo) -> file
24 * /dir/repo (exactly equal to work tree) -> (empty string)
26 static int abspath_part_inside_repo(char *path
)
32 const char *work_tree
= get_git_work_tree();
36 wtlen
= strlen(work_tree
);
38 off
= offset_1st_component(path
);
40 /* check if work tree is already the prefix */
41 if (wtlen
<= len
&& !strncmp(path
, work_tree
, wtlen
)) {
42 if (path
[wtlen
] == '/') {
43 memmove(path
, path
+ wtlen
+ 1, len
- wtlen
);
45 } else if (path
[wtlen
- 1] == '/' || path
[wtlen
] == '\0') {
46 /* work tree is the root, or the whole path */
47 memmove(path
, path
+ wtlen
, len
- wtlen
+ 1);
50 /* work tree might match beginning of a symlink to work tree */
56 /* check each '/'-terminated level */
61 if (strcmp(real_path(path0
), work_tree
) == 0) {
62 memmove(path0
, path
+ 1, len
- (path
- path0
));
69 /* check whole path */
70 if (strcmp(real_path(path0
), work_tree
) == 0) {
79 * Normalize "path", prepending the "prefix" for relative paths. If
80 * remaining_prefix is not NULL, return the actual prefix still
81 * remains in the path. For example, prefix = sub1/sub2/ and path is
83 * foo -> sub1/sub2/foo (full prefix)
84 * ../foo -> sub1/foo (remaining prefix is sub1/)
85 * ../../bar -> bar (no remaining prefix)
86 * ../../sub1/sub2/foo -> sub1/sub2/foo (but no remaining prefix)
87 * `pwd`/../bar -> sub1/bar (no remaining prefix)
89 char *prefix_path_gently(const char *prefix
, int len
,
90 int *remaining_prefix
, const char *path
)
92 const char *orig
= path
;
94 if (is_absolute_path(orig
)) {
95 sanitized
= xmallocz(strlen(path
));
97 *remaining_prefix
= 0;
98 if (normalize_path_copy_len(sanitized
, path
, remaining_prefix
)) {
102 if (abspath_part_inside_repo(sanitized
)) {
107 sanitized
= xstrfmt("%.*s%s", len
, len
? prefix
: "", path
);
108 if (remaining_prefix
)
109 *remaining_prefix
= len
;
110 if (normalize_path_copy_len(sanitized
, sanitized
, remaining_prefix
)) {
118 char *prefix_path(const char *prefix
, int len
, const char *path
)
120 char *r
= prefix_path_gently(prefix
, len
, NULL
, path
);
122 die("'%s' is outside repository", path
);
126 int path_inside_repo(const char *prefix
, const char *path
)
128 int len
= prefix
? strlen(prefix
) : 0;
129 char *r
= prefix_path_gently(prefix
, len
, NULL
, path
);
137 int check_filename(const char *prefix
, const char *arg
)
139 char *to_free
= NULL
;
142 if (skip_prefix(arg
, ":/", &arg
)) {
143 if (!*arg
) /* ":/" is root dir, always exists */
146 } else if (skip_prefix(arg
, ":!", &arg
) ||
147 skip_prefix(arg
, ":^", &arg
)) {
148 if (!*arg
) /* excluding everything is silly, but allowed */
153 arg
= to_free
= prefix_filename(prefix
, arg
);
155 if (!lstat(arg
, &st
)) {
157 return 1; /* file exists */
159 if (is_missing_file_error(errno
)) {
161 return 0; /* file does not exist */
163 die_errno("failed to stat '%s'", arg
);
166 static void NORETURN
die_verify_filename(const char *prefix
,
168 int diagnose_misspelt_rev
)
170 if (!diagnose_misspelt_rev
)
171 die(_("%s: no such path in the working tree.\n"
172 "Use 'git <command> -- <path>...' to specify paths that do not exist locally."),
175 * Saying "'(icase)foo' does not exist in the index" when the
176 * user gave us ":(icase)foo" is just stupid. A magic pathspec
177 * begins with a colon and is followed by a non-alnum; do not
178 * let maybe_die_on_misspelt_object_name() even trigger.
180 if (!(arg
[0] == ':' && !isalnum(arg
[1])))
181 maybe_die_on_misspelt_object_name(arg
, prefix
);
183 /* ... or fall back the most general message. */
184 die(_("ambiguous argument '%s': unknown revision or path not in the working tree.\n"
185 "Use '--' to separate paths from revisions, like this:\n"
186 "'git <command> [<revision>...] -- [<file>...]'"), arg
);
191 * Check for arguments that don't resolve as actual files,
192 * but which look sufficiently like pathspecs that we'll consider
193 * them such for the purposes of rev/pathspec DWIM parsing.
195 static int looks_like_pathspec(const char *arg
)
197 /* anything with a wildcard character */
198 if (!no_wildcard(arg
))
201 /* long-form pathspec magic */
202 if (starts_with(arg
, ":("))
209 * Verify a filename that we got as an argument for a pathspec
210 * entry. Note that a filename that begins with "-" never verifies
211 * as true, because even if such a filename were to exist, we want
212 * it to be preceded by the "--" marker (or we want the user to
213 * use a format like "./-filename")
215 * The "diagnose_misspelt_rev" is used to provide a user-friendly
216 * diagnosis when dying upon finding that "name" is not a pathname.
217 * If set to 1, the diagnosis will try to diagnose "name" as an
218 * invalid object name (e.g. HEAD:foo). If set to 0, the diagnosis
219 * will only complain about an inexisting file.
221 * This function is typically called to check that a "file or rev"
222 * argument is unambiguous. In this case, the caller will want
223 * diagnose_misspelt_rev == 1 when verifying the first non-rev
224 * argument (which could have been a revision), and
225 * diagnose_misspelt_rev == 0 for the next ones (because we already
226 * saw a filename, there's not ambiguity anymore).
228 void verify_filename(const char *prefix
,
230 int diagnose_misspelt_rev
)
233 die("option '%s' must come before non-option arguments", arg
);
234 if (looks_like_pathspec(arg
) || check_filename(prefix
, arg
))
236 die_verify_filename(prefix
, arg
, diagnose_misspelt_rev
);
240 * Opposite of the above: the command line did not have -- marker
241 * and we parsed the arg as a refname. It should not be interpretable
244 void verify_non_filename(const char *prefix
, const char *arg
)
246 if (!is_inside_work_tree() || is_inside_git_dir())
250 if (!check_filename(prefix
, arg
))
252 die(_("ambiguous argument '%s': both revision and filename\n"
253 "Use '--' to separate paths from revisions, like this:\n"
254 "'git <command> [<revision>...] -- [<file>...]'"), arg
);
257 int get_common_dir(struct strbuf
*sb
, const char *gitdir
)
259 const char *git_env_common_dir
= getenv(GIT_COMMON_DIR_ENVIRONMENT
);
260 if (git_env_common_dir
) {
261 strbuf_addstr(sb
, git_env_common_dir
);
264 return get_common_dir_noenv(sb
, gitdir
);
268 int get_common_dir_noenv(struct strbuf
*sb
, const char *gitdir
)
270 struct strbuf data
= STRBUF_INIT
;
271 struct strbuf path
= STRBUF_INIT
;
274 strbuf_addf(&path
, "%s/commondir", gitdir
);
275 if (file_exists(path
.buf
)) {
276 if (strbuf_read_file(&data
, path
.buf
, 0) <= 0)
277 die_errno(_("failed to read %s"), path
.buf
);
278 while (data
.len
&& (data
.buf
[data
.len
- 1] == '\n' ||
279 data
.buf
[data
.len
- 1] == '\r'))
281 data
.buf
[data
.len
] = '\0';
283 if (!is_absolute_path(data
.buf
))
284 strbuf_addf(&path
, "%s/", gitdir
);
285 strbuf_addbuf(&path
, &data
);
286 strbuf_add_real_path(sb
, path
.buf
);
289 strbuf_addstr(sb
, gitdir
);
292 strbuf_release(&data
);
293 strbuf_release(&path
);
298 * Test if it looks like we're at a git directory.
301 * - either an objects/ directory _or_ the proper
302 * GIT_OBJECT_DIRECTORY environment variable
303 * - a refs/ directory
304 * - either a HEAD symlink or a HEAD file that is formatted as
305 * a proper "ref:", or a regular file HEAD that has a properly
306 * formatted sha1 object name.
308 int is_git_directory(const char *suspect
)
310 struct strbuf path
= STRBUF_INIT
;
314 /* Check worktree-related signatures */
315 strbuf_addstr(&path
, suspect
);
316 strbuf_complete(&path
, '/');
317 strbuf_addstr(&path
, "HEAD");
318 if (validate_headref(path
.buf
))
322 get_common_dir(&path
, suspect
);
325 /* Check non-worktree-related signatures */
326 if (getenv(DB_ENVIRONMENT
)) {
327 if (access(getenv(DB_ENVIRONMENT
), X_OK
))
331 strbuf_setlen(&path
, len
);
332 strbuf_addstr(&path
, "/objects");
333 if (access(path
.buf
, X_OK
))
337 strbuf_setlen(&path
, len
);
338 strbuf_addstr(&path
, "/refs");
339 if (access(path
.buf
, X_OK
))
344 strbuf_release(&path
);
348 int is_nonbare_repository_dir(struct strbuf
*path
)
352 size_t orig_path_len
= path
->len
;
353 assert(orig_path_len
!= 0);
354 strbuf_complete(path
, '/');
355 strbuf_addstr(path
, ".git");
356 if (read_gitfile_gently(path
->buf
, &gitfile_error
) || is_git_directory(path
->buf
))
358 if (gitfile_error
== READ_GITFILE_ERR_OPEN_FAILED
||
359 gitfile_error
== READ_GITFILE_ERR_READ_FAILED
)
361 strbuf_setlen(path
, orig_path_len
);
365 int is_inside_git_dir(void)
367 if (inside_git_dir
< 0)
368 inside_git_dir
= is_inside_dir(get_git_dir());
369 return inside_git_dir
;
372 int is_inside_work_tree(void)
374 if (inside_work_tree
< 0)
375 inside_work_tree
= is_inside_dir(get_git_work_tree());
376 return inside_work_tree
;
379 void setup_work_tree(void)
381 const char *work_tree
, *git_dir
;
382 static int initialized
= 0;
387 if (work_tree_config_is_bogus
)
388 die("unable to set up work tree using invalid config");
390 work_tree
= get_git_work_tree();
391 git_dir
= get_git_dir();
392 if (!is_absolute_path(git_dir
))
393 git_dir
= real_path(get_git_dir());
394 if (!work_tree
|| chdir(work_tree
))
395 die("This operation must be run in a work tree");
398 * Make sure subsequent git processes find correct worktree
399 * if $GIT_WORK_TREE is set relative
401 if (getenv(GIT_WORK_TREE_ENVIRONMENT
))
402 setenv(GIT_WORK_TREE_ENVIRONMENT
, ".", 1);
404 set_git_dir(remove_leading_path(git_dir
, work_tree
));
408 static int check_repo_format(const char *var
, const char *value
, void *vdata
)
410 struct repository_format
*data
= vdata
;
413 if (strcmp(var
, "core.repositoryformatversion") == 0)
414 data
->version
= git_config_int(var
, value
);
415 else if (skip_prefix(var
, "extensions.", &ext
)) {
417 * record any known extensions here; otherwise,
418 * we fall through to recording it as unknown, and
419 * check_repository_format will complain
421 if (!strcmp(ext
, "noop"))
423 else if (!strcmp(ext
, "preciousobjects"))
424 data
->precious_objects
= git_config_bool(var
, value
);
426 string_list_append(&data
->unknown_extensions
, ext
);
427 } else if (strcmp(var
, "core.bare") == 0) {
428 data
->is_bare
= git_config_bool(var
, value
);
429 } else if (strcmp(var
, "core.worktree") == 0) {
431 return config_error_nonbool(var
);
432 data
->work_tree
= xstrdup(value
);
437 static int check_repository_format_gently(const char *gitdir
, struct repository_format
*candidate
, int *nongit_ok
)
439 struct strbuf sb
= STRBUF_INIT
;
440 struct strbuf err
= STRBUF_INIT
;
443 has_common
= get_common_dir(&sb
, gitdir
);
444 strbuf_addstr(&sb
, "/config");
445 read_repository_format(candidate
, sb
.buf
);
449 * For historical use of check_repository_format() in git-init,
450 * we treat a missing config as a silent "ok", even when nongit_ok
453 if (candidate
->version
< 0)
456 if (verify_repository_format(candidate
, &err
) < 0) {
458 warning("%s", err
.buf
);
459 strbuf_release(&err
);
466 repository_format_precious_objects
= candidate
->precious_objects
;
467 string_list_clear(&candidate
->unknown_extensions
, 0);
469 if (candidate
->is_bare
!= -1) {
470 is_bare_repository_cfg
= candidate
->is_bare
;
471 if (is_bare_repository_cfg
== 1)
472 inside_work_tree
= -1;
474 if (candidate
->work_tree
) {
475 free(git_work_tree_cfg
);
476 git_work_tree_cfg
= candidate
->work_tree
;
477 inside_work_tree
= -1;
480 free(candidate
->work_tree
);
486 int read_repository_format(struct repository_format
*format
, const char *path
)
488 memset(format
, 0, sizeof(*format
));
489 format
->version
= -1;
490 format
->is_bare
= -1;
491 format
->hash_algo
= GIT_HASH_SHA1
;
492 string_list_init(&format
->unknown_extensions
, 1);
493 git_config_from_file(check_repo_format
, path
, format
);
494 return format
->version
;
497 int verify_repository_format(const struct repository_format
*format
,
500 if (GIT_REPO_VERSION_READ
< format
->version
) {
501 strbuf_addf(err
, _("Expected git repo version <= %d, found %d"),
502 GIT_REPO_VERSION_READ
, format
->version
);
506 if (format
->version
>= 1 && format
->unknown_extensions
.nr
) {
509 strbuf_addstr(err
, _("unknown repository extensions found:"));
511 for (i
= 0; i
< format
->unknown_extensions
.nr
; i
++)
512 strbuf_addf(err
, "\n\t%s",
513 format
->unknown_extensions
.items
[i
].string
);
520 void read_gitfile_error_die(int error_code
, const char *path
, const char *dir
)
522 switch (error_code
) {
523 case READ_GITFILE_ERR_STAT_FAILED
:
524 case READ_GITFILE_ERR_NOT_A_FILE
:
525 /* non-fatal; follow return path */
527 case READ_GITFILE_ERR_OPEN_FAILED
:
528 die_errno("Error opening '%s'", path
);
529 case READ_GITFILE_ERR_TOO_LARGE
:
530 die("Too large to be a .git file: '%s'", path
);
531 case READ_GITFILE_ERR_READ_FAILED
:
532 die("Error reading %s", path
);
533 case READ_GITFILE_ERR_INVALID_FORMAT
:
534 die("Invalid gitfile format: %s", path
);
535 case READ_GITFILE_ERR_NO_PATH
:
536 die("No path in gitfile: %s", path
);
537 case READ_GITFILE_ERR_NOT_A_REPO
:
538 die("Not a git repository: %s", dir
);
540 die("BUG: unknown error code");
545 * Try to read the location of the git directory from the .git file,
546 * return path to git directory if found. The return value comes from
549 * On failure, if return_error_code is not NULL, return_error_code
550 * will be set to an error code and NULL will be returned. If
551 * return_error_code is NULL the function will die instead (for most
554 const char *read_gitfile_gently(const char *path
, int *return_error_code
)
556 const int max_file_size
= 1 << 20; /* 1MB */
565 if (stat(path
, &st
)) {
566 /* NEEDSWORK: discern between ENOENT vs other errors */
567 error_code
= READ_GITFILE_ERR_STAT_FAILED
;
570 if (!S_ISREG(st
.st_mode
)) {
571 error_code
= READ_GITFILE_ERR_NOT_A_FILE
;
574 if (st
.st_size
> max_file_size
) {
575 error_code
= READ_GITFILE_ERR_TOO_LARGE
;
578 fd
= open(path
, O_RDONLY
);
580 error_code
= READ_GITFILE_ERR_OPEN_FAILED
;
583 buf
= xmallocz(st
.st_size
);
584 len
= read_in_full(fd
, buf
, st
.st_size
);
586 if (len
!= st
.st_size
) {
587 error_code
= READ_GITFILE_ERR_READ_FAILED
;
590 if (!starts_with(buf
, "gitdir: ")) {
591 error_code
= READ_GITFILE_ERR_INVALID_FORMAT
;
594 while (buf
[len
- 1] == '\n' || buf
[len
- 1] == '\r')
597 error_code
= READ_GITFILE_ERR_NO_PATH
;
603 if (!is_absolute_path(dir
) && (slash
= strrchr(path
, '/'))) {
604 size_t pathlen
= slash
+1 - path
;
605 dir
= xstrfmt("%.*s%.*s", (int)pathlen
, path
,
606 (int)(len
- 8), buf
+ 8);
610 if (!is_git_directory(dir
)) {
611 error_code
= READ_GITFILE_ERR_NOT_A_REPO
;
614 path
= real_path(dir
);
617 if (return_error_code
)
618 *return_error_code
= error_code
;
620 read_gitfile_error_die(error_code
, path
, dir
);
623 return error_code
? NULL
: path
;
626 static const char *setup_explicit_git_dir(const char *gitdirenv
,
628 struct repository_format
*repo_fmt
,
631 const char *work_tree_env
= getenv(GIT_WORK_TREE_ENVIRONMENT
);
632 const char *worktree
;
636 if (PATH_MAX
- 40 < strlen(gitdirenv
))
637 die("'$%s' too big", GIT_DIR_ENVIRONMENT
);
639 gitfile
= (char*)read_gitfile(gitdirenv
);
641 gitfile
= xstrdup(gitfile
);
645 if (!is_git_directory(gitdirenv
)) {
651 die("Not a git repository: '%s'", gitdirenv
);
654 if (check_repository_format_gently(gitdirenv
, repo_fmt
, nongit_ok
)) {
659 /* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */
661 set_git_work_tree(work_tree_env
);
662 else if (is_bare_repository_cfg
> 0) {
663 if (git_work_tree_cfg
) {
665 warning("core.bare and core.worktree do not make sense");
666 work_tree_config_is_bogus
= 1;
670 set_git_dir(gitdirenv
);
674 else if (git_work_tree_cfg
) { /* #6, #14 */
675 if (is_absolute_path(git_work_tree_cfg
))
676 set_git_work_tree(git_work_tree_cfg
);
679 if (chdir(gitdirenv
))
680 die_errno("Could not chdir to '%s'", gitdirenv
);
681 if (chdir(git_work_tree_cfg
))
682 die_errno("Could not chdir to '%s'", git_work_tree_cfg
);
683 core_worktree
= xgetcwd();
685 die_errno("Could not come back to cwd");
686 set_git_work_tree(core_worktree
);
690 else if (!git_env_bool(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT
, 1)) {
692 set_git_dir(gitdirenv
);
697 set_git_work_tree(".");
699 /* set_git_work_tree() must have been called by now */
700 worktree
= get_git_work_tree();
702 /* both get_git_work_tree() and cwd are already normalized */
703 if (!strcmp(cwd
->buf
, worktree
)) { /* cwd == worktree */
704 set_git_dir(gitdirenv
);
709 offset
= dir_inside_of(cwd
->buf
, worktree
);
710 if (offset
>= 0) { /* cwd inside worktree? */
711 set_git_dir(real_path(gitdirenv
));
713 die_errno("Could not chdir to '%s'", worktree
);
714 strbuf_addch(cwd
, '/');
716 return cwd
->buf
+ offset
;
719 /* cwd outside worktree */
720 set_git_dir(gitdirenv
);
725 static const char *setup_discovered_git_dir(const char *gitdir
,
726 struct strbuf
*cwd
, int offset
,
727 struct repository_format
*repo_fmt
,
730 if (check_repository_format_gently(gitdir
, repo_fmt
, nongit_ok
))
733 /* --work-tree is set without --git-dir; use discovered one */
734 if (getenv(GIT_WORK_TREE_ENVIRONMENT
) || git_work_tree_cfg
) {
735 char *to_free
= NULL
;
738 if (offset
!= cwd
->len
&& !is_absolute_path(gitdir
))
739 gitdir
= to_free
= real_pathdup(gitdir
, 1);
741 die_errno("Could not come back to cwd");
742 ret
= setup_explicit_git_dir(gitdir
, cwd
, repo_fmt
, nongit_ok
);
747 /* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */
748 if (is_bare_repository_cfg
> 0) {
749 set_git_dir(offset
== cwd
->len
? gitdir
: real_path(gitdir
));
751 die_errno("Could not come back to cwd");
755 /* #0, #1, #5, #8, #9, #12, #13 */
756 set_git_work_tree(".");
757 if (strcmp(gitdir
, DEFAULT_GIT_DIR_ENVIRONMENT
))
760 inside_work_tree
= 1;
761 if (offset
== cwd
->len
)
764 /* Make "offset" point past the '/' (already the case for root dirs) */
765 if (offset
!= offset_1st_component(cwd
->buf
))
767 /* Add a '/' at the end */
768 strbuf_addch(cwd
, '/');
769 return cwd
->buf
+ offset
;
772 /* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */
773 static const char *setup_bare_git_dir(struct strbuf
*cwd
, int offset
,
774 struct repository_format
*repo_fmt
,
779 if (check_repository_format_gently(".", repo_fmt
, nongit_ok
))
782 setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT
, "0", 1);
784 /* --work-tree is set without --git-dir; use discovered one */
785 if (getenv(GIT_WORK_TREE_ENVIRONMENT
) || git_work_tree_cfg
) {
786 static const char *gitdir
;
788 gitdir
= offset
== cwd
->len
? "." : xmemdupz(cwd
->buf
, offset
);
790 die_errno("Could not come back to cwd");
791 return setup_explicit_git_dir(gitdir
, cwd
, repo_fmt
, nongit_ok
);
795 inside_work_tree
= 0;
796 if (offset
!= cwd
->len
) {
798 die_errno("Cannot come back to cwd");
799 root_len
= offset_1st_component(cwd
->buf
);
800 strbuf_setlen(cwd
, offset
> root_len
? offset
: root_len
);
801 set_git_dir(cwd
->buf
);
808 static const char *setup_nongit(const char *cwd
, int *nongit_ok
)
811 die(_("Not a git repository (or any of the parent directories): %s"), DEFAULT_GIT_DIR_ENVIRONMENT
);
813 die_errno(_("Cannot come back to cwd"));
818 static dev_t
get_device_or_die(const char *path
, const char *prefix
, int prefix_len
)
821 if (stat(path
, &buf
)) {
822 die_errno("failed to stat '%*s%s%s'",
824 prefix
? prefix
: "",
825 prefix
? "/" : "", path
);
831 * A "string_list_each_func_t" function that canonicalizes an entry
832 * from GIT_CEILING_DIRECTORIES using real_path_if_valid(), or
833 * discards it if unusable. The presence of an empty entry in
834 * GIT_CEILING_DIRECTORIES turns off canonicalization for all
835 * subsequent entries.
837 static int canonicalize_ceiling_entry(struct string_list_item
*item
,
840 int *empty_entry_found
= cb_data
;
841 char *ceil
= item
->string
;
844 *empty_entry_found
= 1;
846 } else if (!is_absolute_path(ceil
)) {
848 } else if (*empty_entry_found
) {
849 /* Keep entry but do not canonicalize it */
852 char *real_path
= real_pathdup(ceil
, 0);
857 item
->string
= real_path
;
862 enum discovery_result
{
867 /* these are errors */
868 GIT_DIR_HIT_CEILING
= -1,
869 GIT_DIR_HIT_MOUNT_POINT
= -2,
870 GIT_DIR_INVALID_GITFILE
= -3
874 * We cannot decide in this function whether we are in the work tree or
875 * not, since the config can only be read _after_ this function was called.
877 * Also, we avoid changing any global state (such as the current working
878 * directory) to allow early callers.
880 * The directory where the search should start needs to be passed in via the
881 * `dir` parameter; upon return, the `dir` buffer will contain the path of
882 * the directory where the search ended, and `gitdir` will contain the path of
883 * the discovered .git/ directory, if any. If `gitdir` is not absolute, it
884 * is relative to `dir` (i.e. *not* necessarily the cwd).
886 static enum discovery_result
setup_git_directory_gently_1(struct strbuf
*dir
,
887 struct strbuf
*gitdir
,
890 const char *env_ceiling_dirs
= getenv(CEILING_DIRECTORIES_ENVIRONMENT
);
891 struct string_list ceiling_dirs
= STRING_LIST_INIT_DUP
;
892 const char *gitdirenv
;
893 int ceil_offset
= -1, min_offset
= has_dos_drive_prefix(dir
->buf
) ? 3 : 1;
894 dev_t current_device
= 0;
895 int one_filesystem
= 1;
898 * If GIT_DIR is set explicitly, we're not going
899 * to do any discovery, but we still do repository
902 gitdirenv
= getenv(GIT_DIR_ENVIRONMENT
);
904 strbuf_addstr(gitdir
, gitdirenv
);
905 return GIT_DIR_EXPLICIT
;
908 if (env_ceiling_dirs
) {
909 int empty_entry_found
= 0;
911 string_list_split(&ceiling_dirs
, env_ceiling_dirs
, PATH_SEP
, -1);
912 filter_string_list(&ceiling_dirs
, 0,
913 canonicalize_ceiling_entry
, &empty_entry_found
);
914 ceil_offset
= longest_ancestor_length(dir
->buf
, &ceiling_dirs
);
915 string_list_clear(&ceiling_dirs
, 0);
919 ceil_offset
= min_offset
- 2;
922 * Test in the following order (relative to the dir):
923 * - .git (file containing "gitdir: <path>")
932 one_filesystem
= !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM", 0);
934 current_device
= get_device_or_die(dir
->buf
, NULL
, 0);
936 int offset
= dir
->len
, error_code
= 0;
938 if (offset
> min_offset
)
939 strbuf_addch(dir
, '/');
940 strbuf_addstr(dir
, DEFAULT_GIT_DIR_ENVIRONMENT
);
941 gitdirenv
= read_gitfile_gently(dir
->buf
, die_on_error
?
945 error_code
== READ_GITFILE_ERR_NOT_A_FILE
) {
946 /* NEEDSWORK: fail if .git is not file nor dir */
947 if (is_git_directory(dir
->buf
))
948 gitdirenv
= DEFAULT_GIT_DIR_ENVIRONMENT
;
949 } else if (error_code
!= READ_GITFILE_ERR_STAT_FAILED
)
950 return GIT_DIR_INVALID_GITFILE
;
952 strbuf_setlen(dir
, offset
);
954 strbuf_addstr(gitdir
, gitdirenv
);
955 return GIT_DIR_DISCOVERED
;
958 if (is_git_directory(dir
->buf
)) {
959 strbuf_addstr(gitdir
, ".");
963 if (offset
<= min_offset
)
964 return GIT_DIR_HIT_CEILING
;
966 while (--offset
> ceil_offset
&& !is_dir_sep(dir
->buf
[offset
]))
968 if (offset
<= ceil_offset
)
969 return GIT_DIR_HIT_CEILING
;
971 strbuf_setlen(dir
, offset
> min_offset
? offset
: min_offset
);
972 if (one_filesystem
&&
973 current_device
!= get_device_or_die(dir
->buf
, NULL
, offset
))
974 return GIT_DIR_HIT_MOUNT_POINT
;
978 int discover_git_directory(struct strbuf
*commondir
,
979 struct strbuf
*gitdir
)
981 struct strbuf dir
= STRBUF_INIT
, err
= STRBUF_INIT
;
982 size_t gitdir_offset
= gitdir
->len
, cwd_len
;
983 size_t commondir_offset
= commondir
->len
;
984 struct repository_format candidate
;
986 if (strbuf_getcwd(&dir
))
990 if (setup_git_directory_gently_1(&dir
, gitdir
, 0) <= 0) {
991 strbuf_release(&dir
);
996 * The returned gitdir is relative to dir, and if dir does not reflect
997 * the current working directory, we simply make the gitdir absolute.
999 if (dir
.len
< cwd_len
&& !is_absolute_path(gitdir
->buf
+ gitdir_offset
)) {
1000 /* Avoid a trailing "/." */
1001 if (!strcmp(".", gitdir
->buf
+ gitdir_offset
))
1002 strbuf_setlen(gitdir
, gitdir_offset
);
1004 strbuf_addch(&dir
, '/');
1005 strbuf_insert(gitdir
, gitdir_offset
, dir
.buf
, dir
.len
);
1008 get_common_dir(commondir
, gitdir
->buf
+ gitdir_offset
);
1011 strbuf_addf(&dir
, "%s/config", commondir
->buf
+ commondir_offset
);
1012 read_repository_format(&candidate
, dir
.buf
);
1013 strbuf_release(&dir
);
1015 if (verify_repository_format(&candidate
, &err
) < 0) {
1016 warning("ignoring git dir '%s': %s",
1017 gitdir
->buf
+ gitdir_offset
, err
.buf
);
1018 strbuf_release(&err
);
1019 strbuf_setlen(commondir
, commondir_offset
);
1020 strbuf_setlen(gitdir
, gitdir_offset
);
1027 const char *setup_git_directory_gently(int *nongit_ok
)
1029 static struct strbuf cwd
= STRBUF_INIT
;
1030 struct strbuf dir
= STRBUF_INIT
, gitdir
= STRBUF_INIT
;
1032 struct repository_format repo_fmt
;
1035 * We may have read an incomplete configuration before
1036 * setting-up the git directory. If so, clear the cache so
1037 * that the next queries to the configuration reload complete
1038 * configuration (including the per-repo config file that we
1039 * ignored previously).
1044 * Let's assume that we are in a git repository.
1045 * If it turns out later that we are somewhere else, the value will be
1046 * updated accordingly.
1051 if (strbuf_getcwd(&cwd
))
1052 die_errno(_("Unable to read current working directory"));
1053 strbuf_addbuf(&dir
, &cwd
);
1055 switch (setup_git_directory_gently_1(&dir
, &gitdir
, 1)) {
1059 case GIT_DIR_EXPLICIT
:
1060 prefix
= setup_explicit_git_dir(gitdir
.buf
, &cwd
, &repo_fmt
, nongit_ok
);
1062 case GIT_DIR_DISCOVERED
:
1063 if (dir
.len
< cwd
.len
&& chdir(dir
.buf
))
1064 die(_("Cannot change to '%s'"), dir
.buf
);
1065 prefix
= setup_discovered_git_dir(gitdir
.buf
, &cwd
, dir
.len
,
1066 &repo_fmt
, nongit_ok
);
1069 if (dir
.len
< cwd
.len
&& chdir(dir
.buf
))
1070 die(_("Cannot change to '%s'"), dir
.buf
);
1071 prefix
= setup_bare_git_dir(&cwd
, dir
.len
, &repo_fmt
, nongit_ok
);
1073 case GIT_DIR_HIT_CEILING
:
1074 prefix
= setup_nongit(cwd
.buf
, nongit_ok
);
1076 case GIT_DIR_HIT_MOUNT_POINT
:
1079 strbuf_release(&cwd
);
1080 strbuf_release(&dir
);
1083 die(_("Not a git repository (or any parent up to mount point %s)\n"
1084 "Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set)."),
1087 die("BUG: unhandled setup_git_directory_1() result");
1091 setenv(GIT_PREFIX_ENVIRONMENT
, prefix
, 1);
1093 setenv(GIT_PREFIX_ENVIRONMENT
, "", 1);
1095 startup_info
->have_repository
= !nongit_ok
|| !*nongit_ok
;
1096 startup_info
->prefix
= prefix
;
1099 * Not all paths through the setup code will call 'set_git_dir()' (which
1100 * directly sets up the environment) so in order to guarantee that the
1101 * environment is in a consistent state after setup, explicitly setup
1102 * the environment if we have a repository.
1104 * NEEDSWORK: currently we allow bogus GIT_DIR values to be set in some
1105 * code paths so we also need to explicitly setup the environment if
1106 * the user has set GIT_DIR. It may be beneficial to disallow bogus
1107 * GIT_DIR values at some point in the future.
1109 if (startup_info
->have_repository
|| getenv(GIT_DIR_ENVIRONMENT
)) {
1110 if (!the_repository
->gitdir
) {
1111 const char *gitdir
= getenv(GIT_DIR_ENVIRONMENT
);
1113 gitdir
= DEFAULT_GIT_DIR_ENVIRONMENT
;
1114 repo_set_gitdir(the_repository
, gitdir
);
1117 if (startup_info
->have_repository
)
1118 repo_set_hash_algo(the_repository
, repo_fmt
.hash_algo
);
1121 strbuf_release(&dir
);
1122 strbuf_release(&gitdir
);
1127 int git_config_perm(const char *var
, const char *value
)
1135 if (!strcmp(value
, "umask"))
1137 if (!strcmp(value
, "group"))
1139 if (!strcmp(value
, "all") ||
1140 !strcmp(value
, "world") ||
1141 !strcmp(value
, "everybody"))
1142 return PERM_EVERYBODY
;
1144 /* Parse octal numbers */
1145 i
= strtol(value
, &endptr
, 8);
1147 /* If not an octal number, maybe true/false? */
1149 return git_config_bool(var
, value
) ? PERM_GROUP
: PERM_UMASK
;
1152 * Treat values 0, 1 and 2 as compatibility cases, otherwise it is
1153 * a chmod value to restrict to.
1156 case PERM_UMASK
: /* 0 */
1158 case OLD_PERM_GROUP
: /* 1 */
1160 case OLD_PERM_EVERYBODY
: /* 2 */
1161 return PERM_EVERYBODY
;
1164 /* A filemode value was given: 0xxx */
1166 if ((i
& 0600) != 0600)
1167 die(_("Problem with core.sharedRepository filemode value "
1168 "(0%.3o).\nThe owner of files must always have "
1169 "read and write permissions."), i
);
1172 * Mask filemode value. Others can not get write permission.
1173 * x flags for directories are handled separately.
1178 void check_repository_format(void)
1180 struct repository_format repo_fmt
;
1181 check_repository_format_gently(get_git_dir(), &repo_fmt
, NULL
);
1182 startup_info
->have_repository
= 1;
1186 * Returns the "prefix", a path to the current working directory
1187 * relative to the work tree root, or NULL, if the current working
1188 * directory is not a strict subdirectory of the work tree root. The
1189 * prefix always ends with a '/' character.
1191 const char *setup_git_directory(void)
1193 return setup_git_directory_gently(NULL
);
1196 const char *resolve_gitdir_gently(const char *suspect
, int *return_error_code
)
1198 if (is_git_directory(suspect
))
1200 return read_gitfile_gently(suspect
, return_error_code
);
1203 /* if any standard file descriptor is missing open it to /dev/null */
1204 void sanitize_stdfds(void)
1206 int fd
= open("/dev/null", O_RDWR
, 0);
1207 while (fd
!= -1 && fd
< 2)
1210 die_errno("open /dev/null or dup failed");
1217 #ifdef NO_POSIX_GOODIES
1225 die_errno("fork failed");
1230 die_errno("setsid failed");