12 static const char index_pack_usage[] =
13 "git index-pack [-v] [-o <index-file>] [{ ---keep | --keep=<msg> }] [--strict] { <pack-file> | --stdin [--fix-thin] [<pack-file>] }";
17 struct pack_idx_entry idx;
19 unsigned int hdr_size;
20 enum object_type type;
21 enum object_type real_type;
25 unsigned char sha1[20];
30 struct base_data *base;
31 struct base_data *child;
32 struct object_entry *obj;
38 * Even if sizeof(union delta_base) == 24 on 64-bit archs, we really want
39 * to memcmp() only the first 20 bytes.
41 #define UNION_BASE_SZ 20
43 #define FLAG_LINK (1u<<20)
44 #define FLAG_CHECKED (1u<<21)
48 union delta_base base;
52 static struct object_entry *objects;
53 static struct delta_entry *deltas;
54 static struct base_data *base_cache;
55 static size_t base_cache_used;
56 static int nr_objects;
58 static int nr_resolved_deltas;
60 static int from_stdin;
64 static struct progress *progress;
66 /* We always read in 4kB chunks. */
67 static unsigned char input_buffer[4096];
68 static unsigned int input_offset, input_len;
69 static off_t consumed_bytes;
70 static SHA_CTX input_ctx;
71 static uint32_t input_crc32;
72 static int input_fd, output_fd, pack_fd;
74 static int mark_link(struct object *obj, int type, void *data)
79 if (type != OBJ_ANY && obj->type != type)
80 die("object type mismatch at %s", sha1_to_hex(obj->sha1));
82 obj->flags |= FLAG_LINK;
86 /* The content of each linked object must have been checked
87 or it must be already present in the object database */
88 static void check_object(struct object *obj)
93 if (!(obj->flags & FLAG_LINK))
96 if (!(obj->flags & FLAG_CHECKED)) {
98 int type = sha1_object_info(obj->sha1, &size);
99 if (type != obj->type || type <= 0)
100 die("object of unexpected type");
101 obj->flags |= FLAG_CHECKED;
106 static void check_objects(void)
110 max = get_max_object_index();
111 for (i = 0; i < max; i++)
112 check_object(get_indexed_object(i));
116 /* Discard current buffer used content. */
117 static void flush(void)
121 write_or_die(output_fd, input_buffer, input_offset);
122 SHA1_Update(&input_ctx, input_buffer, input_offset);
123 memmove(input_buffer, input_buffer + input_offset, input_len);
129 * Make sure at least "min" bytes are available in the buffer, and
130 * return the pointer to the buffer.
132 static void *fill(int min)
134 if (min <= input_len)
135 return input_buffer + input_offset;
136 if (min > sizeof(input_buffer))
137 die("cannot fill %d bytes", min);
140 ssize_t ret = xread(input_fd, input_buffer + input_len,
141 sizeof(input_buffer) - input_len);
145 die("read error on input: %s", strerror(errno));
149 display_throughput(progress, consumed_bytes + input_len);
150 } while (input_len < min);
154 static void use(int bytes)
156 if (bytes > input_len)
157 die("used more bytes than were available");
158 input_crc32 = crc32(input_crc32, input_buffer + input_offset, bytes);
160 input_offset += bytes;
162 /* make sure off_t is sufficiently large not to wrap */
163 if (consumed_bytes > consumed_bytes + bytes)
164 die("pack too large for current definition of off_t");
165 consumed_bytes += bytes;
168 static char *open_pack_file(char *pack_name)
173 static char tmpfile[PATH_MAX];
174 snprintf(tmpfile, sizeof(tmpfile),
175 "%s/pack/tmp_pack_XXXXXX", get_object_directory());
176 output_fd = xmkstemp(tmpfile);
177 pack_name = xstrdup(tmpfile);
179 output_fd = open(pack_name, O_CREAT|O_EXCL|O_RDWR, 0600);
181 die("unable to create %s: %s\n", pack_name, strerror(errno));
184 input_fd = open(pack_name, O_RDONLY);
186 die("cannot open packfile '%s': %s",
187 pack_name, strerror(errno));
191 SHA1_Init(&input_ctx);
195 static void parse_pack_header(void)
197 struct pack_header *hdr = fill(sizeof(struct pack_header));
199 /* Header consistency check */
200 if (hdr->hdr_signature != htonl(PACK_SIGNATURE))
201 die("pack signature mismatch");
202 if (!pack_version_ok(hdr->hdr_version))
203 die("pack version %"PRIu32" unsupported",
204 ntohl(hdr->hdr_version));
206 nr_objects = ntohl(hdr->hdr_entries);
207 use(sizeof(struct pack_header));
210 static void bad_object(unsigned long offset, const char *format,
211 ...) NORETURN __attribute__((format (printf, 2, 3)));
213 static void bad_object(unsigned long offset, const char *format, ...)
218 va_start(params, format);
219 vsnprintf(buf, sizeof(buf), format, params);
221 die("pack has bad object at offset %lu: %s", offset, buf);
224 static void prune_base_data(struct base_data *retain)
226 struct base_data *b = base_cache;
228 base_cache_used > delta_base_cache_limit && b;
230 if (b->data && b != retain) {
233 base_cache_used -= b->size;
238 static void link_base_data(struct base_data *base, struct base_data *c)
247 base_cache_used += c->size;
251 static void unlink_base_data(struct base_data *c)
253 struct base_data *base = c->base;
260 base_cache_used -= c->size;
264 static void *unpack_entry_data(unsigned long offset, unsigned long size)
267 void *buf = xmalloc(size);
269 memset(&stream, 0, sizeof(stream));
270 stream.next_out = buf;
271 stream.avail_out = size;
272 stream.next_in = fill(1);
273 stream.avail_in = input_len;
274 inflateInit(&stream);
277 int ret = inflate(&stream, 0);
278 use(input_len - stream.avail_in);
279 if (stream.total_out == size && ret == Z_STREAM_END)
282 bad_object(offset, "inflate returned %d", ret);
283 stream.next_in = fill(1);
284 stream.avail_in = input_len;
290 static void *unpack_raw_entry(struct object_entry *obj, union delta_base *delta_base)
298 obj->idx.offset = consumed_bytes;
299 input_crc32 = crc32(0, Z_NULL, 0);
304 obj->type = (c >> 4) & 7;
311 size += (c & 0x7fUL) << shift;
318 hashcpy(delta_base->sha1, fill(20));
322 memset(delta_base, 0, sizeof(*delta_base));
326 base_offset = c & 127;
329 if (!base_offset || MSB(base_offset, 7))
330 bad_object(obj->idx.offset, "offset value overflow for delta base object");
334 base_offset = (base_offset << 7) + (c & 127);
336 delta_base->offset = obj->idx.offset - base_offset;
337 if (delta_base->offset >= obj->idx.offset)
338 bad_object(obj->idx.offset, "delta base offset is out of bound");
346 bad_object(obj->idx.offset, "unknown object type %d", obj->type);
348 obj->hdr_size = consumed_bytes - obj->idx.offset;
350 data = unpack_entry_data(obj->idx.offset, obj->size);
351 obj->idx.crc32 = input_crc32;
355 static void *get_data_from_pack(struct object_entry *obj)
357 off_t from = obj[0].idx.offset + obj[0].hdr_size;
358 unsigned long len = obj[1].idx.offset - from;
359 unsigned long rdy = 0;
360 unsigned char *src, *data;
367 ssize_t n = pread(pack_fd, data + rdy, len - rdy, from + rdy);
369 die("cannot pread pack file: %s", strerror(errno));
371 die("premature end of pack file, %lu bytes missing",
375 data = xmalloc(obj->size);
376 memset(&stream, 0, sizeof(stream));
377 stream.next_out = data;
378 stream.avail_out = obj->size;
379 stream.next_in = src;
380 stream.avail_in = len;
381 inflateInit(&stream);
382 while ((st = inflate(&stream, Z_FINISH)) == Z_OK);
384 if (st != Z_STREAM_END || stream.total_out != obj->size)
385 die("serious inflate inconsistency");
390 static int find_delta(const union delta_base *base)
392 int first = 0, last = nr_deltas;
394 while (first < last) {
395 int next = (first + last) / 2;
396 struct delta_entry *delta = &deltas[next];
399 cmp = memcmp(base, &delta->base, UNION_BASE_SZ);
411 static int find_delta_children(const union delta_base *base,
412 int *first_index, int *last_index)
414 int first = find_delta(base);
416 int end = nr_deltas - 1;
420 while (first > 0 && !memcmp(&deltas[first - 1].base, base, UNION_BASE_SZ))
422 while (last < end && !memcmp(&deltas[last + 1].base, base, UNION_BASE_SZ))
424 *first_index = first;
429 static void sha1_object(const void *data, unsigned long size,
430 enum object_type type, unsigned char *sha1)
432 hash_sha1_file(data, size, typename(type), sha1);
433 if (has_sha1_file(sha1)) {
435 enum object_type has_type;
436 unsigned long has_size;
437 has_data = read_sha1_file(sha1, &has_type, &has_size);
439 die("cannot read existing object %s", sha1_to_hex(sha1));
440 if (size != has_size || type != has_type ||
441 memcmp(data, has_data, size) != 0)
442 die("SHA1 COLLISION FOUND WITH %s !", sha1_to_hex(sha1));
446 if (type == OBJ_BLOB) {
447 struct blob *blob = lookup_blob(sha1);
449 blob->object.flags |= FLAG_CHECKED;
451 die("invalid blob object %s", sha1_to_hex(sha1));
455 void *buf = (void *) data;
458 * we do not need to free the memory here, as the
459 * buf is deleted by the caller.
461 obj = parse_object_buffer(sha1, type, size, buf, &eaten);
463 die("invalid %s", typename(type));
464 if (fsck_object(obj, 1, fsck_error_function))
465 die("Error in object");
466 if (fsck_walk(obj, mark_link, 0))
467 die("Not all child objects of %s are reachable", sha1_to_hex(obj->sha1));
469 if (obj->type == OBJ_TREE) {
470 struct tree *item = (struct tree *) obj;
473 if (obj->type == OBJ_COMMIT) {
474 struct commit *commit = (struct commit *) obj;
475 commit->buffer = NULL;
477 obj->flags |= FLAG_CHECKED;
482 static void *get_base_data(struct base_data *c)
485 struct object_entry *obj = c->obj;
487 if (obj->type == OBJ_REF_DELTA || obj->type == OBJ_OFS_DELTA) {
488 void *base = get_base_data(c->base);
489 void *raw = get_data_from_pack(obj);
490 c->data = patch_delta(
496 bad_object(obj->idx.offset, "failed to apply delta");
498 c->data = get_data_from_pack(obj);
500 base_cache_used += c->size;
506 static void resolve_delta(struct object_entry *delta_obj,
507 struct base_data *base_obj, enum object_type type)
510 unsigned long delta_size;
511 union delta_base delta_base;
513 struct base_data result;
515 delta_obj->real_type = type;
516 delta_data = get_data_from_pack(delta_obj);
517 delta_size = delta_obj->size;
518 result.data = patch_delta(get_base_data(base_obj), base_obj->size,
519 delta_data, delta_size,
523 bad_object(delta_obj->idx.offset, "failed to apply delta");
524 sha1_object(result.data, result.size, type, delta_obj->idx.sha1);
525 nr_resolved_deltas++;
527 result.obj = delta_obj;
528 link_base_data(base_obj, &result);
530 hashcpy(delta_base.sha1, delta_obj->idx.sha1);
531 if (!find_delta_children(&delta_base, &first, &last)) {
532 for (j = first; j <= last; j++) {
533 struct object_entry *child = objects + deltas[j].obj_no;
534 if (child->real_type == OBJ_REF_DELTA)
535 resolve_delta(child, &result, type);
539 memset(&delta_base, 0, sizeof(delta_base));
540 delta_base.offset = delta_obj->idx.offset;
541 if (!find_delta_children(&delta_base, &first, &last)) {
542 for (j = first; j <= last; j++) {
543 struct object_entry *child = objects + deltas[j].obj_no;
544 if (child->real_type == OBJ_OFS_DELTA)
545 resolve_delta(child, &result, type);
549 unlink_base_data(&result);
552 static int compare_delta_entry(const void *a, const void *b)
554 const struct delta_entry *delta_a = a;
555 const struct delta_entry *delta_b = b;
556 return memcmp(&delta_a->base, &delta_b->base, UNION_BASE_SZ);
559 /* Parse all objects and return the pack content SHA1 hash */
560 static void parse_pack_objects(unsigned char *sha1)
563 struct delta_entry *delta = deltas;
568 * - find locations of all objects;
569 * - calculate SHA1 of all non-delta objects;
570 * - remember base (SHA1 or offset) for all deltas.
573 progress = start_progress(
574 from_stdin ? "Receiving objects" : "Indexing objects",
576 for (i = 0; i < nr_objects; i++) {
577 struct object_entry *obj = &objects[i];
578 void *data = unpack_raw_entry(obj, &delta->base);
579 obj->real_type = obj->type;
580 if (obj->type == OBJ_REF_DELTA || obj->type == OBJ_OFS_DELTA) {
585 sha1_object(data, obj->size, obj->type, obj->idx.sha1);
587 display_progress(progress, i+1);
589 objects[i].idx.offset = consumed_bytes;
590 stop_progress(&progress);
592 /* Check pack integrity */
594 SHA1_Final(sha1, &input_ctx);
595 if (hashcmp(fill(20), sha1))
596 die("pack is corrupted (SHA1 mismatch)");
599 /* If input_fd is a file, we should have reached its end now. */
600 if (fstat(input_fd, &st))
601 die("cannot fstat packfile: %s", strerror(errno));
602 if (S_ISREG(st.st_mode) &&
603 lseek(input_fd, 0, SEEK_CUR) - input_len != st.st_size)
604 die("pack has junk at the end");
609 /* Sort deltas by base SHA1/offset for fast searching */
610 qsort(deltas, nr_deltas, sizeof(struct delta_entry),
611 compare_delta_entry);
615 * - for all non-delta objects, look if it is used as a base for
617 * - if used as a base, uncompress the object and apply all deltas,
618 * recursively checking if the resulting object is used as a base
619 * for some more deltas.
622 progress = start_progress("Resolving deltas", nr_deltas);
623 for (i = 0; i < nr_objects; i++) {
624 struct object_entry *obj = &objects[i];
625 union delta_base base;
626 int j, ref, ref_first, ref_last, ofs, ofs_first, ofs_last;
627 struct base_data base_obj;
629 if (obj->type == OBJ_REF_DELTA || obj->type == OBJ_OFS_DELTA)
631 hashcpy(base.sha1, obj->idx.sha1);
632 ref = !find_delta_children(&base, &ref_first, &ref_last);
633 memset(&base, 0, sizeof(base));
634 base.offset = obj->idx.offset;
635 ofs = !find_delta_children(&base, &ofs_first, &ofs_last);
638 base_obj.data = get_data_from_pack(obj);
639 base_obj.size = obj->size;
641 link_base_data(NULL, &base_obj);
644 for (j = ref_first; j <= ref_last; j++) {
645 struct object_entry *child = objects + deltas[j].obj_no;
646 if (child->real_type == OBJ_REF_DELTA)
647 resolve_delta(child, &base_obj, obj->type);
650 for (j = ofs_first; j <= ofs_last; j++) {
651 struct object_entry *child = objects + deltas[j].obj_no;
652 if (child->real_type == OBJ_OFS_DELTA)
653 resolve_delta(child, &base_obj, obj->type);
655 unlink_base_data(&base_obj);
656 display_progress(progress, nr_resolved_deltas);
660 static int write_compressed(struct sha1file *f, void *in, unsigned int size)
663 unsigned long maxsize;
666 memset(&stream, 0, sizeof(stream));
667 deflateInit(&stream, zlib_compression_level);
668 maxsize = deflateBound(&stream, size);
669 out = xmalloc(maxsize);
673 stream.avail_in = size;
674 stream.next_out = out;
675 stream.avail_out = maxsize;
676 while (deflate(&stream, Z_FINISH) == Z_OK);
679 size = stream.total_out;
680 sha1write(f, out, size);
685 static struct object_entry *append_obj_to_pack(struct sha1file *f,
686 const unsigned char *sha1, void *buf,
687 unsigned long size, enum object_type type)
689 struct object_entry *obj = &objects[nr_objects++];
690 unsigned char header[10];
691 unsigned long s = size;
693 unsigned char c = (type << 4) | (s & 15);
696 header[n++] = c | 0x80;
702 sha1write(f, header, n);
706 obj[0].real_type = type;
707 obj[1].idx.offset = obj[0].idx.offset + n;
708 obj[1].idx.offset += write_compressed(f, buf, size);
709 obj[0].idx.crc32 = crc32_end(f);
711 hashcpy(obj->idx.sha1, sha1);
715 static int delta_pos_compare(const void *_a, const void *_b)
717 struct delta_entry *a = *(struct delta_entry **)_a;
718 struct delta_entry *b = *(struct delta_entry **)_b;
719 return a->obj_no - b->obj_no;
722 static void fix_unresolved_deltas(struct sha1file *f, int nr_unresolved)
724 struct delta_entry **sorted_by_pos;
728 * Since many unresolved deltas may well be themselves base objects
729 * for more unresolved deltas, we really want to include the
730 * smallest number of base objects that would cover as much delta
731 * as possible by picking the
732 * trunc deltas first, allowing for other deltas to resolve without
733 * additional base objects. Since most base objects are to be found
734 * before deltas depending on them, a good heuristic is to start
735 * resolving deltas in the same order as their position in the pack.
737 sorted_by_pos = xmalloc(nr_unresolved * sizeof(*sorted_by_pos));
738 for (i = 0; i < nr_deltas; i++) {
739 if (objects[deltas[i].obj_no].real_type != OBJ_REF_DELTA)
741 sorted_by_pos[n++] = &deltas[i];
743 qsort(sorted_by_pos, n, sizeof(*sorted_by_pos), delta_pos_compare);
745 for (i = 0; i < n; i++) {
746 struct delta_entry *d = sorted_by_pos[i];
747 enum object_type type;
749 struct base_data base_obj;
751 if (objects[d->obj_no].real_type != OBJ_REF_DELTA)
753 base_obj.data = read_sha1_file(d->base.sha1, &type, &base_obj.size);
757 if (check_sha1_signature(d->base.sha1, base_obj.data,
758 base_obj.size, typename(type)))
759 die("local object %s is corrupt", sha1_to_hex(d->base.sha1));
760 base_obj.obj = append_obj_to_pack(f, d->base.sha1,
761 base_obj.data, base_obj.size, type);
762 link_base_data(NULL, &base_obj);
764 find_delta_children(&d->base, &first, &last);
765 for (j = first; j <= last; j++) {
766 struct object_entry *child = objects + deltas[j].obj_no;
767 if (child->real_type == OBJ_REF_DELTA)
768 resolve_delta(child, &base_obj, type);
771 unlink_base_data(&base_obj);
772 display_progress(progress, nr_resolved_deltas);
777 static void final(const char *final_pack_name, const char *curr_pack_name,
778 const char *final_index_name, const char *curr_index_name,
779 const char *keep_name, const char *keep_msg,
782 const char *report = "pack";
789 fsync_or_die(output_fd, curr_pack_name);
790 err = close(output_fd);
792 die("error while closing pack file: %s", strerror(errno));
793 chmod(curr_pack_name, 0444);
797 int keep_fd, keep_msg_len = strlen(keep_msg);
799 snprintf(name, sizeof(name), "%s/pack/pack-%s.keep",
800 get_object_directory(), sha1_to_hex(sha1));
803 keep_fd = open(keep_name, O_RDWR|O_CREAT|O_EXCL, 0600);
806 die("cannot write keep file");
808 if (keep_msg_len > 0) {
809 write_or_die(keep_fd, keep_msg, keep_msg_len);
810 write_or_die(keep_fd, "\n", 1);
812 if (close(keep_fd) != 0)
813 die("cannot write keep file");
818 if (final_pack_name != curr_pack_name) {
819 if (!final_pack_name) {
820 snprintf(name, sizeof(name), "%s/pack/pack-%s.pack",
821 get_object_directory(), sha1_to_hex(sha1));
822 final_pack_name = name;
824 if (move_temp_to_file(curr_pack_name, final_pack_name))
825 die("cannot store pack file");
828 chmod(curr_index_name, 0444);
829 if (final_index_name != curr_index_name) {
830 if (!final_index_name) {
831 snprintf(name, sizeof(name), "%s/pack/pack-%s.idx",
832 get_object_directory(), sha1_to_hex(sha1));
833 final_index_name = name;
835 if (move_temp_to_file(curr_index_name, final_index_name))
836 die("cannot store index file");
840 printf("%s\n", sha1_to_hex(sha1));
843 int len = snprintf(buf, sizeof(buf), "%s\t%s\n",
844 report, sha1_to_hex(sha1));
845 write_or_die(1, buf, len);
848 * Let's just mimic git-unpack-objects here and write
849 * the last part of the input buffer to stdout.
852 err = xwrite(1, input_buffer + input_offset, input_len);
861 static int git_index_pack_config(const char *k, const char *v, void *cb)
863 if (!strcmp(k, "pack.indexversion")) {
864 pack_idx_default_version = git_config_int(k, v);
865 if (pack_idx_default_version > 2)
866 die("bad pack.indexversion=%"PRIu32,
867 pack_idx_default_version);
870 return git_default_config(k, v, cb);
873 int main(int argc, char **argv)
875 int i, fix_thin_pack = 0;
876 char *curr_pack, *pack_name = NULL;
877 char *curr_index, *index_name = NULL;
878 const char *keep_name = NULL, *keep_msg = NULL;
879 char *index_name_buf = NULL, *keep_name_buf = NULL;
880 struct pack_idx_entry **idx_objects;
881 unsigned char pack_sha1[20];
884 setup_git_directory_gently(&nongit);
885 git_config(git_index_pack_config, NULL);
887 for (i = 1; i < argc; i++) {
891 if (!strcmp(arg, "--stdin")) {
893 } else if (!strcmp(arg, "--fix-thin")) {
895 } else if (!strcmp(arg, "--strict")) {
897 } else if (!strcmp(arg, "--keep")) {
899 } else if (!prefixcmp(arg, "--keep=")) {
901 } else if (!prefixcmp(arg, "--pack_header=")) {
902 struct pack_header *hdr;
905 hdr = (struct pack_header *)input_buffer;
906 hdr->hdr_signature = htonl(PACK_SIGNATURE);
907 hdr->hdr_version = htonl(strtoul(arg + 14, &c, 10));
910 hdr->hdr_entries = htonl(strtoul(c + 1, &c, 10));
913 input_len = sizeof(*hdr);
914 } else if (!strcmp(arg, "-v")) {
916 } else if (!strcmp(arg, "-o")) {
917 if (index_name || (i+1) >= argc)
918 usage(index_pack_usage);
919 index_name = argv[++i];
920 } else if (!prefixcmp(arg, "--index-version=")) {
922 pack_idx_default_version = strtoul(arg + 16, &c, 10);
923 if (pack_idx_default_version > 2)
926 pack_idx_off32_limit = strtoul(c+1, &c, 0);
927 if (*c || pack_idx_off32_limit & 0x80000000)
930 usage(index_pack_usage);
935 usage(index_pack_usage);
939 if (!pack_name && !from_stdin)
940 usage(index_pack_usage);
941 if (fix_thin_pack && !from_stdin)
942 die("--fix-thin cannot be used without --stdin");
943 if (!index_name && pack_name) {
944 int len = strlen(pack_name);
945 if (!has_extension(pack_name, ".pack"))
946 die("packfile name '%s' does not end with '.pack'",
948 index_name_buf = xmalloc(len);
949 memcpy(index_name_buf, pack_name, len - 5);
950 strcpy(index_name_buf + len - 5, ".idx");
951 index_name = index_name_buf;
953 if (keep_msg && !keep_name && pack_name) {
954 int len = strlen(pack_name);
955 if (!has_extension(pack_name, ".pack"))
956 die("packfile name '%s' does not end with '.pack'",
958 keep_name_buf = xmalloc(len);
959 memcpy(keep_name_buf, pack_name, len - 5);
960 strcpy(keep_name_buf + len - 5, ".keep");
961 keep_name = keep_name_buf;
964 curr_pack = open_pack_file(pack_name);
966 objects = xmalloc((nr_objects + 1) * sizeof(struct object_entry));
967 deltas = xmalloc(nr_objects * sizeof(struct delta_entry));
968 parse_pack_objects(pack_sha1);
969 if (nr_deltas == nr_resolved_deltas) {
970 stop_progress(&progress);
971 /* Flush remaining pack final 20-byte SHA1. */
976 unsigned char read_sha1[20], tail_sha1[20];
978 int nr_unresolved = nr_deltas - nr_resolved_deltas;
979 int nr_objects_initial = nr_objects;
980 if (nr_unresolved <= 0)
981 die("confusion beyond insanity");
982 objects = xrealloc(objects,
983 (nr_objects + nr_unresolved + 1)
985 f = sha1fd(output_fd, curr_pack);
986 fix_unresolved_deltas(f, nr_unresolved);
987 sprintf(msg, "completed with %d local objects",
988 nr_objects - nr_objects_initial);
989 stop_progress_msg(&progress, msg);
990 sha1close(f, tail_sha1, 0);
991 hashcpy(read_sha1, pack_sha1);
992 fixup_pack_header_footer(output_fd, pack_sha1,
993 curr_pack, nr_objects,
994 read_sha1, consumed_bytes-20);
995 if (hashcmp(read_sha1, tail_sha1) != 0)
996 die("Unexpected tail checksum for %s "
997 "(disk corruption?)", curr_pack);
999 if (nr_deltas != nr_resolved_deltas)
1000 die("pack has %d unresolved deltas",
1001 nr_deltas - nr_resolved_deltas);
1007 idx_objects = xmalloc((nr_objects) * sizeof(struct pack_idx_entry *));
1008 for (i = 0; i < nr_objects; i++)
1009 idx_objects[i] = &objects[i].idx;
1010 curr_index = write_idx_file(index_name, idx_objects, nr_objects, pack_sha1);
1013 final(pack_name, curr_pack,
1014 index_name, curr_index,
1015 keep_name, keep_msg,
1018 free(index_name_buf);
1019 free(keep_name_buf);
1020 if (pack_name == NULL)
1022 if (index_name == NULL)