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