4 static int inside_git_dir
= -1;
5 static int inside_work_tree
= -1;
7 const char *prefix_path(const char *prefix
, int len
, const char *path
)
9 const char *orig
= path
;
10 char *sanitized
= xmalloc(len
+ strlen(path
) + 1);
11 if (is_absolute_path(orig
))
12 strcpy(sanitized
, path
);
15 memcpy(sanitized
, prefix
, len
);
16 strcpy(sanitized
+ len
, path
);
18 if (normalize_path_copy(sanitized
, sanitized
))
20 if (is_absolute_path(orig
)) {
22 const char *work_tree
= get_git_work_tree();
25 len
= strlen(work_tree
);
26 total
= strlen(sanitized
) + 1;
27 if (strncmp(sanitized
, work_tree
, len
) ||
28 (sanitized
[len
] != '\0' && sanitized
[len
] != '/')) {
30 die("'%s' is outside repository", orig
);
32 if (sanitized
[len
] == '/')
34 memmove(sanitized
, sanitized
+ len
, total
- len
);
40 * Unlike prefix_path, this should be used if the named file does
41 * not have to interact with index entry; i.e. name of a random file
44 const char *prefix_filename(const char *pfx
, int pfx_len
, const char *arg
)
46 static char path
[PATH_MAX
];
48 if (!pfx
|| !*pfx
|| is_absolute_path(arg
))
50 memcpy(path
, pfx
, pfx_len
);
51 strcpy(path
+ pfx_len
, arg
);
54 /* don't add prefix to absolute paths, but still replace '\' by '/' */
55 if (is_absolute_path(arg
))
58 memcpy(path
, pfx
, pfx_len
);
59 strcpy(path
+ pfx_len
, arg
);
60 for (p
= path
+ pfx_len
; *p
; p
++)
67 int check_filename(const char *prefix
, const char *arg
)
72 name
= prefix
? prefix_filename(prefix
, strlen(prefix
), arg
) : arg
;
73 if (!lstat(name
, &st
))
74 return 1; /* file exists */
75 if (errno
== ENOENT
|| errno
== ENOTDIR
)
76 return 0; /* file does not exist */
77 die_errno("failed to stat '%s'", arg
);
80 static void NORETURN
die_verify_filename(const char *prefix
, const char *arg
)
82 unsigned char sha1
[20];
84 /* try a detailed diagnostic ... */
85 get_sha1_with_mode_1(arg
, sha1
, &mode
, 0, prefix
);
86 /* ... or fall back the most general message. */
87 die("ambiguous argument '%s': unknown revision or path not in the working tree.\n"
88 "Use '--' to separate paths from revisions", arg
);
93 * Verify a filename that we got as an argument for a pathspec
94 * entry. Note that a filename that begins with "-" never verifies
95 * as true, because even if such a filename were to exist, we want
96 * it to be preceded by the "--" marker (or we want the user to
97 * use a format like "./-filename")
99 void verify_filename(const char *prefix
, const char *arg
)
102 die("bad flag '%s' used after filename", arg
);
103 if (check_filename(prefix
, arg
))
105 die_verify_filename(prefix
, arg
);
109 * Opposite of the above: the command line did not have -- marker
110 * and we parsed the arg as a refname. It should not be interpretable
113 void verify_non_filename(const char *prefix
, const char *arg
)
115 if (!is_inside_work_tree() || is_inside_git_dir())
119 if (!check_filename(prefix
, arg
))
121 die("ambiguous argument '%s': both revision and filename\n"
122 "Use '--' to separate filenames from revisions", arg
);
125 const char **get_pathspec(const char *prefix
, const char **pathspec
)
127 const char *entry
= *pathspec
;
128 const char **src
, **dst
;
131 if (!prefix
&& !entry
)
135 static const char *spec
[2];
141 /* Otherwise we have to re-write the entries.. */
144 prefixlen
= prefix
? strlen(prefix
) : 0;
146 const char *p
= prefix_path(prefix
, prefixlen
, *src
);
157 * Test if it looks like we're at a git directory.
160 * - either an objects/ directory _or_ the proper
161 * GIT_OBJECT_DIRECTORY environment variable
162 * - a refs/ directory
163 * - either a HEAD symlink or a HEAD file that is formatted as
164 * a proper "ref:", or a regular file HEAD that has a properly
165 * formatted sha1 object name.
167 static int is_git_directory(const char *suspect
)
170 size_t len
= strlen(suspect
);
172 strcpy(path
, suspect
);
173 if (getenv(DB_ENVIRONMENT
)) {
174 if (access(getenv(DB_ENVIRONMENT
), X_OK
))
178 strcpy(path
+ len
, "/objects");
179 if (access(path
, X_OK
))
183 strcpy(path
+ len
, "/refs");
184 if (access(path
, X_OK
))
187 strcpy(path
+ len
, "/HEAD");
188 if (validate_headref(path
))
194 int is_inside_git_dir(void)
196 if (inside_git_dir
< 0)
197 inside_git_dir
= is_inside_dir(get_git_dir());
198 return inside_git_dir
;
201 int is_inside_work_tree(void)
203 if (inside_work_tree
< 0)
204 inside_work_tree
= is_inside_dir(get_git_work_tree());
205 return inside_work_tree
;
209 * set_work_tree() is only ever called if you set GIT_DIR explicitly.
210 * The old behaviour (which we retain here) is to set the work tree root
211 * to the cwd, unless overridden by the config, the command line, or
214 static const char *set_work_tree(const char *dir
)
216 char buffer
[PATH_MAX
+ 1];
218 if (!getcwd(buffer
, sizeof(buffer
)))
219 die ("Could not get the current working directory");
220 git_work_tree_cfg
= xstrdup(buffer
);
221 inside_work_tree
= 1;
226 void setup_work_tree(void)
228 const char *work_tree
, *git_dir
;
229 static int initialized
= 0;
233 work_tree
= get_git_work_tree();
234 git_dir
= get_git_dir();
235 if (!is_absolute_path(git_dir
))
236 git_dir
= make_absolute_path(git_dir
);
237 if (!work_tree
|| chdir(work_tree
))
238 die("This operation must be run in a work tree");
239 set_git_dir(make_relative_path(git_dir
, work_tree
));
243 static int check_repository_format_gently(int *nongit_ok
)
245 git_config(check_repository_format_version
, NULL
);
246 if (GIT_REPO_VERSION
< repository_format_version
) {
248 die ("Expected git repo version <= %d, found %d",
249 GIT_REPO_VERSION
, repository_format_version
);
250 warning("Expected git repo version <= %d, found %d",
251 GIT_REPO_VERSION
, repository_format_version
);
252 warning("Please upgrade Git");
260 * Try to read the location of the git directory from the .git file,
261 * return path to git directory if found.
263 const char *read_gitfile_gently(const char *path
)
274 if (!S_ISREG(st
.st_mode
))
276 fd
= open(path
, O_RDONLY
);
278 die_errno("Error opening '%s'", path
);
279 buf
= xmalloc(st
.st_size
+ 1);
280 len
= read_in_full(fd
, buf
, st
.st_size
);
282 if (len
!= st
.st_size
)
283 die("Error reading %s", path
);
285 if (prefixcmp(buf
, "gitdir: "))
286 die("Invalid gitfile format: %s", path
);
287 while (buf
[len
- 1] == '\n' || buf
[len
- 1] == '\r')
290 die("No path in gitfile: %s", path
);
294 if (!is_absolute_path(dir
) && (slash
= strrchr(path
, '/'))) {
295 size_t pathlen
= slash
+1 - path
;
296 size_t dirlen
= pathlen
+ len
- 8;
297 dir
= xmalloc(dirlen
+ 1);
298 strncpy(dir
, path
, pathlen
);
299 strncpy(dir
+ pathlen
, buf
+ 8, len
- 8);
305 if (!is_git_directory(dir
))
306 die("Not a git repository: %s", dir
);
307 path
= make_absolute_path(dir
);
314 * We cannot decide in this function whether we are in the work tree or
315 * not, since the config can only be read _after_ this function was called.
317 const char *setup_git_directory_gently(int *nongit_ok
)
319 const char *work_tree_env
= getenv(GIT_WORK_TREE_ENVIRONMENT
);
320 const char *env_ceiling_dirs
= getenv(CEILING_DIRECTORIES_ENVIRONMENT
);
321 static char cwd
[PATH_MAX
+1];
322 const char *gitdirenv
;
323 const char *gitfile_dir
;
324 int len
, offset
, ceil_offset
;
327 * Let's assume that we are in a git repository.
328 * If it turns out later that we are somewhere else, the value will be
329 * updated accordingly.
335 * If GIT_DIR is set explicitly, we're not going
336 * to do any discovery, but we still do repository
339 gitdirenv
= getenv(GIT_DIR_ENVIRONMENT
);
341 if (PATH_MAX
- 40 < strlen(gitdirenv
))
342 die("'$%s' too big", GIT_DIR_ENVIRONMENT
);
343 if (is_git_directory(gitdirenv
)) {
344 static char buffer
[1024 + 1];
347 if (!work_tree_env
) {
348 retval
= set_work_tree(gitdirenv
);
349 /* config may override worktree */
350 if (check_repository_format_gently(nongit_ok
))
354 if (check_repository_format_gently(nongit_ok
))
356 retval
= get_relative_cwd(buffer
, sizeof(buffer
) - 1,
357 get_git_work_tree());
358 if (!retval
|| !*retval
)
360 set_git_dir(make_absolute_path(gitdirenv
));
361 if (chdir(work_tree_env
) < 0)
362 die_errno ("Could not chdir to '%s'", work_tree_env
);
370 die("Not a git repository: '%s'", gitdirenv
);
373 if (!getcwd(cwd
, sizeof(cwd
)-1))
374 die_errno("Unable to read current working directory");
376 ceil_offset
= longest_ancestor_length(cwd
, env_ceiling_dirs
);
377 if (ceil_offset
< 0 && has_dos_drive_prefix(cwd
))
381 * Test in the following order (relative to the cwd):
382 * - .git (file containing "gitdir: <path>")
391 offset
= len
= strlen(cwd
);
393 gitfile_dir
= read_gitfile_gently(DEFAULT_GIT_DIR_ENVIRONMENT
);
395 if (set_git_dir(gitfile_dir
))
396 die("Repository setup failed");
399 if (is_git_directory(DEFAULT_GIT_DIR_ENVIRONMENT
))
401 if (is_git_directory(".")) {
404 inside_work_tree
= 0;
407 setenv(GIT_DIR_ENVIRONMENT
, cwd
, 1);
409 setenv(GIT_DIR_ENVIRONMENT
, ".", 1);
410 check_repository_format_gently(nongit_ok
);
413 while (--offset
> ceil_offset
&& cwd
[offset
] != '/');
414 if (offset
<= ceil_offset
) {
417 die_errno("Cannot come back to cwd");
421 die("Not a git repository (or any of the parent directories): %s", DEFAULT_GIT_DIR_ENVIRONMENT
);
424 die_errno("Cannot change to '%s/..'", cwd
);
429 inside_work_tree
= 1;
430 git_work_tree_cfg
= xstrndup(cwd
, offset
);
431 if (check_repository_format_gently(nongit_ok
))
436 /* Make "offset" point to past the '/', and add a '/' at the end */
443 int git_config_perm(const char *var
, const char *value
)
451 if (!strcmp(value
, "umask"))
453 if (!strcmp(value
, "group"))
455 if (!strcmp(value
, "all") ||
456 !strcmp(value
, "world") ||
457 !strcmp(value
, "everybody"))
458 return PERM_EVERYBODY
;
460 /* Parse octal numbers */
461 i
= strtol(value
, &endptr
, 8);
463 /* If not an octal number, maybe true/false? */
465 return git_config_bool(var
, value
) ? PERM_GROUP
: PERM_UMASK
;
468 * Treat values 0, 1 and 2 as compatibility cases, otherwise it is
469 * a chmod value to restrict to.
472 case PERM_UMASK
: /* 0 */
474 case OLD_PERM_GROUP
: /* 1 */
476 case OLD_PERM_EVERYBODY
: /* 2 */
477 return PERM_EVERYBODY
;
480 /* A filemode value was given: 0xxx */
482 if ((i
& 0600) != 0600)
483 die("Problem with core.sharedRepository filemode value "
484 "(0%.3o).\nThe owner of files must always have "
485 "read and write permissions.", i
);
488 * Mask filemode value. Others can not get write permission.
489 * x flags for directories are handled separately.
494 int check_repository_format_version(const char *var
, const char *value
, void *cb
)
496 if (strcmp(var
, "core.repositoryformatversion") == 0)
497 repository_format_version
= git_config_int(var
, value
);
498 else if (strcmp(var
, "core.sharedrepository") == 0)
499 shared_repository
= git_config_perm(var
, value
);
500 else if (strcmp(var
, "core.bare") == 0) {
501 is_bare_repository_cfg
= git_config_bool(var
, value
);
502 if (is_bare_repository_cfg
== 1)
503 inside_work_tree
= -1;
504 } else if (strcmp(var
, "core.worktree") == 0) {
506 return config_error_nonbool(var
);
507 free(git_work_tree_cfg
);
508 git_work_tree_cfg
= xstrdup(value
);
509 inside_work_tree
= -1;
514 int check_repository_format(void)
516 return check_repository_format_gently(NULL
);
519 const char *setup_git_directory(void)
521 const char *retval
= setup_git_directory_gently(NULL
);
523 /* If the work tree is not the default one, recompute prefix */
524 if (inside_work_tree
< 0) {
525 static char buffer
[PATH_MAX
+ 1];
527 if (retval
&& chdir(retval
))
528 die_errno ("Could not jump back into original cwd");
529 rel
= get_relative_cwd(buffer
, PATH_MAX
, get_git_work_tree());
530 if (rel
&& *rel
&& chdir(get_git_work_tree()))
531 die_errno ("Could not jump to working directory");
532 return rel
&& *rel
? strcat(rel
, "/") : NULL
;