sha1_file.con commit unbreak and eliminate NO_C99_FORMAT (28bd70d)
   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 "delta.h"
  11#include "pack.h"
  12#include "blob.h"
  13#include "commit.h"
  14#include "tag.h"
  15#include "tree.h"
  16#include "refs.h"
  17#include "pack-revindex.h"
  18#include "sha1-lookup.h"
  19
  20#ifndef O_NOATIME
  21#if defined(__linux__) && (defined(__i386__) || defined(__PPC__))
  22#define O_NOATIME 01000000
  23#else
  24#define O_NOATIME 0
  25#endif
  26#endif
  27
  28#define SZ_FMT PRIuMAX
  29static inline uintmax_t sz_fmt(size_t s) { return s; }
  30
  31const unsigned char null_sha1[20];
  32
  33static int git_open_noatime(const char *name, struct packed_git *p);
  34
  35/*
  36 * This is meant to hold a *small* number of objects that you would
  37 * want read_sha1_file() to be able to return, but yet you do not want
  38 * to write them into the object store (e.g. a browse-only
  39 * application).
  40 */
  41static struct cached_object {
  42        unsigned char sha1[20];
  43        enum object_type type;
  44        void *buf;
  45        unsigned long size;
  46} *cached_objects;
  47static int cached_object_nr, cached_object_alloc;
  48
  49static struct cached_object empty_tree = {
  50        EMPTY_TREE_SHA1_BIN_LITERAL,
  51        OBJ_TREE,
  52        "",
  53        0
  54};
  55
  56static struct cached_object *find_cached_object(const unsigned char *sha1)
  57{
  58        int i;
  59        struct cached_object *co = cached_objects;
  60
  61        for (i = 0; i < cached_object_nr; i++, co++) {
  62                if (!hashcmp(co->sha1, sha1))
  63                        return co;
  64        }
  65        if (!hashcmp(sha1, empty_tree.sha1))
  66                return &empty_tree;
  67        return NULL;
  68}
  69
  70int safe_create_leading_directories(char *path)
  71{
  72        char *pos = path + offset_1st_component(path);
  73        struct stat st;
  74
  75        while (pos) {
  76                pos = strchr(pos, '/');
  77                if (!pos)
  78                        break;
  79                while (*++pos == '/')
  80                        ;
  81                if (!*pos)
  82                        break;
  83                *--pos = '\0';
  84                if (!stat(path, &st)) {
  85                        /* path exists */
  86                        if (!S_ISDIR(st.st_mode)) {
  87                                *pos = '/';
  88                                return -3;
  89                        }
  90                }
  91                else if (mkdir(path, 0777)) {
  92                        *pos = '/';
  93                        return -1;
  94                }
  95                else if (adjust_shared_perm(path)) {
  96                        *pos = '/';
  97                        return -2;
  98                }
  99                *pos++ = '/';
 100        }
 101        return 0;
 102}
 103
 104int safe_create_leading_directories_const(const char *path)
 105{
 106        /* path points to cache entries, so xstrdup before messing with it */
 107        char *buf = xstrdup(path);
 108        int result = safe_create_leading_directories(buf);
 109        free(buf);
 110        return result;
 111}
 112
 113static void fill_sha1_path(char *pathbuf, const unsigned char *sha1)
 114{
 115        int i;
 116        for (i = 0; i < 20; i++) {
 117                static char hex[] = "0123456789abcdef";
 118                unsigned int val = sha1[i];
 119                char *pos = pathbuf + i*2 + (i > 0);
 120                *pos++ = hex[val >> 4];
 121                *pos = hex[val & 0xf];
 122        }
 123}
 124
 125/*
 126 * NOTE! This returns a statically allocated buffer, so you have to be
 127 * careful about using it. Do an "xstrdup()" if you need to save the
 128 * filename.
 129 *
 130 * Also note that this returns the location for creating.  Reading
 131 * SHA1 file can happen from any alternate directory listed in the
 132 * DB_ENVIRONMENT environment variable if it is not found in
 133 * the primary object database.
 134 */
 135char *sha1_file_name(const unsigned char *sha1)
 136{
 137        static char buf[PATH_MAX];
 138        const char *objdir;
 139        int len;
 140
 141        objdir = get_object_directory();
 142        len = strlen(objdir);
 143
 144        /* '/' + sha1(2) + '/' + sha1(38) + '\0' */
 145        if (len + 43 > PATH_MAX)
 146                die("insanely long object directory %s", objdir);
 147        memcpy(buf, objdir, len);
 148        buf[len] = '/';
 149        buf[len+3] = '/';
 150        buf[len+42] = '\0';
 151        fill_sha1_path(buf + len + 1, sha1);
 152        return buf;
 153}
 154
 155static char *sha1_get_pack_name(const unsigned char *sha1,
 156                                char **name, char **base, const char *which)
 157{
 158        static const char hex[] = "0123456789abcdef";
 159        char *buf;
 160        int i;
 161
 162        if (!*base) {
 163                const char *sha1_file_directory = get_object_directory();
 164                int len = strlen(sha1_file_directory);
 165                *base = xmalloc(len + 60);
 166                sprintf(*base, "%s/pack/pack-1234567890123456789012345678901234567890.%s",
 167                        sha1_file_directory, which);
 168                *name = *base + len + 11;
 169        }
 170
 171        buf = *name;
 172
 173        for (i = 0; i < 20; i++) {
 174                unsigned int val = *sha1++;
 175                *buf++ = hex[val >> 4];
 176                *buf++ = hex[val & 0xf];
 177        }
 178
 179        return *base;
 180}
 181
 182char *sha1_pack_name(const unsigned char *sha1)
 183{
 184        static char *name, *base;
 185
 186        return sha1_get_pack_name(sha1, &name, &base, "pack");
 187}
 188
 189char *sha1_pack_index_name(const unsigned char *sha1)
 190{
 191        static char *name, *base;
 192
 193        return sha1_get_pack_name(sha1, &name, &base, "idx");
 194}
 195
 196struct alternate_object_database *alt_odb_list;
 197static struct alternate_object_database **alt_odb_tail;
 198
 199static void read_info_alternates(const char * alternates, int depth);
 200
 201/*
 202 * Prepare alternate object database registry.
 203 *
 204 * The variable alt_odb_list points at the list of struct
 205 * alternate_object_database.  The elements on this list come from
 206 * non-empty elements from colon separated ALTERNATE_DB_ENVIRONMENT
 207 * environment variable, and $GIT_OBJECT_DIRECTORY/info/alternates,
 208 * whose contents is similar to that environment variable but can be
 209 * LF separated.  Its base points at a statically allocated buffer that
 210 * contains "/the/directory/corresponding/to/.git/objects/...", while
 211 * its name points just after the slash at the end of ".git/objects/"
 212 * in the example above, and has enough space to hold 40-byte hex
 213 * SHA1, an extra slash for the first level indirection, and the
 214 * terminating NUL.
 215 */
 216static int link_alt_odb_entry(const char * entry, int len, const char * relative_base, int depth)
 217{
 218        const char *objdir = get_object_directory();
 219        struct alternate_object_database *ent;
 220        struct alternate_object_database *alt;
 221        /* 43 = 40-byte + 2 '/' + terminating NUL */
 222        int pfxlen = len;
 223        int entlen = pfxlen + 43;
 224        int base_len = -1;
 225
 226        if (!is_absolute_path(entry) && relative_base) {
 227                /* Relative alt-odb */
 228                if (base_len < 0)
 229                        base_len = strlen(relative_base) + 1;
 230                entlen += base_len;
 231                pfxlen += base_len;
 232        }
 233        ent = xmalloc(sizeof(*ent) + entlen);
 234
 235        if (!is_absolute_path(entry) && relative_base) {
 236                memcpy(ent->base, relative_base, base_len - 1);
 237                ent->base[base_len - 1] = '/';
 238                memcpy(ent->base + base_len, entry, len);
 239        }
 240        else
 241                memcpy(ent->base, entry, pfxlen);
 242
 243        ent->name = ent->base + pfxlen + 1;
 244        ent->base[pfxlen + 3] = '/';
 245        ent->base[pfxlen] = ent->base[entlen-1] = 0;
 246
 247        /* Detect cases where alternate disappeared */
 248        if (!is_directory(ent->base)) {
 249                error("object directory %s does not exist; "
 250                      "check .git/objects/info/alternates.",
 251                      ent->base);
 252                free(ent);
 253                return -1;
 254        }
 255
 256        /* Prevent the common mistake of listing the same
 257         * thing twice, or object directory itself.
 258         */
 259        for (alt = alt_odb_list; alt; alt = alt->next) {
 260                if (!memcmp(ent->base, alt->base, pfxlen)) {
 261                        free(ent);
 262                        return -1;
 263                }
 264        }
 265        if (!memcmp(ent->base, objdir, pfxlen)) {
 266                free(ent);
 267                return -1;
 268        }
 269
 270        /* add the alternate entry */
 271        *alt_odb_tail = ent;
 272        alt_odb_tail = &(ent->next);
 273        ent->next = NULL;
 274
 275        /* recursively add alternates */
 276        read_info_alternates(ent->base, depth + 1);
 277
 278        ent->base[pfxlen] = '/';
 279
 280        return 0;
 281}
 282
 283static void link_alt_odb_entries(const char *alt, const char *ep, int sep,
 284                                 const char *relative_base, int depth)
 285{
 286        const char *cp, *last;
 287
 288        if (depth > 5) {
 289                error("%s: ignoring alternate object stores, nesting too deep.",
 290                                relative_base);
 291                return;
 292        }
 293
 294        last = alt;
 295        while (last < ep) {
 296                cp = last;
 297                if (cp < ep && *cp == '#') {
 298                        while (cp < ep && *cp != sep)
 299                                cp++;
 300                        last = cp + 1;
 301                        continue;
 302                }
 303                while (cp < ep && *cp != sep)
 304                        cp++;
 305                if (last != cp) {
 306                        if (!is_absolute_path(last) && depth) {
 307                                error("%s: ignoring relative alternate object store %s",
 308                                                relative_base, last);
 309                        } else {
 310                                link_alt_odb_entry(last, cp - last,
 311                                                relative_base, depth);
 312                        }
 313                }
 314                while (cp < ep && *cp == sep)
 315                        cp++;
 316                last = cp;
 317        }
 318}
 319
 320static void read_info_alternates(const char * relative_base, int depth)
 321{
 322        char *map;
 323        size_t mapsz;
 324        struct stat st;
 325        const char alt_file_name[] = "info/alternates";
 326        /* Given that relative_base is no longer than PATH_MAX,
 327           ensure that "path" has enough space to append "/", the
 328           file name, "info/alternates", and a trailing NUL.  */
 329        char path[PATH_MAX + 1 + sizeof alt_file_name];
 330        int fd;
 331
 332        sprintf(path, "%s/%s", relative_base, alt_file_name);
 333        fd = git_open_noatime(path, NULL);
 334        if (fd < 0)
 335                return;
 336        if (fstat(fd, &st) || (st.st_size == 0)) {
 337                close(fd);
 338                return;
 339        }
 340        mapsz = xsize_t(st.st_size);
 341        map = xmmap(NULL, mapsz, PROT_READ, MAP_PRIVATE, fd, 0);
 342        close(fd);
 343
 344        link_alt_odb_entries(map, map + mapsz, '\n', relative_base, depth);
 345
 346        munmap(map, mapsz);
 347}
 348
 349void add_to_alternates_file(const char *reference)
 350{
 351        struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
 352        int fd = hold_lock_file_for_append(lock, git_path("objects/info/alternates"), LOCK_DIE_ON_ERROR);
 353        char *alt = mkpath("%s/objects\n", reference);
 354        write_or_die(fd, alt, strlen(alt));
 355        if (commit_lock_file(lock))
 356                die("could not close alternates file");
 357        if (alt_odb_tail)
 358                link_alt_odb_entries(alt, alt + strlen(alt), '\n', NULL, 0);
 359}
 360
 361void foreach_alt_odb(alt_odb_fn fn, void *cb)
 362{
 363        struct alternate_object_database *ent;
 364
 365        prepare_alt_odb();
 366        for (ent = alt_odb_list; ent; ent = ent->next)
 367                if (fn(ent, cb))
 368                        return;
 369}
 370
 371void prepare_alt_odb(void)
 372{
 373        const char *alt;
 374
 375        if (alt_odb_tail)
 376                return;
 377
 378        alt = getenv(ALTERNATE_DB_ENVIRONMENT);
 379        if (!alt) alt = "";
 380
 381        alt_odb_tail = &alt_odb_list;
 382        link_alt_odb_entries(alt, alt + strlen(alt), PATH_SEP, NULL, 0);
 383
 384        read_info_alternates(get_object_directory(), 0);
 385}
 386
 387static int has_loose_object_local(const unsigned char *sha1)
 388{
 389        char *name = sha1_file_name(sha1);
 390        return !access(name, F_OK);
 391}
 392
 393int has_loose_object_nonlocal(const unsigned char *sha1)
 394{
 395        struct alternate_object_database *alt;
 396        prepare_alt_odb();
 397        for (alt = alt_odb_list; alt; alt = alt->next) {
 398                fill_sha1_path(alt->name, sha1);
 399                if (!access(alt->base, F_OK))
 400                        return 1;
 401        }
 402        return 0;
 403}
 404
 405static int has_loose_object(const unsigned char *sha1)
 406{
 407        return has_loose_object_local(sha1) ||
 408               has_loose_object_nonlocal(sha1);
 409}
 410
 411static unsigned int pack_used_ctr;
 412static unsigned int pack_mmap_calls;
 413static unsigned int peak_pack_open_windows;
 414static unsigned int pack_open_windows;
 415static size_t peak_pack_mapped;
 416static size_t pack_mapped;
 417struct packed_git *packed_git;
 418
 419void pack_report(void)
 420{
 421        fprintf(stderr,
 422                "pack_report: getpagesize()            = %10" SZ_FMT "\n"
 423                "pack_report: core.packedGitWindowSize = %10" SZ_FMT "\n"
 424                "pack_report: core.packedGitLimit      = %10" SZ_FMT "\n",
 425                sz_fmt(getpagesize()),
 426                sz_fmt(packed_git_window_size),
 427                sz_fmt(packed_git_limit));
 428        fprintf(stderr,
 429                "pack_report: pack_used_ctr            = %10u\n"
 430                "pack_report: pack_mmap_calls          = %10u\n"
 431                "pack_report: pack_open_windows        = %10u / %10u\n"
 432                "pack_report: pack_mapped              = "
 433                        "%10" SZ_FMT " / %10" SZ_FMT "\n",
 434                pack_used_ctr,
 435                pack_mmap_calls,
 436                pack_open_windows, peak_pack_open_windows,
 437                sz_fmt(pack_mapped), sz_fmt(peak_pack_mapped));
 438}
 439
 440static int check_packed_git_idx(const char *path,  struct packed_git *p)
 441{
 442        void *idx_map;
 443        struct pack_idx_header *hdr;
 444        size_t idx_size;
 445        uint32_t version, nr, i, *index;
 446        int fd = git_open_noatime(path, p);
 447        struct stat st;
 448
 449        if (fd < 0)
 450                return -1;
 451        if (fstat(fd, &st)) {
 452                close(fd);
 453                return -1;
 454        }
 455        idx_size = xsize_t(st.st_size);
 456        if (idx_size < 4 * 256 + 20 + 20) {
 457                close(fd);
 458                return error("index file %s is too small", path);
 459        }
 460        idx_map = xmmap(NULL, idx_size, PROT_READ, MAP_PRIVATE, fd, 0);
 461        close(fd);
 462
 463        hdr = idx_map;
 464        if (hdr->idx_signature == htonl(PACK_IDX_SIGNATURE)) {
 465                version = ntohl(hdr->idx_version);
 466                if (version < 2 || version > 2) {
 467                        munmap(idx_map, idx_size);
 468                        return error("index file %s is version %"PRIu32
 469                                     " and is not supported by this binary"
 470                                     " (try upgrading GIT to a newer version)",
 471                                     path, version);
 472                }
 473        } else
 474                version = 1;
 475
 476        nr = 0;
 477        index = idx_map;
 478        if (version > 1)
 479                index += 2;  /* skip index header */
 480        for (i = 0; i < 256; i++) {
 481                uint32_t n = ntohl(index[i]);
 482                if (n < nr) {
 483                        munmap(idx_map, idx_size);
 484                        return error("non-monotonic index %s", path);
 485                }
 486                nr = n;
 487        }
 488
 489        if (version == 1) {
 490                /*
 491                 * Total size:
 492                 *  - 256 index entries 4 bytes each
 493                 *  - 24-byte entries * nr (20-byte sha1 + 4-byte offset)
 494                 *  - 20-byte SHA1 of the packfile
 495                 *  - 20-byte SHA1 file checksum
 496                 */
 497                if (idx_size != 4*256 + nr * 24 + 20 + 20) {
 498                        munmap(idx_map, idx_size);
 499                        return error("wrong index v1 file size in %s", path);
 500                }
 501        } else if (version == 2) {
 502                /*
 503                 * Minimum size:
 504                 *  - 8 bytes of header
 505                 *  - 256 index entries 4 bytes each
 506                 *  - 20-byte sha1 entry * nr
 507                 *  - 4-byte crc entry * nr
 508                 *  - 4-byte offset entry * nr
 509                 *  - 20-byte SHA1 of the packfile
 510                 *  - 20-byte SHA1 file checksum
 511                 * And after the 4-byte offset table might be a
 512                 * variable sized table containing 8-byte entries
 513                 * for offsets larger than 2^31.
 514                 */
 515                unsigned long min_size = 8 + 4*256 + nr*(20 + 4 + 4) + 20 + 20;
 516                unsigned long max_size = min_size;
 517                if (nr)
 518                        max_size += (nr - 1)*8;
 519                if (idx_size < min_size || idx_size > max_size) {
 520                        munmap(idx_map, idx_size);
 521                        return error("wrong index v2 file size in %s", path);
 522                }
 523                if (idx_size != min_size &&
 524                    /*
 525                     * make sure we can deal with large pack offsets.
 526                     * 31-bit signed offset won't be enough, neither
 527                     * 32-bit unsigned one will be.
 528                     */
 529                    (sizeof(off_t) <= 4)) {
 530                        munmap(idx_map, idx_size);
 531                        return error("pack too large for current definition of off_t in %s", path);
 532                }
 533        }
 534
 535        p->index_version = version;
 536        p->index_data = idx_map;
 537        p->index_size = idx_size;
 538        p->num_objects = nr;
 539        return 0;
 540}
 541
 542int open_pack_index(struct packed_git *p)
 543{
 544        char *idx_name;
 545        int ret;
 546
 547        if (p->index_data)
 548                return 0;
 549
 550        idx_name = xstrdup(p->pack_name);
 551        strcpy(idx_name + strlen(idx_name) - strlen(".pack"), ".idx");
 552        ret = check_packed_git_idx(idx_name, p);
 553        free(idx_name);
 554        return ret;
 555}
 556
 557static void scan_windows(struct packed_git *p,
 558        struct packed_git **lru_p,
 559        struct pack_window **lru_w,
 560        struct pack_window **lru_l)
 561{
 562        struct pack_window *w, *w_l;
 563
 564        for (w_l = NULL, w = p->windows; w; w = w->next) {
 565                if (!w->inuse_cnt) {
 566                        if (!*lru_w || w->last_used < (*lru_w)->last_used) {
 567                                *lru_p = p;
 568                                *lru_w = w;
 569                                *lru_l = w_l;
 570                        }
 571                }
 572                w_l = w;
 573        }
 574}
 575
 576static int unuse_one_window(struct packed_git *current, int keep_fd)
 577{
 578        struct packed_git *p, *lru_p = NULL;
 579        struct pack_window *lru_w = NULL, *lru_l = NULL;
 580
 581        if (current)
 582                scan_windows(current, &lru_p, &lru_w, &lru_l);
 583        for (p = packed_git; p; p = p->next)
 584                scan_windows(p, &lru_p, &lru_w, &lru_l);
 585        if (lru_p) {
 586                munmap(lru_w->base, lru_w->len);
 587                pack_mapped -= lru_w->len;
 588                if (lru_l)
 589                        lru_l->next = lru_w->next;
 590                else {
 591                        lru_p->windows = lru_w->next;
 592                        if (!lru_p->windows && lru_p->pack_fd != keep_fd) {
 593                                close(lru_p->pack_fd);
 594                                lru_p->pack_fd = -1;
 595                        }
 596                }
 597                free(lru_w);
 598                pack_open_windows--;
 599                return 1;
 600        }
 601        return 0;
 602}
 603
 604void release_pack_memory(size_t need, int fd)
 605{
 606        size_t cur = pack_mapped;
 607        while (need >= (cur - pack_mapped) && unuse_one_window(NULL, fd))
 608                ; /* nothing */
 609}
 610
 611void *xmmap(void *start, size_t length,
 612        int prot, int flags, int fd, off_t offset)
 613{
 614        void *ret = mmap(start, length, prot, flags, fd, offset);
 615        if (ret == MAP_FAILED) {
 616                if (!length)
 617                        return NULL;
 618                release_pack_memory(length, fd);
 619                ret = mmap(start, length, prot, flags, fd, offset);
 620                if (ret == MAP_FAILED)
 621                        die_errno("Out of memory? mmap failed");
 622        }
 623        return ret;
 624}
 625
 626void close_pack_windows(struct packed_git *p)
 627{
 628        while (p->windows) {
 629                struct pack_window *w = p->windows;
 630
 631                if (w->inuse_cnt)
 632                        die("pack '%s' still has open windows to it",
 633                            p->pack_name);
 634                munmap(w->base, w->len);
 635                pack_mapped -= w->len;
 636                pack_open_windows--;
 637                p->windows = w->next;
 638                free(w);
 639        }
 640}
 641
 642void unuse_pack(struct pack_window **w_cursor)
 643{
 644        struct pack_window *w = *w_cursor;
 645        if (w) {
 646                w->inuse_cnt--;
 647                *w_cursor = NULL;
 648        }
 649}
 650
 651void close_pack_index(struct packed_git *p)
 652{
 653        if (p->index_data) {
 654                munmap((void *)p->index_data, p->index_size);
 655                p->index_data = NULL;
 656        }
 657}
 658
 659/*
 660 * This is used by git-repack in case a newly created pack happens to
 661 * contain the same set of objects as an existing one.  In that case
 662 * the resulting file might be different even if its name would be the
 663 * same.  It is best to close any reference to the old pack before it is
 664 * replaced on disk.  Of course no index pointers nor windows for given pack
 665 * must subsist at this point.  If ever objects from this pack are requested
 666 * again, the new version of the pack will be reinitialized through
 667 * reprepare_packed_git().
 668 */
 669void free_pack_by_name(const char *pack_name)
 670{
 671        struct packed_git *p, **pp = &packed_git;
 672
 673        while (*pp) {
 674                p = *pp;
 675                if (strcmp(pack_name, p->pack_name) == 0) {
 676                        clear_delta_base_cache();
 677                        close_pack_windows(p);
 678                        if (p->pack_fd != -1)
 679                                close(p->pack_fd);
 680                        close_pack_index(p);
 681                        free(p->bad_object_sha1);
 682                        *pp = p->next;
 683                        free(p);
 684                        return;
 685                }
 686                pp = &p->next;
 687        }
 688}
 689
 690/*
 691 * Do not call this directly as this leaks p->pack_fd on error return;
 692 * call open_packed_git() instead.
 693 */
 694static int open_packed_git_1(struct packed_git *p)
 695{
 696        struct stat st;
 697        struct pack_header hdr;
 698        unsigned char sha1[20];
 699        unsigned char *idx_sha1;
 700        long fd_flag;
 701
 702        if (!p->index_data && open_pack_index(p))
 703                return error("packfile %s index unavailable", p->pack_name);
 704
 705        p->pack_fd = git_open_noatime(p->pack_name, p);
 706        if (p->pack_fd < 0 || fstat(p->pack_fd, &st))
 707                return -1;
 708
 709        /* If we created the struct before we had the pack we lack size. */
 710        if (!p->pack_size) {
 711                if (!S_ISREG(st.st_mode))
 712                        return error("packfile %s not a regular file", p->pack_name);
 713                p->pack_size = st.st_size;
 714        } else if (p->pack_size != st.st_size)
 715                return error("packfile %s size changed", p->pack_name);
 716
 717        /* We leave these file descriptors open with sliding mmap;
 718         * there is no point keeping them open across exec(), though.
 719         */
 720        fd_flag = fcntl(p->pack_fd, F_GETFD, 0);
 721        if (fd_flag < 0)
 722                return error("cannot determine file descriptor flags");
 723        fd_flag |= FD_CLOEXEC;
 724        if (fcntl(p->pack_fd, F_SETFD, fd_flag) == -1)
 725                return error("cannot set FD_CLOEXEC");
 726
 727        /* Verify we recognize this pack file format. */
 728        if (read_in_full(p->pack_fd, &hdr, sizeof(hdr)) != sizeof(hdr))
 729                return error("file %s is far too short to be a packfile", p->pack_name);
 730        if (hdr.hdr_signature != htonl(PACK_SIGNATURE))
 731                return error("file %s is not a GIT packfile", p->pack_name);
 732        if (!pack_version_ok(hdr.hdr_version))
 733                return error("packfile %s is version %"PRIu32" and not"
 734                        " supported (try upgrading GIT to a newer version)",
 735                        p->pack_name, ntohl(hdr.hdr_version));
 736
 737        /* Verify the pack matches its index. */
 738        if (p->num_objects != ntohl(hdr.hdr_entries))
 739                return error("packfile %s claims to have %"PRIu32" objects"
 740                             " while index indicates %"PRIu32" objects",
 741                             p->pack_name, ntohl(hdr.hdr_entries),
 742                             p->num_objects);
 743        if (lseek(p->pack_fd, p->pack_size - sizeof(sha1), SEEK_SET) == -1)
 744                return error("end of packfile %s is unavailable", p->pack_name);
 745        if (read_in_full(p->pack_fd, sha1, sizeof(sha1)) != sizeof(sha1))
 746                return error("packfile %s signature is unavailable", p->pack_name);
 747        idx_sha1 = ((unsigned char *)p->index_data) + p->index_size - 40;
 748        if (hashcmp(sha1, idx_sha1))
 749                return error("packfile %s does not match index", p->pack_name);
 750        return 0;
 751}
 752
 753static int open_packed_git(struct packed_git *p)
 754{
 755        if (!open_packed_git_1(p))
 756                return 0;
 757        if (p->pack_fd != -1) {
 758                close(p->pack_fd);
 759                p->pack_fd = -1;
 760        }
 761        return -1;
 762}
 763
 764static int in_window(struct pack_window *win, off_t offset)
 765{
 766        /* We must promise at least 20 bytes (one hash) after the
 767         * offset is available from this window, otherwise the offset
 768         * is not actually in this window and a different window (which
 769         * has that one hash excess) must be used.  This is to support
 770         * the object header and delta base parsing routines below.
 771         */
 772        off_t win_off = win->offset;
 773        return win_off <= offset
 774                && (offset + 20) <= (win_off + win->len);
 775}
 776
 777unsigned char *use_pack(struct packed_git *p,
 778                struct pack_window **w_cursor,
 779                off_t offset,
 780                unsigned int *left)
 781{
 782        struct pack_window *win = *w_cursor;
 783
 784        if (p->pack_fd == -1 && open_packed_git(p))
 785                die("packfile %s cannot be accessed", p->pack_name);
 786
 787        /* Since packfiles end in a hash of their content and it's
 788         * pointless to ask for an offset into the middle of that
 789         * hash, and the in_window function above wouldn't match
 790         * don't allow an offset too close to the end of the file.
 791         */
 792        if (offset > (p->pack_size - 20))
 793                die("offset beyond end of packfile (truncated pack?)");
 794
 795        if (!win || !in_window(win, offset)) {
 796                if (win)
 797                        win->inuse_cnt--;
 798                for (win = p->windows; win; win = win->next) {
 799                        if (in_window(win, offset))
 800                                break;
 801                }
 802                if (!win) {
 803                        size_t window_align = packed_git_window_size / 2;
 804                        off_t len;
 805                        win = xcalloc(1, sizeof(*win));
 806                        win->offset = (offset / window_align) * window_align;
 807                        len = p->pack_size - win->offset;
 808                        if (len > packed_git_window_size)
 809                                len = packed_git_window_size;
 810                        win->len = (size_t)len;
 811                        pack_mapped += win->len;
 812                        while (packed_git_limit < pack_mapped
 813                                && unuse_one_window(p, p->pack_fd))
 814                                ; /* nothing */
 815                        win->base = xmmap(NULL, win->len,
 816                                PROT_READ, MAP_PRIVATE,
 817                                p->pack_fd, win->offset);
 818                        if (win->base == MAP_FAILED)
 819                                die("packfile %s cannot be mapped: %s",
 820                                        p->pack_name,
 821                                        strerror(errno));
 822                        pack_mmap_calls++;
 823                        pack_open_windows++;
 824                        if (pack_mapped > peak_pack_mapped)
 825                                peak_pack_mapped = pack_mapped;
 826                        if (pack_open_windows > peak_pack_open_windows)
 827                                peak_pack_open_windows = pack_open_windows;
 828                        win->next = p->windows;
 829                        p->windows = win;
 830                }
 831        }
 832        if (win != *w_cursor) {
 833                win->last_used = pack_used_ctr++;
 834                win->inuse_cnt++;
 835                *w_cursor = win;
 836        }
 837        offset -= win->offset;
 838        if (left)
 839                *left = win->len - xsize_t(offset);
 840        return win->base + offset;
 841}
 842
 843static struct packed_git *alloc_packed_git(int extra)
 844{
 845        struct packed_git *p = xmalloc(sizeof(*p) + extra);
 846        memset(p, 0, sizeof(*p));
 847        p->pack_fd = -1;
 848        return p;
 849}
 850
 851static void try_to_free_pack_memory(size_t size)
 852{
 853        release_pack_memory(size, -1);
 854}
 855
 856struct packed_git *add_packed_git(const char *path, int path_len, int local)
 857{
 858        static int have_set_try_to_free_routine;
 859        struct stat st;
 860        struct packed_git *p = alloc_packed_git(path_len + 2);
 861
 862        if (!have_set_try_to_free_routine) {
 863                have_set_try_to_free_routine = 1;
 864                set_try_to_free_routine(try_to_free_pack_memory);
 865        }
 866
 867        /*
 868         * Make sure a corresponding .pack file exists and that
 869         * the index looks sane.
 870         */
 871        path_len -= strlen(".idx");
 872        if (path_len < 1) {
 873                free(p);
 874                return NULL;
 875        }
 876        memcpy(p->pack_name, path, path_len);
 877
 878        strcpy(p->pack_name + path_len, ".keep");
 879        if (!access(p->pack_name, F_OK))
 880                p->pack_keep = 1;
 881
 882        strcpy(p->pack_name + path_len, ".pack");
 883        if (stat(p->pack_name, &st) || !S_ISREG(st.st_mode)) {
 884                free(p);
 885                return NULL;
 886        }
 887
 888        /* ok, it looks sane as far as we can check without
 889         * actually mapping the pack file.
 890         */
 891        p->pack_size = st.st_size;
 892        p->pack_local = local;
 893        p->mtime = st.st_mtime;
 894        if (path_len < 40 || get_sha1_hex(path + path_len - 40, p->sha1))
 895                hashclr(p->sha1);
 896        return p;
 897}
 898
 899struct packed_git *parse_pack_index(unsigned char *sha1, const char *idx_path)
 900{
 901        const char *path = sha1_pack_name(sha1);
 902        struct packed_git *p = alloc_packed_git(strlen(path) + 1);
 903
 904        strcpy(p->pack_name, path);
 905        hashcpy(p->sha1, sha1);
 906        if (check_packed_git_idx(idx_path, p)) {
 907                free(p);
 908                return NULL;
 909        }
 910
 911        return p;
 912}
 913
 914void install_packed_git(struct packed_git *pack)
 915{
 916        pack->next = packed_git;
 917        packed_git = pack;
 918}
 919
 920static void prepare_packed_git_one(char *objdir, int local)
 921{
 922        /* Ensure that this buffer is large enough so that we can
 923           append "/pack/" without clobbering the stack even if
 924           strlen(objdir) were PATH_MAX.  */
 925        char path[PATH_MAX + 1 + 4 + 1 + 1];
 926        int len;
 927        DIR *dir;
 928        struct dirent *de;
 929
 930        sprintf(path, "%s/pack", objdir);
 931        len = strlen(path);
 932        dir = opendir(path);
 933        while (!dir && errno == EMFILE && unuse_one_window(NULL, -1))
 934                dir = opendir(path);
 935        if (!dir) {
 936                if (errno != ENOENT)
 937                        error("unable to open object pack directory: %s: %s",
 938                              path, strerror(errno));
 939                return;
 940        }
 941        path[len++] = '/';
 942        while ((de = readdir(dir)) != NULL) {
 943                int namelen = strlen(de->d_name);
 944                struct packed_git *p;
 945
 946                if (!has_extension(de->d_name, ".idx"))
 947                        continue;
 948
 949                if (len + namelen + 1 > sizeof(path))
 950                        continue;
 951
 952                /* Don't reopen a pack we already have. */
 953                strcpy(path + len, de->d_name);
 954                for (p = packed_git; p; p = p->next) {
 955                        if (!memcmp(path, p->pack_name, len + namelen - 4))
 956                                break;
 957                }
 958                if (p)
 959                        continue;
 960                /* See if it really is a valid .idx file with corresponding
 961                 * .pack file that we can map.
 962                 */
 963                p = add_packed_git(path, len + namelen, local);
 964                if (!p)
 965                        continue;
 966                install_packed_git(p);
 967        }
 968        closedir(dir);
 969}
 970
 971static int sort_pack(const void *a_, const void *b_)
 972{
 973        struct packed_git *a = *((struct packed_git **)a_);
 974        struct packed_git *b = *((struct packed_git **)b_);
 975        int st;
 976
 977        /*
 978         * Local packs tend to contain objects specific to our
 979         * variant of the project than remote ones.  In addition,
 980         * remote ones could be on a network mounted filesystem.
 981         * Favor local ones for these reasons.
 982         */
 983        st = a->pack_local - b->pack_local;
 984        if (st)
 985                return -st;
 986
 987        /*
 988         * Younger packs tend to contain more recent objects,
 989         * and more recent objects tend to get accessed more
 990         * often.
 991         */
 992        if (a->mtime < b->mtime)
 993                return 1;
 994        else if (a->mtime == b->mtime)
 995                return 0;
 996        return -1;
 997}
 998
 999static void rearrange_packed_git(void)
1000{
1001        struct packed_git **ary, *p;
1002        int i, n;
1003
1004        for (n = 0, p = packed_git; p; p = p->next)
1005                n++;
1006        if (n < 2)
1007                return;
1008
1009        /* prepare an array of packed_git for easier sorting */
1010        ary = xcalloc(n, sizeof(struct packed_git *));
1011        for (n = 0, p = packed_git; p; p = p->next)
1012                ary[n++] = p;
1013
1014        qsort(ary, n, sizeof(struct packed_git *), sort_pack);
1015
1016        /* link them back again */
1017        for (i = 0; i < n - 1; i++)
1018                ary[i]->next = ary[i + 1];
1019        ary[n - 1]->next = NULL;
1020        packed_git = ary[0];
1021
1022        free(ary);
1023}
1024
1025static int prepare_packed_git_run_once = 0;
1026void prepare_packed_git(void)
1027{
1028        struct alternate_object_database *alt;
1029
1030        if (prepare_packed_git_run_once)
1031                return;
1032        prepare_packed_git_one(get_object_directory(), 1);
1033        prepare_alt_odb();
1034        for (alt = alt_odb_list; alt; alt = alt->next) {
1035                alt->name[-1] = 0;
1036                prepare_packed_git_one(alt->base, 0);
1037                alt->name[-1] = '/';
1038        }
1039        rearrange_packed_git();
1040        prepare_packed_git_run_once = 1;
1041}
1042
1043void reprepare_packed_git(void)
1044{
1045        discard_revindex();
1046        prepare_packed_git_run_once = 0;
1047        prepare_packed_git();
1048}
1049
1050static void mark_bad_packed_object(struct packed_git *p,
1051                                   const unsigned char *sha1)
1052{
1053        unsigned i;
1054        for (i = 0; i < p->num_bad_objects; i++)
1055                if (!hashcmp(sha1, p->bad_object_sha1 + 20 * i))
1056                        return;
1057        p->bad_object_sha1 = xrealloc(p->bad_object_sha1, 20 * (p->num_bad_objects + 1));
1058        hashcpy(p->bad_object_sha1 + 20 * p->num_bad_objects, sha1);
1059        p->num_bad_objects++;
1060}
1061
1062static const struct packed_git *has_packed_and_bad(const unsigned char *sha1)
1063{
1064        struct packed_git *p;
1065        unsigned i;
1066
1067        for (p = packed_git; p; p = p->next)
1068                for (i = 0; i < p->num_bad_objects; i++)
1069                        if (!hashcmp(sha1, p->bad_object_sha1 + 20 * i))
1070                                return p;
1071        return NULL;
1072}
1073
1074int check_sha1_signature(const unsigned char *sha1, void *map, unsigned long size, const char *type)
1075{
1076        unsigned char real_sha1[20];
1077        hash_sha1_file(map, size, type, real_sha1);
1078        return hashcmp(sha1, real_sha1) ? -1 : 0;
1079}
1080
1081static int git_open_noatime(const char *name, struct packed_git *p)
1082{
1083        static int sha1_file_open_flag = O_NOATIME;
1084
1085        for (;;) {
1086                int fd = open(name, O_RDONLY | sha1_file_open_flag);
1087                if (fd >= 0)
1088                        return fd;
1089
1090                /* Might the failure be insufficient file descriptors? */
1091                if (errno == EMFILE) {
1092                        if (unuse_one_window(p, -1))
1093                                continue;
1094                        else
1095                                return -1;
1096                }
1097
1098                /* Might the failure be due to O_NOATIME? */
1099                if (errno != ENOENT && sha1_file_open_flag) {
1100                        sha1_file_open_flag = 0;
1101                        continue;
1102                }
1103
1104                return -1;
1105        }
1106}
1107
1108static int open_sha1_file(const unsigned char *sha1)
1109{
1110        int fd;
1111        char *name = sha1_file_name(sha1);
1112        struct alternate_object_database *alt;
1113
1114        fd = git_open_noatime(name, NULL);
1115        if (fd >= 0)
1116                return fd;
1117
1118        prepare_alt_odb();
1119        errno = ENOENT;
1120        for (alt = alt_odb_list; alt; alt = alt->next) {
1121                name = alt->name;
1122                fill_sha1_path(name, sha1);
1123                fd = git_open_noatime(alt->base, NULL);
1124                if (fd >= 0)
1125                        return fd;
1126        }
1127        return -1;
1128}
1129
1130static void *map_sha1_file(const unsigned char *sha1, unsigned long *size)
1131{
1132        void *map;
1133        int fd;
1134
1135        fd = open_sha1_file(sha1);
1136        map = NULL;
1137        if (fd >= 0) {
1138                struct stat st;
1139
1140                if (!fstat(fd, &st)) {
1141                        *size = xsize_t(st.st_size);
1142                        map = xmmap(NULL, *size, PROT_READ, MAP_PRIVATE, fd, 0);
1143                }
1144                close(fd);
1145        }
1146        return map;
1147}
1148
1149static int legacy_loose_object(unsigned char *map)
1150{
1151        unsigned int word;
1152
1153        /*
1154         * Is it a zlib-compressed buffer? If so, the first byte
1155         * must be 0x78 (15-bit window size, deflated), and the
1156         * first 16-bit word is evenly divisible by 31
1157         */
1158        word = (map[0] << 8) + map[1];
1159        if (map[0] == 0x78 && !(word % 31))
1160                return 1;
1161        else
1162                return 0;
1163}
1164
1165unsigned long unpack_object_header_buffer(const unsigned char *buf,
1166                unsigned long len, enum object_type *type, unsigned long *sizep)
1167{
1168        unsigned shift;
1169        unsigned long size, c;
1170        unsigned long used = 0;
1171
1172        c = buf[used++];
1173        *type = (c >> 4) & 7;
1174        size = c & 15;
1175        shift = 4;
1176        while (c & 0x80) {
1177                if (len <= used || bitsizeof(long) <= shift) {
1178                        error("bad object header");
1179                        return 0;
1180                }
1181                c = buf[used++];
1182                size += (c & 0x7f) << shift;
1183                shift += 7;
1184        }
1185        *sizep = size;
1186        return used;
1187}
1188
1189static int unpack_sha1_header(z_stream *stream, unsigned char *map, unsigned long mapsize, void *buffer, unsigned long bufsiz)
1190{
1191        unsigned long size, used;
1192        static const char valid_loose_object_type[8] = {
1193                0, /* OBJ_EXT */
1194                1, 1, 1, 1, /* "commit", "tree", "blob", "tag" */
1195                0, /* "delta" and others are invalid in a loose object */
1196        };
1197        enum object_type type;
1198
1199        /* Get the data stream */
1200        memset(stream, 0, sizeof(*stream));
1201        stream->next_in = map;
1202        stream->avail_in = mapsize;
1203        stream->next_out = buffer;
1204        stream->avail_out = bufsiz;
1205
1206        if (legacy_loose_object(map)) {
1207                git_inflate_init(stream);
1208                return git_inflate(stream, 0);
1209        }
1210
1211
1212        /*
1213         * There used to be a second loose object header format which
1214         * was meant to mimic the in-pack format, allowing for direct
1215         * copy of the object data.  This format turned up not to be
1216         * really worth it and we don't write it any longer.  But we
1217         * can still read it.
1218         */
1219        used = unpack_object_header_buffer(map, mapsize, &type, &size);
1220        if (!used || !valid_loose_object_type[type])
1221                return -1;
1222        map += used;
1223        mapsize -= used;
1224
1225        /* Set up the stream for the rest.. */
1226        stream->next_in = map;
1227        stream->avail_in = mapsize;
1228        git_inflate_init(stream);
1229
1230        /* And generate the fake traditional header */
1231        stream->total_out = 1 + snprintf(buffer, bufsiz, "%s %lu",
1232                                         typename(type), size);
1233        return 0;
1234}
1235
1236static void *unpack_sha1_rest(z_stream *stream, void *buffer, unsigned long size, const unsigned char *sha1)
1237{
1238        int bytes = strlen(buffer) + 1;
1239        unsigned char *buf = xmallocz(size);
1240        unsigned long n;
1241        int status = Z_OK;
1242
1243        n = stream->total_out - bytes;
1244        if (n > size)
1245                n = size;
1246        memcpy(buf, (char *) buffer + bytes, n);
1247        bytes = n;
1248        if (bytes <= size) {
1249                /*
1250                 * The above condition must be (bytes <= size), not
1251                 * (bytes < size).  In other words, even though we
1252                 * expect no more output and set avail_out to zer0,
1253                 * the input zlib stream may have bytes that express
1254                 * "this concludes the stream", and we *do* want to
1255                 * eat that input.
1256                 *
1257                 * Otherwise we would not be able to test that we
1258                 * consumed all the input to reach the expected size;
1259                 * we also want to check that zlib tells us that all
1260                 * went well with status == Z_STREAM_END at the end.
1261                 */
1262                stream->next_out = buf + bytes;
1263                stream->avail_out = size - bytes;
1264                while (status == Z_OK)
1265                        status = git_inflate(stream, Z_FINISH);
1266        }
1267        if (status == Z_STREAM_END && !stream->avail_in) {
1268                git_inflate_end(stream);
1269                return buf;
1270        }
1271
1272        if (status < 0)
1273                error("corrupt loose object '%s'", sha1_to_hex(sha1));
1274        else if (stream->avail_in)
1275                error("garbage at end of loose object '%s'",
1276                      sha1_to_hex(sha1));
1277        free(buf);
1278        return NULL;
1279}
1280
1281/*
1282 * We used to just use "sscanf()", but that's actually way
1283 * too permissive for what we want to check. So do an anal
1284 * object header parse by hand.
1285 */
1286static int parse_sha1_header(const char *hdr, unsigned long *sizep)
1287{
1288        char type[10];
1289        int i;
1290        unsigned long size;
1291
1292        /*
1293         * The type can be at most ten bytes (including the
1294         * terminating '\0' that we add), and is followed by
1295         * a space.
1296         */
1297        i = 0;
1298        for (;;) {
1299                char c = *hdr++;
1300                if (c == ' ')
1301                        break;
1302                type[i++] = c;
1303                if (i >= sizeof(type))
1304                        return -1;
1305        }
1306        type[i] = 0;
1307
1308        /*
1309         * The length must follow immediately, and be in canonical
1310         * decimal format (ie "010" is not valid).
1311         */
1312        size = *hdr++ - '0';
1313        if (size > 9)
1314                return -1;
1315        if (size) {
1316                for (;;) {
1317                        unsigned long c = *hdr - '0';
1318                        if (c > 9)
1319                                break;
1320                        hdr++;
1321                        size = size * 10 + c;
1322                }
1323        }
1324        *sizep = size;
1325
1326        /*
1327         * The length must be followed by a zero byte
1328         */
1329        return *hdr ? -1 : type_from_string(type);
1330}
1331
1332static void *unpack_sha1_file(void *map, unsigned long mapsize, enum object_type *type, unsigned long *size, const unsigned char *sha1)
1333{
1334        int ret;
1335        z_stream stream;
1336        char hdr[8192];
1337
1338        ret = unpack_sha1_header(&stream, map, mapsize, hdr, sizeof(hdr));
1339        if (ret < Z_OK || (*type = parse_sha1_header(hdr, size)) < 0)
1340                return NULL;
1341
1342        return unpack_sha1_rest(&stream, hdr, *size, sha1);
1343}
1344
1345unsigned long get_size_from_delta(struct packed_git *p,
1346                                  struct pack_window **w_curs,
1347                                  off_t curpos)
1348{
1349        const unsigned char *data;
1350        unsigned char delta_head[20], *in;
1351        z_stream stream;
1352        int st;
1353
1354        memset(&stream, 0, sizeof(stream));
1355        stream.next_out = delta_head;
1356        stream.avail_out = sizeof(delta_head);
1357
1358        git_inflate_init(&stream);
1359        do {
1360                in = use_pack(p, w_curs, curpos, &stream.avail_in);
1361                stream.next_in = in;
1362                st = git_inflate(&stream, Z_FINISH);
1363                curpos += stream.next_in - in;
1364        } while ((st == Z_OK || st == Z_BUF_ERROR) &&
1365                 stream.total_out < sizeof(delta_head));
1366        git_inflate_end(&stream);
1367        if ((st != Z_STREAM_END) && stream.total_out != sizeof(delta_head)) {
1368                error("delta data unpack-initial failed");
1369                return 0;
1370        }
1371
1372        /* Examine the initial part of the delta to figure out
1373         * the result size.
1374         */
1375        data = delta_head;
1376
1377        /* ignore base size */
1378        get_delta_hdr_size(&data, delta_head+sizeof(delta_head));
1379
1380        /* Read the result size */
1381        return get_delta_hdr_size(&data, delta_head+sizeof(delta_head));
1382}
1383
1384static off_t get_delta_base(struct packed_git *p,
1385                                    struct pack_window **w_curs,
1386                                    off_t *curpos,
1387                                    enum object_type type,
1388                                    off_t delta_obj_offset)
1389{
1390        unsigned char *base_info = use_pack(p, w_curs, *curpos, NULL);
1391        off_t base_offset;
1392
1393        /* use_pack() assured us we have [base_info, base_info + 20)
1394         * as a range that we can look at without walking off the
1395         * end of the mapped window.  Its actually the hash size
1396         * that is assured.  An OFS_DELTA longer than the hash size
1397         * is stupid, as then a REF_DELTA would be smaller to store.
1398         */
1399        if (type == OBJ_OFS_DELTA) {
1400                unsigned used = 0;
1401                unsigned char c = base_info[used++];
1402                base_offset = c & 127;
1403                while (c & 128) {
1404                        base_offset += 1;
1405                        if (!base_offset || MSB(base_offset, 7))
1406                                return 0;  /* overflow */
1407                        c = base_info[used++];
1408                        base_offset = (base_offset << 7) + (c & 127);
1409                }
1410                base_offset = delta_obj_offset - base_offset;
1411                if (base_offset <= 0 || base_offset >= delta_obj_offset)
1412                        return 0;  /* out of bound */
1413                *curpos += used;
1414        } else if (type == OBJ_REF_DELTA) {
1415                /* The base entry _must_ be in the same pack */
1416                base_offset = find_pack_entry_one(base_info, p);
1417                *curpos += 20;
1418        } else
1419                die("I am totally screwed");
1420        return base_offset;
1421}
1422
1423/* forward declaration for a mutually recursive function */
1424static int packed_object_info(struct packed_git *p, off_t offset,
1425                              unsigned long *sizep);
1426
1427static int packed_delta_info(struct packed_git *p,
1428                             struct pack_window **w_curs,
1429                             off_t curpos,
1430                             enum object_type type,
1431                             off_t obj_offset,
1432                             unsigned long *sizep)
1433{
1434        off_t base_offset;
1435
1436        base_offset = get_delta_base(p, w_curs, &curpos, type, obj_offset);
1437        if (!base_offset)
1438                return OBJ_BAD;
1439        type = packed_object_info(p, base_offset, NULL);
1440        if (type <= OBJ_NONE) {
1441                struct revindex_entry *revidx;
1442                const unsigned char *base_sha1;
1443                revidx = find_pack_revindex(p, base_offset);
1444                if (!revidx)
1445                        return OBJ_BAD;
1446                base_sha1 = nth_packed_object_sha1(p, revidx->nr);
1447                mark_bad_packed_object(p, base_sha1);
1448                type = sha1_object_info(base_sha1, NULL);
1449                if (type <= OBJ_NONE)
1450                        return OBJ_BAD;
1451        }
1452
1453        /* We choose to only get the type of the base object and
1454         * ignore potentially corrupt pack file that expects the delta
1455         * based on a base with a wrong size.  This saves tons of
1456         * inflate() calls.
1457         */
1458        if (sizep) {
1459                *sizep = get_size_from_delta(p, w_curs, curpos);
1460                if (*sizep == 0)
1461                        type = OBJ_BAD;
1462        }
1463
1464        return type;
1465}
1466
1467static int unpack_object_header(struct packed_git *p,
1468                                struct pack_window **w_curs,
1469                                off_t *curpos,
1470                                unsigned long *sizep)
1471{
1472        unsigned char *base;
1473        unsigned int left;
1474        unsigned long used;
1475        enum object_type type;
1476
1477        /* use_pack() assures us we have [base, base + 20) available
1478         * as a range that we can look at at.  (Its actually the hash
1479         * size that is assured.)  With our object header encoding
1480         * the maximum deflated object size is 2^137, which is just
1481         * insane, so we know won't exceed what we have been given.
1482         */
1483        base = use_pack(p, w_curs, *curpos, &left);
1484        used = unpack_object_header_buffer(base, left, &type, sizep);
1485        if (!used) {
1486                type = OBJ_BAD;
1487        } else
1488                *curpos += used;
1489
1490        return type;
1491}
1492
1493const char *packed_object_info_detail(struct packed_git *p,
1494                                      off_t obj_offset,
1495                                      unsigned long *size,
1496                                      unsigned long *store_size,
1497                                      unsigned int *delta_chain_length,
1498                                      unsigned char *base_sha1)
1499{
1500        struct pack_window *w_curs = NULL;
1501        off_t curpos;
1502        unsigned long dummy;
1503        unsigned char *next_sha1;
1504        enum object_type type;
1505        struct revindex_entry *revidx;
1506
1507        *delta_chain_length = 0;
1508        curpos = obj_offset;
1509        type = unpack_object_header(p, &w_curs, &curpos, size);
1510
1511        revidx = find_pack_revindex(p, obj_offset);
1512        *store_size = revidx[1].offset - obj_offset;
1513
1514        for (;;) {
1515                switch (type) {
1516                default:
1517                        die("pack %s contains unknown object type %d",
1518                            p->pack_name, type);
1519                case OBJ_COMMIT:
1520                case OBJ_TREE:
1521                case OBJ_BLOB:
1522                case OBJ_TAG:
1523                        unuse_pack(&w_curs);
1524                        return typename(type);
1525                case OBJ_OFS_DELTA:
1526                        obj_offset = get_delta_base(p, &w_curs, &curpos, type, obj_offset);
1527                        if (!obj_offset)
1528                                die("pack %s contains bad delta base reference of type %s",
1529                                    p->pack_name, typename(type));
1530                        if (*delta_chain_length == 0) {
1531                                revidx = find_pack_revindex(p, obj_offset);
1532                                hashcpy(base_sha1, nth_packed_object_sha1(p, revidx->nr));
1533                        }
1534                        break;
1535                case OBJ_REF_DELTA:
1536                        next_sha1 = use_pack(p, &w_curs, curpos, NULL);
1537                        if (*delta_chain_length == 0)
1538                                hashcpy(base_sha1, next_sha1);
1539                        obj_offset = find_pack_entry_one(next_sha1, p);
1540                        break;
1541                }
1542                (*delta_chain_length)++;
1543                curpos = obj_offset;
1544                type = unpack_object_header(p, &w_curs, &curpos, &dummy);
1545        }
1546}
1547
1548static int packed_object_info(struct packed_git *p, off_t obj_offset,
1549                              unsigned long *sizep)
1550{
1551        struct pack_window *w_curs = NULL;
1552        unsigned long size;
1553        off_t curpos = obj_offset;
1554        enum object_type type;
1555
1556        type = unpack_object_header(p, &w_curs, &curpos, &size);
1557
1558        switch (type) {
1559        case OBJ_OFS_DELTA:
1560        case OBJ_REF_DELTA:
1561                type = packed_delta_info(p, &w_curs, curpos,
1562                                         type, obj_offset, sizep);
1563                break;
1564        case OBJ_COMMIT:
1565        case OBJ_TREE:
1566        case OBJ_BLOB:
1567        case OBJ_TAG:
1568                if (sizep)
1569                        *sizep = size;
1570                break;
1571        default:
1572                error("unknown object type %i at offset %"PRIuMAX" in %s",
1573                      type, (uintmax_t)obj_offset, p->pack_name);
1574                type = OBJ_BAD;
1575        }
1576        unuse_pack(&w_curs);
1577        return type;
1578}
1579
1580static void *unpack_compressed_entry(struct packed_git *p,
1581                                    struct pack_window **w_curs,
1582                                    off_t curpos,
1583                                    unsigned long size)
1584{
1585        int st;
1586        z_stream stream;
1587        unsigned char *buffer, *in;
1588
1589        buffer = xmallocz(size);
1590        memset(&stream, 0, sizeof(stream));
1591        stream.next_out = buffer;
1592        stream.avail_out = size + 1;
1593
1594        git_inflate_init(&stream);
1595        do {
1596                in = use_pack(p, w_curs, curpos, &stream.avail_in);
1597                stream.next_in = in;
1598                st = git_inflate(&stream, Z_FINISH);
1599                if (!stream.avail_out)
1600                        break; /* the payload is larger than it should be */
1601                curpos += stream.next_in - in;
1602        } while (st == Z_OK || st == Z_BUF_ERROR);
1603        git_inflate_end(&stream);
1604        if ((st != Z_STREAM_END) || stream.total_out != size) {
1605                free(buffer);
1606                return NULL;
1607        }
1608
1609        return buffer;
1610}
1611
1612#define MAX_DELTA_CACHE (256)
1613
1614static size_t delta_base_cached;
1615
1616static struct delta_base_cache_lru_list {
1617        struct delta_base_cache_lru_list *prev;
1618        struct delta_base_cache_lru_list *next;
1619} delta_base_cache_lru = { &delta_base_cache_lru, &delta_base_cache_lru };
1620
1621static struct delta_base_cache_entry {
1622        struct delta_base_cache_lru_list lru;
1623        void *data;
1624        struct packed_git *p;
1625        off_t base_offset;
1626        unsigned long size;
1627        enum object_type type;
1628} delta_base_cache[MAX_DELTA_CACHE];
1629
1630static unsigned long pack_entry_hash(struct packed_git *p, off_t base_offset)
1631{
1632        unsigned long hash;
1633
1634        hash = (unsigned long)p + (unsigned long)base_offset;
1635        hash += (hash >> 8) + (hash >> 16);
1636        return hash % MAX_DELTA_CACHE;
1637}
1638
1639static void *cache_or_unpack_entry(struct packed_git *p, off_t base_offset,
1640        unsigned long *base_size, enum object_type *type, int keep_cache)
1641{
1642        void *ret;
1643        unsigned long hash = pack_entry_hash(p, base_offset);
1644        struct delta_base_cache_entry *ent = delta_base_cache + hash;
1645
1646        ret = ent->data;
1647        if (!ret || ent->p != p || ent->base_offset != base_offset)
1648                return unpack_entry(p, base_offset, type, base_size);
1649
1650        if (!keep_cache) {
1651                ent->data = NULL;
1652                ent->lru.next->prev = ent->lru.prev;
1653                ent->lru.prev->next = ent->lru.next;
1654                delta_base_cached -= ent->size;
1655        } else {
1656                ret = xmemdupz(ent->data, ent->size);
1657        }
1658        *type = ent->type;
1659        *base_size = ent->size;
1660        return ret;
1661}
1662
1663static inline void release_delta_base_cache(struct delta_base_cache_entry *ent)
1664{
1665        if (ent->data) {
1666                free(ent->data);
1667                ent->data = NULL;
1668                ent->lru.next->prev = ent->lru.prev;
1669                ent->lru.prev->next = ent->lru.next;
1670                delta_base_cached -= ent->size;
1671        }
1672}
1673
1674void clear_delta_base_cache(void)
1675{
1676        unsigned long p;
1677        for (p = 0; p < MAX_DELTA_CACHE; p++)
1678                release_delta_base_cache(&delta_base_cache[p]);
1679}
1680
1681static void add_delta_base_cache(struct packed_git *p, off_t base_offset,
1682        void *base, unsigned long base_size, enum object_type type)
1683{
1684        unsigned long hash = pack_entry_hash(p, base_offset);
1685        struct delta_base_cache_entry *ent = delta_base_cache + hash;
1686        struct delta_base_cache_lru_list *lru;
1687
1688        release_delta_base_cache(ent);
1689        delta_base_cached += base_size;
1690
1691        for (lru = delta_base_cache_lru.next;
1692             delta_base_cached > delta_base_cache_limit
1693             && lru != &delta_base_cache_lru;
1694             lru = lru->next) {
1695                struct delta_base_cache_entry *f = (void *)lru;
1696                if (f->type == OBJ_BLOB)
1697                        release_delta_base_cache(f);
1698        }
1699        for (lru = delta_base_cache_lru.next;
1700             delta_base_cached > delta_base_cache_limit
1701             && lru != &delta_base_cache_lru;
1702             lru = lru->next) {
1703                struct delta_base_cache_entry *f = (void *)lru;
1704                release_delta_base_cache(f);
1705        }
1706
1707        ent->p = p;
1708        ent->base_offset = base_offset;
1709        ent->type = type;
1710        ent->data = base;
1711        ent->size = base_size;
1712        ent->lru.next = &delta_base_cache_lru;
1713        ent->lru.prev = delta_base_cache_lru.prev;
1714        delta_base_cache_lru.prev->next = &ent->lru;
1715        delta_base_cache_lru.prev = &ent->lru;
1716}
1717
1718static void *read_object(const unsigned char *sha1, enum object_type *type,
1719                         unsigned long *size);
1720
1721static void *unpack_delta_entry(struct packed_git *p,
1722                                struct pack_window **w_curs,
1723                                off_t curpos,
1724                                unsigned long delta_size,
1725                                off_t obj_offset,
1726                                enum object_type *type,
1727                                unsigned long *sizep)
1728{
1729        void *delta_data, *result, *base;
1730        unsigned long base_size;
1731        off_t base_offset;
1732
1733        base_offset = get_delta_base(p, w_curs, &curpos, *type, obj_offset);
1734        if (!base_offset) {
1735                error("failed to validate delta base reference "
1736                      "at offset %"PRIuMAX" from %s",
1737                      (uintmax_t)curpos, p->pack_name);
1738                return NULL;
1739        }
1740        unuse_pack(w_curs);
1741        base = cache_or_unpack_entry(p, base_offset, &base_size, type, 0);
1742        if (!base) {
1743                /*
1744                 * We're probably in deep shit, but let's try to fetch
1745                 * the required base anyway from another pack or loose.
1746                 * This is costly but should happen only in the presence
1747                 * of a corrupted pack, and is better than failing outright.
1748                 */
1749                struct revindex_entry *revidx;
1750                const unsigned char *base_sha1;
1751                revidx = find_pack_revindex(p, base_offset);
1752                if (!revidx)
1753                        return NULL;
1754                base_sha1 = nth_packed_object_sha1(p, revidx->nr);
1755                error("failed to read delta base object %s"
1756                      " at offset %"PRIuMAX" from %s",
1757                      sha1_to_hex(base_sha1), (uintmax_t)base_offset,
1758                      p->pack_name);
1759                mark_bad_packed_object(p, base_sha1);
1760                base = read_object(base_sha1, type, &base_size);
1761                if (!base)
1762                        return NULL;
1763        }
1764
1765        delta_data = unpack_compressed_entry(p, w_curs, curpos, delta_size);
1766        if (!delta_data) {
1767                error("failed to unpack compressed delta "
1768                      "at offset %"PRIuMAX" from %s",
1769                      (uintmax_t)curpos, p->pack_name);
1770                free(base);
1771                return NULL;
1772        }
1773        result = patch_delta(base, base_size,
1774                             delta_data, delta_size,
1775                             sizep);
1776        if (!result)
1777                die("failed to apply delta");
1778        free(delta_data);
1779        add_delta_base_cache(p, base_offset, base, base_size, *type);
1780        return result;
1781}
1782
1783int do_check_packed_object_crc;
1784
1785void *unpack_entry(struct packed_git *p, off_t obj_offset,
1786                   enum object_type *type, unsigned long *sizep)
1787{
1788        struct pack_window *w_curs = NULL;
1789        off_t curpos = obj_offset;
1790        void *data;
1791
1792        if (do_check_packed_object_crc && p->index_version > 1) {
1793                struct revindex_entry *revidx = find_pack_revindex(p, obj_offset);
1794                unsigned long len = revidx[1].offset - obj_offset;
1795                if (check_pack_crc(p, &w_curs, obj_offset, len, revidx->nr)) {
1796                        const unsigned char *sha1 =
1797                                nth_packed_object_sha1(p, revidx->nr);
1798                        error("bad packed object CRC for %s",
1799                              sha1_to_hex(sha1));
1800                        mark_bad_packed_object(p, sha1);
1801                        unuse_pack(&w_curs);
1802                        return NULL;
1803                }
1804        }
1805
1806        *type = unpack_object_header(p, &w_curs, &curpos, sizep);
1807        switch (*type) {
1808        case OBJ_OFS_DELTA:
1809        case OBJ_REF_DELTA:
1810                data = unpack_delta_entry(p, &w_curs, curpos, *sizep,
1811                                          obj_offset, type, sizep);
1812                break;
1813        case OBJ_COMMIT:
1814        case OBJ_TREE:
1815        case OBJ_BLOB:
1816        case OBJ_TAG:
1817                data = unpack_compressed_entry(p, &w_curs, curpos, *sizep);
1818                break;
1819        default:
1820                data = NULL;
1821                error("unknown object type %i at offset %"PRIuMAX" in %s",
1822                      *type, (uintmax_t)obj_offset, p->pack_name);
1823        }
1824        unuse_pack(&w_curs);
1825        return data;
1826}
1827
1828const unsigned char *nth_packed_object_sha1(struct packed_git *p,
1829                                            uint32_t n)
1830{
1831        const unsigned char *index = p->index_data;
1832        if (!index) {
1833                if (open_pack_index(p))
1834                        return NULL;
1835                index = p->index_data;
1836        }
1837        if (n >= p->num_objects)
1838                return NULL;
1839        index += 4 * 256;
1840        if (p->index_version == 1) {
1841                return index + 24 * n + 4;
1842        } else {
1843                index += 8;
1844                return index + 20 * n;
1845        }
1846}
1847
1848off_t nth_packed_object_offset(const struct packed_git *p, uint32_t n)
1849{
1850        const unsigned char *index = p->index_data;
1851        index += 4 * 256;
1852        if (p->index_version == 1) {
1853                return ntohl(*((uint32_t *)(index + 24 * n)));
1854        } else {
1855                uint32_t off;
1856                index += 8 + p->num_objects * (20 + 4);
1857                off = ntohl(*((uint32_t *)(index + 4 * n)));
1858                if (!(off & 0x80000000))
1859                        return off;
1860                index += p->num_objects * 4 + (off & 0x7fffffff) * 8;
1861                return (((uint64_t)ntohl(*((uint32_t *)(index + 0)))) << 32) |
1862                                   ntohl(*((uint32_t *)(index + 4)));
1863        }
1864}
1865
1866off_t find_pack_entry_one(const unsigned char *sha1,
1867                                  struct packed_git *p)
1868{
1869        const uint32_t *level1_ofs = p->index_data;
1870        const unsigned char *index = p->index_data;
1871        unsigned hi, lo, stride;
1872        static int use_lookup = -1;
1873        static int debug_lookup = -1;
1874
1875        if (debug_lookup < 0)
1876                debug_lookup = !!getenv("GIT_DEBUG_LOOKUP");
1877
1878        if (!index) {
1879                if (open_pack_index(p))
1880                        return 0;
1881                level1_ofs = p->index_data;
1882                index = p->index_data;
1883        }
1884        if (p->index_version > 1) {
1885                level1_ofs += 2;
1886                index += 8;
1887        }
1888        index += 4 * 256;
1889        hi = ntohl(level1_ofs[*sha1]);
1890        lo = ((*sha1 == 0x0) ? 0 : ntohl(level1_ofs[*sha1 - 1]));
1891        if (p->index_version > 1) {
1892                stride = 20;
1893        } else {
1894                stride = 24;
1895                index += 4;
1896        }
1897
1898        if (debug_lookup)
1899                printf("%02x%02x%02x... lo %u hi %u nr %"PRIu32"\n",
1900                       sha1[0], sha1[1], sha1[2], lo, hi, p->num_objects);
1901
1902        if (use_lookup < 0)
1903                use_lookup = !!getenv("GIT_USE_LOOKUP");
1904        if (use_lookup) {
1905                int pos = sha1_entry_pos(index, stride, 0,
1906                                         lo, hi, p->num_objects, sha1);
1907                if (pos < 0)
1908                        return 0;
1909                return nth_packed_object_offset(p, pos);
1910        }
1911
1912        do {
1913                unsigned mi = (lo + hi) / 2;
1914                int cmp = hashcmp(index + mi * stride, sha1);
1915
1916                if (debug_lookup)
1917                        printf("lo %u hi %u rg %u mi %u\n",
1918                               lo, hi, hi - lo, mi);
1919                if (!cmp)
1920                        return nth_packed_object_offset(p, mi);
1921                if (cmp > 0)
1922                        hi = mi;
1923                else
1924                        lo = mi+1;
1925        } while (lo < hi);
1926        return 0;
1927}
1928
1929static int find_pack_entry(const unsigned char *sha1, struct pack_entry *e)
1930{
1931        static struct packed_git *last_found = (void *)1;
1932        struct packed_git *p;
1933        off_t offset;
1934
1935        prepare_packed_git();
1936        if (!packed_git)
1937                return 0;
1938        p = (last_found == (void *)1) ? packed_git : last_found;
1939
1940        do {
1941                if (p->num_bad_objects) {
1942                        unsigned i;
1943                        for (i = 0; i < p->num_bad_objects; i++)
1944                                if (!hashcmp(sha1, p->bad_object_sha1 + 20 * i))
1945                                        goto next;
1946                }
1947
1948                offset = find_pack_entry_one(sha1, p);
1949                if (offset) {
1950                        /*
1951                         * We are about to tell the caller where they can
1952                         * locate the requested object.  We better make
1953                         * sure the packfile is still here and can be
1954                         * accessed before supplying that answer, as
1955                         * it may have been deleted since the index
1956                         * was loaded!
1957                         */
1958                        if (p->pack_fd == -1 && open_packed_git(p)) {
1959                                error("packfile %s cannot be accessed", p->pack_name);
1960                                goto next;
1961                        }
1962                        e->offset = offset;
1963                        e->p = p;
1964                        hashcpy(e->sha1, sha1);
1965                        last_found = p;
1966                        return 1;
1967                }
1968
1969                next:
1970                if (p == last_found)
1971                        p = packed_git;
1972                else
1973                        p = p->next;
1974                if (p == last_found)
1975                        p = p->next;
1976        } while (p);
1977        return 0;
1978}
1979
1980struct packed_git *find_sha1_pack(const unsigned char *sha1,
1981                                  struct packed_git *packs)
1982{
1983        struct packed_git *p;
1984
1985        for (p = packs; p; p = p->next) {
1986                if (find_pack_entry_one(sha1, p))
1987                        return p;
1988        }
1989        return NULL;
1990
1991}
1992
1993static int sha1_loose_object_info(const unsigned char *sha1, unsigned long *sizep)
1994{
1995        int status;
1996        unsigned long mapsize, size;
1997        void *map;
1998        z_stream stream;
1999        char hdr[32];
2000
2001        map = map_sha1_file(sha1, &mapsize);
2002        if (!map)
2003                return error("unable to find %s", sha1_to_hex(sha1));
2004        if (unpack_sha1_header(&stream, map, mapsize, hdr, sizeof(hdr)) < 0)
2005                status = error("unable to unpack %s header",
2006                               sha1_to_hex(sha1));
2007        else if ((status = parse_sha1_header(hdr, &size)) < 0)
2008                status = error("unable to parse %s header", sha1_to_hex(sha1));
2009        else if (sizep)
2010                *sizep = size;
2011        git_inflate_end(&stream);
2012        munmap(map, mapsize);
2013        return status;
2014}
2015
2016int sha1_object_info(const unsigned char *sha1, unsigned long *sizep)
2017{
2018        struct cached_object *co;
2019        struct pack_entry e;
2020        int status;
2021
2022        co = find_cached_object(sha1);
2023        if (co) {
2024                if (sizep)
2025                        *sizep = co->size;
2026                return co->type;
2027        }
2028
2029        if (!find_pack_entry(sha1, &e)) {
2030                /* Most likely it's a loose object. */
2031                status = sha1_loose_object_info(sha1, sizep);
2032                if (status >= 0)
2033                        return status;
2034
2035                /* Not a loose object; someone else may have just packed it. */
2036                reprepare_packed_git();
2037                if (!find_pack_entry(sha1, &e))
2038                        return status;
2039        }
2040
2041        status = packed_object_info(e.p, e.offset, sizep);
2042        if (status < 0) {
2043                mark_bad_packed_object(e.p, sha1);
2044                status = sha1_object_info(sha1, sizep);
2045        }
2046
2047        return status;
2048}
2049
2050static void *read_packed_sha1(const unsigned char *sha1,
2051                              enum object_type *type, unsigned long *size)
2052{
2053        struct pack_entry e;
2054        void *data;
2055
2056        if (!find_pack_entry(sha1, &e))
2057                return NULL;
2058        data = cache_or_unpack_entry(e.p, e.offset, size, type, 1);
2059        if (!data) {
2060                /*
2061                 * We're probably in deep shit, but let's try to fetch
2062                 * the required object anyway from another pack or loose.
2063                 * This should happen only in the presence of a corrupted
2064                 * pack, and is better than failing outright.
2065                 */
2066                error("failed to read object %s at offset %"PRIuMAX" from %s",
2067                      sha1_to_hex(sha1), (uintmax_t)e.offset, e.p->pack_name);
2068                mark_bad_packed_object(e.p, sha1);
2069                data = read_object(sha1, type, size);
2070        }
2071        return data;
2072}
2073
2074int pretend_sha1_file(void *buf, unsigned long len, enum object_type type,
2075                      unsigned char *sha1)
2076{
2077        struct cached_object *co;
2078
2079        hash_sha1_file(buf, len, typename(type), sha1);
2080        if (has_sha1_file(sha1) || find_cached_object(sha1))
2081                return 0;
2082        if (cached_object_alloc <= cached_object_nr) {
2083                cached_object_alloc = alloc_nr(cached_object_alloc);
2084                cached_objects = xrealloc(cached_objects,
2085                                          sizeof(*cached_objects) *
2086                                          cached_object_alloc);
2087        }
2088        co = &cached_objects[cached_object_nr++];
2089        co->size = len;
2090        co->type = type;
2091        co->buf = xmalloc(len);
2092        memcpy(co->buf, buf, len);
2093        hashcpy(co->sha1, sha1);
2094        return 0;
2095}
2096
2097static void *read_object(const unsigned char *sha1, enum object_type *type,
2098                         unsigned long *size)
2099{
2100        unsigned long mapsize;
2101        void *map, *buf;
2102        struct cached_object *co;
2103
2104        co = find_cached_object(sha1);
2105        if (co) {
2106                *type = co->type;
2107                *size = co->size;
2108                return xmemdupz(co->buf, co->size);
2109        }
2110
2111        buf = read_packed_sha1(sha1, type, size);
2112        if (buf)
2113                return buf;
2114        map = map_sha1_file(sha1, &mapsize);
2115        if (map) {
2116                buf = unpack_sha1_file(map, mapsize, type, size, sha1);
2117                munmap(map, mapsize);
2118                return buf;
2119        }
2120        reprepare_packed_git();
2121        return read_packed_sha1(sha1, type, size);
2122}
2123
2124/*
2125 * This function dies on corrupt objects; the callers who want to
2126 * deal with them should arrange to call read_object() and give error
2127 * messages themselves.
2128 */
2129void *read_sha1_file_repl(const unsigned char *sha1,
2130                          enum object_type *type,
2131                          unsigned long *size,
2132                          const unsigned char **replacement)
2133{
2134        const unsigned char *repl = lookup_replace_object(sha1);
2135        void *data;
2136        char *path;
2137        const struct packed_git *p;
2138
2139        errno = 0;
2140        data = read_object(repl, type, size);
2141        if (data) {
2142                if (replacement)
2143                        *replacement = repl;
2144                return data;
2145        }
2146
2147        if (errno && errno != ENOENT)
2148                die_errno("failed to read object %s", sha1_to_hex(sha1));
2149
2150        /* die if we replaced an object with one that does not exist */
2151        if (repl != sha1)
2152                die("replacement %s not found for %s",
2153                    sha1_to_hex(repl), sha1_to_hex(sha1));
2154
2155        if (has_loose_object(repl)) {
2156                path = sha1_file_name(sha1);
2157                die("loose object %s (stored in %s) is corrupt",
2158                    sha1_to_hex(repl), path);
2159        }
2160
2161        if ((p = has_packed_and_bad(repl)) != NULL)
2162                die("packed object %s (stored in %s) is corrupt",
2163                    sha1_to_hex(repl), p->pack_name);
2164
2165        return NULL;
2166}
2167
2168void *read_object_with_reference(const unsigned char *sha1,
2169                                 const char *required_type_name,
2170                                 unsigned long *size,
2171                                 unsigned char *actual_sha1_return)
2172{
2173        enum object_type type, required_type;
2174        void *buffer;
2175        unsigned long isize;
2176        unsigned char actual_sha1[20];
2177
2178        required_type = type_from_string(required_type_name);
2179        hashcpy(actual_sha1, sha1);
2180        while (1) {
2181                int ref_length = -1;
2182                const char *ref_type = NULL;
2183
2184                buffer = read_sha1_file(actual_sha1, &type, &isize);
2185                if (!buffer)
2186                        return NULL;
2187                if (type == required_type) {
2188                        *size = isize;
2189                        if (actual_sha1_return)
2190                                hashcpy(actual_sha1_return, actual_sha1);
2191                        return buffer;
2192                }
2193                /* Handle references */
2194                else if (type == OBJ_COMMIT)
2195                        ref_type = "tree ";
2196                else if (type == OBJ_TAG)
2197                        ref_type = "object ";
2198                else {
2199                        free(buffer);
2200                        return NULL;
2201                }
2202                ref_length = strlen(ref_type);
2203
2204                if (ref_length + 40 > isize ||
2205                    memcmp(buffer, ref_type, ref_length) ||
2206                    get_sha1_hex((char *) buffer + ref_length, actual_sha1)) {
2207                        free(buffer);
2208                        return NULL;
2209                }
2210                free(buffer);
2211                /* Now we have the ID of the referred-to object in
2212                 * actual_sha1.  Check again. */
2213        }
2214}
2215
2216static void write_sha1_file_prepare(const void *buf, unsigned long len,
2217                                    const char *type, unsigned char *sha1,
2218                                    char *hdr, int *hdrlen)
2219{
2220        git_SHA_CTX c;
2221
2222        /* Generate the header */
2223        *hdrlen = sprintf(hdr, "%s %lu", type, len)+1;
2224
2225        /* Sha1.. */
2226        git_SHA1_Init(&c);
2227        git_SHA1_Update(&c, hdr, *hdrlen);
2228        git_SHA1_Update(&c, buf, len);
2229        git_SHA1_Final(sha1, &c);
2230}
2231
2232/*
2233 * Move the just written object into its final resting place.
2234 * NEEDSWORK: this should be renamed to finalize_temp_file() as
2235 * "moving" is only a part of what it does, when no patch between
2236 * master to pu changes the call sites of this function.
2237 */
2238int move_temp_to_file(const char *tmpfile, const char *filename)
2239{
2240        int ret = 0;
2241
2242        if (object_creation_mode == OBJECT_CREATION_USES_RENAMES)
2243                goto try_rename;
2244        else if (link(tmpfile, filename))
2245                ret = errno;
2246
2247        /*
2248         * Coda hack - coda doesn't like cross-directory links,
2249         * so we fall back to a rename, which will mean that it
2250         * won't be able to check collisions, but that's not a
2251         * big deal.
2252         *
2253         * The same holds for FAT formatted media.
2254         *
2255         * When this succeeds, we just return.  We have nothing
2256         * left to unlink.
2257         */
2258        if (ret && ret != EEXIST) {
2259        try_rename:
2260                if (!rename(tmpfile, filename))
2261                        goto out;
2262                ret = errno;
2263        }
2264        unlink_or_warn(tmpfile);
2265        if (ret) {
2266                if (ret != EEXIST) {
2267                        return error("unable to write sha1 filename %s: %s\n", filename, strerror(ret));
2268                }
2269                /* FIXME!!! Collision check here ? */
2270        }
2271
2272out:
2273        if (adjust_shared_perm(filename))
2274                return error("unable to set permission to '%s'", filename);
2275        return 0;
2276}
2277
2278static int write_buffer(int fd, const void *buf, size_t len)
2279{
2280        if (write_in_full(fd, buf, len) < 0)
2281                return error("file write error (%s)", strerror(errno));
2282        return 0;
2283}
2284
2285int hash_sha1_file(const void *buf, unsigned long len, const char *type,
2286                   unsigned char *sha1)
2287{
2288        char hdr[32];
2289        int hdrlen;
2290        write_sha1_file_prepare(buf, len, type, sha1, hdr, &hdrlen);
2291        return 0;
2292}
2293
2294/* Finalize a file on disk, and close it. */
2295static void close_sha1_file(int fd)
2296{
2297        if (fsync_object_files)
2298                fsync_or_die(fd, "sha1 file");
2299        if (close(fd) != 0)
2300                die_errno("error when closing sha1 file");
2301}
2302
2303/* Size of directory component, including the ending '/' */
2304static inline int directory_size(const char *filename)
2305{
2306        const char *s = strrchr(filename, '/');
2307        if (!s)
2308                return 0;
2309        return s - filename + 1;
2310}
2311
2312/*
2313 * This creates a temporary file in the same directory as the final
2314 * 'filename'
2315 *
2316 * We want to avoid cross-directory filename renames, because those
2317 * can have problems on various filesystems (FAT, NFS, Coda).
2318 */
2319static int create_tmpfile(char *buffer, size_t bufsiz, const char *filename)
2320{
2321        int fd, dirlen = directory_size(filename);
2322
2323        if (dirlen + 20 > bufsiz) {
2324                errno = ENAMETOOLONG;
2325                return -1;
2326        }
2327        memcpy(buffer, filename, dirlen);
2328        strcpy(buffer + dirlen, "tmp_obj_XXXXXX");
2329        fd = git_mkstemp_mode(buffer, 0444);
2330        if (fd < 0 && dirlen && errno == ENOENT) {
2331                /* Make sure the directory exists */
2332                memcpy(buffer, filename, dirlen);
2333                buffer[dirlen-1] = 0;
2334                if (mkdir(buffer, 0777) || adjust_shared_perm(buffer))
2335                        return -1;
2336
2337                /* Try again */
2338                strcpy(buffer + dirlen - 1, "/tmp_obj_XXXXXX");
2339                fd = git_mkstemp_mode(buffer, 0444);
2340        }
2341        return fd;
2342}
2343
2344static int write_loose_object(const unsigned char *sha1, char *hdr, int hdrlen,
2345                              const void *buf, unsigned long len, time_t mtime)
2346{
2347        int fd, ret;
2348        unsigned char compressed[4096];
2349        z_stream stream;
2350        git_SHA_CTX c;
2351        unsigned char parano_sha1[20];
2352        char *filename;
2353        static char tmpfile[PATH_MAX];
2354
2355        filename = sha1_file_name(sha1);
2356        fd = create_tmpfile(tmpfile, sizeof(tmpfile), filename);
2357        while (fd < 0 && errno == EMFILE && unuse_one_window(NULL, -1))
2358                fd = create_tmpfile(tmpfile, sizeof(tmpfile), filename);
2359        if (fd < 0) {
2360                if (errno == EACCES)
2361                        return error("insufficient permission for adding an object to repository database %s\n", get_object_directory());
2362                else
2363                        return error("unable to create temporary sha1 filename %s: %s\n", tmpfile, strerror(errno));
2364        }
2365
2366        /* Set it up */
2367        memset(&stream, 0, sizeof(stream));
2368        deflateInit(&stream, zlib_compression_level);
2369        stream.next_out = compressed;
2370        stream.avail_out = sizeof(compressed);
2371        git_SHA1_Init(&c);
2372
2373        /* First header.. */
2374        stream.next_in = (unsigned char *)hdr;
2375        stream.avail_in = hdrlen;
2376        while (deflate(&stream, 0) == Z_OK)
2377                /* nothing */;
2378        git_SHA1_Update(&c, hdr, hdrlen);
2379
2380        /* Then the data itself.. */
2381        stream.next_in = (void *)buf;
2382        stream.avail_in = len;
2383        do {
2384                unsigned char *in0 = stream.next_in;
2385                ret = deflate(&stream, Z_FINISH);
2386                git_SHA1_Update(&c, in0, stream.next_in - in0);
2387                if (write_buffer(fd, compressed, stream.next_out - compressed) < 0)
2388                        die("unable to write sha1 file");
2389                stream.next_out = compressed;
2390                stream.avail_out = sizeof(compressed);
2391        } while (ret == Z_OK);
2392
2393        if (ret != Z_STREAM_END)
2394                die("unable to deflate new object %s (%d)", sha1_to_hex(sha1), ret);
2395        ret = deflateEnd(&stream);
2396        if (ret != Z_OK)
2397                die("deflateEnd on object %s failed (%d)", sha1_to_hex(sha1), ret);
2398        git_SHA1_Final(parano_sha1, &c);
2399        if (hashcmp(sha1, parano_sha1) != 0)
2400                die("confused by unstable object source data for %s", sha1_to_hex(sha1));
2401
2402        close_sha1_file(fd);
2403
2404        if (mtime) {
2405                struct utimbuf utb;
2406                utb.actime = mtime;
2407                utb.modtime = mtime;
2408                if (utime(tmpfile, &utb) < 0)
2409                        warning("failed utime() on %s: %s",
2410                                tmpfile, strerror(errno));
2411        }
2412
2413        return move_temp_to_file(tmpfile, filename);
2414}
2415
2416int write_sha1_file(const void *buf, unsigned long len, const char *type, unsigned char *returnsha1)
2417{
2418        unsigned char sha1[20];
2419        char hdr[32];
2420        int hdrlen;
2421
2422        /* Normally if we have it in the pack then we do not bother writing
2423         * it out into .git/objects/??/?{38} file.
2424         */
2425        write_sha1_file_prepare(buf, len, type, sha1, hdr, &hdrlen);
2426        if (returnsha1)
2427                hashcpy(returnsha1, sha1);
2428        if (has_sha1_file(sha1))
2429                return 0;
2430        return write_loose_object(sha1, hdr, hdrlen, buf, len, 0);
2431}
2432
2433int force_object_loose(const unsigned char *sha1, time_t mtime)
2434{
2435        void *buf;
2436        unsigned long len;
2437        enum object_type type;
2438        char hdr[32];
2439        int hdrlen;
2440        int ret;
2441
2442        if (has_loose_object(sha1))
2443                return 0;
2444        buf = read_packed_sha1(sha1, &type, &len);
2445        if (!buf)
2446                return error("cannot read sha1_file for %s", sha1_to_hex(sha1));
2447        hdrlen = sprintf(hdr, "%s %lu", typename(type), len) + 1;
2448        ret = write_loose_object(sha1, hdr, hdrlen, buf, len, mtime);
2449        free(buf);
2450
2451        return ret;
2452}
2453
2454int has_pack_index(const unsigned char *sha1)
2455{
2456        struct stat st;
2457        if (stat(sha1_pack_index_name(sha1), &st))
2458                return 0;
2459        return 1;
2460}
2461
2462int has_sha1_pack(const unsigned char *sha1)
2463{
2464        struct pack_entry e;
2465        return find_pack_entry(sha1, &e);
2466}
2467
2468int has_sha1_file(const unsigned char *sha1)
2469{
2470        struct pack_entry e;
2471
2472        if (find_pack_entry(sha1, &e))
2473                return 1;
2474        return has_loose_object(sha1);
2475}
2476
2477static int index_mem(unsigned char *sha1, void *buf, size_t size,
2478                     int write_object, enum object_type type, const char *path)
2479{
2480        int ret, re_allocated = 0;
2481
2482        if (!type)
2483                type = OBJ_BLOB;
2484
2485        /*
2486         * Convert blobs to git internal format
2487         */
2488        if ((type == OBJ_BLOB) && path) {
2489                struct strbuf nbuf = STRBUF_INIT;
2490                if (convert_to_git(path, buf, size, &nbuf,
2491                                   write_object ? safe_crlf : 0)) {
2492                        buf = strbuf_detach(&nbuf, &size);
2493                        re_allocated = 1;
2494                }
2495        }
2496
2497        if (write_object)
2498                ret = write_sha1_file(buf, size, typename(type), sha1);
2499        else
2500                ret = hash_sha1_file(buf, size, typename(type), sha1);
2501        if (re_allocated)
2502                free(buf);
2503        return ret;
2504}
2505
2506#define SMALL_FILE_SIZE (32*1024)
2507
2508int index_fd(unsigned char *sha1, int fd, struct stat *st, int write_object,
2509             enum object_type type, const char *path)
2510{
2511        int ret;
2512        size_t size = xsize_t(st->st_size);
2513
2514        if (!S_ISREG(st->st_mode)) {
2515                struct strbuf sbuf = STRBUF_INIT;
2516                if (strbuf_read(&sbuf, fd, 4096) >= 0)
2517                        ret = index_mem(sha1, sbuf.buf, sbuf.len, write_object,
2518                                        type, path);
2519                else
2520                        ret = -1;
2521                strbuf_release(&sbuf);
2522        } else if (!size) {
2523                ret = index_mem(sha1, NULL, size, write_object, type, path);
2524        } else if (size <= SMALL_FILE_SIZE) {
2525                char *buf = xmalloc(size);
2526                if (size == read_in_full(fd, buf, size))
2527                        ret = index_mem(sha1, buf, size, write_object, type,
2528                                        path);
2529                else
2530                        ret = error("short read %s", strerror(errno));
2531                free(buf);
2532        } else {
2533                void *buf = xmmap(NULL, size, PROT_READ, MAP_PRIVATE, fd, 0);
2534                ret = index_mem(sha1, buf, size, write_object, type, path);
2535                munmap(buf, size);
2536        }
2537        close(fd);
2538        return ret;
2539}
2540
2541int index_path(unsigned char *sha1, const char *path, struct stat *st, int write_object)
2542{
2543        int fd;
2544        struct strbuf sb = STRBUF_INIT;
2545
2546        switch (st->st_mode & S_IFMT) {
2547        case S_IFREG:
2548                fd = open(path, O_RDONLY);
2549                if (fd < 0)
2550                        return error("open(\"%s\"): %s", path,
2551                                     strerror(errno));
2552                if (index_fd(sha1, fd, st, write_object, OBJ_BLOB, path) < 0)
2553                        return error("%s: failed to insert into database",
2554                                     path);
2555                break;
2556        case S_IFLNK:
2557                if (strbuf_readlink(&sb, path, st->st_size)) {
2558                        char *errstr = strerror(errno);
2559                        return error("readlink(\"%s\"): %s", path,
2560                                     errstr);
2561                }
2562                if (!write_object)
2563                        hash_sha1_file(sb.buf, sb.len, blob_type, sha1);
2564                else if (write_sha1_file(sb.buf, sb.len, blob_type, sha1))
2565                        return error("%s: failed to insert into database",
2566                                     path);
2567                strbuf_release(&sb);
2568                break;
2569        case S_IFDIR:
2570                return resolve_gitlink_ref(path, "HEAD", sha1);
2571        default:
2572                return error("%s: unsupported file type", path);
2573        }
2574        return 0;
2575}
2576
2577int read_pack_header(int fd, struct pack_header *header)
2578{
2579        if (read_in_full(fd, header, sizeof(*header)) < sizeof(*header))
2580                /* "eof before pack header was fully read" */
2581                return PH_ERROR_EOF;
2582
2583        if (header->hdr_signature != htonl(PACK_SIGNATURE))
2584                /* "protocol error (pack signature mismatch detected)" */
2585                return PH_ERROR_PACK_SIGNATURE;
2586        if (!pack_version_ok(header->hdr_version))
2587                /* "protocol error (pack version unsupported)" */
2588                return PH_ERROR_PROTOCOL;
2589        return 0;
2590}
2591
2592void assert_sha1_type(const unsigned char *sha1, enum object_type expect)
2593{
2594        enum object_type type = sha1_object_info(sha1, NULL);
2595        if (type < 0)
2596                die("%s is not a valid object", sha1_to_hex(sha1));
2597        if (type != expect)
2598                die("%s is not a valid '%s' object", sha1_to_hex(sha1),
2599                    typename(expect));
2600}