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