sha1_file.con commit sha1_file: restore OBJECT_INFO_QUICK functionality (2b7750c)
   1/*
   2 * GIT - The information manager from hell
   3 *
   4 * Copyright (C) Linus Torvalds, 2005
   5 *
   6 * This handles basic git sha1 object files - packing, unpacking,
   7 * creation etc.
   8 */
   9#include "cache.h"
  10#include "config.h"
  11#include "string-list.h"
  12#include "lockfile.h"
  13#include "delta.h"
  14#include "pack.h"
  15#include "blob.h"
  16#include "commit.h"
  17#include "run-command.h"
  18#include "tag.h"
  19#include "tree.h"
  20#include "tree-walk.h"
  21#include "refs.h"
  22#include "pack-revindex.h"
  23#include "sha1-lookup.h"
  24#include "bulk-checkin.h"
  25#include "streaming.h"
  26#include "dir.h"
  27#include "mru.h"
  28#include "list.h"
  29#include "mergesort.h"
  30#include "quote.h"
  31#include "packfile.h"
  32#include "fetch-object.h"
  33
  34const unsigned char null_sha1[GIT_MAX_RAWSZ];
  35const struct object_id null_oid;
  36const struct object_id empty_tree_oid = {
  37        EMPTY_TREE_SHA1_BIN_LITERAL
  38};
  39const struct object_id empty_blob_oid = {
  40        EMPTY_BLOB_SHA1_BIN_LITERAL
  41};
  42
  43/*
  44 * This is meant to hold a *small* number of objects that you would
  45 * want read_sha1_file() to be able to return, but yet you do not want
  46 * to write them into the object store (e.g. a browse-only
  47 * application).
  48 */
  49static struct cached_object {
  50        unsigned char sha1[20];
  51        enum object_type type;
  52        void *buf;
  53        unsigned long size;
  54} *cached_objects;
  55static int cached_object_nr, cached_object_alloc;
  56
  57static struct cached_object empty_tree = {
  58        EMPTY_TREE_SHA1_BIN_LITERAL,
  59        OBJ_TREE,
  60        "",
  61        0
  62};
  63
  64static struct cached_object *find_cached_object(const unsigned char *sha1)
  65{
  66        int i;
  67        struct cached_object *co = cached_objects;
  68
  69        for (i = 0; i < cached_object_nr; i++, co++) {
  70                if (!hashcmp(co->sha1, sha1))
  71                        return co;
  72        }
  73        if (!hashcmp(sha1, empty_tree.sha1))
  74                return &empty_tree;
  75        return NULL;
  76}
  77
  78int mkdir_in_gitdir(const char *path)
  79{
  80        if (mkdir(path, 0777)) {
  81                int saved_errno = errno;
  82                struct stat st;
  83                struct strbuf sb = STRBUF_INIT;
  84
  85                if (errno != EEXIST)
  86                        return -1;
  87                /*
  88                 * Are we looking at a path in a symlinked worktree
  89                 * whose original repository does not yet have it?
  90                 * e.g. .git/rr-cache pointing at its original
  91                 * repository in which the user hasn't performed any
  92                 * conflict resolution yet?
  93                 */
  94                if (lstat(path, &st) || !S_ISLNK(st.st_mode) ||
  95                    strbuf_readlink(&sb, path, st.st_size) ||
  96                    !is_absolute_path(sb.buf) ||
  97                    mkdir(sb.buf, 0777)) {
  98                        strbuf_release(&sb);
  99                        errno = saved_errno;
 100                        return -1;
 101                }
 102                strbuf_release(&sb);
 103        }
 104        return adjust_shared_perm(path);
 105}
 106
 107enum scld_error safe_create_leading_directories(char *path)
 108{
 109        char *next_component = path + offset_1st_component(path);
 110        enum scld_error ret = SCLD_OK;
 111
 112        while (ret == SCLD_OK && next_component) {
 113                struct stat st;
 114                char *slash = next_component, slash_character;
 115
 116                while (*slash && !is_dir_sep(*slash))
 117                        slash++;
 118
 119                if (!*slash)
 120                        break;
 121
 122                next_component = slash + 1;
 123                while (is_dir_sep(*next_component))
 124                        next_component++;
 125                if (!*next_component)
 126                        break;
 127
 128                slash_character = *slash;
 129                *slash = '\0';
 130                if (!stat(path, &st)) {
 131                        /* path exists */
 132                        if (!S_ISDIR(st.st_mode)) {
 133                                errno = ENOTDIR;
 134                                ret = SCLD_EXISTS;
 135                        }
 136                } else if (mkdir(path, 0777)) {
 137                        if (errno == EEXIST &&
 138                            !stat(path, &st) && S_ISDIR(st.st_mode))
 139                                ; /* somebody created it since we checked */
 140                        else if (errno == ENOENT)
 141                                /*
 142                                 * Either mkdir() failed because
 143                                 * somebody just pruned the containing
 144                                 * directory, or stat() failed because
 145                                 * the file that was in our way was
 146                                 * just removed.  Either way, inform
 147                                 * the caller that it might be worth
 148                                 * trying again:
 149                                 */
 150                                ret = SCLD_VANISHED;
 151                        else
 152                                ret = SCLD_FAILED;
 153                } else if (adjust_shared_perm(path)) {
 154                        ret = SCLD_PERMS;
 155                }
 156                *slash = slash_character;
 157        }
 158        return ret;
 159}
 160
 161enum scld_error safe_create_leading_directories_const(const char *path)
 162{
 163        int save_errno;
 164        /* path points to cache entries, so xstrdup before messing with it */
 165        char *buf = xstrdup(path);
 166        enum scld_error result = safe_create_leading_directories(buf);
 167
 168        save_errno = errno;
 169        free(buf);
 170        errno = save_errno;
 171        return result;
 172}
 173
 174int raceproof_create_file(const char *path, create_file_fn fn, void *cb)
 175{
 176        /*
 177         * The number of times we will try to remove empty directories
 178         * in the way of path. This is only 1 because if another
 179         * process is racily creating directories that conflict with
 180         * us, we don't want to fight against them.
 181         */
 182        int remove_directories_remaining = 1;
 183
 184        /*
 185         * The number of times that we will try to create the
 186         * directories containing path. We are willing to attempt this
 187         * more than once, because another process could be trying to
 188         * clean up empty directories at the same time as we are
 189         * trying to create them.
 190         */
 191        int create_directories_remaining = 3;
 192
 193        /* A scratch copy of path, filled lazily if we need it: */
 194        struct strbuf path_copy = STRBUF_INIT;
 195
 196        int ret, save_errno;
 197
 198        /* Sanity check: */
 199        assert(*path);
 200
 201retry_fn:
 202        ret = fn(path, cb);
 203        save_errno = errno;
 204        if (!ret)
 205                goto out;
 206
 207        if (errno == EISDIR && remove_directories_remaining-- > 0) {
 208                /*
 209                 * A directory is in the way. Maybe it is empty; try
 210                 * to remove it:
 211                 */
 212                if (!path_copy.len)
 213                        strbuf_addstr(&path_copy, path);
 214
 215                if (!remove_dir_recursively(&path_copy, REMOVE_DIR_EMPTY_ONLY))
 216                        goto retry_fn;
 217        } else if (errno == ENOENT && create_directories_remaining-- > 0) {
 218                /*
 219                 * Maybe the containing directory didn't exist, or
 220                 * maybe it was just deleted by a process that is
 221                 * racing with us to clean up empty directories. Try
 222                 * to create it:
 223                 */
 224                enum scld_error scld_result;
 225
 226                if (!path_copy.len)
 227                        strbuf_addstr(&path_copy, path);
 228
 229                do {
 230                        scld_result = safe_create_leading_directories(path_copy.buf);
 231                        if (scld_result == SCLD_OK)
 232                                goto retry_fn;
 233                } while (scld_result == SCLD_VANISHED && create_directories_remaining-- > 0);
 234        }
 235
 236out:
 237        strbuf_release(&path_copy);
 238        errno = save_errno;
 239        return ret;
 240}
 241
 242static void fill_sha1_path(struct strbuf *buf, const unsigned char *sha1)
 243{
 244        int i;
 245        for (i = 0; i < 20; i++) {
 246                static char hex[] = "0123456789abcdef";
 247                unsigned int val = sha1[i];
 248                strbuf_addch(buf, hex[val >> 4]);
 249                strbuf_addch(buf, hex[val & 0xf]);
 250                if (!i)
 251                        strbuf_addch(buf, '/');
 252        }
 253}
 254
 255const char *sha1_file_name(const unsigned char *sha1)
 256{
 257        static struct strbuf buf = STRBUF_INIT;
 258
 259        strbuf_reset(&buf);
 260        strbuf_addf(&buf, "%s/", get_object_directory());
 261
 262        fill_sha1_path(&buf, sha1);
 263        return buf.buf;
 264}
 265
 266struct strbuf *alt_scratch_buf(struct alternate_object_database *alt)
 267{
 268        strbuf_setlen(&alt->scratch, alt->base_len);
 269        return &alt->scratch;
 270}
 271
 272static const char *alt_sha1_path(struct alternate_object_database *alt,
 273                                 const unsigned char *sha1)
 274{
 275        struct strbuf *buf = alt_scratch_buf(alt);
 276        fill_sha1_path(buf, sha1);
 277        return buf->buf;
 278}
 279
 280struct alternate_object_database *alt_odb_list;
 281static struct alternate_object_database **alt_odb_tail;
 282
 283/*
 284 * Return non-zero iff the path is usable as an alternate object database.
 285 */
 286static int alt_odb_usable(struct strbuf *path, const char *normalized_objdir)
 287{
 288        struct alternate_object_database *alt;
 289
 290        /* Detect cases where alternate disappeared */
 291        if (!is_directory(path->buf)) {
 292                error("object directory %s does not exist; "
 293                      "check .git/objects/info/alternates.",
 294                      path->buf);
 295                return 0;
 296        }
 297
 298        /*
 299         * Prevent the common mistake of listing the same
 300         * thing twice, or object directory itself.
 301         */
 302        for (alt = alt_odb_list; alt; alt = alt->next) {
 303                if (!fspathcmp(path->buf, alt->path))
 304                        return 0;
 305        }
 306        if (!fspathcmp(path->buf, normalized_objdir))
 307                return 0;
 308
 309        return 1;
 310}
 311
 312/*
 313 * Prepare alternate object database registry.
 314 *
 315 * The variable alt_odb_list points at the list of struct
 316 * alternate_object_database.  The elements on this list come from
 317 * non-empty elements from colon separated ALTERNATE_DB_ENVIRONMENT
 318 * environment variable, and $GIT_OBJECT_DIRECTORY/info/alternates,
 319 * whose contents is similar to that environment variable but can be
 320 * LF separated.  Its base points at a statically allocated buffer that
 321 * contains "/the/directory/corresponding/to/.git/objects/...", while
 322 * its name points just after the slash at the end of ".git/objects/"
 323 * in the example above, and has enough space to hold 40-byte hex
 324 * SHA1, an extra slash for the first level indirection, and the
 325 * terminating NUL.
 326 */
 327static void read_info_alternates(const char * relative_base, int depth);
 328static int link_alt_odb_entry(const char *entry, const char *relative_base,
 329        int depth, const char *normalized_objdir)
 330{
 331        struct alternate_object_database *ent;
 332        struct strbuf pathbuf = STRBUF_INIT;
 333
 334        if (!is_absolute_path(entry) && relative_base) {
 335                strbuf_realpath(&pathbuf, relative_base, 1);
 336                strbuf_addch(&pathbuf, '/');
 337        }
 338        strbuf_addstr(&pathbuf, entry);
 339
 340        if (strbuf_normalize_path(&pathbuf) < 0 && relative_base) {
 341                error("unable to normalize alternate object path: %s",
 342                      pathbuf.buf);
 343                strbuf_release(&pathbuf);
 344                return -1;
 345        }
 346
 347        /*
 348         * The trailing slash after the directory name is given by
 349         * this function at the end. Remove duplicates.
 350         */
 351        while (pathbuf.len && pathbuf.buf[pathbuf.len - 1] == '/')
 352                strbuf_setlen(&pathbuf, pathbuf.len - 1);
 353
 354        if (!alt_odb_usable(&pathbuf, normalized_objdir)) {
 355                strbuf_release(&pathbuf);
 356                return -1;
 357        }
 358
 359        ent = alloc_alt_odb(pathbuf.buf);
 360
 361        /* add the alternate entry */
 362        *alt_odb_tail = ent;
 363        alt_odb_tail = &(ent->next);
 364        ent->next = NULL;
 365
 366        /* recursively add alternates */
 367        read_info_alternates(pathbuf.buf, depth + 1);
 368
 369        strbuf_release(&pathbuf);
 370        return 0;
 371}
 372
 373static const char *parse_alt_odb_entry(const char *string,
 374                                       int sep,
 375                                       struct strbuf *out)
 376{
 377        const char *end;
 378
 379        strbuf_reset(out);
 380
 381        if (*string == '#') {
 382                /* comment; consume up to next separator */
 383                end = strchrnul(string, sep);
 384        } else if (*string == '"' && !unquote_c_style(out, string, &end)) {
 385                /*
 386                 * quoted path; unquote_c_style has copied the
 387                 * data for us and set "end". Broken quoting (e.g.,
 388                 * an entry that doesn't end with a quote) falls
 389                 * back to the unquoted case below.
 390                 */
 391        } else {
 392                /* normal, unquoted path */
 393                end = strchrnul(string, sep);
 394                strbuf_add(out, string, end - string);
 395        }
 396
 397        if (*end)
 398                end++;
 399        return end;
 400}
 401
 402static void link_alt_odb_entries(const char *alt, int sep,
 403                                 const char *relative_base, int depth)
 404{
 405        struct strbuf objdirbuf = STRBUF_INIT;
 406        struct strbuf entry = STRBUF_INIT;
 407
 408        if (depth > 5) {
 409                error("%s: ignoring alternate object stores, nesting too deep.",
 410                                relative_base);
 411                return;
 412        }
 413
 414        strbuf_add_absolute_path(&objdirbuf, get_object_directory());
 415        if (strbuf_normalize_path(&objdirbuf) < 0)
 416                die("unable to normalize object directory: %s",
 417                    objdirbuf.buf);
 418
 419        while (*alt) {
 420                alt = parse_alt_odb_entry(alt, sep, &entry);
 421                if (!entry.len)
 422                        continue;
 423                link_alt_odb_entry(entry.buf, relative_base, depth, objdirbuf.buf);
 424        }
 425        strbuf_release(&entry);
 426        strbuf_release(&objdirbuf);
 427}
 428
 429static void read_info_alternates(const char * relative_base, int depth)
 430{
 431        char *path;
 432        struct strbuf buf = STRBUF_INIT;
 433
 434        path = xstrfmt("%s/info/alternates", relative_base);
 435        if (strbuf_read_file(&buf, path, 1024) < 0) {
 436                warn_on_fopen_errors(path);
 437                free(path);
 438                return;
 439        }
 440
 441        link_alt_odb_entries(buf.buf, '\n', relative_base, depth);
 442        strbuf_release(&buf);
 443        free(path);
 444}
 445
 446struct alternate_object_database *alloc_alt_odb(const char *dir)
 447{
 448        struct alternate_object_database *ent;
 449
 450        FLEX_ALLOC_STR(ent, path, dir);
 451        strbuf_init(&ent->scratch, 0);
 452        strbuf_addf(&ent->scratch, "%s/", dir);
 453        ent->base_len = ent->scratch.len;
 454
 455        return ent;
 456}
 457
 458void add_to_alternates_file(const char *reference)
 459{
 460        struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
 461        char *alts = git_pathdup("objects/info/alternates");
 462        FILE *in, *out;
 463
 464        hold_lock_file_for_update(lock, alts, LOCK_DIE_ON_ERROR);
 465        out = fdopen_lock_file(lock, "w");
 466        if (!out)
 467                die_errno("unable to fdopen alternates lockfile");
 468
 469        in = fopen(alts, "r");
 470        if (in) {
 471                struct strbuf line = STRBUF_INIT;
 472                int found = 0;
 473
 474                while (strbuf_getline(&line, in) != EOF) {
 475                        if (!strcmp(reference, line.buf)) {
 476                                found = 1;
 477                                break;
 478                        }
 479                        fprintf_or_die(out, "%s\n", line.buf);
 480                }
 481
 482                strbuf_release(&line);
 483                fclose(in);
 484
 485                if (found) {
 486                        rollback_lock_file(lock);
 487                        lock = NULL;
 488                }
 489        }
 490        else if (errno != ENOENT)
 491                die_errno("unable to read alternates file");
 492
 493        if (lock) {
 494                fprintf_or_die(out, "%s\n", reference);
 495                if (commit_lock_file(lock))
 496                        die_errno("unable to move new alternates file into place");
 497                if (alt_odb_tail)
 498                        link_alt_odb_entries(reference, '\n', NULL, 0);
 499        }
 500        free(alts);
 501}
 502
 503void add_to_alternates_memory(const char *reference)
 504{
 505        /*
 506         * Make sure alternates are initialized, or else our entry may be
 507         * overwritten when they are.
 508         */
 509        prepare_alt_odb();
 510
 511        link_alt_odb_entries(reference, '\n', NULL, 0);
 512}
 513
 514/*
 515 * Compute the exact path an alternate is at and returns it. In case of
 516 * error NULL is returned and the human readable error is added to `err`
 517 * `path` may be relative and should point to $GITDIR.
 518 * `err` must not be null.
 519 */
 520char *compute_alternate_path(const char *path, struct strbuf *err)
 521{
 522        char *ref_git = NULL;
 523        const char *repo, *ref_git_s;
 524        int seen_error = 0;
 525
 526        ref_git_s = real_path_if_valid(path);
 527        if (!ref_git_s) {
 528                seen_error = 1;
 529                strbuf_addf(err, _("path '%s' does not exist"), path);
 530                goto out;
 531        } else
 532                /*
 533                 * Beware: read_gitfile(), real_path() and mkpath()
 534                 * return static buffer
 535                 */
 536                ref_git = xstrdup(ref_git_s);
 537
 538        repo = read_gitfile(ref_git);
 539        if (!repo)
 540                repo = read_gitfile(mkpath("%s/.git", ref_git));
 541        if (repo) {
 542                free(ref_git);
 543                ref_git = xstrdup(repo);
 544        }
 545
 546        if (!repo && is_directory(mkpath("%s/.git/objects", ref_git))) {
 547                char *ref_git_git = mkpathdup("%s/.git", ref_git);
 548                free(ref_git);
 549                ref_git = ref_git_git;
 550        } else if (!is_directory(mkpath("%s/objects", ref_git))) {
 551                struct strbuf sb = STRBUF_INIT;
 552                seen_error = 1;
 553                if (get_common_dir(&sb, ref_git)) {
 554                        strbuf_addf(err,
 555                                    _("reference repository '%s' as a linked "
 556                                      "checkout is not supported yet."),
 557                                    path);
 558                        goto out;
 559                }
 560
 561                strbuf_addf(err, _("reference repository '%s' is not a "
 562                                        "local repository."), path);
 563                goto out;
 564        }
 565
 566        if (!access(mkpath("%s/shallow", ref_git), F_OK)) {
 567                strbuf_addf(err, _("reference repository '%s' is shallow"),
 568                            path);
 569                seen_error = 1;
 570                goto out;
 571        }
 572
 573        if (!access(mkpath("%s/info/grafts", ref_git), F_OK)) {
 574                strbuf_addf(err,
 575                            _("reference repository '%s' is grafted"),
 576                            path);
 577                seen_error = 1;
 578                goto out;
 579        }
 580
 581out:
 582        if (seen_error) {
 583                FREE_AND_NULL(ref_git);
 584        }
 585
 586        return ref_git;
 587}
 588
 589int foreach_alt_odb(alt_odb_fn fn, void *cb)
 590{
 591        struct alternate_object_database *ent;
 592        int r = 0;
 593
 594        prepare_alt_odb();
 595        for (ent = alt_odb_list; ent; ent = ent->next) {
 596                r = fn(ent, cb);
 597                if (r)
 598                        break;
 599        }
 600        return r;
 601}
 602
 603void prepare_alt_odb(void)
 604{
 605        const char *alt;
 606
 607        if (alt_odb_tail)
 608                return;
 609
 610        alt = getenv(ALTERNATE_DB_ENVIRONMENT);
 611        if (!alt) alt = "";
 612
 613        alt_odb_tail = &alt_odb_list;
 614        link_alt_odb_entries(alt, PATH_SEP, NULL, 0);
 615
 616        read_info_alternates(get_object_directory(), 0);
 617}
 618
 619/* Returns 1 if we have successfully freshened the file, 0 otherwise. */
 620static int freshen_file(const char *fn)
 621{
 622        struct utimbuf t;
 623        t.actime = t.modtime = time(NULL);
 624        return !utime(fn, &t);
 625}
 626
 627/*
 628 * All of the check_and_freshen functions return 1 if the file exists and was
 629 * freshened (if freshening was requested), 0 otherwise. If they return
 630 * 0, you should not assume that it is safe to skip a write of the object (it
 631 * either does not exist on disk, or has a stale mtime and may be subject to
 632 * pruning).
 633 */
 634int check_and_freshen_file(const char *fn, int freshen)
 635{
 636        if (access(fn, F_OK))
 637                return 0;
 638        if (freshen && !freshen_file(fn))
 639                return 0;
 640        return 1;
 641}
 642
 643static int check_and_freshen_local(const unsigned char *sha1, int freshen)
 644{
 645        return check_and_freshen_file(sha1_file_name(sha1), freshen);
 646}
 647
 648static int check_and_freshen_nonlocal(const unsigned char *sha1, int freshen)
 649{
 650        struct alternate_object_database *alt;
 651        prepare_alt_odb();
 652        for (alt = alt_odb_list; alt; alt = alt->next) {
 653                const char *path = alt_sha1_path(alt, sha1);
 654                if (check_and_freshen_file(path, freshen))
 655                        return 1;
 656        }
 657        return 0;
 658}
 659
 660static int check_and_freshen(const unsigned char *sha1, int freshen)
 661{
 662        return check_and_freshen_local(sha1, freshen) ||
 663               check_and_freshen_nonlocal(sha1, freshen);
 664}
 665
 666int has_loose_object_nonlocal(const unsigned char *sha1)
 667{
 668        return check_and_freshen_nonlocal(sha1, 0);
 669}
 670
 671static int has_loose_object(const unsigned char *sha1)
 672{
 673        return check_and_freshen(sha1, 0);
 674}
 675
 676static void mmap_limit_check(size_t length)
 677{
 678        static size_t limit = 0;
 679        if (!limit) {
 680                limit = git_env_ulong("GIT_MMAP_LIMIT", 0);
 681                if (!limit)
 682                        limit = SIZE_MAX;
 683        }
 684        if (length > limit)
 685                die("attempting to mmap %"PRIuMAX" over limit %"PRIuMAX,
 686                    (uintmax_t)length, (uintmax_t)limit);
 687}
 688
 689void *xmmap_gently(void *start, size_t length,
 690                  int prot, int flags, int fd, off_t offset)
 691{
 692        void *ret;
 693
 694        mmap_limit_check(length);
 695        ret = mmap(start, length, prot, flags, fd, offset);
 696        if (ret == MAP_FAILED) {
 697                if (!length)
 698                        return NULL;
 699                release_pack_memory(length);
 700                ret = mmap(start, length, prot, flags, fd, offset);
 701        }
 702        return ret;
 703}
 704
 705void *xmmap(void *start, size_t length,
 706        int prot, int flags, int fd, off_t offset)
 707{
 708        void *ret = xmmap_gently(start, length, prot, flags, fd, offset);
 709        if (ret == MAP_FAILED)
 710                die_errno("mmap failed");
 711        return ret;
 712}
 713
 714/*
 715 * With an in-core object data in "map", rehash it to make sure the
 716 * object name actually matches "sha1" to detect object corruption.
 717 * With "map" == NULL, try reading the object named with "sha1" using
 718 * the streaming interface and rehash it to do the same.
 719 */
 720int check_sha1_signature(const unsigned char *sha1, void *map,
 721                         unsigned long size, const char *type)
 722{
 723        unsigned char real_sha1[20];
 724        enum object_type obj_type;
 725        struct git_istream *st;
 726        git_SHA_CTX c;
 727        char hdr[32];
 728        int hdrlen;
 729
 730        if (map) {
 731                hash_sha1_file(map, size, type, real_sha1);
 732                return hashcmp(sha1, real_sha1) ? -1 : 0;
 733        }
 734
 735        st = open_istream(sha1, &obj_type, &size, NULL);
 736        if (!st)
 737                return -1;
 738
 739        /* Generate the header */
 740        hdrlen = xsnprintf(hdr, sizeof(hdr), "%s %lu", typename(obj_type), size) + 1;
 741
 742        /* Sha1.. */
 743        git_SHA1_Init(&c);
 744        git_SHA1_Update(&c, hdr, hdrlen);
 745        for (;;) {
 746                char buf[1024 * 16];
 747                ssize_t readlen = read_istream(st, buf, sizeof(buf));
 748
 749                if (readlen < 0) {
 750                        close_istream(st);
 751                        return -1;
 752                }
 753                if (!readlen)
 754                        break;
 755                git_SHA1_Update(&c, buf, readlen);
 756        }
 757        git_SHA1_Final(real_sha1, &c);
 758        close_istream(st);
 759        return hashcmp(sha1, real_sha1) ? -1 : 0;
 760}
 761
 762int git_open_cloexec(const char *name, int flags)
 763{
 764        int fd;
 765        static int o_cloexec = O_CLOEXEC;
 766
 767        fd = open(name, flags | o_cloexec);
 768        if ((o_cloexec & O_CLOEXEC) && fd < 0 && errno == EINVAL) {
 769                /* Try again w/o O_CLOEXEC: the kernel might not support it */
 770                o_cloexec &= ~O_CLOEXEC;
 771                fd = open(name, flags | o_cloexec);
 772        }
 773
 774#if defined(F_GETFD) && defined(F_SETFD) && defined(FD_CLOEXEC)
 775        {
 776                static int fd_cloexec = FD_CLOEXEC;
 777
 778                if (!o_cloexec && 0 <= fd && fd_cloexec) {
 779                        /* Opened w/o O_CLOEXEC?  try with fcntl(2) to add it */
 780                        int flags = fcntl(fd, F_GETFD);
 781                        if (fcntl(fd, F_SETFD, flags | fd_cloexec))
 782                                fd_cloexec = 0;
 783                }
 784        }
 785#endif
 786        return fd;
 787}
 788
 789/*
 790 * Find "sha1" as a loose object in the local repository or in an alternate.
 791 * Returns 0 on success, negative on failure.
 792 *
 793 * The "path" out-parameter will give the path of the object we found (if any).
 794 * Note that it may point to static storage and is only valid until another
 795 * call to sha1_file_name(), etc.
 796 */
 797static int stat_sha1_file(const unsigned char *sha1, struct stat *st,
 798                          const char **path)
 799{
 800        struct alternate_object_database *alt;
 801
 802        *path = sha1_file_name(sha1);
 803        if (!lstat(*path, st))
 804                return 0;
 805
 806        prepare_alt_odb();
 807        errno = ENOENT;
 808        for (alt = alt_odb_list; alt; alt = alt->next) {
 809                *path = alt_sha1_path(alt, sha1);
 810                if (!lstat(*path, st))
 811                        return 0;
 812        }
 813
 814        return -1;
 815}
 816
 817/*
 818 * Like stat_sha1_file(), but actually open the object and return the
 819 * descriptor. See the caveats on the "path" parameter above.
 820 */
 821static int open_sha1_file(const unsigned char *sha1, const char **path)
 822{
 823        int fd;
 824        struct alternate_object_database *alt;
 825        int most_interesting_errno;
 826
 827        *path = sha1_file_name(sha1);
 828        fd = git_open(*path);
 829        if (fd >= 0)
 830                return fd;
 831        most_interesting_errno = errno;
 832
 833        prepare_alt_odb();
 834        for (alt = alt_odb_list; alt; alt = alt->next) {
 835                *path = alt_sha1_path(alt, sha1);
 836                fd = git_open(*path);
 837                if (fd >= 0)
 838                        return fd;
 839                if (most_interesting_errno == ENOENT)
 840                        most_interesting_errno = errno;
 841        }
 842        errno = most_interesting_errno;
 843        return -1;
 844}
 845
 846/*
 847 * Map the loose object at "path" if it is not NULL, or the path found by
 848 * searching for a loose object named "sha1".
 849 */
 850static void *map_sha1_file_1(const char *path,
 851                             const unsigned char *sha1,
 852                             unsigned long *size)
 853{
 854        void *map;
 855        int fd;
 856
 857        if (path)
 858                fd = git_open(path);
 859        else
 860                fd = open_sha1_file(sha1, &path);
 861        map = NULL;
 862        if (fd >= 0) {
 863                struct stat st;
 864
 865                if (!fstat(fd, &st)) {
 866                        *size = xsize_t(st.st_size);
 867                        if (!*size) {
 868                                /* mmap() is forbidden on empty files */
 869                                error("object file %s is empty", path);
 870                                return NULL;
 871                        }
 872                        map = xmmap(NULL, *size, PROT_READ, MAP_PRIVATE, fd, 0);
 873                }
 874                close(fd);
 875        }
 876        return map;
 877}
 878
 879void *map_sha1_file(const unsigned char *sha1, unsigned long *size)
 880{
 881        return map_sha1_file_1(NULL, sha1, size);
 882}
 883
 884static int unpack_sha1_short_header(git_zstream *stream,
 885                                    unsigned char *map, unsigned long mapsize,
 886                                    void *buffer, unsigned long bufsiz)
 887{
 888        /* Get the data stream */
 889        memset(stream, 0, sizeof(*stream));
 890        stream->next_in = map;
 891        stream->avail_in = mapsize;
 892        stream->next_out = buffer;
 893        stream->avail_out = bufsiz;
 894
 895        git_inflate_init(stream);
 896        return git_inflate(stream, 0);
 897}
 898
 899int unpack_sha1_header(git_zstream *stream,
 900                       unsigned char *map, unsigned long mapsize,
 901                       void *buffer, unsigned long bufsiz)
 902{
 903        int status = unpack_sha1_short_header(stream, map, mapsize,
 904                                              buffer, bufsiz);
 905
 906        if (status < Z_OK)
 907                return status;
 908
 909        /* Make sure we have the terminating NUL */
 910        if (!memchr(buffer, '\0', stream->next_out - (unsigned char *)buffer))
 911                return -1;
 912        return 0;
 913}
 914
 915static int unpack_sha1_header_to_strbuf(git_zstream *stream, unsigned char *map,
 916                                        unsigned long mapsize, void *buffer,
 917                                        unsigned long bufsiz, struct strbuf *header)
 918{
 919        int status;
 920
 921        status = unpack_sha1_short_header(stream, map, mapsize, buffer, bufsiz);
 922        if (status < Z_OK)
 923                return -1;
 924
 925        /*
 926         * Check if entire header is unpacked in the first iteration.
 927         */
 928        if (memchr(buffer, '\0', stream->next_out - (unsigned char *)buffer))
 929                return 0;
 930
 931        /*
 932         * buffer[0..bufsiz] was not large enough.  Copy the partial
 933         * result out to header, and then append the result of further
 934         * reading the stream.
 935         */
 936        strbuf_add(header, buffer, stream->next_out - (unsigned char *)buffer);
 937        stream->next_out = buffer;
 938        stream->avail_out = bufsiz;
 939
 940        do {
 941                status = git_inflate(stream, 0);
 942                strbuf_add(header, buffer, stream->next_out - (unsigned char *)buffer);
 943                if (memchr(buffer, '\0', stream->next_out - (unsigned char *)buffer))
 944                        return 0;
 945                stream->next_out = buffer;
 946                stream->avail_out = bufsiz;
 947        } while (status != Z_STREAM_END);
 948        return -1;
 949}
 950
 951static void *unpack_sha1_rest(git_zstream *stream, void *buffer, unsigned long size, const unsigned char *sha1)
 952{
 953        int bytes = strlen(buffer) + 1;
 954        unsigned char *buf = xmallocz(size);
 955        unsigned long n;
 956        int status = Z_OK;
 957
 958        n = stream->total_out - bytes;
 959        if (n > size)
 960                n = size;
 961        memcpy(buf, (char *) buffer + bytes, n);
 962        bytes = n;
 963        if (bytes <= size) {
 964                /*
 965                 * The above condition must be (bytes <= size), not
 966                 * (bytes < size).  In other words, even though we
 967                 * expect no more output and set avail_out to zero,
 968                 * the input zlib stream may have bytes that express
 969                 * "this concludes the stream", and we *do* want to
 970                 * eat that input.
 971                 *
 972                 * Otherwise we would not be able to test that we
 973                 * consumed all the input to reach the expected size;
 974                 * we also want to check that zlib tells us that all
 975                 * went well with status == Z_STREAM_END at the end.
 976                 */
 977                stream->next_out = buf + bytes;
 978                stream->avail_out = size - bytes;
 979                while (status == Z_OK)
 980                        status = git_inflate(stream, Z_FINISH);
 981        }
 982        if (status == Z_STREAM_END && !stream->avail_in) {
 983                git_inflate_end(stream);
 984                return buf;
 985        }
 986
 987        if (status < 0)
 988                error("corrupt loose object '%s'", sha1_to_hex(sha1));
 989        else if (stream->avail_in)
 990                error("garbage at end of loose object '%s'",
 991                      sha1_to_hex(sha1));
 992        free(buf);
 993        return NULL;
 994}
 995
 996/*
 997 * We used to just use "sscanf()", but that's actually way
 998 * too permissive for what we want to check. So do an anal
 999 * object header parse by hand.
1000 */
1001static int parse_sha1_header_extended(const char *hdr, struct object_info *oi,
1002                               unsigned int flags)
1003{
1004        const char *type_buf = hdr;
1005        unsigned long size;
1006        int type, type_len = 0;
1007
1008        /*
1009         * The type can be of any size but is followed by
1010         * a space.
1011         */
1012        for (;;) {
1013                char c = *hdr++;
1014                if (!c)
1015                        return -1;
1016                if (c == ' ')
1017                        break;
1018                type_len++;
1019        }
1020
1021        type = type_from_string_gently(type_buf, type_len, 1);
1022        if (oi->typename)
1023                strbuf_add(oi->typename, type_buf, type_len);
1024        /*
1025         * Set type to 0 if its an unknown object and
1026         * we're obtaining the type using '--allow-unknown-type'
1027         * option.
1028         */
1029        if ((flags & OBJECT_INFO_ALLOW_UNKNOWN_TYPE) && (type < 0))
1030                type = 0;
1031        else if (type < 0)
1032                die("invalid object type");
1033        if (oi->typep)
1034                *oi->typep = type;
1035
1036        /*
1037         * The length must follow immediately, and be in canonical
1038         * decimal format (ie "010" is not valid).
1039         */
1040        size = *hdr++ - '0';
1041        if (size > 9)
1042                return -1;
1043        if (size) {
1044                for (;;) {
1045                        unsigned long c = *hdr - '0';
1046                        if (c > 9)
1047                                break;
1048                        hdr++;
1049                        size = size * 10 + c;
1050                }
1051        }
1052
1053        if (oi->sizep)
1054                *oi->sizep = size;
1055
1056        /*
1057         * The length must be followed by a zero byte
1058         */
1059        return *hdr ? -1 : type;
1060}
1061
1062int parse_sha1_header(const char *hdr, unsigned long *sizep)
1063{
1064        struct object_info oi = OBJECT_INFO_INIT;
1065
1066        oi.sizep = sizep;
1067        return parse_sha1_header_extended(hdr, &oi, 0);
1068}
1069
1070static int sha1_loose_object_info(const unsigned char *sha1,
1071                                  struct object_info *oi,
1072                                  int flags)
1073{
1074        int status = 0;
1075        unsigned long mapsize;
1076        void *map;
1077        git_zstream stream;
1078        char hdr[32];
1079        struct strbuf hdrbuf = STRBUF_INIT;
1080        unsigned long size_scratch;
1081
1082        if (oi->delta_base_sha1)
1083                hashclr(oi->delta_base_sha1);
1084
1085        /*
1086         * If we don't care about type or size, then we don't
1087         * need to look inside the object at all. Note that we
1088         * do not optimize out the stat call, even if the
1089         * caller doesn't care about the disk-size, since our
1090         * return value implicitly indicates whether the
1091         * object even exists.
1092         */
1093        if (!oi->typep && !oi->typename && !oi->sizep && !oi->contentp) {
1094                const char *path;
1095                struct stat st;
1096                if (stat_sha1_file(sha1, &st, &path) < 0)
1097                        return -1;
1098                if (oi->disk_sizep)
1099                        *oi->disk_sizep = st.st_size;
1100                return 0;
1101        }
1102
1103        map = map_sha1_file(sha1, &mapsize);
1104        if (!map)
1105                return -1;
1106
1107        if (!oi->sizep)
1108                oi->sizep = &size_scratch;
1109
1110        if (oi->disk_sizep)
1111                *oi->disk_sizep = mapsize;
1112        if ((flags & OBJECT_INFO_ALLOW_UNKNOWN_TYPE)) {
1113                if (unpack_sha1_header_to_strbuf(&stream, map, mapsize, hdr, sizeof(hdr), &hdrbuf) < 0)
1114                        status = error("unable to unpack %s header with --allow-unknown-type",
1115                                       sha1_to_hex(sha1));
1116        } else if (unpack_sha1_header(&stream, map, mapsize, hdr, sizeof(hdr)) < 0)
1117                status = error("unable to unpack %s header",
1118                               sha1_to_hex(sha1));
1119        if (status < 0)
1120                ; /* Do nothing */
1121        else if (hdrbuf.len) {
1122                if ((status = parse_sha1_header_extended(hdrbuf.buf, oi, flags)) < 0)
1123                        status = error("unable to parse %s header with --allow-unknown-type",
1124                                       sha1_to_hex(sha1));
1125        } else if ((status = parse_sha1_header_extended(hdr, oi, flags)) < 0)
1126                status = error("unable to parse %s header", sha1_to_hex(sha1));
1127
1128        if (status >= 0 && oi->contentp) {
1129                *oi->contentp = unpack_sha1_rest(&stream, hdr,
1130                                                 *oi->sizep, sha1);
1131                if (!*oi->contentp) {
1132                        git_inflate_end(&stream);
1133                        status = -1;
1134                }
1135        } else
1136                git_inflate_end(&stream);
1137
1138        munmap(map, mapsize);
1139        if (status && oi->typep)
1140                *oi->typep = status;
1141        if (oi->sizep == &size_scratch)
1142                oi->sizep = NULL;
1143        strbuf_release(&hdrbuf);
1144        oi->whence = OI_LOOSE;
1145        return (status < 0) ? status : 0;
1146}
1147
1148int fetch_if_missing = 1;
1149
1150int sha1_object_info_extended(const unsigned char *sha1, struct object_info *oi, unsigned flags)
1151{
1152        static struct object_info blank_oi = OBJECT_INFO_INIT;
1153        struct pack_entry e;
1154        int rtype;
1155        const unsigned char *real = (flags & OBJECT_INFO_LOOKUP_REPLACE) ?
1156                                    lookup_replace_object(sha1) :
1157                                    sha1;
1158        int already_retried = 0;
1159
1160        if (!oi)
1161                oi = &blank_oi;
1162
1163        if (!(flags & OBJECT_INFO_SKIP_CACHED)) {
1164                struct cached_object *co = find_cached_object(real);
1165                if (co) {
1166                        if (oi->typep)
1167                                *(oi->typep) = co->type;
1168                        if (oi->sizep)
1169                                *(oi->sizep) = co->size;
1170                        if (oi->disk_sizep)
1171                                *(oi->disk_sizep) = 0;
1172                        if (oi->delta_base_sha1)
1173                                hashclr(oi->delta_base_sha1);
1174                        if (oi->typename)
1175                                strbuf_addstr(oi->typename, typename(co->type));
1176                        if (oi->contentp)
1177                                *oi->contentp = xmemdupz(co->buf, co->size);
1178                        oi->whence = OI_CACHED;
1179                        return 0;
1180                }
1181        }
1182
1183        while (1) {
1184                if (find_pack_entry(real, &e))
1185                        break;
1186
1187                /* Most likely it's a loose object. */
1188                if (!sha1_loose_object_info(real, oi, flags))
1189                        return 0;
1190
1191                /* Not a loose object; someone else may have just packed it. */
1192                if (!(flags & OBJECT_INFO_QUICK)) {
1193                        reprepare_packed_git();
1194                        if (find_pack_entry(real, &e))
1195                                break;
1196                }
1197
1198                /* Check if it is a missing object */
1199                if (fetch_if_missing && repository_format_partial_clone &&
1200                    !already_retried) {
1201                        /*
1202                         * TODO Investigate haveing fetch_object() return
1203                         * TODO error/success and stopping the music here.
1204                         */
1205                        fetch_object(repository_format_partial_clone, real);
1206                        already_retried = 1;
1207                        continue;
1208                }
1209
1210                return -1;
1211        }
1212
1213        if (oi == &blank_oi)
1214                /*
1215                 * We know that the caller doesn't actually need the
1216                 * information below, so return early.
1217                 */
1218                return 0;
1219        rtype = packed_object_info(e.p, e.offset, oi);
1220        if (rtype < 0) {
1221                mark_bad_packed_object(e.p, real);
1222                return sha1_object_info_extended(real, oi, 0);
1223        } else if (oi->whence == OI_PACKED) {
1224                oi->u.packed.offset = e.offset;
1225                oi->u.packed.pack = e.p;
1226                oi->u.packed.is_delta = (rtype == OBJ_REF_DELTA ||
1227                                         rtype == OBJ_OFS_DELTA);
1228        }
1229
1230        return 0;
1231}
1232
1233/* returns enum object_type or negative */
1234int sha1_object_info(const unsigned char *sha1, unsigned long *sizep)
1235{
1236        enum object_type type;
1237        struct object_info oi = OBJECT_INFO_INIT;
1238
1239        oi.typep = &type;
1240        oi.sizep = sizep;
1241        if (sha1_object_info_extended(sha1, &oi,
1242                                      OBJECT_INFO_LOOKUP_REPLACE) < 0)
1243                return -1;
1244        return type;
1245}
1246
1247static void *read_object(const unsigned char *sha1, enum object_type *type,
1248                         unsigned long *size)
1249{
1250        struct object_info oi = OBJECT_INFO_INIT;
1251        void *content;
1252        oi.typep = type;
1253        oi.sizep = size;
1254        oi.contentp = &content;
1255
1256        if (sha1_object_info_extended(sha1, &oi, 0) < 0)
1257                return NULL;
1258        return content;
1259}
1260
1261int pretend_sha1_file(void *buf, unsigned long len, enum object_type type,
1262                      unsigned char *sha1)
1263{
1264        struct cached_object *co;
1265
1266        hash_sha1_file(buf, len, typename(type), sha1);
1267        if (has_sha1_file(sha1) || find_cached_object(sha1))
1268                return 0;
1269        ALLOC_GROW(cached_objects, cached_object_nr + 1, cached_object_alloc);
1270        co = &cached_objects[cached_object_nr++];
1271        co->size = len;
1272        co->type = type;
1273        co->buf = xmalloc(len);
1274        memcpy(co->buf, buf, len);
1275        hashcpy(co->sha1, sha1);
1276        return 0;
1277}
1278
1279/*
1280 * This function dies on corrupt objects; the callers who want to
1281 * deal with them should arrange to call read_object() and give error
1282 * messages themselves.
1283 */
1284void *read_sha1_file_extended(const unsigned char *sha1,
1285                              enum object_type *type,
1286                              unsigned long *size,
1287                              int lookup_replace)
1288{
1289        void *data;
1290        const struct packed_git *p;
1291        const char *path;
1292        struct stat st;
1293        const unsigned char *repl = lookup_replace ? lookup_replace_object(sha1)
1294                                                   : sha1;
1295
1296        errno = 0;
1297        data = read_object(repl, type, size);
1298        if (data)
1299                return data;
1300
1301        if (errno && errno != ENOENT)
1302                die_errno("failed to read object %s", sha1_to_hex(sha1));
1303
1304        /* die if we replaced an object with one that does not exist */
1305        if (repl != sha1)
1306                die("replacement %s not found for %s",
1307                    sha1_to_hex(repl), sha1_to_hex(sha1));
1308
1309        if (!stat_sha1_file(repl, &st, &path))
1310                die("loose object %s (stored in %s) is corrupt",
1311                    sha1_to_hex(repl), path);
1312
1313        if ((p = has_packed_and_bad(repl)) != NULL)
1314                die("packed object %s (stored in %s) is corrupt",
1315                    sha1_to_hex(repl), p->pack_name);
1316
1317        return NULL;
1318}
1319
1320void *read_object_with_reference(const unsigned char *sha1,
1321                                 const char *required_type_name,
1322                                 unsigned long *size,
1323                                 unsigned char *actual_sha1_return)
1324{
1325        enum object_type type, required_type;
1326        void *buffer;
1327        unsigned long isize;
1328        unsigned char actual_sha1[20];
1329
1330        required_type = type_from_string(required_type_name);
1331        hashcpy(actual_sha1, sha1);
1332        while (1) {
1333                int ref_length = -1;
1334                const char *ref_type = NULL;
1335
1336                buffer = read_sha1_file(actual_sha1, &type, &isize);
1337                if (!buffer)
1338                        return NULL;
1339                if (type == required_type) {
1340                        *size = isize;
1341                        if (actual_sha1_return)
1342                                hashcpy(actual_sha1_return, actual_sha1);
1343                        return buffer;
1344                }
1345                /* Handle references */
1346                else if (type == OBJ_COMMIT)
1347                        ref_type = "tree ";
1348                else if (type == OBJ_TAG)
1349                        ref_type = "object ";
1350                else {
1351                        free(buffer);
1352                        return NULL;
1353                }
1354                ref_length = strlen(ref_type);
1355
1356                if (ref_length + 40 > isize ||
1357                    memcmp(buffer, ref_type, ref_length) ||
1358                    get_sha1_hex((char *) buffer + ref_length, actual_sha1)) {
1359                        free(buffer);
1360                        return NULL;
1361                }
1362                free(buffer);
1363                /* Now we have the ID of the referred-to object in
1364                 * actual_sha1.  Check again. */
1365        }
1366}
1367
1368static void write_sha1_file_prepare(const void *buf, unsigned long len,
1369                                    const char *type, unsigned char *sha1,
1370                                    char *hdr, int *hdrlen)
1371{
1372        git_SHA_CTX c;
1373
1374        /* Generate the header */
1375        *hdrlen = xsnprintf(hdr, *hdrlen, "%s %lu", type, len)+1;
1376
1377        /* Sha1.. */
1378        git_SHA1_Init(&c);
1379        git_SHA1_Update(&c, hdr, *hdrlen);
1380        git_SHA1_Update(&c, buf, len);
1381        git_SHA1_Final(sha1, &c);
1382}
1383
1384/*
1385 * Move the just written object into its final resting place.
1386 */
1387int finalize_object_file(const char *tmpfile, const char *filename)
1388{
1389        int ret = 0;
1390
1391        if (object_creation_mode == OBJECT_CREATION_USES_RENAMES)
1392                goto try_rename;
1393        else if (link(tmpfile, filename))
1394                ret = errno;
1395
1396        /*
1397         * Coda hack - coda doesn't like cross-directory links,
1398         * so we fall back to a rename, which will mean that it
1399         * won't be able to check collisions, but that's not a
1400         * big deal.
1401         *
1402         * The same holds for FAT formatted media.
1403         *
1404         * When this succeeds, we just return.  We have nothing
1405         * left to unlink.
1406         */
1407        if (ret && ret != EEXIST) {
1408        try_rename:
1409                if (!rename(tmpfile, filename))
1410                        goto out;
1411                ret = errno;
1412        }
1413        unlink_or_warn(tmpfile);
1414        if (ret) {
1415                if (ret != EEXIST) {
1416                        return error_errno("unable to write sha1 filename %s", filename);
1417                }
1418                /* FIXME!!! Collision check here ? */
1419        }
1420
1421out:
1422        if (adjust_shared_perm(filename))
1423                return error("unable to set permission to '%s'", filename);
1424        return 0;
1425}
1426
1427static int write_buffer(int fd, const void *buf, size_t len)
1428{
1429        if (write_in_full(fd, buf, len) < 0)
1430                return error_errno("file write error");
1431        return 0;
1432}
1433
1434int hash_sha1_file(const void *buf, unsigned long len, const char *type,
1435                   unsigned char *sha1)
1436{
1437        char hdr[32];
1438        int hdrlen = sizeof(hdr);
1439        write_sha1_file_prepare(buf, len, type, sha1, hdr, &hdrlen);
1440        return 0;
1441}
1442
1443/* Finalize a file on disk, and close it. */
1444static void close_sha1_file(int fd)
1445{
1446        if (fsync_object_files)
1447                fsync_or_die(fd, "sha1 file");
1448        if (close(fd) != 0)
1449                die_errno("error when closing sha1 file");
1450}
1451
1452/* Size of directory component, including the ending '/' */
1453static inline int directory_size(const char *filename)
1454{
1455        const char *s = strrchr(filename, '/');
1456        if (!s)
1457                return 0;
1458        return s - filename + 1;
1459}
1460
1461/*
1462 * This creates a temporary file in the same directory as the final
1463 * 'filename'
1464 *
1465 * We want to avoid cross-directory filename renames, because those
1466 * can have problems on various filesystems (FAT, NFS, Coda).
1467 */
1468static int create_tmpfile(struct strbuf *tmp, const char *filename)
1469{
1470        int fd, dirlen = directory_size(filename);
1471
1472        strbuf_reset(tmp);
1473        strbuf_add(tmp, filename, dirlen);
1474        strbuf_addstr(tmp, "tmp_obj_XXXXXX");
1475        fd = git_mkstemp_mode(tmp->buf, 0444);
1476        if (fd < 0 && dirlen && errno == ENOENT) {
1477                /*
1478                 * Make sure the directory exists; note that the contents
1479                 * of the buffer are undefined after mkstemp returns an
1480                 * error, so we have to rewrite the whole buffer from
1481                 * scratch.
1482                 */
1483                strbuf_reset(tmp);
1484                strbuf_add(tmp, filename, dirlen - 1);
1485                if (mkdir(tmp->buf, 0777) && errno != EEXIST)
1486                        return -1;
1487                if (adjust_shared_perm(tmp->buf))
1488                        return -1;
1489
1490                /* Try again */
1491                strbuf_addstr(tmp, "/tmp_obj_XXXXXX");
1492                fd = git_mkstemp_mode(tmp->buf, 0444);
1493        }
1494        return fd;
1495}
1496
1497static int write_loose_object(const unsigned char *sha1, char *hdr, int hdrlen,
1498                              const void *buf, unsigned long len, time_t mtime)
1499{
1500        int fd, ret;
1501        unsigned char compressed[4096];
1502        git_zstream stream;
1503        git_SHA_CTX c;
1504        unsigned char parano_sha1[20];
1505        static struct strbuf tmp_file = STRBUF_INIT;
1506        const char *filename = sha1_file_name(sha1);
1507
1508        fd = create_tmpfile(&tmp_file, filename);
1509        if (fd < 0) {
1510                if (errno == EACCES)
1511                        return error("insufficient permission for adding an object to repository database %s", get_object_directory());
1512                else
1513                        return error_errno("unable to create temporary file");
1514        }
1515
1516        /* Set it up */
1517        git_deflate_init(&stream, zlib_compression_level);
1518        stream.next_out = compressed;
1519        stream.avail_out = sizeof(compressed);
1520        git_SHA1_Init(&c);
1521
1522        /* First header.. */
1523        stream.next_in = (unsigned char *)hdr;
1524        stream.avail_in = hdrlen;
1525        while (git_deflate(&stream, 0) == Z_OK)
1526                ; /* nothing */
1527        git_SHA1_Update(&c, hdr, hdrlen);
1528
1529        /* Then the data itself.. */
1530        stream.next_in = (void *)buf;
1531        stream.avail_in = len;
1532        do {
1533                unsigned char *in0 = stream.next_in;
1534                ret = git_deflate(&stream, Z_FINISH);
1535                git_SHA1_Update(&c, in0, stream.next_in - in0);
1536                if (write_buffer(fd, compressed, stream.next_out - compressed) < 0)
1537                        die("unable to write sha1 file");
1538                stream.next_out = compressed;
1539                stream.avail_out = sizeof(compressed);
1540        } while (ret == Z_OK);
1541
1542        if (ret != Z_STREAM_END)
1543                die("unable to deflate new object %s (%d)", sha1_to_hex(sha1), ret);
1544        ret = git_deflate_end_gently(&stream);
1545        if (ret != Z_OK)
1546                die("deflateEnd on object %s failed (%d)", sha1_to_hex(sha1), ret);
1547        git_SHA1_Final(parano_sha1, &c);
1548        if (hashcmp(sha1, parano_sha1) != 0)
1549                die("confused by unstable object source data for %s", sha1_to_hex(sha1));
1550
1551        close_sha1_file(fd);
1552
1553        if (mtime) {
1554                struct utimbuf utb;
1555                utb.actime = mtime;
1556                utb.modtime = mtime;
1557                if (utime(tmp_file.buf, &utb) < 0)
1558                        warning_errno("failed utime() on %s", tmp_file.buf);
1559        }
1560
1561        return finalize_object_file(tmp_file.buf, filename);
1562}
1563
1564static int freshen_loose_object(const unsigned char *sha1)
1565{
1566        return check_and_freshen(sha1, 1);
1567}
1568
1569static int freshen_packed_object(const unsigned char *sha1)
1570{
1571        struct pack_entry e;
1572        if (!find_pack_entry(sha1, &e))
1573                return 0;
1574        if (e.p->freshened)
1575                return 1;
1576        if (!freshen_file(e.p->pack_name))
1577                return 0;
1578        e.p->freshened = 1;
1579        return 1;
1580}
1581
1582int write_sha1_file(const void *buf, unsigned long len, const char *type, unsigned char *sha1)
1583{
1584        char hdr[32];
1585        int hdrlen = sizeof(hdr);
1586
1587        /* Normally if we have it in the pack then we do not bother writing
1588         * it out into .git/objects/??/?{38} file.
1589         */
1590        write_sha1_file_prepare(buf, len, type, sha1, hdr, &hdrlen);
1591        if (freshen_packed_object(sha1) || freshen_loose_object(sha1))
1592                return 0;
1593        return write_loose_object(sha1, hdr, hdrlen, buf, len, 0);
1594}
1595
1596int hash_sha1_file_literally(const void *buf, unsigned long len, const char *type,
1597                             struct object_id *oid, unsigned flags)
1598{
1599        char *header;
1600        int hdrlen, status = 0;
1601
1602        /* type string, SP, %lu of the length plus NUL must fit this */
1603        hdrlen = strlen(type) + 32;
1604        header = xmalloc(hdrlen);
1605        write_sha1_file_prepare(buf, len, type, oid->hash, header, &hdrlen);
1606
1607        if (!(flags & HASH_WRITE_OBJECT))
1608                goto cleanup;
1609        if (freshen_packed_object(oid->hash) || freshen_loose_object(oid->hash))
1610                goto cleanup;
1611        status = write_loose_object(oid->hash, header, hdrlen, buf, len, 0);
1612
1613cleanup:
1614        free(header);
1615        return status;
1616}
1617
1618int force_object_loose(const unsigned char *sha1, time_t mtime)
1619{
1620        void *buf;
1621        unsigned long len;
1622        enum object_type type;
1623        char hdr[32];
1624        int hdrlen;
1625        int ret;
1626
1627        if (has_loose_object(sha1))
1628                return 0;
1629        buf = read_object(sha1, &type, &len);
1630        if (!buf)
1631                return error("cannot read sha1_file for %s", sha1_to_hex(sha1));
1632        hdrlen = xsnprintf(hdr, sizeof(hdr), "%s %lu", typename(type), len) + 1;
1633        ret = write_loose_object(sha1, hdr, hdrlen, buf, len, mtime);
1634        free(buf);
1635
1636        return ret;
1637}
1638
1639int has_sha1_file_with_flags(const unsigned char *sha1, int flags)
1640{
1641        if (!startup_info->have_repository)
1642                return 0;
1643        return sha1_object_info_extended(sha1, NULL,
1644                                         flags | OBJECT_INFO_SKIP_CACHED) >= 0;
1645}
1646
1647int has_object_file(const struct object_id *oid)
1648{
1649        return has_sha1_file(oid->hash);
1650}
1651
1652int has_object_file_with_flags(const struct object_id *oid, int flags)
1653{
1654        return has_sha1_file_with_flags(oid->hash, flags);
1655}
1656
1657static void check_tree(const void *buf, size_t size)
1658{
1659        struct tree_desc desc;
1660        struct name_entry entry;
1661
1662        init_tree_desc(&desc, buf, size);
1663        while (tree_entry(&desc, &entry))
1664                /* do nothing
1665                 * tree_entry() will die() on malformed entries */
1666                ;
1667}
1668
1669static void check_commit(const void *buf, size_t size)
1670{
1671        struct commit c;
1672        memset(&c, 0, sizeof(c));
1673        if (parse_commit_buffer(&c, buf, size))
1674                die("corrupt commit");
1675}
1676
1677static void check_tag(const void *buf, size_t size)
1678{
1679        struct tag t;
1680        memset(&t, 0, sizeof(t));
1681        if (parse_tag_buffer(&t, buf, size))
1682                die("corrupt tag");
1683}
1684
1685static int index_mem(unsigned char *sha1, void *buf, size_t size,
1686                     enum object_type type,
1687                     const char *path, unsigned flags)
1688{
1689        int ret, re_allocated = 0;
1690        int write_object = flags & HASH_WRITE_OBJECT;
1691
1692        if (!type)
1693                type = OBJ_BLOB;
1694
1695        /*
1696         * Convert blobs to git internal format
1697         */
1698        if ((type == OBJ_BLOB) && path) {
1699                struct strbuf nbuf = STRBUF_INIT;
1700                if (convert_to_git(&the_index, path, buf, size, &nbuf,
1701                                   write_object ? safe_crlf : SAFE_CRLF_FALSE)) {
1702                        buf = strbuf_detach(&nbuf, &size);
1703                        re_allocated = 1;
1704                }
1705        }
1706        if (flags & HASH_FORMAT_CHECK) {
1707                if (type == OBJ_TREE)
1708                        check_tree(buf, size);
1709                if (type == OBJ_COMMIT)
1710                        check_commit(buf, size);
1711                if (type == OBJ_TAG)
1712                        check_tag(buf, size);
1713        }
1714
1715        if (write_object)
1716                ret = write_sha1_file(buf, size, typename(type), sha1);
1717        else
1718                ret = hash_sha1_file(buf, size, typename(type), sha1);
1719        if (re_allocated)
1720                free(buf);
1721        return ret;
1722}
1723
1724static int index_stream_convert_blob(unsigned char *sha1, int fd,
1725                                     const char *path, unsigned flags)
1726{
1727        int ret;
1728        const int write_object = flags & HASH_WRITE_OBJECT;
1729        struct strbuf sbuf = STRBUF_INIT;
1730
1731        assert(path);
1732        assert(would_convert_to_git_filter_fd(path));
1733
1734        convert_to_git_filter_fd(&the_index, path, fd, &sbuf,
1735                                 write_object ? safe_crlf : SAFE_CRLF_FALSE);
1736
1737        if (write_object)
1738                ret = write_sha1_file(sbuf.buf, sbuf.len, typename(OBJ_BLOB),
1739                                      sha1);
1740        else
1741                ret = hash_sha1_file(sbuf.buf, sbuf.len, typename(OBJ_BLOB),
1742                                     sha1);
1743        strbuf_release(&sbuf);
1744        return ret;
1745}
1746
1747static int index_pipe(unsigned char *sha1, int fd, enum object_type type,
1748                      const char *path, unsigned flags)
1749{
1750        struct strbuf sbuf = STRBUF_INIT;
1751        int ret;
1752
1753        if (strbuf_read(&sbuf, fd, 4096) >= 0)
1754                ret = index_mem(sha1, sbuf.buf, sbuf.len, type, path, flags);
1755        else
1756                ret = -1;
1757        strbuf_release(&sbuf);
1758        return ret;
1759}
1760
1761#define SMALL_FILE_SIZE (32*1024)
1762
1763static int index_core(unsigned char *sha1, int fd, size_t size,
1764                      enum object_type type, const char *path,
1765                      unsigned flags)
1766{
1767        int ret;
1768
1769        if (!size) {
1770                ret = index_mem(sha1, "", size, type, path, flags);
1771        } else if (size <= SMALL_FILE_SIZE) {
1772                char *buf = xmalloc(size);
1773                ssize_t read_result = read_in_full(fd, buf, size);
1774                if (read_result < 0)
1775                        ret = error_errno("read error while indexing %s",
1776                                          path ? path : "<unknown>");
1777                else if (read_result != size)
1778                        ret = error("short read while indexing %s",
1779                                    path ? path : "<unknown>");
1780                else
1781                        ret = index_mem(sha1, buf, size, type, path, flags);
1782                free(buf);
1783        } else {
1784                void *buf = xmmap(NULL, size, PROT_READ, MAP_PRIVATE, fd, 0);
1785                ret = index_mem(sha1, buf, size, type, path, flags);
1786                munmap(buf, size);
1787        }
1788        return ret;
1789}
1790
1791/*
1792 * This creates one packfile per large blob unless bulk-checkin
1793 * machinery is "plugged".
1794 *
1795 * This also bypasses the usual "convert-to-git" dance, and that is on
1796 * purpose. We could write a streaming version of the converting
1797 * functions and insert that before feeding the data to fast-import
1798 * (or equivalent in-core API described above). However, that is
1799 * somewhat complicated, as we do not know the size of the filter
1800 * result, which we need to know beforehand when writing a git object.
1801 * Since the primary motivation for trying to stream from the working
1802 * tree file and to avoid mmaping it in core is to deal with large
1803 * binary blobs, they generally do not want to get any conversion, and
1804 * callers should avoid this code path when filters are requested.
1805 */
1806static int index_stream(struct object_id *oid, int fd, size_t size,
1807                        enum object_type type, const char *path,
1808                        unsigned flags)
1809{
1810        return index_bulk_checkin(oid->hash, fd, size, type, path, flags);
1811}
1812
1813int index_fd(struct object_id *oid, int fd, struct stat *st,
1814             enum object_type type, const char *path, unsigned flags)
1815{
1816        int ret;
1817
1818        /*
1819         * Call xsize_t() only when needed to avoid potentially unnecessary
1820         * die() for large files.
1821         */
1822        if (type == OBJ_BLOB && path && would_convert_to_git_filter_fd(path))
1823                ret = index_stream_convert_blob(oid->hash, fd, path, flags);
1824        else if (!S_ISREG(st->st_mode))
1825                ret = index_pipe(oid->hash, fd, type, path, flags);
1826        else if (st->st_size <= big_file_threshold || type != OBJ_BLOB ||
1827                 (path && would_convert_to_git(&the_index, path)))
1828                ret = index_core(oid->hash, fd, xsize_t(st->st_size), type, path,
1829                                 flags);
1830        else
1831                ret = index_stream(oid, fd, xsize_t(st->st_size), type, path,
1832                                   flags);
1833        close(fd);
1834        return ret;
1835}
1836
1837int index_path(struct object_id *oid, const char *path, struct stat *st, unsigned flags)
1838{
1839        int fd;
1840        struct strbuf sb = STRBUF_INIT;
1841        int rc = 0;
1842
1843        switch (st->st_mode & S_IFMT) {
1844        case S_IFREG:
1845                fd = open(path, O_RDONLY);
1846                if (fd < 0)
1847                        return error_errno("open(\"%s\")", path);
1848                if (index_fd(oid, fd, st, OBJ_BLOB, path, flags) < 0)
1849                        return error("%s: failed to insert into database",
1850                                     path);
1851                break;
1852        case S_IFLNK:
1853                if (strbuf_readlink(&sb, path, st->st_size))
1854                        return error_errno("readlink(\"%s\")", path);
1855                if (!(flags & HASH_WRITE_OBJECT))
1856                        hash_sha1_file(sb.buf, sb.len, blob_type, oid->hash);
1857                else if (write_sha1_file(sb.buf, sb.len, blob_type, oid->hash))
1858                        rc = error("%s: failed to insert into database", path);
1859                strbuf_release(&sb);
1860                break;
1861        case S_IFDIR:
1862                return resolve_gitlink_ref(path, "HEAD", oid->hash);
1863        default:
1864                return error("%s: unsupported file type", path);
1865        }
1866        return rc;
1867}
1868
1869int read_pack_header(int fd, struct pack_header *header)
1870{
1871        if (read_in_full(fd, header, sizeof(*header)) != sizeof(*header))
1872                /* "eof before pack header was fully read" */
1873                return PH_ERROR_EOF;
1874
1875        if (header->hdr_signature != htonl(PACK_SIGNATURE))
1876                /* "protocol error (pack signature mismatch detected)" */
1877                return PH_ERROR_PACK_SIGNATURE;
1878        if (!pack_version_ok(header->hdr_version))
1879                /* "protocol error (pack version unsupported)" */
1880                return PH_ERROR_PROTOCOL;
1881        return 0;
1882}
1883
1884void assert_sha1_type(const unsigned char *sha1, enum object_type expect)
1885{
1886        enum object_type type = sha1_object_info(sha1, NULL);
1887        if (type < 0)
1888                die("%s is not a valid object", sha1_to_hex(sha1));
1889        if (type != expect)
1890                die("%s is not a valid '%s' object", sha1_to_hex(sha1),
1891                    typename(expect));
1892}
1893
1894int for_each_file_in_obj_subdir(unsigned int subdir_nr,
1895                                struct strbuf *path,
1896                                each_loose_object_fn obj_cb,
1897                                each_loose_cruft_fn cruft_cb,
1898                                each_loose_subdir_fn subdir_cb,
1899                                void *data)
1900{
1901        size_t origlen, baselen;
1902        DIR *dir;
1903        struct dirent *de;
1904        int r = 0;
1905
1906        if (subdir_nr > 0xff)
1907                BUG("invalid loose object subdirectory: %x", subdir_nr);
1908
1909        origlen = path->len;
1910        strbuf_complete(path, '/');
1911        strbuf_addf(path, "%02x", subdir_nr);
1912        baselen = path->len;
1913
1914        dir = opendir(path->buf);
1915        if (!dir) {
1916                if (errno != ENOENT)
1917                        r = error_errno("unable to open %s", path->buf);
1918                strbuf_setlen(path, origlen);
1919                return r;
1920        }
1921
1922        while ((de = readdir(dir))) {
1923                if (is_dot_or_dotdot(de->d_name))
1924                        continue;
1925
1926                strbuf_setlen(path, baselen);
1927                strbuf_addf(path, "/%s", de->d_name);
1928
1929                if (strlen(de->d_name) == GIT_SHA1_HEXSZ - 2)  {
1930                        char hex[GIT_MAX_HEXSZ+1];
1931                        struct object_id oid;
1932
1933                        xsnprintf(hex, sizeof(hex), "%02x%s",
1934                                  subdir_nr, de->d_name);
1935                        if (!get_oid_hex(hex, &oid)) {
1936                                if (obj_cb) {
1937                                        r = obj_cb(&oid, path->buf, data);
1938                                        if (r)
1939                                                break;
1940                                }
1941                                continue;
1942                        }
1943                }
1944
1945                if (cruft_cb) {
1946                        r = cruft_cb(de->d_name, path->buf, data);
1947                        if (r)
1948                                break;
1949                }
1950        }
1951        closedir(dir);
1952
1953        strbuf_setlen(path, baselen);
1954        if (!r && subdir_cb)
1955                r = subdir_cb(subdir_nr, path->buf, data);
1956
1957        strbuf_setlen(path, origlen);
1958
1959        return r;
1960}
1961
1962int for_each_loose_file_in_objdir_buf(struct strbuf *path,
1963                            each_loose_object_fn obj_cb,
1964                            each_loose_cruft_fn cruft_cb,
1965                            each_loose_subdir_fn subdir_cb,
1966                            void *data)
1967{
1968        int r = 0;
1969        int i;
1970
1971        for (i = 0; i < 256; i++) {
1972                r = for_each_file_in_obj_subdir(i, path, obj_cb, cruft_cb,
1973                                                subdir_cb, data);
1974                if (r)
1975                        break;
1976        }
1977
1978        return r;
1979}
1980
1981int for_each_loose_file_in_objdir(const char *path,
1982                                  each_loose_object_fn obj_cb,
1983                                  each_loose_cruft_fn cruft_cb,
1984                                  each_loose_subdir_fn subdir_cb,
1985                                  void *data)
1986{
1987        struct strbuf buf = STRBUF_INIT;
1988        int r;
1989
1990        strbuf_addstr(&buf, path);
1991        r = for_each_loose_file_in_objdir_buf(&buf, obj_cb, cruft_cb,
1992                                              subdir_cb, data);
1993        strbuf_release(&buf);
1994
1995        return r;
1996}
1997
1998struct loose_alt_odb_data {
1999        each_loose_object_fn *cb;
2000        void *data;
2001};
2002
2003static int loose_from_alt_odb(struct alternate_object_database *alt,
2004                              void *vdata)
2005{
2006        struct loose_alt_odb_data *data = vdata;
2007        struct strbuf buf = STRBUF_INIT;
2008        int r;
2009
2010        strbuf_addstr(&buf, alt->path);
2011        r = for_each_loose_file_in_objdir_buf(&buf,
2012                                              data->cb, NULL, NULL,
2013                                              data->data);
2014        strbuf_release(&buf);
2015        return r;
2016}
2017
2018int for_each_loose_object(each_loose_object_fn cb, void *data, unsigned flags)
2019{
2020        struct loose_alt_odb_data alt;
2021        int r;
2022
2023        r = for_each_loose_file_in_objdir(get_object_directory(),
2024                                          cb, NULL, NULL, data);
2025        if (r)
2026                return r;
2027
2028        if (flags & FOR_EACH_OBJECT_LOCAL_ONLY)
2029                return 0;
2030
2031        alt.cb = cb;
2032        alt.data = data;
2033        return foreach_alt_odb(loose_from_alt_odb, &alt);
2034}
2035
2036static int check_stream_sha1(git_zstream *stream,
2037                             const char *hdr,
2038                             unsigned long size,
2039                             const char *path,
2040                             const unsigned char *expected_sha1)
2041{
2042        git_SHA_CTX c;
2043        unsigned char real_sha1[GIT_MAX_RAWSZ];
2044        unsigned char buf[4096];
2045        unsigned long total_read;
2046        int status = Z_OK;
2047
2048        git_SHA1_Init(&c);
2049        git_SHA1_Update(&c, hdr, stream->total_out);
2050
2051        /*
2052         * We already read some bytes into hdr, but the ones up to the NUL
2053         * do not count against the object's content size.
2054         */
2055        total_read = stream->total_out - strlen(hdr) - 1;
2056
2057        /*
2058         * This size comparison must be "<=" to read the final zlib packets;
2059         * see the comment in unpack_sha1_rest for details.
2060         */
2061        while (total_read <= size &&
2062               (status == Z_OK || status == Z_BUF_ERROR)) {
2063                stream->next_out = buf;
2064                stream->avail_out = sizeof(buf);
2065                if (size - total_read < stream->avail_out)
2066                        stream->avail_out = size - total_read;
2067                status = git_inflate(stream, Z_FINISH);
2068                git_SHA1_Update(&c, buf, stream->next_out - buf);
2069                total_read += stream->next_out - buf;
2070        }
2071        git_inflate_end(stream);
2072
2073        if (status != Z_STREAM_END) {
2074                error("corrupt loose object '%s'", sha1_to_hex(expected_sha1));
2075                return -1;
2076        }
2077        if (stream->avail_in) {
2078                error("garbage at end of loose object '%s'",
2079                      sha1_to_hex(expected_sha1));
2080                return -1;
2081        }
2082
2083        git_SHA1_Final(real_sha1, &c);
2084        if (hashcmp(expected_sha1, real_sha1)) {
2085                error("sha1 mismatch for %s (expected %s)", path,
2086                      sha1_to_hex(expected_sha1));
2087                return -1;
2088        }
2089
2090        return 0;
2091}
2092
2093int read_loose_object(const char *path,
2094                      const unsigned char *expected_sha1,
2095                      enum object_type *type,
2096                      unsigned long *size,
2097                      void **contents)
2098{
2099        int ret = -1;
2100        void *map = NULL;
2101        unsigned long mapsize;
2102        git_zstream stream;
2103        char hdr[32];
2104
2105        *contents = NULL;
2106
2107        map = map_sha1_file_1(path, NULL, &mapsize);
2108        if (!map) {
2109                error_errno("unable to mmap %s", path);
2110                goto out;
2111        }
2112
2113        if (unpack_sha1_header(&stream, map, mapsize, hdr, sizeof(hdr)) < 0) {
2114                error("unable to unpack header of %s", path);
2115                goto out;
2116        }
2117
2118        *type = parse_sha1_header(hdr, size);
2119        if (*type < 0) {
2120                error("unable to parse header of %s", path);
2121                git_inflate_end(&stream);
2122                goto out;
2123        }
2124
2125        if (*type == OBJ_BLOB) {
2126                if (check_stream_sha1(&stream, hdr, *size, path, expected_sha1) < 0)
2127                        goto out;
2128        } else {
2129                *contents = unpack_sha1_rest(&stream, hdr, *size, expected_sha1);
2130                if (!*contents) {
2131                        error("unable to unpack contents of %s", path);
2132                        git_inflate_end(&stream);
2133                        goto out;
2134                }
2135                if (check_sha1_signature(expected_sha1, *contents,
2136                                         *size, typename(*type))) {
2137                        error("sha1 mismatch for %s (expected %s)", path,
2138                              sha1_to_hex(expected_sha1));
2139                        free(*contents);
2140                        goto out;
2141                }
2142        }
2143
2144        ret = 0; /* everything checks out */
2145
2146out:
2147        if (map)
2148                munmap(map, mapsize);
2149        return ret;
2150}