Merge branch 'rs/diff-parseopts-cleanup'
[git/gitster.git] / builtin / fast-import.c
blobdc5a9d32dd53c2f49f5a14d1d91422889a973ef5
1 #include "builtin.h"
2 #include "abspath.h"
3 #include "environment.h"
4 #include "gettext.h"
5 #include "hex.h"
6 #include "repository.h"
7 #include "config.h"
8 #include "lockfile.h"
9 #include "object.h"
10 #include "blob.h"
11 #include "tree.h"
12 #include "commit.h"
13 #include "delta.h"
14 #include "pack.h"
15 #include "path.h"
16 #include "refs.h"
17 #include "csum-file.h"
18 #include "quote.h"
19 #include "dir.h"
20 #include "run-command.h"
21 #include "packfile.h"
22 #include "object-file.h"
23 #include "object-name.h"
24 #include "object-store-ll.h"
25 #include "mem-pool.h"
26 #include "commit-reach.h"
27 #include "khash.h"
28 #include "date.h"
30 #define PACK_ID_BITS 16
31 #define MAX_PACK_ID ((1<<PACK_ID_BITS)-1)
32 #define DEPTH_BITS 13
33 #define MAX_DEPTH ((1<<DEPTH_BITS)-1)
36 * We abuse the setuid bit on directories to mean "do not delta".
38 #define NO_DELTA S_ISUID
41 * The amount of additional space required in order to write an object into the
42 * current pack. This is the hash lengths at the end of the pack, plus the
43 * length of one object ID.
45 #define PACK_SIZE_THRESHOLD (the_hash_algo->rawsz * 3)
47 struct object_entry {
48 struct pack_idx_entry idx;
49 struct hashmap_entry ent;
50 uint32_t type : TYPE_BITS,
51 pack_id : PACK_ID_BITS,
52 depth : DEPTH_BITS;
55 static int object_entry_hashcmp(const void *map_data UNUSED,
56 const struct hashmap_entry *eptr,
57 const struct hashmap_entry *entry_or_key,
58 const void *keydata)
60 const struct object_id *oid = keydata;
61 const struct object_entry *e1, *e2;
63 e1 = container_of(eptr, const struct object_entry, ent);
64 if (oid)
65 return oidcmp(&e1->idx.oid, oid);
67 e2 = container_of(entry_or_key, const struct object_entry, ent);
68 return oidcmp(&e1->idx.oid, &e2->idx.oid);
71 struct object_entry_pool {
72 struct object_entry_pool *next_pool;
73 struct object_entry *next_free;
74 struct object_entry *end;
75 struct object_entry entries[FLEX_ARRAY]; /* more */
78 struct mark_set {
79 union {
80 struct object_id *oids[1024];
81 struct object_entry *marked[1024];
82 struct mark_set *sets[1024];
83 } data;
84 unsigned int shift;
87 struct last_object {
88 struct strbuf data;
89 off_t offset;
90 unsigned int depth;
91 unsigned no_swap : 1;
94 struct atom_str {
95 struct atom_str *next_atom;
96 unsigned short str_len;
97 char str_dat[FLEX_ARRAY]; /* more */
100 struct tree_content;
101 struct tree_entry {
102 struct tree_content *tree;
103 struct atom_str *name;
104 struct tree_entry_ms {
105 uint16_t mode;
106 struct object_id oid;
107 } versions[2];
110 struct tree_content {
111 unsigned int entry_capacity; /* must match avail_tree_content */
112 unsigned int entry_count;
113 unsigned int delta_depth;
114 struct tree_entry *entries[FLEX_ARRAY]; /* more */
117 struct avail_tree_content {
118 unsigned int entry_capacity; /* must match tree_content */
119 struct avail_tree_content *next_avail;
122 struct branch {
123 struct branch *table_next_branch;
124 struct branch *active_next_branch;
125 const char *name;
126 struct tree_entry branch_tree;
127 uintmax_t last_commit;
128 uintmax_t num_notes;
129 unsigned active : 1;
130 unsigned delete : 1;
131 unsigned pack_id : PACK_ID_BITS;
132 struct object_id oid;
135 struct tag {
136 struct tag *next_tag;
137 const char *name;
138 unsigned int pack_id;
139 struct object_id oid;
142 struct hash_list {
143 struct hash_list *next;
144 struct object_id oid;
147 typedef enum {
148 WHENSPEC_RAW = 1,
149 WHENSPEC_RAW_PERMISSIVE,
150 WHENSPEC_RFC2822,
151 WHENSPEC_NOW
152 } whenspec_type;
154 struct recent_command {
155 struct recent_command *prev;
156 struct recent_command *next;
157 char *buf;
160 typedef void (*mark_set_inserter_t)(struct mark_set **s, struct object_id *oid, uintmax_t mark);
161 typedef void (*each_mark_fn_t)(uintmax_t mark, void *obj, void *cbp);
163 /* Configured limits on output */
164 static unsigned long max_depth = 50;
165 static off_t max_packsize;
166 static int unpack_limit = 100;
167 static int force_update;
169 /* Stats and misc. counters */
170 static uintmax_t alloc_count;
171 static uintmax_t marks_set_count;
172 static uintmax_t object_count_by_type[1 << TYPE_BITS];
173 static uintmax_t duplicate_count_by_type[1 << TYPE_BITS];
174 static uintmax_t delta_count_by_type[1 << TYPE_BITS];
175 static uintmax_t delta_count_attempts_by_type[1 << TYPE_BITS];
176 static unsigned long object_count;
177 static unsigned long branch_count;
178 static unsigned long branch_load_count;
179 static int failure;
180 static FILE *pack_edges;
181 static unsigned int show_stats = 1;
182 static int global_argc;
183 static const char **global_argv;
184 static const char *global_prefix;
186 /* Memory pools */
187 static struct mem_pool fi_mem_pool = {
188 .block_alloc = 2*1024*1024 - sizeof(struct mp_block),
191 /* Atom management */
192 static unsigned int atom_table_sz = 4451;
193 static unsigned int atom_cnt;
194 static struct atom_str **atom_table;
196 /* The .pack file being generated */
197 static struct pack_idx_option pack_idx_opts;
198 static unsigned int pack_id;
199 static struct hashfile *pack_file;
200 static struct packed_git *pack_data;
201 static struct packed_git **all_packs;
202 static off_t pack_size;
204 /* Table of objects we've written. */
205 static unsigned int object_entry_alloc = 5000;
206 static struct object_entry_pool *blocks;
207 static struct hashmap object_table;
208 static struct mark_set *marks;
209 static const char *export_marks_file;
210 static const char *import_marks_file;
211 static int import_marks_file_from_stream;
212 static int import_marks_file_ignore_missing;
213 static int import_marks_file_done;
214 static int relative_marks_paths;
216 /* Our last blob */
217 static struct last_object last_blob = {
218 .data = STRBUF_INIT,
221 /* Tree management */
222 static unsigned int tree_entry_alloc = 1000;
223 static void *avail_tree_entry;
224 static unsigned int avail_tree_table_sz = 100;
225 static struct avail_tree_content **avail_tree_table;
226 static size_t tree_entry_allocd;
227 static struct strbuf old_tree = STRBUF_INIT;
228 static struct strbuf new_tree = STRBUF_INIT;
230 /* Branch data */
231 static unsigned long max_active_branches = 5;
232 static unsigned long cur_active_branches;
233 static unsigned long branch_table_sz = 1039;
234 static struct branch **branch_table;
235 static struct branch *active_branches;
237 /* Tag data */
238 static struct tag *first_tag;
239 static struct tag *last_tag;
241 /* Input stream parsing */
242 static whenspec_type whenspec = WHENSPEC_RAW;
243 static struct strbuf command_buf = STRBUF_INIT;
244 static int unread_command_buf;
245 static struct recent_command cmd_hist = {
246 .prev = &cmd_hist,
247 .next = &cmd_hist,
249 static struct recent_command *cmd_tail = &cmd_hist;
250 static struct recent_command *rc_free;
251 static unsigned int cmd_save = 100;
252 static uintmax_t next_mark;
253 static struct strbuf new_data = STRBUF_INIT;
254 static int seen_data_command;
255 static int require_explicit_termination;
256 static int allow_unsafe_features;
258 /* Signal handling */
259 static volatile sig_atomic_t checkpoint_requested;
261 /* Submodule marks */
262 static struct string_list sub_marks_from = STRING_LIST_INIT_DUP;
263 static struct string_list sub_marks_to = STRING_LIST_INIT_DUP;
264 static kh_oid_map_t *sub_oid_map;
266 /* Where to write output of cat-blob commands */
267 static int cat_blob_fd = STDOUT_FILENO;
269 static void parse_argv(void);
270 static void parse_get_mark(const char *p);
271 static void parse_cat_blob(const char *p);
272 static void parse_ls(const char *p, struct branch *b);
274 static void for_each_mark(struct mark_set *m, uintmax_t base, each_mark_fn_t callback, void *p)
276 uintmax_t k;
277 if (m->shift) {
278 for (k = 0; k < 1024; k++) {
279 if (m->data.sets[k])
280 for_each_mark(m->data.sets[k], base + (k << m->shift), callback, p);
282 } else {
283 for (k = 0; k < 1024; k++) {
284 if (m->data.marked[k])
285 callback(base + k, m->data.marked[k], p);
290 static void dump_marks_fn(uintmax_t mark, void *object, void *cbp) {
291 struct object_entry *e = object;
292 FILE *f = cbp;
294 fprintf(f, ":%" PRIuMAX " %s\n", mark, oid_to_hex(&e->idx.oid));
297 static void write_branch_report(FILE *rpt, struct branch *b)
299 fprintf(rpt, "%s:\n", b->name);
301 fprintf(rpt, " status :");
302 if (b->active)
303 fputs(" active", rpt);
304 if (b->branch_tree.tree)
305 fputs(" loaded", rpt);
306 if (is_null_oid(&b->branch_tree.versions[1].oid))
307 fputs(" dirty", rpt);
308 fputc('\n', rpt);
310 fprintf(rpt, " tip commit : %s\n", oid_to_hex(&b->oid));
311 fprintf(rpt, " old tree : %s\n",
312 oid_to_hex(&b->branch_tree.versions[0].oid));
313 fprintf(rpt, " cur tree : %s\n",
314 oid_to_hex(&b->branch_tree.versions[1].oid));
315 fprintf(rpt, " commit clock: %" PRIuMAX "\n", b->last_commit);
317 fputs(" last pack : ", rpt);
318 if (b->pack_id < MAX_PACK_ID)
319 fprintf(rpt, "%u", b->pack_id);
320 fputc('\n', rpt);
322 fputc('\n', rpt);
325 static void write_crash_report(const char *err)
327 char *loc = git_pathdup("fast_import_crash_%"PRIuMAX, (uintmax_t) getpid());
328 FILE *rpt = fopen(loc, "w");
329 struct branch *b;
330 unsigned long lu;
331 struct recent_command *rc;
333 if (!rpt) {
334 error_errno("can't write crash report %s", loc);
335 free(loc);
336 return;
339 fprintf(stderr, "fast-import: dumping crash report to %s\n", loc);
341 fprintf(rpt, "fast-import crash report:\n");
342 fprintf(rpt, " fast-import process: %"PRIuMAX"\n", (uintmax_t) getpid());
343 fprintf(rpt, " parent process : %"PRIuMAX"\n", (uintmax_t) getppid());
344 fprintf(rpt, " at %s\n", show_date(time(NULL), 0, DATE_MODE(ISO8601)));
345 fputc('\n', rpt);
347 fputs("fatal: ", rpt);
348 fputs(err, rpt);
349 fputc('\n', rpt);
351 fputc('\n', rpt);
352 fputs("Most Recent Commands Before Crash\n", rpt);
353 fputs("---------------------------------\n", rpt);
354 for (rc = cmd_hist.next; rc != &cmd_hist; rc = rc->next) {
355 if (rc->next == &cmd_hist)
356 fputs("* ", rpt);
357 else
358 fputs(" ", rpt);
359 fputs(rc->buf, rpt);
360 fputc('\n', rpt);
363 fputc('\n', rpt);
364 fputs("Active Branch LRU\n", rpt);
365 fputs("-----------------\n", rpt);
366 fprintf(rpt, " active_branches = %lu cur, %lu max\n",
367 cur_active_branches,
368 max_active_branches);
369 fputc('\n', rpt);
370 fputs(" pos clock name\n", rpt);
371 fputs(" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n", rpt);
372 for (b = active_branches, lu = 0; b; b = b->active_next_branch)
373 fprintf(rpt, " %2lu) %6" PRIuMAX" %s\n",
374 ++lu, b->last_commit, b->name);
376 fputc('\n', rpt);
377 fputs("Inactive Branches\n", rpt);
378 fputs("-----------------\n", rpt);
379 for (lu = 0; lu < branch_table_sz; lu++) {
380 for (b = branch_table[lu]; b; b = b->table_next_branch)
381 write_branch_report(rpt, b);
384 if (first_tag) {
385 struct tag *tg;
386 fputc('\n', rpt);
387 fputs("Annotated Tags\n", rpt);
388 fputs("--------------\n", rpt);
389 for (tg = first_tag; tg; tg = tg->next_tag) {
390 fputs(oid_to_hex(&tg->oid), rpt);
391 fputc(' ', rpt);
392 fputs(tg->name, rpt);
393 fputc('\n', rpt);
397 fputc('\n', rpt);
398 fputs("Marks\n", rpt);
399 fputs("-----\n", rpt);
400 if (export_marks_file)
401 fprintf(rpt, " exported to %s\n", export_marks_file);
402 else
403 for_each_mark(marks, 0, dump_marks_fn, rpt);
405 fputc('\n', rpt);
406 fputs("-------------------\n", rpt);
407 fputs("END OF CRASH REPORT\n", rpt);
408 fclose(rpt);
409 free(loc);
412 static void end_packfile(void);
413 static void unkeep_all_packs(void);
414 static void dump_marks(void);
416 static NORETURN void die_nicely(const char *err, va_list params)
418 va_list cp;
419 static int zombie;
420 report_fn die_message_fn = get_die_message_routine();
422 va_copy(cp, params);
423 die_message_fn(err, params);
425 if (!zombie) {
426 char message[2 * PATH_MAX];
428 zombie = 1;
429 vsnprintf(message, sizeof(message), err, cp);
430 write_crash_report(message);
431 end_packfile();
432 unkeep_all_packs();
433 dump_marks();
435 exit(128);
438 #ifndef SIGUSR1 /* Windows, for example */
440 static void set_checkpoint_signal(void)
444 #else
446 static void checkpoint_signal(int signo UNUSED)
448 checkpoint_requested = 1;
451 static void set_checkpoint_signal(void)
453 struct sigaction sa;
455 memset(&sa, 0, sizeof(sa));
456 sa.sa_handler = checkpoint_signal;
457 sigemptyset(&sa.sa_mask);
458 sa.sa_flags = SA_RESTART;
459 sigaction(SIGUSR1, &sa, NULL);
462 #endif
464 static void alloc_objects(unsigned int cnt)
466 struct object_entry_pool *b;
468 b = xmalloc(sizeof(struct object_entry_pool)
469 + cnt * sizeof(struct object_entry));
470 b->next_pool = blocks;
471 b->next_free = b->entries;
472 b->end = b->entries + cnt;
473 blocks = b;
474 alloc_count += cnt;
477 static struct object_entry *new_object(struct object_id *oid)
479 struct object_entry *e;
481 if (blocks->next_free == blocks->end)
482 alloc_objects(object_entry_alloc);
484 e = blocks->next_free++;
485 oidcpy(&e->idx.oid, oid);
486 return e;
489 static struct object_entry *find_object(struct object_id *oid)
491 return hashmap_get_entry_from_hash(&object_table, oidhash(oid), oid,
492 struct object_entry, ent);
495 static struct object_entry *insert_object(struct object_id *oid)
497 struct object_entry *e;
498 unsigned int hash = oidhash(oid);
500 e = hashmap_get_entry_from_hash(&object_table, hash, oid,
501 struct object_entry, ent);
502 if (!e) {
503 e = new_object(oid);
504 e->idx.offset = 0;
505 hashmap_entry_init(&e->ent, hash);
506 hashmap_add(&object_table, &e->ent);
509 return e;
512 static void invalidate_pack_id(unsigned int id)
514 unsigned long lu;
515 struct tag *t;
516 struct hashmap_iter iter;
517 struct object_entry *e;
519 hashmap_for_each_entry(&object_table, &iter, e, ent) {
520 if (e->pack_id == id)
521 e->pack_id = MAX_PACK_ID;
524 for (lu = 0; lu < branch_table_sz; lu++) {
525 struct branch *b;
527 for (b = branch_table[lu]; b; b = b->table_next_branch)
528 if (b->pack_id == id)
529 b->pack_id = MAX_PACK_ID;
532 for (t = first_tag; t; t = t->next_tag)
533 if (t->pack_id == id)
534 t->pack_id = MAX_PACK_ID;
537 static unsigned int hc_str(const char *s, size_t len)
539 unsigned int r = 0;
540 while (len-- > 0)
541 r = r * 31 + *s++;
542 return r;
545 static void insert_mark(struct mark_set **top, uintmax_t idnum, struct object_entry *oe)
547 struct mark_set *s = *top;
549 while ((idnum >> s->shift) >= 1024) {
550 s = mem_pool_calloc(&fi_mem_pool, 1, sizeof(struct mark_set));
551 s->shift = (*top)->shift + 10;
552 s->data.sets[0] = *top;
553 *top = s;
555 while (s->shift) {
556 uintmax_t i = idnum >> s->shift;
557 idnum -= i << s->shift;
558 if (!s->data.sets[i]) {
559 s->data.sets[i] = mem_pool_calloc(&fi_mem_pool, 1, sizeof(struct mark_set));
560 s->data.sets[i]->shift = s->shift - 10;
562 s = s->data.sets[i];
564 if (!s->data.marked[idnum])
565 marks_set_count++;
566 s->data.marked[idnum] = oe;
569 static void *find_mark(struct mark_set *s, uintmax_t idnum)
571 uintmax_t orig_idnum = idnum;
572 struct object_entry *oe = NULL;
573 if ((idnum >> s->shift) < 1024) {
574 while (s && s->shift) {
575 uintmax_t i = idnum >> s->shift;
576 idnum -= i << s->shift;
577 s = s->data.sets[i];
579 if (s)
580 oe = s->data.marked[idnum];
582 if (!oe)
583 die("mark :%" PRIuMAX " not declared", orig_idnum);
584 return oe;
587 static struct atom_str *to_atom(const char *s, unsigned short len)
589 unsigned int hc = hc_str(s, len) % atom_table_sz;
590 struct atom_str *c;
592 for (c = atom_table[hc]; c; c = c->next_atom)
593 if (c->str_len == len && !strncmp(s, c->str_dat, len))
594 return c;
596 c = mem_pool_alloc(&fi_mem_pool, sizeof(struct atom_str) + len + 1);
597 c->str_len = len;
598 memcpy(c->str_dat, s, len);
599 c->str_dat[len] = 0;
600 c->next_atom = atom_table[hc];
601 atom_table[hc] = c;
602 atom_cnt++;
603 return c;
606 static struct branch *lookup_branch(const char *name)
608 unsigned int hc = hc_str(name, strlen(name)) % branch_table_sz;
609 struct branch *b;
611 for (b = branch_table[hc]; b; b = b->table_next_branch)
612 if (!strcmp(name, b->name))
613 return b;
614 return NULL;
617 static struct branch *new_branch(const char *name)
619 unsigned int hc = hc_str(name, strlen(name)) % branch_table_sz;
620 struct branch *b = lookup_branch(name);
622 if (b)
623 die("Invalid attempt to create duplicate branch: %s", name);
624 if (check_refname_format(name, REFNAME_ALLOW_ONELEVEL))
625 die("Branch name doesn't conform to GIT standards: %s", name);
627 b = mem_pool_calloc(&fi_mem_pool, 1, sizeof(struct branch));
628 b->name = mem_pool_strdup(&fi_mem_pool, name);
629 b->table_next_branch = branch_table[hc];
630 b->branch_tree.versions[0].mode = S_IFDIR;
631 b->branch_tree.versions[1].mode = S_IFDIR;
632 b->num_notes = 0;
633 b->active = 0;
634 b->pack_id = MAX_PACK_ID;
635 branch_table[hc] = b;
636 branch_count++;
637 return b;
640 static unsigned int hc_entries(unsigned int cnt)
642 cnt = cnt & 7 ? (cnt / 8) + 1 : cnt / 8;
643 return cnt < avail_tree_table_sz ? cnt : avail_tree_table_sz - 1;
646 static struct tree_content *new_tree_content(unsigned int cnt)
648 struct avail_tree_content *f, *l = NULL;
649 struct tree_content *t;
650 unsigned int hc = hc_entries(cnt);
652 for (f = avail_tree_table[hc]; f; l = f, f = f->next_avail)
653 if (f->entry_capacity >= cnt)
654 break;
656 if (f) {
657 if (l)
658 l->next_avail = f->next_avail;
659 else
660 avail_tree_table[hc] = f->next_avail;
661 } else {
662 cnt = cnt & 7 ? ((cnt / 8) + 1) * 8 : cnt;
663 f = mem_pool_alloc(&fi_mem_pool, sizeof(*t) + sizeof(t->entries[0]) * cnt);
664 f->entry_capacity = cnt;
667 t = (struct tree_content*)f;
668 t->entry_count = 0;
669 t->delta_depth = 0;
670 return t;
673 static void release_tree_entry(struct tree_entry *e);
674 static void release_tree_content(struct tree_content *t)
676 struct avail_tree_content *f = (struct avail_tree_content*)t;
677 unsigned int hc = hc_entries(f->entry_capacity);
678 f->next_avail = avail_tree_table[hc];
679 avail_tree_table[hc] = f;
682 static void release_tree_content_recursive(struct tree_content *t)
684 unsigned int i;
685 for (i = 0; i < t->entry_count; i++)
686 release_tree_entry(t->entries[i]);
687 release_tree_content(t);
690 static struct tree_content *grow_tree_content(
691 struct tree_content *t,
692 int amt)
694 struct tree_content *r = new_tree_content(t->entry_count + amt);
695 r->entry_count = t->entry_count;
696 r->delta_depth = t->delta_depth;
697 COPY_ARRAY(r->entries, t->entries, t->entry_count);
698 release_tree_content(t);
699 return r;
702 static struct tree_entry *new_tree_entry(void)
704 struct tree_entry *e;
706 if (!avail_tree_entry) {
707 unsigned int n = tree_entry_alloc;
708 tree_entry_allocd += n * sizeof(struct tree_entry);
709 ALLOC_ARRAY(e, n);
710 avail_tree_entry = e;
711 while (n-- > 1) {
712 *((void**)e) = e + 1;
713 e++;
715 *((void**)e) = NULL;
718 e = avail_tree_entry;
719 avail_tree_entry = *((void**)e);
720 return e;
723 static void release_tree_entry(struct tree_entry *e)
725 if (e->tree)
726 release_tree_content_recursive(e->tree);
727 *((void**)e) = avail_tree_entry;
728 avail_tree_entry = e;
731 static struct tree_content *dup_tree_content(struct tree_content *s)
733 struct tree_content *d;
734 struct tree_entry *a, *b;
735 unsigned int i;
737 if (!s)
738 return NULL;
739 d = new_tree_content(s->entry_count);
740 for (i = 0; i < s->entry_count; i++) {
741 a = s->entries[i];
742 b = new_tree_entry();
743 memcpy(b, a, sizeof(*a));
744 if (a->tree && is_null_oid(&b->versions[1].oid))
745 b->tree = dup_tree_content(a->tree);
746 else
747 b->tree = NULL;
748 d->entries[i] = b;
750 d->entry_count = s->entry_count;
751 d->delta_depth = s->delta_depth;
753 return d;
756 static void start_packfile(void)
758 struct strbuf tmp_file = STRBUF_INIT;
759 struct packed_git *p;
760 int pack_fd;
762 pack_fd = odb_mkstemp(&tmp_file, "pack/tmp_pack_XXXXXX");
763 FLEX_ALLOC_STR(p, pack_name, tmp_file.buf);
764 strbuf_release(&tmp_file);
766 p->pack_fd = pack_fd;
767 p->do_not_close = 1;
768 pack_file = hashfd(pack_fd, p->pack_name);
770 pack_data = p;
771 pack_size = write_pack_header(pack_file, 0);
772 object_count = 0;
774 REALLOC_ARRAY(all_packs, pack_id + 1);
775 all_packs[pack_id] = p;
778 static const char *create_index(void)
780 const char *tmpfile;
781 struct pack_idx_entry **idx, **c, **last;
782 struct object_entry *e;
783 struct object_entry_pool *o;
785 /* Build the table of object IDs. */
786 ALLOC_ARRAY(idx, object_count);
787 c = idx;
788 for (o = blocks; o; o = o->next_pool)
789 for (e = o->next_free; e-- != o->entries;)
790 if (pack_id == e->pack_id)
791 *c++ = &e->idx;
792 last = idx + object_count;
793 if (c != last)
794 die("internal consistency error creating the index");
796 tmpfile = write_idx_file(NULL, idx, object_count, &pack_idx_opts,
797 pack_data->hash);
798 free(idx);
799 return tmpfile;
802 static char *keep_pack(const char *curr_index_name)
804 static const char *keep_msg = "fast-import";
805 struct strbuf name = STRBUF_INIT;
806 int keep_fd;
808 odb_pack_name(&name, pack_data->hash, "keep");
809 keep_fd = odb_pack_keep(name.buf);
810 if (keep_fd < 0)
811 die_errno("cannot create keep file");
812 write_or_die(keep_fd, keep_msg, strlen(keep_msg));
813 if (close(keep_fd))
814 die_errno("failed to write keep file");
816 odb_pack_name(&name, pack_data->hash, "pack");
817 if (finalize_object_file(pack_data->pack_name, name.buf))
818 die("cannot store pack file");
820 odb_pack_name(&name, pack_data->hash, "idx");
821 if (finalize_object_file(curr_index_name, name.buf))
822 die("cannot store index file");
823 free((void *)curr_index_name);
824 return strbuf_detach(&name, NULL);
827 static void unkeep_all_packs(void)
829 struct strbuf name = STRBUF_INIT;
830 int k;
832 for (k = 0; k < pack_id; k++) {
833 struct packed_git *p = all_packs[k];
834 odb_pack_name(&name, p->hash, "keep");
835 unlink_or_warn(name.buf);
837 strbuf_release(&name);
840 static int loosen_small_pack(const struct packed_git *p)
842 struct child_process unpack = CHILD_PROCESS_INIT;
844 if (lseek(p->pack_fd, 0, SEEK_SET) < 0)
845 die_errno("Failed seeking to start of '%s'", p->pack_name);
847 unpack.in = p->pack_fd;
848 unpack.git_cmd = 1;
849 unpack.stdout_to_stderr = 1;
850 strvec_push(&unpack.args, "unpack-objects");
851 if (!show_stats)
852 strvec_push(&unpack.args, "-q");
854 return run_command(&unpack);
857 static void end_packfile(void)
859 static int running;
861 if (running || !pack_data)
862 return;
864 running = 1;
865 clear_delta_base_cache();
866 if (object_count) {
867 struct packed_git *new_p;
868 struct object_id cur_pack_oid;
869 char *idx_name;
870 int i;
871 struct branch *b;
872 struct tag *t;
874 close_pack_windows(pack_data);
875 finalize_hashfile(pack_file, cur_pack_oid.hash, FSYNC_COMPONENT_PACK, 0);
876 fixup_pack_header_footer(pack_data->pack_fd, pack_data->hash,
877 pack_data->pack_name, object_count,
878 cur_pack_oid.hash, pack_size);
880 if (object_count <= unpack_limit) {
881 if (!loosen_small_pack(pack_data)) {
882 invalidate_pack_id(pack_id);
883 goto discard_pack;
887 close(pack_data->pack_fd);
888 idx_name = keep_pack(create_index());
890 /* Register the packfile with core git's machinery. */
891 new_p = add_packed_git(idx_name, strlen(idx_name), 1);
892 if (!new_p)
893 die("core git rejected index %s", idx_name);
894 all_packs[pack_id] = new_p;
895 install_packed_git(the_repository, new_p);
896 free(idx_name);
898 /* Print the boundary */
899 if (pack_edges) {
900 fprintf(pack_edges, "%s:", new_p->pack_name);
901 for (i = 0; i < branch_table_sz; i++) {
902 for (b = branch_table[i]; b; b = b->table_next_branch) {
903 if (b->pack_id == pack_id)
904 fprintf(pack_edges, " %s",
905 oid_to_hex(&b->oid));
908 for (t = first_tag; t; t = t->next_tag) {
909 if (t->pack_id == pack_id)
910 fprintf(pack_edges, " %s",
911 oid_to_hex(&t->oid));
913 fputc('\n', pack_edges);
914 fflush(pack_edges);
917 pack_id++;
919 else {
920 discard_pack:
921 close(pack_data->pack_fd);
922 unlink_or_warn(pack_data->pack_name);
924 FREE_AND_NULL(pack_data);
925 running = 0;
927 /* We can't carry a delta across packfiles. */
928 strbuf_release(&last_blob.data);
929 last_blob.offset = 0;
930 last_blob.depth = 0;
933 static void cycle_packfile(void)
935 end_packfile();
936 start_packfile();
939 static int store_object(
940 enum object_type type,
941 struct strbuf *dat,
942 struct last_object *last,
943 struct object_id *oidout,
944 uintmax_t mark)
946 void *out, *delta;
947 struct object_entry *e;
948 unsigned char hdr[96];
949 struct object_id oid;
950 unsigned long hdrlen, deltalen;
951 git_hash_ctx c;
952 git_zstream s;
954 hdrlen = format_object_header((char *)hdr, sizeof(hdr), type,
955 dat->len);
956 the_hash_algo->init_fn(&c);
957 the_hash_algo->update_fn(&c, hdr, hdrlen);
958 the_hash_algo->update_fn(&c, dat->buf, dat->len);
959 the_hash_algo->final_oid_fn(&oid, &c);
960 if (oidout)
961 oidcpy(oidout, &oid);
963 e = insert_object(&oid);
964 if (mark)
965 insert_mark(&marks, mark, e);
966 if (e->idx.offset) {
967 duplicate_count_by_type[type]++;
968 return 1;
969 } else if (find_sha1_pack(oid.hash,
970 get_all_packs(the_repository))) {
971 e->type = type;
972 e->pack_id = MAX_PACK_ID;
973 e->idx.offset = 1; /* just not zero! */
974 duplicate_count_by_type[type]++;
975 return 1;
978 if (last && last->data.len && last->data.buf && last->depth < max_depth
979 && dat->len > the_hash_algo->rawsz) {
981 delta_count_attempts_by_type[type]++;
982 delta = diff_delta(last->data.buf, last->data.len,
983 dat->buf, dat->len,
984 &deltalen, dat->len - the_hash_algo->rawsz);
985 } else
986 delta = NULL;
988 git_deflate_init(&s, pack_compression_level);
989 if (delta) {
990 s.next_in = delta;
991 s.avail_in = deltalen;
992 } else {
993 s.next_in = (void *)dat->buf;
994 s.avail_in = dat->len;
996 s.avail_out = git_deflate_bound(&s, s.avail_in);
997 s.next_out = out = xmalloc(s.avail_out);
998 while (git_deflate(&s, Z_FINISH) == Z_OK)
999 ; /* nothing */
1000 git_deflate_end(&s);
1002 /* Determine if we should auto-checkpoint. */
1003 if ((max_packsize
1004 && (pack_size + PACK_SIZE_THRESHOLD + s.total_out) > max_packsize)
1005 || (pack_size + PACK_SIZE_THRESHOLD + s.total_out) < pack_size) {
1007 /* This new object needs to *not* have the current pack_id. */
1008 e->pack_id = pack_id + 1;
1009 cycle_packfile();
1011 /* We cannot carry a delta into the new pack. */
1012 if (delta) {
1013 FREE_AND_NULL(delta);
1015 git_deflate_init(&s, pack_compression_level);
1016 s.next_in = (void *)dat->buf;
1017 s.avail_in = dat->len;
1018 s.avail_out = git_deflate_bound(&s, s.avail_in);
1019 s.next_out = out = xrealloc(out, s.avail_out);
1020 while (git_deflate(&s, Z_FINISH) == Z_OK)
1021 ; /* nothing */
1022 git_deflate_end(&s);
1026 e->type = type;
1027 e->pack_id = pack_id;
1028 e->idx.offset = pack_size;
1029 object_count++;
1030 object_count_by_type[type]++;
1032 crc32_begin(pack_file);
1034 if (delta) {
1035 off_t ofs = e->idx.offset - last->offset;
1036 unsigned pos = sizeof(hdr) - 1;
1038 delta_count_by_type[type]++;
1039 e->depth = last->depth + 1;
1041 hdrlen = encode_in_pack_object_header(hdr, sizeof(hdr),
1042 OBJ_OFS_DELTA, deltalen);
1043 hashwrite(pack_file, hdr, hdrlen);
1044 pack_size += hdrlen;
1046 hdr[pos] = ofs & 127;
1047 while (ofs >>= 7)
1048 hdr[--pos] = 128 | (--ofs & 127);
1049 hashwrite(pack_file, hdr + pos, sizeof(hdr) - pos);
1050 pack_size += sizeof(hdr) - pos;
1051 } else {
1052 e->depth = 0;
1053 hdrlen = encode_in_pack_object_header(hdr, sizeof(hdr),
1054 type, dat->len);
1055 hashwrite(pack_file, hdr, hdrlen);
1056 pack_size += hdrlen;
1059 hashwrite(pack_file, out, s.total_out);
1060 pack_size += s.total_out;
1062 e->idx.crc32 = crc32_end(pack_file);
1064 free(out);
1065 free(delta);
1066 if (last) {
1067 if (last->no_swap) {
1068 last->data = *dat;
1069 } else {
1070 strbuf_swap(&last->data, dat);
1072 last->offset = e->idx.offset;
1073 last->depth = e->depth;
1075 return 0;
1078 static void truncate_pack(struct hashfile_checkpoint *checkpoint)
1080 if (hashfile_truncate(pack_file, checkpoint))
1081 die_errno("cannot truncate pack to skip duplicate");
1082 pack_size = checkpoint->offset;
1085 static void stream_blob(uintmax_t len, struct object_id *oidout, uintmax_t mark)
1087 size_t in_sz = 64 * 1024, out_sz = 64 * 1024;
1088 unsigned char *in_buf = xmalloc(in_sz);
1089 unsigned char *out_buf = xmalloc(out_sz);
1090 struct object_entry *e;
1091 struct object_id oid;
1092 unsigned long hdrlen;
1093 off_t offset;
1094 git_hash_ctx c;
1095 git_zstream s;
1096 struct hashfile_checkpoint checkpoint;
1097 int status = Z_OK;
1099 /* Determine if we should auto-checkpoint. */
1100 if ((max_packsize
1101 && (pack_size + PACK_SIZE_THRESHOLD + len) > max_packsize)
1102 || (pack_size + PACK_SIZE_THRESHOLD + len) < pack_size)
1103 cycle_packfile();
1105 the_hash_algo->init_fn(&checkpoint.ctx);
1106 hashfile_checkpoint(pack_file, &checkpoint);
1107 offset = checkpoint.offset;
1109 hdrlen = format_object_header((char *)out_buf, out_sz, OBJ_BLOB, len);
1111 the_hash_algo->init_fn(&c);
1112 the_hash_algo->update_fn(&c, out_buf, hdrlen);
1114 crc32_begin(pack_file);
1116 git_deflate_init(&s, pack_compression_level);
1118 hdrlen = encode_in_pack_object_header(out_buf, out_sz, OBJ_BLOB, len);
1120 s.next_out = out_buf + hdrlen;
1121 s.avail_out = out_sz - hdrlen;
1123 while (status != Z_STREAM_END) {
1124 if (0 < len && !s.avail_in) {
1125 size_t cnt = in_sz < len ? in_sz : (size_t)len;
1126 size_t n = fread(in_buf, 1, cnt, stdin);
1127 if (!n && feof(stdin))
1128 die("EOF in data (%" PRIuMAX " bytes remaining)", len);
1130 the_hash_algo->update_fn(&c, in_buf, n);
1131 s.next_in = in_buf;
1132 s.avail_in = n;
1133 len -= n;
1136 status = git_deflate(&s, len ? 0 : Z_FINISH);
1138 if (!s.avail_out || status == Z_STREAM_END) {
1139 size_t n = s.next_out - out_buf;
1140 hashwrite(pack_file, out_buf, n);
1141 pack_size += n;
1142 s.next_out = out_buf;
1143 s.avail_out = out_sz;
1146 switch (status) {
1147 case Z_OK:
1148 case Z_BUF_ERROR:
1149 case Z_STREAM_END:
1150 continue;
1151 default:
1152 die("unexpected deflate failure: %d", status);
1155 git_deflate_end(&s);
1156 the_hash_algo->final_oid_fn(&oid, &c);
1158 if (oidout)
1159 oidcpy(oidout, &oid);
1161 e = insert_object(&oid);
1163 if (mark)
1164 insert_mark(&marks, mark, e);
1166 if (e->idx.offset) {
1167 duplicate_count_by_type[OBJ_BLOB]++;
1168 truncate_pack(&checkpoint);
1170 } else if (find_sha1_pack(oid.hash,
1171 get_all_packs(the_repository))) {
1172 e->type = OBJ_BLOB;
1173 e->pack_id = MAX_PACK_ID;
1174 e->idx.offset = 1; /* just not zero! */
1175 duplicate_count_by_type[OBJ_BLOB]++;
1176 truncate_pack(&checkpoint);
1178 } else {
1179 e->depth = 0;
1180 e->type = OBJ_BLOB;
1181 e->pack_id = pack_id;
1182 e->idx.offset = offset;
1183 e->idx.crc32 = crc32_end(pack_file);
1184 object_count++;
1185 object_count_by_type[OBJ_BLOB]++;
1188 free(in_buf);
1189 free(out_buf);
1192 /* All calls must be guarded by find_object() or find_mark() to
1193 * ensure the 'struct object_entry' passed was written by this
1194 * process instance. We unpack the entry by the offset, avoiding
1195 * the need for the corresponding .idx file. This unpacking rule
1196 * works because we only use OBJ_REF_DELTA within the packfiles
1197 * created by fast-import.
1199 * oe must not be NULL. Such an oe usually comes from giving
1200 * an unknown SHA-1 to find_object() or an undefined mark to
1201 * find_mark(). Callers must test for this condition and use
1202 * the standard read_sha1_file() when it happens.
1204 * oe->pack_id must not be MAX_PACK_ID. Such an oe is usually from
1205 * find_mark(), where the mark was reloaded from an existing marks
1206 * file and is referencing an object that this fast-import process
1207 * instance did not write out to a packfile. Callers must test for
1208 * this condition and use read_sha1_file() instead.
1210 static void *gfi_unpack_entry(
1211 struct object_entry *oe,
1212 unsigned long *sizep)
1214 enum object_type type;
1215 struct packed_git *p = all_packs[oe->pack_id];
1216 if (p == pack_data && p->pack_size < (pack_size + the_hash_algo->rawsz)) {
1217 /* The object is stored in the packfile we are writing to
1218 * and we have modified it since the last time we scanned
1219 * back to read a previously written object. If an old
1220 * window covered [p->pack_size, p->pack_size + rawsz) its
1221 * data is stale and is not valid. Closing all windows
1222 * and updating the packfile length ensures we can read
1223 * the newly written data.
1225 close_pack_windows(p);
1226 hashflush(pack_file);
1228 /* We have to offer rawsz bytes additional on the end of
1229 * the packfile as the core unpacker code assumes the
1230 * footer is present at the file end and must promise
1231 * at least rawsz bytes within any window it maps. But
1232 * we don't actually create the footer here.
1234 p->pack_size = pack_size + the_hash_algo->rawsz;
1236 return unpack_entry(the_repository, p, oe->idx.offset, &type, sizep);
1239 static void load_tree(struct tree_entry *root)
1241 struct object_id *oid = &root->versions[1].oid;
1242 struct object_entry *myoe;
1243 struct tree_content *t;
1244 unsigned long size;
1245 char *buf;
1246 const char *c;
1248 root->tree = t = new_tree_content(8);
1249 if (is_null_oid(oid))
1250 return;
1252 myoe = find_object(oid);
1253 if (myoe && myoe->pack_id != MAX_PACK_ID) {
1254 if (myoe->type != OBJ_TREE)
1255 die("Not a tree: %s", oid_to_hex(oid));
1256 t->delta_depth = myoe->depth;
1257 buf = gfi_unpack_entry(myoe, &size);
1258 if (!buf)
1259 die("Can't load tree %s", oid_to_hex(oid));
1260 } else {
1261 enum object_type type;
1262 buf = repo_read_object_file(the_repository, oid, &type, &size);
1263 if (!buf || type != OBJ_TREE)
1264 die("Can't load tree %s", oid_to_hex(oid));
1267 c = buf;
1268 while (c != (buf + size)) {
1269 struct tree_entry *e = new_tree_entry();
1271 if (t->entry_count == t->entry_capacity)
1272 root->tree = t = grow_tree_content(t, t->entry_count);
1273 t->entries[t->entry_count++] = e;
1275 e->tree = NULL;
1276 c = parse_mode(c, &e->versions[1].mode);
1277 if (!c)
1278 die("Corrupt mode in %s", oid_to_hex(oid));
1279 e->versions[0].mode = e->versions[1].mode;
1280 e->name = to_atom(c, strlen(c));
1281 c += e->name->str_len + 1;
1282 oidread(&e->versions[0].oid, (unsigned char *)c);
1283 oidread(&e->versions[1].oid, (unsigned char *)c);
1284 c += the_hash_algo->rawsz;
1286 free(buf);
1289 static int tecmp0 (const void *_a, const void *_b)
1291 struct tree_entry *a = *((struct tree_entry**)_a);
1292 struct tree_entry *b = *((struct tree_entry**)_b);
1293 return base_name_compare(
1294 a->name->str_dat, a->name->str_len, a->versions[0].mode,
1295 b->name->str_dat, b->name->str_len, b->versions[0].mode);
1298 static int tecmp1 (const void *_a, const void *_b)
1300 struct tree_entry *a = *((struct tree_entry**)_a);
1301 struct tree_entry *b = *((struct tree_entry**)_b);
1302 return base_name_compare(
1303 a->name->str_dat, a->name->str_len, a->versions[1].mode,
1304 b->name->str_dat, b->name->str_len, b->versions[1].mode);
1307 static void mktree(struct tree_content *t, int v, struct strbuf *b)
1309 size_t maxlen = 0;
1310 unsigned int i;
1312 if (!v)
1313 QSORT(t->entries, t->entry_count, tecmp0);
1314 else
1315 QSORT(t->entries, t->entry_count, tecmp1);
1317 for (i = 0; i < t->entry_count; i++) {
1318 if (t->entries[i]->versions[v].mode)
1319 maxlen += t->entries[i]->name->str_len + 34;
1322 strbuf_reset(b);
1323 strbuf_grow(b, maxlen);
1324 for (i = 0; i < t->entry_count; i++) {
1325 struct tree_entry *e = t->entries[i];
1326 if (!e->versions[v].mode)
1327 continue;
1328 strbuf_addf(b, "%o %s%c",
1329 (unsigned int)(e->versions[v].mode & ~NO_DELTA),
1330 e->name->str_dat, '\0');
1331 strbuf_add(b, e->versions[v].oid.hash, the_hash_algo->rawsz);
1335 static void store_tree(struct tree_entry *root)
1337 struct tree_content *t;
1338 unsigned int i, j, del;
1339 struct last_object lo = { STRBUF_INIT, 0, 0, /* no_swap */ 1 };
1340 struct object_entry *le = NULL;
1342 if (!is_null_oid(&root->versions[1].oid))
1343 return;
1345 if (!root->tree)
1346 load_tree(root);
1347 t = root->tree;
1349 for (i = 0; i < t->entry_count; i++) {
1350 if (t->entries[i]->tree)
1351 store_tree(t->entries[i]);
1354 if (!(root->versions[0].mode & NO_DELTA))
1355 le = find_object(&root->versions[0].oid);
1356 if (S_ISDIR(root->versions[0].mode) && le && le->pack_id == pack_id) {
1357 mktree(t, 0, &old_tree);
1358 lo.data = old_tree;
1359 lo.offset = le->idx.offset;
1360 lo.depth = t->delta_depth;
1363 mktree(t, 1, &new_tree);
1364 store_object(OBJ_TREE, &new_tree, &lo, &root->versions[1].oid, 0);
1366 t->delta_depth = lo.depth;
1367 for (i = 0, j = 0, del = 0; i < t->entry_count; i++) {
1368 struct tree_entry *e = t->entries[i];
1369 if (e->versions[1].mode) {
1370 e->versions[0].mode = e->versions[1].mode;
1371 oidcpy(&e->versions[0].oid, &e->versions[1].oid);
1372 t->entries[j++] = e;
1373 } else {
1374 release_tree_entry(e);
1375 del++;
1378 t->entry_count -= del;
1381 static void tree_content_replace(
1382 struct tree_entry *root,
1383 const struct object_id *oid,
1384 const uint16_t mode,
1385 struct tree_content *newtree)
1387 if (!S_ISDIR(mode))
1388 die("Root cannot be a non-directory");
1389 oidclr(&root->versions[0].oid);
1390 oidcpy(&root->versions[1].oid, oid);
1391 if (root->tree)
1392 release_tree_content_recursive(root->tree);
1393 root->tree = newtree;
1396 static int tree_content_set(
1397 struct tree_entry *root,
1398 const char *p,
1399 const struct object_id *oid,
1400 const uint16_t mode,
1401 struct tree_content *subtree)
1403 struct tree_content *t;
1404 const char *slash1;
1405 unsigned int i, n;
1406 struct tree_entry *e;
1408 slash1 = strchrnul(p, '/');
1409 n = slash1 - p;
1410 if (!n)
1411 die("Empty path component found in input");
1412 if (!*slash1 && !S_ISDIR(mode) && subtree)
1413 die("Non-directories cannot have subtrees");
1415 if (!root->tree)
1416 load_tree(root);
1417 t = root->tree;
1418 for (i = 0; i < t->entry_count; i++) {
1419 e = t->entries[i];
1420 if (e->name->str_len == n && !fspathncmp(p, e->name->str_dat, n)) {
1421 if (!*slash1) {
1422 if (!S_ISDIR(mode)
1423 && e->versions[1].mode == mode
1424 && oideq(&e->versions[1].oid, oid))
1425 return 0;
1426 e->versions[1].mode = mode;
1427 oidcpy(&e->versions[1].oid, oid);
1428 if (e->tree)
1429 release_tree_content_recursive(e->tree);
1430 e->tree = subtree;
1433 * We need to leave e->versions[0].sha1 alone
1434 * to avoid modifying the preimage tree used
1435 * when writing out the parent directory.
1436 * But after replacing the subdir with a
1437 * completely different one, it's not a good
1438 * delta base any more, and besides, we've
1439 * thrown away the tree entries needed to
1440 * make a delta against it.
1442 * So let's just explicitly disable deltas
1443 * for the subtree.
1445 if (S_ISDIR(e->versions[0].mode))
1446 e->versions[0].mode |= NO_DELTA;
1448 oidclr(&root->versions[1].oid);
1449 return 1;
1451 if (!S_ISDIR(e->versions[1].mode)) {
1452 e->tree = new_tree_content(8);
1453 e->versions[1].mode = S_IFDIR;
1455 if (!e->tree)
1456 load_tree(e);
1457 if (tree_content_set(e, slash1 + 1, oid, mode, subtree)) {
1458 oidclr(&root->versions[1].oid);
1459 return 1;
1461 return 0;
1465 if (t->entry_count == t->entry_capacity)
1466 root->tree = t = grow_tree_content(t, t->entry_count);
1467 e = new_tree_entry();
1468 e->name = to_atom(p, n);
1469 e->versions[0].mode = 0;
1470 oidclr(&e->versions[0].oid);
1471 t->entries[t->entry_count++] = e;
1472 if (*slash1) {
1473 e->tree = new_tree_content(8);
1474 e->versions[1].mode = S_IFDIR;
1475 tree_content_set(e, slash1 + 1, oid, mode, subtree);
1476 } else {
1477 e->tree = subtree;
1478 e->versions[1].mode = mode;
1479 oidcpy(&e->versions[1].oid, oid);
1481 oidclr(&root->versions[1].oid);
1482 return 1;
1485 static int tree_content_remove(
1486 struct tree_entry *root,
1487 const char *p,
1488 struct tree_entry *backup_leaf,
1489 int allow_root)
1491 struct tree_content *t;
1492 const char *slash1;
1493 unsigned int i, n;
1494 struct tree_entry *e;
1496 slash1 = strchrnul(p, '/');
1497 n = slash1 - p;
1499 if (!root->tree)
1500 load_tree(root);
1502 if (!*p && allow_root) {
1503 e = root;
1504 goto del_entry;
1507 t = root->tree;
1508 for (i = 0; i < t->entry_count; i++) {
1509 e = t->entries[i];
1510 if (e->name->str_len == n && !fspathncmp(p, e->name->str_dat, n)) {
1511 if (*slash1 && !S_ISDIR(e->versions[1].mode))
1513 * If p names a file in some subdirectory, and a
1514 * file or symlink matching the name of the
1515 * parent directory of p exists, then p cannot
1516 * exist and need not be deleted.
1518 return 1;
1519 if (!*slash1 || !S_ISDIR(e->versions[1].mode))
1520 goto del_entry;
1521 if (!e->tree)
1522 load_tree(e);
1523 if (tree_content_remove(e, slash1 + 1, backup_leaf, 0)) {
1524 for (n = 0; n < e->tree->entry_count; n++) {
1525 if (e->tree->entries[n]->versions[1].mode) {
1526 oidclr(&root->versions[1].oid);
1527 return 1;
1530 backup_leaf = NULL;
1531 goto del_entry;
1533 return 0;
1536 return 0;
1538 del_entry:
1539 if (backup_leaf)
1540 memcpy(backup_leaf, e, sizeof(*backup_leaf));
1541 else if (e->tree)
1542 release_tree_content_recursive(e->tree);
1543 e->tree = NULL;
1544 e->versions[1].mode = 0;
1545 oidclr(&e->versions[1].oid);
1546 oidclr(&root->versions[1].oid);
1547 return 1;
1550 static int tree_content_get(
1551 struct tree_entry *root,
1552 const char *p,
1553 struct tree_entry *leaf,
1554 int allow_root)
1556 struct tree_content *t;
1557 const char *slash1;
1558 unsigned int i, n;
1559 struct tree_entry *e;
1561 slash1 = strchrnul(p, '/');
1562 n = slash1 - p;
1563 if (!n && !allow_root)
1564 die("Empty path component found in input");
1566 if (!root->tree)
1567 load_tree(root);
1569 if (!n) {
1570 e = root;
1571 goto found_entry;
1574 t = root->tree;
1575 for (i = 0; i < t->entry_count; i++) {
1576 e = t->entries[i];
1577 if (e->name->str_len == n && !fspathncmp(p, e->name->str_dat, n)) {
1578 if (!*slash1)
1579 goto found_entry;
1580 if (!S_ISDIR(e->versions[1].mode))
1581 return 0;
1582 if (!e->tree)
1583 load_tree(e);
1584 return tree_content_get(e, slash1 + 1, leaf, 0);
1587 return 0;
1589 found_entry:
1590 memcpy(leaf, e, sizeof(*leaf));
1591 if (e->tree && is_null_oid(&e->versions[1].oid))
1592 leaf->tree = dup_tree_content(e->tree);
1593 else
1594 leaf->tree = NULL;
1595 return 1;
1598 static int update_branch(struct branch *b)
1600 static const char *msg = "fast-import";
1601 struct ref_transaction *transaction;
1602 struct object_id old_oid;
1603 struct strbuf err = STRBUF_INIT;
1605 if (is_null_oid(&b->oid)) {
1606 if (b->delete)
1607 delete_ref(NULL, b->name, NULL, 0);
1608 return 0;
1610 if (read_ref(b->name, &old_oid))
1611 oidclr(&old_oid);
1612 if (!force_update && !is_null_oid(&old_oid)) {
1613 struct commit *old_cmit, *new_cmit;
1614 int ret;
1616 old_cmit = lookup_commit_reference_gently(the_repository,
1617 &old_oid, 0);
1618 new_cmit = lookup_commit_reference_gently(the_repository,
1619 &b->oid, 0);
1620 if (!old_cmit || !new_cmit)
1621 return error("Branch %s is missing commits.", b->name);
1623 ret = repo_in_merge_bases(the_repository, old_cmit, new_cmit);
1624 if (ret < 0)
1625 exit(128);
1626 if (!ret) {
1627 warning("Not updating %s"
1628 " (new tip %s does not contain %s)",
1629 b->name, oid_to_hex(&b->oid),
1630 oid_to_hex(&old_oid));
1631 return -1;
1634 transaction = ref_transaction_begin(&err);
1635 if (!transaction ||
1636 ref_transaction_update(transaction, b->name, &b->oid, &old_oid,
1637 0, msg, &err) ||
1638 ref_transaction_commit(transaction, &err)) {
1639 ref_transaction_free(transaction);
1640 error("%s", err.buf);
1641 strbuf_release(&err);
1642 return -1;
1644 ref_transaction_free(transaction);
1645 strbuf_release(&err);
1646 return 0;
1649 static void dump_branches(void)
1651 unsigned int i;
1652 struct branch *b;
1654 for (i = 0; i < branch_table_sz; i++) {
1655 for (b = branch_table[i]; b; b = b->table_next_branch)
1656 failure |= update_branch(b);
1660 static void dump_tags(void)
1662 static const char *msg = "fast-import";
1663 struct tag *t;
1664 struct strbuf ref_name = STRBUF_INIT;
1665 struct strbuf err = STRBUF_INIT;
1666 struct ref_transaction *transaction;
1668 transaction = ref_transaction_begin(&err);
1669 if (!transaction) {
1670 failure |= error("%s", err.buf);
1671 goto cleanup;
1673 for (t = first_tag; t; t = t->next_tag) {
1674 strbuf_reset(&ref_name);
1675 strbuf_addf(&ref_name, "refs/tags/%s", t->name);
1677 if (ref_transaction_update(transaction, ref_name.buf,
1678 &t->oid, NULL, 0, msg, &err)) {
1679 failure |= error("%s", err.buf);
1680 goto cleanup;
1683 if (ref_transaction_commit(transaction, &err))
1684 failure |= error("%s", err.buf);
1686 cleanup:
1687 ref_transaction_free(transaction);
1688 strbuf_release(&ref_name);
1689 strbuf_release(&err);
1692 static void dump_marks(void)
1694 struct lock_file mark_lock = LOCK_INIT;
1695 FILE *f;
1697 if (!export_marks_file || (import_marks_file && !import_marks_file_done))
1698 return;
1700 if (safe_create_leading_directories_const(export_marks_file)) {
1701 failure |= error_errno("unable to create leading directories of %s",
1702 export_marks_file);
1703 return;
1706 if (hold_lock_file_for_update(&mark_lock, export_marks_file, 0) < 0) {
1707 failure |= error_errno("Unable to write marks file %s",
1708 export_marks_file);
1709 return;
1712 f = fdopen_lock_file(&mark_lock, "w");
1713 if (!f) {
1714 int saved_errno = errno;
1715 rollback_lock_file(&mark_lock);
1716 failure |= error("Unable to write marks file %s: %s",
1717 export_marks_file, strerror(saved_errno));
1718 return;
1721 for_each_mark(marks, 0, dump_marks_fn, f);
1722 if (commit_lock_file(&mark_lock)) {
1723 failure |= error_errno("Unable to write file %s",
1724 export_marks_file);
1725 return;
1729 static void insert_object_entry(struct mark_set **s, struct object_id *oid, uintmax_t mark)
1731 struct object_entry *e;
1732 e = find_object(oid);
1733 if (!e) {
1734 enum object_type type = oid_object_info(the_repository,
1735 oid, NULL);
1736 if (type < 0)
1737 die("object not found: %s", oid_to_hex(oid));
1738 e = insert_object(oid);
1739 e->type = type;
1740 e->pack_id = MAX_PACK_ID;
1741 e->idx.offset = 1; /* just not zero! */
1743 insert_mark(s, mark, e);
1746 static void insert_oid_entry(struct mark_set **s, struct object_id *oid, uintmax_t mark)
1748 insert_mark(s, mark, xmemdupz(oid, sizeof(*oid)));
1751 static void read_mark_file(struct mark_set **s, FILE *f, mark_set_inserter_t inserter)
1753 char line[512];
1754 while (fgets(line, sizeof(line), f)) {
1755 uintmax_t mark;
1756 char *end;
1757 struct object_id oid;
1759 /* Ensure SHA-1 objects are padded with zeros. */
1760 memset(oid.hash, 0, sizeof(oid.hash));
1762 end = strchr(line, '\n');
1763 if (line[0] != ':' || !end)
1764 die("corrupt mark line: %s", line);
1765 *end = 0;
1766 mark = strtoumax(line + 1, &end, 10);
1767 if (!mark || end == line + 1
1768 || *end != ' '
1769 || get_oid_hex_any(end + 1, &oid) == GIT_HASH_UNKNOWN)
1770 die("corrupt mark line: %s", line);
1771 inserter(s, &oid, mark);
1775 static void read_marks(void)
1777 FILE *f = fopen(import_marks_file, "r");
1778 if (f)
1780 else if (import_marks_file_ignore_missing && errno == ENOENT)
1781 goto done; /* Marks file does not exist */
1782 else
1783 die_errno("cannot read '%s'", import_marks_file);
1784 read_mark_file(&marks, f, insert_object_entry);
1785 fclose(f);
1786 done:
1787 import_marks_file_done = 1;
1791 static int read_next_command(void)
1793 static int stdin_eof = 0;
1795 if (stdin_eof) {
1796 unread_command_buf = 0;
1797 return EOF;
1800 for (;;) {
1801 if (unread_command_buf) {
1802 unread_command_buf = 0;
1803 } else {
1804 struct recent_command *rc;
1806 stdin_eof = strbuf_getline_lf(&command_buf, stdin);
1807 if (stdin_eof)
1808 return EOF;
1810 if (!seen_data_command
1811 && !starts_with(command_buf.buf, "feature ")
1812 && !starts_with(command_buf.buf, "option ")) {
1813 parse_argv();
1816 rc = rc_free;
1817 if (rc)
1818 rc_free = rc->next;
1819 else {
1820 rc = cmd_hist.next;
1821 cmd_hist.next = rc->next;
1822 cmd_hist.next->prev = &cmd_hist;
1823 free(rc->buf);
1826 rc->buf = xstrdup(command_buf.buf);
1827 rc->prev = cmd_tail;
1828 rc->next = cmd_hist.prev;
1829 rc->prev->next = rc;
1830 cmd_tail = rc;
1832 if (command_buf.buf[0] == '#')
1833 continue;
1834 return 0;
1838 static void skip_optional_lf(void)
1840 int term_char = fgetc(stdin);
1841 if (term_char != '\n' && term_char != EOF)
1842 ungetc(term_char, stdin);
1845 static void parse_mark(void)
1847 const char *v;
1848 if (skip_prefix(command_buf.buf, "mark :", &v)) {
1849 next_mark = strtoumax(v, NULL, 10);
1850 read_next_command();
1852 else
1853 next_mark = 0;
1856 static void parse_original_identifier(void)
1858 const char *v;
1859 if (skip_prefix(command_buf.buf, "original-oid ", &v))
1860 read_next_command();
1863 static int parse_data(struct strbuf *sb, uintmax_t limit, uintmax_t *len_res)
1865 const char *data;
1866 strbuf_reset(sb);
1868 if (!skip_prefix(command_buf.buf, "data ", &data))
1869 die("Expected 'data n' command, found: %s", command_buf.buf);
1871 if (skip_prefix(data, "<<", &data)) {
1872 char *term = xstrdup(data);
1873 size_t term_len = command_buf.len - (data - command_buf.buf);
1875 for (;;) {
1876 if (strbuf_getline_lf(&command_buf, stdin) == EOF)
1877 die("EOF in data (terminator '%s' not found)", term);
1878 if (term_len == command_buf.len
1879 && !strcmp(term, command_buf.buf))
1880 break;
1881 strbuf_addbuf(sb, &command_buf);
1882 strbuf_addch(sb, '\n');
1884 free(term);
1886 else {
1887 uintmax_t len = strtoumax(data, NULL, 10);
1888 size_t n = 0, length = (size_t)len;
1890 if (limit && limit < len) {
1891 *len_res = len;
1892 return 0;
1894 if (length < len)
1895 die("data is too large to use in this context");
1897 while (n < length) {
1898 size_t s = strbuf_fread(sb, length - n, stdin);
1899 if (!s && feof(stdin))
1900 die("EOF in data (%lu bytes remaining)",
1901 (unsigned long)(length - n));
1902 n += s;
1906 skip_optional_lf();
1907 return 1;
1910 static int validate_raw_date(const char *src, struct strbuf *result, int strict)
1912 const char *orig_src = src;
1913 char *endp;
1914 unsigned long num;
1916 errno = 0;
1918 num = strtoul(src, &endp, 10);
1920 * NEEDSWORK: perhaps check for reasonable values? For example, we
1921 * could error on values representing times more than a
1922 * day in the future.
1924 if (errno || endp == src || *endp != ' ')
1925 return -1;
1927 src = endp + 1;
1928 if (*src != '-' && *src != '+')
1929 return -1;
1931 num = strtoul(src + 1, &endp, 10);
1933 * NEEDSWORK: check for brokenness other than num > 1400, such as
1934 * (num % 100) >= 60, or ((num % 100) % 15) != 0 ?
1936 if (errno || endp == src + 1 || *endp || /* did not parse */
1937 (strict && (1400 < num)) /* parsed a broken timezone */
1939 return -1;
1941 strbuf_addstr(result, orig_src);
1942 return 0;
1945 static char *parse_ident(const char *buf)
1947 const char *ltgt;
1948 size_t name_len;
1949 struct strbuf ident = STRBUF_INIT;
1951 /* ensure there is a space delimiter even if there is no name */
1952 if (*buf == '<')
1953 --buf;
1955 ltgt = buf + strcspn(buf, "<>");
1956 if (*ltgt != '<')
1957 die("Missing < in ident string: %s", buf);
1958 if (ltgt != buf && ltgt[-1] != ' ')
1959 die("Missing space before < in ident string: %s", buf);
1960 ltgt = ltgt + 1 + strcspn(ltgt + 1, "<>");
1961 if (*ltgt != '>')
1962 die("Missing > in ident string: %s", buf);
1963 ltgt++;
1964 if (*ltgt != ' ')
1965 die("Missing space after > in ident string: %s", buf);
1966 ltgt++;
1967 name_len = ltgt - buf;
1968 strbuf_add(&ident, buf, name_len);
1970 switch (whenspec) {
1971 case WHENSPEC_RAW:
1972 if (validate_raw_date(ltgt, &ident, 1) < 0)
1973 die("Invalid raw date \"%s\" in ident: %s", ltgt, buf);
1974 break;
1975 case WHENSPEC_RAW_PERMISSIVE:
1976 if (validate_raw_date(ltgt, &ident, 0) < 0)
1977 die("Invalid raw date \"%s\" in ident: %s", ltgt, buf);
1978 break;
1979 case WHENSPEC_RFC2822:
1980 if (parse_date(ltgt, &ident) < 0)
1981 die("Invalid rfc2822 date \"%s\" in ident: %s", ltgt, buf);
1982 break;
1983 case WHENSPEC_NOW:
1984 if (strcmp("now", ltgt))
1985 die("Date in ident must be 'now': %s", buf);
1986 datestamp(&ident);
1987 break;
1990 return strbuf_detach(&ident, NULL);
1993 static void parse_and_store_blob(
1994 struct last_object *last,
1995 struct object_id *oidout,
1996 uintmax_t mark)
1998 static struct strbuf buf = STRBUF_INIT;
1999 uintmax_t len;
2001 if (parse_data(&buf, big_file_threshold, &len))
2002 store_object(OBJ_BLOB, &buf, last, oidout, mark);
2003 else {
2004 if (last) {
2005 strbuf_release(&last->data);
2006 last->offset = 0;
2007 last->depth = 0;
2009 stream_blob(len, oidout, mark);
2010 skip_optional_lf();
2014 static void parse_new_blob(void)
2016 read_next_command();
2017 parse_mark();
2018 parse_original_identifier();
2019 parse_and_store_blob(&last_blob, NULL, next_mark);
2022 static void unload_one_branch(void)
2024 while (cur_active_branches
2025 && cur_active_branches >= max_active_branches) {
2026 uintmax_t min_commit = ULONG_MAX;
2027 struct branch *e, *l = NULL, *p = NULL;
2029 for (e = active_branches; e; e = e->active_next_branch) {
2030 if (e->last_commit < min_commit) {
2031 p = l;
2032 min_commit = e->last_commit;
2034 l = e;
2037 if (p) {
2038 e = p->active_next_branch;
2039 p->active_next_branch = e->active_next_branch;
2040 } else {
2041 e = active_branches;
2042 active_branches = e->active_next_branch;
2044 e->active = 0;
2045 e->active_next_branch = NULL;
2046 if (e->branch_tree.tree) {
2047 release_tree_content_recursive(e->branch_tree.tree);
2048 e->branch_tree.tree = NULL;
2050 cur_active_branches--;
2054 static void load_branch(struct branch *b)
2056 load_tree(&b->branch_tree);
2057 if (!b->active) {
2058 b->active = 1;
2059 b->active_next_branch = active_branches;
2060 active_branches = b;
2061 cur_active_branches++;
2062 branch_load_count++;
2066 static unsigned char convert_num_notes_to_fanout(uintmax_t num_notes)
2068 unsigned char fanout = 0;
2069 while ((num_notes >>= 8))
2070 fanout++;
2071 return fanout;
2074 static void construct_path_with_fanout(const char *hex_sha1,
2075 unsigned char fanout, char *path)
2077 unsigned int i = 0, j = 0;
2078 if (fanout >= the_hash_algo->rawsz)
2079 die("Too large fanout (%u)", fanout);
2080 while (fanout) {
2081 path[i++] = hex_sha1[j++];
2082 path[i++] = hex_sha1[j++];
2083 path[i++] = '/';
2084 fanout--;
2086 memcpy(path + i, hex_sha1 + j, the_hash_algo->hexsz - j);
2087 path[i + the_hash_algo->hexsz - j] = '\0';
2090 static uintmax_t do_change_note_fanout(
2091 struct tree_entry *orig_root, struct tree_entry *root,
2092 char *hex_oid, unsigned int hex_oid_len,
2093 char *fullpath, unsigned int fullpath_len,
2094 unsigned char fanout)
2096 struct tree_content *t;
2097 struct tree_entry *e, leaf;
2098 unsigned int i, tmp_hex_oid_len, tmp_fullpath_len;
2099 uintmax_t num_notes = 0;
2100 struct object_id oid;
2101 /* hex oid + '/' between each pair of hex digits + NUL */
2102 char realpath[GIT_MAX_HEXSZ + ((GIT_MAX_HEXSZ / 2) - 1) + 1];
2103 const unsigned hexsz = the_hash_algo->hexsz;
2105 if (!root->tree)
2106 load_tree(root);
2107 t = root->tree;
2109 for (i = 0; t && i < t->entry_count; i++) {
2110 e = t->entries[i];
2111 tmp_hex_oid_len = hex_oid_len + e->name->str_len;
2112 tmp_fullpath_len = fullpath_len;
2115 * We're interested in EITHER existing note entries (entries
2116 * with exactly 40 hex chars in path, not including directory
2117 * separators), OR directory entries that may contain note
2118 * entries (with < 40 hex chars in path).
2119 * Also, each path component in a note entry must be a multiple
2120 * of 2 chars.
2122 if (!e->versions[1].mode ||
2123 tmp_hex_oid_len > hexsz ||
2124 e->name->str_len % 2)
2125 continue;
2127 /* This _may_ be a note entry, or a subdir containing notes */
2128 memcpy(hex_oid + hex_oid_len, e->name->str_dat,
2129 e->name->str_len);
2130 if (tmp_fullpath_len)
2131 fullpath[tmp_fullpath_len++] = '/';
2132 memcpy(fullpath + tmp_fullpath_len, e->name->str_dat,
2133 e->name->str_len);
2134 tmp_fullpath_len += e->name->str_len;
2135 fullpath[tmp_fullpath_len] = '\0';
2137 if (tmp_hex_oid_len == hexsz && !get_oid_hex(hex_oid, &oid)) {
2138 /* This is a note entry */
2139 if (fanout == 0xff) {
2140 /* Counting mode, no rename */
2141 num_notes++;
2142 continue;
2144 construct_path_with_fanout(hex_oid, fanout, realpath);
2145 if (!strcmp(fullpath, realpath)) {
2146 /* Note entry is in correct location */
2147 num_notes++;
2148 continue;
2151 /* Rename fullpath to realpath */
2152 if (!tree_content_remove(orig_root, fullpath, &leaf, 0))
2153 die("Failed to remove path %s", fullpath);
2154 tree_content_set(orig_root, realpath,
2155 &leaf.versions[1].oid,
2156 leaf.versions[1].mode,
2157 leaf.tree);
2158 } else if (S_ISDIR(e->versions[1].mode)) {
2159 /* This is a subdir that may contain note entries */
2160 num_notes += do_change_note_fanout(orig_root, e,
2161 hex_oid, tmp_hex_oid_len,
2162 fullpath, tmp_fullpath_len, fanout);
2165 /* The above may have reallocated the current tree_content */
2166 t = root->tree;
2168 return num_notes;
2171 static uintmax_t change_note_fanout(struct tree_entry *root,
2172 unsigned char fanout)
2175 * The size of path is due to one slash between every two hex digits,
2176 * plus the terminating NUL. Note that there is no slash at the end, so
2177 * the number of slashes is one less than half the number of hex
2178 * characters.
2180 char hex_oid[GIT_MAX_HEXSZ], path[GIT_MAX_HEXSZ + (GIT_MAX_HEXSZ / 2) - 1 + 1];
2181 return do_change_note_fanout(root, root, hex_oid, 0, path, 0, fanout);
2184 static int parse_mapped_oid_hex(const char *hex, struct object_id *oid, const char **end)
2186 int algo;
2187 khiter_t it;
2189 /* Make SHA-1 object IDs have all-zero padding. */
2190 memset(oid->hash, 0, sizeof(oid->hash));
2192 algo = parse_oid_hex_any(hex, oid, end);
2193 if (algo == GIT_HASH_UNKNOWN)
2194 return -1;
2196 it = kh_get_oid_map(sub_oid_map, *oid);
2197 /* No such object? */
2198 if (it == kh_end(sub_oid_map)) {
2199 /* If we're using the same algorithm, pass it through. */
2200 if (hash_algos[algo].format_id == the_hash_algo->format_id)
2201 return 0;
2202 return -1;
2204 oidcpy(oid, kh_value(sub_oid_map, it));
2205 return 0;
2209 * Given a pointer into a string, parse a mark reference:
2211 * idnum ::= ':' bigint;
2213 * Update *endptr to point to the first character after the value.
2215 * Complain if the following character is not what is expected,
2216 * either a space or end of the string.
2218 static uintmax_t parse_mark_ref(const char *p, char **endptr)
2220 uintmax_t mark;
2222 assert(*p == ':');
2223 p++;
2224 mark = strtoumax(p, endptr, 10);
2225 if (*endptr == p)
2226 die("No value after ':' in mark: %s", command_buf.buf);
2227 return mark;
2231 * Parse the mark reference, and complain if this is not the end of
2232 * the string.
2234 static uintmax_t parse_mark_ref_eol(const char *p)
2236 char *end;
2237 uintmax_t mark;
2239 mark = parse_mark_ref(p, &end);
2240 if (*end != '\0')
2241 die("Garbage after mark: %s", command_buf.buf);
2242 return mark;
2246 * Parse the mark reference, demanding a trailing space. Update *p to
2247 * point to the first character after the space.
2249 static uintmax_t parse_mark_ref_space(const char **p)
2251 uintmax_t mark;
2252 char *end;
2254 mark = parse_mark_ref(*p, &end);
2255 if (*end++ != ' ')
2256 die("Missing space after mark: %s", command_buf.buf);
2257 *p = end;
2258 return mark;
2262 * Parse the path string into the strbuf. The path can either be quoted with
2263 * escape sequences or unquoted without escape sequences. Unquoted strings may
2264 * contain spaces only if `is_last_field` is nonzero; otherwise, it stops
2265 * parsing at the first space.
2267 static void parse_path(struct strbuf *sb, const char *p, const char **endp,
2268 int is_last_field, const char *field)
2270 if (*p == '"') {
2271 if (unquote_c_style(sb, p, endp))
2272 die("Invalid %s: %s", field, command_buf.buf);
2273 if (strlen(sb->buf) != sb->len)
2274 die("NUL in %s: %s", field, command_buf.buf);
2275 } else {
2277 * Unless we are parsing the last field of a line,
2278 * SP is the end of this field.
2280 *endp = is_last_field
2281 ? p + strlen(p)
2282 : strchrnul(p, ' ');
2283 strbuf_add(sb, p, *endp - p);
2288 * Parse the path string into the strbuf, and complain if this is not the end of
2289 * the string. Unquoted strings may contain spaces.
2291 static void parse_path_eol(struct strbuf *sb, const char *p, const char *field)
2293 const char *end;
2295 parse_path(sb, p, &end, 1, field);
2296 if (*end)
2297 die("Garbage after %s: %s", field, command_buf.buf);
2301 * Parse the path string into the strbuf, and ensure it is followed by a space.
2302 * Unquoted strings may not contain spaces. Update *endp to point to the first
2303 * character after the space.
2305 static void parse_path_space(struct strbuf *sb, const char *p,
2306 const char **endp, const char *field)
2308 parse_path(sb, p, endp, 0, field);
2309 if (**endp != ' ')
2310 die("Missing space after %s: %s", field, command_buf.buf);
2311 (*endp)++;
2314 static void file_change_m(const char *p, struct branch *b)
2316 static struct strbuf path = STRBUF_INIT;
2317 struct object_entry *oe;
2318 struct object_id oid;
2319 uint16_t mode, inline_data = 0;
2321 p = parse_mode(p, &mode);
2322 if (!p)
2323 die("Corrupt mode: %s", command_buf.buf);
2324 switch (mode) {
2325 case 0644:
2326 case 0755:
2327 mode |= S_IFREG;
2328 case S_IFREG | 0644:
2329 case S_IFREG | 0755:
2330 case S_IFLNK:
2331 case S_IFDIR:
2332 case S_IFGITLINK:
2333 /* ok */
2334 break;
2335 default:
2336 die("Corrupt mode: %s", command_buf.buf);
2339 if (*p == ':') {
2340 oe = find_mark(marks, parse_mark_ref_space(&p));
2341 oidcpy(&oid, &oe->idx.oid);
2342 } else if (skip_prefix(p, "inline ", &p)) {
2343 inline_data = 1;
2344 oe = NULL; /* not used with inline_data, but makes gcc happy */
2345 } else {
2346 if (parse_mapped_oid_hex(p, &oid, &p))
2347 die("Invalid dataref: %s", command_buf.buf);
2348 oe = find_object(&oid);
2349 if (*p++ != ' ')
2350 die("Missing space after SHA1: %s", command_buf.buf);
2353 strbuf_reset(&path);
2354 parse_path_eol(&path, p, "path");
2356 /* Git does not track empty, non-toplevel directories. */
2357 if (S_ISDIR(mode) && is_empty_tree_oid(&oid) && *path.buf) {
2358 tree_content_remove(&b->branch_tree, path.buf, NULL, 0);
2359 return;
2362 if (S_ISGITLINK(mode)) {
2363 if (inline_data)
2364 die("Git links cannot be specified 'inline': %s",
2365 command_buf.buf);
2366 else if (oe) {
2367 if (oe->type != OBJ_COMMIT)
2368 die("Not a commit (actually a %s): %s",
2369 type_name(oe->type), command_buf.buf);
2372 * Accept the sha1 without checking; it expected to be in
2373 * another repository.
2375 } else if (inline_data) {
2376 if (S_ISDIR(mode))
2377 die("Directories cannot be specified 'inline': %s",
2378 command_buf.buf);
2379 while (read_next_command() != EOF) {
2380 const char *v;
2381 if (skip_prefix(command_buf.buf, "cat-blob ", &v))
2382 parse_cat_blob(v);
2383 else {
2384 parse_and_store_blob(&last_blob, &oid, 0);
2385 break;
2388 } else {
2389 enum object_type expected = S_ISDIR(mode) ?
2390 OBJ_TREE: OBJ_BLOB;
2391 enum object_type type = oe ? oe->type :
2392 oid_object_info(the_repository, &oid,
2393 NULL);
2394 if (type < 0)
2395 die("%s not found: %s",
2396 S_ISDIR(mode) ? "Tree" : "Blob",
2397 command_buf.buf);
2398 if (type != expected)
2399 die("Not a %s (actually a %s): %s",
2400 type_name(expected), type_name(type),
2401 command_buf.buf);
2404 if (!*path.buf) {
2405 tree_content_replace(&b->branch_tree, &oid, mode, NULL);
2406 return;
2408 tree_content_set(&b->branch_tree, path.buf, &oid, mode, NULL);
2411 static void file_change_d(const char *p, struct branch *b)
2413 static struct strbuf path = STRBUF_INIT;
2415 strbuf_reset(&path);
2416 parse_path_eol(&path, p, "path");
2417 tree_content_remove(&b->branch_tree, path.buf, NULL, 1);
2420 static void file_change_cr(const char *p, struct branch *b, int rename)
2422 static struct strbuf source = STRBUF_INIT;
2423 static struct strbuf dest = STRBUF_INIT;
2424 struct tree_entry leaf;
2426 strbuf_reset(&source);
2427 parse_path_space(&source, p, &p, "source");
2428 strbuf_reset(&dest);
2429 parse_path_eol(&dest, p, "dest");
2431 memset(&leaf, 0, sizeof(leaf));
2432 if (rename)
2433 tree_content_remove(&b->branch_tree, source.buf, &leaf, 1);
2434 else
2435 tree_content_get(&b->branch_tree, source.buf, &leaf, 1);
2436 if (!leaf.versions[1].mode)
2437 die("Path %s not in branch", source.buf);
2438 if (!*dest.buf) { /* C "path/to/subdir" "" */
2439 tree_content_replace(&b->branch_tree,
2440 &leaf.versions[1].oid,
2441 leaf.versions[1].mode,
2442 leaf.tree);
2443 return;
2445 tree_content_set(&b->branch_tree, dest.buf,
2446 &leaf.versions[1].oid,
2447 leaf.versions[1].mode,
2448 leaf.tree);
2451 static void note_change_n(const char *p, struct branch *b, unsigned char *old_fanout)
2453 struct object_entry *oe;
2454 struct branch *s;
2455 struct object_id oid, commit_oid;
2456 char path[GIT_MAX_RAWSZ * 3];
2457 uint16_t inline_data = 0;
2458 unsigned char new_fanout;
2461 * When loading a branch, we don't traverse its tree to count the real
2462 * number of notes (too expensive to do this for all non-note refs).
2463 * This means that recently loaded notes refs might incorrectly have
2464 * b->num_notes == 0, and consequently, old_fanout might be wrong.
2466 * Fix this by traversing the tree and counting the number of notes
2467 * when b->num_notes == 0. If the notes tree is truly empty, the
2468 * calculation should not take long.
2470 if (b->num_notes == 0 && *old_fanout == 0) {
2471 /* Invoke change_note_fanout() in "counting mode". */
2472 b->num_notes = change_note_fanout(&b->branch_tree, 0xff);
2473 *old_fanout = convert_num_notes_to_fanout(b->num_notes);
2476 /* Now parse the notemodify command. */
2477 /* <dataref> or 'inline' */
2478 if (*p == ':') {
2479 oe = find_mark(marks, parse_mark_ref_space(&p));
2480 oidcpy(&oid, &oe->idx.oid);
2481 } else if (skip_prefix(p, "inline ", &p)) {
2482 inline_data = 1;
2483 oe = NULL; /* not used with inline_data, but makes gcc happy */
2484 } else {
2485 if (parse_mapped_oid_hex(p, &oid, &p))
2486 die("Invalid dataref: %s", command_buf.buf);
2487 oe = find_object(&oid);
2488 if (*p++ != ' ')
2489 die("Missing space after SHA1: %s", command_buf.buf);
2492 /* <commit-ish> */
2493 s = lookup_branch(p);
2494 if (s) {
2495 if (is_null_oid(&s->oid))
2496 die("Can't add a note on empty branch.");
2497 oidcpy(&commit_oid, &s->oid);
2498 } else if (*p == ':') {
2499 uintmax_t commit_mark = parse_mark_ref_eol(p);
2500 struct object_entry *commit_oe = find_mark(marks, commit_mark);
2501 if (commit_oe->type != OBJ_COMMIT)
2502 die("Mark :%" PRIuMAX " not a commit", commit_mark);
2503 oidcpy(&commit_oid, &commit_oe->idx.oid);
2504 } else if (!repo_get_oid(the_repository, p, &commit_oid)) {
2505 unsigned long size;
2506 char *buf = read_object_with_reference(the_repository,
2507 &commit_oid,
2508 OBJ_COMMIT, &size,
2509 &commit_oid);
2510 if (!buf || size < the_hash_algo->hexsz + 6)
2511 die("Not a valid commit: %s", p);
2512 free(buf);
2513 } else
2514 die("Invalid ref name or SHA1 expression: %s", p);
2516 if (inline_data) {
2517 read_next_command();
2518 parse_and_store_blob(&last_blob, &oid, 0);
2519 } else if (oe) {
2520 if (oe->type != OBJ_BLOB)
2521 die("Not a blob (actually a %s): %s",
2522 type_name(oe->type), command_buf.buf);
2523 } else if (!is_null_oid(&oid)) {
2524 enum object_type type = oid_object_info(the_repository, &oid,
2525 NULL);
2526 if (type < 0)
2527 die("Blob not found: %s", command_buf.buf);
2528 if (type != OBJ_BLOB)
2529 die("Not a blob (actually a %s): %s",
2530 type_name(type), command_buf.buf);
2533 construct_path_with_fanout(oid_to_hex(&commit_oid), *old_fanout, path);
2534 if (tree_content_remove(&b->branch_tree, path, NULL, 0))
2535 b->num_notes--;
2537 if (is_null_oid(&oid))
2538 return; /* nothing to insert */
2540 b->num_notes++;
2541 new_fanout = convert_num_notes_to_fanout(b->num_notes);
2542 construct_path_with_fanout(oid_to_hex(&commit_oid), new_fanout, path);
2543 tree_content_set(&b->branch_tree, path, &oid, S_IFREG | 0644, NULL);
2546 static void file_change_deleteall(struct branch *b)
2548 release_tree_content_recursive(b->branch_tree.tree);
2549 oidclr(&b->branch_tree.versions[0].oid);
2550 oidclr(&b->branch_tree.versions[1].oid);
2551 load_tree(&b->branch_tree);
2552 b->num_notes = 0;
2555 static void parse_from_commit(struct branch *b, char *buf, unsigned long size)
2557 if (!buf || size < the_hash_algo->hexsz + 6)
2558 die("Not a valid commit: %s", oid_to_hex(&b->oid));
2559 if (memcmp("tree ", buf, 5)
2560 || get_oid_hex(buf + 5, &b->branch_tree.versions[1].oid))
2561 die("The commit %s is corrupt", oid_to_hex(&b->oid));
2562 oidcpy(&b->branch_tree.versions[0].oid,
2563 &b->branch_tree.versions[1].oid);
2566 static void parse_from_existing(struct branch *b)
2568 if (is_null_oid(&b->oid)) {
2569 oidclr(&b->branch_tree.versions[0].oid);
2570 oidclr(&b->branch_tree.versions[1].oid);
2571 } else {
2572 unsigned long size;
2573 char *buf;
2575 buf = read_object_with_reference(the_repository,
2576 &b->oid, OBJ_COMMIT, &size,
2577 &b->oid);
2578 parse_from_commit(b, buf, size);
2579 free(buf);
2583 static int parse_objectish(struct branch *b, const char *objectish)
2585 struct branch *s;
2586 struct object_id oid;
2588 oidcpy(&oid, &b->branch_tree.versions[1].oid);
2590 s = lookup_branch(objectish);
2591 if (b == s)
2592 die("Can't create a branch from itself: %s", b->name);
2593 else if (s) {
2594 struct object_id *t = &s->branch_tree.versions[1].oid;
2595 oidcpy(&b->oid, &s->oid);
2596 oidcpy(&b->branch_tree.versions[0].oid, t);
2597 oidcpy(&b->branch_tree.versions[1].oid, t);
2598 } else if (*objectish == ':') {
2599 uintmax_t idnum = parse_mark_ref_eol(objectish);
2600 struct object_entry *oe = find_mark(marks, idnum);
2601 if (oe->type != OBJ_COMMIT)
2602 die("Mark :%" PRIuMAX " not a commit", idnum);
2603 if (!oideq(&b->oid, &oe->idx.oid)) {
2604 oidcpy(&b->oid, &oe->idx.oid);
2605 if (oe->pack_id != MAX_PACK_ID) {
2606 unsigned long size;
2607 char *buf = gfi_unpack_entry(oe, &size);
2608 parse_from_commit(b, buf, size);
2609 free(buf);
2610 } else
2611 parse_from_existing(b);
2613 } else if (!repo_get_oid(the_repository, objectish, &b->oid)) {
2614 parse_from_existing(b);
2615 if (is_null_oid(&b->oid))
2616 b->delete = 1;
2618 else
2619 die("Invalid ref name or SHA1 expression: %s", objectish);
2621 if (b->branch_tree.tree && !oideq(&oid, &b->branch_tree.versions[1].oid)) {
2622 release_tree_content_recursive(b->branch_tree.tree);
2623 b->branch_tree.tree = NULL;
2626 read_next_command();
2627 return 1;
2630 static int parse_from(struct branch *b)
2632 const char *from;
2634 if (!skip_prefix(command_buf.buf, "from ", &from))
2635 return 0;
2637 return parse_objectish(b, from);
2640 static int parse_objectish_with_prefix(struct branch *b, const char *prefix)
2642 const char *base;
2644 if (!skip_prefix(command_buf.buf, prefix, &base))
2645 return 0;
2647 return parse_objectish(b, base);
2650 static struct hash_list *parse_merge(unsigned int *count)
2652 struct hash_list *list = NULL, **tail = &list, *n;
2653 const char *from;
2654 struct branch *s;
2656 *count = 0;
2657 while (skip_prefix(command_buf.buf, "merge ", &from)) {
2658 n = xmalloc(sizeof(*n));
2659 s = lookup_branch(from);
2660 if (s)
2661 oidcpy(&n->oid, &s->oid);
2662 else if (*from == ':') {
2663 uintmax_t idnum = parse_mark_ref_eol(from);
2664 struct object_entry *oe = find_mark(marks, idnum);
2665 if (oe->type != OBJ_COMMIT)
2666 die("Mark :%" PRIuMAX " not a commit", idnum);
2667 oidcpy(&n->oid, &oe->idx.oid);
2668 } else if (!repo_get_oid(the_repository, from, &n->oid)) {
2669 unsigned long size;
2670 char *buf = read_object_with_reference(the_repository,
2671 &n->oid,
2672 OBJ_COMMIT,
2673 &size, &n->oid);
2674 if (!buf || size < the_hash_algo->hexsz + 6)
2675 die("Not a valid commit: %s", from);
2676 free(buf);
2677 } else
2678 die("Invalid ref name or SHA1 expression: %s", from);
2680 n->next = NULL;
2681 *tail = n;
2682 tail = &n->next;
2684 (*count)++;
2685 read_next_command();
2687 return list;
2690 static void parse_new_commit(const char *arg)
2692 static struct strbuf msg = STRBUF_INIT;
2693 struct branch *b;
2694 char *author = NULL;
2695 char *committer = NULL;
2696 char *encoding = NULL;
2697 struct hash_list *merge_list = NULL;
2698 unsigned int merge_count;
2699 unsigned char prev_fanout, new_fanout;
2700 const char *v;
2702 b = lookup_branch(arg);
2703 if (!b)
2704 b = new_branch(arg);
2706 read_next_command();
2707 parse_mark();
2708 parse_original_identifier();
2709 if (skip_prefix(command_buf.buf, "author ", &v)) {
2710 author = parse_ident(v);
2711 read_next_command();
2713 if (skip_prefix(command_buf.buf, "committer ", &v)) {
2714 committer = parse_ident(v);
2715 read_next_command();
2717 if (!committer)
2718 die("Expected committer but didn't get one");
2719 if (skip_prefix(command_buf.buf, "encoding ", &v)) {
2720 encoding = xstrdup(v);
2721 read_next_command();
2723 parse_data(&msg, 0, NULL);
2724 read_next_command();
2725 parse_from(b);
2726 merge_list = parse_merge(&merge_count);
2728 /* ensure the branch is active/loaded */
2729 if (!b->branch_tree.tree || !max_active_branches) {
2730 unload_one_branch();
2731 load_branch(b);
2734 prev_fanout = convert_num_notes_to_fanout(b->num_notes);
2736 /* file_change* */
2737 while (command_buf.len > 0) {
2738 if (skip_prefix(command_buf.buf, "M ", &v))
2739 file_change_m(v, b);
2740 else if (skip_prefix(command_buf.buf, "D ", &v))
2741 file_change_d(v, b);
2742 else if (skip_prefix(command_buf.buf, "R ", &v))
2743 file_change_cr(v, b, 1);
2744 else if (skip_prefix(command_buf.buf, "C ", &v))
2745 file_change_cr(v, b, 0);
2746 else if (skip_prefix(command_buf.buf, "N ", &v))
2747 note_change_n(v, b, &prev_fanout);
2748 else if (!strcmp("deleteall", command_buf.buf))
2749 file_change_deleteall(b);
2750 else if (skip_prefix(command_buf.buf, "ls ", &v))
2751 parse_ls(v, b);
2752 else if (skip_prefix(command_buf.buf, "cat-blob ", &v))
2753 parse_cat_blob(v);
2754 else {
2755 unread_command_buf = 1;
2756 break;
2758 if (read_next_command() == EOF)
2759 break;
2762 new_fanout = convert_num_notes_to_fanout(b->num_notes);
2763 if (new_fanout != prev_fanout)
2764 b->num_notes = change_note_fanout(&b->branch_tree, new_fanout);
2766 /* build the tree and the commit */
2767 store_tree(&b->branch_tree);
2768 oidcpy(&b->branch_tree.versions[0].oid,
2769 &b->branch_tree.versions[1].oid);
2771 strbuf_reset(&new_data);
2772 strbuf_addf(&new_data, "tree %s\n",
2773 oid_to_hex(&b->branch_tree.versions[1].oid));
2774 if (!is_null_oid(&b->oid))
2775 strbuf_addf(&new_data, "parent %s\n",
2776 oid_to_hex(&b->oid));
2777 while (merge_list) {
2778 struct hash_list *next = merge_list->next;
2779 strbuf_addf(&new_data, "parent %s\n",
2780 oid_to_hex(&merge_list->oid));
2781 free(merge_list);
2782 merge_list = next;
2784 strbuf_addf(&new_data,
2785 "author %s\n"
2786 "committer %s\n",
2787 author ? author : committer, committer);
2788 if (encoding)
2789 strbuf_addf(&new_data,
2790 "encoding %s\n",
2791 encoding);
2792 strbuf_addch(&new_data, '\n');
2793 strbuf_addbuf(&new_data, &msg);
2794 free(author);
2795 free(committer);
2796 free(encoding);
2798 if (!store_object(OBJ_COMMIT, &new_data, NULL, &b->oid, next_mark))
2799 b->pack_id = pack_id;
2800 b->last_commit = object_count_by_type[OBJ_COMMIT];
2803 static void parse_new_tag(const char *arg)
2805 static struct strbuf msg = STRBUF_INIT;
2806 const char *from;
2807 char *tagger;
2808 struct branch *s;
2809 struct tag *t;
2810 uintmax_t from_mark = 0;
2811 struct object_id oid;
2812 enum object_type type;
2813 const char *v;
2815 t = mem_pool_calloc(&fi_mem_pool, 1, sizeof(struct tag));
2816 t->name = mem_pool_strdup(&fi_mem_pool, arg);
2817 if (last_tag)
2818 last_tag->next_tag = t;
2819 else
2820 first_tag = t;
2821 last_tag = t;
2822 read_next_command();
2823 parse_mark();
2825 /* from ... */
2826 if (!skip_prefix(command_buf.buf, "from ", &from))
2827 die("Expected from command, got %s", command_buf.buf);
2828 s = lookup_branch(from);
2829 if (s) {
2830 if (is_null_oid(&s->oid))
2831 die("Can't tag an empty branch.");
2832 oidcpy(&oid, &s->oid);
2833 type = OBJ_COMMIT;
2834 } else if (*from == ':') {
2835 struct object_entry *oe;
2836 from_mark = parse_mark_ref_eol(from);
2837 oe = find_mark(marks, from_mark);
2838 type = oe->type;
2839 oidcpy(&oid, &oe->idx.oid);
2840 } else if (!repo_get_oid(the_repository, from, &oid)) {
2841 struct object_entry *oe = find_object(&oid);
2842 if (!oe) {
2843 type = oid_object_info(the_repository, &oid, NULL);
2844 if (type < 0)
2845 die("Not a valid object: %s", from);
2846 } else
2847 type = oe->type;
2848 } else
2849 die("Invalid ref name or SHA1 expression: %s", from);
2850 read_next_command();
2852 /* original-oid ... */
2853 parse_original_identifier();
2855 /* tagger ... */
2856 if (skip_prefix(command_buf.buf, "tagger ", &v)) {
2857 tagger = parse_ident(v);
2858 read_next_command();
2859 } else
2860 tagger = NULL;
2862 /* tag payload/message */
2863 parse_data(&msg, 0, NULL);
2865 /* build the tag object */
2866 strbuf_reset(&new_data);
2868 strbuf_addf(&new_data,
2869 "object %s\n"
2870 "type %s\n"
2871 "tag %s\n",
2872 oid_to_hex(&oid), type_name(type), t->name);
2873 if (tagger)
2874 strbuf_addf(&new_data,
2875 "tagger %s\n", tagger);
2876 strbuf_addch(&new_data, '\n');
2877 strbuf_addbuf(&new_data, &msg);
2878 free(tagger);
2880 if (store_object(OBJ_TAG, &new_data, NULL, &t->oid, next_mark))
2881 t->pack_id = MAX_PACK_ID;
2882 else
2883 t->pack_id = pack_id;
2886 static void parse_reset_branch(const char *arg)
2888 struct branch *b;
2889 const char *tag_name;
2891 b = lookup_branch(arg);
2892 if (b) {
2893 oidclr(&b->oid);
2894 oidclr(&b->branch_tree.versions[0].oid);
2895 oidclr(&b->branch_tree.versions[1].oid);
2896 if (b->branch_tree.tree) {
2897 release_tree_content_recursive(b->branch_tree.tree);
2898 b->branch_tree.tree = NULL;
2901 else
2902 b = new_branch(arg);
2903 read_next_command();
2904 parse_from(b);
2905 if (b->delete && skip_prefix(b->name, "refs/tags/", &tag_name)) {
2907 * Elsewhere, we call dump_branches() before dump_tags(),
2908 * and dump_branches() will handle ref deletions first, so
2909 * in order to make sure the deletion actually takes effect,
2910 * we need to remove the tag from our list of tags to update.
2912 * NEEDSWORK: replace list of tags with hashmap for faster
2913 * deletion?
2915 struct tag *t, *prev = NULL;
2916 for (t = first_tag; t; t = t->next_tag) {
2917 if (!strcmp(t->name, tag_name))
2918 break;
2919 prev = t;
2921 if (t) {
2922 if (prev)
2923 prev->next_tag = t->next_tag;
2924 else
2925 first_tag = t->next_tag;
2926 if (!t->next_tag)
2927 last_tag = prev;
2928 /* There is no mem_pool_free(t) function to call. */
2931 if (command_buf.len > 0)
2932 unread_command_buf = 1;
2935 static void cat_blob_write(const char *buf, unsigned long size)
2937 if (write_in_full(cat_blob_fd, buf, size) < 0)
2938 die_errno("Write to frontend failed");
2941 static void cat_blob(struct object_entry *oe, struct object_id *oid)
2943 struct strbuf line = STRBUF_INIT;
2944 unsigned long size;
2945 enum object_type type = 0;
2946 char *buf;
2948 if (!oe || oe->pack_id == MAX_PACK_ID) {
2949 buf = repo_read_object_file(the_repository, oid, &type, &size);
2950 } else {
2951 type = oe->type;
2952 buf = gfi_unpack_entry(oe, &size);
2956 * Output based on batch_one_object() from cat-file.c.
2958 if (type <= 0) {
2959 strbuf_reset(&line);
2960 strbuf_addf(&line, "%s missing\n", oid_to_hex(oid));
2961 cat_blob_write(line.buf, line.len);
2962 strbuf_release(&line);
2963 free(buf);
2964 return;
2966 if (!buf)
2967 die("Can't read object %s", oid_to_hex(oid));
2968 if (type != OBJ_BLOB)
2969 die("Object %s is a %s but a blob was expected.",
2970 oid_to_hex(oid), type_name(type));
2971 strbuf_reset(&line);
2972 strbuf_addf(&line, "%s %s %"PRIuMAX"\n", oid_to_hex(oid),
2973 type_name(type), (uintmax_t)size);
2974 cat_blob_write(line.buf, line.len);
2975 strbuf_release(&line);
2976 cat_blob_write(buf, size);
2977 cat_blob_write("\n", 1);
2978 if (oe && oe->pack_id == pack_id) {
2979 last_blob.offset = oe->idx.offset;
2980 strbuf_attach(&last_blob.data, buf, size, size);
2981 last_blob.depth = oe->depth;
2982 } else
2983 free(buf);
2986 static void parse_get_mark(const char *p)
2988 struct object_entry *oe;
2989 char output[GIT_MAX_HEXSZ + 2];
2991 /* get-mark SP <object> LF */
2992 if (*p != ':')
2993 die("Not a mark: %s", p);
2995 oe = find_mark(marks, parse_mark_ref_eol(p));
2996 if (!oe)
2997 die("Unknown mark: %s", command_buf.buf);
2999 xsnprintf(output, sizeof(output), "%s\n", oid_to_hex(&oe->idx.oid));
3000 cat_blob_write(output, the_hash_algo->hexsz + 1);
3003 static void parse_cat_blob(const char *p)
3005 struct object_entry *oe;
3006 struct object_id oid;
3008 /* cat-blob SP <object> LF */
3009 if (*p == ':') {
3010 oe = find_mark(marks, parse_mark_ref_eol(p));
3011 if (!oe)
3012 die("Unknown mark: %s", command_buf.buf);
3013 oidcpy(&oid, &oe->idx.oid);
3014 } else {
3015 if (parse_mapped_oid_hex(p, &oid, &p))
3016 die("Invalid dataref: %s", command_buf.buf);
3017 if (*p)
3018 die("Garbage after SHA1: %s", command_buf.buf);
3019 oe = find_object(&oid);
3022 cat_blob(oe, &oid);
3025 static struct object_entry *dereference(struct object_entry *oe,
3026 struct object_id *oid)
3028 unsigned long size;
3029 char *buf = NULL;
3030 const unsigned hexsz = the_hash_algo->hexsz;
3032 if (!oe) {
3033 enum object_type type = oid_object_info(the_repository, oid,
3034 NULL);
3035 if (type < 0)
3036 die("object not found: %s", oid_to_hex(oid));
3037 /* cache it! */
3038 oe = insert_object(oid);
3039 oe->type = type;
3040 oe->pack_id = MAX_PACK_ID;
3041 oe->idx.offset = 1;
3043 switch (oe->type) {
3044 case OBJ_TREE: /* easy case. */
3045 return oe;
3046 case OBJ_COMMIT:
3047 case OBJ_TAG:
3048 break;
3049 default:
3050 die("Not a tree-ish: %s", command_buf.buf);
3053 if (oe->pack_id != MAX_PACK_ID) { /* in a pack being written */
3054 buf = gfi_unpack_entry(oe, &size);
3055 } else {
3056 enum object_type unused;
3057 buf = repo_read_object_file(the_repository, oid, &unused,
3058 &size);
3060 if (!buf)
3061 die("Can't load object %s", oid_to_hex(oid));
3063 /* Peel one layer. */
3064 switch (oe->type) {
3065 case OBJ_TAG:
3066 if (size < hexsz + strlen("object ") ||
3067 get_oid_hex(buf + strlen("object "), oid))
3068 die("Invalid SHA1 in tag: %s", command_buf.buf);
3069 break;
3070 case OBJ_COMMIT:
3071 if (size < hexsz + strlen("tree ") ||
3072 get_oid_hex(buf + strlen("tree "), oid))
3073 die("Invalid SHA1 in commit: %s", command_buf.buf);
3076 free(buf);
3077 return find_object(oid);
3080 static void insert_mapped_mark(uintmax_t mark, void *object, void *cbp)
3082 struct object_id *fromoid = object;
3083 struct object_id *tooid = find_mark(cbp, mark);
3084 int ret;
3085 khiter_t it;
3087 it = kh_put_oid_map(sub_oid_map, *fromoid, &ret);
3088 /* We've already seen this object. */
3089 if (ret == 0)
3090 return;
3091 kh_value(sub_oid_map, it) = tooid;
3094 static void build_mark_map_one(struct mark_set *from, struct mark_set *to)
3096 for_each_mark(from, 0, insert_mapped_mark, to);
3099 static void build_mark_map(struct string_list *from, struct string_list *to)
3101 struct string_list_item *fromp, *top;
3103 sub_oid_map = kh_init_oid_map();
3105 for_each_string_list_item(fromp, from) {
3106 top = string_list_lookup(to, fromp->string);
3107 if (!fromp->util) {
3108 die(_("Missing from marks for submodule '%s'"), fromp->string);
3109 } else if (!top || !top->util) {
3110 die(_("Missing to marks for submodule '%s'"), fromp->string);
3112 build_mark_map_one(fromp->util, top->util);
3116 static struct object_entry *parse_treeish_dataref(const char **p)
3118 struct object_id oid;
3119 struct object_entry *e;
3121 if (**p == ':') { /* <mark> */
3122 e = find_mark(marks, parse_mark_ref_space(p));
3123 if (!e)
3124 die("Unknown mark: %s", command_buf.buf);
3125 oidcpy(&oid, &e->idx.oid);
3126 } else { /* <sha1> */
3127 if (parse_mapped_oid_hex(*p, &oid, p))
3128 die("Invalid dataref: %s", command_buf.buf);
3129 e = find_object(&oid);
3130 if (*(*p)++ != ' ')
3131 die("Missing space after tree-ish: %s", command_buf.buf);
3134 while (!e || e->type != OBJ_TREE)
3135 e = dereference(e, &oid);
3136 return e;
3139 static void print_ls(int mode, const unsigned char *hash, const char *path)
3141 static struct strbuf line = STRBUF_INIT;
3143 /* See show_tree(). */
3144 const char *type =
3145 S_ISGITLINK(mode) ? commit_type :
3146 S_ISDIR(mode) ? tree_type :
3147 blob_type;
3149 if (!mode) {
3150 /* missing SP path LF */
3151 strbuf_reset(&line);
3152 strbuf_addstr(&line, "missing ");
3153 quote_c_style(path, &line, NULL, 0);
3154 strbuf_addch(&line, '\n');
3155 } else {
3156 /* mode SP type SP object_name TAB path LF */
3157 strbuf_reset(&line);
3158 strbuf_addf(&line, "%06o %s %s\t",
3159 mode & ~NO_DELTA, type, hash_to_hex(hash));
3160 quote_c_style(path, &line, NULL, 0);
3161 strbuf_addch(&line, '\n');
3163 cat_blob_write(line.buf, line.len);
3166 static void parse_ls(const char *p, struct branch *b)
3168 static struct strbuf path = STRBUF_INIT;
3169 struct tree_entry *root = NULL;
3170 struct tree_entry leaf = {NULL};
3172 /* ls SP (<tree-ish> SP)? <path> */
3173 if (*p == '"') {
3174 if (!b)
3175 die("Not in a commit: %s", command_buf.buf);
3176 root = &b->branch_tree;
3177 } else {
3178 struct object_entry *e = parse_treeish_dataref(&p);
3179 root = new_tree_entry();
3180 oidcpy(&root->versions[1].oid, &e->idx.oid);
3181 if (!is_null_oid(&root->versions[1].oid))
3182 root->versions[1].mode = S_IFDIR;
3183 load_tree(root);
3185 strbuf_reset(&path);
3186 parse_path_eol(&path, p, "path");
3187 tree_content_get(root, path.buf, &leaf, 1);
3189 * A directory in preparation would have a sha1 of zero
3190 * until it is saved. Save, for simplicity.
3192 if (S_ISDIR(leaf.versions[1].mode))
3193 store_tree(&leaf);
3195 print_ls(leaf.versions[1].mode, leaf.versions[1].oid.hash, path.buf);
3196 if (leaf.tree)
3197 release_tree_content_recursive(leaf.tree);
3198 if (!b || root != &b->branch_tree)
3199 release_tree_entry(root);
3202 static void checkpoint(void)
3204 checkpoint_requested = 0;
3205 if (object_count) {
3206 cycle_packfile();
3208 dump_branches();
3209 dump_tags();
3210 dump_marks();
3213 static void parse_checkpoint(void)
3215 checkpoint_requested = 1;
3216 skip_optional_lf();
3219 static void parse_progress(void)
3221 fwrite(command_buf.buf, 1, command_buf.len, stdout);
3222 fputc('\n', stdout);
3223 fflush(stdout);
3224 skip_optional_lf();
3227 static void parse_alias(void)
3229 struct object_entry *e;
3230 struct branch b;
3232 skip_optional_lf();
3233 read_next_command();
3235 /* mark ... */
3236 parse_mark();
3237 if (!next_mark)
3238 die(_("Expected 'mark' command, got %s"), command_buf.buf);
3240 /* to ... */
3241 memset(&b, 0, sizeof(b));
3242 if (!parse_objectish_with_prefix(&b, "to "))
3243 die(_("Expected 'to' command, got %s"), command_buf.buf);
3244 e = find_object(&b.oid);
3245 assert(e);
3246 insert_mark(&marks, next_mark, e);
3249 static char* make_fast_import_path(const char *path)
3251 if (!relative_marks_paths || is_absolute_path(path))
3252 return prefix_filename(global_prefix, path);
3253 return git_pathdup("info/fast-import/%s", path);
3256 static void option_import_marks(const char *marks,
3257 int from_stream, int ignore_missing)
3259 if (import_marks_file) {
3260 if (from_stream)
3261 die("Only one import-marks command allowed per stream");
3263 /* read previous mark file */
3264 if(!import_marks_file_from_stream)
3265 read_marks();
3268 import_marks_file = make_fast_import_path(marks);
3269 import_marks_file_from_stream = from_stream;
3270 import_marks_file_ignore_missing = ignore_missing;
3273 static void option_date_format(const char *fmt)
3275 if (!strcmp(fmt, "raw"))
3276 whenspec = WHENSPEC_RAW;
3277 else if (!strcmp(fmt, "raw-permissive"))
3278 whenspec = WHENSPEC_RAW_PERMISSIVE;
3279 else if (!strcmp(fmt, "rfc2822"))
3280 whenspec = WHENSPEC_RFC2822;
3281 else if (!strcmp(fmt, "now"))
3282 whenspec = WHENSPEC_NOW;
3283 else
3284 die("unknown --date-format argument %s", fmt);
3287 static unsigned long ulong_arg(const char *option, const char *arg)
3289 char *endptr;
3290 unsigned long rv = strtoul(arg, &endptr, 0);
3291 if (strchr(arg, '-') || endptr == arg || *endptr)
3292 die("%s: argument must be a non-negative integer", option);
3293 return rv;
3296 static void option_depth(const char *depth)
3298 max_depth = ulong_arg("--depth", depth);
3299 if (max_depth > MAX_DEPTH)
3300 die("--depth cannot exceed %u", MAX_DEPTH);
3303 static void option_active_branches(const char *branches)
3305 max_active_branches = ulong_arg("--active-branches", branches);
3308 static void option_export_marks(const char *marks)
3310 export_marks_file = make_fast_import_path(marks);
3313 static void option_cat_blob_fd(const char *fd)
3315 unsigned long n = ulong_arg("--cat-blob-fd", fd);
3316 if (n > (unsigned long) INT_MAX)
3317 die("--cat-blob-fd cannot exceed %d", INT_MAX);
3318 cat_blob_fd = (int) n;
3321 static void option_export_pack_edges(const char *edges)
3323 char *fn = prefix_filename(global_prefix, edges);
3324 if (pack_edges)
3325 fclose(pack_edges);
3326 pack_edges = xfopen(fn, "a");
3327 free(fn);
3330 static void option_rewrite_submodules(const char *arg, struct string_list *list)
3332 struct mark_set *ms;
3333 FILE *fp;
3334 char *s = xstrdup(arg);
3335 char *f = strchr(s, ':');
3336 if (!f)
3337 die(_("Expected format name:filename for submodule rewrite option"));
3338 *f = '\0';
3339 f++;
3340 CALLOC_ARRAY(ms, 1);
3342 f = prefix_filename(global_prefix, f);
3343 fp = fopen(f, "r");
3344 if (!fp)
3345 die_errno("cannot read '%s'", f);
3346 read_mark_file(&ms, fp, insert_oid_entry);
3347 fclose(fp);
3348 free(f);
3350 string_list_insert(list, s)->util = ms;
3353 static int parse_one_option(const char *option)
3355 if (skip_prefix(option, "max-pack-size=", &option)) {
3356 unsigned long v;
3357 if (!git_parse_ulong(option, &v))
3358 return 0;
3359 if (v < 8192) {
3360 warning("max-pack-size is now in bytes, assuming --max-pack-size=%lum", v);
3361 v *= 1024 * 1024;
3362 } else if (v < 1024 * 1024) {
3363 warning("minimum max-pack-size is 1 MiB");
3364 v = 1024 * 1024;
3366 max_packsize = v;
3367 } else if (skip_prefix(option, "big-file-threshold=", &option)) {
3368 unsigned long v;
3369 if (!git_parse_ulong(option, &v))
3370 return 0;
3371 big_file_threshold = v;
3372 } else if (skip_prefix(option, "depth=", &option)) {
3373 option_depth(option);
3374 } else if (skip_prefix(option, "active-branches=", &option)) {
3375 option_active_branches(option);
3376 } else if (skip_prefix(option, "export-pack-edges=", &option)) {
3377 option_export_pack_edges(option);
3378 } else if (!strcmp(option, "quiet")) {
3379 show_stats = 0;
3380 } else if (!strcmp(option, "stats")) {
3381 show_stats = 1;
3382 } else if (!strcmp(option, "allow-unsafe-features")) {
3383 ; /* already handled during early option parsing */
3384 } else {
3385 return 0;
3388 return 1;
3391 static void check_unsafe_feature(const char *feature, int from_stream)
3393 if (from_stream && !allow_unsafe_features)
3394 die(_("feature '%s' forbidden in input without --allow-unsafe-features"),
3395 feature);
3398 static int parse_one_feature(const char *feature, int from_stream)
3400 const char *arg;
3402 if (skip_prefix(feature, "date-format=", &arg)) {
3403 option_date_format(arg);
3404 } else if (skip_prefix(feature, "import-marks=", &arg)) {
3405 check_unsafe_feature("import-marks", from_stream);
3406 option_import_marks(arg, from_stream, 0);
3407 } else if (skip_prefix(feature, "import-marks-if-exists=", &arg)) {
3408 check_unsafe_feature("import-marks-if-exists", from_stream);
3409 option_import_marks(arg, from_stream, 1);
3410 } else if (skip_prefix(feature, "export-marks=", &arg)) {
3411 check_unsafe_feature(feature, from_stream);
3412 option_export_marks(arg);
3413 } else if (!strcmp(feature, "alias")) {
3414 ; /* Don't die - this feature is supported */
3415 } else if (skip_prefix(feature, "rewrite-submodules-to=", &arg)) {
3416 option_rewrite_submodules(arg, &sub_marks_to);
3417 } else if (skip_prefix(feature, "rewrite-submodules-from=", &arg)) {
3418 option_rewrite_submodules(arg, &sub_marks_from);
3419 } else if (!strcmp(feature, "get-mark")) {
3420 ; /* Don't die - this feature is supported */
3421 } else if (!strcmp(feature, "cat-blob")) {
3422 ; /* Don't die - this feature is supported */
3423 } else if (!strcmp(feature, "relative-marks")) {
3424 relative_marks_paths = 1;
3425 } else if (!strcmp(feature, "no-relative-marks")) {
3426 relative_marks_paths = 0;
3427 } else if (!strcmp(feature, "done")) {
3428 require_explicit_termination = 1;
3429 } else if (!strcmp(feature, "force")) {
3430 force_update = 1;
3431 } else if (!strcmp(feature, "notes") || !strcmp(feature, "ls")) {
3432 ; /* do nothing; we have the feature */
3433 } else {
3434 return 0;
3437 return 1;
3440 static void parse_feature(const char *feature)
3442 if (seen_data_command)
3443 die("Got feature command '%s' after data command", feature);
3445 if (parse_one_feature(feature, 1))
3446 return;
3448 die("This version of fast-import does not support feature %s.", feature);
3451 static void parse_option(const char *option)
3453 if (seen_data_command)
3454 die("Got option command '%s' after data command", option);
3456 if (parse_one_option(option))
3457 return;
3459 die("This version of fast-import does not support option: %s", option);
3462 static void git_pack_config(void)
3464 int indexversion_value;
3465 int limit;
3466 unsigned long packsizelimit_value;
3468 if (!git_config_get_ulong("pack.depth", &max_depth)) {
3469 if (max_depth > MAX_DEPTH)
3470 max_depth = MAX_DEPTH;
3472 if (!git_config_get_int("pack.indexversion", &indexversion_value)) {
3473 pack_idx_opts.version = indexversion_value;
3474 if (pack_idx_opts.version > 2)
3475 git_die_config("pack.indexversion",
3476 "bad pack.indexVersion=%"PRIu32, pack_idx_opts.version);
3478 if (!git_config_get_ulong("pack.packsizelimit", &packsizelimit_value))
3479 max_packsize = packsizelimit_value;
3481 if (!git_config_get_int("fastimport.unpacklimit", &limit))
3482 unpack_limit = limit;
3483 else if (!git_config_get_int("transfer.unpacklimit", &limit))
3484 unpack_limit = limit;
3486 git_config(git_default_config, NULL);
3489 static const char fast_import_usage[] =
3490 "git fast-import [--date-format=<f>] [--max-pack-size=<n>] [--big-file-threshold=<n>] [--depth=<n>] [--active-branches=<n>] [--export-marks=<marks.file>]";
3492 static void parse_argv(void)
3494 unsigned int i;
3496 for (i = 1; i < global_argc; i++) {
3497 const char *a = global_argv[i];
3499 if (*a != '-' || !strcmp(a, "--"))
3500 break;
3502 if (!skip_prefix(a, "--", &a))
3503 die("unknown option %s", a);
3505 if (parse_one_option(a))
3506 continue;
3508 if (parse_one_feature(a, 0))
3509 continue;
3511 if (skip_prefix(a, "cat-blob-fd=", &a)) {
3512 option_cat_blob_fd(a);
3513 continue;
3516 die("unknown option --%s", a);
3518 if (i != global_argc)
3519 usage(fast_import_usage);
3521 seen_data_command = 1;
3522 if (import_marks_file)
3523 read_marks();
3524 build_mark_map(&sub_marks_from, &sub_marks_to);
3527 int cmd_fast_import(int argc, const char **argv, const char *prefix)
3529 unsigned int i;
3531 if (argc == 2 && !strcmp(argv[1], "-h"))
3532 usage(fast_import_usage);
3534 reset_pack_idx_option(&pack_idx_opts);
3535 git_pack_config();
3537 alloc_objects(object_entry_alloc);
3538 strbuf_init(&command_buf, 0);
3539 CALLOC_ARRAY(atom_table, atom_table_sz);
3540 CALLOC_ARRAY(branch_table, branch_table_sz);
3541 CALLOC_ARRAY(avail_tree_table, avail_tree_table_sz);
3542 marks = mem_pool_calloc(&fi_mem_pool, 1, sizeof(struct mark_set));
3544 hashmap_init(&object_table, object_entry_hashcmp, NULL, 0);
3547 * We don't parse most options until after we've seen the set of
3548 * "feature" lines at the start of the stream (which allows the command
3549 * line to override stream data). But we must do an early parse of any
3550 * command-line options that impact how we interpret the feature lines.
3552 for (i = 1; i < argc; i++) {
3553 const char *arg = argv[i];
3554 if (*arg != '-' || !strcmp(arg, "--"))
3555 break;
3556 if (!strcmp(arg, "--allow-unsafe-features"))
3557 allow_unsafe_features = 1;
3560 global_argc = argc;
3561 global_argv = argv;
3562 global_prefix = prefix;
3564 rc_free = mem_pool_alloc(&fi_mem_pool, cmd_save * sizeof(*rc_free));
3565 for (i = 0; i < (cmd_save - 1); i++)
3566 rc_free[i].next = &rc_free[i + 1];
3567 rc_free[cmd_save - 1].next = NULL;
3569 start_packfile();
3570 set_die_routine(die_nicely);
3571 set_checkpoint_signal();
3572 while (read_next_command() != EOF) {
3573 const char *v;
3574 if (!strcmp("blob", command_buf.buf))
3575 parse_new_blob();
3576 else if (skip_prefix(command_buf.buf, "commit ", &v))
3577 parse_new_commit(v);
3578 else if (skip_prefix(command_buf.buf, "tag ", &v))
3579 parse_new_tag(v);
3580 else if (skip_prefix(command_buf.buf, "reset ", &v))
3581 parse_reset_branch(v);
3582 else if (skip_prefix(command_buf.buf, "ls ", &v))
3583 parse_ls(v, NULL);
3584 else if (skip_prefix(command_buf.buf, "cat-blob ", &v))
3585 parse_cat_blob(v);
3586 else if (skip_prefix(command_buf.buf, "get-mark ", &v))
3587 parse_get_mark(v);
3588 else if (!strcmp("checkpoint", command_buf.buf))
3589 parse_checkpoint();
3590 else if (!strcmp("done", command_buf.buf))
3591 break;
3592 else if (!strcmp("alias", command_buf.buf))
3593 parse_alias();
3594 else if (starts_with(command_buf.buf, "progress "))
3595 parse_progress();
3596 else if (skip_prefix(command_buf.buf, "feature ", &v))
3597 parse_feature(v);
3598 else if (skip_prefix(command_buf.buf, "option git ", &v))
3599 parse_option(v);
3600 else if (starts_with(command_buf.buf, "option "))
3601 /* ignore non-git options*/;
3602 else
3603 die("Unsupported command: %s", command_buf.buf);
3605 if (checkpoint_requested)
3606 checkpoint();
3609 /* argv hasn't been parsed yet, do so */
3610 if (!seen_data_command)
3611 parse_argv();
3613 if (require_explicit_termination && feof(stdin))
3614 die("stream ends early");
3616 end_packfile();
3618 dump_branches();
3619 dump_tags();
3620 unkeep_all_packs();
3621 dump_marks();
3623 if (pack_edges)
3624 fclose(pack_edges);
3626 if (show_stats) {
3627 uintmax_t total_count = 0, duplicate_count = 0;
3628 for (i = 0; i < ARRAY_SIZE(object_count_by_type); i++)
3629 total_count += object_count_by_type[i];
3630 for (i = 0; i < ARRAY_SIZE(duplicate_count_by_type); i++)
3631 duplicate_count += duplicate_count_by_type[i];
3633 fprintf(stderr, "%s statistics:\n", argv[0]);
3634 fprintf(stderr, "---------------------------------------------------------------------\n");
3635 fprintf(stderr, "Alloc'd objects: %10" PRIuMAX "\n", alloc_count);
3636 fprintf(stderr, "Total objects: %10" PRIuMAX " (%10" PRIuMAX " duplicates )\n", total_count, duplicate_count);
3637 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]);
3638 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]);
3639 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]);
3640 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]);
3641 fprintf(stderr, "Total branches: %10lu (%10lu loads )\n", branch_count, branch_load_count);
3642 fprintf(stderr, " marks: %10" PRIuMAX " (%10" PRIuMAX " unique )\n", (((uintmax_t)1) << marks->shift) * 1024, marks_set_count);
3643 fprintf(stderr, " atoms: %10u\n", atom_cnt);
3644 fprintf(stderr, "Memory total: %10" PRIuMAX " KiB\n", (tree_entry_allocd + fi_mem_pool.pool_alloc + alloc_count*sizeof(struct object_entry))/1024);
3645 fprintf(stderr, " pools: %10lu KiB\n", (unsigned long)((tree_entry_allocd + fi_mem_pool.pool_alloc) /1024));
3646 fprintf(stderr, " objects: %10" PRIuMAX " KiB\n", (alloc_count*sizeof(struct object_entry))/1024);
3647 fprintf(stderr, "---------------------------------------------------------------------\n");
3648 pack_report();
3649 fprintf(stderr, "---------------------------------------------------------------------\n");
3650 fprintf(stderr, "\n");
3653 return failure ? 1 : 0;