3 #include "environment.h"
5 #include "repository.h"
9 #include "string-list.h"
10 #include "chdir-notify.h"
11 #include "promisor-remote.h"
14 static int inside_git_dir
= -1;
15 static int inside_work_tree
= -1;
16 static int work_tree_config_is_bogus
;
17 enum allowed_bare_repo
{
18 ALLOWED_BARE_REPO_EXPLICIT
= 0,
19 ALLOWED_BARE_REPO_ALL
,
22 static struct startup_info the_startup_info
;
23 struct startup_info
*startup_info
= &the_startup_info
;
24 const char *tmp_original_cwd
;
27 * The input parameter must contain an absolute path, and it must already be
30 * Find the part of an absolute path that lies inside the work tree by
31 * dereferencing symlinks outside the work tree, for example:
32 * /dir1/repo/dir2/file (work tree is /dir1/repo) -> dir2/file
33 * /dir/file (work tree is /) -> dir/file
34 * /dir/symlink1/symlink2 (symlink1 points to work tree) -> symlink2
35 * /dir/repolink/file (repolink points to /dir/repo) -> file
36 * /dir/repo (exactly equal to work tree) -> (empty string)
38 static int abspath_part_inside_repo(char *path
)
44 const char *work_tree
= get_git_work_tree();
45 struct strbuf realpath
= STRBUF_INIT
;
49 wtlen
= strlen(work_tree
);
51 off
= offset_1st_component(path
);
53 /* check if work tree is already the prefix */
54 if (wtlen
<= len
&& !fspathncmp(path
, work_tree
, wtlen
)) {
55 if (path
[wtlen
] == '/') {
56 memmove(path
, path
+ wtlen
+ 1, len
- wtlen
);
58 } else if (path
[wtlen
- 1] == '/' || path
[wtlen
] == '\0') {
59 /* work tree is the root, or the whole path */
60 memmove(path
, path
+ wtlen
, len
- wtlen
+ 1);
63 /* work tree might match beginning of a symlink to work tree */
69 /* check each '/'-terminated level */
74 strbuf_realpath(&realpath
, path0
, 1);
75 if (fspathcmp(realpath
.buf
, work_tree
) == 0) {
76 memmove(path0
, path
+ 1, len
- (path
- path0
));
77 strbuf_release(&realpath
);
84 /* check whole path */
85 strbuf_realpath(&realpath
, path0
, 1);
86 if (fspathcmp(realpath
.buf
, work_tree
) == 0) {
88 strbuf_release(&realpath
);
92 strbuf_release(&realpath
);
97 * Normalize "path", prepending the "prefix" for relative paths. If
98 * remaining_prefix is not NULL, return the actual prefix still
99 * remains in the path. For example, prefix = sub1/sub2/ and path is
101 * foo -> sub1/sub2/foo (full prefix)
102 * ../foo -> sub1/foo (remaining prefix is sub1/)
103 * ../../bar -> bar (no remaining prefix)
104 * ../../sub1/sub2/foo -> sub1/sub2/foo (but no remaining prefix)
105 * `pwd`/../bar -> sub1/bar (no remaining prefix)
107 char *prefix_path_gently(const char *prefix
, int len
,
108 int *remaining_prefix
, const char *path
)
110 const char *orig
= path
;
112 if (is_absolute_path(orig
)) {
113 sanitized
= xmallocz(strlen(path
));
114 if (remaining_prefix
)
115 *remaining_prefix
= 0;
116 if (normalize_path_copy_len(sanitized
, path
, remaining_prefix
)) {
120 if (abspath_part_inside_repo(sanitized
)) {
125 sanitized
= xstrfmt("%.*s%s", len
, len
? prefix
: "", path
);
126 if (remaining_prefix
)
127 *remaining_prefix
= len
;
128 if (normalize_path_copy_len(sanitized
, sanitized
, remaining_prefix
)) {
136 char *prefix_path(const char *prefix
, int len
, const char *path
)
138 char *r
= prefix_path_gently(prefix
, len
, NULL
, path
);
140 const char *hint_path
= get_git_work_tree();
142 hint_path
= get_git_dir();
143 die(_("'%s' is outside repository at '%s'"), path
,
144 absolute_path(hint_path
));
149 int path_inside_repo(const char *prefix
, const char *path
)
151 int len
= prefix
? strlen(prefix
) : 0;
152 char *r
= prefix_path_gently(prefix
, len
, NULL
, path
);
160 int check_filename(const char *prefix
, const char *arg
)
162 char *to_free
= NULL
;
165 if (skip_prefix(arg
, ":/", &arg
)) {
166 if (!*arg
) /* ":/" is root dir, always exists */
169 } else if (skip_prefix(arg
, ":!", &arg
) ||
170 skip_prefix(arg
, ":^", &arg
)) {
171 if (!*arg
) /* excluding everything is silly, but allowed */
176 arg
= to_free
= prefix_filename(prefix
, arg
);
178 if (!lstat(arg
, &st
)) {
180 return 1; /* file exists */
182 if (is_missing_file_error(errno
)) {
184 return 0; /* file does not exist */
186 die_errno(_("failed to stat '%s'"), arg
);
189 static void NORETURN
die_verify_filename(struct repository
*r
,
192 int diagnose_misspelt_rev
)
194 if (!diagnose_misspelt_rev
)
195 die(_("%s: no such path in the working tree.\n"
196 "Use 'git <command> -- <path>...' to specify paths that do not exist locally."),
199 * Saying "'(icase)foo' does not exist in the index" when the
200 * user gave us ":(icase)foo" is just stupid. A magic pathspec
201 * begins with a colon and is followed by a non-alnum; do not
202 * let maybe_die_on_misspelt_object_name() even trigger.
204 if (!(arg
[0] == ':' && !isalnum(arg
[1])))
205 maybe_die_on_misspelt_object_name(r
, arg
, prefix
);
207 /* ... or fall back the most general message. */
208 die(_("ambiguous argument '%s': unknown revision or path not in the working tree.\n"
209 "Use '--' to separate paths from revisions, like this:\n"
210 "'git <command> [<revision>...] -- [<file>...]'"), arg
);
215 * Check for arguments that don't resolve as actual files,
216 * but which look sufficiently like pathspecs that we'll consider
217 * them such for the purposes of rev/pathspec DWIM parsing.
219 static int looks_like_pathspec(const char *arg
)
225 * Wildcard characters imply the user is looking to match pathspecs
226 * that aren't in the filesystem. Note that this doesn't include
227 * backslash even though it's a glob special; by itself it doesn't
228 * cause any increase in the match. Likewise ignore backslash-escaped
229 * wildcard characters.
231 for (p
= arg
; *p
; p
++) {
234 } else if (is_glob_special(*p
)) {
242 /* long-form pathspec magic */
243 if (starts_with(arg
, ":("))
250 * Verify a filename that we got as an argument for a pathspec
251 * entry. Note that a filename that begins with "-" never verifies
252 * as true, because even if such a filename were to exist, we want
253 * it to be preceded by the "--" marker (or we want the user to
254 * use a format like "./-filename")
256 * The "diagnose_misspelt_rev" is used to provide a user-friendly
257 * diagnosis when dying upon finding that "name" is not a pathname.
258 * If set to 1, the diagnosis will try to diagnose "name" as an
259 * invalid object name (e.g. HEAD:foo). If set to 0, the diagnosis
260 * will only complain about an inexisting file.
262 * This function is typically called to check that a "file or rev"
263 * argument is unambiguous. In this case, the caller will want
264 * diagnose_misspelt_rev == 1 when verifying the first non-rev
265 * argument (which could have been a revision), and
266 * diagnose_misspelt_rev == 0 for the next ones (because we already
267 * saw a filename, there's not ambiguity anymore).
269 void verify_filename(const char *prefix
,
271 int diagnose_misspelt_rev
)
274 die(_("option '%s' must come before non-option arguments"), arg
);
275 if (looks_like_pathspec(arg
) || check_filename(prefix
, arg
))
277 die_verify_filename(the_repository
, prefix
, arg
, diagnose_misspelt_rev
);
281 * Opposite of the above: the command line did not have -- marker
282 * and we parsed the arg as a refname. It should not be interpretable
285 void verify_non_filename(const char *prefix
, const char *arg
)
287 if (!is_inside_work_tree() || is_inside_git_dir())
291 if (!check_filename(prefix
, arg
))
293 die(_("ambiguous argument '%s': both revision and filename\n"
294 "Use '--' to separate paths from revisions, like this:\n"
295 "'git <command> [<revision>...] -- [<file>...]'"), arg
);
298 int get_common_dir(struct strbuf
*sb
, const char *gitdir
)
300 const char *git_env_common_dir
= getenv(GIT_COMMON_DIR_ENVIRONMENT
);
301 if (git_env_common_dir
) {
302 strbuf_addstr(sb
, git_env_common_dir
);
305 return get_common_dir_noenv(sb
, gitdir
);
309 int get_common_dir_noenv(struct strbuf
*sb
, const char *gitdir
)
311 struct strbuf data
= STRBUF_INIT
;
312 struct strbuf path
= STRBUF_INIT
;
315 strbuf_addf(&path
, "%s/commondir", gitdir
);
316 if (file_exists(path
.buf
)) {
317 if (strbuf_read_file(&data
, path
.buf
, 0) <= 0)
318 die_errno(_("failed to read %s"), path
.buf
);
319 while (data
.len
&& (data
.buf
[data
.len
- 1] == '\n' ||
320 data
.buf
[data
.len
- 1] == '\r'))
322 data
.buf
[data
.len
] = '\0';
324 if (!is_absolute_path(data
.buf
))
325 strbuf_addf(&path
, "%s/", gitdir
);
326 strbuf_addbuf(&path
, &data
);
327 strbuf_add_real_path(sb
, path
.buf
);
330 strbuf_addstr(sb
, gitdir
);
333 strbuf_release(&data
);
334 strbuf_release(&path
);
339 * Test if it looks like we're at a git directory.
342 * - either an objects/ directory _or_ the proper
343 * GIT_OBJECT_DIRECTORY environment variable
344 * - a refs/ directory
345 * - either a HEAD symlink or a HEAD file that is formatted as
346 * a proper "ref:", or a regular file HEAD that has a properly
347 * formatted sha1 object name.
349 int is_git_directory(const char *suspect
)
351 struct strbuf path
= STRBUF_INIT
;
355 /* Check worktree-related signatures */
356 strbuf_addstr(&path
, suspect
);
357 strbuf_complete(&path
, '/');
358 strbuf_addstr(&path
, "HEAD");
359 if (validate_headref(path
.buf
))
363 get_common_dir(&path
, suspect
);
366 /* Check non-worktree-related signatures */
367 if (getenv(DB_ENVIRONMENT
)) {
368 if (access(getenv(DB_ENVIRONMENT
), X_OK
))
372 strbuf_setlen(&path
, len
);
373 strbuf_addstr(&path
, "/objects");
374 if (access(path
.buf
, X_OK
))
378 strbuf_setlen(&path
, len
);
379 strbuf_addstr(&path
, "/refs");
380 if (access(path
.buf
, X_OK
))
385 strbuf_release(&path
);
389 int is_nonbare_repository_dir(struct strbuf
*path
)
393 size_t orig_path_len
= path
->len
;
394 assert(orig_path_len
!= 0);
395 strbuf_complete(path
, '/');
396 strbuf_addstr(path
, ".git");
397 if (read_gitfile_gently(path
->buf
, &gitfile_error
) || is_git_directory(path
->buf
))
399 if (gitfile_error
== READ_GITFILE_ERR_OPEN_FAILED
||
400 gitfile_error
== READ_GITFILE_ERR_READ_FAILED
)
402 strbuf_setlen(path
, orig_path_len
);
406 int is_inside_git_dir(void)
408 if (inside_git_dir
< 0)
409 inside_git_dir
= is_inside_dir(get_git_dir());
410 return inside_git_dir
;
413 int is_inside_work_tree(void)
415 if (inside_work_tree
< 0)
416 inside_work_tree
= is_inside_dir(get_git_work_tree());
417 return inside_work_tree
;
420 void setup_work_tree(void)
422 const char *work_tree
;
423 static int initialized
= 0;
428 if (work_tree_config_is_bogus
)
429 die(_("unable to set up work tree using invalid config"));
431 work_tree
= get_git_work_tree();
432 if (!work_tree
|| chdir_notify(work_tree
))
433 die(_("this operation must be run in a work tree"));
436 * Make sure subsequent git processes find correct worktree
437 * if $GIT_WORK_TREE is set relative
439 if (getenv(GIT_WORK_TREE_ENVIRONMENT
))
440 setenv(GIT_WORK_TREE_ENVIRONMENT
, ".", 1);
445 static void setup_original_cwd(void)
447 struct strbuf tmp
= STRBUF_INIT
;
448 const char *worktree
= NULL
;
451 if (!tmp_original_cwd
)
455 * startup_info->original_cwd points to the current working
456 * directory we inherited from our parent process, which is a
457 * directory we want to avoid removing.
459 * For convience, we would like to have the path relative to the
460 * worktree instead of an absolute path.
462 * Yes, startup_info->original_cwd is usually the same as 'prefix',
463 * but differs in two ways:
464 * - prefix has a trailing '/'
465 * - if the user passes '-C' to git, that modifies the prefix but
466 * not startup_info->original_cwd.
469 /* Normalize the directory */
470 if (!strbuf_realpath(&tmp
, tmp_original_cwd
, 0)) {
471 trace2_data_string("setup", the_repository
,
472 "realpath-path", tmp_original_cwd
);
473 trace2_data_string("setup", the_repository
,
474 "realpath-failure", strerror(errno
));
475 free((char*)tmp_original_cwd
);
476 tmp_original_cwd
= NULL
;
480 free((char*)tmp_original_cwd
);
481 tmp_original_cwd
= NULL
;
482 startup_info
->original_cwd
= strbuf_detach(&tmp
, NULL
);
485 * Get our worktree; we only protect the current working directory
486 * if it's in the worktree.
488 worktree
= get_git_work_tree();
490 goto no_prevention_needed
;
492 offset
= dir_inside_of(startup_info
->original_cwd
, worktree
);
495 * If startup_info->original_cwd == worktree, that is already
496 * protected and we don't need original_cwd as a secondary
497 * protection measure.
499 if (!*(startup_info
->original_cwd
+ offset
))
500 goto no_prevention_needed
;
503 * original_cwd was inside worktree; precompose it just as
504 * we do prefix so that built up paths will match
506 startup_info
->original_cwd
= \
507 precompose_string_if_needed(startup_info
->original_cwd
512 no_prevention_needed
:
513 free((char*)startup_info
->original_cwd
);
514 startup_info
->original_cwd
= NULL
;
517 static int read_worktree_config(const char *var
, const char *value
, void *vdata
)
519 struct repository_format
*data
= vdata
;
521 if (strcmp(var
, "core.bare") == 0) {
522 data
->is_bare
= git_config_bool(var
, value
);
523 } else if (strcmp(var
, "core.worktree") == 0) {
525 return config_error_nonbool(var
);
526 free(data
->work_tree
);
527 data
->work_tree
= xstrdup(value
);
532 enum extension_result
{
533 EXTENSION_ERROR
= -1, /* compatible with error(), etc */
534 EXTENSION_UNKNOWN
= 0,
539 * Do not add new extensions to this function. It handles extensions which are
540 * respected even in v0-format repositories for historical compatibility.
542 static enum extension_result
handle_extension_v0(const char *var
,
545 struct repository_format
*data
)
547 if (!strcmp(ext
, "noop")) {
549 } else if (!strcmp(ext
, "preciousobjects")) {
550 data
->precious_objects
= git_config_bool(var
, value
);
552 } else if (!strcmp(ext
, "partialclone")) {
553 data
->partial_clone
= xstrdup(value
);
555 } else if (!strcmp(ext
, "worktreeconfig")) {
556 data
->worktree_config
= git_config_bool(var
, value
);
560 return EXTENSION_UNKNOWN
;
564 * Record any new extensions in this function.
566 static enum extension_result
handle_extension(const char *var
,
569 struct repository_format
*data
)
571 if (!strcmp(ext
, "noop-v1")) {
573 } else if (!strcmp(ext
, "objectformat")) {
577 return config_error_nonbool(var
);
578 format
= hash_algo_by_name(value
);
579 if (format
== GIT_HASH_UNKNOWN
)
580 return error(_("invalid value for '%s': '%s'"),
581 "extensions.objectformat", value
);
582 data
->hash_algo
= format
;
585 return EXTENSION_UNKNOWN
;
588 static int check_repo_format(const char *var
, const char *value
, void *vdata
)
590 struct repository_format
*data
= vdata
;
593 if (strcmp(var
, "core.repositoryformatversion") == 0)
594 data
->version
= git_config_int(var
, value
);
595 else if (skip_prefix(var
, "extensions.", &ext
)) {
596 switch (handle_extension_v0(var
, value
, ext
, data
)) {
597 case EXTENSION_ERROR
:
601 case EXTENSION_UNKNOWN
:
605 switch (handle_extension(var
, value
, ext
, data
)) {
606 case EXTENSION_ERROR
:
609 string_list_append(&data
->v1_only_extensions
, ext
);
611 case EXTENSION_UNKNOWN
:
612 string_list_append(&data
->unknown_extensions
, ext
);
617 return read_worktree_config(var
, value
, vdata
);
620 static int check_repository_format_gently(const char *gitdir
, struct repository_format
*candidate
, int *nongit_ok
)
622 struct strbuf sb
= STRBUF_INIT
;
623 struct strbuf err
= STRBUF_INIT
;
626 has_common
= get_common_dir(&sb
, gitdir
);
627 strbuf_addstr(&sb
, "/config");
628 read_repository_format(candidate
, sb
.buf
);
632 * For historical use of check_repository_format() in git-init,
633 * we treat a missing config as a silent "ok", even when nongit_ok
636 if (candidate
->version
< 0)
639 if (verify_repository_format(candidate
, &err
) < 0) {
641 warning("%s", err
.buf
);
642 strbuf_release(&err
);
649 repository_format_precious_objects
= candidate
->precious_objects
;
650 repository_format_worktree_config
= candidate
->worktree_config
;
651 string_list_clear(&candidate
->unknown_extensions
, 0);
652 string_list_clear(&candidate
->v1_only_extensions
, 0);
654 if (repository_format_worktree_config
) {
656 * pick up core.bare and core.worktree from per-worktree
659 strbuf_addf(&sb
, "%s/config.worktree", gitdir
);
660 git_config_from_file(read_worktree_config
, sb
.buf
, candidate
);
666 if (candidate
->is_bare
!= -1) {
667 is_bare_repository_cfg
= candidate
->is_bare
;
668 if (is_bare_repository_cfg
== 1)
669 inside_work_tree
= -1;
671 if (candidate
->work_tree
) {
672 free(git_work_tree_cfg
);
673 git_work_tree_cfg
= xstrdup(candidate
->work_tree
);
674 inside_work_tree
= -1;
681 int upgrade_repository_format(int target_version
)
683 struct strbuf sb
= STRBUF_INIT
;
684 struct strbuf err
= STRBUF_INIT
;
685 struct strbuf repo_version
= STRBUF_INIT
;
686 struct repository_format repo_fmt
= REPOSITORY_FORMAT_INIT
;
688 strbuf_git_common_path(&sb
, the_repository
, "config");
689 read_repository_format(&repo_fmt
, sb
.buf
);
692 if (repo_fmt
.version
>= target_version
)
695 if (verify_repository_format(&repo_fmt
, &err
) < 0) {
696 error("cannot upgrade repository format from %d to %d: %s",
697 repo_fmt
.version
, target_version
, err
.buf
);
698 strbuf_release(&err
);
701 if (!repo_fmt
.version
&& repo_fmt
.unknown_extensions
.nr
)
702 return error("cannot upgrade repository format: "
703 "unknown extension %s",
704 repo_fmt
.unknown_extensions
.items
[0].string
);
706 strbuf_addf(&repo_version
, "%d", target_version
);
707 git_config_set("core.repositoryformatversion", repo_version
.buf
);
708 strbuf_release(&repo_version
);
712 static void init_repository_format(struct repository_format
*format
)
714 const struct repository_format fresh
= REPOSITORY_FORMAT_INIT
;
716 memcpy(format
, &fresh
, sizeof(fresh
));
719 int read_repository_format(struct repository_format
*format
, const char *path
)
721 clear_repository_format(format
);
722 git_config_from_file(check_repo_format
, path
, format
);
723 if (format
->version
== -1)
724 clear_repository_format(format
);
725 return format
->version
;
728 void clear_repository_format(struct repository_format
*format
)
730 string_list_clear(&format
->unknown_extensions
, 0);
731 string_list_clear(&format
->v1_only_extensions
, 0);
732 free(format
->work_tree
);
733 free(format
->partial_clone
);
734 init_repository_format(format
);
737 int verify_repository_format(const struct repository_format
*format
,
740 if (GIT_REPO_VERSION_READ
< format
->version
) {
741 strbuf_addf(err
, _("Expected git repo version <= %d, found %d"),
742 GIT_REPO_VERSION_READ
, format
->version
);
746 if (format
->version
>= 1 && format
->unknown_extensions
.nr
) {
749 strbuf_addstr(err
, Q_("unknown repository extension found:",
750 "unknown repository extensions found:",
751 format
->unknown_extensions
.nr
));
753 for (i
= 0; i
< format
->unknown_extensions
.nr
; i
++)
754 strbuf_addf(err
, "\n\t%s",
755 format
->unknown_extensions
.items
[i
].string
);
759 if (format
->version
== 0 && format
->v1_only_extensions
.nr
) {
763 Q_("repo version is 0, but v1-only extension found:",
764 "repo version is 0, but v1-only extensions found:",
765 format
->v1_only_extensions
.nr
));
767 for (i
= 0; i
< format
->v1_only_extensions
.nr
; i
++)
768 strbuf_addf(err
, "\n\t%s",
769 format
->v1_only_extensions
.items
[i
].string
);
776 void read_gitfile_error_die(int error_code
, const char *path
, const char *dir
)
778 switch (error_code
) {
779 case READ_GITFILE_ERR_STAT_FAILED
:
780 case READ_GITFILE_ERR_NOT_A_FILE
:
781 /* non-fatal; follow return path */
783 case READ_GITFILE_ERR_OPEN_FAILED
:
784 die_errno(_("error opening '%s'"), path
);
785 case READ_GITFILE_ERR_TOO_LARGE
:
786 die(_("too large to be a .git file: '%s'"), path
);
787 case READ_GITFILE_ERR_READ_FAILED
:
788 die(_("error reading %s"), path
);
789 case READ_GITFILE_ERR_INVALID_FORMAT
:
790 die(_("invalid gitfile format: %s"), path
);
791 case READ_GITFILE_ERR_NO_PATH
:
792 die(_("no path in gitfile: %s"), path
);
793 case READ_GITFILE_ERR_NOT_A_REPO
:
794 die(_("not a git repository: %s"), dir
);
796 BUG("unknown error code");
801 * Try to read the location of the git directory from the .git file,
802 * return path to git directory if found. The return value comes from
805 * On failure, if return_error_code is not NULL, return_error_code
806 * will be set to an error code and NULL will be returned. If
807 * return_error_code is NULL the function will die instead (for most
810 const char *read_gitfile_gently(const char *path
, int *return_error_code
)
812 const int max_file_size
= 1 << 20; /* 1MB */
820 static struct strbuf realpath
= STRBUF_INIT
;
822 if (stat(path
, &st
)) {
823 /* NEEDSWORK: discern between ENOENT vs other errors */
824 error_code
= READ_GITFILE_ERR_STAT_FAILED
;
827 if (!S_ISREG(st
.st_mode
)) {
828 error_code
= READ_GITFILE_ERR_NOT_A_FILE
;
831 if (st
.st_size
> max_file_size
) {
832 error_code
= READ_GITFILE_ERR_TOO_LARGE
;
835 fd
= open(path
, O_RDONLY
);
837 error_code
= READ_GITFILE_ERR_OPEN_FAILED
;
840 buf
= xmallocz(st
.st_size
);
841 len
= read_in_full(fd
, buf
, st
.st_size
);
843 if (len
!= st
.st_size
) {
844 error_code
= READ_GITFILE_ERR_READ_FAILED
;
847 if (!starts_with(buf
, "gitdir: ")) {
848 error_code
= READ_GITFILE_ERR_INVALID_FORMAT
;
851 while (buf
[len
- 1] == '\n' || buf
[len
- 1] == '\r')
854 error_code
= READ_GITFILE_ERR_NO_PATH
;
860 if (!is_absolute_path(dir
) && (slash
= strrchr(path
, '/'))) {
861 size_t pathlen
= slash
+1 - path
;
862 dir
= xstrfmt("%.*s%.*s", (int)pathlen
, path
,
863 (int)(len
- 8), buf
+ 8);
867 if (!is_git_directory(dir
)) {
868 error_code
= READ_GITFILE_ERR_NOT_A_REPO
;
872 strbuf_realpath(&realpath
, dir
, 1);
876 if (return_error_code
)
877 *return_error_code
= error_code
;
879 read_gitfile_error_die(error_code
, path
, dir
);
882 return error_code
? NULL
: path
;
885 static const char *setup_explicit_git_dir(const char *gitdirenv
,
887 struct repository_format
*repo_fmt
,
890 const char *work_tree_env
= getenv(GIT_WORK_TREE_ENVIRONMENT
);
891 const char *worktree
;
895 if (PATH_MAX
- 40 < strlen(gitdirenv
))
896 die(_("'$%s' too big"), GIT_DIR_ENVIRONMENT
);
898 gitfile
= (char*)read_gitfile(gitdirenv
);
900 gitfile
= xstrdup(gitfile
);
904 if (!is_git_directory(gitdirenv
)) {
910 die(_("not a git repository: '%s'"), gitdirenv
);
913 if (check_repository_format_gently(gitdirenv
, repo_fmt
, nongit_ok
)) {
918 /* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */
920 set_git_work_tree(work_tree_env
);
921 else if (is_bare_repository_cfg
> 0) {
922 if (git_work_tree_cfg
) {
924 warning("core.bare and core.worktree do not make sense");
925 work_tree_config_is_bogus
= 1;
929 set_git_dir(gitdirenv
, 0);
933 else if (git_work_tree_cfg
) { /* #6, #14 */
934 if (is_absolute_path(git_work_tree_cfg
))
935 set_git_work_tree(git_work_tree_cfg
);
938 if (chdir(gitdirenv
))
939 die_errno(_("cannot chdir to '%s'"), gitdirenv
);
940 if (chdir(git_work_tree_cfg
))
941 die_errno(_("cannot chdir to '%s'"), git_work_tree_cfg
);
942 core_worktree
= xgetcwd();
944 die_errno(_("cannot come back to cwd"));
945 set_git_work_tree(core_worktree
);
949 else if (!git_env_bool(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT
, 1)) {
951 set_git_dir(gitdirenv
, 0);
956 set_git_work_tree(".");
958 /* set_git_work_tree() must have been called by now */
959 worktree
= get_git_work_tree();
961 /* both get_git_work_tree() and cwd are already normalized */
962 if (!strcmp(cwd
->buf
, worktree
)) { /* cwd == worktree */
963 set_git_dir(gitdirenv
, 0);
968 offset
= dir_inside_of(cwd
->buf
, worktree
);
969 if (offset
>= 0) { /* cwd inside worktree? */
970 set_git_dir(gitdirenv
, 1);
972 die_errno(_("cannot chdir to '%s'"), worktree
);
973 strbuf_addch(cwd
, '/');
975 return cwd
->buf
+ offset
;
978 /* cwd outside worktree */
979 set_git_dir(gitdirenv
, 0);
984 static const char *setup_discovered_git_dir(const char *gitdir
,
985 struct strbuf
*cwd
, int offset
,
986 struct repository_format
*repo_fmt
,
989 if (check_repository_format_gently(gitdir
, repo_fmt
, nongit_ok
))
992 /* --work-tree is set without --git-dir; use discovered one */
993 if (getenv(GIT_WORK_TREE_ENVIRONMENT
) || git_work_tree_cfg
) {
994 char *to_free
= NULL
;
997 if (offset
!= cwd
->len
&& !is_absolute_path(gitdir
))
998 gitdir
= to_free
= real_pathdup(gitdir
, 1);
1000 die_errno(_("cannot come back to cwd"));
1001 ret
= setup_explicit_git_dir(gitdir
, cwd
, repo_fmt
, nongit_ok
);
1006 /* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */
1007 if (is_bare_repository_cfg
> 0) {
1008 set_git_dir(gitdir
, (offset
!= cwd
->len
));
1009 if (chdir(cwd
->buf
))
1010 die_errno(_("cannot come back to cwd"));
1014 /* #0, #1, #5, #8, #9, #12, #13 */
1015 set_git_work_tree(".");
1016 if (strcmp(gitdir
, DEFAULT_GIT_DIR_ENVIRONMENT
))
1017 set_git_dir(gitdir
, 0);
1019 inside_work_tree
= 1;
1020 if (offset
>= cwd
->len
)
1023 /* Make "offset" point past the '/' (already the case for root dirs) */
1024 if (offset
!= offset_1st_component(cwd
->buf
))
1026 /* Add a '/' at the end */
1027 strbuf_addch(cwd
, '/');
1028 return cwd
->buf
+ offset
;
1031 /* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */
1032 static const char *setup_bare_git_dir(struct strbuf
*cwd
, int offset
,
1033 struct repository_format
*repo_fmt
,
1038 if (check_repository_format_gently(".", repo_fmt
, nongit_ok
))
1041 setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT
, "0", 1);
1043 /* --work-tree is set without --git-dir; use discovered one */
1044 if (getenv(GIT_WORK_TREE_ENVIRONMENT
) || git_work_tree_cfg
) {
1045 static const char *gitdir
;
1047 gitdir
= offset
== cwd
->len
? "." : xmemdupz(cwd
->buf
, offset
);
1048 if (chdir(cwd
->buf
))
1049 die_errno(_("cannot come back to cwd"));
1050 return setup_explicit_git_dir(gitdir
, cwd
, repo_fmt
, nongit_ok
);
1054 inside_work_tree
= 0;
1055 if (offset
!= cwd
->len
) {
1056 if (chdir(cwd
->buf
))
1057 die_errno(_("cannot come back to cwd"));
1058 root_len
= offset_1st_component(cwd
->buf
);
1059 strbuf_setlen(cwd
, offset
> root_len
? offset
: root_len
);
1060 set_git_dir(cwd
->buf
, 0);
1063 set_git_dir(".", 0);
1067 static dev_t
get_device_or_die(const char *path
, const char *prefix
, int prefix_len
)
1070 if (stat(path
, &buf
)) {
1071 die_errno(_("failed to stat '%*s%s%s'"),
1073 prefix
? prefix
: "",
1074 prefix
? "/" : "", path
);
1080 * A "string_list_each_func_t" function that canonicalizes an entry
1081 * from GIT_CEILING_DIRECTORIES using real_pathdup(), or
1082 * discards it if unusable. The presence of an empty entry in
1083 * GIT_CEILING_DIRECTORIES turns off canonicalization for all
1084 * subsequent entries.
1086 static int canonicalize_ceiling_entry(struct string_list_item
*item
,
1089 int *empty_entry_found
= cb_data
;
1090 char *ceil
= item
->string
;
1093 *empty_entry_found
= 1;
1095 } else if (!is_absolute_path(ceil
)) {
1097 } else if (*empty_entry_found
) {
1098 /* Keep entry but do not canonicalize it */
1101 char *real_path
= real_pathdup(ceil
, 0);
1106 item
->string
= real_path
;
1111 struct safe_directory_data
{
1116 static int safe_directory_cb(const char *key
, const char *value
, void *d
)
1118 struct safe_directory_data
*data
= d
;
1120 if (strcmp(key
, "safe.directory"))
1123 if (!value
|| !*value
) {
1125 } else if (!strcmp(value
, "*")) {
1128 const char *interpolated
= NULL
;
1130 if (!git_config_pathname(&interpolated
, key
, value
) &&
1131 !fspathcmp(data
->path
, interpolated
? interpolated
: value
))
1134 free((char *)interpolated
);
1141 * Check if a repository is safe, by verifying the ownership of the
1142 * worktree (if any), the git directory, and the gitfile (if any).
1144 * Exemptions for known-safe repositories can be added via `safe.directory`
1145 * config settings; for non-bare repositories, their worktree needs to be
1146 * added, for bare ones their git directory.
1148 static int ensure_valid_ownership(const char *gitfile
,
1149 const char *worktree
, const char *gitdir
,
1150 struct strbuf
*report
)
1152 struct safe_directory_data data
= {
1153 .path
= worktree
? worktree
: gitdir
1156 if (!git_env_bool("GIT_TEST_ASSUME_DIFFERENT_OWNER", 0) &&
1157 (!gitfile
|| is_path_owned_by_current_user(gitfile
, report
)) &&
1158 (!worktree
|| is_path_owned_by_current_user(worktree
, report
)) &&
1159 (!gitdir
|| is_path_owned_by_current_user(gitdir
, report
)))
1163 * data.path is the "path" that identifies the repository and it is
1164 * constant regardless of what failed above. data.is_safe should be
1165 * initialized to false, and might be changed by the callback.
1167 git_protected_config(safe_directory_cb
, &data
);
1169 return data
.is_safe
;
1172 static int allowed_bare_repo_cb(const char *key
, const char *value
, void *d
)
1174 enum allowed_bare_repo
*allowed_bare_repo
= d
;
1176 if (strcasecmp(key
, "safe.bareRepository"))
1179 if (!strcmp(value
, "explicit")) {
1180 *allowed_bare_repo
= ALLOWED_BARE_REPO_EXPLICIT
;
1183 if (!strcmp(value
, "all")) {
1184 *allowed_bare_repo
= ALLOWED_BARE_REPO_ALL
;
1190 static enum allowed_bare_repo
get_allowed_bare_repo(void)
1192 enum allowed_bare_repo result
= ALLOWED_BARE_REPO_ALL
;
1193 git_protected_config(allowed_bare_repo_cb
, &result
);
1197 static const char *allowed_bare_repo_to_string(
1198 enum allowed_bare_repo allowed_bare_repo
)
1200 switch (allowed_bare_repo
) {
1201 case ALLOWED_BARE_REPO_EXPLICIT
:
1203 case ALLOWED_BARE_REPO_ALL
:
1206 BUG("invalid allowed_bare_repo %d",
1212 enum discovery_result
{
1217 /* these are errors */
1218 GIT_DIR_HIT_CEILING
= -1,
1219 GIT_DIR_HIT_MOUNT_POINT
= -2,
1220 GIT_DIR_INVALID_GITFILE
= -3,
1221 GIT_DIR_INVALID_OWNERSHIP
= -4,
1222 GIT_DIR_DISALLOWED_BARE
= -5,
1226 * We cannot decide in this function whether we are in the work tree or
1227 * not, since the config can only be read _after_ this function was called.
1229 * Also, we avoid changing any global state (such as the current working
1230 * directory) to allow early callers.
1232 * The directory where the search should start needs to be passed in via the
1233 * `dir` parameter; upon return, the `dir` buffer will contain the path of
1234 * the directory where the search ended, and `gitdir` will contain the path of
1235 * the discovered .git/ directory, if any. If `gitdir` is not absolute, it
1236 * is relative to `dir` (i.e. *not* necessarily the cwd).
1238 static enum discovery_result
setup_git_directory_gently_1(struct strbuf
*dir
,
1239 struct strbuf
*gitdir
,
1240 struct strbuf
*report
,
1243 const char *env_ceiling_dirs
= getenv(CEILING_DIRECTORIES_ENVIRONMENT
);
1244 struct string_list ceiling_dirs
= STRING_LIST_INIT_DUP
;
1245 const char *gitdirenv
;
1246 int ceil_offset
= -1, min_offset
= offset_1st_component(dir
->buf
);
1247 dev_t current_device
= 0;
1248 int one_filesystem
= 1;
1251 * If GIT_DIR is set explicitly, we're not going
1252 * to do any discovery, but we still do repository
1255 gitdirenv
= getenv(GIT_DIR_ENVIRONMENT
);
1257 strbuf_addstr(gitdir
, gitdirenv
);
1258 return GIT_DIR_EXPLICIT
;
1261 if (env_ceiling_dirs
) {
1262 int empty_entry_found
= 0;
1264 string_list_split(&ceiling_dirs
, env_ceiling_dirs
, PATH_SEP
, -1);
1265 filter_string_list(&ceiling_dirs
, 0,
1266 canonicalize_ceiling_entry
, &empty_entry_found
);
1267 ceil_offset
= longest_ancestor_length(dir
->buf
, &ceiling_dirs
);
1268 string_list_clear(&ceiling_dirs
, 0);
1271 if (ceil_offset
< 0)
1272 ceil_offset
= min_offset
- 2;
1274 if (min_offset
&& min_offset
== dir
->len
&&
1275 !is_dir_sep(dir
->buf
[min_offset
- 1])) {
1276 strbuf_addch(dir
, '/');
1281 * Test in the following order (relative to the dir):
1282 * - .git (file containing "gitdir: <path>")
1291 one_filesystem
= !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM", 0);
1293 current_device
= get_device_or_die(dir
->buf
, NULL
, 0);
1295 int offset
= dir
->len
, error_code
= 0;
1296 char *gitdir_path
= NULL
;
1297 char *gitfile
= NULL
;
1299 if (offset
> min_offset
)
1300 strbuf_addch(dir
, '/');
1301 strbuf_addstr(dir
, DEFAULT_GIT_DIR_ENVIRONMENT
);
1302 gitdirenv
= read_gitfile_gently(dir
->buf
, die_on_error
?
1303 NULL
: &error_code
);
1306 error_code
== READ_GITFILE_ERR_NOT_A_FILE
) {
1307 /* NEEDSWORK: fail if .git is not file nor dir */
1308 if (is_git_directory(dir
->buf
)) {
1309 gitdirenv
= DEFAULT_GIT_DIR_ENVIRONMENT
;
1310 gitdir_path
= xstrdup(dir
->buf
);
1312 } else if (error_code
!= READ_GITFILE_ERR_STAT_FAILED
)
1313 return GIT_DIR_INVALID_GITFILE
;
1315 gitfile
= xstrdup(dir
->buf
);
1317 * Earlier, we tentatively added DEFAULT_GIT_DIR_ENVIRONMENT
1318 * to check that directory for a repository.
1319 * Now trim that tentative addition away, because we want to
1320 * focus on the real directory we are in.
1322 strbuf_setlen(dir
, offset
);
1324 enum discovery_result ret
;
1325 const char *gitdir_candidate
=
1326 gitdir_path
? gitdir_path
: gitdirenv
;
1328 if (ensure_valid_ownership(gitfile
, dir
->buf
,
1329 gitdir_candidate
, report
)) {
1330 strbuf_addstr(gitdir
, gitdirenv
);
1331 ret
= GIT_DIR_DISCOVERED
;
1333 ret
= GIT_DIR_INVALID_OWNERSHIP
;
1336 * Earlier, during discovery, we might have allocated
1337 * string copies for gitdir_path or gitfile so make
1338 * sure we don't leak by freeing them now, before
1339 * leaving the loop and function.
1341 * Note: gitdirenv will be non-NULL whenever these are
1342 * allocated, therefore we need not take care of releasing
1343 * them outside of this conditional block.
1351 if (is_git_directory(dir
->buf
)) {
1352 if (get_allowed_bare_repo() == ALLOWED_BARE_REPO_EXPLICIT
)
1353 return GIT_DIR_DISALLOWED_BARE
;
1354 if (!ensure_valid_ownership(NULL
, NULL
, dir
->buf
, report
))
1355 return GIT_DIR_INVALID_OWNERSHIP
;
1356 strbuf_addstr(gitdir
, ".");
1357 return GIT_DIR_BARE
;
1360 if (offset
<= min_offset
)
1361 return GIT_DIR_HIT_CEILING
;
1363 while (--offset
> ceil_offset
&& !is_dir_sep(dir
->buf
[offset
]))
1365 if (offset
<= ceil_offset
)
1366 return GIT_DIR_HIT_CEILING
;
1368 strbuf_setlen(dir
, offset
> min_offset
? offset
: min_offset
);
1369 if (one_filesystem
&&
1370 current_device
!= get_device_or_die(dir
->buf
, NULL
, offset
))
1371 return GIT_DIR_HIT_MOUNT_POINT
;
1375 int discover_git_directory(struct strbuf
*commondir
,
1376 struct strbuf
*gitdir
)
1378 struct strbuf dir
= STRBUF_INIT
, err
= STRBUF_INIT
;
1379 size_t gitdir_offset
= gitdir
->len
, cwd_len
;
1380 size_t commondir_offset
= commondir
->len
;
1381 struct repository_format candidate
= REPOSITORY_FORMAT_INIT
;
1383 if (strbuf_getcwd(&dir
))
1387 if (setup_git_directory_gently_1(&dir
, gitdir
, NULL
, 0) <= 0) {
1388 strbuf_release(&dir
);
1393 * The returned gitdir is relative to dir, and if dir does not reflect
1394 * the current working directory, we simply make the gitdir absolute.
1396 if (dir
.len
< cwd_len
&& !is_absolute_path(gitdir
->buf
+ gitdir_offset
)) {
1397 /* Avoid a trailing "/." */
1398 if (!strcmp(".", gitdir
->buf
+ gitdir_offset
))
1399 strbuf_setlen(gitdir
, gitdir_offset
);
1401 strbuf_addch(&dir
, '/');
1402 strbuf_insert(gitdir
, gitdir_offset
, dir
.buf
, dir
.len
);
1405 get_common_dir(commondir
, gitdir
->buf
+ gitdir_offset
);
1408 strbuf_addf(&dir
, "%s/config", commondir
->buf
+ commondir_offset
);
1409 read_repository_format(&candidate
, dir
.buf
);
1410 strbuf_release(&dir
);
1412 if (verify_repository_format(&candidate
, &err
) < 0) {
1413 warning("ignoring git dir '%s': %s",
1414 gitdir
->buf
+ gitdir_offset
, err
.buf
);
1415 strbuf_release(&err
);
1416 strbuf_setlen(commondir
, commondir_offset
);
1417 strbuf_setlen(gitdir
, gitdir_offset
);
1418 clear_repository_format(&candidate
);
1422 /* take ownership of candidate.partial_clone */
1423 the_repository
->repository_format_partial_clone
=
1424 candidate
.partial_clone
;
1425 candidate
.partial_clone
= NULL
;
1427 clear_repository_format(&candidate
);
1431 const char *setup_git_directory_gently(int *nongit_ok
)
1433 static struct strbuf cwd
= STRBUF_INIT
;
1434 struct strbuf dir
= STRBUF_INIT
, gitdir
= STRBUF_INIT
, report
= STRBUF_INIT
;
1435 const char *prefix
= NULL
;
1436 struct repository_format repo_fmt
= REPOSITORY_FORMAT_INIT
;
1439 * We may have read an incomplete configuration before
1440 * setting-up the git directory. If so, clear the cache so
1441 * that the next queries to the configuration reload complete
1442 * configuration (including the per-repo config file that we
1443 * ignored previously).
1448 * Let's assume that we are in a git repository.
1449 * If it turns out later that we are somewhere else, the value will be
1450 * updated accordingly.
1455 if (strbuf_getcwd(&cwd
))
1456 die_errno(_("Unable to read current working directory"));
1457 strbuf_addbuf(&dir
, &cwd
);
1459 switch (setup_git_directory_gently_1(&dir
, &gitdir
, &report
, 1)) {
1460 case GIT_DIR_EXPLICIT
:
1461 prefix
= setup_explicit_git_dir(gitdir
.buf
, &cwd
, &repo_fmt
, nongit_ok
);
1463 case GIT_DIR_DISCOVERED
:
1464 if (dir
.len
< cwd
.len
&& chdir(dir
.buf
))
1465 die(_("cannot change to '%s'"), dir
.buf
);
1466 prefix
= setup_discovered_git_dir(gitdir
.buf
, &cwd
, dir
.len
,
1467 &repo_fmt
, nongit_ok
);
1470 if (dir
.len
< cwd
.len
&& chdir(dir
.buf
))
1471 die(_("cannot change to '%s'"), dir
.buf
);
1472 prefix
= setup_bare_git_dir(&cwd
, dir
.len
, &repo_fmt
, nongit_ok
);
1474 case GIT_DIR_HIT_CEILING
:
1476 die(_("not a git repository (or any of the parent directories): %s"),
1477 DEFAULT_GIT_DIR_ENVIRONMENT
);
1480 case GIT_DIR_HIT_MOUNT_POINT
:
1482 die(_("not a git repository (or any parent up to mount point %s)\n"
1483 "Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set)."),
1487 case GIT_DIR_INVALID_OWNERSHIP
:
1489 struct strbuf quoted
= STRBUF_INIT
;
1491 strbuf_complete(&report
, '\n');
1492 sq_quote_buf_pretty("ed
, dir
.buf
);
1493 die(_("detected dubious ownership in repository at '%s'\n"
1495 "To add an exception for this directory, call:\n"
1497 "\tgit config --global --add safe.directory %s"),
1498 dir
.buf
, report
.buf
, quoted
.buf
);
1502 case GIT_DIR_DISALLOWED_BARE
:
1504 die(_("cannot use bare repository '%s' (safe.bareRepository is '%s')"),
1506 allowed_bare_repo_to_string(get_allowed_bare_repo()));
1512 * As a safeguard against setup_git_directory_gently_1 returning
1513 * this value, fallthrough to BUG. Otherwise it is possible to
1514 * set startup_info->have_repository to 1 when we did nothing to
1515 * find a repository.
1518 BUG("unhandled setup_git_directory_gently_1() result");
1522 * At this point, nongit_ok is stable. If it is non-NULL and points
1523 * to a non-zero value, then this means that we haven't found a
1524 * repository and that the caller expects startup_info to reflect
1527 * Regardless of the state of nongit_ok, startup_info->prefix and
1528 * the GIT_PREFIX environment variable must always match. For details
1529 * see Documentation/config/alias.txt.
1531 if (nongit_ok
&& *nongit_ok
)
1532 startup_info
->have_repository
= 0;
1534 startup_info
->have_repository
= 1;
1537 * Not all paths through the setup code will call 'set_git_dir()' (which
1538 * directly sets up the environment) so in order to guarantee that the
1539 * environment is in a consistent state after setup, explicitly setup
1540 * the environment if we have a repository.
1542 * NEEDSWORK: currently we allow bogus GIT_DIR values to be set in some
1543 * code paths so we also need to explicitly setup the environment if
1544 * the user has set GIT_DIR. It may be beneficial to disallow bogus
1545 * GIT_DIR values at some point in the future.
1547 if (/* GIT_DIR_EXPLICIT, GIT_DIR_DISCOVERED, GIT_DIR_BARE */
1548 startup_info
->have_repository
||
1549 /* GIT_DIR_EXPLICIT */
1550 getenv(GIT_DIR_ENVIRONMENT
)) {
1551 if (!the_repository
->gitdir
) {
1552 const char *gitdir
= getenv(GIT_DIR_ENVIRONMENT
);
1554 gitdir
= DEFAULT_GIT_DIR_ENVIRONMENT
;
1555 setup_git_env(gitdir
);
1557 if (startup_info
->have_repository
) {
1558 repo_set_hash_algo(the_repository
, repo_fmt
.hash_algo
);
1559 /* take ownership of repo_fmt.partial_clone */
1560 the_repository
->repository_format_partial_clone
=
1561 repo_fmt
.partial_clone
;
1562 repo_fmt
.partial_clone
= NULL
;
1566 * Since precompose_string_if_needed() needs to look at
1567 * the core.precomposeunicode configuration, this
1568 * has to happen after the above block that finds
1569 * out where the repository is, i.e. a preparation
1570 * for calling git_config_get_bool().
1573 prefix
= precompose_string_if_needed(prefix
);
1574 startup_info
->prefix
= prefix
;
1575 setenv(GIT_PREFIX_ENVIRONMENT
, prefix
, 1);
1577 startup_info
->prefix
= NULL
;
1578 setenv(GIT_PREFIX_ENVIRONMENT
, "", 1);
1581 setup_original_cwd();
1583 strbuf_release(&dir
);
1584 strbuf_release(&gitdir
);
1585 strbuf_release(&report
);
1586 clear_repository_format(&repo_fmt
);
1591 int git_config_perm(const char *var
, const char *value
)
1599 if (!strcmp(value
, "umask"))
1601 if (!strcmp(value
, "group"))
1603 if (!strcmp(value
, "all") ||
1604 !strcmp(value
, "world") ||
1605 !strcmp(value
, "everybody"))
1606 return PERM_EVERYBODY
;
1608 /* Parse octal numbers */
1609 i
= strtol(value
, &endptr
, 8);
1611 /* If not an octal number, maybe true/false? */
1613 return git_config_bool(var
, value
) ? PERM_GROUP
: PERM_UMASK
;
1616 * Treat values 0, 1 and 2 as compatibility cases, otherwise it is
1617 * a chmod value to restrict to.
1620 case PERM_UMASK
: /* 0 */
1622 case OLD_PERM_GROUP
: /* 1 */
1624 case OLD_PERM_EVERYBODY
: /* 2 */
1625 return PERM_EVERYBODY
;
1628 /* A filemode value was given: 0xxx */
1630 if ((i
& 0600) != 0600)
1631 die(_("problem with core.sharedRepository filemode value "
1632 "(0%.3o).\nThe owner of files must always have "
1633 "read and write permissions."), i
);
1636 * Mask filemode value. Others can not get write permission.
1637 * x flags for directories are handled separately.
1642 void check_repository_format(struct repository_format
*fmt
)
1644 struct repository_format repo_fmt
= REPOSITORY_FORMAT_INIT
;
1647 check_repository_format_gently(get_git_dir(), fmt
, NULL
);
1648 startup_info
->have_repository
= 1;
1649 repo_set_hash_algo(the_repository
, fmt
->hash_algo
);
1650 the_repository
->repository_format_partial_clone
=
1651 xstrdup_or_null(fmt
->partial_clone
);
1652 clear_repository_format(&repo_fmt
);
1656 * Returns the "prefix", a path to the current working directory
1657 * relative to the work tree root, or NULL, if the current working
1658 * directory is not a strict subdirectory of the work tree root. The
1659 * prefix always ends with a '/' character.
1661 const char *setup_git_directory(void)
1663 return setup_git_directory_gently(NULL
);
1666 const char *resolve_gitdir_gently(const char *suspect
, int *return_error_code
)
1668 if (is_git_directory(suspect
))
1670 return read_gitfile_gently(suspect
, return_error_code
);
1673 /* if any standard file descriptor is missing open it to /dev/null */
1674 void sanitize_stdfds(void)
1676 int fd
= xopen("/dev/null", O_RDWR
);
1685 #ifdef NO_POSIX_GOODIES
1693 die_errno(_("fork failed"));
1698 die_errno(_("setsid failed"));