| Linus Torvalds | d288a70 | 2005-08-17 01:06:34 | [diff] [blame] | 1 | #include "cache.h" |
| Johannes Schindelin | e90fdc3 | 2007-08-01 00:30:14 | [diff] [blame] | 2 | #include "dir.h" |
| Michael Haggerty | 31171d9 | 2012-10-28 16:16:24 | [diff] [blame] | 3 | #include "string-list.h" |
| Johannes Schindelin | e90fdc3 | 2007-08-01 00:30:14 | [diff] [blame] | 4 | |
| 5 | static int inside_git_dir = -1; |
| 6 | static int inside_work_tree = -1; |
| Linus Torvalds | d288a70 | 2005-08-17 01:06:34 | [diff] [blame] | 7 | |
| Nguyễn Thái Ngọc Duy | 645a29c | 2013-07-14 08:36:03 | [diff] [blame] | 8 | /* |
| Martin Erik Werner | ddc2a62 | 2014-02-04 14:25:19 | [diff] [blame] | 9 | * The input parameter must contain an absolute path, and it must already be |
| 10 | * normalized. |
| 11 | * |
| 12 | * Find the part of an absolute path that lies inside the work tree by |
| 13 | * dereferencing symlinks outside the work tree, for example: |
| 14 | * /dir1/repo/dir2/file (work tree is /dir1/repo) -> dir2/file |
| 15 | * /dir/file (work tree is /) -> dir/file |
| 16 | * /dir/symlink1/symlink2 (symlink1 points to work tree) -> symlink2 |
| 17 | * /dir/repolink/file (repolink points to /dir/repo) -> file |
| 18 | * /dir/repo (exactly equal to work tree) -> (empty string) |
| 19 | */ |
| 20 | static int abspath_part_inside_repo(char *path) |
| 21 | { |
| 22 | size_t len; |
| 23 | size_t wtlen; |
| 24 | char *path0; |
| 25 | int off; |
| 26 | const char *work_tree = get_git_work_tree(); |
| 27 | |
| 28 | if (!work_tree) |
| 29 | return -1; |
| 30 | wtlen = strlen(work_tree); |
| 31 | len = strlen(path); |
| Martin Erik Werner | 6127ff6 | 2014-04-24 13:06:09 | [diff] [blame] | 32 | off = offset_1st_component(path); |
| Martin Erik Werner | ddc2a62 | 2014-02-04 14:25:19 | [diff] [blame] | 33 | |
| 34 | /* check if work tree is already the prefix */ |
| 35 | if (wtlen <= len && !strncmp(path, work_tree, wtlen)) { |
| 36 | if (path[wtlen] == '/') { |
| 37 | memmove(path, path + wtlen + 1, len - wtlen); |
| 38 | return 0; |
| 39 | } else if (path[wtlen - 1] == '/' || path[wtlen] == '\0') { |
| 40 | /* work tree is the root, or the whole path */ |
| 41 | memmove(path, path + wtlen, len - wtlen + 1); |
| 42 | return 0; |
| 43 | } |
| 44 | /* work tree might match beginning of a symlink to work tree */ |
| 45 | off = wtlen; |
| 46 | } |
| 47 | path0 = path; |
| Martin Erik Werner | 6127ff6 | 2014-04-24 13:06:09 | [diff] [blame] | 48 | path += off; |
| Martin Erik Werner | ddc2a62 | 2014-02-04 14:25:19 | [diff] [blame] | 49 | |
| 50 | /* check each '/'-terminated level */ |
| 51 | while (*path) { |
| 52 | path++; |
| 53 | if (*path == '/') { |
| 54 | *path = '\0'; |
| 55 | if (strcmp(real_path(path0), work_tree) == 0) { |
| 56 | memmove(path0, path + 1, len - (path - path0)); |
| 57 | return 0; |
| 58 | } |
| 59 | *path = '/'; |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | /* check whole path */ |
| 64 | if (strcmp(real_path(path0), work_tree) == 0) { |
| 65 | *path0 = '\0'; |
| 66 | return 0; |
| 67 | } |
| 68 | |
| 69 | return -1; |
| 70 | } |
| 71 | |
| 72 | /* |
| Nguyễn Thái Ngọc Duy | 645a29c | 2013-07-14 08:36:03 | [diff] [blame] | 73 | * Normalize "path", prepending the "prefix" for relative paths. If |
| 74 | * remaining_prefix is not NULL, return the actual prefix still |
| 75 | * remains in the path. For example, prefix = sub1/sub2/ and path is |
| 76 | * |
| 77 | * foo -> sub1/sub2/foo (full prefix) |
| 78 | * ../foo -> sub1/foo (remaining prefix is sub1/) |
| 79 | * ../../bar -> bar (no remaining prefix) |
| 80 | * ../../sub1/sub2/foo -> sub1/sub2/foo (but no remaining prefix) |
| 81 | * `pwd`/../bar -> sub1/bar (no remaining prefix) |
| 82 | */ |
| 83 | char *prefix_path_gently(const char *prefix, int len, |
| 84 | int *remaining_prefix, const char *path) |
| Linus Torvalds | f332726 | 2005-08-17 03:44:32 | [diff] [blame] | 85 | { |
| Junio C Hamano | 6b5ee13 | 2005-09-21 07:00:47 | [diff] [blame] | 86 | const char *orig = path; |
| Carlo Marcelo Arenas Belon | 18e051a | 2010-12-27 10:54:37 | [diff] [blame] | 87 | char *sanitized; |
| 88 | if (is_absolute_path(orig)) { |
| Martin Erik Werner | 655ee9e | 2014-02-04 14:25:20 | [diff] [blame] | 89 | sanitized = xmalloc(strlen(path) + 1); |
| Nguyễn Thái Ngọc Duy | 645a29c | 2013-07-14 08:36:03 | [diff] [blame] | 90 | if (remaining_prefix) |
| 91 | *remaining_prefix = 0; |
| Martin Erik Werner | 655ee9e | 2014-02-04 14:25:20 | [diff] [blame] | 92 | if (normalize_path_copy_len(sanitized, path, remaining_prefix)) { |
| 93 | free(sanitized); |
| 94 | return NULL; |
| 95 | } |
| 96 | if (abspath_part_inside_repo(sanitized)) { |
| 97 | free(sanitized); |
| 98 | return NULL; |
| 99 | } |
| Carlo Marcelo Arenas Belon | 18e051a | 2010-12-27 10:54:37 | [diff] [blame] | 100 | } else { |
| 101 | sanitized = xmalloc(len + strlen(path) + 1); |
| Junio C Hamano | d089eba | 2008-01-29 06:44:27 | [diff] [blame] | 102 | if (len) |
| 103 | memcpy(sanitized, prefix, len); |
| 104 | strcpy(sanitized + len, path); |
| Nguyễn Thái Ngọc Duy | 645a29c | 2013-07-14 08:36:03 | [diff] [blame] | 105 | if (remaining_prefix) |
| 106 | *remaining_prefix = len; |
| Martin Erik Werner | 655ee9e | 2014-02-04 14:25:20 | [diff] [blame] | 107 | if (normalize_path_copy_len(sanitized, sanitized, remaining_prefix)) { |
| Jeff King | 546e0fd | 2012-06-21 18:09:50 | [diff] [blame] | 108 | free(sanitized); |
| 109 | return NULL; |
| Junio C Hamano | d089eba | 2008-01-29 06:44:27 | [diff] [blame] | 110 | } |
| Linus Torvalds | f332726 | 2005-08-17 03:44:32 | [diff] [blame] | 111 | } |
| Junio C Hamano | d089eba | 2008-01-29 06:44:27 | [diff] [blame] | 112 | return sanitized; |
| Linus Torvalds | f332726 | 2005-08-17 03:44:32 | [diff] [blame] | 113 | } |
| 114 | |
| Jeff King | 546e0fd | 2012-06-21 18:09:50 | [diff] [blame] | 115 | char *prefix_path(const char *prefix, int len, const char *path) |
| 116 | { |
| Nguyễn Thái Ngọc Duy | 645a29c | 2013-07-14 08:36:03 | [diff] [blame] | 117 | char *r = prefix_path_gently(prefix, len, NULL, path); |
| Jeff King | 546e0fd | 2012-06-21 18:09:50 | [diff] [blame] | 118 | if (!r) |
| 119 | die("'%s' is outside repository", path); |
| 120 | return r; |
| 121 | } |
| 122 | |
| 123 | int path_inside_repo(const char *prefix, const char *path) |
| 124 | { |
| 125 | int len = prefix ? strlen(prefix) : 0; |
| Nguyễn Thái Ngọc Duy | 645a29c | 2013-07-14 08:36:03 | [diff] [blame] | 126 | char *r = prefix_path_gently(prefix, len, NULL, path); |
| Jeff King | 546e0fd | 2012-06-21 18:09:50 | [diff] [blame] | 127 | if (r) { |
| 128 | free(r); |
| 129 | return 1; |
| 130 | } |
| 131 | return 0; |
| 132 | } |
| 133 | |
| Junio C Hamano | c6e8c80 | 2009-10-18 07:27:24 | [diff] [blame] | 134 | int check_filename(const char *prefix, const char *arg) |
| 135 | { |
| 136 | const char *name; |
| 137 | struct stat st; |
| 138 | |
| Christian Couder | 5955654 | 2013-11-30 20:55:40 | [diff] [blame] | 139 | if (starts_with(arg, ":/")) { |
| Nguyễn Thái Ngọc Duy | 4db86e8 | 2013-01-21 13:00:48 | [diff] [blame] | 140 | if (arg[2] == '\0') /* ":/" is root dir, always exists */ |
| 141 | return 1; |
| 142 | name = arg + 2; |
| 143 | } else if (prefix) |
| 144 | name = prefix_filename(prefix, strlen(prefix), arg); |
| 145 | else |
| 146 | name = arg; |
| Junio C Hamano | c6e8c80 | 2009-10-18 07:27:24 | [diff] [blame] | 147 | if (!lstat(name, &st)) |
| 148 | return 1; /* file exists */ |
| 149 | if (errno == ENOENT || errno == ENOTDIR) |
| 150 | return 0; /* file does not exist */ |
| 151 | die_errno("failed to stat '%s'", arg); |
| 152 | } |
| 153 | |
| Matthieu Moy | 023e37c | 2012-06-18 18:18:21 | [diff] [blame] | 154 | static void NORETURN die_verify_filename(const char *prefix, |
| 155 | const char *arg, |
| 156 | int diagnose_misspelt_rev) |
| Matthieu Moy | 009fee4 | 2009-12-07 10:10:50 | [diff] [blame] | 157 | { |
| Matthieu Moy | 023e37c | 2012-06-18 18:18:21 | [diff] [blame] | 158 | if (!diagnose_misspelt_rev) |
| 159 | die("%s: no such path in the working tree.\n" |
| Matthieu Moy | 4d4b573 | 2012-08-03 08:21:20 | [diff] [blame] | 160 | "Use 'git <command> -- <path>...' to specify paths that do not exist locally.", |
| Matthieu Moy | 023e37c | 2012-06-18 18:18:21 | [diff] [blame] | 161 | arg); |
| Junio C Hamano | 0e539dc | 2011-05-10 19:05:01 | [diff] [blame] | 162 | /* |
| 163 | * Saying "'(icase)foo' does not exist in the index" when the |
| 164 | * user gave us ":(icase)foo" is just stupid. A magic pathspec |
| 165 | * begins with a colon and is followed by a non-alnum; do not |
| Junio C Hamano | 8c135ea | 2012-07-02 18:01:25 | [diff] [blame] | 166 | * let maybe_die_on_misspelt_object_name() even trigger. |
| Junio C Hamano | 0e539dc | 2011-05-10 19:05:01 | [diff] [blame] | 167 | */ |
| 168 | if (!(arg[0] == ':' && !isalnum(arg[1]))) |
| Junio C Hamano | 8c135ea | 2012-07-02 18:01:25 | [diff] [blame] | 169 | maybe_die_on_misspelt_object_name(arg, prefix); |
| Junio C Hamano | 0e539dc | 2011-05-10 19:05:01 | [diff] [blame] | 170 | |
| Matthieu Moy | 009fee4 | 2009-12-07 10:10:50 | [diff] [blame] | 171 | /* ... or fall back the most general message. */ |
| 172 | die("ambiguous argument '%s': unknown revision or path not in the working tree.\n" |
| Matthieu Moy | 4d4b573 | 2012-08-03 08:21:20 | [diff] [blame] | 173 | "Use '--' to separate paths from revisions, like this:\n" |
| 174 | "'git <command> [<revision>...] -- [<file>...]'", arg); |
| Matthieu Moy | 009fee4 | 2009-12-07 10:10:50 | [diff] [blame] | 175 | |
| 176 | } |
| 177 | |
| Linus Torvalds | e23d0b4 | 2006-04-26 17:15:54 | [diff] [blame] | 178 | /* |
| 179 | * Verify a filename that we got as an argument for a pathspec |
| 180 | * entry. Note that a filename that begins with "-" never verifies |
| 181 | * as true, because even if such a filename were to exist, we want |
| 182 | * it to be preceded by the "--" marker (or we want the user to |
| 183 | * use a format like "./-filename") |
| Matthieu Moy | 023e37c | 2012-06-18 18:18:21 | [diff] [blame] | 184 | * |
| 185 | * The "diagnose_misspelt_rev" is used to provide a user-friendly |
| 186 | * diagnosis when dying upon finding that "name" is not a pathname. |
| 187 | * If set to 1, the diagnosis will try to diagnose "name" as an |
| 188 | * invalid object name (e.g. HEAD:foo). If set to 0, the diagnosis |
| 189 | * will only complain about an inexisting file. |
| 190 | * |
| 191 | * This function is typically called to check that a "file or rev" |
| 192 | * argument is unambiguous. In this case, the caller will want |
| 193 | * diagnose_misspelt_rev == 1 when verifying the first non-rev |
| 194 | * argument (which could have been a revision), and |
| 195 | * diagnose_misspelt_rev == 0 for the next ones (because we already |
| 196 | * saw a filename, there's not ambiguity anymore). |
| Linus Torvalds | e23d0b4 | 2006-04-26 17:15:54 | [diff] [blame] | 197 | */ |
| Matthieu Moy | 023e37c | 2012-06-18 18:18:21 | [diff] [blame] | 198 | void verify_filename(const char *prefix, |
| 199 | const char *arg, |
| 200 | int diagnose_misspelt_rev) |
| Linus Torvalds | e23d0b4 | 2006-04-26 17:15:54 | [diff] [blame] | 201 | { |
| Linus Torvalds | e23d0b4 | 2006-04-26 17:15:54 | [diff] [blame] | 202 | if (*arg == '-') |
| 203 | die("bad flag '%s' used after filename", arg); |
| Junio C Hamano | c6e8c80 | 2009-10-18 07:27:24 | [diff] [blame] | 204 | if (check_filename(prefix, arg)) |
| Linus Torvalds | e23d0b4 | 2006-04-26 17:15:54 | [diff] [blame] | 205 | return; |
| Matthieu Moy | 023e37c | 2012-06-18 18:18:21 | [diff] [blame] | 206 | die_verify_filename(prefix, arg, diagnose_misspelt_rev); |
| Linus Torvalds | e23d0b4 | 2006-04-26 17:15:54 | [diff] [blame] | 207 | } |
| 208 | |
| Junio C Hamano | ea92f41 | 2006-04-26 22:09:27 | [diff] [blame] | 209 | /* |
| 210 | * Opposite of the above: the command line did not have -- marker |
| 211 | * and we parsed the arg as a refname. It should not be interpretable |
| 212 | * as a filename. |
| 213 | */ |
| 214 | void verify_non_filename(const char *prefix, const char *arg) |
| 215 | { |
| Matthias Lederhofer | 7ae3df8 | 2007-06-03 14:48:16 | [diff] [blame] | 216 | if (!is_inside_work_tree() || is_inside_git_dir()) |
| Johannes Schindelin | 6802563 | 2007-01-20 02:09:34 | [diff] [blame] | 217 | return; |
| Junio C Hamano | ea92f41 | 2006-04-26 22:09:27 | [diff] [blame] | 218 | if (*arg == '-') |
| 219 | return; /* flag */ |
| Junio C Hamano | c6e8c80 | 2009-10-18 07:27:24 | [diff] [blame] | 220 | if (!check_filename(prefix, arg)) |
| 221 | return; |
| 222 | die("ambiguous argument '%s': both revision and filename\n" |
| Matthieu Moy | 4d4b573 | 2012-08-03 08:21:20 | [diff] [blame] | 223 | "Use '--' to separate paths from revisions, like this:\n" |
| 224 | "'git <command> [<revision>...] -- [<file>...]'", arg); |
| Junio C Hamano | ea92f41 | 2006-04-26 22:09:27 | [diff] [blame] | 225 | } |
| 226 | |
| Linus Torvalds | d288a70 | 2005-08-17 01:06:34 | [diff] [blame] | 227 | |
| Linus Torvalds | 5f5608b | 2005-08-27 20:54:42 | [diff] [blame] | 228 | /* |
| Shawn O. Pearce | ad1a382 | 2006-12-31 04:30:19 | [diff] [blame] | 229 | * Test if it looks like we're at a git directory. |
| Junio C Hamano | 5e7bfe2 | 2005-11-25 23:43:41 | [diff] [blame] | 230 | * We want to see: |
| Linus Torvalds | 5f5608b | 2005-08-27 20:54:42 | [diff] [blame] | 231 | * |
| Jim Meyering | 790296f | 2008-01-03 14:18:07 | [diff] [blame] | 232 | * - either an objects/ directory _or_ the proper |
| Linus Torvalds | 5f5608b | 2005-08-27 20:54:42 | [diff] [blame] | 233 | * GIT_OBJECT_DIRECTORY environment variable |
| Shawn O. Pearce | ad1a382 | 2006-12-31 04:30:19 | [diff] [blame] | 234 | * - a refs/ directory |
| Junio C Hamano | 8098a17 | 2005-09-30 21:26:57 | [diff] [blame] | 235 | * - either a HEAD symlink or a HEAD file that is formatted as |
| Junio C Hamano | c847f53 | 2007-01-02 07:31:08 | [diff] [blame] | 236 | * a proper "ref:", or a regular file HEAD that has a properly |
| 237 | * formatted sha1 object name. |
| Linus Torvalds | 5f5608b | 2005-08-27 20:54:42 | [diff] [blame] | 238 | */ |
| Jeff King | b3256eb | 2012-02-02 21:59:13 | [diff] [blame] | 239 | int is_git_directory(const char *suspect) |
| Linus Torvalds | 5f5608b | 2005-08-27 20:54:42 | [diff] [blame] | 240 | { |
| Shawn O. Pearce | ad1a382 | 2006-12-31 04:30:19 | [diff] [blame] | 241 | char path[PATH_MAX]; |
| 242 | size_t len = strlen(suspect); |
| 243 | |
| Greg Brockman | 3c9d041 | 2010-07-20 04:46:21 | [diff] [blame] | 244 | if (PATH_MAX <= len + strlen("/objects")) |
| 245 | die("Too long path: %.*s", 60, suspect); |
| Shawn O. Pearce | ad1a382 | 2006-12-31 04:30:19 | [diff] [blame] | 246 | strcpy(path, suspect); |
| 247 | if (getenv(DB_ENVIRONMENT)) { |
| 248 | if (access(getenv(DB_ENVIRONMENT), X_OK)) |
| 249 | return 0; |
| 250 | } |
| 251 | else { |
| 252 | strcpy(path + len, "/objects"); |
| 253 | if (access(path, X_OK)) |
| 254 | return 0; |
| 255 | } |
| 256 | |
| 257 | strcpy(path + len, "/refs"); |
| 258 | if (access(path, X_OK)) |
| Junio C Hamano | 8098a17 | 2005-09-30 21:26:57 | [diff] [blame] | 259 | return 0; |
| Shawn O. Pearce | ad1a382 | 2006-12-31 04:30:19 | [diff] [blame] | 260 | |
| 261 | strcpy(path + len, "/HEAD"); |
| Junio C Hamano | c847f53 | 2007-01-02 07:31:08 | [diff] [blame] | 262 | if (validate_headref(path)) |
| Shawn O. Pearce | ad1a382 | 2006-12-31 04:30:19 | [diff] [blame] | 263 | return 0; |
| 264 | |
| Junio C Hamano | 8098a17 | 2005-09-30 21:26:57 | [diff] [blame] | 265 | return 1; |
| Linus Torvalds | 5f5608b | 2005-08-27 20:54:42 | [diff] [blame] | 266 | } |
| 267 | |
| Johannes Schindelin | 6802563 | 2007-01-20 02:09:34 | [diff] [blame] | 268 | int is_inside_git_dir(void) |
| 269 | { |
| Johannes Schindelin | e90fdc3 | 2007-08-01 00:30:14 | [diff] [blame] | 270 | if (inside_git_dir < 0) |
| 271 | inside_git_dir = is_inside_dir(get_git_dir()); |
| 272 | return inside_git_dir; |
| Matthias Lederhofer | 892c41b | 2007-06-06 07:10:42 | [diff] [blame] | 273 | } |
| Johannes Schindelin | 6802563 | 2007-01-20 02:09:34 | [diff] [blame] | 274 | |
| Matthias Lederhofer | 892c41b | 2007-06-06 07:10:42 | [diff] [blame] | 275 | int is_inside_work_tree(void) |
| 276 | { |
| Johannes Schindelin | e90fdc3 | 2007-08-01 00:30:14 | [diff] [blame] | 277 | if (inside_work_tree < 0) |
| 278 | inside_work_tree = is_inside_dir(get_git_work_tree()); |
| 279 | return inside_work_tree; |
| Matthias Lederhofer | 892c41b | 2007-06-06 07:10:42 | [diff] [blame] | 280 | } |
| 281 | |
| Junio C Hamano | f3fa183 | 2007-11-08 23:35:32 | [diff] [blame] | 282 | void setup_work_tree(void) |
| 283 | { |
| Johannes Schindelin | 354e653 | 2007-11-09 11:34:07 | [diff] [blame] | 284 | const char *work_tree, *git_dir; |
| 285 | static int initialized = 0; |
| 286 | |
| 287 | if (initialized) |
| 288 | return; |
| 289 | work_tree = get_git_work_tree(); |
| 290 | git_dir = get_git_dir(); |
| Mike Hommey | 59f0f2f | 2007-11-03 11:23:11 | [diff] [blame] | 291 | if (!is_absolute_path(git_dir)) |
| Carlos Martín Nieto | e2a57aa | 2011-03-17 11:26:46 | [diff] [blame] | 292 | git_dir = real_path(get_git_dir()); |
| Mike Hommey | 59f0f2f | 2007-11-03 11:23:11 | [diff] [blame] | 293 | if (!work_tree || chdir(work_tree)) |
| 294 | die("This operation must be run in a work tree"); |
| Nguyễn Thái Ngọc Duy | 0ed7481 | 2010-12-27 01:26:04 | [diff] [blame] | 295 | |
| 296 | /* |
| 297 | * Make sure subsequent git processes find correct worktree |
| 298 | * if $GIT_WORK_TREE is set relative |
| 299 | */ |
| 300 | if (getenv(GIT_WORK_TREE_ENVIRONMENT)) |
| 301 | setenv(GIT_WORK_TREE_ENVIRONMENT, ".", 1); |
| 302 | |
| Jiang Xin | 41894ae | 2013-10-14 02:29:40 | [diff] [blame] | 303 | set_git_dir(remove_leading_path(git_dir, work_tree)); |
| Johannes Schindelin | 354e653 | 2007-11-09 11:34:07 | [diff] [blame] | 304 | initialized = 1; |
| Mike Hommey | 59f0f2f | 2007-11-03 11:23:11 | [diff] [blame] | 305 | } |
| 306 | |
| Nguyễn Thái Ngọc Duy | 337e51c | 2010-11-26 15:32:34 | [diff] [blame] | 307 | static int check_repository_format_gently(const char *gitdir, int *nongit_ok) |
| Nguyễn Thái Ngọc Duy | 9459aa7 | 2007-12-05 13:33:32 | [diff] [blame] | 308 | { |
| Nguyễn Thái Ngọc Duy | 337e51c | 2010-11-26 15:32:34 | [diff] [blame] | 309 | char repo_config[PATH_MAX+1]; |
| 310 | |
| 311 | /* |
| 312 | * git_config() can't be used here because it calls git_pathdup() |
| 313 | * to get $GIT_CONFIG/config. That call will make setup_git_env() |
| 314 | * set git_dir to ".git". |
| 315 | * |
| 316 | * We are in gitdir setup, no git dir has been found useable yet. |
| 317 | * Use a gentler version of git_config() to check if this repo |
| 318 | * is a good one. |
| 319 | */ |
| 320 | snprintf(repo_config, PATH_MAX, "%s/config", gitdir); |
| 321 | git_config_early(check_repository_format_version, NULL, repo_config); |
| Nguyễn Thái Ngọc Duy | 9459aa7 | 2007-12-05 13:33:32 | [diff] [blame] | 322 | if (GIT_REPO_VERSION < repository_format_version) { |
| 323 | if (!nongit_ok) |
| 324 | die ("Expected git repo version <= %d, found %d", |
| 325 | GIT_REPO_VERSION, repository_format_version); |
| 326 | warning("Expected git repo version <= %d, found %d", |
| 327 | GIT_REPO_VERSION, repository_format_version); |
| 328 | warning("Please upgrade Git"); |
| 329 | *nongit_ok = -1; |
| 330 | return -1; |
| 331 | } |
| 332 | return 0; |
| 333 | } |
| 334 | |
| Johannes Schindelin | e90fdc3 | 2007-08-01 00:30:14 | [diff] [blame] | 335 | /* |
| Lars Hjemli | b44ebb1 | 2008-02-20 22:13:13 | [diff] [blame] | 336 | * Try to read the location of the git directory from the .git file, |
| 337 | * return path to git directory if found. |
| 338 | */ |
| Junio C Hamano | 13d6ec9 | 2011-08-22 21:04:56 | [diff] [blame] | 339 | const char *read_gitfile(const char *path) |
| Lars Hjemli | b44ebb1 | 2008-02-20 22:13:13 | [diff] [blame] | 340 | { |
| 341 | char *buf; |
| Brad King | 40c813e | 2010-01-09 03:36:41 | [diff] [blame] | 342 | char *dir; |
| 343 | const char *slash; |
| Lars Hjemli | b44ebb1 | 2008-02-20 22:13:13 | [diff] [blame] | 344 | struct stat st; |
| 345 | int fd; |
| Jeff King | b1905ae | 2011-05-26 16:28:44 | [diff] [blame] | 346 | ssize_t len; |
| Lars Hjemli | b44ebb1 | 2008-02-20 22:13:13 | [diff] [blame] | 347 | |
| 348 | if (stat(path, &st)) |
| 349 | return NULL; |
| 350 | if (!S_ISREG(st.st_mode)) |
| 351 | return NULL; |
| 352 | fd = open(path, O_RDONLY); |
| 353 | if (fd < 0) |
| Thomas Rast | d824cbb | 2009-06-27 15:58:46 | [diff] [blame] | 354 | die_errno("Error opening '%s'", path); |
| Lars Hjemli | b44ebb1 | 2008-02-20 22:13:13 | [diff] [blame] | 355 | buf = xmalloc(st.st_size + 1); |
| 356 | len = read_in_full(fd, buf, st.st_size); |
| 357 | close(fd); |
| 358 | if (len != st.st_size) |
| 359 | die("Error reading %s", path); |
| 360 | buf[len] = '\0'; |
| Christian Couder | 5955654 | 2013-11-30 20:55:40 | [diff] [blame] | 361 | if (!starts_with(buf, "gitdir: ")) |
| Lars Hjemli | b44ebb1 | 2008-02-20 22:13:13 | [diff] [blame] | 362 | die("Invalid gitfile format: %s", path); |
| 363 | while (buf[len - 1] == '\n' || buf[len - 1] == '\r') |
| 364 | len--; |
| 365 | if (len < 9) |
| 366 | die("No path in gitfile: %s", path); |
| 367 | buf[len] = '\0'; |
| Brad King | 40c813e | 2010-01-09 03:36:41 | [diff] [blame] | 368 | dir = buf + 8; |
| 369 | |
| 370 | if (!is_absolute_path(dir) && (slash = strrchr(path, '/'))) { |
| 371 | size_t pathlen = slash+1 - path; |
| 372 | size_t dirlen = pathlen + len - 8; |
| 373 | dir = xmalloc(dirlen + 1); |
| 374 | strncpy(dir, path, pathlen); |
| 375 | strncpy(dir + pathlen, buf + 8, len - 8); |
| 376 | dir[dirlen] = '\0'; |
| 377 | free(buf); |
| 378 | buf = dir; |
| 379 | } |
| 380 | |
| 381 | if (!is_git_directory(dir)) |
| 382 | die("Not a git repository: %s", dir); |
| Carlos Martín Nieto | e2a57aa | 2011-03-17 11:26:46 | [diff] [blame] | 383 | path = real_path(dir); |
| Brad King | 40c813e | 2010-01-09 03:36:41 | [diff] [blame] | 384 | |
| Lars Hjemli | b44ebb1 | 2008-02-20 22:13:13 | [diff] [blame] | 385 | free(buf); |
| 386 | return path; |
| 387 | } |
| 388 | |
| Jonathan Nieder | e4e3034 | 2010-07-24 11:19:44 | [diff] [blame] | 389 | static const char *setup_explicit_git_dir(const char *gitdirenv, |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 390 | struct strbuf *cwd, |
| Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 15:32:39 | [diff] [blame] | 391 | int *nongit_ok) |
| Jonathan Nieder | e4e3034 | 2010-07-24 11:19:44 | [diff] [blame] | 392 | { |
| Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 15:32:39 | [diff] [blame] | 393 | const char *work_tree_env = getenv(GIT_WORK_TREE_ENVIRONMENT); |
| 394 | const char *worktree; |
| 395 | char *gitfile; |
| Nguyễn Thái Ngọc Duy | 9b125da | 2011-03-26 09:04:24 | [diff] [blame] | 396 | int offset; |
| Jonathan Nieder | e4e3034 | 2010-07-24 11:19:44 | [diff] [blame] | 397 | |
| 398 | if (PATH_MAX - 40 < strlen(gitdirenv)) |
| 399 | die("'$%s' too big", GIT_DIR_ENVIRONMENT); |
| Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 15:32:39 | [diff] [blame] | 400 | |
| Junio C Hamano | 13d6ec9 | 2011-08-22 21:04:56 | [diff] [blame] | 401 | gitfile = (char*)read_gitfile(gitdirenv); |
| Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 15:32:39 | [diff] [blame] | 402 | if (gitfile) { |
| 403 | gitfile = xstrdup(gitfile); |
| 404 | gitdirenv = gitfile; |
| 405 | } |
| 406 | |
| Jonathan Nieder | e4e3034 | 2010-07-24 11:19:44 | [diff] [blame] | 407 | if (!is_git_directory(gitdirenv)) { |
| 408 | if (nongit_ok) { |
| 409 | *nongit_ok = 1; |
| Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 15:32:39 | [diff] [blame] | 410 | free(gitfile); |
| Jonathan Nieder | e4e3034 | 2010-07-24 11:19:44 | [diff] [blame] | 411 | return NULL; |
| 412 | } |
| 413 | die("Not a git repository: '%s'", gitdirenv); |
| 414 | } |
| Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 15:32:39 | [diff] [blame] | 415 | |
| 416 | if (check_repository_format_gently(gitdirenv, nongit_ok)) { |
| 417 | free(gitfile); |
| 418 | return NULL; |
| Jonathan Nieder | e4e3034 | 2010-07-24 11:19:44 | [diff] [blame] | 419 | } |
| Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 15:32:39 | [diff] [blame] | 420 | |
| 421 | /* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */ |
| 422 | if (work_tree_env) |
| 423 | set_git_work_tree(work_tree_env); |
| 424 | else if (is_bare_repository_cfg > 0) { |
| 425 | if (git_work_tree_cfg) /* #22.2, #30 */ |
| 426 | die("core.bare and core.worktree do not make sense"); |
| 427 | |
| 428 | /* #18, #26 */ |
| 429 | set_git_dir(gitdirenv); |
| 430 | free(gitfile); |
| Jonathan Nieder | e4e3034 | 2010-07-24 11:19:44 | [diff] [blame] | 431 | return NULL; |
| Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 15:32:39 | [diff] [blame] | 432 | } |
| 433 | else if (git_work_tree_cfg) { /* #6, #14 */ |
| 434 | if (is_absolute_path(git_work_tree_cfg)) |
| 435 | set_git_work_tree(git_work_tree_cfg); |
| 436 | else { |
| René Scharfe | 56b9f6e | 2014-07-28 18:30:39 | [diff] [blame] | 437 | char *core_worktree; |
| Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 15:32:39 | [diff] [blame] | 438 | if (chdir(gitdirenv)) |
| 439 | die_errno("Could not chdir to '%s'", gitdirenv); |
| 440 | if (chdir(git_work_tree_cfg)) |
| 441 | die_errno("Could not chdir to '%s'", git_work_tree_cfg); |
| René Scharfe | 56b9f6e | 2014-07-28 18:30:39 | [diff] [blame] | 442 | core_worktree = xgetcwd(); |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 443 | if (chdir(cwd->buf)) |
| Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 15:32:39 | [diff] [blame] | 444 | die_errno("Could not come back to cwd"); |
| 445 | set_git_work_tree(core_worktree); |
| René Scharfe | 56b9f6e | 2014-07-28 18:30:39 | [diff] [blame] | 446 | free(core_worktree); |
| Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 15:32:39 | [diff] [blame] | 447 | } |
| 448 | } |
| Jeff King | 2cd83d1 | 2013-03-08 09:32:22 | [diff] [blame] | 449 | else if (!git_env_bool(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, 1)) { |
| 450 | /* #16d */ |
| 451 | set_git_dir(gitdirenv); |
| 452 | free(gitfile); |
| 453 | return NULL; |
| 454 | } |
| Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 15:32:39 | [diff] [blame] | 455 | else /* #2, #10 */ |
| 456 | set_git_work_tree("."); |
| 457 | |
| 458 | /* set_git_work_tree() must have been called by now */ |
| 459 | worktree = get_git_work_tree(); |
| 460 | |
| 461 | /* both get_git_work_tree() and cwd are already normalized */ |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 462 | if (!strcmp(cwd->buf, worktree)) { /* cwd == worktree */ |
| Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 15:32:39 | [diff] [blame] | 463 | set_git_dir(gitdirenv); |
| 464 | free(gitfile); |
| Jonathan Nieder | e4e3034 | 2010-07-24 11:19:44 | [diff] [blame] | 465 | return NULL; |
| Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 15:32:39 | [diff] [blame] | 466 | } |
| 467 | |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 468 | offset = dir_inside_of(cwd->buf, worktree); |
| Nguyễn Thái Ngọc Duy | 9b125da | 2011-03-26 09:04:24 | [diff] [blame] | 469 | if (offset >= 0) { /* cwd inside worktree? */ |
| Carlos Martín Nieto | e2a57aa | 2011-03-17 11:26:46 | [diff] [blame] | 470 | set_git_dir(real_path(gitdirenv)); |
| Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 15:32:39 | [diff] [blame] | 471 | if (chdir(worktree)) |
| 472 | die_errno("Could not chdir to '%s'", worktree); |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 473 | strbuf_addch(cwd, '/'); |
| Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 15:32:39 | [diff] [blame] | 474 | free(gitfile); |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 475 | return cwd->buf + offset; |
| Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 15:32:39 | [diff] [blame] | 476 | } |
| 477 | |
| 478 | /* cwd outside worktree */ |
| 479 | set_git_dir(gitdirenv); |
| 480 | free(gitfile); |
| 481 | return NULL; |
| Jonathan Nieder | e4e3034 | 2010-07-24 11:19:44 | [diff] [blame] | 482 | } |
| 483 | |
| Nguyễn Thái Ngọc Duy | 9951d3b | 2010-11-26 15:32:38 | [diff] [blame] | 484 | static const char *setup_discovered_git_dir(const char *gitdir, |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 485 | struct strbuf *cwd, int offset, |
| Nguyễn Thái Ngọc Duy | 9951d3b | 2010-11-26 15:32:38 | [diff] [blame] | 486 | int *nongit_ok) |
| Jonathan Nieder | 93a0054 | 2010-07-24 11:20:15 | [diff] [blame] | 487 | { |
| Nguyễn Thái Ngọc Duy | 337e51c | 2010-11-26 15:32:34 | [diff] [blame] | 488 | if (check_repository_format_gently(gitdir, nongit_ok)) |
| Nguyễn Thái Ngọc Duy | 98937be | 2010-07-24 12:11:58 | [diff] [blame] | 489 | return NULL; |
| Nguyễn Thái Ngọc Duy | 9951d3b | 2010-11-26 15:32:38 | [diff] [blame] | 490 | |
| Jonathan Nieder | 4868b2e | 2011-01-19 12:42:30 | [diff] [blame] | 491 | /* --work-tree is set without --git-dir; use discovered one */ |
| 492 | if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) { |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 493 | if (offset != cwd->len && !is_absolute_path(gitdir)) |
| Carlos Martín Nieto | e2a57aa | 2011-03-17 11:26:46 | [diff] [blame] | 494 | gitdir = xstrdup(real_path(gitdir)); |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 495 | if (chdir(cwd->buf)) |
| Jonathan Nieder | 4868b2e | 2011-01-19 12:42:30 | [diff] [blame] | 496 | die_errno("Could not come back to cwd"); |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 497 | return setup_explicit_git_dir(gitdir, cwd, nongit_ok); |
| Jonathan Nieder | 4868b2e | 2011-01-19 12:42:30 | [diff] [blame] | 498 | } |
| 499 | |
| Nguyễn Thái Ngọc Duy | 9951d3b | 2010-11-26 15:32:38 | [diff] [blame] | 500 | /* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */ |
| 501 | if (is_bare_repository_cfg > 0) { |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 502 | set_git_dir(offset == cwd->len ? gitdir : real_path(gitdir)); |
| 503 | if (chdir(cwd->buf)) |
| Nguyễn Thái Ngọc Duy | 9951d3b | 2010-11-26 15:32:38 | [diff] [blame] | 504 | die_errno("Could not come back to cwd"); |
| 505 | return NULL; |
| Jonathan Nieder | 93a0054 | 2010-07-24 11:20:15 | [diff] [blame] | 506 | } |
| Jonathan Nieder | 93a0054 | 2010-07-24 11:20:15 | [diff] [blame] | 507 | |
| Nguyễn Thái Ngọc Duy | 9951d3b | 2010-11-26 15:32:38 | [diff] [blame] | 508 | /* #0, #1, #5, #8, #9, #12, #13 */ |
| 509 | set_git_work_tree("."); |
| 510 | if (strcmp(gitdir, DEFAULT_GIT_DIR_ENVIRONMENT)) |
| 511 | set_git_dir(gitdir); |
| Nguyễn Thái Ngọc Duy | 98937be | 2010-07-24 12:11:58 | [diff] [blame] | 512 | inside_git_dir = 0; |
| Nguyễn Thái Ngọc Duy | 9951d3b | 2010-11-26 15:32:38 | [diff] [blame] | 513 | inside_work_tree = 1; |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 514 | if (offset == cwd->len) |
| Nguyễn Thái Ngọc Duy | 98937be | 2010-07-24 12:11:58 | [diff] [blame] | 515 | return NULL; |
| 516 | |
| 517 | /* Make "offset" point to past the '/', and add a '/' at the end */ |
| 518 | offset++; |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 519 | strbuf_addch(cwd, '/'); |
| 520 | return cwd->buf + offset; |
| Nguyễn Thái Ngọc Duy | 98937be | 2010-07-24 12:11:58 | [diff] [blame] | 521 | } |
| 522 | |
| Nguyễn Thái Ngọc Duy | 1cd8031 | 2010-11-26 15:32:36 | [diff] [blame] | 523 | /* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */ |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 524 | static const char *setup_bare_git_dir(struct strbuf *cwd, int offset, |
| 525 | int *nongit_ok) |
| Jonathan Nieder | 68698da | 2010-07-24 11:25:32 | [diff] [blame] | 526 | { |
| 527 | int root_len; |
| 528 | |
| Nguyễn Thái Ngọc Duy | 1cd8031 | 2010-11-26 15:32:36 | [diff] [blame] | 529 | if (check_repository_format_gently(".", nongit_ok)) |
| 530 | return NULL; |
| 531 | |
| Jeff King | 2cd83d1 | 2013-03-08 09:32:22 | [diff] [blame] | 532 | setenv(GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, "0", 1); |
| 533 | |
| Jonathan Nieder | 4868b2e | 2011-01-19 12:42:30 | [diff] [blame] | 534 | /* --work-tree is set without --git-dir; use discovered one */ |
| 535 | if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) { |
| 536 | const char *gitdir; |
| 537 | |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 538 | gitdir = offset == cwd->len ? "." : xmemdupz(cwd->buf, offset); |
| 539 | if (chdir(cwd->buf)) |
| Jonathan Nieder | 4868b2e | 2011-01-19 12:42:30 | [diff] [blame] | 540 | die_errno("Could not come back to cwd"); |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 541 | return setup_explicit_git_dir(gitdir, cwd, nongit_ok); |
| Jonathan Nieder | 4868b2e | 2011-01-19 12:42:30 | [diff] [blame] | 542 | } |
| 543 | |
| Jonathan Nieder | 68698da | 2010-07-24 11:25:32 | [diff] [blame] | 544 | inside_git_dir = 1; |
| Nguyễn Thái Ngọc Duy | 1cd8031 | 2010-11-26 15:32:36 | [diff] [blame] | 545 | inside_work_tree = 0; |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 546 | if (offset != cwd->len) { |
| 547 | if (chdir(cwd->buf)) |
| Nguyễn Thái Ngọc Duy | 8fc0ae8 | 2010-07-24 11:29:41 | [diff] [blame] | 548 | die_errno("Cannot come back to cwd"); |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 549 | root_len = offset_1st_component(cwd->buf); |
| 550 | strbuf_setlen(cwd, offset > root_len ? offset : root_len); |
| 551 | set_git_dir(cwd->buf); |
| Nguyễn Thái Ngọc Duy | 337e51c | 2010-11-26 15:32:34 | [diff] [blame] | 552 | } |
| Nguyễn Thái Ngọc Duy | 1cd8031 | 2010-11-26 15:32:36 | [diff] [blame] | 553 | else |
| Jonathan Nieder | 68698da | 2010-07-24 11:25:32 | [diff] [blame] | 554 | set_git_dir("."); |
| Jonathan Nieder | 68698da | 2010-07-24 11:25:32 | [diff] [blame] | 555 | return NULL; |
| 556 | } |
| 557 | |
| Jonathan Nieder | f161ede | 2010-07-24 11:26:41 | [diff] [blame] | 558 | static const char *setup_nongit(const char *cwd, int *nongit_ok) |
| 559 | { |
| 560 | if (!nongit_ok) |
| 561 | die("Not a git repository (or any of the parent directories): %s", DEFAULT_GIT_DIR_ENVIRONMENT); |
| 562 | if (chdir(cwd)) |
| 563 | die_errno("Cannot come back to cwd"); |
| 564 | *nongit_ok = 1; |
| 565 | return NULL; |
| 566 | } |
| 567 | |
| Clemens Buchacher | 2565b43 | 2012-04-12 23:11:36 | [diff] [blame] | 568 | static dev_t get_device_or_die(const char *path, const char *prefix, int prefix_len) |
| Jonathan Nieder | 60c98d1 | 2010-07-24 11:27:58 | [diff] [blame] | 569 | { |
| 570 | struct stat buf; |
| Clemens Buchacher | 2565b43 | 2012-04-12 23:11:36 | [diff] [blame] | 571 | if (stat(path, &buf)) { |
| 572 | die_errno("failed to stat '%*s%s%s'", |
| 573 | prefix_len, |
| Jonathan Nieder | 60c98d1 | 2010-07-24 11:27:58 | [diff] [blame] | 574 | prefix ? prefix : "", |
| 575 | prefix ? "/" : "", path); |
| Clemens Buchacher | 2565b43 | 2012-04-12 23:11:36 | [diff] [blame] | 576 | } |
| Jonathan Nieder | 60c98d1 | 2010-07-24 11:27:58 | [diff] [blame] | 577 | return buf.st_dev; |
| 578 | } |
| 579 | |
| Lars Hjemli | b44ebb1 | 2008-02-20 22:13:13 | [diff] [blame] | 580 | /* |
| Michael Haggerty | 1b77d83 | 2012-10-28 16:16:26 | [diff] [blame] | 581 | * A "string_list_each_func_t" function that canonicalizes an entry |
| 582 | * from GIT_CEILING_DIRECTORIES using real_path_if_valid(), or |
| Michael Haggerty | 7ec30aa | 2013-02-20 09:09:24 | [diff] [blame] | 583 | * discards it if unusable. The presence of an empty entry in |
| 584 | * GIT_CEILING_DIRECTORIES turns off canonicalization for all |
| 585 | * subsequent entries. |
| Michael Haggerty | 9e2326c | 2012-10-28 16:16:25 | [diff] [blame] | 586 | */ |
| Michael Haggerty | 1b77d83 | 2012-10-28 16:16:26 | [diff] [blame] | 587 | static int canonicalize_ceiling_entry(struct string_list_item *item, |
| Michael Haggerty | 7ec30aa | 2013-02-20 09:09:24 | [diff] [blame] | 588 | void *cb_data) |
| Michael Haggerty | 9e2326c | 2012-10-28 16:16:25 | [diff] [blame] | 589 | { |
| Michael Haggerty | 7ec30aa | 2013-02-20 09:09:24 | [diff] [blame] | 590 | int *empty_entry_found = cb_data; |
| Michael Haggerty | 1b77d83 | 2012-10-28 16:16:26 | [diff] [blame] | 591 | char *ceil = item->string; |
| Michael Haggerty | 9e2326c | 2012-10-28 16:16:25 | [diff] [blame] | 592 | |
| Michael Haggerty | 7ec30aa | 2013-02-20 09:09:24 | [diff] [blame] | 593 | if (!*ceil) { |
| 594 | *empty_entry_found = 1; |
| Michael Haggerty | 9e2326c | 2012-10-28 16:16:25 | [diff] [blame] | 595 | return 0; |
| Michael Haggerty | 7ec30aa | 2013-02-20 09:09:24 | [diff] [blame] | 596 | } else if (!is_absolute_path(ceil)) { |
| Michael Haggerty | 9e2326c | 2012-10-28 16:16:25 | [diff] [blame] | 597 | return 0; |
| Michael Haggerty | 7ec30aa | 2013-02-20 09:09:24 | [diff] [blame] | 598 | } else if (*empty_entry_found) { |
| 599 | /* Keep entry but do not canonicalize it */ |
| 600 | return 1; |
| 601 | } else { |
| 602 | const char *real_path = real_path_if_valid(ceil); |
| 603 | if (!real_path) |
| 604 | return 0; |
| 605 | free(item->string); |
| 606 | item->string = xstrdup(real_path); |
| 607 | return 1; |
| 608 | } |
| Michael Haggerty | 9e2326c | 2012-10-28 16:16:25 | [diff] [blame] | 609 | } |
| 610 | |
| 611 | /* |
| Johannes Schindelin | e90fdc3 | 2007-08-01 00:30:14 | [diff] [blame] | 612 | * We cannot decide in this function whether we are in the work tree or |
| 613 | * not, since the config can only be read _after_ this function was called. |
| 614 | */ |
| Nguyễn Thái Ngọc Duy | a60645f | 2010-08-06 02:46:33 | [diff] [blame] | 615 | static const char *setup_git_directory_gently_1(int *nongit_ok) |
| Linus Torvalds | d288a70 | 2005-08-17 01:06:34 | [diff] [blame] | 616 | { |
| David Reiss | 0454dd9 | 2008-05-20 06:49:26 | [diff] [blame] | 617 | const char *env_ceiling_dirs = getenv(CEILING_DIRECTORIES_ENVIRONMENT); |
| Michael Haggerty | 31171d9 | 2012-10-28 16:16:24 | [diff] [blame] | 618 | struct string_list ceiling_dirs = STRING_LIST_INIT_DUP; |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 619 | static struct strbuf cwd = STRBUF_INIT; |
| Nguyễn Thái Ngọc Duy | 9951d3b | 2010-11-26 15:32:38 | [diff] [blame] | 620 | const char *gitdirenv, *ret; |
| 621 | char *gitfile; |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 622 | int offset, offset_parent, ceil_offset = -1; |
| Raja R Harinath | c7d1d1b | 2010-07-13 09:02:00 | [diff] [blame] | 623 | dev_t current_device = 0; |
| 624 | int one_filesystem = 1; |
| Linus Torvalds | d288a70 | 2005-08-17 01:06:34 | [diff] [blame] | 625 | |
| Johannes Schindelin | e90fdc3 | 2007-08-01 00:30:14 | [diff] [blame] | 626 | /* |
| Tanay Abhra | 3c8687a | 2014-07-28 10:10:38 | [diff] [blame] | 627 | * We may have read an incomplete configuration before |
| 628 | * setting-up the git directory. If so, clear the cache so |
| 629 | * that the next queries to the configuration reload complete |
| 630 | * configuration (including the per-repo config file that we |
| 631 | * ignored previously). |
| 632 | */ |
| 633 | git_config_clear(); |
| 634 | |
| 635 | /* |
| SZEDER Gábor | af05d67 | 2008-03-25 21:06:26 | [diff] [blame] | 636 | * Let's assume that we are in a git repository. |
| 637 | * If it turns out later that we are somewhere else, the value will be |
| 638 | * updated accordingly. |
| 639 | */ |
| 640 | if (nongit_ok) |
| 641 | *nongit_ok = 0; |
| 642 | |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 643 | if (strbuf_getcwd(&cwd)) |
| Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 15:32:39 | [diff] [blame] | 644 | die_errno("Unable to read current working directory"); |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 645 | offset = cwd.len; |
| Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 15:32:39 | [diff] [blame] | 646 | |
| SZEDER Gábor | af05d67 | 2008-03-25 21:06:26 | [diff] [blame] | 647 | /* |
| Johannes Schindelin | e90fdc3 | 2007-08-01 00:30:14 | [diff] [blame] | 648 | * If GIT_DIR is set explicitly, we're not going |
| 649 | * to do any discovery, but we still do repository |
| 650 | * validation. |
| 651 | */ |
| Shawn O. Pearce | ad1a382 | 2006-12-31 04:30:19 | [diff] [blame] | 652 | gitdirenv = getenv(GIT_DIR_ENVIRONMENT); |
| Jonathan Nieder | e4e3034 | 2010-07-24 11:19:44 | [diff] [blame] | 653 | if (gitdirenv) |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 654 | return setup_explicit_git_dir(gitdirenv, &cwd, nongit_ok); |
| Linus Torvalds | d288a70 | 2005-08-17 01:06:34 | [diff] [blame] | 655 | |
| Michael Haggerty | 31171d9 | 2012-10-28 16:16:24 | [diff] [blame] | 656 | if (env_ceiling_dirs) { |
| Michael Haggerty | 7ec30aa | 2013-02-20 09:09:24 | [diff] [blame] | 657 | int empty_entry_found = 0; |
| 658 | |
| Michael Haggerty | 31171d9 | 2012-10-28 16:16:24 | [diff] [blame] | 659 | string_list_split(&ceiling_dirs, env_ceiling_dirs, PATH_SEP, -1); |
| Michael Haggerty | 1b77d83 | 2012-10-28 16:16:26 | [diff] [blame] | 660 | filter_string_list(&ceiling_dirs, 0, |
| Michael Haggerty | 7ec30aa | 2013-02-20 09:09:24 | [diff] [blame] | 661 | canonicalize_ceiling_entry, &empty_entry_found); |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 662 | ceil_offset = longest_ancestor_length(cwd.buf, &ceiling_dirs); |
| Michael Haggerty | 31171d9 | 2012-10-28 16:16:24 | [diff] [blame] | 663 | string_list_clear(&ceiling_dirs, 0); |
| 664 | } |
| 665 | |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 666 | if (ceil_offset < 0 && has_dos_drive_prefix(cwd.buf)) |
| Junio C Hamano | 17d778e | 2008-07-07 09:17:23 | [diff] [blame] | 667 | ceil_offset = 1; |
| Linus Torvalds | d288a70 | 2005-08-17 01:06:34 | [diff] [blame] | 668 | |
| Matthias Lederhofer | 892c41b | 2007-06-06 07:10:42 | [diff] [blame] | 669 | /* |
| Johannes Schindelin | e90fdc3 | 2007-08-01 00:30:14 | [diff] [blame] | 670 | * Test in the following order (relative to the cwd): |
| Lars Hjemli | b44ebb1 | 2008-02-20 22:13:13 | [diff] [blame] | 671 | * - .git (file containing "gitdir: <path>") |
| Johannes Schindelin | e90fdc3 | 2007-08-01 00:30:14 | [diff] [blame] | 672 | * - .git/ |
| 673 | * - ./ (bare) |
| Lars Hjemli | b44ebb1 | 2008-02-20 22:13:13 | [diff] [blame] | 674 | * - ../.git |
| Johannes Schindelin | e90fdc3 | 2007-08-01 00:30:14 | [diff] [blame] | 675 | * - ../.git/ |
| 676 | * - ../ (bare) |
| 677 | * - ../../.git/ |
| 678 | * etc. |
| Matthias Lederhofer | 892c41b | 2007-06-06 07:10:42 | [diff] [blame] | 679 | */ |
| Junio C Hamano | cf87463 | 2010-04-04 21:49:31 | [diff] [blame] | 680 | one_filesystem = !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM", 0); |
| Jonathan Nieder | 60c98d1 | 2010-07-24 11:27:58 | [diff] [blame] | 681 | if (one_filesystem) |
| Clemens Buchacher | 2565b43 | 2012-04-12 23:11:36 | [diff] [blame] | 682 | current_device = get_device_or_die(".", NULL, 0); |
| Johannes Schindelin | e90fdc3 | 2007-08-01 00:30:14 | [diff] [blame] | 683 | for (;;) { |
| Junio C Hamano | 13d6ec9 | 2011-08-22 21:04:56 | [diff] [blame] | 684 | gitfile = (char*)read_gitfile(DEFAULT_GIT_DIR_ENVIRONMENT); |
| Nguyễn Thái Ngọc Duy | 9951d3b | 2010-11-26 15:32:38 | [diff] [blame] | 685 | if (gitfile) |
| 686 | gitdirenv = gitfile = xstrdup(gitfile); |
| 687 | else { |
| 688 | if (is_git_directory(DEFAULT_GIT_DIR_ENVIRONMENT)) |
| 689 | gitdirenv = DEFAULT_GIT_DIR_ENVIRONMENT; |
| 690 | } |
| 691 | |
| 692 | if (gitdirenv) { |
| 693 | ret = setup_discovered_git_dir(gitdirenv, |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 694 | &cwd, offset, |
| Nguyễn Thái Ngọc Duy | 9951d3b | 2010-11-26 15:32:38 | [diff] [blame] | 695 | nongit_ok); |
| 696 | free(gitfile); |
| 697 | return ret; |
| 698 | } |
| 699 | free(gitfile); |
| 700 | |
| Jonathan Nieder | 68698da | 2010-07-24 11:25:32 | [diff] [blame] | 701 | if (is_git_directory(".")) |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 702 | return setup_bare_git_dir(&cwd, offset, nongit_ok); |
| Nguyễn Thái Ngọc Duy | 1cd8031 | 2010-11-26 15:32:36 | [diff] [blame] | 703 | |
| Clemens Buchacher | 2565b43 | 2012-04-12 23:11:36 | [diff] [blame] | 704 | offset_parent = offset; |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 705 | while (--offset_parent > ceil_offset && cwd.buf[offset_parent] != '/'); |
| Clemens Buchacher | 2565b43 | 2012-04-12 23:11:36 | [diff] [blame] | 706 | if (offset_parent <= ceil_offset) |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 707 | return setup_nongit(cwd.buf, nongit_ok); |
| Lars R. Damerow | 8030e44 | 2010-03-17 19:55:53 | [diff] [blame] | 708 | if (one_filesystem) { |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 709 | dev_t parent_device = get_device_or_die("..", cwd.buf, |
| 710 | offset); |
| Jonathan Nieder | 60c98d1 | 2010-07-24 11:27:58 | [diff] [blame] | 711 | if (parent_device != current_device) { |
| Lars R. Damerow | 8030e44 | 2010-03-17 19:55:53 | [diff] [blame] | 712 | if (nongit_ok) { |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 713 | if (chdir(cwd.buf)) |
| Lars R. Damerow | 8030e44 | 2010-03-17 19:55:53 | [diff] [blame] | 714 | die_errno("Cannot come back to cwd"); |
| 715 | *nongit_ok = 1; |
| 716 | return NULL; |
| 717 | } |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 718 | strbuf_setlen(&cwd, offset); |
| Clemens Buchacher | 2565b43 | 2012-04-12 23:11:36 | [diff] [blame] | 719 | die("Not a git repository (or any parent up to mount point %s)\n" |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 720 | "Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).", |
| 721 | cwd.buf); |
| Lars R. Damerow | 8030e44 | 2010-03-17 19:55:53 | [diff] [blame] | 722 | } |
| 723 | } |
| Lars R. Damerow | 502ffe3 | 2010-03-17 19:55:52 | [diff] [blame] | 724 | if (chdir("..")) { |
| René Scharfe | 7333ed1 | 2014-07-28 18:26:40 | [diff] [blame] | 725 | strbuf_setlen(&cwd, offset); |
| 726 | die_errno("Cannot change to '%s/..'", cwd.buf); |
| Lars R. Damerow | 502ffe3 | 2010-03-17 19:55:52 | [diff] [blame] | 727 | } |
| Clemens Buchacher | 2565b43 | 2012-04-12 23:11:36 | [diff] [blame] | 728 | offset = offset_parent; |
| Matthias Lederhofer | 892c41b | 2007-06-06 07:10:42 | [diff] [blame] | 729 | } |
| Linus Torvalds | d288a70 | 2005-08-17 01:06:34 | [diff] [blame] | 730 | } |
| Junio C Hamano | 5e7bfe2 | 2005-11-25 23:43:41 | [diff] [blame] | 731 | |
| Nguyễn Thái Ngọc Duy | a60645f | 2010-08-06 02:46:33 | [diff] [blame] | 732 | const char *setup_git_directory_gently(int *nongit_ok) |
| 733 | { |
| 734 | const char *prefix; |
| 735 | |
| 736 | prefix = setup_git_directory_gently_1(nongit_ok); |
| David Aguilar | 1f5d271 | 2011-05-26 03:37:12 | [diff] [blame] | 737 | if (prefix) |
| Jeff King | a6f7f9a | 2013-03-08 09:30:25 | [diff] [blame] | 738 | setenv(GIT_PREFIX_ENVIRONMENT, prefix, 1); |
| David Aguilar | 1f5d271 | 2011-05-26 03:37:12 | [diff] [blame] | 739 | else |
| Jeff King | a6f7f9a | 2013-03-08 09:30:25 | [diff] [blame] | 740 | setenv(GIT_PREFIX_ENVIRONMENT, "", 1); |
| David Aguilar | 1f5d271 | 2011-05-26 03:37:12 | [diff] [blame] | 741 | |
| Nguyễn Thái Ngọc Duy | f07d6a1 | 2010-12-01 23:33:22 | [diff] [blame] | 742 | if (startup_info) { |
| Nguyễn Thái Ngọc Duy | a60645f | 2010-08-06 02:46:33 | [diff] [blame] | 743 | startup_info->have_repository = !nongit_ok || !*nongit_ok; |
| Nguyễn Thái Ngọc Duy | f07d6a1 | 2010-12-01 23:33:22 | [diff] [blame] | 744 | startup_info->prefix = prefix; |
| 745 | } |
| Nguyễn Thái Ngọc Duy | a60645f | 2010-08-06 02:46:33 | [diff] [blame] | 746 | return prefix; |
| 747 | } |
| 748 | |
| Junio C Hamano | 94df250 | 2006-06-10 06:09:49 | [diff] [blame] | 749 | int git_config_perm(const char *var, const char *value) |
| 750 | { |
| Heikki Orsila | 06cbe85 | 2008-04-16 08:34:24 | [diff] [blame] | 751 | int i; |
| 752 | char *endptr; |
| 753 | |
| 754 | if (value == NULL) |
| 755 | return PERM_GROUP; |
| 756 | |
| 757 | if (!strcmp(value, "umask")) |
| 758 | return PERM_UMASK; |
| 759 | if (!strcmp(value, "group")) |
| 760 | return PERM_GROUP; |
| 761 | if (!strcmp(value, "all") || |
| 762 | !strcmp(value, "world") || |
| 763 | !strcmp(value, "everybody")) |
| 764 | return PERM_EVERYBODY; |
| 765 | |
| 766 | /* Parse octal numbers */ |
| 767 | i = strtol(value, &endptr, 8); |
| 768 | |
| 769 | /* If not an octal number, maybe true/false? */ |
| 770 | if (*endptr != 0) |
| 771 | return git_config_bool(var, value) ? PERM_GROUP : PERM_UMASK; |
| 772 | |
| 773 | /* |
| 774 | * Treat values 0, 1 and 2 as compatibility cases, otherwise it is |
| Junio C Hamano | 5a688fe | 2009-03-25 23:19:36 | [diff] [blame] | 775 | * a chmod value to restrict to. |
| Heikki Orsila | 06cbe85 | 2008-04-16 08:34:24 | [diff] [blame] | 776 | */ |
| 777 | switch (i) { |
| 778 | case PERM_UMASK: /* 0 */ |
| 779 | return PERM_UMASK; |
| 780 | case OLD_PERM_GROUP: /* 1 */ |
| 781 | return PERM_GROUP; |
| 782 | case OLD_PERM_EVERYBODY: /* 2 */ |
| 783 | return PERM_EVERYBODY; |
| Junio C Hamano | 94df250 | 2006-06-10 06:09:49 | [diff] [blame] | 784 | } |
| Heikki Orsila | 06cbe85 | 2008-04-16 08:34:24 | [diff] [blame] | 785 | |
| 786 | /* A filemode value was given: 0xxx */ |
| 787 | |
| 788 | if ((i & 0600) != 0600) |
| 789 | die("Problem with core.sharedRepository filemode value " |
| 790 | "(0%.3o).\nThe owner of files must always have " |
| 791 | "read and write permissions.", i); |
| 792 | |
| 793 | /* |
| 794 | * Mask filemode value. Others can not get write permission. |
| 795 | * x flags for directories are handled separately. |
| 796 | */ |
| Junio C Hamano | 5a688fe | 2009-03-25 23:19:36 | [diff] [blame] | 797 | return -(i & 0666); |
| Junio C Hamano | 94df250 | 2006-06-10 06:09:49 | [diff] [blame] | 798 | } |
| 799 | |
| Johannes Schindelin | ef90d6d | 2008-05-14 17:46:53 | [diff] [blame] | 800 | int check_repository_format_version(const char *var, const char *value, void *cb) |
| Junio C Hamano | ab9cb76 | 2005-11-25 23:59:09 | [diff] [blame] | 801 | { |
| Johannes Schindelin | 299726d | 2007-07-29 23:24:38 | [diff] [blame] | 802 | if (strcmp(var, "core.repositoryformatversion") == 0) |
| 803 | repository_format_version = git_config_int(var, value); |
| Johannes Schindelin | 457f06d | 2005-12-22 22:13:56 | [diff] [blame] | 804 | else if (strcmp(var, "core.sharedrepository") == 0) |
| Junio C Hamano | 94df250 | 2006-06-10 06:09:49 | [diff] [blame] | 805 | shared_repository = git_config_perm(var, value); |
| Johannes Schindelin | e90fdc3 | 2007-08-01 00:30:14 | [diff] [blame] | 806 | else if (strcmp(var, "core.bare") == 0) { |
| 807 | is_bare_repository_cfg = git_config_bool(var, value); |
| 808 | if (is_bare_repository_cfg == 1) |
| 809 | inside_work_tree = -1; |
| 810 | } else if (strcmp(var, "core.worktree") == 0) { |
| Junio C Hamano | 180483c | 2008-02-11 19:00:32 | [diff] [blame] | 811 | if (!value) |
| 812 | return config_error_nonbool(var); |
| Jim Meyering | 8e0f700 | 2008-01-31 17:26:32 | [diff] [blame] | 813 | free(git_work_tree_cfg); |
| Johannes Schindelin | e90fdc3 | 2007-08-01 00:30:14 | [diff] [blame] | 814 | git_work_tree_cfg = xstrdup(value); |
| 815 | inside_work_tree = -1; |
| 816 | } |
| Johannes Schindelin | 299726d | 2007-07-29 23:24:38 | [diff] [blame] | 817 | return 0; |
| Junio C Hamano | ab9cb76 | 2005-11-25 23:59:09 | [diff] [blame] | 818 | } |
| 819 | |
| 820 | int check_repository_format(void) |
| 821 | { |
| Nguyễn Thái Ngọc Duy | 337e51c | 2010-11-26 15:32:34 | [diff] [blame] | 822 | return check_repository_format_gently(get_git_dir(), NULL); |
| Junio C Hamano | ab9cb76 | 2005-11-25 23:59:09 | [diff] [blame] | 823 | } |
| 824 | |
| Clemens Buchacher | e1e5ec8 | 2010-06-05 08:04:20 | [diff] [blame] | 825 | /* |
| 826 | * Returns the "prefix", a path to the current working directory |
| 827 | * relative to the work tree root, or NULL, if the current working |
| 828 | * directory is not a strict subdirectory of the work tree root. The |
| 829 | * prefix always ends with a '/' character. |
| 830 | */ |
| Junio C Hamano | 5e7bfe2 | 2005-11-25 23:43:41 | [diff] [blame] | 831 | const char *setup_git_directory(void) |
| 832 | { |
| Nguyễn Thái Ngọc Duy | b3f66fd | 2010-11-26 15:32:39 | [diff] [blame] | 833 | return setup_git_directory_gently(NULL); |
| Junio C Hamano | 5e7bfe2 | 2005-11-25 23:43:41 | [diff] [blame] | 834 | } |
| Fredrik Gustafsson | abc0682 | 2011-08-15 21:17:46 | [diff] [blame] | 835 | |
| 836 | const char *resolve_gitdir(const char *suspect) |
| 837 | { |
| 838 | if (is_git_directory(suspect)) |
| 839 | return suspect; |
| Junio C Hamano | efc5fb6 | 2011-10-10 22:56:16 | [diff] [blame] | 840 | return read_gitfile(suspect); |
| Fredrik Gustafsson | abc0682 | 2011-08-15 21:17:46 | [diff] [blame] | 841 | } |
| Thomas Rast | 1d999dd | 2013-07-16 09:27:36 | [diff] [blame] | 842 | |
| 843 | /* if any standard file descriptor is missing open it to /dev/null */ |
| 844 | void sanitize_stdfds(void) |
| 845 | { |
| 846 | int fd = open("/dev/null", O_RDWR, 0); |
| 847 | while (fd != -1 && fd < 2) |
| 848 | fd = dup(fd); |
| 849 | if (fd == -1) |
| 850 | die_errno("open /dev/null or dup failed"); |
| 851 | if (fd > 2) |
| 852 | close(fd); |
| 853 | } |
| Nguyễn Thái Ngọc Duy | de0957c | 2014-02-08 07:08:51 | [diff] [blame] | 854 | |
| 855 | int daemonize(void) |
| 856 | { |
| 857 | #ifdef NO_POSIX_GOODIES |
| 858 | errno = ENOSYS; |
| 859 | return -1; |
| 860 | #else |
| 861 | switch (fork()) { |
| 862 | case 0: |
| 863 | break; |
| 864 | case -1: |
| 865 | die_errno("fork failed"); |
| 866 | default: |
| 867 | exit(0); |
| 868 | } |
| 869 | if (setsid() == -1) |
| 870 | die_errno("setsid failed"); |
| 871 | close(0); |
| 872 | close(1); |
| 873 | close(2); |
| 874 | sanitize_stdfds(); |
| 875 | return 0; |
| 876 | #endif |
| 877 | } |