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