]> git.ipfire.org Git - thirdparty/git.git/blame - setup.c
Reduce translations by using same terminologies
[thirdparty/git.git] / setup.c
CommitLineData
d288a700 1#include "cache.h"
e90fdc39
JS
2#include "dir.h"
3
4static int inside_git_dir = -1;
5static int inside_work_tree = -1;
d288a700 6
546e0fd9 7static char *prefix_path_gently(const char *prefix, int len, const char *path)
d089ebaa
JH
8{
9 const char *orig = path;
18e051a3
CMAB
10 char *sanitized;
11 if (is_absolute_path(orig)) {
e2a57aac 12 const char *temp = real_path(path);
18e051a3
CMAB
13 sanitized = xmalloc(len + strlen(temp) + 1);
14 strcpy(sanitized, temp);
15 } else {
16 sanitized = xmalloc(len + strlen(path) + 1);
d089ebaa
JH
17 if (len)
18 memcpy(sanitized, prefix, len);
19 strcpy(sanitized + len, path);
f332726e 20 }
f3cad0ad 21 if (normalize_path_copy(sanitized, sanitized))
d089ebaa 22 goto error_out;
9a13ba1b 23 if (is_absolute_path(orig)) {
72ec8ba6 24 size_t root_len, len, total;
d089ebaa 25 const char *work_tree = get_git_work_tree();
b3100fd5
JH
26 if (!work_tree)
27 goto error_out;
28 len = strlen(work_tree);
72ec8ba6 29 root_len = offset_1st_component(work_tree);
b3100fd5 30 total = strlen(sanitized) + 1;
d089ebaa 31 if (strncmp(sanitized, work_tree, len) ||
72ec8ba6 32 (len > root_len && sanitized[len] != '\0' && sanitized[len] != '/')) {
d089ebaa 33 error_out:
546e0fd9
JK
34 free(sanitized);
35 return NULL;
d089ebaa
JH
36 }
37 if (sanitized[len] == '/')
38 len++;
39 memmove(sanitized, sanitized + len, total - len);
40 }
41 return sanitized;
f332726e
LT
42}
43
546e0fd9
JK
44char *prefix_path(const char *prefix, int len, const char *path)
45{
46 char *r = prefix_path_gently(prefix, len, path);
47 if (!r)
48 die("'%s' is outside repository", path);
49 return r;
50}
51
52int path_inside_repo(const char *prefix, const char *path)
53{
54 int len = prefix ? strlen(prefix) : 0;
55 char *r = prefix_path_gently(prefix, len, path);
56 if (r) {
57 free(r);
58 return 1;
59 }
60 return 0;
61}
62
c6e8c800
JH
63int check_filename(const char *prefix, const char *arg)
64{
65 const char *name;
66 struct stat st;
67
68 name = prefix ? prefix_filename(prefix, strlen(prefix), arg) : arg;
69 if (!lstat(name, &st))
70 return 1; /* file exists */
71 if (errno == ENOENT || errno == ENOTDIR)
72 return 0; /* file does not exist */
73 die_errno("failed to stat '%s'", arg);
74}
75
023e37c3
MM
76static void NORETURN die_verify_filename(const char *prefix,
77 const char *arg,
78 int diagnose_misspelt_rev)
009fee47 79{
023e37c3
MM
80 if (!diagnose_misspelt_rev)
81 die("%s: no such path in the working tree.\n"
82 "Use '-- <path>...' to specify paths that do not exist locally.",
83 arg);
0e539dca
JH
84 /*
85 * Saying "'(icase)foo' does not exist in the index" when the
86 * user gave us ":(icase)foo" is just stupid. A magic pathspec
87 * begins with a colon and is followed by a non-alnum; do not
8c135ea2 88 * let maybe_die_on_misspelt_object_name() even trigger.
0e539dca
JH
89 */
90 if (!(arg[0] == ':' && !isalnum(arg[1])))
8c135ea2 91 maybe_die_on_misspelt_object_name(arg, prefix);
0e539dca 92
009fee47
MM
93 /* ... or fall back the most general message. */
94 die("ambiguous argument '%s': unknown revision or path not in the working tree.\n"
95 "Use '--' to separate paths from revisions", arg);
96
97}
98
e23d0b4a
LT
99/*
100 * Verify a filename that we got as an argument for a pathspec
101 * entry. Note that a filename that begins with "-" never verifies
102 * as true, because even if such a filename were to exist, we want
103 * it to be preceded by the "--" marker (or we want the user to
104 * use a format like "./-filename")
023e37c3
MM
105 *
106 * The "diagnose_misspelt_rev" is used to provide a user-friendly
107 * diagnosis when dying upon finding that "name" is not a pathname.
108 * If set to 1, the diagnosis will try to diagnose "name" as an
109 * invalid object name (e.g. HEAD:foo). If set to 0, the diagnosis
110 * will only complain about an inexisting file.
111 *
112 * This function is typically called to check that a "file or rev"
113 * argument is unambiguous. In this case, the caller will want
114 * diagnose_misspelt_rev == 1 when verifying the first non-rev
115 * argument (which could have been a revision), and
116 * diagnose_misspelt_rev == 0 for the next ones (because we already
117 * saw a filename, there's not ambiguity anymore).
e23d0b4a 118 */
023e37c3
MM
119void verify_filename(const char *prefix,
120 const char *arg,
121 int diagnose_misspelt_rev)
e23d0b4a 122{
e23d0b4a
LT
123 if (*arg == '-')
124 die("bad flag '%s' used after filename", arg);
c6e8c800 125 if (check_filename(prefix, arg))
e23d0b4a 126 return;
023e37c3 127 die_verify_filename(prefix, arg, diagnose_misspelt_rev);
e23d0b4a
LT
128}
129
ea92f41f
JH
130/*
131 * Opposite of the above: the command line did not have -- marker
132 * and we parsed the arg as a refname. It should not be interpretable
133 * as a filename.
134 */
135void verify_non_filename(const char *prefix, const char *arg)
136{
7ae3df8c 137 if (!is_inside_work_tree() || is_inside_git_dir())
68025633 138 return;
ea92f41f
JH
139 if (*arg == '-')
140 return; /* flag */
c6e8c800
JH
141 if (!check_filename(prefix, arg))
142 return;
143 die("ambiguous argument '%s': both revision and filename\n"
144 "Use '--' to separate filenames from revisions", arg);
ea92f41f
JH
145}
146
8a42c985
JH
147/*
148 * Magic pathspec
149 *
150 * NEEDSWORK: These need to be moved to dir.h or even to a new
151 * pathspec.h when we restructure get_pathspec() users to use the
152 * "struct pathspec" interface.
153 *
154 * Possible future magic semantics include stuff like:
155 *
156 * { PATHSPEC_NOGLOB, '!', "noglob" },
6d942927 157 * { PATHSPEC_ICASE, '\0', "icase" },
8a42c985
JH
158 * { PATHSPEC_RECURSIVE, '*', "recursive" },
159 * { PATHSPEC_REGEXP, '\0', "regexp" },
160 *
161 */
162#define PATHSPEC_FROMTOP (1<<0)
163
488201c8 164static struct pathspec_magic {
8a42c985
JH
165 unsigned bit;
166 char mnemonic; /* this cannot be ':'! */
167 const char *name;
168} pathspec_magic[] = {
169 { PATHSPEC_FROMTOP, '/', "top" },
170};
171
172/*
173 * Take an element of a pathspec and check for magic signatures.
174 * Append the result to the prefix.
175 *
176 * For now, we only parse the syntax and throw out anything other than
177 * "top" magic.
178 *
179 * NEEDSWORK: This needs to be rewritten when we start migrating
180 * get_pathspec() users to use the "struct pathspec" interface. For
181 * example, a pathspec element may be marked as case-insensitive, but
182 * the prefix part must always match literally, and a single stupid
183 * string cannot express such a case.
184 */
488201c8 185static const char *prefix_pathspec(const char *prefix, int prefixlen, const char *elt)
8a42c985
JH
186{
187 unsigned magic = 0;
188 const char *copyfrom = elt;
6d942927 189 int i;
8a42c985
JH
190
191 if (elt[0] != ':') {
192 ; /* nothing to do */
193 } else if (elt[1] == '(') {
194 /* longhand */
195 const char *nextat;
196 for (copyfrom = elt + 2;
197 *copyfrom && *copyfrom != ')';
198 copyfrom = nextat) {
199 size_t len = strcspn(copyfrom, ",)");
200 if (copyfrom[len] == ')')
201 nextat = copyfrom + len;
202 else
203 nextat = copyfrom + len + 1;
204 if (!len)
205 continue;
206 for (i = 0; i < ARRAY_SIZE(pathspec_magic); i++)
207 if (strlen(pathspec_magic[i].name) == len &&
208 !strncmp(pathspec_magic[i].name, copyfrom, len)) {
209 magic |= pathspec_magic[i].bit;
210 break;
211 }
212 if (ARRAY_SIZE(pathspec_magic) <= i)
213 die("Invalid pathspec magic '%.*s' in '%s'",
214 (int) len, copyfrom, elt);
215 }
216 if (*copyfrom == ')')
217 copyfrom++;
218 } else {
219 /* shorthand */
220 for (copyfrom = elt + 1;
221 *copyfrom && *copyfrom != ':';
222 copyfrom++) {
223 char ch = *copyfrom;
2f6c9760
JH
224
225 if (!is_pathspec_magic(ch))
226 break;
8a42c985
JH
227 for (i = 0; i < ARRAY_SIZE(pathspec_magic); i++)
228 if (pathspec_magic[i].mnemonic == ch) {
229 magic |= pathspec_magic[i].bit;
230 break;
231 }
232 if (ARRAY_SIZE(pathspec_magic) <= i)
2f6c9760
JH
233 die("Unimplemented pathspec magic '%c' in '%s'",
234 ch, elt);
8a42c985
JH
235 }
236 if (*copyfrom == ':')
237 copyfrom++;
238 }
239
240 if (magic & PATHSPEC_FROMTOP)
6d942927 241 return xstrdup(copyfrom);
8a42c985 242 else
6d942927 243 return prefix_path(prefix, prefixlen, copyfrom);
8a42c985
JH
244}
245
6b5ee137 246const char **get_pathspec(const char *prefix, const char **pathspec)
d288a700 247{
6b5ee137 248 const char *entry = *pathspec;
d089ebaa 249 const char **src, **dst;
d288a700
LT
250 int prefixlen;
251
f332726e
LT
252 if (!prefix && !entry)
253 return NULL;
d288a700
LT
254
255 if (!entry) {
256 static const char *spec[2];
257 spec[0] = prefix;
258 spec[1] = NULL;
259 return spec;
260 }
261
262 /* Otherwise we have to re-write the entries.. */
d089ebaa
JH
263 src = pathspec;
264 dst = pathspec;
f332726e 265 prefixlen = prefix ? strlen(prefix) : 0;
d089ebaa 266 while (*src) {
8a42c985 267 *(dst++) = prefix_pathspec(prefix, prefixlen, *src);
d089ebaa
JH
268 src++;
269 }
270 *dst = NULL;
271 if (!*pathspec)
272 return NULL;
273 return pathspec;
d288a700
LT
274}
275
5f5608bc 276/*
ad1a382f 277 * Test if it looks like we're at a git directory.
5e7bfe25 278 * We want to see:
5f5608bc 279 *
790296fd 280 * - either an objects/ directory _or_ the proper
5f5608bc 281 * GIT_OBJECT_DIRECTORY environment variable
ad1a382f 282 * - a refs/ directory
8098a178 283 * - either a HEAD symlink or a HEAD file that is formatted as
c847f537
JH
284 * a proper "ref:", or a regular file HEAD that has a properly
285 * formatted sha1 object name.
5f5608bc 286 */
b3256eb8 287int is_git_directory(const char *suspect)
5f5608bc 288{
ad1a382f
SP
289 char path[PATH_MAX];
290 size_t len = strlen(suspect);
291
3c9d0414
GB
292 if (PATH_MAX <= len + strlen("/objects"))
293 die("Too long path: %.*s", 60, suspect);
ad1a382f
SP
294 strcpy(path, suspect);
295 if (getenv(DB_ENVIRONMENT)) {
296 if (access(getenv(DB_ENVIRONMENT), X_OK))
297 return 0;
298 }
299 else {
300 strcpy(path + len, "/objects");
301 if (access(path, X_OK))
302 return 0;
303 }
304
305 strcpy(path + len, "/refs");
306 if (access(path, X_OK))
8098a178 307 return 0;
ad1a382f
SP
308
309 strcpy(path + len, "/HEAD");
c847f537 310 if (validate_headref(path))
ad1a382f
SP
311 return 0;
312
8098a178 313 return 1;
5f5608bc
LT
314}
315
68025633
JS
316int is_inside_git_dir(void)
317{
e90fdc39
JS
318 if (inside_git_dir < 0)
319 inside_git_dir = is_inside_dir(get_git_dir());
320 return inside_git_dir;
892c41b9
ML
321}
322
892c41b9
ML
323int is_inside_work_tree(void)
324{
e90fdc39
JS
325 if (inside_work_tree < 0)
326 inside_work_tree = is_inside_dir(get_git_work_tree());
327 return inside_work_tree;
892c41b9
ML
328}
329
f3fa1838
JH
330void setup_work_tree(void)
331{
354e6534
JS
332 const char *work_tree, *git_dir;
333 static int initialized = 0;
334
335 if (initialized)
336 return;
337 work_tree = get_git_work_tree();
338 git_dir = get_git_dir();
59f0f2f3 339 if (!is_absolute_path(git_dir))
e2a57aac 340 git_dir = real_path(get_git_dir());
59f0f2f3
MH
341 if (!work_tree || chdir(work_tree))
342 die("This operation must be run in a work tree");
0ed74813
NTND
343
344 /*
345 * Make sure subsequent git processes find correct worktree
346 * if $GIT_WORK_TREE is set relative
347 */
348 if (getenv(GIT_WORK_TREE_ENVIRONMENT))
349 setenv(GIT_WORK_TREE_ENVIRONMENT, ".", 1);
350
e2a57aac 351 set_git_dir(relative_path(git_dir, work_tree));
354e6534 352 initialized = 1;
59f0f2f3
MH
353}
354
337e51ce 355static int check_repository_format_gently(const char *gitdir, int *nongit_ok)
9459aa77 356{
337e51ce
NTND
357 char repo_config[PATH_MAX+1];
358
359 /*
360 * git_config() can't be used here because it calls git_pathdup()
361 * to get $GIT_CONFIG/config. That call will make setup_git_env()
362 * set git_dir to ".git".
363 *
364 * We are in gitdir setup, no git dir has been found useable yet.
365 * Use a gentler version of git_config() to check if this repo
366 * is a good one.
367 */
368 snprintf(repo_config, PATH_MAX, "%s/config", gitdir);
369 git_config_early(check_repository_format_version, NULL, repo_config);
9459aa77
NTND
370 if (GIT_REPO_VERSION < repository_format_version) {
371 if (!nongit_ok)
372 die ("Expected git repo version <= %d, found %d",
373 GIT_REPO_VERSION, repository_format_version);
374 warning("Expected git repo version <= %d, found %d",
375 GIT_REPO_VERSION, repository_format_version);
376 warning("Please upgrade Git");
377 *nongit_ok = -1;
378 return -1;
379 }
380 return 0;
381}
382
b44ebb19
LH
383/*
384 * Try to read the location of the git directory from the .git file,
385 * return path to git directory if found.
386 */
13d6ec91 387const char *read_gitfile(const char *path)
b44ebb19
LH
388{
389 char *buf;
40c813e0
BK
390 char *dir;
391 const char *slash;
b44ebb19
LH
392 struct stat st;
393 int fd;
b1905aea 394 ssize_t len;
b44ebb19
LH
395
396 if (stat(path, &st))
397 return NULL;
398 if (!S_ISREG(st.st_mode))
399 return NULL;
400 fd = open(path, O_RDONLY);
401 if (fd < 0)
d824cbba 402 die_errno("Error opening '%s'", path);
b44ebb19
LH
403 buf = xmalloc(st.st_size + 1);
404 len = read_in_full(fd, buf, st.st_size);
405 close(fd);
406 if (len != st.st_size)
407 die("Error reading %s", path);
408 buf[len] = '\0';
409 if (prefixcmp(buf, "gitdir: "))
410 die("Invalid gitfile format: %s", path);
411 while (buf[len - 1] == '\n' || buf[len - 1] == '\r')
412 len--;
413 if (len < 9)
414 die("No path in gitfile: %s", path);
415 buf[len] = '\0';
40c813e0
BK
416 dir = buf + 8;
417
418 if (!is_absolute_path(dir) && (slash = strrchr(path, '/'))) {
419 size_t pathlen = slash+1 - path;
420 size_t dirlen = pathlen + len - 8;
421 dir = xmalloc(dirlen + 1);
422 strncpy(dir, path, pathlen);
423 strncpy(dir + pathlen, buf + 8, len - 8);
424 dir[dirlen] = '\0';
425 free(buf);
426 buf = dir;
427 }
428
429 if (!is_git_directory(dir))
430 die("Not a git repository: %s", dir);
e2a57aac 431 path = real_path(dir);
40c813e0 432
b44ebb19
LH
433 free(buf);
434 return path;
435}
436
e4e30347 437static const char *setup_explicit_git_dir(const char *gitdirenv,
b3f66fd3
NTND
438 char *cwd, int len,
439 int *nongit_ok)
e4e30347 440{
b3f66fd3
NTND
441 const char *work_tree_env = getenv(GIT_WORK_TREE_ENVIRONMENT);
442 const char *worktree;
443 char *gitfile;
9b125da4 444 int offset;
e4e30347
JN
445
446 if (PATH_MAX - 40 < strlen(gitdirenv))
447 die("'$%s' too big", GIT_DIR_ENVIRONMENT);
b3f66fd3 448
13d6ec91 449 gitfile = (char*)read_gitfile(gitdirenv);
b3f66fd3
NTND
450 if (gitfile) {
451 gitfile = xstrdup(gitfile);
452 gitdirenv = gitfile;
453 }
454
e4e30347
JN
455 if (!is_git_directory(gitdirenv)) {
456 if (nongit_ok) {
457 *nongit_ok = 1;
b3f66fd3 458 free(gitfile);
e4e30347
JN
459 return NULL;
460 }
461 die("Not a git repository: '%s'", gitdirenv);
462 }
b3f66fd3
NTND
463
464 if (check_repository_format_gently(gitdirenv, nongit_ok)) {
465 free(gitfile);
466 return NULL;
e4e30347 467 }
b3f66fd3
NTND
468
469 /* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */
470 if (work_tree_env)
471 set_git_work_tree(work_tree_env);
472 else if (is_bare_repository_cfg > 0) {
473 if (git_work_tree_cfg) /* #22.2, #30 */
474 die("core.bare and core.worktree do not make sense");
475
476 /* #18, #26 */
477 set_git_dir(gitdirenv);
478 free(gitfile);
e4e30347 479 return NULL;
b3f66fd3
NTND
480 }
481 else if (git_work_tree_cfg) { /* #6, #14 */
482 if (is_absolute_path(git_work_tree_cfg))
483 set_git_work_tree(git_work_tree_cfg);
484 else {
485 char core_worktree[PATH_MAX];
486 if (chdir(gitdirenv))
487 die_errno("Could not chdir to '%s'", gitdirenv);
488 if (chdir(git_work_tree_cfg))
489 die_errno("Could not chdir to '%s'", git_work_tree_cfg);
490 if (!getcwd(core_worktree, PATH_MAX))
491 die_errno("Could not get directory '%s'", git_work_tree_cfg);
492 if (chdir(cwd))
493 die_errno("Could not come back to cwd");
494 set_git_work_tree(core_worktree);
495 }
496 }
497 else /* #2, #10 */
498 set_git_work_tree(".");
499
500 /* set_git_work_tree() must have been called by now */
501 worktree = get_git_work_tree();
502
503 /* both get_git_work_tree() and cwd are already normalized */
504 if (!strcmp(cwd, worktree)) { /* cwd == worktree */
505 set_git_dir(gitdirenv);
506 free(gitfile);
e4e30347 507 return NULL;
b3f66fd3 508 }
e4e30347 509
9b125da4
NTND
510 offset = dir_inside_of(cwd, worktree);
511 if (offset >= 0) { /* cwd inside worktree? */
e2a57aac 512 set_git_dir(real_path(gitdirenv));
b3f66fd3
NTND
513 if (chdir(worktree))
514 die_errno("Could not chdir to '%s'", worktree);
515 cwd[len++] = '/';
516 cwd[len] = '\0';
517 free(gitfile);
9b125da4 518 return cwd + offset;
93a00542 519 }
b3f66fd3
NTND
520
521 /* cwd outside worktree */
522 set_git_dir(gitdirenv);
523 free(gitfile);
524 return NULL;
93a00542
JN
525}
526
9951d3b3
NTND
527static const char *setup_discovered_git_dir(const char *gitdir,
528 char *cwd, int offset, int len,
529 int *nongit_ok)
98937bef 530{
9951d3b3
NTND
531 if (check_repository_format_gently(gitdir, nongit_ok))
532 return NULL;
98937bef 533
4868b2ea
JN
534 /* --work-tree is set without --git-dir; use discovered one */
535 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
536 if (offset != len && !is_absolute_path(gitdir))
e2a57aac 537 gitdir = xstrdup(real_path(gitdir));
4868b2ea
JN
538 if (chdir(cwd))
539 die_errno("Could not come back to cwd");
540 return setup_explicit_git_dir(gitdir, cwd, len, nongit_ok);
541 }
542
9951d3b3
NTND
543 /* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */
544 if (is_bare_repository_cfg > 0) {
e2a57aac 545 set_git_dir(offset == len ? gitdir : real_path(gitdir));
9951d3b3
NTND
546 if (chdir(cwd))
547 die_errno("Could not come back to cwd");
98937bef 548 return NULL;
9951d3b3 549 }
98937bef 550
9951d3b3
NTND
551 /* #0, #1, #5, #8, #9, #12, #13 */
552 set_git_work_tree(".");
553 if (strcmp(gitdir, DEFAULT_GIT_DIR_ENVIRONMENT))
554 set_git_dir(gitdir);
98937bef 555 inside_git_dir = 0;
9951d3b3 556 inside_work_tree = 1;
98937bef
NTND
557 if (offset == len)
558 return NULL;
559
560 /* Make "offset" point to past the '/', and add a '/' at the end */
561 offset++;
562 cwd[len++] = '/';
563 cwd[len] = 0;
564 return cwd + offset;
565}
566
1cd8031b
NTND
567/* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */
568static const char *setup_bare_git_dir(char *cwd, int offset, int len, int *nongit_ok)
68698da5
JN
569{
570 int root_len;
571
1cd8031b
NTND
572 if (check_repository_format_gently(".", nongit_ok))
573 return NULL;
574
4868b2ea
JN
575 /* --work-tree is set without --git-dir; use discovered one */
576 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
577 const char *gitdir;
578
579 gitdir = offset == len ? "." : xmemdupz(cwd, offset);
580 if (chdir(cwd))
581 die_errno("Could not come back to cwd");
582 return setup_explicit_git_dir(gitdir, cwd, len, nongit_ok);
583 }
584
68698da5 585 inside_git_dir = 1;
1cd8031b 586 inside_work_tree = 0;
68698da5 587 if (offset != len) {
8fc0ae80
NTND
588 if (chdir(cwd))
589 die_errno("Cannot come back to cwd");
68698da5
JN
590 root_len = offset_1st_component(cwd);
591 cwd[offset > root_len ? offset : root_len] = '\0';
592 set_git_dir(cwd);
337e51ce 593 }
1cd8031b 594 else
68698da5 595 set_git_dir(".");
68698da5
JN
596 return NULL;
597}
598
f161edeb
JN
599static const char *setup_nongit(const char *cwd, int *nongit_ok)
600{
601 if (!nongit_ok)
602 die("Not a git repository (or any of the parent directories): %s", DEFAULT_GIT_DIR_ENVIRONMENT);
603 if (chdir(cwd))
604 die_errno("Cannot come back to cwd");
605 *nongit_ok = 1;
606 return NULL;
607}
608
2565b43b 609static dev_t get_device_or_die(const char *path, const char *prefix, int prefix_len)
60c98d1e
JN
610{
611 struct stat buf;
2565b43b
CB
612 if (stat(path, &buf)) {
613 die_errno("failed to stat '%*s%s%s'",
614 prefix_len,
60c98d1e
JN
615 prefix ? prefix : "",
616 prefix ? "/" : "", path);
2565b43b 617 }
60c98d1e
JN
618 return buf.st_dev;
619}
620
e90fdc39
JS
621/*
622 * We cannot decide in this function whether we are in the work tree or
623 * not, since the config can only be read _after_ this function was called.
624 */
a60645f9 625static const char *setup_git_directory_gently_1(int *nongit_ok)
d288a700 626{
0454dd93 627 const char *env_ceiling_dirs = getenv(CEILING_DIRECTORIES_ENVIRONMENT);
d288a700 628 static char cwd[PATH_MAX+1];
9951d3b3
NTND
629 const char *gitdirenv, *ret;
630 char *gitfile;
2565b43b 631 int len, offset, offset_parent, ceil_offset;
c7d1d1b1
RH
632 dev_t current_device = 0;
633 int one_filesystem = 1;
d288a700 634
af05d679
SG
635 /*
636 * Let's assume that we are in a git repository.
637 * If it turns out later that we are somewhere else, the value will be
638 * updated accordingly.
639 */
640 if (nongit_ok)
641 *nongit_ok = 0;
642
b3f66fd3
NTND
643 if (!getcwd(cwd, sizeof(cwd)-1))
644 die_errno("Unable to read current working directory");
645 offset = len = strlen(cwd);
646
e90fdc39
JS
647 /*
648 * If GIT_DIR is set explicitly, we're not going
649 * to do any discovery, but we still do repository
650 * validation.
651 */
ad1a382f 652 gitdirenv = getenv(GIT_DIR_ENVIRONMENT);
e4e30347 653 if (gitdirenv)
b3f66fd3 654 return setup_explicit_git_dir(gitdirenv, cwd, len, nongit_ok);
d288a700 655
0454dd93 656 ceil_offset = longest_ancestor_length(cwd, env_ceiling_dirs);
17d778e7
JH
657 if (ceil_offset < 0 && has_dos_drive_prefix(cwd))
658 ceil_offset = 1;
d288a700 659
892c41b9 660 /*
e90fdc39 661 * Test in the following order (relative to the cwd):
b44ebb19 662 * - .git (file containing "gitdir: <path>")
e90fdc39
JS
663 * - .git/
664 * - ./ (bare)
b44ebb19 665 * - ../.git
e90fdc39
JS
666 * - ../.git/
667 * - ../ (bare)
668 * - ../../.git/
669 * etc.
892c41b9 670 */
cf87463e 671 one_filesystem = !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM", 0);
60c98d1e 672 if (one_filesystem)
2565b43b 673 current_device = get_device_or_die(".", NULL, 0);
e90fdc39 674 for (;;) {
13d6ec91 675 gitfile = (char*)read_gitfile(DEFAULT_GIT_DIR_ENVIRONMENT);
9951d3b3
NTND
676 if (gitfile)
677 gitdirenv = gitfile = xstrdup(gitfile);
678 else {
679 if (is_git_directory(DEFAULT_GIT_DIR_ENVIRONMENT))
680 gitdirenv = DEFAULT_GIT_DIR_ENVIRONMENT;
681 }
682
683 if (gitdirenv) {
684 ret = setup_discovered_git_dir(gitdirenv,
685 cwd, offset, len,
686 nongit_ok);
687 free(gitfile);
688 return ret;
689 }
690 free(gitfile);
691
68698da5 692 if (is_git_directory("."))
1cd8031b
NTND
693 return setup_bare_git_dir(cwd, offset, len, nongit_ok);
694
2565b43b
CB
695 offset_parent = offset;
696 while (--offset_parent > ceil_offset && cwd[offset_parent] != '/');
697 if (offset_parent <= ceil_offset)
f161edeb 698 return setup_nongit(cwd, nongit_ok);
8030e442 699 if (one_filesystem) {
2565b43b 700 dev_t parent_device = get_device_or_die("..", cwd, offset);
60c98d1e 701 if (parent_device != current_device) {
8030e442
LD
702 if (nongit_ok) {
703 if (chdir(cwd))
704 die_errno("Cannot come back to cwd");
705 *nongit_ok = 1;
706 return NULL;
707 }
708 cwd[offset] = '\0';
2565b43b 709 die("Not a git repository (or any parent up to mount point %s)\n"
cf87463e 710 "Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).", cwd);
8030e442
LD
711 }
712 }
502ffe34
LD
713 if (chdir("..")) {
714 cwd[offset] = '\0';
d824cbba 715 die_errno("Cannot change to '%s/..'", cwd);
502ffe34 716 }
2565b43b 717 offset = offset_parent;
892c41b9 718 }
d288a700 719}
5e7bfe25 720
a60645f9
NTND
721const char *setup_git_directory_gently(int *nongit_ok)
722{
723 const char *prefix;
724
725 prefix = setup_git_directory_gently_1(nongit_ok);
1f5d271f
DA
726 if (prefix)
727 setenv("GIT_PREFIX", prefix, 1);
728 else
729 setenv("GIT_PREFIX", "", 1);
730
f07d6a1a 731 if (startup_info) {
a60645f9 732 startup_info->have_repository = !nongit_ok || !*nongit_ok;
f07d6a1a
NTND
733 startup_info->prefix = prefix;
734 }
a60645f9
NTND
735 return prefix;
736}
737
94df2506
JH
738int git_config_perm(const char *var, const char *value)
739{
06cbe855
HO
740 int i;
741 char *endptr;
742
743 if (value == NULL)
744 return PERM_GROUP;
745
746 if (!strcmp(value, "umask"))
747 return PERM_UMASK;
748 if (!strcmp(value, "group"))
749 return PERM_GROUP;
750 if (!strcmp(value, "all") ||
751 !strcmp(value, "world") ||
752 !strcmp(value, "everybody"))
753 return PERM_EVERYBODY;
754
755 /* Parse octal numbers */
756 i = strtol(value, &endptr, 8);
757
758 /* If not an octal number, maybe true/false? */
759 if (*endptr != 0)
760 return git_config_bool(var, value) ? PERM_GROUP : PERM_UMASK;
761
762 /*
763 * Treat values 0, 1 and 2 as compatibility cases, otherwise it is
5a688fe4 764 * a chmod value to restrict to.
06cbe855
HO
765 */
766 switch (i) {
767 case PERM_UMASK: /* 0 */
768 return PERM_UMASK;
769 case OLD_PERM_GROUP: /* 1 */
770 return PERM_GROUP;
771 case OLD_PERM_EVERYBODY: /* 2 */
772 return PERM_EVERYBODY;
94df2506 773 }
06cbe855
HO
774
775 /* A filemode value was given: 0xxx */
776
777 if ((i & 0600) != 0600)
778 die("Problem with core.sharedRepository filemode value "
779 "(0%.3o).\nThe owner of files must always have "
780 "read and write permissions.", i);
781
782 /*
783 * Mask filemode value. Others can not get write permission.
784 * x flags for directories are handled separately.
785 */
5a688fe4 786 return -(i & 0666);
94df2506
JH
787}
788
ef90d6d4 789int check_repository_format_version(const char *var, const char *value, void *cb)
ab9cb76f 790{
299726d5
JS
791 if (strcmp(var, "core.repositoryformatversion") == 0)
792 repository_format_version = git_config_int(var, value);
457f06d6 793 else if (strcmp(var, "core.sharedrepository") == 0)
94df2506 794 shared_repository = git_config_perm(var, value);
e90fdc39
JS
795 else if (strcmp(var, "core.bare") == 0) {
796 is_bare_repository_cfg = git_config_bool(var, value);
797 if (is_bare_repository_cfg == 1)
798 inside_work_tree = -1;
799 } else if (strcmp(var, "core.worktree") == 0) {
180483c5
JH
800 if (!value)
801 return config_error_nonbool(var);
8e0f7003 802 free(git_work_tree_cfg);
e90fdc39
JS
803 git_work_tree_cfg = xstrdup(value);
804 inside_work_tree = -1;
805 }
299726d5 806 return 0;
ab9cb76f
JH
807}
808
809int check_repository_format(void)
810{
337e51ce 811 return check_repository_format_gently(get_git_dir(), NULL);
ab9cb76f
JH
812}
813
e1e5ec86
CB
814/*
815 * Returns the "prefix", a path to the current working directory
816 * relative to the work tree root, or NULL, if the current working
817 * directory is not a strict subdirectory of the work tree root. The
818 * prefix always ends with a '/' character.
819 */
5e7bfe25
JH
820const char *setup_git_directory(void)
821{
b3f66fd3 822 return setup_git_directory_gently(NULL);
5e7bfe25 823}
abc06822
FG
824
825const char *resolve_gitdir(const char *suspect)
826{
827 if (is_git_directory(suspect))
828 return suspect;
efc5fb6a 829 return read_gitfile(suspect);
abc06822 830}