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