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