blob: 1be5037f129646cd46d3dc048e8f58dc3bdac0b9 [file] [log] [blame]
Linus Torvaldsd288a702005-08-16 18:06:34 -07001#include "cache.h"
Brandon Williamsc14c2342017-06-22 11:43:33 -07002#include "repository.h"
Brandon Williamsb2141fc2017-06-14 11:07:36 -07003#include "config.h"
Johannes Schindeline90fdc32007-08-01 01:30:14 +01004#include "dir.h"
Michael Haggerty31171d92012-10-28 17:16:24 +01005#include "string-list.h"
Jeff King8500e0d2018-03-30 14:35:08 -04006#include "chdir-notify.h"
Johannes Schindeline90fdc32007-08-01 01:30:14 +01007
8static int inside_git_dir = -1;
9static int inside_work_tree = -1;
Jeff Kingfada7672015-05-29 02:49:10 -040010static int work_tree_config_is_bogus;
Linus Torvaldsd288a702005-08-16 18:06:34 -070011
Jeff King46c3cd42016-03-05 17:10:27 -050012static struct startup_info the_startup_info;
13struct startup_info *startup_info = &the_startup_info;
14
Nguyễn Thái Ngọc Duy645a29c2013-07-14 15:36:03 +070015/*
Martin Erik Wernerddc2a622014-02-04 15:25:19 +010016 * The input parameter must contain an absolute path, and it must already be
17 * normalized.
18 *
19 * Find the part of an absolute path that lies inside the work tree by
20 * dereferencing symlinks outside the work tree, for example:
21 * /dir1/repo/dir2/file (work tree is /dir1/repo) -> dir2/file
22 * /dir/file (work tree is /) -> dir/file
23 * /dir/symlink1/symlink2 (symlink1 points to work tree) -> symlink2
24 * /dir/repolink/file (repolink points to /dir/repo) -> file
25 * /dir/repo (exactly equal to work tree) -> (empty string)
26 */
27static int abspath_part_inside_repo(char *path)
28{
29 size_t len;
30 size_t wtlen;
31 char *path0;
32 int off;
33 const char *work_tree = get_git_work_tree();
34
35 if (!work_tree)
36 return -1;
37 wtlen = strlen(work_tree);
38 len = strlen(path);
Martin Erik Werner6127ff62014-04-24 15:06:09 +020039 off = offset_1st_component(path);
Martin Erik Wernerddc2a622014-02-04 15:25:19 +010040
41 /* check if work tree is already the prefix */
42 if (wtlen <= len && !strncmp(path, work_tree, wtlen)) {
43 if (path[wtlen] == '/') {
44 memmove(path, path + wtlen + 1, len - wtlen);
45 return 0;
46 } else if (path[wtlen - 1] == '/' || path[wtlen] == '\0') {
47 /* work tree is the root, or the whole path */
48 memmove(path, path + wtlen, len - wtlen + 1);
49 return 0;
50 }
51 /* work tree might match beginning of a symlink to work tree */
52 off = wtlen;
53 }
54 path0 = path;
Martin Erik Werner6127ff62014-04-24 15:06:09 +020055 path += off;
Martin Erik Wernerddc2a622014-02-04 15:25:19 +010056
57 /* check each '/'-terminated level */
58 while (*path) {
59 path++;
60 if (*path == '/') {
61 *path = '\0';
62 if (strcmp(real_path(path0), work_tree) == 0) {
63 memmove(path0, path + 1, len - (path - path0));
64 return 0;
65 }
66 *path = '/';
67 }
68 }
69
70 /* check whole path */
71 if (strcmp(real_path(path0), work_tree) == 0) {
72 *path0 = '\0';
73 return 0;
74 }
75
76 return -1;
77}
78
79/*
Nguyễn Thái Ngọc Duy645a29c2013-07-14 15:36:03 +070080 * Normalize "path", prepending the "prefix" for relative paths. If
81 * remaining_prefix is not NULL, return the actual prefix still
82 * remains in the path. For example, prefix = sub1/sub2/ and path is
83 *
84 * foo -> sub1/sub2/foo (full prefix)
85 * ../foo -> sub1/foo (remaining prefix is sub1/)
86 * ../../bar -> bar (no remaining prefix)
87 * ../../sub1/sub2/foo -> sub1/sub2/foo (but no remaining prefix)
88 * `pwd`/../bar -> sub1/bar (no remaining prefix)
89 */
90char *prefix_path_gently(const char *prefix, int len,
91 int *remaining_prefix, const char *path)
Linus Torvaldsf3327262005-08-16 20:44:32 -070092{
Junio C Hamano6b5ee132005-09-21 00:00:47 -070093 const char *orig = path;
Carlo Marcelo Arenas Belon18e051a2010-12-27 02:54:37 -080094 char *sanitized;
95 if (is_absolute_path(orig)) {
Jeff King3733e692016-02-22 17:44:28 -050096 sanitized = xmallocz(strlen(path));
Nguyễn Thái Ngọc Duy645a29c2013-07-14 15:36:03 +070097 if (remaining_prefix)
98 *remaining_prefix = 0;
Martin Erik Werner655ee9e2014-02-04 15:25:20 +010099 if (normalize_path_copy_len(sanitized, path, remaining_prefix)) {
100 free(sanitized);
101 return NULL;
102 }
103 if (abspath_part_inside_repo(sanitized)) {
104 free(sanitized);
105 return NULL;
106 }
Carlo Marcelo Arenas Belon18e051a2010-12-27 02:54:37 -0800107 } else {
Junio C Hamano24041d62016-04-07 12:38:18 -0700108 sanitized = xstrfmt("%.*s%s", len, len ? prefix : "", path);
Nguyễn Thái Ngọc Duy645a29c2013-07-14 15:36:03 +0700109 if (remaining_prefix)
110 *remaining_prefix = len;
Martin Erik Werner655ee9e2014-02-04 15:25:20 +0100111 if (normalize_path_copy_len(sanitized, sanitized, remaining_prefix)) {
Jeff King546e0fd2012-06-21 14:09:50 -0400112 free(sanitized);
113 return NULL;
Junio C Hamanod089eba2008-01-28 22:44:27 -0800114 }
Linus Torvaldsf3327262005-08-16 20:44:32 -0700115 }
Junio C Hamanod089eba2008-01-28 22:44:27 -0800116 return sanitized;
Linus Torvaldsf3327262005-08-16 20:44:32 -0700117}
118
Jeff King546e0fd2012-06-21 14:09:50 -0400119char *prefix_path(const char *prefix, int len, const char *path)
120{
Nguyễn Thái Ngọc Duy645a29c2013-07-14 15:36:03 +0700121 char *r = prefix_path_gently(prefix, len, NULL, path);
Jeff King546e0fd2012-06-21 14:09:50 -0400122 if (!r)
Alexander Shopovfc045fe2018-02-13 14:19:15 +0100123 die(_("'%s' is outside repository"), path);
Jeff King546e0fd2012-06-21 14:09:50 -0400124 return r;
125}
126
127int path_inside_repo(const char *prefix, const char *path)
128{
129 int len = prefix ? strlen(prefix) : 0;
Nguyễn Thái Ngọc Duy645a29c2013-07-14 15:36:03 +0700130 char *r = prefix_path_gently(prefix, len, NULL, path);
Jeff King546e0fd2012-06-21 14:09:50 -0400131 if (r) {
132 free(r);
133 return 1;
134 }
135 return 0;
136}
137
Junio C Hamanoc6e8c802009-10-18 00:27:24 -0700138int check_filename(const char *prefix, const char *arg)
139{
Jeff Kinge4da43b2017-03-20 21:28:49 -0400140 char *to_free = NULL;
Junio C Hamanoc6e8c802009-10-18 00:27:24 -0700141 struct stat st;
142
Jeff Kingd51c6ee2017-05-26 15:07:42 -0400143 if (skip_prefix(arg, ":/", &arg)) {
144 if (!*arg) /* ":/" is root dir, always exists */
Nguyễn Thái Ngọc Duy4db86e82013-01-21 20:00:48 +0700145 return 1;
Jeff Kinga08cbcd2017-05-26 15:07:31 -0400146 prefix = NULL;
Jeff King42471bc2017-05-26 15:08:39 -0400147 } else if (skip_prefix(arg, ":!", &arg) ||
148 skip_prefix(arg, ":^", &arg)) {
149 if (!*arg) /* excluding everything is silly, but allowed */
150 return 1;
Jeff Kinga08cbcd2017-05-26 15:07:31 -0400151 }
152
153 if (prefix)
154 arg = to_free = prefix_filename(prefix, arg);
155
156 if (!lstat(arg, &st)) {
Jeff Kinge4da43b2017-03-20 21:28:49 -0400157 free(to_free);
Junio C Hamanoc6e8c802009-10-18 00:27:24 -0700158 return 1; /* file exists */
Jeff Kinge4da43b2017-03-20 21:28:49 -0400159 }
Junio C Hamano93dd5442017-06-13 13:47:06 -0700160 if (is_missing_file_error(errno)) {
Jeff Kinge4da43b2017-03-20 21:28:49 -0400161 free(to_free);
Junio C Hamanoc6e8c802009-10-18 00:27:24 -0700162 return 0; /* file does not exist */
Jeff Kinge4da43b2017-03-20 21:28:49 -0400163 }
Alexander Shopovfc045fe2018-02-13 14:19:15 +0100164 die_errno(_("failed to stat '%s'"), arg);
Junio C Hamanoc6e8c802009-10-18 00:27:24 -0700165}
166
Matthieu Moy023e37c2012-06-18 20:18:21 +0200167static void NORETURN die_verify_filename(const char *prefix,
168 const char *arg,
169 int diagnose_misspelt_rev)
Matthieu Moy009fee42009-12-07 11:10:50 +0100170{
Matthieu Moy023e37c2012-06-18 20:18:21 +0200171 if (!diagnose_misspelt_rev)
Vasco Almeidaab33a762016-06-17 20:21:06 +0000172 die(_("%s: no such path in the working tree.\n"
173 "Use 'git <command> -- <path>...' to specify paths that do not exist locally."),
Matthieu Moy023e37c2012-06-18 20:18:21 +0200174 arg);
Junio C Hamano0e539dc2011-05-10 12:05:01 -0700175 /*
176 * Saying "'(icase)foo' does not exist in the index" when the
177 * user gave us ":(icase)foo" is just stupid. A magic pathspec
178 * begins with a colon and is followed by a non-alnum; do not
Junio C Hamano8c135ea2012-07-02 11:01:25 -0700179 * let maybe_die_on_misspelt_object_name() even trigger.
Junio C Hamano0e539dc2011-05-10 12:05:01 -0700180 */
181 if (!(arg[0] == ':' && !isalnum(arg[1])))
Junio C Hamano8c135ea2012-07-02 11:01:25 -0700182 maybe_die_on_misspelt_object_name(arg, prefix);
Junio C Hamano0e539dc2011-05-10 12:05:01 -0700183
Matthieu Moy009fee42009-12-07 11:10:50 +0100184 /* ... or fall back the most general message. */
Vasco Almeidaab33a762016-06-17 20:21:06 +0000185 die(_("ambiguous argument '%s': unknown revision or path not in the working tree.\n"
186 "Use '--' to separate paths from revisions, like this:\n"
187 "'git <command> [<revision>...] -- [<file>...]'"), arg);
Matthieu Moy009fee42009-12-07 11:10:50 +0100188
189}
190
Linus Torvaldse23d0b42006-04-26 10:15:54 -0700191/*
Jeff Kingc99eddd2017-05-26 15:10:31 -0400192 * Check for arguments that don't resolve as actual files,
193 * but which look sufficiently like pathspecs that we'll consider
194 * them such for the purposes of rev/pathspec DWIM parsing.
195 */
196static int looks_like_pathspec(const char *arg)
197{
198 /* anything with a wildcard character */
199 if (!no_wildcard(arg))
200 return 1;
201
202 /* long-form pathspec magic */
203 if (starts_with(arg, ":("))
204 return 1;
205
206 return 0;
207}
208
209/*
Linus Torvaldse23d0b42006-04-26 10:15:54 -0700210 * Verify a filename that we got as an argument for a pathspec
211 * entry. Note that a filename that begins with "-" never verifies
212 * as true, because even if such a filename were to exist, we want
213 * it to be preceded by the "--" marker (or we want the user to
214 * use a format like "./-filename")
Matthieu Moy023e37c2012-06-18 20:18:21 +0200215 *
216 * The "diagnose_misspelt_rev" is used to provide a user-friendly
217 * diagnosis when dying upon finding that "name" is not a pathname.
218 * If set to 1, the diagnosis will try to diagnose "name" as an
219 * invalid object name (e.g. HEAD:foo). If set to 0, the diagnosis
220 * will only complain about an inexisting file.
221 *
222 * This function is typically called to check that a "file or rev"
223 * argument is unambiguous. In this case, the caller will want
224 * diagnose_misspelt_rev == 1 when verifying the first non-rev
225 * argument (which could have been a revision), and
226 * diagnose_misspelt_rev == 0 for the next ones (because we already
227 * saw a filename, there's not ambiguity anymore).
Linus Torvaldse23d0b42006-04-26 10:15:54 -0700228 */
Matthieu Moy023e37c2012-06-18 20:18:21 +0200229void verify_filename(const char *prefix,
230 const char *arg,
231 int diagnose_misspelt_rev)
Linus Torvaldse23d0b42006-04-26 10:15:54 -0700232{
Linus Torvaldse23d0b42006-04-26 10:15:54 -0700233 if (*arg == '-')
Alexander Shopovfc045fe2018-02-13 14:19:15 +0100234 die(_("option '%s' must come before non-option arguments"), arg);
Jeff King2cb47ab2017-05-26 15:10:53 -0400235 if (looks_like_pathspec(arg) || check_filename(prefix, arg))
Linus Torvaldse23d0b42006-04-26 10:15:54 -0700236 return;
Matthieu Moy023e37c2012-06-18 20:18:21 +0200237 die_verify_filename(prefix, arg, diagnose_misspelt_rev);
Linus Torvaldse23d0b42006-04-26 10:15:54 -0700238}
239
Junio C Hamanoea92f412006-04-26 15:09:27 -0700240/*
241 * Opposite of the above: the command line did not have -- marker
242 * and we parsed the arg as a refname. It should not be interpretable
243 * as a filename.
244 */
245void verify_non_filename(const char *prefix, const char *arg)
246{
Matthias Lederhofer7ae3df82007-06-03 16:48:16 +0200247 if (!is_inside_work_tree() || is_inside_git_dir())
Johannes Schindelin68025632007-01-20 03:09:34 +0100248 return;
Junio C Hamanoea92f412006-04-26 15:09:27 -0700249 if (*arg == '-')
250 return; /* flag */
Junio C Hamanoc6e8c802009-10-18 00:27:24 -0700251 if (!check_filename(prefix, arg))
252 return;
Vasco Almeidaab33a762016-06-17 20:21:06 +0000253 die(_("ambiguous argument '%s': both revision and filename\n"
254 "Use '--' to separate paths from revisions, like this:\n"
255 "'git <command> [<revision>...] -- [<file>...]'"), arg);
Junio C Hamanoea92f412006-04-26 15:09:27 -0700256}
257
Nguyễn Thái Ngọc Duy31e26eb2014-11-30 15:24:44 +0700258int get_common_dir(struct strbuf *sb, const char *gitdir)
Nguyễn Thái Ngọc Duy4dc4e142014-11-30 15:24:41 +0700259{
Max Kirillov11f9dd72015-09-14 01:17:42 +0300260 const char *git_env_common_dir = getenv(GIT_COMMON_DIR_ENVIRONMENT);
261 if (git_env_common_dir) {
262 strbuf_addstr(sb, git_env_common_dir);
263 return 1;
264 } else {
265 return get_common_dir_noenv(sb, gitdir);
266 }
267}
268
269int get_common_dir_noenv(struct strbuf *sb, const char *gitdir)
270{
Nguyễn Thái Ngọc Duy4dc4e142014-11-30 15:24:41 +0700271 struct strbuf data = STRBUF_INIT;
272 struct strbuf path = STRBUF_INIT;
Nguyễn Thái Ngọc Duy31e26eb2014-11-30 15:24:44 +0700273 int ret = 0;
Max Kirillov11f9dd72015-09-14 01:17:42 +0300274
Nguyễn Thái Ngọc Duy4dc4e142014-11-30 15:24:41 +0700275 strbuf_addf(&path, "%s/commondir", gitdir);
276 if (file_exists(path.buf)) {
277 if (strbuf_read_file(&data, path.buf, 0) <= 0)
278 die_errno(_("failed to read %s"), path.buf);
279 while (data.len && (data.buf[data.len - 1] == '\n' ||
280 data.buf[data.len - 1] == '\r'))
281 data.len--;
282 data.buf[data.len] = '\0';
283 strbuf_reset(&path);
284 if (!is_absolute_path(data.buf))
285 strbuf_addf(&path, "%s/", gitdir);
286 strbuf_addbuf(&path, &data);
René Scharfe33ad9dd2017-02-25 17:00:33 +0100287 strbuf_add_real_path(sb, path.buf);
Nguyễn Thái Ngọc Duy31e26eb2014-11-30 15:24:44 +0700288 ret = 1;
Brandon Williams4ac90062016-12-12 10:16:55 -0800289 } else {
Nguyễn Thái Ngọc Duy4dc4e142014-11-30 15:24:41 +0700290 strbuf_addstr(sb, gitdir);
Brandon Williams4ac90062016-12-12 10:16:55 -0800291 }
292
Nguyễn Thái Ngọc Duy4dc4e142014-11-30 15:24:41 +0700293 strbuf_release(&data);
294 strbuf_release(&path);
Nguyễn Thái Ngọc Duy31e26eb2014-11-30 15:24:44 +0700295 return ret;
Nguyễn Thái Ngọc Duy4dc4e142014-11-30 15:24:41 +0700296}
Linus Torvaldsd288a702005-08-16 18:06:34 -0700297
Linus Torvalds5f5608b2005-08-27 13:54:42 -0700298/*
Shawn O. Pearcead1a3822006-12-30 23:30:19 -0500299 * Test if it looks like we're at a git directory.
Junio C Hamano5e7bfe22005-11-25 15:43:41 -0800300 * We want to see:
Linus Torvalds5f5608b2005-08-27 13:54:42 -0700301 *
Jim Meyering790296f2008-01-03 15:18:07 +0100302 * - either an objects/ directory _or_ the proper
Linus Torvalds5f5608b2005-08-27 13:54:42 -0700303 * GIT_OBJECT_DIRECTORY environment variable
Shawn O. Pearcead1a3822006-12-30 23:30:19 -0500304 * - a refs/ directory
Junio C Hamano8098a172005-09-30 14:26:57 -0700305 * - either a HEAD symlink or a HEAD file that is formatted as
Junio C Hamanoc847f532007-01-01 23:31:08 -0800306 * a proper "ref:", or a regular file HEAD that has a properly
307 * formatted sha1 object name.
Linus Torvalds5f5608b2005-08-27 13:54:42 -0700308 */
Jeff Kingb3256eb2012-02-02 16:59:13 -0500309int is_git_directory(const char *suspect)
Linus Torvalds5f5608b2005-08-27 13:54:42 -0700310{
Nguyễn Thái Ngọc Duy1d186b62014-11-30 15:24:40 +0700311 struct strbuf path = STRBUF_INIT;
312 int ret = 0;
313 size_t len;
Shawn O. Pearcead1a3822006-12-30 23:30:19 -0500314
Nguyễn Thái Ngọc Duy4dc4e142014-11-30 15:24:41 +0700315 /* Check worktree-related signatures */
Jeff Kingfa4d8c72017-11-03 13:58:02 +0100316 strbuf_addstr(&path, suspect);
317 strbuf_complete(&path, '/');
318 strbuf_addstr(&path, "HEAD");
Nguyễn Thái Ngọc Duy4dc4e142014-11-30 15:24:41 +0700319 if (validate_headref(path.buf))
320 goto done;
321
322 strbuf_reset(&path);
323 get_common_dir(&path, suspect);
Nguyễn Thái Ngọc Duy1d186b62014-11-30 15:24:40 +0700324 len = path.len;
Nguyễn Thái Ngọc Duy4dc4e142014-11-30 15:24:41 +0700325
326 /* Check non-worktree-related signatures */
Shawn O. Pearcead1a3822006-12-30 23:30:19 -0500327 if (getenv(DB_ENVIRONMENT)) {
328 if (access(getenv(DB_ENVIRONMENT), X_OK))
Nguyễn Thái Ngọc Duy1d186b62014-11-30 15:24:40 +0700329 goto done;
Shawn O. Pearcead1a3822006-12-30 23:30:19 -0500330 }
331 else {
Nguyễn Thái Ngọc Duy4dc4e142014-11-30 15:24:41 +0700332 strbuf_setlen(&path, len);
Nguyễn Thái Ngọc Duy1d186b62014-11-30 15:24:40 +0700333 strbuf_addstr(&path, "/objects");
334 if (access(path.buf, X_OK))
335 goto done;
Shawn O. Pearcead1a3822006-12-30 23:30:19 -0500336 }
337
Nguyễn Thái Ngọc Duy1d186b62014-11-30 15:24:40 +0700338 strbuf_setlen(&path, len);
339 strbuf_addstr(&path, "/refs");
340 if (access(path.buf, X_OK))
341 goto done;
Shawn O. Pearcead1a3822006-12-30 23:30:19 -0500342
Nguyễn Thái Ngọc Duy1d186b62014-11-30 15:24:40 +0700343 ret = 1;
344done:
345 strbuf_release(&path);
346 return ret;
Linus Torvalds5f5608b2005-08-27 13:54:42 -0700347}
348
Jeff Kingffd036b2016-01-22 17:27:33 -0500349int is_nonbare_repository_dir(struct strbuf *path)
350{
351 int ret = 0;
352 int gitfile_error;
353 size_t orig_path_len = path->len;
354 assert(orig_path_len != 0);
355 strbuf_complete(path, '/');
356 strbuf_addstr(path, ".git");
357 if (read_gitfile_gently(path->buf, &gitfile_error) || is_git_directory(path->buf))
358 ret = 1;
359 if (gitfile_error == READ_GITFILE_ERR_OPEN_FAILED ||
360 gitfile_error == READ_GITFILE_ERR_READ_FAILED)
361 ret = 1;
362 strbuf_setlen(path, orig_path_len);
363 return ret;
364}
365
Johannes Schindelin68025632007-01-20 03:09:34 +0100366int is_inside_git_dir(void)
367{
Johannes Schindeline90fdc32007-08-01 01:30:14 +0100368 if (inside_git_dir < 0)
369 inside_git_dir = is_inside_dir(get_git_dir());
370 return inside_git_dir;
Matthias Lederhofer892c41b2007-06-06 09:10:42 +0200371}
Johannes Schindelin68025632007-01-20 03:09:34 +0100372
Matthias Lederhofer892c41b2007-06-06 09:10:42 +0200373int is_inside_work_tree(void)
374{
Johannes Schindeline90fdc32007-08-01 01:30:14 +0100375 if (inside_work_tree < 0)
376 inside_work_tree = is_inside_dir(get_git_work_tree());
377 return inside_work_tree;
Matthias Lederhofer892c41b2007-06-06 09:10:42 +0200378}
379
Junio C Hamanof3fa1832007-11-08 15:35:32 -0800380void setup_work_tree(void)
381{
Jeff King8500e0d2018-03-30 14:35:08 -0400382 const char *work_tree;
Johannes Schindelin354e6532007-11-09 11:34:07 +0000383 static int initialized = 0;
384
385 if (initialized)
386 return;
Jeff Kingfada7672015-05-29 02:49:10 -0400387
388 if (work_tree_config_is_bogus)
Alexander Shopovfc045fe2018-02-13 14:19:15 +0100389 die(_("unable to set up work tree using invalid config"));
Jeff Kingfada7672015-05-29 02:49:10 -0400390
Johannes Schindelin354e6532007-11-09 11:34:07 +0000391 work_tree = get_git_work_tree();
Jeff King8500e0d2018-03-30 14:35:08 -0400392 if (!work_tree || chdir_notify(work_tree))
Alexander Shopovfc045fe2018-02-13 14:19:15 +0100393 die(_("this operation must be run in a work tree"));
Nguyễn Thái Ngọc Duy0ed74812010-12-27 08:26:04 +0700394
395 /*
396 * Make sure subsequent git processes find correct worktree
397 * if $GIT_WORK_TREE is set relative
398 */
399 if (getenv(GIT_WORK_TREE_ENVIRONMENT))
400 setenv(GIT_WORK_TREE_ENVIRONMENT, ".", 1);
401
Johannes Schindelin354e6532007-11-09 11:34:07 +0000402 initialized = 1;
Mike Hommey59f0f2f2007-11-03 12:23:11 +0100403}
404
Nguyễn Thái Ngọc Duy58b284a2018-10-21 16:02:28 +0200405static int read_worktree_config(const char *var, const char *value, void *vdata)
406{
407 struct repository_format *data = vdata;
408
409 if (strcmp(var, "core.bare") == 0) {
410 data->is_bare = git_config_bool(var, value);
411 } else if (strcmp(var, "core.worktree") == 0) {
412 if (!value)
413 return config_error_nonbool(var);
414 data->work_tree = xstrdup(value);
415 }
416 return 0;
417}
418
Jeff King2cc7c2c2016-03-11 17:37:07 -0500419static int check_repo_format(const char *var, const char *value, void *vdata)
Nguyễn Thái Ngọc Duy31e26eb2014-11-30 15:24:44 +0700420{
Jeff King2cc7c2c2016-03-11 17:37:07 -0500421 struct repository_format *data = vdata;
Jeff King00a09d52015-06-23 06:53:58 -0400422 const char *ext;
423
Nguyễn Thái Ngọc Duy31e26eb2014-11-30 15:24:44 +0700424 if (strcmp(var, "core.repositoryformatversion") == 0)
Jeff King2cc7c2c2016-03-11 17:37:07 -0500425 data->version = git_config_int(var, value);
Jeff King00a09d52015-06-23 06:53:58 -0400426 else if (skip_prefix(var, "extensions.", &ext)) {
427 /*
428 * record any known extensions here; otherwise,
429 * we fall through to recording it as unknown, and
430 * check_repository_format will complain
431 */
432 if (!strcmp(ext, "noop"))
433 ;
Jeff King067fbd42015-06-23 06:54:11 -0400434 else if (!strcmp(ext, "preciousobjects"))
Jeff King2cc7c2c2016-03-11 17:37:07 -0500435 data->precious_objects = git_config_bool(var, value);
Jonathan Tan75b97fe2017-12-05 16:58:43 +0000436 else if (!strcmp(ext, "partialclone")) {
437 if (!value)
438 return config_error_nonbool(var);
439 data->partial_clone = xstrdup(value);
Nguyễn Thái Ngọc Duy58b284a2018-10-21 16:02:28 +0200440 } else if (!strcmp(ext, "worktreeconfig"))
441 data->worktree_config = git_config_bool(var, value);
442 else
Jeff King2cc7c2c2016-03-11 17:37:07 -0500443 string_list_append(&data->unknown_extensions, ext);
Jeff King00a09d52015-06-23 06:53:58 -0400444 }
Nguyễn Thái Ngọc Duy58b284a2018-10-21 16:02:28 +0200445
446 return read_worktree_config(var, value, vdata);
Nguyễn Thái Ngọc Duy31e26eb2014-11-30 15:24:44 +0700447}
448
brian m. carlsonabade652017-11-12 21:28:51 +0000449static int check_repository_format_gently(const char *gitdir, struct repository_format *candidate, int *nongit_ok)
Nguyễn Thái Ngọc Duy9459aa72007-12-05 20:33:32 +0700450{
Nguyễn Thái Ngọc Duy7d0fb0d2014-11-30 15:24:42 +0700451 struct strbuf sb = STRBUF_INIT;
Jeff King2cc7c2c2016-03-11 17:37:07 -0500452 struct strbuf err = STRBUF_INIT;
Jeff King652f18e2016-03-11 17:37:14 -0500453 int has_common;
Nguyễn Thái Ngọc Duy337e51c2010-11-26 22:32:34 +0700454
Jeff King652f18e2016-03-11 17:37:14 -0500455 has_common = get_common_dir(&sb, gitdir);
Nguyễn Thái Ngọc Duye61a5092014-11-30 15:24:43 +0700456 strbuf_addstr(&sb, "/config");
brian m. carlsonabade652017-11-12 21:28:51 +0000457 read_repository_format(candidate, sb.buf);
Jeff King2cc7c2c2016-03-11 17:37:07 -0500458 strbuf_release(&sb);
Nguyễn Thái Ngọc Duye61a5092014-11-30 15:24:43 +0700459
Nguyễn Thái Ngọc Duy337e51c2010-11-26 22:32:34 +0700460 /*
Jeff King2cc7c2c2016-03-11 17:37:07 -0500461 * For historical use of check_repository_format() in git-init,
462 * we treat a missing config as a silent "ok", even when nongit_ok
463 * is unset.
Nguyễn Thái Ngọc Duy337e51c2010-11-26 22:32:34 +0700464 */
brian m. carlsonabade652017-11-12 21:28:51 +0000465 if (candidate->version < 0)
Jeff King2cc7c2c2016-03-11 17:37:07 -0500466 return 0;
467
brian m. carlsonabade652017-11-12 21:28:51 +0000468 if (verify_repository_format(candidate, &err) < 0) {
Jeff King2cc7c2c2016-03-11 17:37:07 -0500469 if (nongit_ok) {
470 warning("%s", err.buf);
471 strbuf_release(&err);
472 *nongit_ok = -1;
473 return -1;
474 }
475 die("%s", err.buf);
Nguyễn Thái Ngọc Duy9459aa72007-12-05 20:33:32 +0700476 }
Jeff King00a09d52015-06-23 06:53:58 -0400477
brian m. carlsonabade652017-11-12 21:28:51 +0000478 repository_format_precious_objects = candidate->precious_objects;
Junio C Hamanof3d618d2018-02-13 13:39:03 -0800479 repository_format_partial_clone = candidate->partial_clone;
Nguyễn Thái Ngọc Duy58b284a2018-10-21 16:02:28 +0200480 repository_format_worktree_config = candidate->worktree_config;
brian m. carlsonabade652017-11-12 21:28:51 +0000481 string_list_clear(&candidate->unknown_extensions, 0);
Nguyễn Thái Ngọc Duy58b284a2018-10-21 16:02:28 +0200482
483 if (repository_format_worktree_config) {
484 /*
485 * pick up core.bare and core.worktree from per-worktree
486 * config if present
487 */
488 strbuf_addf(&sb, "%s/config.worktree", gitdir);
489 git_config_from_file(read_worktree_config, sb.buf, candidate);
490 strbuf_release(&sb);
491 has_common = 0;
492 }
493
Jeff King652f18e2016-03-11 17:37:14 -0500494 if (!has_common) {
brian m. carlsonabade652017-11-12 21:28:51 +0000495 if (candidate->is_bare != -1) {
496 is_bare_repository_cfg = candidate->is_bare;
Jeff King652f18e2016-03-11 17:37:14 -0500497 if (is_bare_repository_cfg == 1)
498 inside_work_tree = -1;
499 }
brian m. carlsonabade652017-11-12 21:28:51 +0000500 if (candidate->work_tree) {
Jeff King652f18e2016-03-11 17:37:14 -0500501 free(git_work_tree_cfg);
brian m. carlsonabade652017-11-12 21:28:51 +0000502 git_work_tree_cfg = candidate->work_tree;
Jeff King2cc7c2c2016-03-11 17:37:07 -0500503 inside_work_tree = -1;
Jeff King652f18e2016-03-11 17:37:14 -0500504 }
505 } else {
brian m. carlsonabade652017-11-12 21:28:51 +0000506 free(candidate->work_tree);
Jeff King2cc7c2c2016-03-11 17:37:07 -0500507 }
508
509 return 0;
510}
511
Jeff King652f18e2016-03-11 17:37:14 -0500512int read_repository_format(struct repository_format *format, const char *path)
Jeff King2cc7c2c2016-03-11 17:37:07 -0500513{
514 memset(format, 0, sizeof(*format));
515 format->version = -1;
516 format->is_bare = -1;
brian m. carlson78a67662017-11-12 21:28:53 +0000517 format->hash_algo = GIT_HASH_SHA1;
Jeff King2cc7c2c2016-03-11 17:37:07 -0500518 string_list_init(&format->unknown_extensions, 1);
Jeff King652f18e2016-03-11 17:37:14 -0500519 git_config_from_file(check_repo_format, path, format);
Jeff King2cc7c2c2016-03-11 17:37:07 -0500520 return format->version;
521}
522
Jeff King2cc7c2c2016-03-11 17:37:07 -0500523int verify_repository_format(const struct repository_format *format,
524 struct strbuf *err)
525{
526 if (GIT_REPO_VERSION_READ < format->version) {
Jeff King274db842016-03-11 17:37:22 -0500527 strbuf_addf(err, _("Expected git repo version <= %d, found %d"),
Jeff King2cc7c2c2016-03-11 17:37:07 -0500528 GIT_REPO_VERSION_READ, format->version);
529 return -1;
530 }
531
532 if (format->version >= 1 && format->unknown_extensions.nr) {
Jeff King00a09d52015-06-23 06:53:58 -0400533 int i;
534
Jeff King274db842016-03-11 17:37:22 -0500535 strbuf_addstr(err, _("unknown repository extensions found:"));
Jeff King00a09d52015-06-23 06:53:58 -0400536
Jeff King2cc7c2c2016-03-11 17:37:07 -0500537 for (i = 0; i < format->unknown_extensions.nr; i++)
538 strbuf_addf(err, "\n\t%s",
539 format->unknown_extensions.items[i].string);
540 return -1;
Jeff King00a09d52015-06-23 06:53:58 -0400541 }
542
Jeff King2cc7c2c2016-03-11 17:37:07 -0500543 return 0;
Nguyễn Thái Ngọc Duy9459aa72007-12-05 20:33:32 +0700544}
545
Stefan Beller5f294332017-01-24 15:56:50 -0800546void read_gitfile_error_die(int error_code, const char *path, const char *dir)
547{
548 switch (error_code) {
549 case READ_GITFILE_ERR_STAT_FAILED:
550 case READ_GITFILE_ERR_NOT_A_FILE:
551 /* non-fatal; follow return path */
552 break;
553 case READ_GITFILE_ERR_OPEN_FAILED:
Alexander Shopovfc045fe2018-02-13 14:19:15 +0100554 die_errno(_("error opening '%s'"), path);
Stefan Beller5f294332017-01-24 15:56:50 -0800555 case READ_GITFILE_ERR_TOO_LARGE:
Alexander Shopovfc045fe2018-02-13 14:19:15 +0100556 die(_("too large to be a .git file: '%s'"), path);
Stefan Beller5f294332017-01-24 15:56:50 -0800557 case READ_GITFILE_ERR_READ_FAILED:
Alexander Shopovfc045fe2018-02-13 14:19:15 +0100558 die(_("error reading %s"), path);
Stefan Beller5f294332017-01-24 15:56:50 -0800559 case READ_GITFILE_ERR_INVALID_FORMAT:
Alexander Shopovfc045fe2018-02-13 14:19:15 +0100560 die(_("invalid gitfile format: %s"), path);
Stefan Beller5f294332017-01-24 15:56:50 -0800561 case READ_GITFILE_ERR_NO_PATH:
Alexander Shopovfc045fe2018-02-13 14:19:15 +0100562 die(_("no path in gitfile: %s"), path);
Stefan Beller5f294332017-01-24 15:56:50 -0800563 case READ_GITFILE_ERR_NOT_A_REPO:
Alexander Shopovfc045fe2018-02-13 14:19:15 +0100564 die(_("not a git repository: %s"), dir);
Stefan Beller5f294332017-01-24 15:56:50 -0800565 default:
Johannes Schindelin033abf92018-05-02 11:38:39 +0200566 BUG("unknown error code");
Stefan Beller5f294332017-01-24 15:56:50 -0800567 }
568}
569
Johannes Schindeline90fdc32007-08-01 01:30:14 +0100570/*
Lars Hjemlib44ebb12008-02-20 23:13:13 +0100571 * Try to read the location of the git directory from the .git file,
Han-Wen Nienhuysea1d8752017-09-26 13:21:49 +0200572 * return path to git directory if found. The return value comes from
573 * a shared buffer.
Erik Elfströma93beda2015-06-09 20:24:35 +0200574 *
575 * On failure, if return_error_code is not NULL, return_error_code
576 * will be set to an error code and NULL will be returned. If
577 * return_error_code is NULL the function will die instead (for most
578 * cases).
Lars Hjemlib44ebb12008-02-20 23:13:13 +0100579 */
Erik Elfströma93beda2015-06-09 20:24:35 +0200580const char *read_gitfile_gently(const char *path, int *return_error_code)
Lars Hjemlib44ebb12008-02-20 23:13:13 +0100581{
Erik Elfström921bdd92015-06-15 21:39:52 +0200582 const int max_file_size = 1 << 20; /* 1MB */
Erik Elfströma93beda2015-06-09 20:24:35 +0200583 int error_code = 0;
584 char *buf = NULL;
585 char *dir = NULL;
Brad King40c813e2010-01-08 22:36:41 -0500586 const char *slash;
Lars Hjemlib44ebb12008-02-20 23:13:13 +0100587 struct stat st;
588 int fd;
Jeff Kingb1905ae2011-05-26 12:28:44 -0400589 ssize_t len;
Lars Hjemlib44ebb12008-02-20 23:13:13 +0100590
Erik Elfströma93beda2015-06-09 20:24:35 +0200591 if (stat(path, &st)) {
Johannes Schindelin5c4003c2017-03-13 21:12:18 +0100592 /* NEEDSWORK: discern between ENOENT vs other errors */
Erik Elfströma93beda2015-06-09 20:24:35 +0200593 error_code = READ_GITFILE_ERR_STAT_FAILED;
594 goto cleanup_return;
595 }
596 if (!S_ISREG(st.st_mode)) {
597 error_code = READ_GITFILE_ERR_NOT_A_FILE;
598 goto cleanup_return;
599 }
Erik Elfström921bdd92015-06-15 21:39:52 +0200600 if (st.st_size > max_file_size) {
601 error_code = READ_GITFILE_ERR_TOO_LARGE;
602 goto cleanup_return;
603 }
Lars Hjemlib44ebb12008-02-20 23:13:13 +0100604 fd = open(path, O_RDONLY);
Erik Elfströma93beda2015-06-09 20:24:35 +0200605 if (fd < 0) {
606 error_code = READ_GITFILE_ERR_OPEN_FAILED;
607 goto cleanup_return;
608 }
Jeff King3733e692016-02-22 17:44:28 -0500609 buf = xmallocz(st.st_size);
Lars Hjemlib44ebb12008-02-20 23:13:13 +0100610 len = read_in_full(fd, buf, st.st_size);
611 close(fd);
Erik Elfströma93beda2015-06-09 20:24:35 +0200612 if (len != st.st_size) {
613 error_code = READ_GITFILE_ERR_READ_FAILED;
614 goto cleanup_return;
615 }
Erik Elfströma93beda2015-06-09 20:24:35 +0200616 if (!starts_with(buf, "gitdir: ")) {
617 error_code = READ_GITFILE_ERR_INVALID_FORMAT;
618 goto cleanup_return;
619 }
Lars Hjemlib44ebb12008-02-20 23:13:13 +0100620 while (buf[len - 1] == '\n' || buf[len - 1] == '\r')
621 len--;
Erik Elfströma93beda2015-06-09 20:24:35 +0200622 if (len < 9) {
623 error_code = READ_GITFILE_ERR_NO_PATH;
624 goto cleanup_return;
625 }
Lars Hjemlib44ebb12008-02-20 23:13:13 +0100626 buf[len] = '\0';
Brad King40c813e2010-01-08 22:36:41 -0500627 dir = buf + 8;
628
629 if (!is_absolute_path(dir) && (slash = strrchr(path, '/'))) {
630 size_t pathlen = slash+1 - path;
Jeff King75faa452015-09-24 17:07:03 -0400631 dir = xstrfmt("%.*s%.*s", (int)pathlen, path,
632 (int)(len - 8), buf + 8);
Brad King40c813e2010-01-08 22:36:41 -0500633 free(buf);
634 buf = dir;
635 }
Erik Elfströma93beda2015-06-09 20:24:35 +0200636 if (!is_git_directory(dir)) {
637 error_code = READ_GITFILE_ERR_NOT_A_REPO;
638 goto cleanup_return;
639 }
Carlos Martín Nietoe2a57aa2011-03-17 12:26:46 +0100640 path = real_path(dir);
Brad King40c813e2010-01-08 22:36:41 -0500641
Erik Elfströma93beda2015-06-09 20:24:35 +0200642cleanup_return:
Erik Elfströma93beda2015-06-09 20:24:35 +0200643 if (return_error_code)
644 *return_error_code = error_code;
Stefan Beller5f294332017-01-24 15:56:50 -0800645 else if (error_code)
646 read_gitfile_error_die(error_code, path, dir);
Erik Elfströma93beda2015-06-09 20:24:35 +0200647
Lars Hjemlib44ebb12008-02-20 23:13:13 +0100648 free(buf);
Jeff King38ae8782015-06-26 05:03:31 -0400649 return error_code ? NULL : path;
Lars Hjemlib44ebb12008-02-20 23:13:13 +0100650}
651
Jonathan Niedere4e30342010-07-24 06:19:44 -0500652static const char *setup_explicit_git_dir(const char *gitdirenv,
René Scharfe7333ed12014-07-28 20:26:40 +0200653 struct strbuf *cwd,
brian m. carlsonabade652017-11-12 21:28:51 +0000654 struct repository_format *repo_fmt,
Nguyễn Thái Ngọc Duyb3f66fd2010-11-26 22:32:39 +0700655 int *nongit_ok)
Jonathan Niedere4e30342010-07-24 06:19:44 -0500656{
Nguyễn Thái Ngọc Duyb3f66fd2010-11-26 22:32:39 +0700657 const char *work_tree_env = getenv(GIT_WORK_TREE_ENVIRONMENT);
658 const char *worktree;
659 char *gitfile;
Nguyễn Thái Ngọc Duy9b125da2011-03-26 16:04:24 +0700660 int offset;
Jonathan Niedere4e30342010-07-24 06:19:44 -0500661
662 if (PATH_MAX - 40 < strlen(gitdirenv))
Alexander Shopovfc045fe2018-02-13 14:19:15 +0100663 die(_("'$%s' too big"), GIT_DIR_ENVIRONMENT);
Nguyễn Thái Ngọc Duyb3f66fd2010-11-26 22:32:39 +0700664
Junio C Hamano13d6ec92011-08-22 14:04:56 -0700665 gitfile = (char*)read_gitfile(gitdirenv);
Nguyễn Thái Ngọc Duyb3f66fd2010-11-26 22:32:39 +0700666 if (gitfile) {
667 gitfile = xstrdup(gitfile);
668 gitdirenv = gitfile;
669 }
670
Jonathan Niedere4e30342010-07-24 06:19:44 -0500671 if (!is_git_directory(gitdirenv)) {
672 if (nongit_ok) {
673 *nongit_ok = 1;
Nguyễn Thái Ngọc Duyb3f66fd2010-11-26 22:32:39 +0700674 free(gitfile);
Jonathan Niedere4e30342010-07-24 06:19:44 -0500675 return NULL;
676 }
Alexander Shopovfc045fe2018-02-13 14:19:15 +0100677 die(_("not a git repository: '%s'"), gitdirenv);
Jonathan Niedere4e30342010-07-24 06:19:44 -0500678 }
Nguyễn Thái Ngọc Duyb3f66fd2010-11-26 22:32:39 +0700679
brian m. carlsonabade652017-11-12 21:28:51 +0000680 if (check_repository_format_gently(gitdirenv, repo_fmt, nongit_ok)) {
Nguyễn Thái Ngọc Duyb3f66fd2010-11-26 22:32:39 +0700681 free(gitfile);
682 return NULL;
Jonathan Niedere4e30342010-07-24 06:19:44 -0500683 }
Nguyễn Thái Ngọc Duyb3f66fd2010-11-26 22:32:39 +0700684
685 /* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */
686 if (work_tree_env)
687 set_git_work_tree(work_tree_env);
688 else if (is_bare_repository_cfg > 0) {
Jeff Kingfada7672015-05-29 02:49:10 -0400689 if (git_work_tree_cfg) {
690 /* #22.2, #30 */
691 warning("core.bare and core.worktree do not make sense");
692 work_tree_config_is_bogus = 1;
693 }
Nguyễn Thái Ngọc Duyb3f66fd2010-11-26 22:32:39 +0700694
695 /* #18, #26 */
696 set_git_dir(gitdirenv);
697 free(gitfile);
Jonathan Niedere4e30342010-07-24 06:19:44 -0500698 return NULL;
Nguyễn Thái Ngọc Duyb3f66fd2010-11-26 22:32:39 +0700699 }
700 else if (git_work_tree_cfg) { /* #6, #14 */
701 if (is_absolute_path(git_work_tree_cfg))
702 set_git_work_tree(git_work_tree_cfg);
703 else {
René Scharfe56b9f6e2014-07-28 20:30:39 +0200704 char *core_worktree;
Nguyễn Thái Ngọc Duyb3f66fd2010-11-26 22:32:39 +0700705 if (chdir(gitdirenv))
Alexander Shopovfc045fe2018-02-13 14:19:15 +0100706 die_errno(_("cannot chdir to '%s'"), gitdirenv);
Nguyễn Thái Ngọc Duyb3f66fd2010-11-26 22:32:39 +0700707 if (chdir(git_work_tree_cfg))
Alexander Shopovfc045fe2018-02-13 14:19:15 +0100708 die_errno(_("cannot chdir to '%s'"), git_work_tree_cfg);
René Scharfe56b9f6e2014-07-28 20:30:39 +0200709 core_worktree = xgetcwd();
René Scharfe7333ed12014-07-28 20:26:40 +0200710 if (chdir(cwd->buf))
Alexander Shopovfc045fe2018-02-13 14:19:15 +0100711 die_errno(_("cannot come back to cwd"));
Nguyễn Thái Ngọc Duyb3f66fd2010-11-26 22:32:39 +0700712 set_git_work_tree(core_worktree);
René Scharfe56b9f6e2014-07-28 20:30:39 +0200713 free(core_worktree);
Nguyễn Thái Ngọc Duyb3f66fd2010-11-26 22:32:39 +0700714 }
715 }
Jeff King2cd83d12013-03-08 04:32:22 -0500716 else if (!git_env_bool(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, 1)) {
717 /* #16d */
718 set_git_dir(gitdirenv);
719 free(gitfile);
720 return NULL;
721 }
Nguyễn Thái Ngọc Duyb3f66fd2010-11-26 22:32:39 +0700722 else /* #2, #10 */
723 set_git_work_tree(".");
724
725 /* set_git_work_tree() must have been called by now */
726 worktree = get_git_work_tree();
727
728 /* both get_git_work_tree() and cwd are already normalized */
René Scharfe7333ed12014-07-28 20:26:40 +0200729 if (!strcmp(cwd->buf, worktree)) { /* cwd == worktree */
Nguyễn Thái Ngọc Duyb3f66fd2010-11-26 22:32:39 +0700730 set_git_dir(gitdirenv);
731 free(gitfile);
Jonathan Niedere4e30342010-07-24 06:19:44 -0500732 return NULL;
Nguyễn Thái Ngọc Duyb3f66fd2010-11-26 22:32:39 +0700733 }
734
René Scharfe7333ed12014-07-28 20:26:40 +0200735 offset = dir_inside_of(cwd->buf, worktree);
Nguyễn Thái Ngọc Duy9b125da2011-03-26 16:04:24 +0700736 if (offset >= 0) { /* cwd inside worktree? */
Carlos Martín Nietoe2a57aa2011-03-17 12:26:46 +0100737 set_git_dir(real_path(gitdirenv));
Nguyễn Thái Ngọc Duyb3f66fd2010-11-26 22:32:39 +0700738 if (chdir(worktree))
Alexander Shopovfc045fe2018-02-13 14:19:15 +0100739 die_errno(_("cannot chdir to '%s'"), worktree);
René Scharfe7333ed12014-07-28 20:26:40 +0200740 strbuf_addch(cwd, '/');
Nguyễn Thái Ngọc Duyb3f66fd2010-11-26 22:32:39 +0700741 free(gitfile);
René Scharfe7333ed12014-07-28 20:26:40 +0200742 return cwd->buf + offset;
Nguyễn Thái Ngọc Duyb3f66fd2010-11-26 22:32:39 +0700743 }
744
745 /* cwd outside worktree */
746 set_git_dir(gitdirenv);
747 free(gitfile);
748 return NULL;
Jonathan Niedere4e30342010-07-24 06:19:44 -0500749}
750
Nguyễn Thái Ngọc Duy9951d3b2010-11-26 22:32:38 +0700751static const char *setup_discovered_git_dir(const char *gitdir,
René Scharfe7333ed12014-07-28 20:26:40 +0200752 struct strbuf *cwd, int offset,
brian m. carlsonabade652017-11-12 21:28:51 +0000753 struct repository_format *repo_fmt,
Nguyễn Thái Ngọc Duy9951d3b2010-11-26 22:32:38 +0700754 int *nongit_ok)
Jonathan Nieder93a00542010-07-24 06:20:15 -0500755{
brian m. carlsonabade652017-11-12 21:28:51 +0000756 if (check_repository_format_gently(gitdir, repo_fmt, nongit_ok))
Nguyễn Thái Ngọc Duy98937be2010-07-24 07:11:58 -0500757 return NULL;
Nguyễn Thái Ngọc Duy9951d3b2010-11-26 22:32:38 +0700758
Jonathan Nieder4868b2e2011-01-19 06:42:30 -0600759 /* --work-tree is set without --git-dir; use discovered one */
760 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
Johannes Schindelin2d4dcf22017-05-04 15:56:51 +0200761 char *to_free = NULL;
762 const char *ret;
763
René Scharfe7333ed12014-07-28 20:26:40 +0200764 if (offset != cwd->len && !is_absolute_path(gitdir))
Johannes Schindelin2d4dcf22017-05-04 15:56:51 +0200765 gitdir = to_free = real_pathdup(gitdir, 1);
René Scharfe7333ed12014-07-28 20:26:40 +0200766 if (chdir(cwd->buf))
Alexander Shopovfc045fe2018-02-13 14:19:15 +0100767 die_errno(_("cannot come back to cwd"));
brian m. carlsonabade652017-11-12 21:28:51 +0000768 ret = setup_explicit_git_dir(gitdir, cwd, repo_fmt, nongit_ok);
Johannes Schindelin2d4dcf22017-05-04 15:56:51 +0200769 free(to_free);
770 return ret;
Jonathan Nieder4868b2e2011-01-19 06:42:30 -0600771 }
772
Nguyễn Thái Ngọc Duy9951d3b2010-11-26 22:32:38 +0700773 /* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */
774 if (is_bare_repository_cfg > 0) {
René Scharfe7333ed12014-07-28 20:26:40 +0200775 set_git_dir(offset == cwd->len ? gitdir : real_path(gitdir));
776 if (chdir(cwd->buf))
Alexander Shopovfc045fe2018-02-13 14:19:15 +0100777 die_errno(_("cannot come back to cwd"));
Nguyễn Thái Ngọc Duy9951d3b2010-11-26 22:32:38 +0700778 return NULL;
Jonathan Nieder93a00542010-07-24 06:20:15 -0500779 }
Jonathan Nieder93a00542010-07-24 06:20:15 -0500780
Nguyễn Thái Ngọc Duy9951d3b2010-11-26 22:32:38 +0700781 /* #0, #1, #5, #8, #9, #12, #13 */
782 set_git_work_tree(".");
783 if (strcmp(gitdir, DEFAULT_GIT_DIR_ENVIRONMENT))
784 set_git_dir(gitdir);
Nguyễn Thái Ngọc Duy98937be2010-07-24 07:11:58 -0500785 inside_git_dir = 0;
Nguyễn Thái Ngọc Duy9951d3b2010-11-26 22:32:38 +0700786 inside_work_tree = 1;
René Scharfe7333ed12014-07-28 20:26:40 +0200787 if (offset == cwd->len)
Nguyễn Thái Ngọc Duy98937be2010-07-24 07:11:58 -0500788 return NULL;
789
Johannes Schindelindf380d52017-03-13 21:09:44 +0100790 /* Make "offset" point past the '/' (already the case for root dirs) */
791 if (offset != offset_1st_component(cwd->buf))
792 offset++;
793 /* Add a '/' at the end */
René Scharfe7333ed12014-07-28 20:26:40 +0200794 strbuf_addch(cwd, '/');
795 return cwd->buf + offset;
Nguyễn Thái Ngọc Duy98937be2010-07-24 07:11:58 -0500796}
797
Nguyễn Thái Ngọc Duy1cd80312010-11-26 22:32:36 +0700798/* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */
René Scharfe7333ed12014-07-28 20:26:40 +0200799static const char *setup_bare_git_dir(struct strbuf *cwd, int offset,
brian m. carlsonabade652017-11-12 21:28:51 +0000800 struct repository_format *repo_fmt,
René Scharfe7333ed12014-07-28 20:26:40 +0200801 int *nongit_ok)
Jonathan Nieder68698da2010-07-24 06:25:32 -0500802{
803 int root_len;
804
brian m. carlsonabade652017-11-12 21:28:51 +0000805 if (check_repository_format_gently(".", repo_fmt, nongit_ok))
Nguyễn Thái Ngọc Duy1cd80312010-11-26 22:32:36 +0700806 return NULL;
807
Jeff King2cd83d12013-03-08 04:32:22 -0500808 setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, "0", 1);
809
Jonathan Nieder4868b2e2011-01-19 06:42:30 -0600810 /* --work-tree is set without --git-dir; use discovered one */
811 if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
Johannes Schindelinda6f8472017-05-04 15:56:47 +0200812 static const char *gitdir;
Jonathan Nieder4868b2e2011-01-19 06:42:30 -0600813
René Scharfe7333ed12014-07-28 20:26:40 +0200814 gitdir = offset == cwd->len ? "." : xmemdupz(cwd->buf, offset);
815 if (chdir(cwd->buf))
Alexander Shopovfc045fe2018-02-13 14:19:15 +0100816 die_errno(_("cannot come back to cwd"));
brian m. carlsonabade652017-11-12 21:28:51 +0000817 return setup_explicit_git_dir(gitdir, cwd, repo_fmt, nongit_ok);
Jonathan Nieder4868b2e2011-01-19 06:42:30 -0600818 }
819
Jonathan Nieder68698da2010-07-24 06:25:32 -0500820 inside_git_dir = 1;
Nguyễn Thái Ngọc Duy1cd80312010-11-26 22:32:36 +0700821 inside_work_tree = 0;
René Scharfe7333ed12014-07-28 20:26:40 +0200822 if (offset != cwd->len) {
823 if (chdir(cwd->buf))
Alexander Shopovfc045fe2018-02-13 14:19:15 +0100824 die_errno(_("cannot come back to cwd"));
René Scharfe7333ed12014-07-28 20:26:40 +0200825 root_len = offset_1st_component(cwd->buf);
826 strbuf_setlen(cwd, offset > root_len ? offset : root_len);
827 set_git_dir(cwd->buf);
Nguyễn Thái Ngọc Duy337e51c2010-11-26 22:32:34 +0700828 }
Nguyễn Thái Ngọc Duy1cd80312010-11-26 22:32:36 +0700829 else
Jonathan Nieder68698da2010-07-24 06:25:32 -0500830 set_git_dir(".");
Jonathan Nieder68698da2010-07-24 06:25:32 -0500831 return NULL;
832}
833
Jonathan Niederf161ede2010-07-24 06:26:41 -0500834static const char *setup_nongit(const char *cwd, int *nongit_ok)
835{
836 if (!nongit_ok)
Alexander Shopovfc045fe2018-02-13 14:19:15 +0100837 die(_("not a git repository (or any of the parent directories): %s"), DEFAULT_GIT_DIR_ENVIRONMENT);
Jonathan Niederf161ede2010-07-24 06:26:41 -0500838 if (chdir(cwd))
Alexander Shopovfc045fe2018-02-13 14:19:15 +0100839 die_errno(_("cannot come back to cwd"));
Jonathan Niederf161ede2010-07-24 06:26:41 -0500840 *nongit_ok = 1;
841 return NULL;
842}
843
Clemens Buchacher2565b432012-04-13 01:11:36 +0200844static dev_t get_device_or_die(const char *path, const char *prefix, int prefix_len)
Jonathan Nieder60c98d12010-07-24 06:27:58 -0500845{
846 struct stat buf;
Clemens Buchacher2565b432012-04-13 01:11:36 +0200847 if (stat(path, &buf)) {
Alexander Shopovfc045fe2018-02-13 14:19:15 +0100848 die_errno(_("failed to stat '%*s%s%s'"),
Clemens Buchacher2565b432012-04-13 01:11:36 +0200849 prefix_len,
Jonathan Nieder60c98d12010-07-24 06:27:58 -0500850 prefix ? prefix : "",
851 prefix ? "/" : "", path);
Clemens Buchacher2565b432012-04-13 01:11:36 +0200852 }
Jonathan Nieder60c98d12010-07-24 06:27:58 -0500853 return buf.st_dev;
854}
855
Lars Hjemlib44ebb12008-02-20 23:13:13 +0100856/*
Michael Haggerty1b77d832012-10-28 17:16:26 +0100857 * A "string_list_each_func_t" function that canonicalizes an entry
858 * from GIT_CEILING_DIRECTORIES using real_path_if_valid(), or
Michael Haggerty7ec30aa2013-02-20 10:09:24 +0100859 * discards it if unusable. The presence of an empty entry in
860 * GIT_CEILING_DIRECTORIES turns off canonicalization for all
861 * subsequent entries.
Michael Haggerty9e2326c2012-10-28 17:16:25 +0100862 */
Michael Haggerty1b77d832012-10-28 17:16:26 +0100863static int canonicalize_ceiling_entry(struct string_list_item *item,
Michael Haggerty7ec30aa2013-02-20 10:09:24 +0100864 void *cb_data)
Michael Haggerty9e2326c2012-10-28 17:16:25 +0100865{
Michael Haggerty7ec30aa2013-02-20 10:09:24 +0100866 int *empty_entry_found = cb_data;
Michael Haggerty1b77d832012-10-28 17:16:26 +0100867 char *ceil = item->string;
Michael Haggerty9e2326c2012-10-28 17:16:25 +0100868
Michael Haggerty7ec30aa2013-02-20 10:09:24 +0100869 if (!*ceil) {
870 *empty_entry_found = 1;
Michael Haggerty9e2326c2012-10-28 17:16:25 +0100871 return 0;
Michael Haggerty7ec30aa2013-02-20 10:09:24 +0100872 } else if (!is_absolute_path(ceil)) {
Michael Haggerty9e2326c2012-10-28 17:16:25 +0100873 return 0;
Michael Haggerty7ec30aa2013-02-20 10:09:24 +0100874 } else if (*empty_entry_found) {
875 /* Keep entry but do not canonicalize it */
876 return 1;
877 } else {
Johannes Schindelince83ead2017-03-08 16:43:40 +0100878 char *real_path = real_pathdup(ceil, 0);
Brandon Williams4ac90062016-12-12 10:16:55 -0800879 if (!real_path) {
Michael Haggerty7ec30aa2013-02-20 10:09:24 +0100880 return 0;
Brandon Williams4ac90062016-12-12 10:16:55 -0800881 }
Michael Haggerty7ec30aa2013-02-20 10:09:24 +0100882 free(item->string);
Brandon Williams4ac90062016-12-12 10:16:55 -0800883 item->string = real_path;
Michael Haggerty7ec30aa2013-02-20 10:09:24 +0100884 return 1;
885 }
Michael Haggerty9e2326c2012-10-28 17:16:25 +0100886}
887
Johannes Schindelince9b8aa2017-03-13 21:10:42 +0100888enum discovery_result {
889 GIT_DIR_NONE = 0,
890 GIT_DIR_EXPLICIT,
891 GIT_DIR_DISCOVERED,
892 GIT_DIR_BARE,
893 /* these are errors */
894 GIT_DIR_HIT_CEILING = -1,
Johannes Schindelin01017dc2017-03-13 21:11:22 +0100895 GIT_DIR_HIT_MOUNT_POINT = -2,
896 GIT_DIR_INVALID_GITFILE = -3
Johannes Schindelince9b8aa2017-03-13 21:10:42 +0100897};
898
Michael Haggerty9e2326c2012-10-28 17:16:25 +0100899/*
Johannes Schindeline90fdc32007-08-01 01:30:14 +0100900 * We cannot decide in this function whether we are in the work tree or
901 * not, since the config can only be read _after_ this function was called.
Johannes Schindelince9b8aa2017-03-13 21:10:42 +0100902 *
903 * Also, we avoid changing any global state (such as the current working
904 * directory) to allow early callers.
905 *
906 * The directory where the search should start needs to be passed in via the
907 * `dir` parameter; upon return, the `dir` buffer will contain the path of
908 * the directory where the search ended, and `gitdir` will contain the path of
909 * the discovered .git/ directory, if any. If `gitdir` is not absolute, it
910 * is relative to `dir` (i.e. *not* necessarily the cwd).
Johannes Schindeline90fdc32007-08-01 01:30:14 +0100911 */
Johannes Schindelince9b8aa2017-03-13 21:10:42 +0100912static enum discovery_result setup_git_directory_gently_1(struct strbuf *dir,
Johannes Schindelin01017dc2017-03-13 21:11:22 +0100913 struct strbuf *gitdir,
914 int die_on_error)
Linus Torvaldsd288a702005-08-16 18:06:34 -0700915{
David Reiss0454dd92008-05-19 23:49:26 -0700916 const char *env_ceiling_dirs = getenv(CEILING_DIRECTORIES_ENVIRONMENT);
Michael Haggerty31171d92012-10-28 17:16:24 +0100917 struct string_list ceiling_dirs = STRING_LIST_INIT_DUP;
Johannes Schindelince9b8aa2017-03-13 21:10:42 +0100918 const char *gitdirenv;
919 int ceil_offset = -1, min_offset = has_dos_drive_prefix(dir->buf) ? 3 : 1;
Raja R Harinathc7d1d1b2010-07-13 14:32:00 +0530920 dev_t current_device = 0;
921 int one_filesystem = 1;
Linus Torvaldsd288a702005-08-16 18:06:34 -0700922
Johannes Schindeline90fdc32007-08-01 01:30:14 +0100923 /*
Johannes Schindelince9b8aa2017-03-13 21:10:42 +0100924 * If GIT_DIR is set explicitly, we're not going
925 * to do any discovery, but we still do repository
926 * validation.
927 */
928 gitdirenv = getenv(GIT_DIR_ENVIRONMENT);
929 if (gitdirenv) {
930 strbuf_addstr(gitdir, gitdirenv);
931 return GIT_DIR_EXPLICIT;
932 }
933
934 if (env_ceiling_dirs) {
935 int empty_entry_found = 0;
936
937 string_list_split(&ceiling_dirs, env_ceiling_dirs, PATH_SEP, -1);
938 filter_string_list(&ceiling_dirs, 0,
939 canonicalize_ceiling_entry, &empty_entry_found);
940 ceil_offset = longest_ancestor_length(dir->buf, &ceiling_dirs);
941 string_list_clear(&ceiling_dirs, 0);
942 }
943
944 if (ceil_offset < 0)
945 ceil_offset = min_offset - 2;
946
947 /*
948 * Test in the following order (relative to the dir):
949 * - .git (file containing "gitdir: <path>")
950 * - .git/
951 * - ./ (bare)
952 * - ../.git
953 * - ../.git/
954 * - ../ (bare)
Junio C Hamanobdae4af2017-12-19 11:33:58 -0800955 * - ../../.git
Johannes Schindelince9b8aa2017-03-13 21:10:42 +0100956 * etc.
957 */
958 one_filesystem = !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM", 0);
959 if (one_filesystem)
960 current_device = get_device_or_die(dir->buf, NULL, 0);
961 for (;;) {
Johannes Schindelin01017dc2017-03-13 21:11:22 +0100962 int offset = dir->len, error_code = 0;
Johannes Schindelince9b8aa2017-03-13 21:10:42 +0100963
964 if (offset > min_offset)
965 strbuf_addch(dir, '/');
966 strbuf_addstr(dir, DEFAULT_GIT_DIR_ENVIRONMENT);
Johannes Schindelin01017dc2017-03-13 21:11:22 +0100967 gitdirenv = read_gitfile_gently(dir->buf, die_on_error ?
968 NULL : &error_code);
969 if (!gitdirenv) {
970 if (die_on_error ||
971 error_code == READ_GITFILE_ERR_NOT_A_FILE) {
Johannes Schindelin5c4003c2017-03-13 21:12:18 +0100972 /* NEEDSWORK: fail if .git is not file nor dir */
Johannes Schindelin01017dc2017-03-13 21:11:22 +0100973 if (is_git_directory(dir->buf))
974 gitdirenv = DEFAULT_GIT_DIR_ENVIRONMENT;
975 } else if (error_code != READ_GITFILE_ERR_STAT_FAILED)
976 return GIT_DIR_INVALID_GITFILE;
977 }
Johannes Schindelince9b8aa2017-03-13 21:10:42 +0100978 strbuf_setlen(dir, offset);
979 if (gitdirenv) {
980 strbuf_addstr(gitdir, gitdirenv);
981 return GIT_DIR_DISCOVERED;
982 }
983
984 if (is_git_directory(dir->buf)) {
985 strbuf_addstr(gitdir, ".");
986 return GIT_DIR_BARE;
987 }
988
989 if (offset <= min_offset)
990 return GIT_DIR_HIT_CEILING;
991
992 while (--offset > ceil_offset && !is_dir_sep(dir->buf[offset]))
993 ; /* continue */
994 if (offset <= ceil_offset)
995 return GIT_DIR_HIT_CEILING;
996
997 strbuf_setlen(dir, offset > min_offset ? offset : min_offset);
998 if (one_filesystem &&
999 current_device != get_device_or_die(dir->buf, NULL, offset))
1000 return GIT_DIR_HIT_MOUNT_POINT;
1001 }
1002}
1003
Brandon Williamsd3fb71b2017-06-14 11:07:37 -07001004int discover_git_directory(struct strbuf *commondir,
1005 struct strbuf *gitdir)
Johannes Schindelin16ac8b82017-03-13 21:10:45 +01001006{
1007 struct strbuf dir = STRBUF_INIT, err = STRBUF_INIT;
1008 size_t gitdir_offset = gitdir->len, cwd_len;
Brandon Williamsd3fb71b2017-06-14 11:07:37 -07001009 size_t commondir_offset = commondir->len;
Johannes Schindelin16ac8b82017-03-13 21:10:45 +01001010 struct repository_format candidate;
1011
1012 if (strbuf_getcwd(&dir))
Brandon Williamsd3fb71b2017-06-14 11:07:37 -07001013 return -1;
Johannes Schindelin16ac8b82017-03-13 21:10:45 +01001014
1015 cwd_len = dir.len;
Johannes Schindelin01017dc2017-03-13 21:11:22 +01001016 if (setup_git_directory_gently_1(&dir, gitdir, 0) <= 0) {
Johannes Schindelin16ac8b82017-03-13 21:10:45 +01001017 strbuf_release(&dir);
Brandon Williamsd3fb71b2017-06-14 11:07:37 -07001018 return -1;
Johannes Schindelin16ac8b82017-03-13 21:10:45 +01001019 }
1020
1021 /*
1022 * The returned gitdir is relative to dir, and if dir does not reflect
1023 * the current working directory, we simply make the gitdir absolute.
1024 */
1025 if (dir.len < cwd_len && !is_absolute_path(gitdir->buf + gitdir_offset)) {
1026 /* Avoid a trailing "/." */
1027 if (!strcmp(".", gitdir->buf + gitdir_offset))
1028 strbuf_setlen(gitdir, gitdir_offset);
1029 else
1030 strbuf_addch(&dir, '/');
1031 strbuf_insert(gitdir, gitdir_offset, dir.buf, dir.len);
1032 }
1033
Brandon Williamsd3fb71b2017-06-14 11:07:37 -07001034 get_common_dir(commondir, gitdir->buf + gitdir_offset);
1035
Johannes Schindelin16ac8b82017-03-13 21:10:45 +01001036 strbuf_reset(&dir);
Brandon Williamsd3fb71b2017-06-14 11:07:37 -07001037 strbuf_addf(&dir, "%s/config", commondir->buf + commondir_offset);
Johannes Schindelin16ac8b82017-03-13 21:10:45 +01001038 read_repository_format(&candidate, dir.buf);
1039 strbuf_release(&dir);
1040
1041 if (verify_repository_format(&candidate, &err) < 0) {
1042 warning("ignoring git dir '%s': %s",
1043 gitdir->buf + gitdir_offset, err.buf);
1044 strbuf_release(&err);
Brandon Williamsd3fb71b2017-06-14 11:07:37 -07001045 strbuf_setlen(commondir, commondir_offset);
Johannes Schindelin69743f92017-06-14 13:35:26 +02001046 strbuf_setlen(gitdir, gitdir_offset);
Brandon Williamsd3fb71b2017-06-14 11:07:37 -07001047 return -1;
Johannes Schindelin16ac8b82017-03-13 21:10:45 +01001048 }
1049
Brandon Williamsd3fb71b2017-06-14 11:07:37 -07001050 return 0;
Johannes Schindelin16ac8b82017-03-13 21:10:45 +01001051}
1052
Johannes Schindelince9b8aa2017-03-13 21:10:42 +01001053const char *setup_git_directory_gently(int *nongit_ok)
1054{
1055 static struct strbuf cwd = STRBUF_INIT;
1056 struct strbuf dir = STRBUF_INIT, gitdir = STRBUF_INIT;
Brandon Williamsf9ee2fc2017-08-02 12:49:23 -07001057 const char *prefix;
brian m. carlsonabade652017-11-12 21:28:51 +00001058 struct repository_format repo_fmt;
Johannes Schindelince9b8aa2017-03-13 21:10:42 +01001059
1060 /*
Tanay Abhra3c8687a2014-07-28 03:10:38 -07001061 * We may have read an incomplete configuration before
1062 * setting-up the git directory. If so, clear the cache so
1063 * that the next queries to the configuration reload complete
1064 * configuration (including the per-repo config file that we
1065 * ignored previously).
1066 */
1067 git_config_clear();
1068
1069 /*
SZEDER Gáboraf05d672008-03-25 22:06:26 +01001070 * Let's assume that we are in a git repository.
1071 * If it turns out later that we are somewhere else, the value will be
1072 * updated accordingly.
1073 */
1074 if (nongit_ok)
1075 *nongit_ok = 0;
1076
René Scharfe7333ed12014-07-28 20:26:40 +02001077 if (strbuf_getcwd(&cwd))
Vasco Almeida2ff30e62016-08-08 11:15:59 +00001078 die_errno(_("Unable to read current working directory"));
Johannes Schindelince9b8aa2017-03-13 21:10:42 +01001079 strbuf_addbuf(&dir, &cwd);
Nguyễn Thái Ngọc Duyb3f66fd2010-11-26 22:32:39 +07001080
Johannes Schindelin01017dc2017-03-13 21:11:22 +01001081 switch (setup_git_directory_gently_1(&dir, &gitdir, 1)) {
Johannes Schindelince9b8aa2017-03-13 21:10:42 +01001082 case GIT_DIR_NONE:
1083 prefix = NULL;
1084 break;
1085 case GIT_DIR_EXPLICIT:
brian m. carlsonabade652017-11-12 21:28:51 +00001086 prefix = setup_explicit_git_dir(gitdir.buf, &cwd, &repo_fmt, nongit_ok);
Johannes Schindelince9b8aa2017-03-13 21:10:42 +01001087 break;
1088 case GIT_DIR_DISCOVERED:
1089 if (dir.len < cwd.len && chdir(dir.buf))
Alexander Shopovfc045fe2018-02-13 14:19:15 +01001090 die(_("cannot change to '%s'"), dir.buf);
Johannes Schindelince9b8aa2017-03-13 21:10:42 +01001091 prefix = setup_discovered_git_dir(gitdir.buf, &cwd, dir.len,
brian m. carlsonabade652017-11-12 21:28:51 +00001092 &repo_fmt, nongit_ok);
Johannes Schindelince9b8aa2017-03-13 21:10:42 +01001093 break;
1094 case GIT_DIR_BARE:
1095 if (dir.len < cwd.len && chdir(dir.buf))
Alexander Shopovfc045fe2018-02-13 14:19:15 +01001096 die(_("cannot change to '%s'"), dir.buf);
brian m. carlsonabade652017-11-12 21:28:51 +00001097 prefix = setup_bare_git_dir(&cwd, dir.len, &repo_fmt, nongit_ok);
Johannes Schindelince9b8aa2017-03-13 21:10:42 +01001098 break;
1099 case GIT_DIR_HIT_CEILING:
1100 prefix = setup_nongit(cwd.buf, nongit_ok);
1101 break;
1102 case GIT_DIR_HIT_MOUNT_POINT:
1103 if (nongit_ok) {
1104 *nongit_ok = 1;
1105 strbuf_release(&cwd);
1106 strbuf_release(&dir);
1107 return NULL;
1108 }
Alexander Shopovfc045fe2018-02-13 14:19:15 +01001109 die(_("not a git repository (or any parent up to mount point %s)\n"
Johannes Schindelince9b8aa2017-03-13 21:10:42 +01001110 "Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set)."),
1111 dir.buf);
1112 default:
Johannes Schindelin033abf92018-05-02 11:38:39 +02001113 BUG("unhandled setup_git_directory_1() result");
Michael Haggerty31171d92012-10-28 17:16:24 +01001114 }
1115
David Aguilar1f5d2712011-05-25 20:37:12 -07001116 if (prefix)
Jeff Kinga6f7f9a2013-03-08 04:30:25 -05001117 setenv(GIT_PREFIX_ENVIRONMENT, prefix, 1);
David Aguilar1f5d2712011-05-25 20:37:12 -07001118 else
Jeff Kinga6f7f9a2013-03-08 04:30:25 -05001119 setenv(GIT_PREFIX_ENVIRONMENT, "", 1);
David Aguilar1f5d2712011-05-25 20:37:12 -07001120
Jeff King46c3cd42016-03-05 17:10:27 -05001121 startup_info->have_repository = !nongit_ok || !*nongit_ok;
1122 startup_info->prefix = prefix;
1123
Brandon Williams73f192c2017-06-20 12:19:32 -07001124 /*
1125 * Not all paths through the setup code will call 'set_git_dir()' (which
1126 * directly sets up the environment) so in order to guarantee that the
1127 * environment is in a consistent state after setup, explicitly setup
1128 * the environment if we have a repository.
1129 *
1130 * NEEDSWORK: currently we allow bogus GIT_DIR values to be set in some
1131 * code paths so we also need to explicitly setup the environment if
1132 * the user has set GIT_DIR. It may be beneficial to disallow bogus
1133 * GIT_DIR values at some point in the future.
1134 */
Brandon Williamsc14c2342017-06-22 11:43:33 -07001135 if (startup_info->have_repository || getenv(GIT_DIR_ENVIRONMENT)) {
1136 if (!the_repository->gitdir) {
1137 const char *gitdir = getenv(GIT_DIR_ENVIRONMENT);
1138 if (!gitdir)
1139 gitdir = DEFAULT_GIT_DIR_ENVIRONMENT;
Nguyễn Thái Ngọc Duy357a03e2018-03-03 18:35:55 +07001140 setup_git_env(gitdir);
Brandon Williamsc14c2342017-06-22 11:43:33 -07001141 }
brian m. carlson78a67662017-11-12 21:28:53 +00001142 if (startup_info->have_repository)
1143 repo_set_hash_algo(the_repository, repo_fmt.hash_algo);
Brandon Williamsc14c2342017-06-22 11:43:33 -07001144 }
Brandon Williams73f192c2017-06-20 12:19:32 -07001145
Johannes Schindelince9b8aa2017-03-13 21:10:42 +01001146 strbuf_release(&dir);
1147 strbuf_release(&gitdir);
1148
Nguyễn Thái Ngọc Duya60645f2010-08-05 21:46:33 -05001149 return prefix;
1150}
1151
Junio C Hamano94df2502006-06-09 23:09:49 -07001152int git_config_perm(const char *var, const char *value)
1153{
Heikki Orsila06cbe852008-04-16 11:34:24 +03001154 int i;
1155 char *endptr;
1156
1157 if (value == NULL)
1158 return PERM_GROUP;
1159
1160 if (!strcmp(value, "umask"))
1161 return PERM_UMASK;
1162 if (!strcmp(value, "group"))
1163 return PERM_GROUP;
1164 if (!strcmp(value, "all") ||
1165 !strcmp(value, "world") ||
1166 !strcmp(value, "everybody"))
1167 return PERM_EVERYBODY;
1168
1169 /* Parse octal numbers */
1170 i = strtol(value, &endptr, 8);
1171
1172 /* If not an octal number, maybe true/false? */
1173 if (*endptr != 0)
1174 return git_config_bool(var, value) ? PERM_GROUP : PERM_UMASK;
1175
1176 /*
1177 * Treat values 0, 1 and 2 as compatibility cases, otherwise it is
Junio C Hamano5a688fe2009-03-25 16:19:36 -07001178 * a chmod value to restrict to.
Heikki Orsila06cbe852008-04-16 11:34:24 +03001179 */
1180 switch (i) {
1181 case PERM_UMASK: /* 0 */
1182 return PERM_UMASK;
1183 case OLD_PERM_GROUP: /* 1 */
1184 return PERM_GROUP;
1185 case OLD_PERM_EVERYBODY: /* 2 */
1186 return PERM_EVERYBODY;
Junio C Hamano94df2502006-06-09 23:09:49 -07001187 }
Heikki Orsila06cbe852008-04-16 11:34:24 +03001188
1189 /* A filemode value was given: 0xxx */
1190
1191 if ((i & 0600) != 0600)
Alexander Shopovfc045fe2018-02-13 14:19:15 +01001192 die(_("problem with core.sharedRepository filemode value "
Heikki Orsila06cbe852008-04-16 11:34:24 +03001193 "(0%.3o).\nThe owner of files must always have "
Vasco Almeida2ff30e62016-08-08 11:15:59 +00001194 "read and write permissions."), i);
Heikki Orsila06cbe852008-04-16 11:34:24 +03001195
1196 /*
1197 * Mask filemode value. Others can not get write permission.
1198 * x flags for directories are handled separately.
1199 */
Junio C Hamano5a688fe2009-03-25 16:19:36 -07001200 return -(i & 0666);
Junio C Hamano94df2502006-06-09 23:09:49 -07001201}
1202
Jeff King4b0d1ee2016-03-11 17:36:45 -05001203void check_repository_format(void)
Junio C Hamanoab9cb762005-11-25 15:59:09 -08001204{
brian m. carlsonabade652017-11-12 21:28:51 +00001205 struct repository_format repo_fmt;
1206 check_repository_format_gently(get_git_dir(), &repo_fmt, NULL);
Jeff Kingf1c126b2016-03-05 17:11:34 -05001207 startup_info->have_repository = 1;
Junio C Hamanoab9cb762005-11-25 15:59:09 -08001208}
1209
Clemens Buchachere1e5ec82010-06-05 10:04:20 +02001210/*
1211 * Returns the "prefix", a path to the current working directory
1212 * relative to the work tree root, or NULL, if the current working
1213 * directory is not a strict subdirectory of the work tree root. The
1214 * prefix always ends with a '/' character.
1215 */
Junio C Hamano5e7bfe22005-11-25 15:43:41 -08001216const char *setup_git_directory(void)
1217{
Nguyễn Thái Ngọc Duyb3f66fd2010-11-26 22:32:39 +07001218 return setup_git_directory_gently(NULL);
Junio C Hamano5e7bfe22005-11-25 15:43:41 -08001219}
Fredrik Gustafssonabc06822011-08-15 23:17:46 +02001220
Stefan Beller40d96322017-01-24 15:56:49 -08001221const char *resolve_gitdir_gently(const char *suspect, int *return_error_code)
Fredrik Gustafssonabc06822011-08-15 23:17:46 +02001222{
1223 if (is_git_directory(suspect))
1224 return suspect;
Stefan Beller40d96322017-01-24 15:56:49 -08001225 return read_gitfile_gently(suspect, return_error_code);
Fredrik Gustafssonabc06822011-08-15 23:17:46 +02001226}
Thomas Rast1d999dd2013-07-16 11:27:36 +02001227
1228/* if any standard file descriptor is missing open it to /dev/null */
1229void sanitize_stdfds(void)
1230{
1231 int fd = open("/dev/null", O_RDWR, 0);
1232 while (fd != -1 && fd < 2)
1233 fd = dup(fd);
1234 if (fd == -1)
Alexander Shopovfc045fe2018-02-13 14:19:15 +01001235 die_errno(_("open /dev/null or dup failed"));
Thomas Rast1d999dd2013-07-16 11:27:36 +02001236 if (fd > 2)
1237 close(fd);
1238}
Nguyễn Thái Ngọc Duyde0957c2014-02-08 14:08:51 +07001239
1240int daemonize(void)
1241{
1242#ifdef NO_POSIX_GOODIES
1243 errno = ENOSYS;
1244 return -1;
1245#else
1246 switch (fork()) {
1247 case 0:
1248 break;
1249 case -1:
Alexander Shopovfc045fe2018-02-13 14:19:15 +01001250 die_errno(_("fork failed"));
Nguyễn Thái Ngọc Duyde0957c2014-02-08 14:08:51 +07001251 default:
1252 exit(0);
1253 }
1254 if (setsid() == -1)
Alexander Shopovfc045fe2018-02-13 14:19:15 +01001255 die_errno(_("setsid failed"));
Nguyễn Thái Ngọc Duyde0957c2014-02-08 14:08:51 +07001256 close(0);
1257 close(1);
1258 close(2);
1259 sanitize_stdfds();
1260 return 0;
1261#endif
1262}