2 #include "repository.h"
5 #include "string-list.h"
6 #include "chdir-notify.h"
7 #include "promisor-remote.h"
10 static int inside_git_dir
= -1;
11 static int inside_work_tree
= -1;
12 static int work_tree_config_is_bogus
;
13 enum allowed_bare_repo
{
14 ALLOWED_BARE_REPO_EXPLICIT
= 0,
15 ALLOWED_BARE_REPO_ALL
,
18 static struct startup_info the_startup_info
;
19 struct startup_info
*startup_info
= &the_startup_info
;
20 const char *tmp_original_cwd
;
23 * The input parameter must contain an absolute path, and it must already be
26 * Find the part of an absolute path that lies inside the work tree by
27 * dereferencing symlinks outside the work tree, for example:
28 * /dir1/repo/dir2/file (work tree is /dir1/repo) -> dir2/file
29 * /dir/file (work tree is /) -> dir/file
30 * /dir/symlink1/symlink2 (symlink1 points to work tree) -> symlink2
31 * /dir/repolink/file (repolink points to /dir/repo) -> file
32 * /dir/repo (exactly equal to work tree) -> (empty string)
34 static int abspath_part_inside_repo(char *path
)
40 const char *work_tree
= get_git_work_tree();
41 struct strbuf realpath
= STRBUF_INIT
;
45 wtlen
= strlen(work_tree
);
47 off
= offset_1st_component(path
);
49 /* check if work tree is already the prefix */
50 if (wtlen
<= len
&& !fspathncmp(path
, work_tree
, wtlen
)) {
51 if (path
[wtlen
] == '/') {
52 memmove(path
, path
+ wtlen
+ 1, len
- wtlen
);
54 } else if (path
[wtlen
- 1] == '/' || path
[wtlen
] == '\0') {
55 /* work tree is the root, or the whole path */
56 memmove(path
, path
+ wtlen
, len
- wtlen
+ 1);
59 /* work tree might match beginning of a symlink to work tree */
65 /* check each '/'-terminated level */
70 strbuf_realpath(&realpath
, path0
, 1);
71 if (fspathcmp(realpath
.buf
, work_tree
) == 0) {
72 memmove(path0
, path
+ 1, len
- (path
- path0
));
73 strbuf_release(&realpath
);
80 /* check whole path */
81 strbuf_realpath(&realpath
, path0
, 1);
82 if (fspathcmp(realpath
.buf
, work_tree
) == 0) {
84 strbuf_release(&realpath
);
88 strbuf_release(&realpath
);
93 * Normalize "path", prepending the "prefix" for relative paths. If
94 * remaining_prefix is not NULL, return the actual prefix still
95 * remains in the path. For example, prefix = sub1/sub2/ and path is
97 * foo -> sub1/sub2/foo (full prefix)
98 * ../foo -> sub1/foo (remaining prefix is sub1/)
99 * ../../bar -> bar (no remaining prefix)
100 * ../../sub1/sub2/foo -> sub1/sub2/foo (but no remaining prefix)
101 * `pwd`/../bar -> sub1/bar (no remaining prefix)
103 char *prefix_path_gently(const char *prefix
, int len
,
104 int *remaining_prefix
, const char *path
)
106 const char *orig
= path
;
108 if (is_absolute_path(orig
)) {
109 sanitized
= xmallocz(strlen(path
));
110 if (remaining_prefix
)
111 *remaining_prefix
= 0;
112 if (normalize_path_copy_len(sanitized
, path
, remaining_prefix
)) {
116 if (abspath_part_inside_repo(sanitized
)) {
121 sanitized
= xstrfmt("%.*s%s", len
, len
? prefix
: "", path
);
122 if (remaining_prefix
)
123 *remaining_prefix
= len
;
124 if (normalize_path_copy_len(sanitized
, sanitized
, remaining_prefix
)) {
132 char *prefix_path(const char *prefix
, int len
, const char *path
)
134 char *r
= prefix_path_gently(prefix
, len
, NULL
, path
);
136 const char *hint_path
= get_git_work_tree();
138 hint_path
= get_git_dir();
139 die(_("'%s' is outside repository at '%s'"), path
,
140 absolute_path(hint_path
));
145 int path_inside_repo(const char *prefix
, const char *path
)
147 int len
= prefix
? strlen(prefix
) : 0;
148 char *r
= prefix_path_gently(prefix
, len
, NULL
, path
);
156 int check_filename(const char *prefix
, const char *arg
)
158 char *to_free
= NULL
;
161 if (skip_prefix(arg
, ":/", &arg
)) {
162 if (!*arg
) /* ":/" is root dir, always exists */
165 } else if (skip_prefix(arg
, ":!", &arg
) ||
166 skip_prefix(arg
, ":^", &arg
)) {
167 if (!*arg
) /* excluding everything is silly, but allowed */
172 arg
= to_free
= prefix_filename(prefix
, arg
);
174 if (!lstat(arg
, &st
)) {
176 return 1; /* file exists */
178 if (is_missing_file_error(errno
)) {
180 return 0; /* file does not exist */
182 die_errno(_("failed to stat '%s'"), arg
);
185 static void NORETURN
die_verify_filename(struct repository
*r
,
188 int diagnose_misspelt_rev
)
190 if (!diagnose_misspelt_rev
)
191 die(_("%s: no such path in the working tree.\n"
192 "Use 'git <command> -- <path>...' to specify paths that do not exist locally."),
195 * Saying "'(icase)foo' does not exist in the index" when the
196 * user gave us ":(icase)foo" is just stupid. A magic pathspec
197 * begins with a colon and is followed by a non-alnum; do not
198 * let maybe_die_on_misspelt_object_name() even trigger.
200 if (!(arg
[0] == ':' && !isalnum(arg
[1])))
201 maybe_die_on_misspelt_object_name(r
, arg
, prefix
);
203 /* ... or fall back the most general message. */
204 die(_("ambiguous argument '%s': unknown revision or path not in the working tree.\n"
205 "Use '--' to separate paths from revisions, like this:\n"
206 "'git <command> [<revision>...] -- [<file>...]'"), arg
);
211 * Check for arguments that don't resolve as actual files,
212 * but which look sufficiently like pathspecs that we'll consider
213 * them such for the purposes of rev/pathspec DWIM parsing.
215 static int looks_like_pathspec(const char *arg
)
221 * Wildcard characters imply the user is looking to match pathspecs
222 * that aren't in the filesystem. Note that this doesn't include
223 * backslash even though it's a glob special; by itself it doesn't
224 * cause any increase in the match. Likewise ignore backslash-escaped
225 * wildcard characters.
227 for (p
= arg
; *p
; p
++) {
230 } else if (is_glob_special(*p
)) {
238 /* long-form pathspec magic */
239 if (starts_with(arg
, ":("))
246 * Verify a filename that we got as an argument for a pathspec
247 * entry. Note that a filename that begins with "-" never verifies
248 * as true, because even if such a filename were to exist, we want
249 * it to be preceded by the "--" marker (or we want the user to
250 * use a format like "./-filename")
252 * The "diagnose_misspelt_rev" is used to provide a user-friendly
253 * diagnosis when dying upon finding that "name" is not a pathname.
254 * If set to 1, the diagnosis will try to diagnose "name" as an
255 * invalid object name (e.g. HEAD:foo). If set to 0, the diagnosis
256 * will only complain about an inexisting file.
258 * This function is typically called to check that a "file or rev"
259 * argument is unambiguous. In this case, the caller will want
260 * diagnose_misspelt_rev == 1 when verifying the first non-rev
261 * argument (which could have been a revision), and
262 * diagnose_misspelt_rev == 0 for the next ones (because we already
263 * saw a filename, there's not ambiguity anymore).
265 void verify_filename(const char *prefix
,
267 int diagnose_misspelt_rev
)
270 die(_("option '%s' must come before non-option arguments"), arg
);
271 if (looks_like_pathspec(arg
) || check_filename(prefix
, arg
))
273 die_verify_filename(the_repository
, prefix
, arg
, diagnose_misspelt_rev
);
277 * Opposite of the above: the command line did not have -- marker
278 * and we parsed the arg as a refname. It should not be interpretable
281 void verify_non_filename(const char *prefix
, const char *arg
)
283 if (!is_inside_work_tree() || is_inside_git_dir())
287 if (!check_filename(prefix
, arg
))
289 die(_("ambiguous argument '%s': both revision and filename\n"
290 "Use '--' to separate paths from revisions, like this:\n"
291 "'git <command> [<revision>...] -- [<file>...]'"), arg
);
294 int get_common_dir(struct strbuf
*sb
, const char *gitdir
)
296 const char *git_env_common_dir
= getenv(GIT_COMMON_DIR_ENVIRONMENT
);
297 if (git_env_common_dir
) {
298 strbuf_addstr(sb
, git_env_common_dir
);
301 return get_common_dir_noenv(sb
, gitdir
);
305 int get_common_dir_noenv(struct strbuf
*sb
, const char *gitdir
)
307 struct strbuf data
= STRBUF_INIT
;
308 struct strbuf path
= STRBUF_INIT
;
311 strbuf_addf(&path
, "%s/commondir", gitdir
);
312 if (file_exists(path
.buf
)) {
313 if (strbuf_read_file(&data
, path
.buf
, 0) <= 0)
314 die_errno(_("failed to read %s"), path
.buf
);
315 while (data
.len
&& (data
.buf
[data
.len
- 1] == '\n' ||
316 data
.buf
[data
.len
- 1] == '\r'))
318 data
.buf
[data
.len
] = '\0';
320 if (!is_absolute_path(data
.buf
))
321 strbuf_addf(&path
, "%s/", gitdir
);
322 strbuf_addbuf(&path
, &data
);
323 strbuf_add_real_path(sb
, path
.buf
);
326 strbuf_addstr(sb
, gitdir
);
329 strbuf_release(&data
);
330 strbuf_release(&path
);
335 * Test if it looks like we're at a git directory.
338 * - either an objects/ directory _or_ the proper
339 * GIT_OBJECT_DIRECTORY environment variable
340 * - a refs/ directory
341 * - either a HEAD symlink or a HEAD file that is formatted as
342 * a proper "ref:", or a regular file HEAD that has a properly
343 * formatted sha1 object name.
345 int is_git_directory(const char *suspect
)
347 struct strbuf path
= STRBUF_INIT
;
351 /* Check worktree-related signatures */
352 strbuf_addstr(&path
, suspect
);
353 strbuf_complete(&path
, '/');
354 strbuf_addstr(&path
, "HEAD");
355 if (validate_headref(path
.buf
))
359 get_common_dir(&path
, suspect
);
362 /* Check non-worktree-related signatures */
363 if (getenv(DB_ENVIRONMENT
)) {
364 if (access(getenv(DB_ENVIRONMENT
), X_OK
))
368 strbuf_setlen(&path
, len
);
369 strbuf_addstr(&path
, "/objects");
370 if (access(path
.buf
, X_OK
))
374 strbuf_setlen(&path
, len
);
375 strbuf_addstr(&path
, "/refs");
376 if (access(path
.buf
, X_OK
))
381 strbuf_release(&path
);
385 int is_nonbare_repository_dir(struct strbuf
*path
)
389 size_t orig_path_len
= path
->len
;
390 assert(orig_path_len
!= 0);
391 strbuf_complete(path
, '/');
392 strbuf_addstr(path
, ".git");
393 if (read_gitfile_gently(path
->buf
, &gitfile_error
) || is_git_directory(path
->buf
))
395 if (gitfile_error
== READ_GITFILE_ERR_OPEN_FAILED
||
396 gitfile_error
== READ_GITFILE_ERR_READ_FAILED
)
398 strbuf_setlen(path
, orig_path_len
);
402 int is_inside_git_dir(void)
404 if (inside_git_dir
< 0)
405 inside_git_dir
= is_inside_dir(get_git_dir());
406 return inside_git_dir
;
409 int is_inside_work_tree(void)
411 if (inside_work_tree
< 0)
412 inside_work_tree
= is_inside_dir(get_git_work_tree());
413 return inside_work_tree
;
416 void setup_work_tree(void)
418 const char *work_tree
;
419 static int initialized
= 0;
424 if (work_tree_config_is_bogus
)
425 die(_("unable to set up work tree using invalid config"));
427 work_tree
= get_git_work_tree();
428 if (!work_tree
|| chdir_notify(work_tree
))
429 die(_("this operation must be run in a work tree"));
432 * Make sure subsequent git processes find correct worktree
433 * if $GIT_WORK_TREE is set relative
435 if (getenv(GIT_WORK_TREE_ENVIRONMENT
))
436 setenv(GIT_WORK_TREE_ENVIRONMENT
, ".", 1);
441 static void setup_original_cwd(void)
443 struct strbuf tmp
= STRBUF_INIT
;
444 const char *worktree
= NULL
;
447 if (!tmp_original_cwd
)
451 * startup_info->original_cwd points to the current working
452 * directory we inherited from our parent process, which is a
453 * directory we want to avoid removing.
455 * For convience, we would like to have the path relative to the
456 * worktree instead of an absolute path.
458 * Yes, startup_info->original_cwd is usually the same as 'prefix',
459 * but differs in two ways:
460 * - prefix has a trailing '/'
461 * - if the user passes '-C' to git, that modifies the prefix but
462 * not startup_info->original_cwd.
465 /* Normalize the directory */
466 if (!strbuf_realpath(&tmp
, tmp_original_cwd
, 0)) {
467 trace2_data_string("setup", the_repository
,
468 "realpath-path", tmp_original_cwd
);
469 trace2_data_string("setup", the_repository
,
470 "realpath-failure", strerror(errno
));
471 free((char*)tmp_original_cwd
);
472 tmp_original_cwd
= NULL
;
476 free((char*)tmp_original_cwd
);
477 tmp_original_cwd
= NULL
;
478 startup_info
->original_cwd
= strbuf_detach(&tmp
, NULL
);
481 * Get our worktree; we only protect the current working directory
482 * if it's in the worktree.
484 worktree
= get_git_work_tree();
486 goto no_prevention_needed
;
488 offset
= dir_inside_of(startup_info
->original_cwd
, worktree
);
491 * If startup_info->original_cwd == worktree, that is already
492 * protected and we don't need original_cwd as a secondary
493 * protection measure.
495 if (!*(startup_info
->original_cwd
+ offset
))
496 goto no_prevention_needed
;
499 * original_cwd was inside worktree; precompose it just as
500 * we do prefix so that built up paths will match
502 startup_info
->original_cwd
= \
503 precompose_string_if_needed(startup_info
->original_cwd
508 no_prevention_needed
:
509 free((char*)startup_info
->original_cwd
);
510 startup_info
->original_cwd
= NULL
;
513 static int read_worktree_config(const char *var
, const char *value
, void *vdata
)
515 struct repository_format
*data
= vdata
;
517 if (strcmp(var
, "core.bare") == 0) {
518 data
->is_bare
= git_config_bool(var
, value
);
519 } else if (strcmp(var
, "core.worktree") == 0) {
521 return config_error_nonbool(var
);
522 free(data
->work_tree
);
523 data
->work_tree
= xstrdup(value
);
528 enum extension_result
{
529 EXTENSION_ERROR
= -1, /* compatible with error(), etc */
530 EXTENSION_UNKNOWN
= 0,
535 * Do not add new extensions to this function. It handles extensions which are
536 * respected even in v0-format repositories for historical compatibility.
538 static enum extension_result
handle_extension_v0(const char *var
,
541 struct repository_format
*data
)
543 if (!strcmp(ext
, "noop")) {
545 } else if (!strcmp(ext
, "preciousobjects")) {
546 data
->precious_objects
= git_config_bool(var
, value
);
548 } else if (!strcmp(ext
, "partialclone")) {
549 data
->partial_clone
= xstrdup(value
);
551 } else if (!strcmp(ext
, "worktreeconfig")) {
552 data
->worktree_config
= git_config_bool(var
, value
);
556 return EXTENSION_UNKNOWN
;
560 * Record any new extensions in this function.
562 static enum extension_result
handle_extension(const char *var
,
565 struct repository_format
*data
)
567 if (!strcmp(ext
, "noop-v1")) {
569 } else if (!strcmp(ext
, "objectformat")) {
573 return config_error_nonbool(var
);
574 format
= hash_algo_by_name(value
);
575 if (format
== GIT_HASH_UNKNOWN
)
576 return error(_("invalid value for '%s': '%s'"),
577 "extensions.objectformat", value
);
578 data
->hash_algo
= format
;
581 return EXTENSION_UNKNOWN
;
584 static int check_repo_format(const char *var
, const char *value
, void *vdata
)
586 struct repository_format
*data
= vdata
;
589 if (strcmp(var
, "core.repositoryformatversion") == 0)
590 data
->version
= git_config_int(var
, value
);
591 else if (skip_prefix(var
, "extensions.", &ext
)) {
592 switch (handle_extension_v0(var
, value
, ext
, data
)) {
593 case EXTENSION_ERROR
:
597 case EXTENSION_UNKNOWN
:
601 switch (handle_extension(var
, value
, ext
, data
)) {
602 case EXTENSION_ERROR
:
605 string_list_append(&data
->v1_only_extensions
, ext
);
607 case EXTENSION_UNKNOWN
:
608 string_list_append(&data
->unknown_extensions
, ext
);
613 return read_worktree_config(var
, value
, vdata
);
616 static int check_repository_format_gently(const char *gitdir
, struct repository_format
*candidate
, int *nongit_ok
)
618 struct strbuf sb
= STRBUF_INIT
;
619 struct strbuf err
= STRBUF_INIT
;
622 has_common
= get_common_dir(&sb
, gitdir
);
623 strbuf_addstr(&sb
, "/config");
624 read_repository_format(candidate
, sb
.buf
);
628 * For historical use of check_repository_format() in git-init,
629 * we treat a missing config as a silent "ok", even when nongit_ok
632 if (candidate
->version
< 0)
635 if (verify_repository_format(candidate
, &err
) < 0) {
637 warning("%s", err
.buf
);
638 strbuf_release(&err
);
645 repository_format_precious_objects
= candidate
->precious_objects
;
646 repository_format_worktree_config
= candidate
->worktree_config
;
647 string_list_clear(&candidate
->unknown_extensions
, 0);
648 string_list_clear(&candidate
->v1_only_extensions
, 0);
650 if (repository_format_worktree_config
) {
652 * pick up core.bare and core.worktree from per-worktree
655 strbuf_addf(&sb
, "%s/config.worktree", gitdir
);
656 git_config_from_file(read_worktree_config
, sb
.buf
, candidate
);
662 if (candidate
->is_bare
!= -1) {
663 is_bare_repository_cfg
= candidate
->is_bare
;
664 if (is_bare_repository_cfg
== 1)
665 inside_work_tree
= -1;
667 if (candidate
->work_tree
) {
668 free(git_work_tree_cfg
);
669 git_work_tree_cfg
= xstrdup(candidate
->work_tree
);
670 inside_work_tree
= -1;
677 int upgrade_repository_format(int target_version
)
679 struct strbuf sb
= STRBUF_INIT
;
680 struct strbuf err
= STRBUF_INIT
;
681 struct strbuf repo_version
= STRBUF_INIT
;
682 struct repository_format repo_fmt
= REPOSITORY_FORMAT_INIT
;
684 strbuf_git_common_path(&sb
, the_repository
, "config");
685 read_repository_format(&repo_fmt
, sb
.buf
);
688 if (repo_fmt
.version
>= target_version
)
691 if (verify_repository_format(&repo_fmt
, &err
) < 0) {
692 error("cannot upgrade repository format from %d to %d: %s",
693 repo_fmt
.version
, target_version
, err
.buf
);
694 strbuf_release(&err
);
697 if (!repo_fmt
.version
&& repo_fmt
.unknown_extensions
.nr
)
698 return error("cannot upgrade repository format: "
699 "unknown extension %s",
700 repo_fmt
.unknown_extensions
.items
[0].string
);
702 strbuf_addf(&repo_version
, "%d", target_version
);
703 git_config_set("core.repositoryformatversion", repo_version
.buf
);
704 strbuf_release(&repo_version
);
708 static void init_repository_format(struct repository_format
*format
)
710 const struct repository_format fresh
= REPOSITORY_FORMAT_INIT
;
712 memcpy(format
, &fresh
, sizeof(fresh
));
715 int read_repository_format(struct repository_format
*format
, const char *path
)
717 clear_repository_format(format
);
718 git_config_from_file(check_repo_format
, path
, format
);
719 if (format
->version
== -1)
720 clear_repository_format(format
);
721 return format
->version
;
724 void clear_repository_format(struct repository_format
*format
)
726 string_list_clear(&format
->unknown_extensions
, 0);
727 string_list_clear(&format
->v1_only_extensions
, 0);
728 free(format
->work_tree
);
729 free(format
->partial_clone
);
730 init_repository_format(format
);
733 int verify_repository_format(const struct repository_format
*format
,
736 if (GIT_REPO_VERSION_READ
< format
->version
) {
737 strbuf_addf(err
, _("Expected git repo version <= %d, found %d"),
738 GIT_REPO_VERSION_READ
, format
->version
);
742 if (format
->version
>= 1 && format
->unknown_extensions
.nr
) {
745 strbuf_addstr(err
, Q_("unknown repository extension found:",
746 "unknown repository extensions found:",
747 format
->unknown_extensions
.nr
));
749 for (i
= 0; i
< format
->unknown_extensions
.nr
; i
++)
750 strbuf_addf(err
, "\n\t%s",
751 format
->unknown_extensions
.items
[i
].string
);
755 if (format
->version
== 0 && format
->v1_only_extensions
.nr
) {
759 Q_("repo version is 0, but v1-only extension found:",
760 "repo version is 0, but v1-only extensions found:",
761 format
->v1_only_extensions
.nr
));
763 for (i
= 0; i
< format
->v1_only_extensions
.nr
; i
++)
764 strbuf_addf(err
, "\n\t%s",
765 format
->v1_only_extensions
.items
[i
].string
);
772 void read_gitfile_error_die(int error_code
, const char *path
, const char *dir
)
774 switch (error_code
) {
775 case READ_GITFILE_ERR_STAT_FAILED
:
776 case READ_GITFILE_ERR_NOT_A_FILE
:
777 /* non-fatal; follow return path */
779 case READ_GITFILE_ERR_OPEN_FAILED
:
780 die_errno(_("error opening '%s'"), path
);
781 case READ_GITFILE_ERR_TOO_LARGE
:
782 die(_("too large to be a .git file: '%s'"), path
);
783 case READ_GITFILE_ERR_READ_FAILED
:
784 die(_("error reading %s"), path
);
785 case READ_GITFILE_ERR_INVALID_FORMAT
:
786 die(_("invalid gitfile format: %s"), path
);
787 case READ_GITFILE_ERR_NO_PATH
:
788 die(_("no path in gitfile: %s"), path
);
789 case READ_GITFILE_ERR_NOT_A_REPO
:
790 die(_("not a git repository: %s"), dir
);
792 BUG("unknown error code");
797 * Try to read the location of the git directory from the .git file,
798 * return path to git directory if found. The return value comes from
801 * On failure, if return_error_code is not NULL, return_error_code
802 * will be set to an error code and NULL will be returned. If
803 * return_error_code is NULL the function will die instead (for most
806 const char *read_gitfile_gently(const char *path
, int *return_error_code
)
808 const int max_file_size
= 1 << 20; /* 1MB */
816 static struct strbuf realpath
= STRBUF_INIT
;
818 if (stat(path
, &st
)) {
819 /* NEEDSWORK: discern between ENOENT vs other errors */
820 error_code
= READ_GITFILE_ERR_STAT_FAILED
;
823 if (!S_ISREG(st
.st_mode
)) {
824 error_code
= READ_GITFILE_ERR_NOT_A_FILE
;
827 if (st
.st_size
> max_file_size
) {
828 error_code
= READ_GITFILE_ERR_TOO_LARGE
;
831 fd
= open(path
, O_RDONLY
);
833 error_code
= READ_GITFILE_ERR_OPEN_FAILED
;
836 buf
= xmallocz(st
.st_size
);
837 len
= read_in_full(fd
, buf
, st
.st_size
);
839 if (len
!= st
.st_size
) {
840 error_code
= READ_GITFILE_ERR_READ_FAILED
;
843 if (!starts_with(buf
, "gitdir: ")) {
844 error_code
= READ_GITFILE_ERR_INVALID_FORMAT
;
847 while (buf
[len
- 1] == '\n' || buf
[len
- 1] == '\r')
850 error_code
= READ_GITFILE_ERR_NO_PATH
;
856 if (!is_absolute_path(dir
) && (slash
= strrchr(path
, '/'))) {
857 size_t pathlen
= slash
+1 - path
;
858 dir
= xstrfmt("%.*s%.*s", (int)pathlen
, path
,
859 (int)(len
- 8), buf
+ 8);
863 if (!is_git_directory(dir
)) {
864 error_code
= READ_GITFILE_ERR_NOT_A_REPO
;
868 strbuf_realpath(&realpath
, dir
, 1);
872 if (return_error_code
)
873 *return_error_code
= error_code
;
875 read_gitfile_error_die(error_code
, path
, dir
);
878 return error_code
? NULL
: path
;
881 static const char *setup_explicit_git_dir(const char *gitdirenv
,
883 struct repository_format
*repo_fmt
,
886 const char *work_tree_env
= getenv(GIT_WORK_TREE_ENVIRONMENT
);
887 const char *worktree
;
891 if (PATH_MAX
- 40 < strlen(gitdirenv
))
892 die(_("'$%s' too big"), GIT_DIR_ENVIRONMENT
);
894 gitfile
= (char*)read_gitfile(gitdirenv
);
896 gitfile
= xstrdup(gitfile
);
900 if (!is_git_directory(gitdirenv
)) {
906 die(_("not a git repository: '%s'"), gitdirenv
);
909 if (check_repository_format_gently(gitdirenv
, repo_fmt
, nongit_ok
)) {
914 /* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */
916 set_git_work_tree(work_tree_env
);
917 else if (is_bare_repository_cfg
> 0) {
918 if (git_work_tree_cfg
) {
920 warning("core.bare and core.worktree do not make sense");
921 work_tree_config_is_bogus
= 1;
925 set_git_dir(gitdirenv
, 0);
929 else if (git_work_tree_cfg
) { /* #6, #14 */
930 if (is_absolute_path(git_work_tree_cfg
))
931 set_git_work_tree(git_work_tree_cfg
);
934 if (chdir(gitdirenv
))
935 die_errno(_("cannot chdir to '%s'"), gitdirenv
);
936 if (chdir(git_work_tree_cfg
))
937 die_errno(_("cannot chdir to '%s'"), git_work_tree_cfg
);
938 core_worktree
= xgetcwd();
940 die_errno(_("cannot come back to cwd"));
941 set_git_work_tree(core_worktree
);
945 else if (!git_env_bool(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT
, 1)) {
947 set_git_dir(gitdirenv
, 0);
952 set_git_work_tree(".");
954 /* set_git_work_tree() must have been called by now */
955 worktree
= get_git_work_tree();
957 /* both get_git_work_tree() and cwd are already normalized */
958 if (!strcmp(cwd
->buf
, worktree
)) { /* cwd == worktree */
959 set_git_dir(gitdirenv
, 0);
964 offset
= dir_inside_of(cwd
->buf
, worktree
);
965 if (offset
>= 0) { /* cwd inside worktree? */
966 set_git_dir(gitdirenv
, 1);
968 die_errno(_("cannot chdir to '%s'"), worktree
);
969 strbuf_addch(cwd
, '/');
971 return cwd
->buf
+ offset
;
974 /* cwd outside worktree */
975 set_git_dir(gitdirenv
, 0);
980 static const char *setup_discovered_git_dir(const char *gitdir
,
981 struct strbuf
*cwd
, int offset
,
982 struct repository_format
*repo_fmt
,
985 if (check_repository_format_gently(gitdir
, repo_fmt
, nongit_ok
))
988 /* --work-tree is set without --git-dir; use discovered one */
989 if (getenv(GIT_WORK_TREE_ENVIRONMENT
) || git_work_tree_cfg
) {
990 char *to_free
= NULL
;
993 if (offset
!= cwd
->len
&& !is_absolute_path(gitdir
))
994 gitdir
= to_free
= real_pathdup(gitdir
, 1);
996 die_errno(_("cannot come back to cwd"));
997 ret
= setup_explicit_git_dir(gitdir
, cwd
, repo_fmt
, nongit_ok
);
1002 /* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */
1003 if (is_bare_repository_cfg
> 0) {
1004 set_git_dir(gitdir
, (offset
!= cwd
->len
));
1005 if (chdir(cwd
->buf
))
1006 die_errno(_("cannot come back to cwd"));
1010 /* #0, #1, #5, #8, #9, #12, #13 */
1011 set_git_work_tree(".");
1012 if (strcmp(gitdir
, DEFAULT_GIT_DIR_ENVIRONMENT
))
1013 set_git_dir(gitdir
, 0);
1015 inside_work_tree
= 1;
1016 if (offset
>= cwd
->len
)
1019 /* Make "offset" point past the '/' (already the case for root dirs) */
1020 if (offset
!= offset_1st_component(cwd
->buf
))
1022 /* Add a '/' at the end */
1023 strbuf_addch(cwd
, '/');
1024 return cwd
->buf
+ offset
;
1027 /* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */
1028 static const char *setup_bare_git_dir(struct strbuf
*cwd
, int offset
,
1029 struct repository_format
*repo_fmt
,
1034 if (check_repository_format_gently(".", repo_fmt
, nongit_ok
))
1037 setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT
, "0", 1);
1039 /* --work-tree is set without --git-dir; use discovered one */
1040 if (getenv(GIT_WORK_TREE_ENVIRONMENT
) || git_work_tree_cfg
) {
1041 static const char *gitdir
;
1043 gitdir
= offset
== cwd
->len
? "." : xmemdupz(cwd
->buf
, offset
);
1044 if (chdir(cwd
->buf
))
1045 die_errno(_("cannot come back to cwd"));
1046 return setup_explicit_git_dir(gitdir
, cwd
, repo_fmt
, nongit_ok
);
1050 inside_work_tree
= 0;
1051 if (offset
!= cwd
->len
) {
1052 if (chdir(cwd
->buf
))
1053 die_errno(_("cannot come back to cwd"));
1054 root_len
= offset_1st_component(cwd
->buf
);
1055 strbuf_setlen(cwd
, offset
> root_len
? offset
: root_len
);
1056 set_git_dir(cwd
->buf
, 0);
1059 set_git_dir(".", 0);
1063 static dev_t
get_device_or_die(const char *path
, const char *prefix
, int prefix_len
)
1066 if (stat(path
, &buf
)) {
1067 die_errno(_("failed to stat '%*s%s%s'"),
1069 prefix
? prefix
: "",
1070 prefix
? "/" : "", path
);
1076 * A "string_list_each_func_t" function that canonicalizes an entry
1077 * from GIT_CEILING_DIRECTORIES using real_pathdup(), or
1078 * discards it if unusable. The presence of an empty entry in
1079 * GIT_CEILING_DIRECTORIES turns off canonicalization for all
1080 * subsequent entries.
1082 static int canonicalize_ceiling_entry(struct string_list_item
*item
,
1085 int *empty_entry_found
= cb_data
;
1086 char *ceil
= item
->string
;
1089 *empty_entry_found
= 1;
1091 } else if (!is_absolute_path(ceil
)) {
1093 } else if (*empty_entry_found
) {
1094 /* Keep entry but do not canonicalize it */
1097 char *real_path
= real_pathdup(ceil
, 0);
1102 item
->string
= real_path
;
1107 struct safe_directory_data
{
1112 static int safe_directory_cb(const char *key
, const char *value
, void *d
)
1114 struct safe_directory_data
*data
= d
;
1116 if (strcmp(key
, "safe.directory"))
1119 if (!value
|| !*value
) {
1121 } else if (!strcmp(value
, "*")) {
1124 const char *interpolated
= NULL
;
1126 if (!git_config_pathname(&interpolated
, key
, value
) &&
1127 !fspathcmp(data
->path
, interpolated
? interpolated
: value
))
1130 free((char *)interpolated
);
1137 * Check if a repository is safe, by verifying the ownership of the
1138 * worktree (if any), the git directory, and the gitfile (if any).
1140 * Exemptions for known-safe repositories can be added via `safe.directory`
1141 * config settings; for non-bare repositories, their worktree needs to be
1142 * added, for bare ones their git directory.
1144 static int ensure_valid_ownership(const char *gitfile
,
1145 const char *worktree
, const char *gitdir
,
1146 struct strbuf
*report
)
1148 struct safe_directory_data data
= {
1149 .path
= worktree
? worktree
: gitdir
1152 if (!git_env_bool("GIT_TEST_ASSUME_DIFFERENT_OWNER", 0) &&
1153 (!gitfile
|| is_path_owned_by_current_user(gitfile
, report
)) &&
1154 (!worktree
|| is_path_owned_by_current_user(worktree
, report
)) &&
1155 (!gitdir
|| is_path_owned_by_current_user(gitdir
, report
)))
1159 * data.path is the "path" that identifies the repository and it is
1160 * constant regardless of what failed above. data.is_safe should be
1161 * initialized to false, and might be changed by the callback.
1163 git_protected_config(safe_directory_cb
, &data
);
1165 return data
.is_safe
;
1168 static int allowed_bare_repo_cb(const char *key
, const char *value
, void *d
)
1170 enum allowed_bare_repo
*allowed_bare_repo
= d
;
1172 if (strcasecmp(key
, "safe.bareRepository"))
1175 if (!strcmp(value
, "explicit")) {
1176 *allowed_bare_repo
= ALLOWED_BARE_REPO_EXPLICIT
;
1179 if (!strcmp(value
, "all")) {
1180 *allowed_bare_repo
= ALLOWED_BARE_REPO_ALL
;
1186 static enum allowed_bare_repo
get_allowed_bare_repo(void)
1188 enum allowed_bare_repo result
= ALLOWED_BARE_REPO_ALL
;
1189 git_protected_config(allowed_bare_repo_cb
, &result
);
1193 static const char *allowed_bare_repo_to_string(
1194 enum allowed_bare_repo allowed_bare_repo
)
1196 switch (allowed_bare_repo
) {
1197 case ALLOWED_BARE_REPO_EXPLICIT
:
1199 case ALLOWED_BARE_REPO_ALL
:
1202 BUG("invalid allowed_bare_repo %d",
1208 enum discovery_result
{
1213 /* these are errors */
1214 GIT_DIR_HIT_CEILING
= -1,
1215 GIT_DIR_HIT_MOUNT_POINT
= -2,
1216 GIT_DIR_INVALID_GITFILE
= -3,
1217 GIT_DIR_INVALID_OWNERSHIP
= -4,
1218 GIT_DIR_DISALLOWED_BARE
= -5,
1222 * We cannot decide in this function whether we are in the work tree or
1223 * not, since the config can only be read _after_ this function was called.
1225 * Also, we avoid changing any global state (such as the current working
1226 * directory) to allow early callers.
1228 * The directory where the search should start needs to be passed in via the
1229 * `dir` parameter; upon return, the `dir` buffer will contain the path of
1230 * the directory where the search ended, and `gitdir` will contain the path of
1231 * the discovered .git/ directory, if any. If `gitdir` is not absolute, it
1232 * is relative to `dir` (i.e. *not* necessarily the cwd).
1234 static enum discovery_result
setup_git_directory_gently_1(struct strbuf
*dir
,
1235 struct strbuf
*gitdir
,
1236 struct strbuf
*report
,
1239 const char *env_ceiling_dirs
= getenv(CEILING_DIRECTORIES_ENVIRONMENT
);
1240 struct string_list ceiling_dirs
= STRING_LIST_INIT_DUP
;
1241 const char *gitdirenv
;
1242 int ceil_offset
= -1, min_offset
= offset_1st_component(dir
->buf
);
1243 dev_t current_device
= 0;
1244 int one_filesystem
= 1;
1247 * If GIT_DIR is set explicitly, we're not going
1248 * to do any discovery, but we still do repository
1251 gitdirenv
= getenv(GIT_DIR_ENVIRONMENT
);
1253 strbuf_addstr(gitdir
, gitdirenv
);
1254 return GIT_DIR_EXPLICIT
;
1257 if (env_ceiling_dirs
) {
1258 int empty_entry_found
= 0;
1260 string_list_split(&ceiling_dirs
, env_ceiling_dirs
, PATH_SEP
, -1);
1261 filter_string_list(&ceiling_dirs
, 0,
1262 canonicalize_ceiling_entry
, &empty_entry_found
);
1263 ceil_offset
= longest_ancestor_length(dir
->buf
, &ceiling_dirs
);
1264 string_list_clear(&ceiling_dirs
, 0);
1267 if (ceil_offset
< 0)
1268 ceil_offset
= min_offset
- 2;
1270 if (min_offset
&& min_offset
== dir
->len
&&
1271 !is_dir_sep(dir
->buf
[min_offset
- 1])) {
1272 strbuf_addch(dir
, '/');
1277 * Test in the following order (relative to the dir):
1278 * - .git (file containing "gitdir: <path>")
1287 one_filesystem
= !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM", 0);
1289 current_device
= get_device_or_die(dir
->buf
, NULL
, 0);
1291 int offset
= dir
->len
, error_code
= 0;
1292 char *gitdir_path
= NULL
;
1293 char *gitfile
= NULL
;
1295 if (offset
> min_offset
)
1296 strbuf_addch(dir
, '/');
1297 strbuf_addstr(dir
, DEFAULT_GIT_DIR_ENVIRONMENT
);
1298 gitdirenv
= read_gitfile_gently(dir
->buf
, die_on_error
?
1299 NULL
: &error_code
);
1302 error_code
== READ_GITFILE_ERR_NOT_A_FILE
) {
1303 /* NEEDSWORK: fail if .git is not file nor dir */
1304 if (is_git_directory(dir
->buf
)) {
1305 gitdirenv
= DEFAULT_GIT_DIR_ENVIRONMENT
;
1306 gitdir_path
= xstrdup(dir
->buf
);
1308 } else if (error_code
!= READ_GITFILE_ERR_STAT_FAILED
)
1309 return GIT_DIR_INVALID_GITFILE
;
1311 gitfile
= xstrdup(dir
->buf
);
1313 * Earlier, we tentatively added DEFAULT_GIT_DIR_ENVIRONMENT
1314 * to check that directory for a repository.
1315 * Now trim that tentative addition away, because we want to
1316 * focus on the real directory we are in.
1318 strbuf_setlen(dir
, offset
);
1320 enum discovery_result ret
;
1321 const char *gitdir_candidate
=
1322 gitdir_path
? gitdir_path
: gitdirenv
;
1324 if (ensure_valid_ownership(gitfile
, dir
->buf
,
1325 gitdir_candidate
, report
)) {
1326 strbuf_addstr(gitdir
, gitdirenv
);
1327 ret
= GIT_DIR_DISCOVERED
;
1329 ret
= GIT_DIR_INVALID_OWNERSHIP
;
1332 * Earlier, during discovery, we might have allocated
1333 * string copies for gitdir_path or gitfile so make
1334 * sure we don't leak by freeing them now, before
1335 * leaving the loop and function.
1337 * Note: gitdirenv will be non-NULL whenever these are
1338 * allocated, therefore we need not take care of releasing
1339 * them outside of this conditional block.
1347 if (is_git_directory(dir
->buf
)) {
1348 if (get_allowed_bare_repo() == ALLOWED_BARE_REPO_EXPLICIT
)
1349 return GIT_DIR_DISALLOWED_BARE
;
1350 if (!ensure_valid_ownership(NULL
, NULL
, dir
->buf
, report
))
1351 return GIT_DIR_INVALID_OWNERSHIP
;
1352 strbuf_addstr(gitdir
, ".");
1353 return GIT_DIR_BARE
;
1356 if (offset
<= min_offset
)
1357 return GIT_DIR_HIT_CEILING
;
1359 while (--offset
> ceil_offset
&& !is_dir_sep(dir
->buf
[offset
]))
1361 if (offset
<= ceil_offset
)
1362 return GIT_DIR_HIT_CEILING
;
1364 strbuf_setlen(dir
, offset
> min_offset
? offset
: min_offset
);
1365 if (one_filesystem
&&
1366 current_device
!= get_device_or_die(dir
->buf
, NULL
, offset
))
1367 return GIT_DIR_HIT_MOUNT_POINT
;
1371 int discover_git_directory(struct strbuf
*commondir
,
1372 struct strbuf
*gitdir
)
1374 struct strbuf dir
= STRBUF_INIT
, err
= STRBUF_INIT
;
1375 size_t gitdir_offset
= gitdir
->len
, cwd_len
;
1376 size_t commondir_offset
= commondir
->len
;
1377 struct repository_format candidate
= REPOSITORY_FORMAT_INIT
;
1379 if (strbuf_getcwd(&dir
))
1383 if (setup_git_directory_gently_1(&dir
, gitdir
, NULL
, 0) <= 0) {
1384 strbuf_release(&dir
);
1389 * The returned gitdir is relative to dir, and if dir does not reflect
1390 * the current working directory, we simply make the gitdir absolute.
1392 if (dir
.len
< cwd_len
&& !is_absolute_path(gitdir
->buf
+ gitdir_offset
)) {
1393 /* Avoid a trailing "/." */
1394 if (!strcmp(".", gitdir
->buf
+ gitdir_offset
))
1395 strbuf_setlen(gitdir
, gitdir_offset
);
1397 strbuf_addch(&dir
, '/');
1398 strbuf_insert(gitdir
, gitdir_offset
, dir
.buf
, dir
.len
);
1401 get_common_dir(commondir
, gitdir
->buf
+ gitdir_offset
);
1404 strbuf_addf(&dir
, "%s/config", commondir
->buf
+ commondir_offset
);
1405 read_repository_format(&candidate
, dir
.buf
);
1406 strbuf_release(&dir
);
1408 if (verify_repository_format(&candidate
, &err
) < 0) {
1409 warning("ignoring git dir '%s': %s",
1410 gitdir
->buf
+ gitdir_offset
, err
.buf
);
1411 strbuf_release(&err
);
1412 strbuf_setlen(commondir
, commondir_offset
);
1413 strbuf_setlen(gitdir
, gitdir_offset
);
1414 clear_repository_format(&candidate
);
1418 /* take ownership of candidate.partial_clone */
1419 the_repository
->repository_format_partial_clone
=
1420 candidate
.partial_clone
;
1421 candidate
.partial_clone
= NULL
;
1423 clear_repository_format(&candidate
);
1427 const char *setup_git_directory_gently(int *nongit_ok
)
1429 static struct strbuf cwd
= STRBUF_INIT
;
1430 struct strbuf dir
= STRBUF_INIT
, gitdir
= STRBUF_INIT
, report
= STRBUF_INIT
;
1431 const char *prefix
= NULL
;
1432 struct repository_format repo_fmt
= REPOSITORY_FORMAT_INIT
;
1435 * We may have read an incomplete configuration before
1436 * setting-up the git directory. If so, clear the cache so
1437 * that the next queries to the configuration reload complete
1438 * configuration (including the per-repo config file that we
1439 * ignored previously).
1444 * Let's assume that we are in a git repository.
1445 * If it turns out later that we are somewhere else, the value will be
1446 * updated accordingly.
1451 if (strbuf_getcwd(&cwd
))
1452 die_errno(_("Unable to read current working directory"));
1453 strbuf_addbuf(&dir
, &cwd
);
1455 switch (setup_git_directory_gently_1(&dir
, &gitdir
, &report
, 1)) {
1456 case GIT_DIR_EXPLICIT
:
1457 prefix
= setup_explicit_git_dir(gitdir
.buf
, &cwd
, &repo_fmt
, nongit_ok
);
1459 case GIT_DIR_DISCOVERED
:
1460 if (dir
.len
< cwd
.len
&& chdir(dir
.buf
))
1461 die(_("cannot change to '%s'"), dir
.buf
);
1462 prefix
= setup_discovered_git_dir(gitdir
.buf
, &cwd
, dir
.len
,
1463 &repo_fmt
, nongit_ok
);
1466 if (dir
.len
< cwd
.len
&& chdir(dir
.buf
))
1467 die(_("cannot change to '%s'"), dir
.buf
);
1468 prefix
= setup_bare_git_dir(&cwd
, dir
.len
, &repo_fmt
, nongit_ok
);
1470 case GIT_DIR_HIT_CEILING
:
1472 die(_("not a git repository (or any of the parent directories): %s"),
1473 DEFAULT_GIT_DIR_ENVIRONMENT
);
1476 case GIT_DIR_HIT_MOUNT_POINT
:
1478 die(_("not a git repository (or any parent up to mount point %s)\n"
1479 "Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set)."),
1483 case GIT_DIR_INVALID_OWNERSHIP
:
1485 struct strbuf quoted
= STRBUF_INIT
;
1487 strbuf_complete(&report
, '\n');
1488 sq_quote_buf_pretty("ed
, dir
.buf
);
1489 die(_("detected dubious ownership in repository at '%s'\n"
1491 "To add an exception for this directory, call:\n"
1493 "\tgit config --global --add safe.directory %s"),
1494 dir
.buf
, report
.buf
, quoted
.buf
);
1498 case GIT_DIR_DISALLOWED_BARE
:
1500 die(_("cannot use bare repository '%s' (safe.bareRepository is '%s')"),
1502 allowed_bare_repo_to_string(get_allowed_bare_repo()));
1508 * As a safeguard against setup_git_directory_gently_1 returning
1509 * this value, fallthrough to BUG. Otherwise it is possible to
1510 * set startup_info->have_repository to 1 when we did nothing to
1511 * find a repository.
1514 BUG("unhandled setup_git_directory_gently_1() result");
1518 * At this point, nongit_ok is stable. If it is non-NULL and points
1519 * to a non-zero value, then this means that we haven't found a
1520 * repository and that the caller expects startup_info to reflect
1523 * Regardless of the state of nongit_ok, startup_info->prefix and
1524 * the GIT_PREFIX environment variable must always match. For details
1525 * see Documentation/config/alias.txt.
1527 if (nongit_ok
&& *nongit_ok
)
1528 startup_info
->have_repository
= 0;
1530 startup_info
->have_repository
= 1;
1533 * Not all paths through the setup code will call 'set_git_dir()' (which
1534 * directly sets up the environment) so in order to guarantee that the
1535 * environment is in a consistent state after setup, explicitly setup
1536 * the environment if we have a repository.
1538 * NEEDSWORK: currently we allow bogus GIT_DIR values to be set in some
1539 * code paths so we also need to explicitly setup the environment if
1540 * the user has set GIT_DIR. It may be beneficial to disallow bogus
1541 * GIT_DIR values at some point in the future.
1543 if (/* GIT_DIR_EXPLICIT, GIT_DIR_DISCOVERED, GIT_DIR_BARE */
1544 startup_info
->have_repository
||
1545 /* GIT_DIR_EXPLICIT */
1546 getenv(GIT_DIR_ENVIRONMENT
)) {
1547 if (!the_repository
->gitdir
) {
1548 const char *gitdir
= getenv(GIT_DIR_ENVIRONMENT
);
1550 gitdir
= DEFAULT_GIT_DIR_ENVIRONMENT
;
1551 setup_git_env(gitdir
);
1553 if (startup_info
->have_repository
) {
1554 repo_set_hash_algo(the_repository
, repo_fmt
.hash_algo
);
1555 /* take ownership of repo_fmt.partial_clone */
1556 the_repository
->repository_format_partial_clone
=
1557 repo_fmt
.partial_clone
;
1558 repo_fmt
.partial_clone
= NULL
;
1562 * Since precompose_string_if_needed() needs to look at
1563 * the core.precomposeunicode configuration, this
1564 * has to happen after the above block that finds
1565 * out where the repository is, i.e. a preparation
1566 * for calling git_config_get_bool().
1569 prefix
= precompose_string_if_needed(prefix
);
1570 startup_info
->prefix
= prefix
;
1571 setenv(GIT_PREFIX_ENVIRONMENT
, prefix
, 1);
1573 startup_info
->prefix
= NULL
;
1574 setenv(GIT_PREFIX_ENVIRONMENT
, "", 1);
1577 setup_original_cwd();
1579 strbuf_release(&dir
);
1580 strbuf_release(&gitdir
);
1581 strbuf_release(&report
);
1582 clear_repository_format(&repo_fmt
);
1587 int git_config_perm(const char *var
, const char *value
)
1595 if (!strcmp(value
, "umask"))
1597 if (!strcmp(value
, "group"))
1599 if (!strcmp(value
, "all") ||
1600 !strcmp(value
, "world") ||
1601 !strcmp(value
, "everybody"))
1602 return PERM_EVERYBODY
;
1604 /* Parse octal numbers */
1605 i
= strtol(value
, &endptr
, 8);
1607 /* If not an octal number, maybe true/false? */
1609 return git_config_bool(var
, value
) ? PERM_GROUP
: PERM_UMASK
;
1612 * Treat values 0, 1 and 2 as compatibility cases, otherwise it is
1613 * a chmod value to restrict to.
1616 case PERM_UMASK
: /* 0 */
1618 case OLD_PERM_GROUP
: /* 1 */
1620 case OLD_PERM_EVERYBODY
: /* 2 */
1621 return PERM_EVERYBODY
;
1624 /* A filemode value was given: 0xxx */
1626 if ((i
& 0600) != 0600)
1627 die(_("problem with core.sharedRepository filemode value "
1628 "(0%.3o).\nThe owner of files must always have "
1629 "read and write permissions."), i
);
1632 * Mask filemode value. Others can not get write permission.
1633 * x flags for directories are handled separately.
1638 void check_repository_format(struct repository_format
*fmt
)
1640 struct repository_format repo_fmt
= REPOSITORY_FORMAT_INIT
;
1643 check_repository_format_gently(get_git_dir(), fmt
, NULL
);
1644 startup_info
->have_repository
= 1;
1645 repo_set_hash_algo(the_repository
, fmt
->hash_algo
);
1646 the_repository
->repository_format_partial_clone
=
1647 xstrdup_or_null(fmt
->partial_clone
);
1648 clear_repository_format(&repo_fmt
);
1652 * Returns the "prefix", a path to the current working directory
1653 * relative to the work tree root, or NULL, if the current working
1654 * directory is not a strict subdirectory of the work tree root. The
1655 * prefix always ends with a '/' character.
1657 const char *setup_git_directory(void)
1659 return setup_git_directory_gently(NULL
);
1662 const char *resolve_gitdir_gently(const char *suspect
, int *return_error_code
)
1664 if (is_git_directory(suspect
))
1666 return read_gitfile_gently(suspect
, return_error_code
);
1669 /* if any standard file descriptor is missing open it to /dev/null */
1670 void sanitize_stdfds(void)
1672 int fd
= xopen("/dev/null", O_RDWR
);
1681 #ifdef NO_POSIX_GOODIES
1689 die_errno(_("fork failed"));
1694 die_errno(_("setsid failed"));