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