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