Merge branch 'jc/am-3-fallback-regression-fix'
[git] / setup.c
1 #include "cache.h"
2 #include "dir.h"
3 #include "string-list.h"
4
5 static int inside_git_dir = -1;
6 static int inside_work_tree = -1;
7 static int work_tree_config_is_bogus;
8
9 /*
10  * The input parameter must contain an absolute path, and it must already be
11  * normalized.
12  *
13  * Find the part of an absolute path that lies inside the work tree by
14  * dereferencing symlinks outside the work tree, for example:
15  * /dir1/repo/dir2/file   (work tree is /dir1/repo)      -> dir2/file
16  * /dir/file              (work tree is /)               -> dir/file
17  * /dir/symlink1/symlink2 (symlink1 points to work tree) -> symlink2
18  * /dir/repolink/file     (repolink points to /dir/repo) -> file
19  * /dir/repo              (exactly equal to work tree)   -> (empty string)
20  */
21 static int abspath_part_inside_repo(char *path)
22 {
23         size_t len;
24         size_t wtlen;
25         char *path0;
26         int off;
27         const char *work_tree = get_git_work_tree();
28
29         if (!work_tree)
30                 return -1;
31         wtlen = strlen(work_tree);
32         len = strlen(path);
33         off = offset_1st_component(path);
34
35         /* check if work tree is already the prefix */
36         if (wtlen <= len && !strncmp(path, work_tree, wtlen)) {
37                 if (path[wtlen] == '/') {
38                         memmove(path, path + wtlen + 1, len - wtlen);
39                         return 0;
40                 } else if (path[wtlen - 1] == '/' || path[wtlen] == '\0') {
41                         /* work tree is the root, or the whole path */
42                         memmove(path, path + wtlen, len - wtlen + 1);
43                         return 0;
44                 }
45                 /* work tree might match beginning of a symlink to work tree */
46                 off = wtlen;
47         }
48         path0 = path;
49         path += off;
50
51         /* check each '/'-terminated level */
52         while (*path) {
53                 path++;
54                 if (*path == '/') {
55                         *path = '\0';
56                         if (strcmp(real_path(path0), work_tree) == 0) {
57                                 memmove(path0, path + 1, len - (path - path0));
58                                 return 0;
59                         }
60                         *path = '/';
61                 }
62         }
63
64         /* check whole path */
65         if (strcmp(real_path(path0), work_tree) == 0) {
66                 *path0 = '\0';
67                 return 0;
68         }
69
70         return -1;
71 }
72
73 /*
74  * Normalize "path", prepending the "prefix" for relative paths. If
75  * remaining_prefix is not NULL, return the actual prefix still
76  * remains in the path. For example, prefix = sub1/sub2/ and path is
77  *
78  *  foo          -> sub1/sub2/foo  (full prefix)
79  *  ../foo       -> sub1/foo       (remaining prefix is sub1/)
80  *  ../../bar    -> bar            (no remaining prefix)
81  *  ../../sub1/sub2/foo -> sub1/sub2/foo (but no remaining prefix)
82  *  `pwd`/../bar -> sub1/bar       (no remaining prefix)
83  */
84 char *prefix_path_gently(const char *prefix, int len,
85                          int *remaining_prefix, const char *path)
86 {
87         const char *orig = path;
88         char *sanitized;
89         if (is_absolute_path(orig)) {
90                 sanitized = xmalloc(strlen(path) + 1);
91                 if (remaining_prefix)
92                         *remaining_prefix = 0;
93                 if (normalize_path_copy_len(sanitized, path, remaining_prefix)) {
94                         free(sanitized);
95                         return NULL;
96                 }
97                 if (abspath_part_inside_repo(sanitized)) {
98                         free(sanitized);
99                         return NULL;
100                 }
101         } else {
102                 sanitized = xstrfmt("%.*s%s", len, prefix, path);
103                 if (remaining_prefix)
104                         *remaining_prefix = len;
105                 if (normalize_path_copy_len(sanitized, sanitized, remaining_prefix)) {
106                         free(sanitized);
107                         return NULL;
108                 }
109         }
110         return sanitized;
111 }
112
113 char *prefix_path(const char *prefix, int len, const char *path)
114 {
115         char *r = prefix_path_gently(prefix, len, NULL, path);
116         if (!r)
117                 die("'%s' is outside repository", path);
118         return r;
119 }
120
121 int path_inside_repo(const char *prefix, const char *path)
122 {
123         int len = prefix ? strlen(prefix) : 0;
124         char *r = prefix_path_gently(prefix, len, NULL, path);
125         if (r) {
126                 free(r);
127                 return 1;
128         }
129         return 0;
130 }
131
132 int check_filename(const char *prefix, const char *arg)
133 {
134         const char *name;
135         struct stat st;
136
137         if (starts_with(arg, ":/")) {
138                 if (arg[2] == '\0') /* ":/" is root dir, always exists */
139                         return 1;
140                 name = arg + 2;
141         } else if (!no_wildcard(arg))
142                 return 1;
143         else if (prefix)
144                 name = prefix_filename(prefix, strlen(prefix), arg);
145         else
146                 name = arg;
147         if (!lstat(name, &st))
148                 return 1; /* file exists */
149         if (errno == ENOENT || errno == ENOTDIR)
150                 return 0; /* file does not exist */
151         die_errno("failed to stat '%s'", arg);
152 }
153
154 static void NORETURN die_verify_filename(const char *prefix,
155                                          const char *arg,
156                                          int diagnose_misspelt_rev)
157 {
158         if (!diagnose_misspelt_rev)
159                 die("%s: no such path in the working tree.\n"
160                     "Use 'git <command> -- <path>...' to specify paths that do not exist locally.",
161                     arg);
162         /*
163          * Saying "'(icase)foo' does not exist in the index" when the
164          * user gave us ":(icase)foo" is just stupid.  A magic pathspec
165          * begins with a colon and is followed by a non-alnum; do not
166          * let maybe_die_on_misspelt_object_name() even trigger.
167          */
168         if (!(arg[0] == ':' && !isalnum(arg[1])))
169                 maybe_die_on_misspelt_object_name(arg, prefix);
170
171         /* ... or fall back the most general message. */
172         die("ambiguous argument '%s': unknown revision or path not in the working tree.\n"
173             "Use '--' to separate paths from revisions, like this:\n"
174             "'git <command> [<revision>...] -- [<file>...]'", arg);
175
176 }
177
178 /*
179  * Verify a filename that we got as an argument for a pathspec
180  * entry. Note that a filename that begins with "-" never verifies
181  * as true, because even if such a filename were to exist, we want
182  * it to be preceded by the "--" marker (or we want the user to
183  * use a format like "./-filename")
184  *
185  * The "diagnose_misspelt_rev" is used to provide a user-friendly
186  * diagnosis when dying upon finding that "name" is not a pathname.
187  * If set to 1, the diagnosis will try to diagnose "name" as an
188  * invalid object name (e.g. HEAD:foo). If set to 0, the diagnosis
189  * will only complain about an inexisting file.
190  *
191  * This function is typically called to check that a "file or rev"
192  * argument is unambiguous. In this case, the caller will want
193  * diagnose_misspelt_rev == 1 when verifying the first non-rev
194  * argument (which could have been a revision), and
195  * diagnose_misspelt_rev == 0 for the next ones (because we already
196  * saw a filename, there's not ambiguity anymore).
197  */
198 void verify_filename(const char *prefix,
199                      const char *arg,
200                      int diagnose_misspelt_rev)
201 {
202         if (*arg == '-')
203                 die("bad flag '%s' used after filename", arg);
204         if (check_filename(prefix, arg))
205                 return;
206         die_verify_filename(prefix, arg, diagnose_misspelt_rev);
207 }
208
209 /*
210  * Opposite of the above: the command line did not have -- marker
211  * and we parsed the arg as a refname.  It should not be interpretable
212  * as a filename.
213  */
214 void verify_non_filename(const char *prefix, const char *arg)
215 {
216         if (!is_inside_work_tree() || is_inside_git_dir())
217                 return;
218         if (*arg == '-')
219                 return; /* flag */
220         if (!check_filename(prefix, arg))
221                 return;
222         die("ambiguous argument '%s': both revision and filename\n"
223             "Use '--' to separate paths from revisions, like this:\n"
224             "'git <command> [<revision>...] -- [<file>...]'", arg);
225 }
226
227 int get_common_dir(struct strbuf *sb, const char *gitdir)
228 {
229         const char *git_env_common_dir = getenv(GIT_COMMON_DIR_ENVIRONMENT);
230         if (git_env_common_dir) {
231                 strbuf_addstr(sb, git_env_common_dir);
232                 return 1;
233         } else {
234                 return get_common_dir_noenv(sb, gitdir);
235         }
236 }
237
238 int get_common_dir_noenv(struct strbuf *sb, const char *gitdir)
239 {
240         struct strbuf data = STRBUF_INIT;
241         struct strbuf path = STRBUF_INIT;
242         int ret = 0;
243
244         strbuf_addf(&path, "%s/commondir", gitdir);
245         if (file_exists(path.buf)) {
246                 if (strbuf_read_file(&data, path.buf, 0) <= 0)
247                         die_errno(_("failed to read %s"), path.buf);
248                 while (data.len && (data.buf[data.len - 1] == '\n' ||
249                                     data.buf[data.len - 1] == '\r'))
250                         data.len--;
251                 data.buf[data.len] = '\0';
252                 strbuf_reset(&path);
253                 if (!is_absolute_path(data.buf))
254                         strbuf_addf(&path, "%s/", gitdir);
255                 strbuf_addbuf(&path, &data);
256                 strbuf_addstr(sb, real_path(path.buf));
257                 ret = 1;
258         } else
259                 strbuf_addstr(sb, gitdir);
260         strbuf_release(&data);
261         strbuf_release(&path);
262         return ret;
263 }
264
265 /*
266  * Test if it looks like we're at a git directory.
267  * We want to see:
268  *
269  *  - either an objects/ directory _or_ the proper
270  *    GIT_OBJECT_DIRECTORY environment variable
271  *  - a refs/ directory
272  *  - either a HEAD symlink or a HEAD file that is formatted as
273  *    a proper "ref:", or a regular file HEAD that has a properly
274  *    formatted sha1 object name.
275  */
276 int is_git_directory(const char *suspect)
277 {
278         struct strbuf path = STRBUF_INIT;
279         int ret = 0;
280         size_t len;
281
282         /* Check worktree-related signatures */
283         strbuf_addf(&path, "%s/HEAD", suspect);
284         if (validate_headref(path.buf))
285                 goto done;
286
287         strbuf_reset(&path);
288         get_common_dir(&path, suspect);
289         len = path.len;
290
291         /* Check non-worktree-related signatures */
292         if (getenv(DB_ENVIRONMENT)) {
293                 if (access(getenv(DB_ENVIRONMENT), X_OK))
294                         goto done;
295         }
296         else {
297                 strbuf_setlen(&path, len);
298                 strbuf_addstr(&path, "/objects");
299                 if (access(path.buf, X_OK))
300                         goto done;
301         }
302
303         strbuf_setlen(&path, len);
304         strbuf_addstr(&path, "/refs");
305         if (access(path.buf, X_OK))
306                 goto done;
307
308         ret = 1;
309 done:
310         strbuf_release(&path);
311         return ret;
312 }
313
314 int is_inside_git_dir(void)
315 {
316         if (inside_git_dir < 0)
317                 inside_git_dir = is_inside_dir(get_git_dir());
318         return inside_git_dir;
319 }
320
321 int is_inside_work_tree(void)
322 {
323         if (inside_work_tree < 0)
324                 inside_work_tree = is_inside_dir(get_git_work_tree());
325         return inside_work_tree;
326 }
327
328 void setup_work_tree(void)
329 {
330         const char *work_tree, *git_dir;
331         static int initialized = 0;
332
333         if (initialized)
334                 return;
335
336         if (work_tree_config_is_bogus)
337                 die("unable to set up work tree using invalid config");
338
339         work_tree = get_git_work_tree();
340         git_dir = get_git_dir();
341         if (!is_absolute_path(git_dir))
342                 git_dir = real_path(get_git_dir());
343         if (!work_tree || chdir(work_tree))
344                 die("This operation must be run in a work tree");
345
346         /*
347          * Make sure subsequent git processes find correct worktree
348          * if $GIT_WORK_TREE is set relative
349          */
350         if (getenv(GIT_WORK_TREE_ENVIRONMENT))
351                 setenv(GIT_WORK_TREE_ENVIRONMENT, ".", 1);
352
353         set_git_dir(remove_leading_path(git_dir, work_tree));
354         initialized = 1;
355 }
356
357 static int check_repo_format(const char *var, const char *value, void *cb)
358 {
359         if (strcmp(var, "core.repositoryformatversion") == 0)
360                 repository_format_version = git_config_int(var, value);
361         else if (strcmp(var, "core.sharedrepository") == 0)
362                 shared_repository = git_config_perm(var, value);
363         return 0;
364 }
365
366 static int check_repository_format_gently(const char *gitdir, int *nongit_ok)
367 {
368         struct strbuf sb = STRBUF_INIT;
369         const char *repo_config;
370         config_fn_t fn;
371         int ret = 0;
372
373         if (get_common_dir(&sb, gitdir))
374                 fn = check_repo_format;
375         else
376                 fn = check_repository_format_version;
377         strbuf_addstr(&sb, "/config");
378         repo_config = sb.buf;
379
380         /*
381          * git_config() can't be used here because it calls git_pathdup()
382          * to get $GIT_CONFIG/config. That call will make setup_git_env()
383          * set git_dir to ".git".
384          *
385          * We are in gitdir setup, no git dir has been found useable yet.
386          * Use a gentler version of git_config() to check if this repo
387          * is a good one.
388          */
389         git_config_early(fn, NULL, repo_config);
390         if (GIT_REPO_VERSION < repository_format_version) {
391                 if (!nongit_ok)
392                         die ("Expected git repo version <= %d, found %d",
393                              GIT_REPO_VERSION, repository_format_version);
394                 warning("Expected git repo version <= %d, found %d",
395                         GIT_REPO_VERSION, repository_format_version);
396                 warning("Please upgrade Git");
397                 *nongit_ok = -1;
398                 ret = -1;
399         }
400         strbuf_release(&sb);
401         return ret;
402 }
403
404 static void update_linked_gitdir(const char *gitfile, const char *gitdir)
405 {
406         struct strbuf path = STRBUF_INIT;
407         struct stat st;
408
409         strbuf_addf(&path, "%s/gitdir", gitdir);
410         if (stat(path.buf, &st) || st.st_mtime + 24 * 3600 < time(NULL))
411                 write_file(path.buf, "%s", gitfile);
412         strbuf_release(&path);
413 }
414
415 /*
416  * Try to read the location of the git directory from the .git file,
417  * return path to git directory if found.
418  *
419  * On failure, if return_error_code is not NULL, return_error_code
420  * will be set to an error code and NULL will be returned. If
421  * return_error_code is NULL the function will die instead (for most
422  * cases).
423  */
424 const char *read_gitfile_gently(const char *path, int *return_error_code)
425 {
426         const int max_file_size = 1 << 20;  /* 1MB */
427         int error_code = 0;
428         char *buf = NULL;
429         char *dir = NULL;
430         const char *slash;
431         struct stat st;
432         int fd;
433         ssize_t len;
434
435         if (stat(path, &st)) {
436                 error_code = READ_GITFILE_ERR_STAT_FAILED;
437                 goto cleanup_return;
438         }
439         if (!S_ISREG(st.st_mode)) {
440                 error_code = READ_GITFILE_ERR_NOT_A_FILE;
441                 goto cleanup_return;
442         }
443         if (st.st_size > max_file_size) {
444                 error_code = READ_GITFILE_ERR_TOO_LARGE;
445                 goto cleanup_return;
446         }
447         fd = open(path, O_RDONLY);
448         if (fd < 0) {
449                 error_code = READ_GITFILE_ERR_OPEN_FAILED;
450                 goto cleanup_return;
451         }
452         buf = xmalloc(st.st_size + 1);
453         len = read_in_full(fd, buf, st.st_size);
454         close(fd);
455         if (len != st.st_size) {
456                 error_code = READ_GITFILE_ERR_READ_FAILED;
457                 goto cleanup_return;
458         }
459         buf[len] = '\0';
460         if (!starts_with(buf, "gitdir: ")) {
461                 error_code = READ_GITFILE_ERR_INVALID_FORMAT;
462                 goto cleanup_return;
463         }
464         while (buf[len - 1] == '\n' || buf[len - 1] == '\r')
465                 len--;
466         if (len < 9) {
467                 error_code = READ_GITFILE_ERR_NO_PATH;
468                 goto cleanup_return;
469         }
470         buf[len] = '\0';
471         dir = buf + 8;
472
473         if (!is_absolute_path(dir) && (slash = strrchr(path, '/'))) {
474                 size_t pathlen = slash+1 - path;
475                 dir = xstrfmt("%.*s%.*s", (int)pathlen, path,
476                               (int)(len - 8), buf + 8);
477                 free(buf);
478                 buf = dir;
479         }
480         if (!is_git_directory(dir)) {
481                 error_code = READ_GITFILE_ERR_NOT_A_REPO;
482                 goto cleanup_return;
483         }
484         update_linked_gitdir(path, dir);
485         path = real_path(dir);
486
487 cleanup_return:
488         if (return_error_code)
489                 *return_error_code = error_code;
490         else if (error_code) {
491                 switch (error_code) {
492                 case READ_GITFILE_ERR_STAT_FAILED:
493                 case READ_GITFILE_ERR_NOT_A_FILE:
494                         /* non-fatal; follow return path */
495                         break;
496                 case READ_GITFILE_ERR_OPEN_FAILED:
497                         die_errno("Error opening '%s'", path);
498                 case READ_GITFILE_ERR_TOO_LARGE:
499                         die("Too large to be a .git file: '%s'", path);
500                 case READ_GITFILE_ERR_READ_FAILED:
501                         die("Error reading %s", path);
502                 case READ_GITFILE_ERR_INVALID_FORMAT:
503                         die("Invalid gitfile format: %s", path);
504                 case READ_GITFILE_ERR_NO_PATH:
505                         die("No path in gitfile: %s", path);
506                 case READ_GITFILE_ERR_NOT_A_REPO:
507                         die("Not a git repository: %s", dir);
508                 default:
509                         assert(0);
510                 }
511         }
512
513         free(buf);
514         return error_code ? NULL : path;
515 }
516
517 static const char *setup_explicit_git_dir(const char *gitdirenv,
518                                           struct strbuf *cwd,
519                                           int *nongit_ok)
520 {
521         const char *work_tree_env = getenv(GIT_WORK_TREE_ENVIRONMENT);
522         const char *worktree;
523         char *gitfile;
524         int offset;
525
526         if (PATH_MAX - 40 < strlen(gitdirenv))
527                 die("'$%s' too big", GIT_DIR_ENVIRONMENT);
528
529         gitfile = (char*)read_gitfile(gitdirenv);
530         if (gitfile) {
531                 gitfile = xstrdup(gitfile);
532                 gitdirenv = gitfile;
533         }
534
535         if (!is_git_directory(gitdirenv)) {
536                 if (nongit_ok) {
537                         *nongit_ok = 1;
538                         free(gitfile);
539                         return NULL;
540                 }
541                 die("Not a git repository: '%s'", gitdirenv);
542         }
543
544         if (check_repository_format_gently(gitdirenv, nongit_ok)) {
545                 free(gitfile);
546                 return NULL;
547         }
548
549         /* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */
550         if (work_tree_env)
551                 set_git_work_tree(work_tree_env);
552         else if (is_bare_repository_cfg > 0) {
553                 if (git_work_tree_cfg) {
554                         /* #22.2, #30 */
555                         warning("core.bare and core.worktree do not make sense");
556                         work_tree_config_is_bogus = 1;
557                 }
558
559                 /* #18, #26 */
560                 set_git_dir(gitdirenv);
561                 free(gitfile);
562                 return NULL;
563         }
564         else if (git_work_tree_cfg) { /* #6, #14 */
565                 if (is_absolute_path(git_work_tree_cfg))
566                         set_git_work_tree(git_work_tree_cfg);
567                 else {
568                         char *core_worktree;
569                         if (chdir(gitdirenv))
570                                 die_errno("Could not chdir to '%s'", gitdirenv);
571                         if (chdir(git_work_tree_cfg))
572                                 die_errno("Could not chdir to '%s'", git_work_tree_cfg);
573                         core_worktree = xgetcwd();
574                         if (chdir(cwd->buf))
575                                 die_errno("Could not come back to cwd");
576                         set_git_work_tree(core_worktree);
577                         free(core_worktree);
578                 }
579         }
580         else if (!git_env_bool(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, 1)) {
581                 /* #16d */
582                 set_git_dir(gitdirenv);
583                 free(gitfile);
584                 return NULL;
585         }
586         else /* #2, #10 */
587                 set_git_work_tree(".");
588
589         /* set_git_work_tree() must have been called by now */
590         worktree = get_git_work_tree();
591
592         /* both get_git_work_tree() and cwd are already normalized */
593         if (!strcmp(cwd->buf, worktree)) { /* cwd == worktree */
594                 set_git_dir(gitdirenv);
595                 free(gitfile);
596                 return NULL;
597         }
598
599         offset = dir_inside_of(cwd->buf, worktree);
600         if (offset >= 0) {      /* cwd inside worktree? */
601                 set_git_dir(real_path(gitdirenv));
602                 if (chdir(worktree))
603                         die_errno("Could not chdir to '%s'", worktree);
604                 strbuf_addch(cwd, '/');
605                 free(gitfile);
606                 return cwd->buf + offset;
607         }
608
609         /* cwd outside worktree */
610         set_git_dir(gitdirenv);
611         free(gitfile);
612         return NULL;
613 }
614
615 static const char *setup_discovered_git_dir(const char *gitdir,
616                                             struct strbuf *cwd, int offset,
617                                             int *nongit_ok)
618 {
619         if (check_repository_format_gently(gitdir, nongit_ok))
620                 return NULL;
621
622         /* --work-tree is set without --git-dir; use discovered one */
623         if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
624                 if (offset != cwd->len && !is_absolute_path(gitdir))
625                         gitdir = xstrdup(real_path(gitdir));
626                 if (chdir(cwd->buf))
627                         die_errno("Could not come back to cwd");
628                 return setup_explicit_git_dir(gitdir, cwd, nongit_ok);
629         }
630
631         /* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */
632         if (is_bare_repository_cfg > 0) {
633                 set_git_dir(offset == cwd->len ? gitdir : real_path(gitdir));
634                 if (chdir(cwd->buf))
635                         die_errno("Could not come back to cwd");
636                 return NULL;
637         }
638
639         /* #0, #1, #5, #8, #9, #12, #13 */
640         set_git_work_tree(".");
641         if (strcmp(gitdir, DEFAULT_GIT_DIR_ENVIRONMENT))
642                 set_git_dir(gitdir);
643         inside_git_dir = 0;
644         inside_work_tree = 1;
645         if (offset == cwd->len)
646                 return NULL;
647
648         /* Make "offset" point to past the '/', and add a '/' at the end */
649         offset++;
650         strbuf_addch(cwd, '/');
651         return cwd->buf + offset;
652 }
653
654 /* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */
655 static const char *setup_bare_git_dir(struct strbuf *cwd, int offset,
656                                       int *nongit_ok)
657 {
658         int root_len;
659
660         if (check_repository_format_gently(".", nongit_ok))
661                 return NULL;
662
663         setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, "0", 1);
664
665         /* --work-tree is set without --git-dir; use discovered one */
666         if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
667                 const char *gitdir;
668
669                 gitdir = offset == cwd->len ? "." : xmemdupz(cwd->buf, offset);
670                 if (chdir(cwd->buf))
671                         die_errno("Could not come back to cwd");
672                 return setup_explicit_git_dir(gitdir, cwd, nongit_ok);
673         }
674
675         inside_git_dir = 1;
676         inside_work_tree = 0;
677         if (offset != cwd->len) {
678                 if (chdir(cwd->buf))
679                         die_errno("Cannot come back to cwd");
680                 root_len = offset_1st_component(cwd->buf);
681                 strbuf_setlen(cwd, offset > root_len ? offset : root_len);
682                 set_git_dir(cwd->buf);
683         }
684         else
685                 set_git_dir(".");
686         return NULL;
687 }
688
689 static const char *setup_nongit(const char *cwd, int *nongit_ok)
690 {
691         if (!nongit_ok)
692                 die("Not a git repository (or any of the parent directories): %s", DEFAULT_GIT_DIR_ENVIRONMENT);
693         if (chdir(cwd))
694                 die_errno("Cannot come back to cwd");
695         *nongit_ok = 1;
696         return NULL;
697 }
698
699 static dev_t get_device_or_die(const char *path, const char *prefix, int prefix_len)
700 {
701         struct stat buf;
702         if (stat(path, &buf)) {
703                 die_errno("failed to stat '%*s%s%s'",
704                                 prefix_len,
705                                 prefix ? prefix : "",
706                                 prefix ? "/" : "", path);
707         }
708         return buf.st_dev;
709 }
710
711 /*
712  * A "string_list_each_func_t" function that canonicalizes an entry
713  * from GIT_CEILING_DIRECTORIES using real_path_if_valid(), or
714  * discards it if unusable.  The presence of an empty entry in
715  * GIT_CEILING_DIRECTORIES turns off canonicalization for all
716  * subsequent entries.
717  */
718 static int canonicalize_ceiling_entry(struct string_list_item *item,
719                                       void *cb_data)
720 {
721         int *empty_entry_found = cb_data;
722         char *ceil = item->string;
723
724         if (!*ceil) {
725                 *empty_entry_found = 1;
726                 return 0;
727         } else if (!is_absolute_path(ceil)) {
728                 return 0;
729         } else if (*empty_entry_found) {
730                 /* Keep entry but do not canonicalize it */
731                 return 1;
732         } else {
733                 const char *real_path = real_path_if_valid(ceil);
734                 if (!real_path)
735                         return 0;
736                 free(item->string);
737                 item->string = xstrdup(real_path);
738                 return 1;
739         }
740 }
741
742 /*
743  * We cannot decide in this function whether we are in the work tree or
744  * not, since the config can only be read _after_ this function was called.
745  */
746 static const char *setup_git_directory_gently_1(int *nongit_ok)
747 {
748         const char *env_ceiling_dirs = getenv(CEILING_DIRECTORIES_ENVIRONMENT);
749         struct string_list ceiling_dirs = STRING_LIST_INIT_DUP;
750         static struct strbuf cwd = STRBUF_INIT;
751         const char *gitdirenv, *ret;
752         char *gitfile;
753         int offset, offset_parent, ceil_offset = -1;
754         dev_t current_device = 0;
755         int one_filesystem = 1;
756
757         /*
758          * We may have read an incomplete configuration before
759          * setting-up the git directory. If so, clear the cache so
760          * that the next queries to the configuration reload complete
761          * configuration (including the per-repo config file that we
762          * ignored previously).
763          */
764         git_config_clear();
765
766         /*
767          * Let's assume that we are in a git repository.
768          * If it turns out later that we are somewhere else, the value will be
769          * updated accordingly.
770          */
771         if (nongit_ok)
772                 *nongit_ok = 0;
773
774         if (strbuf_getcwd(&cwd))
775                 die_errno("Unable to read current working directory");
776         offset = cwd.len;
777
778         /*
779          * If GIT_DIR is set explicitly, we're not going
780          * to do any discovery, but we still do repository
781          * validation.
782          */
783         gitdirenv = getenv(GIT_DIR_ENVIRONMENT);
784         if (gitdirenv)
785                 return setup_explicit_git_dir(gitdirenv, &cwd, nongit_ok);
786
787         if (env_ceiling_dirs) {
788                 int empty_entry_found = 0;
789
790                 string_list_split(&ceiling_dirs, env_ceiling_dirs, PATH_SEP, -1);
791                 filter_string_list(&ceiling_dirs, 0,
792                                    canonicalize_ceiling_entry, &empty_entry_found);
793                 ceil_offset = longest_ancestor_length(cwd.buf, &ceiling_dirs);
794                 string_list_clear(&ceiling_dirs, 0);
795         }
796
797         if (ceil_offset < 0 && has_dos_drive_prefix(cwd.buf))
798                 ceil_offset = 1;
799
800         /*
801          * Test in the following order (relative to the cwd):
802          * - .git (file containing "gitdir: <path>")
803          * - .git/
804          * - ./ (bare)
805          * - ../.git
806          * - ../.git/
807          * - ../ (bare)
808          * - ../../.git/
809          *   etc.
810          */
811         one_filesystem = !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM", 0);
812         if (one_filesystem)
813                 current_device = get_device_or_die(".", NULL, 0);
814         for (;;) {
815                 gitfile = (char*)read_gitfile(DEFAULT_GIT_DIR_ENVIRONMENT);
816                 if (gitfile)
817                         gitdirenv = gitfile = xstrdup(gitfile);
818                 else {
819                         if (is_git_directory(DEFAULT_GIT_DIR_ENVIRONMENT))
820                                 gitdirenv = DEFAULT_GIT_DIR_ENVIRONMENT;
821                 }
822
823                 if (gitdirenv) {
824                         ret = setup_discovered_git_dir(gitdirenv,
825                                                        &cwd, offset,
826                                                        nongit_ok);
827                         free(gitfile);
828                         return ret;
829                 }
830                 free(gitfile);
831
832                 if (is_git_directory("."))
833                         return setup_bare_git_dir(&cwd, offset, nongit_ok);
834
835                 offset_parent = offset;
836                 while (--offset_parent > ceil_offset && cwd.buf[offset_parent] != '/');
837                 if (offset_parent <= ceil_offset)
838                         return setup_nongit(cwd.buf, nongit_ok);
839                 if (one_filesystem) {
840                         dev_t parent_device = get_device_or_die("..", cwd.buf,
841                                                                 offset);
842                         if (parent_device != current_device) {
843                                 if (nongit_ok) {
844                                         if (chdir(cwd.buf))
845                                                 die_errno("Cannot come back to cwd");
846                                         *nongit_ok = 1;
847                                         return NULL;
848                                 }
849                                 strbuf_setlen(&cwd, offset);
850                                 die("Not a git repository (or any parent up to mount point %s)\n"
851                                 "Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).",
852                                     cwd.buf);
853                         }
854                 }
855                 if (chdir("..")) {
856                         strbuf_setlen(&cwd, offset);
857                         die_errno("Cannot change to '%s/..'", cwd.buf);
858                 }
859                 offset = offset_parent;
860         }
861 }
862
863 const char *setup_git_directory_gently(int *nongit_ok)
864 {
865         const char *prefix;
866
867         prefix = setup_git_directory_gently_1(nongit_ok);
868         if (prefix)
869                 setenv(GIT_PREFIX_ENVIRONMENT, prefix, 1);
870         else
871                 setenv(GIT_PREFIX_ENVIRONMENT, "", 1);
872
873         if (startup_info) {
874                 startup_info->have_repository = !nongit_ok || !*nongit_ok;
875                 startup_info->prefix = prefix;
876         }
877         return prefix;
878 }
879
880 int git_config_perm(const char *var, const char *value)
881 {
882         int i;
883         char *endptr;
884
885         if (value == NULL)
886                 return PERM_GROUP;
887
888         if (!strcmp(value, "umask"))
889                 return PERM_UMASK;
890         if (!strcmp(value, "group"))
891                 return PERM_GROUP;
892         if (!strcmp(value, "all") ||
893             !strcmp(value, "world") ||
894             !strcmp(value, "everybody"))
895                 return PERM_EVERYBODY;
896
897         /* Parse octal numbers */
898         i = strtol(value, &endptr, 8);
899
900         /* If not an octal number, maybe true/false? */
901         if (*endptr != 0)
902                 return git_config_bool(var, value) ? PERM_GROUP : PERM_UMASK;
903
904         /*
905          * Treat values 0, 1 and 2 as compatibility cases, otherwise it is
906          * a chmod value to restrict to.
907          */
908         switch (i) {
909         case PERM_UMASK:               /* 0 */
910                 return PERM_UMASK;
911         case OLD_PERM_GROUP:           /* 1 */
912                 return PERM_GROUP;
913         case OLD_PERM_EVERYBODY:       /* 2 */
914                 return PERM_EVERYBODY;
915         }
916
917         /* A filemode value was given: 0xxx */
918
919         if ((i & 0600) != 0600)
920                 die("Problem with core.sharedRepository filemode value "
921                     "(0%.3o).\nThe owner of files must always have "
922                     "read and write permissions.", i);
923
924         /*
925          * Mask filemode value. Others can not get write permission.
926          * x flags for directories are handled separately.
927          */
928         return -(i & 0666);
929 }
930
931 int check_repository_format_version(const char *var, const char *value, void *cb)
932 {
933         int ret = check_repo_format(var, value, cb);
934         if (ret)
935                 return ret;
936         if (strcmp(var, "core.bare") == 0) {
937                 is_bare_repository_cfg = git_config_bool(var, value);
938                 if (is_bare_repository_cfg == 1)
939                         inside_work_tree = -1;
940         } else if (strcmp(var, "core.worktree") == 0) {
941                 if (!value)
942                         return config_error_nonbool(var);
943                 free(git_work_tree_cfg);
944                 git_work_tree_cfg = xstrdup(value);
945                 inside_work_tree = -1;
946         }
947         return 0;
948 }
949
950 int check_repository_format(void)
951 {
952         return check_repository_format_gently(get_git_dir(), NULL);
953 }
954
955 /*
956  * Returns the "prefix", a path to the current working directory
957  * relative to the work tree root, or NULL, if the current working
958  * directory is not a strict subdirectory of the work tree root. The
959  * prefix always ends with a '/' character.
960  */
961 const char *setup_git_directory(void)
962 {
963         return setup_git_directory_gently(NULL);
964 }
965
966 const char *resolve_gitdir(const char *suspect)
967 {
968         if (is_git_directory(suspect))
969                 return suspect;
970         return read_gitfile(suspect);
971 }
972
973 /* if any standard file descriptor is missing open it to /dev/null */
974 void sanitize_stdfds(void)
975 {
976         int fd = open("/dev/null", O_RDWR, 0);
977         while (fd != -1 && fd < 2)
978                 fd = dup(fd);
979         if (fd == -1)
980                 die_errno("open /dev/null or dup failed");
981         if (fd > 2)
982                 close(fd);
983 }
984
985 int daemonize(void)
986 {
987 #ifdef NO_POSIX_GOODIES
988         errno = ENOSYS;
989         return -1;
990 #else
991         switch (fork()) {
992                 case 0:
993                         break;
994                 case -1:
995                         die_errno("fork failed");
996                 default:
997                         exit(0);
998         }
999         if (setsid() == -1)
1000                 die_errno("setsid failed");
1001         close(0);
1002         close(1);
1003         close(2);
1004         sanitize_stdfds();
1005         return 0;
1006 #endif
1007 }