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