13 static const char index_pack_usage
[] =
14 "git index-pack [-v] [-o <index-file>] [{ ---keep | --keep=<msg> }] [--strict] { <pack-file> | --stdin [--fix-thin] [<pack-file>] }";
18 struct pack_idx_entry idx
;
20 unsigned int hdr_size
;
21 enum object_type type
;
22 enum object_type real_type
;
26 unsigned char sha1
[20];
31 struct base_data
*base
;
32 struct base_data
*child
;
33 struct object_entry
*obj
;
39 * Even if sizeof(union delta_base) == 24 on 64-bit archs, we really want
40 * to memcmp() only the first 20 bytes.
42 #define UNION_BASE_SZ 20
44 #define FLAG_LINK (1u<<20)
45 #define FLAG_CHECKED (1u<<21)
49 union delta_base base
;
53 static struct object_entry
*objects
;
54 static struct delta_entry
*deltas
;
55 static struct base_data
*base_cache
;
56 static size_t base_cache_used
;
57 static int nr_objects
;
59 static int nr_resolved_deltas
;
61 static int from_stdin
;
65 static struct progress
*progress
;
67 /* We always read in 4kB chunks. */
68 static unsigned char input_buffer
[4096];
69 static unsigned int input_offset
, input_len
;
70 static off_t consumed_bytes
;
71 static git_SHA_CTX input_ctx
;
72 static uint32_t input_crc32
;
73 static int input_fd
, output_fd
, pack_fd
;
75 static int mark_link(struct object
*obj
, int type
, void *data
)
80 if (type
!= OBJ_ANY
&& obj
->type
!= type
)
81 die("object type mismatch at %s", sha1_to_hex(obj
->sha1
));
83 obj
->flags
|= FLAG_LINK
;
87 /* The content of each linked object must have been checked
88 or it must be already present in the object database */
89 static void check_object(struct object
*obj
)
94 if (!(obj
->flags
& FLAG_LINK
))
97 if (!(obj
->flags
& FLAG_CHECKED
)) {
99 int type
= sha1_object_info(obj
->sha1
, &size
);
100 if (type
!= obj
->type
|| type
<= 0)
101 die("object of unexpected type");
102 obj
->flags
|= FLAG_CHECKED
;
107 static void check_objects(void)
111 max
= get_max_object_index();
112 for (i
= 0; i
< max
; i
++)
113 check_object(get_indexed_object(i
));
117 /* Discard current buffer used content. */
118 static void flush(void)
122 write_or_die(output_fd
, input_buffer
, input_offset
);
123 git_SHA1_Update(&input_ctx
, input_buffer
, input_offset
);
124 memmove(input_buffer
, input_buffer
+ input_offset
, input_len
);
130 * Make sure at least "min" bytes are available in the buffer, and
131 * return the pointer to the buffer.
133 static void *fill(int min
)
135 if (min
<= input_len
)
136 return input_buffer
+ input_offset
;
137 if (min
> sizeof(input_buffer
))
138 die("cannot fill %d bytes", min
);
141 ssize_t ret
= xread(input_fd
, input_buffer
+ input_len
,
142 sizeof(input_buffer
) - input_len
);
146 die("read error on input: %s", strerror(errno
));
150 display_throughput(progress
, consumed_bytes
+ input_len
);
151 } while (input_len
< min
);
155 static void use(int bytes
)
157 if (bytes
> input_len
)
158 die("used more bytes than were available");
159 input_crc32
= crc32(input_crc32
, input_buffer
+ input_offset
, bytes
);
161 input_offset
+= bytes
;
163 /* make sure off_t is sufficiently large not to wrap */
164 if (consumed_bytes
> consumed_bytes
+ bytes
)
165 die("pack too large for current definition of off_t");
166 consumed_bytes
+= bytes
;
169 static char *open_pack_file(char *pack_name
)
174 static char tmpfile
[PATH_MAX
];
175 snprintf(tmpfile
, sizeof(tmpfile
),
176 "%s/pack/tmp_pack_XXXXXX", get_object_directory());
177 output_fd
= xmkstemp(tmpfile
);
178 pack_name
= xstrdup(tmpfile
);
180 output_fd
= open(pack_name
, O_CREAT
|O_EXCL
|O_RDWR
, 0600);
182 die("unable to create %s: %s", pack_name
, strerror(errno
));
185 input_fd
= open(pack_name
, O_RDONLY
);
187 die("cannot open packfile '%s': %s",
188 pack_name
, strerror(errno
));
192 git_SHA1_Init(&input_ctx
);
196 static void parse_pack_header(void)
198 struct pack_header
*hdr
= fill(sizeof(struct pack_header
));
200 /* Header consistency check */
201 if (hdr
->hdr_signature
!= htonl(PACK_SIGNATURE
))
202 die("pack signature mismatch");
203 if (!pack_version_ok(hdr
->hdr_version
))
204 die("pack version %"PRIu32
" unsupported",
205 ntohl(hdr
->hdr_version
));
207 nr_objects
= ntohl(hdr
->hdr_entries
);
208 use(sizeof(struct pack_header
));
211 static void bad_object(unsigned long offset
, const char *format
,
212 ...) NORETURN
__attribute__((format (printf
, 2, 3)));
214 static void bad_object(unsigned long offset
, const char *format
, ...)
219 va_start(params
, format
);
220 vsnprintf(buf
, sizeof(buf
), format
, params
);
222 die("pack has bad object at offset %lu: %s", offset
, buf
);
225 static void free_base_data(struct base_data
*c
)
230 base_cache_used
-= c
->size
;
234 static void prune_base_data(struct base_data
*retain
)
236 struct base_data
*b
= base_cache
;
238 base_cache_used
> delta_base_cache_limit
&& b
;
240 if (b
->data
&& b
!= retain
)
245 static void link_base_data(struct base_data
*base
, struct base_data
*c
)
255 base_cache_used
+= c
->size
;
259 static void unlink_base_data(struct base_data
*c
)
261 struct base_data
*base
= c
->base
;
269 static void *unpack_entry_data(unsigned long offset
, unsigned long size
)
272 void *buf
= xmalloc(size
);
274 memset(&stream
, 0, sizeof(stream
));
275 stream
.next_out
= buf
;
276 stream
.avail_out
= size
;
277 stream
.next_in
= fill(1);
278 stream
.avail_in
= input_len
;
279 git_inflate_init(&stream
);
282 int ret
= git_inflate(&stream
, 0);
283 use(input_len
- stream
.avail_in
);
284 if (stream
.total_out
== size
&& ret
== Z_STREAM_END
)
287 bad_object(offset
, "inflate returned %d", ret
);
288 stream
.next_in
= fill(1);
289 stream
.avail_in
= input_len
;
291 git_inflate_end(&stream
);
295 static void *unpack_raw_entry(struct object_entry
*obj
, union delta_base
*delta_base
)
303 obj
->idx
.offset
= consumed_bytes
;
304 input_crc32
= crc32(0, Z_NULL
, 0);
309 obj
->type
= (c
>> 4) & 7;
316 size
+= (c
& 0x7fUL
) << shift
;
323 hashcpy(delta_base
->sha1
, fill(20));
327 memset(delta_base
, 0, sizeof(*delta_base
));
331 base_offset
= c
& 127;
334 if (!base_offset
|| MSB(base_offset
, 7))
335 bad_object(obj
->idx
.offset
, "offset value overflow for delta base object");
339 base_offset
= (base_offset
<< 7) + (c
& 127);
341 delta_base
->offset
= obj
->idx
.offset
- base_offset
;
342 if (delta_base
->offset
<= 0 || delta_base
->offset
>= obj
->idx
.offset
)
343 bad_object(obj
->idx
.offset
, "delta base offset is out of bound");
351 bad_object(obj
->idx
.offset
, "unknown object type %d", obj
->type
);
353 obj
->hdr_size
= consumed_bytes
- obj
->idx
.offset
;
355 data
= unpack_entry_data(obj
->idx
.offset
, obj
->size
);
356 obj
->idx
.crc32
= input_crc32
;
360 static void *get_data_from_pack(struct object_entry
*obj
)
362 off_t from
= obj
[0].idx
.offset
+ obj
[0].hdr_size
;
363 unsigned long len
= obj
[1].idx
.offset
- from
;
364 unsigned long rdy
= 0;
365 unsigned char *src
, *data
;
372 ssize_t n
= pread(pack_fd
, data
+ rdy
, len
- rdy
, from
+ rdy
);
374 die("cannot pread pack file: %s", strerror(errno
));
376 die("premature end of pack file, %lu bytes missing",
380 data
= xmalloc(obj
->size
);
381 memset(&stream
, 0, sizeof(stream
));
382 stream
.next_out
= data
;
383 stream
.avail_out
= obj
->size
;
384 stream
.next_in
= src
;
385 stream
.avail_in
= len
;
386 git_inflate_init(&stream
);
387 while ((st
= git_inflate(&stream
, Z_FINISH
)) == Z_OK
);
388 git_inflate_end(&stream
);
389 if (st
!= Z_STREAM_END
|| stream
.total_out
!= obj
->size
)
390 die("serious inflate inconsistency");
395 static int find_delta(const union delta_base
*base
)
397 int first
= 0, last
= nr_deltas
;
399 while (first
< last
) {
400 int next
= (first
+ last
) / 2;
401 struct delta_entry
*delta
= &deltas
[next
];
404 cmp
= memcmp(base
, &delta
->base
, UNION_BASE_SZ
);
416 static void find_delta_children(const union delta_base
*base
,
417 int *first_index
, int *last_index
)
419 int first
= find_delta(base
);
421 int end
= nr_deltas
- 1;
428 while (first
> 0 && !memcmp(&deltas
[first
- 1].base
, base
, UNION_BASE_SZ
))
430 while (last
< end
&& !memcmp(&deltas
[last
+ 1].base
, base
, UNION_BASE_SZ
))
432 *first_index
= first
;
436 static void sha1_object(const void *data
, unsigned long size
,
437 enum object_type type
, unsigned char *sha1
)
439 hash_sha1_file(data
, size
, typename(type
), sha1
);
440 if (has_sha1_file(sha1
)) {
442 enum object_type has_type
;
443 unsigned long has_size
;
444 has_data
= read_sha1_file(sha1
, &has_type
, &has_size
);
446 die("cannot read existing object %s", sha1_to_hex(sha1
));
447 if (size
!= has_size
|| type
!= has_type
||
448 memcmp(data
, has_data
, size
) != 0)
449 die("SHA1 COLLISION FOUND WITH %s !", sha1_to_hex(sha1
));
453 if (type
== OBJ_BLOB
) {
454 struct blob
*blob
= lookup_blob(sha1
);
456 blob
->object
.flags
|= FLAG_CHECKED
;
458 die("invalid blob object %s", sha1_to_hex(sha1
));
462 void *buf
= (void *) data
;
465 * we do not need to free the memory here, as the
466 * buf is deleted by the caller.
468 obj
= parse_object_buffer(sha1
, type
, size
, buf
, &eaten
);
470 die("invalid %s", typename(type
));
471 if (fsck_object(obj
, 1, fsck_error_function
))
472 die("Error in object");
473 if (fsck_walk(obj
, mark_link
, 0))
474 die("Not all child objects of %s are reachable", sha1_to_hex(obj
->sha1
));
476 if (obj
->type
== OBJ_TREE
) {
477 struct tree
*item
= (struct tree
*) obj
;
480 if (obj
->type
== OBJ_COMMIT
) {
481 struct commit
*commit
= (struct commit
*) obj
;
482 commit
->buffer
= NULL
;
484 obj
->flags
|= FLAG_CHECKED
;
489 static void *get_base_data(struct base_data
*c
)
492 struct object_entry
*obj
= c
->obj
;
494 if (obj
->type
== OBJ_REF_DELTA
|| obj
->type
== OBJ_OFS_DELTA
) {
495 void *base
= get_base_data(c
->base
);
496 void *raw
= get_data_from_pack(obj
);
497 c
->data
= patch_delta(
503 bad_object(obj
->idx
.offset
, "failed to apply delta");
505 c
->data
= get_data_from_pack(obj
);
509 base_cache_used
+= c
->size
;
515 static void resolve_delta(struct object_entry
*delta_obj
,
516 struct base_data
*base
, struct base_data
*result
)
518 void *base_data
, *delta_data
;
520 delta_obj
->real_type
= base
->obj
->real_type
;
521 delta_data
= get_data_from_pack(delta_obj
);
522 base_data
= get_base_data(base
);
523 result
->obj
= delta_obj
;
524 result
->data
= patch_delta(base_data
, base
->size
,
525 delta_data
, delta_obj
->size
, &result
->size
);
528 bad_object(delta_obj
->idx
.offset
, "failed to apply delta");
529 sha1_object(result
->data
, result
->size
, delta_obj
->real_type
,
530 delta_obj
->idx
.sha1
);
531 nr_resolved_deltas
++;
534 static void find_unresolved_deltas(struct base_data
*base
,
535 struct base_data
*prev_base
)
537 int i
, ref_first
, ref_last
, ofs_first
, ofs_last
;
540 * This is a recursive function. Those brackets should help reducing
541 * stack usage by limiting the scope of the delta_base union.
544 union delta_base base_spec
;
546 hashcpy(base_spec
.sha1
, base
->obj
->idx
.sha1
);
547 find_delta_children(&base_spec
, &ref_first
, &ref_last
);
549 memset(&base_spec
, 0, sizeof(base_spec
));
550 base_spec
.offset
= base
->obj
->idx
.offset
;
551 find_delta_children(&base_spec
, &ofs_first
, &ofs_last
);
554 if (ref_last
== -1 && ofs_last
== -1) {
559 link_base_data(prev_base
, base
);
561 for (i
= ref_first
; i
<= ref_last
; i
++) {
562 struct object_entry
*child
= objects
+ deltas
[i
].obj_no
;
563 if (child
->real_type
== OBJ_REF_DELTA
) {
564 struct base_data result
;
565 resolve_delta(child
, base
, &result
);
566 if (i
== ref_last
&& ofs_last
== -1)
567 free_base_data(base
);
568 find_unresolved_deltas(&result
, base
);
572 for (i
= ofs_first
; i
<= ofs_last
; i
++) {
573 struct object_entry
*child
= objects
+ deltas
[i
].obj_no
;
574 if (child
->real_type
== OBJ_OFS_DELTA
) {
575 struct base_data result
;
576 resolve_delta(child
, base
, &result
);
578 free_base_data(base
);
579 find_unresolved_deltas(&result
, base
);
583 unlink_base_data(base
);
586 static int compare_delta_entry(const void *a
, const void *b
)
588 const struct delta_entry
*delta_a
= a
;
589 const struct delta_entry
*delta_b
= b
;
590 return memcmp(&delta_a
->base
, &delta_b
->base
, UNION_BASE_SZ
);
593 /* Parse all objects and return the pack content SHA1 hash */
594 static void parse_pack_objects(unsigned char *sha1
)
597 struct delta_entry
*delta
= deltas
;
602 * - find locations of all objects;
603 * - calculate SHA1 of all non-delta objects;
604 * - remember base (SHA1 or offset) for all deltas.
607 progress
= start_progress(
608 from_stdin
? "Receiving objects" : "Indexing objects",
610 for (i
= 0; i
< nr_objects
; i
++) {
611 struct object_entry
*obj
= &objects
[i
];
612 void *data
= unpack_raw_entry(obj
, &delta
->base
);
613 obj
->real_type
= obj
->type
;
614 if (obj
->type
== OBJ_REF_DELTA
|| obj
->type
== OBJ_OFS_DELTA
) {
619 sha1_object(data
, obj
->size
, obj
->type
, obj
->idx
.sha1
);
621 display_progress(progress
, i
+1);
623 objects
[i
].idx
.offset
= consumed_bytes
;
624 stop_progress(&progress
);
626 /* Check pack integrity */
628 git_SHA1_Final(sha1
, &input_ctx
);
629 if (hashcmp(fill(20), sha1
))
630 die("pack is corrupted (SHA1 mismatch)");
633 /* If input_fd is a file, we should have reached its end now. */
634 if (fstat(input_fd
, &st
))
635 die("cannot fstat packfile: %s", strerror(errno
));
636 if (S_ISREG(st
.st_mode
) &&
637 lseek(input_fd
, 0, SEEK_CUR
) - input_len
!= st
.st_size
)
638 die("pack has junk at the end");
643 /* Sort deltas by base SHA1/offset for fast searching */
644 qsort(deltas
, nr_deltas
, sizeof(struct delta_entry
),
645 compare_delta_entry
);
649 * - for all non-delta objects, look if it is used as a base for
651 * - if used as a base, uncompress the object and apply all deltas,
652 * recursively checking if the resulting object is used as a base
653 * for some more deltas.
656 progress
= start_progress("Resolving deltas", nr_deltas
);
657 for (i
= 0; i
< nr_objects
; i
++) {
658 struct object_entry
*obj
= &objects
[i
];
659 struct base_data base_obj
;
661 if (obj
->type
== OBJ_REF_DELTA
|| obj
->type
== OBJ_OFS_DELTA
)
664 base_obj
.data
= NULL
;
665 find_unresolved_deltas(&base_obj
, NULL
);
666 display_progress(progress
, nr_resolved_deltas
);
670 static int write_compressed(struct sha1file
*f
, void *in
, unsigned int size
)
673 unsigned long maxsize
;
676 memset(&stream
, 0, sizeof(stream
));
677 deflateInit(&stream
, zlib_compression_level
);
678 maxsize
= deflateBound(&stream
, size
);
679 out
= xmalloc(maxsize
);
683 stream
.avail_in
= size
;
684 stream
.next_out
= out
;
685 stream
.avail_out
= maxsize
;
686 while (deflate(&stream
, Z_FINISH
) == Z_OK
);
689 size
= stream
.total_out
;
690 sha1write(f
, out
, size
);
695 static struct object_entry
*append_obj_to_pack(struct sha1file
*f
,
696 const unsigned char *sha1
, void *buf
,
697 unsigned long size
, enum object_type type
)
699 struct object_entry
*obj
= &objects
[nr_objects
++];
700 unsigned char header
[10];
701 unsigned long s
= size
;
703 unsigned char c
= (type
<< 4) | (s
& 15);
706 header
[n
++] = c
| 0x80;
712 sha1write(f
, header
, n
);
716 obj
[0].real_type
= type
;
717 obj
[1].idx
.offset
= obj
[0].idx
.offset
+ n
;
718 obj
[1].idx
.offset
+= write_compressed(f
, buf
, size
);
719 obj
[0].idx
.crc32
= crc32_end(f
);
721 hashcpy(obj
->idx
.sha1
, sha1
);
725 static int delta_pos_compare(const void *_a
, const void *_b
)
727 struct delta_entry
*a
= *(struct delta_entry
**)_a
;
728 struct delta_entry
*b
= *(struct delta_entry
**)_b
;
729 return a
->obj_no
- b
->obj_no
;
732 static void fix_unresolved_deltas(struct sha1file
*f
, int nr_unresolved
)
734 struct delta_entry
**sorted_by_pos
;
738 * Since many unresolved deltas may well be themselves base objects
739 * for more unresolved deltas, we really want to include the
740 * smallest number of base objects that would cover as much delta
741 * as possible by picking the
742 * trunc deltas first, allowing for other deltas to resolve without
743 * additional base objects. Since most base objects are to be found
744 * before deltas depending on them, a good heuristic is to start
745 * resolving deltas in the same order as their position in the pack.
747 sorted_by_pos
= xmalloc(nr_unresolved
* sizeof(*sorted_by_pos
));
748 for (i
= 0; i
< nr_deltas
; i
++) {
749 if (objects
[deltas
[i
].obj_no
].real_type
!= OBJ_REF_DELTA
)
751 sorted_by_pos
[n
++] = &deltas
[i
];
753 qsort(sorted_by_pos
, n
, sizeof(*sorted_by_pos
), delta_pos_compare
);
755 for (i
= 0; i
< n
; i
++) {
756 struct delta_entry
*d
= sorted_by_pos
[i
];
757 enum object_type type
;
758 struct base_data base_obj
;
760 if (objects
[d
->obj_no
].real_type
!= OBJ_REF_DELTA
)
762 base_obj
.data
= read_sha1_file(d
->base
.sha1
, &type
, &base_obj
.size
);
766 if (check_sha1_signature(d
->base
.sha1
, base_obj
.data
,
767 base_obj
.size
, typename(type
)))
768 die("local object %s is corrupt", sha1_to_hex(d
->base
.sha1
));
769 base_obj
.obj
= append_obj_to_pack(f
, d
->base
.sha1
,
770 base_obj
.data
, base_obj
.size
, type
);
771 find_unresolved_deltas(&base_obj
, NULL
);
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
));
796 int keep_fd
, keep_msg_len
= strlen(keep_msg
);
798 snprintf(name
, sizeof(name
), "%s/pack/pack-%s.keep",
799 get_object_directory(), sha1_to_hex(sha1
));
802 keep_fd
= open(keep_name
, O_RDWR
|O_CREAT
|O_EXCL
, 0600);
805 die("cannot write keep file");
807 if (keep_msg_len
> 0) {
808 write_or_die(keep_fd
, keep_msg
, keep_msg_len
);
809 write_or_die(keep_fd
, "\n", 1);
811 if (close(keep_fd
) != 0)
812 die("cannot write keep file");
817 if (final_pack_name
!= curr_pack_name
) {
818 if (!final_pack_name
) {
819 snprintf(name
, sizeof(name
), "%s/pack/pack-%s.pack",
820 get_object_directory(), sha1_to_hex(sha1
));
821 final_pack_name
= name
;
823 if (move_temp_to_file(curr_pack_name
, final_pack_name
))
824 die("cannot store pack file");
827 chmod(final_pack_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");
838 chmod(final_index_name
, 0444);
841 printf("%s\n", sha1_to_hex(sha1
));
844 int len
= snprintf(buf
, sizeof(buf
), "%s\t%s\n",
845 report
, sha1_to_hex(sha1
));
846 write_or_die(1, buf
, len
);
849 * Let's just mimic git-unpack-objects here and write
850 * the last part of the input buffer to stdout.
853 err
= xwrite(1, input_buffer
+ input_offset
, input_len
);
862 static int git_index_pack_config(const char *k
, const char *v
, void *cb
)
864 if (!strcmp(k
, "pack.indexversion")) {
865 pack_idx_default_version
= git_config_int(k
, v
);
866 if (pack_idx_default_version
> 2)
867 die("bad pack.indexversion=%"PRIu32
,
868 pack_idx_default_version
);
871 return git_default_config(k
, v
, cb
);
874 int main(int argc
, char **argv
)
876 int i
, fix_thin_pack
= 0;
877 char *curr_pack
, *pack_name
= NULL
;
878 char *curr_index
, *index_name
= NULL
;
879 const char *keep_name
= NULL
, *keep_msg
= NULL
;
880 char *index_name_buf
= NULL
, *keep_name_buf
= NULL
;
881 struct pack_idx_entry
**idx_objects
;
882 unsigned char pack_sha1
[20];
884 git_extract_argv0_path(argv
[0]);
887 * We wish to read the repository's config file if any, and
888 * for that it is necessary to call setup_git_directory_gently().
889 * However if the cwd was inside .git/objects/pack/ then we need
890 * to go back there or all the pack name arguments will be wrong.
891 * And in that case we cannot rely on any prefix returned by
892 * setup_git_directory_gently() either.
895 char cwd
[PATH_MAX
+1];
898 if (!getcwd(cwd
, sizeof(cwd
)-1))
899 die("Unable to get current working directory");
900 setup_git_directory_gently(&nongit
);
901 git_config(git_index_pack_config
, NULL
);
903 die("Cannot come back to cwd");
906 for (i
= 1; i
< argc
; i
++) {
910 if (!strcmp(arg
, "--stdin")) {
912 } else if (!strcmp(arg
, "--fix-thin")) {
914 } else if (!strcmp(arg
, "--strict")) {
916 } else if (!strcmp(arg
, "--keep")) {
918 } else if (!prefixcmp(arg
, "--keep=")) {
920 } else if (!prefixcmp(arg
, "--pack_header=")) {
921 struct pack_header
*hdr
;
924 hdr
= (struct pack_header
*)input_buffer
;
925 hdr
->hdr_signature
= htonl(PACK_SIGNATURE
);
926 hdr
->hdr_version
= htonl(strtoul(arg
+ 14, &c
, 10));
929 hdr
->hdr_entries
= htonl(strtoul(c
+ 1, &c
, 10));
932 input_len
= sizeof(*hdr
);
933 } else if (!strcmp(arg
, "-v")) {
935 } else if (!strcmp(arg
, "-o")) {
936 if (index_name
|| (i
+1) >= argc
)
937 usage(index_pack_usage
);
938 index_name
= argv
[++i
];
939 } else if (!prefixcmp(arg
, "--index-version=")) {
941 pack_idx_default_version
= strtoul(arg
+ 16, &c
, 10);
942 if (pack_idx_default_version
> 2)
945 pack_idx_off32_limit
= strtoul(c
+1, &c
, 0);
946 if (*c
|| pack_idx_off32_limit
& 0x80000000)
949 usage(index_pack_usage
);
954 usage(index_pack_usage
);
958 if (!pack_name
&& !from_stdin
)
959 usage(index_pack_usage
);
960 if (fix_thin_pack
&& !from_stdin
)
961 die("--fix-thin cannot be used without --stdin");
962 if (!index_name
&& pack_name
) {
963 int len
= strlen(pack_name
);
964 if (!has_extension(pack_name
, ".pack"))
965 die("packfile name '%s' does not end with '.pack'",
967 index_name_buf
= xmalloc(len
);
968 memcpy(index_name_buf
, pack_name
, len
- 5);
969 strcpy(index_name_buf
+ len
- 5, ".idx");
970 index_name
= index_name_buf
;
972 if (keep_msg
&& !keep_name
&& pack_name
) {
973 int len
= strlen(pack_name
);
974 if (!has_extension(pack_name
, ".pack"))
975 die("packfile name '%s' does not end with '.pack'",
977 keep_name_buf
= xmalloc(len
);
978 memcpy(keep_name_buf
, pack_name
, len
- 5);
979 strcpy(keep_name_buf
+ len
- 5, ".keep");
980 keep_name
= keep_name_buf
;
983 curr_pack
= open_pack_file(pack_name
);
985 objects
= xmalloc((nr_objects
+ 1) * sizeof(struct object_entry
));
986 deltas
= xmalloc(nr_objects
* sizeof(struct delta_entry
));
987 parse_pack_objects(pack_sha1
);
988 if (nr_deltas
== nr_resolved_deltas
) {
989 stop_progress(&progress
);
990 /* Flush remaining pack final 20-byte SHA1. */
995 unsigned char read_sha1
[20], tail_sha1
[20];
997 int nr_unresolved
= nr_deltas
- nr_resolved_deltas
;
998 int nr_objects_initial
= nr_objects
;
999 if (nr_unresolved
<= 0)
1000 die("confusion beyond insanity");
1001 objects
= xrealloc(objects
,
1002 (nr_objects
+ nr_unresolved
+ 1)
1003 * sizeof(*objects
));
1004 f
= sha1fd(output_fd
, curr_pack
);
1005 fix_unresolved_deltas(f
, nr_unresolved
);
1006 sprintf(msg
, "completed with %d local objects",
1007 nr_objects
- nr_objects_initial
);
1008 stop_progress_msg(&progress
, msg
);
1009 sha1close(f
, tail_sha1
, 0);
1010 hashcpy(read_sha1
, pack_sha1
);
1011 fixup_pack_header_footer(output_fd
, pack_sha1
,
1012 curr_pack
, nr_objects
,
1013 read_sha1
, consumed_bytes
-20);
1014 if (hashcmp(read_sha1
, tail_sha1
) != 0)
1015 die("Unexpected tail checksum for %s "
1016 "(disk corruption?)", curr_pack
);
1018 if (nr_deltas
!= nr_resolved_deltas
)
1019 die("pack has %d unresolved deltas",
1020 nr_deltas
- nr_resolved_deltas
);
1026 idx_objects
= xmalloc((nr_objects
) * sizeof(struct pack_idx_entry
*));
1027 for (i
= 0; i
< nr_objects
; i
++)
1028 idx_objects
[i
] = &objects
[i
].idx
;
1029 curr_index
= write_idx_file(index_name
, idx_objects
, nr_objects
, pack_sha1
);
1032 final(pack_name
, curr_pack
,
1033 index_name
, curr_index
,
1034 keep_name
, keep_msg
,
1037 free(index_name_buf
);
1038 free(keep_name_buf
);
1039 if (pack_name
== NULL
)
1041 if (index_name
== NULL
)