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/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
));
372 data
= xmalloc(obj
->size
);
373 memset(&stream
, 0, sizeof(stream
));
374 stream
.next_out
= data
;
375 stream
.avail_out
= obj
->size
;
376 stream
.next_in
= src
;
377 stream
.avail_in
= len
;
378 inflateInit(&stream
);
379 while ((st
= inflate(&stream
, Z_FINISH
)) == Z_OK
);
381 if (st
!= Z_STREAM_END
|| stream
.total_out
!= obj
->size
)
382 die("serious inflate inconsistency");
387 static int find_delta(const union delta_base
*base
)
389 int first
= 0, last
= nr_deltas
;
391 while (first
< last
) {
392 int next
= (first
+ last
) / 2;
393 struct delta_entry
*delta
= &deltas
[next
];
396 cmp
= memcmp(base
, &delta
->base
, UNION_BASE_SZ
);
408 static int find_delta_children(const union delta_base
*base
,
409 int *first_index
, int *last_index
)
411 int first
= find_delta(base
);
413 int end
= nr_deltas
- 1;
417 while (first
> 0 && !memcmp(&deltas
[first
- 1].base
, base
, UNION_BASE_SZ
))
419 while (last
< end
&& !memcmp(&deltas
[last
+ 1].base
, base
, UNION_BASE_SZ
))
421 *first_index
= first
;
426 static void sha1_object(const void *data
, unsigned long size
,
427 enum object_type type
, unsigned char *sha1
)
429 hash_sha1_file(data
, size
, typename(type
), sha1
);
430 if (has_sha1_file(sha1
)) {
432 enum object_type has_type
;
433 unsigned long has_size
;
434 has_data
= read_sha1_file(sha1
, &has_type
, &has_size
);
436 die("cannot read existing object %s", sha1_to_hex(sha1
));
437 if (size
!= has_size
|| type
!= has_type
||
438 memcmp(data
, has_data
, size
) != 0)
439 die("SHA1 COLLISION FOUND WITH %s !", sha1_to_hex(sha1
));
443 if (type
== OBJ_BLOB
) {
444 struct blob
*blob
= lookup_blob(sha1
);
446 blob
->object
.flags
|= FLAG_CHECKED
;
448 die("invalid blob object %s", sha1_to_hex(sha1
));
452 void *buf
= (void *) data
;
455 * we do not need to free the memory here, as the
456 * buf is deleted by the caller.
458 obj
= parse_object_buffer(sha1
, type
, size
, buf
, &eaten
);
460 die("invalid %s", typename(type
));
461 if (fsck_object(obj
, 1, fsck_error_function
))
462 die("Error in object");
463 if (fsck_walk(obj
, mark_link
, 0))
464 die("Not all child objects of %s are reachable", sha1_to_hex(obj
->sha1
));
466 if (obj
->type
== OBJ_TREE
) {
467 struct tree
*item
= (struct tree
*) obj
;
470 if (obj
->type
== OBJ_COMMIT
) {
471 struct commit
*commit
= (struct commit
*) obj
;
472 commit
->buffer
= NULL
;
474 obj
->flags
|= FLAG_CHECKED
;
479 static void *get_base_data(struct base_data
*c
)
482 struct object_entry
*obj
= c
->obj
;
484 if (obj
->type
== OBJ_REF_DELTA
|| obj
->type
== OBJ_OFS_DELTA
) {
485 void *base
= get_base_data(c
->base
);
486 void *raw
= get_data_from_pack(obj
);
487 c
->data
= patch_delta(
493 bad_object(obj
->idx
.offset
, "failed to apply delta");
495 c
->data
= get_data_from_pack(obj
);
497 base_cache_used
+= c
->size
;
503 static void resolve_delta(struct object_entry
*delta_obj
,
504 struct base_data
*base_obj
, enum object_type type
)
507 unsigned long delta_size
;
508 union delta_base delta_base
;
510 struct base_data result
;
512 delta_obj
->real_type
= type
;
513 delta_data
= get_data_from_pack(delta_obj
);
514 delta_size
= delta_obj
->size
;
515 result
.data
= patch_delta(get_base_data(base_obj
), base_obj
->size
,
516 delta_data
, delta_size
,
520 bad_object(delta_obj
->idx
.offset
, "failed to apply delta");
521 sha1_object(result
.data
, result
.size
, type
, delta_obj
->idx
.sha1
);
522 nr_resolved_deltas
++;
524 result
.obj
= delta_obj
;
525 link_base_data(base_obj
, &result
);
527 hashcpy(delta_base
.sha1
, delta_obj
->idx
.sha1
);
528 if (!find_delta_children(&delta_base
, &first
, &last
)) {
529 for (j
= first
; j
<= last
; j
++) {
530 struct object_entry
*child
= objects
+ deltas
[j
].obj_no
;
531 if (child
->real_type
== OBJ_REF_DELTA
)
532 resolve_delta(child
, &result
, type
);
536 memset(&delta_base
, 0, sizeof(delta_base
));
537 delta_base
.offset
= delta_obj
->idx
.offset
;
538 if (!find_delta_children(&delta_base
, &first
, &last
)) {
539 for (j
= first
; j
<= last
; j
++) {
540 struct object_entry
*child
= objects
+ deltas
[j
].obj_no
;
541 if (child
->real_type
== OBJ_OFS_DELTA
)
542 resolve_delta(child
, &result
, type
);
546 unlink_base_data(&result
);
549 static int compare_delta_entry(const void *a
, const void *b
)
551 const struct delta_entry
*delta_a
= a
;
552 const struct delta_entry
*delta_b
= b
;
553 return memcmp(&delta_a
->base
, &delta_b
->base
, UNION_BASE_SZ
);
556 /* Parse all objects and return the pack content SHA1 hash */
557 static void parse_pack_objects(unsigned char *sha1
)
560 struct delta_entry
*delta
= deltas
;
565 * - find locations of all objects;
566 * - calculate SHA1 of all non-delta objects;
567 * - remember base (SHA1 or offset) for all deltas.
570 progress
= start_progress(
571 from_stdin
? "Receiving objects" : "Indexing objects",
573 for (i
= 0; i
< nr_objects
; i
++) {
574 struct object_entry
*obj
= &objects
[i
];
575 void *data
= unpack_raw_entry(obj
, &delta
->base
);
576 obj
->real_type
= obj
->type
;
577 if (obj
->type
== OBJ_REF_DELTA
|| obj
->type
== OBJ_OFS_DELTA
) {
582 sha1_object(data
, obj
->size
, obj
->type
, obj
->idx
.sha1
);
584 display_progress(progress
, i
+1);
586 objects
[i
].idx
.offset
= consumed_bytes
;
587 stop_progress(&progress
);
589 /* Check pack integrity */
591 SHA1_Final(sha1
, &input_ctx
);
592 if (hashcmp(fill(20), sha1
))
593 die("pack is corrupted (SHA1 mismatch)");
596 /* If input_fd is a file, we should have reached its end now. */
597 if (fstat(input_fd
, &st
))
598 die("cannot fstat packfile: %s", strerror(errno
));
599 if (S_ISREG(st
.st_mode
) &&
600 lseek(input_fd
, 0, SEEK_CUR
) - input_len
!= st
.st_size
)
601 die("pack has junk at the end");
606 /* Sort deltas by base SHA1/offset for fast searching */
607 qsort(deltas
, nr_deltas
, sizeof(struct delta_entry
),
608 compare_delta_entry
);
612 * - for all non-delta objects, look if it is used as a base for
614 * - if used as a base, uncompress the object and apply all deltas,
615 * recursively checking if the resulting object is used as a base
616 * for some more deltas.
619 progress
= start_progress("Resolving deltas", nr_deltas
);
620 for (i
= 0; i
< nr_objects
; i
++) {
621 struct object_entry
*obj
= &objects
[i
];
622 union delta_base base
;
623 int j
, ref
, ref_first
, ref_last
, ofs
, ofs_first
, ofs_last
;
624 struct base_data base_obj
;
626 if (obj
->type
== OBJ_REF_DELTA
|| obj
->type
== OBJ_OFS_DELTA
)
628 hashcpy(base
.sha1
, obj
->idx
.sha1
);
629 ref
= !find_delta_children(&base
, &ref_first
, &ref_last
);
630 memset(&base
, 0, sizeof(base
));
631 base
.offset
= obj
->idx
.offset
;
632 ofs
= !find_delta_children(&base
, &ofs_first
, &ofs_last
);
635 base_obj
.data
= get_data_from_pack(obj
);
636 base_obj
.size
= obj
->size
;
638 link_base_data(NULL
, &base_obj
);
641 for (j
= ref_first
; j
<= ref_last
; j
++) {
642 struct object_entry
*child
= objects
+ deltas
[j
].obj_no
;
643 if (child
->real_type
== OBJ_REF_DELTA
)
644 resolve_delta(child
, &base_obj
, obj
->type
);
647 for (j
= ofs_first
; j
<= ofs_last
; j
++) {
648 struct object_entry
*child
= objects
+ deltas
[j
].obj_no
;
649 if (child
->real_type
== OBJ_OFS_DELTA
)
650 resolve_delta(child
, &base_obj
, obj
->type
);
652 unlink_base_data(&base_obj
);
653 display_progress(progress
, nr_resolved_deltas
);
657 static int write_compressed(int fd
, void *in
, unsigned int size
, uint32_t *obj_crc
)
660 unsigned long maxsize
;
663 memset(&stream
, 0, sizeof(stream
));
664 deflateInit(&stream
, zlib_compression_level
);
665 maxsize
= deflateBound(&stream
, size
);
666 out
= xmalloc(maxsize
);
670 stream
.avail_in
= size
;
671 stream
.next_out
= out
;
672 stream
.avail_out
= maxsize
;
673 while (deflate(&stream
, Z_FINISH
) == Z_OK
);
676 size
= stream
.total_out
;
677 write_or_die(fd
, out
, size
);
678 *obj_crc
= crc32(*obj_crc
, out
, size
);
683 static struct object_entry
*append_obj_to_pack(
684 const unsigned char *sha1
, void *buf
,
685 unsigned long size
, enum object_type type
)
687 struct object_entry
*obj
= &objects
[nr_objects
++];
688 unsigned char header
[10];
689 unsigned long s
= size
;
691 unsigned char c
= (type
<< 4) | (s
& 15);
694 header
[n
++] = c
| 0x80;
699 write_or_die(output_fd
, header
, n
);
700 obj
[0].idx
.crc32
= crc32(0, Z_NULL
, 0);
701 obj
[0].idx
.crc32
= crc32(obj
[0].idx
.crc32
, header
, n
);
705 obj
[0].real_type
= type
;
706 obj
[1].idx
.offset
= obj
[0].idx
.offset
+ n
;
707 obj
[1].idx
.offset
+= write_compressed(output_fd
, buf
, size
, &obj
[0].idx
.crc32
);
708 hashcpy(obj
->idx
.sha1
, sha1
);
712 static int delta_pos_compare(const void *_a
, const void *_b
)
714 struct delta_entry
*a
= *(struct delta_entry
**)_a
;
715 struct delta_entry
*b
= *(struct delta_entry
**)_b
;
716 return a
->obj_no
- b
->obj_no
;
719 static void fix_unresolved_deltas(int nr_unresolved
)
721 struct delta_entry
**sorted_by_pos
;
725 * Since many unresolved deltas may well be themselves base objects
726 * for more unresolved deltas, we really want to include the
727 * smallest number of base objects that would cover as much delta
728 * as possible by picking the
729 * trunc deltas first, allowing for other deltas to resolve without
730 * additional base objects. Since most base objects are to be found
731 * before deltas depending on them, a good heuristic is to start
732 * resolving deltas in the same order as their position in the pack.
734 sorted_by_pos
= xmalloc(nr_unresolved
* sizeof(*sorted_by_pos
));
735 for (i
= 0; i
< nr_deltas
; i
++) {
736 if (objects
[deltas
[i
].obj_no
].real_type
!= OBJ_REF_DELTA
)
738 sorted_by_pos
[n
++] = &deltas
[i
];
740 qsort(sorted_by_pos
, n
, sizeof(*sorted_by_pos
), delta_pos_compare
);
742 for (i
= 0; i
< n
; i
++) {
743 struct delta_entry
*d
= sorted_by_pos
[i
];
744 enum object_type type
;
746 struct base_data base_obj
;
748 if (objects
[d
->obj_no
].real_type
!= OBJ_REF_DELTA
)
750 base_obj
.data
= read_sha1_file(d
->base
.sha1
, &type
, &base_obj
.size
);
754 if (check_sha1_signature(d
->base
.sha1
, base_obj
.data
,
755 base_obj
.size
, typename(type
)))
756 die("local object %s is corrupt", sha1_to_hex(d
->base
.sha1
));
757 base_obj
.obj
= append_obj_to_pack(d
->base
.sha1
, base_obj
.data
,
758 base_obj
.size
, type
);
759 link_base_data(NULL
, &base_obj
);
761 find_delta_children(&d
->base
, &first
, &last
);
762 for (j
= first
; j
<= last
; j
++) {
763 struct object_entry
*child
= objects
+ deltas
[j
].obj_no
;
764 if (child
->real_type
== OBJ_REF_DELTA
)
765 resolve_delta(child
, &base_obj
, type
);
768 unlink_base_data(&base_obj
);
769 display_progress(progress
, nr_resolved_deltas
);
774 static void final(const char *final_pack_name
, const char *curr_pack_name
,
775 const char *final_index_name
, const char *curr_index_name
,
776 const char *keep_name
, const char *keep_msg
,
779 const char *report
= "pack";
786 fsync_or_die(output_fd
, curr_pack_name
);
787 err
= close(output_fd
);
789 die("error while closing pack file: %s", strerror(errno
));
790 chmod(curr_pack_name
, 0444);
794 int keep_fd
, keep_msg_len
= strlen(keep_msg
);
796 snprintf(name
, sizeof(name
), "%s/pack/pack-%s.keep",
797 get_object_directory(), sha1_to_hex(sha1
));
800 keep_fd
= open(keep_name
, O_RDWR
|O_CREAT
|O_EXCL
, 0600);
803 die("cannot write keep file");
805 if (keep_msg_len
> 0) {
806 write_or_die(keep_fd
, keep_msg
, keep_msg_len
);
807 write_or_die(keep_fd
, "\n", 1);
809 if (close(keep_fd
) != 0)
810 die("cannot write keep file");
815 if (final_pack_name
!= curr_pack_name
) {
816 if (!final_pack_name
) {
817 snprintf(name
, sizeof(name
), "%s/pack/pack-%s.pack",
818 get_object_directory(), sha1_to_hex(sha1
));
819 final_pack_name
= name
;
821 if (move_temp_to_file(curr_pack_name
, final_pack_name
))
822 die("cannot store pack file");
825 chmod(curr_index_name
, 0444);
826 if (final_index_name
!= curr_index_name
) {
827 if (!final_index_name
) {
828 snprintf(name
, sizeof(name
), "%s/pack/pack-%s.idx",
829 get_object_directory(), sha1_to_hex(sha1
));
830 final_index_name
= name
;
832 if (move_temp_to_file(curr_index_name
, final_index_name
))
833 die("cannot store index file");
837 printf("%s\n", sha1_to_hex(sha1
));
840 int len
= snprintf(buf
, sizeof(buf
), "%s\t%s\n",
841 report
, sha1_to_hex(sha1
));
842 write_or_die(1, buf
, len
);
845 * Let's just mimic git-unpack-objects here and write
846 * the last part of the input buffer to stdout.
849 err
= xwrite(1, input_buffer
+ input_offset
, input_len
);
858 static int git_index_pack_config(const char *k
, const char *v
, void *cb
)
860 if (!strcmp(k
, "pack.indexversion")) {
861 pack_idx_default_version
= git_config_int(k
, v
);
862 if (pack_idx_default_version
> 2)
863 die("bad pack.indexversion=%"PRIu32
,
864 pack_idx_default_version
);
867 return git_default_config(k
, v
, cb
);
870 int main(int argc
, char **argv
)
872 int i
, fix_thin_pack
= 0;
873 char *curr_pack
, *pack_name
= NULL
;
874 char *curr_index
, *index_name
= NULL
;
875 const char *keep_name
= NULL
, *keep_msg
= NULL
;
876 char *index_name_buf
= NULL
, *keep_name_buf
= NULL
;
877 struct pack_idx_entry
**idx_objects
;
878 unsigned char sha1
[20];
880 git_config(git_index_pack_config
, NULL
);
882 for (i
= 1; i
< argc
; i
++) {
886 if (!strcmp(arg
, "--stdin")) {
888 } else if (!strcmp(arg
, "--fix-thin")) {
890 } else if (!strcmp(arg
, "--strict")) {
892 } else if (!strcmp(arg
, "--keep")) {
894 } else if (!prefixcmp(arg
, "--keep=")) {
896 } else if (!prefixcmp(arg
, "--pack_header=")) {
897 struct pack_header
*hdr
;
900 hdr
= (struct pack_header
*)input_buffer
;
901 hdr
->hdr_signature
= htonl(PACK_SIGNATURE
);
902 hdr
->hdr_version
= htonl(strtoul(arg
+ 14, &c
, 10));
905 hdr
->hdr_entries
= htonl(strtoul(c
+ 1, &c
, 10));
908 input_len
= sizeof(*hdr
);
909 } else if (!strcmp(arg
, "-v")) {
911 } else if (!strcmp(arg
, "-o")) {
912 if (index_name
|| (i
+1) >= argc
)
913 usage(index_pack_usage
);
914 index_name
= argv
[++i
];
915 } else if (!prefixcmp(arg
, "--index-version=")) {
917 pack_idx_default_version
= strtoul(arg
+ 16, &c
, 10);
918 if (pack_idx_default_version
> 2)
921 pack_idx_off32_limit
= strtoul(c
+1, &c
, 0);
922 if (*c
|| pack_idx_off32_limit
& 0x80000000)
925 usage(index_pack_usage
);
930 usage(index_pack_usage
);
934 if (!pack_name
&& !from_stdin
)
935 usage(index_pack_usage
);
936 if (fix_thin_pack
&& !from_stdin
)
937 die("--fix-thin cannot be used without --stdin");
938 if (!index_name
&& pack_name
) {
939 int len
= strlen(pack_name
);
940 if (!has_extension(pack_name
, ".pack"))
941 die("packfile name '%s' does not end with '.pack'",
943 index_name_buf
= xmalloc(len
);
944 memcpy(index_name_buf
, pack_name
, len
- 5);
945 strcpy(index_name_buf
+ len
- 5, ".idx");
946 index_name
= index_name_buf
;
948 if (keep_msg
&& !keep_name
&& pack_name
) {
949 int len
= strlen(pack_name
);
950 if (!has_extension(pack_name
, ".pack"))
951 die("packfile name '%s' does not end with '.pack'",
953 keep_name_buf
= xmalloc(len
);
954 memcpy(keep_name_buf
, pack_name
, len
- 5);
955 strcpy(keep_name_buf
+ len
- 5, ".keep");
956 keep_name
= keep_name_buf
;
959 curr_pack
= open_pack_file(pack_name
);
961 objects
= xmalloc((nr_objects
+ 1) * sizeof(struct object_entry
));
962 deltas
= xmalloc(nr_objects
* sizeof(struct delta_entry
));
963 parse_pack_objects(sha1
);
964 if (nr_deltas
== nr_resolved_deltas
) {
965 stop_progress(&progress
);
966 /* Flush remaining pack final 20-byte SHA1. */
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 fix_unresolved_deltas(nr_unresolved
);
979 sprintf(msg
, "completed with %d local objects",
980 nr_objects
- nr_objects_initial
);
981 stop_progress_msg(&progress
, msg
);
982 fixup_pack_header_footer(output_fd
, sha1
,
983 curr_pack
, nr_objects
);
985 if (nr_deltas
!= nr_resolved_deltas
)
986 die("pack has %d unresolved deltas",
987 nr_deltas
- nr_resolved_deltas
);
993 idx_objects
= xmalloc((nr_objects
) * sizeof(struct pack_idx_entry
*));
994 for (i
= 0; i
< nr_objects
; i
++)
995 idx_objects
[i
] = &objects
[i
].idx
;
996 curr_index
= write_idx_file(index_name
, idx_objects
, nr_objects
, sha1
);
999 final(pack_name
, curr_pack
,
1000 index_name
, curr_index
,
1001 keep_name
, keep_msg
,
1004 free(index_name_buf
);
1005 free(keep_name_buf
);
1006 if (pack_name
== NULL
)
1008 if (index_name
== NULL
)