fast-import.con commit Merge branch 'en/fast-import-parsing-fix' (dae82ec)
   1#include "builtin.h"
   2#include "cache.h"
   3#include "repository.h"
   4#include "config.h"
   5#include "lockfile.h"
   6#include "object.h"
   7#include "blob.h"
   8#include "tree.h"
   9#include "commit.h"
  10#include "delta.h"
  11#include "pack.h"
  12#include "refs.h"
  13#include "csum-file.h"
  14#include "quote.h"
  15#include "dir.h"
  16#include "run-command.h"
  17#include "packfile.h"
  18#include "object-store.h"
  19#include "mem-pool.h"
  20#include "commit-reach.h"
  21
  22#define PACK_ID_BITS 16
  23#define MAX_PACK_ID ((1<<PACK_ID_BITS)-1)
  24#define DEPTH_BITS 13
  25#define MAX_DEPTH ((1<<DEPTH_BITS)-1)
  26
  27/*
  28 * We abuse the setuid bit on directories to mean "do not delta".
  29 */
  30#define NO_DELTA S_ISUID
  31
  32struct object_entry {
  33        struct pack_idx_entry idx;
  34        struct object_entry *next;
  35        uint32_t type : TYPE_BITS,
  36                pack_id : PACK_ID_BITS,
  37                depth : DEPTH_BITS;
  38};
  39
  40struct object_entry_pool {
  41        struct object_entry_pool *next_pool;
  42        struct object_entry *next_free;
  43        struct object_entry *end;
  44        struct object_entry entries[FLEX_ARRAY]; /* more */
  45};
  46
  47struct mark_set {
  48        union {
  49                struct object_entry *marked[1024];
  50                struct mark_set *sets[1024];
  51        } data;
  52        unsigned int shift;
  53};
  54
  55struct last_object {
  56        struct strbuf data;
  57        off_t offset;
  58        unsigned int depth;
  59        unsigned no_swap : 1;
  60};
  61
  62struct atom_str {
  63        struct atom_str *next_atom;
  64        unsigned short str_len;
  65        char str_dat[FLEX_ARRAY]; /* more */
  66};
  67
  68struct tree_content;
  69struct tree_entry {
  70        struct tree_content *tree;
  71        struct atom_str *name;
  72        struct tree_entry_ms {
  73                uint16_t mode;
  74                struct object_id oid;
  75        } versions[2];
  76};
  77
  78struct tree_content {
  79        unsigned int entry_capacity; /* must match avail_tree_content */
  80        unsigned int entry_count;
  81        unsigned int delta_depth;
  82        struct tree_entry *entries[FLEX_ARRAY]; /* more */
  83};
  84
  85struct avail_tree_content {
  86        unsigned int entry_capacity; /* must match tree_content */
  87        struct avail_tree_content *next_avail;
  88};
  89
  90struct branch {
  91        struct branch *table_next_branch;
  92        struct branch *active_next_branch;
  93        const char *name;
  94        struct tree_entry branch_tree;
  95        uintmax_t last_commit;
  96        uintmax_t num_notes;
  97        unsigned active : 1;
  98        unsigned delete : 1;
  99        unsigned pack_id : PACK_ID_BITS;
 100        struct object_id oid;
 101};
 102
 103struct tag {
 104        struct tag *next_tag;
 105        const char *name;
 106        unsigned int pack_id;
 107        struct object_id oid;
 108};
 109
 110struct hash_list {
 111        struct hash_list *next;
 112        struct object_id oid;
 113};
 114
 115typedef enum {
 116        WHENSPEC_RAW = 1,
 117        WHENSPEC_RFC2822,
 118        WHENSPEC_NOW
 119} whenspec_type;
 120
 121struct recent_command {
 122        struct recent_command *prev;
 123        struct recent_command *next;
 124        char *buf;
 125};
 126
 127/* Configured limits on output */
 128static unsigned long max_depth = 50;
 129static off_t max_packsize;
 130static int unpack_limit = 100;
 131static int force_update;
 132
 133/* Stats and misc. counters */
 134static uintmax_t alloc_count;
 135static uintmax_t marks_set_count;
 136static uintmax_t object_count_by_type[1 << TYPE_BITS];
 137static uintmax_t duplicate_count_by_type[1 << TYPE_BITS];
 138static uintmax_t delta_count_by_type[1 << TYPE_BITS];
 139static uintmax_t delta_count_attempts_by_type[1 << TYPE_BITS];
 140static unsigned long object_count;
 141static unsigned long branch_count;
 142static unsigned long branch_load_count;
 143static int failure;
 144static FILE *pack_edges;
 145static unsigned int show_stats = 1;
 146static int global_argc;
 147static const char **global_argv;
 148
 149/* Memory pools */
 150static struct mem_pool fi_mem_pool =  {NULL, 2*1024*1024 -
 151                                       sizeof(struct mp_block), 0 };
 152
 153/* Atom management */
 154static unsigned int atom_table_sz = 4451;
 155static unsigned int atom_cnt;
 156static struct atom_str **atom_table;
 157
 158/* The .pack file being generated */
 159static struct pack_idx_option pack_idx_opts;
 160static unsigned int pack_id;
 161static struct hashfile *pack_file;
 162static struct packed_git *pack_data;
 163static struct packed_git **all_packs;
 164static off_t pack_size;
 165
 166/* Table of objects we've written. */
 167static unsigned int object_entry_alloc = 5000;
 168static struct object_entry_pool *blocks;
 169static struct object_entry *object_table[1 << 16];
 170static struct mark_set *marks;
 171static const char *export_marks_file;
 172static const char *import_marks_file;
 173static int import_marks_file_from_stream;
 174static int import_marks_file_ignore_missing;
 175static int import_marks_file_done;
 176static int relative_marks_paths;
 177
 178/* Our last blob */
 179static struct last_object last_blob = { STRBUF_INIT, 0, 0, 0 };
 180
 181/* Tree management */
 182static unsigned int tree_entry_alloc = 1000;
 183static void *avail_tree_entry;
 184static unsigned int avail_tree_table_sz = 100;
 185static struct avail_tree_content **avail_tree_table;
 186static size_t tree_entry_allocd;
 187static struct strbuf old_tree = STRBUF_INIT;
 188static struct strbuf new_tree = STRBUF_INIT;
 189
 190/* Branch data */
 191static unsigned long max_active_branches = 5;
 192static unsigned long cur_active_branches;
 193static unsigned long branch_table_sz = 1039;
 194static struct branch **branch_table;
 195static struct branch *active_branches;
 196
 197/* Tag data */
 198static struct tag *first_tag;
 199static struct tag *last_tag;
 200
 201/* Input stream parsing */
 202static whenspec_type whenspec = WHENSPEC_RAW;
 203static struct strbuf command_buf = STRBUF_INIT;
 204static int unread_command_buf;
 205static struct recent_command cmd_hist = {&cmd_hist, &cmd_hist, NULL};
 206static struct recent_command *cmd_tail = &cmd_hist;
 207static struct recent_command *rc_free;
 208static unsigned int cmd_save = 100;
 209static uintmax_t next_mark;
 210static struct strbuf new_data = STRBUF_INIT;
 211static int seen_data_command;
 212static int require_explicit_termination;
 213
 214/* Signal handling */
 215static volatile sig_atomic_t checkpoint_requested;
 216
 217/* Where to write output of cat-blob commands */
 218static int cat_blob_fd = STDOUT_FILENO;
 219
 220static void parse_argv(void);
 221static void parse_get_mark(const char *p);
 222static void parse_cat_blob(const char *p);
 223static void parse_ls(const char *p, struct branch *b);
 224
 225static void write_branch_report(FILE *rpt, struct branch *b)
 226{
 227        fprintf(rpt, "%s:\n", b->name);
 228
 229        fprintf(rpt, "  status      :");
 230        if (b->active)
 231                fputs(" active", rpt);
 232        if (b->branch_tree.tree)
 233                fputs(" loaded", rpt);
 234        if (is_null_oid(&b->branch_tree.versions[1].oid))
 235                fputs(" dirty", rpt);
 236        fputc('\n', rpt);
 237
 238        fprintf(rpt, "  tip commit  : %s\n", oid_to_hex(&b->oid));
 239        fprintf(rpt, "  old tree    : %s\n",
 240                oid_to_hex(&b->branch_tree.versions[0].oid));
 241        fprintf(rpt, "  cur tree    : %s\n",
 242                oid_to_hex(&b->branch_tree.versions[1].oid));
 243        fprintf(rpt, "  commit clock: %" PRIuMAX "\n", b->last_commit);
 244
 245        fputs("  last pack   : ", rpt);
 246        if (b->pack_id < MAX_PACK_ID)
 247                fprintf(rpt, "%u", b->pack_id);
 248        fputc('\n', rpt);
 249
 250        fputc('\n', rpt);
 251}
 252
 253static void dump_marks_helper(FILE *, uintmax_t, struct mark_set *);
 254
 255static void write_crash_report(const char *err)
 256{
 257        char *loc = git_pathdup("fast_import_crash_%"PRIuMAX, (uintmax_t) getpid());
 258        FILE *rpt = fopen(loc, "w");
 259        struct branch *b;
 260        unsigned long lu;
 261        struct recent_command *rc;
 262
 263        if (!rpt) {
 264                error_errno("can't write crash report %s", loc);
 265                free(loc);
 266                return;
 267        }
 268
 269        fprintf(stderr, "fast-import: dumping crash report to %s\n", loc);
 270
 271        fprintf(rpt, "fast-import crash report:\n");
 272        fprintf(rpt, "    fast-import process: %"PRIuMAX"\n", (uintmax_t) getpid());
 273        fprintf(rpt, "    parent process     : %"PRIuMAX"\n", (uintmax_t) getppid());
 274        fprintf(rpt, "    at %s\n", show_date(time(NULL), 0, DATE_MODE(ISO8601)));
 275        fputc('\n', rpt);
 276
 277        fputs("fatal: ", rpt);
 278        fputs(err, rpt);
 279        fputc('\n', rpt);
 280
 281        fputc('\n', rpt);
 282        fputs("Most Recent Commands Before Crash\n", rpt);
 283        fputs("---------------------------------\n", rpt);
 284        for (rc = cmd_hist.next; rc != &cmd_hist; rc = rc->next) {
 285                if (rc->next == &cmd_hist)
 286                        fputs("* ", rpt);
 287                else
 288                        fputs("  ", rpt);
 289                fputs(rc->buf, rpt);
 290                fputc('\n', rpt);
 291        }
 292
 293        fputc('\n', rpt);
 294        fputs("Active Branch LRU\n", rpt);
 295        fputs("-----------------\n", rpt);
 296        fprintf(rpt, "    active_branches = %lu cur, %lu max\n",
 297                cur_active_branches,
 298                max_active_branches);
 299        fputc('\n', rpt);
 300        fputs("  pos  clock name\n", rpt);
 301        fputs("  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n", rpt);
 302        for (b = active_branches, lu = 0; b; b = b->active_next_branch)
 303                fprintf(rpt, "  %2lu) %6" PRIuMAX" %s\n",
 304                        ++lu, b->last_commit, b->name);
 305
 306        fputc('\n', rpt);
 307        fputs("Inactive Branches\n", rpt);
 308        fputs("-----------------\n", rpt);
 309        for (lu = 0; lu < branch_table_sz; lu++) {
 310                for (b = branch_table[lu]; b; b = b->table_next_branch)
 311                        write_branch_report(rpt, b);
 312        }
 313
 314        if (first_tag) {
 315                struct tag *tg;
 316                fputc('\n', rpt);
 317                fputs("Annotated Tags\n", rpt);
 318                fputs("--------------\n", rpt);
 319                for (tg = first_tag; tg; tg = tg->next_tag) {
 320                        fputs(oid_to_hex(&tg->oid), rpt);
 321                        fputc(' ', rpt);
 322                        fputs(tg->name, rpt);
 323                        fputc('\n', rpt);
 324                }
 325        }
 326
 327        fputc('\n', rpt);
 328        fputs("Marks\n", rpt);
 329        fputs("-----\n", rpt);
 330        if (export_marks_file)
 331                fprintf(rpt, "  exported to %s\n", export_marks_file);
 332        else
 333                dump_marks_helper(rpt, 0, marks);
 334
 335        fputc('\n', rpt);
 336        fputs("-------------------\n", rpt);
 337        fputs("END OF CRASH REPORT\n", rpt);
 338        fclose(rpt);
 339        free(loc);
 340}
 341
 342static void end_packfile(void);
 343static void unkeep_all_packs(void);
 344static void dump_marks(void);
 345
 346static NORETURN void die_nicely(const char *err, va_list params)
 347{
 348        static int zombie;
 349        char message[2 * PATH_MAX];
 350
 351        vsnprintf(message, sizeof(message), err, params);
 352        fputs("fatal: ", stderr);
 353        fputs(message, stderr);
 354        fputc('\n', stderr);
 355
 356        if (!zombie) {
 357                zombie = 1;
 358                write_crash_report(message);
 359                end_packfile();
 360                unkeep_all_packs();
 361                dump_marks();
 362        }
 363        exit(128);
 364}
 365
 366#ifndef SIGUSR1 /* Windows, for example */
 367
 368static void set_checkpoint_signal(void)
 369{
 370}
 371
 372#else
 373
 374static void checkpoint_signal(int signo)
 375{
 376        checkpoint_requested = 1;
 377}
 378
 379static void set_checkpoint_signal(void)
 380{
 381        struct sigaction sa;
 382
 383        memset(&sa, 0, sizeof(sa));
 384        sa.sa_handler = checkpoint_signal;
 385        sigemptyset(&sa.sa_mask);
 386        sa.sa_flags = SA_RESTART;
 387        sigaction(SIGUSR1, &sa, NULL);
 388}
 389
 390#endif
 391
 392static void alloc_objects(unsigned int cnt)
 393{
 394        struct object_entry_pool *b;
 395
 396        b = xmalloc(sizeof(struct object_entry_pool)
 397                + cnt * sizeof(struct object_entry));
 398        b->next_pool = blocks;
 399        b->next_free = b->entries;
 400        b->end = b->entries + cnt;
 401        blocks = b;
 402        alloc_count += cnt;
 403}
 404
 405static struct object_entry *new_object(struct object_id *oid)
 406{
 407        struct object_entry *e;
 408
 409        if (blocks->next_free == blocks->end)
 410                alloc_objects(object_entry_alloc);
 411
 412        e = blocks->next_free++;
 413        oidcpy(&e->idx.oid, oid);
 414        return e;
 415}
 416
 417static struct object_entry *find_object(struct object_id *oid)
 418{
 419        unsigned int h = oid->hash[0] << 8 | oid->hash[1];
 420        struct object_entry *e;
 421        for (e = object_table[h]; e; e = e->next)
 422                if (oideq(oid, &e->idx.oid))
 423                        return e;
 424        return NULL;
 425}
 426
 427static struct object_entry *insert_object(struct object_id *oid)
 428{
 429        unsigned int h = oid->hash[0] << 8 | oid->hash[1];
 430        struct object_entry *e = object_table[h];
 431
 432        while (e) {
 433                if (oideq(oid, &e->idx.oid))
 434                        return e;
 435                e = e->next;
 436        }
 437
 438        e = new_object(oid);
 439        e->next = object_table[h];
 440        e->idx.offset = 0;
 441        object_table[h] = e;
 442        return e;
 443}
 444
 445static void invalidate_pack_id(unsigned int id)
 446{
 447        unsigned int h;
 448        unsigned long lu;
 449        struct tag *t;
 450
 451        for (h = 0; h < ARRAY_SIZE(object_table); h++) {
 452                struct object_entry *e;
 453
 454                for (e = object_table[h]; e; e = e->next)
 455                        if (e->pack_id == id)
 456                                e->pack_id = MAX_PACK_ID;
 457        }
 458
 459        for (lu = 0; lu < branch_table_sz; lu++) {
 460                struct branch *b;
 461
 462                for (b = branch_table[lu]; b; b = b->table_next_branch)
 463                        if (b->pack_id == id)
 464                                b->pack_id = MAX_PACK_ID;
 465        }
 466
 467        for (t = first_tag; t; t = t->next_tag)
 468                if (t->pack_id == id)
 469                        t->pack_id = MAX_PACK_ID;
 470}
 471
 472static unsigned int hc_str(const char *s, size_t len)
 473{
 474        unsigned int r = 0;
 475        while (len-- > 0)
 476                r = r * 31 + *s++;
 477        return r;
 478}
 479
 480static char *pool_strdup(const char *s)
 481{
 482        size_t len = strlen(s) + 1;
 483        char *r = mem_pool_alloc(&fi_mem_pool, len);
 484        memcpy(r, s, len);
 485        return r;
 486}
 487
 488static void insert_mark(uintmax_t idnum, struct object_entry *oe)
 489{
 490        struct mark_set *s = marks;
 491        while ((idnum >> s->shift) >= 1024) {
 492                s = mem_pool_calloc(&fi_mem_pool, 1, sizeof(struct mark_set));
 493                s->shift = marks->shift + 10;
 494                s->data.sets[0] = marks;
 495                marks = s;
 496        }
 497        while (s->shift) {
 498                uintmax_t i = idnum >> s->shift;
 499                idnum -= i << s->shift;
 500                if (!s->data.sets[i]) {
 501                        s->data.sets[i] = mem_pool_calloc(&fi_mem_pool, 1, sizeof(struct mark_set));
 502                        s->data.sets[i]->shift = s->shift - 10;
 503                }
 504                s = s->data.sets[i];
 505        }
 506        if (!s->data.marked[idnum])
 507                marks_set_count++;
 508        s->data.marked[idnum] = oe;
 509}
 510
 511static struct object_entry *find_mark(uintmax_t idnum)
 512{
 513        uintmax_t orig_idnum = idnum;
 514        struct mark_set *s = marks;
 515        struct object_entry *oe = NULL;
 516        if ((idnum >> s->shift) < 1024) {
 517                while (s && s->shift) {
 518                        uintmax_t i = idnum >> s->shift;
 519                        idnum -= i << s->shift;
 520                        s = s->data.sets[i];
 521                }
 522                if (s)
 523                        oe = s->data.marked[idnum];
 524        }
 525        if (!oe)
 526                die("mark :%" PRIuMAX " not declared", orig_idnum);
 527        return oe;
 528}
 529
 530static struct atom_str *to_atom(const char *s, unsigned short len)
 531{
 532        unsigned int hc = hc_str(s, len) % atom_table_sz;
 533        struct atom_str *c;
 534
 535        for (c = atom_table[hc]; c; c = c->next_atom)
 536                if (c->str_len == len && !strncmp(s, c->str_dat, len))
 537                        return c;
 538
 539        c = mem_pool_alloc(&fi_mem_pool, sizeof(struct atom_str) + len + 1);
 540        c->str_len = len;
 541        memcpy(c->str_dat, s, len);
 542        c->str_dat[len] = 0;
 543        c->next_atom = atom_table[hc];
 544        atom_table[hc] = c;
 545        atom_cnt++;
 546        return c;
 547}
 548
 549static struct branch *lookup_branch(const char *name)
 550{
 551        unsigned int hc = hc_str(name, strlen(name)) % branch_table_sz;
 552        struct branch *b;
 553
 554        for (b = branch_table[hc]; b; b = b->table_next_branch)
 555                if (!strcmp(name, b->name))
 556                        return b;
 557        return NULL;
 558}
 559
 560static struct branch *new_branch(const char *name)
 561{
 562        unsigned int hc = hc_str(name, strlen(name)) % branch_table_sz;
 563        struct branch *b = lookup_branch(name);
 564
 565        if (b)
 566                die("Invalid attempt to create duplicate branch: %s", name);
 567        if (check_refname_format(name, REFNAME_ALLOW_ONELEVEL))
 568                die("Branch name doesn't conform to GIT standards: %s", name);
 569
 570        b = mem_pool_calloc(&fi_mem_pool, 1, sizeof(struct branch));
 571        b->name = pool_strdup(name);
 572        b->table_next_branch = branch_table[hc];
 573        b->branch_tree.versions[0].mode = S_IFDIR;
 574        b->branch_tree.versions[1].mode = S_IFDIR;
 575        b->num_notes = 0;
 576        b->active = 0;
 577        b->pack_id = MAX_PACK_ID;
 578        branch_table[hc] = b;
 579        branch_count++;
 580        return b;
 581}
 582
 583static unsigned int hc_entries(unsigned int cnt)
 584{
 585        cnt = cnt & 7 ? (cnt / 8) + 1 : cnt / 8;
 586        return cnt < avail_tree_table_sz ? cnt : avail_tree_table_sz - 1;
 587}
 588
 589static struct tree_content *new_tree_content(unsigned int cnt)
 590{
 591        struct avail_tree_content *f, *l = NULL;
 592        struct tree_content *t;
 593        unsigned int hc = hc_entries(cnt);
 594
 595        for (f = avail_tree_table[hc]; f; l = f, f = f->next_avail)
 596                if (f->entry_capacity >= cnt)
 597                        break;
 598
 599        if (f) {
 600                if (l)
 601                        l->next_avail = f->next_avail;
 602                else
 603                        avail_tree_table[hc] = f->next_avail;
 604        } else {
 605                cnt = cnt & 7 ? ((cnt / 8) + 1) * 8 : cnt;
 606                f = mem_pool_alloc(&fi_mem_pool, sizeof(*t) + sizeof(t->entries[0]) * cnt);
 607                f->entry_capacity = cnt;
 608        }
 609
 610        t = (struct tree_content*)f;
 611        t->entry_count = 0;
 612        t->delta_depth = 0;
 613        return t;
 614}
 615
 616static void release_tree_entry(struct tree_entry *e);
 617static void release_tree_content(struct tree_content *t)
 618{
 619        struct avail_tree_content *f = (struct avail_tree_content*)t;
 620        unsigned int hc = hc_entries(f->entry_capacity);
 621        f->next_avail = avail_tree_table[hc];
 622        avail_tree_table[hc] = f;
 623}
 624
 625static void release_tree_content_recursive(struct tree_content *t)
 626{
 627        unsigned int i;
 628        for (i = 0; i < t->entry_count; i++)
 629                release_tree_entry(t->entries[i]);
 630        release_tree_content(t);
 631}
 632
 633static struct tree_content *grow_tree_content(
 634        struct tree_content *t,
 635        int amt)
 636{
 637        struct tree_content *r = new_tree_content(t->entry_count + amt);
 638        r->entry_count = t->entry_count;
 639        r->delta_depth = t->delta_depth;
 640        memcpy(r->entries,t->entries,t->entry_count*sizeof(t->entries[0]));
 641        release_tree_content(t);
 642        return r;
 643}
 644
 645static struct tree_entry *new_tree_entry(void)
 646{
 647        struct tree_entry *e;
 648
 649        if (!avail_tree_entry) {
 650                unsigned int n = tree_entry_alloc;
 651                tree_entry_allocd += n * sizeof(struct tree_entry);
 652                ALLOC_ARRAY(e, n);
 653                avail_tree_entry = e;
 654                while (n-- > 1) {
 655                        *((void**)e) = e + 1;
 656                        e++;
 657                }
 658                *((void**)e) = NULL;
 659        }
 660
 661        e = avail_tree_entry;
 662        avail_tree_entry = *((void**)e);
 663        return e;
 664}
 665
 666static void release_tree_entry(struct tree_entry *e)
 667{
 668        if (e->tree)
 669                release_tree_content_recursive(e->tree);
 670        *((void**)e) = avail_tree_entry;
 671        avail_tree_entry = e;
 672}
 673
 674static struct tree_content *dup_tree_content(struct tree_content *s)
 675{
 676        struct tree_content *d;
 677        struct tree_entry *a, *b;
 678        unsigned int i;
 679
 680        if (!s)
 681                return NULL;
 682        d = new_tree_content(s->entry_count);
 683        for (i = 0; i < s->entry_count; i++) {
 684                a = s->entries[i];
 685                b = new_tree_entry();
 686                memcpy(b, a, sizeof(*a));
 687                if (a->tree && is_null_oid(&b->versions[1].oid))
 688                        b->tree = dup_tree_content(a->tree);
 689                else
 690                        b->tree = NULL;
 691                d->entries[i] = b;
 692        }
 693        d->entry_count = s->entry_count;
 694        d->delta_depth = s->delta_depth;
 695
 696        return d;
 697}
 698
 699static void start_packfile(void)
 700{
 701        struct strbuf tmp_file = STRBUF_INIT;
 702        struct packed_git *p;
 703        struct pack_header hdr;
 704        int pack_fd;
 705
 706        pack_fd = odb_mkstemp(&tmp_file, "pack/tmp_pack_XXXXXX");
 707        FLEX_ALLOC_STR(p, pack_name, tmp_file.buf);
 708        strbuf_release(&tmp_file);
 709
 710        p->pack_fd = pack_fd;
 711        p->do_not_close = 1;
 712        pack_file = hashfd(pack_fd, p->pack_name);
 713
 714        hdr.hdr_signature = htonl(PACK_SIGNATURE);
 715        hdr.hdr_version = htonl(2);
 716        hdr.hdr_entries = 0;
 717        hashwrite(pack_file, &hdr, sizeof(hdr));
 718
 719        pack_data = p;
 720        pack_size = sizeof(hdr);
 721        object_count = 0;
 722
 723        REALLOC_ARRAY(all_packs, pack_id + 1);
 724        all_packs[pack_id] = p;
 725}
 726
 727static const char *create_index(void)
 728{
 729        const char *tmpfile;
 730        struct pack_idx_entry **idx, **c, **last;
 731        struct object_entry *e;
 732        struct object_entry_pool *o;
 733
 734        /* Build the table of object IDs. */
 735        ALLOC_ARRAY(idx, object_count);
 736        c = idx;
 737        for (o = blocks; o; o = o->next_pool)
 738                for (e = o->next_free; e-- != o->entries;)
 739                        if (pack_id == e->pack_id)
 740                                *c++ = &e->idx;
 741        last = idx + object_count;
 742        if (c != last)
 743                die("internal consistency error creating the index");
 744
 745        tmpfile = write_idx_file(NULL, idx, object_count, &pack_idx_opts, pack_data->sha1);
 746        free(idx);
 747        return tmpfile;
 748}
 749
 750static char *keep_pack(const char *curr_index_name)
 751{
 752        static const char *keep_msg = "fast-import";
 753        struct strbuf name = STRBUF_INIT;
 754        int keep_fd;
 755
 756        odb_pack_name(&name, pack_data->sha1, "keep");
 757        keep_fd = odb_pack_keep(name.buf);
 758        if (keep_fd < 0)
 759                die_errno("cannot create keep file");
 760        write_or_die(keep_fd, keep_msg, strlen(keep_msg));
 761        if (close(keep_fd))
 762                die_errno("failed to write keep file");
 763
 764        odb_pack_name(&name, pack_data->sha1, "pack");
 765        if (finalize_object_file(pack_data->pack_name, name.buf))
 766                die("cannot store pack file");
 767
 768        odb_pack_name(&name, pack_data->sha1, "idx");
 769        if (finalize_object_file(curr_index_name, name.buf))
 770                die("cannot store index file");
 771        free((void *)curr_index_name);
 772        return strbuf_detach(&name, NULL);
 773}
 774
 775static void unkeep_all_packs(void)
 776{
 777        struct strbuf name = STRBUF_INIT;
 778        int k;
 779
 780        for (k = 0; k < pack_id; k++) {
 781                struct packed_git *p = all_packs[k];
 782                odb_pack_name(&name, p->sha1, "keep");
 783                unlink_or_warn(name.buf);
 784        }
 785        strbuf_release(&name);
 786}
 787
 788static int loosen_small_pack(const struct packed_git *p)
 789{
 790        struct child_process unpack = CHILD_PROCESS_INIT;
 791
 792        if (lseek(p->pack_fd, 0, SEEK_SET) < 0)
 793                die_errno("Failed seeking to start of '%s'", p->pack_name);
 794
 795        unpack.in = p->pack_fd;
 796        unpack.git_cmd = 1;
 797        unpack.stdout_to_stderr = 1;
 798        argv_array_push(&unpack.args, "unpack-objects");
 799        if (!show_stats)
 800                argv_array_push(&unpack.args, "-q");
 801
 802        return run_command(&unpack);
 803}
 804
 805static void end_packfile(void)
 806{
 807        static int running;
 808
 809        if (running || !pack_data)
 810                return;
 811
 812        running = 1;
 813        clear_delta_base_cache();
 814        if (object_count) {
 815                struct packed_git *new_p;
 816                struct object_id cur_pack_oid;
 817                char *idx_name;
 818                int i;
 819                struct branch *b;
 820                struct tag *t;
 821
 822                close_pack_windows(pack_data);
 823                finalize_hashfile(pack_file, cur_pack_oid.hash, 0);
 824                fixup_pack_header_footer(pack_data->pack_fd, pack_data->sha1,
 825                                    pack_data->pack_name, object_count,
 826                                    cur_pack_oid.hash, pack_size);
 827
 828                if (object_count <= unpack_limit) {
 829                        if (!loosen_small_pack(pack_data)) {
 830                                invalidate_pack_id(pack_id);
 831                                goto discard_pack;
 832                        }
 833                }
 834
 835                close(pack_data->pack_fd);
 836                idx_name = keep_pack(create_index());
 837
 838                /* Register the packfile with core git's machinery. */
 839                new_p = add_packed_git(idx_name, strlen(idx_name), 1);
 840                if (!new_p)
 841                        die("core git rejected index %s", idx_name);
 842                all_packs[pack_id] = new_p;
 843                install_packed_git(the_repository, new_p);
 844                free(idx_name);
 845
 846                /* Print the boundary */
 847                if (pack_edges) {
 848                        fprintf(pack_edges, "%s:", new_p->pack_name);
 849                        for (i = 0; i < branch_table_sz; i++) {
 850                                for (b = branch_table[i]; b; b = b->table_next_branch) {
 851                                        if (b->pack_id == pack_id)
 852                                                fprintf(pack_edges, " %s",
 853                                                        oid_to_hex(&b->oid));
 854                                }
 855                        }
 856                        for (t = first_tag; t; t = t->next_tag) {
 857                                if (t->pack_id == pack_id)
 858                                        fprintf(pack_edges, " %s",
 859                                                oid_to_hex(&t->oid));
 860                        }
 861                        fputc('\n', pack_edges);
 862                        fflush(pack_edges);
 863                }
 864
 865                pack_id++;
 866        }
 867        else {
 868discard_pack:
 869                close(pack_data->pack_fd);
 870                unlink_or_warn(pack_data->pack_name);
 871        }
 872        FREE_AND_NULL(pack_data);
 873        running = 0;
 874
 875        /* We can't carry a delta across packfiles. */
 876        strbuf_release(&last_blob.data);
 877        last_blob.offset = 0;
 878        last_blob.depth = 0;
 879}
 880
 881static void cycle_packfile(void)
 882{
 883        end_packfile();
 884        start_packfile();
 885}
 886
 887static int store_object(
 888        enum object_type type,
 889        struct strbuf *dat,
 890        struct last_object *last,
 891        struct object_id *oidout,
 892        uintmax_t mark)
 893{
 894        void *out, *delta;
 895        struct object_entry *e;
 896        unsigned char hdr[96];
 897        struct object_id oid;
 898        unsigned long hdrlen, deltalen;
 899        git_hash_ctx c;
 900        git_zstream s;
 901
 902        hdrlen = xsnprintf((char *)hdr, sizeof(hdr), "%s %lu",
 903                           type_name(type), (unsigned long)dat->len) + 1;
 904        the_hash_algo->init_fn(&c);
 905        the_hash_algo->update_fn(&c, hdr, hdrlen);
 906        the_hash_algo->update_fn(&c, dat->buf, dat->len);
 907        the_hash_algo->final_fn(oid.hash, &c);
 908        if (oidout)
 909                oidcpy(oidout, &oid);
 910
 911        e = insert_object(&oid);
 912        if (mark)
 913                insert_mark(mark, e);
 914        if (e->idx.offset) {
 915                duplicate_count_by_type[type]++;
 916                return 1;
 917        } else if (find_sha1_pack(oid.hash,
 918                                  get_all_packs(the_repository))) {
 919                e->type = type;
 920                e->pack_id = MAX_PACK_ID;
 921                e->idx.offset = 1; /* just not zero! */
 922                duplicate_count_by_type[type]++;
 923                return 1;
 924        }
 925
 926        if (last && last->data.len && last->data.buf && last->depth < max_depth
 927                && dat->len > the_hash_algo->rawsz) {
 928
 929                delta_count_attempts_by_type[type]++;
 930                delta = diff_delta(last->data.buf, last->data.len,
 931                        dat->buf, dat->len,
 932                        &deltalen, dat->len - the_hash_algo->rawsz);
 933        } else
 934                delta = NULL;
 935
 936        git_deflate_init(&s, pack_compression_level);
 937        if (delta) {
 938                s.next_in = delta;
 939                s.avail_in = deltalen;
 940        } else {
 941                s.next_in = (void *)dat->buf;
 942                s.avail_in = dat->len;
 943        }
 944        s.avail_out = git_deflate_bound(&s, s.avail_in);
 945        s.next_out = out = xmalloc(s.avail_out);
 946        while (git_deflate(&s, Z_FINISH) == Z_OK)
 947                ; /* nothing */
 948        git_deflate_end(&s);
 949
 950        /* Determine if we should auto-checkpoint. */
 951        if ((max_packsize && (pack_size + 60 + s.total_out) > max_packsize)
 952                || (pack_size + 60 + s.total_out) < pack_size) {
 953
 954                /* This new object needs to *not* have the current pack_id. */
 955                e->pack_id = pack_id + 1;
 956                cycle_packfile();
 957
 958                /* We cannot carry a delta into the new pack. */
 959                if (delta) {
 960                        FREE_AND_NULL(delta);
 961
 962                        git_deflate_init(&s, pack_compression_level);
 963                        s.next_in = (void *)dat->buf;
 964                        s.avail_in = dat->len;
 965                        s.avail_out = git_deflate_bound(&s, s.avail_in);
 966                        s.next_out = out = xrealloc(out, s.avail_out);
 967                        while (git_deflate(&s, Z_FINISH) == Z_OK)
 968                                ; /* nothing */
 969                        git_deflate_end(&s);
 970                }
 971        }
 972
 973        e->type = type;
 974        e->pack_id = pack_id;
 975        e->idx.offset = pack_size;
 976        object_count++;
 977        object_count_by_type[type]++;
 978
 979        crc32_begin(pack_file);
 980
 981        if (delta) {
 982                off_t ofs = e->idx.offset - last->offset;
 983                unsigned pos = sizeof(hdr) - 1;
 984
 985                delta_count_by_type[type]++;
 986                e->depth = last->depth + 1;
 987
 988                hdrlen = encode_in_pack_object_header(hdr, sizeof(hdr),
 989                                                      OBJ_OFS_DELTA, deltalen);
 990                hashwrite(pack_file, hdr, hdrlen);
 991                pack_size += hdrlen;
 992
 993                hdr[pos] = ofs & 127;
 994                while (ofs >>= 7)
 995                        hdr[--pos] = 128 | (--ofs & 127);
 996                hashwrite(pack_file, hdr + pos, sizeof(hdr) - pos);
 997                pack_size += sizeof(hdr) - pos;
 998        } else {
 999                e->depth = 0;
1000                hdrlen = encode_in_pack_object_header(hdr, sizeof(hdr),
1001                                                      type, dat->len);
1002                hashwrite(pack_file, hdr, hdrlen);
1003                pack_size += hdrlen;
1004        }
1005
1006        hashwrite(pack_file, out, s.total_out);
1007        pack_size += s.total_out;
1008
1009        e->idx.crc32 = crc32_end(pack_file);
1010
1011        free(out);
1012        free(delta);
1013        if (last) {
1014                if (last->no_swap) {
1015                        last->data = *dat;
1016                } else {
1017                        strbuf_swap(&last->data, dat);
1018                }
1019                last->offset = e->idx.offset;
1020                last->depth = e->depth;
1021        }
1022        return 0;
1023}
1024
1025static void truncate_pack(struct hashfile_checkpoint *checkpoint)
1026{
1027        if (hashfile_truncate(pack_file, checkpoint))
1028                die_errno("cannot truncate pack to skip duplicate");
1029        pack_size = checkpoint->offset;
1030}
1031
1032static void stream_blob(uintmax_t len, struct object_id *oidout, uintmax_t mark)
1033{
1034        size_t in_sz = 64 * 1024, out_sz = 64 * 1024;
1035        unsigned char *in_buf = xmalloc(in_sz);
1036        unsigned char *out_buf = xmalloc(out_sz);
1037        struct object_entry *e;
1038        struct object_id oid;
1039        unsigned long hdrlen;
1040        off_t offset;
1041        git_hash_ctx c;
1042        git_zstream s;
1043        struct hashfile_checkpoint checkpoint;
1044        int status = Z_OK;
1045
1046        /* Determine if we should auto-checkpoint. */
1047        if ((max_packsize && (pack_size + 60 + len) > max_packsize)
1048                || (pack_size + 60 + len) < pack_size)
1049                cycle_packfile();
1050
1051        hashfile_checkpoint(pack_file, &checkpoint);
1052        offset = checkpoint.offset;
1053
1054        hdrlen = xsnprintf((char *)out_buf, out_sz, "blob %" PRIuMAX, len) + 1;
1055
1056        the_hash_algo->init_fn(&c);
1057        the_hash_algo->update_fn(&c, out_buf, hdrlen);
1058
1059        crc32_begin(pack_file);
1060
1061        git_deflate_init(&s, pack_compression_level);
1062
1063        hdrlen = encode_in_pack_object_header(out_buf, out_sz, OBJ_BLOB, len);
1064
1065        s.next_out = out_buf + hdrlen;
1066        s.avail_out = out_sz - hdrlen;
1067
1068        while (status != Z_STREAM_END) {
1069                if (0 < len && !s.avail_in) {
1070                        size_t cnt = in_sz < len ? in_sz : (size_t)len;
1071                        size_t n = fread(in_buf, 1, cnt, stdin);
1072                        if (!n && feof(stdin))
1073                                die("EOF in data (%" PRIuMAX " bytes remaining)", len);
1074
1075                        the_hash_algo->update_fn(&c, in_buf, n);
1076                        s.next_in = in_buf;
1077                        s.avail_in = n;
1078                        len -= n;
1079                }
1080
1081                status = git_deflate(&s, len ? 0 : Z_FINISH);
1082
1083                if (!s.avail_out || status == Z_STREAM_END) {
1084                        size_t n = s.next_out - out_buf;
1085                        hashwrite(pack_file, out_buf, n);
1086                        pack_size += n;
1087                        s.next_out = out_buf;
1088                        s.avail_out = out_sz;
1089                }
1090
1091                switch (status) {
1092                case Z_OK:
1093                case Z_BUF_ERROR:
1094                case Z_STREAM_END:
1095                        continue;
1096                default:
1097                        die("unexpected deflate failure: %d", status);
1098                }
1099        }
1100        git_deflate_end(&s);
1101        the_hash_algo->final_fn(oid.hash, &c);
1102
1103        if (oidout)
1104                oidcpy(oidout, &oid);
1105
1106        e = insert_object(&oid);
1107
1108        if (mark)
1109                insert_mark(mark, e);
1110
1111        if (e->idx.offset) {
1112                duplicate_count_by_type[OBJ_BLOB]++;
1113                truncate_pack(&checkpoint);
1114
1115        } else if (find_sha1_pack(oid.hash,
1116                                  get_all_packs(the_repository))) {
1117                e->type = OBJ_BLOB;
1118                e->pack_id = MAX_PACK_ID;
1119                e->idx.offset = 1; /* just not zero! */
1120                duplicate_count_by_type[OBJ_BLOB]++;
1121                truncate_pack(&checkpoint);
1122
1123        } else {
1124                e->depth = 0;
1125                e->type = OBJ_BLOB;
1126                e->pack_id = pack_id;
1127                e->idx.offset = offset;
1128                e->idx.crc32 = crc32_end(pack_file);
1129                object_count++;
1130                object_count_by_type[OBJ_BLOB]++;
1131        }
1132
1133        free(in_buf);
1134        free(out_buf);
1135}
1136
1137/* All calls must be guarded by find_object() or find_mark() to
1138 * ensure the 'struct object_entry' passed was written by this
1139 * process instance.  We unpack the entry by the offset, avoiding
1140 * the need for the corresponding .idx file.  This unpacking rule
1141 * works because we only use OBJ_REF_DELTA within the packfiles
1142 * created by fast-import.
1143 *
1144 * oe must not be NULL.  Such an oe usually comes from giving
1145 * an unknown SHA-1 to find_object() or an undefined mark to
1146 * find_mark().  Callers must test for this condition and use
1147 * the standard read_sha1_file() when it happens.
1148 *
1149 * oe->pack_id must not be MAX_PACK_ID.  Such an oe is usually from
1150 * find_mark(), where the mark was reloaded from an existing marks
1151 * file and is referencing an object that this fast-import process
1152 * instance did not write out to a packfile.  Callers must test for
1153 * this condition and use read_sha1_file() instead.
1154 */
1155static void *gfi_unpack_entry(
1156        struct object_entry *oe,
1157        unsigned long *sizep)
1158{
1159        enum object_type type;
1160        struct packed_git *p = all_packs[oe->pack_id];
1161        if (p == pack_data && p->pack_size < (pack_size + the_hash_algo->rawsz)) {
1162                /* The object is stored in the packfile we are writing to
1163                 * and we have modified it since the last time we scanned
1164                 * back to read a previously written object.  If an old
1165                 * window covered [p->pack_size, p->pack_size + rawsz) its
1166                 * data is stale and is not valid.  Closing all windows
1167                 * and updating the packfile length ensures we can read
1168                 * the newly written data.
1169                 */
1170                close_pack_windows(p);
1171                hashflush(pack_file);
1172
1173                /* We have to offer rawsz bytes additional on the end of
1174                 * the packfile as the core unpacker code assumes the
1175                 * footer is present at the file end and must promise
1176                 * at least rawsz bytes within any window it maps.  But
1177                 * we don't actually create the footer here.
1178                 */
1179                p->pack_size = pack_size + the_hash_algo->rawsz;
1180        }
1181        return unpack_entry(the_repository, p, oe->idx.offset, &type, sizep);
1182}
1183
1184static const char *get_mode(const char *str, uint16_t *modep)
1185{
1186        unsigned char c;
1187        uint16_t mode = 0;
1188
1189        while ((c = *str++) != ' ') {
1190                if (c < '0' || c > '7')
1191                        return NULL;
1192                mode = (mode << 3) + (c - '0');
1193        }
1194        *modep = mode;
1195        return str;
1196}
1197
1198static void load_tree(struct tree_entry *root)
1199{
1200        struct object_id *oid = &root->versions[1].oid;
1201        struct object_entry *myoe;
1202        struct tree_content *t;
1203        unsigned long size;
1204        char *buf;
1205        const char *c;
1206
1207        root->tree = t = new_tree_content(8);
1208        if (is_null_oid(oid))
1209                return;
1210
1211        myoe = find_object(oid);
1212        if (myoe && myoe->pack_id != MAX_PACK_ID) {
1213                if (myoe->type != OBJ_TREE)
1214                        die("Not a tree: %s", oid_to_hex(oid));
1215                t->delta_depth = myoe->depth;
1216                buf = gfi_unpack_entry(myoe, &size);
1217                if (!buf)
1218                        die("Can't load tree %s", oid_to_hex(oid));
1219        } else {
1220                enum object_type type;
1221                buf = read_object_file(oid, &type, &size);
1222                if (!buf || type != OBJ_TREE)
1223                        die("Can't load tree %s", oid_to_hex(oid));
1224        }
1225
1226        c = buf;
1227        while (c != (buf + size)) {
1228                struct tree_entry *e = new_tree_entry();
1229
1230                if (t->entry_count == t->entry_capacity)
1231                        root->tree = t = grow_tree_content(t, t->entry_count);
1232                t->entries[t->entry_count++] = e;
1233
1234                e->tree = NULL;
1235                c = get_mode(c, &e->versions[1].mode);
1236                if (!c)
1237                        die("Corrupt mode in %s", oid_to_hex(oid));
1238                e->versions[0].mode = e->versions[1].mode;
1239                e->name = to_atom(c, strlen(c));
1240                c += e->name->str_len + 1;
1241                hashcpy(e->versions[0].oid.hash, (unsigned char *)c);
1242                hashcpy(e->versions[1].oid.hash, (unsigned char *)c);
1243                c += GIT_SHA1_RAWSZ;
1244        }
1245        free(buf);
1246}
1247
1248static int tecmp0 (const void *_a, const void *_b)
1249{
1250        struct tree_entry *a = *((struct tree_entry**)_a);
1251        struct tree_entry *b = *((struct tree_entry**)_b);
1252        return base_name_compare(
1253                a->name->str_dat, a->name->str_len, a->versions[0].mode,
1254                b->name->str_dat, b->name->str_len, b->versions[0].mode);
1255}
1256
1257static int tecmp1 (const void *_a, const void *_b)
1258{
1259        struct tree_entry *a = *((struct tree_entry**)_a);
1260        struct tree_entry *b = *((struct tree_entry**)_b);
1261        return base_name_compare(
1262                a->name->str_dat, a->name->str_len, a->versions[1].mode,
1263                b->name->str_dat, b->name->str_len, b->versions[1].mode);
1264}
1265
1266static void mktree(struct tree_content *t, int v, struct strbuf *b)
1267{
1268        size_t maxlen = 0;
1269        unsigned int i;
1270
1271        if (!v)
1272                QSORT(t->entries, t->entry_count, tecmp0);
1273        else
1274                QSORT(t->entries, t->entry_count, tecmp1);
1275
1276        for (i = 0; i < t->entry_count; i++) {
1277                if (t->entries[i]->versions[v].mode)
1278                        maxlen += t->entries[i]->name->str_len + 34;
1279        }
1280
1281        strbuf_reset(b);
1282        strbuf_grow(b, maxlen);
1283        for (i = 0; i < t->entry_count; i++) {
1284                struct tree_entry *e = t->entries[i];
1285                if (!e->versions[v].mode)
1286                        continue;
1287                strbuf_addf(b, "%o %s%c",
1288                        (unsigned int)(e->versions[v].mode & ~NO_DELTA),
1289                        e->name->str_dat, '\0');
1290                strbuf_add(b, e->versions[v].oid.hash, GIT_SHA1_RAWSZ);
1291        }
1292}
1293
1294static void store_tree(struct tree_entry *root)
1295{
1296        struct tree_content *t;
1297        unsigned int i, j, del;
1298        struct last_object lo = { STRBUF_INIT, 0, 0, /* no_swap */ 1 };
1299        struct object_entry *le = NULL;
1300
1301        if (!is_null_oid(&root->versions[1].oid))
1302                return;
1303
1304        if (!root->tree)
1305                load_tree(root);
1306        t = root->tree;
1307
1308        for (i = 0; i < t->entry_count; i++) {
1309                if (t->entries[i]->tree)
1310                        store_tree(t->entries[i]);
1311        }
1312
1313        if (!(root->versions[0].mode & NO_DELTA))
1314                le = find_object(&root->versions[0].oid);
1315        if (S_ISDIR(root->versions[0].mode) && le && le->pack_id == pack_id) {
1316                mktree(t, 0, &old_tree);
1317                lo.data = old_tree;
1318                lo.offset = le->idx.offset;
1319                lo.depth = t->delta_depth;
1320        }
1321
1322        mktree(t, 1, &new_tree);
1323        store_object(OBJ_TREE, &new_tree, &lo, &root->versions[1].oid, 0);
1324
1325        t->delta_depth = lo.depth;
1326        for (i = 0, j = 0, del = 0; i < t->entry_count; i++) {
1327                struct tree_entry *e = t->entries[i];
1328                if (e->versions[1].mode) {
1329                        e->versions[0].mode = e->versions[1].mode;
1330                        oidcpy(&e->versions[0].oid, &e->versions[1].oid);
1331                        t->entries[j++] = e;
1332                } else {
1333                        release_tree_entry(e);
1334                        del++;
1335                }
1336        }
1337        t->entry_count -= del;
1338}
1339
1340static void tree_content_replace(
1341        struct tree_entry *root,
1342        const struct object_id *oid,
1343        const uint16_t mode,
1344        struct tree_content *newtree)
1345{
1346        if (!S_ISDIR(mode))
1347                die("Root cannot be a non-directory");
1348        oidclr(&root->versions[0].oid);
1349        oidcpy(&root->versions[1].oid, oid);
1350        if (root->tree)
1351                release_tree_content_recursive(root->tree);
1352        root->tree = newtree;
1353}
1354
1355static int tree_content_set(
1356        struct tree_entry *root,
1357        const char *p,
1358        const struct object_id *oid,
1359        const uint16_t mode,
1360        struct tree_content *subtree)
1361{
1362        struct tree_content *t;
1363        const char *slash1;
1364        unsigned int i, n;
1365        struct tree_entry *e;
1366
1367        slash1 = strchrnul(p, '/');
1368        n = slash1 - p;
1369        if (!n)
1370                die("Empty path component found in input");
1371        if (!*slash1 && !S_ISDIR(mode) && subtree)
1372                die("Non-directories cannot have subtrees");
1373
1374        if (!root->tree)
1375                load_tree(root);
1376        t = root->tree;
1377        for (i = 0; i < t->entry_count; i++) {
1378                e = t->entries[i];
1379                if (e->name->str_len == n && !fspathncmp(p, e->name->str_dat, n)) {
1380                        if (!*slash1) {
1381                                if (!S_ISDIR(mode)
1382                                                && e->versions[1].mode == mode
1383                                                && oideq(&e->versions[1].oid, oid))
1384                                        return 0;
1385                                e->versions[1].mode = mode;
1386                                oidcpy(&e->versions[1].oid, oid);
1387                                if (e->tree)
1388                                        release_tree_content_recursive(e->tree);
1389                                e->tree = subtree;
1390
1391                                /*
1392                                 * We need to leave e->versions[0].sha1 alone
1393                                 * to avoid modifying the preimage tree used
1394                                 * when writing out the parent directory.
1395                                 * But after replacing the subdir with a
1396                                 * completely different one, it's not a good
1397                                 * delta base any more, and besides, we've
1398                                 * thrown away the tree entries needed to
1399                                 * make a delta against it.
1400                                 *
1401                                 * So let's just explicitly disable deltas
1402                                 * for the subtree.
1403                                 */
1404                                if (S_ISDIR(e->versions[0].mode))
1405                                        e->versions[0].mode |= NO_DELTA;
1406
1407                                oidclr(&root->versions[1].oid);
1408                                return 1;
1409                        }
1410                        if (!S_ISDIR(e->versions[1].mode)) {
1411                                e->tree = new_tree_content(8);
1412                                e->versions[1].mode = S_IFDIR;
1413                        }
1414                        if (!e->tree)
1415                                load_tree(e);
1416                        if (tree_content_set(e, slash1 + 1, oid, mode, subtree)) {
1417                                oidclr(&root->versions[1].oid);
1418                                return 1;
1419                        }
1420                        return 0;
1421                }
1422        }
1423
1424        if (t->entry_count == t->entry_capacity)
1425                root->tree = t = grow_tree_content(t, t->entry_count);
1426        e = new_tree_entry();
1427        e->name = to_atom(p, n);
1428        e->versions[0].mode = 0;
1429        oidclr(&e->versions[0].oid);
1430        t->entries[t->entry_count++] = e;
1431        if (*slash1) {
1432                e->tree = new_tree_content(8);
1433                e->versions[1].mode = S_IFDIR;
1434                tree_content_set(e, slash1 + 1, oid, mode, subtree);
1435        } else {
1436                e->tree = subtree;
1437                e->versions[1].mode = mode;
1438                oidcpy(&e->versions[1].oid, oid);
1439        }
1440        oidclr(&root->versions[1].oid);
1441        return 1;
1442}
1443
1444static int tree_content_remove(
1445        struct tree_entry *root,
1446        const char *p,
1447        struct tree_entry *backup_leaf,
1448        int allow_root)
1449{
1450        struct tree_content *t;
1451        const char *slash1;
1452        unsigned int i, n;
1453        struct tree_entry *e;
1454
1455        slash1 = strchrnul(p, '/');
1456        n = slash1 - p;
1457
1458        if (!root->tree)
1459                load_tree(root);
1460
1461        if (!*p && allow_root) {
1462                e = root;
1463                goto del_entry;
1464        }
1465
1466        t = root->tree;
1467        for (i = 0; i < t->entry_count; i++) {
1468                e = t->entries[i];
1469                if (e->name->str_len == n && !fspathncmp(p, e->name->str_dat, n)) {
1470                        if (*slash1 && !S_ISDIR(e->versions[1].mode))
1471                                /*
1472                                 * If p names a file in some subdirectory, and a
1473                                 * file or symlink matching the name of the
1474                                 * parent directory of p exists, then p cannot
1475                                 * exist and need not be deleted.
1476                                 */
1477                                return 1;
1478                        if (!*slash1 || !S_ISDIR(e->versions[1].mode))
1479                                goto del_entry;
1480                        if (!e->tree)
1481                                load_tree(e);
1482                        if (tree_content_remove(e, slash1 + 1, backup_leaf, 0)) {
1483                                for (n = 0; n < e->tree->entry_count; n++) {
1484                                        if (e->tree->entries[n]->versions[1].mode) {
1485                                                oidclr(&root->versions[1].oid);
1486                                                return 1;
1487                                        }
1488                                }
1489                                backup_leaf = NULL;
1490                                goto del_entry;
1491                        }
1492                        return 0;
1493                }
1494        }
1495        return 0;
1496
1497del_entry:
1498        if (backup_leaf)
1499                memcpy(backup_leaf, e, sizeof(*backup_leaf));
1500        else if (e->tree)
1501                release_tree_content_recursive(e->tree);
1502        e->tree = NULL;
1503        e->versions[1].mode = 0;
1504        oidclr(&e->versions[1].oid);
1505        oidclr(&root->versions[1].oid);
1506        return 1;
1507}
1508
1509static int tree_content_get(
1510        struct tree_entry *root,
1511        const char *p,
1512        struct tree_entry *leaf,
1513        int allow_root)
1514{
1515        struct tree_content *t;
1516        const char *slash1;
1517        unsigned int i, n;
1518        struct tree_entry *e;
1519
1520        slash1 = strchrnul(p, '/');
1521        n = slash1 - p;
1522        if (!n && !allow_root)
1523                die("Empty path component found in input");
1524
1525        if (!root->tree)
1526                load_tree(root);
1527
1528        if (!n) {
1529                e = root;
1530                goto found_entry;
1531        }
1532
1533        t = root->tree;
1534        for (i = 0; i < t->entry_count; i++) {
1535                e = t->entries[i];
1536                if (e->name->str_len == n && !fspathncmp(p, e->name->str_dat, n)) {
1537                        if (!*slash1)
1538                                goto found_entry;
1539                        if (!S_ISDIR(e->versions[1].mode))
1540                                return 0;
1541                        if (!e->tree)
1542                                load_tree(e);
1543                        return tree_content_get(e, slash1 + 1, leaf, 0);
1544                }
1545        }
1546        return 0;
1547
1548found_entry:
1549        memcpy(leaf, e, sizeof(*leaf));
1550        if (e->tree && is_null_oid(&e->versions[1].oid))
1551                leaf->tree = dup_tree_content(e->tree);
1552        else
1553                leaf->tree = NULL;
1554        return 1;
1555}
1556
1557static int update_branch(struct branch *b)
1558{
1559        static const char *msg = "fast-import";
1560        struct ref_transaction *transaction;
1561        struct object_id old_oid;
1562        struct strbuf err = STRBUF_INIT;
1563
1564        if (is_null_oid(&b->oid)) {
1565                if (b->delete)
1566                        delete_ref(NULL, b->name, NULL, 0);
1567                return 0;
1568        }
1569        if (read_ref(b->name, &old_oid))
1570                oidclr(&old_oid);
1571        if (!force_update && !is_null_oid(&old_oid)) {
1572                struct commit *old_cmit, *new_cmit;
1573
1574                old_cmit = lookup_commit_reference_gently(the_repository,
1575                                                          &old_oid, 0);
1576                new_cmit = lookup_commit_reference_gently(the_repository,
1577                                                          &b->oid, 0);
1578                if (!old_cmit || !new_cmit)
1579                        return error("Branch %s is missing commits.", b->name);
1580
1581                if (!in_merge_bases(old_cmit, new_cmit)) {
1582                        warning("Not updating %s"
1583                                " (new tip %s does not contain %s)",
1584                                b->name, oid_to_hex(&b->oid),
1585                                oid_to_hex(&old_oid));
1586                        return -1;
1587                }
1588        }
1589        transaction = ref_transaction_begin(&err);
1590        if (!transaction ||
1591            ref_transaction_update(transaction, b->name, &b->oid, &old_oid,
1592                                   0, msg, &err) ||
1593            ref_transaction_commit(transaction, &err)) {
1594                ref_transaction_free(transaction);
1595                error("%s", err.buf);
1596                strbuf_release(&err);
1597                return -1;
1598        }
1599        ref_transaction_free(transaction);
1600        strbuf_release(&err);
1601        return 0;
1602}
1603
1604static void dump_branches(void)
1605{
1606        unsigned int i;
1607        struct branch *b;
1608
1609        for (i = 0; i < branch_table_sz; i++) {
1610                for (b = branch_table[i]; b; b = b->table_next_branch)
1611                        failure |= update_branch(b);
1612        }
1613}
1614
1615static void dump_tags(void)
1616{
1617        static const char *msg = "fast-import";
1618        struct tag *t;
1619        struct strbuf ref_name = STRBUF_INIT;
1620        struct strbuf err = STRBUF_INIT;
1621        struct ref_transaction *transaction;
1622
1623        transaction = ref_transaction_begin(&err);
1624        if (!transaction) {
1625                failure |= error("%s", err.buf);
1626                goto cleanup;
1627        }
1628        for (t = first_tag; t; t = t->next_tag) {
1629                strbuf_reset(&ref_name);
1630                strbuf_addf(&ref_name, "refs/tags/%s", t->name);
1631
1632                if (ref_transaction_update(transaction, ref_name.buf,
1633                                           &t->oid, NULL, 0, msg, &err)) {
1634                        failure |= error("%s", err.buf);
1635                        goto cleanup;
1636                }
1637        }
1638        if (ref_transaction_commit(transaction, &err))
1639                failure |= error("%s", err.buf);
1640
1641 cleanup:
1642        ref_transaction_free(transaction);
1643        strbuf_release(&ref_name);
1644        strbuf_release(&err);
1645}
1646
1647static void dump_marks_helper(FILE *f,
1648        uintmax_t base,
1649        struct mark_set *m)
1650{
1651        uintmax_t k;
1652        if (m->shift) {
1653                for (k = 0; k < 1024; k++) {
1654                        if (m->data.sets[k])
1655                                dump_marks_helper(f, base + (k << m->shift),
1656                                        m->data.sets[k]);
1657                }
1658        } else {
1659                for (k = 0; k < 1024; k++) {
1660                        if (m->data.marked[k])
1661                                fprintf(f, ":%" PRIuMAX " %s\n", base + k,
1662                                        oid_to_hex(&m->data.marked[k]->idx.oid));
1663                }
1664        }
1665}
1666
1667static void dump_marks(void)
1668{
1669        struct lock_file mark_lock = LOCK_INIT;
1670        FILE *f;
1671
1672        if (!export_marks_file || (import_marks_file && !import_marks_file_done))
1673                return;
1674
1675        if (hold_lock_file_for_update(&mark_lock, export_marks_file, 0) < 0) {
1676                failure |= error_errno("Unable to write marks file %s",
1677                                       export_marks_file);
1678                return;
1679        }
1680
1681        f = fdopen_lock_file(&mark_lock, "w");
1682        if (!f) {
1683                int saved_errno = errno;
1684                rollback_lock_file(&mark_lock);
1685                failure |= error("Unable to write marks file %s: %s",
1686                        export_marks_file, strerror(saved_errno));
1687                return;
1688        }
1689
1690        dump_marks_helper(f, 0, marks);
1691        if (commit_lock_file(&mark_lock)) {
1692                failure |= error_errno("Unable to write file %s",
1693                                       export_marks_file);
1694                return;
1695        }
1696}
1697
1698static void read_marks(void)
1699{
1700        char line[512];
1701        FILE *f = fopen(import_marks_file, "r");
1702        if (f)
1703                ;
1704        else if (import_marks_file_ignore_missing && errno == ENOENT)
1705                goto done; /* Marks file does not exist */
1706        else
1707                die_errno("cannot read '%s'", import_marks_file);
1708        while (fgets(line, sizeof(line), f)) {
1709                uintmax_t mark;
1710                char *end;
1711                struct object_id oid;
1712                struct object_entry *e;
1713
1714                end = strchr(line, '\n');
1715                if (line[0] != ':' || !end)
1716                        die("corrupt mark line: %s", line);
1717                *end = 0;
1718                mark = strtoumax(line + 1, &end, 10);
1719                if (!mark || end == line + 1
1720                        || *end != ' ' || get_oid_hex(end + 1, &oid))
1721                        die("corrupt mark line: %s", line);
1722                e = find_object(&oid);
1723                if (!e) {
1724                        enum object_type type = oid_object_info(the_repository,
1725                                                                &oid, NULL);
1726                        if (type < 0)
1727                                die("object not found: %s", oid_to_hex(&oid));
1728                        e = insert_object(&oid);
1729                        e->type = type;
1730                        e->pack_id = MAX_PACK_ID;
1731                        e->idx.offset = 1; /* just not zero! */
1732                }
1733                insert_mark(mark, e);
1734        }
1735        fclose(f);
1736done:
1737        import_marks_file_done = 1;
1738}
1739
1740
1741static int read_next_command(void)
1742{
1743        static int stdin_eof = 0;
1744
1745        if (stdin_eof) {
1746                unread_command_buf = 0;
1747                return EOF;
1748        }
1749
1750        for (;;) {
1751                if (unread_command_buf) {
1752                        unread_command_buf = 0;
1753                } else {
1754                        struct recent_command *rc;
1755
1756                        strbuf_detach(&command_buf, NULL);
1757                        stdin_eof = strbuf_getline_lf(&command_buf, stdin);
1758                        if (stdin_eof)
1759                                return EOF;
1760
1761                        if (!seen_data_command
1762                                && !starts_with(command_buf.buf, "feature ")
1763                                && !starts_with(command_buf.buf, "option ")) {
1764                                parse_argv();
1765                        }
1766
1767                        rc = rc_free;
1768                        if (rc)
1769                                rc_free = rc->next;
1770                        else {
1771                                rc = cmd_hist.next;
1772                                cmd_hist.next = rc->next;
1773                                cmd_hist.next->prev = &cmd_hist;
1774                                free(rc->buf);
1775                        }
1776
1777                        rc->buf = command_buf.buf;
1778                        rc->prev = cmd_tail;
1779                        rc->next = cmd_hist.prev;
1780                        rc->prev->next = rc;
1781                        cmd_tail = rc;
1782                }
1783                if (command_buf.buf[0] == '#')
1784                        continue;
1785                return 0;
1786        }
1787}
1788
1789static void skip_optional_lf(void)
1790{
1791        int term_char = fgetc(stdin);
1792        if (term_char != '\n' && term_char != EOF)
1793                ungetc(term_char, stdin);
1794}
1795
1796static void parse_mark(void)
1797{
1798        const char *v;
1799        if (skip_prefix(command_buf.buf, "mark :", &v)) {
1800                next_mark = strtoumax(v, NULL, 10);
1801                read_next_command();
1802        }
1803        else
1804                next_mark = 0;
1805}
1806
1807static void parse_original_identifier(void)
1808{
1809        const char *v;
1810        if (skip_prefix(command_buf.buf, "original-oid ", &v))
1811                read_next_command();
1812}
1813
1814static int parse_data(struct strbuf *sb, uintmax_t limit, uintmax_t *len_res)
1815{
1816        const char *data;
1817        strbuf_reset(sb);
1818
1819        if (!skip_prefix(command_buf.buf, "data ", &data))
1820                die("Expected 'data n' command, found: %s", command_buf.buf);
1821
1822        if (skip_prefix(data, "<<", &data)) {
1823                char *term = xstrdup(data);
1824                size_t term_len = command_buf.len - (data - command_buf.buf);
1825
1826                strbuf_detach(&command_buf, NULL);
1827                for (;;) {
1828                        if (strbuf_getline_lf(&command_buf, stdin) == EOF)
1829                                die("EOF in data (terminator '%s' not found)", term);
1830                        if (term_len == command_buf.len
1831                                && !strcmp(term, command_buf.buf))
1832                                break;
1833                        strbuf_addbuf(sb, &command_buf);
1834                        strbuf_addch(sb, '\n');
1835                }
1836                free(term);
1837        }
1838        else {
1839                uintmax_t len = strtoumax(data, NULL, 10);
1840                size_t n = 0, length = (size_t)len;
1841
1842                if (limit && limit < len) {
1843                        *len_res = len;
1844                        return 0;
1845                }
1846                if (length < len)
1847                        die("data is too large to use in this context");
1848
1849                while (n < length) {
1850                        size_t s = strbuf_fread(sb, length - n, stdin);
1851                        if (!s && feof(stdin))
1852                                die("EOF in data (%lu bytes remaining)",
1853                                        (unsigned long)(length - n));
1854                        n += s;
1855                }
1856        }
1857
1858        skip_optional_lf();
1859        return 1;
1860}
1861
1862static int validate_raw_date(const char *src, struct strbuf *result)
1863{
1864        const char *orig_src = src;
1865        char *endp;
1866        unsigned long num;
1867
1868        errno = 0;
1869
1870        num = strtoul(src, &endp, 10);
1871        /* NEEDSWORK: perhaps check for reasonable values? */
1872        if (errno || endp == src || *endp != ' ')
1873                return -1;
1874
1875        src = endp + 1;
1876        if (*src != '-' && *src != '+')
1877                return -1;
1878
1879        num = strtoul(src + 1, &endp, 10);
1880        if (errno || endp == src + 1 || *endp || 1400 < num)
1881                return -1;
1882
1883        strbuf_addstr(result, orig_src);
1884        return 0;
1885}
1886
1887static char *parse_ident(const char *buf)
1888{
1889        const char *ltgt;
1890        size_t name_len;
1891        struct strbuf ident = STRBUF_INIT;
1892
1893        /* ensure there is a space delimiter even if there is no name */
1894        if (*buf == '<')
1895                --buf;
1896
1897        ltgt = buf + strcspn(buf, "<>");
1898        if (*ltgt != '<')
1899                die("Missing < in ident string: %s", buf);
1900        if (ltgt != buf && ltgt[-1] != ' ')
1901                die("Missing space before < in ident string: %s", buf);
1902        ltgt = ltgt + 1 + strcspn(ltgt + 1, "<>");
1903        if (*ltgt != '>')
1904                die("Missing > in ident string: %s", buf);
1905        ltgt++;
1906        if (*ltgt != ' ')
1907                die("Missing space after > in ident string: %s", buf);
1908        ltgt++;
1909        name_len = ltgt - buf;
1910        strbuf_add(&ident, buf, name_len);
1911
1912        switch (whenspec) {
1913        case WHENSPEC_RAW:
1914                if (validate_raw_date(ltgt, &ident) < 0)
1915                        die("Invalid raw date \"%s\" in ident: %s", ltgt, buf);
1916                break;
1917        case WHENSPEC_RFC2822:
1918                if (parse_date(ltgt, &ident) < 0)
1919                        die("Invalid rfc2822 date \"%s\" in ident: %s", ltgt, buf);
1920                break;
1921        case WHENSPEC_NOW:
1922                if (strcmp("now", ltgt))
1923                        die("Date in ident must be 'now': %s", buf);
1924                datestamp(&ident);
1925                break;
1926        }
1927
1928        return strbuf_detach(&ident, NULL);
1929}
1930
1931static void parse_and_store_blob(
1932        struct last_object *last,
1933        struct object_id *oidout,
1934        uintmax_t mark)
1935{
1936        static struct strbuf buf = STRBUF_INIT;
1937        uintmax_t len;
1938
1939        if (parse_data(&buf, big_file_threshold, &len))
1940                store_object(OBJ_BLOB, &buf, last, oidout, mark);
1941        else {
1942                if (last) {
1943                        strbuf_release(&last->data);
1944                        last->offset = 0;
1945                        last->depth = 0;
1946                }
1947                stream_blob(len, oidout, mark);
1948                skip_optional_lf();
1949        }
1950}
1951
1952static void parse_new_blob(void)
1953{
1954        read_next_command();
1955        parse_mark();
1956        parse_original_identifier();
1957        parse_and_store_blob(&last_blob, NULL, next_mark);
1958}
1959
1960static void unload_one_branch(void)
1961{
1962        while (cur_active_branches
1963                && cur_active_branches >= max_active_branches) {
1964                uintmax_t min_commit = ULONG_MAX;
1965                struct branch *e, *l = NULL, *p = NULL;
1966
1967                for (e = active_branches; e; e = e->active_next_branch) {
1968                        if (e->last_commit < min_commit) {
1969                                p = l;
1970                                min_commit = e->last_commit;
1971                        }
1972                        l = e;
1973                }
1974
1975                if (p) {
1976                        e = p->active_next_branch;
1977                        p->active_next_branch = e->active_next_branch;
1978                } else {
1979                        e = active_branches;
1980                        active_branches = e->active_next_branch;
1981                }
1982                e->active = 0;
1983                e->active_next_branch = NULL;
1984                if (e->branch_tree.tree) {
1985                        release_tree_content_recursive(e->branch_tree.tree);
1986                        e->branch_tree.tree = NULL;
1987                }
1988                cur_active_branches--;
1989        }
1990}
1991
1992static void load_branch(struct branch *b)
1993{
1994        load_tree(&b->branch_tree);
1995        if (!b->active) {
1996                b->active = 1;
1997                b->active_next_branch = active_branches;
1998                active_branches = b;
1999                cur_active_branches++;
2000                branch_load_count++;
2001        }
2002}
2003
2004static unsigned char convert_num_notes_to_fanout(uintmax_t num_notes)
2005{
2006        unsigned char fanout = 0;
2007        while ((num_notes >>= 8))
2008                fanout++;
2009        return fanout;
2010}
2011
2012static void construct_path_with_fanout(const char *hex_sha1,
2013                unsigned char fanout, char *path)
2014{
2015        unsigned int i = 0, j = 0;
2016        if (fanout >= the_hash_algo->rawsz)
2017                die("Too large fanout (%u)", fanout);
2018        while (fanout) {
2019                path[i++] = hex_sha1[j++];
2020                path[i++] = hex_sha1[j++];
2021                path[i++] = '/';
2022                fanout--;
2023        }
2024        memcpy(path + i, hex_sha1 + j, the_hash_algo->hexsz - j);
2025        path[i + the_hash_algo->hexsz - j] = '\0';
2026}
2027
2028static uintmax_t do_change_note_fanout(
2029                struct tree_entry *orig_root, struct tree_entry *root,
2030                char *hex_oid, unsigned int hex_oid_len,
2031                char *fullpath, unsigned int fullpath_len,
2032                unsigned char fanout)
2033{
2034        struct tree_content *t;
2035        struct tree_entry *e, leaf;
2036        unsigned int i, tmp_hex_oid_len, tmp_fullpath_len;
2037        uintmax_t num_notes = 0;
2038        struct object_id oid;
2039        char realpath[60];
2040
2041        if (!root->tree)
2042                load_tree(root);
2043        t = root->tree;
2044
2045        for (i = 0; t && i < t->entry_count; i++) {
2046                e = t->entries[i];
2047                tmp_hex_oid_len = hex_oid_len + e->name->str_len;
2048                tmp_fullpath_len = fullpath_len;
2049
2050                /*
2051                 * We're interested in EITHER existing note entries (entries
2052                 * with exactly 40 hex chars in path, not including directory
2053                 * separators), OR directory entries that may contain note
2054                 * entries (with < 40 hex chars in path).
2055                 * Also, each path component in a note entry must be a multiple
2056                 * of 2 chars.
2057                 */
2058                if (!e->versions[1].mode ||
2059                    tmp_hex_oid_len > GIT_SHA1_HEXSZ ||
2060                    e->name->str_len % 2)
2061                        continue;
2062
2063                /* This _may_ be a note entry, or a subdir containing notes */
2064                memcpy(hex_oid + hex_oid_len, e->name->str_dat,
2065                       e->name->str_len);
2066                if (tmp_fullpath_len)
2067                        fullpath[tmp_fullpath_len++] = '/';
2068                memcpy(fullpath + tmp_fullpath_len, e->name->str_dat,
2069                       e->name->str_len);
2070                tmp_fullpath_len += e->name->str_len;
2071                fullpath[tmp_fullpath_len] = '\0';
2072
2073                if (tmp_hex_oid_len == GIT_SHA1_HEXSZ && !get_oid_hex(hex_oid, &oid)) {
2074                        /* This is a note entry */
2075                        if (fanout == 0xff) {
2076                                /* Counting mode, no rename */
2077                                num_notes++;
2078                                continue;
2079                        }
2080                        construct_path_with_fanout(hex_oid, fanout, realpath);
2081                        if (!strcmp(fullpath, realpath)) {
2082                                /* Note entry is in correct location */
2083                                num_notes++;
2084                                continue;
2085                        }
2086
2087                        /* Rename fullpath to realpath */
2088                        if (!tree_content_remove(orig_root, fullpath, &leaf, 0))
2089                                die("Failed to remove path %s", fullpath);
2090                        tree_content_set(orig_root, realpath,
2091                                &leaf.versions[1].oid,
2092                                leaf.versions[1].mode,
2093                                leaf.tree);
2094                } else if (S_ISDIR(e->versions[1].mode)) {
2095                        /* This is a subdir that may contain note entries */
2096                        num_notes += do_change_note_fanout(orig_root, e,
2097                                hex_oid, tmp_hex_oid_len,
2098                                fullpath, tmp_fullpath_len, fanout);
2099                }
2100
2101                /* The above may have reallocated the current tree_content */
2102                t = root->tree;
2103        }
2104        return num_notes;
2105}
2106
2107static uintmax_t change_note_fanout(struct tree_entry *root,
2108                unsigned char fanout)
2109{
2110        /*
2111         * The size of path is due to one slash between every two hex digits,
2112         * plus the terminating NUL.  Note that there is no slash at the end, so
2113         * the number of slashes is one less than half the number of hex
2114         * characters.
2115         */
2116        char hex_oid[GIT_MAX_HEXSZ], path[GIT_MAX_HEXSZ + (GIT_MAX_HEXSZ / 2) - 1 + 1];
2117        return do_change_note_fanout(root, root, hex_oid, 0, path, 0, fanout);
2118}
2119
2120/*
2121 * Given a pointer into a string, parse a mark reference:
2122 *
2123 *   idnum ::= ':' bigint;
2124 *
2125 * Return the first character after the value in *endptr.
2126 *
2127 * Complain if the following character is not what is expected,
2128 * either a space or end of the string.
2129 */
2130static uintmax_t parse_mark_ref(const char *p, char **endptr)
2131{
2132        uintmax_t mark;
2133
2134        assert(*p == ':');
2135        p++;
2136        mark = strtoumax(p, endptr, 10);
2137        if (*endptr == p)
2138                die("No value after ':' in mark: %s", command_buf.buf);
2139        return mark;
2140}
2141
2142/*
2143 * Parse the mark reference, and complain if this is not the end of
2144 * the string.
2145 */
2146static uintmax_t parse_mark_ref_eol(const char *p)
2147{
2148        char *end;
2149        uintmax_t mark;
2150
2151        mark = parse_mark_ref(p, &end);
2152        if (*end != '\0')
2153                die("Garbage after mark: %s", command_buf.buf);
2154        return mark;
2155}
2156
2157/*
2158 * Parse the mark reference, demanding a trailing space.  Return a
2159 * pointer to the space.
2160 */
2161static uintmax_t parse_mark_ref_space(const char **p)
2162{
2163        uintmax_t mark;
2164        char *end;
2165
2166        mark = parse_mark_ref(*p, &end);
2167        if (*end++ != ' ')
2168                die("Missing space after mark: %s", command_buf.buf);
2169        *p = end;
2170        return mark;
2171}
2172
2173static void file_change_m(const char *p, struct branch *b)
2174{
2175        static struct strbuf uq = STRBUF_INIT;
2176        const char *endp;
2177        struct object_entry *oe;
2178        struct object_id oid;
2179        uint16_t mode, inline_data = 0;
2180
2181        p = get_mode(p, &mode);
2182        if (!p)
2183                die("Corrupt mode: %s", command_buf.buf);
2184        switch (mode) {
2185        case 0644:
2186        case 0755:
2187                mode |= S_IFREG;
2188        case S_IFREG | 0644:
2189        case S_IFREG | 0755:
2190        case S_IFLNK:
2191        case S_IFDIR:
2192        case S_IFGITLINK:
2193                /* ok */
2194                break;
2195        default:
2196                die("Corrupt mode: %s", command_buf.buf);
2197        }
2198
2199        if (*p == ':') {
2200                oe = find_mark(parse_mark_ref_space(&p));
2201                oidcpy(&oid, &oe->idx.oid);
2202        } else if (skip_prefix(p, "inline ", &p)) {
2203                inline_data = 1;
2204                oe = NULL; /* not used with inline_data, but makes gcc happy */
2205        } else {
2206                if (parse_oid_hex(p, &oid, &p))
2207                        die("Invalid dataref: %s", command_buf.buf);
2208                oe = find_object(&oid);
2209                if (*p++ != ' ')
2210                        die("Missing space after SHA1: %s", command_buf.buf);
2211        }
2212
2213        strbuf_reset(&uq);
2214        if (!unquote_c_style(&uq, p, &endp)) {
2215                if (*endp)
2216                        die("Garbage after path in: %s", command_buf.buf);
2217                p = uq.buf;
2218        }
2219
2220        /* Git does not track empty, non-toplevel directories. */
2221        if (S_ISDIR(mode) && is_empty_tree_oid(&oid) && *p) {
2222                tree_content_remove(&b->branch_tree, p, NULL, 0);
2223                return;
2224        }
2225
2226        if (S_ISGITLINK(mode)) {
2227                if (inline_data)
2228                        die("Git links cannot be specified 'inline': %s",
2229                                command_buf.buf);
2230                else if (oe) {
2231                        if (oe->type != OBJ_COMMIT)
2232                                die("Not a commit (actually a %s): %s",
2233                                        type_name(oe->type), command_buf.buf);
2234                }
2235                /*
2236                 * Accept the sha1 without checking; it expected to be in
2237                 * another repository.
2238                 */
2239        } else if (inline_data) {
2240                if (S_ISDIR(mode))
2241                        die("Directories cannot be specified 'inline': %s",
2242                                command_buf.buf);
2243                if (p != uq.buf) {
2244                        strbuf_addstr(&uq, p);
2245                        p = uq.buf;
2246                }
2247                while (read_next_command() != EOF) {
2248                        const char *v;
2249                        if (skip_prefix(command_buf.buf, "cat-blob ", &v))
2250                                parse_cat_blob(v);
2251                        else {
2252                                parse_and_store_blob(&last_blob, &oid, 0);
2253                                break;
2254                        }
2255                }
2256        } else {
2257                enum object_type expected = S_ISDIR(mode) ?
2258                                                OBJ_TREE: OBJ_BLOB;
2259                enum object_type type = oe ? oe->type :
2260                                        oid_object_info(the_repository, &oid,
2261                                                        NULL);
2262                if (type < 0)
2263                        die("%s not found: %s",
2264                                        S_ISDIR(mode) ?  "Tree" : "Blob",
2265                                        command_buf.buf);
2266                if (type != expected)
2267                        die("Not a %s (actually a %s): %s",
2268                                type_name(expected), type_name(type),
2269                                command_buf.buf);
2270        }
2271
2272        if (!*p) {
2273                tree_content_replace(&b->branch_tree, &oid, mode, NULL);
2274                return;
2275        }
2276        tree_content_set(&b->branch_tree, p, &oid, mode, NULL);
2277}
2278
2279static void file_change_d(const char *p, struct branch *b)
2280{
2281        static struct strbuf uq = STRBUF_INIT;
2282        const char *endp;
2283
2284        strbuf_reset(&uq);
2285        if (!unquote_c_style(&uq, p, &endp)) {
2286                if (*endp)
2287                        die("Garbage after path in: %s", command_buf.buf);
2288                p = uq.buf;
2289        }
2290        tree_content_remove(&b->branch_tree, p, NULL, 1);
2291}
2292
2293static void file_change_cr(const char *s, struct branch *b, int rename)
2294{
2295        const char *d;
2296        static struct strbuf s_uq = STRBUF_INIT;
2297        static struct strbuf d_uq = STRBUF_INIT;
2298        const char *endp;
2299        struct tree_entry leaf;
2300
2301        strbuf_reset(&s_uq);
2302        if (!unquote_c_style(&s_uq, s, &endp)) {
2303                if (*endp != ' ')
2304                        die("Missing space after source: %s", command_buf.buf);
2305        } else {
2306                endp = strchr(s, ' ');
2307                if (!endp)
2308                        die("Missing space after source: %s", command_buf.buf);
2309                strbuf_add(&s_uq, s, endp - s);
2310        }
2311        s = s_uq.buf;
2312
2313        endp++;
2314        if (!*endp)
2315                die("Missing dest: %s", command_buf.buf);
2316
2317        d = endp;
2318        strbuf_reset(&d_uq);
2319        if (!unquote_c_style(&d_uq, d, &endp)) {
2320                if (*endp)
2321                        die("Garbage after dest in: %s", command_buf.buf);
2322                d = d_uq.buf;
2323        }
2324
2325        memset(&leaf, 0, sizeof(leaf));
2326        if (rename)
2327                tree_content_remove(&b->branch_tree, s, &leaf, 1);
2328        else
2329                tree_content_get(&b->branch_tree, s, &leaf, 1);
2330        if (!leaf.versions[1].mode)
2331                die("Path %s not in branch", s);
2332        if (!*d) {      /* C "path/to/subdir" "" */
2333                tree_content_replace(&b->branch_tree,
2334                        &leaf.versions[1].oid,
2335                        leaf.versions[1].mode,
2336                        leaf.tree);
2337                return;
2338        }
2339        tree_content_set(&b->branch_tree, d,
2340                &leaf.versions[1].oid,
2341                leaf.versions[1].mode,
2342                leaf.tree);
2343}
2344
2345static void note_change_n(const char *p, struct branch *b, unsigned char *old_fanout)
2346{
2347        static struct strbuf uq = STRBUF_INIT;
2348        struct object_entry *oe;
2349        struct branch *s;
2350        struct object_id oid, commit_oid;
2351        char path[60];
2352        uint16_t inline_data = 0;
2353        unsigned char new_fanout;
2354
2355        /*
2356         * When loading a branch, we don't traverse its tree to count the real
2357         * number of notes (too expensive to do this for all non-note refs).
2358         * This means that recently loaded notes refs might incorrectly have
2359         * b->num_notes == 0, and consequently, old_fanout might be wrong.
2360         *
2361         * Fix this by traversing the tree and counting the number of notes
2362         * when b->num_notes == 0. If the notes tree is truly empty, the
2363         * calculation should not take long.
2364         */
2365        if (b->num_notes == 0 && *old_fanout == 0) {
2366                /* Invoke change_note_fanout() in "counting mode". */
2367                b->num_notes = change_note_fanout(&b->branch_tree, 0xff);
2368                *old_fanout = convert_num_notes_to_fanout(b->num_notes);
2369        }
2370
2371        /* Now parse the notemodify command. */
2372        /* <dataref> or 'inline' */
2373        if (*p == ':') {
2374                oe = find_mark(parse_mark_ref_space(&p));
2375                oidcpy(&oid, &oe->idx.oid);
2376        } else if (skip_prefix(p, "inline ", &p)) {
2377                inline_data = 1;
2378                oe = NULL; /* not used with inline_data, but makes gcc happy */
2379        } else {
2380                if (parse_oid_hex(p, &oid, &p))
2381                        die("Invalid dataref: %s", command_buf.buf);
2382                oe = find_object(&oid);
2383                if (*p++ != ' ')
2384                        die("Missing space after SHA1: %s", command_buf.buf);
2385        }
2386
2387        /* <commit-ish> */
2388        s = lookup_branch(p);
2389        if (s) {
2390                if (is_null_oid(&s->oid))
2391                        die("Can't add a note on empty branch.");
2392                oidcpy(&commit_oid, &s->oid);
2393        } else if (*p == ':') {
2394                uintmax_t commit_mark = parse_mark_ref_eol(p);
2395                struct object_entry *commit_oe = find_mark(commit_mark);
2396                if (commit_oe->type != OBJ_COMMIT)
2397                        die("Mark :%" PRIuMAX " not a commit", commit_mark);
2398                oidcpy(&commit_oid, &commit_oe->idx.oid);
2399        } else if (!get_oid(p, &commit_oid)) {
2400                unsigned long size;
2401                char *buf = read_object_with_reference(&commit_oid,
2402                                                       commit_type, &size,
2403                                                       &commit_oid);
2404                if (!buf || size < 46)
2405                        die("Not a valid commit: %s", p);
2406                free(buf);
2407        } else
2408                die("Invalid ref name or SHA1 expression: %s", p);
2409
2410        if (inline_data) {
2411                if (p != uq.buf) {
2412                        strbuf_addstr(&uq, p);
2413                        p = uq.buf;
2414                }
2415                read_next_command();
2416                parse_and_store_blob(&last_blob, &oid, 0);
2417        } else if (oe) {
2418                if (oe->type != OBJ_BLOB)
2419                        die("Not a blob (actually a %s): %s",
2420                                type_name(oe->type), command_buf.buf);
2421        } else if (!is_null_oid(&oid)) {
2422                enum object_type type = oid_object_info(the_repository, &oid,
2423                                                        NULL);
2424                if (type < 0)
2425                        die("Blob not found: %s", command_buf.buf);
2426                if (type != OBJ_BLOB)
2427                        die("Not a blob (actually a %s): %s",
2428                            type_name(type), command_buf.buf);
2429        }
2430
2431        construct_path_with_fanout(oid_to_hex(&commit_oid), *old_fanout, path);
2432        if (tree_content_remove(&b->branch_tree, path, NULL, 0))
2433                b->num_notes--;
2434
2435        if (is_null_oid(&oid))
2436                return; /* nothing to insert */
2437
2438        b->num_notes++;
2439        new_fanout = convert_num_notes_to_fanout(b->num_notes);
2440        construct_path_with_fanout(oid_to_hex(&commit_oid), new_fanout, path);
2441        tree_content_set(&b->branch_tree, path, &oid, S_IFREG | 0644, NULL);
2442}
2443
2444static void file_change_deleteall(struct branch *b)
2445{
2446        release_tree_content_recursive(b->branch_tree.tree);
2447        oidclr(&b->branch_tree.versions[0].oid);
2448        oidclr(&b->branch_tree.versions[1].oid);
2449        load_tree(&b->branch_tree);
2450        b->num_notes = 0;
2451}
2452
2453static void parse_from_commit(struct branch *b, char *buf, unsigned long size)
2454{
2455        if (!buf || size < GIT_SHA1_HEXSZ + 6)
2456                die("Not a valid commit: %s", oid_to_hex(&b->oid));
2457        if (memcmp("tree ", buf, 5)
2458                || get_oid_hex(buf + 5, &b->branch_tree.versions[1].oid))
2459                die("The commit %s is corrupt", oid_to_hex(&b->oid));
2460        oidcpy(&b->branch_tree.versions[0].oid,
2461               &b->branch_tree.versions[1].oid);
2462}
2463
2464static void parse_from_existing(struct branch *b)
2465{
2466        if (is_null_oid(&b->oid)) {
2467                oidclr(&b->branch_tree.versions[0].oid);
2468                oidclr(&b->branch_tree.versions[1].oid);
2469        } else {
2470                unsigned long size;
2471                char *buf;
2472
2473                buf = read_object_with_reference(&b->oid, commit_type, &size,
2474                                                 &b->oid);
2475                parse_from_commit(b, buf, size);
2476                free(buf);
2477        }
2478}
2479
2480static int parse_from(struct branch *b)
2481{
2482        const char *from;
2483        struct branch *s;
2484        struct object_id oid;
2485
2486        if (!skip_prefix(command_buf.buf, "from ", &from))
2487                return 0;
2488
2489        oidcpy(&oid, &b->branch_tree.versions[1].oid);
2490
2491        s = lookup_branch(from);
2492        if (b == s)
2493                die("Can't create a branch from itself: %s", b->name);
2494        else if (s) {
2495                struct object_id *t = &s->branch_tree.versions[1].oid;
2496                oidcpy(&b->oid, &s->oid);
2497                oidcpy(&b->branch_tree.versions[0].oid, t);
2498                oidcpy(&b->branch_tree.versions[1].oid, t);
2499        } else if (*from == ':') {
2500                uintmax_t idnum = parse_mark_ref_eol(from);
2501                struct object_entry *oe = find_mark(idnum);
2502                if (oe->type != OBJ_COMMIT)
2503                        die("Mark :%" PRIuMAX " not a commit", idnum);
2504                if (!oideq(&b->oid, &oe->idx.oid)) {
2505                        oidcpy(&b->oid, &oe->idx.oid);
2506                        if (oe->pack_id != MAX_PACK_ID) {
2507                                unsigned long size;
2508                                char *buf = gfi_unpack_entry(oe, &size);
2509                                parse_from_commit(b, buf, size);
2510                                free(buf);
2511                        } else
2512                                parse_from_existing(b);
2513                }
2514        } else if (!get_oid(from, &b->oid)) {
2515                parse_from_existing(b);
2516                if (is_null_oid(&b->oid))
2517                        b->delete = 1;
2518        }
2519        else
2520                die("Invalid ref name or SHA1 expression: %s", from);
2521
2522        if (b->branch_tree.tree && !oideq(&oid, &b->branch_tree.versions[1].oid)) {
2523                release_tree_content_recursive(b->branch_tree.tree);
2524                b->branch_tree.tree = NULL;
2525        }
2526
2527        read_next_command();
2528        return 1;
2529}
2530
2531static struct hash_list *parse_merge(unsigned int *count)
2532{
2533        struct hash_list *list = NULL, **tail = &list, *n;
2534        const char *from;
2535        struct branch *s;
2536
2537        *count = 0;
2538        while (skip_prefix(command_buf.buf, "merge ", &from)) {
2539                n = xmalloc(sizeof(*n));
2540                s = lookup_branch(from);
2541                if (s)
2542                        oidcpy(&n->oid, &s->oid);
2543                else if (*from == ':') {
2544                        uintmax_t idnum = parse_mark_ref_eol(from);
2545                        struct object_entry *oe = find_mark(idnum);
2546                        if (oe->type != OBJ_COMMIT)
2547                                die("Mark :%" PRIuMAX " not a commit", idnum);
2548                        oidcpy(&n->oid, &oe->idx.oid);
2549                } else if (!get_oid(from, &n->oid)) {
2550                        unsigned long size;
2551                        char *buf = read_object_with_reference(&n->oid,
2552                                                               commit_type,
2553                                                               &size, &n->oid);
2554                        if (!buf || size < 46)
2555                                die("Not a valid commit: %s", from);
2556                        free(buf);
2557                } else
2558                        die("Invalid ref name or SHA1 expression: %s", from);
2559
2560                n->next = NULL;
2561                *tail = n;
2562                tail = &n->next;
2563
2564                (*count)++;
2565                read_next_command();
2566        }
2567        return list;
2568}
2569
2570static void parse_new_commit(const char *arg)
2571{
2572        static struct strbuf msg = STRBUF_INIT;
2573        struct branch *b;
2574        char *author = NULL;
2575        char *committer = NULL;
2576        struct hash_list *merge_list = NULL;
2577        unsigned int merge_count;
2578        unsigned char prev_fanout, new_fanout;
2579        const char *v;
2580
2581        b = lookup_branch(arg);
2582        if (!b)
2583                b = new_branch(arg);
2584
2585        read_next_command();
2586        parse_mark();
2587        parse_original_identifier();
2588        if (skip_prefix(command_buf.buf, "author ", &v)) {
2589                author = parse_ident(v);
2590                read_next_command();
2591        }
2592        if (skip_prefix(command_buf.buf, "committer ", &v)) {
2593                committer = parse_ident(v);
2594                read_next_command();
2595        }
2596        if (!committer)
2597                die("Expected committer but didn't get one");
2598        parse_data(&msg, 0, NULL);
2599        read_next_command();
2600        parse_from(b);
2601        merge_list = parse_merge(&merge_count);
2602
2603        /* ensure the branch is active/loaded */
2604        if (!b->branch_tree.tree || !max_active_branches) {
2605                unload_one_branch();
2606                load_branch(b);
2607        }
2608
2609        prev_fanout = convert_num_notes_to_fanout(b->num_notes);
2610
2611        /* file_change* */
2612        while (command_buf.len > 0) {
2613                if (skip_prefix(command_buf.buf, "M ", &v))
2614                        file_change_m(v, b);
2615                else if (skip_prefix(command_buf.buf, "D ", &v))
2616                        file_change_d(v, b);
2617                else if (skip_prefix(command_buf.buf, "R ", &v))
2618                        file_change_cr(v, b, 1);
2619                else if (skip_prefix(command_buf.buf, "C ", &v))
2620                        file_change_cr(v, b, 0);
2621                else if (skip_prefix(command_buf.buf, "N ", &v))
2622                        note_change_n(v, b, &prev_fanout);
2623                else if (!strcmp("deleteall", command_buf.buf))
2624                        file_change_deleteall(b);
2625                else if (skip_prefix(command_buf.buf, "ls ", &v))
2626                        parse_ls(v, b);
2627                else if (skip_prefix(command_buf.buf, "cat-blob ", &v))
2628                        parse_cat_blob(v);
2629                else {
2630                        unread_command_buf = 1;
2631                        break;
2632                }
2633                if (read_next_command() == EOF)
2634                        break;
2635        }
2636
2637        new_fanout = convert_num_notes_to_fanout(b->num_notes);
2638        if (new_fanout != prev_fanout)
2639                b->num_notes = change_note_fanout(&b->branch_tree, new_fanout);
2640
2641        /* build the tree and the commit */
2642        store_tree(&b->branch_tree);
2643        oidcpy(&b->branch_tree.versions[0].oid,
2644               &b->branch_tree.versions[1].oid);
2645
2646        strbuf_reset(&new_data);
2647        strbuf_addf(&new_data, "tree %s\n",
2648                oid_to_hex(&b->branch_tree.versions[1].oid));
2649        if (!is_null_oid(&b->oid))
2650                strbuf_addf(&new_data, "parent %s\n",
2651                            oid_to_hex(&b->oid));
2652        while (merge_list) {
2653                struct hash_list *next = merge_list->next;
2654                strbuf_addf(&new_data, "parent %s\n",
2655                            oid_to_hex(&merge_list->oid));
2656                free(merge_list);
2657                merge_list = next;
2658        }
2659        strbuf_addf(&new_data,
2660                "author %s\n"
2661                "committer %s\n"
2662                "\n",
2663                author ? author : committer, committer);
2664        strbuf_addbuf(&new_data, &msg);
2665        free(author);
2666        free(committer);
2667
2668        if (!store_object(OBJ_COMMIT, &new_data, NULL, &b->oid, next_mark))
2669                b->pack_id = pack_id;
2670        b->last_commit = object_count_by_type[OBJ_COMMIT];
2671}
2672
2673static void parse_new_tag(const char *arg)
2674{
2675        static struct strbuf msg = STRBUF_INIT;
2676        const char *from;
2677        char *tagger;
2678        struct branch *s;
2679        struct tag *t;
2680        uintmax_t from_mark = 0;
2681        struct object_id oid;
2682        enum object_type type;
2683        const char *v;
2684
2685        t = mem_pool_alloc(&fi_mem_pool, sizeof(struct tag));
2686        memset(t, 0, sizeof(struct tag));
2687        t->name = pool_strdup(arg);
2688        if (last_tag)
2689                last_tag->next_tag = t;
2690        else
2691                first_tag = t;
2692        last_tag = t;
2693        read_next_command();
2694
2695        /* from ... */
2696        if (!skip_prefix(command_buf.buf, "from ", &from))
2697                die("Expected from command, got %s", command_buf.buf);
2698        s = lookup_branch(from);
2699        if (s) {
2700                if (is_null_oid(&s->oid))
2701                        die("Can't tag an empty branch.");
2702                oidcpy(&oid, &s->oid);
2703                type = OBJ_COMMIT;
2704        } else if (*from == ':') {
2705                struct object_entry *oe;
2706                from_mark = parse_mark_ref_eol(from);
2707                oe = find_mark(from_mark);
2708                type = oe->type;
2709                oidcpy(&oid, &oe->idx.oid);
2710        } else if (!get_oid(from, &oid)) {
2711                struct object_entry *oe = find_object(&oid);
2712                if (!oe) {
2713                        type = oid_object_info(the_repository, &oid, NULL);
2714                        if (type < 0)
2715                                die("Not a valid object: %s", from);
2716                } else
2717                        type = oe->type;
2718        } else
2719                die("Invalid ref name or SHA1 expression: %s", from);
2720        read_next_command();
2721
2722        /* original-oid ... */
2723        parse_original_identifier();
2724
2725        /* tagger ... */
2726        if (skip_prefix(command_buf.buf, "tagger ", &v)) {
2727                tagger = parse_ident(v);
2728                read_next_command();
2729        } else
2730                tagger = NULL;
2731
2732        /* tag payload/message */
2733        parse_data(&msg, 0, NULL);
2734
2735        /* build the tag object */
2736        strbuf_reset(&new_data);
2737
2738        strbuf_addf(&new_data,
2739                    "object %s\n"
2740                    "type %s\n"
2741                    "tag %s\n",
2742                    oid_to_hex(&oid), type_name(type), t->name);
2743        if (tagger)
2744                strbuf_addf(&new_data,
2745                            "tagger %s\n", tagger);
2746        strbuf_addch(&new_data, '\n');
2747        strbuf_addbuf(&new_data, &msg);
2748        free(tagger);
2749
2750        if (store_object(OBJ_TAG, &new_data, NULL, &t->oid, 0))
2751                t->pack_id = MAX_PACK_ID;
2752        else
2753                t->pack_id = pack_id;
2754}
2755
2756static void parse_reset_branch(const char *arg)
2757{
2758        struct branch *b;
2759
2760        b = lookup_branch(arg);
2761        if (b) {
2762                oidclr(&b->oid);
2763                oidclr(&b->branch_tree.versions[0].oid);
2764                oidclr(&b->branch_tree.versions[1].oid);
2765                if (b->branch_tree.tree) {
2766                        release_tree_content_recursive(b->branch_tree.tree);
2767                        b->branch_tree.tree = NULL;
2768                }
2769        }
2770        else
2771                b = new_branch(arg);
2772        read_next_command();
2773        parse_from(b);
2774        if (command_buf.len > 0)
2775                unread_command_buf = 1;
2776}
2777
2778static void cat_blob_write(const char *buf, unsigned long size)
2779{
2780        if (write_in_full(cat_blob_fd, buf, size) < 0)
2781                die_errno("Write to frontend failed");
2782}
2783
2784static void cat_blob(struct object_entry *oe, struct object_id *oid)
2785{
2786        struct strbuf line = STRBUF_INIT;
2787        unsigned long size;
2788        enum object_type type = 0;
2789        char *buf;
2790
2791        if (!oe || oe->pack_id == MAX_PACK_ID) {
2792                buf = read_object_file(oid, &type, &size);
2793        } else {
2794                type = oe->type;
2795                buf = gfi_unpack_entry(oe, &size);
2796        }
2797
2798        /*
2799         * Output based on batch_one_object() from cat-file.c.
2800         */
2801        if (type <= 0) {
2802                strbuf_reset(&line);
2803                strbuf_addf(&line, "%s missing\n", oid_to_hex(oid));
2804                cat_blob_write(line.buf, line.len);
2805                strbuf_release(&line);
2806                free(buf);
2807                return;
2808        }
2809        if (!buf)
2810                die("Can't read object %s", oid_to_hex(oid));
2811        if (type != OBJ_BLOB)
2812                die("Object %s is a %s but a blob was expected.",
2813                    oid_to_hex(oid), type_name(type));
2814        strbuf_reset(&line);
2815        strbuf_addf(&line, "%s %s %"PRIuMAX"\n", oid_to_hex(oid),
2816                    type_name(type), (uintmax_t)size);
2817        cat_blob_write(line.buf, line.len);
2818        strbuf_release(&line);
2819        cat_blob_write(buf, size);
2820        cat_blob_write("\n", 1);
2821        if (oe && oe->pack_id == pack_id) {
2822                last_blob.offset = oe->idx.offset;
2823                strbuf_attach(&last_blob.data, buf, size, size);
2824                last_blob.depth = oe->depth;
2825        } else
2826                free(buf);
2827}
2828
2829static void parse_get_mark(const char *p)
2830{
2831        struct object_entry *oe;
2832        char output[GIT_MAX_HEXSZ + 2];
2833
2834        /* get-mark SP <object> LF */
2835        if (*p != ':')
2836                die("Not a mark: %s", p);
2837
2838        oe = find_mark(parse_mark_ref_eol(p));
2839        if (!oe)
2840                die("Unknown mark: %s", command_buf.buf);
2841
2842        xsnprintf(output, sizeof(output), "%s\n", oid_to_hex(&oe->idx.oid));
2843        cat_blob_write(output, GIT_SHA1_HEXSZ + 1);
2844}
2845
2846static void parse_cat_blob(const char *p)
2847{
2848        struct object_entry *oe;
2849        struct object_id oid;
2850
2851        /* cat-blob SP <object> LF */
2852        if (*p == ':') {
2853                oe = find_mark(parse_mark_ref_eol(p));
2854                if (!oe)
2855                        die("Unknown mark: %s", command_buf.buf);
2856                oidcpy(&oid, &oe->idx.oid);
2857        } else {
2858                if (parse_oid_hex(p, &oid, &p))
2859                        die("Invalid dataref: %s", command_buf.buf);
2860                if (*p)
2861                        die("Garbage after SHA1: %s", command_buf.buf);
2862                oe = find_object(&oid);
2863        }
2864
2865        cat_blob(oe, &oid);
2866}
2867
2868static struct object_entry *dereference(struct object_entry *oe,
2869                                        struct object_id *oid)
2870{
2871        unsigned long size;
2872        char *buf = NULL;
2873        if (!oe) {
2874                enum object_type type = oid_object_info(the_repository, oid,
2875                                                        NULL);
2876                if (type < 0)
2877                        die("object not found: %s", oid_to_hex(oid));
2878                /* cache it! */
2879                oe = insert_object(oid);
2880                oe->type = type;
2881                oe->pack_id = MAX_PACK_ID;
2882                oe->idx.offset = 1;
2883        }
2884        switch (oe->type) {
2885        case OBJ_TREE:  /* easy case. */
2886                return oe;
2887        case OBJ_COMMIT:
2888        case OBJ_TAG:
2889                break;
2890        default:
2891                die("Not a tree-ish: %s", command_buf.buf);
2892        }
2893
2894        if (oe->pack_id != MAX_PACK_ID) {       /* in a pack being written */
2895                buf = gfi_unpack_entry(oe, &size);
2896        } else {
2897                enum object_type unused;
2898                buf = read_object_file(oid, &unused, &size);
2899        }
2900        if (!buf)
2901                die("Can't load object %s", oid_to_hex(oid));
2902
2903        /* Peel one layer. */
2904        switch (oe->type) {
2905        case OBJ_TAG:
2906                if (size < GIT_SHA1_HEXSZ + strlen("object ") ||
2907                    get_oid_hex(buf + strlen("object "), oid))
2908                        die("Invalid SHA1 in tag: %s", command_buf.buf);
2909                break;
2910        case OBJ_COMMIT:
2911                if (size < GIT_SHA1_HEXSZ + strlen("tree ") ||
2912                    get_oid_hex(buf + strlen("tree "), oid))
2913                        die("Invalid SHA1 in commit: %s", command_buf.buf);
2914        }
2915
2916        free(buf);
2917        return find_object(oid);
2918}
2919
2920static struct object_entry *parse_treeish_dataref(const char **p)
2921{
2922        struct object_id oid;
2923        struct object_entry *e;
2924
2925        if (**p == ':') {       /* <mark> */
2926                e = find_mark(parse_mark_ref_space(p));
2927                if (!e)
2928                        die("Unknown mark: %s", command_buf.buf);
2929                oidcpy(&oid, &e->idx.oid);
2930        } else {        /* <sha1> */
2931                if (parse_oid_hex(*p, &oid, p))
2932                        die("Invalid dataref: %s", command_buf.buf);
2933                e = find_object(&oid);
2934                if (*(*p)++ != ' ')
2935                        die("Missing space after tree-ish: %s", command_buf.buf);
2936        }
2937
2938        while (!e || e->type != OBJ_TREE)
2939                e = dereference(e, &oid);
2940        return e;
2941}
2942
2943static void print_ls(int mode, const unsigned char *sha1, const char *path)
2944{
2945        static struct strbuf line = STRBUF_INIT;
2946
2947        /* See show_tree(). */
2948        const char *type =
2949                S_ISGITLINK(mode) ? commit_type :
2950                S_ISDIR(mode) ? tree_type :
2951                blob_type;
2952
2953        if (!mode) {
2954                /* missing SP path LF */
2955                strbuf_reset(&line);
2956                strbuf_addstr(&line, "missing ");
2957                quote_c_style(path, &line, NULL, 0);
2958                strbuf_addch(&line, '\n');
2959        } else {
2960                /* mode SP type SP object_name TAB path LF */
2961                strbuf_reset(&line);
2962                strbuf_addf(&line, "%06o %s %s\t",
2963                                mode & ~NO_DELTA, type, sha1_to_hex(sha1));
2964                quote_c_style(path, &line, NULL, 0);
2965                strbuf_addch(&line, '\n');
2966        }
2967        cat_blob_write(line.buf, line.len);
2968}
2969
2970static void parse_ls(const char *p, struct branch *b)
2971{
2972        struct tree_entry *root = NULL;
2973        struct tree_entry leaf = {NULL};
2974
2975        /* ls SP (<tree-ish> SP)? <path> */
2976        if (*p == '"') {
2977                if (!b)
2978                        die("Not in a commit: %s", command_buf.buf);
2979                root = &b->branch_tree;
2980        } else {
2981                struct object_entry *e = parse_treeish_dataref(&p);
2982                root = new_tree_entry();
2983                oidcpy(&root->versions[1].oid, &e->idx.oid);
2984                if (!is_null_oid(&root->versions[1].oid))
2985                        root->versions[1].mode = S_IFDIR;
2986                load_tree(root);
2987        }
2988        if (*p == '"') {
2989                static struct strbuf uq = STRBUF_INIT;
2990                const char *endp;
2991                strbuf_reset(&uq);
2992                if (unquote_c_style(&uq, p, &endp))
2993                        die("Invalid path: %s", command_buf.buf);
2994                if (*endp)
2995                        die("Garbage after path in: %s", command_buf.buf);
2996                p = uq.buf;
2997        }
2998        tree_content_get(root, p, &leaf, 1);
2999        /*
3000         * A directory in preparation would have a sha1 of zero
3001         * until it is saved.  Save, for simplicity.
3002         */
3003        if (S_ISDIR(leaf.versions[1].mode))
3004                store_tree(&leaf);
3005
3006        print_ls(leaf.versions[1].mode, leaf.versions[1].oid.hash, p);
3007        if (leaf.tree)
3008                release_tree_content_recursive(leaf.tree);
3009        if (!b || root != &b->branch_tree)
3010                release_tree_entry(root);
3011}
3012
3013static void checkpoint(void)
3014{
3015        checkpoint_requested = 0;
3016        if (object_count) {
3017                cycle_packfile();
3018        }
3019        dump_branches();
3020        dump_tags();
3021        dump_marks();
3022}
3023
3024static void parse_checkpoint(void)
3025{
3026        checkpoint_requested = 1;
3027        skip_optional_lf();
3028}
3029
3030static void parse_progress(void)
3031{
3032        fwrite(command_buf.buf, 1, command_buf.len, stdout);
3033        fputc('\n', stdout);
3034        fflush(stdout);
3035        skip_optional_lf();
3036}
3037
3038static char* make_fast_import_path(const char *path)
3039{
3040        if (!relative_marks_paths || is_absolute_path(path))
3041                return xstrdup(path);
3042        return git_pathdup("info/fast-import/%s", path);
3043}
3044
3045static void option_import_marks(const char *marks,
3046                                        int from_stream, int ignore_missing)
3047{
3048        if (import_marks_file) {
3049                if (from_stream)
3050                        die("Only one import-marks command allowed per stream");
3051
3052                /* read previous mark file */
3053                if(!import_marks_file_from_stream)
3054                        read_marks();
3055        }
3056
3057        import_marks_file = make_fast_import_path(marks);
3058        safe_create_leading_directories_const(import_marks_file);
3059        import_marks_file_from_stream = from_stream;
3060        import_marks_file_ignore_missing = ignore_missing;
3061}
3062
3063static void option_date_format(const char *fmt)
3064{
3065        if (!strcmp(fmt, "raw"))
3066                whenspec = WHENSPEC_RAW;
3067        else if (!strcmp(fmt, "rfc2822"))
3068                whenspec = WHENSPEC_RFC2822;
3069        else if (!strcmp(fmt, "now"))
3070                whenspec = WHENSPEC_NOW;
3071        else
3072                die("unknown --date-format argument %s", fmt);
3073}
3074
3075static unsigned long ulong_arg(const char *option, const char *arg)
3076{
3077        char *endptr;
3078        unsigned long rv = strtoul(arg, &endptr, 0);
3079        if (strchr(arg, '-') || endptr == arg || *endptr)
3080                die("%s: argument must be a non-negative integer", option);
3081        return rv;
3082}
3083
3084static void option_depth(const char *depth)
3085{
3086        max_depth = ulong_arg("--depth", depth);
3087        if (max_depth > MAX_DEPTH)
3088                die("--depth cannot exceed %u", MAX_DEPTH);
3089}
3090
3091static void option_active_branches(const char *branches)
3092{
3093        max_active_branches = ulong_arg("--active-branches", branches);
3094}
3095
3096static void option_export_marks(const char *marks)
3097{
3098        export_marks_file = make_fast_import_path(marks);
3099        safe_create_leading_directories_const(export_marks_file);
3100}
3101
3102static void option_cat_blob_fd(const char *fd)
3103{
3104        unsigned long n = ulong_arg("--cat-blob-fd", fd);
3105        if (n > (unsigned long) INT_MAX)
3106                die("--cat-blob-fd cannot exceed %d", INT_MAX);
3107        cat_blob_fd = (int) n;
3108}
3109
3110static void option_export_pack_edges(const char *edges)
3111{
3112        if (pack_edges)
3113                fclose(pack_edges);
3114        pack_edges = xfopen(edges, "a");
3115}
3116
3117static int parse_one_option(const char *option)
3118{
3119        if (skip_prefix(option, "max-pack-size=", &option)) {
3120                unsigned long v;
3121                if (!git_parse_ulong(option, &v))
3122                        return 0;
3123                if (v < 8192) {
3124                        warning("max-pack-size is now in bytes, assuming --max-pack-size=%lum", v);
3125                        v *= 1024 * 1024;
3126                } else if (v < 1024 * 1024) {
3127                        warning("minimum max-pack-size is 1 MiB");
3128                        v = 1024 * 1024;
3129                }
3130                max_packsize = v;
3131        } else if (skip_prefix(option, "big-file-threshold=", &option)) {
3132                unsigned long v;
3133                if (!git_parse_ulong(option, &v))
3134                        return 0;
3135                big_file_threshold = v;
3136        } else if (skip_prefix(option, "depth=", &option)) {
3137                option_depth(option);
3138        } else if (skip_prefix(option, "active-branches=", &option)) {
3139                option_active_branches(option);
3140        } else if (skip_prefix(option, "export-pack-edges=", &option)) {
3141                option_export_pack_edges(option);
3142        } else if (starts_with(option, "quiet")) {
3143                show_stats = 0;
3144        } else if (starts_with(option, "stats")) {
3145                show_stats = 1;
3146        } else {
3147                return 0;
3148        }
3149
3150        return 1;
3151}
3152
3153static int parse_one_feature(const char *feature, int from_stream)
3154{
3155        const char *arg;
3156
3157        if (skip_prefix(feature, "date-format=", &arg)) {
3158                option_date_format(arg);
3159        } else if (skip_prefix(feature, "import-marks=", &arg)) {
3160                option_import_marks(arg, from_stream, 0);
3161        } else if (skip_prefix(feature, "import-marks-if-exists=", &arg)) {
3162                option_import_marks(arg, from_stream, 1);
3163        } else if (skip_prefix(feature, "export-marks=", &arg)) {
3164                option_export_marks(arg);
3165        } else if (!strcmp(feature, "get-mark")) {
3166                ; /* Don't die - this feature is supported */
3167        } else if (!strcmp(feature, "cat-blob")) {
3168                ; /* Don't die - this feature is supported */
3169        } else if (!strcmp(feature, "relative-marks")) {
3170                relative_marks_paths = 1;
3171        } else if (!strcmp(feature, "no-relative-marks")) {
3172                relative_marks_paths = 0;
3173        } else if (!strcmp(feature, "done")) {
3174                require_explicit_termination = 1;
3175        } else if (!strcmp(feature, "force")) {
3176                force_update = 1;
3177        } else if (!strcmp(feature, "notes") || !strcmp(feature, "ls")) {
3178                ; /* do nothing; we have the feature */
3179        } else {
3180                return 0;
3181        }
3182
3183        return 1;
3184}
3185
3186static void parse_feature(const char *feature)
3187{
3188        if (seen_data_command)
3189                die("Got feature command '%s' after data command", feature);
3190
3191        if (parse_one_feature(feature, 1))
3192                return;
3193
3194        die("This version of fast-import does not support feature %s.", feature);
3195}
3196
3197static void parse_option(const char *option)
3198{
3199        if (seen_data_command)
3200                die("Got option command '%s' after data command", option);
3201
3202        if (parse_one_option(option))
3203                return;
3204
3205        die("This version of fast-import does not support option: %s", option);
3206}
3207
3208static void git_pack_config(void)
3209{
3210        int indexversion_value;
3211        int limit;
3212        unsigned long packsizelimit_value;
3213
3214        if (!git_config_get_ulong("pack.depth", &max_depth)) {
3215                if (max_depth > MAX_DEPTH)
3216                        max_depth = MAX_DEPTH;
3217        }
3218        if (!git_config_get_int("pack.indexversion", &indexversion_value)) {
3219                pack_idx_opts.version = indexversion_value;
3220                if (pack_idx_opts.version > 2)
3221                        git_die_config("pack.indexversion",
3222                                        "bad pack.indexversion=%"PRIu32, pack_idx_opts.version);
3223        }
3224        if (!git_config_get_ulong("pack.packsizelimit", &packsizelimit_value))
3225                max_packsize = packsizelimit_value;
3226
3227        if (!git_config_get_int("fastimport.unpacklimit", &limit))
3228                unpack_limit = limit;
3229        else if (!git_config_get_int("transfer.unpacklimit", &limit))
3230                unpack_limit = limit;
3231
3232        git_config(git_default_config, NULL);
3233}
3234
3235static const char fast_import_usage[] =
3236"git fast-import [--date-format=<f>] [--max-pack-size=<n>] [--big-file-threshold=<n>] [--depth=<n>] [--active-branches=<n>] [--export-marks=<marks.file>]";
3237
3238static void parse_argv(void)
3239{
3240        unsigned int i;
3241
3242        for (i = 1; i < global_argc; i++) {
3243                const char *a = global_argv[i];
3244
3245                if (*a != '-' || !strcmp(a, "--"))
3246                        break;
3247
3248                if (!skip_prefix(a, "--", &a))
3249                        die("unknown option %s", a);
3250
3251                if (parse_one_option(a))
3252                        continue;
3253
3254                if (parse_one_feature(a, 0))
3255                        continue;
3256
3257                if (skip_prefix(a, "cat-blob-fd=", &a)) {
3258                        option_cat_blob_fd(a);
3259                        continue;
3260                }
3261
3262                die("unknown option --%s", a);
3263        }
3264        if (i != global_argc)
3265                usage(fast_import_usage);
3266
3267        seen_data_command = 1;
3268        if (import_marks_file)
3269                read_marks();
3270}
3271
3272int cmd_main(int argc, const char **argv)
3273{
3274        unsigned int i;
3275
3276        if (argc == 2 && !strcmp(argv[1], "-h"))
3277                usage(fast_import_usage);
3278
3279        setup_git_directory();
3280        reset_pack_idx_option(&pack_idx_opts);
3281        git_pack_config();
3282
3283        alloc_objects(object_entry_alloc);
3284        strbuf_init(&command_buf, 0);
3285        atom_table = xcalloc(atom_table_sz, sizeof(struct atom_str*));
3286        branch_table = xcalloc(branch_table_sz, sizeof(struct branch*));
3287        avail_tree_table = xcalloc(avail_tree_table_sz, sizeof(struct avail_tree_content*));
3288        marks = mem_pool_calloc(&fi_mem_pool, 1, sizeof(struct mark_set));
3289
3290        global_argc = argc;
3291        global_argv = argv;
3292
3293        rc_free = mem_pool_alloc(&fi_mem_pool, cmd_save * sizeof(*rc_free));
3294        for (i = 0; i < (cmd_save - 1); i++)
3295                rc_free[i].next = &rc_free[i + 1];
3296        rc_free[cmd_save - 1].next = NULL;
3297
3298        start_packfile();
3299        set_die_routine(die_nicely);
3300        set_checkpoint_signal();
3301        while (read_next_command() != EOF) {
3302                const char *v;
3303                if (!strcmp("blob", command_buf.buf))
3304                        parse_new_blob();
3305                else if (skip_prefix(command_buf.buf, "commit ", &v))
3306                        parse_new_commit(v);
3307                else if (skip_prefix(command_buf.buf, "tag ", &v))
3308                        parse_new_tag(v);
3309                else if (skip_prefix(command_buf.buf, "reset ", &v))
3310                        parse_reset_branch(v);
3311                else if (skip_prefix(command_buf.buf, "ls ", &v))
3312                        parse_ls(v, NULL);
3313                else if (skip_prefix(command_buf.buf, "cat-blob ", &v))
3314                        parse_cat_blob(v);
3315                else if (skip_prefix(command_buf.buf, "get-mark ", &v))
3316                        parse_get_mark(v);
3317                else if (!strcmp("checkpoint", command_buf.buf))
3318                        parse_checkpoint();
3319                else if (!strcmp("done", command_buf.buf))
3320                        break;
3321                else if (starts_with(command_buf.buf, "progress "))
3322                        parse_progress();
3323                else if (skip_prefix(command_buf.buf, "feature ", &v))
3324                        parse_feature(v);
3325                else if (skip_prefix(command_buf.buf, "option git ", &v))
3326                        parse_option(v);
3327                else if (starts_with(command_buf.buf, "option "))
3328                        /* ignore non-git options*/;
3329                else
3330                        die("Unsupported command: %s", command_buf.buf);
3331
3332                if (checkpoint_requested)
3333                        checkpoint();
3334        }
3335
3336        /* argv hasn't been parsed yet, do so */
3337        if (!seen_data_command)
3338                parse_argv();
3339
3340        if (require_explicit_termination && feof(stdin))
3341                die("stream ends early");
3342
3343        end_packfile();
3344
3345        dump_branches();
3346        dump_tags();
3347        unkeep_all_packs();
3348        dump_marks();
3349
3350        if (pack_edges)
3351                fclose(pack_edges);
3352
3353        if (show_stats) {
3354                uintmax_t total_count = 0, duplicate_count = 0;
3355                for (i = 0; i < ARRAY_SIZE(object_count_by_type); i++)
3356                        total_count += object_count_by_type[i];
3357                for (i = 0; i < ARRAY_SIZE(duplicate_count_by_type); i++)
3358                        duplicate_count += duplicate_count_by_type[i];
3359
3360                fprintf(stderr, "%s statistics:\n", argv[0]);
3361                fprintf(stderr, "---------------------------------------------------------------------\n");
3362                fprintf(stderr, "Alloc'd objects: %10" PRIuMAX "\n", alloc_count);
3363                fprintf(stderr, "Total objects:   %10" PRIuMAX " (%10" PRIuMAX " duplicates                  )\n", total_count, duplicate_count);
3364                fprintf(stderr, "      blobs  :   %10" PRIuMAX " (%10" PRIuMAX " duplicates %10" PRIuMAX " deltas of %10" PRIuMAX" attempts)\n", object_count_by_type[OBJ_BLOB], duplicate_count_by_type[OBJ_BLOB], delta_count_by_type[OBJ_BLOB], delta_count_attempts_by_type[OBJ_BLOB]);
3365                fprintf(stderr, "      trees  :   %10" PRIuMAX " (%10" PRIuMAX " duplicates %10" PRIuMAX " deltas of %10" PRIuMAX" attempts)\n", object_count_by_type[OBJ_TREE], duplicate_count_by_type[OBJ_TREE], delta_count_by_type[OBJ_TREE], delta_count_attempts_by_type[OBJ_TREE]);
3366                fprintf(stderr, "      commits:   %10" PRIuMAX " (%10" PRIuMAX " duplicates %10" PRIuMAX " deltas of %10" PRIuMAX" attempts)\n", object_count_by_type[OBJ_COMMIT], duplicate_count_by_type[OBJ_COMMIT], delta_count_by_type[OBJ_COMMIT], delta_count_attempts_by_type[OBJ_COMMIT]);
3367                fprintf(stderr, "      tags   :   %10" PRIuMAX " (%10" PRIuMAX " duplicates %10" PRIuMAX " deltas of %10" PRIuMAX" attempts)\n", object_count_by_type[OBJ_TAG], duplicate_count_by_type[OBJ_TAG], delta_count_by_type[OBJ_TAG], delta_count_attempts_by_type[OBJ_TAG]);
3368                fprintf(stderr, "Total branches:  %10lu (%10lu loads     )\n", branch_count, branch_load_count);
3369                fprintf(stderr, "      marks:     %10" PRIuMAX " (%10" PRIuMAX " unique    )\n", (((uintmax_t)1) << marks->shift) * 1024, marks_set_count);
3370                fprintf(stderr, "      atoms:     %10u\n", atom_cnt);
3371                fprintf(stderr, "Memory total:    %10" PRIuMAX " KiB\n", (tree_entry_allocd + fi_mem_pool.pool_alloc + alloc_count*sizeof(struct object_entry))/1024);
3372                fprintf(stderr, "       pools:    %10lu KiB\n", (unsigned long)((tree_entry_allocd + fi_mem_pool.pool_alloc) /1024));
3373                fprintf(stderr, "     objects:    %10" PRIuMAX " KiB\n", (alloc_count*sizeof(struct object_entry))/1024);
3374                fprintf(stderr, "---------------------------------------------------------------------\n");
3375                pack_report();
3376                fprintf(stderr, "---------------------------------------------------------------------\n");
3377                fprintf(stderr, "\n");
3378        }
3379
3380        return failure ? 1 : 0;
3381}