]> git.ipfire.org Git - thirdparty/git.git/blame - setup.c
replace trivial malloc + sprintf / strcpy calls with xstrfmt
[thirdparty/git.git] / setup.c
CommitLineData
d288a700 1#include "cache.h"
e90fdc39 2#include "dir.h"
31171d9e 3#include "string-list.h"
e90fdc39
JS
4
5static int inside_git_dir = -1;
6static int inside_work_tree = -1;
fada7674 7static int work_tree_config_is_bogus;
d288a700 8
ddc2a628
MEW
9/*
10 * The input parameter must contain an absolute path, and it must already be
11 * normalized.
12 *
13 * Find the part of an absolute path that lies inside the work tree by
14 * dereferencing symlinks outside the work tree, for example:
15 * /dir1/repo/dir2/file (work tree is /dir1/repo) -> dir2/file
16 * /dir/file (work tree is /) -> dir/file
17 * /dir/symlink1/symlink2 (symlink1 points to work tree) -> symlink2
18 * /dir/repolink/file (repolink points to /dir/repo) -> file
19 * /dir/repo (exactly equal to work tree) -> (empty string)
20 */
21static int abspath_part_inside_repo(char *path)
22{
23 size_t len;
24 size_t wtlen;
25 char *path0;
26 int off;
27 const char *work_tree = get_git_work_tree();
28
29 if (!work_tree)
30 return -1;
31 wtlen = strlen(work_tree);
32 len = strlen(path);
6127ff63 33 off = offset_1st_component(path);
ddc2a628
MEW
34
35 /* check if work tree is already the prefix */
36 if (wtlen <= len && !strncmp(path, work_tree, wtlen)) {
37 if (path[wtlen] == '/') {
38 memmove(path, path + wtlen + 1, len - wtlen);
39 return 0;
40 } else if (path[wtlen - 1] == '/' || path[wtlen] == '\0') {
41 /* work tree is the root, or the whole path */
42 memmove(path, path + wtlen, len - wtlen + 1);
43 return 0;
44 }
45 /* work tree might match beginning of a symlink to work tree */
46 off = wtlen;
47 }
48 path0 = path;
6127ff63 49 path += off;
ddc2a628
MEW
50
51 /* check each '/'-terminated level */
52 while (*path) {
53 path++;
54 if (*path == '/') {
55 *path = '\0';
56 if (strcmp(real_path(path0), work_tree) == 0) {
57 memmove(path0, path + 1, len - (path - path0));
58 return 0;
59 }
60 *path = '/';
61 }
62 }
63
64 /* check whole path */
65 if (strcmp(real_path(path0), work_tree) == 0) {
66 *path0 = '\0';
67 return 0;
68 }
69
70 return -1;
71}
72
645a29c4
NTND
73/*
74 * Normalize "path", prepending the "prefix" for relative paths. If
75 * remaining_prefix is not NULL, return the actual prefix still
76 * remains in the path. For example, prefix = sub1/sub2/ and path is
77 *
78 * foo -> sub1/sub2/foo (full prefix)
79 * ../foo -> sub1/foo (remaining prefix is sub1/)
80 * ../../bar -> bar (no remaining prefix)
81 * ../../sub1/sub2/foo -> sub1/sub2/foo (but no remaining prefix)
82 * `pwd`/../bar -> sub1/bar (no remaining prefix)
83 */
84char *prefix_path_gently(const char *prefix, int len,
85 int *remaining_prefix, const char *path)
d089ebaa
JH
86{
87 const char *orig = path;
18e051a3
CMAB
88 char *sanitized;
89 if (is_absolute_path(orig)) {
655ee9ea 90 sanitized = xmalloc(strlen(path) + 1);
645a29c4
NTND
91 if (remaining_prefix)
92 *remaining_prefix = 0;
655ee9ea
MEW
93 if (normalize_path_copy_len(sanitized, path, remaining_prefix)) {
94 free(sanitized);
95 return NULL;
96 }
97 if (abspath_part_inside_repo(sanitized)) {
98 free(sanitized);
99 return NULL;
100 }
18e051a3 101 } else {
75faa45a 102 sanitized = xstrfmt("%.*s%s", len, prefix, path);
645a29c4
NTND
103 if (remaining_prefix)
104 *remaining_prefix = len;
655ee9ea 105 if (normalize_path_copy_len(sanitized, sanitized, remaining_prefix)) {
546e0fd9
JK
106 free(sanitized);
107 return NULL;
d089ebaa 108 }
d089ebaa
JH
109 }
110 return sanitized;
f332726e
LT
111}
112
546e0fd9
JK
113char *prefix_path(const char *prefix, int len, const char *path)
114{
645a29c4 115 char *r = prefix_path_gently(prefix, len, NULL, path);
546e0fd9
JK
116 if (!r)
117 die("'%s' is outside repository", path);
118 return r;
119}
120
121int path_inside_repo(const char *prefix, const char *path)
122{
123 int len = prefix ? strlen(prefix) : 0;
645a29c4 124 char *r = prefix_path_gently(prefix, len, NULL, path);
546e0fd9
JK
125 if (r) {
126 free(r);
127 return 1;
128 }
129 return 0;
130}
131
c6e8c800
JH
132int check_filename(const char *prefix, const char *arg)
133{
134 const char *name;
135 struct stat st;
136
59556548 137 if (starts_with(arg, ":/")) {
4db86e8b
NTND
138 if (arg[2] == '\0') /* ":/" is root dir, always exists */
139 return 1;
140 name = arg + 2;
28fcc0b7
NTND
141 } else if (!no_wildcard(arg))
142 return 1;
143 else if (prefix)
4db86e8b
NTND
144 name = prefix_filename(prefix, strlen(prefix), arg);
145 else
146 name = arg;
c6e8c800
JH
147 if (!lstat(name, &st))
148 return 1; /* file exists */
149 if (errno == ENOENT || errno == ENOTDIR)
150 return 0; /* file does not exist */
151 die_errno("failed to stat '%s'", arg);
152}
153
023e37c3
MM
154static void NORETURN die_verify_filename(const char *prefix,
155 const char *arg,
156 int diagnose_misspelt_rev)
009fee47 157{
023e37c3
MM
158 if (!diagnose_misspelt_rev)
159 die("%s: no such path in the working tree.\n"
4d4b5739 160 "Use 'git <command> -- <path>...' to specify paths that do not exist locally.",
023e37c3 161 arg);
0e539dca
JH
162 /*
163 * Saying "'(icase)foo' does not exist in the index" when the
164 * user gave us ":(icase)foo" is just stupid. A magic pathspec
165 * begins with a colon and is followed by a non-alnum; do not
8c135ea2 166 * let maybe_die_on_misspelt_object_name() even trigger.
0e539dca
JH
167 */
168 if (!(arg[0] == ':' && !isalnum(arg[1])))
8c135ea2 169 maybe_die_on_misspelt_object_name(arg, prefix);
0e539dca 170
009fee47
MM
171 /* ... or fall back the most general message. */
172 die("ambiguous argument '%s': unknown revision or path not in the working tree.\n"
4d4b5739
MM
173 "Use '--' to separate paths from revisions, like this:\n"
174 "'git <command> [<revision>...] -- [<file>...]'", arg);
009fee47
MM
175
176}
177
e23d0b4a
LT
178/*
179 * Verify a filename that we got as an argument for a pathspec
180 * entry. Note that a filename that begins with "-" never verifies
181 * as true, because even if such a filename were to exist, we want
182 * it to be preceded by the "--" marker (or we want the user to
183 * use a format like "./-filename")
023e37c3
MM
184 *
185 * The "diagnose_misspelt_rev" is used to provide a user-friendly
186 * diagnosis when dying upon finding that "name" is not a pathname.
187 * If set to 1, the diagnosis will try to diagnose "name" as an
188 * invalid object name (e.g. HEAD:foo). If set to 0, the diagnosis
189 * will only complain about an inexisting file.
190 *
191 * This function is typically called to check that a "file or rev"
192 * argument is unambiguous. In this case, the caller will want
193 * diagnose_misspelt_rev == 1 when verifying the first non-rev
194 * argument (which could have been a revision), and
195 * diagnose_misspelt_rev == 0 for the next ones (because we already
196 * saw a filename, there's not ambiguity anymore).
e23d0b4a 197 */
023e37c3
MM
198void verify_filename(const char *prefix,
199 const char *arg,
200 int diagnose_misspelt_rev)
e23d0b4a 201{
e23d0b4a
LT
202 if (*arg == '-')
203 die("bad flag '%s' used after filename", arg);
c6e8c800 204 if (check_filename(prefix, arg))
e23d0b4a 205 return;
023e37c3 206 die_verify_filename(prefix, arg, diagnose_misspelt_rev);
e23d0b4a
LT
207}
208
ea92f41f
JH
209/*
210 * Opposite of the above: the command line did not have -- marker
211 * and we parsed the arg as a refname. It should not be interpretable
212 * as a filename.
213 */
214void verify_non_filename(const char *prefix, const char *arg)
215{
7ae3df8c 216 if (!is_inside_work_tree() || is_inside_git_dir())
68025633 217 return;
ea92f41f
JH
218 if (*arg == '-')
219 return; /* flag */
c6e8c800
JH
220 if (!check_filename(prefix, arg))
221 return;
222 die("ambiguous argument '%s': both revision and filename\n"
4d4b5739
MM
223 "Use '--' to separate paths from revisions, like this:\n"
224 "'git <command> [<revision>...] -- [<file>...]'", arg);
ea92f41f
JH
225}
226
31e26ebc 227int get_common_dir(struct strbuf *sb, const char *gitdir)
4dc4e145
NTND
228{
229 struct strbuf data = STRBUF_INIT;
230 struct strbuf path = STRBUF_INIT;
231 const char *git_common_dir = getenv(GIT_COMMON_DIR_ENVIRONMENT);
31e26ebc 232 int ret = 0;
4dc4e145
NTND
233 if (git_common_dir) {
234 strbuf_addstr(sb, git_common_dir);
31e26ebc 235 return 1;
4dc4e145
NTND
236 }
237 strbuf_addf(&path, "%s/commondir", gitdir);
238 if (file_exists(path.buf)) {
239 if (strbuf_read_file(&data, path.buf, 0) <= 0)
240 die_errno(_("failed to read %s"), path.buf);
241 while (data.len && (data.buf[data.len - 1] == '\n' ||
242 data.buf[data.len - 1] == '\r'))
243 data.len--;
244 data.buf[data.len] = '\0';
245 strbuf_reset(&path);
246 if (!is_absolute_path(data.buf))
247 strbuf_addf(&path, "%s/", gitdir);
248 strbuf_addbuf(&path, &data);
249 strbuf_addstr(sb, real_path(path.buf));
31e26ebc 250 ret = 1;
4dc4e145
NTND
251 } else
252 strbuf_addstr(sb, gitdir);
253 strbuf_release(&data);
254 strbuf_release(&path);
31e26ebc 255 return ret;
4dc4e145 256}
d288a700 257
5f5608bc 258/*
ad1a382f 259 * Test if it looks like we're at a git directory.
5e7bfe25 260 * We want to see:
5f5608bc 261 *
790296fd 262 * - either an objects/ directory _or_ the proper
5f5608bc 263 * GIT_OBJECT_DIRECTORY environment variable
ad1a382f 264 * - a refs/ directory
8098a178 265 * - either a HEAD symlink or a HEAD file that is formatted as
c847f537
JH
266 * a proper "ref:", or a regular file HEAD that has a properly
267 * formatted sha1 object name.
5f5608bc 268 */
b3256eb8 269int is_git_directory(const char *suspect)
5f5608bc 270{
1d186b6f
NTND
271 struct strbuf path = STRBUF_INIT;
272 int ret = 0;
273 size_t len;
ad1a382f 274
4dc4e145
NTND
275 /* Check worktree-related signatures */
276 strbuf_addf(&path, "%s/HEAD", suspect);
277 if (validate_headref(path.buf))
278 goto done;
279
280 strbuf_reset(&path);
281 get_common_dir(&path, suspect);
1d186b6f 282 len = path.len;
4dc4e145
NTND
283
284 /* Check non-worktree-related signatures */
ad1a382f
SP
285 if (getenv(DB_ENVIRONMENT)) {
286 if (access(getenv(DB_ENVIRONMENT), X_OK))
1d186b6f 287 goto done;
ad1a382f
SP
288 }
289 else {
4dc4e145 290 strbuf_setlen(&path, len);
1d186b6f
NTND
291 strbuf_addstr(&path, "/objects");
292 if (access(path.buf, X_OK))
293 goto done;
ad1a382f
SP
294 }
295
1d186b6f
NTND
296 strbuf_setlen(&path, len);
297 strbuf_addstr(&path, "/refs");
298 if (access(path.buf, X_OK))
299 goto done;
ad1a382f 300
1d186b6f
NTND
301 ret = 1;
302done:
303 strbuf_release(&path);
304 return ret;
5f5608bc
LT
305}
306
68025633
JS
307int is_inside_git_dir(void)
308{
e90fdc39
JS
309 if (inside_git_dir < 0)
310 inside_git_dir = is_inside_dir(get_git_dir());
311 return inside_git_dir;
892c41b9
ML
312}
313
892c41b9
ML
314int is_inside_work_tree(void)
315{
e90fdc39
JS
316 if (inside_work_tree < 0)
317 inside_work_tree = is_inside_dir(get_git_work_tree());
318 return inside_work_tree;
892c41b9
ML
319}
320
f3fa1838
JH
321void setup_work_tree(void)
322{
354e6534
JS
323 const char *work_tree, *git_dir;
324 static int initialized = 0;
325
326 if (initialized)
327 return;
fada7674
JK
328
329 if (work_tree_config_is_bogus)
330 die("unable to set up work tree using invalid config");
331
354e6534
JS
332 work_tree = get_git_work_tree();
333 git_dir = get_git_dir();
59f0f2f3 334 if (!is_absolute_path(git_dir))
e2a57aac 335 git_dir = real_path(get_git_dir());
59f0f2f3
MH
336 if (!work_tree || chdir(work_tree))
337 die("This operation must be run in a work tree");
0ed74813
NTND
338
339 /*
340 * Make sure subsequent git processes find correct worktree
341 * if $GIT_WORK_TREE is set relative
342 */
343 if (getenv(GIT_WORK_TREE_ENVIRONMENT))
344 setenv(GIT_WORK_TREE_ENVIRONMENT, ".", 1);
345
41894ae3 346 set_git_dir(remove_leading_path(git_dir, work_tree));
354e6534 347 initialized = 1;
59f0f2f3
MH
348}
349
31e26ebc
NTND
350static int check_repo_format(const char *var, const char *value, void *cb)
351{
352 if (strcmp(var, "core.repositoryformatversion") == 0)
353 repository_format_version = git_config_int(var, value);
354 else if (strcmp(var, "core.sharedrepository") == 0)
355 shared_repository = git_config_perm(var, value);
356 return 0;
357}
358
337e51ce 359static int check_repository_format_gently(const char *gitdir, int *nongit_ok)
9459aa77 360{
7d0fb0da
NTND
361 struct strbuf sb = STRBUF_INIT;
362 const char *repo_config;
31e26ebc 363 config_fn_t fn;
7d0fb0da 364 int ret = 0;
337e51ce 365
31e26ebc
NTND
366 if (get_common_dir(&sb, gitdir))
367 fn = check_repo_format;
368 else
369 fn = check_repository_format_version;
e61a509a
NTND
370 strbuf_addstr(&sb, "/config");
371 repo_config = sb.buf;
372
337e51ce
NTND
373 /*
374 * git_config() can't be used here because it calls git_pathdup()
375 * to get $GIT_CONFIG/config. That call will make setup_git_env()
376 * set git_dir to ".git".
377 *
378 * We are in gitdir setup, no git dir has been found useable yet.
379 * Use a gentler version of git_config() to check if this repo
380 * is a good one.
381 */
31e26ebc 382 git_config_early(fn, NULL, repo_config);
9459aa77
NTND
383 if (GIT_REPO_VERSION < repository_format_version) {
384 if (!nongit_ok)
385 die ("Expected git repo version <= %d, found %d",
386 GIT_REPO_VERSION, repository_format_version);
387 warning("Expected git repo version <= %d, found %d",
388 GIT_REPO_VERSION, repository_format_version);
389 warning("Please upgrade Git");
390 *nongit_ok = -1;
7d0fb0da 391 ret = -1;
9459aa77 392 }
7d0fb0da
NTND
393 strbuf_release(&sb);
394 return ret;
9459aa77
NTND
395}
396
23af91d1
NTND
397static void update_linked_gitdir(const char *gitfile, const char *gitdir)
398{
399 struct strbuf path = STRBUF_INIT;
400 struct stat st;
401
82fde87f 402 strbuf_addf(&path, "%s/gitdir", gitdir);
23af91d1 403 if (stat(path.buf, &st) || st.st_mtime + 24 * 3600 < time(NULL))
91d54694 404 write_file(path.buf, "%s", gitfile);
23af91d1
NTND
405 strbuf_release(&path);
406}
407
b44ebb19
LH
408/*
409 * Try to read the location of the git directory from the .git file,
410 * return path to git directory if found.
a93bedad
EE
411 *
412 * On failure, if return_error_code is not NULL, return_error_code
413 * will be set to an error code and NULL will be returned. If
414 * return_error_code is NULL the function will die instead (for most
415 * cases).
b44ebb19 416 */
a93bedad 417const char *read_gitfile_gently(const char *path, int *return_error_code)
b44ebb19 418{
921bdd96 419 const int max_file_size = 1 << 20; /* 1MB */
a93bedad
EE
420 int error_code = 0;
421 char *buf = NULL;
422 char *dir = NULL;
40c813e0 423 const char *slash;
b44ebb19
LH
424 struct stat st;
425 int fd;
b1905aea 426 ssize_t len;
b44ebb19 427
a93bedad
EE
428 if (stat(path, &st)) {
429 error_code = READ_GITFILE_ERR_STAT_FAILED;
430 goto cleanup_return;
431 }
432 if (!S_ISREG(st.st_mode)) {
433 error_code = READ_GITFILE_ERR_NOT_A_FILE;
434 goto cleanup_return;
435 }
921bdd96
EE
436 if (st.st_size > max_file_size) {
437 error_code = READ_GITFILE_ERR_TOO_LARGE;
438 goto cleanup_return;
439 }
b44ebb19 440 fd = open(path, O_RDONLY);
a93bedad
EE
441 if (fd < 0) {
442 error_code = READ_GITFILE_ERR_OPEN_FAILED;
443 goto cleanup_return;
444 }
b44ebb19
LH
445 buf = xmalloc(st.st_size + 1);
446 len = read_in_full(fd, buf, st.st_size);
447 close(fd);
a93bedad
EE
448 if (len != st.st_size) {
449 error_code = READ_GITFILE_ERR_READ_FAILED;
450 goto cleanup_return;
451 }
b44ebb19 452 buf[len] = '\0';
a93bedad
EE
453 if (!starts_with(buf, "gitdir: ")) {
454 error_code = READ_GITFILE_ERR_INVALID_FORMAT;
455 goto cleanup_return;
456 }
b44ebb19
LH
457 while (buf[len - 1] == '\n' || buf[len - 1] == '\r')
458 len--;
a93bedad
EE
459 if (len < 9) {
460 error_code = READ_GITFILE_ERR_NO_PATH;
461 goto cleanup_return;
462 }
b44ebb19 463 buf[len] = '\0';
40c813e0
BK
464 dir = buf + 8;
465
466 if (!is_absolute_path(dir) && (slash = strrchr(path, '/'))) {
467 size_t pathlen = slash+1 - path;
75faa45a
JK
468 dir = xstrfmt("%.*s%.*s", (int)pathlen, path,
469 (int)(len - 8), buf + 8);
40c813e0
BK
470 free(buf);
471 buf = dir;
472 }
a93bedad
EE
473 if (!is_git_directory(dir)) {
474 error_code = READ_GITFILE_ERR_NOT_A_REPO;
475 goto cleanup_return;
476 }
23af91d1 477 update_linked_gitdir(path, dir);
e2a57aac 478 path = real_path(dir);
40c813e0 479
a93bedad 480cleanup_return:
a93bedad
EE
481 if (return_error_code)
482 *return_error_code = error_code;
38ae8784 483 else if (error_code) {
a93bedad
EE
484 switch (error_code) {
485 case READ_GITFILE_ERR_STAT_FAILED:
486 case READ_GITFILE_ERR_NOT_A_FILE:
38ae8784
JK
487 /* non-fatal; follow return path */
488 break;
a93bedad
EE
489 case READ_GITFILE_ERR_OPEN_FAILED:
490 die_errno("Error opening '%s'", path);
921bdd96
EE
491 case READ_GITFILE_ERR_TOO_LARGE:
492 die("Too large to be a .git file: '%s'", path);
a93bedad
EE
493 case READ_GITFILE_ERR_READ_FAILED:
494 die("Error reading %s", path);
495 case READ_GITFILE_ERR_INVALID_FORMAT:
496 die("Invalid gitfile format: %s", path);
497 case READ_GITFILE_ERR_NO_PATH:
498 die("No path in gitfile: %s", path);
499 case READ_GITFILE_ERR_NOT_A_REPO:
500 die("Not a git repository: %s", dir);
501 default:
502 assert(0);
503 }
504 }
505
b44ebb19 506 free(buf);
38ae8784 507 return error_code ? NULL : path;
b44ebb19
LH
508}
509
e4e30347 510static const char *setup_explicit_git_dir(const char *gitdirenv,
7333ed17 511 struct strbuf *cwd,
b3f66fd3 512 int *nongit_ok)
e4e30347 513{
b3f66fd3
NTND
514 const char *work_tree_env = getenv(GIT_WORK_TREE_ENVIRONMENT);
515 const char *worktree;
516 char *gitfile;
9b125da4 517 int offset;
e4e30347
JN
518
519 if (PATH_MAX - 40 < strlen(gitdirenv))
520 die("'$%s' too big", GIT_DIR_ENVIRONMENT);
b3f66fd3 521
13d6ec91 522 gitfile = (char*)read_gitfile(gitdirenv);
b3f66fd3
NTND
523 if (gitfile) {
524 gitfile = xstrdup(gitfile);
525 gitdirenv = gitfile;
526 }
527
e4e30347
JN
528 if (!is_git_directory(gitdirenv)) {
529 if (nongit_ok) {
530 *nongit_ok = 1;
b3f66fd3 531 free(gitfile);
e4e30347
JN
532 return NULL;
533 }
534 die("Not a git repository: '%s'", gitdirenv);
535 }
b3f66fd3
NTND
536
537 if (check_repository_format_gently(gitdirenv, nongit_ok)) {
538 free(gitfile);
539 return NULL;
e4e30347 540 }
b3f66fd3
NTND
541
542 /* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */
543 if (work_tree_env)
544 set_git_work_tree(work_tree_env);
545 else if (is_bare_repository_cfg > 0) {
fada7674
JK
546 if (git_work_tree_cfg) {
547 /* #22.2, #30 */
548 warning("core.bare and core.worktree do not make sense");
549 work_tree_config_is_bogus = 1;
550 }
b3f66fd3
NTND
551
552 /* #18, #26 */
553 set_git_dir(gitdirenv);
554 free(gitfile);
e4e30347 555 return NULL;
b3f66fd3
NTND
556 }
557 else if (git_work_tree_cfg) { /* #6, #14 */
558 if (is_absolute_path(git_work_tree_cfg))
559 set_git_work_tree(git_work_tree_cfg);
560 else {
56b9f6e7 561 char *core_worktree;
b3f66fd3
NTND
562 if (chdir(gitdirenv))
563 die_errno("Could not chdir to '%s'", gitdirenv);
564 if (chdir(git_work_tree_cfg))
565 die_errno("Could not chdir to '%s'", git_work_tree_cfg);
56b9f6e7 566 core_worktree = xgetcwd();
7333ed17 567 if (chdir(cwd->buf))
b3f66fd3
NTND
568 die_errno("Could not come back to cwd");
569 set_git_work_tree(core_worktree);
56b9f6e7 570 free(core_worktree);
b3f66fd3
NTND
571 }
572 }
2cd83d10
JK
573 else if (!git_env_bool(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, 1)) {
574 /* #16d */
575 set_git_dir(gitdirenv);
576 free(gitfile);
577 return NULL;
578 }
b3f66fd3
NTND
579 else /* #2, #10 */
580 set_git_work_tree(".");
581
582 /* set_git_work_tree() must have been called by now */
583 worktree = get_git_work_tree();
584
585 /* both get_git_work_tree() and cwd are already normalized */
7333ed17 586 if (!strcmp(cwd->buf, worktree)) { /* cwd == worktree */
b3f66fd3
NTND
587 set_git_dir(gitdirenv);
588 free(gitfile);
e4e30347 589 return NULL;
b3f66fd3 590 }
e4e30347 591
7333ed17 592 offset = dir_inside_of(cwd->buf, worktree);
9b125da4 593 if (offset >= 0) { /* cwd inside worktree? */
e2a57aac 594 set_git_dir(real_path(gitdirenv));
b3f66fd3
NTND
595 if (chdir(worktree))
596 die_errno("Could not chdir to '%s'", worktree);
7333ed17 597 strbuf_addch(cwd, '/');
b3f66fd3 598 free(gitfile);
7333ed17 599 return cwd->buf + offset;
93a00542 600 }
b3f66fd3
NTND
601
602 /* cwd outside worktree */
603 set_git_dir(gitdirenv);
604 free(gitfile);
605 return NULL;
93a00542
JN
606}
607
9951d3b3 608static const char *setup_discovered_git_dir(const char *gitdir,
7333ed17 609 struct strbuf *cwd, int offset,
9951d3b3 610 int *nongit_ok)
98937bef 611{
9951d3b3
NTND
612 if (check_repository_format_gently(gitdir, nongit_ok))
613 return NULL;
98937bef 614
4868b2ea
JN
615 /* --work-tree is set without --git-dir; use discovered one */
616 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
7333ed17 617 if (offset != cwd->len && !is_absolute_path(gitdir))
e2a57aac 618 gitdir = xstrdup(real_path(gitdir));
7333ed17 619 if (chdir(cwd->buf))
4868b2ea 620 die_errno("Could not come back to cwd");
7333ed17 621 return setup_explicit_git_dir(gitdir, cwd, nongit_ok);
4868b2ea
JN
622 }
623
9951d3b3
NTND
624 /* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */
625 if (is_bare_repository_cfg > 0) {
7333ed17
RS
626 set_git_dir(offset == cwd->len ? gitdir : real_path(gitdir));
627 if (chdir(cwd->buf))
9951d3b3 628 die_errno("Could not come back to cwd");
98937bef 629 return NULL;
9951d3b3 630 }
98937bef 631
9951d3b3
NTND
632 /* #0, #1, #5, #8, #9, #12, #13 */
633 set_git_work_tree(".");
634 if (strcmp(gitdir, DEFAULT_GIT_DIR_ENVIRONMENT))
635 set_git_dir(gitdir);
98937bef 636 inside_git_dir = 0;
9951d3b3 637 inside_work_tree = 1;
7333ed17 638 if (offset == cwd->len)
98937bef
NTND
639 return NULL;
640
641 /* Make "offset" point to past the '/', and add a '/' at the end */
642 offset++;
7333ed17
RS
643 strbuf_addch(cwd, '/');
644 return cwd->buf + offset;
98937bef
NTND
645}
646
1cd8031b 647/* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */
7333ed17
RS
648static const char *setup_bare_git_dir(struct strbuf *cwd, int offset,
649 int *nongit_ok)
68698da5
JN
650{
651 int root_len;
652
1cd8031b
NTND
653 if (check_repository_format_gently(".", nongit_ok))
654 return NULL;
655
2cd83d10
JK
656 setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, "0", 1);
657
4868b2ea
JN
658 /* --work-tree is set without --git-dir; use discovered one */
659 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
660 const char *gitdir;
661
7333ed17
RS
662 gitdir = offset == cwd->len ? "." : xmemdupz(cwd->buf, offset);
663 if (chdir(cwd->buf))
4868b2ea 664 die_errno("Could not come back to cwd");
7333ed17 665 return setup_explicit_git_dir(gitdir, cwd, nongit_ok);
4868b2ea
JN
666 }
667
68698da5 668 inside_git_dir = 1;
1cd8031b 669 inside_work_tree = 0;
7333ed17
RS
670 if (offset != cwd->len) {
671 if (chdir(cwd->buf))
8fc0ae80 672 die_errno("Cannot come back to cwd");
7333ed17
RS
673 root_len = offset_1st_component(cwd->buf);
674 strbuf_setlen(cwd, offset > root_len ? offset : root_len);
675 set_git_dir(cwd->buf);
337e51ce 676 }
1cd8031b 677 else
68698da5 678 set_git_dir(".");
68698da5
JN
679 return NULL;
680}
681
f161edeb
JN
682static const char *setup_nongit(const char *cwd, int *nongit_ok)
683{
684 if (!nongit_ok)
685 die("Not a git repository (or any of the parent directories): %s", DEFAULT_GIT_DIR_ENVIRONMENT);
686 if (chdir(cwd))
687 die_errno("Cannot come back to cwd");
688 *nongit_ok = 1;
689 return NULL;
690}
691
2565b43b 692static dev_t get_device_or_die(const char *path, const char *prefix, int prefix_len)
60c98d1e
JN
693{
694 struct stat buf;
2565b43b
CB
695 if (stat(path, &buf)) {
696 die_errno("failed to stat '%*s%s%s'",
697 prefix_len,
60c98d1e
JN
698 prefix ? prefix : "",
699 prefix ? "/" : "", path);
2565b43b 700 }
60c98d1e
JN
701 return buf.st_dev;
702}
703
9e2326c7 704/*
1b77d83c
MH
705 * A "string_list_each_func_t" function that canonicalizes an entry
706 * from GIT_CEILING_DIRECTORIES using real_path_if_valid(), or
7ec30aaa
MH
707 * discards it if unusable. The presence of an empty entry in
708 * GIT_CEILING_DIRECTORIES turns off canonicalization for all
709 * subsequent entries.
9e2326c7 710 */
1b77d83c 711static int canonicalize_ceiling_entry(struct string_list_item *item,
7ec30aaa 712 void *cb_data)
9e2326c7 713{
7ec30aaa 714 int *empty_entry_found = cb_data;
1b77d83c 715 char *ceil = item->string;
9e2326c7 716
7ec30aaa
MH
717 if (!*ceil) {
718 *empty_entry_found = 1;
9e2326c7 719 return 0;
7ec30aaa 720 } else if (!is_absolute_path(ceil)) {
9e2326c7 721 return 0;
7ec30aaa
MH
722 } else if (*empty_entry_found) {
723 /* Keep entry but do not canonicalize it */
724 return 1;
725 } else {
726 const char *real_path = real_path_if_valid(ceil);
727 if (!real_path)
728 return 0;
729 free(item->string);
730 item->string = xstrdup(real_path);
731 return 1;
732 }
9e2326c7
MH
733}
734
e90fdc39
JS
735/*
736 * We cannot decide in this function whether we are in the work tree or
737 * not, since the config can only be read _after_ this function was called.
738 */
a60645f9 739static const char *setup_git_directory_gently_1(int *nongit_ok)
d288a700 740{
0454dd93 741 const char *env_ceiling_dirs = getenv(CEILING_DIRECTORIES_ENVIRONMENT);
31171d9e 742 struct string_list ceiling_dirs = STRING_LIST_INIT_DUP;
7333ed17 743 static struct strbuf cwd = STRBUF_INIT;
9951d3b3
NTND
744 const char *gitdirenv, *ret;
745 char *gitfile;
7333ed17 746 int offset, offset_parent, ceil_offset = -1;
c7d1d1b1
RH
747 dev_t current_device = 0;
748 int one_filesystem = 1;
d288a700 749
3c8687a7
TA
750 /*
751 * We may have read an incomplete configuration before
752 * setting-up the git directory. If so, clear the cache so
753 * that the next queries to the configuration reload complete
754 * configuration (including the per-repo config file that we
755 * ignored previously).
756 */
757 git_config_clear();
758
af05d679
SG
759 /*
760 * Let's assume that we are in a git repository.
761 * If it turns out later that we are somewhere else, the value will be
762 * updated accordingly.
763 */
764 if (nongit_ok)
765 *nongit_ok = 0;
766
7333ed17 767 if (strbuf_getcwd(&cwd))
b3f66fd3 768 die_errno("Unable to read current working directory");
7333ed17 769 offset = cwd.len;
b3f66fd3 770
e90fdc39
JS
771 /*
772 * If GIT_DIR is set explicitly, we're not going
773 * to do any discovery, but we still do repository
774 * validation.
775 */
ad1a382f 776 gitdirenv = getenv(GIT_DIR_ENVIRONMENT);
e4e30347 777 if (gitdirenv)
7333ed17 778 return setup_explicit_git_dir(gitdirenv, &cwd, nongit_ok);
d288a700 779
31171d9e 780 if (env_ceiling_dirs) {
7ec30aaa
MH
781 int empty_entry_found = 0;
782
31171d9e 783 string_list_split(&ceiling_dirs, env_ceiling_dirs, PATH_SEP, -1);
1b77d83c 784 filter_string_list(&ceiling_dirs, 0,
7ec30aaa 785 canonicalize_ceiling_entry, &empty_entry_found);
7333ed17 786 ceil_offset = longest_ancestor_length(cwd.buf, &ceiling_dirs);
31171d9e
MH
787 string_list_clear(&ceiling_dirs, 0);
788 }
789
7333ed17 790 if (ceil_offset < 0 && has_dos_drive_prefix(cwd.buf))
17d778e7 791 ceil_offset = 1;
d288a700 792
892c41b9 793 /*
e90fdc39 794 * Test in the following order (relative to the cwd):
b44ebb19 795 * - .git (file containing "gitdir: <path>")
e90fdc39
JS
796 * - .git/
797 * - ./ (bare)
b44ebb19 798 * - ../.git
e90fdc39
JS
799 * - ../.git/
800 * - ../ (bare)
801 * - ../../.git/
802 * etc.
892c41b9 803 */
cf87463e 804 one_filesystem = !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM", 0);
60c98d1e 805 if (one_filesystem)
2565b43b 806 current_device = get_device_or_die(".", NULL, 0);
e90fdc39 807 for (;;) {
13d6ec91 808 gitfile = (char*)read_gitfile(DEFAULT_GIT_DIR_ENVIRONMENT);
9951d3b3
NTND
809 if (gitfile)
810 gitdirenv = gitfile = xstrdup(gitfile);
811 else {
812 if (is_git_directory(DEFAULT_GIT_DIR_ENVIRONMENT))
813 gitdirenv = DEFAULT_GIT_DIR_ENVIRONMENT;
814 }
815
816 if (gitdirenv) {
817 ret = setup_discovered_git_dir(gitdirenv,
7333ed17 818 &cwd, offset,
9951d3b3
NTND
819 nongit_ok);
820 free(gitfile);
821 return ret;
822 }
823 free(gitfile);
824
68698da5 825 if (is_git_directory("."))
7333ed17 826 return setup_bare_git_dir(&cwd, offset, nongit_ok);
1cd8031b 827
2565b43b 828 offset_parent = offset;
7333ed17 829 while (--offset_parent > ceil_offset && cwd.buf[offset_parent] != '/');
2565b43b 830 if (offset_parent <= ceil_offset)
7333ed17 831 return setup_nongit(cwd.buf, nongit_ok);
8030e442 832 if (one_filesystem) {
7333ed17
RS
833 dev_t parent_device = get_device_or_die("..", cwd.buf,
834 offset);
60c98d1e 835 if (parent_device != current_device) {
8030e442 836 if (nongit_ok) {
7333ed17 837 if (chdir(cwd.buf))
8030e442
LD
838 die_errno("Cannot come back to cwd");
839 *nongit_ok = 1;
840 return NULL;
841 }
7333ed17 842 strbuf_setlen(&cwd, offset);
2565b43b 843 die("Not a git repository (or any parent up to mount point %s)\n"
7333ed17
RS
844 "Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).",
845 cwd.buf);
8030e442
LD
846 }
847 }
502ffe34 848 if (chdir("..")) {
7333ed17
RS
849 strbuf_setlen(&cwd, offset);
850 die_errno("Cannot change to '%s/..'", cwd.buf);
502ffe34 851 }
2565b43b 852 offset = offset_parent;
892c41b9 853 }
d288a700 854}
5e7bfe25 855
a60645f9
NTND
856const char *setup_git_directory_gently(int *nongit_ok)
857{
858 const char *prefix;
859
860 prefix = setup_git_directory_gently_1(nongit_ok);
1f5d271f 861 if (prefix)
a6f7f9a3 862 setenv(GIT_PREFIX_ENVIRONMENT, prefix, 1);
1f5d271f 863 else
a6f7f9a3 864 setenv(GIT_PREFIX_ENVIRONMENT, "", 1);
1f5d271f 865
f07d6a1a 866 if (startup_info) {
a60645f9 867 startup_info->have_repository = !nongit_ok || !*nongit_ok;
f07d6a1a
NTND
868 startup_info->prefix = prefix;
869 }
a60645f9
NTND
870 return prefix;
871}
872
94df2506
JH
873int git_config_perm(const char *var, const char *value)
874{
06cbe855
HO
875 int i;
876 char *endptr;
877
878 if (value == NULL)
879 return PERM_GROUP;
880
881 if (!strcmp(value, "umask"))
882 return PERM_UMASK;
883 if (!strcmp(value, "group"))
884 return PERM_GROUP;
885 if (!strcmp(value, "all") ||
886 !strcmp(value, "world") ||
887 !strcmp(value, "everybody"))
888 return PERM_EVERYBODY;
889
890 /* Parse octal numbers */
891 i = strtol(value, &endptr, 8);
892
893 /* If not an octal number, maybe true/false? */
894 if (*endptr != 0)
895 return git_config_bool(var, value) ? PERM_GROUP : PERM_UMASK;
896
897 /*
898 * Treat values 0, 1 and 2 as compatibility cases, otherwise it is
5a688fe4 899 * a chmod value to restrict to.
06cbe855
HO
900 */
901 switch (i) {
902 case PERM_UMASK: /* 0 */
903 return PERM_UMASK;
904 case OLD_PERM_GROUP: /* 1 */
905 return PERM_GROUP;
906 case OLD_PERM_EVERYBODY: /* 2 */
907 return PERM_EVERYBODY;
94df2506 908 }
06cbe855
HO
909
910 /* A filemode value was given: 0xxx */
911
912 if ((i & 0600) != 0600)
913 die("Problem with core.sharedRepository filemode value "
914 "(0%.3o).\nThe owner of files must always have "
915 "read and write permissions.", i);
916
917 /*
918 * Mask filemode value. Others can not get write permission.
919 * x flags for directories are handled separately.
920 */
5a688fe4 921 return -(i & 0666);
94df2506
JH
922}
923
ef90d6d4 924int check_repository_format_version(const char *var, const char *value, void *cb)
ab9cb76f 925{
31e26ebc
NTND
926 int ret = check_repo_format(var, value, cb);
927 if (ret)
928 return ret;
929 if (strcmp(var, "core.bare") == 0) {
e90fdc39
JS
930 is_bare_repository_cfg = git_config_bool(var, value);
931 if (is_bare_repository_cfg == 1)
932 inside_work_tree = -1;
933 } else if (strcmp(var, "core.worktree") == 0) {
180483c5
JH
934 if (!value)
935 return config_error_nonbool(var);
8e0f7003 936 free(git_work_tree_cfg);
e90fdc39
JS
937 git_work_tree_cfg = xstrdup(value);
938 inside_work_tree = -1;
939 }
299726d5 940 return 0;
ab9cb76f
JH
941}
942
943int check_repository_format(void)
944{
337e51ce 945 return check_repository_format_gently(get_git_dir(), NULL);
ab9cb76f
JH
946}
947
e1e5ec86
CB
948/*
949 * Returns the "prefix", a path to the current working directory
950 * relative to the work tree root, or NULL, if the current working
951 * directory is not a strict subdirectory of the work tree root. The
952 * prefix always ends with a '/' character.
953 */
5e7bfe25
JH
954const char *setup_git_directory(void)
955{
b3f66fd3 956 return setup_git_directory_gently(NULL);
5e7bfe25 957}
abc06822
FG
958
959const char *resolve_gitdir(const char *suspect)
960{
961 if (is_git_directory(suspect))
962 return suspect;
efc5fb6a 963 return read_gitfile(suspect);
abc06822 964}
1d999ddd
TR
965
966/* if any standard file descriptor is missing open it to /dev/null */
967void sanitize_stdfds(void)
968{
969 int fd = open("/dev/null", O_RDWR, 0);
970 while (fd != -1 && fd < 2)
971 fd = dup(fd);
972 if (fd == -1)
973 die_errno("open /dev/null or dup failed");
974 if (fd > 2)
975 close(fd);
976}
de0957ce
NTND
977
978int daemonize(void)
979{
980#ifdef NO_POSIX_GOODIES
981 errno = ENOSYS;
982 return -1;
983#else
984 switch (fork()) {
985 case 0:
986 break;
987 case -1:
988 die_errno("fork failed");
989 default:
990 exit(0);
991 }
992 if (setsid() == -1)
993 die_errno("setsid failed");
994 close(0);
995 close(1);
996 close(2);
997 sanitize_stdfds();
998 return 0;
999#endif
1000}