]> git.ipfire.org Git - thirdparty/git.git/blob - fast-import.c
Allow fast-import frontends to reload the marks table
[thirdparty/git.git] / fast-import.c
1 /*
2 Format of STDIN stream:
3
4 stream ::= cmd*;
5
6 cmd ::= new_blob
7 | new_commit
8 | new_tag
9 | reset_branch
10 | checkpoint
11 ;
12
13 new_blob ::= 'blob' lf
14 mark?
15 file_content;
16 file_content ::= data;
17
18 new_commit ::= 'commit' sp ref_str lf
19 mark?
20 ('author' sp name '<' email '>' when lf)?
21 'committer' sp name '<' email '>' when lf
22 commit_msg
23 ('from' sp (ref_str | hexsha1 | sha1exp_str | idnum) lf)?
24 ('merge' sp (ref_str | hexsha1 | sha1exp_str | idnum) lf)*
25 file_change*
26 lf;
27 commit_msg ::= data;
28
29 file_change ::= file_clr | file_del | file_obm | file_inm;
30 file_clr ::= 'deleteall' lf;
31 file_del ::= 'D' sp path_str lf;
32 file_obm ::= 'M' sp mode sp (hexsha1 | idnum) sp path_str lf;
33 file_inm ::= 'M' sp mode sp 'inline' sp path_str lf
34 data;
35
36 new_tag ::= 'tag' sp tag_str lf
37 'from' sp (ref_str | hexsha1 | sha1exp_str | idnum) lf
38 'tagger' sp name '<' email '>' when lf
39 tag_msg;
40 tag_msg ::= data;
41
42 reset_branch ::= 'reset' sp ref_str lf
43 ('from' sp (ref_str | hexsha1 | sha1exp_str | idnum) lf)?
44 lf;
45
46 checkpoint ::= 'checkpoint' lf
47 lf;
48
49 # note: the first idnum in a stream should be 1 and subsequent
50 # idnums should not have gaps between values as this will cause
51 # the stream parser to reserve space for the gapped values. An
52 # idnum can be updated in the future to a new object by issuing
53 # a new mark directive with the old idnum.
54 #
55 mark ::= 'mark' sp idnum lf;
56 data ::= (delimited_data | exact_data)
57 lf;
58
59 # note: delim may be any string but must not contain lf.
60 # data_line may contain any data but must not be exactly
61 # delim.
62 delimited_data ::= 'data' sp '<<' delim lf
63 (data_line lf)*
64 delim lf;
65
66 # note: declen indicates the length of binary_data in bytes.
67 # declen does not include the lf preceeding the binary data.
68 #
69 exact_data ::= 'data' sp declen lf
70 binary_data;
71
72 # note: quoted strings are C-style quoting supporting \c for
73 # common escapes of 'c' (e..g \n, \t, \\, \") or \nnn where nnn
74 # is the signed byte value in octal. Note that the only
75 # characters which must actually be escaped to protect the
76 # stream formatting is: \, " and LF. Otherwise these values
77 # are UTF8.
78 #
79 ref_str ::= ref;
80 sha1exp_str ::= sha1exp;
81 tag_str ::= tag;
82 path_str ::= path | '"' quoted(path) '"' ;
83 mode ::= '100644' | '644'
84 | '100755' | '755'
85 | '120000'
86 ;
87
88 declen ::= # unsigned 32 bit value, ascii base10 notation;
89 bigint ::= # unsigned integer value, ascii base10 notation;
90 binary_data ::= # file content, not interpreted;
91
92 when ::= raw_when | rfc2822_when;
93 raw_when ::= ts sp tz;
94 rfc2822_when ::= # Valid RFC 2822 date and time;
95
96 sp ::= # ASCII space character;
97 lf ::= # ASCII newline (LF) character;
98
99 # note: a colon (':') must precede the numerical value assigned to
100 # an idnum. This is to distinguish it from a ref or tag name as
101 # GIT does not permit ':' in ref or tag strings.
102 #
103 idnum ::= ':' bigint;
104 path ::= # GIT style file path, e.g. "a/b/c";
105 ref ::= # GIT ref name, e.g. "refs/heads/MOZ_GECKO_EXPERIMENT";
106 tag ::= # GIT tag name, e.g. "FIREFOX_1_5";
107 sha1exp ::= # Any valid GIT SHA1 expression;
108 hexsha1 ::= # SHA1 in hexadecimal format;
109
110 # note: name and email are UTF8 strings, however name must not
111 # contain '<' or lf and email must not contain any of the
112 # following: '<', '>', lf.
113 #
114 name ::= # valid GIT author/committer name;
115 email ::= # valid GIT author/committer email;
116 ts ::= # time since the epoch in seconds, ascii base10 notation;
117 tz ::= # GIT style timezone;
118 */
119
120 #include "builtin.h"
121 #include "cache.h"
122 #include "object.h"
123 #include "blob.h"
124 #include "tree.h"
125 #include "commit.h"
126 #include "delta.h"
127 #include "pack.h"
128 #include "refs.h"
129 #include "csum-file.h"
130 #include "strbuf.h"
131 #include "quote.h"
132
133 #define PACK_ID_BITS 16
134 #define MAX_PACK_ID ((1<<PACK_ID_BITS)-1)
135
136 #ifndef PRIuMAX
137 #define PRIuMAX "llu"
138 #endif
139
140 struct object_entry
141 {
142 struct object_entry *next;
143 uint32_t offset;
144 unsigned type : TYPE_BITS;
145 unsigned pack_id : PACK_ID_BITS;
146 unsigned char sha1[20];
147 };
148
149 struct object_entry_pool
150 {
151 struct object_entry_pool *next_pool;
152 struct object_entry *next_free;
153 struct object_entry *end;
154 struct object_entry entries[FLEX_ARRAY]; /* more */
155 };
156
157 struct mark_set
158 {
159 union {
160 struct object_entry *marked[1024];
161 struct mark_set *sets[1024];
162 } data;
163 unsigned int shift;
164 };
165
166 struct last_object
167 {
168 void *data;
169 unsigned long len;
170 uint32_t offset;
171 unsigned int depth;
172 unsigned no_free:1;
173 };
174
175 struct mem_pool
176 {
177 struct mem_pool *next_pool;
178 char *next_free;
179 char *end;
180 char space[FLEX_ARRAY]; /* more */
181 };
182
183 struct atom_str
184 {
185 struct atom_str *next_atom;
186 unsigned short str_len;
187 char str_dat[FLEX_ARRAY]; /* more */
188 };
189
190 struct tree_content;
191 struct tree_entry
192 {
193 struct tree_content *tree;
194 struct atom_str* name;
195 struct tree_entry_ms
196 {
197 uint16_t mode;
198 unsigned char sha1[20];
199 } versions[2];
200 };
201
202 struct tree_content
203 {
204 unsigned int entry_capacity; /* must match avail_tree_content */
205 unsigned int entry_count;
206 unsigned int delta_depth;
207 struct tree_entry *entries[FLEX_ARRAY]; /* more */
208 };
209
210 struct avail_tree_content
211 {
212 unsigned int entry_capacity; /* must match tree_content */
213 struct avail_tree_content *next_avail;
214 };
215
216 struct branch
217 {
218 struct branch *table_next_branch;
219 struct branch *active_next_branch;
220 const char *name;
221 struct tree_entry branch_tree;
222 uintmax_t last_commit;
223 unsigned active : 1;
224 unsigned pack_id : PACK_ID_BITS;
225 unsigned char sha1[20];
226 };
227
228 struct tag
229 {
230 struct tag *next_tag;
231 const char *name;
232 unsigned int pack_id;
233 unsigned char sha1[20];
234 };
235
236 struct dbuf
237 {
238 void *buffer;
239 size_t capacity;
240 };
241
242 struct hash_list
243 {
244 struct hash_list *next;
245 unsigned char sha1[20];
246 };
247
248 typedef enum {
249 WHENSPEC_RAW = 1,
250 WHENSPEC_RFC2822,
251 WHENSPEC_NOW,
252 } whenspec_type;
253
254 /* Configured limits on output */
255 static unsigned long max_depth = 10;
256 static unsigned long max_packsize = (1LL << 32) - 1;
257 static int force_update;
258
259 /* Stats and misc. counters */
260 static uintmax_t alloc_count;
261 static uintmax_t marks_set_count;
262 static uintmax_t object_count_by_type[1 << TYPE_BITS];
263 static uintmax_t duplicate_count_by_type[1 << TYPE_BITS];
264 static uintmax_t delta_count_by_type[1 << TYPE_BITS];
265 static unsigned long object_count;
266 static unsigned long branch_count;
267 static unsigned long branch_load_count;
268 static int failure;
269 static FILE *pack_edges;
270
271 /* Memory pools */
272 static size_t mem_pool_alloc = 2*1024*1024 - sizeof(struct mem_pool);
273 static size_t total_allocd;
274 static struct mem_pool *mem_pool;
275
276 /* Atom management */
277 static unsigned int atom_table_sz = 4451;
278 static unsigned int atom_cnt;
279 static struct atom_str **atom_table;
280
281 /* The .pack file being generated */
282 static unsigned int pack_id;
283 static struct packed_git *pack_data;
284 static struct packed_git **all_packs;
285 static unsigned long pack_size;
286
287 /* Table of objects we've written. */
288 static unsigned int object_entry_alloc = 5000;
289 static struct object_entry_pool *blocks;
290 static struct object_entry *object_table[1 << 16];
291 static struct mark_set *marks;
292 static const char* mark_file;
293
294 /* Our last blob */
295 static struct last_object last_blob;
296
297 /* Tree management */
298 static unsigned int tree_entry_alloc = 1000;
299 static void *avail_tree_entry;
300 static unsigned int avail_tree_table_sz = 100;
301 static struct avail_tree_content **avail_tree_table;
302 static struct dbuf old_tree;
303 static struct dbuf new_tree;
304
305 /* Branch data */
306 static unsigned long max_active_branches = 5;
307 static unsigned long cur_active_branches;
308 static unsigned long branch_table_sz = 1039;
309 static struct branch **branch_table;
310 static struct branch *active_branches;
311
312 /* Tag data */
313 static struct tag *first_tag;
314 static struct tag *last_tag;
315
316 /* Input stream parsing */
317 static whenspec_type whenspec = WHENSPEC_RAW;
318 static struct strbuf command_buf;
319 static uintmax_t next_mark;
320 static struct dbuf new_data;
321
322
323 static void alloc_objects(unsigned int cnt)
324 {
325 struct object_entry_pool *b;
326
327 b = xmalloc(sizeof(struct object_entry_pool)
328 + cnt * sizeof(struct object_entry));
329 b->next_pool = blocks;
330 b->next_free = b->entries;
331 b->end = b->entries + cnt;
332 blocks = b;
333 alloc_count += cnt;
334 }
335
336 static struct object_entry *new_object(unsigned char *sha1)
337 {
338 struct object_entry *e;
339
340 if (blocks->next_free == blocks->end)
341 alloc_objects(object_entry_alloc);
342
343 e = blocks->next_free++;
344 hashcpy(e->sha1, sha1);
345 return e;
346 }
347
348 static struct object_entry *find_object(unsigned char *sha1)
349 {
350 unsigned int h = sha1[0] << 8 | sha1[1];
351 struct object_entry *e;
352 for (e = object_table[h]; e; e = e->next)
353 if (!hashcmp(sha1, e->sha1))
354 return e;
355 return NULL;
356 }
357
358 static struct object_entry *insert_object(unsigned char *sha1)
359 {
360 unsigned int h = sha1[0] << 8 | sha1[1];
361 struct object_entry *e = object_table[h];
362 struct object_entry *p = NULL;
363
364 while (e) {
365 if (!hashcmp(sha1, e->sha1))
366 return e;
367 p = e;
368 e = e->next;
369 }
370
371 e = new_object(sha1);
372 e->next = NULL;
373 e->offset = 0;
374 if (p)
375 p->next = e;
376 else
377 object_table[h] = e;
378 return e;
379 }
380
381 static unsigned int hc_str(const char *s, size_t len)
382 {
383 unsigned int r = 0;
384 while (len-- > 0)
385 r = r * 31 + *s++;
386 return r;
387 }
388
389 static void *pool_alloc(size_t len)
390 {
391 struct mem_pool *p;
392 void *r;
393
394 for (p = mem_pool; p; p = p->next_pool)
395 if ((p->end - p->next_free >= len))
396 break;
397
398 if (!p) {
399 if (len >= (mem_pool_alloc/2)) {
400 total_allocd += len;
401 return xmalloc(len);
402 }
403 total_allocd += sizeof(struct mem_pool) + mem_pool_alloc;
404 p = xmalloc(sizeof(struct mem_pool) + mem_pool_alloc);
405 p->next_pool = mem_pool;
406 p->next_free = p->space;
407 p->end = p->next_free + mem_pool_alloc;
408 mem_pool = p;
409 }
410
411 r = p->next_free;
412 /* round out to a pointer alignment */
413 if (len & (sizeof(void*) - 1))
414 len += sizeof(void*) - (len & (sizeof(void*) - 1));
415 p->next_free += len;
416 return r;
417 }
418
419 static void *pool_calloc(size_t count, size_t size)
420 {
421 size_t len = count * size;
422 void *r = pool_alloc(len);
423 memset(r, 0, len);
424 return r;
425 }
426
427 static char *pool_strdup(const char *s)
428 {
429 char *r = pool_alloc(strlen(s) + 1);
430 strcpy(r, s);
431 return r;
432 }
433
434 static void size_dbuf(struct dbuf *b, size_t maxlen)
435 {
436 if (b->buffer) {
437 if (b->capacity >= maxlen)
438 return;
439 free(b->buffer);
440 }
441 b->capacity = ((maxlen / 1024) + 1) * 1024;
442 b->buffer = xmalloc(b->capacity);
443 }
444
445 static void insert_mark(uintmax_t idnum, struct object_entry *oe)
446 {
447 struct mark_set *s = marks;
448 while ((idnum >> s->shift) >= 1024) {
449 s = pool_calloc(1, sizeof(struct mark_set));
450 s->shift = marks->shift + 10;
451 s->data.sets[0] = marks;
452 marks = s;
453 }
454 while (s->shift) {
455 uintmax_t i = idnum >> s->shift;
456 idnum -= i << s->shift;
457 if (!s->data.sets[i]) {
458 s->data.sets[i] = pool_calloc(1, sizeof(struct mark_set));
459 s->data.sets[i]->shift = s->shift - 10;
460 }
461 s = s->data.sets[i];
462 }
463 if (!s->data.marked[idnum])
464 marks_set_count++;
465 s->data.marked[idnum] = oe;
466 }
467
468 static struct object_entry *find_mark(uintmax_t idnum)
469 {
470 uintmax_t orig_idnum = idnum;
471 struct mark_set *s = marks;
472 struct object_entry *oe = NULL;
473 if ((idnum >> s->shift) < 1024) {
474 while (s && s->shift) {
475 uintmax_t i = idnum >> s->shift;
476 idnum -= i << s->shift;
477 s = s->data.sets[i];
478 }
479 if (s)
480 oe = s->data.marked[idnum];
481 }
482 if (!oe)
483 die("mark :%" PRIuMAX " not declared", orig_idnum);
484 return oe;
485 }
486
487 static struct atom_str *to_atom(const char *s, unsigned short len)
488 {
489 unsigned int hc = hc_str(s, len) % atom_table_sz;
490 struct atom_str *c;
491
492 for (c = atom_table[hc]; c; c = c->next_atom)
493 if (c->str_len == len && !strncmp(s, c->str_dat, len))
494 return c;
495
496 c = pool_alloc(sizeof(struct atom_str) + len + 1);
497 c->str_len = len;
498 strncpy(c->str_dat, s, len);
499 c->str_dat[len] = 0;
500 c->next_atom = atom_table[hc];
501 atom_table[hc] = c;
502 atom_cnt++;
503 return c;
504 }
505
506 static struct branch *lookup_branch(const char *name)
507 {
508 unsigned int hc = hc_str(name, strlen(name)) % branch_table_sz;
509 struct branch *b;
510
511 for (b = branch_table[hc]; b; b = b->table_next_branch)
512 if (!strcmp(name, b->name))
513 return b;
514 return NULL;
515 }
516
517 static struct branch *new_branch(const char *name)
518 {
519 unsigned int hc = hc_str(name, strlen(name)) % branch_table_sz;
520 struct branch* b = lookup_branch(name);
521
522 if (b)
523 die("Invalid attempt to create duplicate branch: %s", name);
524 if (check_ref_format(name))
525 die("Branch name doesn't conform to GIT standards: %s", name);
526
527 b = pool_calloc(1, sizeof(struct branch));
528 b->name = pool_strdup(name);
529 b->table_next_branch = branch_table[hc];
530 b->branch_tree.versions[0].mode = S_IFDIR;
531 b->branch_tree.versions[1].mode = S_IFDIR;
532 b->active = 0;
533 b->pack_id = MAX_PACK_ID;
534 branch_table[hc] = b;
535 branch_count++;
536 return b;
537 }
538
539 static unsigned int hc_entries(unsigned int cnt)
540 {
541 cnt = cnt & 7 ? (cnt / 8) + 1 : cnt / 8;
542 return cnt < avail_tree_table_sz ? cnt : avail_tree_table_sz - 1;
543 }
544
545 static struct tree_content *new_tree_content(unsigned int cnt)
546 {
547 struct avail_tree_content *f, *l = NULL;
548 struct tree_content *t;
549 unsigned int hc = hc_entries(cnt);
550
551 for (f = avail_tree_table[hc]; f; l = f, f = f->next_avail)
552 if (f->entry_capacity >= cnt)
553 break;
554
555 if (f) {
556 if (l)
557 l->next_avail = f->next_avail;
558 else
559 avail_tree_table[hc] = f->next_avail;
560 } else {
561 cnt = cnt & 7 ? ((cnt / 8) + 1) * 8 : cnt;
562 f = pool_alloc(sizeof(*t) + sizeof(t->entries[0]) * cnt);
563 f->entry_capacity = cnt;
564 }
565
566 t = (struct tree_content*)f;
567 t->entry_count = 0;
568 t->delta_depth = 0;
569 return t;
570 }
571
572 static void release_tree_entry(struct tree_entry *e);
573 static void release_tree_content(struct tree_content *t)
574 {
575 struct avail_tree_content *f = (struct avail_tree_content*)t;
576 unsigned int hc = hc_entries(f->entry_capacity);
577 f->next_avail = avail_tree_table[hc];
578 avail_tree_table[hc] = f;
579 }
580
581 static void release_tree_content_recursive(struct tree_content *t)
582 {
583 unsigned int i;
584 for (i = 0; i < t->entry_count; i++)
585 release_tree_entry(t->entries[i]);
586 release_tree_content(t);
587 }
588
589 static struct tree_content *grow_tree_content(
590 struct tree_content *t,
591 int amt)
592 {
593 struct tree_content *r = new_tree_content(t->entry_count + amt);
594 r->entry_count = t->entry_count;
595 r->delta_depth = t->delta_depth;
596 memcpy(r->entries,t->entries,t->entry_count*sizeof(t->entries[0]));
597 release_tree_content(t);
598 return r;
599 }
600
601 static struct tree_entry *new_tree_entry(void)
602 {
603 struct tree_entry *e;
604
605 if (!avail_tree_entry) {
606 unsigned int n = tree_entry_alloc;
607 total_allocd += n * sizeof(struct tree_entry);
608 avail_tree_entry = e = xmalloc(n * sizeof(struct tree_entry));
609 while (n-- > 1) {
610 *((void**)e) = e + 1;
611 e++;
612 }
613 *((void**)e) = NULL;
614 }
615
616 e = avail_tree_entry;
617 avail_tree_entry = *((void**)e);
618 return e;
619 }
620
621 static void release_tree_entry(struct tree_entry *e)
622 {
623 if (e->tree)
624 release_tree_content_recursive(e->tree);
625 *((void**)e) = avail_tree_entry;
626 avail_tree_entry = e;
627 }
628
629 static void start_packfile(void)
630 {
631 static char tmpfile[PATH_MAX];
632 struct packed_git *p;
633 struct pack_header hdr;
634 int pack_fd;
635
636 snprintf(tmpfile, sizeof(tmpfile),
637 "%s/pack_XXXXXX", get_object_directory());
638 pack_fd = mkstemp(tmpfile);
639 if (pack_fd < 0)
640 die("Can't create %s: %s", tmpfile, strerror(errno));
641 p = xcalloc(1, sizeof(*p) + strlen(tmpfile) + 2);
642 strcpy(p->pack_name, tmpfile);
643 p->pack_fd = pack_fd;
644
645 hdr.hdr_signature = htonl(PACK_SIGNATURE);
646 hdr.hdr_version = htonl(2);
647 hdr.hdr_entries = 0;
648 write_or_die(p->pack_fd, &hdr, sizeof(hdr));
649
650 pack_data = p;
651 pack_size = sizeof(hdr);
652 object_count = 0;
653
654 all_packs = xrealloc(all_packs, sizeof(*all_packs) * (pack_id + 1));
655 all_packs[pack_id] = p;
656 }
657
658 static void fixup_header_footer(void)
659 {
660 static const int buf_sz = 128 * 1024;
661 int pack_fd = pack_data->pack_fd;
662 SHA_CTX c;
663 struct pack_header hdr;
664 char *buf;
665
666 if (lseek(pack_fd, 0, SEEK_SET) != 0)
667 die("Failed seeking to start: %s", strerror(errno));
668 if (read_in_full(pack_fd, &hdr, sizeof(hdr)) != sizeof(hdr))
669 die("Unable to reread header of %s", pack_data->pack_name);
670 if (lseek(pack_fd, 0, SEEK_SET) != 0)
671 die("Failed seeking to start: %s", strerror(errno));
672 hdr.hdr_entries = htonl(object_count);
673 write_or_die(pack_fd, &hdr, sizeof(hdr));
674
675 SHA1_Init(&c);
676 SHA1_Update(&c, &hdr, sizeof(hdr));
677
678 buf = xmalloc(buf_sz);
679 for (;;) {
680 size_t n = xread(pack_fd, buf, buf_sz);
681 if (!n)
682 break;
683 if (n < 0)
684 die("Failed to checksum %s", pack_data->pack_name);
685 SHA1_Update(&c, buf, n);
686 }
687 free(buf);
688
689 SHA1_Final(pack_data->sha1, &c);
690 write_or_die(pack_fd, pack_data->sha1, sizeof(pack_data->sha1));
691 close(pack_fd);
692 }
693
694 static int oecmp (const void *a_, const void *b_)
695 {
696 struct object_entry *a = *((struct object_entry**)a_);
697 struct object_entry *b = *((struct object_entry**)b_);
698 return hashcmp(a->sha1, b->sha1);
699 }
700
701 static char *create_index(void)
702 {
703 static char tmpfile[PATH_MAX];
704 SHA_CTX ctx;
705 struct sha1file *f;
706 struct object_entry **idx, **c, **last, *e;
707 struct object_entry_pool *o;
708 uint32_t array[256];
709 int i, idx_fd;
710
711 /* Build the sorted table of object IDs. */
712 idx = xmalloc(object_count * sizeof(struct object_entry*));
713 c = idx;
714 for (o = blocks; o; o = o->next_pool)
715 for (e = o->next_free; e-- != o->entries;)
716 if (pack_id == e->pack_id)
717 *c++ = e;
718 last = idx + object_count;
719 if (c != last)
720 die("internal consistency error creating the index");
721 qsort(idx, object_count, sizeof(struct object_entry*), oecmp);
722
723 /* Generate the fan-out array. */
724 c = idx;
725 for (i = 0; i < 256; i++) {
726 struct object_entry **next = c;;
727 while (next < last) {
728 if ((*next)->sha1[0] != i)
729 break;
730 next++;
731 }
732 array[i] = htonl(next - idx);
733 c = next;
734 }
735
736 snprintf(tmpfile, sizeof(tmpfile),
737 "%s/index_XXXXXX", get_object_directory());
738 idx_fd = mkstemp(tmpfile);
739 if (idx_fd < 0)
740 die("Can't create %s: %s", tmpfile, strerror(errno));
741 f = sha1fd(idx_fd, tmpfile);
742 sha1write(f, array, 256 * sizeof(int));
743 SHA1_Init(&ctx);
744 for (c = idx; c != last; c++) {
745 uint32_t offset = htonl((*c)->offset);
746 sha1write(f, &offset, 4);
747 sha1write(f, (*c)->sha1, sizeof((*c)->sha1));
748 SHA1_Update(&ctx, (*c)->sha1, 20);
749 }
750 sha1write(f, pack_data->sha1, sizeof(pack_data->sha1));
751 sha1close(f, NULL, 1);
752 free(idx);
753 SHA1_Final(pack_data->sha1, &ctx);
754 return tmpfile;
755 }
756
757 static char *keep_pack(char *curr_index_name)
758 {
759 static char name[PATH_MAX];
760 static char *keep_msg = "fast-import";
761 int keep_fd;
762
763 chmod(pack_data->pack_name, 0444);
764 chmod(curr_index_name, 0444);
765
766 snprintf(name, sizeof(name), "%s/pack/pack-%s.keep",
767 get_object_directory(), sha1_to_hex(pack_data->sha1));
768 keep_fd = open(name, O_RDWR|O_CREAT|O_EXCL, 0600);
769 if (keep_fd < 0)
770 die("cannot create keep file");
771 write(keep_fd, keep_msg, strlen(keep_msg));
772 close(keep_fd);
773
774 snprintf(name, sizeof(name), "%s/pack/pack-%s.pack",
775 get_object_directory(), sha1_to_hex(pack_data->sha1));
776 if (move_temp_to_file(pack_data->pack_name, name))
777 die("cannot store pack file");
778
779 snprintf(name, sizeof(name), "%s/pack/pack-%s.idx",
780 get_object_directory(), sha1_to_hex(pack_data->sha1));
781 if (move_temp_to_file(curr_index_name, name))
782 die("cannot store index file");
783 return name;
784 }
785
786 static void unkeep_all_packs(void)
787 {
788 static char name[PATH_MAX];
789 int k;
790
791 for (k = 0; k < pack_id; k++) {
792 struct packed_git *p = all_packs[k];
793 snprintf(name, sizeof(name), "%s/pack/pack-%s.keep",
794 get_object_directory(), sha1_to_hex(p->sha1));
795 unlink(name);
796 }
797 }
798
799 static void end_packfile(void)
800 {
801 struct packed_git *old_p = pack_data, *new_p;
802
803 if (object_count) {
804 char *idx_name;
805 int i;
806 struct branch *b;
807 struct tag *t;
808
809 fixup_header_footer();
810 idx_name = keep_pack(create_index());
811
812 /* Register the packfile with core git's machinary. */
813 new_p = add_packed_git(idx_name, strlen(idx_name), 1);
814 if (!new_p)
815 die("core git rejected index %s", idx_name);
816 new_p->windows = old_p->windows;
817 all_packs[pack_id] = new_p;
818 install_packed_git(new_p);
819
820 /* Print the boundary */
821 if (pack_edges) {
822 fprintf(pack_edges, "%s:", new_p->pack_name);
823 for (i = 0; i < branch_table_sz; i++) {
824 for (b = branch_table[i]; b; b = b->table_next_branch) {
825 if (b->pack_id == pack_id)
826 fprintf(pack_edges, " %s", sha1_to_hex(b->sha1));
827 }
828 }
829 for (t = first_tag; t; t = t->next_tag) {
830 if (t->pack_id == pack_id)
831 fprintf(pack_edges, " %s", sha1_to_hex(t->sha1));
832 }
833 fputc('\n', pack_edges);
834 fflush(pack_edges);
835 }
836
837 pack_id++;
838 }
839 else
840 unlink(old_p->pack_name);
841 free(old_p);
842
843 /* We can't carry a delta across packfiles. */
844 free(last_blob.data);
845 last_blob.data = NULL;
846 last_blob.len = 0;
847 last_blob.offset = 0;
848 last_blob.depth = 0;
849 }
850
851 static void cycle_packfile(void)
852 {
853 end_packfile();
854 start_packfile();
855 }
856
857 static size_t encode_header(
858 enum object_type type,
859 size_t size,
860 unsigned char *hdr)
861 {
862 int n = 1;
863 unsigned char c;
864
865 if (type < OBJ_COMMIT || type > OBJ_REF_DELTA)
866 die("bad type %d", type);
867
868 c = (type << 4) | (size & 15);
869 size >>= 4;
870 while (size) {
871 *hdr++ = c | 0x80;
872 c = size & 0x7f;
873 size >>= 7;
874 n++;
875 }
876 *hdr = c;
877 return n;
878 }
879
880 static int store_object(
881 enum object_type type,
882 void *dat,
883 size_t datlen,
884 struct last_object *last,
885 unsigned char *sha1out,
886 uintmax_t mark)
887 {
888 void *out, *delta;
889 struct object_entry *e;
890 unsigned char hdr[96];
891 unsigned char sha1[20];
892 unsigned long hdrlen, deltalen;
893 SHA_CTX c;
894 z_stream s;
895
896 hdrlen = sprintf((char*)hdr,"%s %lu", typename(type),
897 (unsigned long)datlen) + 1;
898 SHA1_Init(&c);
899 SHA1_Update(&c, hdr, hdrlen);
900 SHA1_Update(&c, dat, datlen);
901 SHA1_Final(sha1, &c);
902 if (sha1out)
903 hashcpy(sha1out, sha1);
904
905 e = insert_object(sha1);
906 if (mark)
907 insert_mark(mark, e);
908 if (e->offset) {
909 duplicate_count_by_type[type]++;
910 return 1;
911 }
912
913 if (last && last->data && last->depth < max_depth) {
914 delta = diff_delta(last->data, last->len,
915 dat, datlen,
916 &deltalen, 0);
917 if (delta && deltalen >= datlen) {
918 free(delta);
919 delta = NULL;
920 }
921 } else
922 delta = NULL;
923
924 memset(&s, 0, sizeof(s));
925 deflateInit(&s, zlib_compression_level);
926 if (delta) {
927 s.next_in = delta;
928 s.avail_in = deltalen;
929 } else {
930 s.next_in = dat;
931 s.avail_in = datlen;
932 }
933 s.avail_out = deflateBound(&s, s.avail_in);
934 s.next_out = out = xmalloc(s.avail_out);
935 while (deflate(&s, Z_FINISH) == Z_OK)
936 /* nothing */;
937 deflateEnd(&s);
938
939 /* Determine if we should auto-checkpoint. */
940 if ((pack_size + 60 + s.total_out) > max_packsize
941 || (pack_size + 60 + s.total_out) < pack_size) {
942
943 /* This new object needs to *not* have the current pack_id. */
944 e->pack_id = pack_id + 1;
945 cycle_packfile();
946
947 /* We cannot carry a delta into the new pack. */
948 if (delta) {
949 free(delta);
950 delta = NULL;
951
952 memset(&s, 0, sizeof(s));
953 deflateInit(&s, zlib_compression_level);
954 s.next_in = dat;
955 s.avail_in = datlen;
956 s.avail_out = deflateBound(&s, s.avail_in);
957 s.next_out = out = xrealloc(out, s.avail_out);
958 while (deflate(&s, Z_FINISH) == Z_OK)
959 /* nothing */;
960 deflateEnd(&s);
961 }
962 }
963
964 e->type = type;
965 e->pack_id = pack_id;
966 e->offset = pack_size;
967 object_count++;
968 object_count_by_type[type]++;
969
970 if (delta) {
971 unsigned long ofs = e->offset - last->offset;
972 unsigned pos = sizeof(hdr) - 1;
973
974 delta_count_by_type[type]++;
975 last->depth++;
976
977 hdrlen = encode_header(OBJ_OFS_DELTA, deltalen, hdr);
978 write_or_die(pack_data->pack_fd, hdr, hdrlen);
979 pack_size += hdrlen;
980
981 hdr[pos] = ofs & 127;
982 while (ofs >>= 7)
983 hdr[--pos] = 128 | (--ofs & 127);
984 write_or_die(pack_data->pack_fd, hdr + pos, sizeof(hdr) - pos);
985 pack_size += sizeof(hdr) - pos;
986 } else {
987 if (last)
988 last->depth = 0;
989 hdrlen = encode_header(type, datlen, hdr);
990 write_or_die(pack_data->pack_fd, hdr, hdrlen);
991 pack_size += hdrlen;
992 }
993
994 write_or_die(pack_data->pack_fd, out, s.total_out);
995 pack_size += s.total_out;
996
997 free(out);
998 free(delta);
999 if (last) {
1000 if (!last->no_free)
1001 free(last->data);
1002 last->data = dat;
1003 last->offset = e->offset;
1004 last->len = datlen;
1005 }
1006 return 0;
1007 }
1008
1009 static void *gfi_unpack_entry(
1010 struct object_entry *oe,
1011 unsigned long *sizep)
1012 {
1013 enum object_type type;
1014 struct packed_git *p = all_packs[oe->pack_id];
1015 if (p == pack_data)
1016 p->pack_size = pack_size + 20;
1017 return unpack_entry(p, oe->offset, &type, sizep);
1018 }
1019
1020 static const char *get_mode(const char *str, uint16_t *modep)
1021 {
1022 unsigned char c;
1023 uint16_t mode = 0;
1024
1025 while ((c = *str++) != ' ') {
1026 if (c < '0' || c > '7')
1027 return NULL;
1028 mode = (mode << 3) + (c - '0');
1029 }
1030 *modep = mode;
1031 return str;
1032 }
1033
1034 static void load_tree(struct tree_entry *root)
1035 {
1036 unsigned char* sha1 = root->versions[1].sha1;
1037 struct object_entry *myoe;
1038 struct tree_content *t;
1039 unsigned long size;
1040 char *buf;
1041 const char *c;
1042
1043 root->tree = t = new_tree_content(8);
1044 if (is_null_sha1(sha1))
1045 return;
1046
1047 myoe = find_object(sha1);
1048 if (myoe) {
1049 if (myoe->type != OBJ_TREE)
1050 die("Not a tree: %s", sha1_to_hex(sha1));
1051 t->delta_depth = 0;
1052 buf = gfi_unpack_entry(myoe, &size);
1053 } else {
1054 enum object_type type;
1055 buf = read_sha1_file(sha1, &type, &size);
1056 if (!buf || type != OBJ_TREE)
1057 die("Can't load tree %s", sha1_to_hex(sha1));
1058 }
1059
1060 c = buf;
1061 while (c != (buf + size)) {
1062 struct tree_entry *e = new_tree_entry();
1063
1064 if (t->entry_count == t->entry_capacity)
1065 root->tree = t = grow_tree_content(t, 8);
1066 t->entries[t->entry_count++] = e;
1067
1068 e->tree = NULL;
1069 c = get_mode(c, &e->versions[1].mode);
1070 if (!c)
1071 die("Corrupt mode in %s", sha1_to_hex(sha1));
1072 e->versions[0].mode = e->versions[1].mode;
1073 e->name = to_atom(c, (unsigned short)strlen(c));
1074 c += e->name->str_len + 1;
1075 hashcpy(e->versions[0].sha1, (unsigned char*)c);
1076 hashcpy(e->versions[1].sha1, (unsigned char*)c);
1077 c += 20;
1078 }
1079 free(buf);
1080 }
1081
1082 static int tecmp0 (const void *_a, const void *_b)
1083 {
1084 struct tree_entry *a = *((struct tree_entry**)_a);
1085 struct tree_entry *b = *((struct tree_entry**)_b);
1086 return base_name_compare(
1087 a->name->str_dat, a->name->str_len, a->versions[0].mode,
1088 b->name->str_dat, b->name->str_len, b->versions[0].mode);
1089 }
1090
1091 static int tecmp1 (const void *_a, const void *_b)
1092 {
1093 struct tree_entry *a = *((struct tree_entry**)_a);
1094 struct tree_entry *b = *((struct tree_entry**)_b);
1095 return base_name_compare(
1096 a->name->str_dat, a->name->str_len, a->versions[1].mode,
1097 b->name->str_dat, b->name->str_len, b->versions[1].mode);
1098 }
1099
1100 static void mktree(struct tree_content *t,
1101 int v,
1102 unsigned long *szp,
1103 struct dbuf *b)
1104 {
1105 size_t maxlen = 0;
1106 unsigned int i;
1107 char *c;
1108
1109 if (!v)
1110 qsort(t->entries,t->entry_count,sizeof(t->entries[0]),tecmp0);
1111 else
1112 qsort(t->entries,t->entry_count,sizeof(t->entries[0]),tecmp1);
1113
1114 for (i = 0; i < t->entry_count; i++) {
1115 if (t->entries[i]->versions[v].mode)
1116 maxlen += t->entries[i]->name->str_len + 34;
1117 }
1118
1119 size_dbuf(b, maxlen);
1120 c = b->buffer;
1121 for (i = 0; i < t->entry_count; i++) {
1122 struct tree_entry *e = t->entries[i];
1123 if (!e->versions[v].mode)
1124 continue;
1125 c += sprintf(c, "%o", (unsigned int)e->versions[v].mode);
1126 *c++ = ' ';
1127 strcpy(c, e->name->str_dat);
1128 c += e->name->str_len + 1;
1129 hashcpy((unsigned char*)c, e->versions[v].sha1);
1130 c += 20;
1131 }
1132 *szp = c - (char*)b->buffer;
1133 }
1134
1135 static void store_tree(struct tree_entry *root)
1136 {
1137 struct tree_content *t = root->tree;
1138 unsigned int i, j, del;
1139 unsigned long new_len;
1140 struct last_object lo;
1141 struct object_entry *le;
1142
1143 if (!is_null_sha1(root->versions[1].sha1))
1144 return;
1145
1146 for (i = 0; i < t->entry_count; i++) {
1147 if (t->entries[i]->tree)
1148 store_tree(t->entries[i]);
1149 }
1150
1151 le = find_object(root->versions[0].sha1);
1152 if (!S_ISDIR(root->versions[0].mode)
1153 || !le
1154 || le->pack_id != pack_id) {
1155 lo.data = NULL;
1156 lo.depth = 0;
1157 } else {
1158 mktree(t, 0, &lo.len, &old_tree);
1159 lo.data = old_tree.buffer;
1160 lo.offset = le->offset;
1161 lo.depth = t->delta_depth;
1162 lo.no_free = 1;
1163 }
1164
1165 mktree(t, 1, &new_len, &new_tree);
1166 store_object(OBJ_TREE, new_tree.buffer, new_len,
1167 &lo, root->versions[1].sha1, 0);
1168
1169 t->delta_depth = lo.depth;
1170 for (i = 0, j = 0, del = 0; i < t->entry_count; i++) {
1171 struct tree_entry *e = t->entries[i];
1172 if (e->versions[1].mode) {
1173 e->versions[0].mode = e->versions[1].mode;
1174 hashcpy(e->versions[0].sha1, e->versions[1].sha1);
1175 t->entries[j++] = e;
1176 } else {
1177 release_tree_entry(e);
1178 del++;
1179 }
1180 }
1181 t->entry_count -= del;
1182 }
1183
1184 static int tree_content_set(
1185 struct tree_entry *root,
1186 const char *p,
1187 const unsigned char *sha1,
1188 const uint16_t mode)
1189 {
1190 struct tree_content *t = root->tree;
1191 const char *slash1;
1192 unsigned int i, n;
1193 struct tree_entry *e;
1194
1195 slash1 = strchr(p, '/');
1196 if (slash1)
1197 n = slash1 - p;
1198 else
1199 n = strlen(p);
1200
1201 for (i = 0; i < t->entry_count; i++) {
1202 e = t->entries[i];
1203 if (e->name->str_len == n && !strncmp(p, e->name->str_dat, n)) {
1204 if (!slash1) {
1205 if (e->versions[1].mode == mode
1206 && !hashcmp(e->versions[1].sha1, sha1))
1207 return 0;
1208 e->versions[1].mode = mode;
1209 hashcpy(e->versions[1].sha1, sha1);
1210 if (e->tree) {
1211 release_tree_content_recursive(e->tree);
1212 e->tree = NULL;
1213 }
1214 hashclr(root->versions[1].sha1);
1215 return 1;
1216 }
1217 if (!S_ISDIR(e->versions[1].mode)) {
1218 e->tree = new_tree_content(8);
1219 e->versions[1].mode = S_IFDIR;
1220 }
1221 if (!e->tree)
1222 load_tree(e);
1223 if (tree_content_set(e, slash1 + 1, sha1, mode)) {
1224 hashclr(root->versions[1].sha1);
1225 return 1;
1226 }
1227 return 0;
1228 }
1229 }
1230
1231 if (t->entry_count == t->entry_capacity)
1232 root->tree = t = grow_tree_content(t, 8);
1233 e = new_tree_entry();
1234 e->name = to_atom(p, (unsigned short)n);
1235 e->versions[0].mode = 0;
1236 hashclr(e->versions[0].sha1);
1237 t->entries[t->entry_count++] = e;
1238 if (slash1) {
1239 e->tree = new_tree_content(8);
1240 e->versions[1].mode = S_IFDIR;
1241 tree_content_set(e, slash1 + 1, sha1, mode);
1242 } else {
1243 e->tree = NULL;
1244 e->versions[1].mode = mode;
1245 hashcpy(e->versions[1].sha1, sha1);
1246 }
1247 hashclr(root->versions[1].sha1);
1248 return 1;
1249 }
1250
1251 static int tree_content_remove(struct tree_entry *root, const char *p)
1252 {
1253 struct tree_content *t = root->tree;
1254 const char *slash1;
1255 unsigned int i, n;
1256 struct tree_entry *e;
1257
1258 slash1 = strchr(p, '/');
1259 if (slash1)
1260 n = slash1 - p;
1261 else
1262 n = strlen(p);
1263
1264 for (i = 0; i < t->entry_count; i++) {
1265 e = t->entries[i];
1266 if (e->name->str_len == n && !strncmp(p, e->name->str_dat, n)) {
1267 if (!slash1 || !S_ISDIR(e->versions[1].mode))
1268 goto del_entry;
1269 if (!e->tree)
1270 load_tree(e);
1271 if (tree_content_remove(e, slash1 + 1)) {
1272 for (n = 0; n < e->tree->entry_count; n++) {
1273 if (e->tree->entries[n]->versions[1].mode) {
1274 hashclr(root->versions[1].sha1);
1275 return 1;
1276 }
1277 }
1278 goto del_entry;
1279 }
1280 return 0;
1281 }
1282 }
1283 return 0;
1284
1285 del_entry:
1286 if (e->tree) {
1287 release_tree_content_recursive(e->tree);
1288 e->tree = NULL;
1289 }
1290 e->versions[1].mode = 0;
1291 hashclr(e->versions[1].sha1);
1292 hashclr(root->versions[1].sha1);
1293 return 1;
1294 }
1295
1296 static int update_branch(struct branch *b)
1297 {
1298 static const char *msg = "fast-import";
1299 struct ref_lock *lock;
1300 unsigned char old_sha1[20];
1301
1302 if (read_ref(b->name, old_sha1))
1303 hashclr(old_sha1);
1304 lock = lock_any_ref_for_update(b->name, old_sha1);
1305 if (!lock)
1306 return error("Unable to lock %s", b->name);
1307 if (!force_update && !is_null_sha1(old_sha1)) {
1308 struct commit *old_cmit, *new_cmit;
1309
1310 old_cmit = lookup_commit_reference_gently(old_sha1, 0);
1311 new_cmit = lookup_commit_reference_gently(b->sha1, 0);
1312 if (!old_cmit || !new_cmit) {
1313 unlock_ref(lock);
1314 return error("Branch %s is missing commits.", b->name);
1315 }
1316
1317 if (!in_merge_bases(old_cmit, &new_cmit, 1)) {
1318 unlock_ref(lock);
1319 warn("Not updating %s"
1320 " (new tip %s does not contain %s)",
1321 b->name, sha1_to_hex(b->sha1), sha1_to_hex(old_sha1));
1322 return -1;
1323 }
1324 }
1325 if (write_ref_sha1(lock, b->sha1, msg) < 0)
1326 return error("Unable to update %s", b->name);
1327 return 0;
1328 }
1329
1330 static void dump_branches(void)
1331 {
1332 unsigned int i;
1333 struct branch *b;
1334
1335 for (i = 0; i < branch_table_sz; i++) {
1336 for (b = branch_table[i]; b; b = b->table_next_branch)
1337 failure |= update_branch(b);
1338 }
1339 }
1340
1341 static void dump_tags(void)
1342 {
1343 static const char *msg = "fast-import";
1344 struct tag *t;
1345 struct ref_lock *lock;
1346 char ref_name[PATH_MAX];
1347
1348 for (t = first_tag; t; t = t->next_tag) {
1349 sprintf(ref_name, "tags/%s", t->name);
1350 lock = lock_ref_sha1(ref_name, NULL);
1351 if (!lock || write_ref_sha1(lock, t->sha1, msg) < 0)
1352 failure |= error("Unable to update %s", ref_name);
1353 }
1354 }
1355
1356 static void dump_marks_helper(FILE *f,
1357 uintmax_t base,
1358 struct mark_set *m)
1359 {
1360 uintmax_t k;
1361 if (m->shift) {
1362 for (k = 0; k < 1024; k++) {
1363 if (m->data.sets[k])
1364 dump_marks_helper(f, (base + k) << m->shift,
1365 m->data.sets[k]);
1366 }
1367 } else {
1368 for (k = 0; k < 1024; k++) {
1369 if (m->data.marked[k])
1370 fprintf(f, ":%" PRIuMAX " %s\n", base + k,
1371 sha1_to_hex(m->data.marked[k]->sha1));
1372 }
1373 }
1374 }
1375
1376 static void dump_marks(void)
1377 {
1378 static struct lock_file mark_lock;
1379 int mark_fd;
1380 FILE *f;
1381
1382 if (!mark_file)
1383 return;
1384
1385 mark_fd = hold_lock_file_for_update(&mark_lock, mark_file, 0);
1386 if (mark_fd < 0) {
1387 failure |= error("Unable to write marks file %s: %s",
1388 mark_file, strerror(errno));
1389 return;
1390 }
1391
1392 f = fdopen(mark_fd, "w");
1393 if (!f) {
1394 rollback_lock_file(&mark_lock);
1395 failure |= error("Unable to write marks file %s: %s",
1396 mark_file, strerror(errno));
1397 return;
1398 }
1399
1400 dump_marks_helper(f, 0, marks);
1401 fclose(f);
1402 if (commit_lock_file(&mark_lock))
1403 failure |= error("Unable to write marks file %s: %s",
1404 mark_file, strerror(errno));
1405 }
1406
1407 static void read_next_command(void)
1408 {
1409 read_line(&command_buf, stdin, '\n');
1410 }
1411
1412 static void cmd_mark(void)
1413 {
1414 if (!prefixcmp(command_buf.buf, "mark :")) {
1415 next_mark = strtoumax(command_buf.buf + 6, NULL, 10);
1416 read_next_command();
1417 }
1418 else
1419 next_mark = 0;
1420 }
1421
1422 static void *cmd_data (size_t *size)
1423 {
1424 size_t length;
1425 char *buffer;
1426
1427 if (prefixcmp(command_buf.buf, "data "))
1428 die("Expected 'data n' command, found: %s", command_buf.buf);
1429
1430 if (!prefixcmp(command_buf.buf + 5, "<<")) {
1431 char *term = xstrdup(command_buf.buf + 5 + 2);
1432 size_t sz = 8192, term_len = command_buf.len - 5 - 2;
1433 length = 0;
1434 buffer = xmalloc(sz);
1435 for (;;) {
1436 read_next_command();
1437 if (command_buf.eof)
1438 die("EOF in data (terminator '%s' not found)", term);
1439 if (term_len == command_buf.len
1440 && !strcmp(term, command_buf.buf))
1441 break;
1442 if (sz < (length + command_buf.len)) {
1443 sz = sz * 3 / 2 + 16;
1444 if (sz < (length + command_buf.len))
1445 sz = length + command_buf.len;
1446 buffer = xrealloc(buffer, sz);
1447 }
1448 memcpy(buffer + length,
1449 command_buf.buf,
1450 command_buf.len - 1);
1451 length += command_buf.len - 1;
1452 buffer[length++] = '\n';
1453 }
1454 free(term);
1455 }
1456 else {
1457 size_t n = 0;
1458 length = strtoul(command_buf.buf + 5, NULL, 10);
1459 buffer = xmalloc(length);
1460 while (n < length) {
1461 size_t s = fread(buffer + n, 1, length - n, stdin);
1462 if (!s && feof(stdin))
1463 die("EOF in data (%lu bytes remaining)",
1464 (unsigned long)(length - n));
1465 n += s;
1466 }
1467 }
1468
1469 if (fgetc(stdin) != '\n')
1470 die("An lf did not trail the binary data as expected.");
1471
1472 *size = length;
1473 return buffer;
1474 }
1475
1476 static int validate_raw_date(const char *src, char *result, int maxlen)
1477 {
1478 const char *orig_src = src;
1479 char *endp, sign;
1480
1481 strtoul(src, &endp, 10);
1482 if (endp == src || *endp != ' ')
1483 return -1;
1484
1485 src = endp + 1;
1486 if (*src != '-' && *src != '+')
1487 return -1;
1488 sign = *src;
1489
1490 strtoul(src + 1, &endp, 10);
1491 if (endp == src || *endp || (endp - orig_src) >= maxlen)
1492 return -1;
1493
1494 strcpy(result, orig_src);
1495 return 0;
1496 }
1497
1498 static char *parse_ident(const char *buf)
1499 {
1500 const char *gt;
1501 size_t name_len;
1502 char *ident;
1503
1504 gt = strrchr(buf, '>');
1505 if (!gt)
1506 die("Missing > in ident string: %s", buf);
1507 gt++;
1508 if (*gt != ' ')
1509 die("Missing space after > in ident string: %s", buf);
1510 gt++;
1511 name_len = gt - buf;
1512 ident = xmalloc(name_len + 24);
1513 strncpy(ident, buf, name_len);
1514
1515 switch (whenspec) {
1516 case WHENSPEC_RAW:
1517 if (validate_raw_date(gt, ident + name_len, 24) < 0)
1518 die("Invalid raw date \"%s\" in ident: %s", gt, buf);
1519 break;
1520 case WHENSPEC_RFC2822:
1521 if (parse_date(gt, ident + name_len, 24) < 0)
1522 die("Invalid rfc2822 date \"%s\" in ident: %s", gt, buf);
1523 break;
1524 case WHENSPEC_NOW:
1525 if (strcmp("now", gt))
1526 die("Date in ident must be 'now': %s", buf);
1527 datestamp(ident + name_len, 24);
1528 break;
1529 }
1530
1531 return ident;
1532 }
1533
1534 static void cmd_new_blob(void)
1535 {
1536 size_t l;
1537 void *d;
1538
1539 read_next_command();
1540 cmd_mark();
1541 d = cmd_data(&l);
1542
1543 if (store_object(OBJ_BLOB, d, l, &last_blob, NULL, next_mark))
1544 free(d);
1545 }
1546
1547 static void unload_one_branch(void)
1548 {
1549 while (cur_active_branches
1550 && cur_active_branches >= max_active_branches) {
1551 unsigned long min_commit = ULONG_MAX;
1552 struct branch *e, *l = NULL, *p = NULL;
1553
1554 for (e = active_branches; e; e = e->active_next_branch) {
1555 if (e->last_commit < min_commit) {
1556 p = l;
1557 min_commit = e->last_commit;
1558 }
1559 l = e;
1560 }
1561
1562 if (p) {
1563 e = p->active_next_branch;
1564 p->active_next_branch = e->active_next_branch;
1565 } else {
1566 e = active_branches;
1567 active_branches = e->active_next_branch;
1568 }
1569 e->active = 0;
1570 e->active_next_branch = NULL;
1571 if (e->branch_tree.tree) {
1572 release_tree_content_recursive(e->branch_tree.tree);
1573 e->branch_tree.tree = NULL;
1574 }
1575 cur_active_branches--;
1576 }
1577 }
1578
1579 static void load_branch(struct branch *b)
1580 {
1581 load_tree(&b->branch_tree);
1582 if (!b->active) {
1583 b->active = 1;
1584 b->active_next_branch = active_branches;
1585 active_branches = b;
1586 cur_active_branches++;
1587 branch_load_count++;
1588 }
1589 }
1590
1591 static void file_change_m(struct branch *b)
1592 {
1593 const char *p = command_buf.buf + 2;
1594 char *p_uq;
1595 const char *endp;
1596 struct object_entry *oe = oe;
1597 unsigned char sha1[20];
1598 uint16_t mode, inline_data = 0;
1599
1600 p = get_mode(p, &mode);
1601 if (!p)
1602 die("Corrupt mode: %s", command_buf.buf);
1603 switch (mode) {
1604 case S_IFREG | 0644:
1605 case S_IFREG | 0755:
1606 case S_IFLNK:
1607 case 0644:
1608 case 0755:
1609 /* ok */
1610 break;
1611 default:
1612 die("Corrupt mode: %s", command_buf.buf);
1613 }
1614
1615 if (*p == ':') {
1616 char *x;
1617 oe = find_mark(strtoumax(p + 1, &x, 10));
1618 hashcpy(sha1, oe->sha1);
1619 p = x;
1620 } else if (!prefixcmp(p, "inline")) {
1621 inline_data = 1;
1622 p += 6;
1623 } else {
1624 if (get_sha1_hex(p, sha1))
1625 die("Invalid SHA1: %s", command_buf.buf);
1626 oe = find_object(sha1);
1627 p += 40;
1628 }
1629 if (*p++ != ' ')
1630 die("Missing space after SHA1: %s", command_buf.buf);
1631
1632 p_uq = unquote_c_style(p, &endp);
1633 if (p_uq) {
1634 if (*endp)
1635 die("Garbage after path in: %s", command_buf.buf);
1636 p = p_uq;
1637 }
1638
1639 if (inline_data) {
1640 size_t l;
1641 void *d;
1642 if (!p_uq)
1643 p = p_uq = xstrdup(p);
1644 read_next_command();
1645 d = cmd_data(&l);
1646 if (store_object(OBJ_BLOB, d, l, &last_blob, sha1, 0))
1647 free(d);
1648 } else if (oe) {
1649 if (oe->type != OBJ_BLOB)
1650 die("Not a blob (actually a %s): %s",
1651 command_buf.buf, typename(oe->type));
1652 } else {
1653 enum object_type type = sha1_object_info(sha1, NULL);
1654 if (type < 0)
1655 die("Blob not found: %s", command_buf.buf);
1656 if (type != OBJ_BLOB)
1657 die("Not a blob (actually a %s): %s",
1658 typename(type), command_buf.buf);
1659 }
1660
1661 tree_content_set(&b->branch_tree, p, sha1, S_IFREG | mode);
1662 free(p_uq);
1663 }
1664
1665 static void file_change_d(struct branch *b)
1666 {
1667 const char *p = command_buf.buf + 2;
1668 char *p_uq;
1669 const char *endp;
1670
1671 p_uq = unquote_c_style(p, &endp);
1672 if (p_uq) {
1673 if (*endp)
1674 die("Garbage after path in: %s", command_buf.buf);
1675 p = p_uq;
1676 }
1677 tree_content_remove(&b->branch_tree, p);
1678 free(p_uq);
1679 }
1680
1681 static void file_change_deleteall(struct branch *b)
1682 {
1683 release_tree_content_recursive(b->branch_tree.tree);
1684 hashclr(b->branch_tree.versions[0].sha1);
1685 hashclr(b->branch_tree.versions[1].sha1);
1686 load_tree(&b->branch_tree);
1687 }
1688
1689 static void cmd_from(struct branch *b)
1690 {
1691 const char *from;
1692 struct branch *s;
1693
1694 if (prefixcmp(command_buf.buf, "from "))
1695 return;
1696
1697 if (b->branch_tree.tree) {
1698 release_tree_content_recursive(b->branch_tree.tree);
1699 b->branch_tree.tree = NULL;
1700 }
1701
1702 from = strchr(command_buf.buf, ' ') + 1;
1703 s = lookup_branch(from);
1704 if (b == s)
1705 die("Can't create a branch from itself: %s", b->name);
1706 else if (s) {
1707 unsigned char *t = s->branch_tree.versions[1].sha1;
1708 hashcpy(b->sha1, s->sha1);
1709 hashcpy(b->branch_tree.versions[0].sha1, t);
1710 hashcpy(b->branch_tree.versions[1].sha1, t);
1711 } else if (*from == ':') {
1712 uintmax_t idnum = strtoumax(from + 1, NULL, 10);
1713 struct object_entry *oe = find_mark(idnum);
1714 unsigned long size;
1715 char *buf;
1716 if (oe->type != OBJ_COMMIT)
1717 die("Mark :%" PRIuMAX " not a commit", idnum);
1718 hashcpy(b->sha1, oe->sha1);
1719 buf = gfi_unpack_entry(oe, &size);
1720 if (!buf || size < 46)
1721 die("Not a valid commit: %s", from);
1722 if (memcmp("tree ", buf, 5)
1723 || get_sha1_hex(buf + 5, b->branch_tree.versions[1].sha1))
1724 die("The commit %s is corrupt", sha1_to_hex(b->sha1));
1725 free(buf);
1726 hashcpy(b->branch_tree.versions[0].sha1,
1727 b->branch_tree.versions[1].sha1);
1728 } else if (!get_sha1(from, b->sha1)) {
1729 if (is_null_sha1(b->sha1)) {
1730 hashclr(b->branch_tree.versions[0].sha1);
1731 hashclr(b->branch_tree.versions[1].sha1);
1732 } else {
1733 unsigned long size;
1734 char *buf;
1735
1736 buf = read_object_with_reference(b->sha1,
1737 commit_type, &size, b->sha1);
1738 if (!buf || size < 46)
1739 die("Not a valid commit: %s", from);
1740 if (memcmp("tree ", buf, 5)
1741 || get_sha1_hex(buf + 5, b->branch_tree.versions[1].sha1))
1742 die("The commit %s is corrupt", sha1_to_hex(b->sha1));
1743 free(buf);
1744 hashcpy(b->branch_tree.versions[0].sha1,
1745 b->branch_tree.versions[1].sha1);
1746 }
1747 } else
1748 die("Invalid ref name or SHA1 expression: %s", from);
1749
1750 read_next_command();
1751 }
1752
1753 static struct hash_list *cmd_merge(unsigned int *count)
1754 {
1755 struct hash_list *list = NULL, *n, *e = e;
1756 const char *from;
1757 struct branch *s;
1758
1759 *count = 0;
1760 while (!prefixcmp(command_buf.buf, "merge ")) {
1761 from = strchr(command_buf.buf, ' ') + 1;
1762 n = xmalloc(sizeof(*n));
1763 s = lookup_branch(from);
1764 if (s)
1765 hashcpy(n->sha1, s->sha1);
1766 else if (*from == ':') {
1767 uintmax_t idnum = strtoumax(from + 1, NULL, 10);
1768 struct object_entry *oe = find_mark(idnum);
1769 if (oe->type != OBJ_COMMIT)
1770 die("Mark :%" PRIuMAX " not a commit", idnum);
1771 hashcpy(n->sha1, oe->sha1);
1772 } else if (!get_sha1(from, n->sha1)) {
1773 unsigned long size;
1774 char *buf = read_object_with_reference(n->sha1,
1775 commit_type, &size, n->sha1);
1776 if (!buf || size < 46)
1777 die("Not a valid commit: %s", from);
1778 free(buf);
1779 } else
1780 die("Invalid ref name or SHA1 expression: %s", from);
1781
1782 n->next = NULL;
1783 if (list)
1784 e->next = n;
1785 else
1786 list = n;
1787 e = n;
1788 (*count)++;
1789 read_next_command();
1790 }
1791 return list;
1792 }
1793
1794 static void cmd_new_commit(void)
1795 {
1796 struct branch *b;
1797 void *msg;
1798 size_t msglen;
1799 char *sp;
1800 char *author = NULL;
1801 char *committer = NULL;
1802 struct hash_list *merge_list = NULL;
1803 unsigned int merge_count;
1804
1805 /* Obtain the branch name from the rest of our command */
1806 sp = strchr(command_buf.buf, ' ') + 1;
1807 b = lookup_branch(sp);
1808 if (!b)
1809 b = new_branch(sp);
1810
1811 read_next_command();
1812 cmd_mark();
1813 if (!prefixcmp(command_buf.buf, "author ")) {
1814 author = parse_ident(command_buf.buf + 7);
1815 read_next_command();
1816 }
1817 if (!prefixcmp(command_buf.buf, "committer ")) {
1818 committer = parse_ident(command_buf.buf + 10);
1819 read_next_command();
1820 }
1821 if (!committer)
1822 die("Expected committer but didn't get one");
1823 msg = cmd_data(&msglen);
1824 read_next_command();
1825 cmd_from(b);
1826 merge_list = cmd_merge(&merge_count);
1827
1828 /* ensure the branch is active/loaded */
1829 if (!b->branch_tree.tree || !max_active_branches) {
1830 unload_one_branch();
1831 load_branch(b);
1832 }
1833
1834 /* file_change* */
1835 for (;;) {
1836 if (1 == command_buf.len)
1837 break;
1838 else if (!prefixcmp(command_buf.buf, "M "))
1839 file_change_m(b);
1840 else if (!prefixcmp(command_buf.buf, "D "))
1841 file_change_d(b);
1842 else if (!strcmp("deleteall", command_buf.buf))
1843 file_change_deleteall(b);
1844 else
1845 die("Unsupported file_change: %s", command_buf.buf);
1846 read_next_command();
1847 }
1848
1849 /* build the tree and the commit */
1850 store_tree(&b->branch_tree);
1851 hashcpy(b->branch_tree.versions[0].sha1,
1852 b->branch_tree.versions[1].sha1);
1853 size_dbuf(&new_data, 114 + msglen
1854 + merge_count * 49
1855 + (author
1856 ? strlen(author) + strlen(committer)
1857 : 2 * strlen(committer)));
1858 sp = new_data.buffer;
1859 sp += sprintf(sp, "tree %s\n",
1860 sha1_to_hex(b->branch_tree.versions[1].sha1));
1861 if (!is_null_sha1(b->sha1))
1862 sp += sprintf(sp, "parent %s\n", sha1_to_hex(b->sha1));
1863 while (merge_list) {
1864 struct hash_list *next = merge_list->next;
1865 sp += sprintf(sp, "parent %s\n", sha1_to_hex(merge_list->sha1));
1866 free(merge_list);
1867 merge_list = next;
1868 }
1869 sp += sprintf(sp, "author %s\n", author ? author : committer);
1870 sp += sprintf(sp, "committer %s\n", committer);
1871 *sp++ = '\n';
1872 memcpy(sp, msg, msglen);
1873 sp += msglen;
1874 free(author);
1875 free(committer);
1876 free(msg);
1877
1878 if (!store_object(OBJ_COMMIT,
1879 new_data.buffer, sp - (char*)new_data.buffer,
1880 NULL, b->sha1, next_mark))
1881 b->pack_id = pack_id;
1882 b->last_commit = object_count_by_type[OBJ_COMMIT];
1883 }
1884
1885 static void cmd_new_tag(void)
1886 {
1887 char *sp;
1888 const char *from;
1889 char *tagger;
1890 struct branch *s;
1891 void *msg;
1892 size_t msglen;
1893 struct tag *t;
1894 uintmax_t from_mark = 0;
1895 unsigned char sha1[20];
1896
1897 /* Obtain the new tag name from the rest of our command */
1898 sp = strchr(command_buf.buf, ' ') + 1;
1899 t = pool_alloc(sizeof(struct tag));
1900 t->next_tag = NULL;
1901 t->name = pool_strdup(sp);
1902 if (last_tag)
1903 last_tag->next_tag = t;
1904 else
1905 first_tag = t;
1906 last_tag = t;
1907 read_next_command();
1908
1909 /* from ... */
1910 if (prefixcmp(command_buf.buf, "from "))
1911 die("Expected from command, got %s", command_buf.buf);
1912 from = strchr(command_buf.buf, ' ') + 1;
1913 s = lookup_branch(from);
1914 if (s) {
1915 hashcpy(sha1, s->sha1);
1916 } else if (*from == ':') {
1917 struct object_entry *oe;
1918 from_mark = strtoumax(from + 1, NULL, 10);
1919 oe = find_mark(from_mark);
1920 if (oe->type != OBJ_COMMIT)
1921 die("Mark :%" PRIuMAX " not a commit", from_mark);
1922 hashcpy(sha1, oe->sha1);
1923 } else if (!get_sha1(from, sha1)) {
1924 unsigned long size;
1925 char *buf;
1926
1927 buf = read_object_with_reference(sha1,
1928 commit_type, &size, sha1);
1929 if (!buf || size < 46)
1930 die("Not a valid commit: %s", from);
1931 free(buf);
1932 } else
1933 die("Invalid ref name or SHA1 expression: %s", from);
1934 read_next_command();
1935
1936 /* tagger ... */
1937 if (prefixcmp(command_buf.buf, "tagger "))
1938 die("Expected tagger command, got %s", command_buf.buf);
1939 tagger = parse_ident(command_buf.buf + 7);
1940
1941 /* tag payload/message */
1942 read_next_command();
1943 msg = cmd_data(&msglen);
1944
1945 /* build the tag object */
1946 size_dbuf(&new_data, 67+strlen(t->name)+strlen(tagger)+msglen);
1947 sp = new_data.buffer;
1948 sp += sprintf(sp, "object %s\n", sha1_to_hex(sha1));
1949 sp += sprintf(sp, "type %s\n", commit_type);
1950 sp += sprintf(sp, "tag %s\n", t->name);
1951 sp += sprintf(sp, "tagger %s\n", tagger);
1952 *sp++ = '\n';
1953 memcpy(sp, msg, msglen);
1954 sp += msglen;
1955 free(tagger);
1956 free(msg);
1957
1958 if (store_object(OBJ_TAG, new_data.buffer,
1959 sp - (char*)new_data.buffer,
1960 NULL, t->sha1, 0))
1961 t->pack_id = MAX_PACK_ID;
1962 else
1963 t->pack_id = pack_id;
1964 }
1965
1966 static void cmd_reset_branch(void)
1967 {
1968 struct branch *b;
1969 char *sp;
1970
1971 /* Obtain the branch name from the rest of our command */
1972 sp = strchr(command_buf.buf, ' ') + 1;
1973 b = lookup_branch(sp);
1974 if (b) {
1975 hashclr(b->sha1);
1976 hashclr(b->branch_tree.versions[0].sha1);
1977 hashclr(b->branch_tree.versions[1].sha1);
1978 if (b->branch_tree.tree) {
1979 release_tree_content_recursive(b->branch_tree.tree);
1980 b->branch_tree.tree = NULL;
1981 }
1982 }
1983 else
1984 b = new_branch(sp);
1985 read_next_command();
1986 cmd_from(b);
1987 }
1988
1989 static void cmd_checkpoint(void)
1990 {
1991 if (object_count) {
1992 cycle_packfile();
1993 dump_branches();
1994 dump_tags();
1995 dump_marks();
1996 }
1997 read_next_command();
1998 }
1999
2000 static void import_marks(const char *input_file)
2001 {
2002 char line[512];
2003 FILE *f = fopen(input_file, "r");
2004 if (!f)
2005 die("cannot read %s: %s", input_file, strerror(errno));
2006 while (fgets(line, sizeof(line), f)) {
2007 uintmax_t mark;
2008 char *end;
2009 unsigned char sha1[20];
2010 struct object_entry *e;
2011
2012 end = strchr(line, '\n');
2013 if (line[0] != ':' || !end)
2014 die("corrupt mark line: %s", line);
2015 *end = 0;
2016 mark = strtoumax(line + 1, &end, 10);
2017 if (!mark || end == line + 1
2018 || *end != ' ' || get_sha1(end + 1, sha1))
2019 die("corrupt mark line: %s", line);
2020 e = find_object(sha1);
2021 if (!e) {
2022 enum object_type type = sha1_object_info(sha1, NULL);
2023 if (type < 0)
2024 die("object not found: %s", sha1_to_hex(sha1));
2025 e = insert_object(sha1);
2026 e->type = type;
2027 e->pack_id = MAX_PACK_ID;
2028 }
2029 insert_mark(mark, e);
2030 }
2031 fclose(f);
2032 }
2033
2034 static const char fast_import_usage[] =
2035 "git-fast-import [--date-format=f] [--max-pack-size=n] [--depth=n] [--active-branches=n] [--export-marks=marks.file]";
2036
2037 int main(int argc, const char **argv)
2038 {
2039 int i, show_stats = 1;
2040
2041 git_config(git_default_config);
2042 alloc_objects(object_entry_alloc);
2043 strbuf_init(&command_buf);
2044 atom_table = xcalloc(atom_table_sz, sizeof(struct atom_str*));
2045 branch_table = xcalloc(branch_table_sz, sizeof(struct branch*));
2046 avail_tree_table = xcalloc(avail_tree_table_sz, sizeof(struct avail_tree_content*));
2047 marks = pool_calloc(1, sizeof(struct mark_set));
2048
2049 for (i = 1; i < argc; i++) {
2050 const char *a = argv[i];
2051
2052 if (*a != '-' || !strcmp(a, "--"))
2053 break;
2054 else if (!prefixcmp(a, "--date-format=")) {
2055 const char *fmt = a + 14;
2056 if (!strcmp(fmt, "raw"))
2057 whenspec = WHENSPEC_RAW;
2058 else if (!strcmp(fmt, "rfc2822"))
2059 whenspec = WHENSPEC_RFC2822;
2060 else if (!strcmp(fmt, "now"))
2061 whenspec = WHENSPEC_NOW;
2062 else
2063 die("unknown --date-format argument %s", fmt);
2064 }
2065 else if (!prefixcmp(a, "--max-pack-size="))
2066 max_packsize = strtoumax(a + 16, NULL, 0) * 1024 * 1024;
2067 else if (!prefixcmp(a, "--depth="))
2068 max_depth = strtoul(a + 8, NULL, 0);
2069 else if (!prefixcmp(a, "--active-branches="))
2070 max_active_branches = strtoul(a + 18, NULL, 0);
2071 else if (!prefixcmp(a, "--import-marks="))
2072 import_marks(a + 15);
2073 else if (!prefixcmp(a, "--export-marks="))
2074 mark_file = a + 15;
2075 else if (!prefixcmp(a, "--export-pack-edges=")) {
2076 if (pack_edges)
2077 fclose(pack_edges);
2078 pack_edges = fopen(a + 20, "a");
2079 if (!pack_edges)
2080 die("Cannot open %s: %s", a + 20, strerror(errno));
2081 } else if (!strcmp(a, "--force"))
2082 force_update = 1;
2083 else if (!strcmp(a, "--quiet"))
2084 show_stats = 0;
2085 else if (!strcmp(a, "--stats"))
2086 show_stats = 1;
2087 else
2088 die("unknown option %s", a);
2089 }
2090 if (i != argc)
2091 usage(fast_import_usage);
2092
2093 start_packfile();
2094 for (;;) {
2095 read_next_command();
2096 if (command_buf.eof)
2097 break;
2098 else if (!strcmp("blob", command_buf.buf))
2099 cmd_new_blob();
2100 else if (!prefixcmp(command_buf.buf, "commit "))
2101 cmd_new_commit();
2102 else if (!prefixcmp(command_buf.buf, "tag "))
2103 cmd_new_tag();
2104 else if (!prefixcmp(command_buf.buf, "reset "))
2105 cmd_reset_branch();
2106 else if (!strcmp("checkpoint", command_buf.buf))
2107 cmd_checkpoint();
2108 else
2109 die("Unsupported command: %s", command_buf.buf);
2110 }
2111 end_packfile();
2112
2113 dump_branches();
2114 dump_tags();
2115 unkeep_all_packs();
2116 dump_marks();
2117
2118 if (pack_edges)
2119 fclose(pack_edges);
2120
2121 if (show_stats) {
2122 uintmax_t total_count = 0, duplicate_count = 0;
2123 for (i = 0; i < ARRAY_SIZE(object_count_by_type); i++)
2124 total_count += object_count_by_type[i];
2125 for (i = 0; i < ARRAY_SIZE(duplicate_count_by_type); i++)
2126 duplicate_count += duplicate_count_by_type[i];
2127
2128 fprintf(stderr, "%s statistics:\n", argv[0]);
2129 fprintf(stderr, "---------------------------------------------------------------------\n");
2130 fprintf(stderr, "Alloc'd objects: %10" PRIuMAX "\n", alloc_count);
2131 fprintf(stderr, "Total objects: %10" PRIuMAX " (%10" PRIuMAX " duplicates )\n", total_count, duplicate_count);
2132 fprintf(stderr, " blobs : %10" PRIuMAX " (%10" PRIuMAX " duplicates %10" PRIuMAX " deltas)\n", object_count_by_type[OBJ_BLOB], duplicate_count_by_type[OBJ_BLOB], delta_count_by_type[OBJ_BLOB]);
2133 fprintf(stderr, " trees : %10" PRIuMAX " (%10" PRIuMAX " duplicates %10" PRIuMAX " deltas)\n", object_count_by_type[OBJ_TREE], duplicate_count_by_type[OBJ_TREE], delta_count_by_type[OBJ_TREE]);
2134 fprintf(stderr, " commits: %10" PRIuMAX " (%10" PRIuMAX " duplicates %10" PRIuMAX " deltas)\n", object_count_by_type[OBJ_COMMIT], duplicate_count_by_type[OBJ_COMMIT], delta_count_by_type[OBJ_COMMIT]);
2135 fprintf(stderr, " tags : %10" PRIuMAX " (%10" PRIuMAX " duplicates %10" PRIuMAX " deltas)\n", object_count_by_type[OBJ_TAG], duplicate_count_by_type[OBJ_TAG], delta_count_by_type[OBJ_TAG]);
2136 fprintf(stderr, "Total branches: %10lu (%10lu loads )\n", branch_count, branch_load_count);
2137 fprintf(stderr, " marks: %10" PRIuMAX " (%10" PRIuMAX " unique )\n", (((uintmax_t)1) << marks->shift) * 1024, marks_set_count);
2138 fprintf(stderr, " atoms: %10u\n", atom_cnt);
2139 fprintf(stderr, "Memory total: %10" PRIuMAX " KiB\n", (total_allocd + alloc_count*sizeof(struct object_entry))/1024);
2140 fprintf(stderr, " pools: %10lu KiB\n", (unsigned long)(total_allocd/1024));
2141 fprintf(stderr, " objects: %10" PRIuMAX " KiB\n", (alloc_count*sizeof(struct object_entry))/1024);
2142 fprintf(stderr, "---------------------------------------------------------------------\n");
2143 pack_report();
2144 fprintf(stderr, "---------------------------------------------------------------------\n");
2145 fprintf(stderr, "\n");
2146 }
2147
2148 return failure ? 1 : 0;
2149 }