]> git.ipfire.org Git - thirdparty/git.git/blame - setup.c
config: pass kvi to die_bad_number()
[thirdparty/git.git] / setup.c
CommitLineData
e93fc5d7 1#include "git-compat-util.h"
0b027f6c 2#include "abspath.h"
32a8f510 3#include "environment.h"
f394e093 4#include "gettext.h"
dabab1d6 5#include "object-name.h"
c14c234f 6#include "repository.h"
b2141fc1 7#include "config.h"
e90fdc39 8#include "dir.h"
e38da487 9#include "setup.h"
31171d9e 10#include "string-list.h"
8500e0de 11#include "chdir-notify.h"
60b7a92d 12#include "promisor-remote.h"
8959555c 13#include "quote.h"
74ea5c95 14#include "trace2.h"
65156bb7 15#include "wrapper.h"
e90fdc39
JS
16
17static int inside_git_dir = -1;
18static int inside_work_tree = -1;
fada7674 19static int work_tree_config_is_bogus;
8d1a7448
GC
20enum allowed_bare_repo {
21 ALLOWED_BARE_REPO_EXPLICIT = 0,
22 ALLOWED_BARE_REPO_ALL,
23};
d288a700 24
46c3cd44
JK
25static struct startup_info the_startup_info;
26struct startup_info *startup_info = &the_startup_info;
e6f8861b 27const char *tmp_original_cwd;
46c3cd44 28
ddc2a628
MEW
29/*
30 * The input parameter must contain an absolute path, and it must already be
31 * normalized.
32 *
33 * Find the part of an absolute path that lies inside the work tree by
34 * dereferencing symlinks outside the work tree, for example:
35 * /dir1/repo/dir2/file (work tree is /dir1/repo) -> dir2/file
36 * /dir/file (work tree is /) -> dir/file
37 * /dir/symlink1/symlink2 (symlink1 points to work tree) -> symlink2
38 * /dir/repolink/file (repolink points to /dir/repo) -> file
39 * /dir/repo (exactly equal to work tree) -> (empty string)
40 */
41static int abspath_part_inside_repo(char *path)
42{
43 size_t len;
44 size_t wtlen;
45 char *path0;
46 int off;
47 const char *work_tree = get_git_work_tree();
3d7747e3 48 struct strbuf realpath = STRBUF_INIT;
ddc2a628
MEW
49
50 if (!work_tree)
51 return -1;
52 wtlen = strlen(work_tree);
53 len = strlen(path);
6127ff63 54 off = offset_1st_component(path);
ddc2a628
MEW
55
56 /* check if work tree is already the prefix */
d8727b36 57 if (wtlen <= len && !fspathncmp(path, work_tree, wtlen)) {
ddc2a628
MEW
58 if (path[wtlen] == '/') {
59 memmove(path, path + wtlen + 1, len - wtlen);
60 return 0;
61 } else if (path[wtlen - 1] == '/' || path[wtlen] == '\0') {
62 /* work tree is the root, or the whole path */
63 memmove(path, path + wtlen, len - wtlen + 1);
64 return 0;
65 }
66 /* work tree might match beginning of a symlink to work tree */
67 off = wtlen;
68 }
69 path0 = path;
6127ff63 70 path += off;
ddc2a628
MEW
71
72 /* check each '/'-terminated level */
73 while (*path) {
74 path++;
75 if (*path == '/') {
76 *path = '\0';
3d7747e3
AM
77 strbuf_realpath(&realpath, path0, 1);
78 if (fspathcmp(realpath.buf, work_tree) == 0) {
ddc2a628 79 memmove(path0, path + 1, len - (path - path0));
3d7747e3 80 strbuf_release(&realpath);
ddc2a628
MEW
81 return 0;
82 }
83 *path = '/';
84 }
85 }
86
87 /* check whole path */
3d7747e3
AM
88 strbuf_realpath(&realpath, path0, 1);
89 if (fspathcmp(realpath.buf, work_tree) == 0) {
ddc2a628 90 *path0 = '\0';
3d7747e3 91 strbuf_release(&realpath);
ddc2a628
MEW
92 return 0;
93 }
94
3d7747e3 95 strbuf_release(&realpath);
ddc2a628
MEW
96 return -1;
97}
98
645a29c4
NTND
99/*
100 * Normalize "path", prepending the "prefix" for relative paths. If
101 * remaining_prefix is not NULL, return the actual prefix still
102 * remains in the path. For example, prefix = sub1/sub2/ and path is
103 *
104 * foo -> sub1/sub2/foo (full prefix)
105 * ../foo -> sub1/foo (remaining prefix is sub1/)
106 * ../../bar -> bar (no remaining prefix)
107 * ../../sub1/sub2/foo -> sub1/sub2/foo (but no remaining prefix)
108 * `pwd`/../bar -> sub1/bar (no remaining prefix)
109 */
110char *prefix_path_gently(const char *prefix, int len,
111 int *remaining_prefix, const char *path)
d089ebaa
JH
112{
113 const char *orig = path;
18e051a3
CMAB
114 char *sanitized;
115 if (is_absolute_path(orig)) {
3733e694 116 sanitized = xmallocz(strlen(path));
645a29c4
NTND
117 if (remaining_prefix)
118 *remaining_prefix = 0;
655ee9ea
MEW
119 if (normalize_path_copy_len(sanitized, path, remaining_prefix)) {
120 free(sanitized);
121 return NULL;
122 }
123 if (abspath_part_inside_repo(sanitized)) {
124 free(sanitized);
125 return NULL;
126 }
18e051a3 127 } else {
24041d6b 128 sanitized = xstrfmt("%.*s%s", len, len ? prefix : "", path);
645a29c4
NTND
129 if (remaining_prefix)
130 *remaining_prefix = len;
655ee9ea 131 if (normalize_path_copy_len(sanitized, sanitized, remaining_prefix)) {
546e0fd9
JK
132 free(sanitized);
133 return NULL;
d089ebaa 134 }
d089ebaa
JH
135 }
136 return sanitized;
f332726e
LT
137}
138
546e0fd9
JK
139char *prefix_path(const char *prefix, int len, const char *path)
140{
645a29c4 141 char *r = prefix_path_gently(prefix, len, NULL, path);
5c203986
ES
142 if (!r) {
143 const char *hint_path = get_git_work_tree();
144 if (!hint_path)
145 hint_path = get_git_dir();
e0020b2f 146 die(_("'%s' is outside repository at '%s'"), path,
5c203986
ES
147 absolute_path(hint_path));
148 }
546e0fd9
JK
149 return r;
150}
151
152int path_inside_repo(const char *prefix, const char *path)
153{
154 int len = prefix ? strlen(prefix) : 0;
645a29c4 155 char *r = prefix_path_gently(prefix, len, NULL, path);
546e0fd9
JK
156 if (r) {
157 free(r);
158 return 1;
159 }
160 return 0;
161}
162
c6e8c800
JH
163int check_filename(const char *prefix, const char *arg)
164{
e4da43b1 165 char *to_free = NULL;
c6e8c800
JH
166 struct stat st;
167
d51c6ee0
JK
168 if (skip_prefix(arg, ":/", &arg)) {
169 if (!*arg) /* ":/" is root dir, always exists */
4db86e8b 170 return 1;
a08cbcda 171 prefix = NULL;
42471bce
JK
172 } else if (skip_prefix(arg, ":!", &arg) ||
173 skip_prefix(arg, ":^", &arg)) {
174 if (!*arg) /* excluding everything is silly, but allowed */
175 return 1;
a08cbcda
JK
176 }
177
178 if (prefix)
179 arg = to_free = prefix_filename(prefix, arg);
180
181 if (!lstat(arg, &st)) {
e4da43b1 182 free(to_free);
c6e8c800 183 return 1; /* file exists */
e4da43b1 184 }
93dd544f 185 if (is_missing_file_error(errno)) {
e4da43b1 186 free(to_free);
c6e8c800 187 return 0; /* file does not exist */
e4da43b1 188 }
fc045fe7 189 die_errno(_("failed to stat '%s'"), arg);
c6e8c800
JH
190}
191
e270f42c
NTND
192static void NORETURN die_verify_filename(struct repository *r,
193 const char *prefix,
023e37c3
MM
194 const char *arg,
195 int diagnose_misspelt_rev)
009fee47 196{
023e37c3 197 if (!diagnose_misspelt_rev)
ab33a76e
VA
198 die(_("%s: no such path in the working tree.\n"
199 "Use 'git <command> -- <path>...' to specify paths that do not exist locally."),
023e37c3 200 arg);
0e539dca
JH
201 /*
202 * Saying "'(icase)foo' does not exist in the index" when the
203 * user gave us ":(icase)foo" is just stupid. A magic pathspec
204 * begins with a colon and is followed by a non-alnum; do not
8c135ea2 205 * let maybe_die_on_misspelt_object_name() even trigger.
0e539dca
JH
206 */
207 if (!(arg[0] == ':' && !isalnum(arg[1])))
e270f42c 208 maybe_die_on_misspelt_object_name(r, arg, prefix);
0e539dca 209
009fee47 210 /* ... or fall back the most general message. */
ab33a76e
VA
211 die(_("ambiguous argument '%s': unknown revision or path not in the working tree.\n"
212 "Use '--' to separate paths from revisions, like this:\n"
213 "'git <command> [<revision>...] -- [<file>...]'"), arg);
009fee47
MM
214
215}
216
c99eddd8
JK
217/*
218 * Check for arguments that don't resolve as actual files,
219 * but which look sufficiently like pathspecs that we'll consider
220 * them such for the purposes of rev/pathspec DWIM parsing.
221 */
222static int looks_like_pathspec(const char *arg)
223{
39e21c6e
JK
224 const char *p;
225 int escaped = 0;
226
227 /*
228 * Wildcard characters imply the user is looking to match pathspecs
229 * that aren't in the filesystem. Note that this doesn't include
230 * backslash even though it's a glob special; by itself it doesn't
231 * cause any increase in the match. Likewise ignore backslash-escaped
232 * wildcard characters.
233 */
234 for (p = arg; *p; p++) {
235 if (escaped) {
236 escaped = 0;
237 } else if (is_glob_special(*p)) {
238 if (*p == '\\')
239 escaped = 1;
240 else
241 return 1;
242 }
243 }
c99eddd8
JK
244
245 /* long-form pathspec magic */
246 if (starts_with(arg, ":("))
247 return 1;
248
249 return 0;
250}
251
e23d0b4a
LT
252/*
253 * Verify a filename that we got as an argument for a pathspec
254 * entry. Note that a filename that begins with "-" never verifies
255 * as true, because even if such a filename were to exist, we want
256 * it to be preceded by the "--" marker (or we want the user to
257 * use a format like "./-filename")
023e37c3
MM
258 *
259 * The "diagnose_misspelt_rev" is used to provide a user-friendly
260 * diagnosis when dying upon finding that "name" is not a pathname.
261 * If set to 1, the diagnosis will try to diagnose "name" as an
262 * invalid object name (e.g. HEAD:foo). If set to 0, the diagnosis
263 * will only complain about an inexisting file.
264 *
265 * This function is typically called to check that a "file or rev"
266 * argument is unambiguous. In this case, the caller will want
267 * diagnose_misspelt_rev == 1 when verifying the first non-rev
268 * argument (which could have been a revision), and
269 * diagnose_misspelt_rev == 0 for the next ones (because we already
270 * saw a filename, there's not ambiguity anymore).
e23d0b4a 271 */
023e37c3
MM
272void verify_filename(const char *prefix,
273 const char *arg,
274 int diagnose_misspelt_rev)
e23d0b4a 275{
e23d0b4a 276 if (*arg == '-')
fc045fe7 277 die(_("option '%s' must come before non-option arguments"), arg);
2cb47ab6 278 if (looks_like_pathspec(arg) || check_filename(prefix, arg))
e23d0b4a 279 return;
e270f42c 280 die_verify_filename(the_repository, prefix, arg, diagnose_misspelt_rev);
e23d0b4a
LT
281}
282
ea92f41f
JH
283/*
284 * Opposite of the above: the command line did not have -- marker
285 * and we parsed the arg as a refname. It should not be interpretable
286 * as a filename.
287 */
288void verify_non_filename(const char *prefix, const char *arg)
289{
7ae3df8c 290 if (!is_inside_work_tree() || is_inside_git_dir())
68025633 291 return;
ea92f41f
JH
292 if (*arg == '-')
293 return; /* flag */
c6e8c800
JH
294 if (!check_filename(prefix, arg))
295 return;
ab33a76e
VA
296 die(_("ambiguous argument '%s': both revision and filename\n"
297 "Use '--' to separate paths from revisions, like this:\n"
298 "'git <command> [<revision>...] -- [<file>...]'"), arg);
ea92f41f
JH
299}
300
31e26ebc 301int get_common_dir(struct strbuf *sb, const char *gitdir)
11f9dd71
MK
302{
303 const char *git_env_common_dir = getenv(GIT_COMMON_DIR_ENVIRONMENT);
304 if (git_env_common_dir) {
305 strbuf_addstr(sb, git_env_common_dir);
306 return 1;
307 } else {
308 return get_common_dir_noenv(sb, gitdir);
309 }
310}
311
312int get_common_dir_noenv(struct strbuf *sb, const char *gitdir)
4dc4e145
NTND
313{
314 struct strbuf data = STRBUF_INIT;
315 struct strbuf path = STRBUF_INIT;
31e26ebc 316 int ret = 0;
11f9dd71 317
4dc4e145
NTND
318 strbuf_addf(&path, "%s/commondir", gitdir);
319 if (file_exists(path.buf)) {
320 if (strbuf_read_file(&data, path.buf, 0) <= 0)
321 die_errno(_("failed to read %s"), path.buf);
322 while (data.len && (data.buf[data.len - 1] == '\n' ||
323 data.buf[data.len - 1] == '\r'))
324 data.len--;
325 data.buf[data.len] = '\0';
326 strbuf_reset(&path);
327 if (!is_absolute_path(data.buf))
328 strbuf_addf(&path, "%s/", gitdir);
329 strbuf_addbuf(&path, &data);
33ad9ddd 330 strbuf_add_real_path(sb, path.buf);
31e26ebc 331 ret = 1;
4ac9006f 332 } else {
4dc4e145 333 strbuf_addstr(sb, gitdir);
4ac9006f
BW
334 }
335
4dc4e145
NTND
336 strbuf_release(&data);
337 strbuf_release(&path);
31e26ebc 338 return ret;
4dc4e145 339}
d288a700 340
5f5608bc 341/*
ad1a382f 342 * Test if it looks like we're at a git directory.
5e7bfe25 343 * We want to see:
5f5608bc 344 *
790296fd 345 * - either an objects/ directory _or_ the proper
5f5608bc 346 * GIT_OBJECT_DIRECTORY environment variable
ad1a382f 347 * - a refs/ directory
8098a178 348 * - either a HEAD symlink or a HEAD file that is formatted as
c847f537
JH
349 * a proper "ref:", or a regular file HEAD that has a properly
350 * formatted sha1 object name.
5f5608bc 351 */
b3256eb8 352int is_git_directory(const char *suspect)
5f5608bc 353{
1d186b6f
NTND
354 struct strbuf path = STRBUF_INIT;
355 int ret = 0;
356 size_t len;
ad1a382f 357
4dc4e145 358 /* Check worktree-related signatures */
fa4d8c78
JK
359 strbuf_addstr(&path, suspect);
360 strbuf_complete(&path, '/');
361 strbuf_addstr(&path, "HEAD");
4dc4e145
NTND
362 if (validate_headref(path.buf))
363 goto done;
364
365 strbuf_reset(&path);
366 get_common_dir(&path, suspect);
1d186b6f 367 len = path.len;
4dc4e145
NTND
368
369 /* Check non-worktree-related signatures */
ad1a382f
SP
370 if (getenv(DB_ENVIRONMENT)) {
371 if (access(getenv(DB_ENVIRONMENT), X_OK))
1d186b6f 372 goto done;
ad1a382f
SP
373 }
374 else {
4dc4e145 375 strbuf_setlen(&path, len);
1d186b6f
NTND
376 strbuf_addstr(&path, "/objects");
377 if (access(path.buf, X_OK))
378 goto done;
ad1a382f
SP
379 }
380
1d186b6f
NTND
381 strbuf_setlen(&path, len);
382 strbuf_addstr(&path, "/refs");
383 if (access(path.buf, X_OK))
384 goto done;
ad1a382f 385
1d186b6f
NTND
386 ret = 1;
387done:
388 strbuf_release(&path);
389 return ret;
5f5608bc
LT
390}
391
ffd036b1
JK
392int is_nonbare_repository_dir(struct strbuf *path)
393{
394 int ret = 0;
395 int gitfile_error;
396 size_t orig_path_len = path->len;
397 assert(orig_path_len != 0);
398 strbuf_complete(path, '/');
399 strbuf_addstr(path, ".git");
400 if (read_gitfile_gently(path->buf, &gitfile_error) || is_git_directory(path->buf))
401 ret = 1;
402 if (gitfile_error == READ_GITFILE_ERR_OPEN_FAILED ||
403 gitfile_error == READ_GITFILE_ERR_READ_FAILED)
404 ret = 1;
405 strbuf_setlen(path, orig_path_len);
406 return ret;
407}
408
68025633
JS
409int is_inside_git_dir(void)
410{
e90fdc39
JS
411 if (inside_git_dir < 0)
412 inside_git_dir = is_inside_dir(get_git_dir());
413 return inside_git_dir;
892c41b9
ML
414}
415
892c41b9
ML
416int is_inside_work_tree(void)
417{
e90fdc39
JS
418 if (inside_work_tree < 0)
419 inside_work_tree = is_inside_dir(get_git_work_tree());
420 return inside_work_tree;
892c41b9
ML
421}
422
f3fa1838
JH
423void setup_work_tree(void)
424{
8500e0de 425 const char *work_tree;
354e6534
JS
426 static int initialized = 0;
427
428 if (initialized)
429 return;
fada7674
JK
430
431 if (work_tree_config_is_bogus)
fc045fe7 432 die(_("unable to set up work tree using invalid config"));
fada7674 433
354e6534 434 work_tree = get_git_work_tree();
8500e0de 435 if (!work_tree || chdir_notify(work_tree))
fc045fe7 436 die(_("this operation must be run in a work tree"));
0ed74813
NTND
437
438 /*
439 * Make sure subsequent git processes find correct worktree
440 * if $GIT_WORK_TREE is set relative
441 */
442 if (getenv(GIT_WORK_TREE_ENVIRONMENT))
443 setenv(GIT_WORK_TREE_ENVIRONMENT, ".", 1);
444
354e6534 445 initialized = 1;
59f0f2f3
MH
446}
447
e6f8861b
EN
448static void setup_original_cwd(void)
449{
450 struct strbuf tmp = STRBUF_INIT;
451 const char *worktree = NULL;
452 int offset = -1;
453
454 if (!tmp_original_cwd)
455 return;
456
457 /*
458 * startup_info->original_cwd points to the current working
459 * directory we inherited from our parent process, which is a
460 * directory we want to avoid removing.
461 *
462 * For convience, we would like to have the path relative to the
463 * worktree instead of an absolute path.
464 *
465 * Yes, startup_info->original_cwd is usually the same as 'prefix',
466 * but differs in two ways:
467 * - prefix has a trailing '/'
468 * - if the user passes '-C' to git, that modifies the prefix but
469 * not startup_info->original_cwd.
470 */
471
472 /* Normalize the directory */
c37c6dc6
KL
473 if (!strbuf_realpath(&tmp, tmp_original_cwd, 0)) {
474 trace2_data_string("setup", the_repository,
475 "realpath-path", tmp_original_cwd);
476 trace2_data_string("setup", the_repository,
477 "realpath-failure", strerror(errno));
478 free((char*)tmp_original_cwd);
479 tmp_original_cwd = NULL;
480 return;
481 }
482
e6f8861b
EN
483 free((char*)tmp_original_cwd);
484 tmp_original_cwd = NULL;
485 startup_info->original_cwd = strbuf_detach(&tmp, NULL);
486
487 /*
488 * Get our worktree; we only protect the current working directory
489 * if it's in the worktree.
490 */
491 worktree = get_git_work_tree();
492 if (!worktree)
493 goto no_prevention_needed;
494
495 offset = dir_inside_of(startup_info->original_cwd, worktree);
496 if (offset >= 0) {
497 /*
498 * If startup_info->original_cwd == worktree, that is already
499 * protected and we don't need original_cwd as a secondary
500 * protection measure.
501 */
502 if (!*(startup_info->original_cwd + offset))
503 goto no_prevention_needed;
504
505 /*
506 * original_cwd was inside worktree; precompose it just as
507 * we do prefix so that built up paths will match
508 */
509 startup_info->original_cwd = \
510 precompose_string_if_needed(startup_info->original_cwd
511 + offset);
512 return;
513 }
514
515no_prevention_needed:
516 free((char*)startup_info->original_cwd);
517 startup_info->original_cwd = NULL;
518}
519
a4e7e317
GC
520static int read_worktree_config(const char *var, const char *value,
521 const struct config_context *ctx UNUSED,
522 void *vdata)
58b284a2
NTND
523{
524 struct repository_format *data = vdata;
525
526 if (strcmp(var, "core.bare") == 0) {
527 data->is_bare = git_config_bool(var, value);
528 } else if (strcmp(var, "core.worktree") == 0) {
529 if (!value)
530 return config_error_nonbool(var);
13019979 531 free(data->work_tree);
58b284a2
NTND
532 data->work_tree = xstrdup(value);
533 }
534 return 0;
535}
536
ec91ffca
JK
537enum extension_result {
538 EXTENSION_ERROR = -1, /* compatible with error(), etc */
539 EXTENSION_UNKNOWN = 0,
540 EXTENSION_OK = 1
541};
542
543/*
544 * Do not add new extensions to this function. It handles extensions which are
545 * respected even in v0-format repositories for historical compatibility.
546 */
547static enum extension_result handle_extension_v0(const char *var,
548 const char *value,
549 const char *ext,
550 struct repository_format *data)
551{
552 if (!strcmp(ext, "noop")) {
553 return EXTENSION_OK;
554 } else if (!strcmp(ext, "preciousobjects")) {
555 data->precious_objects = git_config_bool(var, value);
556 return EXTENSION_OK;
557 } else if (!strcmp(ext, "partialclone")) {
ec91ffca
JK
558 data->partial_clone = xstrdup(value);
559 return EXTENSION_OK;
560 } else if (!strcmp(ext, "worktreeconfig")) {
561 data->worktree_config = git_config_bool(var, value);
562 return EXTENSION_OK;
563 }
564
565 return EXTENSION_UNKNOWN;
566}
567
568/*
569 * Record any new extensions in this function.
570 */
571static enum extension_result handle_extension(const char *var,
572 const char *value,
573 const char *ext,
574 struct repository_format *data)
575{
576 if (!strcmp(ext, "noop-v1")) {
577 return EXTENSION_OK;
e0ad9574
JH
578 } else if (!strcmp(ext, "objectformat")) {
579 int format;
ec91ffca 580
e0ad9574
JH
581 if (!value)
582 return config_error_nonbool(var);
583 format = hash_algo_by_name(value);
584 if (format == GIT_HASH_UNKNOWN)
1a8aea85
JNA
585 return error(_("invalid value for '%s': '%s'"),
586 "extensions.objectformat", value);
e0ad9574
JH
587 data->hash_algo = format;
588 return EXTENSION_OK;
589 }
ec91ffca
JK
590 return EXTENSION_UNKNOWN;
591}
592
a4e7e317
GC
593static int check_repo_format(const char *var, const char *value,
594 const struct config_context *ctx, void *vdata)
31e26ebc 595{
2cc7c2c7 596 struct repository_format *data = vdata;
00a09d57
JK
597 const char *ext;
598
31e26ebc 599 if (strcmp(var, "core.repositoryformatversion") == 0)
8868b1eb 600 data->version = git_config_int(var, value, ctx->kvi);
00a09d57 601 else if (skip_prefix(var, "extensions.", &ext)) {
ec91ffca
JK
602 switch (handle_extension_v0(var, value, ext, data)) {
603 case EXTENSION_ERROR:
604 return -1;
605 case EXTENSION_OK:
606 return 0;
607 case EXTENSION_UNKNOWN:
608 break;
609 }
610
611 switch (handle_extension(var, value, ext, data)) {
612 case EXTENSION_ERROR:
613 return -1;
614 case EXTENSION_OK:
615 string_list_append(&data->v1_only_extensions, ext);
616 return 0;
617 case EXTENSION_UNKNOWN:
2cc7c2c7 618 string_list_append(&data->unknown_extensions, ext);
ec91ffca
JK
619 return 0;
620 }
00a09d57 621 }
58b284a2 622
a4e7e317 623 return read_worktree_config(var, value, ctx, vdata);
31e26ebc
NTND
624}
625
abade65b 626static int check_repository_format_gently(const char *gitdir, struct repository_format *candidate, int *nongit_ok)
9459aa77 627{
7d0fb0da 628 struct strbuf sb = STRBUF_INIT;
2cc7c2c7 629 struct strbuf err = STRBUF_INIT;
652f18ee 630 int has_common;
00a09d57 631
652f18ee 632 has_common = get_common_dir(&sb, gitdir);
e61a509a 633 strbuf_addstr(&sb, "/config");
abade65b 634 read_repository_format(candidate, sb.buf);
2cc7c2c7 635 strbuf_release(&sb);
e61a509a 636
337e51ce 637 /*
2cc7c2c7
JK
638 * For historical use of check_repository_format() in git-init,
639 * we treat a missing config as a silent "ok", even when nongit_ok
640 * is unset.
337e51ce 641 */
abade65b 642 if (candidate->version < 0)
2cc7c2c7
JK
643 return 0;
644
abade65b 645 if (verify_repository_format(candidate, &err) < 0) {
2cc7c2c7
JK
646 if (nongit_ok) {
647 warning("%s", err.buf);
648 strbuf_release(&err);
649 *nongit_ok = -1;
650 return -1;
651 }
652 die("%s", err.buf);
653 }
654
11664196 655 repository_format_precious_objects = candidate->precious_objects;
abade65b 656 string_list_clear(&candidate->unknown_extensions, 0);
ec91ffca 657 string_list_clear(&candidate->v1_only_extensions, 0);
58b284a2 658
3867f6d6 659 if (candidate->worktree_config) {
58b284a2
NTND
660 /*
661 * pick up core.bare and core.worktree from per-worktree
662 * config if present
663 */
664 strbuf_addf(&sb, "%s/config.worktree", gitdir);
665 git_config_from_file(read_worktree_config, sb.buf, candidate);
666 strbuf_release(&sb);
667 has_common = 0;
668 }
669
652f18ee 670 if (!has_common) {
abade65b 671 if (candidate->is_bare != -1) {
672 is_bare_repository_cfg = candidate->is_bare;
652f18ee
JK
673 if (is_bare_repository_cfg == 1)
674 inside_work_tree = -1;
675 }
abade65b 676 if (candidate->work_tree) {
652f18ee 677 free(git_work_tree_cfg);
e8805af1 678 git_work_tree_cfg = xstrdup(candidate->work_tree);
2cc7c2c7 679 inside_work_tree = -1;
652f18ee 680 }
2cc7c2c7
JK
681 }
682
683 return 0;
684}
685
16af5f1a
XL
686int upgrade_repository_format(int target_version)
687{
688 struct strbuf sb = STRBUF_INIT;
689 struct strbuf err = STRBUF_INIT;
690 struct strbuf repo_version = STRBUF_INIT;
691 struct repository_format repo_fmt = REPOSITORY_FORMAT_INIT;
692
693 strbuf_git_common_path(&sb, the_repository, "config");
694 read_repository_format(&repo_fmt, sb.buf);
695 strbuf_release(&sb);
696
697 if (repo_fmt.version >= target_version)
698 return 0;
699
62f2eca6
JN
700 if (verify_repository_format(&repo_fmt, &err) < 0) {
701 error("cannot upgrade repository format from %d to %d: %s",
702 repo_fmt.version, target_version, err.buf);
16af5f1a
XL
703 strbuf_release(&err);
704 return -1;
705 }
62f2eca6
JN
706 if (!repo_fmt.version && repo_fmt.unknown_extensions.nr)
707 return error("cannot upgrade repository format: "
708 "unknown extension %s",
709 repo_fmt.unknown_extensions.items[0].string);
16af5f1a
XL
710
711 strbuf_addf(&repo_version, "%d", target_version);
712 git_config_set("core.repositoryformatversion", repo_version.buf);
713 strbuf_release(&repo_version);
714 return 1;
715}
716
e8805af1
717static void init_repository_format(struct repository_format *format)
718{
719 const struct repository_format fresh = REPOSITORY_FORMAT_INIT;
720
721 memcpy(format, &fresh, sizeof(fresh));
722}
723
652f18ee 724int read_repository_format(struct repository_format *format, const char *path)
2cc7c2c7 725{
e8805af1 726 clear_repository_format(format);
652f18ee 727 git_config_from_file(check_repo_format, path, format);
e8805af1
728 if (format->version == -1)
729 clear_repository_format(format);
2cc7c2c7
JK
730 return format->version;
731}
732
e8805af1
733void clear_repository_format(struct repository_format *format)
734{
735 string_list_clear(&format->unknown_extensions, 0);
ec91ffca 736 string_list_clear(&format->v1_only_extensions, 0);
e8805af1
737 free(format->work_tree);
738 free(format->partial_clone);
739 init_repository_format(format);
740}
741
2cc7c2c7
JK
742int verify_repository_format(const struct repository_format *format,
743 struct strbuf *err)
744{
745 if (GIT_REPO_VERSION_READ < format->version) {
274db840 746 strbuf_addf(err, _("Expected git repo version <= %d, found %d"),
2cc7c2c7
JK
747 GIT_REPO_VERSION_READ, format->version);
748 return -1;
749 }
750
751 if (format->version >= 1 && format->unknown_extensions.nr) {
00a09d57
JK
752 int i;
753
8013d7d9
AH
754 strbuf_addstr(err, Q_("unknown repository extension found:",
755 "unknown repository extensions found:",
756 format->unknown_extensions.nr));
00a09d57 757
2cc7c2c7
JK
758 for (i = 0; i < format->unknown_extensions.nr; i++)
759 strbuf_addf(err, "\n\t%s",
760 format->unknown_extensions.items[i].string);
761 return -1;
00a09d57
JK
762 }
763
ec91ffca
JK
764 if (format->version == 0 && format->v1_only_extensions.nr) {
765 int i;
766
767 strbuf_addstr(err,
8013d7d9
AH
768 Q_("repo version is 0, but v1-only extension found:",
769 "repo version is 0, but v1-only extensions found:",
770 format->v1_only_extensions.nr));
ec91ffca
JK
771
772 for (i = 0; i < format->v1_only_extensions.nr; i++)
773 strbuf_addf(err, "\n\t%s",
774 format->v1_only_extensions.items[i].string);
775 return -1;
776 }
777
2cc7c2c7 778 return 0;
9459aa77
NTND
779}
780
5f29433f
SB
781void read_gitfile_error_die(int error_code, const char *path, const char *dir)
782{
783 switch (error_code) {
784 case READ_GITFILE_ERR_STAT_FAILED:
785 case READ_GITFILE_ERR_NOT_A_FILE:
786 /* non-fatal; follow return path */
787 break;
788 case READ_GITFILE_ERR_OPEN_FAILED:
fc045fe7 789 die_errno(_("error opening '%s'"), path);
5f29433f 790 case READ_GITFILE_ERR_TOO_LARGE:
fc045fe7 791 die(_("too large to be a .git file: '%s'"), path);
5f29433f 792 case READ_GITFILE_ERR_READ_FAILED:
fc045fe7 793 die(_("error reading %s"), path);
5f29433f 794 case READ_GITFILE_ERR_INVALID_FORMAT:
fc045fe7 795 die(_("invalid gitfile format: %s"), path);
5f29433f 796 case READ_GITFILE_ERR_NO_PATH:
fc045fe7 797 die(_("no path in gitfile: %s"), path);
5f29433f 798 case READ_GITFILE_ERR_NOT_A_REPO:
fc045fe7 799 die(_("not a git repository: %s"), dir);
5f29433f 800 default:
033abf97 801 BUG("unknown error code");
5f29433f
SB
802 }
803}
804
b44ebb19
LH
805/*
806 * Try to read the location of the git directory from the .git file,
ea1d8756
HWN
807 * return path to git directory if found. The return value comes from
808 * a shared buffer.
a93bedad
EE
809 *
810 * On failure, if return_error_code is not NULL, return_error_code
811 * will be set to an error code and NULL will be returned. If
812 * return_error_code is NULL the function will die instead (for most
813 * cases).
b44ebb19 814 */
a93bedad 815const char *read_gitfile_gently(const char *path, int *return_error_code)
b44ebb19 816{
921bdd96 817 const int max_file_size = 1 << 20; /* 1MB */
a93bedad
EE
818 int error_code = 0;
819 char *buf = NULL;
820 char *dir = NULL;
40c813e0 821 const char *slash;
b44ebb19
LH
822 struct stat st;
823 int fd;
b1905aea 824 ssize_t len;
3d7747e3 825 static struct strbuf realpath = STRBUF_INIT;
b44ebb19 826
a93bedad 827 if (stat(path, &st)) {
5c4003ca 828 /* NEEDSWORK: discern between ENOENT vs other errors */
a93bedad
EE
829 error_code = READ_GITFILE_ERR_STAT_FAILED;
830 goto cleanup_return;
831 }
832 if (!S_ISREG(st.st_mode)) {
833 error_code = READ_GITFILE_ERR_NOT_A_FILE;
834 goto cleanup_return;
835 }
921bdd96
EE
836 if (st.st_size > max_file_size) {
837 error_code = READ_GITFILE_ERR_TOO_LARGE;
838 goto cleanup_return;
839 }
b44ebb19 840 fd = open(path, O_RDONLY);
a93bedad
EE
841 if (fd < 0) {
842 error_code = READ_GITFILE_ERR_OPEN_FAILED;
843 goto cleanup_return;
844 }
3733e694 845 buf = xmallocz(st.st_size);
b44ebb19
LH
846 len = read_in_full(fd, buf, st.st_size);
847 close(fd);
a93bedad
EE
848 if (len != st.st_size) {
849 error_code = READ_GITFILE_ERR_READ_FAILED;
850 goto cleanup_return;
851 }
a93bedad
EE
852 if (!starts_with(buf, "gitdir: ")) {
853 error_code = READ_GITFILE_ERR_INVALID_FORMAT;
854 goto cleanup_return;
855 }
b44ebb19
LH
856 while (buf[len - 1] == '\n' || buf[len - 1] == '\r')
857 len--;
a93bedad
EE
858 if (len < 9) {
859 error_code = READ_GITFILE_ERR_NO_PATH;
860 goto cleanup_return;
861 }
b44ebb19 862 buf[len] = '\0';
40c813e0
BK
863 dir = buf + 8;
864
865 if (!is_absolute_path(dir) && (slash = strrchr(path, '/'))) {
866 size_t pathlen = slash+1 - path;
75faa45a
JK
867 dir = xstrfmt("%.*s%.*s", (int)pathlen, path,
868 (int)(len - 8), buf + 8);
40c813e0
BK
869 free(buf);
870 buf = dir;
871 }
a93bedad
EE
872 if (!is_git_directory(dir)) {
873 error_code = READ_GITFILE_ERR_NOT_A_REPO;
874 goto cleanup_return;
875 }
3d7747e3
AM
876
877 strbuf_realpath(&realpath, dir, 1);
878 path = realpath.buf;
40c813e0 879
a93bedad 880cleanup_return:
a93bedad
EE
881 if (return_error_code)
882 *return_error_code = error_code;
5f29433f
SB
883 else if (error_code)
884 read_gitfile_error_die(error_code, path, dir);
a93bedad 885
b44ebb19 886 free(buf);
38ae8784 887 return error_code ? NULL : path;
b44ebb19
LH
888}
889
e4e30347 890static const char *setup_explicit_git_dir(const char *gitdirenv,
7333ed17 891 struct strbuf *cwd,
abade65b 892 struct repository_format *repo_fmt,
b3f66fd3 893 int *nongit_ok)
e4e30347 894{
b3f66fd3
NTND
895 const char *work_tree_env = getenv(GIT_WORK_TREE_ENVIRONMENT);
896 const char *worktree;
897 char *gitfile;
9b125da4 898 int offset;
e4e30347
JN
899
900 if (PATH_MAX - 40 < strlen(gitdirenv))
fc045fe7 901 die(_("'$%s' too big"), GIT_DIR_ENVIRONMENT);
b3f66fd3 902
13d6ec91 903 gitfile = (char*)read_gitfile(gitdirenv);
b3f66fd3
NTND
904 if (gitfile) {
905 gitfile = xstrdup(gitfile);
906 gitdirenv = gitfile;
907 }
908
e4e30347
JN
909 if (!is_git_directory(gitdirenv)) {
910 if (nongit_ok) {
911 *nongit_ok = 1;
b3f66fd3 912 free(gitfile);
e4e30347
JN
913 return NULL;
914 }
fc045fe7 915 die(_("not a git repository: '%s'"), gitdirenv);
e4e30347 916 }
b3f66fd3 917
abade65b 918 if (check_repository_format_gently(gitdirenv, repo_fmt, nongit_ok)) {
b3f66fd3
NTND
919 free(gitfile);
920 return NULL;
e4e30347 921 }
b3f66fd3
NTND
922
923 /* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */
924 if (work_tree_env)
925 set_git_work_tree(work_tree_env);
926 else if (is_bare_repository_cfg > 0) {
fada7674
JK
927 if (git_work_tree_cfg) {
928 /* #22.2, #30 */
929 warning("core.bare and core.worktree do not make sense");
930 work_tree_config_is_bogus = 1;
931 }
b3f66fd3
NTND
932
933 /* #18, #26 */
0915a5b4 934 set_git_dir(gitdirenv, 0);
b3f66fd3 935 free(gitfile);
e4e30347 936 return NULL;
b3f66fd3
NTND
937 }
938 else if (git_work_tree_cfg) { /* #6, #14 */
939 if (is_absolute_path(git_work_tree_cfg))
940 set_git_work_tree(git_work_tree_cfg);
941 else {
56b9f6e7 942 char *core_worktree;
b3f66fd3 943 if (chdir(gitdirenv))
fc045fe7 944 die_errno(_("cannot chdir to '%s'"), gitdirenv);
b3f66fd3 945 if (chdir(git_work_tree_cfg))
fc045fe7 946 die_errno(_("cannot chdir to '%s'"), git_work_tree_cfg);
56b9f6e7 947 core_worktree = xgetcwd();
7333ed17 948 if (chdir(cwd->buf))
fc045fe7 949 die_errno(_("cannot come back to cwd"));
b3f66fd3 950 set_git_work_tree(core_worktree);
56b9f6e7 951 free(core_worktree);
b3f66fd3
NTND
952 }
953 }
2cd83d10
JK
954 else if (!git_env_bool(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, 1)) {
955 /* #16d */
0915a5b4 956 set_git_dir(gitdirenv, 0);
2cd83d10
JK
957 free(gitfile);
958 return NULL;
959 }
b3f66fd3
NTND
960 else /* #2, #10 */
961 set_git_work_tree(".");
962
963 /* set_git_work_tree() must have been called by now */
964 worktree = get_git_work_tree();
965
966 /* both get_git_work_tree() and cwd are already normalized */
7333ed17 967 if (!strcmp(cwd->buf, worktree)) { /* cwd == worktree */
0915a5b4 968 set_git_dir(gitdirenv, 0);
b3f66fd3 969 free(gitfile);
e4e30347 970 return NULL;
b3f66fd3 971 }
e4e30347 972
7333ed17 973 offset = dir_inside_of(cwd->buf, worktree);
9b125da4 974 if (offset >= 0) { /* cwd inside worktree? */
0915a5b4 975 set_git_dir(gitdirenv, 1);
b3f66fd3 976 if (chdir(worktree))
fc045fe7 977 die_errno(_("cannot chdir to '%s'"), worktree);
7333ed17 978 strbuf_addch(cwd, '/');
b3f66fd3 979 free(gitfile);
7333ed17 980 return cwd->buf + offset;
93a00542 981 }
b3f66fd3
NTND
982
983 /* cwd outside worktree */
0915a5b4 984 set_git_dir(gitdirenv, 0);
b3f66fd3
NTND
985 free(gitfile);
986 return NULL;
93a00542
JN
987}
988
9951d3b3 989static const char *setup_discovered_git_dir(const char *gitdir,
7333ed17 990 struct strbuf *cwd, int offset,
abade65b 991 struct repository_format *repo_fmt,
9951d3b3 992 int *nongit_ok)
98937bef 993{
abade65b 994 if (check_repository_format_gently(gitdir, repo_fmt, nongit_ok))
9951d3b3 995 return NULL;
98937bef 996
4868b2ea
JN
997 /* --work-tree is set without --git-dir; use discovered one */
998 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
2d4dcf21
JS
999 char *to_free = NULL;
1000 const char *ret;
1001
7333ed17 1002 if (offset != cwd->len && !is_absolute_path(gitdir))
2d4dcf21 1003 gitdir = to_free = real_pathdup(gitdir, 1);
7333ed17 1004 if (chdir(cwd->buf))
fc045fe7 1005 die_errno(_("cannot come back to cwd"));
abade65b 1006 ret = setup_explicit_git_dir(gitdir, cwd, repo_fmt, nongit_ok);
2d4dcf21
JS
1007 free(to_free);
1008 return ret;
4868b2ea
JN
1009 }
1010
9951d3b3
NTND
1011 /* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */
1012 if (is_bare_repository_cfg > 0) {
0915a5b4 1013 set_git_dir(gitdir, (offset != cwd->len));
7333ed17 1014 if (chdir(cwd->buf))
fc045fe7 1015 die_errno(_("cannot come back to cwd"));
98937bef 1016 return NULL;
9951d3b3 1017 }
98937bef 1018
9951d3b3
NTND
1019 /* #0, #1, #5, #8, #9, #12, #13 */
1020 set_git_work_tree(".");
1021 if (strcmp(gitdir, DEFAULT_GIT_DIR_ENVIRONMENT))
0915a5b4 1022 set_git_dir(gitdir, 0);
98937bef 1023 inside_git_dir = 0;
9951d3b3 1024 inside_work_tree = 1;
5cf7b3b1 1025 if (offset >= cwd->len)
98937bef
NTND
1026 return NULL;
1027
df380d58
JS
1028 /* Make "offset" point past the '/' (already the case for root dirs) */
1029 if (offset != offset_1st_component(cwd->buf))
1030 offset++;
1031 /* Add a '/' at the end */
7333ed17
RS
1032 strbuf_addch(cwd, '/');
1033 return cwd->buf + offset;
98937bef
NTND
1034}
1035
1cd8031b 1036/* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */
7333ed17 1037static const char *setup_bare_git_dir(struct strbuf *cwd, int offset,
abade65b 1038 struct repository_format *repo_fmt,
7333ed17 1039 int *nongit_ok)
68698da5
JN
1040{
1041 int root_len;
1042
abade65b 1043 if (check_repository_format_gently(".", repo_fmt, nongit_ok))
1cd8031b
NTND
1044 return NULL;
1045
2cd83d10
JK
1046 setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, "0", 1);
1047
4868b2ea
JN
1048 /* --work-tree is set without --git-dir; use discovered one */
1049 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
da6f8475 1050 static const char *gitdir;
4868b2ea 1051
7333ed17
RS
1052 gitdir = offset == cwd->len ? "." : xmemdupz(cwd->buf, offset);
1053 if (chdir(cwd->buf))
fc045fe7 1054 die_errno(_("cannot come back to cwd"));
abade65b 1055 return setup_explicit_git_dir(gitdir, cwd, repo_fmt, nongit_ok);
4868b2ea
JN
1056 }
1057
68698da5 1058 inside_git_dir = 1;
1cd8031b 1059 inside_work_tree = 0;
7333ed17
RS
1060 if (offset != cwd->len) {
1061 if (chdir(cwd->buf))
fc045fe7 1062 die_errno(_("cannot come back to cwd"));
7333ed17
RS
1063 root_len = offset_1st_component(cwd->buf);
1064 strbuf_setlen(cwd, offset > root_len ? offset : root_len);
0915a5b4 1065 set_git_dir(cwd->buf, 0);
337e51ce 1066 }
1cd8031b 1067 else
0915a5b4 1068 set_git_dir(".", 0);
68698da5
JN
1069 return NULL;
1070}
1071
2565b43b 1072static dev_t get_device_or_die(const char *path, const char *prefix, int prefix_len)
60c98d1e
JN
1073{
1074 struct stat buf;
2565b43b 1075 if (stat(path, &buf)) {
fc045fe7 1076 die_errno(_("failed to stat '%*s%s%s'"),
2565b43b 1077 prefix_len,
60c98d1e
JN
1078 prefix ? prefix : "",
1079 prefix ? "/" : "", path);
2565b43b 1080 }
60c98d1e
JN
1081 return buf.st_dev;
1082}
1083
9e2326c7 1084/*
1b77d83c 1085 * A "string_list_each_func_t" function that canonicalizes an entry
4530a85b 1086 * from GIT_CEILING_DIRECTORIES using real_pathdup(), or
7ec30aaa
MH
1087 * discards it if unusable. The presence of an empty entry in
1088 * GIT_CEILING_DIRECTORIES turns off canonicalization for all
1089 * subsequent entries.
9e2326c7 1090 */
1b77d83c 1091static int canonicalize_ceiling_entry(struct string_list_item *item,
7ec30aaa 1092 void *cb_data)
9e2326c7 1093{
7ec30aaa 1094 int *empty_entry_found = cb_data;
1b77d83c 1095 char *ceil = item->string;
9e2326c7 1096
7ec30aaa
MH
1097 if (!*ceil) {
1098 *empty_entry_found = 1;
9e2326c7 1099 return 0;
7ec30aaa 1100 } else if (!is_absolute_path(ceil)) {
9e2326c7 1101 return 0;
7ec30aaa
MH
1102 } else if (*empty_entry_found) {
1103 /* Keep entry but do not canonicalize it */
1104 return 1;
1105 } else {
ce83eadd 1106 char *real_path = real_pathdup(ceil, 0);
4ac9006f 1107 if (!real_path) {
7ec30aaa 1108 return 0;
4ac9006f 1109 }
7ec30aaa 1110 free(item->string);
4ac9006f 1111 item->string = real_path;
7ec30aaa
MH
1112 return 1;
1113 }
9e2326c7
MH
1114}
1115
8959555c
JS
1116struct safe_directory_data {
1117 const char *path;
1118 int is_safe;
1119};
1120
a4e7e317
GC
1121static int safe_directory_cb(const char *key, const char *value,
1122 const struct config_context *ctx UNUSED, void *d)
8959555c
JS
1123{
1124 struct safe_directory_data *data = d;
1125
bb50ec3c
MV
1126 if (strcmp(key, "safe.directory"))
1127 return 0;
1128
0f85c4a3 1129 if (!value || !*value) {
8959555c 1130 data->is_safe = 0;
0f85c4a3
DS
1131 } else if (!strcmp(value, "*")) {
1132 data->is_safe = 1;
1133 } else {
8959555c
JS
1134 const char *interpolated = NULL;
1135
1136 if (!git_config_pathname(&interpolated, key, value) &&
1137 !fspathcmp(data->path, interpolated ? interpolated : value))
1138 data->is_safe = 1;
1139
1140 free((char *)interpolated);
1141 }
1142
1143 return 0;
1144}
1145
3b0bf270
CMAB
1146/*
1147 * Check if a repository is safe, by verifying the ownership of the
1148 * worktree (if any), the git directory, and the gitfile (if any).
1149 *
1150 * Exemptions for known-safe repositories can be added via `safe.directory`
1151 * config settings; for non-bare repositories, their worktree needs to be
1152 * added, for bare ones their git directory.
1153 */
1154static int ensure_valid_ownership(const char *gitfile,
17d3883f
JS
1155 const char *worktree, const char *gitdir,
1156 struct strbuf *report)
8959555c 1157{
3b0bf270
CMAB
1158 struct safe_directory_data data = {
1159 .path = worktree ? worktree : gitdir
1160 };
8959555c 1161
e47363e5 1162 if (!git_env_bool("GIT_TEST_ASSUME_DIFFERENT_OWNER", 0) &&
17d3883f
JS
1163 (!gitfile || is_path_owned_by_current_user(gitfile, report)) &&
1164 (!worktree || is_path_owned_by_current_user(worktree, report)) &&
1165 (!gitdir || is_path_owned_by_current_user(gitdir, report)))
8959555c
JS
1166 return 1;
1167
3b0bf270
CMAB
1168 /*
1169 * data.path is the "path" that identifies the repository and it is
1170 * constant regardless of what failed above. data.is_safe should be
1171 * initialized to false, and might be changed by the callback.
1172 */
6061601d 1173 git_protected_config(safe_directory_cb, &data);
8959555c
JS
1174
1175 return data.is_safe;
1176}
1177
a4e7e317
GC
1178static int allowed_bare_repo_cb(const char *key, const char *value,
1179 const struct config_context *ctx UNUSED,
1180 void *d)
8d1a7448
GC
1181{
1182 enum allowed_bare_repo *allowed_bare_repo = d;
1183
1184 if (strcasecmp(key, "safe.bareRepository"))
1185 return 0;
1186
1187 if (!strcmp(value, "explicit")) {
1188 *allowed_bare_repo = ALLOWED_BARE_REPO_EXPLICIT;
1189 return 0;
1190 }
1191 if (!strcmp(value, "all")) {
1192 *allowed_bare_repo = ALLOWED_BARE_REPO_ALL;
1193 return 0;
1194 }
1195 return -1;
1196}
1197
1198static enum allowed_bare_repo get_allowed_bare_repo(void)
1199{
1200 enum allowed_bare_repo result = ALLOWED_BARE_REPO_ALL;
1201 git_protected_config(allowed_bare_repo_cb, &result);
1202 return result;
1203}
1204
1205static const char *allowed_bare_repo_to_string(
1206 enum allowed_bare_repo allowed_bare_repo)
1207{
1208 switch (allowed_bare_repo) {
1209 case ALLOWED_BARE_REPO_EXPLICIT:
1210 return "explicit";
1211 case ALLOWED_BARE_REPO_ALL:
1212 return "all";
1213 default:
1214 BUG("invalid allowed_bare_repo %d",
1215 allowed_bare_repo);
1216 }
1217 return NULL;
1218}
1219
ce9b8aab
JS
1220enum discovery_result {
1221 GIT_DIR_NONE = 0,
1222 GIT_DIR_EXPLICIT,
1223 GIT_DIR_DISCOVERED,
1224 GIT_DIR_BARE,
1225 /* these are errors */
1226 GIT_DIR_HIT_CEILING = -1,
01017dce 1227 GIT_DIR_HIT_MOUNT_POINT = -2,
8959555c 1228 GIT_DIR_INVALID_GITFILE = -3,
8d1a7448
GC
1229 GIT_DIR_INVALID_OWNERSHIP = -4,
1230 GIT_DIR_DISALLOWED_BARE = -5,
ce9b8aab
JS
1231};
1232
e90fdc39
JS
1233/*
1234 * We cannot decide in this function whether we are in the work tree or
1235 * not, since the config can only be read _after_ this function was called.
ce9b8aab
JS
1236 *
1237 * Also, we avoid changing any global state (such as the current working
1238 * directory) to allow early callers.
1239 *
1240 * The directory where the search should start needs to be passed in via the
1241 * `dir` parameter; upon return, the `dir` buffer will contain the path of
1242 * the directory where the search ended, and `gitdir` will contain the path of
1243 * the discovered .git/ directory, if any. If `gitdir` is not absolute, it
1244 * is relative to `dir` (i.e. *not* necessarily the cwd).
e90fdc39 1245 */
ce9b8aab 1246static enum discovery_result setup_git_directory_gently_1(struct strbuf *dir,
01017dce 1247 struct strbuf *gitdir,
17d3883f 1248 struct strbuf *report,
01017dce 1249 int die_on_error)
d288a700 1250{
0454dd93 1251 const char *env_ceiling_dirs = getenv(CEILING_DIRECTORIES_ENVIRONMENT);
31171d9e 1252 struct string_list ceiling_dirs = STRING_LIST_INIT_DUP;
ce9b8aab 1253 const char *gitdirenv;
d17f2124 1254 int ceil_offset = -1, min_offset = offset_1st_component(dir->buf);
c7d1d1b1
RH
1255 dev_t current_device = 0;
1256 int one_filesystem = 1;
d288a700 1257
e90fdc39
JS
1258 /*
1259 * If GIT_DIR is set explicitly, we're not going
1260 * to do any discovery, but we still do repository
1261 * validation.
1262 */
ad1a382f 1263 gitdirenv = getenv(GIT_DIR_ENVIRONMENT);
ce9b8aab
JS
1264 if (gitdirenv) {
1265 strbuf_addstr(gitdir, gitdirenv);
1266 return GIT_DIR_EXPLICIT;
1267 }
d288a700 1268
31171d9e 1269 if (env_ceiling_dirs) {
7ec30aaa
MH
1270 int empty_entry_found = 0;
1271
31171d9e 1272 string_list_split(&ceiling_dirs, env_ceiling_dirs, PATH_SEP, -1);
1b77d83c 1273 filter_string_list(&ceiling_dirs, 0,
7ec30aaa 1274 canonicalize_ceiling_entry, &empty_entry_found);
ce9b8aab 1275 ceil_offset = longest_ancestor_length(dir->buf, &ceiling_dirs);
31171d9e
MH
1276 string_list_clear(&ceiling_dirs, 0);
1277 }
1278
ce9b8aab
JS
1279 if (ceil_offset < 0)
1280 ceil_offset = min_offset - 2;
d288a700 1281
e2683d51
JS
1282 if (min_offset && min_offset == dir->len &&
1283 !is_dir_sep(dir->buf[min_offset - 1])) {
1284 strbuf_addch(dir, '/');
1285 min_offset++;
1286 }
1287
892c41b9 1288 /*
ce9b8aab 1289 * Test in the following order (relative to the dir):
b44ebb19 1290 * - .git (file containing "gitdir: <path>")
e90fdc39
JS
1291 * - .git/
1292 * - ./ (bare)
b44ebb19 1293 * - ../.git
e90fdc39
JS
1294 * - ../.git/
1295 * - ../ (bare)
176b2d32 1296 * - ../../.git
e90fdc39 1297 * etc.
892c41b9 1298 */
cf87463e 1299 one_filesystem = !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM", 0);
60c98d1e 1300 if (one_filesystem)
ce9b8aab 1301 current_device = get_device_or_die(dir->buf, NULL, 0);
e90fdc39 1302 for (;;) {
01017dce 1303 int offset = dir->len, error_code = 0;
3b0bf270
CMAB
1304 char *gitdir_path = NULL;
1305 char *gitfile = NULL;
ce9b8aab
JS
1306
1307 if (offset > min_offset)
1308 strbuf_addch(dir, '/');
1309 strbuf_addstr(dir, DEFAULT_GIT_DIR_ENVIRONMENT);
01017dce
JS
1310 gitdirenv = read_gitfile_gently(dir->buf, die_on_error ?
1311 NULL : &error_code);
1312 if (!gitdirenv) {
1313 if (die_on_error ||
1314 error_code == READ_GITFILE_ERR_NOT_A_FILE) {
5c4003ca 1315 /* NEEDSWORK: fail if .git is not file nor dir */
3b0bf270 1316 if (is_git_directory(dir->buf)) {
01017dce 1317 gitdirenv = DEFAULT_GIT_DIR_ENVIRONMENT;
3b0bf270
CMAB
1318 gitdir_path = xstrdup(dir->buf);
1319 }
01017dce
JS
1320 } else if (error_code != READ_GITFILE_ERR_STAT_FAILED)
1321 return GIT_DIR_INVALID_GITFILE;
3b0bf270
CMAB
1322 } else
1323 gitfile = xstrdup(dir->buf);
1324 /*
1325 * Earlier, we tentatively added DEFAULT_GIT_DIR_ENVIRONMENT
1326 * to check that directory for a repository.
1327 * Now trim that tentative addition away, because we want to
1328 * focus on the real directory we are in.
1329 */
ce9b8aab 1330 strbuf_setlen(dir, offset);
9951d3b3 1331 if (gitdirenv) {
3b0bf270 1332 enum discovery_result ret;
d51e1dff
JS
1333 const char *gitdir_candidate =
1334 gitdir_path ? gitdir_path : gitdirenv;
3b0bf270 1335
d51e1dff 1336 if (ensure_valid_ownership(gitfile, dir->buf,
17d3883f 1337 gitdir_candidate, report)) {
3b0bf270
CMAB
1338 strbuf_addstr(gitdir, gitdirenv);
1339 ret = GIT_DIR_DISCOVERED;
1340 } else
1341 ret = GIT_DIR_INVALID_OWNERSHIP;
1342
1343 /*
1344 * Earlier, during discovery, we might have allocated
1345 * string copies for gitdir_path or gitfile so make
1346 * sure we don't leak by freeing them now, before
1347 * leaving the loop and function.
1348 *
1349 * Note: gitdirenv will be non-NULL whenever these are
1350 * allocated, therefore we need not take care of releasing
1351 * them outside of this conditional block.
1352 */
1353 free(gitdir_path);
1354 free(gitfile);
1355
1356 return ret;
9951d3b3 1357 }
9951d3b3 1358
ce9b8aab 1359 if (is_git_directory(dir->buf)) {
e35f202b 1360 trace2_data_string("setup", NULL, "implicit-bare-repository", dir->buf);
8d1a7448
GC
1361 if (get_allowed_bare_repo() == ALLOWED_BARE_REPO_EXPLICIT)
1362 return GIT_DIR_DISALLOWED_BARE;
17d3883f 1363 if (!ensure_valid_ownership(NULL, NULL, dir->buf, report))
8959555c 1364 return GIT_DIR_INVALID_OWNERSHIP;
ce9b8aab
JS
1365 strbuf_addstr(gitdir, ".");
1366 return GIT_DIR_BARE;
502ffe34 1367 }
9951d3b3 1368
ce9b8aab
JS
1369 if (offset <= min_offset)
1370 return GIT_DIR_HIT_CEILING;
1cd8031b 1371
ce9b8aab 1372 while (--offset > ceil_offset && !is_dir_sep(dir->buf[offset]))
6c1e6544 1373 ; /* continue */
ce9b8aab
JS
1374 if (offset <= ceil_offset)
1375 return GIT_DIR_HIT_CEILING;
1376
1377 strbuf_setlen(dir, offset > min_offset ? offset : min_offset);
1378 if (one_filesystem &&
1379 current_device != get_device_or_die(dir->buf, NULL, offset))
1380 return GIT_DIR_HIT_MOUNT_POINT;
892c41b9 1381 }
d288a700 1382}
5e7bfe25 1383
d3fb71b3
BW
1384int discover_git_directory(struct strbuf *commondir,
1385 struct strbuf *gitdir)
16ac8b8d
JS
1386{
1387 struct strbuf dir = STRBUF_INIT, err = STRBUF_INIT;
1388 size_t gitdir_offset = gitdir->len, cwd_len;
d3fb71b3 1389 size_t commondir_offset = commondir->len;
e8805af1 1390 struct repository_format candidate = REPOSITORY_FORMAT_INIT;
16ac8b8d
JS
1391
1392 if (strbuf_getcwd(&dir))
d3fb71b3 1393 return -1;
16ac8b8d
JS
1394
1395 cwd_len = dir.len;
17d3883f 1396 if (setup_git_directory_gently_1(&dir, gitdir, NULL, 0) <= 0) {
16ac8b8d 1397 strbuf_release(&dir);
d3fb71b3 1398 return -1;
16ac8b8d
JS
1399 }
1400
1401 /*
1402 * The returned gitdir is relative to dir, and if dir does not reflect
1403 * the current working directory, we simply make the gitdir absolute.
1404 */
1405 if (dir.len < cwd_len && !is_absolute_path(gitdir->buf + gitdir_offset)) {
1406 /* Avoid a trailing "/." */
1407 if (!strcmp(".", gitdir->buf + gitdir_offset))
1408 strbuf_setlen(gitdir, gitdir_offset);
1409 else
1410 strbuf_addch(&dir, '/');
1411 strbuf_insert(gitdir, gitdir_offset, dir.buf, dir.len);
1412 }
1413
d3fb71b3
BW
1414 get_common_dir(commondir, gitdir->buf + gitdir_offset);
1415
16ac8b8d 1416 strbuf_reset(&dir);
d3fb71b3 1417 strbuf_addf(&dir, "%s/config", commondir->buf + commondir_offset);
16ac8b8d
JS
1418 read_repository_format(&candidate, dir.buf);
1419 strbuf_release(&dir);
1420
1421 if (verify_repository_format(&candidate, &err) < 0) {
1422 warning("ignoring git dir '%s': %s",
1423 gitdir->buf + gitdir_offset, err.buf);
1424 strbuf_release(&err);
d3fb71b3 1425 strbuf_setlen(commondir, commondir_offset);
69743f9b 1426 strbuf_setlen(gitdir, gitdir_offset);
e8805af1 1427 clear_repository_format(&candidate);
d3fb71b3 1428 return -1;
16ac8b8d
JS
1429 }
1430
e8805af1 1431 clear_repository_format(&candidate);
d3fb71b3 1432 return 0;
16ac8b8d
JS
1433}
1434
a60645f9
NTND
1435const char *setup_git_directory_gently(int *nongit_ok)
1436{
ce9b8aab 1437 static struct strbuf cwd = STRBUF_INIT;
17d3883f 1438 struct strbuf dir = STRBUF_INIT, gitdir = STRBUF_INIT, report = STRBUF_INIT;
07098b81 1439 const char *prefix = NULL;
e8805af1 1440 struct repository_format repo_fmt = REPOSITORY_FORMAT_INIT;
a60645f9 1441
ce9b8aab
JS
1442 /*
1443 * We may have read an incomplete configuration before
1444 * setting-up the git directory. If so, clear the cache so
1445 * that the next queries to the configuration reload complete
1446 * configuration (including the per-repo config file that we
1447 * ignored previously).
1448 */
1449 git_config_clear();
1450
1451 /*
1452 * Let's assume that we are in a git repository.
1453 * If it turns out later that we are somewhere else, the value will be
1454 * updated accordingly.
1455 */
1456 if (nongit_ok)
1457 *nongit_ok = 0;
1458
1459 if (strbuf_getcwd(&cwd))
1460 die_errno(_("Unable to read current working directory"));
1461 strbuf_addbuf(&dir, &cwd);
1462
17d3883f 1463 switch (setup_git_directory_gently_1(&dir, &gitdir, &report, 1)) {
ce9b8aab 1464 case GIT_DIR_EXPLICIT:
abade65b 1465 prefix = setup_explicit_git_dir(gitdir.buf, &cwd, &repo_fmt, nongit_ok);
ce9b8aab
JS
1466 break;
1467 case GIT_DIR_DISCOVERED:
1468 if (dir.len < cwd.len && chdir(dir.buf))
fc045fe7 1469 die(_("cannot change to '%s'"), dir.buf);
ce9b8aab 1470 prefix = setup_discovered_git_dir(gitdir.buf, &cwd, dir.len,
abade65b 1471 &repo_fmt, nongit_ok);
ce9b8aab
JS
1472 break;
1473 case GIT_DIR_BARE:
1474 if (dir.len < cwd.len && chdir(dir.buf))
fc045fe7 1475 die(_("cannot change to '%s'"), dir.buf);
abade65b 1476 prefix = setup_bare_git_dir(&cwd, dir.len, &repo_fmt, nongit_ok);
ce9b8aab
JS
1477 break;
1478 case GIT_DIR_HIT_CEILING:
07098b81
ED
1479 if (!nongit_ok)
1480 die(_("not a git repository (or any of the parent directories): %s"),
1481 DEFAULT_GIT_DIR_ENVIRONMENT);
1482 *nongit_ok = 1;
ce9b8aab
JS
1483 break;
1484 case GIT_DIR_HIT_MOUNT_POINT:
07098b81
ED
1485 if (!nongit_ok)
1486 die(_("not a git repository (or any parent up to mount point %s)\n"
1487 "Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set)."),
1488 dir.buf);
1489 *nongit_ok = 1;
1490 break;
8959555c
JS
1491 case GIT_DIR_INVALID_OWNERSHIP:
1492 if (!nongit_ok) {
1493 struct strbuf quoted = STRBUF_INIT;
1494
17d3883f 1495 strbuf_complete(&report, '\n');
8959555c 1496 sq_quote_buf_pretty(&quoted, dir.buf);
3b0bf270 1497 die(_("detected dubious ownership in repository at '%s'\n"
17d3883f 1498 "%s"
8959555c
JS
1499 "To add an exception for this directory, call:\n"
1500 "\n"
1501 "\tgit config --global --add safe.directory %s"),
17d3883f 1502 dir.buf, report.buf, quoted.buf);
8959555c
JS
1503 }
1504 *nongit_ok = 1;
1505 break;
8d1a7448
GC
1506 case GIT_DIR_DISALLOWED_BARE:
1507 if (!nongit_ok) {
1508 die(_("cannot use bare repository '%s' (safe.bareRepository is '%s')"),
1509 dir.buf,
1510 allowed_bare_repo_to_string(get_allowed_bare_repo()));
1511 }
1512 *nongit_ok = 1;
1513 break;
07098b81
ED
1514 case GIT_DIR_NONE:
1515 /*
1516 * As a safeguard against setup_git_directory_gently_1 returning
1517 * this value, fallthrough to BUG. Otherwise it is possible to
1518 * set startup_info->have_repository to 1 when we did nothing to
1519 * find a repository.
1520 */
ce9b8aab 1521 default:
a3ba4fa7 1522 BUG("unhandled setup_git_directory_gently_1() result");
ce9b8aab
JS
1523 }
1524
07098b81
ED
1525 /*
1526 * At this point, nongit_ok is stable. If it is non-NULL and points
1527 * to a non-zero value, then this means that we haven't found a
1528 * repository and that the caller expects startup_info to reflect
1529 * this.
1530 *
1531 * Regardless of the state of nongit_ok, startup_info->prefix and
1532 * the GIT_PREFIX environment variable must always match. For details
1533 * see Documentation/config/alias.txt.
1534 */
c7d0e610 1535 if (nongit_ok && *nongit_ok)
07098b81 1536 startup_info->have_repository = 0;
c7d0e610 1537 else
07098b81 1538 startup_info->have_repository = 1;
46c3cd44 1539
73f192c9
BW
1540 /*
1541 * Not all paths through the setup code will call 'set_git_dir()' (which
1542 * directly sets up the environment) so in order to guarantee that the
1543 * environment is in a consistent state after setup, explicitly setup
1544 * the environment if we have a repository.
1545 *
1546 * NEEDSWORK: currently we allow bogus GIT_DIR values to be set in some
1547 * code paths so we also need to explicitly setup the environment if
1548 * the user has set GIT_DIR. It may be beneficial to disallow bogus
1549 * GIT_DIR values at some point in the future.
1550 */
07098b81
ED
1551 if (/* GIT_DIR_EXPLICIT, GIT_DIR_DISCOVERED, GIT_DIR_BARE */
1552 startup_info->have_repository ||
1553 /* GIT_DIR_EXPLICIT */
1554 getenv(GIT_DIR_ENVIRONMENT)) {
c14c234f
BW
1555 if (!the_repository->gitdir) {
1556 const char *gitdir = getenv(GIT_DIR_ENVIRONMENT);
1557 if (!gitdir)
1558 gitdir = DEFAULT_GIT_DIR_ENVIRONMENT;
357a03eb 1559 setup_git_env(gitdir);
c14c234f 1560 }
ebaf3bcf 1561 if (startup_info->have_repository) {
78a67668 1562 repo_set_hash_algo(the_repository, repo_fmt.hash_algo);
3867f6d6
VD
1563 the_repository->repository_format_worktree_config =
1564 repo_fmt.worktree_config;
ebaf3bcf
JT
1565 /* take ownership of repo_fmt.partial_clone */
1566 the_repository->repository_format_partial_clone =
1567 repo_fmt.partial_clone;
1568 repo_fmt.partial_clone = NULL;
1569 }
c14c234f 1570 }
c7d0e610
TB
1571 /*
1572 * Since precompose_string_if_needed() needs to look at
1573 * the core.precomposeunicode configuration, this
1574 * has to happen after the above block that finds
1575 * out where the repository is, i.e. a preparation
1576 * for calling git_config_get_bool().
1577 */
1578 if (prefix) {
1579 prefix = precompose_string_if_needed(prefix);
1580 startup_info->prefix = prefix;
1581 setenv(GIT_PREFIX_ENVIRONMENT, prefix, 1);
1582 } else {
1583 startup_info->prefix = NULL;
1584 setenv(GIT_PREFIX_ENVIRONMENT, "", 1);
1585 }
1586
e6f8861b 1587 setup_original_cwd();
73f192c9 1588
ce9b8aab
JS
1589 strbuf_release(&dir);
1590 strbuf_release(&gitdir);
17d3883f 1591 strbuf_release(&report);
e8805af1 1592 clear_repository_format(&repo_fmt);
ce9b8aab 1593
a60645f9
NTND
1594 return prefix;
1595}
1596
94df2506
JH
1597int git_config_perm(const char *var, const char *value)
1598{
06cbe855
HO
1599 int i;
1600 char *endptr;
1601
afe8a907 1602 if (!value)
06cbe855
HO
1603 return PERM_GROUP;
1604
1605 if (!strcmp(value, "umask"))
1606 return PERM_UMASK;
1607 if (!strcmp(value, "group"))
1608 return PERM_GROUP;
1609 if (!strcmp(value, "all") ||
1610 !strcmp(value, "world") ||
1611 !strcmp(value, "everybody"))
1612 return PERM_EVERYBODY;
1613
1614 /* Parse octal numbers */
1615 i = strtol(value, &endptr, 8);
1616
1617 /* If not an octal number, maybe true/false? */
1618 if (*endptr != 0)
1619 return git_config_bool(var, value) ? PERM_GROUP : PERM_UMASK;
1620
1621 /*
1622 * Treat values 0, 1 and 2 as compatibility cases, otherwise it is
5a688fe4 1623 * a chmod value to restrict to.
06cbe855
HO
1624 */
1625 switch (i) {
1626 case PERM_UMASK: /* 0 */
1627 return PERM_UMASK;
1628 case OLD_PERM_GROUP: /* 1 */
1629 return PERM_GROUP;
1630 case OLD_PERM_EVERYBODY: /* 2 */
1631 return PERM_EVERYBODY;
94df2506 1632 }
06cbe855
HO
1633
1634 /* A filemode value was given: 0xxx */
1635
1636 if ((i & 0600) != 0600)
fc045fe7 1637 die(_("problem with core.sharedRepository filemode value "
06cbe855 1638 "(0%.3o).\nThe owner of files must always have "
2ff30e67 1639 "read and write permissions."), i);
06cbe855
HO
1640
1641 /*
1642 * Mask filemode value. Others can not get write permission.
1643 * x flags for directories are handled separately.
1644 */
5a688fe4 1645 return -(i & 0666);
94df2506
JH
1646}
1647
cfe3917c 1648void check_repository_format(struct repository_format *fmt)
ab9cb76f 1649{
e8805af1 1650 struct repository_format repo_fmt = REPOSITORY_FORMAT_INIT;
cfe3917c 1651 if (!fmt)
1652 fmt = &repo_fmt;
1653 check_repository_format_gently(get_git_dir(), fmt, NULL);
f1c126bd 1654 startup_info->have_repository = 1;
d553aceb 1655 repo_set_hash_algo(the_repository, fmt->hash_algo);
3867f6d6
VD
1656 the_repository->repository_format_worktree_config =
1657 fmt->worktree_config;
ebaf3bcf
JT
1658 the_repository->repository_format_partial_clone =
1659 xstrdup_or_null(fmt->partial_clone);
e8805af1 1660 clear_repository_format(&repo_fmt);
ab9cb76f
JH
1661}
1662
e1e5ec86
CB
1663/*
1664 * Returns the "prefix", a path to the current working directory
1665 * relative to the work tree root, or NULL, if the current working
1666 * directory is not a strict subdirectory of the work tree root. The
1667 * prefix always ends with a '/' character.
1668 */
5e7bfe25
JH
1669const char *setup_git_directory(void)
1670{
b3f66fd3 1671 return setup_git_directory_gently(NULL);
5e7bfe25 1672}
abc06822 1673
40d96325 1674const char *resolve_gitdir_gently(const char *suspect, int *return_error_code)
abc06822
FG
1675{
1676 if (is_git_directory(suspect))
1677 return suspect;
40d96325 1678 return read_gitfile_gently(suspect, return_error_code);
abc06822 1679}
1d999ddd
TR
1680
1681/* if any standard file descriptor is missing open it to /dev/null */
1682void sanitize_stdfds(void)
1683{
d9a65b6c
RS
1684 int fd = xopen("/dev/null", O_RDWR);
1685 while (fd < 2)
1686 fd = xdup(fd);
1d999ddd
TR
1687 if (fd > 2)
1688 close(fd);
1689}
de0957ce
NTND
1690
1691int daemonize(void)
1692{
1693#ifdef NO_POSIX_GOODIES
1694 errno = ENOSYS;
1695 return -1;
1696#else
1697 switch (fork()) {
1698 case 0:
1699 break;
1700 case -1:
fc045fe7 1701 die_errno(_("fork failed"));
de0957ce
NTND
1702 default:
1703 exit(0);
1704 }
1705 if (setsid() == -1)
fc045fe7 1706 die_errno(_("setsid failed"));
de0957ce
NTND
1707 close(0);
1708 close(1);
1709 close(2);
1710 sanitize_stdfds();
1711 return 0;
1712#endif
1713}