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 git_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 git_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 git_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
)
248 base_cache_used
+= c
->size
;
252 static void unlink_base_data(struct base_data
*c
)
254 struct base_data
*base
= c
->base
;
261 base_cache_used
-= c
->size
;
265 static void *unpack_entry_data(unsigned long offset
, unsigned long size
)
268 void *buf
= xmalloc(size
);
270 memset(&stream
, 0, sizeof(stream
));
271 stream
.next_out
= buf
;
272 stream
.avail_out
= size
;
273 stream
.next_in
= fill(1);
274 stream
.avail_in
= input_len
;
275 inflateInit(&stream
);
278 int ret
= inflate(&stream
, 0);
279 use(input_len
- stream
.avail_in
);
280 if (stream
.total_out
== size
&& ret
== Z_STREAM_END
)
283 bad_object(offset
, "inflate returned %d", ret
);
284 stream
.next_in
= fill(1);
285 stream
.avail_in
= input_len
;
291 static void *unpack_raw_entry(struct object_entry
*obj
, union delta_base
*delta_base
)
299 obj
->idx
.offset
= consumed_bytes
;
300 input_crc32
= crc32(0, Z_NULL
, 0);
305 obj
->type
= (c
>> 4) & 7;
312 size
+= (c
& 0x7fUL
) << shift
;
319 hashcpy(delta_base
->sha1
, fill(20));
323 memset(delta_base
, 0, sizeof(*delta_base
));
327 base_offset
= c
& 127;
330 if (!base_offset
|| MSB(base_offset
, 7))
331 bad_object(obj
->idx
.offset
, "offset value overflow for delta base object");
335 base_offset
= (base_offset
<< 7) + (c
& 127);
337 delta_base
->offset
= obj
->idx
.offset
- base_offset
;
338 if (delta_base
->offset
>= obj
->idx
.offset
)
339 bad_object(obj
->idx
.offset
, "delta base offset is out of bound");
347 bad_object(obj
->idx
.offset
, "unknown object type %d", obj
->type
);
349 obj
->hdr_size
= consumed_bytes
- obj
->idx
.offset
;
351 data
= unpack_entry_data(obj
->idx
.offset
, obj
->size
);
352 obj
->idx
.crc32
= input_crc32
;
356 static void *get_data_from_pack(struct object_entry
*obj
)
358 off_t from
= obj
[0].idx
.offset
+ obj
[0].hdr_size
;
359 unsigned long len
= obj
[1].idx
.offset
- from
;
360 unsigned long rdy
= 0;
361 unsigned char *src
, *data
;
368 ssize_t n
= pread(pack_fd
, data
+ rdy
, len
- rdy
, from
+ rdy
);
370 die("cannot pread pack file: %s", strerror(errno
));
372 die("premature end of pack file, %lu bytes missing",
376 data
= xmalloc(obj
->size
);
377 memset(&stream
, 0, sizeof(stream
));
378 stream
.next_out
= data
;
379 stream
.avail_out
= obj
->size
;
380 stream
.next_in
= src
;
381 stream
.avail_in
= len
;
382 inflateInit(&stream
);
383 while ((st
= inflate(&stream
, Z_FINISH
)) == Z_OK
);
385 if (st
!= Z_STREAM_END
|| stream
.total_out
!= obj
->size
)
386 die("serious inflate inconsistency");
391 static int find_delta(const union delta_base
*base
)
393 int first
= 0, last
= nr_deltas
;
395 while (first
< last
) {
396 int next
= (first
+ last
) / 2;
397 struct delta_entry
*delta
= &deltas
[next
];
400 cmp
= memcmp(base
, &delta
->base
, UNION_BASE_SZ
);
412 static int find_delta_children(const union delta_base
*base
,
413 int *first_index
, int *last_index
)
415 int first
= find_delta(base
);
417 int end
= nr_deltas
- 1;
421 while (first
> 0 && !memcmp(&deltas
[first
- 1].base
, base
, UNION_BASE_SZ
))
423 while (last
< end
&& !memcmp(&deltas
[last
+ 1].base
, base
, UNION_BASE_SZ
))
425 *first_index
= first
;
430 static void sha1_object(const void *data
, unsigned long size
,
431 enum object_type type
, unsigned char *sha1
)
433 hash_sha1_file(data
, size
, typename(type
), sha1
);
434 if (has_sha1_file(sha1
)) {
436 enum object_type has_type
;
437 unsigned long has_size
;
438 has_data
= read_sha1_file(sha1
, &has_type
, &has_size
);
440 die("cannot read existing object %s", sha1_to_hex(sha1
));
441 if (size
!= has_size
|| type
!= has_type
||
442 memcmp(data
, has_data
, size
) != 0)
443 die("SHA1 COLLISION FOUND WITH %s !", sha1_to_hex(sha1
));
447 if (type
== OBJ_BLOB
) {
448 struct blob
*blob
= lookup_blob(sha1
);
450 blob
->object
.flags
|= FLAG_CHECKED
;
452 die("invalid blob object %s", sha1_to_hex(sha1
));
456 void *buf
= (void *) data
;
459 * we do not need to free the memory here, as the
460 * buf is deleted by the caller.
462 obj
= parse_object_buffer(sha1
, type
, size
, buf
, &eaten
);
464 die("invalid %s", typename(type
));
465 if (fsck_object(obj
, 1, fsck_error_function
))
466 die("Error in object");
467 if (fsck_walk(obj
, mark_link
, 0))
468 die("Not all child objects of %s are reachable", sha1_to_hex(obj
->sha1
));
470 if (obj
->type
== OBJ_TREE
) {
471 struct tree
*item
= (struct tree
*) obj
;
474 if (obj
->type
== OBJ_COMMIT
) {
475 struct commit
*commit
= (struct commit
*) obj
;
476 commit
->buffer
= NULL
;
478 obj
->flags
|= FLAG_CHECKED
;
483 static void *get_base_data(struct base_data
*c
)
486 struct object_entry
*obj
= c
->obj
;
488 if (obj
->type
== OBJ_REF_DELTA
|| obj
->type
== OBJ_OFS_DELTA
) {
489 void *base
= get_base_data(c
->base
);
490 void *raw
= get_data_from_pack(obj
);
491 c
->data
= patch_delta(
497 bad_object(obj
->idx
.offset
, "failed to apply delta");
499 c
->data
= get_data_from_pack(obj
);
503 base_cache_used
+= c
->size
;
509 static void resolve_delta(struct object_entry
*delta_obj
,
510 struct base_data
*base
, struct base_data
*result
)
513 unsigned long delta_size
;
515 delta_obj
->real_type
= base
->obj
->type
;
516 delta_data
= get_data_from_pack(delta_obj
);
517 delta_size
= delta_obj
->size
;
518 result
->obj
= delta_obj
;
519 result
->data
= patch_delta(get_base_data(base
), base
->obj
->size
,
520 delta_data
, delta_size
, &result
->size
);
523 bad_object(delta_obj
->idx
.offset
, "failed to apply delta");
524 sha1_object(result
->data
, result
->size
, delta_obj
->real_type
,
525 delta_obj
->idx
.sha1
);
526 nr_resolved_deltas
++;
529 static void find_unresolved_deltas(struct base_data
*base
,
530 struct base_data
*prev_base
)
532 int i
, ref
, ref_first
, ref_last
, ofs
, ofs_first
, ofs_last
;
535 * This is a recursive function. Those brackets should help reducing
536 * stack usage by limiting the scope of the delta_base union.
539 union delta_base base_spec
;
541 hashcpy(base_spec
.sha1
, base
->obj
->idx
.sha1
);
542 ref
= !find_delta_children(&base_spec
, &ref_first
, &ref_last
);
544 memset(&base_spec
, 0, sizeof(base_spec
));
545 base_spec
.offset
= base
->obj
->idx
.offset
;
546 ofs
= !find_delta_children(&base_spec
, &ofs_first
, &ofs_last
);
552 link_base_data(prev_base
, base
);
555 for (i
= ref_first
; i
<= ref_last
; i
++) {
556 struct object_entry
*child
= objects
+ deltas
[i
].obj_no
;
557 if (child
->real_type
== OBJ_REF_DELTA
) {
558 struct base_data result
;
559 resolve_delta(child
, base
, &result
);
560 find_unresolved_deltas(&result
, base
);
566 for (i
= ofs_first
; i
<= ofs_last
; i
++) {
567 struct object_entry
*child
= objects
+ deltas
[i
].obj_no
;
568 if (child
->real_type
== OBJ_OFS_DELTA
) {
569 struct base_data result
;
570 resolve_delta(child
, base
, &result
);
571 find_unresolved_deltas(&result
, base
);
576 unlink_base_data(base
);
579 static int compare_delta_entry(const void *a
, const void *b
)
581 const struct delta_entry
*delta_a
= a
;
582 const struct delta_entry
*delta_b
= b
;
583 return memcmp(&delta_a
->base
, &delta_b
->base
, UNION_BASE_SZ
);
586 /* Parse all objects and return the pack content SHA1 hash */
587 static void parse_pack_objects(unsigned char *sha1
)
590 struct delta_entry
*delta
= deltas
;
595 * - find locations of all objects;
596 * - calculate SHA1 of all non-delta objects;
597 * - remember base (SHA1 or offset) for all deltas.
600 progress
= start_progress(
601 from_stdin
? "Receiving objects" : "Indexing objects",
603 for (i
= 0; i
< nr_objects
; i
++) {
604 struct object_entry
*obj
= &objects
[i
];
605 void *data
= unpack_raw_entry(obj
, &delta
->base
);
606 obj
->real_type
= obj
->type
;
607 if (obj
->type
== OBJ_REF_DELTA
|| obj
->type
== OBJ_OFS_DELTA
) {
612 sha1_object(data
, obj
->size
, obj
->type
, obj
->idx
.sha1
);
614 display_progress(progress
, i
+1);
616 objects
[i
].idx
.offset
= consumed_bytes
;
617 stop_progress(&progress
);
619 /* Check pack integrity */
621 git_SHA1_Final(sha1
, &input_ctx
);
622 if (hashcmp(fill(20), sha1
))
623 die("pack is corrupted (SHA1 mismatch)");
626 /* If input_fd is a file, we should have reached its end now. */
627 if (fstat(input_fd
, &st
))
628 die("cannot fstat packfile: %s", strerror(errno
));
629 if (S_ISREG(st
.st_mode
) &&
630 lseek(input_fd
, 0, SEEK_CUR
) - input_len
!= st
.st_size
)
631 die("pack has junk at the end");
636 /* Sort deltas by base SHA1/offset for fast searching */
637 qsort(deltas
, nr_deltas
, sizeof(struct delta_entry
),
638 compare_delta_entry
);
642 * - for all non-delta objects, look if it is used as a base for
644 * - if used as a base, uncompress the object and apply all deltas,
645 * recursively checking if the resulting object is used as a base
646 * for some more deltas.
649 progress
= start_progress("Resolving deltas", nr_deltas
);
650 for (i
= 0; i
< nr_objects
; i
++) {
651 struct object_entry
*obj
= &objects
[i
];
652 struct base_data base_obj
;
654 if (obj
->type
== OBJ_REF_DELTA
|| obj
->type
== OBJ_OFS_DELTA
)
657 base_obj
.data
= NULL
;
658 find_unresolved_deltas(&base_obj
, NULL
);
659 display_progress(progress
, nr_resolved_deltas
);
663 static int write_compressed(struct sha1file
*f
, void *in
, unsigned int size
)
666 unsigned long maxsize
;
669 memset(&stream
, 0, sizeof(stream
));
670 deflateInit(&stream
, zlib_compression_level
);
671 maxsize
= deflateBound(&stream
, size
);
672 out
= xmalloc(maxsize
);
676 stream
.avail_in
= size
;
677 stream
.next_out
= out
;
678 stream
.avail_out
= maxsize
;
679 while (deflate(&stream
, Z_FINISH
) == Z_OK
);
682 size
= stream
.total_out
;
683 sha1write(f
, out
, size
);
688 static struct object_entry
*append_obj_to_pack(struct sha1file
*f
,
689 const unsigned char *sha1
, void *buf
,
690 unsigned long size
, enum object_type type
)
692 struct object_entry
*obj
= &objects
[nr_objects
++];
693 unsigned char header
[10];
694 unsigned long s
= size
;
696 unsigned char c
= (type
<< 4) | (s
& 15);
699 header
[n
++] = c
| 0x80;
705 sha1write(f
, header
, n
);
709 obj
[0].real_type
= type
;
710 obj
[1].idx
.offset
= obj
[0].idx
.offset
+ n
;
711 obj
[1].idx
.offset
+= write_compressed(f
, buf
, size
);
712 obj
[0].idx
.crc32
= crc32_end(f
);
714 hashcpy(obj
->idx
.sha1
, sha1
);
718 static int delta_pos_compare(const void *_a
, const void *_b
)
720 struct delta_entry
*a
= *(struct delta_entry
**)_a
;
721 struct delta_entry
*b
= *(struct delta_entry
**)_b
;
722 return a
->obj_no
- b
->obj_no
;
725 static void fix_unresolved_deltas(struct sha1file
*f
, int nr_unresolved
)
727 struct delta_entry
**sorted_by_pos
;
731 * Since many unresolved deltas may well be themselves base objects
732 * for more unresolved deltas, we really want to include the
733 * smallest number of base objects that would cover as much delta
734 * as possible by picking the
735 * trunc deltas first, allowing for other deltas to resolve without
736 * additional base objects. Since most base objects are to be found
737 * before deltas depending on them, a good heuristic is to start
738 * resolving deltas in the same order as their position in the pack.
740 sorted_by_pos
= xmalloc(nr_unresolved
* sizeof(*sorted_by_pos
));
741 for (i
= 0; i
< nr_deltas
; i
++) {
742 if (objects
[deltas
[i
].obj_no
].real_type
!= OBJ_REF_DELTA
)
744 sorted_by_pos
[n
++] = &deltas
[i
];
746 qsort(sorted_by_pos
, n
, sizeof(*sorted_by_pos
), delta_pos_compare
);
748 for (i
= 0; i
< n
; i
++) {
749 struct delta_entry
*d
= sorted_by_pos
[i
];
750 enum object_type type
;
751 struct base_data base_obj
;
753 if (objects
[d
->obj_no
].real_type
!= OBJ_REF_DELTA
)
755 base_obj
.data
= read_sha1_file(d
->base
.sha1
, &type
, &base_obj
.size
);
759 if (check_sha1_signature(d
->base
.sha1
, base_obj
.data
,
760 base_obj
.size
, typename(type
)))
761 die("local object %s is corrupt", sha1_to_hex(d
->base
.sha1
));
762 base_obj
.obj
= append_obj_to_pack(f
, d
->base
.sha1
,
763 base_obj
.data
, base_obj
.size
, type
);
764 find_unresolved_deltas(&base_obj
, NULL
);
765 display_progress(progress
, nr_resolved_deltas
);
770 static void final(const char *final_pack_name
, const char *curr_pack_name
,
771 const char *final_index_name
, const char *curr_index_name
,
772 const char *keep_name
, const char *keep_msg
,
775 const char *report
= "pack";
782 fsync_or_die(output_fd
, curr_pack_name
);
783 err
= close(output_fd
);
785 die("error while closing pack file: %s", strerror(errno
));
786 chmod(curr_pack_name
, 0444);
790 int keep_fd
, keep_msg_len
= strlen(keep_msg
);
792 snprintf(name
, sizeof(name
), "%s/pack/pack-%s.keep",
793 get_object_directory(), sha1_to_hex(sha1
));
796 keep_fd
= open(keep_name
, O_RDWR
|O_CREAT
|O_EXCL
, 0600);
799 die("cannot write keep file");
801 if (keep_msg_len
> 0) {
802 write_or_die(keep_fd
, keep_msg
, keep_msg_len
);
803 write_or_die(keep_fd
, "\n", 1);
805 if (close(keep_fd
) != 0)
806 die("cannot write keep file");
811 if (final_pack_name
!= curr_pack_name
) {
812 if (!final_pack_name
) {
813 snprintf(name
, sizeof(name
), "%s/pack/pack-%s.pack",
814 get_object_directory(), sha1_to_hex(sha1
));
815 final_pack_name
= name
;
817 if (move_temp_to_file(curr_pack_name
, final_pack_name
))
818 die("cannot store pack file");
821 chmod(curr_index_name
, 0444);
822 if (final_index_name
!= curr_index_name
) {
823 if (!final_index_name
) {
824 snprintf(name
, sizeof(name
), "%s/pack/pack-%s.idx",
825 get_object_directory(), sha1_to_hex(sha1
));
826 final_index_name
= name
;
828 if (move_temp_to_file(curr_index_name
, final_index_name
))
829 die("cannot store index file");
833 printf("%s\n", sha1_to_hex(sha1
));
836 int len
= snprintf(buf
, sizeof(buf
), "%s\t%s\n",
837 report
, sha1_to_hex(sha1
));
838 write_or_die(1, buf
, len
);
841 * Let's just mimic git-unpack-objects here and write
842 * the last part of the input buffer to stdout.
845 err
= xwrite(1, input_buffer
+ input_offset
, input_len
);
854 static int git_index_pack_config(const char *k
, const char *v
, void *cb
)
856 if (!strcmp(k
, "pack.indexversion")) {
857 pack_idx_default_version
= git_config_int(k
, v
);
858 if (pack_idx_default_version
> 2)
859 die("bad pack.indexversion=%"PRIu32
,
860 pack_idx_default_version
);
863 return git_default_config(k
, v
, cb
);
866 int main(int argc
, char **argv
)
868 int i
, fix_thin_pack
= 0;
869 char *curr_pack
, *pack_name
= NULL
;
870 char *curr_index
, *index_name
= NULL
;
871 const char *keep_name
= NULL
, *keep_msg
= NULL
;
872 char *index_name_buf
= NULL
, *keep_name_buf
= NULL
;
873 struct pack_idx_entry
**idx_objects
;
874 unsigned char pack_sha1
[20];
877 setup_git_directory_gently(&nongit
);
878 git_config(git_index_pack_config
, NULL
);
880 for (i
= 1; i
< argc
; i
++) {
884 if (!strcmp(arg
, "--stdin")) {
886 } else if (!strcmp(arg
, "--fix-thin")) {
888 } else if (!strcmp(arg
, "--strict")) {
890 } else if (!strcmp(arg
, "--keep")) {
892 } else if (!prefixcmp(arg
, "--keep=")) {
894 } else if (!prefixcmp(arg
, "--pack_header=")) {
895 struct pack_header
*hdr
;
898 hdr
= (struct pack_header
*)input_buffer
;
899 hdr
->hdr_signature
= htonl(PACK_SIGNATURE
);
900 hdr
->hdr_version
= htonl(strtoul(arg
+ 14, &c
, 10));
903 hdr
->hdr_entries
= htonl(strtoul(c
+ 1, &c
, 10));
906 input_len
= sizeof(*hdr
);
907 } else if (!strcmp(arg
, "-v")) {
909 } else if (!strcmp(arg
, "-o")) {
910 if (index_name
|| (i
+1) >= argc
)
911 usage(index_pack_usage
);
912 index_name
= argv
[++i
];
913 } else if (!prefixcmp(arg
, "--index-version=")) {
915 pack_idx_default_version
= strtoul(arg
+ 16, &c
, 10);
916 if (pack_idx_default_version
> 2)
919 pack_idx_off32_limit
= strtoul(c
+1, &c
, 0);
920 if (*c
|| pack_idx_off32_limit
& 0x80000000)
923 usage(index_pack_usage
);
928 usage(index_pack_usage
);
932 if (!pack_name
&& !from_stdin
)
933 usage(index_pack_usage
);
934 if (fix_thin_pack
&& !from_stdin
)
935 die("--fix-thin cannot be used without --stdin");
936 if (!index_name
&& pack_name
) {
937 int len
= strlen(pack_name
);
938 if (!has_extension(pack_name
, ".pack"))
939 die("packfile name '%s' does not end with '.pack'",
941 index_name_buf
= xmalloc(len
);
942 memcpy(index_name_buf
, pack_name
, len
- 5);
943 strcpy(index_name_buf
+ len
- 5, ".idx");
944 index_name
= index_name_buf
;
946 if (keep_msg
&& !keep_name
&& pack_name
) {
947 int len
= strlen(pack_name
);
948 if (!has_extension(pack_name
, ".pack"))
949 die("packfile name '%s' does not end with '.pack'",
951 keep_name_buf
= xmalloc(len
);
952 memcpy(keep_name_buf
, pack_name
, len
- 5);
953 strcpy(keep_name_buf
+ len
- 5, ".keep");
954 keep_name
= keep_name_buf
;
957 curr_pack
= open_pack_file(pack_name
);
959 objects
= xmalloc((nr_objects
+ 1) * sizeof(struct object_entry
));
960 deltas
= xmalloc(nr_objects
* sizeof(struct delta_entry
));
961 parse_pack_objects(pack_sha1
);
962 if (nr_deltas
== nr_resolved_deltas
) {
963 stop_progress(&progress
);
964 /* Flush remaining pack final 20-byte SHA1. */
969 unsigned char read_sha1
[20], tail_sha1
[20];
971 int nr_unresolved
= nr_deltas
- nr_resolved_deltas
;
972 int nr_objects_initial
= nr_objects
;
973 if (nr_unresolved
<= 0)
974 die("confusion beyond insanity");
975 objects
= xrealloc(objects
,
976 (nr_objects
+ nr_unresolved
+ 1)
978 f
= sha1fd(output_fd
, curr_pack
);
979 fix_unresolved_deltas(f
, nr_unresolved
);
980 sprintf(msg
, "completed with %d local objects",
981 nr_objects
- nr_objects_initial
);
982 stop_progress_msg(&progress
, msg
);
983 sha1close(f
, tail_sha1
, 0);
984 hashcpy(read_sha1
, pack_sha1
);
985 fixup_pack_header_footer(output_fd
, pack_sha1
,
986 curr_pack
, nr_objects
,
987 read_sha1
, consumed_bytes
-20);
988 if (hashcmp(read_sha1
, tail_sha1
) != 0)
989 die("Unexpected tail checksum for %s "
990 "(disk corruption?)", curr_pack
);
992 if (nr_deltas
!= nr_resolved_deltas
)
993 die("pack has %d unresolved deltas",
994 nr_deltas
- nr_resolved_deltas
);
1000 idx_objects
= xmalloc((nr_objects
) * sizeof(struct pack_idx_entry
*));
1001 for (i
= 0; i
< nr_objects
; i
++)
1002 idx_objects
[i
] = &objects
[i
].idx
;
1003 curr_index
= write_idx_file(index_name
, idx_objects
, nr_objects
, pack_sha1
);
1006 final(pack_name
, curr_pack
,
1007 index_name
, curr_index
,
1008 keep_name
, keep_msg
,
1011 free(index_name_buf
);
1012 free(keep_name_buf
);
1013 if (pack_name
== NULL
)
1015 if (index_name
== NULL
)