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