]> git.ipfire.org Git - thirdparty/git.git/blame - setup.c
refs: convert peel_object to struct object_id
[thirdparty/git.git] / setup.c
CommitLineData
d288a700 1#include "cache.h"
c14c234f 2#include "repository.h"
b2141fc1 3#include "config.h"
e90fdc39 4#include "dir.h"
31171d9e 5#include "string-list.h"
e90fdc39
JS
6
7static int inside_git_dir = -1;
8static int inside_work_tree = -1;
fada7674 9static int work_tree_config_is_bogus;
d288a700 10
46c3cd44
JK
11static struct startup_info the_startup_info;
12struct startup_info *startup_info = &the_startup_info;
13
ddc2a628
MEW
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 */
26static 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);
6127ff63 38 off = offset_1st_component(path);
ddc2a628
MEW
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;
6127ff63 54 path += off;
ddc2a628
MEW
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
645a29c4
NTND
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 */
89char *prefix_path_gently(const char *prefix, int len,
90 int *remaining_prefix, const char *path)
d089ebaa
JH
91{
92 const char *orig = path;
18e051a3
CMAB
93 char *sanitized;
94 if (is_absolute_path(orig)) {
3733e694 95 sanitized = xmallocz(strlen(path));
645a29c4
NTND
96 if (remaining_prefix)
97 *remaining_prefix = 0;
655ee9ea
MEW
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 }
18e051a3 106 } else {
24041d6b 107 sanitized = xstrfmt("%.*s%s", len, len ? prefix : "", path);
645a29c4
NTND
108 if (remaining_prefix)
109 *remaining_prefix = len;
655ee9ea 110 if (normalize_path_copy_len(sanitized, sanitized, remaining_prefix)) {
546e0fd9
JK
111 free(sanitized);
112 return NULL;
d089ebaa 113 }
d089ebaa
JH
114 }
115 return sanitized;
f332726e
LT
116}
117
546e0fd9
JK
118char *prefix_path(const char *prefix, int len, const char *path)
119{
645a29c4 120 char *r = prefix_path_gently(prefix, len, NULL, path);
546e0fd9
JK
121 if (!r)
122 die("'%s' is outside repository", path);
123 return r;
124}
125
126int path_inside_repo(const char *prefix, const char *path)
127{
128 int len = prefix ? strlen(prefix) : 0;
645a29c4 129 char *r = prefix_path_gently(prefix, len, NULL, path);
546e0fd9
JK
130 if (r) {
131 free(r);
132 return 1;
133 }
134 return 0;
135}
136
c6e8c800
JH
137int check_filename(const char *prefix, const char *arg)
138{
e4da43b1 139 char *to_free = NULL;
c6e8c800
JH
140 struct stat st;
141
d51c6ee0
JK
142 if (skip_prefix(arg, ":/", &arg)) {
143 if (!*arg) /* ":/" is root dir, always exists */
4db86e8b 144 return 1;
a08cbcda 145 prefix = NULL;
42471bce
JK
146 } else if (skip_prefix(arg, ":!", &arg) ||
147 skip_prefix(arg, ":^", &arg)) {
148 if (!*arg) /* excluding everything is silly, but allowed */
149 return 1;
a08cbcda
JK
150 }
151
152 if (prefix)
153 arg = to_free = prefix_filename(prefix, arg);
154
155 if (!lstat(arg, &st)) {
e4da43b1 156 free(to_free);
c6e8c800 157 return 1; /* file exists */
e4da43b1 158 }
93dd544f 159 if (is_missing_file_error(errno)) {
e4da43b1 160 free(to_free);
c6e8c800 161 return 0; /* file does not exist */
e4da43b1 162 }
c6e8c800
JH
163 die_errno("failed to stat '%s'", arg);
164}
165
023e37c3
MM
166static void NORETURN die_verify_filename(const char *prefix,
167 const char *arg,
168 int diagnose_misspelt_rev)
009fee47 169{
023e37c3 170 if (!diagnose_misspelt_rev)
ab33a76e
VA
171 die(_("%s: no such path in the working tree.\n"
172 "Use 'git <command> -- <path>...' to specify paths that do not exist locally."),
023e37c3 173 arg);
0e539dca
JH
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
8c135ea2 178 * let maybe_die_on_misspelt_object_name() even trigger.
0e539dca
JH
179 */
180 if (!(arg[0] == ':' && !isalnum(arg[1])))
8c135ea2 181 maybe_die_on_misspelt_object_name(arg, prefix);
0e539dca 182
009fee47 183 /* ... or fall back the most general message. */
ab33a76e
VA
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);
009fee47
MM
187
188}
189
c99eddd8
JK
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 */
195static 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
e23d0b4a
LT
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")
023e37c3
MM
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).
e23d0b4a 227 */
023e37c3
MM
228void verify_filename(const char *prefix,
229 const char *arg,
230 int diagnose_misspelt_rev)
e23d0b4a 231{
e23d0b4a 232 if (*arg == '-')
33f3c683 233 die("option '%s' must come before non-option arguments", arg);
2cb47ab6 234 if (looks_like_pathspec(arg) || check_filename(prefix, arg))
e23d0b4a 235 return;
023e37c3 236 die_verify_filename(prefix, arg, diagnose_misspelt_rev);
e23d0b4a
LT
237}
238
ea92f41f
JH
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 */
244void verify_non_filename(const char *prefix, const char *arg)
245{
7ae3df8c 246 if (!is_inside_work_tree() || is_inside_git_dir())
68025633 247 return;
ea92f41f
JH
248 if (*arg == '-')
249 return; /* flag */
c6e8c800
JH
250 if (!check_filename(prefix, arg))
251 return;
ab33a76e
VA
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);
ea92f41f
JH
255}
256
31e26ebc 257int get_common_dir(struct strbuf *sb, const char *gitdir)
11f9dd71
MK
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
268int get_common_dir_noenv(struct strbuf *sb, const char *gitdir)
4dc4e145
NTND
269{
270 struct strbuf data = STRBUF_INIT;
271 struct strbuf path = STRBUF_INIT;
31e26ebc 272 int ret = 0;
11f9dd71 273
4dc4e145
NTND
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);
33ad9ddd 286 strbuf_add_real_path(sb, path.buf);
31e26ebc 287 ret = 1;
4ac9006f 288 } else {
4dc4e145 289 strbuf_addstr(sb, gitdir);
4ac9006f
BW
290 }
291
4dc4e145
NTND
292 strbuf_release(&data);
293 strbuf_release(&path);
31e26ebc 294 return ret;
4dc4e145 295}
d288a700 296
5f5608bc 297/*
ad1a382f 298 * Test if it looks like we're at a git directory.
5e7bfe25 299 * We want to see:
5f5608bc 300 *
790296fd 301 * - either an objects/ directory _or_ the proper
5f5608bc 302 * GIT_OBJECT_DIRECTORY environment variable
ad1a382f 303 * - a refs/ directory
8098a178 304 * - either a HEAD symlink or a HEAD file that is formatted as
c847f537
JH
305 * a proper "ref:", or a regular file HEAD that has a properly
306 * formatted sha1 object name.
5f5608bc 307 */
b3256eb8 308int is_git_directory(const char *suspect)
5f5608bc 309{
1d186b6f
NTND
310 struct strbuf path = STRBUF_INIT;
311 int ret = 0;
312 size_t len;
ad1a382f 313
4dc4e145
NTND
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);
1d186b6f 321 len = path.len;
4dc4e145
NTND
322
323 /* Check non-worktree-related signatures */
ad1a382f
SP
324 if (getenv(DB_ENVIRONMENT)) {
325 if (access(getenv(DB_ENVIRONMENT), X_OK))
1d186b6f 326 goto done;
ad1a382f
SP
327 }
328 else {
4dc4e145 329 strbuf_setlen(&path, len);
1d186b6f
NTND
330 strbuf_addstr(&path, "/objects");
331 if (access(path.buf, X_OK))
332 goto done;
ad1a382f
SP
333 }
334
1d186b6f
NTND
335 strbuf_setlen(&path, len);
336 strbuf_addstr(&path, "/refs");
337 if (access(path.buf, X_OK))
338 goto done;
ad1a382f 339
1d186b6f
NTND
340 ret = 1;
341done:
342 strbuf_release(&path);
343 return ret;
5f5608bc
LT
344}
345
ffd036b1
JK
346int 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
68025633
JS
363int is_inside_git_dir(void)
364{
e90fdc39
JS
365 if (inside_git_dir < 0)
366 inside_git_dir = is_inside_dir(get_git_dir());
367 return inside_git_dir;
892c41b9
ML
368}
369
892c41b9
ML
370int is_inside_work_tree(void)
371{
e90fdc39
JS
372 if (inside_work_tree < 0)
373 inside_work_tree = is_inside_dir(get_git_work_tree());
374 return inside_work_tree;
892c41b9
ML
375}
376
f3fa1838
JH
377void setup_work_tree(void)
378{
354e6534
JS
379 const char *work_tree, *git_dir;
380 static int initialized = 0;
381
382 if (initialized)
383 return;
fada7674
JK
384
385 if (work_tree_config_is_bogus)
386 die("unable to set up work tree using invalid config");
387
354e6534
JS
388 work_tree = get_git_work_tree();
389 git_dir = get_git_dir();
59f0f2f3 390 if (!is_absolute_path(git_dir))
e2a57aac 391 git_dir = real_path(get_git_dir());
59f0f2f3
MH
392 if (!work_tree || chdir(work_tree))
393 die("This operation must be run in a work tree");
0ed74813
NTND
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
41894ae3 402 set_git_dir(remove_leading_path(git_dir, work_tree));
354e6534 403 initialized = 1;
59f0f2f3
MH
404}
405
2cc7c2c7 406static int check_repo_format(const char *var, const char *value, void *vdata)
31e26ebc 407{
2cc7c2c7 408 struct repository_format *data = vdata;
00a09d57
JK
409 const char *ext;
410
31e26ebc 411 if (strcmp(var, "core.repositoryformatversion") == 0)
2cc7c2c7 412 data->version = git_config_int(var, value);
00a09d57
JK
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 ;
067fbd41 421 else if (!strcmp(ext, "preciousobjects"))
2cc7c2c7 422 data->precious_objects = git_config_bool(var, value);
00a09d57 423 else
2cc7c2c7 424 string_list_append(&data->unknown_extensions, ext);
652f18ee
JK
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);
00a09d57 431 }
31e26ebc
NTND
432 return 0;
433}
434
337e51ce 435static int check_repository_format_gently(const char *gitdir, int *nongit_ok)
9459aa77 436{
7d0fb0da 437 struct strbuf sb = STRBUF_INIT;
2cc7c2c7
JK
438 struct strbuf err = STRBUF_INIT;
439 struct repository_format candidate;
652f18ee 440 int has_common;
00a09d57 441
652f18ee 442 has_common = get_common_dir(&sb, gitdir);
e61a509a 443 strbuf_addstr(&sb, "/config");
652f18ee 444 read_repository_format(&candidate, sb.buf);
2cc7c2c7 445 strbuf_release(&sb);
e61a509a 446
337e51ce 447 /*
2cc7c2c7
JK
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.
337e51ce 451 */
2cc7c2c7
JK
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
2cc7c2c7
JK
465 repository_format_precious_objects = candidate.precious_objects;
466 string_list_clear(&candidate.unknown_extensions, 0);
652f18ee
JK
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;
2cc7c2c7 476 inside_work_tree = -1;
652f18ee
JK
477 }
478 } else {
479 free(candidate.work_tree);
2cc7c2c7
JK
480 }
481
482 return 0;
483}
484
652f18ee 485int read_repository_format(struct repository_format *format, const char *path)
2cc7c2c7
JK
486{
487 memset(format, 0, sizeof(*format));
488 format->version = -1;
489 format->is_bare = -1;
490 string_list_init(&format->unknown_extensions, 1);
652f18ee 491 git_config_from_file(check_repo_format, path, format);
2cc7c2c7
JK
492 return format->version;
493}
494
2cc7c2c7
JK
495int verify_repository_format(const struct repository_format *format,
496 struct strbuf *err)
497{
498 if (GIT_REPO_VERSION_READ < format->version) {
274db840 499 strbuf_addf(err, _("Expected git repo version <= %d, found %d"),
2cc7c2c7
JK
500 GIT_REPO_VERSION_READ, format->version);
501 return -1;
502 }
503
504 if (format->version >= 1 && format->unknown_extensions.nr) {
00a09d57
JK
505 int i;
506
274db840 507 strbuf_addstr(err, _("unknown repository extensions found:"));
00a09d57 508
2cc7c2c7
JK
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;
00a09d57
JK
513 }
514
2cc7c2c7 515 return 0;
9459aa77
NTND
516}
517
5f29433f
SB
518void 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
b44ebb19
LH
542/*
543 * Try to read the location of the git directory from the .git file,
ea1d8756
HWN
544 * return path to git directory if found. The return value comes from
545 * a shared buffer.
a93bedad
EE
546 *
547 * On failure, if return_error_code is not NULL, return_error_code
548 * will be set to an error code and NULL will be returned. If
549 * return_error_code is NULL the function will die instead (for most
550 * cases).
b44ebb19 551 */
a93bedad 552const char *read_gitfile_gently(const char *path, int *return_error_code)
b44ebb19 553{
921bdd96 554 const int max_file_size = 1 << 20; /* 1MB */
a93bedad
EE
555 int error_code = 0;
556 char *buf = NULL;
557 char *dir = NULL;
40c813e0 558 const char *slash;
b44ebb19
LH
559 struct stat st;
560 int fd;
b1905aea 561 ssize_t len;
b44ebb19 562
a93bedad 563 if (stat(path, &st)) {
5c4003ca 564 /* NEEDSWORK: discern between ENOENT vs other errors */
a93bedad
EE
565 error_code = READ_GITFILE_ERR_STAT_FAILED;
566 goto cleanup_return;
567 }
568 if (!S_ISREG(st.st_mode)) {
569 error_code = READ_GITFILE_ERR_NOT_A_FILE;
570 goto cleanup_return;
571 }
921bdd96
EE
572 if (st.st_size > max_file_size) {
573 error_code = READ_GITFILE_ERR_TOO_LARGE;
574 goto cleanup_return;
575 }
b44ebb19 576 fd = open(path, O_RDONLY);
a93bedad
EE
577 if (fd < 0) {
578 error_code = READ_GITFILE_ERR_OPEN_FAILED;
579 goto cleanup_return;
580 }
3733e694 581 buf = xmallocz(st.st_size);
b44ebb19
LH
582 len = read_in_full(fd, buf, st.st_size);
583 close(fd);
a93bedad
EE
584 if (len != st.st_size) {
585 error_code = READ_GITFILE_ERR_READ_FAILED;
586 goto cleanup_return;
587 }
a93bedad
EE
588 if (!starts_with(buf, "gitdir: ")) {
589 error_code = READ_GITFILE_ERR_INVALID_FORMAT;
590 goto cleanup_return;
591 }
b44ebb19
LH
592 while (buf[len - 1] == '\n' || buf[len - 1] == '\r')
593 len--;
a93bedad
EE
594 if (len < 9) {
595 error_code = READ_GITFILE_ERR_NO_PATH;
596 goto cleanup_return;
597 }
b44ebb19 598 buf[len] = '\0';
40c813e0
BK
599 dir = buf + 8;
600
601 if (!is_absolute_path(dir) && (slash = strrchr(path, '/'))) {
602 size_t pathlen = slash+1 - path;
75faa45a
JK
603 dir = xstrfmt("%.*s%.*s", (int)pathlen, path,
604 (int)(len - 8), buf + 8);
40c813e0
BK
605 free(buf);
606 buf = dir;
607 }
a93bedad
EE
608 if (!is_git_directory(dir)) {
609 error_code = READ_GITFILE_ERR_NOT_A_REPO;
610 goto cleanup_return;
611 }
e2a57aac 612 path = real_path(dir);
40c813e0 613
a93bedad 614cleanup_return:
a93bedad
EE
615 if (return_error_code)
616 *return_error_code = error_code;
5f29433f
SB
617 else if (error_code)
618 read_gitfile_error_die(error_code, path, dir);
a93bedad 619
b44ebb19 620 free(buf);
38ae8784 621 return error_code ? NULL : path;
b44ebb19
LH
622}
623
e4e30347 624static const char *setup_explicit_git_dir(const char *gitdirenv,
7333ed17 625 struct strbuf *cwd,
b3f66fd3 626 int *nongit_ok)
e4e30347 627{
b3f66fd3
NTND
628 const char *work_tree_env = getenv(GIT_WORK_TREE_ENVIRONMENT);
629 const char *worktree;
630 char *gitfile;
9b125da4 631 int offset;
e4e30347
JN
632
633 if (PATH_MAX - 40 < strlen(gitdirenv))
634 die("'$%s' too big", GIT_DIR_ENVIRONMENT);
b3f66fd3 635
13d6ec91 636 gitfile = (char*)read_gitfile(gitdirenv);
b3f66fd3
NTND
637 if (gitfile) {
638 gitfile = xstrdup(gitfile);
639 gitdirenv = gitfile;
640 }
641
e4e30347
JN
642 if (!is_git_directory(gitdirenv)) {
643 if (nongit_ok) {
644 *nongit_ok = 1;
b3f66fd3 645 free(gitfile);
e4e30347
JN
646 return NULL;
647 }
648 die("Not a git repository: '%s'", gitdirenv);
649 }
b3f66fd3
NTND
650
651 if (check_repository_format_gently(gitdirenv, nongit_ok)) {
652 free(gitfile);
653 return NULL;
e4e30347 654 }
b3f66fd3
NTND
655
656 /* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */
657 if (work_tree_env)
658 set_git_work_tree(work_tree_env);
659 else if (is_bare_repository_cfg > 0) {
fada7674
JK
660 if (git_work_tree_cfg) {
661 /* #22.2, #30 */
662 warning("core.bare and core.worktree do not make sense");
663 work_tree_config_is_bogus = 1;
664 }
b3f66fd3
NTND
665
666 /* #18, #26 */
667 set_git_dir(gitdirenv);
668 free(gitfile);
e4e30347 669 return NULL;
b3f66fd3
NTND
670 }
671 else if (git_work_tree_cfg) { /* #6, #14 */
672 if (is_absolute_path(git_work_tree_cfg))
673 set_git_work_tree(git_work_tree_cfg);
674 else {
56b9f6e7 675 char *core_worktree;
b3f66fd3
NTND
676 if (chdir(gitdirenv))
677 die_errno("Could not chdir to '%s'", gitdirenv);
678 if (chdir(git_work_tree_cfg))
679 die_errno("Could not chdir to '%s'", git_work_tree_cfg);
56b9f6e7 680 core_worktree = xgetcwd();
7333ed17 681 if (chdir(cwd->buf))
b3f66fd3
NTND
682 die_errno("Could not come back to cwd");
683 set_git_work_tree(core_worktree);
56b9f6e7 684 free(core_worktree);
b3f66fd3
NTND
685 }
686 }
2cd83d10
JK
687 else if (!git_env_bool(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, 1)) {
688 /* #16d */
689 set_git_dir(gitdirenv);
690 free(gitfile);
691 return NULL;
692 }
b3f66fd3
NTND
693 else /* #2, #10 */
694 set_git_work_tree(".");
695
696 /* set_git_work_tree() must have been called by now */
697 worktree = get_git_work_tree();
698
699 /* both get_git_work_tree() and cwd are already normalized */
7333ed17 700 if (!strcmp(cwd->buf, worktree)) { /* cwd == worktree */
b3f66fd3
NTND
701 set_git_dir(gitdirenv);
702 free(gitfile);
e4e30347 703 return NULL;
b3f66fd3 704 }
e4e30347 705
7333ed17 706 offset = dir_inside_of(cwd->buf, worktree);
9b125da4 707 if (offset >= 0) { /* cwd inside worktree? */
e2a57aac 708 set_git_dir(real_path(gitdirenv));
b3f66fd3
NTND
709 if (chdir(worktree))
710 die_errno("Could not chdir to '%s'", worktree);
7333ed17 711 strbuf_addch(cwd, '/');
b3f66fd3 712 free(gitfile);
7333ed17 713 return cwd->buf + offset;
93a00542 714 }
b3f66fd3
NTND
715
716 /* cwd outside worktree */
717 set_git_dir(gitdirenv);
718 free(gitfile);
719 return NULL;
93a00542
JN
720}
721
9951d3b3 722static const char *setup_discovered_git_dir(const char *gitdir,
7333ed17 723 struct strbuf *cwd, int offset,
9951d3b3 724 int *nongit_ok)
98937bef 725{
9951d3b3
NTND
726 if (check_repository_format_gently(gitdir, nongit_ok))
727 return NULL;
98937bef 728
4868b2ea
JN
729 /* --work-tree is set without --git-dir; use discovered one */
730 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
2d4dcf21
JS
731 char *to_free = NULL;
732 const char *ret;
733
7333ed17 734 if (offset != cwd->len && !is_absolute_path(gitdir))
2d4dcf21 735 gitdir = to_free = real_pathdup(gitdir, 1);
7333ed17 736 if (chdir(cwd->buf))
4868b2ea 737 die_errno("Could not come back to cwd");
2d4dcf21
JS
738 ret = setup_explicit_git_dir(gitdir, cwd, nongit_ok);
739 free(to_free);
740 return ret;
4868b2ea
JN
741 }
742
9951d3b3
NTND
743 /* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */
744 if (is_bare_repository_cfg > 0) {
7333ed17
RS
745 set_git_dir(offset == cwd->len ? gitdir : real_path(gitdir));
746 if (chdir(cwd->buf))
9951d3b3 747 die_errno("Could not come back to cwd");
98937bef 748 return NULL;
9951d3b3 749 }
98937bef 750
9951d3b3
NTND
751 /* #0, #1, #5, #8, #9, #12, #13 */
752 set_git_work_tree(".");
753 if (strcmp(gitdir, DEFAULT_GIT_DIR_ENVIRONMENT))
754 set_git_dir(gitdir);
98937bef 755 inside_git_dir = 0;
9951d3b3 756 inside_work_tree = 1;
7333ed17 757 if (offset == cwd->len)
98937bef
NTND
758 return NULL;
759
df380d58
JS
760 /* Make "offset" point past the '/' (already the case for root dirs) */
761 if (offset != offset_1st_component(cwd->buf))
762 offset++;
763 /* Add a '/' at the end */
7333ed17
RS
764 strbuf_addch(cwd, '/');
765 return cwd->buf + offset;
98937bef
NTND
766}
767
1cd8031b 768/* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */
7333ed17
RS
769static const char *setup_bare_git_dir(struct strbuf *cwd, int offset,
770 int *nongit_ok)
68698da5
JN
771{
772 int root_len;
773
1cd8031b
NTND
774 if (check_repository_format_gently(".", nongit_ok))
775 return NULL;
776
2cd83d10
JK
777 setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, "0", 1);
778
4868b2ea
JN
779 /* --work-tree is set without --git-dir; use discovered one */
780 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
da6f8475 781 static const char *gitdir;
4868b2ea 782
7333ed17
RS
783 gitdir = offset == cwd->len ? "." : xmemdupz(cwd->buf, offset);
784 if (chdir(cwd->buf))
4868b2ea 785 die_errno("Could not come back to cwd");
7333ed17 786 return setup_explicit_git_dir(gitdir, cwd, nongit_ok);
4868b2ea
JN
787 }
788
68698da5 789 inside_git_dir = 1;
1cd8031b 790 inside_work_tree = 0;
7333ed17
RS
791 if (offset != cwd->len) {
792 if (chdir(cwd->buf))
8fc0ae80 793 die_errno("Cannot come back to cwd");
7333ed17
RS
794 root_len = offset_1st_component(cwd->buf);
795 strbuf_setlen(cwd, offset > root_len ? offset : root_len);
796 set_git_dir(cwd->buf);
337e51ce 797 }
1cd8031b 798 else
68698da5 799 set_git_dir(".");
68698da5
JN
800 return NULL;
801}
802
f161edeb
JN
803static const char *setup_nongit(const char *cwd, int *nongit_ok)
804{
805 if (!nongit_ok)
2ff30e67 806 die(_("Not a git repository (or any of the parent directories): %s"), DEFAULT_GIT_DIR_ENVIRONMENT);
f161edeb 807 if (chdir(cwd))
2ff30e67 808 die_errno(_("Cannot come back to cwd"));
f161edeb
JN
809 *nongit_ok = 1;
810 return NULL;
811}
812
2565b43b 813static dev_t get_device_or_die(const char *path, const char *prefix, int prefix_len)
60c98d1e
JN
814{
815 struct stat buf;
2565b43b
CB
816 if (stat(path, &buf)) {
817 die_errno("failed to stat '%*s%s%s'",
818 prefix_len,
60c98d1e
JN
819 prefix ? prefix : "",
820 prefix ? "/" : "", path);
2565b43b 821 }
60c98d1e
JN
822 return buf.st_dev;
823}
824
9e2326c7 825/*
1b77d83c
MH
826 * A "string_list_each_func_t" function that canonicalizes an entry
827 * from GIT_CEILING_DIRECTORIES using real_path_if_valid(), or
7ec30aaa
MH
828 * discards it if unusable. The presence of an empty entry in
829 * GIT_CEILING_DIRECTORIES turns off canonicalization for all
830 * subsequent entries.
9e2326c7 831 */
1b77d83c 832static int canonicalize_ceiling_entry(struct string_list_item *item,
7ec30aaa 833 void *cb_data)
9e2326c7 834{
7ec30aaa 835 int *empty_entry_found = cb_data;
1b77d83c 836 char *ceil = item->string;
9e2326c7 837
7ec30aaa
MH
838 if (!*ceil) {
839 *empty_entry_found = 1;
9e2326c7 840 return 0;
7ec30aaa 841 } else if (!is_absolute_path(ceil)) {
9e2326c7 842 return 0;
7ec30aaa
MH
843 } else if (*empty_entry_found) {
844 /* Keep entry but do not canonicalize it */
845 return 1;
846 } else {
ce83eadd 847 char *real_path = real_pathdup(ceil, 0);
4ac9006f 848 if (!real_path) {
7ec30aaa 849 return 0;
4ac9006f 850 }
7ec30aaa 851 free(item->string);
4ac9006f 852 item->string = real_path;
7ec30aaa
MH
853 return 1;
854 }
9e2326c7
MH
855}
856
ce9b8aab
JS
857enum discovery_result {
858 GIT_DIR_NONE = 0,
859 GIT_DIR_EXPLICIT,
860 GIT_DIR_DISCOVERED,
861 GIT_DIR_BARE,
862 /* these are errors */
863 GIT_DIR_HIT_CEILING = -1,
01017dce
JS
864 GIT_DIR_HIT_MOUNT_POINT = -2,
865 GIT_DIR_INVALID_GITFILE = -3
ce9b8aab
JS
866};
867
e90fdc39
JS
868/*
869 * We cannot decide in this function whether we are in the work tree or
870 * not, since the config can only be read _after_ this function was called.
ce9b8aab
JS
871 *
872 * Also, we avoid changing any global state (such as the current working
873 * directory) to allow early callers.
874 *
875 * The directory where the search should start needs to be passed in via the
876 * `dir` parameter; upon return, the `dir` buffer will contain the path of
877 * the directory where the search ended, and `gitdir` will contain the path of
878 * the discovered .git/ directory, if any. If `gitdir` is not absolute, it
879 * is relative to `dir` (i.e. *not* necessarily the cwd).
e90fdc39 880 */
ce9b8aab 881static enum discovery_result setup_git_directory_gently_1(struct strbuf *dir,
01017dce
JS
882 struct strbuf *gitdir,
883 int die_on_error)
d288a700 884{
0454dd93 885 const char *env_ceiling_dirs = getenv(CEILING_DIRECTORIES_ENVIRONMENT);
31171d9e 886 struct string_list ceiling_dirs = STRING_LIST_INIT_DUP;
ce9b8aab
JS
887 const char *gitdirenv;
888 int ceil_offset = -1, min_offset = has_dos_drive_prefix(dir->buf) ? 3 : 1;
c7d1d1b1
RH
889 dev_t current_device = 0;
890 int one_filesystem = 1;
d288a700 891
e90fdc39
JS
892 /*
893 * If GIT_DIR is set explicitly, we're not going
894 * to do any discovery, but we still do repository
895 * validation.
896 */
ad1a382f 897 gitdirenv = getenv(GIT_DIR_ENVIRONMENT);
ce9b8aab
JS
898 if (gitdirenv) {
899 strbuf_addstr(gitdir, gitdirenv);
900 return GIT_DIR_EXPLICIT;
901 }
d288a700 902
31171d9e 903 if (env_ceiling_dirs) {
7ec30aaa
MH
904 int empty_entry_found = 0;
905
31171d9e 906 string_list_split(&ceiling_dirs, env_ceiling_dirs, PATH_SEP, -1);
1b77d83c 907 filter_string_list(&ceiling_dirs, 0,
7ec30aaa 908 canonicalize_ceiling_entry, &empty_entry_found);
ce9b8aab 909 ceil_offset = longest_ancestor_length(dir->buf, &ceiling_dirs);
31171d9e
MH
910 string_list_clear(&ceiling_dirs, 0);
911 }
912
ce9b8aab
JS
913 if (ceil_offset < 0)
914 ceil_offset = min_offset - 2;
d288a700 915
892c41b9 916 /*
ce9b8aab 917 * Test in the following order (relative to the dir):
b44ebb19 918 * - .git (file containing "gitdir: <path>")
e90fdc39
JS
919 * - .git/
920 * - ./ (bare)
b44ebb19 921 * - ../.git
e90fdc39
JS
922 * - ../.git/
923 * - ../ (bare)
924 * - ../../.git/
925 * etc.
892c41b9 926 */
cf87463e 927 one_filesystem = !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM", 0);
60c98d1e 928 if (one_filesystem)
ce9b8aab 929 current_device = get_device_or_die(dir->buf, NULL, 0);
e90fdc39 930 for (;;) {
01017dce 931 int offset = dir->len, error_code = 0;
ce9b8aab
JS
932
933 if (offset > min_offset)
934 strbuf_addch(dir, '/');
935 strbuf_addstr(dir, DEFAULT_GIT_DIR_ENVIRONMENT);
01017dce
JS
936 gitdirenv = read_gitfile_gently(dir->buf, die_on_error ?
937 NULL : &error_code);
938 if (!gitdirenv) {
939 if (die_on_error ||
940 error_code == READ_GITFILE_ERR_NOT_A_FILE) {
5c4003ca 941 /* NEEDSWORK: fail if .git is not file nor dir */
01017dce
JS
942 if (is_git_directory(dir->buf))
943 gitdirenv = DEFAULT_GIT_DIR_ENVIRONMENT;
944 } else if (error_code != READ_GITFILE_ERR_STAT_FAILED)
945 return GIT_DIR_INVALID_GITFILE;
9951d3b3 946 }
ce9b8aab 947 strbuf_setlen(dir, offset);
9951d3b3 948 if (gitdirenv) {
ce9b8aab
JS
949 strbuf_addstr(gitdir, gitdirenv);
950 return GIT_DIR_DISCOVERED;
9951d3b3 951 }
9951d3b3 952
ce9b8aab
JS
953 if (is_git_directory(dir->buf)) {
954 strbuf_addstr(gitdir, ".");
955 return GIT_DIR_BARE;
502ffe34 956 }
9951d3b3 957
ce9b8aab
JS
958 if (offset <= min_offset)
959 return GIT_DIR_HIT_CEILING;
1cd8031b 960
ce9b8aab 961 while (--offset > ceil_offset && !is_dir_sep(dir->buf[offset]))
6c1e6544 962 ; /* continue */
ce9b8aab
JS
963 if (offset <= ceil_offset)
964 return GIT_DIR_HIT_CEILING;
965
966 strbuf_setlen(dir, offset > min_offset ? offset : min_offset);
967 if (one_filesystem &&
968 current_device != get_device_or_die(dir->buf, NULL, offset))
969 return GIT_DIR_HIT_MOUNT_POINT;
892c41b9 970 }
d288a700 971}
5e7bfe25 972
d3fb71b3
BW
973int discover_git_directory(struct strbuf *commondir,
974 struct strbuf *gitdir)
16ac8b8d
JS
975{
976 struct strbuf dir = STRBUF_INIT, err = STRBUF_INIT;
977 size_t gitdir_offset = gitdir->len, cwd_len;
d3fb71b3 978 size_t commondir_offset = commondir->len;
16ac8b8d
JS
979 struct repository_format candidate;
980
981 if (strbuf_getcwd(&dir))
d3fb71b3 982 return -1;
16ac8b8d
JS
983
984 cwd_len = dir.len;
01017dce 985 if (setup_git_directory_gently_1(&dir, gitdir, 0) <= 0) {
16ac8b8d 986 strbuf_release(&dir);
d3fb71b3 987 return -1;
16ac8b8d
JS
988 }
989
990 /*
991 * The returned gitdir is relative to dir, and if dir does not reflect
992 * the current working directory, we simply make the gitdir absolute.
993 */
994 if (dir.len < cwd_len && !is_absolute_path(gitdir->buf + gitdir_offset)) {
995 /* Avoid a trailing "/." */
996 if (!strcmp(".", gitdir->buf + gitdir_offset))
997 strbuf_setlen(gitdir, gitdir_offset);
998 else
999 strbuf_addch(&dir, '/');
1000 strbuf_insert(gitdir, gitdir_offset, dir.buf, dir.len);
1001 }
1002
d3fb71b3
BW
1003 get_common_dir(commondir, gitdir->buf + gitdir_offset);
1004
16ac8b8d 1005 strbuf_reset(&dir);
d3fb71b3 1006 strbuf_addf(&dir, "%s/config", commondir->buf + commondir_offset);
16ac8b8d
JS
1007 read_repository_format(&candidate, dir.buf);
1008 strbuf_release(&dir);
1009
1010 if (verify_repository_format(&candidate, &err) < 0) {
1011 warning("ignoring git dir '%s': %s",
1012 gitdir->buf + gitdir_offset, err.buf);
1013 strbuf_release(&err);
d3fb71b3 1014 strbuf_setlen(commondir, commondir_offset);
69743f9b 1015 strbuf_setlen(gitdir, gitdir_offset);
d3fb71b3 1016 return -1;
16ac8b8d
JS
1017 }
1018
d3fb71b3 1019 return 0;
16ac8b8d
JS
1020}
1021
a60645f9
NTND
1022const char *setup_git_directory_gently(int *nongit_ok)
1023{
ce9b8aab
JS
1024 static struct strbuf cwd = STRBUF_INIT;
1025 struct strbuf dir = STRBUF_INIT, gitdir = STRBUF_INIT;
f9ee2fcd 1026 const char *prefix;
a60645f9 1027
ce9b8aab
JS
1028 /*
1029 * We may have read an incomplete configuration before
1030 * setting-up the git directory. If so, clear the cache so
1031 * that the next queries to the configuration reload complete
1032 * configuration (including the per-repo config file that we
1033 * ignored previously).
1034 */
1035 git_config_clear();
1036
1037 /*
1038 * Let's assume that we are in a git repository.
1039 * If it turns out later that we are somewhere else, the value will be
1040 * updated accordingly.
1041 */
1042 if (nongit_ok)
1043 *nongit_ok = 0;
1044
1045 if (strbuf_getcwd(&cwd))
1046 die_errno(_("Unable to read current working directory"));
1047 strbuf_addbuf(&dir, &cwd);
1048
01017dce 1049 switch (setup_git_directory_gently_1(&dir, &gitdir, 1)) {
ce9b8aab
JS
1050 case GIT_DIR_NONE:
1051 prefix = NULL;
1052 break;
1053 case GIT_DIR_EXPLICIT:
1054 prefix = setup_explicit_git_dir(gitdir.buf, &cwd, nongit_ok);
1055 break;
1056 case GIT_DIR_DISCOVERED:
1057 if (dir.len < cwd.len && chdir(dir.buf))
1058 die(_("Cannot change to '%s'"), dir.buf);
1059 prefix = setup_discovered_git_dir(gitdir.buf, &cwd, dir.len,
1060 nongit_ok);
1061 break;
1062 case GIT_DIR_BARE:
1063 if (dir.len < cwd.len && chdir(dir.buf))
1064 die(_("Cannot change to '%s'"), dir.buf);
1065 prefix = setup_bare_git_dir(&cwd, dir.len, nongit_ok);
1066 break;
1067 case GIT_DIR_HIT_CEILING:
1068 prefix = setup_nongit(cwd.buf, nongit_ok);
1069 break;
1070 case GIT_DIR_HIT_MOUNT_POINT:
1071 if (nongit_ok) {
1072 *nongit_ok = 1;
1073 strbuf_release(&cwd);
1074 strbuf_release(&dir);
1075 return NULL;
1076 }
1077 die(_("Not a git repository (or any parent up to mount point %s)\n"
1078 "Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set)."),
1079 dir.buf);
1080 default:
1081 die("BUG: unhandled setup_git_directory_1() result");
1082 }
1083
1f5d271f 1084 if (prefix)
a6f7f9a3 1085 setenv(GIT_PREFIX_ENVIRONMENT, prefix, 1);
1f5d271f 1086 else
a6f7f9a3 1087 setenv(GIT_PREFIX_ENVIRONMENT, "", 1);
1f5d271f 1088
46c3cd44
JK
1089 startup_info->have_repository = !nongit_ok || !*nongit_ok;
1090 startup_info->prefix = prefix;
1091
73f192c9
BW
1092 /*
1093 * Not all paths through the setup code will call 'set_git_dir()' (which
1094 * directly sets up the environment) so in order to guarantee that the
1095 * environment is in a consistent state after setup, explicitly setup
1096 * the environment if we have a repository.
1097 *
1098 * NEEDSWORK: currently we allow bogus GIT_DIR values to be set in some
1099 * code paths so we also need to explicitly setup the environment if
1100 * the user has set GIT_DIR. It may be beneficial to disallow bogus
1101 * GIT_DIR values at some point in the future.
1102 */
c14c234f
BW
1103 if (startup_info->have_repository || getenv(GIT_DIR_ENVIRONMENT)) {
1104 if (!the_repository->gitdir) {
1105 const char *gitdir = getenv(GIT_DIR_ENVIRONMENT);
1106 if (!gitdir)
1107 gitdir = DEFAULT_GIT_DIR_ENVIRONMENT;
1108 repo_set_gitdir(the_repository, gitdir);
1109 setup_git_env();
1110 }
1111 }
73f192c9 1112
ce9b8aab
JS
1113 strbuf_release(&dir);
1114 strbuf_release(&gitdir);
1115
a60645f9
NTND
1116 return prefix;
1117}
1118
94df2506
JH
1119int git_config_perm(const char *var, const char *value)
1120{
06cbe855
HO
1121 int i;
1122 char *endptr;
1123
1124 if (value == NULL)
1125 return PERM_GROUP;
1126
1127 if (!strcmp(value, "umask"))
1128 return PERM_UMASK;
1129 if (!strcmp(value, "group"))
1130 return PERM_GROUP;
1131 if (!strcmp(value, "all") ||
1132 !strcmp(value, "world") ||
1133 !strcmp(value, "everybody"))
1134 return PERM_EVERYBODY;
1135
1136 /* Parse octal numbers */
1137 i = strtol(value, &endptr, 8);
1138
1139 /* If not an octal number, maybe true/false? */
1140 if (*endptr != 0)
1141 return git_config_bool(var, value) ? PERM_GROUP : PERM_UMASK;
1142
1143 /*
1144 * Treat values 0, 1 and 2 as compatibility cases, otherwise it is
5a688fe4 1145 * a chmod value to restrict to.
06cbe855
HO
1146 */
1147 switch (i) {
1148 case PERM_UMASK: /* 0 */
1149 return PERM_UMASK;
1150 case OLD_PERM_GROUP: /* 1 */
1151 return PERM_GROUP;
1152 case OLD_PERM_EVERYBODY: /* 2 */
1153 return PERM_EVERYBODY;
94df2506 1154 }
06cbe855
HO
1155
1156 /* A filemode value was given: 0xxx */
1157
1158 if ((i & 0600) != 0600)
2ff30e67 1159 die(_("Problem with core.sharedRepository filemode value "
06cbe855 1160 "(0%.3o).\nThe owner of files must always have "
2ff30e67 1161 "read and write permissions."), i);
06cbe855
HO
1162
1163 /*
1164 * Mask filemode value. Others can not get write permission.
1165 * x flags for directories are handled separately.
1166 */
5a688fe4 1167 return -(i & 0666);
94df2506
JH
1168}
1169
4b0d1eeb 1170void check_repository_format(void)
ab9cb76f 1171{
f1c126bd
JK
1172 check_repository_format_gently(get_git_dir(), NULL);
1173 startup_info->have_repository = 1;
ab9cb76f
JH
1174}
1175
e1e5ec86
CB
1176/*
1177 * Returns the "prefix", a path to the current working directory
1178 * relative to the work tree root, or NULL, if the current working
1179 * directory is not a strict subdirectory of the work tree root. The
1180 * prefix always ends with a '/' character.
1181 */
5e7bfe25
JH
1182const char *setup_git_directory(void)
1183{
b3f66fd3 1184 return setup_git_directory_gently(NULL);
5e7bfe25 1185}
abc06822 1186
40d96325 1187const char *resolve_gitdir_gently(const char *suspect, int *return_error_code)
abc06822
FG
1188{
1189 if (is_git_directory(suspect))
1190 return suspect;
40d96325 1191 return read_gitfile_gently(suspect, return_error_code);
abc06822 1192}
1d999ddd
TR
1193
1194/* if any standard file descriptor is missing open it to /dev/null */
1195void sanitize_stdfds(void)
1196{
1197 int fd = open("/dev/null", O_RDWR, 0);
1198 while (fd != -1 && fd < 2)
1199 fd = dup(fd);
1200 if (fd == -1)
1201 die_errno("open /dev/null or dup failed");
1202 if (fd > 2)
1203 close(fd);
1204}
de0957ce
NTND
1205
1206int daemonize(void)
1207{
1208#ifdef NO_POSIX_GOODIES
1209 errno = ENOSYS;
1210 return -1;
1211#else
1212 switch (fork()) {
1213 case 0:
1214 break;
1215 case -1:
1216 die_errno("fork failed");
1217 default:
1218 exit(0);
1219 }
1220 if (setsid() == -1)
1221 die_errno("setsid failed");
1222 close(0);
1223 close(1);
1224 close(2);
1225 sanitize_stdfds();
1226 return 0;
1227#endif
1228}