3 #include "string-list.h"
5 static int inside_git_dir
= -1;
6 static int inside_work_tree
= -1;
7 static int work_tree_config_is_bogus
;
9 static struct startup_info the_startup_info
;
10 struct startup_info
*startup_info
= &the_startup_info
;
13 * The input parameter must contain an absolute path, and it must already be
16 * Find the part of an absolute path that lies inside the work tree by
17 * dereferencing symlinks outside the work tree, for example:
18 * /dir1/repo/dir2/file (work tree is /dir1/repo) -> dir2/file
19 * /dir/file (work tree is /) -> dir/file
20 * /dir/symlink1/symlink2 (symlink1 points to work tree) -> symlink2
21 * /dir/repolink/file (repolink points to /dir/repo) -> file
22 * /dir/repo (exactly equal to work tree) -> (empty string)
24 static int abspath_part_inside_repo(char *path
)
30 const char *work_tree
= get_git_work_tree();
34 wtlen
= strlen(work_tree
);
36 off
= offset_1st_component(path
);
38 /* check if work tree is already the prefix */
39 if (wtlen
<= len
&& !strncmp(path
, work_tree
, wtlen
)) {
40 if (path
[wtlen
] == '/') {
41 memmove(path
, path
+ wtlen
+ 1, len
- wtlen
);
43 } else if (path
[wtlen
- 1] == '/' || path
[wtlen
] == '\0') {
44 /* work tree is the root, or the whole path */
45 memmove(path
, path
+ wtlen
, len
- wtlen
+ 1);
48 /* work tree might match beginning of a symlink to work tree */
54 /* check each '/'-terminated level */
59 if (strcmp(real_path(path0
), work_tree
) == 0) {
60 memmove(path0
, path
+ 1, len
- (path
- path0
));
67 /* check whole path */
68 if (strcmp(real_path(path0
), work_tree
) == 0) {
77 * Normalize "path", prepending the "prefix" for relative paths. If
78 * remaining_prefix is not NULL, return the actual prefix still
79 * remains in the path. For example, prefix = sub1/sub2/ and path is
81 * foo -> sub1/sub2/foo (full prefix)
82 * ../foo -> sub1/foo (remaining prefix is sub1/)
83 * ../../bar -> bar (no remaining prefix)
84 * ../../sub1/sub2/foo -> sub1/sub2/foo (but no remaining prefix)
85 * `pwd`/../bar -> sub1/bar (no remaining prefix)
87 char *prefix_path_gently(const char *prefix
, int len
,
88 int *remaining_prefix
, const char *path
)
90 const char *orig
= path
;
92 if (is_absolute_path(orig
)) {
93 sanitized
= xmallocz(strlen(path
));
95 *remaining_prefix
= 0;
96 if (normalize_path_copy_len(sanitized
, path
, remaining_prefix
)) {
100 if (abspath_part_inside_repo(sanitized
)) {
105 sanitized
= xstrfmt("%.*s%s", len
, len
? prefix
: "", path
);
106 if (remaining_prefix
)
107 *remaining_prefix
= len
;
108 if (normalize_path_copy_len(sanitized
, sanitized
, remaining_prefix
)) {
116 char *prefix_path(const char *prefix
, int len
, const char *path
)
118 char *r
= prefix_path_gently(prefix
, len
, NULL
, path
);
120 die("'%s' is outside repository", path
);
124 int path_inside_repo(const char *prefix
, const char *path
)
126 int len
= prefix
? strlen(prefix
) : 0;
127 char *r
= prefix_path_gently(prefix
, len
, NULL
, path
);
135 int check_filename(const char *prefix
, const char *arg
)
138 char *to_free
= NULL
;
141 if (starts_with(arg
, ":/")) {
142 if (arg
[2] == '\0') /* ":/" is root dir, always exists */
146 name
= to_free
= prefix_filename(prefix
, arg
);
149 if (!lstat(name
, &st
)) {
151 return 1; /* file exists */
153 if (errno
== ENOENT
|| errno
== ENOTDIR
) {
155 return 0; /* file does not exist */
157 die_errno("failed to stat '%s'", arg
);
160 static void NORETURN
die_verify_filename(const char *prefix
,
162 int diagnose_misspelt_rev
)
164 if (!diagnose_misspelt_rev
)
165 die(_("%s: no such path in the working tree.\n"
166 "Use 'git <command> -- <path>...' to specify paths that do not exist locally."),
169 * Saying "'(icase)foo' does not exist in the index" when the
170 * user gave us ":(icase)foo" is just stupid. A magic pathspec
171 * begins with a colon and is followed by a non-alnum; do not
172 * let maybe_die_on_misspelt_object_name() even trigger.
174 if (!(arg
[0] == ':' && !isalnum(arg
[1])))
175 maybe_die_on_misspelt_object_name(arg
, prefix
);
177 /* ... or fall back the most general message. */
178 die(_("ambiguous argument '%s': unknown revision or path not in the working tree.\n"
179 "Use '--' to separate paths from revisions, like this:\n"
180 "'git <command> [<revision>...] -- [<file>...]'"), arg
);
185 * Verify a filename that we got as an argument for a pathspec
186 * entry. Note that a filename that begins with "-" never verifies
187 * as true, because even if such a filename were to exist, we want
188 * it to be preceded by the "--" marker (or we want the user to
189 * use a format like "./-filename")
191 * The "diagnose_misspelt_rev" is used to provide a user-friendly
192 * diagnosis when dying upon finding that "name" is not a pathname.
193 * If set to 1, the diagnosis will try to diagnose "name" as an
194 * invalid object name (e.g. HEAD:foo). If set to 0, the diagnosis
195 * will only complain about an inexisting file.
197 * This function is typically called to check that a "file or rev"
198 * argument is unambiguous. In this case, the caller will want
199 * diagnose_misspelt_rev == 1 when verifying the first non-rev
200 * argument (which could have been a revision), and
201 * diagnose_misspelt_rev == 0 for the next ones (because we already
202 * saw a filename, there's not ambiguity anymore).
204 void verify_filename(const char *prefix
,
206 int diagnose_misspelt_rev
)
209 die("bad flag '%s' used after filename", arg
);
210 if (check_filename(prefix
, arg
) || !no_wildcard(arg
))
212 die_verify_filename(prefix
, arg
, diagnose_misspelt_rev
);
216 * Opposite of the above: the command line did not have -- marker
217 * and we parsed the arg as a refname. It should not be interpretable
220 void verify_non_filename(const char *prefix
, const char *arg
)
222 if (!is_inside_work_tree() || is_inside_git_dir())
226 if (!check_filename(prefix
, arg
))
228 die(_("ambiguous argument '%s': both revision and filename\n"
229 "Use '--' to separate paths from revisions, like this:\n"
230 "'git <command> [<revision>...] -- [<file>...]'"), arg
);
233 int get_common_dir(struct strbuf
*sb
, const char *gitdir
)
235 const char *git_env_common_dir
= getenv(GIT_COMMON_DIR_ENVIRONMENT
);
236 if (git_env_common_dir
) {
237 strbuf_addstr(sb
, git_env_common_dir
);
240 return get_common_dir_noenv(sb
, gitdir
);
244 int get_common_dir_noenv(struct strbuf
*sb
, const char *gitdir
)
246 struct strbuf data
= STRBUF_INIT
;
247 struct strbuf path
= STRBUF_INIT
;
250 strbuf_addf(&path
, "%s/commondir", gitdir
);
251 if (file_exists(path
.buf
)) {
252 if (strbuf_read_file(&data
, path
.buf
, 0) <= 0)
253 die_errno(_("failed to read %s"), path
.buf
);
254 while (data
.len
&& (data
.buf
[data
.len
- 1] == '\n' ||
255 data
.buf
[data
.len
- 1] == '\r'))
257 data
.buf
[data
.len
] = '\0';
259 if (!is_absolute_path(data
.buf
))
260 strbuf_addf(&path
, "%s/", gitdir
);
261 strbuf_addbuf(&path
, &data
);
262 strbuf_add_real_path(sb
, path
.buf
);
265 strbuf_addstr(sb
, gitdir
);
268 strbuf_release(&data
);
269 strbuf_release(&path
);
274 * Test if it looks like we're at a git directory.
277 * - either an objects/ directory _or_ the proper
278 * GIT_OBJECT_DIRECTORY environment variable
279 * - a refs/ directory
280 * - either a HEAD symlink or a HEAD file that is formatted as
281 * a proper "ref:", or a regular file HEAD that has a properly
282 * formatted sha1 object name.
284 int is_git_directory(const char *suspect
)
286 struct strbuf path
= STRBUF_INIT
;
290 /* Check worktree-related signatures */
291 strbuf_addf(&path
, "%s/HEAD", suspect
);
292 if (validate_headref(path
.buf
))
296 get_common_dir(&path
, suspect
);
299 /* Check non-worktree-related signatures */
300 if (getenv(DB_ENVIRONMENT
)) {
301 if (access(getenv(DB_ENVIRONMENT
), X_OK
))
305 strbuf_setlen(&path
, len
);
306 strbuf_addstr(&path
, "/objects");
307 if (access(path
.buf
, X_OK
))
311 strbuf_setlen(&path
, len
);
312 strbuf_addstr(&path
, "/refs");
313 if (access(path
.buf
, X_OK
))
318 strbuf_release(&path
);
322 int is_nonbare_repository_dir(struct strbuf
*path
)
326 size_t orig_path_len
= path
->len
;
327 assert(orig_path_len
!= 0);
328 strbuf_complete(path
, '/');
329 strbuf_addstr(path
, ".git");
330 if (read_gitfile_gently(path
->buf
, &gitfile_error
) || is_git_directory(path
->buf
))
332 if (gitfile_error
== READ_GITFILE_ERR_OPEN_FAILED
||
333 gitfile_error
== READ_GITFILE_ERR_READ_FAILED
)
335 strbuf_setlen(path
, orig_path_len
);
339 int is_inside_git_dir(void)
341 if (inside_git_dir
< 0)
342 inside_git_dir
= is_inside_dir(get_git_dir());
343 return inside_git_dir
;
346 int is_inside_work_tree(void)
348 if (inside_work_tree
< 0)
349 inside_work_tree
= is_inside_dir(get_git_work_tree());
350 return inside_work_tree
;
353 void setup_work_tree(void)
355 const char *work_tree
, *git_dir
;
356 static int initialized
= 0;
361 if (work_tree_config_is_bogus
)
362 die("unable to set up work tree using invalid config");
364 work_tree
= get_git_work_tree();
365 git_dir
= get_git_dir();
366 if (!is_absolute_path(git_dir
))
367 git_dir
= real_path(get_git_dir());
368 if (!work_tree
|| chdir(work_tree
))
369 die("This operation must be run in a work tree");
372 * Make sure subsequent git processes find correct worktree
373 * if $GIT_WORK_TREE is set relative
375 if (getenv(GIT_WORK_TREE_ENVIRONMENT
))
376 setenv(GIT_WORK_TREE_ENVIRONMENT
, ".", 1);
378 set_git_dir(remove_leading_path(git_dir
, work_tree
));
382 static int check_repo_format(const char *var
, const char *value
, void *vdata
)
384 struct repository_format
*data
= vdata
;
387 if (strcmp(var
, "core.repositoryformatversion") == 0)
388 data
->version
= git_config_int(var
, value
);
389 else if (skip_prefix(var
, "extensions.", &ext
)) {
391 * record any known extensions here; otherwise,
392 * we fall through to recording it as unknown, and
393 * check_repository_format will complain
395 if (!strcmp(ext
, "noop"))
397 else if (!strcmp(ext
, "preciousobjects"))
398 data
->precious_objects
= git_config_bool(var
, value
);
400 string_list_append(&data
->unknown_extensions
, ext
);
401 } else if (strcmp(var
, "core.bare") == 0) {
402 data
->is_bare
= git_config_bool(var
, value
);
403 } else if (strcmp(var
, "core.worktree") == 0) {
405 return config_error_nonbool(var
);
406 data
->work_tree
= xstrdup(value
);
411 static int check_repository_format_gently(const char *gitdir
, int *nongit_ok
)
413 struct strbuf sb
= STRBUF_INIT
;
414 struct strbuf err
= STRBUF_INIT
;
415 struct repository_format candidate
;
418 has_common
= get_common_dir(&sb
, gitdir
);
419 strbuf_addstr(&sb
, "/config");
420 read_repository_format(&candidate
, sb
.buf
);
424 * For historical use of check_repository_format() in git-init,
425 * we treat a missing config as a silent "ok", even when nongit_ok
428 if (candidate
.version
< 0)
431 if (verify_repository_format(&candidate
, &err
) < 0) {
433 warning("%s", err
.buf
);
434 strbuf_release(&err
);
441 repository_format_precious_objects
= candidate
.precious_objects
;
442 string_list_clear(&candidate
.unknown_extensions
, 0);
444 if (candidate
.is_bare
!= -1) {
445 is_bare_repository_cfg
= candidate
.is_bare
;
446 if (is_bare_repository_cfg
== 1)
447 inside_work_tree
= -1;
449 if (candidate
.work_tree
) {
450 free(git_work_tree_cfg
);
451 git_work_tree_cfg
= candidate
.work_tree
;
452 inside_work_tree
= -1;
455 free(candidate
.work_tree
);
461 int read_repository_format(struct repository_format
*format
, const char *path
)
463 memset(format
, 0, sizeof(*format
));
464 format
->version
= -1;
465 format
->is_bare
= -1;
466 string_list_init(&format
->unknown_extensions
, 1);
467 git_config_from_file(check_repo_format
, path
, format
);
468 return format
->version
;
471 int verify_repository_format(const struct repository_format
*format
,
474 if (GIT_REPO_VERSION_READ
< format
->version
) {
475 strbuf_addf(err
, _("Expected git repo version <= %d, found %d"),
476 GIT_REPO_VERSION_READ
, format
->version
);
480 if (format
->version
>= 1 && format
->unknown_extensions
.nr
) {
483 strbuf_addstr(err
, _("unknown repository extensions found:"));
485 for (i
= 0; i
< format
->unknown_extensions
.nr
; i
++)
486 strbuf_addf(err
, "\n\t%s",
487 format
->unknown_extensions
.items
[i
].string
);
494 void read_gitfile_error_die(int error_code
, const char *path
, const char *dir
)
496 switch (error_code
) {
497 case READ_GITFILE_ERR_STAT_FAILED
:
498 case READ_GITFILE_ERR_NOT_A_FILE
:
499 /* non-fatal; follow return path */
501 case READ_GITFILE_ERR_OPEN_FAILED
:
502 die_errno("Error opening '%s'", path
);
503 case READ_GITFILE_ERR_TOO_LARGE
:
504 die("Too large to be a .git file: '%s'", path
);
505 case READ_GITFILE_ERR_READ_FAILED
:
506 die("Error reading %s", path
);
507 case READ_GITFILE_ERR_INVALID_FORMAT
:
508 die("Invalid gitfile format: %s", path
);
509 case READ_GITFILE_ERR_NO_PATH
:
510 die("No path in gitfile: %s", path
);
511 case READ_GITFILE_ERR_NOT_A_REPO
:
512 die("Not a git repository: %s", dir
);
514 die("BUG: unknown error code");
519 * Try to read the location of the git directory from the .git file,
520 * return path to git directory if found.
522 * On failure, if return_error_code is not NULL, return_error_code
523 * will be set to an error code and NULL will be returned. If
524 * return_error_code is NULL the function will die instead (for most
527 const char *read_gitfile_gently(const char *path
, int *return_error_code
)
529 const int max_file_size
= 1 << 20; /* 1MB */
538 if (stat(path
, &st
)) {
539 /* NEEDSWORK: discern between ENOENT vs other errors */
540 error_code
= READ_GITFILE_ERR_STAT_FAILED
;
543 if (!S_ISREG(st
.st_mode
)) {
544 error_code
= READ_GITFILE_ERR_NOT_A_FILE
;
547 if (st
.st_size
> max_file_size
) {
548 error_code
= READ_GITFILE_ERR_TOO_LARGE
;
551 fd
= open(path
, O_RDONLY
);
553 error_code
= READ_GITFILE_ERR_OPEN_FAILED
;
556 buf
= xmallocz(st
.st_size
);
557 len
= read_in_full(fd
, buf
, st
.st_size
);
559 if (len
!= st
.st_size
) {
560 error_code
= READ_GITFILE_ERR_READ_FAILED
;
563 if (!starts_with(buf
, "gitdir: ")) {
564 error_code
= READ_GITFILE_ERR_INVALID_FORMAT
;
567 while (buf
[len
- 1] == '\n' || buf
[len
- 1] == '\r')
570 error_code
= READ_GITFILE_ERR_NO_PATH
;
576 if (!is_absolute_path(dir
) && (slash
= strrchr(path
, '/'))) {
577 size_t pathlen
= slash
+1 - path
;
578 dir
= xstrfmt("%.*s%.*s", (int)pathlen
, path
,
579 (int)(len
- 8), buf
+ 8);
583 if (!is_git_directory(dir
)) {
584 error_code
= READ_GITFILE_ERR_NOT_A_REPO
;
587 path
= real_path(dir
);
590 if (return_error_code
)
591 *return_error_code
= error_code
;
593 read_gitfile_error_die(error_code
, path
, dir
);
596 return error_code
? NULL
: path
;
599 static const char *setup_explicit_git_dir(const char *gitdirenv
,
603 const char *work_tree_env
= getenv(GIT_WORK_TREE_ENVIRONMENT
);
604 const char *worktree
;
608 if (PATH_MAX
- 40 < strlen(gitdirenv
))
609 die("'$%s' too big", GIT_DIR_ENVIRONMENT
);
611 gitfile
= (char*)read_gitfile(gitdirenv
);
613 gitfile
= xstrdup(gitfile
);
617 if (!is_git_directory(gitdirenv
)) {
623 die("Not a git repository: '%s'", gitdirenv
);
626 if (check_repository_format_gently(gitdirenv
, nongit_ok
)) {
631 /* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */
633 set_git_work_tree(work_tree_env
);
634 else if (is_bare_repository_cfg
> 0) {
635 if (git_work_tree_cfg
) {
637 warning("core.bare and core.worktree do not make sense");
638 work_tree_config_is_bogus
= 1;
642 set_git_dir(gitdirenv
);
646 else if (git_work_tree_cfg
) { /* #6, #14 */
647 if (is_absolute_path(git_work_tree_cfg
))
648 set_git_work_tree(git_work_tree_cfg
);
651 if (chdir(gitdirenv
))
652 die_errno("Could not chdir to '%s'", gitdirenv
);
653 if (chdir(git_work_tree_cfg
))
654 die_errno("Could not chdir to '%s'", git_work_tree_cfg
);
655 core_worktree
= xgetcwd();
657 die_errno("Could not come back to cwd");
658 set_git_work_tree(core_worktree
);
662 else if (!git_env_bool(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT
, 1)) {
664 set_git_dir(gitdirenv
);
669 set_git_work_tree(".");
671 /* set_git_work_tree() must have been called by now */
672 worktree
= get_git_work_tree();
674 /* both get_git_work_tree() and cwd are already normalized */
675 if (!strcmp(cwd
->buf
, worktree
)) { /* cwd == worktree */
676 set_git_dir(gitdirenv
);
681 offset
= dir_inside_of(cwd
->buf
, worktree
);
682 if (offset
>= 0) { /* cwd inside worktree? */
683 set_git_dir(real_path(gitdirenv
));
685 die_errno("Could not chdir to '%s'", worktree
);
686 strbuf_addch(cwd
, '/');
688 return cwd
->buf
+ offset
;
691 /* cwd outside worktree */
692 set_git_dir(gitdirenv
);
697 static const char *setup_discovered_git_dir(const char *gitdir
,
698 struct strbuf
*cwd
, int offset
,
701 if (check_repository_format_gently(gitdir
, nongit_ok
))
704 /* --work-tree is set without --git-dir; use discovered one */
705 if (getenv(GIT_WORK_TREE_ENVIRONMENT
) || git_work_tree_cfg
) {
706 if (offset
!= cwd
->len
&& !is_absolute_path(gitdir
))
707 gitdir
= real_pathdup(gitdir
, 1);
709 die_errno("Could not come back to cwd");
710 return setup_explicit_git_dir(gitdir
, cwd
, nongit_ok
);
713 /* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */
714 if (is_bare_repository_cfg
> 0) {
715 set_git_dir(offset
== cwd
->len
? gitdir
: real_path(gitdir
));
717 die_errno("Could not come back to cwd");
721 /* #0, #1, #5, #8, #9, #12, #13 */
722 set_git_work_tree(".");
723 if (strcmp(gitdir
, DEFAULT_GIT_DIR_ENVIRONMENT
))
726 inside_work_tree
= 1;
727 if (offset
== cwd
->len
)
730 /* Make "offset" point past the '/' (already the case for root dirs) */
731 if (offset
!= offset_1st_component(cwd
->buf
))
733 /* Add a '/' at the end */
734 strbuf_addch(cwd
, '/');
735 return cwd
->buf
+ offset
;
738 /* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */
739 static const char *setup_bare_git_dir(struct strbuf
*cwd
, int offset
,
744 if (check_repository_format_gently(".", nongit_ok
))
747 setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT
, "0", 1);
749 /* --work-tree is set without --git-dir; use discovered one */
750 if (getenv(GIT_WORK_TREE_ENVIRONMENT
) || git_work_tree_cfg
) {
753 gitdir
= offset
== cwd
->len
? "." : xmemdupz(cwd
->buf
, offset
);
755 die_errno("Could not come back to cwd");
756 return setup_explicit_git_dir(gitdir
, cwd
, nongit_ok
);
760 inside_work_tree
= 0;
761 if (offset
!= cwd
->len
) {
763 die_errno("Cannot come back to cwd");
764 root_len
= offset_1st_component(cwd
->buf
);
765 strbuf_setlen(cwd
, offset
> root_len
? offset
: root_len
);
766 set_git_dir(cwd
->buf
);
773 static const char *setup_nongit(const char *cwd
, int *nongit_ok
)
776 die(_("Not a git repository (or any of the parent directories): %s"), DEFAULT_GIT_DIR_ENVIRONMENT
);
778 die_errno(_("Cannot come back to cwd"));
783 static dev_t
get_device_or_die(const char *path
, const char *prefix
, int prefix_len
)
786 if (stat(path
, &buf
)) {
787 die_errno("failed to stat '%*s%s%s'",
789 prefix
? prefix
: "",
790 prefix
? "/" : "", path
);
796 * A "string_list_each_func_t" function that canonicalizes an entry
797 * from GIT_CEILING_DIRECTORIES using real_path_if_valid(), or
798 * discards it if unusable. The presence of an empty entry in
799 * GIT_CEILING_DIRECTORIES turns off canonicalization for all
800 * subsequent entries.
802 static int canonicalize_ceiling_entry(struct string_list_item
*item
,
805 int *empty_entry_found
= cb_data
;
806 char *ceil
= item
->string
;
809 *empty_entry_found
= 1;
811 } else if (!is_absolute_path(ceil
)) {
813 } else if (*empty_entry_found
) {
814 /* Keep entry but do not canonicalize it */
817 char *real_path
= real_pathdup(ceil
, 0);
822 item
->string
= real_path
;
827 enum discovery_result
{
832 /* these are errors */
833 GIT_DIR_HIT_CEILING
= -1,
834 GIT_DIR_HIT_MOUNT_POINT
= -2,
835 GIT_DIR_INVALID_GITFILE
= -3
839 * We cannot decide in this function whether we are in the work tree or
840 * not, since the config can only be read _after_ this function was called.
842 * Also, we avoid changing any global state (such as the current working
843 * directory) to allow early callers.
845 * The directory where the search should start needs to be passed in via the
846 * `dir` parameter; upon return, the `dir` buffer will contain the path of
847 * the directory where the search ended, and `gitdir` will contain the path of
848 * the discovered .git/ directory, if any. If `gitdir` is not absolute, it
849 * is relative to `dir` (i.e. *not* necessarily the cwd).
851 static enum discovery_result
setup_git_directory_gently_1(struct strbuf
*dir
,
852 struct strbuf
*gitdir
,
855 const char *env_ceiling_dirs
= getenv(CEILING_DIRECTORIES_ENVIRONMENT
);
856 struct string_list ceiling_dirs
= STRING_LIST_INIT_DUP
;
857 const char *gitdirenv
;
858 int ceil_offset
= -1, min_offset
= has_dos_drive_prefix(dir
->buf
) ? 3 : 1;
859 dev_t current_device
= 0;
860 int one_filesystem
= 1;
863 * If GIT_DIR is set explicitly, we're not going
864 * to do any discovery, but we still do repository
867 gitdirenv
= getenv(GIT_DIR_ENVIRONMENT
);
869 strbuf_addstr(gitdir
, gitdirenv
);
870 return GIT_DIR_EXPLICIT
;
873 if (env_ceiling_dirs
) {
874 int empty_entry_found
= 0;
876 string_list_split(&ceiling_dirs
, env_ceiling_dirs
, PATH_SEP
, -1);
877 filter_string_list(&ceiling_dirs
, 0,
878 canonicalize_ceiling_entry
, &empty_entry_found
);
879 ceil_offset
= longest_ancestor_length(dir
->buf
, &ceiling_dirs
);
880 string_list_clear(&ceiling_dirs
, 0);
884 ceil_offset
= min_offset
- 2;
887 * Test in the following order (relative to the dir):
888 * - .git (file containing "gitdir: <path>")
897 one_filesystem
= !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM", 0);
899 current_device
= get_device_or_die(dir
->buf
, NULL
, 0);
901 int offset
= dir
->len
, error_code
= 0;
903 if (offset
> min_offset
)
904 strbuf_addch(dir
, '/');
905 strbuf_addstr(dir
, DEFAULT_GIT_DIR_ENVIRONMENT
);
906 gitdirenv
= read_gitfile_gently(dir
->buf
, die_on_error
?
910 error_code
== READ_GITFILE_ERR_NOT_A_FILE
) {
911 /* NEEDSWORK: fail if .git is not file nor dir */
912 if (is_git_directory(dir
->buf
))
913 gitdirenv
= DEFAULT_GIT_DIR_ENVIRONMENT
;
914 } else if (error_code
!= READ_GITFILE_ERR_STAT_FAILED
)
915 return GIT_DIR_INVALID_GITFILE
;
917 strbuf_setlen(dir
, offset
);
919 strbuf_addstr(gitdir
, gitdirenv
);
920 return GIT_DIR_DISCOVERED
;
923 if (is_git_directory(dir
->buf
)) {
924 strbuf_addstr(gitdir
, ".");
928 if (offset
<= min_offset
)
929 return GIT_DIR_HIT_CEILING
;
931 while (--offset
> ceil_offset
&& !is_dir_sep(dir
->buf
[offset
]))
933 if (offset
<= ceil_offset
)
934 return GIT_DIR_HIT_CEILING
;
936 strbuf_setlen(dir
, offset
> min_offset
? offset
: min_offset
);
937 if (one_filesystem
&&
938 current_device
!= get_device_or_die(dir
->buf
, NULL
, offset
))
939 return GIT_DIR_HIT_MOUNT_POINT
;
943 const char *discover_git_directory(struct strbuf
*gitdir
)
945 struct strbuf dir
= STRBUF_INIT
, err
= STRBUF_INIT
;
946 size_t gitdir_offset
= gitdir
->len
, cwd_len
;
947 struct repository_format candidate
;
949 if (strbuf_getcwd(&dir
))
953 if (setup_git_directory_gently_1(&dir
, gitdir
, 0) <= 0) {
954 strbuf_release(&dir
);
959 * The returned gitdir is relative to dir, and if dir does not reflect
960 * the current working directory, we simply make the gitdir absolute.
962 if (dir
.len
< cwd_len
&& !is_absolute_path(gitdir
->buf
+ gitdir_offset
)) {
963 /* Avoid a trailing "/." */
964 if (!strcmp(".", gitdir
->buf
+ gitdir_offset
))
965 strbuf_setlen(gitdir
, gitdir_offset
);
967 strbuf_addch(&dir
, '/');
968 strbuf_insert(gitdir
, gitdir_offset
, dir
.buf
, dir
.len
);
972 strbuf_addf(&dir
, "%s/config", gitdir
->buf
+ gitdir_offset
);
973 read_repository_format(&candidate
, dir
.buf
);
974 strbuf_release(&dir
);
976 if (verify_repository_format(&candidate
, &err
) < 0) {
977 warning("ignoring git dir '%s': %s",
978 gitdir
->buf
+ gitdir_offset
, err
.buf
);
979 strbuf_release(&err
);
983 return gitdir
->buf
+ gitdir_offset
;
986 const char *setup_git_directory_gently(int *nongit_ok
)
988 static struct strbuf cwd
= STRBUF_INIT
;
989 struct strbuf dir
= STRBUF_INIT
, gitdir
= STRBUF_INIT
;
993 * We may have read an incomplete configuration before
994 * setting-up the git directory. If so, clear the cache so
995 * that the next queries to the configuration reload complete
996 * configuration (including the per-repo config file that we
997 * ignored previously).
1002 * Let's assume that we are in a git repository.
1003 * If it turns out later that we are somewhere else, the value will be
1004 * updated accordingly.
1009 if (strbuf_getcwd(&cwd
))
1010 die_errno(_("Unable to read current working directory"));
1011 strbuf_addbuf(&dir
, &cwd
);
1013 switch (setup_git_directory_gently_1(&dir
, &gitdir
, 1)) {
1017 case GIT_DIR_EXPLICIT
:
1018 prefix
= setup_explicit_git_dir(gitdir
.buf
, &cwd
, nongit_ok
);
1020 case GIT_DIR_DISCOVERED
:
1021 if (dir
.len
< cwd
.len
&& chdir(dir
.buf
))
1022 die(_("Cannot change to '%s'"), dir
.buf
);
1023 prefix
= setup_discovered_git_dir(gitdir
.buf
, &cwd
, dir
.len
,
1027 if (dir
.len
< cwd
.len
&& chdir(dir
.buf
))
1028 die(_("Cannot change to '%s'"), dir
.buf
);
1029 prefix
= setup_bare_git_dir(&cwd
, dir
.len
, nongit_ok
);
1031 case GIT_DIR_HIT_CEILING
:
1032 prefix
= setup_nongit(cwd
.buf
, nongit_ok
);
1034 case GIT_DIR_HIT_MOUNT_POINT
:
1037 strbuf_release(&cwd
);
1038 strbuf_release(&dir
);
1041 die(_("Not a git repository (or any parent up to mount point %s)\n"
1042 "Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set)."),
1045 die("BUG: unhandled setup_git_directory_1() result");
1049 setenv(GIT_PREFIX_ENVIRONMENT
, prefix
, 1);
1051 setenv(GIT_PREFIX_ENVIRONMENT
, "", 1);
1053 startup_info
->have_repository
= !nongit_ok
|| !*nongit_ok
;
1054 startup_info
->prefix
= prefix
;
1056 strbuf_release(&dir
);
1057 strbuf_release(&gitdir
);
1062 int git_config_perm(const char *var
, const char *value
)
1070 if (!strcmp(value
, "umask"))
1072 if (!strcmp(value
, "group"))
1074 if (!strcmp(value
, "all") ||
1075 !strcmp(value
, "world") ||
1076 !strcmp(value
, "everybody"))
1077 return PERM_EVERYBODY
;
1079 /* Parse octal numbers */
1080 i
= strtol(value
, &endptr
, 8);
1082 /* If not an octal number, maybe true/false? */
1084 return git_config_bool(var
, value
) ? PERM_GROUP
: PERM_UMASK
;
1087 * Treat values 0, 1 and 2 as compatibility cases, otherwise it is
1088 * a chmod value to restrict to.
1091 case PERM_UMASK
: /* 0 */
1093 case OLD_PERM_GROUP
: /* 1 */
1095 case OLD_PERM_EVERYBODY
: /* 2 */
1096 return PERM_EVERYBODY
;
1099 /* A filemode value was given: 0xxx */
1101 if ((i
& 0600) != 0600)
1102 die(_("Problem with core.sharedRepository filemode value "
1103 "(0%.3o).\nThe owner of files must always have "
1104 "read and write permissions."), i
);
1107 * Mask filemode value. Others can not get write permission.
1108 * x flags for directories are handled separately.
1113 void check_repository_format(void)
1115 check_repository_format_gently(get_git_dir(), NULL
);
1116 startup_info
->have_repository
= 1;
1120 * Returns the "prefix", a path to the current working directory
1121 * relative to the work tree root, or NULL, if the current working
1122 * directory is not a strict subdirectory of the work tree root. The
1123 * prefix always ends with a '/' character.
1125 const char *setup_git_directory(void)
1127 return setup_git_directory_gently(NULL
);
1130 const char *resolve_gitdir_gently(const char *suspect
, int *return_error_code
)
1132 if (is_git_directory(suspect
))
1134 return read_gitfile_gently(suspect
, return_error_code
);
1137 /* if any standard file descriptor is missing open it to /dev/null */
1138 void sanitize_stdfds(void)
1140 int fd
= open("/dev/null", O_RDWR
, 0);
1141 while (fd
!= -1 && fd
< 2)
1144 die_errno("open /dev/null or dup failed");
1151 #ifdef NO_POSIX_GOODIES
1159 die_errno("fork failed");
1164 die_errno("setsid failed");