setup.con commit Update :/abc ambiguity check (4db86e8)
   1#include "cache.h"
   2#include "dir.h"
   3#include "string-list.h"
   4
   5static int inside_git_dir = -1;
   6static int inside_work_tree = -1;
   7
   8static char *prefix_path_gently(const char *prefix, int len, const char *path)
   9{
  10        const char *orig = path;
  11        char *sanitized;
  12        if (is_absolute_path(orig)) {
  13                const char *temp = real_path(path);
  14                sanitized = xmalloc(len + strlen(temp) + 1);
  15                strcpy(sanitized, temp);
  16        } else {
  17                sanitized = xmalloc(len + strlen(path) + 1);
  18                if (len)
  19                        memcpy(sanitized, prefix, len);
  20                strcpy(sanitized + len, path);
  21        }
  22        if (normalize_path_copy(sanitized, sanitized))
  23                goto error_out;
  24        if (is_absolute_path(orig)) {
  25                size_t root_len, len, total;
  26                const char *work_tree = get_git_work_tree();
  27                if (!work_tree)
  28                        goto error_out;
  29                len = strlen(work_tree);
  30                root_len = offset_1st_component(work_tree);
  31                total = strlen(sanitized) + 1;
  32                if (strncmp(sanitized, work_tree, len) ||
  33                    (len > root_len && sanitized[len] != '\0' && sanitized[len] != '/')) {
  34                error_out:
  35                        free(sanitized);
  36                        return NULL;
  37                }
  38                if (sanitized[len] == '/')
  39                        len++;
  40                memmove(sanitized, sanitized + len, total - len);
  41        }
  42        return sanitized;
  43}
  44
  45char *prefix_path(const char *prefix, int len, const char *path)
  46{
  47        char *r = prefix_path_gently(prefix, len, path);
  48        if (!r)
  49                die("'%s' is outside repository", path);
  50        return r;
  51}
  52
  53int path_inside_repo(const char *prefix, const char *path)
  54{
  55        int len = prefix ? strlen(prefix) : 0;
  56        char *r = prefix_path_gently(prefix, len, path);
  57        if (r) {
  58                free(r);
  59                return 1;
  60        }
  61        return 0;
  62}
  63
  64int check_filename(const char *prefix, const char *arg)
  65{
  66        const char *name;
  67        struct stat st;
  68
  69        if (!prefixcmp(arg, ":/")) {
  70                if (arg[2] == '\0') /* ":/" is root dir, always exists */
  71                        return 1;
  72                name = arg + 2;
  73        } else if (prefix)
  74                name = prefix_filename(prefix, strlen(prefix), arg);
  75        else
  76                name = arg;
  77        if (!lstat(name, &st))
  78                return 1; /* file exists */
  79        if (errno == ENOENT || errno == ENOTDIR)
  80                return 0; /* file does not exist */
  81        die_errno("failed to stat '%s'", arg);
  82}
  83
  84static void NORETURN die_verify_filename(const char *prefix,
  85                                         const char *arg,
  86                                         int diagnose_misspelt_rev)
  87{
  88        if (!diagnose_misspelt_rev)
  89                die("%s: no such path in the working tree.\n"
  90                    "Use 'git <command> -- <path>...' to specify paths that do not exist locally.",
  91                    arg);
  92        /*
  93         * Saying "'(icase)foo' does not exist in the index" when the
  94         * user gave us ":(icase)foo" is just stupid.  A magic pathspec
  95         * begins with a colon and is followed by a non-alnum; do not
  96         * let maybe_die_on_misspelt_object_name() even trigger.
  97         */
  98        if (!(arg[0] == ':' && !isalnum(arg[1])))
  99                maybe_die_on_misspelt_object_name(arg, prefix);
 100
 101        /* ... or fall back the most general message. */
 102        die("ambiguous argument '%s': unknown revision or path not in the working tree.\n"
 103            "Use '--' to separate paths from revisions, like this:\n"
 104            "'git <command> [<revision>...] -- [<file>...]'", arg);
 105
 106}
 107
 108/*
 109 * Verify a filename that we got as an argument for a pathspec
 110 * entry. Note that a filename that begins with "-" never verifies
 111 * as true, because even if such a filename were to exist, we want
 112 * it to be preceded by the "--" marker (or we want the user to
 113 * use a format like "./-filename")
 114 *
 115 * The "diagnose_misspelt_rev" is used to provide a user-friendly
 116 * diagnosis when dying upon finding that "name" is not a pathname.
 117 * If set to 1, the diagnosis will try to diagnose "name" as an
 118 * invalid object name (e.g. HEAD:foo). If set to 0, the diagnosis
 119 * will only complain about an inexisting file.
 120 *
 121 * This function is typically called to check that a "file or rev"
 122 * argument is unambiguous. In this case, the caller will want
 123 * diagnose_misspelt_rev == 1 when verifying the first non-rev
 124 * argument (which could have been a revision), and
 125 * diagnose_misspelt_rev == 0 for the next ones (because we already
 126 * saw a filename, there's not ambiguity anymore).
 127 */
 128void verify_filename(const char *prefix,
 129                     const char *arg,
 130                     int diagnose_misspelt_rev)
 131{
 132        if (*arg == '-')
 133                die("bad flag '%s' used after filename", arg);
 134        if (check_filename(prefix, arg))
 135                return;
 136        die_verify_filename(prefix, arg, diagnose_misspelt_rev);
 137}
 138
 139/*
 140 * Opposite of the above: the command line did not have -- marker
 141 * and we parsed the arg as a refname.  It should not be interpretable
 142 * as a filename.
 143 */
 144void verify_non_filename(const char *prefix, const char *arg)
 145{
 146        if (!is_inside_work_tree() || is_inside_git_dir())
 147                return;
 148        if (*arg == '-')
 149                return; /* flag */
 150        if (!check_filename(prefix, arg))
 151                return;
 152        die("ambiguous argument '%s': both revision and filename\n"
 153            "Use '--' to separate paths from revisions, like this:\n"
 154            "'git <command> [<revision>...] -- [<file>...]'", arg);
 155}
 156
 157/*
 158 * Magic pathspec
 159 *
 160 * NEEDSWORK: These need to be moved to dir.h or even to a new
 161 * pathspec.h when we restructure get_pathspec() users to use the
 162 * "struct pathspec" interface.
 163 *
 164 * Possible future magic semantics include stuff like:
 165 *
 166 *      { PATHSPEC_NOGLOB, '!', "noglob" },
 167 *      { PATHSPEC_ICASE, '\0', "icase" },
 168 *      { PATHSPEC_RECURSIVE, '*', "recursive" },
 169 *      { PATHSPEC_REGEXP, '\0', "regexp" },
 170 *
 171 */
 172#define PATHSPEC_FROMTOP    (1<<0)
 173
 174static struct pathspec_magic {
 175        unsigned bit;
 176        char mnemonic; /* this cannot be ':'! */
 177        const char *name;
 178} pathspec_magic[] = {
 179        { PATHSPEC_FROMTOP, '/', "top" },
 180};
 181
 182/*
 183 * Take an element of a pathspec and check for magic signatures.
 184 * Append the result to the prefix.
 185 *
 186 * For now, we only parse the syntax and throw out anything other than
 187 * "top" magic.
 188 *
 189 * NEEDSWORK: This needs to be rewritten when we start migrating
 190 * get_pathspec() users to use the "struct pathspec" interface.  For
 191 * example, a pathspec element may be marked as case-insensitive, but
 192 * the prefix part must always match literally, and a single stupid
 193 * string cannot express such a case.
 194 */
 195static const char *prefix_pathspec(const char *prefix, int prefixlen, const char *elt)
 196{
 197        unsigned magic = 0;
 198        const char *copyfrom = elt;
 199        int i;
 200
 201        if (elt[0] != ':') {
 202                ; /* nothing to do */
 203        } else if (elt[1] == '(') {
 204                /* longhand */
 205                const char *nextat;
 206                for (copyfrom = elt + 2;
 207                     *copyfrom && *copyfrom != ')';
 208                     copyfrom = nextat) {
 209                        size_t len = strcspn(copyfrom, ",)");
 210                        if (copyfrom[len] == ')')
 211                                nextat = copyfrom + len;
 212                        else
 213                                nextat = copyfrom + len + 1;
 214                        if (!len)
 215                                continue;
 216                        for (i = 0; i < ARRAY_SIZE(pathspec_magic); i++)
 217                                if (strlen(pathspec_magic[i].name) == len &&
 218                                    !strncmp(pathspec_magic[i].name, copyfrom, len)) {
 219                                        magic |= pathspec_magic[i].bit;
 220                                        break;
 221                                }
 222                        if (ARRAY_SIZE(pathspec_magic) <= i)
 223                                die("Invalid pathspec magic '%.*s' in '%s'",
 224                                    (int) len, copyfrom, elt);
 225                }
 226                if (*copyfrom == ')')
 227                        copyfrom++;
 228        } else {
 229                /* shorthand */
 230                for (copyfrom = elt + 1;
 231                     *copyfrom && *copyfrom != ':';
 232                     copyfrom++) {
 233                        char ch = *copyfrom;
 234
 235                        if (!is_pathspec_magic(ch))
 236                                break;
 237                        for (i = 0; i < ARRAY_SIZE(pathspec_magic); i++)
 238                                if (pathspec_magic[i].mnemonic == ch) {
 239                                        magic |= pathspec_magic[i].bit;
 240                                        break;
 241                                }
 242                        if (ARRAY_SIZE(pathspec_magic) <= i)
 243                                die("Unimplemented pathspec magic '%c' in '%s'",
 244                                    ch, elt);
 245                }
 246                if (*copyfrom == ':')
 247                        copyfrom++;
 248        }
 249
 250        if (magic & PATHSPEC_FROMTOP)
 251                return xstrdup(copyfrom);
 252        else
 253                return prefix_path(prefix, prefixlen, copyfrom);
 254}
 255
 256const char **get_pathspec(const char *prefix, const char **pathspec)
 257{
 258        const char *entry = *pathspec;
 259        const char **src, **dst;
 260        int prefixlen;
 261
 262        if (!prefix && !entry)
 263                return NULL;
 264
 265        if (!entry) {
 266                static const char *spec[2];
 267                spec[0] = prefix;
 268                spec[1] = NULL;
 269                return spec;
 270        }
 271
 272        /* Otherwise we have to re-write the entries.. */
 273        src = pathspec;
 274        dst = pathspec;
 275        prefixlen = prefix ? strlen(prefix) : 0;
 276        while (*src) {
 277                *(dst++) = prefix_pathspec(prefix, prefixlen, *src);
 278                src++;
 279        }
 280        *dst = NULL;
 281        if (!*pathspec)
 282                return NULL;
 283        return pathspec;
 284}
 285
 286/*
 287 * Test if it looks like we're at a git directory.
 288 * We want to see:
 289 *
 290 *  - either an objects/ directory _or_ the proper
 291 *    GIT_OBJECT_DIRECTORY environment variable
 292 *  - a refs/ directory
 293 *  - either a HEAD symlink or a HEAD file that is formatted as
 294 *    a proper "ref:", or a regular file HEAD that has a properly
 295 *    formatted sha1 object name.
 296 */
 297int is_git_directory(const char *suspect)
 298{
 299        char path[PATH_MAX];
 300        size_t len = strlen(suspect);
 301
 302        if (PATH_MAX <= len + strlen("/objects"))
 303                die("Too long path: %.*s", 60, suspect);
 304        strcpy(path, suspect);
 305        if (getenv(DB_ENVIRONMENT)) {
 306                if (access(getenv(DB_ENVIRONMENT), X_OK))
 307                        return 0;
 308        }
 309        else {
 310                strcpy(path + len, "/objects");
 311                if (access(path, X_OK))
 312                        return 0;
 313        }
 314
 315        strcpy(path + len, "/refs");
 316        if (access(path, X_OK))
 317                return 0;
 318
 319        strcpy(path + len, "/HEAD");
 320        if (validate_headref(path))
 321                return 0;
 322
 323        return 1;
 324}
 325
 326int is_inside_git_dir(void)
 327{
 328        if (inside_git_dir < 0)
 329                inside_git_dir = is_inside_dir(get_git_dir());
 330        return inside_git_dir;
 331}
 332
 333int is_inside_work_tree(void)
 334{
 335        if (inside_work_tree < 0)
 336                inside_work_tree = is_inside_dir(get_git_work_tree());
 337        return inside_work_tree;
 338}
 339
 340void setup_work_tree(void)
 341{
 342        const char *work_tree, *git_dir;
 343        static int initialized = 0;
 344
 345        if (initialized)
 346                return;
 347        work_tree = get_git_work_tree();
 348        git_dir = get_git_dir();
 349        if (!is_absolute_path(git_dir))
 350                git_dir = real_path(get_git_dir());
 351        if (!work_tree || chdir(work_tree))
 352                die("This operation must be run in a work tree");
 353
 354        /*
 355         * Make sure subsequent git processes find correct worktree
 356         * if $GIT_WORK_TREE is set relative
 357         */
 358        if (getenv(GIT_WORK_TREE_ENVIRONMENT))
 359                setenv(GIT_WORK_TREE_ENVIRONMENT, ".", 1);
 360
 361        set_git_dir(relative_path(git_dir, work_tree));
 362        initialized = 1;
 363}
 364
 365static int check_repository_format_gently(const char *gitdir, int *nongit_ok)
 366{
 367        char repo_config[PATH_MAX+1];
 368
 369        /*
 370         * git_config() can't be used here because it calls git_pathdup()
 371         * to get $GIT_CONFIG/config. That call will make setup_git_env()
 372         * set git_dir to ".git".
 373         *
 374         * We are in gitdir setup, no git dir has been found useable yet.
 375         * Use a gentler version of git_config() to check if this repo
 376         * is a good one.
 377         */
 378        snprintf(repo_config, PATH_MAX, "%s/config", gitdir);
 379        git_config_early(check_repository_format_version, NULL, repo_config);
 380        if (GIT_REPO_VERSION < repository_format_version) {
 381                if (!nongit_ok)
 382                        die ("Expected git repo version <= %d, found %d",
 383                             GIT_REPO_VERSION, repository_format_version);
 384                warning("Expected git repo version <= %d, found %d",
 385                        GIT_REPO_VERSION, repository_format_version);
 386                warning("Please upgrade Git");
 387                *nongit_ok = -1;
 388                return -1;
 389        }
 390        return 0;
 391}
 392
 393/*
 394 * Try to read the location of the git directory from the .git file,
 395 * return path to git directory if found.
 396 */
 397const char *read_gitfile(const char *path)
 398{
 399        char *buf;
 400        char *dir;
 401        const char *slash;
 402        struct stat st;
 403        int fd;
 404        ssize_t len;
 405
 406        if (stat(path, &st))
 407                return NULL;
 408        if (!S_ISREG(st.st_mode))
 409                return NULL;
 410        fd = open(path, O_RDONLY);
 411        if (fd < 0)
 412                die_errno("Error opening '%s'", path);
 413        buf = xmalloc(st.st_size + 1);
 414        len = read_in_full(fd, buf, st.st_size);
 415        close(fd);
 416        if (len != st.st_size)
 417                die("Error reading %s", path);
 418        buf[len] = '\0';
 419        if (prefixcmp(buf, "gitdir: "))
 420                die("Invalid gitfile format: %s", path);
 421        while (buf[len - 1] == '\n' || buf[len - 1] == '\r')
 422                len--;
 423        if (len < 9)
 424                die("No path in gitfile: %s", path);
 425        buf[len] = '\0';
 426        dir = buf + 8;
 427
 428        if (!is_absolute_path(dir) && (slash = strrchr(path, '/'))) {
 429                size_t pathlen = slash+1 - path;
 430                size_t dirlen = pathlen + len - 8;
 431                dir = xmalloc(dirlen + 1);
 432                strncpy(dir, path, pathlen);
 433                strncpy(dir + pathlen, buf + 8, len - 8);
 434                dir[dirlen] = '\0';
 435                free(buf);
 436                buf = dir;
 437        }
 438
 439        if (!is_git_directory(dir))
 440                die("Not a git repository: %s", dir);
 441        path = real_path(dir);
 442
 443        free(buf);
 444        return path;
 445}
 446
 447static const char *setup_explicit_git_dir(const char *gitdirenv,
 448                                          char *cwd, int len,
 449                                          int *nongit_ok)
 450{
 451        const char *work_tree_env = getenv(GIT_WORK_TREE_ENVIRONMENT);
 452        const char *worktree;
 453        char *gitfile;
 454        int offset;
 455
 456        if (PATH_MAX - 40 < strlen(gitdirenv))
 457                die("'$%s' too big", GIT_DIR_ENVIRONMENT);
 458
 459        gitfile = (char*)read_gitfile(gitdirenv);
 460        if (gitfile) {
 461                gitfile = xstrdup(gitfile);
 462                gitdirenv = gitfile;
 463        }
 464
 465        if (!is_git_directory(gitdirenv)) {
 466                if (nongit_ok) {
 467                        *nongit_ok = 1;
 468                        free(gitfile);
 469                        return NULL;
 470                }
 471                die("Not a git repository: '%s'", gitdirenv);
 472        }
 473
 474        if (check_repository_format_gently(gitdirenv, nongit_ok)) {
 475                free(gitfile);
 476                return NULL;
 477        }
 478
 479        /* #3, #7, #11, #15, #19, #23, #27, #31 (see t1510) */
 480        if (work_tree_env)
 481                set_git_work_tree(work_tree_env);
 482        else if (is_bare_repository_cfg > 0) {
 483                if (git_work_tree_cfg) /* #22.2, #30 */
 484                        die("core.bare and core.worktree do not make sense");
 485
 486                /* #18, #26 */
 487                set_git_dir(gitdirenv);
 488                free(gitfile);
 489                return NULL;
 490        }
 491        else if (git_work_tree_cfg) { /* #6, #14 */
 492                if (is_absolute_path(git_work_tree_cfg))
 493                        set_git_work_tree(git_work_tree_cfg);
 494                else {
 495                        char core_worktree[PATH_MAX];
 496                        if (chdir(gitdirenv))
 497                                die_errno("Could not chdir to '%s'", gitdirenv);
 498                        if (chdir(git_work_tree_cfg))
 499                                die_errno("Could not chdir to '%s'", git_work_tree_cfg);
 500                        if (!getcwd(core_worktree, PATH_MAX))
 501                                die_errno("Could not get directory '%s'", git_work_tree_cfg);
 502                        if (chdir(cwd))
 503                                die_errno("Could not come back to cwd");
 504                        set_git_work_tree(core_worktree);
 505                }
 506        }
 507        else /* #2, #10 */
 508                set_git_work_tree(".");
 509
 510        /* set_git_work_tree() must have been called by now */
 511        worktree = get_git_work_tree();
 512
 513        /* both get_git_work_tree() and cwd are already normalized */
 514        if (!strcmp(cwd, worktree)) { /* cwd == worktree */
 515                set_git_dir(gitdirenv);
 516                free(gitfile);
 517                return NULL;
 518        }
 519
 520        offset = dir_inside_of(cwd, worktree);
 521        if (offset >= 0) {      /* cwd inside worktree? */
 522                set_git_dir(real_path(gitdirenv));
 523                if (chdir(worktree))
 524                        die_errno("Could not chdir to '%s'", worktree);
 525                cwd[len++] = '/';
 526                cwd[len] = '\0';
 527                free(gitfile);
 528                return cwd + offset;
 529        }
 530
 531        /* cwd outside worktree */
 532        set_git_dir(gitdirenv);
 533        free(gitfile);
 534        return NULL;
 535}
 536
 537static const char *setup_discovered_git_dir(const char *gitdir,
 538                                            char *cwd, int offset, int len,
 539                                            int *nongit_ok)
 540{
 541        if (check_repository_format_gently(gitdir, nongit_ok))
 542                return NULL;
 543
 544        /* --work-tree is set without --git-dir; use discovered one */
 545        if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
 546                if (offset != len && !is_absolute_path(gitdir))
 547                        gitdir = xstrdup(real_path(gitdir));
 548                if (chdir(cwd))
 549                        die_errno("Could not come back to cwd");
 550                return setup_explicit_git_dir(gitdir, cwd, len, nongit_ok);
 551        }
 552
 553        /* #16.2, #17.2, #20.2, #21.2, #24, #25, #28, #29 (see t1510) */
 554        if (is_bare_repository_cfg > 0) {
 555                set_git_dir(offset == len ? gitdir : real_path(gitdir));
 556                if (chdir(cwd))
 557                        die_errno("Could not come back to cwd");
 558                return NULL;
 559        }
 560
 561        /* #0, #1, #5, #8, #9, #12, #13 */
 562        set_git_work_tree(".");
 563        if (strcmp(gitdir, DEFAULT_GIT_DIR_ENVIRONMENT))
 564                set_git_dir(gitdir);
 565        inside_git_dir = 0;
 566        inside_work_tree = 1;
 567        if (offset == len)
 568                return NULL;
 569
 570        /* Make "offset" point to past the '/', and add a '/' at the end */
 571        offset++;
 572        cwd[len++] = '/';
 573        cwd[len] = 0;
 574        return cwd + offset;
 575}
 576
 577/* #16.1, #17.1, #20.1, #21.1, #22.1 (see t1510) */
 578static const char *setup_bare_git_dir(char *cwd, int offset, int len, int *nongit_ok)
 579{
 580        int root_len;
 581
 582        if (check_repository_format_gently(".", nongit_ok))
 583                return NULL;
 584
 585        /* --work-tree is set without --git-dir; use discovered one */
 586        if (getenv(GIT_WORK_TREE_ENVIRONMENT) || git_work_tree_cfg) {
 587                const char *gitdir;
 588
 589                gitdir = offset == len ? "." : xmemdupz(cwd, offset);
 590                if (chdir(cwd))
 591                        die_errno("Could not come back to cwd");
 592                return setup_explicit_git_dir(gitdir, cwd, len, nongit_ok);
 593        }
 594
 595        inside_git_dir = 1;
 596        inside_work_tree = 0;
 597        if (offset != len) {
 598                if (chdir(cwd))
 599                        die_errno("Cannot come back to cwd");
 600                root_len = offset_1st_component(cwd);
 601                cwd[offset > root_len ? offset : root_len] = '\0';
 602                set_git_dir(cwd);
 603        }
 604        else
 605                set_git_dir(".");
 606        return NULL;
 607}
 608
 609static const char *setup_nongit(const char *cwd, int *nongit_ok)
 610{
 611        if (!nongit_ok)
 612                die("Not a git repository (or any of the parent directories): %s", DEFAULT_GIT_DIR_ENVIRONMENT);
 613        if (chdir(cwd))
 614                die_errno("Cannot come back to cwd");
 615        *nongit_ok = 1;
 616        return NULL;
 617}
 618
 619static dev_t get_device_or_die(const char *path, const char *prefix, int prefix_len)
 620{
 621        struct stat buf;
 622        if (stat(path, &buf)) {
 623                die_errno("failed to stat '%*s%s%s'",
 624                                prefix_len,
 625                                prefix ? prefix : "",
 626                                prefix ? "/" : "", path);
 627        }
 628        return buf.st_dev;
 629}
 630
 631/*
 632 * A "string_list_each_func_t" function that canonicalizes an entry
 633 * from GIT_CEILING_DIRECTORIES using real_path_if_valid(), or
 634 * discards it if unusable.
 635 */
 636static int canonicalize_ceiling_entry(struct string_list_item *item,
 637                                      void *unused)
 638{
 639        char *ceil = item->string;
 640        const char *real_path;
 641
 642        if (!*ceil || !is_absolute_path(ceil))
 643                return 0;
 644        real_path = real_path_if_valid(ceil);
 645        if (!real_path)
 646                return 0;
 647        free(item->string);
 648        item->string = xstrdup(real_path);
 649        return 1;
 650}
 651
 652/*
 653 * We cannot decide in this function whether we are in the work tree or
 654 * not, since the config can only be read _after_ this function was called.
 655 */
 656static const char *setup_git_directory_gently_1(int *nongit_ok)
 657{
 658        const char *env_ceiling_dirs = getenv(CEILING_DIRECTORIES_ENVIRONMENT);
 659        struct string_list ceiling_dirs = STRING_LIST_INIT_DUP;
 660        static char cwd[PATH_MAX+1];
 661        const char *gitdirenv, *ret;
 662        char *gitfile;
 663        int len, offset, offset_parent, ceil_offset = -1;
 664        dev_t current_device = 0;
 665        int one_filesystem = 1;
 666
 667        /*
 668         * Let's assume that we are in a git repository.
 669         * If it turns out later that we are somewhere else, the value will be
 670         * updated accordingly.
 671         */
 672        if (nongit_ok)
 673                *nongit_ok = 0;
 674
 675        if (!getcwd(cwd, sizeof(cwd)-1))
 676                die_errno("Unable to read current working directory");
 677        offset = len = strlen(cwd);
 678
 679        /*
 680         * If GIT_DIR is set explicitly, we're not going
 681         * to do any discovery, but we still do repository
 682         * validation.
 683         */
 684        gitdirenv = getenv(GIT_DIR_ENVIRONMENT);
 685        if (gitdirenv)
 686                return setup_explicit_git_dir(gitdirenv, cwd, len, nongit_ok);
 687
 688        if (env_ceiling_dirs) {
 689                string_list_split(&ceiling_dirs, env_ceiling_dirs, PATH_SEP, -1);
 690                filter_string_list(&ceiling_dirs, 0,
 691                                   canonicalize_ceiling_entry, NULL);
 692                ceil_offset = longest_ancestor_length(cwd, &ceiling_dirs);
 693                string_list_clear(&ceiling_dirs, 0);
 694        }
 695
 696        if (ceil_offset < 0 && has_dos_drive_prefix(cwd))
 697                ceil_offset = 1;
 698
 699        /*
 700         * Test in the following order (relative to the cwd):
 701         * - .git (file containing "gitdir: <path>")
 702         * - .git/
 703         * - ./ (bare)
 704         * - ../.git
 705         * - ../.git/
 706         * - ../ (bare)
 707         * - ../../.git/
 708         *   etc.
 709         */
 710        one_filesystem = !git_env_bool("GIT_DISCOVERY_ACROSS_FILESYSTEM", 0);
 711        if (one_filesystem)
 712                current_device = get_device_or_die(".", NULL, 0);
 713        for (;;) {
 714                gitfile = (char*)read_gitfile(DEFAULT_GIT_DIR_ENVIRONMENT);
 715                if (gitfile)
 716                        gitdirenv = gitfile = xstrdup(gitfile);
 717                else {
 718                        if (is_git_directory(DEFAULT_GIT_DIR_ENVIRONMENT))
 719                                gitdirenv = DEFAULT_GIT_DIR_ENVIRONMENT;
 720                }
 721
 722                if (gitdirenv) {
 723                        ret = setup_discovered_git_dir(gitdirenv,
 724                                                       cwd, offset, len,
 725                                                       nongit_ok);
 726                        free(gitfile);
 727                        return ret;
 728                }
 729                free(gitfile);
 730
 731                if (is_git_directory("."))
 732                        return setup_bare_git_dir(cwd, offset, len, nongit_ok);
 733
 734                offset_parent = offset;
 735                while (--offset_parent > ceil_offset && cwd[offset_parent] != '/');
 736                if (offset_parent <= ceil_offset)
 737                        return setup_nongit(cwd, nongit_ok);
 738                if (one_filesystem) {
 739                        dev_t parent_device = get_device_or_die("..", cwd, offset);
 740                        if (parent_device != current_device) {
 741                                if (nongit_ok) {
 742                                        if (chdir(cwd))
 743                                                die_errno("Cannot come back to cwd");
 744                                        *nongit_ok = 1;
 745                                        return NULL;
 746                                }
 747                                cwd[offset] = '\0';
 748                                die("Not a git repository (or any parent up to mount point %s)\n"
 749                                "Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).", cwd);
 750                        }
 751                }
 752                if (chdir("..")) {
 753                        cwd[offset] = '\0';
 754                        die_errno("Cannot change to '%s/..'", cwd);
 755                }
 756                offset = offset_parent;
 757        }
 758}
 759
 760const char *setup_git_directory_gently(int *nongit_ok)
 761{
 762        const char *prefix;
 763
 764        prefix = setup_git_directory_gently_1(nongit_ok);
 765        if (prefix)
 766                setenv("GIT_PREFIX", prefix, 1);
 767        else
 768                setenv("GIT_PREFIX", "", 1);
 769
 770        if (startup_info) {
 771                startup_info->have_repository = !nongit_ok || !*nongit_ok;
 772                startup_info->prefix = prefix;
 773        }
 774        return prefix;
 775}
 776
 777int git_config_perm(const char *var, const char *value)
 778{
 779        int i;
 780        char *endptr;
 781
 782        if (value == NULL)
 783                return PERM_GROUP;
 784
 785        if (!strcmp(value, "umask"))
 786                return PERM_UMASK;
 787        if (!strcmp(value, "group"))
 788                return PERM_GROUP;
 789        if (!strcmp(value, "all") ||
 790            !strcmp(value, "world") ||
 791            !strcmp(value, "everybody"))
 792                return PERM_EVERYBODY;
 793
 794        /* Parse octal numbers */
 795        i = strtol(value, &endptr, 8);
 796
 797        /* If not an octal number, maybe true/false? */
 798        if (*endptr != 0)
 799                return git_config_bool(var, value) ? PERM_GROUP : PERM_UMASK;
 800
 801        /*
 802         * Treat values 0, 1 and 2 as compatibility cases, otherwise it is
 803         * a chmod value to restrict to.
 804         */
 805        switch (i) {
 806        case PERM_UMASK:               /* 0 */
 807                return PERM_UMASK;
 808        case OLD_PERM_GROUP:           /* 1 */
 809                return PERM_GROUP;
 810        case OLD_PERM_EVERYBODY:       /* 2 */
 811                return PERM_EVERYBODY;
 812        }
 813
 814        /* A filemode value was given: 0xxx */
 815
 816        if ((i & 0600) != 0600)
 817                die("Problem with core.sharedRepository filemode value "
 818                    "(0%.3o).\nThe owner of files must always have "
 819                    "read and write permissions.", i);
 820
 821        /*
 822         * Mask filemode value. Others can not get write permission.
 823         * x flags for directories are handled separately.
 824         */
 825        return -(i & 0666);
 826}
 827
 828int check_repository_format_version(const char *var, const char *value, void *cb)
 829{
 830        if (strcmp(var, "core.repositoryformatversion") == 0)
 831                repository_format_version = git_config_int(var, value);
 832        else if (strcmp(var, "core.sharedrepository") == 0)
 833                shared_repository = git_config_perm(var, value);
 834        else if (strcmp(var, "core.bare") == 0) {
 835                is_bare_repository_cfg = git_config_bool(var, value);
 836                if (is_bare_repository_cfg == 1)
 837                        inside_work_tree = -1;
 838        } else if (strcmp(var, "core.worktree") == 0) {
 839                if (!value)
 840                        return config_error_nonbool(var);
 841                free(git_work_tree_cfg);
 842                git_work_tree_cfg = xstrdup(value);
 843                inside_work_tree = -1;
 844        }
 845        return 0;
 846}
 847
 848int check_repository_format(void)
 849{
 850        return check_repository_format_gently(get_git_dir(), NULL);
 851}
 852
 853/*
 854 * Returns the "prefix", a path to the current working directory
 855 * relative to the work tree root, or NULL, if the current working
 856 * directory is not a strict subdirectory of the work tree root. The
 857 * prefix always ends with a '/' character.
 858 */
 859const char *setup_git_directory(void)
 860{
 861        return setup_git_directory_gently(NULL);
 862}
 863
 864const char *resolve_gitdir(const char *suspect)
 865{
 866        if (is_git_directory(suspect))
 867                return suspect;
 868        return read_gitfile(suspect);
 869}