Linus Torvalds | d288a70 | 2005-08-16 18:06:34 -0700 | [diff] [blame] | 1 | #include "cache.h" |
Brandon Williams | c14c234 | 2017-06-22 11:43:33 -0700 | [diff] [blame] | 2 | #include "repository.h" |
Brandon Williams | b2141fc | 2017-06-14 11:07:36 -0700 | [diff] [blame] | 3 | #include "config.h" |
Johannes Schindelin | e90fdc3 | 2007-08-01 01:30:14 +0100 | [diff] [blame] | 4 | #include "dir.h" |
Michael Haggerty | 31171d9 | 2012-10-28 17:16:24 +0100 | [diff] [blame] | 5 | #include "string-list.h" |
Jeff King | 8500e0d | 2018-03-30 14:35:08 -0400 | [diff] [blame] | 6 | #include "chdir-notify.h" |
Christian Couder | 60b7a92 | 2019-06-25 15:40:38 +0200 | [diff] [blame] | 7 | #include "promisor-remote.h" |
Johannes Schindelin | e90fdc3 | 2007-08-01 01:30:14 +0100 | [diff] [blame] | 8 | |
| 9 | static int inside_git_dir = -1; |
| 10 | static int inside_work_tree = -1; |
Jeff King | fada767 | 2015-05-29 02:49:10 -0400 | [diff] [blame] | 11 | static int work_tree_config_is_bogus; |
Linus Torvalds | d288a70 | 2005-08-16 18:06:34 -0700 | [diff] [blame] | 12 | |
Jeff King | 46c3cd4 | 2016-03-05 17:10:27 -0500 | [diff] [blame] | 13 | static struct startup_info the_startup_info; |
| 14 | struct startup_info *startup_info = &the_startup_info; |
| 15 | |
Nguyễn Thái Ngọc Duy | 645a29c | 2013-07-14 15:36:03 +0700 | [diff] [blame] | 16 | /* |
Martin Erik Werner | ddc2a62 | 2014-02-04 15:25:19 +0100 | [diff] [blame] | 17 | * The input parameter must contain an absolute path, and it must already be |
| 18 | * normalized. |
| 19 | * |
| 20 | * Find the part of an absolute path that lies inside the work tree by |
| 21 | * dereferencing symlinks outside the work tree, for example: |
| 22 | * /dir1/repo/dir2/file (work tree is /dir1/repo) -> dir2/file |
| 23 | * /dir/file (work tree is /) -> dir/file |
| 24 | * /dir/symlink1/symlink2 (symlink1 points to work tree) -> symlink2 |
| 25 | * /dir/repolink/file (repolink points to /dir/repo) -> file |
| 26 | * /dir/repo (exactly equal to work tree) -> (empty string) |
| 27 | */ |
| 28 | static int abspath_part_inside_repo(char *path) |
| 29 | { |
| 30 | size_t len; |
| 31 | size_t wtlen; |
| 32 | char *path0; |
| 33 | int off; |
| 34 | const char *work_tree = get_git_work_tree(); |
Alexandr Miloslavskiy | 3d7747e | 2020-03-10 13:11:22 +0000 | [diff] [blame] | 35 | struct strbuf realpath = STRBUF_INIT; |
Martin Erik Werner | ddc2a62 | 2014-02-04 15:25:19 +0100 | [diff] [blame] | 36 | |
| 37 | if (!work_tree) |
| 38 | return -1; |
| 39 | wtlen = strlen(work_tree); |
| 40 | len = strlen(path); |
Martin Erik Werner | 6127ff6 | 2014-04-24 15:06:09 +0200 | [diff] [blame] | 41 | off = offset_1st_component(path); |
Martin Erik Werner | ddc2a62 | 2014-02-04 15:25:19 +0100 | [diff] [blame] | 42 | |
| 43 | /* check if work tree is already the prefix */ |
Johannes Schindelin | d8727b3 | 2019-01-18 05:24:54 -0800 | [diff] [blame] | 44 | if (wtlen <= len && !fspathncmp(path, work_tree, wtlen)) { |
Martin Erik Werner | ddc2a62 | 2014-02-04 15:25:19 +0100 | [diff] [blame] | 45 | if (path[wtlen] == '/') { |
| 46 | memmove(path, path + wtlen + 1, len - wtlen); |
| 47 | return 0; |
| 48 | } else if (path[wtlen - 1] == '/' || path[wtlen] == '\0') { |
| 49 | /* work tree is the root, or the whole path */ |
| 50 | memmove(path, path + wtlen, len - wtlen + 1); |
| 51 | return 0; |
| 52 | } |
| 53 | /* work tree might match beginning of a symlink to work tree */ |
| 54 | off = wtlen; |
| 55 | } |
| 56 | path0 = path; |
Martin Erik Werner | 6127ff6 | 2014-04-24 15:06:09 +0200 | [diff] [blame] | 57 | path += off; |
Martin Erik Werner | ddc2a62 | 2014-02-04 15:25:19 +0100 | [diff] [blame] | 58 | |
| 59 | /* check each '/'-terminated level */ |
| 60 | while (*path) { |
| 61 | path++; |
| 62 | if (*path == '/') { |
| 63 | *path = '\0'; |
Alexandr Miloslavskiy | 3d7747e | 2020-03-10 13:11:22 +0000 | [diff] [blame] | 64 | strbuf_realpath(&realpath, path0, 1); |
| 65 | if (fspathcmp(realpath.buf, work_tree) == 0) { |
Martin Erik Werner | ddc2a62 | 2014-02-04 15:25:19 +0100 | [diff] [blame] | 66 | memmove(path0, path + 1, len - (path - path0)); |
Alexandr Miloslavskiy | 3d7747e | 2020-03-10 13:11:22 +0000 | [diff] [blame] | 67 | strbuf_release(&realpath); |
Martin Erik Werner | ddc2a62 | 2014-02-04 15:25:19 +0100 | [diff] [blame] | 68 | return 0; |
| 69 | } |
| 70 | *path = '/'; |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | /* check whole path */ |
Alexandr Miloslavskiy | 3d7747e | 2020-03-10 13:11:22 +0000 | [diff] [blame] | 75 | strbuf_realpath(&realpath, path0, 1); |
| 76 | if (fspathcmp(realpath.buf, work_tree) == 0) { |
Martin Erik Werner | ddc2a62 | 2014-02-04 15:25:19 +0100 | [diff] [blame] | 77 | *path0 = '\0'; |
Alexandr Miloslavskiy | 3d7747e | 2020-03-10 13:11:22 +0000 | [diff] [blame] | 78 | strbuf_release(&realpath); |
Martin Erik Werner | ddc2a62 | 2014-02-04 15:25:19 +0100 | [diff] [blame] | 79 | return 0; |
| 80 | } |
| 81 | |
Alexandr Miloslavskiy | 3d7747e | 2020-03-10 13:11:22 +0000 | [diff] [blame] | 82 | strbuf_release(&realpath); |
Martin Erik Werner | ddc2a62 | 2014-02-04 15:25:19 +0100 | [diff] [blame] | 83 | return -1; |
| 84 | } |
| 85 | |
| 86 | /* |
Nguyễn Thái Ngọc Duy | 645a29c | 2013-07-14 15:36:03 +0700 | [diff] [blame] | 87 | * Normalize "path", prepending the "prefix" for relative paths. If |
| 88 | * remaining_prefix is not NULL, return the actual prefix still |
| 89 | * remains in the path. For example, prefix = sub1/sub2/ and path is |
| 90 | * |
| 91 | * foo -> sub1/sub2/foo (full prefix) |
| 92 | * ../foo -> sub1/foo (remaining prefix is sub1/) |
| 93 | * ../../bar -> bar (no remaining prefix) |
| 94 | * ../../sub1/sub2/foo -> sub1/sub2/foo (but no remaining prefix) |
| 95 | * `pwd`/../bar -> sub1/bar (no remaining prefix) |
| 96 | */ |
| 97 | char *prefix_path_gently(const char *prefix, int len, |
| 98 | int *remaining_prefix, const char *path) |
Linus Torvalds | f332726 | 2005-08-16 20:44:32 -0700 | [diff] [blame] | 99 | { |
Junio C Hamano | 6b5ee13 | 2005-09-21 00:00:47 -0700 | [diff] [blame] | 100 | const char *orig = path; |
Carlo Marcelo Arenas Belon | 18e051a | 2010-12-27 02:54:37 -0800 | [diff] [blame] | 101 | char *sanitized; |
| 102 | if (is_absolute_path(orig)) { |
Jeff King | 3733e69 | 2016-02-22 17:44:28 -0500 | [diff] [blame] | 103 | sanitized = xmallocz(strlen(path)); |
Nguyễn Thái Ngọc Duy | 645a29c | 2013-07-14 15:36:03 +0700 | [diff] [blame] | 104 | if (remaining_prefix) |
| 105 | *remaining_prefix = 0; |
Martin Erik Werner | 655ee9e | 2014-02-04 15:25:20 +0100 | [diff] [blame] | 106 | if (normalize_path_copy_len(sanitized, path, remaining_prefix)) { |
| 107 | free(sanitized); |
| 108 | return NULL; |
| 109 | } |
| 110 | if (abspath_part_inside_repo(sanitized)) { |
| 111 | free(sanitized); |
| 112 | return NULL; |
| 113 | } |
Carlo Marcelo Arenas Belon | 18e051a | 2010-12-27 02:54:37 -0800 | [diff] [blame] | 114 | } else { |
Junio C Hamano | 24041d6 | 2016-04-07 12:38:18 -0700 | [diff] [blame] | 115 | sanitized = xstrfmt("%.*s%s", len, len ? prefix : "", path); |
Nguyễn Thái Ngọc Duy | 645a29c | 2013-07-14 15:36:03 +0700 | [diff] [blame] | 116 | if (remaining_prefix) |
| 117 | *remaining_prefix = len; |
Martin Erik Werner | 655ee9e | 2014-02-04 15:25:20 +0100 | [diff] [blame] | 118 | if (normalize_path_copy_len(sanitized, sanitized, remaining_prefix)) { |
Jeff King | 546e0fd | 2012-06-21 14:09:50 -0400 | [diff] [blame] | 119 | free(sanitized); |
| 120 | return NULL; |
Junio C Hamano | d089eba | 2008-01-28 22:44:27 -0800 | [diff] [blame] | 121 | } |
Linus Torvalds | f332726 | 2005-08-16 20:44:32 -0700 | [diff] [blame] | 122 | } |
Junio C Hamano | d089eba | 2008-01-28 22:44:27 -0800 | [diff] [blame] | 123 | return sanitized; |
Linus Torvalds | f332726 | 2005-08-16 20:44:32 -0700 | [diff] [blame] | 124 | } |
| 125 | |
Jeff King | 546e0fd | 2012-06-21 14:09:50 -0400 | [diff] [blame] | 126 | char *prefix_path(const char *prefix, int len, const char *path) |
| 127 | { |
Nguyễn Thái Ngọc Duy | 645a29c | 2013-07-14 15:36:03 +0700 | [diff] [blame] | 128 | char *r = prefix_path_gently(prefix, len, NULL, path); |
Emily Shaffer | 5c20398 | 2020-03-02 20:05:06 -0800 | [diff] [blame] | 129 | if (!r) { |
| 130 | const char *hint_path = get_git_work_tree(); |
| 131 | if (!hint_path) |
| 132 | hint_path = get_git_dir(); |
Emily Shaffer | e0020b2 | 2020-02-14 17:00:13 -0800 | [diff] [blame] | 133 | die(_("'%s' is outside repository at '%s'"), path, |
Emily Shaffer | 5c20398 | 2020-03-02 20:05:06 -0800 | [diff] [blame] | 134 | absolute_path(hint_path)); |
| 135 | } |
Jeff King | 546e0fd | 2012-06-21 14:09:50 -0400 | [diff] [blame] | 136 | return r; |
| 137 | } |
| 138 | |
| 139 | int path_inside_repo(const char *prefix, const char *path) |
| 140 | { |
| 141 | int len = prefix ? strlen(prefix) : 0; |
Nguyễn Thái Ngọc Duy | 645a29c | 2013-07-14 15:36:03 +0700 | [diff] [blame] | 142 | char *r = prefix_path_gently(prefix, len, NULL, path); |
Jeff King | 546e0fd | 2012-06-21 14:09:50 -0400 | [diff] [blame] | 143 | if (r) { |
| 144 | free(r); |
| 145 | return 1; |
| 146 | } |
| 147 | return 0; |
| 148 | } |
| 149 | |
Junio C Hamano | c6e8c80 | 2009-10-18 00:27:24 -0700 | [diff] [blame] | 150 | int check_filename(const char *prefix, const char *arg) |
| 151 | { |
Jeff King | e4da43b | 2017-03-20 21:28:49 -0400 | [diff] [blame] | 152 | char *to_free = NULL; |
Junio C Hamano | c6e8c80 | 2009-10-18 00:27:24 -0700 | [diff] [blame] | 153 | struct stat st; |
| 154 | |
Jeff King | d51c6ee | 2017-05-26 15:07:42 -0400 | [diff] [blame] | 155 | if (skip_prefix(arg, ":/", &arg)) { |
| 156 | if (!*arg) /* ":/" is root dir, always exists */ |
Nguyễn Thái Ngọc Duy | 4db86e8 | 2013-01-21 20:00:48 +0700 | [diff] [blame] | 157 | return 1; |
Jeff King | a08cbcd | 2017-05-26 15:07:31 -0400 | [diff] [blame] | 158 | prefix = NULL; |
Jeff King | 42471bc | 2017-05-26 15:08:39 -0400 | [diff] [blame] | 159 | } else if (skip_prefix(arg, ":!", &arg) || |
| 160 | skip_prefix(arg, ":^", &arg)) { |
| 161 | if (!*arg) /* excluding everything is silly, but allowed */ |
| 162 | return 1; |
Jeff King | a08cbcd | 2017-05-26 15:07:31 -0400 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | if (prefix) |
| 166 | arg = to_free = prefix_filename(prefix, arg); |
| 167 | |
| 168 | if (!lstat(arg, &st)) { |
Jeff King | e4da43b | 2017-03-20 21:28:49 -0400 | [diff] [blame] | 169 | free(to_free); |
Junio C Hamano | c6e8c80 | 2009-10-18 00:27:24 -0700 | [diff] [blame] | 170 | return 1; /* file exists */ |
Jeff King | e4da43b | 2017-03-20 21:28:49 -0400 | [diff] [blame] | 171 | } |
Junio C Hamano | 93dd544 | 2017-06-13 13:47:06 -0700 | [diff] [blame] | 172 | if (is_missing_file_error(errno)) { |
Jeff King | e4da43b | 2017-03-20 21:28:49 -0400 | [diff] [blame] | 173 | free(to_free); |
Junio C Hamano | c6e8c80 | 2009-10-18 00:27:24 -0700 | [diff] [blame] | 174 | return 0; /* file does not exist */ |
Jeff King | e4da43b | 2017-03-20 21:28:49 -0400 | [diff] [blame] | 175 | } |
Alexander Shopov | fc045fe | 2018-02-13 14:19:15 +0100 | [diff] [blame] | 176 | die_errno(_("failed to stat '%s'"), arg); |
Junio C Hamano | c6e8c80 | 2009-10-18 00:27:24 -0700 | [diff] [blame] | 177 | } |
| 178 | |
Nguyễn Thái Ngọc Duy | e270f42 | 2019-04-16 16:33:39 +0700 | [diff] [blame] | 179 | static void NORETURN die_verify_filename(struct repository *r, |
| 180 | const char *prefix, |
Matthieu Moy | 023e37c | 2012-06-18 20:18:21 +0200 | [diff] [blame] | 181 | const char *arg, |
| 182 | int diagnose_misspelt_rev) |
Matthieu Moy | 009fee4 | 2009-12-07 11:10:50 +0100 | [diff] [blame] | 183 | { |
Matthieu Moy | 023e37c | 2012-06-18 20:18:21 +0200 | [diff] [blame] | 184 | if (!diagnose_misspelt_rev) |
Vasco Almeida | ab33a76 | 2016-06-17 20:21:06 +0000 | [diff] [blame] | 185 | die(_("%s: no such path in the working tree.\n" |
| 186 | "Use 'git <command> -- <path>...' to specify paths that do not exist locally."), |
Matthieu Moy | 023e37c | 2012-06-18 20:18:21 +0200 | [diff] [blame] | 187 | arg); |
Junio C Hamano | 0e539dc | 2011-05-10 12:05:01 -0700 | [diff] [blame] | 188 | /* |
| 189 | * Saying "'(icase)foo' does not exist in the index" when the |
| 190 | * user gave us ":(icase)foo" is just stupid. A magic pathspec |
| 191 | * begins with a colon and is followed by a non-alnum; do not |
Junio C Hamano | 8c135ea | 2012-07-02 11:01:25 -0700 | [diff] [blame] | 192 | * let maybe_die_on_misspelt_object_name() even trigger. |
Junio C Hamano | 0e539dc | 2011-05-10 12:05:01 -0700 | [diff] [blame] | 193 | */ |
| 194 | if (!(arg[0] == ':' && !isalnum(arg[1]))) |
Nguyễn Thái Ngọc Duy | e270f42 | 2019-04-16 16:33:39 +0700 | [diff] [blame] | 195 | maybe_die_on_misspelt_object_name(r, arg, prefix); |
Junio C Hamano | 0e539dc | 2011-05-10 12:05:01 -0700 | [diff] [blame] | 196 | |
Matthieu Moy | 009fee4 | 2009-12-07 11:10:50 +0100 | [diff] [blame] | 197 | /* ... or fall back the most general message. */ |
Vasco Almeida | ab33a76 | 2016-06-17 20:21:06 +0000 | [diff] [blame] | 198 | die(_("ambiguous argument '%s': unknown revision or path not in the working tree.\n" |
| 199 | "Use '--' to separate paths from revisions, like this:\n" |
| 200 | "'git <command> [<revision>...] -- [<file>...]'"), arg); |
Matthieu Moy | 009fee4 | 2009-12-07 11:10:50 +0100 | [diff] [blame] | 201 | |
| 202 | } |
| 203 | |
Linus Torvalds | e23d0b4 | 2006-04-26 10:15:54 -0700 | [diff] [blame] | 204 | /* |
Jeff King | c99eddd | 2017-05-26 15:10:31 -0400 | [diff] [blame] | 205 | * Check for arguments that don't resolve as actual files, |
| 206 | * but which look sufficiently like pathspecs that we'll consider |
| 207 | * them such for the purposes of rev/pathspec DWIM parsing. |
| 208 | */ |
| 209 | static int looks_like_pathspec(const char *arg) |
| 210 | { |
Jeff King | 39e21c6 | 2020-01-24 19:00:51 -0500 | [diff] [blame] | 211 | const char *p; |
| 212 | int escaped = 0; |
| 213 | |
| 214 | /* |
| 215 | * Wildcard characters imply the user is looking to match pathspecs |
| 216 | * that aren't in the filesystem. Note that this doesn't include |
| 217 | * backslash even though it's a glob special; by itself it doesn't |
| 218 | * cause any increase in the match. Likewise ignore backslash-escaped |
| 219 | * wildcard characters. |
| 220 | */ |
| 221 | for (p = arg; *p; p++) { |
| 222 | if (escaped) { |
| 223 | escaped = 0; |
| 224 | } else if (is_glob_special(*p)) { |
| 225 | if (*p == '\\') |
| 226 | escaped = 1; |
| 227 | else |
| 228 | return 1; |
| 229 | } |
| 230 | } |
Jeff King | c99eddd | 2017-05-26 15:10:31 -0400 | [diff] [blame] | 231 | |
| 232 | /* long-form pathspec magic */ |
| 233 | if (starts_with(arg, ":(")) |
| 234 | return 1; |
| 235 | |
| 236 | return 0; |
| 237 | } |
| 238 | |
| 239 | /* |
Linus Torvalds | e23d0b4 | 2006-04-26 10:15:54 -0700 | [diff] [blame] | 240 | * Verify a filename that we got as an argument for a pathspec |
| 241 | * entry. Note that a filename that begins with "-" never verifies |
| 242 | * as true, because even if such a filename were to exist, we want |
| 243 | * it to be preceded by the "--" marker (or we want the user to |
| 244 | * use a format like "./-filename") |
Matthieu Moy | 023e37c | 2012-06-18 20:18:21 +0200 | [diff] [blame] | 245 | * |
| 246 | * The "diagnose_misspelt_rev" is used to provide a user-friendly |
| 247 | * diagnosis when dying upon finding that "name" is not a pathname. |
| 248 | * If set to 1, the diagnosis will try to diagnose "name" as an |
| 249 | * invalid object name (e.g. HEAD:foo). If set to 0, the diagnosis |
| 250 | * will only complain about an inexisting file. |
| 251 | * |
| 252 | * This function is typically called to check that a "file or rev" |
| 253 | * argument is unambiguous. In this case, the caller will want |
| 254 | * diagnose_misspelt_rev == 1 when verifying the first non-rev |
| 255 | * argument (which could have been a revision), and |
| 256 | * diagnose_misspelt_rev == 0 for the next ones (because we already |
| 257 | * saw a filename, there's not ambiguity anymore). |
Linus Torvalds | e23d0b4 | 2006-04-26 10:15:54 -0700 | [diff] [blame] | 258 | */ |
Matthieu Moy | 023e37c | 2012-06-18 20:18:21 +0200 | [diff] [blame] | 259 | void verify_filename(const char *prefix, |
| 260 | const char *arg, |
| 261 | int diagnose_misspelt_rev) |
Linus Torvalds | e23d0b4 | 2006-04-26 10:15:54 -0700 | [diff] [blame] | 262 | { |
Linus Torvalds | e23d0b4 | 2006-04-26 10:15:54 -0700 | [diff] [blame] | 263 | if (*arg == '-') |
Alexander Shopov | fc045fe | 2018-02-13 14:19:15 +0100 | [diff] [blame] | 264 | die(_("option '%s' must come before non-option arguments"), arg); |
Jeff King | 2cb47ab | 2017-05-26 15:10:53 -0400 | [diff] [blame] | 265 | if (looks_like_pathspec(arg) || check_filename(prefix, arg)) |
Linus Torvalds | e23d0b4 | 2006-04-26 10:15:54 -0700 | [diff] [blame] | 266 | return; |
Nguyễn Thái Ngọc Duy | e270f42 | 2019-04-16 16:33:39 +0700 | [diff] [blame] | 267 | die_verify_filename(the_repository, prefix, arg, diagnose_misspelt_rev); |
Linus Torvalds | e23d0b4 | 2006-04-26 10:15:54 -0700 | [diff] [blame] | 268 | } |
| 269 | |
Junio C Hamano | ea92f41 | 2006-04-26 15:09:27 -0700 | [diff] [blame] | 270 | /* |
| 271 | * Opposite of the above: the command line did not have -- marker |
| 272 | * and we parsed the arg as a refname. It should not be interpretable |
| 273 | * as a filename. |
| 274 | */ |
| 275 | void verify_non_filename(const char *prefix, const char *arg) |
| 276 | { |
Matthias Lederhofer | 7ae3df8 | 2007-06-03 16:48:16 +0200 | [diff] [blame] | 277 | if (!is_inside_work_tree() || is_inside_git_dir()) |
Johannes Schindelin | 6802563 | 2007-01-20 03:09:34 +0100 | [diff] [blame] | 278 | return; |
Junio C Hamano | ea92f41 | 2006-04-26 15:09:27 -0700 | [diff] [blame] | 279 | if (*arg == '-') |
| 280 | return; /* flag */ |
Junio C Hamano | c6e8c80 | 2009-10-18 00:27:24 -0700 | [diff] [blame] | 281 | if (!check_filename(prefix, arg)) |
| 282 | return; |
Vasco Almeida | ab33a76 | 2016-06-17 20:21:06 +0000 | [diff] [blame] | 283 | die(_("ambiguous argument '%s': both revision and filename\n" |
| 284 | "Use '--' to separate paths from revisions, like this:\n" |
| 285 | "'git <command> [<revision>...] -- [<file>...]'"), arg); |
Junio C Hamano | ea92f41 | 2006-04-26 15:09:27 -0700 | [diff] [blame] | 286 | } |
| 287 | |
Nguyễn Thái Ngọc Duy | 31e26eb | 2014-11-30 15:24:44 +0700 | [diff] [blame] | 288 | int get_common_dir(struct strbuf *sb, const char *gitdir) |
Nguyễn Thái Ngọc Duy | 4dc4e14 | 2014-11-30 15:24:41 +0700 | [diff] [blame] | 289 | { |
Max Kirillov | 11f9dd7 | 2015-09-14 01:17:42 +0300 | [diff] [blame] | 290 | const char *git_env_common_dir = getenv(GIT_COMMON_DIR_ENVIRONMENT); |
| 291 | if (git_env_common_dir) { |
| 292 | strbuf_addstr(sb, git_env_common_dir); |
| 293 | return 1; |
| 294 | } else { |
| 295 | return get_common_dir_noenv(sb, gitdir); |
| 296 | } |
| 297 | } |
| 298 | |
| 299 | int get_common_dir_noenv(struct strbuf *sb, const char *gitdir) |
| 300 | { |
Nguyễn Thái Ngọc Duy | 4dc4e14 | 2014-11-30 15:24:41 +0700 | [diff] [blame] | 301 | struct strbuf data = STRBUF_INIT; |
| 302 | struct strbuf path = STRBUF_INIT; |
Nguyễn Thái Ngọc Duy | 31e26eb | 2014-11-30 15:24:44 +0700 | [diff] [blame] | 303 | int ret = 0; |
Max Kirillov | 11f9dd7 | 2015-09-14 01:17:42 +0300 | [diff] [blame] | 304 | |
Nguyễn Thái Ngọc Duy | 4dc4e14 | 2014-11-30 15:24:41 +0700 | [diff] [blame] | 305 | strbuf_addf(&path, "%s/commondir", gitdir); |
| 306 | if (file_exists(path.buf)) { |
| 307 | if (strbuf_read_file(&data, path.buf, 0) <= 0) |
| 308 | die_errno(_("failed to read %s"), path.buf); |
| 309 | while (data.len && (data.buf[data.len - 1] == '\n' || |
| 310 | data.buf[data.len - 1] == '\r')) |
| 311 | data.len--; |
| 312 | data.buf[data.len] = '\0'; |
| 313 | strbuf_reset(&path); |
| 314 | if (!is_absolute_path(data.buf)) |
| 315 | strbuf_addf(&path, "%s/", gitdir); |
| 316 | strbuf_addbuf(&path, &data); |
René Scharfe | 33ad9dd | 2017-02-25 17:00:33 +0100 | [diff] [blame] | 317 | strbuf_add_real_path(sb, path.buf); |
Nguyễn Thái Ngọc Duy | 31e26eb | 2014-11-30 15:24:44 +0700 | [diff] [blame] | 318 | ret = 1; |
Brandon Williams | 4ac9006 | 2016-12-12 10:16:55 -0800 | [diff] [blame] | 319 | } else { |
Nguyễn Thái Ngọc Duy | 4dc4e14 | 2014-11-30 15:24:41 +0700 | [diff] [blame] | 320 | strbuf_addstr(sb, gitdir); |
Brandon Williams | 4ac9006 | 2016-12-12 10:16:55 -0800 | [diff] [blame] | 321 | } |
| 322 | |
Nguyễn Thái Ngọc Duy | 4dc4e14 | 2014-11-30 15:24:41 +0700 | [diff] [blame] | 323 | strbuf_release(&data); |
| 324 | strbuf_release(&path); |
Nguyễn Thái Ngọc Duy | 31e26eb | 2014-11-30 15:24:44 +0700 | [diff] [blame] | 325 | return ret; |
Nguyễn Thái Ngọc Duy | 4dc4e14 | 2014-11-30 15:24:41 +0700 | [diff] [blame] | 326 | } |
Linus Torvalds | d288a70 | 2005-08-16 18:06:34 -0700 | [diff] [blame] | 327 | |
Linus Torvalds | 5f5608b | 2005-08-27 13:54:42 -0700 | [diff] [blame] | 328 | /* |
Shawn O. Pearce | ad1a382 | 2006-12-30 23:30:19 -0500 | [diff] [blame] | 329 | * Test if it looks like we're at a git directory. |
Junio C Hamano | 5e7bfe2 | 2005-11-25 15:43:41 -0800 | [diff] [blame] | 330 | * We want to see: |
Linus Torvalds | 5f5608b | 2005-08-27 13:54:42 -0700 | [diff] [blame] | 331 | * |
Jim Meyering | 790296f | 2008-01-03 15:18:07 +0100 | [diff] [blame] | 332 | * - either an objects/ directory _or_ the proper |
Linus Torvalds | 5f5608b | 2005-08-27 13:54:42 -0700 | [diff] [blame] | 333 | * GIT_OBJECT_DIRECTORY environment variable |
Shawn O. Pearce | ad1a382 | 2006-12-30 23:30:19 -0500 | [diff] [blame] | 334 | * - a refs/ directory |
Junio C Hamano | 8098a17 | 2005-09-30 14:26:57 -0700 | [diff] [blame] | 335 | * - either a HEAD symlink or a HEAD file that is formatted as |
Junio C Hamano | c847f53 | 2007-01-01 23:31:08 -0800 | [diff] [blame] | 336 | * a proper "ref:", or a regular file HEAD that has a properly |
| 337 | * formatted sha1 object name. |
Linus Torvalds | 5f5608b | 2005-08-27 13:54:42 -0700 | [diff] [blame] | 338 | */ |
Jeff King | b3256eb | 2012-02-02 16:59:13 -0500 | [diff] [blame] | 339 | int is_git_directory(const char *suspect) |
Linus Torvalds | 5f5608b | 2005-08-27 13:54:42 -0700 | [diff] [blame] | 340 | { |
Nguyễn Thái Ngọc Duy | 1d186b6 | 2014-11-30 15:24:40 +0700 | [diff] [blame] | 341 | struct strbuf path = STRBUF_INIT; |
| 342 | int ret = 0; |
| 343 | size_t len; |
Shawn O. Pearce | ad1a382 | 2006-12-30 23:30:19 -0500 | [diff] [blame] | 344 | |
Nguyễn Thái Ngọc Duy | 4dc4e14 | 2014-11-30 15:24:41 +0700 | [diff] [blame] | 345 | /* Check worktree-related signatures */ |
Jeff King | fa4d8c7 | 2017-11-03 13:58:02 +0100 | [diff] [blame] | 346 | strbuf_addstr(&path, suspect); |
| 347 | strbuf_complete(&path, '/'); |
| 348 | strbuf_addstr(&path, "HEAD"); |
Nguyễn Thái Ngọc Duy | 4dc4e14 | 2014-11-30 15:24:41 +0700 | [diff] [blame] | 349 | if (validate_headref(path.buf)) |
| 350 | goto done; |
| 351 | |
| 352 | strbuf_reset(&path); |
| 353 | get_common_dir(&path, suspect); |
Nguyễn Thái Ngọc Duy | 1d186b6 | 2014-11-30 15:24:40 +0700 | [diff] [blame] | 354 | len = path.len; |
Nguyễn Thái Ngọc Duy | 4dc4e14 | 2014-11-30 15:24:41 +0700 | [diff] [blame] | 355 | |
| 356 | /* Check non-worktree-related signatures */ |
Shawn O. Pearce | ad1a382 | 2006-12-30 23:30:19 -0500 | [diff] [blame] | 357 | if (getenv(DB_ENVIRONMENT)) { |
| 358 | if (access(getenv(DB_ENVIRONMENT), X_OK)) |
Nguyễn Thái Ngọc Duy | 1d186b6 | 2014-11-30 15:24:40 +0700 | [diff] [blame] | 359 | goto done; |
Shawn O. Pearce | ad1a382 | 2006-12-30 23:30:19 -0500 | [diff] [blame] | 360 | } |
| 361 | else { |
Nguyễn Thái Ngọc Duy | 4dc4e14 | 2014-11-30 15:24:41 +0700 | [diff] [blame] | 362 | strbuf_setlen(&path, len); |
Nguyễn Thái Ngọc Duy | 1d186b6 | 2014-11-30 15:24:40 +0700 | [diff] [blame] | 363 | strbuf_addstr(&path, "/objects"); |
| 364 | if (access(path.buf, X_OK)) |
| 365 | goto done; |
Shawn O. Pearce | ad1a382 | 2006-12-30 23:30:19 -0500 | [diff] [blame] | 366 | } |
| 367 | |
Nguyễn Thái Ngọc Duy | 1d186b6 | 2014-11-30 15:24:40 +0700 | [diff] [blame] | 368 | strbuf_setlen(&path, len); |
| 369 | strbuf_addstr(&path, "/refs"); |
| 370 | if (access(path.buf, X_OK)) |
| 371 | goto done; |
Shawn O. Pearce | ad1a382 | 2006-12-30 23:30:19 -0500 | [diff] [blame] | 372 | |
Nguyễn Thái Ngọc Duy | 1d186b6 | 2014-11-30 15:24:40 +0700 | [diff] [blame] | 373 | ret = 1; |
| 374 | done: |
| 375 | strbuf_release(&path); |
| 376 | return ret; |
Linus Torvalds | 5f5608b | 2005-08-27 13:54:42 -0700 | [diff] [blame] | 377 | } |
| 378 | |
Jeff King | ffd036b | 2016-01-22 17:27:33 -0500 | [diff] [blame] | 379 | int is_nonbare_repository_dir(struct strbuf *path) |
| 380 | { |
| 381 | int ret = 0; |
| 382 | int gitfile_error; |
| 383 | size_t orig_path_len = path->len; |
| 384 | assert(orig_path_len != 0); |
| 385 | strbuf_complete(path, '/'); |
| 386 | strbuf_addstr(path, ".git"); |
| 387 | if (read_gitfile_gently(path->buf, &gitfile_error) || is_git_directory(path->buf)) |
| 388 | ret = 1; |
| 389 | if (gitfile_error == READ_GITFILE_ERR_OPEN_FAILED || |
| 390 | gitfile_error == READ_GITFILE_ERR_READ_FAILED) |
| 391 | ret = 1; |
| 392 | strbuf_setlen(path, orig_path_len); |
| 393 | return ret; |
| 394 | } |
| 395 | |
Johannes Schindelin | 6802563 | 2007-01-20 03:09:34 +0100 | [diff] [blame] | 396 | int is_inside_git_dir(void) |
| 397 | { |
Johannes Schindelin | e90fdc3 | 2007-08-01 01:30:14 +0100 | [diff] [blame] | 398 | if (inside_git_dir < 0) |
| 399 | inside_git_dir = is_inside_dir(get_git_dir()); |
| 400 | return inside_git_dir; |
Matthias Lederhofer | 892c41b | 2007-06-06 09:10:42 +0200 | [diff] [blame] | 401 | } |
Johannes Schindelin | 6802563 | 2007-01-20 03:09:34 +0100 | [diff] [blame] | 402 | |
Matthias Lederhofer | 892c41b | 2007-06-06 09:10:42 +0200 | [diff] [blame] | 403 | int is_inside_work_tree(void) |
| 404 | { |
Johannes Schindelin | e90fdc3 | 2007-08-01 01:30:14 +0100 | [diff] [blame] | 405 | if (inside_work_tree < 0) |
| 406 | inside_work_tree = is_inside_dir(get_git_work_tree()); |
| 407 | return inside_work_tree; |
Matthias Lederhofer | 892c41b | 2007-06-06 09:10:42 +0200 | [diff] [blame] | 408 | } |
| 409 | |
Junio C Hamano | f3fa183 | 2007-11-08 15:35:32 -0800 | [diff] [blame] | 410 | void setup_work_tree(void) |
| 411 | { |
Jeff King | 8500e0d | 2018-03-30 14:35:08 -0400 | [diff] [blame] | 412 | const char *work_tree; |
Johannes Schindelin | 354e653 | 2007-11-09 11:34:07 +0000 | [diff] [blame] | 413 | static int initialized = 0; |
| 414 | |
| 415 | if (initialized) |
| 416 | return; |
Jeff King | fada767 | 2015-05-29 02:49:10 -0400 | [diff] [blame] | 417 | |
| 418 | if (work_tree_config_is_bogus) |
Alexander Shopov | fc045fe | 2018-02-13 14:19:15 +0100 | [diff] [blame] | 419 | die(_("unable to set up work tree using invalid config")); |
Jeff King | fada767 | 2015-05-29 02:49:10 -0400 | [diff] [blame] | 420 | |
Johannes Schindelin | 354e653 | 2007-11-09 11:34:07 +0000 | [diff] [blame] | 421 | work_tree = get_git_work_tree(); |
Jeff King | 8500e0d | 2018-03-30 14:35:08 -0400 | [diff] [blame] | 422 | if (!work_tree || chdir_notify(work_tree)) |
Alexander Shopov | fc045fe | 2018-02-13 14:19:15 +0100 | [diff] [blame] | 423 | die(_("this operation must be run in a work tree")); |
Nguyễn Thái Ngọc Duy | 0ed7481 | 2010-12-27 08:26:04 +0700 | [diff] [blame] | 424 | |
| 425 | /* |
| 426 | * Make sure subsequent git processes find correct worktree |
| 427 | * if $GIT_WORK_TREE is set relative |
| 428 | */ |
| 429 | if (getenv(GIT_WORK_TREE_ENVIRONMENT)) |
| 430 | setenv(GIT_WORK_TREE_ENVIRONMENT, ".", 1); |
| 431 | |
Johannes Schindelin | 354e653 | 2007-11-09 11:34:07 +0000 | [diff] [blame] | 432 | initialized = 1; |
Mike Hommey | 59f0f2f | 2007-11-03 12:23:11 +0100 | [diff] [blame] | 433 | } |
| 434 | |
Nguyễn Thái Ngọc Duy | 58b284a | 2018-10-21 16:02:28 +0200 | [diff] [blame] | 435 | static int read_worktree_config(const char *var, const char *value, void *vdata) |
| 436 | { |
| 437 | struct repository_format *data = vdata; |
| 438 | |
| 439 | if (strcmp(var, "core.bare") == 0) { |
| 440 | data->is_bare = git_config_bool(var, value); |
| 441 | } else if (strcmp(var, "core.worktree") == 0) { |
| 442 | if (!value) |
| 443 | return config_error_nonbool(var); |
Martin Ågren | 1301997 | 2019-01-22 22:45:47 +0100 | [diff] [blame] | 444 | free(data->work_tree); |
Nguyễn Thái Ngọc Duy | 58b284a | 2018-10-21 16:02:28 +0200 | [diff] [blame] | 445 | data->work_tree = xstrdup(value); |
| 446 | } |
| 447 | return 0; |
| 448 | } |
| 449 | |
Jeff King | 2cc7c2c | 2016-03-11 17:37:07 -0500 | [diff] [blame] | 450 | static int check_repo_format(const char *var, const char *value, void *vdata) |
Nguyễn Thái Ngọc Duy | 31e26eb | 2014-11-30 15:24:44 +0700 | [diff] [blame] | 451 | { |
Jeff King | 2cc7c2c | 2016-03-11 17:37:07 -0500 | [diff] [blame] | 452 | struct repository_format *data = vdata; |
Jeff King | 00a09d5 | 2015-06-23 06:53:58 -0400 | [diff] [blame] | 453 | const char *ext; |
| 454 | |
Nguyễn Thái Ngọc Duy | 31e26eb | 2014-11-30 15:24:44 +0700 | [diff] [blame] | 455 | if (strcmp(var, "core.repositoryformatversion") == 0) |
Jeff King | 2cc7c2c | 2016-03-11 17:37:07 -0500 | [diff] [blame] | 456 | data->version = git_config_int(var, value); |
Jeff King | 00a09d5 | 2015-06-23 06:53:58 -0400 | [diff] [blame] | 457 | else if (skip_prefix(var, "extensions.", &ext)) { |
| 458 | /* |
| 459 | * record any known extensions here; otherwise, |
| 460 | * we fall through to recording it as unknown, and |
| 461 | * check_repository_format will complain |
| 462 | */ |
| 463 | if (!strcmp(ext, "noop")) |
| 464 | ; |
Jeff King | 067fbd4 | 2015-06-23 06:54:11 -0400 | [diff] [blame] | 465 | else if (!strcmp(ext, "preciousobjects")) |
Jeff King | 2cc7c2c | 2016-03-11 17:37:07 -0500 | [diff] [blame] | 466 | data->precious_objects = git_config_bool(var, value); |
Jonathan Tan | 75b97fe | 2017-12-05 16:58:43 +0000 | [diff] [blame] | 467 | else if (!strcmp(ext, "partialclone")) { |
| 468 | if (!value) |
| 469 | return config_error_nonbool(var); |
| 470 | data->partial_clone = xstrdup(value); |
Nguyễn Thái Ngọc Duy | 58b284a | 2018-10-21 16:02:28 +0200 | [diff] [blame] | 471 | } else if (!strcmp(ext, "worktreeconfig")) |
| 472 | data->worktree_config = git_config_bool(var, value); |
| 473 | else |
Jeff King | 2cc7c2c | 2016-03-11 17:37:07 -0500 | [diff] [blame] | 474 | string_list_append(&data->unknown_extensions, ext); |
Jeff King | 00a09d5 | 2015-06-23 06:53:58 -0400 | [diff] [blame] | 475 | } |
Nguyễn Thái Ngọc Duy | 58b284a | 2018-10-21 16:02:28 +0200 | [diff] [blame] | 476 | |
| 477 | return read_worktree_config(var, value, vdata); |
Nguyễn Thái Ngọc Duy | 31e26eb | 2014-11-30 15:24:44 +0700 | [diff] [blame] | 478 | } |
| 479 | |
brian m. carlson | abade65 | 2017-11-12 21:28:51 +0000 | [diff] [blame] | 480 | static int check_repository_format_gently(const char *gitdir, struct repository_format *candidate, int *nongit_ok) |
Nguyễn Thái Ngọc Duy | 9459aa7 | 2007-12-05 20:33:32 +0700 | [diff] [blame] | 481 | { |
Nguyễn Thái Ngọc Duy | 7d0fb0d | 2014-11-30 15:24:42 +0700 | [diff] [blame] | 482 | struct strbuf sb = STRBUF_INIT; |
Jeff King | 2cc7c2c | 2016-03-11 17:37:07 -0500 | [diff] [blame] | 483 | struct strbuf err = STRBUF_INIT; |
Jeff King | 652f18e | 2016-03-11 17:37:14 -0500 | [diff] [blame] | 484 | int has_common; |
Nguyễn Thái Ngọc Duy | 337e51c | 2010-11-26 22:32:34 +0700 | [diff] [blame] | 485 | |
Jeff King | 652f18e | 2016-03-11 17:37:14 -0500 | [diff] [blame] | 486 | has_common = get_common_dir(&sb, gitdir); |
Nguyễn Thái Ngọc Duy | e61a509 | 2014-11-30 15:24:43 +0700 | [diff] [blame] | 487 | strbuf_addstr(&sb, "/config"); |
brian m. carlson | abade65 | 2017-11-12 21:28:51 +0000 | [diff] [blame] | 488 | read_repository_format(candidate, sb.buf); |
Jeff King | 2cc7c2c | 2016-03-11 17:37:07 -0500 | [diff] [blame] | 489 | strbuf_release(&sb); |
Nguyễn Thái Ngọc Duy | e61a509 | 2014-11-30 15:24:43 +0700 | [diff] [blame] | 490 | |
Nguyễn Thái Ngọc Duy | 337e51c | 2010-11-26 22:32:34 +0700 | [diff] [blame] | 491 | /* |
Jeff King | 2cc7c2c | 2016-03-11 17:37:07 -0500 | [diff] [blame] | 492 | * For historical use of check_repository_format() in git-init, |
| 493 | * we treat a missing config as a silent "ok", even when nongit_ok |
| 494 | * is unset. |
Nguyễn Thái Ngọc Duy | 337e51c | 2010-11-26 22:32:34 +0700 | [diff] [blame] | 495 | */ |
brian m. carlson | abade65 | 2017-11-12 21:28:51 +0000 | [diff] [blame] | 496 | if (candidate->version < 0) |
Jeff King | 2cc7c2c | 2016-03-11 17:37:07 -0500 | [diff] [blame] | 497 | return 0; |
| 498 | |
brian m. carlson | abade65 | 2017-11-12 21:28:51 +0000 | [diff] [blame] | 499 | if (verify_repository_format(candidate, &err) < 0) { |
Jeff King | 2cc7c2c | 2016-03-11 17:37:07 -0500 | [diff] [blame] | 500 | if (nongit_ok) { |
| 501 | warning("%s", err.buf); |
| 502 | strbuf_release(&err); |
| 503 | *nongit_ok = -1; |
| 504 | return -1; |
| 505 | } |
| 506 | die("%s", err.buf); |
Nguyễn Thái Ngọc Duy | 9459aa7 | 2007-12-05 20:33:32 +0700 | [diff] [blame] | 507 | } |
Jeff King | 00a09d5 | 2015-06-23 06:53:58 -0400 | [diff] [blame] | 508 | |
brian m. carlson | abade65 | 2017-11-12 21:28:51 +0000 | [diff] [blame] | 509 | repository_format_precious_objects = candidate->precious_objects; |
Christian Couder | 60b7a92 | 2019-06-25 15:40:38 +0200 | [diff] [blame] | 510 | set_repository_format_partial_clone(candidate->partial_clone); |
Nguyễn Thái Ngọc Duy | 58b284a | 2018-10-21 16:02:28 +0200 | [diff] [blame] | 511 | repository_format_worktree_config = candidate->worktree_config; |
brian m. carlson | abade65 | 2017-11-12 21:28:51 +0000 | [diff] [blame] | 512 | string_list_clear(&candidate->unknown_extensions, 0); |
Nguyễn Thái Ngọc Duy | 58b284a | 2018-10-21 16:02:28 +0200 | [diff] [blame] | 513 | |
| 514 | if (repository_format_worktree_config) { |
| 515 | /* |
| 516 | * pick up core.bare and core.worktree from per-worktree |
| 517 | * config if present |
| 518 | */ |
| 519 | strbuf_addf(&sb, "%s/config.worktree", gitdir); |
| 520 | git_config_from_file(read_worktree_config, sb.buf, candidate); |
| 521 | strbuf_release(&sb); |
| 522 | has_common = 0; |
| 523 | } |
| 524 | |
Jeff King | 652f18e | 2016-03-11 17:37:14 -0500 | [diff] [blame] | 525 | if (!has_common) { |
brian m. carlson | abade65 | 2017-11-12 21:28:51 +0000 | [diff] [blame] | 526 | if (candidate->is_bare != -1) { |
| 527 | is_bare_repository_cfg = candidate->is_bare; |
Jeff King | 652f18e | 2016-03-11 17:37:14 -0500 | [diff] [blame] | 528 | if (is_bare_repository_cfg == 1) |
| 529 | inside_work_tree = -1; |
| 530 | } |
brian m. carlson | abade65 | 2017-11-12 21:28:51 +0000 | [diff] [blame] | 531 | if (candidate->work_tree) { |
Jeff King | 652f18e | 2016-03-11 17:37:14 -0500 | [diff] [blame] | 532 | free(git_work_tree_cfg); |
Martin Ågren | e8805af | 2019-02-28 21:36:28 +0100 | [diff] [blame] | 533 | git_work_tree_cfg = xstrdup(candidate->work_tree); |
Jeff King | 2cc7c2c | 2016-03-11 17:37:07 -0500 | [diff] [blame] | 534 | inside_work_tree = -1; |
Jeff King | 652f18e | 2016-03-11 17:37:14 -0500 | [diff] [blame] | 535 | } |
Jeff King | 2cc7c2c | 2016-03-11 17:37:07 -0500 | [diff] [blame] | 536 | } |
| 537 | |
| 538 | return 0; |
| 539 | } |
| 540 | |
Martin Ågren | e8805af | 2019-02-28 21:36:28 +0100 | [diff] [blame] | 541 | static void init_repository_format(struct repository_format *format) |
| 542 | { |
| 543 | const struct repository_format fresh = REPOSITORY_FORMAT_INIT; |
| 544 | |
| 545 | memcpy(format, &fresh, sizeof(fresh)); |
| 546 | } |
| 547 | |
Jeff King | 652f18e | 2016-03-11 17:37:14 -0500 | [diff] [blame] | 548 | int read_repository_format(struct repository_format *format, const char *path) |
Jeff King | 2cc7c2c | 2016-03-11 17:37:07 -0500 | [diff] [blame] | 549 | { |
Martin Ågren | e8805af | 2019-02-28 21:36:28 +0100 | [diff] [blame] | 550 | clear_repository_format(format); |
Jeff King | 652f18e | 2016-03-11 17:37:14 -0500 | [diff] [blame] | 551 | git_config_from_file(check_repo_format, path, format); |
Martin Ågren | e8805af | 2019-02-28 21:36:28 +0100 | [diff] [blame] | 552 | if (format->version == -1) |
| 553 | clear_repository_format(format); |
Jeff King | 2cc7c2c | 2016-03-11 17:37:07 -0500 | [diff] [blame] | 554 | return format->version; |
| 555 | } |
| 556 | |
Martin Ågren | e8805af | 2019-02-28 21:36:28 +0100 | [diff] [blame] | 557 | void clear_repository_format(struct repository_format *format) |
| 558 | { |
| 559 | string_list_clear(&format->unknown_extensions, 0); |
| 560 | free(format->work_tree); |
| 561 | free(format->partial_clone); |
| 562 | init_repository_format(format); |
| 563 | } |
| 564 | |
Jeff King | 2cc7c2c | 2016-03-11 17:37:07 -0500 | [diff] [blame] | 565 | int verify_repository_format(const struct repository_format *format, |
| 566 | struct strbuf *err) |
| 567 | { |
| 568 | if (GIT_REPO_VERSION_READ < format->version) { |
Jeff King | 274db84 | 2016-03-11 17:37:22 -0500 | [diff] [blame] | 569 | strbuf_addf(err, _("Expected git repo version <= %d, found %d"), |
Jeff King | 2cc7c2c | 2016-03-11 17:37:07 -0500 | [diff] [blame] | 570 | GIT_REPO_VERSION_READ, format->version); |
| 571 | return -1; |
| 572 | } |
| 573 | |
| 574 | if (format->version >= 1 && format->unknown_extensions.nr) { |
Jeff King | 00a09d5 | 2015-06-23 06:53:58 -0400 | [diff] [blame] | 575 | int i; |
| 576 | |
Jeff King | 274db84 | 2016-03-11 17:37:22 -0500 | [diff] [blame] | 577 | strbuf_addstr(err, _("unknown repository extensions found:")); |
Jeff King | 00a09d5 | 2015-06-23 06:53:58 -0400 | [diff] [blame] | 578 | |
Jeff King | 2cc7c2c | 2016-03-11 17:37:07 -0500 | [diff] [blame] | 579 | for (i = 0; i < format->unknown_extensions.nr; i++) |
| 580 | strbuf_addf(err, "\n\t%s", |
| 581 | format->unknown_extensions.items[i].string); |
| 582 | return -1; |
Jeff King | 00a09d5 | 2015-06-23 06:53:58 -0400 | [diff] [blame] | 583 | } |
| 584 | |
Jeff King | 2cc7c2c | 2016-03-11 17:37:07 -0500 | [diff] [blame] | 585 | return 0; |
Nguyễn Thái Ngọc Duy | 9459aa7 | 2007-12-05 20:33:32 +0700 | [diff] [blame] | 586 | } |
| 587 | |
Stefan Beller | 5f29433 | 2017-01-24 15:56:50 -0800 | [diff] [blame] | 588 | void read_gitfile_error_die(int error_code, const char *path, const char *dir) |
| 589 | { |
| 590 | switch (error_code) { |
| 591 | case READ_GITFILE_ERR_STAT_FAILED: |
| 592 | case READ_GITFILE_ERR_NOT_A_FILE: |
| 593 | /* non-fatal; follow return path */ |
| 594 | break; |
| 595 | case READ_GITFILE_ERR_OPEN_FAILED: |
Alexander Shopov | fc045fe | 2018-02-13 14:19:15 +0100 | [diff] [blame] | 596 | die_errno(_("error opening '%s'"), path); |
Stefan Beller | 5f29433 | 2017-01-24 15:56:50 -0800 | [diff] [blame] | 597 | case READ_GITFILE_ERR_TOO_LARGE: |
Alexander Shopov | fc045fe | 2018-02-13 14:19:15 +0100 | [diff] [blame] | 598 | die(_("too large to be a .git file: '%s'"), path); |
Stefan Beller | 5f29433 | 2017-01-24 15:56:50 -0800 | [diff] [blame] | 599 | case READ_GITFILE_ERR_READ_FAILED: |
Alexander Shopov | fc045fe | 2018-02-13 14:19:15 +0100 | [diff] [blame] | 600 | die(_("error reading %s"), path); |
Stefan Beller | 5f29433 | 2017-01-24 15:56:50 -0800 | [diff] [blame] | 601 | case READ_GITFILE_ERR_INVALID_FORMAT: |
Alexander Shopov | fc045fe | 2018-02-13 14:19:15 +0100 | [diff] [blame] | 602 | die(_("invalid gitfile format: %s"), path); |
Stefan Beller | 5f29433 | 2017-01-24 15:56:50 -0800 | [diff] [blame] | 603 | case READ_GITFILE_ERR_NO_PATH: |
Alexander Shopov | fc045fe | 2018-02-13 14:19:15 +0100 | [diff] [blame] | 604 | die(_("no path in gitfile: %s"), path); |
Stefan Beller | 5f29433 | 2017-01-24 15:56:50 -0800 | [diff] [blame] | 605 | case READ_GITFILE_ERR_NOT_A_REPO: |
Alexander Shopov | fc045fe | 2018-02-13 14:19:15 +0100 | [diff] [blame] | 606 | die(_("not a git repository: %s"), dir); |
Stefan Beller | 5f29433 | 2017-01-24 15:56:50 -0800 | [diff] [blame] | 607 | default: |
Johannes Schindelin | 033abf9 | 2018-05-02 11:38:39 +0200 | [diff] [blame] | 608 | BUG("unknown error code"); |
Stefan Beller | 5f29433 | 2017-01-24 15:56:50 -0800 | [diff] [blame] | 609 | } |
| 610 | } |
| 611 | |
Johannes Schindelin | e90fdc3 | 2007-08-01 01:30:14 +0100 | [diff] [blame] | 612 | /* |
Lars Hjemli | b44ebb1 | 2008-02-20 23:13:13 +0100 | [diff] [blame] | 613 | * Try to read the location of the git directory from the .git file, |
Han-Wen Nienhuys | ea1d875 | 2017-09-26 13:21:49 +0200 | [diff] [blame] | 614 | * return path to git directory if found. The return value comes from |
| 615 | * a shared buffer. |
Erik Elfström | a93beda | 2015-06-09 20:24:35 +0200 | [diff] [blame] | 616 | * |
| 617 | * On failure, if return_error_code is not NULL, return_error_code |
| 618 | * will be set to an error code and NULL will be returned. If |
| 619 | * return_error_code is NULL the function will die instead (for most |
| 620 | * cases). |
Lars Hjemli | b44ebb1 | 2008-02-20 23:13:13 +0100 | [diff] [blame] | 621 | */ |
Erik Elfström | a93beda | 2015-06-09 20:24:35 +0200 | [diff] [blame] | 622 | const char *read_gitfile_gently(const char *path, int *return_error_code) |
Lars Hjemli | b44ebb1 | 2008-02-20 23:13:13 +0100 | [diff] [blame] | 623 | { |
Erik Elfström | 921bdd9 | 2015-06-15 21:39:52 +0200 | [diff] [blame] | 624 | const int max_file_size = 1 << 20; /* 1MB */ |
Erik Elfström | a93beda | 2015-06-09 20:24:35 +0200 | [diff] [blame] | 625 | int error_code = 0; |
| 626 | char *buf = NULL; |
| 627 | char *dir = NULL; |
Brad King | 40c813e | 2010-01-08 22:36:41 -0500 | [diff] [blame] | 628 | const char *slash; |
Lars Hjemli | b44ebb1 | 2008-02-20 23:13:13 +0100 | [diff] [blame] | 629 | struct stat st; |
| 630 | int fd; |
Jeff King | b1905ae | 2011-05-26 12:28:44 -0400 | [diff] [blame] | 631 | ssize_t len; |
Alexandr Miloslavskiy | 3d7747e | 2020-03-10 13:11:22 +0000 | [diff] [blame] | 632 | static struct strbuf realpath = STRBUF_INIT; |
Lars Hjemli | b44ebb1 | 2008-02-20 23:13:13 +0100 | [diff] [blame] | 633 | |
Erik Elfström | a93beda | 2015-06-09 20:24:35 +0200 | [diff] [blame] | 634 | if (stat(path, &st)) { |
Johannes Schindelin | 5c4003c | 2017-03-13 21:12:18 +0100 | [diff] [blame] | 635 | /* NEEDSWORK: discern between ENOENT vs other errors */ |
Erik Elfström | a93beda | 2015-06-09 20:24:35 +0200 | [diff] [blame] | 636 | error_code = READ_GITFILE_ERR_STAT_FAILED; |
| 637 | goto cleanup_return; |
| 638 | } |
| 639 | if (!S_ISREG(st.st_mode)) { |
| 640 | error_code = READ_GITFILE_ERR_NOT_A_FILE; |
| 641 | goto cleanup_return; |
| 642 | } |
Erik Elfström | 921bdd9 | 2015-06-15 21:39:52 +0200 | [diff] [blame] | 643 | if (st.st_size > max_file_size) { |
| 644 | error_code = READ_GITFILE_ERR_TOO_LARGE; |
| 645 | goto cleanup_return; |
| 646 | } |
Lars Hjemli | b44ebb1 | 2008-02-20 23:13:13 +0100 | [diff] [blame] | 647 | fd = open(path, O_RDONLY); |
Erik Elfström | a93beda | 2015-06-09 20:24:35 +0200 | [diff] [blame] | 648 | if (fd < 0) { |
| 649 | error_code = READ_GITFILE_ERR_OPEN_FAILED; |
| 650 | goto cleanup_return; |
| 651 | } |
Jeff King | 3733e69 | 2016-02-22 17:44:28 -0500 | [diff] [blame] | 652 | buf = xmallocz(st.st_size); |
Lars Hjemli | b44ebb1 | 2008-02-20 23:13:13 +0100 | [diff] [blame] | 653 | len = read_in_full(fd, buf, st.st_size); |
| 654 | close(fd); |
Erik Elfström | a93beda | 2015-06-09 20:24:35 +0200 | [diff] [blame] | 655 | if (len != st.st_size) { |
| 656 | error_code = READ_GITFILE_ERR_READ_FAILED; |
| 657 | goto cleanup_return; |
| 658 | } |
Erik Elfström | a93beda | 2015-06-09 20:24:35 +0200 | [diff] [blame] | 659 | if (!starts_with(buf, "gitdir: ")) { |
| 660 | error_code = READ_GITFILE_ERR_INVALID_FORMAT; |
| 661 | goto cleanup_return; |
| 662 | } |
Lars Hjemli | b44ebb1 | 2008-02-20 23:13:13 +0100 | [diff] [blame] | 663 | while (buf[len - 1] == '\n' || buf[len - 1] == '\r') |
| 664 | len--; |
Erik Elfström | a93beda | 2015-06-09 20:24:35 +0200 | [diff] [blame] | 665 | if (len < 9) { |
| 666 | error_code = READ_GITFILE_ERR_NO_PATH; |
| 667 | goto cleanup_return; |
| 668 | } |
Lars Hjemli | b44ebb1 | 2008-02-20 23:13:13 +0100 | [diff] [blame] | 669 | buf[len] = '\0'; |
Brad King | 40c813e | 2010-01-08 22:36:41 -0500 | [diff] [blame] | 670 | dir = buf + 8; |
| 671 | |
| 672 | if (!is_absolute_path(dir) && (slash = strrchr(path, '/'))) { |
| 673 | size_t pathlen = slash+1 - path; |
Jeff King | 75faa45 | 2015-09-24 17:07:03 -0400 | [diff] [blame] | 674 | dir = xstrfmt("%.*s%.*s", (int)pathlen, path, |
| 675 | (int)(len - 8), buf + 8); |
Brad King | 40c813e | 2010-01-08 22:36:41 -0500 | [diff] [blame] | 676 | free(buf); |
| 677 | buf = dir; |
| 678 | } |
Erik Elfström | a93beda | 2015-06-09 20:24:35 +0200 | [diff] [blame] | 679 | if (!is_git_directory(dir)) { |
| 680 | error_code = READ_GITFILE_ERR_NOT_A_REPO; |
| 681 | goto cleanup_return; |
| 682 | } |
Alexandr Miloslavskiy | 3d7747e | 2020-03-10 13:11:22 +0000 | [diff] [blame] | 683 | |
| 684 | strbuf_realpath(&realpath, dir, 1); |
| 685 | path = realpath.buf; |
Brad King | 40c813e | 2010-01-08 22:36:41 -0500 | [diff] [blame] | 686 | |
Erik Elfström | a93beda | 2015-06-09 20:24:35 +0200 | [diff] [blame] | 687 | cleanup_return: |
Erik Elfström | a93beda | 2015-06-09 20:24:35 +0200 | [diff] [blame] | 688 | if (return_error_code) |
| 689 | *return_error_code = error_code; |
Stefan Beller | 5f29433 | 2017-01-24 15:56:50 -0800 | [diff] [blame] | 690 | else if (error_code) |
| 691 | read_gitfile_error_die(error_code, path, dir); |
Erik Elfström | a93beda | 2015-06-09 20:24:35 +0200 | [diff] [blame] | 692 | |
Lars Hjemli | b44ebb1 | 2008-02-20 23:13:13 +0100 | [diff] [blame] | 693 | free(buf); |
Jeff King | 38ae878 | 2015-06-26 05:03:31 -0400 | [diff] [blame] | 694 | return error_code ? NULL : path; |
Lars Hjemli | b44ebb1 | 2008-02-20 23:13:13 +0100 | [diff] [blame] | 695 | } |
| 696 | |
Jonathan Nieder | e4e3034 | 2010-07-24 06:19:44 -0500 | [diff] [blame] | 697 | static const char *setup_explicit_git_dir(const char *gitdirenv, |
René Scharfe | 7333ed1 | 2014-07-28 20:26:40 +0200 | [diff] [blame] | 698 | struct strbuf *cwd, |
brian m. carlson | abade65 | 2017-11-12 21:28:51 +0000 | [diff] [blame] | 699 | struct repository_format *repo_fmt, |
Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 22:32:39 +0700 | [diff] [blame] | 700 | int *nongit_ok) |
Jonathan Nieder | e4e3034 | 2010-07-24 06:19:44 -0500 | [diff] [blame] | 701 | { |
Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 22:32:39 +0700 | [diff] [blame] | 702 | const char *work_tree_env = getenv(GIT_WORK_TREE_ENVIRONMENT); |
| 703 | const char *worktree; |
| 704 | char *gitfile; |
Nguyễn Thái Ngọc Duy | 9b125da | 2011-03-26 16:04:24 +0700 | [diff] [blame] | 705 | int offset; |
Jonathan Nieder | e4e3034 | 2010-07-24 06:19:44 -0500 | [diff] [blame] | 706 | |
| 707 | if (PATH_MAX - 40 < strlen(gitdirenv)) |
Alexander Shopov | fc045fe | 2018-02-13 14:19:15 +0100 | [diff] [blame] | 708 | die(_("'$%s' too big"), GIT_DIR_ENVIRONMENT); |
Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 22:32:39 +0700 | [diff] [blame] | 709 | |
Junio C Hamano | 13d6ec9 | 2011-08-22 14:04:56 -0700 | [diff] [blame] | 710 | gitfile = (char*)read_gitfile(gitdirenv); |
Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 22:32:39 +0700 | [diff] [blame] | 711 | if (gitfile) { |
| 712 | gitfile = xstrdup(gitfile); |
| 713 | gitdirenv = gitfile; |
| 714 | } |
| 715 | |
Jonathan Nieder | e4e3034 | 2010-07-24 06:19:44 -0500 | [diff] [blame] | 716 | if (!is_git_directory(gitdirenv)) { |
| 717 | if (nongit_ok) { |
| 718 | *nongit_ok = 1; |
Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 22:32:39 +0700 | [diff] [blame] | 719 | free(gitfile); |
Jonathan Nieder | e4e3034 | 2010-07-24 06:19:44 -0500 | [diff] [blame] | 720 | return NULL; |
| 721 | } |
Alexander Shopov | fc045fe | 2018-02-13 14:19:15 +0100 | [diff] [blame] | 722 | die(_("not a git repository: '%s'"), gitdirenv); |
Jonathan Nieder | e4e3034 | 2010-07-24 06:19:44 -0500 | [diff] [blame] | 723 | } |
Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 22:32:39 +0700 | [diff] [blame] | 724 | |
brian m. carlson | abade65 | 2017-11-12 21:28:51 +0000 | [diff] [blame] | 725 | if (check_repository_format_gently(gitdirenv, repo_fmt, nongit_ok)) { |
Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 22:32:39 +0700 | [diff] [blame] | 726 | free(gitfile); |
| 727 | return NULL; |
Jonathan Nieder | e4e3034 | 2010-07-24 06:19:44 -0500 | [diff] [blame] | 728 | } |
Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 22:32:39 +0700 | [diff] [blame] | 729 | |
| 730 | /* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */ |
| 731 | if (work_tree_env) |
| 732 | set_git_work_tree(work_tree_env); |
| 733 | else if (is_bare_repository_cfg > 0) { |
Jeff King | fada767 | 2015-05-29 02:49:10 -0400 | [diff] [blame] | 734 | if (git_work_tree_cfg) { |
| 735 | /* #22.2, #30 */ |
| 736 | warning("core.bare and core.worktree do not make sense"); |
| 737 | work_tree_config_is_bogus = 1; |
| 738 | } |
Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 22:32:39 +0700 | [diff] [blame] | 739 | |
| 740 | /* #18, #26 */ |
Alexandr Miloslavskiy | 0915a5b | 2020-03-06 19:03:13 +0000 | [diff] [blame] | 741 | set_git_dir(gitdirenv, 0); |
Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 22:32:39 +0700 | [diff] [blame] | 742 | free(gitfile); |
Jonathan Nieder | e4e3034 | 2010-07-24 06:19:44 -0500 | [diff] [blame] | 743 | return NULL; |
Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 22:32:39 +0700 | [diff] [blame] | 744 | } |
| 745 | else if (git_work_tree_cfg) { /* #6, #14 */ |
| 746 | if (is_absolute_path(git_work_tree_cfg)) |
| 747 | set_git_work_tree(git_work_tree_cfg); |
| 748 | else { |
René Scharfe | 56b9f6e | 2014-07-28 20:30:39 +0200 | [diff] [blame] | 749 | char *core_worktree; |
Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 22:32:39 +0700 | [diff] [blame] | 750 | if (chdir(gitdirenv)) |
Alexander Shopov | fc045fe | 2018-02-13 14:19:15 +0100 | [diff] [blame] | 751 | die_errno(_("cannot chdir to '%s'"), gitdirenv); |
Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 22:32:39 +0700 | [diff] [blame] | 752 | if (chdir(git_work_tree_cfg)) |
Alexander Shopov | fc045fe | 2018-02-13 14:19:15 +0100 | [diff] [blame] | 753 | die_errno(_("cannot chdir to '%s'"), git_work_tree_cfg); |
René Scharfe | 56b9f6e | 2014-07-28 20:30:39 +0200 | [diff] [blame] | 754 | core_worktree = xgetcwd(); |
René Scharfe | 7333ed1 | 2014-07-28 20:26:40 +0200 | [diff] [blame] | 755 | if (chdir(cwd->buf)) |
Alexander Shopov | fc045fe | 2018-02-13 14:19:15 +0100 | [diff] [blame] | 756 | die_errno(_("cannot come back to cwd")); |
Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 22:32:39 +0700 | [diff] [blame] | 757 | set_git_work_tree(core_worktree); |
René Scharfe | 56b9f6e | 2014-07-28 20:30:39 +0200 | [diff] [blame] | 758 | free(core_worktree); |
Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 22:32:39 +0700 | [diff] [blame] | 759 | } |
| 760 | } |
Jeff King | 2cd83d1 | 2013-03-08 04:32:22 -0500 | [diff] [blame] | 761 | else if (!git_env_bool(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, 1)) { |
| 762 | /* #16d */ |
Alexandr Miloslavskiy | 0915a5b | 2020-03-06 19:03:13 +0000 | [diff] [blame] | 763 | set_git_dir(gitdirenv, 0); |
Jeff King | 2cd83d1 | 2013-03-08 04:32:22 -0500 | [diff] [blame] | 764 | free(gitfile); |
| 765 | return NULL; |
| 766 | } |
Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 22:32:39 +0700 | [diff] [blame] | 767 | else /* #2, #10 */ |
| 768 | set_git_work_tree("."); |
| 769 | |
| 770 | /* set_git_work_tree() must have been called by now */ |
| 771 | worktree = get_git_work_tree(); |
| 772 | |
| 773 | /* both get_git_work_tree() and cwd are already normalized */ |
René Scharfe | 7333ed1 | 2014-07-28 20:26:40 +0200 | [diff] [blame] | 774 | if (!strcmp(cwd->buf, worktree)) { /* cwd == worktree */ |
Alexandr Miloslavskiy | 0915a5b | 2020-03-06 19:03:13 +0000 | [diff] [blame] | 775 | set_git_dir(gitdirenv, 0); |
Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 22:32:39 +0700 | [diff] [blame] | 776 | free(gitfile); |
Jonathan Nieder | e4e3034 | 2010-07-24 06:19:44 -0500 | [diff] [blame] | 777 | return NULL; |
Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 22:32:39 +0700 | [diff] [blame] | 778 | } |
| 779 | |
René Scharfe | 7333ed1 | 2014-07-28 20:26:40 +0200 | [diff] [blame] | 780 | offset = dir_inside_of(cwd->buf, worktree); |
Nguyễn Thái Ngọc Duy | 9b125da | 2011-03-26 16:04:24 +0700 | [diff] [blame] | 781 | if (offset >= 0) { /* cwd inside worktree? */ |
Alexandr Miloslavskiy | 0915a5b | 2020-03-06 19:03:13 +0000 | [diff] [blame] | 782 | set_git_dir(gitdirenv, 1); |
Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 22:32:39 +0700 | [diff] [blame] | 783 | if (chdir(worktree)) |
Alexander Shopov | fc045fe | 2018-02-13 14:19:15 +0100 | [diff] [blame] | 784 | die_errno(_("cannot chdir to '%s'"), worktree); |
René Scharfe | 7333ed1 | 2014-07-28 20:26:40 +0200 | [diff] [blame] | 785 | strbuf_addch(cwd, '/'); |
Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 22:32:39 +0700 | [diff] [blame] | 786 | free(gitfile); |
René Scharfe | 7333ed1 | 2014-07-28 20:26:40 +0200 | [diff] [blame] | 787 | return cwd->buf + offset; |
Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 22:32:39 +0700 | [diff] [blame] | 788 | } |
| 789 | |
| 790 | /* cwd outside worktree */ |
Alexandr Miloslavskiy | 0915a5b | 2020-03-06 19:03:13 +0000 | [diff] [blame] | 791 | set_git_dir(gitdirenv, 0); |
Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 22:32:39 +0700 | [diff] [blame] | 792 | free(gitfile); |
| 793 | return NULL; |
Jonathan Nieder | e4e3034 | 2010-07-24 06:19:44 -0500 | [diff] [blame] | 794 | } |
| 795 | |
Nguyễn Thái Ngọc Duy | 9951d3b | 2010-11-26 22:32:38 +0700 | [diff] [blame] | 796 | static const char *setup_discovered_git_dir(const char *gitdir, |
René Scharfe | 7333ed1 | 2014-07-28 20:26:40 +0200 | [diff] [blame] | 797 | struct strbuf *cwd, int offset, |
brian m. carlson | abade65 | 2017-11-12 21:28:51 +0000 | [diff] [blame] | 798 | struct repository_format *repo_fmt, |
Nguyễn Thái Ngọc Duy | 9951d3b | 2010-11-26 22:32:38 +0700 | [diff] [blame] | 799 | int *nongit_ok) |
Jonathan Nieder | 93a0054 | 2010-07-24 06:20:15 -0500 | [diff] [blame] | 800 | { |
brian m. carlson | abade65 | 2017-11-12 21:28:51 +0000 | [diff] [blame] | 801 | if (check_repository_format_gently(gitdir, repo_fmt, nongit_ok)) |
Nguyễn Thái Ngọc Duy | 98937be | 2010-07-24 07:11:58 -0500 | [diff] [blame] | 802 | return NULL; |
Nguyễn Thái Ngọc Duy | 9951d3b | 2010-11-26 22:32:38 +0700 | [diff] [blame] | 803 | |
Jonathan Nieder | 4868b2e | 2011-01-19 06:42:30 -0600 | [diff] [blame] | 804 | /* --work-tree is set without --git-dir; use discovered one */ |
| 805 | if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) { |
Johannes Schindelin | 2d4dcf2 | 2017-05-04 15:56:51 +0200 | [diff] [blame] | 806 | char *to_free = NULL; |
| 807 | const char *ret; |
| 808 | |
René Scharfe | 7333ed1 | 2014-07-28 20:26:40 +0200 | [diff] [blame] | 809 | if (offset != cwd->len && !is_absolute_path(gitdir)) |
Johannes Schindelin | 2d4dcf2 | 2017-05-04 15:56:51 +0200 | [diff] [blame] | 810 | gitdir = to_free = real_pathdup(gitdir, 1); |
René Scharfe | 7333ed1 | 2014-07-28 20:26:40 +0200 | [diff] [blame] | 811 | if (chdir(cwd->buf)) |
Alexander Shopov | fc045fe | 2018-02-13 14:19:15 +0100 | [diff] [blame] | 812 | die_errno(_("cannot come back to cwd")); |
brian m. carlson | abade65 | 2017-11-12 21:28:51 +0000 | [diff] [blame] | 813 | ret = setup_explicit_git_dir(gitdir, cwd, repo_fmt, nongit_ok); |
Johannes Schindelin | 2d4dcf2 | 2017-05-04 15:56:51 +0200 | [diff] [blame] | 814 | free(to_free); |
| 815 | return ret; |
Jonathan Nieder | 4868b2e | 2011-01-19 06:42:30 -0600 | [diff] [blame] | 816 | } |
| 817 | |
Nguyễn Thái Ngọc Duy | 9951d3b | 2010-11-26 22:32:38 +0700 | [diff] [blame] | 818 | /* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */ |
| 819 | if (is_bare_repository_cfg > 0) { |
Alexandr Miloslavskiy | 0915a5b | 2020-03-06 19:03:13 +0000 | [diff] [blame] | 820 | set_git_dir(gitdir, (offset != cwd->len)); |
René Scharfe | 7333ed1 | 2014-07-28 20:26:40 +0200 | [diff] [blame] | 821 | if (chdir(cwd->buf)) |
Alexander Shopov | fc045fe | 2018-02-13 14:19:15 +0100 | [diff] [blame] | 822 | die_errno(_("cannot come back to cwd")); |
Nguyễn Thái Ngọc Duy | 9951d3b | 2010-11-26 22:32:38 +0700 | [diff] [blame] | 823 | return NULL; |
Jonathan Nieder | 93a0054 | 2010-07-24 06:20:15 -0500 | [diff] [blame] | 824 | } |
Jonathan Nieder | 93a0054 | 2010-07-24 06:20:15 -0500 | [diff] [blame] | 825 | |
Nguyễn Thái Ngọc Duy | 9951d3b | 2010-11-26 22:32:38 +0700 | [diff] [blame] | 826 | /* #0, #1, #5, #8, #9, #12, #13 */ |
| 827 | set_git_work_tree("."); |
| 828 | if (strcmp(gitdir, DEFAULT_GIT_DIR_ENVIRONMENT)) |
Alexandr Miloslavskiy | 0915a5b | 2020-03-06 19:03:13 +0000 | [diff] [blame] | 829 | set_git_dir(gitdir, 0); |
Nguyễn Thái Ngọc Duy | 98937be | 2010-07-24 07:11:58 -0500 | [diff] [blame] | 830 | inside_git_dir = 0; |
Nguyễn Thái Ngọc Duy | 9951d3b | 2010-11-26 22:32:38 +0700 | [diff] [blame] | 831 | inside_work_tree = 1; |
Johannes Schindelin | 5cf7b3b | 2019-08-24 15:10:46 -0700 | [diff] [blame] | 832 | if (offset >= cwd->len) |
Nguyễn Thái Ngọc Duy | 98937be | 2010-07-24 07:11:58 -0500 | [diff] [blame] | 833 | return NULL; |
| 834 | |
Johannes Schindelin | df380d5 | 2017-03-13 21:09:44 +0100 | [diff] [blame] | 835 | /* Make "offset" point past the '/' (already the case for root dirs) */ |
| 836 | if (offset != offset_1st_component(cwd->buf)) |
| 837 | offset++; |
| 838 | /* Add a '/' at the end */ |
René Scharfe | 7333ed1 | 2014-07-28 20:26:40 +0200 | [diff] [blame] | 839 | strbuf_addch(cwd, '/'); |
| 840 | return cwd->buf + offset; |
Nguyễn Thái Ngọc Duy | 98937be | 2010-07-24 07:11:58 -0500 | [diff] [blame] | 841 | } |
| 842 | |
Nguyễn Thái Ngọc Duy | 1cd8031 | 2010-11-26 22:32:36 +0700 | [diff] [blame] | 843 | /* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */ |
René Scharfe | 7333ed1 | 2014-07-28 20:26:40 +0200 | [diff] [blame] | 844 | static const char *setup_bare_git_dir(struct strbuf *cwd, int offset, |
brian m. carlson | abade65 | 2017-11-12 21:28:51 +0000 | [diff] [blame] | 845 | struct repository_format *repo_fmt, |
René Scharfe | 7333ed1 | 2014-07-28 20:26:40 +0200 | [diff] [blame] | 846 | int *nongit_ok) |
Jonathan Nieder | 68698da | 2010-07-24 06:25:32 -0500 | [diff] [blame] | 847 | { |
| 848 | int root_len; |
| 849 | |
brian m. carlson | abade65 | 2017-11-12 21:28:51 +0000 | [diff] [blame] | 850 | if (check_repository_format_gently(".", repo_fmt, nongit_ok)) |
Nguyễn Thái Ngọc Duy | 1cd8031 | 2010-11-26 22:32:36 +0700 | [diff] [blame] | 851 | return NULL; |
| 852 | |
Jeff King | 2cd83d1 | 2013-03-08 04:32:22 -0500 | [diff] [blame] | 853 | setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, "0", 1); |
| 854 | |
Jonathan Nieder | 4868b2e | 2011-01-19 06:42:30 -0600 | [diff] [blame] | 855 | /* --work-tree is set without --git-dir; use discovered one */ |
| 856 | if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) { |
Johannes Schindelin | da6f847 | 2017-05-04 15:56:47 +0200 | [diff] [blame] | 857 | static const char *gitdir; |
Jonathan Nieder | 4868b2e | 2011-01-19 06:42:30 -0600 | [diff] [blame] | 858 | |
René Scharfe | 7333ed1 | 2014-07-28 20:26:40 +0200 | [diff] [blame] | 859 | gitdir = offset == cwd->len ? "." : xmemdupz(cwd->buf, offset); |
| 860 | if (chdir(cwd->buf)) |
Alexander Shopov | fc045fe | 2018-02-13 14:19:15 +0100 | [diff] [blame] | 861 | die_errno(_("cannot come back to cwd")); |
brian m. carlson | abade65 | 2017-11-12 21:28:51 +0000 | [diff] [blame] | 862 | return setup_explicit_git_dir(gitdir, cwd, repo_fmt, nongit_ok); |
Jonathan Nieder | 4868b2e | 2011-01-19 06:42:30 -0600 | [diff] [blame] | 863 | } |
| 864 | |
Jonathan Nieder | 68698da | 2010-07-24 06:25:32 -0500 | [diff] [blame] | 865 | inside_git_dir = 1; |
Nguyễn Thái Ngọc Duy | 1cd8031 | 2010-11-26 22:32:36 +0700 | [diff] [blame] | 866 | inside_work_tree = 0; |
René Scharfe | 7333ed1 | 2014-07-28 20:26:40 +0200 | [diff] [blame] | 867 | if (offset != cwd->len) { |
| 868 | if (chdir(cwd->buf)) |
Alexander Shopov | fc045fe | 2018-02-13 14:19:15 +0100 | [diff] [blame] | 869 | die_errno(_("cannot come back to cwd")); |
René Scharfe | 7333ed1 | 2014-07-28 20:26:40 +0200 | [diff] [blame] | 870 | root_len = offset_1st_component(cwd->buf); |
| 871 | strbuf_setlen(cwd, offset > root_len ? offset : root_len); |
Alexandr Miloslavskiy | 0915a5b | 2020-03-06 19:03:13 +0000 | [diff] [blame] | 872 | set_git_dir(cwd->buf, 0); |
Nguyễn Thái Ngọc Duy | 337e51c | 2010-11-26 22:32:34 +0700 | [diff] [blame] | 873 | } |
Nguyễn Thái Ngọc Duy | 1cd8031 | 2010-11-26 22:32:36 +0700 | [diff] [blame] | 874 | else |
Alexandr Miloslavskiy | 0915a5b | 2020-03-06 19:03:13 +0000 | [diff] [blame] | 875 | set_git_dir(".", 0); |
Jonathan Nieder | 68698da | 2010-07-24 06:25:32 -0500 | [diff] [blame] | 876 | return NULL; |
| 877 | } |
| 878 | |
Clemens Buchacher | 2565b43 | 2012-04-13 01:11:36 +0200 | [diff] [blame] | 879 | static dev_t get_device_or_die(const char *path, const char *prefix, int prefix_len) |
Jonathan Nieder | 60c98d1 | 2010-07-24 06:27:58 -0500 | [diff] [blame] | 880 | { |
| 881 | struct stat buf; |
Clemens Buchacher | 2565b43 | 2012-04-13 01:11:36 +0200 | [diff] [blame] | 882 | if (stat(path, &buf)) { |
Alexander Shopov | fc045fe | 2018-02-13 14:19:15 +0100 | [diff] [blame] | 883 | die_errno(_("failed to stat '%*s%s%s'"), |
Clemens Buchacher | 2565b43 | 2012-04-13 01:11:36 +0200 | [diff] [blame] | 884 | prefix_len, |
Jonathan Nieder | 60c98d1 | 2010-07-24 06:27:58 -0500 | [diff] [blame] | 885 | prefix ? prefix : "", |
| 886 | prefix ? "/" : "", path); |
Clemens Buchacher | 2565b43 | 2012-04-13 01:11:36 +0200 | [diff] [blame] | 887 | } |
Jonathan Nieder | 60c98d1 | 2010-07-24 06:27:58 -0500 | [diff] [blame] | 888 | return buf.st_dev; |
| 889 | } |
| 890 | |
Lars Hjemli | b44ebb1 | 2008-02-20 23:13:13 +0100 | [diff] [blame] | 891 | /* |
Michael Haggerty | 1b77d83 | 2012-10-28 17:16:26 +0100 | [diff] [blame] | 892 | * A "string_list_each_func_t" function that canonicalizes an entry |
Alexandr Miloslavskiy | 4530a85 | 2020-03-10 13:11:23 +0000 | [diff] [blame] | 893 | * from GIT_CEILING_DIRECTORIES using real_pathdup(), or |
Michael Haggerty | 7ec30aa | 2013-02-20 10:09:24 +0100 | [diff] [blame] | 894 | * discards it if unusable. The presence of an empty entry in |
| 895 | * GIT_CEILING_DIRECTORIES turns off canonicalization for all |
| 896 | * subsequent entries. |
Michael Haggerty | 9e2326c | 2012-10-28 17:16:25 +0100 | [diff] [blame] | 897 | */ |
Michael Haggerty | 1b77d83 | 2012-10-28 17:16:26 +0100 | [diff] [blame] | 898 | static int canonicalize_ceiling_entry(struct string_list_item *item, |
Michael Haggerty | 7ec30aa | 2013-02-20 10:09:24 +0100 | [diff] [blame] | 899 | void *cb_data) |
Michael Haggerty | 9e2326c | 2012-10-28 17:16:25 +0100 | [diff] [blame] | 900 | { |
Michael Haggerty | 7ec30aa | 2013-02-20 10:09:24 +0100 | [diff] [blame] | 901 | int *empty_entry_found = cb_data; |
Michael Haggerty | 1b77d83 | 2012-10-28 17:16:26 +0100 | [diff] [blame] | 902 | char *ceil = item->string; |
Michael Haggerty | 9e2326c | 2012-10-28 17:16:25 +0100 | [diff] [blame] | 903 | |
Michael Haggerty | 7ec30aa | 2013-02-20 10:09:24 +0100 | [diff] [blame] | 904 | if (!*ceil) { |
| 905 | *empty_entry_found = 1; |
Michael Haggerty | 9e2326c | 2012-10-28 17:16:25 +0100 | [diff] [blame] | 906 | return 0; |
Michael Haggerty | 7ec30aa | 2013-02-20 10:09:24 +0100 | [diff] [blame] | 907 | } else if (!is_absolute_path(ceil)) { |
Michael Haggerty | 9e2326c | 2012-10-28 17:16:25 +0100 | [diff] [blame] | 908 | return 0; |
Michael Haggerty | 7ec30aa | 2013-02-20 10:09:24 +0100 | [diff] [blame] | 909 | } else if (*empty_entry_found) { |
| 910 | /* Keep entry but do not canonicalize it */ |
| 911 | return 1; |
| 912 | } else { |
Johannes Schindelin | ce83ead | 2017-03-08 16:43:40 +0100 | [diff] [blame] | 913 | char *real_path = real_pathdup(ceil, 0); |
Brandon Williams | 4ac9006 | 2016-12-12 10:16:55 -0800 | [diff] [blame] | 914 | if (!real_path) { |
Michael Haggerty | 7ec30aa | 2013-02-20 10:09:24 +0100 | [diff] [blame] | 915 | return 0; |
Brandon Williams | 4ac9006 | 2016-12-12 10:16:55 -0800 | [diff] [blame] | 916 | } |
Michael Haggerty | 7ec30aa | 2013-02-20 10:09:24 +0100 | [diff] [blame] | 917 | free(item->string); |
Brandon Williams | 4ac9006 | 2016-12-12 10:16:55 -0800 | [diff] [blame] | 918 | item->string = real_path; |
Michael Haggerty | 7ec30aa | 2013-02-20 10:09:24 +0100 | [diff] [blame] | 919 | return 1; |
| 920 | } |
Michael Haggerty | 9e2326c | 2012-10-28 17:16:25 +0100 | [diff] [blame] | 921 | } |
| 922 | |
Johannes Schindelin | ce9b8aa | 2017-03-13 21:10:42 +0100 | [diff] [blame] | 923 | enum discovery_result { |
| 924 | GIT_DIR_NONE = 0, |
| 925 | GIT_DIR_EXPLICIT, |
| 926 | GIT_DIR_DISCOVERED, |
| 927 | GIT_DIR_BARE, |
| 928 | /* these are errors */ |
| 929 | GIT_DIR_HIT_CEILING = -1, |
Johannes Schindelin | 01017dc | 2017-03-13 21:11:22 +0100 | [diff] [blame] | 930 | GIT_DIR_HIT_MOUNT_POINT = -2, |
| 931 | GIT_DIR_INVALID_GITFILE = -3 |
Johannes Schindelin | ce9b8aa | 2017-03-13 21:10:42 +0100 | [diff] [blame] | 932 | }; |
| 933 | |
Michael Haggerty | 9e2326c | 2012-10-28 17:16:25 +0100 | [diff] [blame] | 934 | /* |
Johannes Schindelin | e90fdc3 | 2007-08-01 01:30:14 +0100 | [diff] [blame] | 935 | * We cannot decide in this function whether we are in the work tree or |
| 936 | * not, since the config can only be read _after_ this function was called. |
Johannes Schindelin | ce9b8aa | 2017-03-13 21:10:42 +0100 | [diff] [blame] | 937 | * |
| 938 | * Also, we avoid changing any global state (such as the current working |
| 939 | * directory) to allow early callers. |
| 940 | * |
| 941 | * The directory where the search should start needs to be passed in via the |
| 942 | * `dir` parameter; upon return, the `dir` buffer will contain the path of |
| 943 | * the directory where the search ended, and `gitdir` will contain the path of |
| 944 | * the discovered .git/ directory, if any. If `gitdir` is not absolute, it |
| 945 | * is relative to `dir` (i.e. *not* necessarily the cwd). |
Johannes Schindelin | e90fdc3 | 2007-08-01 01:30:14 +0100 | [diff] [blame] | 946 | */ |
Johannes Schindelin | ce9b8aa | 2017-03-13 21:10:42 +0100 | [diff] [blame] | 947 | static enum discovery_result setup_git_directory_gently_1(struct strbuf *dir, |
Johannes Schindelin | 01017dc | 2017-03-13 21:11:22 +0100 | [diff] [blame] | 948 | struct strbuf *gitdir, |
| 949 | int die_on_error) |
Linus Torvalds | d288a70 | 2005-08-16 18:06:34 -0700 | [diff] [blame] | 950 | { |
David Reiss | 0454dd9 | 2008-05-19 23:49:26 -0700 | [diff] [blame] | 951 | const char *env_ceiling_dirs = getenv(CEILING_DIRECTORIES_ENVIRONMENT); |
Michael Haggerty | 31171d9 | 2012-10-28 17:16:24 +0100 | [diff] [blame] | 952 | struct string_list ceiling_dirs = STRING_LIST_INIT_DUP; |
Johannes Schindelin | ce9b8aa | 2017-03-13 21:10:42 +0100 | [diff] [blame] | 953 | const char *gitdirenv; |
Johannes Schindelin | d17f212 | 2019-08-24 15:10:44 -0700 | [diff] [blame] | 954 | int ceil_offset = -1, min_offset = offset_1st_component(dir->buf); |
Raja R Harinath | c7d1d1b | 2010-07-13 14:32:00 +0530 | [diff] [blame] | 955 | dev_t current_device = 0; |
| 956 | int one_filesystem = 1; |
Linus Torvalds | d288a70 | 2005-08-16 18:06:34 -0700 | [diff] [blame] | 957 | |
Johannes Schindelin | e90fdc3 | 2007-08-01 01:30:14 +0100 | [diff] [blame] | 958 | /* |
Johannes Schindelin | ce9b8aa | 2017-03-13 21:10:42 +0100 | [diff] [blame] | 959 | * If GIT_DIR is set explicitly, we're not going |
| 960 | * to do any discovery, but we still do repository |
| 961 | * validation. |
| 962 | */ |
| 963 | gitdirenv = getenv(GIT_DIR_ENVIRONMENT); |
| 964 | if (gitdirenv) { |
| 965 | strbuf_addstr(gitdir, gitdirenv); |
| 966 | return GIT_DIR_EXPLICIT; |
| 967 | } |
| 968 | |
| 969 | if (env_ceiling_dirs) { |
| 970 | int empty_entry_found = 0; |
| 971 | |
| 972 | string_list_split(&ceiling_dirs, env_ceiling_dirs, PATH_SEP, -1); |
| 973 | filter_string_list(&ceiling_dirs, 0, |
| 974 | canonicalize_ceiling_entry, &empty_entry_found); |
| 975 | ceil_offset = longest_ancestor_length(dir->buf, &ceiling_dirs); |
| 976 | string_list_clear(&ceiling_dirs, 0); |
| 977 | } |
| 978 | |
| 979 | if (ceil_offset < 0) |
| 980 | ceil_offset = min_offset - 2; |
| 981 | |
Johannes Schindelin | e2683d5 | 2019-08-24 15:10:45 -0700 | [diff] [blame] | 982 | if (min_offset && min_offset == dir->len && |
| 983 | !is_dir_sep(dir->buf[min_offset - 1])) { |
| 984 | strbuf_addch(dir, '/'); |
| 985 | min_offset++; |
| 986 | } |
| 987 | |
Johannes Schindelin | ce9b8aa | 2017-03-13 21:10:42 +0100 | [diff] [blame] | 988 | /* |
| 989 | * Test in the following order (relative to the dir): |
| 990 | * - .git (file containing "gitdir: <path>") |
| 991 | * - .git/ |
| 992 | * - ./ (bare) |
| 993 | * - ../.git |
| 994 | * - ../.git/ |
| 995 | * - ../ (bare) |
Junio C Hamano | bdae4af | 2017-12-19 11:33:58 -0800 | [diff] [blame] | 996 | * - ../../.git |
Johannes Schindelin | ce9b8aa | 2017-03-13 21:10:42 +0100 | [diff] [blame] | 997 | * etc. |
| 998 | */ |
| 999 | one_filesystem = !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM", 0); |
| 1000 | if (one_filesystem) |
| 1001 | current_device = get_device_or_die(dir->buf, NULL, 0); |
| 1002 | for (;;) { |
Johannes Schindelin | 01017dc | 2017-03-13 21:11:22 +0100 | [diff] [blame] | 1003 | int offset = dir->len, error_code = 0; |
Johannes Schindelin | ce9b8aa | 2017-03-13 21:10:42 +0100 | [diff] [blame] | 1004 | |
| 1005 | if (offset > min_offset) |
| 1006 | strbuf_addch(dir, '/'); |
| 1007 | strbuf_addstr(dir, DEFAULT_GIT_DIR_ENVIRONMENT); |
Johannes Schindelin | 01017dc | 2017-03-13 21:11:22 +0100 | [diff] [blame] | 1008 | gitdirenv = read_gitfile_gently(dir->buf, die_on_error ? |
| 1009 | NULL : &error_code); |
| 1010 | if (!gitdirenv) { |
| 1011 | if (die_on_error || |
| 1012 | error_code == READ_GITFILE_ERR_NOT_A_FILE) { |
Johannes Schindelin | 5c4003c | 2017-03-13 21:12:18 +0100 | [diff] [blame] | 1013 | /* NEEDSWORK: fail if .git is not file nor dir */ |
Johannes Schindelin | 01017dc | 2017-03-13 21:11:22 +0100 | [diff] [blame] | 1014 | if (is_git_directory(dir->buf)) |
| 1015 | gitdirenv = DEFAULT_GIT_DIR_ENVIRONMENT; |
| 1016 | } else if (error_code != READ_GITFILE_ERR_STAT_FAILED) |
| 1017 | return GIT_DIR_INVALID_GITFILE; |
| 1018 | } |
Johannes Schindelin | ce9b8aa | 2017-03-13 21:10:42 +0100 | [diff] [blame] | 1019 | strbuf_setlen(dir, offset); |
| 1020 | if (gitdirenv) { |
| 1021 | strbuf_addstr(gitdir, gitdirenv); |
| 1022 | return GIT_DIR_DISCOVERED; |
| 1023 | } |
| 1024 | |
| 1025 | if (is_git_directory(dir->buf)) { |
| 1026 | strbuf_addstr(gitdir, "."); |
| 1027 | return GIT_DIR_BARE; |
| 1028 | } |
| 1029 | |
| 1030 | if (offset <= min_offset) |
| 1031 | return GIT_DIR_HIT_CEILING; |
| 1032 | |
| 1033 | while (--offset > ceil_offset && !is_dir_sep(dir->buf[offset])) |
| 1034 | ; /* continue */ |
| 1035 | if (offset <= ceil_offset) |
| 1036 | return GIT_DIR_HIT_CEILING; |
| 1037 | |
| 1038 | strbuf_setlen(dir, offset > min_offset ? offset : min_offset); |
| 1039 | if (one_filesystem && |
| 1040 | current_device != get_device_or_die(dir->buf, NULL, offset)) |
| 1041 | return GIT_DIR_HIT_MOUNT_POINT; |
| 1042 | } |
| 1043 | } |
| 1044 | |
Brandon Williams | d3fb71b | 2017-06-14 11:07:37 -0700 | [diff] [blame] | 1045 | int discover_git_directory(struct strbuf *commondir, |
| 1046 | struct strbuf *gitdir) |
Johannes Schindelin | 16ac8b8 | 2017-03-13 21:10:45 +0100 | [diff] [blame] | 1047 | { |
| 1048 | struct strbuf dir = STRBUF_INIT, err = STRBUF_INIT; |
| 1049 | size_t gitdir_offset = gitdir->len, cwd_len; |
Brandon Williams | d3fb71b | 2017-06-14 11:07:37 -0700 | [diff] [blame] | 1050 | size_t commondir_offset = commondir->len; |
Martin Ågren | e8805af | 2019-02-28 21:36:28 +0100 | [diff] [blame] | 1051 | struct repository_format candidate = REPOSITORY_FORMAT_INIT; |
Johannes Schindelin | 16ac8b8 | 2017-03-13 21:10:45 +0100 | [diff] [blame] | 1052 | |
| 1053 | if (strbuf_getcwd(&dir)) |
Brandon Williams | d3fb71b | 2017-06-14 11:07:37 -0700 | [diff] [blame] | 1054 | return -1; |
Johannes Schindelin | 16ac8b8 | 2017-03-13 21:10:45 +0100 | [diff] [blame] | 1055 | |
| 1056 | cwd_len = dir.len; |
Johannes Schindelin | 01017dc | 2017-03-13 21:11:22 +0100 | [diff] [blame] | 1057 | if (setup_git_directory_gently_1(&dir, gitdir, 0) <= 0) { |
Johannes Schindelin | 16ac8b8 | 2017-03-13 21:10:45 +0100 | [diff] [blame] | 1058 | strbuf_release(&dir); |
Brandon Williams | d3fb71b | 2017-06-14 11:07:37 -0700 | [diff] [blame] | 1059 | return -1; |
Johannes Schindelin | 16ac8b8 | 2017-03-13 21:10:45 +0100 | [diff] [blame] | 1060 | } |
| 1061 | |
| 1062 | /* |
| 1063 | * The returned gitdir is relative to dir, and if dir does not reflect |
| 1064 | * the current working directory, we simply make the gitdir absolute. |
| 1065 | */ |
| 1066 | if (dir.len < cwd_len && !is_absolute_path(gitdir->buf + gitdir_offset)) { |
| 1067 | /* Avoid a trailing "/." */ |
| 1068 | if (!strcmp(".", gitdir->buf + gitdir_offset)) |
| 1069 | strbuf_setlen(gitdir, gitdir_offset); |
| 1070 | else |
| 1071 | strbuf_addch(&dir, '/'); |
| 1072 | strbuf_insert(gitdir, gitdir_offset, dir.buf, dir.len); |
| 1073 | } |
| 1074 | |
Brandon Williams | d3fb71b | 2017-06-14 11:07:37 -0700 | [diff] [blame] | 1075 | get_common_dir(commondir, gitdir->buf + gitdir_offset); |
| 1076 | |
Johannes Schindelin | 16ac8b8 | 2017-03-13 21:10:45 +0100 | [diff] [blame] | 1077 | strbuf_reset(&dir); |
Brandon Williams | d3fb71b | 2017-06-14 11:07:37 -0700 | [diff] [blame] | 1078 | strbuf_addf(&dir, "%s/config", commondir->buf + commondir_offset); |
Johannes Schindelin | 16ac8b8 | 2017-03-13 21:10:45 +0100 | [diff] [blame] | 1079 | read_repository_format(&candidate, dir.buf); |
| 1080 | strbuf_release(&dir); |
| 1081 | |
| 1082 | if (verify_repository_format(&candidate, &err) < 0) { |
| 1083 | warning("ignoring git dir '%s': %s", |
| 1084 | gitdir->buf + gitdir_offset, err.buf); |
| 1085 | strbuf_release(&err); |
Brandon Williams | d3fb71b | 2017-06-14 11:07:37 -0700 | [diff] [blame] | 1086 | strbuf_setlen(commondir, commondir_offset); |
Johannes Schindelin | 69743f9 | 2017-06-14 13:35:26 +0200 | [diff] [blame] | 1087 | strbuf_setlen(gitdir, gitdir_offset); |
Martin Ågren | e8805af | 2019-02-28 21:36:28 +0100 | [diff] [blame] | 1088 | clear_repository_format(&candidate); |
Brandon Williams | d3fb71b | 2017-06-14 11:07:37 -0700 | [diff] [blame] | 1089 | return -1; |
Johannes Schindelin | 16ac8b8 | 2017-03-13 21:10:45 +0100 | [diff] [blame] | 1090 | } |
| 1091 | |
Martin Ågren | e8805af | 2019-02-28 21:36:28 +0100 | [diff] [blame] | 1092 | clear_repository_format(&candidate); |
Brandon Williams | d3fb71b | 2017-06-14 11:07:37 -0700 | [diff] [blame] | 1093 | return 0; |
Johannes Schindelin | 16ac8b8 | 2017-03-13 21:10:45 +0100 | [diff] [blame] | 1094 | } |
| 1095 | |
Johannes Schindelin | ce9b8aa | 2017-03-13 21:10:42 +0100 | [diff] [blame] | 1096 | const char *setup_git_directory_gently(int *nongit_ok) |
| 1097 | { |
| 1098 | static struct strbuf cwd = STRBUF_INIT; |
| 1099 | struct strbuf dir = STRBUF_INIT, gitdir = STRBUF_INIT; |
Erin Dahlgren | 07098b8 | 2018-12-27 15:36:29 -0800 | [diff] [blame] | 1100 | const char *prefix = NULL; |
Martin Ågren | e8805af | 2019-02-28 21:36:28 +0100 | [diff] [blame] | 1101 | struct repository_format repo_fmt = REPOSITORY_FORMAT_INIT; |
Johannes Schindelin | ce9b8aa | 2017-03-13 21:10:42 +0100 | [diff] [blame] | 1102 | |
| 1103 | /* |
Tanay Abhra | 3c8687a | 2014-07-28 03:10:38 -0700 | [diff] [blame] | 1104 | * We may have read an incomplete configuration before |
| 1105 | * setting-up the git directory. If so, clear the cache so |
| 1106 | * that the next queries to the configuration reload complete |
| 1107 | * configuration (including the per-repo config file that we |
| 1108 | * ignored previously). |
| 1109 | */ |
| 1110 | git_config_clear(); |
| 1111 | |
| 1112 | /* |
SZEDER Gábor | af05d67 | 2008-03-25 22:06:26 +0100 | [diff] [blame] | 1113 | * Let's assume that we are in a git repository. |
| 1114 | * If it turns out later that we are somewhere else, the value will be |
| 1115 | * updated accordingly. |
| 1116 | */ |
| 1117 | if (nongit_ok) |
| 1118 | *nongit_ok = 0; |
| 1119 | |
René Scharfe | 7333ed1 | 2014-07-28 20:26:40 +0200 | [diff] [blame] | 1120 | if (strbuf_getcwd(&cwd)) |
Vasco Almeida | 2ff30e6 | 2016-08-08 11:15:59 +0000 | [diff] [blame] | 1121 | die_errno(_("Unable to read current working directory")); |
Johannes Schindelin | ce9b8aa | 2017-03-13 21:10:42 +0100 | [diff] [blame] | 1122 | strbuf_addbuf(&dir, &cwd); |
Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 22:32:39 +0700 | [diff] [blame] | 1123 | |
Johannes Schindelin | 01017dc | 2017-03-13 21:11:22 +0100 | [diff] [blame] | 1124 | switch (setup_git_directory_gently_1(&dir, &gitdir, 1)) { |
Johannes Schindelin | ce9b8aa | 2017-03-13 21:10:42 +0100 | [diff] [blame] | 1125 | case GIT_DIR_EXPLICIT: |
brian m. carlson | abade65 | 2017-11-12 21:28:51 +0000 | [diff] [blame] | 1126 | prefix = setup_explicit_git_dir(gitdir.buf, &cwd, &repo_fmt, nongit_ok); |
Johannes Schindelin | ce9b8aa | 2017-03-13 21:10:42 +0100 | [diff] [blame] | 1127 | break; |
| 1128 | case GIT_DIR_DISCOVERED: |
| 1129 | if (dir.len < cwd.len && chdir(dir.buf)) |
Alexander Shopov | fc045fe | 2018-02-13 14:19:15 +0100 | [diff] [blame] | 1130 | die(_("cannot change to '%s'"), dir.buf); |
Johannes Schindelin | ce9b8aa | 2017-03-13 21:10:42 +0100 | [diff] [blame] | 1131 | prefix = setup_discovered_git_dir(gitdir.buf, &cwd, dir.len, |
brian m. carlson | abade65 | 2017-11-12 21:28:51 +0000 | [diff] [blame] | 1132 | &repo_fmt, nongit_ok); |
Johannes Schindelin | ce9b8aa | 2017-03-13 21:10:42 +0100 | [diff] [blame] | 1133 | break; |
| 1134 | case GIT_DIR_BARE: |
| 1135 | if (dir.len < cwd.len && chdir(dir.buf)) |
Alexander Shopov | fc045fe | 2018-02-13 14:19:15 +0100 | [diff] [blame] | 1136 | die(_("cannot change to '%s'"), dir.buf); |
brian m. carlson | abade65 | 2017-11-12 21:28:51 +0000 | [diff] [blame] | 1137 | prefix = setup_bare_git_dir(&cwd, dir.len, &repo_fmt, nongit_ok); |
Johannes Schindelin | ce9b8aa | 2017-03-13 21:10:42 +0100 | [diff] [blame] | 1138 | break; |
| 1139 | case GIT_DIR_HIT_CEILING: |
Erin Dahlgren | 07098b8 | 2018-12-27 15:36:29 -0800 | [diff] [blame] | 1140 | if (!nongit_ok) |
| 1141 | die(_("not a git repository (or any of the parent directories): %s"), |
| 1142 | DEFAULT_GIT_DIR_ENVIRONMENT); |
| 1143 | *nongit_ok = 1; |
Johannes Schindelin | ce9b8aa | 2017-03-13 21:10:42 +0100 | [diff] [blame] | 1144 | break; |
| 1145 | case GIT_DIR_HIT_MOUNT_POINT: |
Erin Dahlgren | 07098b8 | 2018-12-27 15:36:29 -0800 | [diff] [blame] | 1146 | if (!nongit_ok) |
| 1147 | die(_("not a git repository (or any parent up to mount point %s)\n" |
| 1148 | "Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set)."), |
| 1149 | dir.buf); |
| 1150 | *nongit_ok = 1; |
| 1151 | break; |
| 1152 | case GIT_DIR_NONE: |
| 1153 | /* |
| 1154 | * As a safeguard against setup_git_directory_gently_1 returning |
| 1155 | * this value, fallthrough to BUG. Otherwise it is possible to |
| 1156 | * set startup_info->have_repository to 1 when we did nothing to |
| 1157 | * find a repository. |
| 1158 | */ |
Johannes Schindelin | ce9b8aa | 2017-03-13 21:10:42 +0100 | [diff] [blame] | 1159 | default: |
Johannes Schindelin | 033abf9 | 2018-05-02 11:38:39 +0200 | [diff] [blame] | 1160 | BUG("unhandled setup_git_directory_1() result"); |
Michael Haggerty | 31171d9 | 2012-10-28 17:16:24 +0100 | [diff] [blame] | 1161 | } |
| 1162 | |
Erin Dahlgren | 07098b8 | 2018-12-27 15:36:29 -0800 | [diff] [blame] | 1163 | /* |
| 1164 | * At this point, nongit_ok is stable. If it is non-NULL and points |
| 1165 | * to a non-zero value, then this means that we haven't found a |
| 1166 | * repository and that the caller expects startup_info to reflect |
| 1167 | * this. |
| 1168 | * |
| 1169 | * Regardless of the state of nongit_ok, startup_info->prefix and |
| 1170 | * the GIT_PREFIX environment variable must always match. For details |
| 1171 | * see Documentation/config/alias.txt. |
| 1172 | */ |
| 1173 | if (nongit_ok && *nongit_ok) { |
| 1174 | startup_info->have_repository = 0; |
| 1175 | startup_info->prefix = NULL; |
Jeff King | a6f7f9a | 2013-03-08 04:30:25 -0500 | [diff] [blame] | 1176 | setenv(GIT_PREFIX_ENVIRONMENT, "", 1); |
Erin Dahlgren | 07098b8 | 2018-12-27 15:36:29 -0800 | [diff] [blame] | 1177 | } else { |
| 1178 | startup_info->have_repository = 1; |
| 1179 | startup_info->prefix = prefix; |
| 1180 | if (prefix) |
| 1181 | setenv(GIT_PREFIX_ENVIRONMENT, prefix, 1); |
| 1182 | else |
| 1183 | setenv(GIT_PREFIX_ENVIRONMENT, "", 1); |
| 1184 | } |
Jeff King | 46c3cd4 | 2016-03-05 17:10:27 -0500 | [diff] [blame] | 1185 | |
Brandon Williams | 73f192c | 2017-06-20 12:19:32 -0700 | [diff] [blame] | 1186 | /* |
| 1187 | * Not all paths through the setup code will call 'set_git_dir()' (which |
| 1188 | * directly sets up the environment) so in order to guarantee that the |
| 1189 | * environment is in a consistent state after setup, explicitly setup |
| 1190 | * the environment if we have a repository. |
| 1191 | * |
| 1192 | * NEEDSWORK: currently we allow bogus GIT_DIR values to be set in some |
| 1193 | * code paths so we also need to explicitly setup the environment if |
| 1194 | * the user has set GIT_DIR. It may be beneficial to disallow bogus |
| 1195 | * GIT_DIR values at some point in the future. |
| 1196 | */ |
Erin Dahlgren | 07098b8 | 2018-12-27 15:36:29 -0800 | [diff] [blame] | 1197 | if (/* GIT_DIR_EXPLICIT, GIT_DIR_DISCOVERED, GIT_DIR_BARE */ |
| 1198 | startup_info->have_repository || |
| 1199 | /* GIT_DIR_EXPLICIT */ |
| 1200 | getenv(GIT_DIR_ENVIRONMENT)) { |
Brandon Williams | c14c234 | 2017-06-22 11:43:33 -0700 | [diff] [blame] | 1201 | if (!the_repository->gitdir) { |
| 1202 | const char *gitdir = getenv(GIT_DIR_ENVIRONMENT); |
| 1203 | if (!gitdir) |
| 1204 | gitdir = DEFAULT_GIT_DIR_ENVIRONMENT; |
Nguyễn Thái Ngọc Duy | 357a03e | 2018-03-03 18:35:55 +0700 | [diff] [blame] | 1205 | setup_git_env(gitdir); |
Brandon Williams | c14c234 | 2017-06-22 11:43:33 -0700 | [diff] [blame] | 1206 | } |
brian m. carlson | 78a6766 | 2017-11-12 21:28:53 +0000 | [diff] [blame] | 1207 | if (startup_info->have_repository) |
| 1208 | repo_set_hash_algo(the_repository, repo_fmt.hash_algo); |
Brandon Williams | c14c234 | 2017-06-22 11:43:33 -0700 | [diff] [blame] | 1209 | } |
Brandon Williams | 73f192c | 2017-06-20 12:19:32 -0700 | [diff] [blame] | 1210 | |
Johannes Schindelin | ce9b8aa | 2017-03-13 21:10:42 +0100 | [diff] [blame] | 1211 | strbuf_release(&dir); |
| 1212 | strbuf_release(&gitdir); |
Martin Ågren | e8805af | 2019-02-28 21:36:28 +0100 | [diff] [blame] | 1213 | clear_repository_format(&repo_fmt); |
Johannes Schindelin | ce9b8aa | 2017-03-13 21:10:42 +0100 | [diff] [blame] | 1214 | |
Nguyễn Thái Ngọc Duy | a60645f | 2010-08-05 21:46:33 -0500 | [diff] [blame] | 1215 | return prefix; |
| 1216 | } |
| 1217 | |
Junio C Hamano | 94df250 | 2006-06-09 23:09:49 -0700 | [diff] [blame] | 1218 | int git_config_perm(const char *var, const char *value) |
| 1219 | { |
Heikki Orsila | 06cbe85 | 2008-04-16 11:34:24 +0300 | [diff] [blame] | 1220 | int i; |
| 1221 | char *endptr; |
| 1222 | |
| 1223 | if (value == NULL) |
| 1224 | return PERM_GROUP; |
| 1225 | |
| 1226 | if (!strcmp(value, "umask")) |
| 1227 | return PERM_UMASK; |
| 1228 | if (!strcmp(value, "group")) |
| 1229 | return PERM_GROUP; |
| 1230 | if (!strcmp(value, "all") || |
| 1231 | !strcmp(value, "world") || |
| 1232 | !strcmp(value, "everybody")) |
| 1233 | return PERM_EVERYBODY; |
| 1234 | |
| 1235 | /* Parse octal numbers */ |
| 1236 | i = strtol(value, &endptr, 8); |
| 1237 | |
| 1238 | /* If not an octal number, maybe true/false? */ |
| 1239 | if (*endptr != 0) |
| 1240 | return git_config_bool(var, value) ? PERM_GROUP : PERM_UMASK; |
| 1241 | |
| 1242 | /* |
| 1243 | * Treat values 0, 1 and 2 as compatibility cases, otherwise it is |
Junio C Hamano | 5a688fe | 2009-03-25 16:19:36 -0700 | [diff] [blame] | 1244 | * a chmod value to restrict to. |
Heikki Orsila | 06cbe85 | 2008-04-16 11:34:24 +0300 | [diff] [blame] | 1245 | */ |
| 1246 | switch (i) { |
| 1247 | case PERM_UMASK: /* 0 */ |
| 1248 | return PERM_UMASK; |
| 1249 | case OLD_PERM_GROUP: /* 1 */ |
| 1250 | return PERM_GROUP; |
| 1251 | case OLD_PERM_EVERYBODY: /* 2 */ |
| 1252 | return PERM_EVERYBODY; |
Junio C Hamano | 94df250 | 2006-06-09 23:09:49 -0700 | [diff] [blame] | 1253 | } |
Heikki Orsila | 06cbe85 | 2008-04-16 11:34:24 +0300 | [diff] [blame] | 1254 | |
| 1255 | /* A filemode value was given: 0xxx */ |
| 1256 | |
| 1257 | if ((i & 0600) != 0600) |
Alexander Shopov | fc045fe | 2018-02-13 14:19:15 +0100 | [diff] [blame] | 1258 | die(_("problem with core.sharedRepository filemode value " |
Heikki Orsila | 06cbe85 | 2008-04-16 11:34:24 +0300 | [diff] [blame] | 1259 | "(0%.3o).\nThe owner of files must always have " |
Vasco Almeida | 2ff30e6 | 2016-08-08 11:15:59 +0000 | [diff] [blame] | 1260 | "read and write permissions."), i); |
Heikki Orsila | 06cbe85 | 2008-04-16 11:34:24 +0300 | [diff] [blame] | 1261 | |
| 1262 | /* |
| 1263 | * Mask filemode value. Others can not get write permission. |
| 1264 | * x flags for directories are handled separately. |
| 1265 | */ |
Junio C Hamano | 5a688fe | 2009-03-25 16:19:36 -0700 | [diff] [blame] | 1266 | return -(i & 0666); |
Junio C Hamano | 94df250 | 2006-06-09 23:09:49 -0700 | [diff] [blame] | 1267 | } |
| 1268 | |
brian m. carlson | cfe3917 | 2020-02-22 20:17:37 +0000 | [diff] [blame] | 1269 | void check_repository_format(struct repository_format *fmt) |
Junio C Hamano | ab9cb76 | 2005-11-25 15:59:09 -0800 | [diff] [blame] | 1270 | { |
Martin Ågren | e8805af | 2019-02-28 21:36:28 +0100 | [diff] [blame] | 1271 | struct repository_format repo_fmt = REPOSITORY_FORMAT_INIT; |
brian m. carlson | cfe3917 | 2020-02-22 20:17:37 +0000 | [diff] [blame] | 1272 | if (!fmt) |
| 1273 | fmt = &repo_fmt; |
| 1274 | check_repository_format_gently(get_git_dir(), fmt, NULL); |
Jeff King | f1c126b | 2016-03-05 17:11:34 -0500 | [diff] [blame] | 1275 | startup_info->have_repository = 1; |
Martin Ågren | e8805af | 2019-02-28 21:36:28 +0100 | [diff] [blame] | 1276 | clear_repository_format(&repo_fmt); |
Junio C Hamano | ab9cb76 | 2005-11-25 15:59:09 -0800 | [diff] [blame] | 1277 | } |
| 1278 | |
Clemens Buchacher | e1e5ec8 | 2010-06-05 10:04:20 +0200 | [diff] [blame] | 1279 | /* |
| 1280 | * Returns the "prefix", a path to the current working directory |
| 1281 | * relative to the work tree root, or NULL, if the current working |
| 1282 | * directory is not a strict subdirectory of the work tree root. The |
| 1283 | * prefix always ends with a '/' character. |
| 1284 | */ |
Junio C Hamano | 5e7bfe2 | 2005-11-25 15:43:41 -0800 | [diff] [blame] | 1285 | const char *setup_git_directory(void) |
| 1286 | { |
Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 22:32:39 +0700 | [diff] [blame] | 1287 | return setup_git_directory_gently(NULL); |
Junio C Hamano | 5e7bfe2 | 2005-11-25 15:43:41 -0800 | [diff] [blame] | 1288 | } |
Fredrik Gustafsson | abc0682 | 2011-08-15 23:17:46 +0200 | [diff] [blame] | 1289 | |
Stefan Beller | 40d9632 | 2017-01-24 15:56:49 -0800 | [diff] [blame] | 1290 | const char *resolve_gitdir_gently(const char *suspect, int *return_error_code) |
Fredrik Gustafsson | abc0682 | 2011-08-15 23:17:46 +0200 | [diff] [blame] | 1291 | { |
| 1292 | if (is_git_directory(suspect)) |
| 1293 | return suspect; |
Stefan Beller | 40d9632 | 2017-01-24 15:56:49 -0800 | [diff] [blame] | 1294 | return read_gitfile_gently(suspect, return_error_code); |
Fredrik Gustafsson | abc0682 | 2011-08-15 23:17:46 +0200 | [diff] [blame] | 1295 | } |
Thomas Rast | 1d999dd | 2013-07-16 11:27:36 +0200 | [diff] [blame] | 1296 | |
| 1297 | /* if any standard file descriptor is missing open it to /dev/null */ |
| 1298 | void sanitize_stdfds(void) |
| 1299 | { |
| 1300 | int fd = open("/dev/null", O_RDWR, 0); |
| 1301 | while (fd != -1 && fd < 2) |
| 1302 | fd = dup(fd); |
| 1303 | if (fd == -1) |
Alexander Shopov | fc045fe | 2018-02-13 14:19:15 +0100 | [diff] [blame] | 1304 | die_errno(_("open /dev/null or dup failed")); |
Thomas Rast | 1d999dd | 2013-07-16 11:27:36 +0200 | [diff] [blame] | 1305 | if (fd > 2) |
| 1306 | close(fd); |
| 1307 | } |
Nguyễn Thái Ngọc Duy | de0957c | 2014-02-08 14:08:51 +0700 | [diff] [blame] | 1308 | |
| 1309 | int daemonize(void) |
| 1310 | { |
| 1311 | #ifdef NO_POSIX_GOODIES |
| 1312 | errno = ENOSYS; |
| 1313 | return -1; |
| 1314 | #else |
| 1315 | switch (fork()) { |
| 1316 | case 0: |
| 1317 | break; |
| 1318 | case -1: |
Alexander Shopov | fc045fe | 2018-02-13 14:19:15 +0100 | [diff] [blame] | 1319 | die_errno(_("fork failed")); |
Nguyễn Thái Ngọc Duy | de0957c | 2014-02-08 14:08:51 +0700 | [diff] [blame] | 1320 | default: |
| 1321 | exit(0); |
| 1322 | } |
| 1323 | if (setsid() == -1) |
Alexander Shopov | fc045fe | 2018-02-13 14:19:15 +0100 | [diff] [blame] | 1324 | die_errno(_("setsid failed")); |
Nguyễn Thái Ngọc Duy | de0957c | 2014-02-08 14:08:51 +0700 | [diff] [blame] | 1325 | close(0); |
| 1326 | close(1); |
| 1327 | close(2); |
| 1328 | sanitize_stdfds(); |
| 1329 | return 0; |
| 1330 | #endif |
| 1331 | } |