]> git.ipfire.org Git - thirdparty/git.git/blob - setup.c
Sync with 2.31.4
[thirdparty/git.git] / setup.c
1 #include "cache.h"
2 #include "repository.h"
3 #include "config.h"
4 #include "dir.h"
5 #include "string-list.h"
6 #include "chdir-notify.h"
7 #include "promisor-remote.h"
8 #include "quote.h"
9
10 static int inside_git_dir = -1;
11 static int inside_work_tree = -1;
12 static int work_tree_config_is_bogus;
13
14 static struct startup_info the_startup_info;
15 struct startup_info *startup_info = &the_startup_info;
16
17 /*
18 * The input parameter must contain an absolute path, and it must already be
19 * normalized.
20 *
21 * Find the part of an absolute path that lies inside the work tree by
22 * dereferencing symlinks outside the work tree, for example:
23 * /dir1/repo/dir2/file (work tree is /dir1/repo) -> dir2/file
24 * /dir/file (work tree is /) -> dir/file
25 * /dir/symlink1/symlink2 (symlink1 points to work tree) -> symlink2
26 * /dir/repolink/file (repolink points to /dir/repo) -> file
27 * /dir/repo (exactly equal to work tree) -> (empty string)
28 */
29 static int abspath_part_inside_repo(char *path)
30 {
31 size_t len;
32 size_t wtlen;
33 char *path0;
34 int off;
35 const char *work_tree = get_git_work_tree();
36 struct strbuf realpath = STRBUF_INIT;
37
38 if (!work_tree)
39 return -1;
40 wtlen = strlen(work_tree);
41 len = strlen(path);
42 off = offset_1st_component(path);
43
44 /* check if work tree is already the prefix */
45 if (wtlen <= len && !fspathncmp(path, work_tree, wtlen)) {
46 if (path[wtlen] == '/') {
47 memmove(path, path + wtlen + 1, len - wtlen);
48 return 0;
49 } else if (path[wtlen - 1] == '/' || path[wtlen] == '\0') {
50 /* work tree is the root, or the whole path */
51 memmove(path, path + wtlen, len - wtlen + 1);
52 return 0;
53 }
54 /* work tree might match beginning of a symlink to work tree */
55 off = wtlen;
56 }
57 path0 = path;
58 path += off;
59
60 /* check each '/'-terminated level */
61 while (*path) {
62 path++;
63 if (*path == '/') {
64 *path = '\0';
65 strbuf_realpath(&realpath, path0, 1);
66 if (fspathcmp(realpath.buf, work_tree) == 0) {
67 memmove(path0, path + 1, len - (path - path0));
68 strbuf_release(&realpath);
69 return 0;
70 }
71 *path = '/';
72 }
73 }
74
75 /* check whole path */
76 strbuf_realpath(&realpath, path0, 1);
77 if (fspathcmp(realpath.buf, work_tree) == 0) {
78 *path0 = '\0';
79 strbuf_release(&realpath);
80 return 0;
81 }
82
83 strbuf_release(&realpath);
84 return -1;
85 }
86
87 /*
88 * Normalize "path", prepending the "prefix" for relative paths. If
89 * remaining_prefix is not NULL, return the actual prefix still
90 * remains in the path. For example, prefix = sub1/sub2/ and path is
91 *
92 * foo -> sub1/sub2/foo (full prefix)
93 * ../foo -> sub1/foo (remaining prefix is sub1/)
94 * ../../bar -> bar (no remaining prefix)
95 * ../../sub1/sub2/foo -> sub1/sub2/foo (but no remaining prefix)
96 * `pwd`/../bar -> sub1/bar (no remaining prefix)
97 */
98 char *prefix_path_gently(const char *prefix, int len,
99 int *remaining_prefix, const char *path)
100 {
101 const char *orig = path;
102 char *sanitized;
103 if (is_absolute_path(orig)) {
104 sanitized = xmallocz(strlen(path));
105 if (remaining_prefix)
106 *remaining_prefix = 0;
107 if (normalize_path_copy_len(sanitized, path, remaining_prefix)) {
108 free(sanitized);
109 return NULL;
110 }
111 if (abspath_part_inside_repo(sanitized)) {
112 free(sanitized);
113 return NULL;
114 }
115 } else {
116 sanitized = xstrfmt("%.*s%s", len, len ? prefix : "", path);
117 if (remaining_prefix)
118 *remaining_prefix = len;
119 if (normalize_path_copy_len(sanitized, sanitized, remaining_prefix)) {
120 free(sanitized);
121 return NULL;
122 }
123 }
124 return sanitized;
125 }
126
127 char *prefix_path(const char *prefix, int len, const char *path)
128 {
129 char *r = prefix_path_gently(prefix, len, NULL, path);
130 if (!r) {
131 const char *hint_path = get_git_work_tree();
132 if (!hint_path)
133 hint_path = get_git_dir();
134 die(_("'%s' is outside repository at '%s'"), path,
135 absolute_path(hint_path));
136 }
137 return r;
138 }
139
140 int path_inside_repo(const char *prefix, const char *path)
141 {
142 int len = prefix ? strlen(prefix) : 0;
143 char *r = prefix_path_gently(prefix, len, NULL, path);
144 if (r) {
145 free(r);
146 return 1;
147 }
148 return 0;
149 }
150
151 int check_filename(const char *prefix, const char *arg)
152 {
153 char *to_free = NULL;
154 struct stat st;
155
156 if (skip_prefix(arg, ":/", &arg)) {
157 if (!*arg) /* ":/" is root dir, always exists */
158 return 1;
159 prefix = NULL;
160 } else if (skip_prefix(arg, ":!", &arg) ||
161 skip_prefix(arg, ":^", &arg)) {
162 if (!*arg) /* excluding everything is silly, but allowed */
163 return 1;
164 }
165
166 if (prefix)
167 arg = to_free = prefix_filename(prefix, arg);
168
169 if (!lstat(arg, &st)) {
170 free(to_free);
171 return 1; /* file exists */
172 }
173 if (is_missing_file_error(errno)) {
174 free(to_free);
175 return 0; /* file does not exist */
176 }
177 die_errno(_("failed to stat '%s'"), arg);
178 }
179
180 static void NORETURN die_verify_filename(struct repository *r,
181 const char *prefix,
182 const char *arg,
183 int diagnose_misspelt_rev)
184 {
185 if (!diagnose_misspelt_rev)
186 die(_("%s: no such path in the working tree.\n"
187 "Use 'git <command> -- <path>...' to specify paths that do not exist locally."),
188 arg);
189 /*
190 * Saying "'(icase)foo' does not exist in the index" when the
191 * user gave us ":(icase)foo" is just stupid. A magic pathspec
192 * begins with a colon and is followed by a non-alnum; do not
193 * let maybe_die_on_misspelt_object_name() even trigger.
194 */
195 if (!(arg[0] == ':' && !isalnum(arg[1])))
196 maybe_die_on_misspelt_object_name(r, arg, prefix);
197
198 /* ... or fall back the most general message. */
199 die(_("ambiguous argument '%s': unknown revision or path not in the working tree.\n"
200 "Use '--' to separate paths from revisions, like this:\n"
201 "'git <command> [<revision>...] -- [<file>...]'"), arg);
202
203 }
204
205 /*
206 * Check for arguments that don't resolve as actual files,
207 * but which look sufficiently like pathspecs that we'll consider
208 * them such for the purposes of rev/pathspec DWIM parsing.
209 */
210 static int looks_like_pathspec(const char *arg)
211 {
212 const char *p;
213 int escaped = 0;
214
215 /*
216 * Wildcard characters imply the user is looking to match pathspecs
217 * that aren't in the filesystem. Note that this doesn't include
218 * backslash even though it's a glob special; by itself it doesn't
219 * cause any increase in the match. Likewise ignore backslash-escaped
220 * wildcard characters.
221 */
222 for (p = arg; *p; p++) {
223 if (escaped) {
224 escaped = 0;
225 } else if (is_glob_special(*p)) {
226 if (*p == '\\')
227 escaped = 1;
228 else
229 return 1;
230 }
231 }
232
233 /* long-form pathspec magic */
234 if (starts_with(arg, ":("))
235 return 1;
236
237 return 0;
238 }
239
240 /*
241 * Verify a filename that we got as an argument for a pathspec
242 * entry. Note that a filename that begins with "-" never verifies
243 * as true, because even if such a filename were to exist, we want
244 * it to be preceded by the "--" marker (or we want the user to
245 * use a format like "./-filename")
246 *
247 * The "diagnose_misspelt_rev" is used to provide a user-friendly
248 * diagnosis when dying upon finding that "name" is not a pathname.
249 * If set to 1, the diagnosis will try to diagnose "name" as an
250 * invalid object name (e.g. HEAD:foo). If set to 0, the diagnosis
251 * will only complain about an inexisting file.
252 *
253 * This function is typically called to check that a "file or rev"
254 * argument is unambiguous. In this case, the caller will want
255 * diagnose_misspelt_rev == 1 when verifying the first non-rev
256 * argument (which could have been a revision), and
257 * diagnose_misspelt_rev == 0 for the next ones (because we already
258 * saw a filename, there's not ambiguity anymore).
259 */
260 void verify_filename(const char *prefix,
261 const char *arg,
262 int diagnose_misspelt_rev)
263 {
264 if (*arg == '-')
265 die(_("option '%s' must come before non-option arguments"), arg);
266 if (looks_like_pathspec(arg) || check_filename(prefix, arg))
267 return;
268 die_verify_filename(the_repository, prefix, arg, diagnose_misspelt_rev);
269 }
270
271 /*
272 * Opposite of the above: the command line did not have -- marker
273 * and we parsed the arg as a refname. It should not be interpretable
274 * as a filename.
275 */
276 void verify_non_filename(const char *prefix, const char *arg)
277 {
278 if (!is_inside_work_tree() || is_inside_git_dir())
279 return;
280 if (*arg == '-')
281 return; /* flag */
282 if (!check_filename(prefix, arg))
283 return;
284 die(_("ambiguous argument '%s': both revision and filename\n"
285 "Use '--' to separate paths from revisions, like this:\n"
286 "'git <command> [<revision>...] -- [<file>...]'"), arg);
287 }
288
289 int get_common_dir(struct strbuf *sb, const char *gitdir)
290 {
291 const char *git_env_common_dir = getenv(GIT_COMMON_DIR_ENVIRONMENT);
292 if (git_env_common_dir) {
293 strbuf_addstr(sb, git_env_common_dir);
294 return 1;
295 } else {
296 return get_common_dir_noenv(sb, gitdir);
297 }
298 }
299
300 int get_common_dir_noenv(struct strbuf *sb, const char *gitdir)
301 {
302 struct strbuf data = STRBUF_INIT;
303 struct strbuf path = STRBUF_INIT;
304 int ret = 0;
305
306 strbuf_addf(&path, "%s/commondir", gitdir);
307 if (file_exists(path.buf)) {
308 if (strbuf_read_file(&data, path.buf, 0) <= 0)
309 die_errno(_("failed to read %s"), path.buf);
310 while (data.len && (data.buf[data.len - 1] == '\n' ||
311 data.buf[data.len - 1] == '\r'))
312 data.len--;
313 data.buf[data.len] = '\0';
314 strbuf_reset(&path);
315 if (!is_absolute_path(data.buf))
316 strbuf_addf(&path, "%s/", gitdir);
317 strbuf_addbuf(&path, &data);
318 strbuf_add_real_path(sb, path.buf);
319 ret = 1;
320 } else {
321 strbuf_addstr(sb, gitdir);
322 }
323
324 strbuf_release(&data);
325 strbuf_release(&path);
326 return ret;
327 }
328
329 /*
330 * Test if it looks like we're at a git directory.
331 * We want to see:
332 *
333 * - either an objects/ directory _or_ the proper
334 * GIT_OBJECT_DIRECTORY environment variable
335 * - a refs/ directory
336 * - either a HEAD symlink or a HEAD file that is formatted as
337 * a proper "ref:", or a regular file HEAD that has a properly
338 * formatted sha1 object name.
339 */
340 int is_git_directory(const char *suspect)
341 {
342 struct strbuf path = STRBUF_INIT;
343 int ret = 0;
344 size_t len;
345
346 /* Check worktree-related signatures */
347 strbuf_addstr(&path, suspect);
348 strbuf_complete(&path, '/');
349 strbuf_addstr(&path, "HEAD");
350 if (validate_headref(path.buf))
351 goto done;
352
353 strbuf_reset(&path);
354 get_common_dir(&path, suspect);
355 len = path.len;
356
357 /* Check non-worktree-related signatures */
358 if (getenv(DB_ENVIRONMENT)) {
359 if (access(getenv(DB_ENVIRONMENT), X_OK))
360 goto done;
361 }
362 else {
363 strbuf_setlen(&path, len);
364 strbuf_addstr(&path, "/objects");
365 if (access(path.buf, X_OK))
366 goto done;
367 }
368
369 strbuf_setlen(&path, len);
370 strbuf_addstr(&path, "/refs");
371 if (access(path.buf, X_OK))
372 goto done;
373
374 ret = 1;
375 done:
376 strbuf_release(&path);
377 return ret;
378 }
379
380 int is_nonbare_repository_dir(struct strbuf *path)
381 {
382 int ret = 0;
383 int gitfile_error;
384 size_t orig_path_len = path->len;
385 assert(orig_path_len != 0);
386 strbuf_complete(path, '/');
387 strbuf_addstr(path, ".git");
388 if (read_gitfile_gently(path->buf, &gitfile_error) || is_git_directory(path->buf))
389 ret = 1;
390 if (gitfile_error == READ_GITFILE_ERR_OPEN_FAILED ||
391 gitfile_error == READ_GITFILE_ERR_READ_FAILED)
392 ret = 1;
393 strbuf_setlen(path, orig_path_len);
394 return ret;
395 }
396
397 int is_inside_git_dir(void)
398 {
399 if (inside_git_dir < 0)
400 inside_git_dir = is_inside_dir(get_git_dir());
401 return inside_git_dir;
402 }
403
404 int is_inside_work_tree(void)
405 {
406 if (inside_work_tree < 0)
407 inside_work_tree = is_inside_dir(get_git_work_tree());
408 return inside_work_tree;
409 }
410
411 void setup_work_tree(void)
412 {
413 const char *work_tree;
414 static int initialized = 0;
415
416 if (initialized)
417 return;
418
419 if (work_tree_config_is_bogus)
420 die(_("unable to set up work tree using invalid config"));
421
422 work_tree = get_git_work_tree();
423 if (!work_tree || chdir_notify(work_tree))
424 die(_("this operation must be run in a work tree"));
425
426 /*
427 * Make sure subsequent git processes find correct worktree
428 * if $GIT_WORK_TREE is set relative
429 */
430 if (getenv(GIT_WORK_TREE_ENVIRONMENT))
431 setenv(GIT_WORK_TREE_ENVIRONMENT, ".", 1);
432
433 initialized = 1;
434 }
435
436 static int read_worktree_config(const char *var, const char *value, void *vdata)
437 {
438 struct repository_format *data = vdata;
439
440 if (strcmp(var, "core.bare") == 0) {
441 data->is_bare = git_config_bool(var, value);
442 } else if (strcmp(var, "core.worktree") == 0) {
443 if (!value)
444 return config_error_nonbool(var);
445 free(data->work_tree);
446 data->work_tree = xstrdup(value);
447 }
448 return 0;
449 }
450
451 enum extension_result {
452 EXTENSION_ERROR = -1, /* compatible with error(), etc */
453 EXTENSION_UNKNOWN = 0,
454 EXTENSION_OK = 1
455 };
456
457 /*
458 * Do not add new extensions to this function. It handles extensions which are
459 * respected even in v0-format repositories for historical compatibility.
460 */
461 static enum extension_result handle_extension_v0(const char *var,
462 const char *value,
463 const char *ext,
464 struct repository_format *data)
465 {
466 if (!strcmp(ext, "noop")) {
467 return EXTENSION_OK;
468 } else if (!strcmp(ext, "preciousobjects")) {
469 data->precious_objects = git_config_bool(var, value);
470 return EXTENSION_OK;
471 } else if (!strcmp(ext, "partialclone")) {
472 if (!value)
473 return config_error_nonbool(var);
474 data->partial_clone = xstrdup(value);
475 return EXTENSION_OK;
476 } else if (!strcmp(ext, "worktreeconfig")) {
477 data->worktree_config = git_config_bool(var, value);
478 return EXTENSION_OK;
479 }
480
481 return EXTENSION_UNKNOWN;
482 }
483
484 /*
485 * Record any new extensions in this function.
486 */
487 static enum extension_result handle_extension(const char *var,
488 const char *value,
489 const char *ext,
490 struct repository_format *data)
491 {
492 if (!strcmp(ext, "noop-v1")) {
493 return EXTENSION_OK;
494 } else if (!strcmp(ext, "objectformat")) {
495 int format;
496
497 if (!value)
498 return config_error_nonbool(var);
499 format = hash_algo_by_name(value);
500 if (format == GIT_HASH_UNKNOWN)
501 return error("invalid value for 'extensions.objectformat'");
502 data->hash_algo = format;
503 return EXTENSION_OK;
504 }
505 return EXTENSION_UNKNOWN;
506 }
507
508 static int check_repo_format(const char *var, const char *value, void *vdata)
509 {
510 struct repository_format *data = vdata;
511 const char *ext;
512
513 if (strcmp(var, "core.repositoryformatversion") == 0)
514 data->version = git_config_int(var, value);
515 else if (skip_prefix(var, "extensions.", &ext)) {
516 switch (handle_extension_v0(var, value, ext, data)) {
517 case EXTENSION_ERROR:
518 return -1;
519 case EXTENSION_OK:
520 return 0;
521 case EXTENSION_UNKNOWN:
522 break;
523 }
524
525 switch (handle_extension(var, value, ext, data)) {
526 case EXTENSION_ERROR:
527 return -1;
528 case EXTENSION_OK:
529 string_list_append(&data->v1_only_extensions, ext);
530 return 0;
531 case EXTENSION_UNKNOWN:
532 string_list_append(&data->unknown_extensions, ext);
533 return 0;
534 }
535 }
536
537 return read_worktree_config(var, value, vdata);
538 }
539
540 static int check_repository_format_gently(const char *gitdir, struct repository_format *candidate, int *nongit_ok)
541 {
542 struct strbuf sb = STRBUF_INIT;
543 struct strbuf err = STRBUF_INIT;
544 int has_common;
545
546 has_common = get_common_dir(&sb, gitdir);
547 strbuf_addstr(&sb, "/config");
548 read_repository_format(candidate, sb.buf);
549 strbuf_release(&sb);
550
551 /*
552 * For historical use of check_repository_format() in git-init,
553 * we treat a missing config as a silent "ok", even when nongit_ok
554 * is unset.
555 */
556 if (candidate->version < 0)
557 return 0;
558
559 if (verify_repository_format(candidate, &err) < 0) {
560 if (nongit_ok) {
561 warning("%s", err.buf);
562 strbuf_release(&err);
563 *nongit_ok = -1;
564 return -1;
565 }
566 die("%s", err.buf);
567 }
568
569 repository_format_precious_objects = candidate->precious_objects;
570 set_repository_format_partial_clone(candidate->partial_clone);
571 repository_format_worktree_config = candidate->worktree_config;
572 string_list_clear(&candidate->unknown_extensions, 0);
573 string_list_clear(&candidate->v1_only_extensions, 0);
574
575 if (repository_format_worktree_config) {
576 /*
577 * pick up core.bare and core.worktree from per-worktree
578 * config if present
579 */
580 strbuf_addf(&sb, "%s/config.worktree", gitdir);
581 git_config_from_file(read_worktree_config, sb.buf, candidate);
582 strbuf_release(&sb);
583 has_common = 0;
584 }
585
586 if (!has_common) {
587 if (candidate->is_bare != -1) {
588 is_bare_repository_cfg = candidate->is_bare;
589 if (is_bare_repository_cfg == 1)
590 inside_work_tree = -1;
591 }
592 if (candidate->work_tree) {
593 free(git_work_tree_cfg);
594 git_work_tree_cfg = xstrdup(candidate->work_tree);
595 inside_work_tree = -1;
596 }
597 }
598
599 return 0;
600 }
601
602 int upgrade_repository_format(int target_version)
603 {
604 struct strbuf sb = STRBUF_INIT;
605 struct strbuf err = STRBUF_INIT;
606 struct strbuf repo_version = STRBUF_INIT;
607 struct repository_format repo_fmt = REPOSITORY_FORMAT_INIT;
608
609 strbuf_git_common_path(&sb, the_repository, "config");
610 read_repository_format(&repo_fmt, sb.buf);
611 strbuf_release(&sb);
612
613 if (repo_fmt.version >= target_version)
614 return 0;
615
616 if (verify_repository_format(&repo_fmt, &err) < 0) {
617 error("cannot upgrade repository format from %d to %d: %s",
618 repo_fmt.version, target_version, err.buf);
619 strbuf_release(&err);
620 return -1;
621 }
622 if (!repo_fmt.version && repo_fmt.unknown_extensions.nr)
623 return error("cannot upgrade repository format: "
624 "unknown extension %s",
625 repo_fmt.unknown_extensions.items[0].string);
626
627 strbuf_addf(&repo_version, "%d", target_version);
628 git_config_set("core.repositoryformatversion", repo_version.buf);
629 strbuf_release(&repo_version);
630 return 1;
631 }
632
633 static void init_repository_format(struct repository_format *format)
634 {
635 const struct repository_format fresh = REPOSITORY_FORMAT_INIT;
636
637 memcpy(format, &fresh, sizeof(fresh));
638 }
639
640 int read_repository_format(struct repository_format *format, const char *path)
641 {
642 clear_repository_format(format);
643 git_config_from_file(check_repo_format, path, format);
644 if (format->version == -1)
645 clear_repository_format(format);
646 return format->version;
647 }
648
649 void clear_repository_format(struct repository_format *format)
650 {
651 string_list_clear(&format->unknown_extensions, 0);
652 string_list_clear(&format->v1_only_extensions, 0);
653 free(format->work_tree);
654 free(format->partial_clone);
655 init_repository_format(format);
656 }
657
658 int verify_repository_format(const struct repository_format *format,
659 struct strbuf *err)
660 {
661 if (GIT_REPO_VERSION_READ < format->version) {
662 strbuf_addf(err, _("Expected git repo version <= %d, found %d"),
663 GIT_REPO_VERSION_READ, format->version);
664 return -1;
665 }
666
667 if (format->version >= 1 && format->unknown_extensions.nr) {
668 int i;
669
670 strbuf_addstr(err, _("unknown repository extensions found:"));
671
672 for (i = 0; i < format->unknown_extensions.nr; i++)
673 strbuf_addf(err, "\n\t%s",
674 format->unknown_extensions.items[i].string);
675 return -1;
676 }
677
678 if (format->version == 0 && format->v1_only_extensions.nr) {
679 int i;
680
681 strbuf_addstr(err,
682 _("repo version is 0, but v1-only extensions found:"));
683
684 for (i = 0; i < format->v1_only_extensions.nr; i++)
685 strbuf_addf(err, "\n\t%s",
686 format->v1_only_extensions.items[i].string);
687 return -1;
688 }
689
690 return 0;
691 }
692
693 void read_gitfile_error_die(int error_code, const char *path, const char *dir)
694 {
695 switch (error_code) {
696 case READ_GITFILE_ERR_STAT_FAILED:
697 case READ_GITFILE_ERR_NOT_A_FILE:
698 /* non-fatal; follow return path */
699 break;
700 case READ_GITFILE_ERR_OPEN_FAILED:
701 die_errno(_("error opening '%s'"), path);
702 case READ_GITFILE_ERR_TOO_LARGE:
703 die(_("too large to be a .git file: '%s'"), path);
704 case READ_GITFILE_ERR_READ_FAILED:
705 die(_("error reading %s"), path);
706 case READ_GITFILE_ERR_INVALID_FORMAT:
707 die(_("invalid gitfile format: %s"), path);
708 case READ_GITFILE_ERR_NO_PATH:
709 die(_("no path in gitfile: %s"), path);
710 case READ_GITFILE_ERR_NOT_A_REPO:
711 die(_("not a git repository: %s"), dir);
712 default:
713 BUG("unknown error code");
714 }
715 }
716
717 /*
718 * Try to read the location of the git directory from the .git file,
719 * return path to git directory if found. The return value comes from
720 * a shared buffer.
721 *
722 * On failure, if return_error_code is not NULL, return_error_code
723 * will be set to an error code and NULL will be returned. If
724 * return_error_code is NULL the function will die instead (for most
725 * cases).
726 */
727 const char *read_gitfile_gently(const char *path, int *return_error_code)
728 {
729 const int max_file_size = 1 << 20; /* 1MB */
730 int error_code = 0;
731 char *buf = NULL;
732 char *dir = NULL;
733 const char *slash;
734 struct stat st;
735 int fd;
736 ssize_t len;
737 static struct strbuf realpath = STRBUF_INIT;
738
739 if (stat(path, &st)) {
740 /* NEEDSWORK: discern between ENOENT vs other errors */
741 error_code = READ_GITFILE_ERR_STAT_FAILED;
742 goto cleanup_return;
743 }
744 if (!S_ISREG(st.st_mode)) {
745 error_code = READ_GITFILE_ERR_NOT_A_FILE;
746 goto cleanup_return;
747 }
748 if (st.st_size > max_file_size) {
749 error_code = READ_GITFILE_ERR_TOO_LARGE;
750 goto cleanup_return;
751 }
752 fd = open(path, O_RDONLY);
753 if (fd < 0) {
754 error_code = READ_GITFILE_ERR_OPEN_FAILED;
755 goto cleanup_return;
756 }
757 buf = xmallocz(st.st_size);
758 len = read_in_full(fd, buf, st.st_size);
759 close(fd);
760 if (len != st.st_size) {
761 error_code = READ_GITFILE_ERR_READ_FAILED;
762 goto cleanup_return;
763 }
764 if (!starts_with(buf, "gitdir: ")) {
765 error_code = READ_GITFILE_ERR_INVALID_FORMAT;
766 goto cleanup_return;
767 }
768 while (buf[len - 1] == '\n' || buf[len - 1] == '\r')
769 len--;
770 if (len < 9) {
771 error_code = READ_GITFILE_ERR_NO_PATH;
772 goto cleanup_return;
773 }
774 buf[len] = '\0';
775 dir = buf + 8;
776
777 if (!is_absolute_path(dir) && (slash = strrchr(path, '/'))) {
778 size_t pathlen = slash+1 - path;
779 dir = xstrfmt("%.*s%.*s", (int)pathlen, path,
780 (int)(len - 8), buf + 8);
781 free(buf);
782 buf = dir;
783 }
784 if (!is_git_directory(dir)) {
785 error_code = READ_GITFILE_ERR_NOT_A_REPO;
786 goto cleanup_return;
787 }
788
789 strbuf_realpath(&realpath, dir, 1);
790 path = realpath.buf;
791
792 cleanup_return:
793 if (return_error_code)
794 *return_error_code = error_code;
795 else if (error_code)
796 read_gitfile_error_die(error_code, path, dir);
797
798 free(buf);
799 return error_code ? NULL : path;
800 }
801
802 static const char *setup_explicit_git_dir(const char *gitdirenv,
803 struct strbuf *cwd,
804 struct repository_format *repo_fmt,
805 int *nongit_ok)
806 {
807 const char *work_tree_env = getenv(GIT_WORK_TREE_ENVIRONMENT);
808 const char *worktree;
809 char *gitfile;
810 int offset;
811
812 if (PATH_MAX - 40 < strlen(gitdirenv))
813 die(_("'$%s' too big"), GIT_DIR_ENVIRONMENT);
814
815 gitfile = (char*)read_gitfile(gitdirenv);
816 if (gitfile) {
817 gitfile = xstrdup(gitfile);
818 gitdirenv = gitfile;
819 }
820
821 if (!is_git_directory(gitdirenv)) {
822 if (nongit_ok) {
823 *nongit_ok = 1;
824 free(gitfile);
825 return NULL;
826 }
827 die(_("not a git repository: '%s'"), gitdirenv);
828 }
829
830 if (check_repository_format_gently(gitdirenv, repo_fmt, nongit_ok)) {
831 free(gitfile);
832 return NULL;
833 }
834
835 /* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */
836 if (work_tree_env)
837 set_git_work_tree(work_tree_env);
838 else if (is_bare_repository_cfg > 0) {
839 if (git_work_tree_cfg) {
840 /* #22.2, #30 */
841 warning("core.bare and core.worktree do not make sense");
842 work_tree_config_is_bogus = 1;
843 }
844
845 /* #18, #26 */
846 set_git_dir(gitdirenv, 0);
847 free(gitfile);
848 return NULL;
849 }
850 else if (git_work_tree_cfg) { /* #6, #14 */
851 if (is_absolute_path(git_work_tree_cfg))
852 set_git_work_tree(git_work_tree_cfg);
853 else {
854 char *core_worktree;
855 if (chdir(gitdirenv))
856 die_errno(_("cannot chdir to '%s'"), gitdirenv);
857 if (chdir(git_work_tree_cfg))
858 die_errno(_("cannot chdir to '%s'"), git_work_tree_cfg);
859 core_worktree = xgetcwd();
860 if (chdir(cwd->buf))
861 die_errno(_("cannot come back to cwd"));
862 set_git_work_tree(core_worktree);
863 free(core_worktree);
864 }
865 }
866 else if (!git_env_bool(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, 1)) {
867 /* #16d */
868 set_git_dir(gitdirenv, 0);
869 free(gitfile);
870 return NULL;
871 }
872 else /* #2, #10 */
873 set_git_work_tree(".");
874
875 /* set_git_work_tree() must have been called by now */
876 worktree = get_git_work_tree();
877
878 /* both get_git_work_tree() and cwd are already normalized */
879 if (!strcmp(cwd->buf, worktree)) { /* cwd == worktree */
880 set_git_dir(gitdirenv, 0);
881 free(gitfile);
882 return NULL;
883 }
884
885 offset = dir_inside_of(cwd->buf, worktree);
886 if (offset >= 0) { /* cwd inside worktree? */
887 set_git_dir(gitdirenv, 1);
888 if (chdir(worktree))
889 die_errno(_("cannot chdir to '%s'"), worktree);
890 strbuf_addch(cwd, '/');
891 free(gitfile);
892 return cwd->buf + offset;
893 }
894
895 /* cwd outside worktree */
896 set_git_dir(gitdirenv, 0);
897 free(gitfile);
898 return NULL;
899 }
900
901 static const char *setup_discovered_git_dir(const char *gitdir,
902 struct strbuf *cwd, int offset,
903 struct repository_format *repo_fmt,
904 int *nongit_ok)
905 {
906 if (check_repository_format_gently(gitdir, repo_fmt, nongit_ok))
907 return NULL;
908
909 /* --work-tree is set without --git-dir; use discovered one */
910 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
911 char *to_free = NULL;
912 const char *ret;
913
914 if (offset != cwd->len && !is_absolute_path(gitdir))
915 gitdir = to_free = real_pathdup(gitdir, 1);
916 if (chdir(cwd->buf))
917 die_errno(_("cannot come back to cwd"));
918 ret = setup_explicit_git_dir(gitdir, cwd, repo_fmt, nongit_ok);
919 free(to_free);
920 return ret;
921 }
922
923 /* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */
924 if (is_bare_repository_cfg > 0) {
925 set_git_dir(gitdir, (offset != cwd->len));
926 if (chdir(cwd->buf))
927 die_errno(_("cannot come back to cwd"));
928 return NULL;
929 }
930
931 /* #0, #1, #5, #8, #9, #12, #13 */
932 set_git_work_tree(".");
933 if (strcmp(gitdir, DEFAULT_GIT_DIR_ENVIRONMENT))
934 set_git_dir(gitdir, 0);
935 inside_git_dir = 0;
936 inside_work_tree = 1;
937 if (offset >= cwd->len)
938 return NULL;
939
940 /* Make "offset" point past the '/' (already the case for root dirs) */
941 if (offset != offset_1st_component(cwd->buf))
942 offset++;
943 /* Add a '/' at the end */
944 strbuf_addch(cwd, '/');
945 return cwd->buf + offset;
946 }
947
948 /* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */
949 static const char *setup_bare_git_dir(struct strbuf *cwd, int offset,
950 struct repository_format *repo_fmt,
951 int *nongit_ok)
952 {
953 int root_len;
954
955 if (check_repository_format_gently(".", repo_fmt, nongit_ok))
956 return NULL;
957
958 setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, "0", 1);
959
960 /* --work-tree is set without --git-dir; use discovered one */
961 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
962 static const char *gitdir;
963
964 gitdir = offset == cwd->len ? "." : xmemdupz(cwd->buf, offset);
965 if (chdir(cwd->buf))
966 die_errno(_("cannot come back to cwd"));
967 return setup_explicit_git_dir(gitdir, cwd, repo_fmt, nongit_ok);
968 }
969
970 inside_git_dir = 1;
971 inside_work_tree = 0;
972 if (offset != cwd->len) {
973 if (chdir(cwd->buf))
974 die_errno(_("cannot come back to cwd"));
975 root_len = offset_1st_component(cwd->buf);
976 strbuf_setlen(cwd, offset > root_len ? offset : root_len);
977 set_git_dir(cwd->buf, 0);
978 }
979 else
980 set_git_dir(".", 0);
981 return NULL;
982 }
983
984 static dev_t get_device_or_die(const char *path, const char *prefix, int prefix_len)
985 {
986 struct stat buf;
987 if (stat(path, &buf)) {
988 die_errno(_("failed to stat '%*s%s%s'"),
989 prefix_len,
990 prefix ? prefix : "",
991 prefix ? "/" : "", path);
992 }
993 return buf.st_dev;
994 }
995
996 /*
997 * A "string_list_each_func_t" function that canonicalizes an entry
998 * from GIT_CEILING_DIRECTORIES using real_pathdup(), or
999 * discards it if unusable. The presence of an empty entry in
1000 * GIT_CEILING_DIRECTORIES turns off canonicalization for all
1001 * subsequent entries.
1002 */
1003 static int canonicalize_ceiling_entry(struct string_list_item *item,
1004 void *cb_data)
1005 {
1006 int *empty_entry_found = cb_data;
1007 char *ceil = item->string;
1008
1009 if (!*ceil) {
1010 *empty_entry_found = 1;
1011 return 0;
1012 } else if (!is_absolute_path(ceil)) {
1013 return 0;
1014 } else if (*empty_entry_found) {
1015 /* Keep entry but do not canonicalize it */
1016 return 1;
1017 } else {
1018 char *real_path = real_pathdup(ceil, 0);
1019 if (!real_path) {
1020 return 0;
1021 }
1022 free(item->string);
1023 item->string = real_path;
1024 return 1;
1025 }
1026 }
1027
1028 struct safe_directory_data {
1029 const char *path;
1030 int is_safe;
1031 };
1032
1033 static int safe_directory_cb(const char *key, const char *value, void *d)
1034 {
1035 struct safe_directory_data *data = d;
1036
1037 if (strcmp(key, "safe.directory"))
1038 return 0;
1039
1040 if (!value || !*value) {
1041 data->is_safe = 0;
1042 } else if (!strcmp(value, "*")) {
1043 data->is_safe = 1;
1044 } else {
1045 const char *interpolated = NULL;
1046
1047 if (!git_config_pathname(&interpolated, key, value) &&
1048 !fspathcmp(data->path, interpolated ? interpolated : value))
1049 data->is_safe = 1;
1050
1051 free((char *)interpolated);
1052 }
1053
1054 return 0;
1055 }
1056
1057 /*
1058 * Check if a repository is safe, by verifying the ownership of the
1059 * worktree (if any), the git directory, and the gitfile (if any).
1060 *
1061 * Exemptions for known-safe repositories can be added via `safe.directory`
1062 * config settings; for non-bare repositories, their worktree needs to be
1063 * added, for bare ones their git directory.
1064 */
1065 static int ensure_valid_ownership(const char *gitfile,
1066 const char *worktree, const char *gitdir)
1067 {
1068 struct safe_directory_data data = {
1069 .path = worktree ? worktree : gitdir
1070 };
1071
1072 if (!git_env_bool("GIT_TEST_ASSUME_DIFFERENT_OWNER", 0) &&
1073 (!gitfile || is_path_owned_by_current_user(gitfile)) &&
1074 (!worktree || is_path_owned_by_current_user(worktree)) &&
1075 (!gitdir || is_path_owned_by_current_user(gitdir)))
1076 return 1;
1077
1078 /*
1079 * data.path is the "path" that identifies the repository and it is
1080 * constant regardless of what failed above. data.is_safe should be
1081 * initialized to false, and might be changed by the callback.
1082 */
1083 read_very_early_config(safe_directory_cb, &data);
1084
1085 return data.is_safe;
1086 }
1087
1088 enum discovery_result {
1089 GIT_DIR_NONE = 0,
1090 GIT_DIR_EXPLICIT,
1091 GIT_DIR_DISCOVERED,
1092 GIT_DIR_BARE,
1093 /* these are errors */
1094 GIT_DIR_HIT_CEILING = -1,
1095 GIT_DIR_HIT_MOUNT_POINT = -2,
1096 GIT_DIR_INVALID_GITFILE = -3,
1097 GIT_DIR_INVALID_OWNERSHIP = -4
1098 };
1099
1100 /*
1101 * We cannot decide in this function whether we are in the work tree or
1102 * not, since the config can only be read _after_ this function was called.
1103 *
1104 * Also, we avoid changing any global state (such as the current working
1105 * directory) to allow early callers.
1106 *
1107 * The directory where the search should start needs to be passed in via the
1108 * `dir` parameter; upon return, the `dir` buffer will contain the path of
1109 * the directory where the search ended, and `gitdir` will contain the path of
1110 * the discovered .git/ directory, if any. If `gitdir` is not absolute, it
1111 * is relative to `dir` (i.e. *not* necessarily the cwd).
1112 */
1113 static enum discovery_result setup_git_directory_gently_1(struct strbuf *dir,
1114 struct strbuf *gitdir,
1115 int die_on_error)
1116 {
1117 const char *env_ceiling_dirs = getenv(CEILING_DIRECTORIES_ENVIRONMENT);
1118 struct string_list ceiling_dirs = STRING_LIST_INIT_DUP;
1119 const char *gitdirenv;
1120 int ceil_offset = -1, min_offset = offset_1st_component(dir->buf);
1121 dev_t current_device = 0;
1122 int one_filesystem = 1;
1123
1124 /*
1125 * If GIT_DIR is set explicitly, we're not going
1126 * to do any discovery, but we still do repository
1127 * validation.
1128 */
1129 gitdirenv = getenv(GIT_DIR_ENVIRONMENT);
1130 if (gitdirenv) {
1131 strbuf_addstr(gitdir, gitdirenv);
1132 return GIT_DIR_EXPLICIT;
1133 }
1134
1135 if (env_ceiling_dirs) {
1136 int empty_entry_found = 0;
1137
1138 string_list_split(&ceiling_dirs, env_ceiling_dirs, PATH_SEP, -1);
1139 filter_string_list(&ceiling_dirs, 0,
1140 canonicalize_ceiling_entry, &empty_entry_found);
1141 ceil_offset = longest_ancestor_length(dir->buf, &ceiling_dirs);
1142 string_list_clear(&ceiling_dirs, 0);
1143 }
1144
1145 if (ceil_offset < 0)
1146 ceil_offset = min_offset - 2;
1147
1148 if (min_offset && min_offset == dir->len &&
1149 !is_dir_sep(dir->buf[min_offset - 1])) {
1150 strbuf_addch(dir, '/');
1151 min_offset++;
1152 }
1153
1154 /*
1155 * Test in the following order (relative to the dir):
1156 * - .git (file containing "gitdir: <path>")
1157 * - .git/
1158 * - ./ (bare)
1159 * - ../.git
1160 * - ../.git/
1161 * - ../ (bare)
1162 * - ../../.git
1163 * etc.
1164 */
1165 one_filesystem = !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM", 0);
1166 if (one_filesystem)
1167 current_device = get_device_or_die(dir->buf, NULL, 0);
1168 for (;;) {
1169 int offset = dir->len, error_code = 0;
1170 char *gitdir_path = NULL;
1171 char *gitfile = NULL;
1172
1173 if (offset > min_offset)
1174 strbuf_addch(dir, '/');
1175 strbuf_addstr(dir, DEFAULT_GIT_DIR_ENVIRONMENT);
1176 gitdirenv = read_gitfile_gently(dir->buf, die_on_error ?
1177 NULL : &error_code);
1178 if (!gitdirenv) {
1179 if (die_on_error ||
1180 error_code == READ_GITFILE_ERR_NOT_A_FILE) {
1181 /* NEEDSWORK: fail if .git is not file nor dir */
1182 if (is_git_directory(dir->buf)) {
1183 gitdirenv = DEFAULT_GIT_DIR_ENVIRONMENT;
1184 gitdir_path = xstrdup(dir->buf);
1185 }
1186 } else if (error_code != READ_GITFILE_ERR_STAT_FAILED)
1187 return GIT_DIR_INVALID_GITFILE;
1188 } else
1189 gitfile = xstrdup(dir->buf);
1190 /*
1191 * Earlier, we tentatively added DEFAULT_GIT_DIR_ENVIRONMENT
1192 * to check that directory for a repository.
1193 * Now trim that tentative addition away, because we want to
1194 * focus on the real directory we are in.
1195 */
1196 strbuf_setlen(dir, offset);
1197 if (gitdirenv) {
1198 enum discovery_result ret;
1199
1200 if (ensure_valid_ownership(gitfile,
1201 dir->buf,
1202 (gitdir_path ? gitdir_path : gitdirenv))) {
1203 strbuf_addstr(gitdir, gitdirenv);
1204 ret = GIT_DIR_DISCOVERED;
1205 } else
1206 ret = GIT_DIR_INVALID_OWNERSHIP;
1207
1208 /*
1209 * Earlier, during discovery, we might have allocated
1210 * string copies for gitdir_path or gitfile so make
1211 * sure we don't leak by freeing them now, before
1212 * leaving the loop and function.
1213 *
1214 * Note: gitdirenv will be non-NULL whenever these are
1215 * allocated, therefore we need not take care of releasing
1216 * them outside of this conditional block.
1217 */
1218 free(gitdir_path);
1219 free(gitfile);
1220
1221 return ret;
1222 }
1223
1224 if (is_git_directory(dir->buf)) {
1225 if (!ensure_valid_ownership(NULL, NULL, dir->buf))
1226 return GIT_DIR_INVALID_OWNERSHIP;
1227 strbuf_addstr(gitdir, ".");
1228 return GIT_DIR_BARE;
1229 }
1230
1231 if (offset <= min_offset)
1232 return GIT_DIR_HIT_CEILING;
1233
1234 while (--offset > ceil_offset && !is_dir_sep(dir->buf[offset]))
1235 ; /* continue */
1236 if (offset <= ceil_offset)
1237 return GIT_DIR_HIT_CEILING;
1238
1239 strbuf_setlen(dir, offset > min_offset ? offset : min_offset);
1240 if (one_filesystem &&
1241 current_device != get_device_or_die(dir->buf, NULL, offset))
1242 return GIT_DIR_HIT_MOUNT_POINT;
1243 }
1244 }
1245
1246 int discover_git_directory(struct strbuf *commondir,
1247 struct strbuf *gitdir)
1248 {
1249 struct strbuf dir = STRBUF_INIT, err = STRBUF_INIT;
1250 size_t gitdir_offset = gitdir->len, cwd_len;
1251 size_t commondir_offset = commondir->len;
1252 struct repository_format candidate = REPOSITORY_FORMAT_INIT;
1253
1254 if (strbuf_getcwd(&dir))
1255 return -1;
1256
1257 cwd_len = dir.len;
1258 if (setup_git_directory_gently_1(&dir, gitdir, 0) <= 0) {
1259 strbuf_release(&dir);
1260 return -1;
1261 }
1262
1263 /*
1264 * The returned gitdir is relative to dir, and if dir does not reflect
1265 * the current working directory, we simply make the gitdir absolute.
1266 */
1267 if (dir.len < cwd_len && !is_absolute_path(gitdir->buf + gitdir_offset)) {
1268 /* Avoid a trailing "/." */
1269 if (!strcmp(".", gitdir->buf + gitdir_offset))
1270 strbuf_setlen(gitdir, gitdir_offset);
1271 else
1272 strbuf_addch(&dir, '/');
1273 strbuf_insert(gitdir, gitdir_offset, dir.buf, dir.len);
1274 }
1275
1276 get_common_dir(commondir, gitdir->buf + gitdir_offset);
1277
1278 strbuf_reset(&dir);
1279 strbuf_addf(&dir, "%s/config", commondir->buf + commondir_offset);
1280 read_repository_format(&candidate, dir.buf);
1281 strbuf_release(&dir);
1282
1283 if (verify_repository_format(&candidate, &err) < 0) {
1284 warning("ignoring git dir '%s': %s",
1285 gitdir->buf + gitdir_offset, err.buf);
1286 strbuf_release(&err);
1287 strbuf_setlen(commondir, commondir_offset);
1288 strbuf_setlen(gitdir, gitdir_offset);
1289 clear_repository_format(&candidate);
1290 return -1;
1291 }
1292
1293 clear_repository_format(&candidate);
1294 return 0;
1295 }
1296
1297 const char *setup_git_directory_gently(int *nongit_ok)
1298 {
1299 static struct strbuf cwd = STRBUF_INIT;
1300 struct strbuf dir = STRBUF_INIT, gitdir = STRBUF_INIT;
1301 const char *prefix = NULL;
1302 struct repository_format repo_fmt = REPOSITORY_FORMAT_INIT;
1303
1304 /*
1305 * We may have read an incomplete configuration before
1306 * setting-up the git directory. If so, clear the cache so
1307 * that the next queries to the configuration reload complete
1308 * configuration (including the per-repo config file that we
1309 * ignored previously).
1310 */
1311 git_config_clear();
1312
1313 /*
1314 * Let's assume that we are in a git repository.
1315 * If it turns out later that we are somewhere else, the value will be
1316 * updated accordingly.
1317 */
1318 if (nongit_ok)
1319 *nongit_ok = 0;
1320
1321 if (strbuf_getcwd(&cwd))
1322 die_errno(_("Unable to read current working directory"));
1323 strbuf_addbuf(&dir, &cwd);
1324
1325 switch (setup_git_directory_gently_1(&dir, &gitdir, 1)) {
1326 case GIT_DIR_EXPLICIT:
1327 prefix = setup_explicit_git_dir(gitdir.buf, &cwd, &repo_fmt, nongit_ok);
1328 break;
1329 case GIT_DIR_DISCOVERED:
1330 if (dir.len < cwd.len && chdir(dir.buf))
1331 die(_("cannot change to '%s'"), dir.buf);
1332 prefix = setup_discovered_git_dir(gitdir.buf, &cwd, dir.len,
1333 &repo_fmt, nongit_ok);
1334 break;
1335 case GIT_DIR_BARE:
1336 if (dir.len < cwd.len && chdir(dir.buf))
1337 die(_("cannot change to '%s'"), dir.buf);
1338 prefix = setup_bare_git_dir(&cwd, dir.len, &repo_fmt, nongit_ok);
1339 break;
1340 case GIT_DIR_HIT_CEILING:
1341 if (!nongit_ok)
1342 die(_("not a git repository (or any of the parent directories): %s"),
1343 DEFAULT_GIT_DIR_ENVIRONMENT);
1344 *nongit_ok = 1;
1345 break;
1346 case GIT_DIR_HIT_MOUNT_POINT:
1347 if (!nongit_ok)
1348 die(_("not a git repository (or any parent up to mount point %s)\n"
1349 "Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set)."),
1350 dir.buf);
1351 *nongit_ok = 1;
1352 break;
1353 case GIT_DIR_INVALID_OWNERSHIP:
1354 if (!nongit_ok) {
1355 struct strbuf quoted = STRBUF_INIT;
1356
1357 sq_quote_buf_pretty(&quoted, dir.buf);
1358 die(_("detected dubious ownership in repository at '%s'\n"
1359 "To add an exception for this directory, call:\n"
1360 "\n"
1361 "\tgit config --global --add safe.directory %s"),
1362 dir.buf, quoted.buf);
1363 }
1364 *nongit_ok = 1;
1365 break;
1366 case GIT_DIR_NONE:
1367 /*
1368 * As a safeguard against setup_git_directory_gently_1 returning
1369 * this value, fallthrough to BUG. Otherwise it is possible to
1370 * set startup_info->have_repository to 1 when we did nothing to
1371 * find a repository.
1372 */
1373 default:
1374 BUG("unhandled setup_git_directory_1() result");
1375 }
1376
1377 /*
1378 * At this point, nongit_ok is stable. If it is non-NULL and points
1379 * to a non-zero value, then this means that we haven't found a
1380 * repository and that the caller expects startup_info to reflect
1381 * this.
1382 *
1383 * Regardless of the state of nongit_ok, startup_info->prefix and
1384 * the GIT_PREFIX environment variable must always match. For details
1385 * see Documentation/config/alias.txt.
1386 */
1387 if (nongit_ok && *nongit_ok)
1388 startup_info->have_repository = 0;
1389 else
1390 startup_info->have_repository = 1;
1391
1392 /*
1393 * Not all paths through the setup code will call 'set_git_dir()' (which
1394 * directly sets up the environment) so in order to guarantee that the
1395 * environment is in a consistent state after setup, explicitly setup
1396 * the environment if we have a repository.
1397 *
1398 * NEEDSWORK: currently we allow bogus GIT_DIR values to be set in some
1399 * code paths so we also need to explicitly setup the environment if
1400 * the user has set GIT_DIR. It may be beneficial to disallow bogus
1401 * GIT_DIR values at some point in the future.
1402 */
1403 if (/* GIT_DIR_EXPLICIT, GIT_DIR_DISCOVERED, GIT_DIR_BARE */
1404 startup_info->have_repository ||
1405 /* GIT_DIR_EXPLICIT */
1406 getenv(GIT_DIR_ENVIRONMENT)) {
1407 if (!the_repository->gitdir) {
1408 const char *gitdir = getenv(GIT_DIR_ENVIRONMENT);
1409 if (!gitdir)
1410 gitdir = DEFAULT_GIT_DIR_ENVIRONMENT;
1411 setup_git_env(gitdir);
1412 }
1413 if (startup_info->have_repository)
1414 repo_set_hash_algo(the_repository, repo_fmt.hash_algo);
1415 }
1416 /*
1417 * Since precompose_string_if_needed() needs to look at
1418 * the core.precomposeunicode configuration, this
1419 * has to happen after the above block that finds
1420 * out where the repository is, i.e. a preparation
1421 * for calling git_config_get_bool().
1422 */
1423 if (prefix) {
1424 prefix = precompose_string_if_needed(prefix);
1425 startup_info->prefix = prefix;
1426 setenv(GIT_PREFIX_ENVIRONMENT, prefix, 1);
1427 } else {
1428 startup_info->prefix = NULL;
1429 setenv(GIT_PREFIX_ENVIRONMENT, "", 1);
1430 }
1431
1432
1433 strbuf_release(&dir);
1434 strbuf_release(&gitdir);
1435 clear_repository_format(&repo_fmt);
1436
1437 return prefix;
1438 }
1439
1440 int git_config_perm(const char *var, const char *value)
1441 {
1442 int i;
1443 char *endptr;
1444
1445 if (value == NULL)
1446 return PERM_GROUP;
1447
1448 if (!strcmp(value, "umask"))
1449 return PERM_UMASK;
1450 if (!strcmp(value, "group"))
1451 return PERM_GROUP;
1452 if (!strcmp(value, "all") ||
1453 !strcmp(value, "world") ||
1454 !strcmp(value, "everybody"))
1455 return PERM_EVERYBODY;
1456
1457 /* Parse octal numbers */
1458 i = strtol(value, &endptr, 8);
1459
1460 /* If not an octal number, maybe true/false? */
1461 if (*endptr != 0)
1462 return git_config_bool(var, value) ? PERM_GROUP : PERM_UMASK;
1463
1464 /*
1465 * Treat values 0, 1 and 2 as compatibility cases, otherwise it is
1466 * a chmod value to restrict to.
1467 */
1468 switch (i) {
1469 case PERM_UMASK: /* 0 */
1470 return PERM_UMASK;
1471 case OLD_PERM_GROUP: /* 1 */
1472 return PERM_GROUP;
1473 case OLD_PERM_EVERYBODY: /* 2 */
1474 return PERM_EVERYBODY;
1475 }
1476
1477 /* A filemode value was given: 0xxx */
1478
1479 if ((i & 0600) != 0600)
1480 die(_("problem with core.sharedRepository filemode value "
1481 "(0%.3o).\nThe owner of files must always have "
1482 "read and write permissions."), i);
1483
1484 /*
1485 * Mask filemode value. Others can not get write permission.
1486 * x flags for directories are handled separately.
1487 */
1488 return -(i & 0666);
1489 }
1490
1491 void check_repository_format(struct repository_format *fmt)
1492 {
1493 struct repository_format repo_fmt = REPOSITORY_FORMAT_INIT;
1494 if (!fmt)
1495 fmt = &repo_fmt;
1496 check_repository_format_gently(get_git_dir(), fmt, NULL);
1497 startup_info->have_repository = 1;
1498 repo_set_hash_algo(the_repository, fmt->hash_algo);
1499 clear_repository_format(&repo_fmt);
1500 }
1501
1502 /*
1503 * Returns the "prefix", a path to the current working directory
1504 * relative to the work tree root, or NULL, if the current working
1505 * directory is not a strict subdirectory of the work tree root. The
1506 * prefix always ends with a '/' character.
1507 */
1508 const char *setup_git_directory(void)
1509 {
1510 return setup_git_directory_gently(NULL);
1511 }
1512
1513 const char *resolve_gitdir_gently(const char *suspect, int *return_error_code)
1514 {
1515 if (is_git_directory(suspect))
1516 return suspect;
1517 return read_gitfile_gently(suspect, return_error_code);
1518 }
1519
1520 /* if any standard file descriptor is missing open it to /dev/null */
1521 void sanitize_stdfds(void)
1522 {
1523 int fd = open("/dev/null", O_RDWR, 0);
1524 while (fd != -1 && fd < 2)
1525 fd = dup(fd);
1526 if (fd == -1)
1527 die_errno(_("open /dev/null or dup failed"));
1528 if (fd > 2)
1529 close(fd);
1530 }
1531
1532 int daemonize(void)
1533 {
1534 #ifdef NO_POSIX_GOODIES
1535 errno = ENOSYS;
1536 return -1;
1537 #else
1538 switch (fork()) {
1539 case 0:
1540 break;
1541 case -1:
1542 die_errno(_("fork failed"));
1543 default:
1544 exit(0);
1545 }
1546 if (setsid() == -1)
1547 die_errno(_("setsid failed"));
1548 close(0);
1549 close(1);
1550 close(2);
1551 sanitize_stdfds();
1552 return 0;
1553 #endif
1554 }