builtin-pack-objects.con commit Convert existing die(..., strerror(errno)) to die_errno() (d824cbb)
   1#include "builtin.h"
   2#include "cache.h"
   3#include "attr.h"
   4#include "object.h"
   5#include "blob.h"
   6#include "commit.h"
   7#include "tag.h"
   8#include "tree.h"
   9#include "delta.h"
  10#include "pack.h"
  11#include "pack-revindex.h"
  12#include "csum-file.h"
  13#include "tree-walk.h"
  14#include "diff.h"
  15#include "revision.h"
  16#include "list-objects.h"
  17#include "progress.h"
  18#include "refs.h"
  19
  20#ifdef THREADED_DELTA_SEARCH
  21#include "thread-utils.h"
  22#include <pthread.h>
  23#endif
  24
  25static const char pack_usage[] = "\
  26git pack-objects [{ -q | --progress | --all-progress }] \n\
  27        [--max-pack-size=N] [--local] [--incremental] \n\
  28        [--window=N] [--window-memory=N] [--depth=N] \n\
  29        [--no-reuse-delta] [--no-reuse-object] [--delta-base-offset] \n\
  30        [--threads=N] [--non-empty] [--revs [--unpacked | --all]*] [--reflog] \n\
  31        [--stdout | base-name] [--include-tag] \n\
  32        [--keep-unreachable | --unpack-unreachable] \n\
  33        [<ref-list | <object-list]";
  34
  35struct object_entry {
  36        struct pack_idx_entry idx;
  37        unsigned long size;     /* uncompressed size */
  38        struct packed_git *in_pack;     /* already in pack */
  39        off_t in_pack_offset;
  40        struct object_entry *delta;     /* delta base object */
  41        struct object_entry *delta_child; /* deltified objects who bases me */
  42        struct object_entry *delta_sibling; /* other deltified objects who
  43                                             * uses the same base as me
  44                                             */
  45        void *delta_data;       /* cached delta (uncompressed) */
  46        unsigned long delta_size;       /* delta data size (uncompressed) */
  47        unsigned long z_delta_size;     /* delta data size (compressed) */
  48        unsigned int hash;      /* name hint hash */
  49        enum object_type type;
  50        enum object_type in_pack_type;  /* could be delta */
  51        unsigned char in_pack_header_size;
  52        unsigned char preferred_base; /* we do not pack this, but is available
  53                                       * to be used as the base object to delta
  54                                       * objects against.
  55                                       */
  56        unsigned char no_try_delta;
  57};
  58
  59/*
  60 * Objects we are going to pack are collected in objects array (dynamically
  61 * expanded).  nr_objects & nr_alloc controls this array.  They are stored
  62 * in the order we see -- typically rev-list --objects order that gives us
  63 * nice "minimum seek" order.
  64 */
  65static struct object_entry *objects;
  66static struct pack_idx_entry **written_list;
  67static uint32_t nr_objects, nr_alloc, nr_result, nr_written;
  68
  69static int non_empty;
  70static int reuse_delta = 1, reuse_object = 1;
  71static int keep_unreachable, unpack_unreachable, include_tag;
  72static int local;
  73static int incremental;
  74static int ignore_packed_keep;
  75static int allow_ofs_delta;
  76static const char *base_name;
  77static int progress = 1;
  78static int window = 10;
  79static uint32_t pack_size_limit, pack_size_limit_cfg;
  80static int depth = 50;
  81static int delta_search_threads;
  82static int pack_to_stdout;
  83static int num_preferred_base;
  84static struct progress *progress_state;
  85static int pack_compression_level = Z_DEFAULT_COMPRESSION;
  86static int pack_compression_seen;
  87
  88static unsigned long delta_cache_size = 0;
  89static unsigned long max_delta_cache_size = 0;
  90static unsigned long cache_max_small_delta_size = 1000;
  91
  92static unsigned long window_memory_limit = 0;
  93
  94/*
  95 * The object names in objects array are hashed with this hashtable,
  96 * to help looking up the entry by object name.
  97 * This hashtable is built after all the objects are seen.
  98 */
  99static int *object_ix;
 100static int object_ix_hashsz;
 101
 102/*
 103 * stats
 104 */
 105static uint32_t written, written_delta;
 106static uint32_t reused, reused_delta;
 107
 108
 109static void *get_delta(struct object_entry *entry)
 110{
 111        unsigned long size, base_size, delta_size;
 112        void *buf, *base_buf, *delta_buf;
 113        enum object_type type;
 114
 115        buf = read_sha1_file(entry->idx.sha1, &type, &size);
 116        if (!buf)
 117                die("unable to read %s", sha1_to_hex(entry->idx.sha1));
 118        base_buf = read_sha1_file(entry->delta->idx.sha1, &type, &base_size);
 119        if (!base_buf)
 120                die("unable to read %s", sha1_to_hex(entry->delta->idx.sha1));
 121        delta_buf = diff_delta(base_buf, base_size,
 122                               buf, size, &delta_size, 0);
 123        if (!delta_buf || delta_size != entry->delta_size)
 124                die("delta size changed");
 125        free(buf);
 126        free(base_buf);
 127        return delta_buf;
 128}
 129
 130static unsigned long do_compress(void **pptr, unsigned long size)
 131{
 132        z_stream stream;
 133        void *in, *out;
 134        unsigned long maxsize;
 135
 136        memset(&stream, 0, sizeof(stream));
 137        deflateInit(&stream, pack_compression_level);
 138        maxsize = deflateBound(&stream, size);
 139
 140        in = *pptr;
 141        out = xmalloc(maxsize);
 142        *pptr = out;
 143
 144        stream.next_in = in;
 145        stream.avail_in = size;
 146        stream.next_out = out;
 147        stream.avail_out = maxsize;
 148        while (deflate(&stream, Z_FINISH) == Z_OK)
 149                ; /* nothing */
 150        deflateEnd(&stream);
 151
 152        free(in);
 153        return stream.total_out;
 154}
 155
 156/*
 157 * The per-object header is a pretty dense thing, which is
 158 *  - first byte: low four bits are "size", then three bits of "type",
 159 *    and the high bit is "size continues".
 160 *  - each byte afterwards: low seven bits are size continuation,
 161 *    with the high bit being "size continues"
 162 */
 163static int encode_header(enum object_type type, unsigned long size, unsigned char *hdr)
 164{
 165        int n = 1;
 166        unsigned char c;
 167
 168        if (type < OBJ_COMMIT || type > OBJ_REF_DELTA)
 169                die("bad type %d", type);
 170
 171        c = (type << 4) | (size & 15);
 172        size >>= 4;
 173        while (size) {
 174                *hdr++ = c | 0x80;
 175                c = size & 0x7f;
 176                size >>= 7;
 177                n++;
 178        }
 179        *hdr = c;
 180        return n;
 181}
 182
 183/*
 184 * we are going to reuse the existing object data as is.  make
 185 * sure it is not corrupt.
 186 */
 187static int check_pack_inflate(struct packed_git *p,
 188                struct pack_window **w_curs,
 189                off_t offset,
 190                off_t len,
 191                unsigned long expect)
 192{
 193        z_stream stream;
 194        unsigned char fakebuf[4096], *in;
 195        int st;
 196
 197        memset(&stream, 0, sizeof(stream));
 198        git_inflate_init(&stream);
 199        do {
 200                in = use_pack(p, w_curs, offset, &stream.avail_in);
 201                stream.next_in = in;
 202                stream.next_out = fakebuf;
 203                stream.avail_out = sizeof(fakebuf);
 204                st = git_inflate(&stream, Z_FINISH);
 205                offset += stream.next_in - in;
 206        } while (st == Z_OK || st == Z_BUF_ERROR);
 207        git_inflate_end(&stream);
 208        return (st == Z_STREAM_END &&
 209                stream.total_out == expect &&
 210                stream.total_in == len) ? 0 : -1;
 211}
 212
 213static void copy_pack_data(struct sha1file *f,
 214                struct packed_git *p,
 215                struct pack_window **w_curs,
 216                off_t offset,
 217                off_t len)
 218{
 219        unsigned char *in;
 220        unsigned int avail;
 221
 222        while (len) {
 223                in = use_pack(p, w_curs, offset, &avail);
 224                if (avail > len)
 225                        avail = (unsigned int)len;
 226                sha1write(f, in, avail);
 227                offset += avail;
 228                len -= avail;
 229        }
 230}
 231
 232static unsigned long write_object(struct sha1file *f,
 233                                  struct object_entry *entry,
 234                                  off_t write_offset)
 235{
 236        unsigned long size, limit, datalen;
 237        void *buf;
 238        unsigned char header[10], dheader[10];
 239        unsigned hdrlen;
 240        enum object_type type;
 241        int usable_delta, to_reuse;
 242
 243        if (!pack_to_stdout)
 244                crc32_begin(f);
 245
 246        type = entry->type;
 247
 248        /* write limit if limited packsize and not first object */
 249        if (!pack_size_limit || !nr_written)
 250                limit = 0;
 251        else if (pack_size_limit <= write_offset)
 252                /*
 253                 * the earlier object did not fit the limit; avoid
 254                 * mistaking this with unlimited (i.e. limit = 0).
 255                 */
 256                limit = 1;
 257        else
 258                limit = pack_size_limit - write_offset;
 259
 260        if (!entry->delta)
 261                usable_delta = 0;       /* no delta */
 262        else if (!pack_size_limit)
 263               usable_delta = 1;        /* unlimited packfile */
 264        else if (entry->delta->idx.offset == (off_t)-1)
 265                usable_delta = 0;       /* base was written to another pack */
 266        else if (entry->delta->idx.offset)
 267                usable_delta = 1;       /* base already exists in this pack */
 268        else
 269                usable_delta = 0;       /* base could end up in another pack */
 270
 271        if (!reuse_object)
 272                to_reuse = 0;   /* explicit */
 273        else if (!entry->in_pack)
 274                to_reuse = 0;   /* can't reuse what we don't have */
 275        else if (type == OBJ_REF_DELTA || type == OBJ_OFS_DELTA)
 276                                /* check_object() decided it for us ... */
 277                to_reuse = usable_delta;
 278                                /* ... but pack split may override that */
 279        else if (type != entry->in_pack_type)
 280                to_reuse = 0;   /* pack has delta which is unusable */
 281        else if (entry->delta)
 282                to_reuse = 0;   /* we want to pack afresh */
 283        else
 284                to_reuse = 1;   /* we have it in-pack undeltified,
 285                                 * and we do not need to deltify it.
 286                                 */
 287
 288        if (!to_reuse) {
 289                no_reuse:
 290                if (!usable_delta) {
 291                        buf = read_sha1_file(entry->idx.sha1, &type, &size);
 292                        if (!buf)
 293                                die("unable to read %s", sha1_to_hex(entry->idx.sha1));
 294                        /*
 295                         * make sure no cached delta data remains from a
 296                         * previous attempt before a pack split occurred.
 297                         */
 298                        free(entry->delta_data);
 299                        entry->delta_data = NULL;
 300                        entry->z_delta_size = 0;
 301                } else if (entry->delta_data) {
 302                        size = entry->delta_size;
 303                        buf = entry->delta_data;
 304                        entry->delta_data = NULL;
 305                        type = (allow_ofs_delta && entry->delta->idx.offset) ?
 306                                OBJ_OFS_DELTA : OBJ_REF_DELTA;
 307                } else {
 308                        buf = get_delta(entry);
 309                        size = entry->delta_size;
 310                        type = (allow_ofs_delta && entry->delta->idx.offset) ?
 311                                OBJ_OFS_DELTA : OBJ_REF_DELTA;
 312                }
 313
 314                if (entry->z_delta_size)
 315                        datalen = entry->z_delta_size;
 316                else
 317                        datalen = do_compress(&buf, size);
 318
 319                /*
 320                 * The object header is a byte of 'type' followed by zero or
 321                 * more bytes of length.
 322                 */
 323                hdrlen = encode_header(type, size, header);
 324
 325                if (type == OBJ_OFS_DELTA) {
 326                        /*
 327                         * Deltas with relative base contain an additional
 328                         * encoding of the relative offset for the delta
 329                         * base from this object's position in the pack.
 330                         */
 331                        off_t ofs = entry->idx.offset - entry->delta->idx.offset;
 332                        unsigned pos = sizeof(dheader) - 1;
 333                        dheader[pos] = ofs & 127;
 334                        while (ofs >>= 7)
 335                                dheader[--pos] = 128 | (--ofs & 127);
 336                        if (limit && hdrlen + sizeof(dheader) - pos + datalen + 20 >= limit) {
 337                                free(buf);
 338                                return 0;
 339                        }
 340                        sha1write(f, header, hdrlen);
 341                        sha1write(f, dheader + pos, sizeof(dheader) - pos);
 342                        hdrlen += sizeof(dheader) - pos;
 343                } else if (type == OBJ_REF_DELTA) {
 344                        /*
 345                         * Deltas with a base reference contain
 346                         * an additional 20 bytes for the base sha1.
 347                         */
 348                        if (limit && hdrlen + 20 + datalen + 20 >= limit) {
 349                                free(buf);
 350                                return 0;
 351                        }
 352                        sha1write(f, header, hdrlen);
 353                        sha1write(f, entry->delta->idx.sha1, 20);
 354                        hdrlen += 20;
 355                } else {
 356                        if (limit && hdrlen + datalen + 20 >= limit) {
 357                                free(buf);
 358                                return 0;
 359                        }
 360                        sha1write(f, header, hdrlen);
 361                }
 362                sha1write(f, buf, datalen);
 363                free(buf);
 364        }
 365        else {
 366                struct packed_git *p = entry->in_pack;
 367                struct pack_window *w_curs = NULL;
 368                struct revindex_entry *revidx;
 369                off_t offset;
 370
 371                if (entry->delta)
 372                        type = (allow_ofs_delta && entry->delta->idx.offset) ?
 373                                OBJ_OFS_DELTA : OBJ_REF_DELTA;
 374                hdrlen = encode_header(type, entry->size, header);
 375
 376                offset = entry->in_pack_offset;
 377                revidx = find_pack_revindex(p, offset);
 378                datalen = revidx[1].offset - offset;
 379                if (!pack_to_stdout && p->index_version > 1 &&
 380                    check_pack_crc(p, &w_curs, offset, datalen, revidx->nr)) {
 381                        error("bad packed object CRC for %s", sha1_to_hex(entry->idx.sha1));
 382                        unuse_pack(&w_curs);
 383                        goto no_reuse;
 384                }
 385
 386                offset += entry->in_pack_header_size;
 387                datalen -= entry->in_pack_header_size;
 388                if (!pack_to_stdout && p->index_version == 1 &&
 389                    check_pack_inflate(p, &w_curs, offset, datalen, entry->size)) {
 390                        error("corrupt packed object for %s", sha1_to_hex(entry->idx.sha1));
 391                        unuse_pack(&w_curs);
 392                        goto no_reuse;
 393                }
 394
 395                if (type == OBJ_OFS_DELTA) {
 396                        off_t ofs = entry->idx.offset - entry->delta->idx.offset;
 397                        unsigned pos = sizeof(dheader) - 1;
 398                        dheader[pos] = ofs & 127;
 399                        while (ofs >>= 7)
 400                                dheader[--pos] = 128 | (--ofs & 127);
 401                        if (limit && hdrlen + sizeof(dheader) - pos + datalen + 20 >= limit) {
 402                                unuse_pack(&w_curs);
 403                                return 0;
 404                        }
 405                        sha1write(f, header, hdrlen);
 406                        sha1write(f, dheader + pos, sizeof(dheader) - pos);
 407                        hdrlen += sizeof(dheader) - pos;
 408                        reused_delta++;
 409                } else if (type == OBJ_REF_DELTA) {
 410                        if (limit && hdrlen + 20 + datalen + 20 >= limit) {
 411                                unuse_pack(&w_curs);
 412                                return 0;
 413                        }
 414                        sha1write(f, header, hdrlen);
 415                        sha1write(f, entry->delta->idx.sha1, 20);
 416                        hdrlen += 20;
 417                        reused_delta++;
 418                } else {
 419                        if (limit && hdrlen + datalen + 20 >= limit) {
 420                                unuse_pack(&w_curs);
 421                                return 0;
 422                        }
 423                        sha1write(f, header, hdrlen);
 424                }
 425                copy_pack_data(f, p, &w_curs, offset, datalen);
 426                unuse_pack(&w_curs);
 427                reused++;
 428        }
 429        if (usable_delta)
 430                written_delta++;
 431        written++;
 432        if (!pack_to_stdout)
 433                entry->idx.crc32 = crc32_end(f);
 434        return hdrlen + datalen;
 435}
 436
 437static int write_one(struct sha1file *f,
 438                               struct object_entry *e,
 439                               off_t *offset)
 440{
 441        unsigned long size;
 442
 443        /* offset is non zero if object is written already. */
 444        if (e->idx.offset || e->preferred_base)
 445                return 1;
 446
 447        /* if we are deltified, write out base object first. */
 448        if (e->delta && !write_one(f, e->delta, offset))
 449                return 0;
 450
 451        e->idx.offset = *offset;
 452        size = write_object(f, e, *offset);
 453        if (!size) {
 454                e->idx.offset = 0;
 455                return 0;
 456        }
 457        written_list[nr_written++] = &e->idx;
 458
 459        /* make sure off_t is sufficiently large not to wrap */
 460        if (*offset > *offset + size)
 461                die("pack too large for current definition of off_t");
 462        *offset += size;
 463        return 1;
 464}
 465
 466/* forward declaration for write_pack_file */
 467static int adjust_perm(const char *path, mode_t mode);
 468
 469static void write_pack_file(void)
 470{
 471        uint32_t i = 0, j;
 472        struct sha1file *f;
 473        off_t offset;
 474        struct pack_header hdr;
 475        uint32_t nr_remaining = nr_result;
 476        time_t last_mtime = 0;
 477
 478        if (progress > pack_to_stdout)
 479                progress_state = start_progress("Writing objects", nr_result);
 480        written_list = xmalloc(nr_objects * sizeof(*written_list));
 481
 482        do {
 483                unsigned char sha1[20];
 484                char *pack_tmp_name = NULL;
 485
 486                if (pack_to_stdout) {
 487                        f = sha1fd_throughput(1, "<stdout>", progress_state);
 488                } else {
 489                        char tmpname[PATH_MAX];
 490                        int fd;
 491                        fd = odb_mkstemp(tmpname, sizeof(tmpname),
 492                                         "pack/tmp_pack_XXXXXX");
 493                        pack_tmp_name = xstrdup(tmpname);
 494                        f = sha1fd(fd, pack_tmp_name);
 495                }
 496
 497                hdr.hdr_signature = htonl(PACK_SIGNATURE);
 498                hdr.hdr_version = htonl(PACK_VERSION);
 499                hdr.hdr_entries = htonl(nr_remaining);
 500                sha1write(f, &hdr, sizeof(hdr));
 501                offset = sizeof(hdr);
 502                nr_written = 0;
 503                for (; i < nr_objects; i++) {
 504                        if (!write_one(f, objects + i, &offset))
 505                                break;
 506                        display_progress(progress_state, written);
 507                }
 508
 509                /*
 510                 * Did we write the wrong # entries in the header?
 511                 * If so, rewrite it like in fast-import
 512                 */
 513                if (pack_to_stdout) {
 514                        sha1close(f, sha1, CSUM_CLOSE);
 515                } else if (nr_written == nr_remaining) {
 516                        sha1close(f, sha1, CSUM_FSYNC);
 517                } else {
 518                        int fd = sha1close(f, sha1, 0);
 519                        fixup_pack_header_footer(fd, sha1, pack_tmp_name,
 520                                                 nr_written, sha1, offset);
 521                        close(fd);
 522                }
 523
 524                if (!pack_to_stdout) {
 525                        mode_t mode = umask(0);
 526                        struct stat st;
 527                        char *idx_tmp_name, tmpname[PATH_MAX];
 528
 529                        umask(mode);
 530                        mode = 0444 & ~mode;
 531
 532                        idx_tmp_name = write_idx_file(NULL, written_list,
 533                                                      nr_written, sha1);
 534
 535                        snprintf(tmpname, sizeof(tmpname), "%s-%s.pack",
 536                                 base_name, sha1_to_hex(sha1));
 537                        free_pack_by_name(tmpname);
 538                        if (adjust_perm(pack_tmp_name, mode))
 539                                die_errno("unable to make temporary pack file readable");
 540                        if (rename(pack_tmp_name, tmpname))
 541                                die_errno("unable to rename temporary pack file");
 542
 543                        /*
 544                         * Packs are runtime accessed in their mtime
 545                         * order since newer packs are more likely to contain
 546                         * younger objects.  So if we are creating multiple
 547                         * packs then we should modify the mtime of later ones
 548                         * to preserve this property.
 549                         */
 550                        if (stat(tmpname, &st) < 0) {
 551                                warning("failed to stat %s: %s",
 552                                        tmpname, strerror(errno));
 553                        } else if (!last_mtime) {
 554                                last_mtime = st.st_mtime;
 555                        } else {
 556                                struct utimbuf utb;
 557                                utb.actime = st.st_atime;
 558                                utb.modtime = --last_mtime;
 559                                if (utime(tmpname, &utb) < 0)
 560                                        warning("failed utime() on %s: %s",
 561                                                tmpname, strerror(errno));
 562                        }
 563
 564                        snprintf(tmpname, sizeof(tmpname), "%s-%s.idx",
 565                                 base_name, sha1_to_hex(sha1));
 566                        if (adjust_perm(idx_tmp_name, mode))
 567                                die_errno("unable to make temporary index file readable");
 568                        if (rename(idx_tmp_name, tmpname))
 569                                die_errno("unable to rename temporary index file");
 570
 571                        free(idx_tmp_name);
 572                        free(pack_tmp_name);
 573                        puts(sha1_to_hex(sha1));
 574                }
 575
 576                /* mark written objects as written to previous pack */
 577                for (j = 0; j < nr_written; j++) {
 578                        written_list[j]->offset = (off_t)-1;
 579                }
 580                nr_remaining -= nr_written;
 581        } while (nr_remaining && i < nr_objects);
 582
 583        free(written_list);
 584        stop_progress(&progress_state);
 585        if (written != nr_result)
 586                die("wrote %"PRIu32" objects while expecting %"PRIu32,
 587                        written, nr_result);
 588        /*
 589         * We have scanned through [0 ... i).  Since we have written
 590         * the correct number of objects,  the remaining [i ... nr_objects)
 591         * items must be either already written (due to out-of-order delta base)
 592         * or a preferred base.  Count those which are neither and complain if any.
 593         */
 594        for (j = 0; i < nr_objects; i++) {
 595                struct object_entry *e = objects + i;
 596                j += !e->idx.offset && !e->preferred_base;
 597        }
 598        if (j)
 599                die("wrote %"PRIu32" objects as expected but %"PRIu32
 600                        " unwritten", written, j);
 601}
 602
 603static int locate_object_entry_hash(const unsigned char *sha1)
 604{
 605        int i;
 606        unsigned int ui;
 607        memcpy(&ui, sha1, sizeof(unsigned int));
 608        i = ui % object_ix_hashsz;
 609        while (0 < object_ix[i]) {
 610                if (!hashcmp(sha1, objects[object_ix[i] - 1].idx.sha1))
 611                        return i;
 612                if (++i == object_ix_hashsz)
 613                        i = 0;
 614        }
 615        return -1 - i;
 616}
 617
 618static struct object_entry *locate_object_entry(const unsigned char *sha1)
 619{
 620        int i;
 621
 622        if (!object_ix_hashsz)
 623                return NULL;
 624
 625        i = locate_object_entry_hash(sha1);
 626        if (0 <= i)
 627                return &objects[object_ix[i]-1];
 628        return NULL;
 629}
 630
 631static void rehash_objects(void)
 632{
 633        uint32_t i;
 634        struct object_entry *oe;
 635
 636        object_ix_hashsz = nr_objects * 3;
 637        if (object_ix_hashsz < 1024)
 638                object_ix_hashsz = 1024;
 639        object_ix = xrealloc(object_ix, sizeof(int) * object_ix_hashsz);
 640        memset(object_ix, 0, sizeof(int) * object_ix_hashsz);
 641        for (i = 0, oe = objects; i < nr_objects; i++, oe++) {
 642                int ix = locate_object_entry_hash(oe->idx.sha1);
 643                if (0 <= ix)
 644                        continue;
 645                ix = -1 - ix;
 646                object_ix[ix] = i + 1;
 647        }
 648}
 649
 650static unsigned name_hash(const char *name)
 651{
 652        unsigned char c;
 653        unsigned hash = 0;
 654
 655        if (!name)
 656                return 0;
 657
 658        /*
 659         * This effectively just creates a sortable number from the
 660         * last sixteen non-whitespace characters. Last characters
 661         * count "most", so things that end in ".c" sort together.
 662         */
 663        while ((c = *name++) != 0) {
 664                if (isspace(c))
 665                        continue;
 666                hash = (hash >> 2) + (c << 24);
 667        }
 668        return hash;
 669}
 670
 671static void setup_delta_attr_check(struct git_attr_check *check)
 672{
 673        static struct git_attr *attr_delta;
 674
 675        if (!attr_delta)
 676                attr_delta = git_attr("delta", 5);
 677
 678        check[0].attr = attr_delta;
 679}
 680
 681static int no_try_delta(const char *path)
 682{
 683        struct git_attr_check check[1];
 684
 685        setup_delta_attr_check(check);
 686        if (git_checkattr(path, ARRAY_SIZE(check), check))
 687                return 0;
 688        if (ATTR_FALSE(check->value))
 689                return 1;
 690        return 0;
 691}
 692
 693static int add_object_entry(const unsigned char *sha1, enum object_type type,
 694                            const char *name, int exclude)
 695{
 696        struct object_entry *entry;
 697        struct packed_git *p, *found_pack = NULL;
 698        off_t found_offset = 0;
 699        int ix;
 700        unsigned hash = name_hash(name);
 701
 702        ix = nr_objects ? locate_object_entry_hash(sha1) : -1;
 703        if (ix >= 0) {
 704                if (exclude) {
 705                        entry = objects + object_ix[ix] - 1;
 706                        if (!entry->preferred_base)
 707                                nr_result--;
 708                        entry->preferred_base = 1;
 709                }
 710                return 0;
 711        }
 712
 713        if (!exclude && local && has_loose_object_nonlocal(sha1))
 714                return 0;
 715
 716        for (p = packed_git; p; p = p->next) {
 717                off_t offset = find_pack_entry_one(sha1, p);
 718                if (offset) {
 719                        if (!found_pack) {
 720                                found_offset = offset;
 721                                found_pack = p;
 722                        }
 723                        if (exclude)
 724                                break;
 725                        if (incremental)
 726                                return 0;
 727                        if (local && !p->pack_local)
 728                                return 0;
 729                        if (ignore_packed_keep && p->pack_local && p->pack_keep)
 730                                return 0;
 731                }
 732        }
 733
 734        if (nr_objects >= nr_alloc) {
 735                nr_alloc = (nr_alloc  + 1024) * 3 / 2;
 736                objects = xrealloc(objects, nr_alloc * sizeof(*entry));
 737        }
 738
 739        entry = objects + nr_objects++;
 740        memset(entry, 0, sizeof(*entry));
 741        hashcpy(entry->idx.sha1, sha1);
 742        entry->hash = hash;
 743        if (type)
 744                entry->type = type;
 745        if (exclude)
 746                entry->preferred_base = 1;
 747        else
 748                nr_result++;
 749        if (found_pack) {
 750                entry->in_pack = found_pack;
 751                entry->in_pack_offset = found_offset;
 752        }
 753
 754        if (object_ix_hashsz * 3 <= nr_objects * 4)
 755                rehash_objects();
 756        else
 757                object_ix[-1 - ix] = nr_objects;
 758
 759        display_progress(progress_state, nr_objects);
 760
 761        if (name && no_try_delta(name))
 762                entry->no_try_delta = 1;
 763
 764        return 1;
 765}
 766
 767struct pbase_tree_cache {
 768        unsigned char sha1[20];
 769        int ref;
 770        int temporary;
 771        void *tree_data;
 772        unsigned long tree_size;
 773};
 774
 775static struct pbase_tree_cache *(pbase_tree_cache[256]);
 776static int pbase_tree_cache_ix(const unsigned char *sha1)
 777{
 778        return sha1[0] % ARRAY_SIZE(pbase_tree_cache);
 779}
 780static int pbase_tree_cache_ix_incr(int ix)
 781{
 782        return (ix+1) % ARRAY_SIZE(pbase_tree_cache);
 783}
 784
 785static struct pbase_tree {
 786        struct pbase_tree *next;
 787        /* This is a phony "cache" entry; we are not
 788         * going to evict it nor find it through _get()
 789         * mechanism -- this is for the toplevel node that
 790         * would almost always change with any commit.
 791         */
 792        struct pbase_tree_cache pcache;
 793} *pbase_tree;
 794
 795static struct pbase_tree_cache *pbase_tree_get(const unsigned char *sha1)
 796{
 797        struct pbase_tree_cache *ent, *nent;
 798        void *data;
 799        unsigned long size;
 800        enum object_type type;
 801        int neigh;
 802        int my_ix = pbase_tree_cache_ix(sha1);
 803        int available_ix = -1;
 804
 805        /* pbase-tree-cache acts as a limited hashtable.
 806         * your object will be found at your index or within a few
 807         * slots after that slot if it is cached.
 808         */
 809        for (neigh = 0; neigh < 8; neigh++) {
 810                ent = pbase_tree_cache[my_ix];
 811                if (ent && !hashcmp(ent->sha1, sha1)) {
 812                        ent->ref++;
 813                        return ent;
 814                }
 815                else if (((available_ix < 0) && (!ent || !ent->ref)) ||
 816                         ((0 <= available_ix) &&
 817                          (!ent && pbase_tree_cache[available_ix])))
 818                        available_ix = my_ix;
 819                if (!ent)
 820                        break;
 821                my_ix = pbase_tree_cache_ix_incr(my_ix);
 822        }
 823
 824        /* Did not find one.  Either we got a bogus request or
 825         * we need to read and perhaps cache.
 826         */
 827        data = read_sha1_file(sha1, &type, &size);
 828        if (!data)
 829                return NULL;
 830        if (type != OBJ_TREE) {
 831                free(data);
 832                return NULL;
 833        }
 834
 835        /* We need to either cache or return a throwaway copy */
 836
 837        if (available_ix < 0)
 838                ent = NULL;
 839        else {
 840                ent = pbase_tree_cache[available_ix];
 841                my_ix = available_ix;
 842        }
 843
 844        if (!ent) {
 845                nent = xmalloc(sizeof(*nent));
 846                nent->temporary = (available_ix < 0);
 847        }
 848        else {
 849                /* evict and reuse */
 850                free(ent->tree_data);
 851                nent = ent;
 852        }
 853        hashcpy(nent->sha1, sha1);
 854        nent->tree_data = data;
 855        nent->tree_size = size;
 856        nent->ref = 1;
 857        if (!nent->temporary)
 858                pbase_tree_cache[my_ix] = nent;
 859        return nent;
 860}
 861
 862static void pbase_tree_put(struct pbase_tree_cache *cache)
 863{
 864        if (!cache->temporary) {
 865                cache->ref--;
 866                return;
 867        }
 868        free(cache->tree_data);
 869        free(cache);
 870}
 871
 872static int name_cmp_len(const char *name)
 873{
 874        int i;
 875        for (i = 0; name[i] && name[i] != '\n' && name[i] != '/'; i++)
 876                ;
 877        return i;
 878}
 879
 880static void add_pbase_object(struct tree_desc *tree,
 881                             const char *name,
 882                             int cmplen,
 883                             const char *fullname)
 884{
 885        struct name_entry entry;
 886        int cmp;
 887
 888        while (tree_entry(tree,&entry)) {
 889                if (S_ISGITLINK(entry.mode))
 890                        continue;
 891                cmp = tree_entry_len(entry.path, entry.sha1) != cmplen ? 1 :
 892                      memcmp(name, entry.path, cmplen);
 893                if (cmp > 0)
 894                        continue;
 895                if (cmp < 0)
 896                        return;
 897                if (name[cmplen] != '/') {
 898                        add_object_entry(entry.sha1,
 899                                         object_type(entry.mode),
 900                                         fullname, 1);
 901                        return;
 902                }
 903                if (S_ISDIR(entry.mode)) {
 904                        struct tree_desc sub;
 905                        struct pbase_tree_cache *tree;
 906                        const char *down = name+cmplen+1;
 907                        int downlen = name_cmp_len(down);
 908
 909                        tree = pbase_tree_get(entry.sha1);
 910                        if (!tree)
 911                                return;
 912                        init_tree_desc(&sub, tree->tree_data, tree->tree_size);
 913
 914                        add_pbase_object(&sub, down, downlen, fullname);
 915                        pbase_tree_put(tree);
 916                }
 917        }
 918}
 919
 920static unsigned *done_pbase_paths;
 921static int done_pbase_paths_num;
 922static int done_pbase_paths_alloc;
 923static int done_pbase_path_pos(unsigned hash)
 924{
 925        int lo = 0;
 926        int hi = done_pbase_paths_num;
 927        while (lo < hi) {
 928                int mi = (hi + lo) / 2;
 929                if (done_pbase_paths[mi] == hash)
 930                        return mi;
 931                if (done_pbase_paths[mi] < hash)
 932                        hi = mi;
 933                else
 934                        lo = mi + 1;
 935        }
 936        return -lo-1;
 937}
 938
 939static int check_pbase_path(unsigned hash)
 940{
 941        int pos = (!done_pbase_paths) ? -1 : done_pbase_path_pos(hash);
 942        if (0 <= pos)
 943                return 1;
 944        pos = -pos - 1;
 945        if (done_pbase_paths_alloc <= done_pbase_paths_num) {
 946                done_pbase_paths_alloc = alloc_nr(done_pbase_paths_alloc);
 947                done_pbase_paths = xrealloc(done_pbase_paths,
 948                                            done_pbase_paths_alloc *
 949                                            sizeof(unsigned));
 950        }
 951        done_pbase_paths_num++;
 952        if (pos < done_pbase_paths_num)
 953                memmove(done_pbase_paths + pos + 1,
 954                        done_pbase_paths + pos,
 955                        (done_pbase_paths_num - pos - 1) * sizeof(unsigned));
 956        done_pbase_paths[pos] = hash;
 957        return 0;
 958}
 959
 960static void add_preferred_base_object(const char *name)
 961{
 962        struct pbase_tree *it;
 963        int cmplen;
 964        unsigned hash = name_hash(name);
 965
 966        if (!num_preferred_base || check_pbase_path(hash))
 967                return;
 968
 969        cmplen = name_cmp_len(name);
 970        for (it = pbase_tree; it; it = it->next) {
 971                if (cmplen == 0) {
 972                        add_object_entry(it->pcache.sha1, OBJ_TREE, NULL, 1);
 973                }
 974                else {
 975                        struct tree_desc tree;
 976                        init_tree_desc(&tree, it->pcache.tree_data, it->pcache.tree_size);
 977                        add_pbase_object(&tree, name, cmplen, name);
 978                }
 979        }
 980}
 981
 982static void add_preferred_base(unsigned char *sha1)
 983{
 984        struct pbase_tree *it;
 985        void *data;
 986        unsigned long size;
 987        unsigned char tree_sha1[20];
 988
 989        if (window <= num_preferred_base++)
 990                return;
 991
 992        data = read_object_with_reference(sha1, tree_type, &size, tree_sha1);
 993        if (!data)
 994                return;
 995
 996        for (it = pbase_tree; it; it = it->next) {
 997                if (!hashcmp(it->pcache.sha1, tree_sha1)) {
 998                        free(data);
 999                        return;
1000                }
1001        }
1002
1003        it = xcalloc(1, sizeof(*it));
1004        it->next = pbase_tree;
1005        pbase_tree = it;
1006
1007        hashcpy(it->pcache.sha1, tree_sha1);
1008        it->pcache.tree_data = data;
1009        it->pcache.tree_size = size;
1010}
1011
1012static void check_object(struct object_entry *entry)
1013{
1014        if (entry->in_pack) {
1015                struct packed_git *p = entry->in_pack;
1016                struct pack_window *w_curs = NULL;
1017                const unsigned char *base_ref = NULL;
1018                struct object_entry *base_entry;
1019                unsigned long used, used_0;
1020                unsigned int avail;
1021                off_t ofs;
1022                unsigned char *buf, c;
1023
1024                buf = use_pack(p, &w_curs, entry->in_pack_offset, &avail);
1025
1026                /*
1027                 * We want in_pack_type even if we do not reuse delta
1028                 * since non-delta representations could still be reused.
1029                 */
1030                used = unpack_object_header_buffer(buf, avail,
1031                                                   &entry->in_pack_type,
1032                                                   &entry->size);
1033                if (used == 0)
1034                        goto give_up;
1035
1036                /*
1037                 * Determine if this is a delta and if so whether we can
1038                 * reuse it or not.  Otherwise let's find out as cheaply as
1039                 * possible what the actual type and size for this object is.
1040                 */
1041                switch (entry->in_pack_type) {
1042                default:
1043                        /* Not a delta hence we've already got all we need. */
1044                        entry->type = entry->in_pack_type;
1045                        entry->in_pack_header_size = used;
1046                        if (entry->type < OBJ_COMMIT || entry->type > OBJ_BLOB)
1047                                goto give_up;
1048                        unuse_pack(&w_curs);
1049                        return;
1050                case OBJ_REF_DELTA:
1051                        if (reuse_delta && !entry->preferred_base)
1052                                base_ref = use_pack(p, &w_curs,
1053                                                entry->in_pack_offset + used, NULL);
1054                        entry->in_pack_header_size = used + 20;
1055                        break;
1056                case OBJ_OFS_DELTA:
1057                        buf = use_pack(p, &w_curs,
1058                                       entry->in_pack_offset + used, NULL);
1059                        used_0 = 0;
1060                        c = buf[used_0++];
1061                        ofs = c & 127;
1062                        while (c & 128) {
1063                                ofs += 1;
1064                                if (!ofs || MSB(ofs, 7)) {
1065                                        error("delta base offset overflow in pack for %s",
1066                                              sha1_to_hex(entry->idx.sha1));
1067                                        goto give_up;
1068                                }
1069                                c = buf[used_0++];
1070                                ofs = (ofs << 7) + (c & 127);
1071                        }
1072                        ofs = entry->in_pack_offset - ofs;
1073                        if (ofs <= 0 || ofs >= entry->in_pack_offset) {
1074                                error("delta base offset out of bound for %s",
1075                                      sha1_to_hex(entry->idx.sha1));
1076                                goto give_up;
1077                        }
1078                        if (reuse_delta && !entry->preferred_base) {
1079                                struct revindex_entry *revidx;
1080                                revidx = find_pack_revindex(p, ofs);
1081                                if (!revidx)
1082                                        goto give_up;
1083                                base_ref = nth_packed_object_sha1(p, revidx->nr);
1084                        }
1085                        entry->in_pack_header_size = used + used_0;
1086                        break;
1087                }
1088
1089                if (base_ref && (base_entry = locate_object_entry(base_ref))) {
1090                        /*
1091                         * If base_ref was set above that means we wish to
1092                         * reuse delta data, and we even found that base
1093                         * in the list of objects we want to pack. Goodie!
1094                         *
1095                         * Depth value does not matter - find_deltas() will
1096                         * never consider reused delta as the base object to
1097                         * deltify other objects against, in order to avoid
1098                         * circular deltas.
1099                         */
1100                        entry->type = entry->in_pack_type;
1101                        entry->delta = base_entry;
1102                        entry->delta_size = entry->size;
1103                        entry->delta_sibling = base_entry->delta_child;
1104                        base_entry->delta_child = entry;
1105                        unuse_pack(&w_curs);
1106                        return;
1107                }
1108
1109                if (entry->type) {
1110                        /*
1111                         * This must be a delta and we already know what the
1112                         * final object type is.  Let's extract the actual
1113                         * object size from the delta header.
1114                         */
1115                        entry->size = get_size_from_delta(p, &w_curs,
1116                                        entry->in_pack_offset + entry->in_pack_header_size);
1117                        if (entry->size == 0)
1118                                goto give_up;
1119                        unuse_pack(&w_curs);
1120                        return;
1121                }
1122
1123                /*
1124                 * No choice but to fall back to the recursive delta walk
1125                 * with sha1_object_info() to find about the object type
1126                 * at this point...
1127                 */
1128                give_up:
1129                unuse_pack(&w_curs);
1130        }
1131
1132        entry->type = sha1_object_info(entry->idx.sha1, &entry->size);
1133        /*
1134         * The error condition is checked in prepare_pack().  This is
1135         * to permit a missing preferred base object to be ignored
1136         * as a preferred base.  Doing so can result in a larger
1137         * pack file, but the transfer will still take place.
1138         */
1139}
1140
1141static int pack_offset_sort(const void *_a, const void *_b)
1142{
1143        const struct object_entry *a = *(struct object_entry **)_a;
1144        const struct object_entry *b = *(struct object_entry **)_b;
1145
1146        /* avoid filesystem trashing with loose objects */
1147        if (!a->in_pack && !b->in_pack)
1148                return hashcmp(a->idx.sha1, b->idx.sha1);
1149
1150        if (a->in_pack < b->in_pack)
1151                return -1;
1152        if (a->in_pack > b->in_pack)
1153                return 1;
1154        return a->in_pack_offset < b->in_pack_offset ? -1 :
1155                        (a->in_pack_offset > b->in_pack_offset);
1156}
1157
1158static void get_object_details(void)
1159{
1160        uint32_t i;
1161        struct object_entry **sorted_by_offset;
1162
1163        sorted_by_offset = xcalloc(nr_objects, sizeof(struct object_entry *));
1164        for (i = 0; i < nr_objects; i++)
1165                sorted_by_offset[i] = objects + i;
1166        qsort(sorted_by_offset, nr_objects, sizeof(*sorted_by_offset), pack_offset_sort);
1167
1168        for (i = 0; i < nr_objects; i++)
1169                check_object(sorted_by_offset[i]);
1170
1171        free(sorted_by_offset);
1172}
1173
1174/*
1175 * We search for deltas in a list sorted by type, by filename hash, and then
1176 * by size, so that we see progressively smaller and smaller files.
1177 * That's because we prefer deltas to be from the bigger file
1178 * to the smaller -- deletes are potentially cheaper, but perhaps
1179 * more importantly, the bigger file is likely the more recent
1180 * one.  The deepest deltas are therefore the oldest objects which are
1181 * less susceptible to be accessed often.
1182 */
1183static int type_size_sort(const void *_a, const void *_b)
1184{
1185        const struct object_entry *a = *(struct object_entry **)_a;
1186        const struct object_entry *b = *(struct object_entry **)_b;
1187
1188        if (a->type > b->type)
1189                return -1;
1190        if (a->type < b->type)
1191                return 1;
1192        if (a->hash > b->hash)
1193                return -1;
1194        if (a->hash < b->hash)
1195                return 1;
1196        if (a->preferred_base > b->preferred_base)
1197                return -1;
1198        if (a->preferred_base < b->preferred_base)
1199                return 1;
1200        if (a->size > b->size)
1201                return -1;
1202        if (a->size < b->size)
1203                return 1;
1204        return a < b ? -1 : (a > b);  /* newest first */
1205}
1206
1207struct unpacked {
1208        struct object_entry *entry;
1209        void *data;
1210        struct delta_index *index;
1211        unsigned depth;
1212};
1213
1214static int delta_cacheable(unsigned long src_size, unsigned long trg_size,
1215                           unsigned long delta_size)
1216{
1217        if (max_delta_cache_size && delta_cache_size + delta_size > max_delta_cache_size)
1218                return 0;
1219
1220        if (delta_size < cache_max_small_delta_size)
1221                return 1;
1222
1223        /* cache delta, if objects are large enough compared to delta size */
1224        if ((src_size >> 20) + (trg_size >> 21) > (delta_size >> 10))
1225                return 1;
1226
1227        return 0;
1228}
1229
1230#ifdef THREADED_DELTA_SEARCH
1231
1232static pthread_mutex_t read_mutex = PTHREAD_MUTEX_INITIALIZER;
1233#define read_lock()             pthread_mutex_lock(&read_mutex)
1234#define read_unlock()           pthread_mutex_unlock(&read_mutex)
1235
1236static pthread_mutex_t cache_mutex = PTHREAD_MUTEX_INITIALIZER;
1237#define cache_lock()            pthread_mutex_lock(&cache_mutex)
1238#define cache_unlock()          pthread_mutex_unlock(&cache_mutex)
1239
1240static pthread_mutex_t progress_mutex = PTHREAD_MUTEX_INITIALIZER;
1241#define progress_lock()         pthread_mutex_lock(&progress_mutex)
1242#define progress_unlock()       pthread_mutex_unlock(&progress_mutex)
1243
1244#else
1245
1246#define read_lock()             (void)0
1247#define read_unlock()           (void)0
1248#define cache_lock()            (void)0
1249#define cache_unlock()          (void)0
1250#define progress_lock()         (void)0
1251#define progress_unlock()       (void)0
1252
1253#endif
1254
1255static int try_delta(struct unpacked *trg, struct unpacked *src,
1256                     unsigned max_depth, unsigned long *mem_usage)
1257{
1258        struct object_entry *trg_entry = trg->entry;
1259        struct object_entry *src_entry = src->entry;
1260        unsigned long trg_size, src_size, delta_size, sizediff, max_size, sz;
1261        unsigned ref_depth;
1262        enum object_type type;
1263        void *delta_buf;
1264
1265        /* Don't bother doing diffs between different types */
1266        if (trg_entry->type != src_entry->type)
1267                return -1;
1268
1269        /*
1270         * We do not bother to try a delta that we discarded
1271         * on an earlier try, but only when reusing delta data.
1272         */
1273        if (reuse_delta && trg_entry->in_pack &&
1274            trg_entry->in_pack == src_entry->in_pack &&
1275            trg_entry->in_pack_type != OBJ_REF_DELTA &&
1276            trg_entry->in_pack_type != OBJ_OFS_DELTA)
1277                return 0;
1278
1279        /* Let's not bust the allowed depth. */
1280        if (src->depth >= max_depth)
1281                return 0;
1282
1283        /* Now some size filtering heuristics. */
1284        trg_size = trg_entry->size;
1285        if (!trg_entry->delta) {
1286                max_size = trg_size/2 - 20;
1287                ref_depth = 1;
1288        } else {
1289                max_size = trg_entry->delta_size;
1290                ref_depth = trg->depth;
1291        }
1292        max_size = (uint64_t)max_size * (max_depth - src->depth) /
1293                                                (max_depth - ref_depth + 1);
1294        if (max_size == 0)
1295                return 0;
1296        src_size = src_entry->size;
1297        sizediff = src_size < trg_size ? trg_size - src_size : 0;
1298        if (sizediff >= max_size)
1299                return 0;
1300        if (trg_size < src_size / 32)
1301                return 0;
1302
1303        /* Load data if not already done */
1304        if (!trg->data) {
1305                read_lock();
1306                trg->data = read_sha1_file(trg_entry->idx.sha1, &type, &sz);
1307                read_unlock();
1308                if (!trg->data)
1309                        die("object %s cannot be read",
1310                            sha1_to_hex(trg_entry->idx.sha1));
1311                if (sz != trg_size)
1312                        die("object %s inconsistent object length (%lu vs %lu)",
1313                            sha1_to_hex(trg_entry->idx.sha1), sz, trg_size);
1314                *mem_usage += sz;
1315        }
1316        if (!src->data) {
1317                read_lock();
1318                src->data = read_sha1_file(src_entry->idx.sha1, &type, &sz);
1319                read_unlock();
1320                if (!src->data)
1321                        die("object %s cannot be read",
1322                            sha1_to_hex(src_entry->idx.sha1));
1323                if (sz != src_size)
1324                        die("object %s inconsistent object length (%lu vs %lu)",
1325                            sha1_to_hex(src_entry->idx.sha1), sz, src_size);
1326                *mem_usage += sz;
1327        }
1328        if (!src->index) {
1329                src->index = create_delta_index(src->data, src_size);
1330                if (!src->index) {
1331                        static int warned = 0;
1332                        if (!warned++)
1333                                warning("suboptimal pack - out of memory");
1334                        return 0;
1335                }
1336                *mem_usage += sizeof_delta_index(src->index);
1337        }
1338
1339        delta_buf = create_delta(src->index, trg->data, trg_size, &delta_size, max_size);
1340        if (!delta_buf)
1341                return 0;
1342
1343        if (trg_entry->delta) {
1344                /* Prefer only shallower same-sized deltas. */
1345                if (delta_size == trg_entry->delta_size &&
1346                    src->depth + 1 >= trg->depth) {
1347                        free(delta_buf);
1348                        return 0;
1349                }
1350        }
1351
1352        /*
1353         * Handle memory allocation outside of the cache
1354         * accounting lock.  Compiler will optimize the strangeness
1355         * away when THREADED_DELTA_SEARCH is not defined.
1356         */
1357        free(trg_entry->delta_data);
1358        cache_lock();
1359        if (trg_entry->delta_data) {
1360                delta_cache_size -= trg_entry->delta_size;
1361                trg_entry->delta_data = NULL;
1362        }
1363        if (delta_cacheable(src_size, trg_size, delta_size)) {
1364                delta_cache_size += delta_size;
1365                cache_unlock();
1366                trg_entry->delta_data = xrealloc(delta_buf, delta_size);
1367        } else {
1368                cache_unlock();
1369                free(delta_buf);
1370        }
1371
1372        trg_entry->delta = src_entry;
1373        trg_entry->delta_size = delta_size;
1374        trg->depth = src->depth + 1;
1375
1376        return 1;
1377}
1378
1379static unsigned int check_delta_limit(struct object_entry *me, unsigned int n)
1380{
1381        struct object_entry *child = me->delta_child;
1382        unsigned int m = n;
1383        while (child) {
1384                unsigned int c = check_delta_limit(child, n + 1);
1385                if (m < c)
1386                        m = c;
1387                child = child->delta_sibling;
1388        }
1389        return m;
1390}
1391
1392static unsigned long free_unpacked(struct unpacked *n)
1393{
1394        unsigned long freed_mem = sizeof_delta_index(n->index);
1395        free_delta_index(n->index);
1396        n->index = NULL;
1397        if (n->data) {
1398                freed_mem += n->entry->size;
1399                free(n->data);
1400                n->data = NULL;
1401        }
1402        n->entry = NULL;
1403        n->depth = 0;
1404        return freed_mem;
1405}
1406
1407static void find_deltas(struct object_entry **list, unsigned *list_size,
1408                        int window, int depth, unsigned *processed)
1409{
1410        uint32_t i, idx = 0, count = 0;
1411        struct unpacked *array;
1412        unsigned long mem_usage = 0;
1413
1414        array = xcalloc(window, sizeof(struct unpacked));
1415
1416        for (;;) {
1417                struct object_entry *entry;
1418                struct unpacked *n = array + idx;
1419                int j, max_depth, best_base = -1;
1420
1421                progress_lock();
1422                if (!*list_size) {
1423                        progress_unlock();
1424                        break;
1425                }
1426                entry = *list++;
1427                (*list_size)--;
1428                if (!entry->preferred_base) {
1429                        (*processed)++;
1430                        display_progress(progress_state, *processed);
1431                }
1432                progress_unlock();
1433
1434                mem_usage -= free_unpacked(n);
1435                n->entry = entry;
1436
1437                while (window_memory_limit &&
1438                       mem_usage > window_memory_limit &&
1439                       count > 1) {
1440                        uint32_t tail = (idx + window - count) % window;
1441                        mem_usage -= free_unpacked(array + tail);
1442                        count--;
1443                }
1444
1445                /* We do not compute delta to *create* objects we are not
1446                 * going to pack.
1447                 */
1448                if (entry->preferred_base)
1449                        goto next;
1450
1451                /*
1452                 * If the current object is at pack edge, take the depth the
1453                 * objects that depend on the current object into account
1454                 * otherwise they would become too deep.
1455                 */
1456                max_depth = depth;
1457                if (entry->delta_child) {
1458                        max_depth -= check_delta_limit(entry, 0);
1459                        if (max_depth <= 0)
1460                                goto next;
1461                }
1462
1463                j = window;
1464                while (--j > 0) {
1465                        int ret;
1466                        uint32_t other_idx = idx + j;
1467                        struct unpacked *m;
1468                        if (other_idx >= window)
1469                                other_idx -= window;
1470                        m = array + other_idx;
1471                        if (!m->entry)
1472                                break;
1473                        ret = try_delta(n, m, max_depth, &mem_usage);
1474                        if (ret < 0)
1475                                break;
1476                        else if (ret > 0)
1477                                best_base = other_idx;
1478                }
1479
1480                /*
1481                 * If we decided to cache the delta data, then it is best
1482                 * to compress it right away.  First because we have to do
1483                 * it anyway, and doing it here while we're threaded will
1484                 * save a lot of time in the non threaded write phase,
1485                 * as well as allow for caching more deltas within
1486                 * the same cache size limit.
1487                 * ...
1488                 * But only if not writing to stdout, since in that case
1489                 * the network is most likely throttling writes anyway,
1490                 * and therefore it is best to go to the write phase ASAP
1491                 * instead, as we can afford spending more time compressing
1492                 * between writes at that moment.
1493                 */
1494                if (entry->delta_data && !pack_to_stdout) {
1495                        entry->z_delta_size = do_compress(&entry->delta_data,
1496                                                          entry->delta_size);
1497                        cache_lock();
1498                        delta_cache_size -= entry->delta_size;
1499                        delta_cache_size += entry->z_delta_size;
1500                        cache_unlock();
1501                }
1502
1503                /* if we made n a delta, and if n is already at max
1504                 * depth, leaving it in the window is pointless.  we
1505                 * should evict it first.
1506                 */
1507                if (entry->delta && max_depth <= n->depth)
1508                        continue;
1509
1510                /*
1511                 * Move the best delta base up in the window, after the
1512                 * currently deltified object, to keep it longer.  It will
1513                 * be the first base object to be attempted next.
1514                 */
1515                if (entry->delta) {
1516                        struct unpacked swap = array[best_base];
1517                        int dist = (window + idx - best_base) % window;
1518                        int dst = best_base;
1519                        while (dist--) {
1520                                int src = (dst + 1) % window;
1521                                array[dst] = array[src];
1522                                dst = src;
1523                        }
1524                        array[dst] = swap;
1525                }
1526
1527                next:
1528                idx++;
1529                if (count + 1 < window)
1530                        count++;
1531                if (idx >= window)
1532                        idx = 0;
1533        }
1534
1535        for (i = 0; i < window; ++i) {
1536                free_delta_index(array[i].index);
1537                free(array[i].data);
1538        }
1539        free(array);
1540}
1541
1542#ifdef THREADED_DELTA_SEARCH
1543
1544/*
1545 * The main thread waits on the condition that (at least) one of the workers
1546 * has stopped working (which is indicated in the .working member of
1547 * struct thread_params).
1548 * When a work thread has completed its work, it sets .working to 0 and
1549 * signals the main thread and waits on the condition that .data_ready
1550 * becomes 1.
1551 */
1552
1553struct thread_params {
1554        pthread_t thread;
1555        struct object_entry **list;
1556        unsigned list_size;
1557        unsigned remaining;
1558        int window;
1559        int depth;
1560        int working;
1561        int data_ready;
1562        pthread_mutex_t mutex;
1563        pthread_cond_t cond;
1564        unsigned *processed;
1565};
1566
1567static pthread_cond_t progress_cond = PTHREAD_COND_INITIALIZER;
1568
1569static void *threaded_find_deltas(void *arg)
1570{
1571        struct thread_params *me = arg;
1572
1573        while (me->remaining) {
1574                find_deltas(me->list, &me->remaining,
1575                            me->window, me->depth, me->processed);
1576
1577                progress_lock();
1578                me->working = 0;
1579                pthread_cond_signal(&progress_cond);
1580                progress_unlock();
1581
1582                /*
1583                 * We must not set ->data_ready before we wait on the
1584                 * condition because the main thread may have set it to 1
1585                 * before we get here. In order to be sure that new
1586                 * work is available if we see 1 in ->data_ready, it
1587                 * was initialized to 0 before this thread was spawned
1588                 * and we reset it to 0 right away.
1589                 */
1590                pthread_mutex_lock(&me->mutex);
1591                while (!me->data_ready)
1592                        pthread_cond_wait(&me->cond, &me->mutex);
1593                me->data_ready = 0;
1594                pthread_mutex_unlock(&me->mutex);
1595        }
1596        /* leave ->working 1 so that this doesn't get more work assigned */
1597        return NULL;
1598}
1599
1600static void ll_find_deltas(struct object_entry **list, unsigned list_size,
1601                           int window, int depth, unsigned *processed)
1602{
1603        struct thread_params p[delta_search_threads];
1604        int i, ret, active_threads = 0;
1605
1606        if (delta_search_threads <= 1) {
1607                find_deltas(list, &list_size, window, depth, processed);
1608                return;
1609        }
1610        if (progress > pack_to_stdout)
1611                fprintf(stderr, "Delta compression using up to %d threads.\n",
1612                                delta_search_threads);
1613
1614        /* Partition the work amongst work threads. */
1615        for (i = 0; i < delta_search_threads; i++) {
1616                unsigned sub_size = list_size / (delta_search_threads - i);
1617
1618                /* don't use too small segments or no deltas will be found */
1619                if (sub_size < 2*window && i+1 < delta_search_threads)
1620                        sub_size = 0;
1621
1622                p[i].window = window;
1623                p[i].depth = depth;
1624                p[i].processed = processed;
1625                p[i].working = 1;
1626                p[i].data_ready = 0;
1627
1628                /* try to split chunks on "path" boundaries */
1629                while (sub_size && sub_size < list_size &&
1630                       list[sub_size]->hash &&
1631                       list[sub_size]->hash == list[sub_size-1]->hash)
1632                        sub_size++;
1633
1634                p[i].list = list;
1635                p[i].list_size = sub_size;
1636                p[i].remaining = sub_size;
1637
1638                list += sub_size;
1639                list_size -= sub_size;
1640        }
1641
1642        /* Start work threads. */
1643        for (i = 0; i < delta_search_threads; i++) {
1644                if (!p[i].list_size)
1645                        continue;
1646                pthread_mutex_init(&p[i].mutex, NULL);
1647                pthread_cond_init(&p[i].cond, NULL);
1648                ret = pthread_create(&p[i].thread, NULL,
1649                                     threaded_find_deltas, &p[i]);
1650                if (ret)
1651                        die("unable to create thread: %s", strerror(ret));
1652                active_threads++;
1653        }
1654
1655        /*
1656         * Now let's wait for work completion.  Each time a thread is done
1657         * with its work, we steal half of the remaining work from the
1658         * thread with the largest number of unprocessed objects and give
1659         * it to that newly idle thread.  This ensure good load balancing
1660         * until the remaining object list segments are simply too short
1661         * to be worth splitting anymore.
1662         */
1663        while (active_threads) {
1664                struct thread_params *target = NULL;
1665                struct thread_params *victim = NULL;
1666                unsigned sub_size = 0;
1667
1668                progress_lock();
1669                for (;;) {
1670                        for (i = 0; !target && i < delta_search_threads; i++)
1671                                if (!p[i].working)
1672                                        target = &p[i];
1673                        if (target)
1674                                break;
1675                        pthread_cond_wait(&progress_cond, &progress_mutex);
1676                }
1677
1678                for (i = 0; i < delta_search_threads; i++)
1679                        if (p[i].remaining > 2*window &&
1680                            (!victim || victim->remaining < p[i].remaining))
1681                                victim = &p[i];
1682                if (victim) {
1683                        sub_size = victim->remaining / 2;
1684                        list = victim->list + victim->list_size - sub_size;
1685                        while (sub_size && list[0]->hash &&
1686                               list[0]->hash == list[-1]->hash) {
1687                                list++;
1688                                sub_size--;
1689                        }
1690                        if (!sub_size) {
1691                                /*
1692                                 * It is possible for some "paths" to have
1693                                 * so many objects that no hash boundary
1694                                 * might be found.  Let's just steal the
1695                                 * exact half in that case.
1696                                 */
1697                                sub_size = victim->remaining / 2;
1698                                list -= sub_size;
1699                        }
1700                        target->list = list;
1701                        victim->list_size -= sub_size;
1702                        victim->remaining -= sub_size;
1703                }
1704                target->list_size = sub_size;
1705                target->remaining = sub_size;
1706                target->working = 1;
1707                progress_unlock();
1708
1709                pthread_mutex_lock(&target->mutex);
1710                target->data_ready = 1;
1711                pthread_cond_signal(&target->cond);
1712                pthread_mutex_unlock(&target->mutex);
1713
1714                if (!sub_size) {
1715                        pthread_join(target->thread, NULL);
1716                        pthread_cond_destroy(&target->cond);
1717                        pthread_mutex_destroy(&target->mutex);
1718                        active_threads--;
1719                }
1720        }
1721}
1722
1723#else
1724#define ll_find_deltas(l, s, w, d, p)   find_deltas(l, &s, w, d, p)
1725#endif
1726
1727static int add_ref_tag(const char *path, const unsigned char *sha1, int flag, void *cb_data)
1728{
1729        unsigned char peeled[20];
1730
1731        if (!prefixcmp(path, "refs/tags/") && /* is a tag? */
1732            !peel_ref(path, peeled)        && /* peelable? */
1733            !is_null_sha1(peeled)          && /* annotated tag? */
1734            locate_object_entry(peeled))      /* object packed? */
1735                add_object_entry(sha1, OBJ_TAG, NULL, 0);
1736        return 0;
1737}
1738
1739static void prepare_pack(int window, int depth)
1740{
1741        struct object_entry **delta_list;
1742        uint32_t i, nr_deltas;
1743        unsigned n;
1744
1745        get_object_details();
1746
1747        /*
1748         * If we're locally repacking then we need to be doubly careful
1749         * from now on in order to make sure no stealth corruption gets
1750         * propagated to the new pack.  Clients receiving streamed packs
1751         * should validate everything they get anyway so no need to incur
1752         * the additional cost here in that case.
1753         */
1754        if (!pack_to_stdout)
1755                do_check_packed_object_crc = 1;
1756
1757        if (!nr_objects || !window || !depth)
1758                return;
1759
1760        delta_list = xmalloc(nr_objects * sizeof(*delta_list));
1761        nr_deltas = n = 0;
1762
1763        for (i = 0; i < nr_objects; i++) {
1764                struct object_entry *entry = objects + i;
1765
1766                if (entry->delta)
1767                        /* This happens if we decided to reuse existing
1768                         * delta from a pack.  "reuse_delta &&" is implied.
1769                         */
1770                        continue;
1771
1772                if (entry->size < 50)
1773                        continue;
1774
1775                if (entry->no_try_delta)
1776                        continue;
1777
1778                if (!entry->preferred_base) {
1779                        nr_deltas++;
1780                        if (entry->type < 0)
1781                                die("unable to get type of object %s",
1782                                    sha1_to_hex(entry->idx.sha1));
1783                } else {
1784                        if (entry->type < 0) {
1785                                /*
1786                                 * This object is not found, but we
1787                                 * don't have to include it anyway.
1788                                 */
1789                                continue;
1790                        }
1791                }
1792
1793                delta_list[n++] = entry;
1794        }
1795
1796        if (nr_deltas && n > 1) {
1797                unsigned nr_done = 0;
1798                if (progress)
1799                        progress_state = start_progress("Compressing objects",
1800                                                        nr_deltas);
1801                qsort(delta_list, n, sizeof(*delta_list), type_size_sort);
1802                ll_find_deltas(delta_list, n, window+1, depth, &nr_done);
1803                stop_progress(&progress_state);
1804                if (nr_done != nr_deltas)
1805                        die("inconsistency with delta count");
1806        }
1807        free(delta_list);
1808}
1809
1810static int git_pack_config(const char *k, const char *v, void *cb)
1811{
1812        if(!strcmp(k, "pack.window")) {
1813                window = git_config_int(k, v);
1814                return 0;
1815        }
1816        if (!strcmp(k, "pack.windowmemory")) {
1817                window_memory_limit = git_config_ulong(k, v);
1818                return 0;
1819        }
1820        if (!strcmp(k, "pack.depth")) {
1821                depth = git_config_int(k, v);
1822                return 0;
1823        }
1824        if (!strcmp(k, "pack.compression")) {
1825                int level = git_config_int(k, v);
1826                if (level == -1)
1827                        level = Z_DEFAULT_COMPRESSION;
1828                else if (level < 0 || level > Z_BEST_COMPRESSION)
1829                        die("bad pack compression level %d", level);
1830                pack_compression_level = level;
1831                pack_compression_seen = 1;
1832                return 0;
1833        }
1834        if (!strcmp(k, "pack.deltacachesize")) {
1835                max_delta_cache_size = git_config_int(k, v);
1836                return 0;
1837        }
1838        if (!strcmp(k, "pack.deltacachelimit")) {
1839                cache_max_small_delta_size = git_config_int(k, v);
1840                return 0;
1841        }
1842        if (!strcmp(k, "pack.threads")) {
1843                delta_search_threads = git_config_int(k, v);
1844                if (delta_search_threads < 0)
1845                        die("invalid number of threads specified (%d)",
1846                            delta_search_threads);
1847#ifndef THREADED_DELTA_SEARCH
1848                if (delta_search_threads != 1)
1849                        warning("no threads support, ignoring %s", k);
1850#endif
1851                return 0;
1852        }
1853        if (!strcmp(k, "pack.indexversion")) {
1854                pack_idx_default_version = git_config_int(k, v);
1855                if (pack_idx_default_version > 2)
1856                        die("bad pack.indexversion=%"PRIu32,
1857                                pack_idx_default_version);
1858                return 0;
1859        }
1860        if (!strcmp(k, "pack.packsizelimit")) {
1861                pack_size_limit_cfg = git_config_ulong(k, v);
1862                return 0;
1863        }
1864        return git_default_config(k, v, cb);
1865}
1866
1867static void read_object_list_from_stdin(void)
1868{
1869        char line[40 + 1 + PATH_MAX + 2];
1870        unsigned char sha1[20];
1871
1872        for (;;) {
1873                if (!fgets(line, sizeof(line), stdin)) {
1874                        if (feof(stdin))
1875                                break;
1876                        if (!ferror(stdin))
1877                                die("fgets returned NULL, not EOF, not error!");
1878                        if (errno != EINTR)
1879                                die_errno("fgets");
1880                        clearerr(stdin);
1881                        continue;
1882                }
1883                if (line[0] == '-') {
1884                        if (get_sha1_hex(line+1, sha1))
1885                                die("expected edge sha1, got garbage:\n %s",
1886                                    line);
1887                        add_preferred_base(sha1);
1888                        continue;
1889                }
1890                if (get_sha1_hex(line, sha1))
1891                        die("expected sha1, got garbage:\n %s", line);
1892
1893                add_preferred_base_object(line+41);
1894                add_object_entry(sha1, 0, line+41, 0);
1895        }
1896}
1897
1898#define OBJECT_ADDED (1u<<20)
1899
1900static void show_commit(struct commit *commit, void *data)
1901{
1902        add_object_entry(commit->object.sha1, OBJ_COMMIT, NULL, 0);
1903        commit->object.flags |= OBJECT_ADDED;
1904}
1905
1906static void show_object(struct object *obj, const struct name_path *path, const char *last)
1907{
1908        char *name = path_name(path, last);
1909
1910        add_preferred_base_object(name);
1911        add_object_entry(obj->sha1, obj->type, name, 0);
1912        obj->flags |= OBJECT_ADDED;
1913
1914        /*
1915         * We will have generated the hash from the name,
1916         * but not saved a pointer to it - we can free it
1917         */
1918        free((char *)name);
1919}
1920
1921static void show_edge(struct commit *commit)
1922{
1923        add_preferred_base(commit->object.sha1);
1924}
1925
1926struct in_pack_object {
1927        off_t offset;
1928        struct object *object;
1929};
1930
1931struct in_pack {
1932        int alloc;
1933        int nr;
1934        struct in_pack_object *array;
1935};
1936
1937static void mark_in_pack_object(struct object *object, struct packed_git *p, struct in_pack *in_pack)
1938{
1939        in_pack->array[in_pack->nr].offset = find_pack_entry_one(object->sha1, p);
1940        in_pack->array[in_pack->nr].object = object;
1941        in_pack->nr++;
1942}
1943
1944/*
1945 * Compare the objects in the offset order, in order to emulate the
1946 * "git rev-list --objects" output that produced the pack originally.
1947 */
1948static int ofscmp(const void *a_, const void *b_)
1949{
1950        struct in_pack_object *a = (struct in_pack_object *)a_;
1951        struct in_pack_object *b = (struct in_pack_object *)b_;
1952
1953        if (a->offset < b->offset)
1954                return -1;
1955        else if (a->offset > b->offset)
1956                return 1;
1957        else
1958                return hashcmp(a->object->sha1, b->object->sha1);
1959}
1960
1961static void add_objects_in_unpacked_packs(struct rev_info *revs)
1962{
1963        struct packed_git *p;
1964        struct in_pack in_pack;
1965        uint32_t i;
1966
1967        memset(&in_pack, 0, sizeof(in_pack));
1968
1969        for (p = packed_git; p; p = p->next) {
1970                const unsigned char *sha1;
1971                struct object *o;
1972
1973                if (!p->pack_local || p->pack_keep)
1974                        continue;
1975                if (open_pack_index(p))
1976                        die("cannot open pack index");
1977
1978                ALLOC_GROW(in_pack.array,
1979                           in_pack.nr + p->num_objects,
1980                           in_pack.alloc);
1981
1982                for (i = 0; i < p->num_objects; i++) {
1983                        sha1 = nth_packed_object_sha1(p, i);
1984                        o = lookup_unknown_object(sha1);
1985                        if (!(o->flags & OBJECT_ADDED))
1986                                mark_in_pack_object(o, p, &in_pack);
1987                        o->flags |= OBJECT_ADDED;
1988                }
1989        }
1990
1991        if (in_pack.nr) {
1992                qsort(in_pack.array, in_pack.nr, sizeof(in_pack.array[0]),
1993                      ofscmp);
1994                for (i = 0; i < in_pack.nr; i++) {
1995                        struct object *o = in_pack.array[i].object;
1996                        add_object_entry(o->sha1, o->type, "", 0);
1997                }
1998        }
1999        free(in_pack.array);
2000}
2001
2002static int has_sha1_pack_kept_or_nonlocal(const unsigned char *sha1)
2003{
2004        static struct packed_git *last_found = (void *)1;
2005        struct packed_git *p;
2006
2007        p = (last_found != (void *)1) ? last_found : packed_git;
2008
2009        while (p) {
2010                if ((!p->pack_local || p->pack_keep) &&
2011                        find_pack_entry_one(sha1, p)) {
2012                        last_found = p;
2013                        return 1;
2014                }
2015                if (p == last_found)
2016                        p = packed_git;
2017                else
2018                        p = p->next;
2019                if (p == last_found)
2020                        p = p->next;
2021        }
2022        return 0;
2023}
2024
2025static void loosen_unused_packed_objects(struct rev_info *revs)
2026{
2027        struct packed_git *p;
2028        uint32_t i;
2029        const unsigned char *sha1;
2030
2031        for (p = packed_git; p; p = p->next) {
2032                if (!p->pack_local || p->pack_keep)
2033                        continue;
2034
2035                if (open_pack_index(p))
2036                        die("cannot open pack index");
2037
2038                for (i = 0; i < p->num_objects; i++) {
2039                        sha1 = nth_packed_object_sha1(p, i);
2040                        if (!locate_object_entry(sha1) &&
2041                                !has_sha1_pack_kept_or_nonlocal(sha1))
2042                                if (force_object_loose(sha1, p->mtime))
2043                                        die("unable to force loose object");
2044                }
2045        }
2046}
2047
2048static void get_object_list(int ac, const char **av)
2049{
2050        struct rev_info revs;
2051        char line[1000];
2052        int flags = 0;
2053
2054        init_revisions(&revs, NULL);
2055        save_commit_buffer = 0;
2056        setup_revisions(ac, av, &revs, NULL);
2057
2058        while (fgets(line, sizeof(line), stdin) != NULL) {
2059                int len = strlen(line);
2060                if (len && line[len - 1] == '\n')
2061                        line[--len] = 0;
2062                if (!len)
2063                        break;
2064                if (*line == '-') {
2065                        if (!strcmp(line, "--not")) {
2066                                flags ^= UNINTERESTING;
2067                                continue;
2068                        }
2069                        die("not a rev '%s'", line);
2070                }
2071                if (handle_revision_arg(line, &revs, flags, 1))
2072                        die("bad revision '%s'", line);
2073        }
2074
2075        if (prepare_revision_walk(&revs))
2076                die("revision walk setup failed");
2077        mark_edges_uninteresting(revs.commits, &revs, show_edge);
2078        traverse_commit_list(&revs, show_commit, show_object, NULL);
2079
2080        if (keep_unreachable)
2081                add_objects_in_unpacked_packs(&revs);
2082        if (unpack_unreachable)
2083                loosen_unused_packed_objects(&revs);
2084}
2085
2086static int adjust_perm(const char *path, mode_t mode)
2087{
2088        if (chmod(path, mode))
2089                return -1;
2090        return adjust_shared_perm(path);
2091}
2092
2093int cmd_pack_objects(int argc, const char **argv, const char *prefix)
2094{
2095        int use_internal_rev_list = 0;
2096        int thin = 0;
2097        uint32_t i;
2098        const char **rp_av;
2099        int rp_ac_alloc = 64;
2100        int rp_ac;
2101
2102        rp_av = xcalloc(rp_ac_alloc, sizeof(*rp_av));
2103
2104        rp_av[0] = "pack-objects";
2105        rp_av[1] = "--objects"; /* --thin will make it --objects-edge */
2106        rp_ac = 2;
2107
2108        git_config(git_pack_config, NULL);
2109        if (!pack_compression_seen && core_compression_seen)
2110                pack_compression_level = core_compression_level;
2111
2112        progress = isatty(2);
2113        for (i = 1; i < argc; i++) {
2114                const char *arg = argv[i];
2115
2116                if (*arg != '-')
2117                        break;
2118
2119                if (!strcmp("--non-empty", arg)) {
2120                        non_empty = 1;
2121                        continue;
2122                }
2123                if (!strcmp("--local", arg)) {
2124                        local = 1;
2125                        continue;
2126                }
2127                if (!strcmp("--incremental", arg)) {
2128                        incremental = 1;
2129                        continue;
2130                }
2131                if (!strcmp("--honor-pack-keep", arg)) {
2132                        ignore_packed_keep = 1;
2133                        continue;
2134                }
2135                if (!prefixcmp(arg, "--compression=")) {
2136                        char *end;
2137                        int level = strtoul(arg+14, &end, 0);
2138                        if (!arg[14] || *end)
2139                                usage(pack_usage);
2140                        if (level == -1)
2141                                level = Z_DEFAULT_COMPRESSION;
2142                        else if (level < 0 || level > Z_BEST_COMPRESSION)
2143                                die("bad pack compression level %d", level);
2144                        pack_compression_level = level;
2145                        continue;
2146                }
2147                if (!prefixcmp(arg, "--max-pack-size=")) {
2148                        char *end;
2149                        pack_size_limit_cfg = 0;
2150                        pack_size_limit = strtoul(arg+16, &end, 0) * 1024 * 1024;
2151                        if (!arg[16] || *end)
2152                                usage(pack_usage);
2153                        continue;
2154                }
2155                if (!prefixcmp(arg, "--window=")) {
2156                        char *end;
2157                        window = strtoul(arg+9, &end, 0);
2158                        if (!arg[9] || *end)
2159                                usage(pack_usage);
2160                        continue;
2161                }
2162                if (!prefixcmp(arg, "--window-memory=")) {
2163                        if (!git_parse_ulong(arg+16, &window_memory_limit))
2164                                usage(pack_usage);
2165                        continue;
2166                }
2167                if (!prefixcmp(arg, "--threads=")) {
2168                        char *end;
2169                        delta_search_threads = strtoul(arg+10, &end, 0);
2170                        if (!arg[10] || *end || delta_search_threads < 0)
2171                                usage(pack_usage);
2172#ifndef THREADED_DELTA_SEARCH
2173                        if (delta_search_threads != 1)
2174                                warning("no threads support, "
2175                                        "ignoring %s", arg);
2176#endif
2177                        continue;
2178                }
2179                if (!prefixcmp(arg, "--depth=")) {
2180                        char *end;
2181                        depth = strtoul(arg+8, &end, 0);
2182                        if (!arg[8] || *end)
2183                                usage(pack_usage);
2184                        continue;
2185                }
2186                if (!strcmp("--progress", arg)) {
2187                        progress = 1;
2188                        continue;
2189                }
2190                if (!strcmp("--all-progress", arg)) {
2191                        progress = 2;
2192                        continue;
2193                }
2194                if (!strcmp("-q", arg)) {
2195                        progress = 0;
2196                        continue;
2197                }
2198                if (!strcmp("--no-reuse-delta", arg)) {
2199                        reuse_delta = 0;
2200                        continue;
2201                }
2202                if (!strcmp("--no-reuse-object", arg)) {
2203                        reuse_object = reuse_delta = 0;
2204                        continue;
2205                }
2206                if (!strcmp("--delta-base-offset", arg)) {
2207                        allow_ofs_delta = 1;
2208                        continue;
2209                }
2210                if (!strcmp("--stdout", arg)) {
2211                        pack_to_stdout = 1;
2212                        continue;
2213                }
2214                if (!strcmp("--revs", arg)) {
2215                        use_internal_rev_list = 1;
2216                        continue;
2217                }
2218                if (!strcmp("--keep-unreachable", arg)) {
2219                        keep_unreachable = 1;
2220                        continue;
2221                }
2222                if (!strcmp("--unpack-unreachable", arg)) {
2223                        unpack_unreachable = 1;
2224                        continue;
2225                }
2226                if (!strcmp("--include-tag", arg)) {
2227                        include_tag = 1;
2228                        continue;
2229                }
2230                if (!strcmp("--unpacked", arg) ||
2231                    !strcmp("--reflog", arg) ||
2232                    !strcmp("--all", arg)) {
2233                        use_internal_rev_list = 1;
2234                        if (rp_ac >= rp_ac_alloc - 1) {
2235                                rp_ac_alloc = alloc_nr(rp_ac_alloc);
2236                                rp_av = xrealloc(rp_av,
2237                                                 rp_ac_alloc * sizeof(*rp_av));
2238                        }
2239                        rp_av[rp_ac++] = arg;
2240                        continue;
2241                }
2242                if (!strcmp("--thin", arg)) {
2243                        use_internal_rev_list = 1;
2244                        thin = 1;
2245                        rp_av[1] = "--objects-edge";
2246                        continue;
2247                }
2248                if (!prefixcmp(arg, "--index-version=")) {
2249                        char *c;
2250                        pack_idx_default_version = strtoul(arg + 16, &c, 10);
2251                        if (pack_idx_default_version > 2)
2252                                die("bad %s", arg);
2253                        if (*c == ',')
2254                                pack_idx_off32_limit = strtoul(c+1, &c, 0);
2255                        if (*c || pack_idx_off32_limit & 0x80000000)
2256                                die("bad %s", arg);
2257                        continue;
2258                }
2259                usage(pack_usage);
2260        }
2261
2262        /* Traditionally "pack-objects [options] base extra" failed;
2263         * we would however want to take refs parameter that would
2264         * have been given to upstream rev-list ourselves, which means
2265         * we somehow want to say what the base name is.  So the
2266         * syntax would be:
2267         *
2268         * pack-objects [options] base <refs...>
2269         *
2270         * in other words, we would treat the first non-option as the
2271         * base_name and send everything else to the internal revision
2272         * walker.
2273         */
2274
2275        if (!pack_to_stdout)
2276                base_name = argv[i++];
2277
2278        if (pack_to_stdout != !base_name)
2279                usage(pack_usage);
2280
2281        if (!pack_to_stdout && !pack_size_limit)
2282                pack_size_limit = pack_size_limit_cfg;
2283
2284        if (pack_to_stdout && pack_size_limit)
2285                die("--max-pack-size cannot be used to build a pack for transfer.");
2286
2287        if (!pack_to_stdout && thin)
2288                die("--thin cannot be used to build an indexable pack.");
2289
2290        if (keep_unreachable && unpack_unreachable)
2291                die("--keep-unreachable and --unpack-unreachable are incompatible.");
2292
2293#ifdef THREADED_DELTA_SEARCH
2294        if (!delta_search_threads)      /* --threads=0 means autodetect */
2295                delta_search_threads = online_cpus();
2296#endif
2297
2298        prepare_packed_git();
2299
2300        if (progress)
2301                progress_state = start_progress("Counting objects", 0);
2302        if (!use_internal_rev_list)
2303                read_object_list_from_stdin();
2304        else {
2305                rp_av[rp_ac] = NULL;
2306                get_object_list(rp_ac, rp_av);
2307        }
2308        if (include_tag && nr_result)
2309                for_each_ref(add_ref_tag, NULL);
2310        stop_progress(&progress_state);
2311
2312        if (non_empty && !nr_result)
2313                return 0;
2314        if (nr_result)
2315                prepare_pack(window, depth);
2316        write_pack_file();
2317        if (progress)
2318                fprintf(stderr, "Total %"PRIu32" (delta %"PRIu32"),"
2319                        " reused %"PRIu32" (delta %"PRIu32")\n",
2320                        written, written_delta, reused, reused_delta);
2321        return 0;
2322}