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
)
140 if (starts_with(arg
, ":/")) {
141 if (arg
[2] == '\0') /* ":/" is root dir, always exists */
145 name
= prefix_filename(prefix
, strlen(prefix
), arg
);
148 if (!lstat(name
, &st
))
149 return 1; /* file exists */
150 if (errno
== ENOENT
|| errno
== ENOTDIR
)
151 return 0; /* file does not exist */
152 die_errno("failed to stat '%s'", arg
);
155 static void NORETURN
die_verify_filename(const char *prefix
,
157 int diagnose_misspelt_rev
)
159 if (!diagnose_misspelt_rev
)
160 die(_("%s: no such path in the working tree.\n"
161 "Use 'git <command> -- <path>...' to specify paths that do not exist locally."),
164 * Saying "'(icase)foo' does not exist in the index" when the
165 * user gave us ":(icase)foo" is just stupid. A magic pathspec
166 * begins with a colon and is followed by a non-alnum; do not
167 * let maybe_die_on_misspelt_object_name() even trigger.
169 if (!(arg
[0] == ':' && !isalnum(arg
[1])))
170 maybe_die_on_misspelt_object_name(arg
, prefix
);
172 /* ... or fall back the most general message. */
173 die(_("ambiguous argument '%s': unknown revision or path not in the working tree.\n"
174 "Use '--' to separate paths from revisions, like this:\n"
175 "'git <command> [<revision>...] -- [<file>...]'"), arg
);
180 * Verify a filename that we got as an argument for a pathspec
181 * entry. Note that a filename that begins with "-" never verifies
182 * as true, because even if such a filename were to exist, we want
183 * it to be preceded by the "--" marker (or we want the user to
184 * use a format like "./-filename")
186 * The "diagnose_misspelt_rev" is used to provide a user-friendly
187 * diagnosis when dying upon finding that "name" is not a pathname.
188 * If set to 1, the diagnosis will try to diagnose "name" as an
189 * invalid object name (e.g. HEAD:foo). If set to 0, the diagnosis
190 * will only complain about an inexisting file.
192 * This function is typically called to check that a "file or rev"
193 * argument is unambiguous. In this case, the caller will want
194 * diagnose_misspelt_rev == 1 when verifying the first non-rev
195 * argument (which could have been a revision), and
196 * diagnose_misspelt_rev == 0 for the next ones (because we already
197 * saw a filename, there's not ambiguity anymore).
199 void verify_filename(const char *prefix
,
201 int diagnose_misspelt_rev
)
204 die("bad flag '%s' used after filename", arg
);
205 if (check_filename(prefix
, arg
) || !no_wildcard(arg
))
207 die_verify_filename(prefix
, arg
, diagnose_misspelt_rev
);
211 * Opposite of the above: the command line did not have -- marker
212 * and we parsed the arg as a refname. It should not be interpretable
215 void verify_non_filename(const char *prefix
, const char *arg
)
217 if (!is_inside_work_tree() || is_inside_git_dir())
221 if (!check_filename(prefix
, arg
))
223 die(_("ambiguous argument '%s': both revision and filename\n"
224 "Use '--' to separate paths from revisions, like this:\n"
225 "'git <command> [<revision>...] -- [<file>...]'"), arg
);
228 int get_common_dir(struct strbuf
*sb
, const char *gitdir
)
230 const char *git_env_common_dir
= getenv(GIT_COMMON_DIR_ENVIRONMENT
);
231 if (git_env_common_dir
) {
232 strbuf_addstr(sb
, git_env_common_dir
);
235 return get_common_dir_noenv(sb
, gitdir
);
239 int get_common_dir_noenv(struct strbuf
*sb
, const char *gitdir
)
241 struct strbuf data
= STRBUF_INIT
;
242 struct strbuf path
= STRBUF_INIT
;
245 strbuf_addf(&path
, "%s/commondir", gitdir
);
246 if (file_exists(path
.buf
)) {
247 if (strbuf_read_file(&data
, path
.buf
, 0) <= 0)
248 die_errno(_("failed to read %s"), path
.buf
);
249 while (data
.len
&& (data
.buf
[data
.len
- 1] == '\n' ||
250 data
.buf
[data
.len
- 1] == '\r'))
252 data
.buf
[data
.len
] = '\0';
254 if (!is_absolute_path(data
.buf
))
255 strbuf_addf(&path
, "%s/", gitdir
);
256 strbuf_addbuf(&path
, &data
);
257 strbuf_add_real_path(sb
, path
.buf
);
260 strbuf_addstr(sb
, gitdir
);
263 strbuf_release(&data
);
264 strbuf_release(&path
);
269 * Test if it looks like we're at a git directory.
272 * - either an objects/ directory _or_ the proper
273 * GIT_OBJECT_DIRECTORY environment variable
274 * - a refs/ directory
275 * - either a HEAD symlink or a HEAD file that is formatted as
276 * a proper "ref:", or a regular file HEAD that has a properly
277 * formatted sha1 object name.
279 int is_git_directory(const char *suspect
)
281 struct strbuf path
= STRBUF_INIT
;
285 /* Check worktree-related signatures */
286 strbuf_addf(&path
, "%s/HEAD", suspect
);
287 if (validate_headref(path
.buf
))
291 get_common_dir(&path
, suspect
);
294 /* Check non-worktree-related signatures */
295 if (getenv(DB_ENVIRONMENT
)) {
296 if (access(getenv(DB_ENVIRONMENT
), X_OK
))
300 strbuf_setlen(&path
, len
);
301 strbuf_addstr(&path
, "/objects");
302 if (access(path
.buf
, X_OK
))
306 strbuf_setlen(&path
, len
);
307 strbuf_addstr(&path
, "/refs");
308 if (access(path
.buf
, X_OK
))
313 strbuf_release(&path
);
317 int is_nonbare_repository_dir(struct strbuf
*path
)
321 size_t orig_path_len
= path
->len
;
322 assert(orig_path_len
!= 0);
323 strbuf_complete(path
, '/');
324 strbuf_addstr(path
, ".git");
325 if (read_gitfile_gently(path
->buf
, &gitfile_error
) || is_git_directory(path
->buf
))
327 if (gitfile_error
== READ_GITFILE_ERR_OPEN_FAILED
||
328 gitfile_error
== READ_GITFILE_ERR_READ_FAILED
)
330 strbuf_setlen(path
, orig_path_len
);
334 int is_inside_git_dir(void)
336 if (inside_git_dir
< 0)
337 inside_git_dir
= is_inside_dir(get_git_dir());
338 return inside_git_dir
;
341 int is_inside_work_tree(void)
343 if (inside_work_tree
< 0)
344 inside_work_tree
= is_inside_dir(get_git_work_tree());
345 return inside_work_tree
;
348 void setup_work_tree(void)
350 const char *work_tree
, *git_dir
;
351 static int initialized
= 0;
356 if (work_tree_config_is_bogus
)
357 die("unable to set up work tree using invalid config");
359 work_tree
= get_git_work_tree();
360 git_dir
= get_git_dir();
361 if (!is_absolute_path(git_dir
))
362 git_dir
= real_path(get_git_dir());
363 if (!work_tree
|| chdir(work_tree
))
364 die("This operation must be run in a work tree");
367 * Make sure subsequent git processes find correct worktree
368 * if $GIT_WORK_TREE is set relative
370 if (getenv(GIT_WORK_TREE_ENVIRONMENT
))
371 setenv(GIT_WORK_TREE_ENVIRONMENT
, ".", 1);
373 set_git_dir(remove_leading_path(git_dir
, work_tree
));
377 static int check_repo_format(const char *var
, const char *value
, void *vdata
)
379 struct repository_format
*data
= vdata
;
382 if (strcmp(var
, "core.repositoryformatversion") == 0)
383 data
->version
= git_config_int(var
, value
);
384 else if (skip_prefix(var
, "extensions.", &ext
)) {
386 * record any known extensions here; otherwise,
387 * we fall through to recording it as unknown, and
388 * check_repository_format will complain
390 if (!strcmp(ext
, "noop"))
392 else if (!strcmp(ext
, "preciousobjects"))
393 data
->precious_objects
= git_config_bool(var
, value
);
395 string_list_append(&data
->unknown_extensions
, ext
);
396 } else if (strcmp(var
, "core.bare") == 0) {
397 data
->is_bare
= git_config_bool(var
, value
);
398 } else if (strcmp(var
, "core.worktree") == 0) {
400 return config_error_nonbool(var
);
401 data
->work_tree
= xstrdup(value
);
406 static int check_repository_format_gently(const char *gitdir
, int *nongit_ok
)
408 struct strbuf sb
= STRBUF_INIT
;
409 struct strbuf err
= STRBUF_INIT
;
410 struct repository_format candidate
;
413 has_common
= get_common_dir(&sb
, gitdir
);
414 strbuf_addstr(&sb
, "/config");
415 read_repository_format(&candidate
, sb
.buf
);
419 * For historical use of check_repository_format() in git-init,
420 * we treat a missing config as a silent "ok", even when nongit_ok
423 if (candidate
.version
< 0)
426 if (verify_repository_format(&candidate
, &err
) < 0) {
428 warning("%s", err
.buf
);
429 strbuf_release(&err
);
436 repository_format_precious_objects
= candidate
.precious_objects
;
437 string_list_clear(&candidate
.unknown_extensions
, 0);
439 if (candidate
.is_bare
!= -1) {
440 is_bare_repository_cfg
= candidate
.is_bare
;
441 if (is_bare_repository_cfg
== 1)
442 inside_work_tree
= -1;
444 if (candidate
.work_tree
) {
445 free(git_work_tree_cfg
);
446 git_work_tree_cfg
= candidate
.work_tree
;
447 inside_work_tree
= -1;
450 free(candidate
.work_tree
);
456 int read_repository_format(struct repository_format
*format
, const char *path
)
458 memset(format
, 0, sizeof(*format
));
459 format
->version
= -1;
460 format
->is_bare
= -1;
461 string_list_init(&format
->unknown_extensions
, 1);
462 git_config_from_file(check_repo_format
, path
, format
);
463 return format
->version
;
466 int verify_repository_format(const struct repository_format
*format
,
469 if (GIT_REPO_VERSION_READ
< format
->version
) {
470 strbuf_addf(err
, _("Expected git repo version <= %d, found %d"),
471 GIT_REPO_VERSION_READ
, format
->version
);
475 if (format
->version
>= 1 && format
->unknown_extensions
.nr
) {
478 strbuf_addstr(err
, _("unknown repository extensions found:"));
480 for (i
= 0; i
< format
->unknown_extensions
.nr
; i
++)
481 strbuf_addf(err
, "\n\t%s",
482 format
->unknown_extensions
.items
[i
].string
);
489 void read_gitfile_error_die(int error_code
, const char *path
, const char *dir
)
491 switch (error_code
) {
492 case READ_GITFILE_ERR_STAT_FAILED
:
493 case READ_GITFILE_ERR_NOT_A_FILE
:
494 /* non-fatal; follow return path */
496 case READ_GITFILE_ERR_OPEN_FAILED
:
497 die_errno("Error opening '%s'", path
);
498 case READ_GITFILE_ERR_TOO_LARGE
:
499 die("Too large to be a .git file: '%s'", path
);
500 case READ_GITFILE_ERR_READ_FAILED
:
501 die("Error reading %s", path
);
502 case READ_GITFILE_ERR_INVALID_FORMAT
:
503 die("Invalid gitfile format: %s", path
);
504 case READ_GITFILE_ERR_NO_PATH
:
505 die("No path in gitfile: %s", path
);
506 case READ_GITFILE_ERR_NOT_A_REPO
:
507 die("Not a git repository: %s", dir
);
509 die("BUG: unknown error code");
514 * Try to read the location of the git directory from the .git file,
515 * return path to git directory if found.
517 * On failure, if return_error_code is not NULL, return_error_code
518 * will be set to an error code and NULL will be returned. If
519 * return_error_code is NULL the function will die instead (for most
522 const char *read_gitfile_gently(const char *path
, int *return_error_code
)
524 const int max_file_size
= 1 << 20; /* 1MB */
533 if (stat(path
, &st
)) {
534 /* NEEDSWORK: discern between ENOENT vs other errors */
535 error_code
= READ_GITFILE_ERR_STAT_FAILED
;
538 if (!S_ISREG(st
.st_mode
)) {
539 error_code
= READ_GITFILE_ERR_NOT_A_FILE
;
542 if (st
.st_size
> max_file_size
) {
543 error_code
= READ_GITFILE_ERR_TOO_LARGE
;
546 fd
= open(path
, O_RDONLY
);
548 error_code
= READ_GITFILE_ERR_OPEN_FAILED
;
551 buf
= xmallocz(st
.st_size
);
552 len
= read_in_full(fd
, buf
, st
.st_size
);
554 if (len
!= st
.st_size
) {
555 error_code
= READ_GITFILE_ERR_READ_FAILED
;
558 if (!starts_with(buf
, "gitdir: ")) {
559 error_code
= READ_GITFILE_ERR_INVALID_FORMAT
;
562 while (buf
[len
- 1] == '\n' || buf
[len
- 1] == '\r')
565 error_code
= READ_GITFILE_ERR_NO_PATH
;
571 if (!is_absolute_path(dir
) && (slash
= strrchr(path
, '/'))) {
572 size_t pathlen
= slash
+1 - path
;
573 dir
= xstrfmt("%.*s%.*s", (int)pathlen
, path
,
574 (int)(len
- 8), buf
+ 8);
578 if (!is_git_directory(dir
)) {
579 error_code
= READ_GITFILE_ERR_NOT_A_REPO
;
582 path
= real_path(dir
);
585 if (return_error_code
)
586 *return_error_code
= error_code
;
588 read_gitfile_error_die(error_code
, path
, dir
);
591 return error_code
? NULL
: path
;
594 static const char *setup_explicit_git_dir(const char *gitdirenv
,
598 const char *work_tree_env
= getenv(GIT_WORK_TREE_ENVIRONMENT
);
599 const char *worktree
;
603 if (PATH_MAX
- 40 < strlen(gitdirenv
))
604 die("'$%s' too big", GIT_DIR_ENVIRONMENT
);
606 gitfile
= (char*)read_gitfile(gitdirenv
);
608 gitfile
= xstrdup(gitfile
);
612 if (!is_git_directory(gitdirenv
)) {
618 die("Not a git repository: '%s'", gitdirenv
);
621 if (check_repository_format_gently(gitdirenv
, nongit_ok
)) {
626 /* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */
628 set_git_work_tree(work_tree_env
);
629 else if (is_bare_repository_cfg
> 0) {
630 if (git_work_tree_cfg
) {
632 warning("core.bare and core.worktree do not make sense");
633 work_tree_config_is_bogus
= 1;
637 set_git_dir(gitdirenv
);
641 else if (git_work_tree_cfg
) { /* #6, #14 */
642 if (is_absolute_path(git_work_tree_cfg
))
643 set_git_work_tree(git_work_tree_cfg
);
646 if (chdir(gitdirenv
))
647 die_errno("Could not chdir to '%s'", gitdirenv
);
648 if (chdir(git_work_tree_cfg
))
649 die_errno("Could not chdir to '%s'", git_work_tree_cfg
);
650 core_worktree
= xgetcwd();
652 die_errno("Could not come back to cwd");
653 set_git_work_tree(core_worktree
);
657 else if (!git_env_bool(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT
, 1)) {
659 set_git_dir(gitdirenv
);
664 set_git_work_tree(".");
666 /* set_git_work_tree() must have been called by now */
667 worktree
= get_git_work_tree();
669 /* both get_git_work_tree() and cwd are already normalized */
670 if (!strcmp(cwd
->buf
, worktree
)) { /* cwd == worktree */
671 set_git_dir(gitdirenv
);
676 offset
= dir_inside_of(cwd
->buf
, worktree
);
677 if (offset
>= 0) { /* cwd inside worktree? */
678 set_git_dir(real_path(gitdirenv
));
680 die_errno("Could not chdir to '%s'", worktree
);
681 strbuf_addch(cwd
, '/');
683 return cwd
->buf
+ offset
;
686 /* cwd outside worktree */
687 set_git_dir(gitdirenv
);
692 static const char *setup_discovered_git_dir(const char *gitdir
,
693 struct strbuf
*cwd
, int offset
,
696 if (check_repository_format_gently(gitdir
, nongit_ok
))
699 /* --work-tree is set without --git-dir; use discovered one */
700 if (getenv(GIT_WORK_TREE_ENVIRONMENT
) || git_work_tree_cfg
) {
701 if (offset
!= cwd
->len
&& !is_absolute_path(gitdir
))
702 gitdir
= real_pathdup(gitdir
, 1);
704 die_errno("Could not come back to cwd");
705 return setup_explicit_git_dir(gitdir
, cwd
, nongit_ok
);
708 /* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */
709 if (is_bare_repository_cfg
> 0) {
710 set_git_dir(offset
== cwd
->len
? gitdir
: real_path(gitdir
));
712 die_errno("Could not come back to cwd");
716 /* #0, #1, #5, #8, #9, #12, #13 */
717 set_git_work_tree(".");
718 if (strcmp(gitdir
, DEFAULT_GIT_DIR_ENVIRONMENT
))
721 inside_work_tree
= 1;
722 if (offset
== cwd
->len
)
725 /* Make "offset" point past the '/' (already the case for root dirs) */
726 if (offset
!= offset_1st_component(cwd
->buf
))
728 /* Add a '/' at the end */
729 strbuf_addch(cwd
, '/');
730 return cwd
->buf
+ offset
;
733 /* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */
734 static const char *setup_bare_git_dir(struct strbuf
*cwd
, int offset
,
739 if (check_repository_format_gently(".", nongit_ok
))
742 setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT
, "0", 1);
744 /* --work-tree is set without --git-dir; use discovered one */
745 if (getenv(GIT_WORK_TREE_ENVIRONMENT
) || git_work_tree_cfg
) {
748 gitdir
= offset
== cwd
->len
? "." : xmemdupz(cwd
->buf
, offset
);
750 die_errno("Could not come back to cwd");
751 return setup_explicit_git_dir(gitdir
, cwd
, nongit_ok
);
755 inside_work_tree
= 0;
756 if (offset
!= cwd
->len
) {
758 die_errno("Cannot come back to cwd");
759 root_len
= offset_1st_component(cwd
->buf
);
760 strbuf_setlen(cwd
, offset
> root_len
? offset
: root_len
);
761 set_git_dir(cwd
->buf
);
768 static const char *setup_nongit(const char *cwd
, int *nongit_ok
)
771 die(_("Not a git repository (or any of the parent directories): %s"), DEFAULT_GIT_DIR_ENVIRONMENT
);
773 die_errno(_("Cannot come back to cwd"));
778 static dev_t
get_device_or_die(const char *path
, const char *prefix
, int prefix_len
)
781 if (stat(path
, &buf
)) {
782 die_errno("failed to stat '%*s%s%s'",
784 prefix
? prefix
: "",
785 prefix
? "/" : "", path
);
791 * A "string_list_each_func_t" function that canonicalizes an entry
792 * from GIT_CEILING_DIRECTORIES using real_path_if_valid(), or
793 * discards it if unusable. The presence of an empty entry in
794 * GIT_CEILING_DIRECTORIES turns off canonicalization for all
795 * subsequent entries.
797 static int canonicalize_ceiling_entry(struct string_list_item
*item
,
800 int *empty_entry_found
= cb_data
;
801 char *ceil
= item
->string
;
804 *empty_entry_found
= 1;
806 } else if (!is_absolute_path(ceil
)) {
808 } else if (*empty_entry_found
) {
809 /* Keep entry but do not canonicalize it */
812 char *real_path
= real_pathdup(ceil
, 0);
817 item
->string
= real_path
;
822 enum discovery_result
{
827 /* these are errors */
828 GIT_DIR_HIT_CEILING
= -1,
829 GIT_DIR_HIT_MOUNT_POINT
= -2,
830 GIT_DIR_INVALID_GITFILE
= -3
834 * We cannot decide in this function whether we are in the work tree or
835 * not, since the config can only be read _after_ this function was called.
837 * Also, we avoid changing any global state (such as the current working
838 * directory) to allow early callers.
840 * The directory where the search should start needs to be passed in via the
841 * `dir` parameter; upon return, the `dir` buffer will contain the path of
842 * the directory where the search ended, and `gitdir` will contain the path of
843 * the discovered .git/ directory, if any. If `gitdir` is not absolute, it
844 * is relative to `dir` (i.e. *not* necessarily the cwd).
846 static enum discovery_result
setup_git_directory_gently_1(struct strbuf
*dir
,
847 struct strbuf
*gitdir
,
850 const char *env_ceiling_dirs
= getenv(CEILING_DIRECTORIES_ENVIRONMENT
);
851 struct string_list ceiling_dirs
= STRING_LIST_INIT_DUP
;
852 const char *gitdirenv
;
853 int ceil_offset
= -1, min_offset
= has_dos_drive_prefix(dir
->buf
) ? 3 : 1;
854 dev_t current_device
= 0;
855 int one_filesystem
= 1;
858 * If GIT_DIR is set explicitly, we're not going
859 * to do any discovery, but we still do repository
862 gitdirenv
= getenv(GIT_DIR_ENVIRONMENT
);
864 strbuf_addstr(gitdir
, gitdirenv
);
865 return GIT_DIR_EXPLICIT
;
868 if (env_ceiling_dirs
) {
869 int empty_entry_found
= 0;
871 string_list_split(&ceiling_dirs
, env_ceiling_dirs
, PATH_SEP
, -1);
872 filter_string_list(&ceiling_dirs
, 0,
873 canonicalize_ceiling_entry
, &empty_entry_found
);
874 ceil_offset
= longest_ancestor_length(dir
->buf
, &ceiling_dirs
);
875 string_list_clear(&ceiling_dirs
, 0);
879 ceil_offset
= min_offset
- 2;
882 * Test in the following order (relative to the dir):
883 * - .git (file containing "gitdir: <path>")
892 one_filesystem
= !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM", 0);
894 current_device
= get_device_or_die(dir
->buf
, NULL
, 0);
896 int offset
= dir
->len
, error_code
= 0;
898 if (offset
> min_offset
)
899 strbuf_addch(dir
, '/');
900 strbuf_addstr(dir
, DEFAULT_GIT_DIR_ENVIRONMENT
);
901 gitdirenv
= read_gitfile_gently(dir
->buf
, die_on_error
?
905 error_code
== READ_GITFILE_ERR_NOT_A_FILE
) {
906 /* NEEDSWORK: fail if .git is not file nor dir */
907 if (is_git_directory(dir
->buf
))
908 gitdirenv
= DEFAULT_GIT_DIR_ENVIRONMENT
;
909 } else if (error_code
!= READ_GITFILE_ERR_STAT_FAILED
)
910 return GIT_DIR_INVALID_GITFILE
;
912 strbuf_setlen(dir
, offset
);
914 strbuf_addstr(gitdir
, gitdirenv
);
915 return GIT_DIR_DISCOVERED
;
918 if (is_git_directory(dir
->buf
)) {
919 strbuf_addstr(gitdir
, ".");
923 if (offset
<= min_offset
)
924 return GIT_DIR_HIT_CEILING
;
926 while (--offset
> ceil_offset
&& !is_dir_sep(dir
->buf
[offset
]))
928 if (offset
<= ceil_offset
)
929 return GIT_DIR_HIT_CEILING
;
931 strbuf_setlen(dir
, offset
> min_offset
? offset
: min_offset
);
932 if (one_filesystem
&&
933 current_device
!= get_device_or_die(dir
->buf
, NULL
, offset
))
934 return GIT_DIR_HIT_MOUNT_POINT
;
938 const char *discover_git_directory(struct strbuf
*gitdir
)
940 struct strbuf dir
= STRBUF_INIT
, err
= STRBUF_INIT
;
941 size_t gitdir_offset
= gitdir
->len
, cwd_len
;
942 struct repository_format candidate
;
944 if (strbuf_getcwd(&dir
))
948 if (setup_git_directory_gently_1(&dir
, gitdir
, 0) <= 0) {
949 strbuf_release(&dir
);
954 * The returned gitdir is relative to dir, and if dir does not reflect
955 * the current working directory, we simply make the gitdir absolute.
957 if (dir
.len
< cwd_len
&& !is_absolute_path(gitdir
->buf
+ gitdir_offset
)) {
958 /* Avoid a trailing "/." */
959 if (!strcmp(".", gitdir
->buf
+ gitdir_offset
))
960 strbuf_setlen(gitdir
, gitdir_offset
);
962 strbuf_addch(&dir
, '/');
963 strbuf_insert(gitdir
, gitdir_offset
, dir
.buf
, dir
.len
);
967 strbuf_addf(&dir
, "%s/config", gitdir
->buf
+ gitdir_offset
);
968 read_repository_format(&candidate
, dir
.buf
);
969 strbuf_release(&dir
);
971 if (verify_repository_format(&candidate
, &err
) < 0) {
972 warning("ignoring git dir '%s': %s",
973 gitdir
->buf
+ gitdir_offset
, err
.buf
);
974 strbuf_release(&err
);
978 return gitdir
->buf
+ gitdir_offset
;
981 const char *setup_git_directory_gently(int *nongit_ok
)
983 static struct strbuf cwd
= STRBUF_INIT
;
984 struct strbuf dir
= STRBUF_INIT
, gitdir
= STRBUF_INIT
;
988 * We may have read an incomplete configuration before
989 * setting-up the git directory. If so, clear the cache so
990 * that the next queries to the configuration reload complete
991 * configuration (including the per-repo config file that we
992 * ignored previously).
997 * Let's assume that we are in a git repository.
998 * If it turns out later that we are somewhere else, the value will be
999 * updated accordingly.
1004 if (strbuf_getcwd(&cwd
))
1005 die_errno(_("Unable to read current working directory"));
1006 strbuf_addbuf(&dir
, &cwd
);
1008 switch (setup_git_directory_gently_1(&dir
, &gitdir
, 1)) {
1012 case GIT_DIR_EXPLICIT
:
1013 prefix
= setup_explicit_git_dir(gitdir
.buf
, &cwd
, nongit_ok
);
1015 case GIT_DIR_DISCOVERED
:
1016 if (dir
.len
< cwd
.len
&& chdir(dir
.buf
))
1017 die(_("Cannot change to '%s'"), dir
.buf
);
1018 prefix
= setup_discovered_git_dir(gitdir
.buf
, &cwd
, dir
.len
,
1022 if (dir
.len
< cwd
.len
&& chdir(dir
.buf
))
1023 die(_("Cannot change to '%s'"), dir
.buf
);
1024 prefix
= setup_bare_git_dir(&cwd
, dir
.len
, nongit_ok
);
1026 case GIT_DIR_HIT_CEILING
:
1027 prefix
= setup_nongit(cwd
.buf
, nongit_ok
);
1029 case GIT_DIR_HIT_MOUNT_POINT
:
1032 strbuf_release(&cwd
);
1033 strbuf_release(&dir
);
1036 die(_("Not a git repository (or any parent up to mount point %s)\n"
1037 "Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set)."),
1040 die("BUG: unhandled setup_git_directory_1() result");
1044 setenv(GIT_PREFIX_ENVIRONMENT
, prefix
, 1);
1046 setenv(GIT_PREFIX_ENVIRONMENT
, "", 1);
1048 startup_info
->have_repository
= !nongit_ok
|| !*nongit_ok
;
1049 startup_info
->prefix
= prefix
;
1051 strbuf_release(&dir
);
1052 strbuf_release(&gitdir
);
1057 int git_config_perm(const char *var
, const char *value
)
1065 if (!strcmp(value
, "umask"))
1067 if (!strcmp(value
, "group"))
1069 if (!strcmp(value
, "all") ||
1070 !strcmp(value
, "world") ||
1071 !strcmp(value
, "everybody"))
1072 return PERM_EVERYBODY
;
1074 /* Parse octal numbers */
1075 i
= strtol(value
, &endptr
, 8);
1077 /* If not an octal number, maybe true/false? */
1079 return git_config_bool(var
, value
) ? PERM_GROUP
: PERM_UMASK
;
1082 * Treat values 0, 1 and 2 as compatibility cases, otherwise it is
1083 * a chmod value to restrict to.
1086 case PERM_UMASK
: /* 0 */
1088 case OLD_PERM_GROUP
: /* 1 */
1090 case OLD_PERM_EVERYBODY
: /* 2 */
1091 return PERM_EVERYBODY
;
1094 /* A filemode value was given: 0xxx */
1096 if ((i
& 0600) != 0600)
1097 die(_("Problem with core.sharedRepository filemode value "
1098 "(0%.3o).\nThe owner of files must always have "
1099 "read and write permissions."), i
);
1102 * Mask filemode value. Others can not get write permission.
1103 * x flags for directories are handled separately.
1108 void check_repository_format(void)
1110 check_repository_format_gently(get_git_dir(), NULL
);
1111 startup_info
->have_repository
= 1;
1115 * Returns the "prefix", a path to the current working directory
1116 * relative to the work tree root, or NULL, if the current working
1117 * directory is not a strict subdirectory of the work tree root. The
1118 * prefix always ends with a '/' character.
1120 const char *setup_git_directory(void)
1122 return setup_git_directory_gently(NULL
);
1125 const char *resolve_gitdir_gently(const char *suspect
, int *return_error_code
)
1127 if (is_git_directory(suspect
))
1129 return read_gitfile_gently(suspect
, return_error_code
);
1132 /* if any standard file descriptor is missing open it to /dev/null */
1133 void sanitize_stdfds(void)
1135 int fd
= open("/dev/null", O_RDWR
, 0);
1136 while (fd
!= -1 && fd
< 2)
1139 die_errno("open /dev/null or dup failed");
1146 #ifdef NO_POSIX_GOODIES
1154 die_errno("fork failed");
1159 die_errno("setsid failed");