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