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