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