]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/fast-export.c
object_array: add and use `object_array_pop()`
[thirdparty/git.git] / builtin / fast-export.c
CommitLineData
f2dc849e
JS
1/*
2 * "git fast-export" builtin command
3 *
4 * Copyright (C) 2007 Johannes E. Schindelin
5 */
6#include "builtin.h"
7#include "cache.h"
b2141fc1 8#include "config.h"
fb58c8d5 9#include "refs.h"
f2dc849e
JS
10#include "commit.h"
11#include "object.h"
12#include "tag.h"
13#include "diff.h"
14#include "diffcore.h"
15#include "log-tree.h"
16#include "revision.h"
17#include "decorate.h"
c455c87c 18#include "string-list.h"
f2dc849e
JS
19#include "utf8.h"
20#include "parse-options.h"
6280dfdc 21#include "quote.h"
03e9010c 22#include "remote.h"
a8722750 23#include "blob.h"
f2dc849e
JS
24
25static const char *fast_export_usage[] = {
3b787b96 26 N_("git fast-export [rev-list-opts]"),
f2dc849e
JS
27 NULL
28};
29
30static int progress;
cd16c59b 31static enum { ABORT, VERBATIM, WARN, WARN_STRIP, STRIP } signed_tag_mode = ABORT;
d7a10c31 32static enum { ERROR, DROP, REWRITE } tag_of_filtered_mode = ERROR;
4e46a8d6 33static int fake_missing_tagger;
82670a5c 34static int use_done_feature;
79559f27 35static int no_data;
7f40ab09 36static int full_tree;
1d844ee7 37static struct string_list extra_refs = STRING_LIST_INIT_NODUP;
03e9010c
FC
38static struct refspec *refspecs;
39static int refspecs_nr;
a8722750 40static int anonymize;
f2dc849e
JS
41
42static int parse_opt_signed_tag_mode(const struct option *opt,
43 const char *arg, int unset)
44{
45 if (unset || !strcmp(arg, "abort"))
46 signed_tag_mode = ABORT;
ee4bc371
JS
47 else if (!strcmp(arg, "verbatim") || !strcmp(arg, "ignore"))
48 signed_tag_mode = VERBATIM;
f2dc849e
JS
49 else if (!strcmp(arg, "warn"))
50 signed_tag_mode = WARN;
cd16c59b
JK
51 else if (!strcmp(arg, "warn-strip"))
52 signed_tag_mode = WARN_STRIP;
f2dc849e
JS
53 else if (!strcmp(arg, "strip"))
54 signed_tag_mode = STRIP;
55 else
04a74b6c 56 return error("Unknown signed-tags mode: %s", arg);
f2dc849e
JS
57 return 0;
58}
59
2d8ad469
EN
60static int parse_opt_tag_of_filtered_mode(const struct option *opt,
61 const char *arg, int unset)
62{
63 if (unset || !strcmp(arg, "abort"))
d7a10c31 64 tag_of_filtered_mode = ERROR;
2d8ad469
EN
65 else if (!strcmp(arg, "drop"))
66 tag_of_filtered_mode = DROP;
67 else if (!strcmp(arg, "rewrite"))
68 tag_of_filtered_mode = REWRITE;
69 else
70 return error("Unknown tag-of-filtered mode: %s", arg);
71 return 0;
72}
73
f2dc849e
JS
74static struct decoration idnums;
75static uint32_t last_idnum;
76
77static int has_unshown_parent(struct commit *commit)
78{
79 struct commit_list *parent;
80
81 for (parent = commit->parents; parent; parent = parent->next)
82 if (!(parent->item->object.flags & SHOWN) &&
83 !(parent->item->object.flags & UNINTERESTING))
84 return 1;
85 return 0;
86}
87
a8722750
JK
88struct anonymized_entry {
89 struct hashmap_entry hash;
90 const char *orig;
91 size_t orig_len;
92 const char *anon;
93 size_t anon_len;
94};
95
7663cdc8
SB
96static int anonymized_entry_cmp(const void *unused_cmp_data,
97 const void *va, const void *vb,
98 const void *unused_keydata)
a8722750
JK
99{
100 const struct anonymized_entry *a = va, *b = vb;
101 return a->orig_len != b->orig_len ||
102 memcmp(a->orig, b->orig, a->orig_len);
103}
104
105/*
106 * Basically keep a cache of X->Y so that we can repeatedly replace
107 * the same anonymized string with another. The actual generation
108 * is farmed out to the generate function.
109 */
110static const void *anonymize_mem(struct hashmap *map,
111 void *(*generate)(const void *, size_t *),
112 const void *orig, size_t *len)
113{
114 struct anonymized_entry key, *ret;
115
116 if (!map->cmpfn)
7663cdc8 117 hashmap_init(map, anonymized_entry_cmp, NULL, 0);
a8722750
JK
118
119 hashmap_entry_init(&key, memhash(orig, *len));
120 key.orig = orig;
121 key.orig_len = *len;
122 ret = hashmap_get(map, &key, NULL);
123
124 if (!ret) {
125 ret = xmalloc(sizeof(*ret));
126 hashmap_entry_init(&ret->hash, key.hash.hash);
127 ret->orig = xstrdup(orig);
128 ret->orig_len = *len;
129 ret->anon = generate(orig, len);
130 ret->anon_len = *len;
131 hashmap_put(map, ret);
132 }
133
134 *len = ret->anon_len;
135 return ret->anon;
136}
137
138/*
139 * We anonymize each component of a path individually,
140 * so that paths a/b and a/c will share a common root.
141 * The paths are cached via anonymize_mem so that repeated
142 * lookups for "a" will yield the same value.
143 */
144static void anonymize_path(struct strbuf *out, const char *path,
145 struct hashmap *map,
146 void *(*generate)(const void *, size_t *))
147{
148 while (*path) {
149 const char *end_of_component = strchrnul(path, '/');
150 size_t len = end_of_component - path;
151 const char *c = anonymize_mem(map, generate, path, &len);
152 strbuf_add(out, c, len);
153 path = end_of_component;
154 if (*path)
155 strbuf_addch(out, *path++);
156 }
157}
158
f2dc849e 159/* Since intptr_t is C99, we do not use it here */
df6a7ff7 160static inline uint32_t *mark_to_ptr(uint32_t mark)
f2dc849e 161{
df6a7ff7
PB
162 return ((uint32_t *)NULL) + mark;
163}
164
165static inline uint32_t ptr_to_mark(void * mark)
166{
167 return (uint32_t *)mark - (uint32_t *)NULL;
168}
169
170static inline void mark_object(struct object *object, uint32_t mark)
171{
172 add_decoration(&idnums, object, mark_to_ptr(mark));
173}
174
175static inline void mark_next_object(struct object *object)
176{
177 mark_object(object, ++last_idnum);
f2dc849e
JS
178}
179
180static int get_object_mark(struct object *object)
181{
182 void *decoration = lookup_decoration(&idnums, object);
183 if (!decoration)
184 return 0;
df6a7ff7 185 return ptr_to_mark(decoration);
f2dc849e
JS
186}
187
188static void show_progress(void)
189{
190 static int counter = 0;
191 if (!progress)
192 return;
193 if ((++counter % progress) == 0)
194 printf("progress %d objects\n", counter);
195}
196
a8722750
JK
197/*
198 * Ideally we would want some transformation of the blob data here
199 * that is unreversible, but would still be the same size and have
200 * the same data relationship to other blobs (so that we get the same
201 * delta and packing behavior as the original). But the first and last
202 * requirements there are probably mutually exclusive, so let's take
203 * the easy way out for now, and just generate arbitrary content.
204 *
205 * There's no need to cache this result with anonymize_mem, since
206 * we already handle blob content caching with marks.
207 */
208static char *anonymize_blob(unsigned long *size)
209{
210 static int counter;
211 struct strbuf out = STRBUF_INIT;
212 strbuf_addf(&out, "anonymous blob %d", counter++);
213 *size = out.len;
214 return strbuf_detach(&out, NULL);
215}
216
273f8ee8 217static void export_blob(const struct object_id *oid)
f2dc849e
JS
218{
219 unsigned long size;
220 enum object_type type;
221 char *buf;
222 struct object *object;
30b939c3 223 int eaten;
f2dc849e 224
79559f27
GI
225 if (no_data)
226 return;
227
273f8ee8 228 if (is_null_oid(oid))
f2dc849e
JS
229 return;
230
273f8ee8 231 object = lookup_object(oid->hash);
30b939c3 232 if (object && object->flags & SHOWN)
f2dc849e
JS
233 return;
234
a8722750
JK
235 if (anonymize) {
236 buf = anonymize_blob(&size);
3aca1fc6 237 object = (struct object *)lookup_blob(oid);
a8722750
JK
238 eaten = 0;
239 } else {
273f8ee8 240 buf = read_sha1_file(oid->hash, &type, &size);
a8722750 241 if (!buf)
273f8ee8 242 die ("Could not read blob %s", oid_to_hex(oid));
243 if (check_sha1_signature(oid->hash, buf, size, typename(type)) < 0)
244 die("sha1 mismatch in blob %s", oid_to_hex(oid));
c251c83d 245 object = parse_object_buffer(oid, type, size, buf, &eaten);
a8722750
JK
246 }
247
30b939c3 248 if (!object)
273f8ee8 249 die("Could not read blob %s", oid_to_hex(oid));
f2dc849e 250
df6a7ff7 251 mark_next_object(object);
f2dc849e 252
6e1c2344 253 printf("blob\nmark :%"PRIu32"\ndata %lu\n", last_idnum, size);
b0fe0d72 254 if (size && fwrite(buf, size, 1, stdout) != 1)
273f8ee8 255 die_errno ("Could not write blob '%s'", oid_to_hex(oid));
f2dc849e
JS
256 printf("\n");
257
258 show_progress();
259
260 object->flags |= SHOWN;
30b939c3
JK
261 if (!eaten)
262 free(buf);
f2dc849e
JS
263}
264
060df624
EN
265static int depth_first(const void *a_, const void *b_)
266{
267 const struct diff_filepair *a = *((const struct diff_filepair **)a_);
268 const struct diff_filepair *b = *((const struct diff_filepair **)b_);
269 const char *name_a, *name_b;
270 int len_a, len_b, len;
271 int cmp;
272
273 name_a = a->one ? a->one->path : a->two->path;
274 name_b = b->one ? b->one->path : b->two->path;
275
276 len_a = strlen(name_a);
277 len_b = strlen(name_b);
278 len = (len_a < len_b) ? len_a : len_b;
279
280 /* strcmp will sort 'd' before 'd/e', we want 'd/e' before 'd' */
281 cmp = memcmp(name_a, name_b, len);
282 if (cmp)
283 return cmp;
4ce6fb80
JS
284 cmp = len_b - len_a;
285 if (cmp)
286 return cmp;
287 /*
288 * Move 'R'ename entries last so that all references of the file
289 * appear in the output before it is renamed (e.g., when a file
290 * was copied and renamed in the same commit).
291 */
292 return (a->status == 'R') - (b->status == 'R');
060df624
EN
293}
294
a8722750 295static void print_path_1(const char *path)
6280dfdc
JK
296{
297 int need_quote = quote_c_style(path, NULL, NULL, 0);
298 if (need_quote)
299 quote_c_style(path, NULL, stdout, 0);
ff59f6da
JS
300 else if (strchr(path, ' '))
301 printf("\"%s\"", path);
6280dfdc
JK
302 else
303 printf("%s", path);
304}
305
a8722750
JK
306static void *anonymize_path_component(const void *path, size_t *len)
307{
308 static int counter;
309 struct strbuf out = STRBUF_INIT;
310 strbuf_addf(&out, "path%d", counter++);
311 return strbuf_detach(&out, len);
312}
313
314static void print_path(const char *path)
315{
316 if (!anonymize)
317 print_path_1(path);
318 else {
319 static struct hashmap paths;
320 static struct strbuf anon = STRBUF_INIT;
321
322 anonymize_path(&anon, path, &paths, anonymize_path_component);
323 print_path_1(anon.buf);
324 strbuf_reset(&anon);
325 }
326}
327
273f8ee8 328static void *generate_fake_oid(const void *old, size_t *len)
a8722750
JK
329{
330 static uint32_t counter = 1; /* avoid null sha1 */
273f8ee8 331 unsigned char *out = xcalloc(GIT_SHA1_RAWSZ, 1);
332 put_be32(out + GIT_SHA1_RAWSZ - 4, counter++);
a8722750
JK
333 return out;
334}
335
273f8ee8 336static const unsigned char *anonymize_sha1(const struct object_id *oid)
a8722750
JK
337{
338 static struct hashmap sha1s;
273f8ee8 339 size_t len = GIT_SHA1_RAWSZ;
340 return anonymize_mem(&sha1s, generate_fake_oid, oid, &len);
a8722750
JK
341}
342
f2dc849e
JS
343static void show_filemodify(struct diff_queue_struct *q,
344 struct diff_options *options, void *data)
345{
346 int i;
060df624
EN
347
348 /*
349 * Handle files below a directory first, in case they are all deleted
350 * and the directory changes to a file or symlink.
351 */
9ed0d8d6 352 QSORT(q->queue, q->nr, depth_first);
060df624 353
f2dc849e 354 for (i = 0; i < q->nr; i++) {
ae7c5dce 355 struct diff_filespec *ospec = q->queue[i]->one;
f2dc849e 356 struct diff_filespec *spec = q->queue[i]->two;
ae7c5dce
AG
357
358 switch (q->queue[i]->status) {
359 case DIFF_STATUS_DELETED:
6280dfdc
JK
360 printf("D ");
361 print_path(spec->path);
362 putchar('\n');
ae7c5dce
AG
363 break;
364
365 case DIFF_STATUS_COPIED:
366 case DIFF_STATUS_RENAMED:
6280dfdc
JK
367 printf("%c ", q->queue[i]->status);
368 print_path(ospec->path);
369 putchar(' ');
370 print_path(spec->path);
371 putchar('\n');
ae7c5dce 372
a0d12c44 373 if (!oidcmp(&ospec->oid, &spec->oid) &&
ae7c5dce
AG
374 ospec->mode == spec->mode)
375 break;
376 /* fallthrough */
377
378 case DIFF_STATUS_TYPE_CHANGED:
379 case DIFF_STATUS_MODIFIED:
380 case DIFF_STATUS_ADDED:
03db4525
AG
381 /*
382 * Links refer to objects in another repositories;
383 * output the SHA-1 verbatim.
384 */
79559f27 385 if (no_data || S_ISGITLINK(spec->mode))
6280dfdc 386 printf("M %06o %s ", spec->mode,
a8722750 387 sha1_to_hex(anonymize ?
273f8ee8 388 anonymize_sha1(&spec->oid) :
a0d12c44 389 spec->oid.hash));
03db4525 390 else {
a0d12c44 391 struct object *object = lookup_object(spec->oid.hash);
6280dfdc
JK
392 printf("M %06o :%d ", spec->mode,
393 get_object_mark(object));
03db4525 394 }
6280dfdc
JK
395 print_path(spec->path);
396 putchar('\n');
ae7c5dce
AG
397 break;
398
399 default:
400 die("Unexpected comparison status '%c' for %s, %s",
401 q->queue[i]->status,
402 ospec->path ? ospec->path : "none",
403 spec->path ? spec->path : "none");
f2dc849e
JS
404 }
405 }
406}
407
408static const char *find_encoding(const char *begin, const char *end)
409{
410 const char *needle = "\nencoding ";
411 char *bol, *eol;
412
413 bol = memmem(begin, end ? end - begin : strlen(begin),
414 needle, strlen(needle));
415 if (!bol)
416 return git_commit_encoding;
417 bol += strlen(needle);
418 eol = strchrnul(bol, '\n');
419 *eol = '\0';
420 return bol;
421}
422
a8722750
JK
423static void *anonymize_ref_component(const void *old, size_t *len)
424{
425 static int counter;
426 struct strbuf out = STRBUF_INIT;
427 strbuf_addf(&out, "ref%d", counter++);
428 return strbuf_detach(&out, len);
429}
430
431static const char *anonymize_refname(const char *refname)
432{
433 /*
434 * If any of these prefixes is found, we will leave it intact
435 * so that tags remain tags and so forth.
436 */
437 static const char *prefixes[] = {
438 "refs/heads/",
439 "refs/tags/",
440 "refs/remotes/",
441 "refs/"
442 };
443 static struct hashmap refs;
444 static struct strbuf anon = STRBUF_INIT;
445 int i;
446
447 /*
448 * We also leave "master" as a special case, since it does not reveal
449 * anything interesting.
450 */
451 if (!strcmp(refname, "refs/heads/master"))
452 return refname;
453
454 strbuf_reset(&anon);
455 for (i = 0; i < ARRAY_SIZE(prefixes); i++) {
456 if (skip_prefix(refname, prefixes[i], &refname)) {
457 strbuf_addstr(&anon, prefixes[i]);
458 break;
459 }
460 }
461
462 anonymize_path(&anon, refname, &refs, anonymize_ref_component);
463 return anon.buf;
464}
465
466/*
467 * We do not even bother to cache commit messages, as they are unlikely
468 * to be repeated verbatim, and it is not that interesting when they are.
469 */
470static char *anonymize_commit_message(const char *old)
471{
472 static int counter;
473 return xstrfmt("subject %d\n\nbody\n", counter++);
474}
475
476static struct hashmap idents;
477static void *anonymize_ident(const void *old, size_t *len)
478{
479 static int counter;
480 struct strbuf out = STRBUF_INIT;
481 strbuf_addf(&out, "User %d <user%d@example.com>", counter, counter);
482 counter++;
483 return strbuf_detach(&out, len);
484}
485
486/*
487 * Our strategy here is to anonymize the names and email addresses,
488 * but keep timestamps intact, as they influence things like traversal
489 * order (and by themselves should not be too revealing).
490 */
491static void anonymize_ident_line(const char **beg, const char **end)
492{
493 static struct strbuf buffers[] = { STRBUF_INIT, STRBUF_INIT };
494 static unsigned which_buffer;
495
496 struct strbuf *out;
497 struct ident_split split;
498 const char *end_of_header;
499
500 out = &buffers[which_buffer++];
501 which_buffer %= ARRAY_SIZE(buffers);
502 strbuf_reset(out);
503
504 /* skip "committer", "author", "tagger", etc */
505 end_of_header = strchr(*beg, ' ');
506 if (!end_of_header)
507 die("BUG: malformed line fed to anonymize_ident_line: %.*s",
508 (int)(*end - *beg), *beg);
509 end_of_header++;
510 strbuf_add(out, *beg, end_of_header - *beg);
511
512 if (!split_ident_line(&split, end_of_header, *end - end_of_header) &&
513 split.date_begin) {
514 const char *ident;
515 size_t len;
516
517 len = split.mail_end - split.name_begin;
518 ident = anonymize_mem(&idents, anonymize_ident,
519 split.name_begin, &len);
520 strbuf_add(out, ident, len);
521 strbuf_addch(out, ' ');
522 strbuf_add(out, split.date_begin, split.tz_end - split.date_begin);
523 } else {
524 strbuf_addstr(out, "Malformed Ident <malformed@example.com> 0 -0000");
525 }
526
527 *beg = out->buf;
528 *end = out->buf + out->len;
529}
530
f2dc849e
JS
531static void handle_commit(struct commit *commit, struct rev_info *rev)
532{
533 int saved_output_format = rev->diffopt.output_format;
bc6b8fc1 534 const char *commit_buffer;
f2dc849e
JS
535 const char *author, *author_end, *committer, *committer_end;
536 const char *encoding, *message;
537 char *reencoded = NULL;
538 struct commit_list *p;
a8722750 539 const char *refname;
f2dc849e
JS
540 int i;
541
542 rev->diffopt.output_format = DIFF_FORMAT_CALLBACK;
543
683ff884 544 parse_commit_or_die(commit);
8597ea3a 545 commit_buffer = get_commit_buffer(commit, NULL);
bc6b8fc1 546 author = strstr(commit_buffer, "\nauthor ");
f2dc849e
JS
547 if (!author)
548 die ("Could not find author in commit %s",
f2fd0760 549 oid_to_hex(&commit->object.oid));
f2dc849e
JS
550 author++;
551 author_end = strchrnul(author, '\n');
552 committer = strstr(author_end, "\ncommitter ");
553 if (!committer)
554 die ("Could not find committer in commit %s",
f2fd0760 555 oid_to_hex(&commit->object.oid));
f2dc849e
JS
556 committer++;
557 committer_end = strchrnul(committer, '\n');
558 message = strstr(committer_end, "\n\n");
559 encoding = find_encoding(committer_end, message);
560 if (message)
561 message += 2;
562
ebeec7db 563 if (commit->parents &&
4087a02e
EN
564 get_object_mark(&commit->parents->item->object) != 0 &&
565 !full_tree) {
683ff884 566 parse_commit_or_die(commit->parents->item);
66f414f8
BW
567 diff_tree_oid(&commit->parents->item->tree->object.oid,
568 &commit->tree->object.oid, "", &rev->diffopt);
f2dc849e
JS
569 }
570 else
7b8dea0c
BW
571 diff_root_tree_oid(&commit->tree->object.oid,
572 "", &rev->diffopt);
f2dc849e 573
03db4525 574 /* Export the referenced blobs, and remember the marks. */
f2dc849e 575 for (i = 0; i < diff_queued_diff.nr; i++)
03db4525 576 if (!S_ISGITLINK(diff_queued_diff.queue[i]->two->mode))
273f8ee8 577 export_blob(&diff_queued_diff.queue[i]->two->oid);
f2dc849e 578
a8722750
JK
579 refname = commit->util;
580 if (anonymize) {
581 refname = anonymize_refname(refname);
582 anonymize_ident_line(&committer, &committer_end);
583 anonymize_ident_line(&author, &author_end);
584 }
585
df6a7ff7 586 mark_next_object(&commit->object);
a8722750
JK
587 if (anonymize)
588 reencoded = anonymize_commit_message(message);
589 else if (!is_encoding_utf8(encoding))
f2dc849e 590 reencoded = reencode_string(message, "UTF-8", encoding);
d8933f01 591 if (!commit->parents)
a8722750 592 printf("reset %s\n", refname);
6e1c2344 593 printf("commit %s\nmark :%"PRIu32"\n%.*s\n%.*s\ndata %u\n%s",
a8722750 594 refname, last_idnum,
f2dc849e
JS
595 (int)(author_end - author), author,
596 (int)(committer_end - committer), committer,
597 (unsigned)(reencoded
598 ? strlen(reencoded) : message
599 ? strlen(message) : 0),
600 reencoded ? reencoded : message ? message : "");
8e0f7003 601 free(reencoded);
bc6b8fc1 602 unuse_commit_buffer(commit, commit_buffer);
f2dc849e
JS
603
604 for (i = 0, p = commit->parents; p; p = p->next) {
605 int mark = get_object_mark(&p->item->object);
606 if (!mark)
607 continue;
608 if (i == 0)
609 printf("from :%d\n", mark);
f2dc849e 610 else
5070b49e 611 printf("merge :%d\n", mark);
f2dc849e
JS
612 i++;
613 }
f2dc849e 614
4087a02e
EN
615 if (full_tree)
616 printf("deleteall\n");
f2dc849e
JS
617 log_tree_diff_flush(rev);
618 rev->diffopt.output_format = saved_output_format;
619
620 printf("\n");
621
622 show_progress();
623}
624
a8722750
JK
625static void *anonymize_tag(const void *old, size_t *len)
626{
627 static int counter;
628 struct strbuf out = STRBUF_INIT;
629 strbuf_addf(&out, "tag message %d", counter++);
630 return strbuf_detach(&out, len);
631}
632
f2dc849e
JS
633static void handle_tail(struct object_array *commits, struct rev_info *revs)
634{
635 struct commit *commit;
636 while (commits->nr) {
71992039 637 commit = (struct commit *)object_array_pop(commits);
f2dc849e
JS
638 if (has_unshown_parent(commit))
639 return;
640 handle_commit(commit, revs);
f2dc849e
JS
641 }
642}
643
644static void handle_tag(const char *name, struct tag *tag)
645{
646 unsigned long size;
647 enum object_type type;
648 char *buf;
649 const char *tagger, *tagger_end, *message;
650 size_t message_size = 0;
02c48cd6 651 struct object *tagged;
2d8ad469
EN
652 int tagged_mark;
653 struct commit *p;
02c48cd6 654
98e023de 655 /* Trees have no identifier in fast-export output, thus we have no way
02c48cd6
EN
656 * to output tags of trees, tags of tags of trees, etc. Simply omit
657 * such tags.
658 */
659 tagged = tag->tagged;
660 while (tagged->type == OBJ_TAG) {
661 tagged = ((struct tag *)tagged)->tagged;
662 }
663 if (tagged->type == OBJ_TREE) {
664 warning("Omitting tag %s,\nsince tags of trees (or tags of tags of trees, etc.) are not supported.",
f2fd0760 665 oid_to_hex(&tag->object.oid));
02c48cd6
EN
666 return;
667 }
f2dc849e 668
ed1c9977 669 buf = read_sha1_file(tag->object.oid.hash, &type, &size);
f2dc849e 670 if (!buf)
f2fd0760 671 die ("Could not read tag %s", oid_to_hex(&tag->object.oid));
f2dc849e
JS
672 message = memmem(buf, size, "\n\n", 2);
673 if (message) {
674 message += 2;
675 message_size = strlen(message);
676 }
677 tagger = memmem(buf, message ? message - buf : size, "\ntagger ", 8);
4e46a8d6
JS
678 if (!tagger) {
679 if (fake_missing_tagger)
680 tagger = "tagger Unspecified Tagger "
681 "<unspecified-tagger> 0 +0000";
682 else
683 tagger = "";
684 tagger_end = tagger + strlen(tagger);
685 } else {
686 tagger++;
687 tagger_end = strchrnul(tagger, '\n');
a8722750
JK
688 if (anonymize)
689 anonymize_ident_line(&tagger, &tagger_end);
690 }
691
692 if (anonymize) {
693 name = anonymize_refname(name);
694 if (message) {
695 static struct hashmap tags;
696 message = anonymize_mem(&tags, anonymize_tag,
697 message, &message_size);
698 }
4e46a8d6 699 }
f2dc849e
JS
700
701 /* handle signed tags */
702 if (message) {
703 const char *signature = strstr(message,
704 "\n-----BEGIN PGP SIGNATURE-----\n");
705 if (signature)
706 switch(signed_tag_mode) {
707 case ABORT:
708 die ("Encountered signed tag %s; use "
04a74b6c 709 "--signed-tags=<mode> to handle it.",
f2fd0760 710 oid_to_hex(&tag->object.oid));
f2dc849e
JS
711 case WARN:
712 warning ("Exporting signed tag %s",
f2fd0760 713 oid_to_hex(&tag->object.oid));
f2dc849e 714 /* fallthru */
ee4bc371 715 case VERBATIM:
f2dc849e 716 break;
cd16c59b
JK
717 case WARN_STRIP:
718 warning ("Stripping signature from tag %s",
f2fd0760 719 oid_to_hex(&tag->object.oid));
cd16c59b 720 /* fallthru */
f2dc849e
JS
721 case STRIP:
722 message_size = signature + 1 - message;
723 break;
724 }
725 }
726
2d8ad469
EN
727 /* handle tag->tagged having been filtered out due to paths specified */
728 tagged = tag->tagged;
729 tagged_mark = get_object_mark(tagged);
730 if (!tagged_mark) {
731 switch(tag_of_filtered_mode) {
732 case ABORT:
733 die ("Tag %s tags unexported object; use "
734 "--tag-of-filtered-object=<mode> to handle it.",
f2fd0760 735 oid_to_hex(&tag->object.oid));
2d8ad469
EN
736 case DROP:
737 /* Ignore this tag altogether */
1efb1e9a 738 free(buf);
2d8ad469
EN
739 return;
740 case REWRITE:
741 if (tagged->type != OBJ_COMMIT) {
742 die ("Tag %s tags unexported %s!",
f2fd0760 743 oid_to_hex(&tag->object.oid),
2d8ad469
EN
744 typename(tagged->type));
745 }
746 p = (struct commit *)tagged;
747 for (;;) {
748 if (p->parents && p->parents->next)
749 break;
750 if (p->object.flags & UNINTERESTING)
751 break;
752 if (!(p->object.flags & TREESAME))
753 break;
754 if (!p->parents)
755 die ("Can't find replacement commit for tag %s\n",
f2fd0760 756 oid_to_hex(&tag->object.oid));
2d8ad469
EN
757 p = p->parents->item;
758 }
759 tagged_mark = get_object_mark(&p->object);
760 }
761 }
762
59556548 763 if (starts_with(name, "refs/tags/"))
f2dc849e 764 name += 10;
4e46a8d6 765 printf("tag %s\nfrom :%d\n%.*s%sdata %d\n%.*s\n",
2d8ad469 766 name, tagged_mark,
f2dc849e 767 (int)(tagger_end - tagger), tagger,
4e46a8d6 768 tagger == tagger_end ? "" : "\n",
f2dc849e 769 (int)message_size, (int)message_size, message ? message : "");
1efb1e9a 770 free(buf);
f2dc849e
JS
771}
772
3e9b9cb1
FC
773static struct commit *get_commit(struct rev_cmdline_entry *e, char *full_name)
774{
775 switch (e->item->type) {
776 case OBJ_COMMIT:
777 return (struct commit *)e->item;
778 case OBJ_TAG: {
779 struct tag *tag = (struct tag *)e->item;
780
781 /* handle nested tags */
782 while (tag && tag->object.type == OBJ_TAG) {
c251c83d 783 parse_object(&tag->object.oid);
3e9b9cb1
FC
784 string_list_append(&extra_refs, full_name)->util = tag;
785 tag = (struct tag *)tag->tagged;
786 }
787 if (!tag)
788 die("Tag %s points nowhere?", e->name);
789 return (struct commit *)tag;
790 break;
791 }
792 default:
793 return NULL;
794 }
795}
796
1d844ee7 797static void get_tags_and_duplicates(struct rev_cmdline_info *info)
f2dc849e 798{
f2dc849e
JS
799 int i;
800
49266e8a
FC
801 for (i = 0; i < info->nr; i++) {
802 struct rev_cmdline_entry *e = info->rev + i;
273f8ee8 803 struct object_id oid;
2d242de4 804 struct commit *commit;
f2dc849e
JS
805 char *full_name;
806
49266e8a
FC
807 if (e->flags & UNINTERESTING)
808 continue;
809
273f8ee8 810 if (dwim_ref(e->name, strlen(e->name), oid.hash, &full_name) != 1)
f2dc849e
JS
811 continue;
812
03e9010c
FC
813 if (refspecs) {
814 char *private;
815 private = apply_refspecs(refspecs, refspecs_nr, full_name);
816 if (private) {
817 free(full_name);
818 full_name = private;
819 }
820 }
821
3e9b9cb1
FC
822 commit = get_commit(e, full_name);
823 if (!commit) {
2d07f6d4
EFL
824 warning("%s: Unexpected object of type %s, skipping.",
825 e->name,
826 typename(e->item->type));
827 continue;
f2dc849e 828 }
f28e7c90 829
3e9b9cb1
FC
830 switch(commit->object.type) {
831 case OBJ_COMMIT:
832 break;
833 case OBJ_BLOB:
273f8ee8 834 export_blob(&commit->object.oid);
3e9b9cb1
FC
835 continue;
836 default: /* OBJ_TAG (nested tags) is already handled */
837 warning("Tag points to object of unexpected type %s, skipping.",
838 typename(commit->object.type));
839 continue;
840 }
841
f28e7c90
FC
842 /*
843 * This ref will not be updated through a commit, lets make
844 * sure it gets properly updated eventually.
845 */
846 if (commit->util || commit->object.flags & SHOWN)
1d844ee7 847 string_list_append(&extra_refs, full_name)->util = commit;
f28e7c90 848 if (!commit->util)
f2dc849e
JS
849 commit->util = full_name;
850 }
851}
852
1d844ee7 853static void handle_tags_and_duplicates(void)
f2dc849e
JS
854{
855 struct commit *commit;
856 int i;
857
1d844ee7
FC
858 for (i = extra_refs.nr - 1; i >= 0; i--) {
859 const char *name = extra_refs.items[i].string;
860 struct object *object = extra_refs.items[i].util;
f2dc849e
JS
861 switch (object->type) {
862 case OBJ_TAG:
863 handle_tag(name, (struct tag *)object);
864 break;
865 case OBJ_COMMIT:
a8722750
JK
866 if (anonymize)
867 name = anonymize_refname(name);
f2dc849e
JS
868 /* create refs pointing to already seen commits */
869 commit = (struct commit *)object;
870 printf("reset %s\nfrom :%d\n\n", name,
871 get_object_mark(&commit->object));
872 show_progress();
873 break;
874 }
875 }
876}
877
df6a7ff7
PB
878static void export_marks(char *file)
879{
880 unsigned int i;
881 uint32_t mark;
882 struct object_decoration *deco = idnums.hash;
883 FILE *f;
96d69b55 884 int e = 0;
df6a7ff7 885
ea56518d 886 f = fopen_for_writing(file);
df6a7ff7 887 if (!f)
bb6ad28c 888 die_errno("Unable to open marks file %s for writing.", file);
df6a7ff7 889
69913575
JH
890 for (i = 0; i < idnums.size; i++) {
891 if (deco->base && deco->base->type == 1) {
df6a7ff7 892 mark = ptr_to_mark(deco->decoration);
96d69b55 893 if (fprintf(f, ":%"PRIu32" %s\n", mark,
f2fd0760 894 oid_to_hex(&deco->base->oid)) < 0) {
96d69b55
MA
895 e = 1;
896 break;
897 }
df6a7ff7 898 }
69913575 899 deco++;
df6a7ff7
PB
900 }
901
96d69b55
MA
902 e |= ferror(f);
903 e |= fclose(f);
904 if (e)
df6a7ff7
PB
905 error("Unable to write marks file %s.", file);
906}
907
69913575 908static void import_marks(char *input_file)
df6a7ff7
PB
909{
910 char line[512];
23a9e071 911 FILE *f = xfopen(input_file, "r");
df6a7ff7
PB
912
913 while (fgets(line, sizeof(line), f)) {
914 uint32_t mark;
915 char *line_end, *mark_end;
273f8ee8 916 struct object_id oid;
df6a7ff7 917 struct object *object;
47bd9bf8 918 struct commit *commit;
e6812cfa 919 enum object_type type;
df6a7ff7
PB
920
921 line_end = strchr(line, '\n');
922 if (line[0] != ':' || !line_end)
923 die("corrupt mark line: %s", line);
69913575 924 *line_end = '\0';
df6a7ff7
PB
925
926 mark = strtoumax(line + 1, &mark_end, 10);
927 if (!mark || mark_end == line + 1
273f8ee8 928 || *mark_end != ' ' || get_oid_hex(mark_end + 1, &oid))
df6a7ff7
PB
929 die("corrupt mark line: %s", line);
930
c4458ecd
AP
931 if (last_idnum < mark)
932 last_idnum = mark;
933
273f8ee8 934 type = sha1_object_info(oid.hash, NULL);
e6812cfa 935 if (type < 0)
273f8ee8 936 die("object not found: %s", oid_to_hex(&oid));
e6812cfa
FC
937
938 if (type != OBJ_COMMIT)
939 /* only commits */
c4458ecd 940 continue;
df6a7ff7 941
bc83266a 942 commit = lookup_commit(&oid);
47bd9bf8 943 if (!commit)
273f8ee8 944 die("not a commit? can't happen: %s", oid_to_hex(&oid));
47bd9bf8
FC
945
946 object = &commit->object;
e6812cfa 947
df6a7ff7 948 if (object->flags & SHOWN)
273f8ee8 949 error("Object %s already has a mark", oid_to_hex(&oid));
df6a7ff7
PB
950
951 mark_object(object, mark);
df6a7ff7
PB
952
953 object->flags |= SHOWN;
954 }
955 fclose(f);
956}
957
60ed2643
FC
958static void handle_deletes(void)
959{
960 int i;
961 for (i = 0; i < refspecs_nr; i++) {
962 struct refspec *refspec = &refspecs[i];
963 if (*refspec->src)
964 continue;
965
966 printf("reset %s\nfrom %s\n\n",
967 refspec->dst, sha1_to_hex(null_sha1));
968 }
969}
970
f2dc849e
JS
971int cmd_fast_export(int argc, const char **argv, const char *prefix)
972{
973 struct rev_info revs;
3cd47459 974 struct object_array commits = OBJECT_ARRAY_INIT;
f2dc849e 975 struct commit *commit;
df6a7ff7 976 char *export_filename = NULL, *import_filename = NULL;
c4458ecd 977 uint32_t lastimportid;
03e9010c 978 struct string_list refspecs_list = STRING_LIST_INIT_NODUP;
f2dc849e
JS
979 struct option options[] = {
980 OPT_INTEGER(0, "progress", &progress,
3b787b96
NTND
981 N_("show progress after <n> objects")),
982 OPT_CALLBACK(0, "signed-tags", &signed_tag_mode, N_("mode"),
983 N_("select handling of signed tags"),
f2dc849e 984 parse_opt_signed_tag_mode),
3b787b96
NTND
985 OPT_CALLBACK(0, "tag-of-filtered-object", &tag_of_filtered_mode, N_("mode"),
986 N_("select handling of tags that tag filtered objects"),
2d8ad469 987 parse_opt_tag_of_filtered_mode),
3b787b96
NTND
988 OPT_STRING(0, "export-marks", &export_filename, N_("file"),
989 N_("Dump marks to this file")),
990 OPT_STRING(0, "import-marks", &import_filename, N_("file"),
991 N_("Import marks from this file")),
d5d09d47
SB
992 OPT_BOOL(0, "fake-missing-tagger", &fake_missing_tagger,
993 N_("Fake a tagger when tags lack one")),
994 OPT_BOOL(0, "full-tree", &full_tree,
995 N_("Output full tree for each commit")),
996 OPT_BOOL(0, "use-done-feature", &use_done_feature,
3b787b96
NTND
997 N_("Use the done feature to terminate the stream")),
998 OPT_BOOL(0, "no-data", &no_data, N_("Skip output of blob data")),
03e9010c
FC
999 OPT_STRING_LIST(0, "refspec", &refspecs_list, N_("refspec"),
1000 N_("Apply refspec to exported refs")),
a8722750 1001 OPT_BOOL(0, "anonymize", &anonymize, N_("anonymize output")),
f2dc849e
JS
1002 OPT_END()
1003 };
1004
dcfdbdf0
MV
1005 if (argc == 1)
1006 usage_with_options (fast_export_usage, options);
1007
f2dc849e 1008 /* we handle encodings */
ef90d6d4 1009 git_config(git_default_config, NULL);
f2dc849e
JS
1010
1011 init_revisions(&revs, prefix);
668f3aa7 1012 revs.topo_order = 1;
2374502c 1013 revs.show_source = 1;
32164131 1014 revs.rewrite_parents = 1;
8b2f86a7
FC
1015 argc = parse_options(argc, argv, prefix, options, fast_export_usage,
1016 PARSE_OPT_KEEP_ARGV0 | PARSE_OPT_KEEP_UNKNOWN);
f2dc849e 1017 argc = setup_revisions(argc, argv, &revs, NULL);
f2dc849e
JS
1018 if (argc > 1)
1019 usage_with_options (fast_export_usage, options);
1020
03e9010c
FC
1021 if (refspecs_list.nr) {
1022 const char **refspecs_str;
1023 int i;
1024
b32fa95f 1025 ALLOC_ARRAY(refspecs_str, refspecs_list.nr);
03e9010c
FC
1026 for (i = 0; i < refspecs_list.nr; i++)
1027 refspecs_str[i] = refspecs_list.items[i].string;
1028
1029 refspecs_nr = refspecs_list.nr;
1030 refspecs = parse_fetch_refspec(refspecs_nr, refspecs_str);
1031
1032 string_list_clear(&refspecs_list, 1);
1033 free(refspecs_str);
1034 }
1035
82670a5c
SR
1036 if (use_done_feature)
1037 printf("feature done\n");
1038
df6a7ff7
PB
1039 if (import_filename)
1040 import_marks(import_filename);
c4458ecd 1041 lastimportid = last_idnum;
df6a7ff7 1042
afe069d1 1043 if (import_filename && revs.prune_data.nr)
4087a02e
EN
1044 full_tree = 1;
1045
1d844ee7 1046 get_tags_and_duplicates(&revs.cmdline);
f2dc849e 1047
3d51e1b5
MK
1048 if (prepare_revision_walk(&revs))
1049 die("revision walk setup failed");
f2dc849e
JS
1050 revs.diffopt.format_callback = show_filemodify;
1051 DIFF_OPT_SET(&revs.diffopt, RECURSIVE);
1052 while ((commit = get_revision(&revs))) {
1053 if (has_unshown_parent(commit)) {
f2dc849e 1054 add_object_array(&commit->object, NULL, &commits);
f2dc849e
JS
1055 }
1056 else {
1057 handle_commit(commit, &revs);
1058 handle_tail(&commits, &revs);
1059 }
1060 }
1061
1d844ee7 1062 handle_tags_and_duplicates();
60ed2643 1063 handle_deletes();
f2dc849e 1064
c4458ecd 1065 if (export_filename && lastimportid != last_idnum)
df6a7ff7
PB
1066 export_marks(export_filename);
1067
82670a5c
SR
1068 if (use_done_feature)
1069 printf("done\n");
1070
03e9010c
FC
1071 free_refspec(refspecs_nr, refspecs);
1072
f2dc849e
JS
1073 return 0;
1074}