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