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
;
10 * The input parameter must contain an absolute path, and it must already be
13 * Find the part of an absolute path that lies inside the work tree by
14 * dereferencing symlinks outside the work tree, for example:
15 * /dir1/repo/dir2/file (work tree is /dir1/repo) -> dir2/file
16 * /dir/file (work tree is /) -> dir/file
17 * /dir/symlink1/symlink2 (symlink1 points to work tree) -> symlink2
18 * /dir/repolink/file (repolink points to /dir/repo) -> file
19 * /dir/repo (exactly equal to work tree) -> (empty string)
21 static int abspath_part_inside_repo(char *path
)
27 const char *work_tree
= get_git_work_tree();
31 wtlen
= strlen(work_tree
);
33 off
= offset_1st_component(path
);
35 /* check if work tree is already the prefix */
36 if (wtlen
<= len
&& !strncmp(path
, work_tree
, wtlen
)) {
37 if (path
[wtlen
] == '/') {
38 memmove(path
, path
+ wtlen
+ 1, len
- wtlen
);
40 } else if (path
[wtlen
- 1] == '/' || path
[wtlen
] == '\0') {
41 /* work tree is the root, or the whole path */
42 memmove(path
, path
+ wtlen
, len
- wtlen
+ 1);
45 /* work tree might match beginning of a symlink to work tree */
51 /* check each '/'-terminated level */
56 if (strcmp(real_path(path0
), work_tree
) == 0) {
57 memmove(path0
, path
+ 1, len
- (path
- path0
));
64 /* check whole path */
65 if (strcmp(real_path(path0
), work_tree
) == 0) {
74 * Normalize "path", prepending the "prefix" for relative paths. If
75 * remaining_prefix is not NULL, return the actual prefix still
76 * remains in the path. For example, prefix = sub1/sub2/ and path is
78 * foo -> sub1/sub2/foo (full prefix)
79 * ../foo -> sub1/foo (remaining prefix is sub1/)
80 * ../../bar -> bar (no remaining prefix)
81 * ../../sub1/sub2/foo -> sub1/sub2/foo (but no remaining prefix)
82 * `pwd`/../bar -> sub1/bar (no remaining prefix)
84 char *prefix_path_gently(const char *prefix
, int len
,
85 int *remaining_prefix
, const char *path
)
87 const char *orig
= path
;
89 if (is_absolute_path(orig
)) {
90 sanitized
= xmalloc(strlen(path
) + 1);
92 *remaining_prefix
= 0;
93 if (normalize_path_copy_len(sanitized
, path
, remaining_prefix
)) {
97 if (abspath_part_inside_repo(sanitized
)) {
102 sanitized
= xstrfmt("%.*s%s", len
, prefix
, path
);
103 if (remaining_prefix
)
104 *remaining_prefix
= len
;
105 if (normalize_path_copy_len(sanitized
, sanitized
, remaining_prefix
)) {
113 char *prefix_path(const char *prefix
, int len
, const char *path
)
115 char *r
= prefix_path_gently(prefix
, len
, NULL
, path
);
117 die("'%s' is outside repository", path
);
121 int path_inside_repo(const char *prefix
, const char *path
)
123 int len
= prefix
? strlen(prefix
) : 0;
124 char *r
= prefix_path_gently(prefix
, len
, NULL
, path
);
132 int check_filename(const char *prefix
, const char *arg
)
137 if (starts_with(arg
, ":/")) {
138 if (arg
[2] == '\0') /* ":/" is root dir, always exists */
141 } else if (!no_wildcard(arg
))
144 name
= prefix_filename(prefix
, strlen(prefix
), arg
);
147 if (!lstat(name
, &st
))
148 return 1; /* file exists */
149 if (errno
== ENOENT
|| errno
== ENOTDIR
)
150 return 0; /* file does not exist */
151 die_errno("failed to stat '%s'", arg
);
154 static void NORETURN
die_verify_filename(const char *prefix
,
156 int diagnose_misspelt_rev
)
158 if (!diagnose_misspelt_rev
)
159 die("%s: no such path in the working tree.\n"
160 "Use 'git <command> -- <path>...' to specify paths that do not exist locally.",
163 * Saying "'(icase)foo' does not exist in the index" when the
164 * user gave us ":(icase)foo" is just stupid. A magic pathspec
165 * begins with a colon and is followed by a non-alnum; do not
166 * let maybe_die_on_misspelt_object_name() even trigger.
168 if (!(arg
[0] == ':' && !isalnum(arg
[1])))
169 maybe_die_on_misspelt_object_name(arg
, prefix
);
171 /* ... or fall back the most general message. */
172 die("ambiguous argument '%s': unknown revision or path not in the working tree.\n"
173 "Use '--' to separate paths from revisions, like this:\n"
174 "'git <command> [<revision>...] -- [<file>...]'", arg
);
179 * Verify a filename that we got as an argument for a pathspec
180 * entry. Note that a filename that begins with "-" never verifies
181 * as true, because even if such a filename were to exist, we want
182 * it to be preceded by the "--" marker (or we want the user to
183 * use a format like "./-filename")
185 * The "diagnose_misspelt_rev" is used to provide a user-friendly
186 * diagnosis when dying upon finding that "name" is not a pathname.
187 * If set to 1, the diagnosis will try to diagnose "name" as an
188 * invalid object name (e.g. HEAD:foo). If set to 0, the diagnosis
189 * will only complain about an inexisting file.
191 * This function is typically called to check that a "file or rev"
192 * argument is unambiguous. In this case, the caller will want
193 * diagnose_misspelt_rev == 1 when verifying the first non-rev
194 * argument (which could have been a revision), and
195 * diagnose_misspelt_rev == 0 for the next ones (because we already
196 * saw a filename, there's not ambiguity anymore).
198 void verify_filename(const char *prefix
,
200 int diagnose_misspelt_rev
)
203 die("bad flag '%s' used after filename", arg
);
204 if (check_filename(prefix
, arg
))
206 die_verify_filename(prefix
, arg
, diagnose_misspelt_rev
);
210 * Opposite of the above: the command line did not have -- marker
211 * and we parsed the arg as a refname. It should not be interpretable
214 void verify_non_filename(const char *prefix
, const char *arg
)
216 if (!is_inside_work_tree() || is_inside_git_dir())
220 if (!check_filename(prefix
, arg
))
222 die("ambiguous argument '%s': both revision and filename\n"
223 "Use '--' to separate paths from revisions, like this:\n"
224 "'git <command> [<revision>...] -- [<file>...]'", arg
);
227 int get_common_dir(struct strbuf
*sb
, const char *gitdir
)
229 const char *git_env_common_dir
= getenv(GIT_COMMON_DIR_ENVIRONMENT
);
230 if (git_env_common_dir
) {
231 strbuf_addstr(sb
, git_env_common_dir
);
234 return get_common_dir_noenv(sb
, gitdir
);
238 int get_common_dir_noenv(struct strbuf
*sb
, const char *gitdir
)
240 struct strbuf data
= STRBUF_INIT
;
241 struct strbuf path
= STRBUF_INIT
;
244 strbuf_addf(&path
, "%s/commondir", gitdir
);
245 if (file_exists(path
.buf
)) {
246 if (strbuf_read_file(&data
, path
.buf
, 0) <= 0)
247 die_errno(_("failed to read %s"), path
.buf
);
248 while (data
.len
&& (data
.buf
[data
.len
- 1] == '\n' ||
249 data
.buf
[data
.len
- 1] == '\r'))
251 data
.buf
[data
.len
] = '\0';
253 if (!is_absolute_path(data
.buf
))
254 strbuf_addf(&path
, "%s/", gitdir
);
255 strbuf_addbuf(&path
, &data
);
256 strbuf_addstr(sb
, real_path(path
.buf
));
259 strbuf_addstr(sb
, gitdir
);
260 strbuf_release(&data
);
261 strbuf_release(&path
);
266 * Test if it looks like we're at a git directory.
269 * - either an objects/ directory _or_ the proper
270 * GIT_OBJECT_DIRECTORY environment variable
271 * - a refs/ directory
272 * - either a HEAD symlink or a HEAD file that is formatted as
273 * a proper "ref:", or a regular file HEAD that has a properly
274 * formatted sha1 object name.
276 int is_git_directory(const char *suspect
)
278 struct strbuf path
= STRBUF_INIT
;
282 /* Check worktree-related signatures */
283 strbuf_addf(&path
, "%s/HEAD", suspect
);
284 if (validate_headref(path
.buf
))
288 get_common_dir(&path
, suspect
);
291 /* Check non-worktree-related signatures */
292 if (getenv(DB_ENVIRONMENT
)) {
293 if (access(getenv(DB_ENVIRONMENT
), X_OK
))
297 strbuf_setlen(&path
, len
);
298 strbuf_addstr(&path
, "/objects");
299 if (access(path
.buf
, X_OK
))
303 strbuf_setlen(&path
, len
);
304 strbuf_addstr(&path
, "/refs");
305 if (access(path
.buf
, X_OK
))
310 strbuf_release(&path
);
314 int is_inside_git_dir(void)
316 if (inside_git_dir
< 0)
317 inside_git_dir
= is_inside_dir(get_git_dir());
318 return inside_git_dir
;
321 int is_inside_work_tree(void)
323 if (inside_work_tree
< 0)
324 inside_work_tree
= is_inside_dir(get_git_work_tree());
325 return inside_work_tree
;
328 void setup_work_tree(void)
330 const char *work_tree
, *git_dir
;
331 static int initialized
= 0;
336 if (work_tree_config_is_bogus
)
337 die("unable to set up work tree using invalid config");
339 work_tree
= get_git_work_tree();
340 git_dir
= get_git_dir();
341 if (!is_absolute_path(git_dir
))
342 git_dir
= real_path(get_git_dir());
343 if (!work_tree
|| chdir(work_tree
))
344 die("This operation must be run in a work tree");
347 * Make sure subsequent git processes find correct worktree
348 * if $GIT_WORK_TREE is set relative
350 if (getenv(GIT_WORK_TREE_ENVIRONMENT
))
351 setenv(GIT_WORK_TREE_ENVIRONMENT
, ".", 1);
353 set_git_dir(remove_leading_path(git_dir
, work_tree
));
357 static int check_repo_format(const char *var
, const char *value
, void *cb
)
359 if (strcmp(var
, "core.repositoryformatversion") == 0)
360 repository_format_version
= git_config_int(var
, value
);
361 else if (strcmp(var
, "core.sharedrepository") == 0)
362 shared_repository
= git_config_perm(var
, value
);
366 static int check_repository_format_gently(const char *gitdir
, int *nongit_ok
)
368 struct strbuf sb
= STRBUF_INIT
;
369 const char *repo_config
;
373 if (get_common_dir(&sb
, gitdir
))
374 fn
= check_repo_format
;
376 fn
= check_repository_format_version
;
377 strbuf_addstr(&sb
, "/config");
378 repo_config
= sb
.buf
;
381 * git_config() can't be used here because it calls git_pathdup()
382 * to get $GIT_CONFIG/config. That call will make setup_git_env()
383 * set git_dir to ".git".
385 * We are in gitdir setup, no git dir has been found useable yet.
386 * Use a gentler version of git_config() to check if this repo
389 git_config_early(fn
, NULL
, repo_config
);
390 if (GIT_REPO_VERSION
< repository_format_version
) {
392 die ("Expected git repo version <= %d, found %d",
393 GIT_REPO_VERSION
, repository_format_version
);
394 warning("Expected git repo version <= %d, found %d",
395 GIT_REPO_VERSION
, repository_format_version
);
396 warning("Please upgrade Git");
405 * Try to read the location of the git directory from the .git file,
406 * return path to git directory if found.
408 * On failure, if return_error_code is not NULL, return_error_code
409 * will be set to an error code and NULL will be returned. If
410 * return_error_code is NULL the function will die instead (for most
413 const char *read_gitfile_gently(const char *path
, int *return_error_code
)
415 const int max_file_size
= 1 << 20; /* 1MB */
424 if (stat(path
, &st
)) {
425 error_code
= READ_GITFILE_ERR_STAT_FAILED
;
428 if (!S_ISREG(st
.st_mode
)) {
429 error_code
= READ_GITFILE_ERR_NOT_A_FILE
;
432 if (st
.st_size
> max_file_size
) {
433 error_code
= READ_GITFILE_ERR_TOO_LARGE
;
436 fd
= open(path
, O_RDONLY
);
438 error_code
= READ_GITFILE_ERR_OPEN_FAILED
;
441 buf
= xmalloc(st
.st_size
+ 1);
442 len
= read_in_full(fd
, buf
, st
.st_size
);
444 if (len
!= st
.st_size
) {
445 error_code
= READ_GITFILE_ERR_READ_FAILED
;
449 if (!starts_with(buf
, "gitdir: ")) {
450 error_code
= READ_GITFILE_ERR_INVALID_FORMAT
;
453 while (buf
[len
- 1] == '\n' || buf
[len
- 1] == '\r')
456 error_code
= READ_GITFILE_ERR_NO_PATH
;
462 if (!is_absolute_path(dir
) && (slash
= strrchr(path
, '/'))) {
463 size_t pathlen
= slash
+1 - path
;
464 dir
= xstrfmt("%.*s%.*s", (int)pathlen
, path
,
465 (int)(len
- 8), buf
+ 8);
469 if (!is_git_directory(dir
)) {
470 error_code
= READ_GITFILE_ERR_NOT_A_REPO
;
473 path
= real_path(dir
);
476 if (return_error_code
)
477 *return_error_code
= error_code
;
478 else if (error_code
) {
479 switch (error_code
) {
480 case READ_GITFILE_ERR_STAT_FAILED
:
481 case READ_GITFILE_ERR_NOT_A_FILE
:
482 /* non-fatal; follow return path */
484 case READ_GITFILE_ERR_OPEN_FAILED
:
485 die_errno("Error opening '%s'", path
);
486 case READ_GITFILE_ERR_TOO_LARGE
:
487 die("Too large to be a .git file: '%s'", path
);
488 case READ_GITFILE_ERR_READ_FAILED
:
489 die("Error reading %s", path
);
490 case READ_GITFILE_ERR_INVALID_FORMAT
:
491 die("Invalid gitfile format: %s", path
);
492 case READ_GITFILE_ERR_NO_PATH
:
493 die("No path in gitfile: %s", path
);
494 case READ_GITFILE_ERR_NOT_A_REPO
:
495 die("Not a git repository: %s", dir
);
502 return error_code
? NULL
: path
;
505 static const char *setup_explicit_git_dir(const char *gitdirenv
,
509 const char *work_tree_env
= getenv(GIT_WORK_TREE_ENVIRONMENT
);
510 const char *worktree
;
514 if (PATH_MAX
- 40 < strlen(gitdirenv
))
515 die("'$%s' too big", GIT_DIR_ENVIRONMENT
);
517 gitfile
= (char*)read_gitfile(gitdirenv
);
519 gitfile
= xstrdup(gitfile
);
523 if (!is_git_directory(gitdirenv
)) {
529 die("Not a git repository: '%s'", gitdirenv
);
532 if (check_repository_format_gently(gitdirenv
, nongit_ok
)) {
537 /* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */
539 set_git_work_tree(work_tree_env
);
540 else if (is_bare_repository_cfg
> 0) {
541 if (git_work_tree_cfg
) {
543 warning("core.bare and core.worktree do not make sense");
544 work_tree_config_is_bogus
= 1;
548 set_git_dir(gitdirenv
);
552 else if (git_work_tree_cfg
) { /* #6, #14 */
553 if (is_absolute_path(git_work_tree_cfg
))
554 set_git_work_tree(git_work_tree_cfg
);
557 if (chdir(gitdirenv
))
558 die_errno("Could not chdir to '%s'", gitdirenv
);
559 if (chdir(git_work_tree_cfg
))
560 die_errno("Could not chdir to '%s'", git_work_tree_cfg
);
561 core_worktree
= xgetcwd();
563 die_errno("Could not come back to cwd");
564 set_git_work_tree(core_worktree
);
568 else if (!git_env_bool(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT
, 1)) {
570 set_git_dir(gitdirenv
);
575 set_git_work_tree(".");
577 /* set_git_work_tree() must have been called by now */
578 worktree
= get_git_work_tree();
580 /* both get_git_work_tree() and cwd are already normalized */
581 if (!strcmp(cwd
->buf
, worktree
)) { /* cwd == worktree */
582 set_git_dir(gitdirenv
);
587 offset
= dir_inside_of(cwd
->buf
, worktree
);
588 if (offset
>= 0) { /* cwd inside worktree? */
589 set_git_dir(real_path(gitdirenv
));
591 die_errno("Could not chdir to '%s'", worktree
);
592 strbuf_addch(cwd
, '/');
594 return cwd
->buf
+ offset
;
597 /* cwd outside worktree */
598 set_git_dir(gitdirenv
);
603 static const char *setup_discovered_git_dir(const char *gitdir
,
604 struct strbuf
*cwd
, int offset
,
607 if (check_repository_format_gently(gitdir
, nongit_ok
))
610 /* --work-tree is set without --git-dir; use discovered one */
611 if (getenv(GIT_WORK_TREE_ENVIRONMENT
) || git_work_tree_cfg
) {
612 if (offset
!= cwd
->len
&& !is_absolute_path(gitdir
))
613 gitdir
= xstrdup(real_path(gitdir
));
615 die_errno("Could not come back to cwd");
616 return setup_explicit_git_dir(gitdir
, cwd
, nongit_ok
);
619 /* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */
620 if (is_bare_repository_cfg
> 0) {
621 set_git_dir(offset
== cwd
->len
? gitdir
: real_path(gitdir
));
623 die_errno("Could not come back to cwd");
627 /* #0, #1, #5, #8, #9, #12, #13 */
628 set_git_work_tree(".");
629 if (strcmp(gitdir
, DEFAULT_GIT_DIR_ENVIRONMENT
))
632 inside_work_tree
= 1;
633 if (offset
== cwd
->len
)
636 /* Make "offset" point to past the '/', and add a '/' at the end */
638 strbuf_addch(cwd
, '/');
639 return cwd
->buf
+ offset
;
642 /* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */
643 static const char *setup_bare_git_dir(struct strbuf
*cwd
, int offset
,
648 if (check_repository_format_gently(".", nongit_ok
))
651 setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT
, "0", 1);
653 /* --work-tree is set without --git-dir; use discovered one */
654 if (getenv(GIT_WORK_TREE_ENVIRONMENT
) || git_work_tree_cfg
) {
657 gitdir
= offset
== cwd
->len
? "." : xmemdupz(cwd
->buf
, offset
);
659 die_errno("Could not come back to cwd");
660 return setup_explicit_git_dir(gitdir
, cwd
, nongit_ok
);
664 inside_work_tree
= 0;
665 if (offset
!= cwd
->len
) {
667 die_errno("Cannot come back to cwd");
668 root_len
= offset_1st_component(cwd
->buf
);
669 strbuf_setlen(cwd
, offset
> root_len
? offset
: root_len
);
670 set_git_dir(cwd
->buf
);
677 static const char *setup_nongit(const char *cwd
, int *nongit_ok
)
680 die("Not a git repository (or any of the parent directories): %s", DEFAULT_GIT_DIR_ENVIRONMENT
);
682 die_errno("Cannot come back to cwd");
687 static dev_t
get_device_or_die(const char *path
, const char *prefix
, int prefix_len
)
690 if (stat(path
, &buf
)) {
691 die_errno("failed to stat '%*s%s%s'",
693 prefix
? prefix
: "",
694 prefix
? "/" : "", path
);
700 * A "string_list_each_func_t" function that canonicalizes an entry
701 * from GIT_CEILING_DIRECTORIES using real_path_if_valid(), or
702 * discards it if unusable. The presence of an empty entry in
703 * GIT_CEILING_DIRECTORIES turns off canonicalization for all
704 * subsequent entries.
706 static int canonicalize_ceiling_entry(struct string_list_item
*item
,
709 int *empty_entry_found
= cb_data
;
710 char *ceil
= item
->string
;
713 *empty_entry_found
= 1;
715 } else if (!is_absolute_path(ceil
)) {
717 } else if (*empty_entry_found
) {
718 /* Keep entry but do not canonicalize it */
721 const char *real_path
= real_path_if_valid(ceil
);
725 item
->string
= xstrdup(real_path
);
731 * We cannot decide in this function whether we are in the work tree or
732 * not, since the config can only be read _after_ this function was called.
734 static const char *setup_git_directory_gently_1(int *nongit_ok
)
736 const char *env_ceiling_dirs
= getenv(CEILING_DIRECTORIES_ENVIRONMENT
);
737 struct string_list ceiling_dirs
= STRING_LIST_INIT_DUP
;
738 static struct strbuf cwd
= STRBUF_INIT
;
739 const char *gitdirenv
, *ret
;
741 int offset
, offset_parent
, ceil_offset
= -1;
742 dev_t current_device
= 0;
743 int one_filesystem
= 1;
746 * We may have read an incomplete configuration before
747 * setting-up the git directory. If so, clear the cache so
748 * that the next queries to the configuration reload complete
749 * configuration (including the per-repo config file that we
750 * ignored previously).
755 * Let's assume that we are in a git repository.
756 * If it turns out later that we are somewhere else, the value will be
757 * updated accordingly.
762 if (strbuf_getcwd(&cwd
))
763 die_errno("Unable to read current working directory");
767 * If GIT_DIR is set explicitly, we're not going
768 * to do any discovery, but we still do repository
771 gitdirenv
= getenv(GIT_DIR_ENVIRONMENT
);
773 return setup_explicit_git_dir(gitdirenv
, &cwd
, nongit_ok
);
775 if (env_ceiling_dirs
) {
776 int empty_entry_found
= 0;
778 string_list_split(&ceiling_dirs
, env_ceiling_dirs
, PATH_SEP
, -1);
779 filter_string_list(&ceiling_dirs
, 0,
780 canonicalize_ceiling_entry
, &empty_entry_found
);
781 ceil_offset
= longest_ancestor_length(cwd
.buf
, &ceiling_dirs
);
782 string_list_clear(&ceiling_dirs
, 0);
785 if (ceil_offset
< 0 && has_dos_drive_prefix(cwd
.buf
))
789 * Test in the following order (relative to the cwd):
790 * - .git (file containing "gitdir: <path>")
799 one_filesystem
= !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM", 0);
801 current_device
= get_device_or_die(".", NULL
, 0);
803 gitfile
= (char*)read_gitfile(DEFAULT_GIT_DIR_ENVIRONMENT
);
805 gitdirenv
= gitfile
= xstrdup(gitfile
);
807 if (is_git_directory(DEFAULT_GIT_DIR_ENVIRONMENT
))
808 gitdirenv
= DEFAULT_GIT_DIR_ENVIRONMENT
;
812 ret
= setup_discovered_git_dir(gitdirenv
,
820 if (is_git_directory("."))
821 return setup_bare_git_dir(&cwd
, offset
, nongit_ok
);
823 offset_parent
= offset
;
824 while (--offset_parent
> ceil_offset
&& cwd
.buf
[offset_parent
] != '/');
825 if (offset_parent
<= ceil_offset
)
826 return setup_nongit(cwd
.buf
, nongit_ok
);
827 if (one_filesystem
) {
828 dev_t parent_device
= get_device_or_die("..", cwd
.buf
,
830 if (parent_device
!= current_device
) {
833 die_errno("Cannot come back to cwd");
837 strbuf_setlen(&cwd
, offset
);
838 die("Not a git repository (or any parent up to mount point %s)\n"
839 "Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).",
844 strbuf_setlen(&cwd
, offset
);
845 die_errno("Cannot change to '%s/..'", cwd
.buf
);
847 offset
= offset_parent
;
851 const char *setup_git_directory_gently(int *nongit_ok
)
855 prefix
= setup_git_directory_gently_1(nongit_ok
);
857 setenv(GIT_PREFIX_ENVIRONMENT
, prefix
, 1);
859 setenv(GIT_PREFIX_ENVIRONMENT
, "", 1);
862 startup_info
->have_repository
= !nongit_ok
|| !*nongit_ok
;
863 startup_info
->prefix
= prefix
;
868 int git_config_perm(const char *var
, const char *value
)
876 if (!strcmp(value
, "umask"))
878 if (!strcmp(value
, "group"))
880 if (!strcmp(value
, "all") ||
881 !strcmp(value
, "world") ||
882 !strcmp(value
, "everybody"))
883 return PERM_EVERYBODY
;
885 /* Parse octal numbers */
886 i
= strtol(value
, &endptr
, 8);
888 /* If not an octal number, maybe true/false? */
890 return git_config_bool(var
, value
) ? PERM_GROUP
: PERM_UMASK
;
893 * Treat values 0, 1 and 2 as compatibility cases, otherwise it is
894 * a chmod value to restrict to.
897 case PERM_UMASK
: /* 0 */
899 case OLD_PERM_GROUP
: /* 1 */
901 case OLD_PERM_EVERYBODY
: /* 2 */
902 return PERM_EVERYBODY
;
905 /* A filemode value was given: 0xxx */
907 if ((i
& 0600) != 0600)
908 die("Problem with core.sharedRepository filemode value "
909 "(0%.3o).\nThe owner of files must always have "
910 "read and write permissions.", i
);
913 * Mask filemode value. Others can not get write permission.
914 * x flags for directories are handled separately.
919 int check_repository_format_version(const char *var
, const char *value
, void *cb
)
921 int ret
= check_repo_format(var
, value
, cb
);
924 if (strcmp(var
, "core.bare") == 0) {
925 is_bare_repository_cfg
= git_config_bool(var
, value
);
926 if (is_bare_repository_cfg
== 1)
927 inside_work_tree
= -1;
928 } else if (strcmp(var
, "core.worktree") == 0) {
930 return config_error_nonbool(var
);
931 free(git_work_tree_cfg
);
932 git_work_tree_cfg
= xstrdup(value
);
933 inside_work_tree
= -1;
938 int check_repository_format(void)
940 return check_repository_format_gently(get_git_dir(), NULL
);
944 * Returns the "prefix", a path to the current working directory
945 * relative to the work tree root, or NULL, if the current working
946 * directory is not a strict subdirectory of the work tree root. The
947 * prefix always ends with a '/' character.
949 const char *setup_git_directory(void)
951 return setup_git_directory_gently(NULL
);
954 const char *resolve_gitdir(const char *suspect
)
956 if (is_git_directory(suspect
))
958 return read_gitfile(suspect
);
961 /* if any standard file descriptor is missing open it to /dev/null */
962 void sanitize_stdfds(void)
964 int fd
= open("/dev/null", O_RDWR
, 0);
965 while (fd
!= -1 && fd
< 2)
968 die_errno("open /dev/null or dup failed");
975 #ifdef NO_POSIX_GOODIES
983 die_errno("fork failed");
988 die_errno("setsid failed");