cocci: apply the "rerere.h" part of "the_repository.pending"
[alt-git.git] / bundle.c
blobdca96e51ee0181e617b57e353ed74afbec87bd6d
1 #include "cache.h"
2 #include "lockfile.h"
3 #include "bundle.h"
4 #include "object-store.h"
5 #include "repository.h"
6 #include "object.h"
7 #include "commit.h"
8 #include "diff.h"
9 #include "revision.h"
10 #include "list-objects.h"
11 #include "run-command.h"
12 #include "refs.h"
13 #include "strvec.h"
14 #include "list-objects-filter-options.h"
15 #include "connected.h"
17 static const char v2_bundle_signature[] = "# v2 git bundle\n";
18 static const char v3_bundle_signature[] = "# v3 git bundle\n";
19 static struct {
20 int version;
21 const char *signature;
22 } bundle_sigs[] = {
23 { 2, v2_bundle_signature },
24 { 3, v3_bundle_signature },
27 void bundle_header_init(struct bundle_header *header)
29 struct bundle_header blank = BUNDLE_HEADER_INIT;
30 memcpy(header, &blank, sizeof(*header));
33 void bundle_header_release(struct bundle_header *header)
35 string_list_clear(&header->prerequisites, 1);
36 string_list_clear(&header->references, 1);
37 list_objects_filter_release(&header->filter);
40 static int parse_capability(struct bundle_header *header, const char *capability)
42 const char *arg;
43 if (skip_prefix(capability, "object-format=", &arg)) {
44 int algo = hash_algo_by_name(arg);
45 if (algo == GIT_HASH_UNKNOWN)
46 return error(_("unrecognized bundle hash algorithm: %s"), arg);
47 header->hash_algo = &hash_algos[algo];
48 return 0;
50 if (skip_prefix(capability, "filter=", &arg)) {
51 parse_list_objects_filter(&header->filter, arg);
52 return 0;
54 return error(_("unknown capability '%s'"), capability);
57 static int parse_bundle_signature(struct bundle_header *header, const char *line)
59 int i;
61 for (i = 0; i < ARRAY_SIZE(bundle_sigs); i++) {
62 if (!strcmp(line, bundle_sigs[i].signature)) {
63 header->version = bundle_sigs[i].version;
64 return 0;
67 return -1;
70 int read_bundle_header_fd(int fd, struct bundle_header *header,
71 const char *report_path)
73 struct strbuf buf = STRBUF_INIT;
74 int status = 0;
76 /* The bundle header begins with the signature */
77 if (strbuf_getwholeline_fd(&buf, fd, '\n') ||
78 parse_bundle_signature(header, buf.buf)) {
79 if (report_path)
80 error(_("'%s' does not look like a v2 or v3 bundle file"),
81 report_path);
82 status = -1;
83 goto abort;
86 header->hash_algo = the_hash_algo;
88 /* The bundle header ends with an empty line */
89 while (!strbuf_getwholeline_fd(&buf, fd, '\n') &&
90 buf.len && buf.buf[0] != '\n') {
91 struct object_id oid;
92 int is_prereq = 0;
93 const char *p;
95 strbuf_rtrim(&buf);
97 if (header->version == 3 && *buf.buf == '@') {
98 if (parse_capability(header, buf.buf + 1)) {
99 status = -1;
100 break;
102 continue;
105 if (*buf.buf == '-') {
106 is_prereq = 1;
107 strbuf_remove(&buf, 0, 1);
111 * Tip lines have object name, SP, and refname.
112 * Prerequisites have object name that is optionally
113 * followed by SP and subject line.
115 if (parse_oid_hex_algop(buf.buf, &oid, &p, header->hash_algo) ||
116 (*p && !isspace(*p)) ||
117 (!is_prereq && !*p)) {
118 if (report_path)
119 error(_("unrecognized header: %s%s (%d)"),
120 (is_prereq ? "-" : ""), buf.buf, (int)buf.len);
121 status = -1;
122 break;
123 } else {
124 struct object_id *dup = oiddup(&oid);
125 if (is_prereq)
126 string_list_append(&header->prerequisites, "")->util = dup;
127 else
128 string_list_append(&header->references, p + 1)->util = dup;
132 abort:
133 if (status) {
134 close(fd);
135 fd = -1;
137 strbuf_release(&buf);
138 return fd;
141 int read_bundle_header(const char *path, struct bundle_header *header)
143 int fd = open(path, O_RDONLY);
145 if (fd < 0)
146 return error(_("could not open '%s'"), path);
147 return read_bundle_header_fd(fd, header, path);
150 int is_bundle(const char *path, int quiet)
152 struct bundle_header header = BUNDLE_HEADER_INIT;
153 int fd = open(path, O_RDONLY);
155 if (fd < 0)
156 return 0;
157 fd = read_bundle_header_fd(fd, &header, quiet ? NULL : path);
158 if (fd >= 0)
159 close(fd);
160 bundle_header_release(&header);
161 return (fd >= 0);
164 static int list_refs(struct string_list *r, int argc, const char **argv)
166 int i;
168 for (i = 0; i < r->nr; i++) {
169 struct object_id *oid;
170 const char *name;
172 if (argc > 1) {
173 int j;
174 for (j = 1; j < argc; j++)
175 if (!strcmp(r->items[i].string, argv[j]))
176 break;
177 if (j == argc)
178 continue;
181 oid = r->items[i].util;
182 name = r->items[i].string;
183 printf("%s %s\n", oid_to_hex(oid), name);
185 return 0;
188 /* Remember to update object flag allocation in object.h */
189 #define PREREQ_MARK (1u<<16)
191 struct string_list_iterator {
192 struct string_list *list;
193 size_t cur;
196 static const struct object_id *iterate_ref_map(void *cb_data)
198 struct string_list_iterator *iter = cb_data;
200 if (iter->cur >= iter->list->nr)
201 return NULL;
203 return iter->list->items[iter->cur++].util;
206 int verify_bundle(struct repository *r,
207 struct bundle_header *header,
208 enum verify_bundle_flags flags)
211 * Do fast check, then if any prereqs are missing then go line by line
212 * to be verbose about the errors
214 struct string_list *p = &header->prerequisites;
215 int i, ret = 0;
216 const char *message = _("Repository lacks these prerequisite commits:");
217 struct string_list_iterator iter = {
218 .list = p,
220 struct check_connected_options opts = {
221 .quiet = 1,
224 if (!r || !r->objects || !r->objects->odb)
225 return error(_("need a repository to verify a bundle"));
227 for (i = 0; i < p->nr; i++) {
228 struct string_list_item *e = p->items + i;
229 const char *name = e->string;
230 struct object_id *oid = e->util;
231 struct object *o = parse_object(r, oid);
232 if (o)
233 continue;
234 ret++;
235 if (flags & VERIFY_BUNDLE_QUIET)
236 continue;
237 if (ret == 1)
238 error("%s", message);
239 error("%s %s", oid_to_hex(oid), name);
241 if (ret)
242 goto cleanup;
244 if ((ret = check_connected(iterate_ref_map, &iter, &opts)))
245 error(_("some prerequisite commits exist in the object store, "
246 "but are not connected to the repository's history"));
248 /* TODO: preserve this verbose language. */
249 if (flags & VERIFY_BUNDLE_VERBOSE) {
250 struct string_list *r;
252 r = &header->references;
253 printf_ln(Q_("The bundle contains this ref:",
254 "The bundle contains these %"PRIuMAX" refs:",
255 r->nr),
256 (uintmax_t)r->nr);
257 list_refs(r, 0, NULL);
259 r = &header->prerequisites;
260 if (!r->nr) {
261 printf_ln(_("The bundle records a complete history."));
262 } else {
263 printf_ln(Q_("The bundle requires this ref:",
264 "The bundle requires these %"PRIuMAX" refs:",
265 r->nr),
266 (uintmax_t)r->nr);
267 list_refs(r, 0, NULL);
270 printf_ln("The bundle uses this hash algorithm: %s",
271 header->hash_algo->name);
272 if (header->filter.choice)
273 printf_ln("The bundle uses this filter: %s",
274 list_objects_filter_spec(&header->filter));
276 cleanup:
277 return ret;
280 int list_bundle_refs(struct bundle_header *header, int argc, const char **argv)
282 return list_refs(&header->references, argc, argv);
285 static int is_tag_in_date_range(struct object *tag, struct rev_info *revs)
287 unsigned long size;
288 enum object_type type;
289 char *buf = NULL, *line, *lineend;
290 timestamp_t date;
291 int result = 1;
293 if (revs->max_age == -1 && revs->min_age == -1)
294 goto out;
296 buf = repo_read_object_file(the_repository, &tag->oid, &type, &size);
297 if (!buf)
298 goto out;
299 line = memmem(buf, size, "\ntagger ", 8);
300 if (!line++)
301 goto out;
302 lineend = memchr(line, '\n', buf + size - line);
303 line = memchr(line, '>', lineend ? lineend - line : buf + size - line);
304 if (!line++)
305 goto out;
306 date = parse_timestamp(line, NULL, 10);
307 result = (revs->max_age == -1 || revs->max_age < date) &&
308 (revs->min_age == -1 || revs->min_age > date);
309 out:
310 free(buf);
311 return result;
315 /* Write the pack data to bundle_fd */
316 static int write_pack_data(int bundle_fd, struct rev_info *revs, struct strvec *pack_options)
318 struct child_process pack_objects = CHILD_PROCESS_INIT;
319 int i;
321 strvec_pushl(&pack_objects.args,
322 "pack-objects",
323 "--stdout", "--thin", "--delta-base-offset",
324 NULL);
325 strvec_pushv(&pack_objects.args, pack_options->v);
326 if (revs->filter.choice)
327 strvec_pushf(&pack_objects.args, "--filter=%s",
328 list_objects_filter_spec(&revs->filter));
329 pack_objects.in = -1;
330 pack_objects.out = bundle_fd;
331 pack_objects.git_cmd = 1;
334 * start_command() will close our descriptor if it's >1. Duplicate it
335 * to avoid surprising the caller.
337 if (pack_objects.out > 1) {
338 pack_objects.out = dup(pack_objects.out);
339 if (pack_objects.out < 0) {
340 error_errno(_("unable to dup bundle descriptor"));
341 child_process_clear(&pack_objects);
342 return -1;
346 if (start_command(&pack_objects))
347 return error(_("Could not spawn pack-objects"));
349 for (i = 0; i < revs->pending.nr; i++) {
350 struct object *object = revs->pending.objects[i].item;
351 if (object->flags & UNINTERESTING)
352 write_or_die(pack_objects.in, "^", 1);
353 write_or_die(pack_objects.in, oid_to_hex(&object->oid), the_hash_algo->hexsz);
354 write_or_die(pack_objects.in, "\n", 1);
356 close(pack_objects.in);
357 if (finish_command(&pack_objects))
358 return error(_("pack-objects died"));
359 return 0;
363 * Write out bundle refs based on the tips already
364 * parsed into revs.pending. As a side effect, may
365 * manipulate revs.pending to include additional
366 * necessary objects (like tags).
368 * Returns the number of refs written, or negative
369 * on error.
371 static int write_bundle_refs(int bundle_fd, struct rev_info *revs)
373 int i;
374 int ref_count = 0;
376 for (i = 0; i < revs->pending.nr; i++) {
377 struct object_array_entry *e = revs->pending.objects + i;
378 struct object_id oid;
379 char *ref;
380 const char *display_ref;
381 int flag;
383 if (e->item->flags & UNINTERESTING)
384 continue;
385 if (repo_dwim_ref(the_repository, e->name, strlen(e->name),
386 &oid, &ref, 0) != 1)
387 goto skip_write_ref;
388 if (read_ref_full(e->name, RESOLVE_REF_READING, &oid, &flag))
389 flag = 0;
390 display_ref = (flag & REF_ISSYMREF) ? e->name : ref;
392 if (e->item->type == OBJ_TAG &&
393 !is_tag_in_date_range(e->item, revs)) {
394 e->item->flags |= UNINTERESTING;
395 goto skip_write_ref;
399 * Make sure the refs we wrote out is correct; --max-count and
400 * other limiting options could have prevented all the tips
401 * from getting output.
403 * Non commit objects such as tags and blobs do not have
404 * this issue as they are not affected by those extra
405 * constraints.
407 if (!(e->item->flags & SHOWN) && e->item->type == OBJ_COMMIT) {
408 warning(_("ref '%s' is excluded by the rev-list options"),
409 e->name);
410 goto skip_write_ref;
413 * If you run "git bundle create bndl v1.0..v2.0", the
414 * name of the positive ref is "v2.0" but that is the
415 * commit that is referenced by the tag, and not the tag
416 * itself.
418 if (!oideq(&oid, &e->item->oid)) {
420 * Is this the positive end of a range expressed
421 * in terms of a tag (e.g. v2.0 from the range
422 * "v1.0..v2.0")?
424 struct commit *one = lookup_commit_reference(revs->repo, &oid);
425 struct object *obj;
427 if (e->item == &(one->object)) {
429 * Need to include e->name as an
430 * independent ref to the pack-objects
431 * input, so that the tag is included
432 * in the output; otherwise we would
433 * end up triggering "empty bundle"
434 * error.
436 obj = parse_object_or_die(&oid, e->name);
437 obj->flags |= SHOWN;
438 add_pending_object(revs, obj, e->name);
440 goto skip_write_ref;
443 ref_count++;
444 write_or_die(bundle_fd, oid_to_hex(&e->item->oid), the_hash_algo->hexsz);
445 write_or_die(bundle_fd, " ", 1);
446 write_or_die(bundle_fd, display_ref, strlen(display_ref));
447 write_or_die(bundle_fd, "\n", 1);
448 skip_write_ref:
449 free(ref);
452 /* end header */
453 write_or_die(bundle_fd, "\n", 1);
454 return ref_count;
457 struct bundle_prerequisites_info {
458 struct object_array *pending;
459 int fd;
462 static void write_bundle_prerequisites(struct commit *commit, void *data)
464 struct bundle_prerequisites_info *bpi = data;
465 struct object *object;
466 struct pretty_print_context ctx = { 0 };
467 struct strbuf buf = STRBUF_INIT;
469 if (!(commit->object.flags & BOUNDARY))
470 return;
471 strbuf_addf(&buf, "-%s ", oid_to_hex(&commit->object.oid));
472 write_or_die(bpi->fd, buf.buf, buf.len);
474 ctx.fmt = CMIT_FMT_ONELINE;
475 ctx.output_encoding = get_log_output_encoding();
476 strbuf_reset(&buf);
477 pretty_print_commit(&ctx, commit, &buf);
478 strbuf_trim(&buf);
480 object = (struct object *)commit;
481 object->flags |= UNINTERESTING;
482 add_object_array_with_path(object, buf.buf, bpi->pending, S_IFINVALID,
483 NULL);
484 strbuf_addch(&buf, '\n');
485 write_or_die(bpi->fd, buf.buf, buf.len);
486 strbuf_release(&buf);
489 int create_bundle(struct repository *r, const char *path,
490 int argc, const char **argv, struct strvec *pack_options, int version)
492 struct lock_file lock = LOCK_INIT;
493 int bundle_fd = -1;
494 int bundle_to_stdout;
495 int ref_count = 0;
496 struct rev_info revs, revs_copy;
497 int min_version = 2;
498 struct bundle_prerequisites_info bpi;
499 int i;
501 /* init revs to list objects for pack-objects later */
502 save_commit_buffer = 0;
503 repo_init_revisions(r, &revs, NULL);
506 * Pre-initialize the '--objects' flag so we can parse a
507 * --filter option successfully.
509 revs.tree_objects = revs.blob_objects = 1;
511 argc = setup_revisions(argc, argv, &revs, NULL);
514 * Reasons to require version 3:
516 * 1. @object-format is required because our hash algorithm is not
517 * SHA1.
518 * 2. @filter is required because we parsed an object filter.
520 if (the_hash_algo != &hash_algos[GIT_HASH_SHA1] || revs.filter.choice)
521 min_version = 3;
523 if (argc > 1) {
524 error(_("unrecognized argument: %s"), argv[1]);
525 goto err;
528 bundle_to_stdout = !strcmp(path, "-");
529 if (bundle_to_stdout)
530 bundle_fd = 1;
531 else
532 bundle_fd = hold_lock_file_for_update(&lock, path,
533 LOCK_DIE_ON_ERROR);
535 if (version == -1)
536 version = min_version;
538 if (version < 2 || version > 3) {
539 die(_("unsupported bundle version %d"), version);
540 } else if (version < min_version) {
541 die(_("cannot write bundle version %d with algorithm %s"), version, the_hash_algo->name);
542 } else if (version == 2) {
543 write_or_die(bundle_fd, v2_bundle_signature, strlen(v2_bundle_signature));
544 } else {
545 const char *capability = "@object-format=";
546 write_or_die(bundle_fd, v3_bundle_signature, strlen(v3_bundle_signature));
547 write_or_die(bundle_fd, capability, strlen(capability));
548 write_or_die(bundle_fd, the_hash_algo->name, strlen(the_hash_algo->name));
549 write_or_die(bundle_fd, "\n", 1);
551 if (revs.filter.choice) {
552 const char *value = expand_list_objects_filter_spec(&revs.filter);
553 capability = "@filter=";
554 write_or_die(bundle_fd, capability, strlen(capability));
555 write_or_die(bundle_fd, value, strlen(value));
556 write_or_die(bundle_fd, "\n", 1);
560 /* save revs.pending in revs_copy for later use */
561 memcpy(&revs_copy, &revs, sizeof(revs));
562 revs_copy.pending.nr = 0;
563 revs_copy.pending.alloc = 0;
564 revs_copy.pending.objects = NULL;
565 for (i = 0; i < revs.pending.nr; i++) {
566 struct object_array_entry *e = revs.pending.objects + i;
567 if (e)
568 add_object_array_with_path(e->item, e->name,
569 &revs_copy.pending,
570 e->mode, e->path);
573 /* write prerequisites */
574 revs.boundary = 1;
575 if (prepare_revision_walk(&revs))
576 die("revision walk setup failed");
577 bpi.fd = bundle_fd;
578 bpi.pending = &revs_copy.pending;
581 * Remove any object walking here. We only care about commits and
582 * tags here. The revs_copy has the right instances of these values.
584 revs.blob_objects = revs.tree_objects = 0;
585 traverse_commit_list(&revs, write_bundle_prerequisites, NULL, &bpi);
586 object_array_remove_duplicates(&revs_copy.pending);
588 /* write bundle refs */
589 ref_count = write_bundle_refs(bundle_fd, &revs_copy);
590 if (!ref_count)
591 die(_("Refusing to create empty bundle."));
592 else if (ref_count < 0)
593 goto err;
595 /* write pack */
596 if (write_pack_data(bundle_fd, &revs_copy, pack_options))
597 goto err;
599 if (!bundle_to_stdout) {
600 if (commit_lock_file(&lock))
601 die_errno(_("cannot create '%s'"), path);
603 return 0;
604 err:
605 rollback_lock_file(&lock);
606 return -1;
609 int unbundle(struct repository *r, struct bundle_header *header,
610 int bundle_fd, struct strvec *extra_index_pack_args,
611 enum verify_bundle_flags flags)
613 struct child_process ip = CHILD_PROCESS_INIT;
615 if (verify_bundle(r, header, flags))
616 return -1;
618 strvec_pushl(&ip.args, "index-pack", "--fix-thin", "--stdin", NULL);
620 /* If there is a filter, then we need to create the promisor pack. */
621 if (header->filter.choice)
622 strvec_push(&ip.args, "--promisor=from-bundle");
624 if (extra_index_pack_args) {
625 strvec_pushv(&ip.args, extra_index_pack_args->v);
626 strvec_clear(extra_index_pack_args);
629 ip.in = bundle_fd;
630 ip.no_stdout = 1;
631 ip.git_cmd = 1;
632 if (run_command(&ip))
633 return error(_("index-pack died"));
634 return 0;