3 #include "string-list.h"
5 static int inside_git_dir = -1;
6 static int inside_work_tree = -1;
7 static int work_tree_config_is_bogus;
9 static struct startup_info the_startup_info;
10 struct startup_info *startup_info = &the_startup_info;
13 * The input parameter must contain an absolute path, and it must already be
16 * Find the part of an absolute path that lies inside the work tree by
17 * dereferencing symlinks outside the work tree, for example:
18 * /dir1/repo/dir2/file (work tree is /dir1/repo) -> dir2/file
19 * /dir/file (work tree is /) -> dir/file
20 * /dir/symlink1/symlink2 (symlink1 points to work tree) -> symlink2
21 * /dir/repolink/file (repolink points to /dir/repo) -> file
22 * /dir/repo (exactly equal to work tree) -> (empty string)
24 static int abspath_part_inside_repo(char *path)
30 const char *work_tree = get_git_work_tree();
34 wtlen = strlen(work_tree);
36 off = offset_1st_component(path);
38 /* check if work tree is already the prefix */
39 if (wtlen <= len && !strncmp(path, work_tree, wtlen)) {
40 if (path[wtlen] == '/') {
41 memmove(path, path + wtlen + 1, len - wtlen);
43 } else if (path[wtlen - 1] == '/' || path[wtlen] == '\0') {
44 /* work tree is the root, or the whole path */
45 memmove(path, path + wtlen, len - wtlen + 1);
48 /* work tree might match beginning of a symlink to work tree */
54 /* check each '/'-terminated level */
59 if (strcmp(real_path(path0), work_tree) == 0) {
60 memmove(path0, path + 1, len - (path - path0));
67 /* check whole path */
68 if (strcmp(real_path(path0), work_tree) == 0) {
77 * Normalize "path", prepending the "prefix" for relative paths. If
78 * remaining_prefix is not NULL, return the actual prefix still
79 * remains in the path. For example, prefix = sub1/sub2/ and path is
81 * foo -> sub1/sub2/foo (full prefix)
82 * ../foo -> sub1/foo (remaining prefix is sub1/)
83 * ../../bar -> bar (no remaining prefix)
84 * ../../sub1/sub2/foo -> sub1/sub2/foo (but no remaining prefix)
85 * `pwd`/../bar -> sub1/bar (no remaining prefix)
87 char *prefix_path_gently(const char *prefix, int len,
88 int *remaining_prefix, const char *path)
90 const char *orig = path;
92 if (is_absolute_path(orig)) {
93 sanitized = xmallocz(strlen(path));
95 *remaining_prefix = 0;
96 if (normalize_path_copy_len(sanitized, path, remaining_prefix)) {
100 if (abspath_part_inside_repo(sanitized)) {
105 sanitized = xstrfmt("%.*s%s", len, len ? prefix : "", path);
106 if (remaining_prefix)
107 *remaining_prefix = len;
108 if (normalize_path_copy_len(sanitized, sanitized, remaining_prefix)) {
116 char *prefix_path(const char *prefix, int len, const char *path)
118 char *r = prefix_path_gently(prefix, len, NULL, path);
120 die("'%s' is outside repository", path);
124 int path_inside_repo(const char *prefix, const char *path)
126 int len = prefix ? strlen(prefix) : 0;
127 char *r = prefix_path_gently(prefix, len, NULL, path);
135 int check_filename(const char *prefix, const char *arg)
140 if (starts_with(arg, ":/")) {
141 if (arg[2] == '\0') /* ":/" is root dir, always exists */
145 name = prefix_filename(prefix, strlen(prefix), arg);
148 if (!lstat(name, &st))
149 return 1; /* file exists */
150 if (errno == ENOENT || errno == ENOTDIR)
151 return 0; /* file does not exist */
152 die_errno("failed to stat '%s'", arg);
155 static void NORETURN die_verify_filename(const char *prefix,
157 int diagnose_misspelt_rev)
159 if (!diagnose_misspelt_rev)
160 die(_("%s: no such path in the working tree.\n"
161 "Use 'git <command> -- <path>...' to specify paths that do not exist locally."),
164 * Saying "'(icase)foo' does not exist in the index" when the
165 * user gave us ":(icase)foo" is just stupid. A magic pathspec
166 * begins with a colon and is followed by a non-alnum; do not
167 * let maybe_die_on_misspelt_object_name() even trigger.
169 if (!(arg[0] == ':' && !isalnum(arg[1])))
170 maybe_die_on_misspelt_object_name(arg, prefix);
172 /* ... or fall back the most general message. */
173 die(_("ambiguous argument '%s': unknown revision or path not in the working tree.\n"
174 "Use '--' to separate paths from revisions, like this:\n"
175 "'git <command> [<revision>...] -- [<file>...]'"), arg);
180 * Verify a filename that we got as an argument for a pathspec
181 * entry. Note that a filename that begins with "-" never verifies
182 * as true, because even if such a filename were to exist, we want
183 * it to be preceded by the "--" marker (or we want the user to
184 * use a format like "./-filename")
186 * The "diagnose_misspelt_rev" is used to provide a user-friendly
187 * diagnosis when dying upon finding that "name" is not a pathname.
188 * If set to 1, the diagnosis will try to diagnose "name" as an
189 * invalid object name (e.g. HEAD:foo). If set to 0, the diagnosis
190 * will only complain about an inexisting file.
192 * This function is typically called to check that a "file or rev"
193 * argument is unambiguous. In this case, the caller will want
194 * diagnose_misspelt_rev == 1 when verifying the first non-rev
195 * argument (which could have been a revision), and
196 * diagnose_misspelt_rev == 0 for the next ones (because we already
197 * saw a filename, there's not ambiguity anymore).
199 void verify_filename(const char *prefix,
201 int diagnose_misspelt_rev)
204 die("bad flag '%s' used after filename", arg);
205 if (check_filename(prefix, arg) || !no_wildcard(arg))
207 die_verify_filename(prefix, arg, diagnose_misspelt_rev);
211 * Opposite of the above: the command line did not have -- marker
212 * and we parsed the arg as a refname. It should not be interpretable
215 void verify_non_filename(const char *prefix, const char *arg)
217 if (!is_inside_work_tree() || is_inside_git_dir())
221 if (!check_filename(prefix, arg))
223 die(_("ambiguous argument '%s': both revision and filename\n"
224 "Use '--' to separate paths from revisions, like this:\n"
225 "'git <command> [<revision>...] -- [<file>...]'"), arg);
228 int get_common_dir(struct strbuf *sb, const char *gitdir)
230 const char *git_env_common_dir = getenv(GIT_COMMON_DIR_ENVIRONMENT);
231 if (git_env_common_dir) {
232 strbuf_addstr(sb, git_env_common_dir);
235 return get_common_dir_noenv(sb, gitdir);
239 int get_common_dir_noenv(struct strbuf *sb, const char *gitdir)
241 struct strbuf data = STRBUF_INIT;
242 struct strbuf path = STRBUF_INIT;
245 strbuf_addf(&path, "%s/commondir", gitdir);
246 if (file_exists(path.buf)) {
247 if (strbuf_read_file(&data, path.buf, 0) <= 0)
248 die_errno(_("failed to read %s"), path.buf);
249 while (data.len && (data.buf[data.len - 1] == '\n' ||
250 data.buf[data.len - 1] == '\r'))
252 data.buf[data.len] = '\0';
254 if (!is_absolute_path(data.buf))
255 strbuf_addf(&path, "%s/", gitdir);
256 strbuf_addbuf(&path, &data);
257 strbuf_addstr(sb, real_path(path.buf));
260 strbuf_addstr(sb, gitdir);
261 strbuf_release(&data);
262 strbuf_release(&path);
267 * Test if it looks like we're at a git directory.
270 * - either an objects/ directory _or_ the proper
271 * GIT_OBJECT_DIRECTORY environment variable
272 * - a refs/ directory
273 * - either a HEAD symlink or a HEAD file that is formatted as
274 * a proper "ref:", or a regular file HEAD that has a properly
275 * formatted sha1 object name.
277 int is_git_directory(const char *suspect)
279 struct strbuf path = STRBUF_INIT;
283 /* Check worktree-related signatures */
284 strbuf_addf(&path, "%s/HEAD", suspect);
285 if (validate_headref(path.buf))
289 get_common_dir(&path, suspect);
292 /* Check non-worktree-related signatures */
293 if (getenv(DB_ENVIRONMENT)) {
294 if (access(getenv(DB_ENVIRONMENT), X_OK))
298 strbuf_setlen(&path, len);
299 strbuf_addstr(&path, "/objects");
300 if (access(path.buf, X_OK))
304 strbuf_setlen(&path, len);
305 strbuf_addstr(&path, "/refs");
306 if (access(path.buf, X_OK))
311 strbuf_release(&path);
315 int is_nonbare_repository_dir(struct strbuf *path)
319 size_t orig_path_len = path->len;
320 assert(orig_path_len != 0);
321 strbuf_complete(path, '/');
322 strbuf_addstr(path, ".git");
323 if (read_gitfile_gently(path->buf, &gitfile_error) || is_git_directory(path->buf))
325 if (gitfile_error == READ_GITFILE_ERR_OPEN_FAILED ||
326 gitfile_error == READ_GITFILE_ERR_READ_FAILED)
328 strbuf_setlen(path, orig_path_len);
332 int is_inside_git_dir(void)
334 if (inside_git_dir < 0)
335 inside_git_dir = is_inside_dir(get_git_dir());
336 return inside_git_dir;
339 int is_inside_work_tree(void)
341 if (inside_work_tree < 0)
342 inside_work_tree = is_inside_dir(get_git_work_tree());
343 return inside_work_tree;
346 void setup_work_tree(void)
348 const char *work_tree, *git_dir;
349 static int initialized = 0;
354 if (work_tree_config_is_bogus)
355 die("unable to set up work tree using invalid config");
357 work_tree = get_git_work_tree();
358 git_dir = get_git_dir();
359 if (!is_absolute_path(git_dir))
360 git_dir = real_path(get_git_dir());
361 if (!work_tree || chdir(work_tree))
362 die("This operation must be run in a work tree");
365 * Make sure subsequent git processes find correct worktree
366 * if $GIT_WORK_TREE is set relative
368 if (getenv(GIT_WORK_TREE_ENVIRONMENT))
369 setenv(GIT_WORK_TREE_ENVIRONMENT, ".", 1);
371 set_git_dir(remove_leading_path(git_dir, work_tree));
375 static int check_repo_format(const char *var, const char *value, void *vdata)
377 struct repository_format *data = vdata;
380 if (strcmp(var, "core.repositoryformatversion") == 0)
381 data->version = git_config_int(var, value);
382 else if (skip_prefix(var, "extensions.", &ext)) {
384 * record any known extensions here; otherwise,
385 * we fall through to recording it as unknown, and
386 * check_repository_format will complain
388 if (!strcmp(ext, "noop"))
390 else if (!strcmp(ext, "preciousobjects"))
391 data->precious_objects = git_config_bool(var, value);
393 string_list_append(&data->unknown_extensions, ext);
394 } else if (strcmp(var, "core.bare") == 0) {
395 data->is_bare = git_config_bool(var, value);
396 } else if (strcmp(var, "core.worktree") == 0) {
398 return config_error_nonbool(var);
399 data->work_tree = xstrdup(value);
404 static int check_repository_format_gently(const char *gitdir, int *nongit_ok)
406 struct strbuf sb = STRBUF_INIT;
407 struct strbuf err = STRBUF_INIT;
408 struct repository_format candidate;
411 has_common = get_common_dir(&sb, gitdir);
412 strbuf_addstr(&sb, "/config");
413 read_repository_format(&candidate, sb.buf);
417 * For historical use of check_repository_format() in git-init,
418 * we treat a missing config as a silent "ok", even when nongit_ok
421 if (candidate.version < 0)
424 if (verify_repository_format(&candidate, &err) < 0) {
426 warning("%s", err.buf);
427 strbuf_release(&err);
434 repository_format_precious_objects = candidate.precious_objects;
435 string_list_clear(&candidate.unknown_extensions, 0);
437 if (candidate.is_bare != -1) {
438 is_bare_repository_cfg = candidate.is_bare;
439 if (is_bare_repository_cfg == 1)
440 inside_work_tree = -1;
442 if (candidate.work_tree) {
443 free(git_work_tree_cfg);
444 git_work_tree_cfg = candidate.work_tree;
445 inside_work_tree = -1;
448 free(candidate.work_tree);
454 int read_repository_format(struct repository_format *format, const char *path)
456 memset(format, 0, sizeof(*format));
457 format->version = -1;
458 format->is_bare = -1;
459 string_list_init(&format->unknown_extensions, 1);
460 git_config_from_file(check_repo_format, path, format);
461 return format->version;
464 int verify_repository_format(const struct repository_format *format,
467 if (GIT_REPO_VERSION_READ < format->version) {
468 strbuf_addf(err, _("Expected git repo version <= %d, found %d"),
469 GIT_REPO_VERSION_READ, format->version);
473 if (format->version >= 1 && format->unknown_extensions.nr) {
476 strbuf_addstr(err, _("unknown repository extensions found:"));
478 for (i = 0; i < format->unknown_extensions.nr; i++)
479 strbuf_addf(err, "\n\t%s",
480 format->unknown_extensions.items[i].string);
488 * Try to read the location of the git directory from the .git file,
489 * return path to git directory if found.
491 * On failure, if return_error_code is not NULL, return_error_code
492 * will be set to an error code and NULL will be returned. If
493 * return_error_code is NULL the function will die instead (for most
496 const char *read_gitfile_gently(const char *path, int *return_error_code)
498 const int max_file_size = 1 << 20; /* 1MB */
507 if (stat(path, &st)) {
508 error_code = READ_GITFILE_ERR_STAT_FAILED;
511 if (!S_ISREG(st.st_mode)) {
512 error_code = READ_GITFILE_ERR_NOT_A_FILE;
515 if (st.st_size > max_file_size) {
516 error_code = READ_GITFILE_ERR_TOO_LARGE;
519 fd = open(path, O_RDONLY);
521 error_code = READ_GITFILE_ERR_OPEN_FAILED;
524 buf = xmallocz(st.st_size);
525 len = read_in_full(fd, buf, st.st_size);
527 if (len != st.st_size) {
528 error_code = READ_GITFILE_ERR_READ_FAILED;
531 if (!starts_with(buf, "gitdir: ")) {
532 error_code = READ_GITFILE_ERR_INVALID_FORMAT;
535 while (buf[len - 1] == '\n' || buf[len - 1] == '\r')
538 error_code = READ_GITFILE_ERR_NO_PATH;
544 if (!is_absolute_path(dir) && (slash = strrchr(path, '/'))) {
545 size_t pathlen = slash+1 - path;
546 dir = xstrfmt("%.*s%.*s", (int)pathlen, path,
547 (int)(len - 8), buf + 8);
551 if (!is_git_directory(dir)) {
552 error_code = READ_GITFILE_ERR_NOT_A_REPO;
555 path = real_path(dir);
558 if (return_error_code)
559 *return_error_code = error_code;
560 else if (error_code) {
561 switch (error_code) {
562 case READ_GITFILE_ERR_STAT_FAILED:
563 case READ_GITFILE_ERR_NOT_A_FILE:
564 /* non-fatal; follow return path */
566 case READ_GITFILE_ERR_OPEN_FAILED:
567 die_errno("Error opening '%s'", path);
568 case READ_GITFILE_ERR_TOO_LARGE:
569 die("Too large to be a .git file: '%s'", path);
570 case READ_GITFILE_ERR_READ_FAILED:
571 die("Error reading %s", path);
572 case READ_GITFILE_ERR_INVALID_FORMAT:
573 die("Invalid gitfile format: %s", path);
574 case READ_GITFILE_ERR_NO_PATH:
575 die("No path in gitfile: %s", path);
576 case READ_GITFILE_ERR_NOT_A_REPO:
577 die("Not a git repository: %s", dir);
584 return error_code ? NULL : path;
587 static const char *setup_explicit_git_dir(const char *gitdirenv,
591 const char *work_tree_env = getenv(GIT_WORK_TREE_ENVIRONMENT);
592 const char *worktree;
596 if (PATH_MAX - 40 < strlen(gitdirenv))
597 die("'$%s' too big", GIT_DIR_ENVIRONMENT);
599 gitfile = (char*)read_gitfile(gitdirenv);
601 gitfile = xstrdup(gitfile);
605 if (!is_git_directory(gitdirenv)) {
611 die("Not a git repository: '%s'", gitdirenv);
614 if (check_repository_format_gently(gitdirenv, nongit_ok)) {
619 /* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */
621 set_git_work_tree(work_tree_env);
622 else if (is_bare_repository_cfg > 0) {
623 if (git_work_tree_cfg) {
625 warning("core.bare and core.worktree do not make sense");
626 work_tree_config_is_bogus = 1;
630 set_git_dir(gitdirenv);
634 else if (git_work_tree_cfg) { /* #6, #14 */
635 if (is_absolute_path(git_work_tree_cfg))
636 set_git_work_tree(git_work_tree_cfg);
639 if (chdir(gitdirenv))
640 die_errno("Could not chdir to '%s'", gitdirenv);
641 if (chdir(git_work_tree_cfg))
642 die_errno("Could not chdir to '%s'", git_work_tree_cfg);
643 core_worktree = xgetcwd();
645 die_errno("Could not come back to cwd");
646 set_git_work_tree(core_worktree);
650 else if (!git_env_bool(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, 1)) {
652 set_git_dir(gitdirenv);
657 set_git_work_tree(".");
659 /* set_git_work_tree() must have been called by now */
660 worktree = get_git_work_tree();
662 /* both get_git_work_tree() and cwd are already normalized */
663 if (!strcmp(cwd->buf, worktree)) { /* cwd == worktree */
664 set_git_dir(gitdirenv);
669 offset = dir_inside_of(cwd->buf, worktree);
670 if (offset >= 0) { /* cwd inside worktree? */
671 set_git_dir(real_path(gitdirenv));
673 die_errno("Could not chdir to '%s'", worktree);
674 strbuf_addch(cwd, '/');
676 return cwd->buf + offset;
679 /* cwd outside worktree */
680 set_git_dir(gitdirenv);
685 static const char *setup_discovered_git_dir(const char *gitdir,
686 struct strbuf *cwd, int offset,
689 if (check_repository_format_gently(gitdir, nongit_ok))
692 /* --work-tree is set without --git-dir; use discovered one */
693 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
694 if (offset != cwd->len && !is_absolute_path(gitdir))
695 gitdir = xstrdup(real_path(gitdir));
697 die_errno("Could not come back to cwd");
698 return setup_explicit_git_dir(gitdir, cwd, nongit_ok);
701 /* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */
702 if (is_bare_repository_cfg > 0) {
703 set_git_dir(offset == cwd->len ? gitdir : real_path(gitdir));
705 die_errno("Could not come back to cwd");
709 /* #0, #1, #5, #8, #9, #12, #13 */
710 set_git_work_tree(".");
711 if (strcmp(gitdir, DEFAULT_GIT_DIR_ENVIRONMENT))
714 inside_work_tree = 1;
715 if (offset == cwd->len)
718 /* Make "offset" point to past the '/', and add a '/' at the end */
720 strbuf_addch(cwd, '/');
721 return cwd->buf + offset;
724 /* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */
725 static const char *setup_bare_git_dir(struct strbuf *cwd, int offset,
730 if (check_repository_format_gently(".", nongit_ok))
733 setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, "0", 1);
735 /* --work-tree is set without --git-dir; use discovered one */
736 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
739 gitdir = offset == cwd->len ? "." : xmemdupz(cwd->buf, offset);
741 die_errno("Could not come back to cwd");
742 return setup_explicit_git_dir(gitdir, cwd, nongit_ok);
746 inside_work_tree = 0;
747 if (offset != cwd->len) {
749 die_errno("Cannot come back to cwd");
750 root_len = offset_1st_component(cwd->buf);
751 strbuf_setlen(cwd, offset > root_len ? offset : root_len);
752 set_git_dir(cwd->buf);
759 static const char *setup_nongit(const char *cwd, int *nongit_ok)
762 die(_("Not a git repository (or any of the parent directories): %s"), DEFAULT_GIT_DIR_ENVIRONMENT);
764 die_errno(_("Cannot come back to cwd"));
769 static dev_t get_device_or_die(const char *path, const char *prefix, int prefix_len)
772 if (stat(path, &buf)) {
773 die_errno("failed to stat '%*s%s%s'",
775 prefix ? prefix : "",
776 prefix ? "/" : "", path);
782 * A "string_list_each_func_t" function that canonicalizes an entry
783 * from GIT_CEILING_DIRECTORIES using real_path_if_valid(), or
784 * discards it if unusable. The presence of an empty entry in
785 * GIT_CEILING_DIRECTORIES turns off canonicalization for all
786 * subsequent entries.
788 static int canonicalize_ceiling_entry(struct string_list_item *item,
791 int *empty_entry_found = cb_data;
792 char *ceil = item->string;
795 *empty_entry_found = 1;
797 } else if (!is_absolute_path(ceil)) {
799 } else if (*empty_entry_found) {
800 /* Keep entry but do not canonicalize it */
803 const char *real_path = real_path_if_valid(ceil);
807 item->string = xstrdup(real_path);
813 * We cannot decide in this function whether we are in the work tree or
814 * not, since the config can only be read _after_ this function was called.
816 static const char *setup_git_directory_gently_1(int *nongit_ok)
818 const char *env_ceiling_dirs = getenv(CEILING_DIRECTORIES_ENVIRONMENT);
819 struct string_list ceiling_dirs = STRING_LIST_INIT_DUP;
820 static struct strbuf cwd = STRBUF_INIT;
821 const char *gitdirenv, *ret;
823 int offset, offset_parent, ceil_offset = -1;
824 dev_t current_device = 0;
825 int one_filesystem = 1;
828 * We may have read an incomplete configuration before
829 * setting-up the git directory. If so, clear the cache so
830 * that the next queries to the configuration reload complete
831 * configuration (including the per-repo config file that we
832 * ignored previously).
837 * Let's assume that we are in a git repository.
838 * If it turns out later that we are somewhere else, the value will be
839 * updated accordingly.
844 if (strbuf_getcwd(&cwd))
845 die_errno(_("Unable to read current working directory"));
849 * If GIT_DIR is set explicitly, we're not going
850 * to do any discovery, but we still do repository
853 gitdirenv = getenv(GIT_DIR_ENVIRONMENT);
855 return setup_explicit_git_dir(gitdirenv, &cwd, nongit_ok);
857 if (env_ceiling_dirs) {
858 int empty_entry_found = 0;
860 string_list_split(&ceiling_dirs, env_ceiling_dirs, PATH_SEP, -1);
861 filter_string_list(&ceiling_dirs, 0,
862 canonicalize_ceiling_entry, &empty_entry_found);
863 ceil_offset = longest_ancestor_length(cwd.buf, &ceiling_dirs);
864 string_list_clear(&ceiling_dirs, 0);
867 if (ceil_offset < 0 && has_dos_drive_prefix(cwd.buf))
871 * Test in the following order (relative to the cwd):
872 * - .git (file containing "gitdir: <path>")
881 one_filesystem = !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM", 0);
883 current_device = get_device_or_die(".", NULL, 0);
885 gitfile = (char*)read_gitfile(DEFAULT_GIT_DIR_ENVIRONMENT);
887 gitdirenv = gitfile = xstrdup(gitfile);
889 if (is_git_directory(DEFAULT_GIT_DIR_ENVIRONMENT))
890 gitdirenv = DEFAULT_GIT_DIR_ENVIRONMENT;
894 ret = setup_discovered_git_dir(gitdirenv,
902 if (is_git_directory("."))
903 return setup_bare_git_dir(&cwd, offset, nongit_ok);
905 offset_parent = offset;
906 while (--offset_parent > ceil_offset && cwd.buf[offset_parent] != '/');
907 if (offset_parent <= ceil_offset)
908 return setup_nongit(cwd.buf, nongit_ok);
909 if (one_filesystem) {
910 dev_t parent_device = get_device_or_die("..", cwd.buf,
912 if (parent_device != current_device) {
915 die_errno(_("Cannot come back to cwd"));
919 strbuf_setlen(&cwd, offset);
920 die(_("Not a git repository (or any parent up to mount point %s)\n"
921 "Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set)."),
926 strbuf_setlen(&cwd, offset);
927 die_errno(_("Cannot change to '%s/..'"), cwd.buf);
929 offset = offset_parent;
933 const char *setup_git_directory_gently(int *nongit_ok)
937 prefix = setup_git_directory_gently_1(nongit_ok);
939 setenv(GIT_PREFIX_ENVIRONMENT, prefix, 1);
941 setenv(GIT_PREFIX_ENVIRONMENT, "", 1);
943 startup_info->have_repository = !nongit_ok || !*nongit_ok;
944 startup_info->prefix = prefix;
949 int git_config_perm(const char *var, const char *value)
957 if (!strcmp(value, "umask"))
959 if (!strcmp(value, "group"))
961 if (!strcmp(value, "all") ||
962 !strcmp(value, "world") ||
963 !strcmp(value, "everybody"))
964 return PERM_EVERYBODY;
966 /* Parse octal numbers */
967 i = strtol(value, &endptr, 8);
969 /* If not an octal number, maybe true/false? */
971 return git_config_bool(var, value) ? PERM_GROUP : PERM_UMASK;
974 * Treat values 0, 1 and 2 as compatibility cases, otherwise it is
975 * a chmod value to restrict to.
978 case PERM_UMASK: /* 0 */
980 case OLD_PERM_GROUP: /* 1 */
982 case OLD_PERM_EVERYBODY: /* 2 */
983 return PERM_EVERYBODY;
986 /* A filemode value was given: 0xxx */
988 if ((i & 0600) != 0600)
989 die(_("Problem with core.sharedRepository filemode value "
990 "(0%.3o).\nThe owner of files must always have "
991 "read and write permissions."), i);
994 * Mask filemode value. Others can not get write permission.
995 * x flags for directories are handled separately.
1000 void check_repository_format(void)
1002 check_repository_format_gently(get_git_dir(), NULL);
1003 startup_info->have_repository = 1;
1007 * Returns the "prefix", a path to the current working directory
1008 * relative to the work tree root, or NULL, if the current working
1009 * directory is not a strict subdirectory of the work tree root. The
1010 * prefix always ends with a '/' character.
1012 const char *setup_git_directory(void)
1014 return setup_git_directory_gently(NULL);
1017 const char *resolve_gitdir(const char *suspect)
1019 if (is_git_directory(suspect))
1021 return read_gitfile(suspect);
1024 /* if any standard file descriptor is missing open it to /dev/null */
1025 void sanitize_stdfds(void)
1027 int fd = open("/dev/null", O_RDWR, 0);
1028 while (fd != -1 && fd < 2)
1031 die_errno("open /dev/null or dup failed");
1038 #ifdef NO_POSIX_GOODIES
1046 die_errno("fork failed");
1051 die_errno("setsid failed");