f52a04f64532558e166a7fa0372996ec7f990792
   1#include "builtin.h"
   2#include "delta.h"
   3#include "pack.h"
   4#include "csum-file.h"
   5#include "blob.h"
   6#include "commit.h"
   7#include "tag.h"
   8#include "tree.h"
   9#include "progress.h"
  10#include "fsck.h"
  11#include "exec_cmd.h"
  12#include "streaming.h"
  13#include "thread-utils.h"
  14
  15static const char index_pack_usage[] =
  16"git index-pack [-v] [-o <index-file>] [--keep | --keep=<msg>] [--verify] [--strict] (<pack-file> | --stdin [--fix-thin] [<pack-file>])";
  17
  18struct object_entry {
  19        struct pack_idx_entry idx;
  20        unsigned long size;
  21        unsigned int hdr_size;
  22        enum object_type type;
  23        enum object_type real_type;
  24        unsigned delta_depth;
  25        int base_object_no;
  26};
  27
  28union delta_base {
  29        unsigned char sha1[20];
  30        off_t offset;
  31};
  32
  33struct base_data {
  34        struct base_data *base;
  35        struct base_data *child;
  36        struct object_entry *obj;
  37        void *data;
  38        unsigned long size;
  39        int ref_first, ref_last;
  40        int ofs_first, ofs_last;
  41};
  42
  43#if !defined(NO_PTHREADS) && defined(NO_THREAD_SAFE_PREAD)
  44/* pread() emulation is not thread-safe. Disable threading. */
  45#define NO_PTHREADS
  46#endif
  47
  48struct thread_local {
  49#ifndef NO_PTHREADS
  50        pthread_t thread;
  51#endif
  52        struct base_data *base_cache;
  53        size_t base_cache_used;
  54};
  55
  56/*
  57 * Even if sizeof(union delta_base) == 24 on 64-bit archs, we really want
  58 * to memcmp() only the first 20 bytes.
  59 */
  60#define UNION_BASE_SZ   20
  61
  62#define FLAG_LINK (1u<<20)
  63#define FLAG_CHECKED (1u<<21)
  64
  65struct delta_entry {
  66        union delta_base base;
  67        int obj_no;
  68};
  69
  70static struct object_entry *objects;
  71static struct delta_entry *deltas;
  72static struct thread_local nothread_data;
  73static int nr_objects;
  74static int nr_deltas;
  75static int nr_resolved_deltas;
  76static int nr_threads;
  77
  78static int from_stdin;
  79static int strict;
  80static int verbose;
  81static int show_stat;
  82
  83static struct progress *progress;
  84
  85/* We always read in 4kB chunks. */
  86static unsigned char input_buffer[4096];
  87static unsigned int input_offset, input_len;
  88static off_t consumed_bytes;
  89static unsigned deepest_delta;
  90static git_SHA_CTX input_ctx;
  91static uint32_t input_crc32;
  92static int input_fd, output_fd, pack_fd;
  93
  94#ifndef NO_PTHREADS
  95
  96static struct thread_local *thread_data;
  97static int nr_dispatched;
  98static int threads_active;
  99
 100static pthread_mutex_t read_mutex;
 101#define read_lock()             lock_mutex(&read_mutex)
 102#define read_unlock()           unlock_mutex(&read_mutex)
 103
 104static pthread_mutex_t counter_mutex;
 105#define counter_lock()          lock_mutex(&counter_mutex)
 106#define counter_unlock()        unlock_mutex(&counter_mutex)
 107
 108static pthread_mutex_t work_mutex;
 109#define work_lock()             lock_mutex(&work_mutex)
 110#define work_unlock()           unlock_mutex(&work_mutex)
 111
 112static pthread_mutex_t deepest_delta_mutex;
 113#define deepest_delta_lock()    lock_mutex(&deepest_delta_mutex)
 114#define deepest_delta_unlock()  unlock_mutex(&deepest_delta_mutex)
 115
 116static pthread_key_t key;
 117
 118static inline void lock_mutex(pthread_mutex_t *mutex)
 119{
 120        if (threads_active)
 121                pthread_mutex_lock(mutex);
 122}
 123
 124static inline void unlock_mutex(pthread_mutex_t *mutex)
 125{
 126        if (threads_active)
 127                pthread_mutex_unlock(mutex);
 128}
 129
 130/*
 131 * Mutex and conditional variable can't be statically-initialized on Windows.
 132 */
 133static void init_thread(void)
 134{
 135        init_recursive_mutex(&read_mutex);
 136        pthread_mutex_init(&counter_mutex, NULL);
 137        pthread_mutex_init(&work_mutex, NULL);
 138        if (show_stat)
 139                pthread_mutex_init(&deepest_delta_mutex, NULL);
 140        pthread_key_create(&key, NULL);
 141        thread_data = xcalloc(nr_threads, sizeof(*thread_data));
 142        threads_active = 1;
 143}
 144
 145static void cleanup_thread(void)
 146{
 147        if (!threads_active)
 148                return;
 149        threads_active = 0;
 150        pthread_mutex_destroy(&read_mutex);
 151        pthread_mutex_destroy(&counter_mutex);
 152        pthread_mutex_destroy(&work_mutex);
 153        if (show_stat)
 154                pthread_mutex_destroy(&deepest_delta_mutex);
 155        pthread_key_delete(key);
 156        free(thread_data);
 157}
 158
 159#else
 160
 161#define read_lock()
 162#define read_unlock()
 163
 164#define counter_lock()
 165#define counter_unlock()
 166
 167#define work_lock()
 168#define work_unlock()
 169
 170#define deepest_delta_lock()
 171#define deepest_delta_unlock()
 172
 173#endif
 174
 175
 176static int mark_link(struct object *obj, int type, void *data)
 177{
 178        if (!obj)
 179                return -1;
 180
 181        if (type != OBJ_ANY && obj->type != type)
 182                die(_("object type mismatch at %s"), sha1_to_hex(obj->sha1));
 183
 184        obj->flags |= FLAG_LINK;
 185        return 0;
 186}
 187
 188/* The content of each linked object must have been checked
 189   or it must be already present in the object database */
 190static void check_object(struct object *obj)
 191{
 192        if (!obj)
 193                return;
 194
 195        if (!(obj->flags & FLAG_LINK))
 196                return;
 197
 198        if (!(obj->flags & FLAG_CHECKED)) {
 199                unsigned long size;
 200                int type = sha1_object_info(obj->sha1, &size);
 201                if (type != obj->type || type <= 0)
 202                        die(_("object of unexpected type"));
 203                obj->flags |= FLAG_CHECKED;
 204                return;
 205        }
 206}
 207
 208static void check_objects(void)
 209{
 210        unsigned i, max;
 211
 212        max = get_max_object_index();
 213        for (i = 0; i < max; i++)
 214                check_object(get_indexed_object(i));
 215}
 216
 217
 218/* Discard current buffer used content. */
 219static void flush(void)
 220{
 221        if (input_offset) {
 222                if (output_fd >= 0)
 223                        write_or_die(output_fd, input_buffer, input_offset);
 224                git_SHA1_Update(&input_ctx, input_buffer, input_offset);
 225                memmove(input_buffer, input_buffer + input_offset, input_len);
 226                input_offset = 0;
 227        }
 228}
 229
 230/*
 231 * Make sure at least "min" bytes are available in the buffer, and
 232 * return the pointer to the buffer.
 233 */
 234static void *fill(int min)
 235{
 236        if (min <= input_len)
 237                return input_buffer + input_offset;
 238        if (min > sizeof(input_buffer))
 239                die(Q_("cannot fill %d byte",
 240                       "cannot fill %d bytes",
 241                       min),
 242                    min);
 243        flush();
 244        do {
 245                ssize_t ret = xread(input_fd, input_buffer + input_len,
 246                                sizeof(input_buffer) - input_len);
 247                if (ret <= 0) {
 248                        if (!ret)
 249                                die(_("early EOF"));
 250                        die_errno(_("read error on input"));
 251                }
 252                input_len += ret;
 253                if (from_stdin)
 254                        display_throughput(progress, consumed_bytes + input_len);
 255        } while (input_len < min);
 256        return input_buffer;
 257}
 258
 259static void use(int bytes)
 260{
 261        if (bytes > input_len)
 262                die(_("used more bytes than were available"));
 263        input_crc32 = crc32(input_crc32, input_buffer + input_offset, bytes);
 264        input_len -= bytes;
 265        input_offset += bytes;
 266
 267        /* make sure off_t is sufficiently large not to wrap */
 268        if (signed_add_overflows(consumed_bytes, bytes))
 269                die(_("pack too large for current definition of off_t"));
 270        consumed_bytes += bytes;
 271}
 272
 273static const char *open_pack_file(const char *pack_name)
 274{
 275        if (from_stdin) {
 276                input_fd = 0;
 277                if (!pack_name) {
 278                        static char tmp_file[PATH_MAX];
 279                        output_fd = odb_mkstemp(tmp_file, sizeof(tmp_file),
 280                                                "pack/tmp_pack_XXXXXX");
 281                        pack_name = xstrdup(tmp_file);
 282                } else
 283                        output_fd = open(pack_name, O_CREAT|O_EXCL|O_RDWR, 0600);
 284                if (output_fd < 0)
 285                        die_errno(_("unable to create '%s'"), pack_name);
 286                pack_fd = output_fd;
 287        } else {
 288                input_fd = open(pack_name, O_RDONLY);
 289                if (input_fd < 0)
 290                        die_errno(_("cannot open packfile '%s'"), pack_name);
 291                output_fd = -1;
 292                pack_fd = input_fd;
 293        }
 294        git_SHA1_Init(&input_ctx);
 295        return pack_name;
 296}
 297
 298static void parse_pack_header(void)
 299{
 300        struct pack_header *hdr = fill(sizeof(struct pack_header));
 301
 302        /* Header consistency check */
 303        if (hdr->hdr_signature != htonl(PACK_SIGNATURE))
 304                die(_("pack signature mismatch"));
 305        if (!pack_version_ok(hdr->hdr_version))
 306                die(_("pack version %"PRIu32" unsupported"),
 307                        ntohl(hdr->hdr_version));
 308
 309        nr_objects = ntohl(hdr->hdr_entries);
 310        use(sizeof(struct pack_header));
 311}
 312
 313static NORETURN void bad_object(unsigned long offset, const char *format,
 314                       ...) __attribute__((format (printf, 2, 3)));
 315
 316static NORETURN void bad_object(unsigned long offset, const char *format, ...)
 317{
 318        va_list params;
 319        char buf[1024];
 320
 321        va_start(params, format);
 322        vsnprintf(buf, sizeof(buf), format, params);
 323        va_end(params);
 324        die(_("pack has bad object at offset %lu: %s"), offset, buf);
 325}
 326
 327static inline struct thread_local *get_thread_data(void)
 328{
 329#ifndef NO_PTHREADS
 330        if (threads_active)
 331                return pthread_getspecific(key);
 332        assert(!threads_active &&
 333               "This should only be reached when all threads are gone");
 334#endif
 335        return &nothread_data;
 336}
 337
 338#ifndef NO_PTHREADS
 339static void set_thread_data(struct thread_local *data)
 340{
 341        if (threads_active)
 342                pthread_setspecific(key, data);
 343}
 344#endif
 345
 346static struct base_data *alloc_base_data(void)
 347{
 348        struct base_data *base = xmalloc(sizeof(struct base_data));
 349        memset(base, 0, sizeof(*base));
 350        base->ref_last = -1;
 351        base->ofs_last = -1;
 352        return base;
 353}
 354
 355static void free_base_data(struct base_data *c)
 356{
 357        if (c->data) {
 358                free(c->data);
 359                c->data = NULL;
 360                get_thread_data()->base_cache_used -= c->size;
 361        }
 362}
 363
 364static void prune_base_data(struct base_data *retain)
 365{
 366        struct base_data *b;
 367        struct thread_local *data = get_thread_data();
 368        for (b = data->base_cache;
 369             data->base_cache_used > delta_base_cache_limit && b;
 370             b = b->child) {
 371                if (b->data && b != retain)
 372                        free_base_data(b);
 373        }
 374}
 375
 376static void link_base_data(struct base_data *base, struct base_data *c)
 377{
 378        if (base)
 379                base->child = c;
 380        else
 381                get_thread_data()->base_cache = c;
 382
 383        c->base = base;
 384        c->child = NULL;
 385        if (c->data)
 386                get_thread_data()->base_cache_used += c->size;
 387        prune_base_data(c);
 388}
 389
 390static void unlink_base_data(struct base_data *c)
 391{
 392        struct base_data *base = c->base;
 393        if (base)
 394                base->child = NULL;
 395        else
 396                get_thread_data()->base_cache = NULL;
 397        free_base_data(c);
 398}
 399
 400static int is_delta_type(enum object_type type)
 401{
 402        return (type == OBJ_REF_DELTA || type == OBJ_OFS_DELTA);
 403}
 404
 405static void *unpack_entry_data(unsigned long offset, unsigned long size,
 406                               enum object_type type, unsigned char *sha1)
 407{
 408        static char fixed_buf[8192];
 409        int status;
 410        git_zstream stream;
 411        void *buf;
 412        git_SHA_CTX c;
 413        char hdr[32];
 414        int hdrlen;
 415
 416        if (!is_delta_type(type)) {
 417                hdrlen = sprintf(hdr, "%s %lu", typename(type), size) + 1;
 418                git_SHA1_Init(&c);
 419                git_SHA1_Update(&c, hdr, hdrlen);
 420        } else
 421                sha1 = NULL;
 422        if (type == OBJ_BLOB && size > big_file_threshold)
 423                buf = fixed_buf;
 424        else
 425                buf = xmalloc(size);
 426
 427        memset(&stream, 0, sizeof(stream));
 428        git_inflate_init(&stream);
 429        stream.next_out = buf;
 430        stream.avail_out = buf == fixed_buf ? sizeof(fixed_buf) : size;
 431
 432        do {
 433                unsigned char *last_out = stream.next_out;
 434                stream.next_in = fill(1);
 435                stream.avail_in = input_len;
 436                status = git_inflate(&stream, 0);
 437                use(input_len - stream.avail_in);
 438                if (sha1)
 439                        git_SHA1_Update(&c, last_out, stream.next_out - last_out);
 440                if (buf == fixed_buf) {
 441                        stream.next_out = buf;
 442                        stream.avail_out = sizeof(fixed_buf);
 443                }
 444        } while (status == Z_OK);
 445        if (stream.total_out != size || status != Z_STREAM_END)
 446                bad_object(offset, _("inflate returned %d"), status);
 447        git_inflate_end(&stream);
 448        if (sha1)
 449                git_SHA1_Final(sha1, &c);
 450        return buf == fixed_buf ? NULL : buf;
 451}
 452
 453static void *unpack_raw_entry(struct object_entry *obj,
 454                              union delta_base *delta_base,
 455                              unsigned char *sha1)
 456{
 457        unsigned char *p;
 458        unsigned long size, c;
 459        off_t base_offset;
 460        unsigned shift;
 461        void *data;
 462
 463        obj->idx.offset = consumed_bytes;
 464        input_crc32 = crc32(0, NULL, 0);
 465
 466        p = fill(1);
 467        c = *p;
 468        use(1);
 469        obj->type = (c >> 4) & 7;
 470        size = (c & 15);
 471        shift = 4;
 472        while (c & 0x80) {
 473                p = fill(1);
 474                c = *p;
 475                use(1);
 476                size += (c & 0x7f) << shift;
 477                shift += 7;
 478        }
 479        obj->size = size;
 480
 481        switch (obj->type) {
 482        case OBJ_REF_DELTA:
 483                hashcpy(delta_base->sha1, fill(20));
 484                use(20);
 485                break;
 486        case OBJ_OFS_DELTA:
 487                memset(delta_base, 0, sizeof(*delta_base));
 488                p = fill(1);
 489                c = *p;
 490                use(1);
 491                base_offset = c & 127;
 492                while (c & 128) {
 493                        base_offset += 1;
 494                        if (!base_offset || MSB(base_offset, 7))
 495                                bad_object(obj->idx.offset, _("offset value overflow for delta base object"));
 496                        p = fill(1);
 497                        c = *p;
 498                        use(1);
 499                        base_offset = (base_offset << 7) + (c & 127);
 500                }
 501                delta_base->offset = obj->idx.offset - base_offset;
 502                if (delta_base->offset <= 0 || delta_base->offset >= obj->idx.offset)
 503                        bad_object(obj->idx.offset, _("delta base offset is out of bound"));
 504                break;
 505        case OBJ_COMMIT:
 506        case OBJ_TREE:
 507        case OBJ_BLOB:
 508        case OBJ_TAG:
 509                break;
 510        default:
 511                bad_object(obj->idx.offset, _("unknown object type %d"), obj->type);
 512        }
 513        obj->hdr_size = consumed_bytes - obj->idx.offset;
 514
 515        data = unpack_entry_data(obj->idx.offset, obj->size, obj->type, sha1);
 516        obj->idx.crc32 = input_crc32;
 517        return data;
 518}
 519
 520static void *unpack_data(struct object_entry *obj,
 521                         int (*consume)(const unsigned char *, unsigned long, void *),
 522                         void *cb_data)
 523{
 524        off_t from = obj[0].idx.offset + obj[0].hdr_size;
 525        unsigned long len = obj[1].idx.offset - from;
 526        unsigned char *data, *inbuf;
 527        git_zstream stream;
 528        int status;
 529
 530        data = xmalloc(consume ? 64*1024 : obj->size);
 531        inbuf = xmalloc((len < 64*1024) ? len : 64*1024);
 532
 533        memset(&stream, 0, sizeof(stream));
 534        git_inflate_init(&stream);
 535        stream.next_out = data;
 536        stream.avail_out = consume ? 64*1024 : obj->size;
 537
 538        do {
 539                ssize_t n = (len < 64*1024) ? len : 64*1024;
 540                n = pread(pack_fd, inbuf, n, from);
 541                if (n < 0)
 542                        die_errno(_("cannot pread pack file"));
 543                if (!n)
 544                        die(Q_("premature end of pack file, %lu byte missing",
 545                               "premature end of pack file, %lu bytes missing",
 546                               len),
 547                            len);
 548                from += n;
 549                len -= n;
 550                stream.next_in = inbuf;
 551                stream.avail_in = n;
 552                if (!consume)
 553                        status = git_inflate(&stream, 0);
 554                else {
 555                        do {
 556                                status = git_inflate(&stream, 0);
 557                                if (consume(data, stream.next_out - data, cb_data)) {
 558                                        free(inbuf);
 559                                        free(data);
 560                                        return NULL;
 561                                }
 562                                stream.next_out = data;
 563                                stream.avail_out = 64*1024;
 564                        } while (status == Z_OK && stream.avail_in);
 565                }
 566        } while (len && status == Z_OK && !stream.avail_in);
 567
 568        /* This has been inflated OK when first encountered, so... */
 569        if (status != Z_STREAM_END || stream.total_out != obj->size)
 570                die(_("serious inflate inconsistency"));
 571
 572        git_inflate_end(&stream);
 573        free(inbuf);
 574        if (consume) {
 575                free(data);
 576                data = NULL;
 577        }
 578        return data;
 579}
 580
 581static void *get_data_from_pack(struct object_entry *obj)
 582{
 583        return unpack_data(obj, NULL, NULL);
 584}
 585
 586static int compare_delta_bases(const union delta_base *base1,
 587                               const union delta_base *base2,
 588                               enum object_type type1,
 589                               enum object_type type2)
 590{
 591        int cmp = type1 - type2;
 592        if (cmp)
 593                return cmp;
 594        return memcmp(base1, base2, UNION_BASE_SZ);
 595}
 596
 597static int find_delta(const union delta_base *base, enum object_type type)
 598{
 599        int first = 0, last = nr_deltas;
 600
 601        while (first < last) {
 602                int next = (first + last) / 2;
 603                struct delta_entry *delta = &deltas[next];
 604                int cmp;
 605
 606                cmp = compare_delta_bases(base, &delta->base,
 607                                          type, objects[delta->obj_no].type);
 608                if (!cmp)
 609                        return next;
 610                if (cmp < 0) {
 611                        last = next;
 612                        continue;
 613                }
 614                first = next+1;
 615        }
 616        return -first-1;
 617}
 618
 619static void find_delta_children(const union delta_base *base,
 620                                int *first_index, int *last_index,
 621                                enum object_type type)
 622{
 623        int first = find_delta(base, type);
 624        int last = first;
 625        int end = nr_deltas - 1;
 626
 627        if (first < 0) {
 628                *first_index = 0;
 629                *last_index = -1;
 630                return;
 631        }
 632        while (first > 0 && !memcmp(&deltas[first - 1].base, base, UNION_BASE_SZ))
 633                --first;
 634        while (last < end && !memcmp(&deltas[last + 1].base, base, UNION_BASE_SZ))
 635                ++last;
 636        *first_index = first;
 637        *last_index = last;
 638}
 639
 640struct compare_data {
 641        struct object_entry *entry;
 642        struct git_istream *st;
 643        unsigned char *buf;
 644        unsigned long buf_size;
 645};
 646
 647static int compare_objects(const unsigned char *buf, unsigned long size,
 648                           void *cb_data)
 649{
 650        struct compare_data *data = cb_data;
 651
 652        if (data->buf_size < size) {
 653                free(data->buf);
 654                data->buf = xmalloc(size);
 655                data->buf_size = size;
 656        }
 657
 658        while (size) {
 659                ssize_t len = read_istream(data->st, data->buf, size);
 660                if (len == 0)
 661                        die(_("SHA1 COLLISION FOUND WITH %s !"),
 662                            sha1_to_hex(data->entry->idx.sha1));
 663                if (len < 0)
 664                        die(_("unable to read %s"),
 665                            sha1_to_hex(data->entry->idx.sha1));
 666                if (memcmp(buf, data->buf, len))
 667                        die(_("SHA1 COLLISION FOUND WITH %s !"),
 668                            sha1_to_hex(data->entry->idx.sha1));
 669                size -= len;
 670                buf += len;
 671        }
 672        return 0;
 673}
 674
 675static int check_collison(struct object_entry *entry)
 676{
 677        struct compare_data data;
 678        enum object_type type;
 679        unsigned long size;
 680
 681        if (entry->size <= big_file_threshold || entry->type != OBJ_BLOB)
 682                return -1;
 683
 684        memset(&data, 0, sizeof(data));
 685        data.entry = entry;
 686        data.st = open_istream(entry->idx.sha1, &type, &size, NULL);
 687        if (!data.st)
 688                return -1;
 689        if (size != entry->size || type != entry->type)
 690                die(_("SHA1 COLLISION FOUND WITH %s !"),
 691                    sha1_to_hex(entry->idx.sha1));
 692        unpack_data(entry, compare_objects, &data);
 693        close_istream(data.st);
 694        free(data.buf);
 695        return 0;
 696}
 697
 698static void sha1_object(const void *data, struct object_entry *obj_entry,
 699                        unsigned long size, enum object_type type,
 700                        const unsigned char *sha1)
 701{
 702        void *new_data = NULL;
 703        int collision_test_needed;
 704
 705        assert(data || obj_entry);
 706
 707        read_lock();
 708        collision_test_needed = has_sha1_file(sha1);
 709        read_unlock();
 710
 711        if (collision_test_needed && !data) {
 712                read_lock();
 713                if (!check_collison(obj_entry))
 714                        collision_test_needed = 0;
 715                read_unlock();
 716        }
 717        if (collision_test_needed) {
 718                void *has_data;
 719                enum object_type has_type;
 720                unsigned long has_size;
 721                read_lock();
 722                has_type = sha1_object_info(sha1, &has_size);
 723                if (has_type != type || has_size != size)
 724                        die(_("SHA1 COLLISION FOUND WITH %s !"), sha1_to_hex(sha1));
 725                has_data = read_sha1_file(sha1, &has_type, &has_size);
 726                read_unlock();
 727                if (!data)
 728                        data = new_data = get_data_from_pack(obj_entry);
 729                if (!has_data)
 730                        die(_("cannot read existing object %s"), sha1_to_hex(sha1));
 731                if (size != has_size || type != has_type ||
 732                    memcmp(data, has_data, size) != 0)
 733                        die(_("SHA1 COLLISION FOUND WITH %s !"), sha1_to_hex(sha1));
 734                free(has_data);
 735        }
 736
 737        if (strict) {
 738                read_lock();
 739                if (type == OBJ_BLOB) {
 740                        struct blob *blob = lookup_blob(sha1);
 741                        if (blob)
 742                                blob->object.flags |= FLAG_CHECKED;
 743                        else
 744                                die(_("invalid blob object %s"), sha1_to_hex(sha1));
 745                } else {
 746                        struct object *obj;
 747                        int eaten;
 748                        void *buf = (void *) data;
 749
 750                        assert(data && "data can only be NULL for large _blobs_");
 751
 752                        /*
 753                         * we do not need to free the memory here, as the
 754                         * buf is deleted by the caller.
 755                         */
 756                        obj = parse_object_buffer(sha1, type, size, buf, &eaten);
 757                        if (!obj)
 758                                die(_("invalid %s"), typename(type));
 759                        if (fsck_object(obj, 1, fsck_error_function))
 760                                die(_("Error in object"));
 761                        if (fsck_walk(obj, mark_link, NULL))
 762                                die(_("Not all child objects of %s are reachable"), sha1_to_hex(obj->sha1));
 763
 764                        if (obj->type == OBJ_TREE) {
 765                                struct tree *item = (struct tree *) obj;
 766                                item->buffer = NULL;
 767                        }
 768                        if (obj->type == OBJ_COMMIT) {
 769                                struct commit *commit = (struct commit *) obj;
 770                                commit->buffer = NULL;
 771                        }
 772                        obj->flags |= FLAG_CHECKED;
 773                }
 774                read_unlock();
 775        }
 776
 777        free(new_data);
 778}
 779
 780/*
 781 * This function is part of find_unresolved_deltas(). There are two
 782 * walkers going in the opposite ways.
 783 *
 784 * The first one in find_unresolved_deltas() traverses down from
 785 * parent node to children, deflating nodes along the way. However,
 786 * memory for deflated nodes is limited by delta_base_cache_limit, so
 787 * at some point parent node's deflated content may be freed.
 788 *
 789 * The second walker is this function, which goes from current node up
 790 * to top parent if necessary to deflate the node. In normal
 791 * situation, its parent node would be already deflated, so it just
 792 * needs to apply delta.
 793 *
 794 * In the worst case scenario, parent node is no longer deflated because
 795 * we're running out of delta_base_cache_limit; we need to re-deflate
 796 * parents, possibly up to the top base.
 797 *
 798 * All deflated objects here are subject to be freed if we exceed
 799 * delta_base_cache_limit, just like in find_unresolved_deltas(), we
 800 * just need to make sure the last node is not freed.
 801 */
 802static void *get_base_data(struct base_data *c)
 803{
 804        if (!c->data) {
 805                struct object_entry *obj = c->obj;
 806                struct base_data **delta = NULL;
 807                int delta_nr = 0, delta_alloc = 0;
 808
 809                while (is_delta_type(c->obj->type) && !c->data) {
 810                        ALLOC_GROW(delta, delta_nr + 1, delta_alloc);
 811                        delta[delta_nr++] = c;
 812                        c = c->base;
 813                }
 814                if (!delta_nr) {
 815                        c->data = get_data_from_pack(obj);
 816                        c->size = obj->size;
 817                        get_thread_data()->base_cache_used += c->size;
 818                        prune_base_data(c);
 819                }
 820                for (; delta_nr > 0; delta_nr--) {
 821                        void *base, *raw;
 822                        c = delta[delta_nr - 1];
 823                        obj = c->obj;
 824                        base = get_base_data(c->base);
 825                        raw = get_data_from_pack(obj);
 826                        c->data = patch_delta(
 827                                base, c->base->size,
 828                                raw, obj->size,
 829                                &c->size);
 830                        free(raw);
 831                        if (!c->data)
 832                                bad_object(obj->idx.offset, _("failed to apply delta"));
 833                        get_thread_data()->base_cache_used += c->size;
 834                        prune_base_data(c);
 835                }
 836                free(delta);
 837        }
 838        return c->data;
 839}
 840
 841static void resolve_delta(struct object_entry *delta_obj,
 842                          struct base_data *base, struct base_data *result)
 843{
 844        void *base_data, *delta_data;
 845
 846        delta_obj->real_type = base->obj->real_type;
 847        if (show_stat) {
 848                delta_obj->delta_depth = base->obj->delta_depth + 1;
 849                deepest_delta_lock();
 850                if (deepest_delta < delta_obj->delta_depth)
 851                        deepest_delta = delta_obj->delta_depth;
 852                deepest_delta_unlock();
 853        }
 854        delta_obj->base_object_no = base->obj - objects;
 855        delta_data = get_data_from_pack(delta_obj);
 856        base_data = get_base_data(base);
 857        result->obj = delta_obj;
 858        result->data = patch_delta(base_data, base->size,
 859                                   delta_data, delta_obj->size, &result->size);
 860        free(delta_data);
 861        if (!result->data)
 862                bad_object(delta_obj->idx.offset, _("failed to apply delta"));
 863        hash_sha1_file(result->data, result->size,
 864                       typename(delta_obj->real_type), delta_obj->idx.sha1);
 865        sha1_object(result->data, NULL, result->size, delta_obj->real_type,
 866                    delta_obj->idx.sha1);
 867        counter_lock();
 868        nr_resolved_deltas++;
 869        counter_unlock();
 870}
 871
 872static struct base_data *find_unresolved_deltas_1(struct base_data *base,
 873                                                  struct base_data *prev_base)
 874{
 875        if (base->ref_last == -1 && base->ofs_last == -1) {
 876                union delta_base base_spec;
 877
 878                hashcpy(base_spec.sha1, base->obj->idx.sha1);
 879                find_delta_children(&base_spec,
 880                                    &base->ref_first, &base->ref_last, OBJ_REF_DELTA);
 881
 882                memset(&base_spec, 0, sizeof(base_spec));
 883                base_spec.offset = base->obj->idx.offset;
 884                find_delta_children(&base_spec,
 885                                    &base->ofs_first, &base->ofs_last, OBJ_OFS_DELTA);
 886
 887                if (base->ref_last == -1 && base->ofs_last == -1) {
 888                        free(base->data);
 889                        return NULL;
 890                }
 891
 892                link_base_data(prev_base, base);
 893        }
 894
 895        if (base->ref_first <= base->ref_last) {
 896                struct object_entry *child = objects + deltas[base->ref_first].obj_no;
 897                struct base_data *result = alloc_base_data();
 898
 899                assert(child->real_type == OBJ_REF_DELTA);
 900                resolve_delta(child, base, result);
 901                if (base->ref_first == base->ref_last && base->ofs_last == -1)
 902                        free_base_data(base);
 903
 904                base->ref_first++;
 905                return result;
 906        }
 907
 908        if (base->ofs_first <= base->ofs_last) {
 909                struct object_entry *child = objects + deltas[base->ofs_first].obj_no;
 910                struct base_data *result = alloc_base_data();
 911
 912                assert(child->real_type == OBJ_OFS_DELTA);
 913                resolve_delta(child, base, result);
 914                if (base->ofs_first == base->ofs_last)
 915                        free_base_data(base);
 916
 917                base->ofs_first++;
 918                return result;
 919        }
 920
 921        unlink_base_data(base);
 922        return NULL;
 923}
 924
 925static void find_unresolved_deltas(struct base_data *base)
 926{
 927        struct base_data *new_base, *prev_base = NULL;
 928        for (;;) {
 929                new_base = find_unresolved_deltas_1(base, prev_base);
 930
 931                if (new_base) {
 932                        prev_base = base;
 933                        base = new_base;
 934                } else {
 935                        free(base);
 936                        base = prev_base;
 937                        if (!base)
 938                                return;
 939                        prev_base = base->base;
 940                }
 941        }
 942}
 943
 944static int compare_delta_entry(const void *a, const void *b)
 945{
 946        const struct delta_entry *delta_a = a;
 947        const struct delta_entry *delta_b = b;
 948
 949        /* group by type (ref vs ofs) and then by value (sha-1 or offset) */
 950        return compare_delta_bases(&delta_a->base, &delta_b->base,
 951                                   objects[delta_a->obj_no].type,
 952                                   objects[delta_b->obj_no].type);
 953}
 954
 955static void resolve_base(struct object_entry *obj)
 956{
 957        struct base_data *base_obj = alloc_base_data();
 958        base_obj->obj = obj;
 959        base_obj->data = NULL;
 960        find_unresolved_deltas(base_obj);
 961}
 962
 963#ifndef NO_PTHREADS
 964static void *threaded_second_pass(void *data)
 965{
 966        set_thread_data(data);
 967        for (;;) {
 968                int i;
 969                counter_lock();
 970                display_progress(progress, nr_resolved_deltas);
 971                counter_unlock();
 972                work_lock();
 973                while (nr_dispatched < nr_objects &&
 974                       is_delta_type(objects[nr_dispatched].type))
 975                        nr_dispatched++;
 976                if (nr_dispatched >= nr_objects) {
 977                        work_unlock();
 978                        break;
 979                }
 980                i = nr_dispatched++;
 981                work_unlock();
 982
 983                resolve_base(&objects[i]);
 984        }
 985        return NULL;
 986}
 987#endif
 988
 989/*
 990 * First pass:
 991 * - find locations of all objects;
 992 * - calculate SHA1 of all non-delta objects;
 993 * - remember base (SHA1 or offset) for all deltas.
 994 */
 995static void parse_pack_objects(unsigned char *sha1)
 996{
 997        int i, nr_delays = 0;
 998        struct delta_entry *delta = deltas;
 999        struct stat st;
1000
1001        if (verbose)
1002                progress = start_progress(
1003                                from_stdin ? _("Receiving objects") : _("Indexing objects"),
1004                                nr_objects);
1005        for (i = 0; i < nr_objects; i++) {
1006                struct object_entry *obj = &objects[i];
1007                void *data = unpack_raw_entry(obj, &delta->base, obj->idx.sha1);
1008                obj->real_type = obj->type;
1009                if (is_delta_type(obj->type)) {
1010                        nr_deltas++;
1011                        delta->obj_no = i;
1012                        delta++;
1013                } else if (!data) {
1014                        /* large blobs, check later */
1015                        obj->real_type = OBJ_BAD;
1016                        nr_delays++;
1017                } else
1018                        sha1_object(data, NULL, obj->size, obj->type, obj->idx.sha1);
1019                free(data);
1020                display_progress(progress, i+1);
1021        }
1022        objects[i].idx.offset = consumed_bytes;
1023        stop_progress(&progress);
1024
1025        /* Check pack integrity */
1026        flush();
1027        git_SHA1_Final(sha1, &input_ctx);
1028        if (hashcmp(fill(20), sha1))
1029                die(_("pack is corrupted (SHA1 mismatch)"));
1030        use(20);
1031
1032        /* If input_fd is a file, we should have reached its end now. */
1033        if (fstat(input_fd, &st))
1034                die_errno(_("cannot fstat packfile"));
1035        if (S_ISREG(st.st_mode) &&
1036                        lseek(input_fd, 0, SEEK_CUR) - input_len != st.st_size)
1037                die(_("pack has junk at the end"));
1038
1039        for (i = 0; i < nr_objects; i++) {
1040                struct object_entry *obj = &objects[i];
1041                if (obj->real_type != OBJ_BAD)
1042                        continue;
1043                obj->real_type = obj->type;
1044                sha1_object(NULL, obj, obj->size, obj->type, obj->idx.sha1);
1045                nr_delays--;
1046        }
1047        if (nr_delays)
1048                die(_("confusion beyond insanity in parse_pack_objects()"));
1049}
1050
1051/*
1052 * Second pass:
1053 * - for all non-delta objects, look if it is used as a base for
1054 *   deltas;
1055 * - if used as a base, uncompress the object and apply all deltas,
1056 *   recursively checking if the resulting object is used as a base
1057 *   for some more deltas.
1058 */
1059static void resolve_deltas(void)
1060{
1061        int i;
1062
1063        if (!nr_deltas)
1064                return;
1065
1066        /* Sort deltas by base SHA1/offset for fast searching */
1067        qsort(deltas, nr_deltas, sizeof(struct delta_entry),
1068              compare_delta_entry);
1069
1070        if (verbose)
1071                progress = start_progress(_("Resolving deltas"), nr_deltas);
1072
1073#ifndef NO_PTHREADS
1074        nr_dispatched = 0;
1075        if (nr_threads > 1 || getenv("GIT_FORCE_THREADS")) {
1076                init_thread();
1077                for (i = 0; i < nr_threads; i++) {
1078                        int ret = pthread_create(&thread_data[i].thread, NULL,
1079                                                 threaded_second_pass, thread_data + i);
1080                        if (ret)
1081                                die(_("unable to create thread: %s"),
1082                                    strerror(ret));
1083                }
1084                for (i = 0; i < nr_threads; i++)
1085                        pthread_join(thread_data[i].thread, NULL);
1086                cleanup_thread();
1087                return;
1088        }
1089#endif
1090
1091        for (i = 0; i < nr_objects; i++) {
1092                struct object_entry *obj = &objects[i];
1093
1094                if (is_delta_type(obj->type))
1095                        continue;
1096                resolve_base(obj);
1097                display_progress(progress, nr_resolved_deltas);
1098        }
1099}
1100
1101/*
1102 * Third pass:
1103 * - append objects to convert thin pack to full pack if required
1104 * - write the final 20-byte SHA-1
1105 */
1106static void fix_unresolved_deltas(struct sha1file *f, int nr_unresolved);
1107static void conclude_pack(int fix_thin_pack, const char *curr_pack, unsigned char *pack_sha1)
1108{
1109        if (nr_deltas == nr_resolved_deltas) {
1110                stop_progress(&progress);
1111                /* Flush remaining pack final 20-byte SHA1. */
1112                flush();
1113                return;
1114        }
1115
1116        if (fix_thin_pack) {
1117                struct sha1file *f;
1118                unsigned char read_sha1[20], tail_sha1[20];
1119                struct strbuf msg = STRBUF_INIT;
1120                int nr_unresolved = nr_deltas - nr_resolved_deltas;
1121                int nr_objects_initial = nr_objects;
1122                if (nr_unresolved <= 0)
1123                        die(_("confusion beyond insanity"));
1124                objects = xrealloc(objects,
1125                                   (nr_objects + nr_unresolved + 1)
1126                                   * sizeof(*objects));
1127                memset(objects + nr_objects + 1, 0,
1128                       nr_unresolved * sizeof(*objects));
1129                f = sha1fd(output_fd, curr_pack);
1130                fix_unresolved_deltas(f, nr_unresolved);
1131                strbuf_addf(&msg, _("completed with %d local objects"),
1132                            nr_objects - nr_objects_initial);
1133                stop_progress_msg(&progress, msg.buf);
1134                strbuf_release(&msg);
1135                sha1close(f, tail_sha1, 0);
1136                hashcpy(read_sha1, pack_sha1);
1137                fixup_pack_header_footer(output_fd, pack_sha1,
1138                                         curr_pack, nr_objects,
1139                                         read_sha1, consumed_bytes-20);
1140                if (hashcmp(read_sha1, tail_sha1) != 0)
1141                        die(_("Unexpected tail checksum for %s "
1142                              "(disk corruption?)"), curr_pack);
1143        }
1144        if (nr_deltas != nr_resolved_deltas)
1145                die(Q_("pack has %d unresolved delta",
1146                       "pack has %d unresolved deltas",
1147                       nr_deltas - nr_resolved_deltas),
1148                    nr_deltas - nr_resolved_deltas);
1149}
1150
1151static int write_compressed(struct sha1file *f, void *in, unsigned int size)
1152{
1153        git_zstream stream;
1154        int status;
1155        unsigned char outbuf[4096];
1156
1157        memset(&stream, 0, sizeof(stream));
1158        git_deflate_init(&stream, zlib_compression_level);
1159        stream.next_in = in;
1160        stream.avail_in = size;
1161
1162        do {
1163                stream.next_out = outbuf;
1164                stream.avail_out = sizeof(outbuf);
1165                status = git_deflate(&stream, Z_FINISH);
1166                sha1write(f, outbuf, sizeof(outbuf) - stream.avail_out);
1167        } while (status == Z_OK);
1168
1169        if (status != Z_STREAM_END)
1170                die(_("unable to deflate appended object (%d)"), status);
1171        size = stream.total_out;
1172        git_deflate_end(&stream);
1173        return size;
1174}
1175
1176static struct object_entry *append_obj_to_pack(struct sha1file *f,
1177                               const unsigned char *sha1, void *buf,
1178                               unsigned long size, enum object_type type)
1179{
1180        struct object_entry *obj = &objects[nr_objects++];
1181        unsigned char header[10];
1182        unsigned long s = size;
1183        int n = 0;
1184        unsigned char c = (type << 4) | (s & 15);
1185        s >>= 4;
1186        while (s) {
1187                header[n++] = c | 0x80;
1188                c = s & 0x7f;
1189                s >>= 7;
1190        }
1191        header[n++] = c;
1192        crc32_begin(f);
1193        sha1write(f, header, n);
1194        obj[0].size = size;
1195        obj[0].hdr_size = n;
1196        obj[0].type = type;
1197        obj[0].real_type = type;
1198        obj[1].idx.offset = obj[0].idx.offset + n;
1199        obj[1].idx.offset += write_compressed(f, buf, size);
1200        obj[0].idx.crc32 = crc32_end(f);
1201        sha1flush(f);
1202        hashcpy(obj->idx.sha1, sha1);
1203        return obj;
1204}
1205
1206static int delta_pos_compare(const void *_a, const void *_b)
1207{
1208        struct delta_entry *a = *(struct delta_entry **)_a;
1209        struct delta_entry *b = *(struct delta_entry **)_b;
1210        return a->obj_no - b->obj_no;
1211}
1212
1213static void fix_unresolved_deltas(struct sha1file *f, int nr_unresolved)
1214{
1215        struct delta_entry **sorted_by_pos;
1216        int i, n = 0;
1217
1218        /*
1219         * Since many unresolved deltas may well be themselves base objects
1220         * for more unresolved deltas, we really want to include the
1221         * smallest number of base objects that would cover as much delta
1222         * as possible by picking the
1223         * trunc deltas first, allowing for other deltas to resolve without
1224         * additional base objects.  Since most base objects are to be found
1225         * before deltas depending on them, a good heuristic is to start
1226         * resolving deltas in the same order as their position in the pack.
1227         */
1228        sorted_by_pos = xmalloc(nr_unresolved * sizeof(*sorted_by_pos));
1229        for (i = 0; i < nr_deltas; i++) {
1230                if (objects[deltas[i].obj_no].real_type != OBJ_REF_DELTA)
1231                        continue;
1232                sorted_by_pos[n++] = &deltas[i];
1233        }
1234        qsort(sorted_by_pos, n, sizeof(*sorted_by_pos), delta_pos_compare);
1235
1236        for (i = 0; i < n; i++) {
1237                struct delta_entry *d = sorted_by_pos[i];
1238                enum object_type type;
1239                struct base_data *base_obj = alloc_base_data();
1240
1241                if (objects[d->obj_no].real_type != OBJ_REF_DELTA)
1242                        continue;
1243                base_obj->data = read_sha1_file(d->base.sha1, &type, &base_obj->size);
1244                if (!base_obj->data)
1245                        continue;
1246
1247                if (check_sha1_signature(d->base.sha1, base_obj->data,
1248                                base_obj->size, typename(type)))
1249                        die(_("local object %s is corrupt"), sha1_to_hex(d->base.sha1));
1250                base_obj->obj = append_obj_to_pack(f, d->base.sha1,
1251                                        base_obj->data, base_obj->size, type);
1252                find_unresolved_deltas(base_obj);
1253                display_progress(progress, nr_resolved_deltas);
1254        }
1255        free(sorted_by_pos);
1256}
1257
1258static void final(const char *final_pack_name, const char *curr_pack_name,
1259                  const char *final_index_name, const char *curr_index_name,
1260                  const char *keep_name, const char *keep_msg,
1261                  unsigned char *sha1)
1262{
1263        const char *report = "pack";
1264        char name[PATH_MAX];
1265        int err;
1266
1267        if (!from_stdin) {
1268                close(input_fd);
1269        } else {
1270                fsync_or_die(output_fd, curr_pack_name);
1271                err = close(output_fd);
1272                if (err)
1273                        die_errno(_("error while closing pack file"));
1274        }
1275
1276        if (keep_msg) {
1277                int keep_fd, keep_msg_len = strlen(keep_msg);
1278
1279                if (!keep_name)
1280                        keep_fd = odb_pack_keep(name, sizeof(name), sha1);
1281                else
1282                        keep_fd = open(keep_name, O_RDWR|O_CREAT|O_EXCL, 0600);
1283
1284                if (keep_fd < 0) {
1285                        if (errno != EEXIST)
1286                                die_errno(_("cannot write keep file '%s'"),
1287                                          keep_name);
1288                } else {
1289                        if (keep_msg_len > 0) {
1290                                write_or_die(keep_fd, keep_msg, keep_msg_len);
1291                                write_or_die(keep_fd, "\n", 1);
1292                        }
1293                        if (close(keep_fd) != 0)
1294                                die_errno(_("cannot close written keep file '%s'"),
1295                                    keep_name);
1296                        report = "keep";
1297                }
1298        }
1299
1300        if (final_pack_name != curr_pack_name) {
1301                if (!final_pack_name) {
1302                        snprintf(name, sizeof(name), "%s/pack/pack-%s.pack",
1303                                 get_object_directory(), sha1_to_hex(sha1));
1304                        final_pack_name = name;
1305                }
1306                if (move_temp_to_file(curr_pack_name, final_pack_name))
1307                        die(_("cannot store pack file"));
1308        } else if (from_stdin)
1309                chmod(final_pack_name, 0444);
1310
1311        if (final_index_name != curr_index_name) {
1312                if (!final_index_name) {
1313                        snprintf(name, sizeof(name), "%s/pack/pack-%s.idx",
1314                                 get_object_directory(), sha1_to_hex(sha1));
1315                        final_index_name = name;
1316                }
1317                if (move_temp_to_file(curr_index_name, final_index_name))
1318                        die(_("cannot store index file"));
1319        } else
1320                chmod(final_index_name, 0444);
1321
1322        if (!from_stdin) {
1323                printf("%s\n", sha1_to_hex(sha1));
1324        } else {
1325                char buf[48];
1326                int len = snprintf(buf, sizeof(buf), "%s\t%s\n",
1327                                   report, sha1_to_hex(sha1));
1328                write_or_die(1, buf, len);
1329
1330                /*
1331                 * Let's just mimic git-unpack-objects here and write
1332                 * the last part of the input buffer to stdout.
1333                 */
1334                while (input_len) {
1335                        err = xwrite(1, input_buffer + input_offset, input_len);
1336                        if (err <= 0)
1337                                break;
1338                        input_len -= err;
1339                        input_offset += err;
1340                }
1341        }
1342}
1343
1344static int git_index_pack_config(const char *k, const char *v, void *cb)
1345{
1346        struct pack_idx_option *opts = cb;
1347
1348        if (!strcmp(k, "pack.indexversion")) {
1349                opts->version = git_config_int(k, v);
1350                if (opts->version > 2)
1351                        die(_("bad pack.indexversion=%"PRIu32), opts->version);
1352                return 0;
1353        }
1354        if (!strcmp(k, "pack.threads")) {
1355                nr_threads = git_config_int(k, v);
1356                if (nr_threads < 0)
1357                        die(_("invalid number of threads specified (%d)"),
1358                            nr_threads);
1359#ifdef NO_PTHREADS
1360                if (nr_threads != 1)
1361                        warning(_("no threads support, ignoring %s"), k);
1362                nr_threads = 1;
1363#endif
1364                return 0;
1365        }
1366        return git_default_config(k, v, cb);
1367}
1368
1369static int cmp_uint32(const void *a_, const void *b_)
1370{
1371        uint32_t a = *((uint32_t *)a_);
1372        uint32_t b = *((uint32_t *)b_);
1373
1374        return (a < b) ? -1 : (a != b);
1375}
1376
1377static void read_v2_anomalous_offsets(struct packed_git *p,
1378                                      struct pack_idx_option *opts)
1379{
1380        const uint32_t *idx1, *idx2;
1381        uint32_t i;
1382
1383        /* The address of the 4-byte offset table */
1384        idx1 = (((const uint32_t *)p->index_data)
1385                + 2 /* 8-byte header */
1386                + 256 /* fan out */
1387                + 5 * p->num_objects /* 20-byte SHA-1 table */
1388                + p->num_objects /* CRC32 table */
1389                );
1390
1391        /* The address of the 8-byte offset table */
1392        idx2 = idx1 + p->num_objects;
1393
1394        for (i = 0; i < p->num_objects; i++) {
1395                uint32_t off = ntohl(idx1[i]);
1396                if (!(off & 0x80000000))
1397                        continue;
1398                off = off & 0x7fffffff;
1399                if (idx2[off * 2])
1400                        continue;
1401                /*
1402                 * The real offset is ntohl(idx2[off * 2]) in high 4
1403                 * octets, and ntohl(idx2[off * 2 + 1]) in low 4
1404                 * octets.  But idx2[off * 2] is Zero!!!
1405                 */
1406                ALLOC_GROW(opts->anomaly, opts->anomaly_nr + 1, opts->anomaly_alloc);
1407                opts->anomaly[opts->anomaly_nr++] = ntohl(idx2[off * 2 + 1]);
1408        }
1409
1410        if (1 < opts->anomaly_nr)
1411                qsort(opts->anomaly, opts->anomaly_nr, sizeof(uint32_t), cmp_uint32);
1412}
1413
1414static void read_idx_option(struct pack_idx_option *opts, const char *pack_name)
1415{
1416        struct packed_git *p = add_packed_git(pack_name, strlen(pack_name), 1);
1417
1418        if (!p)
1419                die(_("Cannot open existing pack file '%s'"), pack_name);
1420        if (open_pack_index(p))
1421                die(_("Cannot open existing pack idx file for '%s'"), pack_name);
1422
1423        /* Read the attributes from the existing idx file */
1424        opts->version = p->index_version;
1425
1426        if (opts->version == 2)
1427                read_v2_anomalous_offsets(p, opts);
1428
1429        /*
1430         * Get rid of the idx file as we do not need it anymore.
1431         * NEEDSWORK: extract this bit from free_pack_by_name() in
1432         * sha1_file.c, perhaps?  It shouldn't matter very much as we
1433         * know we haven't installed this pack (hence we never have
1434         * read anything from it).
1435         */
1436        close_pack_index(p);
1437        free(p);
1438}
1439
1440static void show_pack_info(int stat_only)
1441{
1442        int i, baseobjects = nr_objects - nr_deltas;
1443        unsigned long *chain_histogram = NULL;
1444
1445        if (deepest_delta)
1446                chain_histogram = xcalloc(deepest_delta, sizeof(unsigned long));
1447
1448        for (i = 0; i < nr_objects; i++) {
1449                struct object_entry *obj = &objects[i];
1450
1451                if (is_delta_type(obj->type))
1452                        chain_histogram[obj->delta_depth - 1]++;
1453                if (stat_only)
1454                        continue;
1455                printf("%s %-6s %lu %lu %"PRIuMAX,
1456                       sha1_to_hex(obj->idx.sha1),
1457                       typename(obj->real_type), obj->size,
1458                       (unsigned long)(obj[1].idx.offset - obj->idx.offset),
1459                       (uintmax_t)obj->idx.offset);
1460                if (is_delta_type(obj->type)) {
1461                        struct object_entry *bobj = &objects[obj->base_object_no];
1462                        printf(" %u %s", obj->delta_depth, sha1_to_hex(bobj->idx.sha1));
1463                }
1464                putchar('\n');
1465        }
1466
1467        if (baseobjects)
1468                printf_ln(Q_("non delta: %d object",
1469                             "non delta: %d objects",
1470                             baseobjects),
1471                          baseobjects);
1472        for (i = 0; i < deepest_delta; i++) {
1473                if (!chain_histogram[i])
1474                        continue;
1475                printf_ln(Q_("chain length = %d: %lu object",
1476                             "chain length = %d: %lu objects",
1477                             chain_histogram[i]),
1478                          i + 1,
1479                          chain_histogram[i]);
1480        }
1481}
1482
1483int cmd_index_pack(int argc, const char **argv, const char *prefix)
1484{
1485        int i, fix_thin_pack = 0, verify = 0, stat_only = 0;
1486        const char *curr_pack, *curr_index;
1487        const char *index_name = NULL, *pack_name = NULL;
1488        const char *keep_name = NULL, *keep_msg = NULL;
1489        char *index_name_buf = NULL, *keep_name_buf = NULL;
1490        struct pack_idx_entry **idx_objects;
1491        struct pack_idx_option opts;
1492        unsigned char pack_sha1[20];
1493
1494        if (argc == 2 && !strcmp(argv[1], "-h"))
1495                usage(index_pack_usage);
1496
1497        read_replace_refs = 0;
1498
1499        reset_pack_idx_option(&opts);
1500        git_config(git_index_pack_config, &opts);
1501        if (prefix && chdir(prefix))
1502                die(_("Cannot come back to cwd"));
1503
1504        for (i = 1; i < argc; i++) {
1505                const char *arg = argv[i];
1506
1507                if (*arg == '-') {
1508                        if (!strcmp(arg, "--stdin")) {
1509                                from_stdin = 1;
1510                        } else if (!strcmp(arg, "--fix-thin")) {
1511                                fix_thin_pack = 1;
1512                        } else if (!strcmp(arg, "--strict")) {
1513                                strict = 1;
1514                        } else if (!strcmp(arg, "--verify")) {
1515                                verify = 1;
1516                        } else if (!strcmp(arg, "--verify-stat")) {
1517                                verify = 1;
1518                                show_stat = 1;
1519                        } else if (!strcmp(arg, "--verify-stat-only")) {
1520                                verify = 1;
1521                                show_stat = 1;
1522                                stat_only = 1;
1523                        } else if (!strcmp(arg, "--keep")) {
1524                                keep_msg = "";
1525                        } else if (!prefixcmp(arg, "--keep=")) {
1526                                keep_msg = arg + 7;
1527                        } else if (!prefixcmp(arg, "--threads=")) {
1528                                char *end;
1529                                nr_threads = strtoul(arg+10, &end, 0);
1530                                if (!arg[10] || *end || nr_threads < 0)
1531                                        usage(index_pack_usage);
1532#ifdef NO_PTHREADS
1533                                if (nr_threads != 1)
1534                                        warning(_("no threads support, "
1535                                                  "ignoring %s"), arg);
1536                                nr_threads = 1;
1537#endif
1538                        } else if (!prefixcmp(arg, "--pack_header=")) {
1539                                struct pack_header *hdr;
1540                                char *c;
1541
1542                                hdr = (struct pack_header *)input_buffer;
1543                                hdr->hdr_signature = htonl(PACK_SIGNATURE);
1544                                hdr->hdr_version = htonl(strtoul(arg + 14, &c, 10));
1545                                if (*c != ',')
1546                                        die(_("bad %s"), arg);
1547                                hdr->hdr_entries = htonl(strtoul(c + 1, &c, 10));
1548                                if (*c)
1549                                        die(_("bad %s"), arg);
1550                                input_len = sizeof(*hdr);
1551                        } else if (!strcmp(arg, "-v")) {
1552                                verbose = 1;
1553                        } else if (!strcmp(arg, "-o")) {
1554                                if (index_name || (i+1) >= argc)
1555                                        usage(index_pack_usage);
1556                                index_name = argv[++i];
1557                        } else if (!prefixcmp(arg, "--index-version=")) {
1558                                char *c;
1559                                opts.version = strtoul(arg + 16, &c, 10);
1560                                if (opts.version > 2)
1561                                        die(_("bad %s"), arg);
1562                                if (*c == ',')
1563                                        opts.off32_limit = strtoul(c+1, &c, 0);
1564                                if (*c || opts.off32_limit & 0x80000000)
1565                                        die(_("bad %s"), arg);
1566                        } else
1567                                usage(index_pack_usage);
1568                        continue;
1569                }
1570
1571                if (pack_name)
1572                        usage(index_pack_usage);
1573                pack_name = arg;
1574        }
1575
1576        if (!pack_name && !from_stdin)
1577                usage(index_pack_usage);
1578        if (fix_thin_pack && !from_stdin)
1579                die(_("--fix-thin cannot be used without --stdin"));
1580        if (!index_name && pack_name) {
1581                int len = strlen(pack_name);
1582                if (!has_extension(pack_name, ".pack"))
1583                        die(_("packfile name '%s' does not end with '.pack'"),
1584                            pack_name);
1585                index_name_buf = xmalloc(len);
1586                memcpy(index_name_buf, pack_name, len - 5);
1587                strcpy(index_name_buf + len - 5, ".idx");
1588                index_name = index_name_buf;
1589        }
1590        if (keep_msg && !keep_name && pack_name) {
1591                int len = strlen(pack_name);
1592                if (!has_extension(pack_name, ".pack"))
1593                        die(_("packfile name '%s' does not end with '.pack'"),
1594                            pack_name);
1595                keep_name_buf = xmalloc(len);
1596                memcpy(keep_name_buf, pack_name, len - 5);
1597                strcpy(keep_name_buf + len - 5, ".keep");
1598                keep_name = keep_name_buf;
1599        }
1600        if (verify) {
1601                if (!index_name)
1602                        die(_("--verify with no packfile name given"));
1603                read_idx_option(&opts, index_name);
1604                opts.flags |= WRITE_IDX_VERIFY | WRITE_IDX_STRICT;
1605        }
1606        if (strict)
1607                opts.flags |= WRITE_IDX_STRICT;
1608
1609#ifndef NO_PTHREADS
1610        if (!nr_threads) {
1611                nr_threads = online_cpus();
1612                /* An experiment showed that more threads does not mean faster */
1613                if (nr_threads > 3)
1614                        nr_threads = 3;
1615        }
1616#endif
1617
1618        curr_pack = open_pack_file(pack_name);
1619        parse_pack_header();
1620        objects = xcalloc(nr_objects + 1, sizeof(struct object_entry));
1621        deltas = xcalloc(nr_objects, sizeof(struct delta_entry));
1622        parse_pack_objects(pack_sha1);
1623        resolve_deltas();
1624        conclude_pack(fix_thin_pack, curr_pack, pack_sha1);
1625        free(deltas);
1626        if (strict)
1627                check_objects();
1628
1629        if (show_stat)
1630                show_pack_info(stat_only);
1631
1632        idx_objects = xmalloc((nr_objects) * sizeof(struct pack_idx_entry *));
1633        for (i = 0; i < nr_objects; i++)
1634                idx_objects[i] = &objects[i].idx;
1635        curr_index = write_idx_file(index_name, idx_objects, nr_objects, &opts, pack_sha1);
1636        free(idx_objects);
1637
1638        if (!verify)
1639                final(pack_name, curr_pack,
1640                      index_name, curr_index,
1641                      keep_name, keep_msg,
1642                      pack_sha1);
1643        else
1644                close(input_fd);
1645        free(objects);
1646        free(index_name_buf);
1647        free(keep_name_buf);
1648        if (pack_name == NULL)
1649                free((void *) curr_pack);
1650        if (index_name == NULL)
1651                free((void *) curr_index);
1652
1653        return 0;
1654}