pathspec: avoid the need of "--" when wildcard is used
[git/debian.git] / setup.c
blob1055b8270811c9f55a441d4d7a7f5185dceec1d1
1 #include "cache.h"
2 #include "dir.h"
3 #include "string-list.h"
5 static int inside_git_dir = -1;
6 static int inside_work_tree = -1;
8 /*
9 * The input parameter must contain an absolute path, and it must already be
10 * normalized.
12 * Find the part of an absolute path that lies inside the work tree by
13 * dereferencing symlinks outside the work tree, for example:
14 * /dir1/repo/dir2/file (work tree is /dir1/repo) -> dir2/file
15 * /dir/file (work tree is /) -> dir/file
16 * /dir/symlink1/symlink2 (symlink1 points to work tree) -> symlink2
17 * /dir/repolink/file (repolink points to /dir/repo) -> file
18 * /dir/repo (exactly equal to work tree) -> (empty string)
20 static int abspath_part_inside_repo(char *path)
22 size_t len;
23 size_t wtlen;
24 char *path0;
25 int off;
26 const char *work_tree = get_git_work_tree();
28 if (!work_tree)
29 return -1;
30 wtlen = strlen(work_tree);
31 len = strlen(path);
32 off = offset_1st_component(path);
34 /* check if work tree is already the prefix */
35 if (wtlen <= len && !strncmp(path, work_tree, wtlen)) {
36 if (path[wtlen] == '/') {
37 memmove(path, path + wtlen + 1, len - wtlen);
38 return 0;
39 } else if (path[wtlen - 1] == '/' || path[wtlen] == '\0') {
40 /* work tree is the root, or the whole path */
41 memmove(path, path + wtlen, len - wtlen + 1);
42 return 0;
44 /* work tree might match beginning of a symlink to work tree */
45 off = wtlen;
47 path0 = path;
48 path += off;
50 /* check each '/'-terminated level */
51 while (*path) {
52 path++;
53 if (*path == '/') {
54 *path = '\0';
55 if (strcmp(real_path(path0), work_tree) == 0) {
56 memmove(path0, path + 1, len - (path - path0));
57 return 0;
59 *path = '/';
63 /* check whole path */
64 if (strcmp(real_path(path0), work_tree) == 0) {
65 *path0 = '\0';
66 return 0;
69 return -1;
73 * Normalize "path", prepending the "prefix" for relative paths. If
74 * remaining_prefix is not NULL, return the actual prefix still
75 * remains in the path. For example, prefix = sub1/sub2/ and path is
77 * foo -> sub1/sub2/foo (full prefix)
78 * ../foo -> sub1/foo (remaining prefix is sub1/)
79 * ../../bar -> bar (no remaining prefix)
80 * ../../sub1/sub2/foo -> sub1/sub2/foo (but no remaining prefix)
81 * `pwd`/../bar -> sub1/bar (no remaining prefix)
83 char *prefix_path_gently(const char *prefix, int len,
84 int *remaining_prefix, const char *path)
86 const char *orig = path;
87 char *sanitized;
88 if (is_absolute_path(orig)) {
89 sanitized = xmalloc(strlen(path) + 1);
90 if (remaining_prefix)
91 *remaining_prefix = 0;
92 if (normalize_path_copy_len(sanitized, path, remaining_prefix)) {
93 free(sanitized);
94 return NULL;
96 if (abspath_part_inside_repo(sanitized)) {
97 free(sanitized);
98 return NULL;
100 } else {
101 sanitized = xmalloc(len + strlen(path) + 1);
102 if (len)
103 memcpy(sanitized, prefix, len);
104 strcpy(sanitized + len, path);
105 if (remaining_prefix)
106 *remaining_prefix = len;
107 if (normalize_path_copy_len(sanitized, sanitized, remaining_prefix)) {
108 free(sanitized);
109 return NULL;
112 return sanitized;
115 char *prefix_path(const char *prefix, int len, const char *path)
117 char *r = prefix_path_gently(prefix, len, NULL, path);
118 if (!r)
119 die("'%s' is outside repository", path);
120 return r;
123 int path_inside_repo(const char *prefix, const char *path)
125 int len = prefix ? strlen(prefix) : 0;
126 char *r = prefix_path_gently(prefix, len, NULL, path);
127 if (r) {
128 free(r);
129 return 1;
131 return 0;
134 int check_filename(const char *prefix, const char *arg)
136 const char *name;
137 struct stat st;
139 if (starts_with(arg, ":/")) {
140 if (arg[2] == '\0') /* ":/" is root dir, always exists */
141 return 1;
142 name = arg + 2;
143 } else if (!no_wildcard(arg))
144 return 1;
145 else if (prefix)
146 name = prefix_filename(prefix, strlen(prefix), arg);
147 else
148 name = arg;
149 if (!lstat(name, &st))
150 return 1; /* file exists */
151 if (errno == ENOENT || errno == ENOTDIR)
152 return 0; /* file does not exist */
153 die_errno("failed to stat '%s'", arg);
156 static void NORETURN die_verify_filename(const char *prefix,
157 const char *arg,
158 int diagnose_misspelt_rev)
160 if (!diagnose_misspelt_rev)
161 die("%s: no such path in the working tree.\n"
162 "Use 'git <command> -- <path>...' to specify paths that do not exist locally.",
163 arg);
165 * Saying "'(icase)foo' does not exist in the index" when the
166 * user gave us ":(icase)foo" is just stupid. A magic pathspec
167 * begins with a colon and is followed by a non-alnum; do not
168 * let maybe_die_on_misspelt_object_name() even trigger.
170 if (!(arg[0] == ':' && !isalnum(arg[1])))
171 maybe_die_on_misspelt_object_name(arg, prefix);
173 /* ... or fall back the most general message. */
174 die("ambiguous argument '%s': unknown revision or path not in the working tree.\n"
175 "Use '--' to separate paths from revisions, like this:\n"
176 "'git <command> [<revision>...] -- [<file>...]'", arg);
181 * Verify a filename that we got as an argument for a pathspec
182 * entry. Note that a filename that begins with "-" never verifies
183 * as true, because even if such a filename were to exist, we want
184 * it to be preceded by the "--" marker (or we want the user to
185 * use a format like "./-filename")
187 * The "diagnose_misspelt_rev" is used to provide a user-friendly
188 * diagnosis when dying upon finding that "name" is not a pathname.
189 * If set to 1, the diagnosis will try to diagnose "name" as an
190 * invalid object name (e.g. HEAD:foo). If set to 0, the diagnosis
191 * will only complain about an inexisting file.
193 * This function is typically called to check that a "file or rev"
194 * argument is unambiguous. In this case, the caller will want
195 * diagnose_misspelt_rev == 1 when verifying the first non-rev
196 * argument (which could have been a revision), and
197 * diagnose_misspelt_rev == 0 for the next ones (because we already
198 * saw a filename, there's not ambiguity anymore).
200 void verify_filename(const char *prefix,
201 const char *arg,
202 int diagnose_misspelt_rev)
204 if (*arg == '-')
205 die("bad flag '%s' used after filename", arg);
206 if (check_filename(prefix, arg))
207 return;
208 die_verify_filename(prefix, arg, diagnose_misspelt_rev);
212 * Opposite of the above: the command line did not have -- marker
213 * and we parsed the arg as a refname. It should not be interpretable
214 * as a filename.
216 void verify_non_filename(const char *prefix, const char *arg)
218 if (!is_inside_work_tree() || is_inside_git_dir())
219 return;
220 if (*arg == '-')
221 return; /* flag */
222 if (!check_filename(prefix, arg))
223 return;
224 die("ambiguous argument '%s': both revision and filename\n"
225 "Use '--' to separate paths from revisions, like this:\n"
226 "'git <command> [<revision>...] -- [<file>...]'", arg);
231 * Test if it looks like we're at a git directory.
232 * We want to see:
234 * - either an objects/ directory _or_ the proper
235 * GIT_OBJECT_DIRECTORY environment variable
236 * - a refs/ directory
237 * - either a HEAD symlink or a HEAD file that is formatted as
238 * a proper "ref:", or a regular file HEAD that has a properly
239 * formatted sha1 object name.
241 int is_git_directory(const char *suspect)
243 char path[PATH_MAX];
244 size_t len = strlen(suspect);
246 if (PATH_MAX <= len + strlen("/objects"))
247 die("Too long path: %.*s", 60, suspect);
248 strcpy(path, suspect);
249 if (getenv(DB_ENVIRONMENT)) {
250 if (access(getenv(DB_ENVIRONMENT), X_OK))
251 return 0;
253 else {
254 strcpy(path + len, "/objects");
255 if (access(path, X_OK))
256 return 0;
259 strcpy(path + len, "/refs");
260 if (access(path, X_OK))
261 return 0;
263 strcpy(path + len, "/HEAD");
264 if (validate_headref(path))
265 return 0;
267 return 1;
270 int is_inside_git_dir(void)
272 if (inside_git_dir < 0)
273 inside_git_dir = is_inside_dir(get_git_dir());
274 return inside_git_dir;
277 int is_inside_work_tree(void)
279 if (inside_work_tree < 0)
280 inside_work_tree = is_inside_dir(get_git_work_tree());
281 return inside_work_tree;
284 void setup_work_tree(void)
286 const char *work_tree, *git_dir;
287 static int initialized = 0;
289 if (initialized)
290 return;
291 work_tree = get_git_work_tree();
292 git_dir = get_git_dir();
293 if (!is_absolute_path(git_dir))
294 git_dir = real_path(get_git_dir());
295 if (!work_tree || chdir(work_tree))
296 die("This operation must be run in a work tree");
299 * Make sure subsequent git processes find correct worktree
300 * if $GIT_WORK_TREE is set relative
302 if (getenv(GIT_WORK_TREE_ENVIRONMENT))
303 setenv(GIT_WORK_TREE_ENVIRONMENT, ".", 1);
305 set_git_dir(remove_leading_path(git_dir, work_tree));
306 initialized = 1;
309 static int check_repository_format_gently(const char *gitdir, int *nongit_ok)
311 char repo_config[PATH_MAX+1];
314 * git_config() can't be used here because it calls git_pathdup()
315 * to get $GIT_CONFIG/config. That call will make setup_git_env()
316 * set git_dir to ".git".
318 * We are in gitdir setup, no git dir has been found useable yet.
319 * Use a gentler version of git_config() to check if this repo
320 * is a good one.
322 snprintf(repo_config, PATH_MAX, "%s/config", gitdir);
323 git_config_early(check_repository_format_version, NULL, repo_config);
324 if (GIT_REPO_VERSION < repository_format_version) {
325 if (!nongit_ok)
326 die ("Expected git repo version <= %d, found %d",
327 GIT_REPO_VERSION, repository_format_version);
328 warning("Expected git repo version <= %d, found %d",
329 GIT_REPO_VERSION, repository_format_version);
330 warning("Please upgrade Git");
331 *nongit_ok = -1;
332 return -1;
334 return 0;
338 * Try to read the location of the git directory from the .git file,
339 * return path to git directory if found.
341 const char *read_gitfile(const char *path)
343 char *buf;
344 char *dir;
345 const char *slash;
346 struct stat st;
347 int fd;
348 ssize_t len;
350 if (stat(path, &st))
351 return NULL;
352 if (!S_ISREG(st.st_mode))
353 return NULL;
354 fd = open(path, O_RDONLY);
355 if (fd < 0)
356 die_errno("Error opening '%s'", path);
357 buf = xmalloc(st.st_size + 1);
358 len = read_in_full(fd, buf, st.st_size);
359 close(fd);
360 if (len != st.st_size)
361 die("Error reading %s", path);
362 buf[len] = '\0';
363 if (!starts_with(buf, "gitdir: "))
364 die("Invalid gitfile format: %s", path);
365 while (buf[len - 1] == '\n' || buf[len - 1] == '\r')
366 len--;
367 if (len < 9)
368 die("No path in gitfile: %s", path);
369 buf[len] = '\0';
370 dir = buf + 8;
372 if (!is_absolute_path(dir) && (slash = strrchr(path, '/'))) {
373 size_t pathlen = slash+1 - path;
374 size_t dirlen = pathlen + len - 8;
375 dir = xmalloc(dirlen + 1);
376 strncpy(dir, path, pathlen);
377 strncpy(dir + pathlen, buf + 8, len - 8);
378 dir[dirlen] = '\0';
379 free(buf);
380 buf = dir;
383 if (!is_git_directory(dir))
384 die("Not a git repository: %s", dir);
385 path = real_path(dir);
387 free(buf);
388 return path;
391 static const char *setup_explicit_git_dir(const char *gitdirenv,
392 struct strbuf *cwd,
393 int *nongit_ok)
395 const char *work_tree_env = getenv(GIT_WORK_TREE_ENVIRONMENT);
396 const char *worktree;
397 char *gitfile;
398 int offset;
400 if (PATH_MAX - 40 < strlen(gitdirenv))
401 die("'$%s' too big", GIT_DIR_ENVIRONMENT);
403 gitfile = (char*)read_gitfile(gitdirenv);
404 if (gitfile) {
405 gitfile = xstrdup(gitfile);
406 gitdirenv = gitfile;
409 if (!is_git_directory(gitdirenv)) {
410 if (nongit_ok) {
411 *nongit_ok = 1;
412 free(gitfile);
413 return NULL;
415 die("Not a git repository: '%s'", gitdirenv);
418 if (check_repository_format_gently(gitdirenv, nongit_ok)) {
419 free(gitfile);
420 return NULL;
423 /* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */
424 if (work_tree_env)
425 set_git_work_tree(work_tree_env);
426 else if (is_bare_repository_cfg > 0) {
427 if (git_work_tree_cfg) /* #22.2, #30 */
428 die("core.bare and core.worktree do not make sense");
430 /* #18, #26 */
431 set_git_dir(gitdirenv);
432 free(gitfile);
433 return NULL;
435 else if (git_work_tree_cfg) { /* #6, #14 */
436 if (is_absolute_path(git_work_tree_cfg))
437 set_git_work_tree(git_work_tree_cfg);
438 else {
439 char *core_worktree;
440 if (chdir(gitdirenv))
441 die_errno("Could not chdir to '%s'", gitdirenv);
442 if (chdir(git_work_tree_cfg))
443 die_errno("Could not chdir to '%s'", git_work_tree_cfg);
444 core_worktree = xgetcwd();
445 if (chdir(cwd->buf))
446 die_errno("Could not come back to cwd");
447 set_git_work_tree(core_worktree);
448 free(core_worktree);
451 else if (!git_env_bool(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, 1)) {
452 /* #16d */
453 set_git_dir(gitdirenv);
454 free(gitfile);
455 return NULL;
457 else /* #2, #10 */
458 set_git_work_tree(".");
460 /* set_git_work_tree() must have been called by now */
461 worktree = get_git_work_tree();
463 /* both get_git_work_tree() and cwd are already normalized */
464 if (!strcmp(cwd->buf, worktree)) { /* cwd == worktree */
465 set_git_dir(gitdirenv);
466 free(gitfile);
467 return NULL;
470 offset = dir_inside_of(cwd->buf, worktree);
471 if (offset >= 0) { /* cwd inside worktree? */
472 set_git_dir(real_path(gitdirenv));
473 if (chdir(worktree))
474 die_errno("Could not chdir to '%s'", worktree);
475 strbuf_addch(cwd, '/');
476 free(gitfile);
477 return cwd->buf + offset;
480 /* cwd outside worktree */
481 set_git_dir(gitdirenv);
482 free(gitfile);
483 return NULL;
486 static const char *setup_discovered_git_dir(const char *gitdir,
487 struct strbuf *cwd, int offset,
488 int *nongit_ok)
490 if (check_repository_format_gently(gitdir, nongit_ok))
491 return NULL;
493 /* --work-tree is set without --git-dir; use discovered one */
494 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
495 if (offset != cwd->len && !is_absolute_path(gitdir))
496 gitdir = xstrdup(real_path(gitdir));
497 if (chdir(cwd->buf))
498 die_errno("Could not come back to cwd");
499 return setup_explicit_git_dir(gitdir, cwd, nongit_ok);
502 /* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */
503 if (is_bare_repository_cfg > 0) {
504 set_git_dir(offset == cwd->len ? gitdir : real_path(gitdir));
505 if (chdir(cwd->buf))
506 die_errno("Could not come back to cwd");
507 return NULL;
510 /* #0, #1, #5, #8, #9, #12, #13 */
511 set_git_work_tree(".");
512 if (strcmp(gitdir, DEFAULT_GIT_DIR_ENVIRONMENT))
513 set_git_dir(gitdir);
514 inside_git_dir = 0;
515 inside_work_tree = 1;
516 if (offset == cwd->len)
517 return NULL;
519 /* Make "offset" point to past the '/', and add a '/' at the end */
520 offset++;
521 strbuf_addch(cwd, '/');
522 return cwd->buf + offset;
525 /* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */
526 static const char *setup_bare_git_dir(struct strbuf *cwd, int offset,
527 int *nongit_ok)
529 int root_len;
531 if (check_repository_format_gently(".", nongit_ok))
532 return NULL;
534 setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, "0", 1);
536 /* --work-tree is set without --git-dir; use discovered one */
537 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
538 const char *gitdir;
540 gitdir = offset == cwd->len ? "." : xmemdupz(cwd->buf, offset);
541 if (chdir(cwd->buf))
542 die_errno("Could not come back to cwd");
543 return setup_explicit_git_dir(gitdir, cwd, nongit_ok);
546 inside_git_dir = 1;
547 inside_work_tree = 0;
548 if (offset != cwd->len) {
549 if (chdir(cwd->buf))
550 die_errno("Cannot come back to cwd");
551 root_len = offset_1st_component(cwd->buf);
552 strbuf_setlen(cwd, offset > root_len ? offset : root_len);
553 set_git_dir(cwd->buf);
555 else
556 set_git_dir(".");
557 return NULL;
560 static const char *setup_nongit(const char *cwd, int *nongit_ok)
562 if (!nongit_ok)
563 die("Not a git repository (or any of the parent directories): %s", DEFAULT_GIT_DIR_ENVIRONMENT);
564 if (chdir(cwd))
565 die_errno("Cannot come back to cwd");
566 *nongit_ok = 1;
567 return NULL;
570 static dev_t get_device_or_die(const char *path, const char *prefix, int prefix_len)
572 struct stat buf;
573 if (stat(path, &buf)) {
574 die_errno("failed to stat '%*s%s%s'",
575 prefix_len,
576 prefix ? prefix : "",
577 prefix ? "/" : "", path);
579 return buf.st_dev;
583 * A "string_list_each_func_t" function that canonicalizes an entry
584 * from GIT_CEILING_DIRECTORIES using real_path_if_valid(), or
585 * discards it if unusable. The presence of an empty entry in
586 * GIT_CEILING_DIRECTORIES turns off canonicalization for all
587 * subsequent entries.
589 static int canonicalize_ceiling_entry(struct string_list_item *item,
590 void *cb_data)
592 int *empty_entry_found = cb_data;
593 char *ceil = item->string;
595 if (!*ceil) {
596 *empty_entry_found = 1;
597 return 0;
598 } else if (!is_absolute_path(ceil)) {
599 return 0;
600 } else if (*empty_entry_found) {
601 /* Keep entry but do not canonicalize it */
602 return 1;
603 } else {
604 const char *real_path = real_path_if_valid(ceil);
605 if (!real_path)
606 return 0;
607 free(item->string);
608 item->string = xstrdup(real_path);
609 return 1;
614 * We cannot decide in this function whether we are in the work tree or
615 * not, since the config can only be read _after_ this function was called.
617 static const char *setup_git_directory_gently_1(int *nongit_ok)
619 const char *env_ceiling_dirs = getenv(CEILING_DIRECTORIES_ENVIRONMENT);
620 struct string_list ceiling_dirs = STRING_LIST_INIT_DUP;
621 static struct strbuf cwd = STRBUF_INIT;
622 const char *gitdirenv, *ret;
623 char *gitfile;
624 int offset, offset_parent, ceil_offset = -1;
625 dev_t current_device = 0;
626 int one_filesystem = 1;
629 * We may have read an incomplete configuration before
630 * setting-up the git directory. If so, clear the cache so
631 * that the next queries to the configuration reload complete
632 * configuration (including the per-repo config file that we
633 * ignored previously).
635 git_config_clear();
638 * Let's assume that we are in a git repository.
639 * If it turns out later that we are somewhere else, the value will be
640 * updated accordingly.
642 if (nongit_ok)
643 *nongit_ok = 0;
645 if (strbuf_getcwd(&cwd))
646 die_errno("Unable to read current working directory");
647 offset = cwd.len;
650 * If GIT_DIR is set explicitly, we're not going
651 * to do any discovery, but we still do repository
652 * validation.
654 gitdirenv = getenv(GIT_DIR_ENVIRONMENT);
655 if (gitdirenv)
656 return setup_explicit_git_dir(gitdirenv, &cwd, nongit_ok);
658 if (env_ceiling_dirs) {
659 int empty_entry_found = 0;
661 string_list_split(&ceiling_dirs, env_ceiling_dirs, PATH_SEP, -1);
662 filter_string_list(&ceiling_dirs, 0,
663 canonicalize_ceiling_entry, &empty_entry_found);
664 ceil_offset = longest_ancestor_length(cwd.buf, &ceiling_dirs);
665 string_list_clear(&ceiling_dirs, 0);
668 if (ceil_offset < 0 && has_dos_drive_prefix(cwd.buf))
669 ceil_offset = 1;
672 * Test in the following order (relative to the cwd):
673 * - .git (file containing "gitdir: <path>")
674 * - .git/
675 * - ./ (bare)
676 * - ../.git
677 * - ../.git/
678 * - ../ (bare)
679 * - ../../.git/
680 * etc.
682 one_filesystem = !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM", 0);
683 if (one_filesystem)
684 current_device = get_device_or_die(".", NULL, 0);
685 for (;;) {
686 gitfile = (char*)read_gitfile(DEFAULT_GIT_DIR_ENVIRONMENT);
687 if (gitfile)
688 gitdirenv = gitfile = xstrdup(gitfile);
689 else {
690 if (is_git_directory(DEFAULT_GIT_DIR_ENVIRONMENT))
691 gitdirenv = DEFAULT_GIT_DIR_ENVIRONMENT;
694 if (gitdirenv) {
695 ret = setup_discovered_git_dir(gitdirenv,
696 &cwd, offset,
697 nongit_ok);
698 free(gitfile);
699 return ret;
701 free(gitfile);
703 if (is_git_directory("."))
704 return setup_bare_git_dir(&cwd, offset, nongit_ok);
706 offset_parent = offset;
707 while (--offset_parent > ceil_offset && cwd.buf[offset_parent] != '/');
708 if (offset_parent <= ceil_offset)
709 return setup_nongit(cwd.buf, nongit_ok);
710 if (one_filesystem) {
711 dev_t parent_device = get_device_or_die("..", cwd.buf,
712 offset);
713 if (parent_device != current_device) {
714 if (nongit_ok) {
715 if (chdir(cwd.buf))
716 die_errno("Cannot come back to cwd");
717 *nongit_ok = 1;
718 return NULL;
720 strbuf_setlen(&cwd, offset);
721 die("Not a git repository (or any parent up to mount point %s)\n"
722 "Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).",
723 cwd.buf);
726 if (chdir("..")) {
727 strbuf_setlen(&cwd, offset);
728 die_errno("Cannot change to '%s/..'", cwd.buf);
730 offset = offset_parent;
734 const char *setup_git_directory_gently(int *nongit_ok)
736 const char *prefix;
738 prefix = setup_git_directory_gently_1(nongit_ok);
739 if (prefix)
740 setenv(GIT_PREFIX_ENVIRONMENT, prefix, 1);
741 else
742 setenv(GIT_PREFIX_ENVIRONMENT, "", 1);
744 if (startup_info) {
745 startup_info->have_repository = !nongit_ok || !*nongit_ok;
746 startup_info->prefix = prefix;
748 return prefix;
751 int git_config_perm(const char *var, const char *value)
753 int i;
754 char *endptr;
756 if (value == NULL)
757 return PERM_GROUP;
759 if (!strcmp(value, "umask"))
760 return PERM_UMASK;
761 if (!strcmp(value, "group"))
762 return PERM_GROUP;
763 if (!strcmp(value, "all") ||
764 !strcmp(value, "world") ||
765 !strcmp(value, "everybody"))
766 return PERM_EVERYBODY;
768 /* Parse octal numbers */
769 i = strtol(value, &endptr, 8);
771 /* If not an octal number, maybe true/false? */
772 if (*endptr != 0)
773 return git_config_bool(var, value) ? PERM_GROUP : PERM_UMASK;
776 * Treat values 0, 1 and 2 as compatibility cases, otherwise it is
777 * a chmod value to restrict to.
779 switch (i) {
780 case PERM_UMASK: /* 0 */
781 return PERM_UMASK;
782 case OLD_PERM_GROUP: /* 1 */
783 return PERM_GROUP;
784 case OLD_PERM_EVERYBODY: /* 2 */
785 return PERM_EVERYBODY;
788 /* A filemode value was given: 0xxx */
790 if ((i & 0600) != 0600)
791 die("Problem with core.sharedRepository filemode value "
792 "(0%.3o).\nThe owner of files must always have "
793 "read and write permissions.", i);
796 * Mask filemode value. Others can not get write permission.
797 * x flags for directories are handled separately.
799 return -(i & 0666);
802 int check_repository_format_version(const char *var, const char *value, void *cb)
804 if (strcmp(var, "core.repositoryformatversion") == 0)
805 repository_format_version = git_config_int(var, value);
806 else if (strcmp(var, "core.sharedrepository") == 0)
807 shared_repository = git_config_perm(var, value);
808 else if (strcmp(var, "core.bare") == 0) {
809 is_bare_repository_cfg = git_config_bool(var, value);
810 if (is_bare_repository_cfg == 1)
811 inside_work_tree = -1;
812 } else if (strcmp(var, "core.worktree") == 0) {
813 if (!value)
814 return config_error_nonbool(var);
815 free(git_work_tree_cfg);
816 git_work_tree_cfg = xstrdup(value);
817 inside_work_tree = -1;
819 return 0;
822 int check_repository_format(void)
824 return check_repository_format_gently(get_git_dir(), NULL);
828 * Returns the "prefix", a path to the current working directory
829 * relative to the work tree root, or NULL, if the current working
830 * directory is not a strict subdirectory of the work tree root. The
831 * prefix always ends with a '/' character.
833 const char *setup_git_directory(void)
835 return setup_git_directory_gently(NULL);
838 const char *resolve_gitdir(const char *suspect)
840 if (is_git_directory(suspect))
841 return suspect;
842 return read_gitfile(suspect);
845 /* if any standard file descriptor is missing open it to /dev/null */
846 void sanitize_stdfds(void)
848 int fd = open("/dev/null", O_RDWR, 0);
849 while (fd != -1 && fd < 2)
850 fd = dup(fd);
851 if (fd == -1)
852 die_errno("open /dev/null or dup failed");
853 if (fd > 2)
854 close(fd);
857 int daemonize(void)
859 #ifdef NO_POSIX_GOODIES
860 errno = ENOSYS;
861 return -1;
862 #else
863 switch (fork()) {
864 case 0:
865 break;
866 case -1:
867 die_errno("fork failed");
868 default:
869 exit(0);
871 if (setsid() == -1)
872 die_errno("setsid failed");
873 close(0);
874 close(1);
875 close(2);
876 sanitize_stdfds();
877 return 0;
878 #endif