10 static const char index_pack_usage
[] =
11 "git-index-pack [-v] [-o <index-file>] [{ ---keep | --keep=<msg> }] { <pack-file> | --stdin [--fix-thin] [<pack-file>] }";
17 unsigned int hdr_size
;
19 enum object_type type
;
20 enum object_type real_type
;
21 unsigned char sha1
[20];
25 unsigned char sha1
[20];
30 * Even if sizeof(union delta_base) == 24 on 64-bit archs, we really want
31 * to memcmp() only the first 20 bytes.
33 #define UNION_BASE_SZ 20
37 union delta_base base
;
41 static struct object_entry
*objects
;
42 static struct delta_entry
*deltas
;
43 static int nr_objects
;
45 static int nr_resolved_deltas
;
47 static int from_stdin
;
50 static volatile sig_atomic_t progress_update
;
52 static void progress_interval(int signum
)
57 static void setup_progress_signal(void)
62 memset(&sa
, 0, sizeof(sa
));
63 sa
.sa_handler
= progress_interval
;
64 sigemptyset(&sa
.sa_mask
);
65 sa
.sa_flags
= SA_RESTART
;
66 sigaction(SIGALRM
, &sa
, NULL
);
68 v
.it_interval
.tv_sec
= 1;
69 v
.it_interval
.tv_usec
= 0;
70 v
.it_value
= v
.it_interval
;
71 setitimer(ITIMER_REAL
, &v
, NULL
);
75 static unsigned display_progress(unsigned n
, unsigned total
, unsigned last_pc
)
77 unsigned percent
= n
* 100 / total
;
78 if (percent
!= last_pc
|| progress_update
) {
79 fprintf(stderr
, "%4u%% (%u/%u) done\r", percent
, n
, total
);
85 /* We always read in 4kB chunks. */
86 static unsigned char input_buffer
[4096];
87 static unsigned int input_offset
, input_len
;
88 static off_t consumed_bytes
;
89 static SHA_CTX input_ctx
;
90 static uint32_t input_crc32
;
91 static int input_fd
, output_fd
, pack_fd
;
93 /* Discard current buffer used content. */
94 static void flush(void)
98 write_or_die(output_fd
, input_buffer
, input_offset
);
99 SHA1_Update(&input_ctx
, input_buffer
, input_offset
);
100 memmove(input_buffer
, input_buffer
+ input_offset
, input_len
);
106 * Make sure at least "min" bytes are available in the buffer, and
107 * return the pointer to the buffer.
109 static void *fill(int min
)
111 if (min
<= input_len
)
112 return input_buffer
+ input_offset
;
113 if (min
> sizeof(input_buffer
))
114 die("cannot fill %d bytes", min
);
117 int ret
= xread(input_fd
, input_buffer
+ input_len
,
118 sizeof(input_buffer
) - input_len
);
122 die("read error on input: %s", strerror(errno
));
125 } while (input_len
< min
);
129 static void use(int bytes
)
131 if (bytes
> input_len
)
132 die("used more bytes than were available");
133 input_crc32
= crc32(input_crc32
, input_buffer
+ input_offset
, bytes
);
135 input_offset
+= bytes
;
137 /* make sure off_t is sufficiently large not to wrap */
138 if (consumed_bytes
> consumed_bytes
+ bytes
)
139 die("pack too large for current definition of off_t");
140 consumed_bytes
+= bytes
;
143 static const char *open_pack_file(const char *pack_name
)
148 static char tmpfile
[PATH_MAX
];
149 snprintf(tmpfile
, sizeof(tmpfile
),
150 "%s/tmp_pack_XXXXXX", get_object_directory());
151 output_fd
= mkstemp(tmpfile
);
152 pack_name
= xstrdup(tmpfile
);
154 output_fd
= open(pack_name
, O_CREAT
|O_EXCL
|O_RDWR
, 0600);
156 die("unable to create %s: %s\n", pack_name
, strerror(errno
));
159 input_fd
= open(pack_name
, O_RDONLY
);
161 die("cannot open packfile '%s': %s",
162 pack_name
, strerror(errno
));
166 SHA1_Init(&input_ctx
);
170 static void parse_pack_header(void)
172 struct pack_header
*hdr
= fill(sizeof(struct pack_header
));
174 /* Header consistency check */
175 if (hdr
->hdr_signature
!= htonl(PACK_SIGNATURE
))
176 die("pack signature mismatch");
177 if (!pack_version_ok(hdr
->hdr_version
))
178 die("pack version %d unsupported", ntohl(hdr
->hdr_version
));
180 nr_objects
= ntohl(hdr
->hdr_entries
);
181 use(sizeof(struct pack_header
));
184 static void bad_object(unsigned long offset
, const char *format
,
185 ...) NORETURN
__attribute__((format (printf
, 2, 3)));
187 static void bad_object(unsigned long offset
, const char *format
, ...)
192 va_start(params
, format
);
193 vsnprintf(buf
, sizeof(buf
), format
, params
);
195 die("pack has bad object at offset %lu: %s", offset
, buf
);
198 static void *unpack_entry_data(unsigned long offset
, unsigned long size
)
201 void *buf
= xmalloc(size
);
203 memset(&stream
, 0, sizeof(stream
));
204 stream
.next_out
= buf
;
205 stream
.avail_out
= size
;
206 stream
.next_in
= fill(1);
207 stream
.avail_in
= input_len
;
208 inflateInit(&stream
);
211 int ret
= inflate(&stream
, 0);
212 use(input_len
- stream
.avail_in
);
213 if (stream
.total_out
== size
&& ret
== Z_STREAM_END
)
216 bad_object(offset
, "inflate returned %d", ret
);
217 stream
.next_in
= fill(1);
218 stream
.avail_in
= input_len
;
224 static void *unpack_raw_entry(struct object_entry
*obj
, union delta_base
*delta_base
)
232 obj
->offset
= consumed_bytes
;
233 input_crc32
= crc32(0, Z_NULL
, 0);
238 obj
->type
= (c
>> 4) & 7;
245 size
+= (c
& 0x7fUL
) << shift
;
252 hashcpy(delta_base
->sha1
, fill(20));
256 memset(delta_base
, 0, sizeof(*delta_base
));
260 base_offset
= c
& 127;
263 if (!base_offset
|| MSB(base_offset
, 7))
264 bad_object(obj
->offset
, "offset value overflow for delta base object");
268 base_offset
= (base_offset
<< 7) + (c
& 127);
270 delta_base
->offset
= obj
->offset
- base_offset
;
271 if (delta_base
->offset
>= obj
->offset
)
272 bad_object(obj
->offset
, "delta base offset is out of bound");
280 bad_object(obj
->offset
, "unknown object type %d", obj
->type
);
282 obj
->hdr_size
= consumed_bytes
- obj
->offset
;
284 data
= unpack_entry_data(obj
->offset
, obj
->size
);
285 obj
->crc32
= input_crc32
;
289 static void *get_data_from_pack(struct object_entry
*obj
)
291 unsigned long from
= obj
[0].offset
+ obj
[0].hdr_size
;
292 unsigned long len
= obj
[1].offset
- from
;
293 unsigned long rdy
= 0;
294 unsigned char *src
, *data
;
301 ssize_t n
= pread(pack_fd
, data
+ rdy
, len
- rdy
, from
+ rdy
);
303 die("cannot pread pack file: %s", strerror(errno
));
306 data
= xmalloc(obj
->size
);
307 memset(&stream
, 0, sizeof(stream
));
308 stream
.next_out
= data
;
309 stream
.avail_out
= obj
->size
;
310 stream
.next_in
= src
;
311 stream
.avail_in
= len
;
312 inflateInit(&stream
);
313 while ((st
= inflate(&stream
, Z_FINISH
)) == Z_OK
);
315 if (st
!= Z_STREAM_END
|| stream
.total_out
!= obj
->size
)
316 die("serious inflate inconsistency");
321 static int find_delta(const union delta_base
*base
)
323 int first
= 0, last
= nr_deltas
;
325 while (first
< last
) {
326 int next
= (first
+ last
) / 2;
327 struct delta_entry
*delta
= &deltas
[next
];
330 cmp
= memcmp(base
, &delta
->base
, UNION_BASE_SZ
);
342 static int find_delta_children(const union delta_base
*base
,
343 int *first_index
, int *last_index
)
345 int first
= find_delta(base
);
347 int end
= nr_deltas
- 1;
351 while (first
> 0 && !memcmp(&deltas
[first
- 1].base
, base
, UNION_BASE_SZ
))
353 while (last
< end
&& !memcmp(&deltas
[last
+ 1].base
, base
, UNION_BASE_SZ
))
355 *first_index
= first
;
360 static void sha1_object(const void *data
, unsigned long size
,
361 enum object_type type
, unsigned char *sha1
)
363 hash_sha1_file(data
, size
, typename(type
), sha1
);
364 if (has_sha1_file(sha1
)) {
366 enum object_type has_type
;
367 unsigned long has_size
;
368 has_data
= read_sha1_file(sha1
, &has_type
, &has_size
);
370 die("cannot read existing object %s", sha1_to_hex(sha1
));
371 if (size
!= has_size
|| type
!= has_type
||
372 memcmp(data
, has_data
, size
) != 0)
373 die("SHA1 COLLISION FOUND WITH %s !", sha1_to_hex(sha1
));
378 static void resolve_delta(struct object_entry
*delta_obj
, void *base_data
,
379 unsigned long base_size
, enum object_type type
)
382 unsigned long delta_size
;
384 unsigned long result_size
;
385 union delta_base delta_base
;
388 delta_obj
->real_type
= type
;
389 delta_data
= get_data_from_pack(delta_obj
);
390 delta_size
= delta_obj
->size
;
391 result
= patch_delta(base_data
, base_size
, delta_data
, delta_size
,
395 bad_object(delta_obj
->offset
, "failed to apply delta");
396 sha1_object(result
, result_size
, type
, delta_obj
->sha1
);
397 nr_resolved_deltas
++;
399 hashcpy(delta_base
.sha1
, delta_obj
->sha1
);
400 if (!find_delta_children(&delta_base
, &first
, &last
)) {
401 for (j
= first
; j
<= last
; j
++) {
402 struct object_entry
*child
= objects
+ deltas
[j
].obj_no
;
403 if (child
->real_type
== OBJ_REF_DELTA
)
404 resolve_delta(child
, result
, result_size
, type
);
408 memset(&delta_base
, 0, sizeof(delta_base
));
409 delta_base
.offset
= delta_obj
->offset
;
410 if (!find_delta_children(&delta_base
, &first
, &last
)) {
411 for (j
= first
; j
<= last
; j
++) {
412 struct object_entry
*child
= objects
+ deltas
[j
].obj_no
;
413 if (child
->real_type
== OBJ_OFS_DELTA
)
414 resolve_delta(child
, result
, result_size
, type
);
421 static int compare_delta_entry(const void *a
, const void *b
)
423 const struct delta_entry
*delta_a
= a
;
424 const struct delta_entry
*delta_b
= b
;
425 return memcmp(&delta_a
->base
, &delta_b
->base
, UNION_BASE_SZ
);
428 /* Parse all objects and return the pack content SHA1 hash */
429 static void parse_pack_objects(unsigned char *sha1
)
432 struct delta_entry
*delta
= deltas
;
438 * - find locations of all objects;
439 * - calculate SHA1 of all non-delta objects;
440 * - remember base (SHA1 or offset) for all deltas.
443 fprintf(stderr
, "Indexing %d objects.\n", nr_objects
);
444 for (i
= 0; i
< nr_objects
; i
++) {
445 struct object_entry
*obj
= &objects
[i
];
446 data
= unpack_raw_entry(obj
, &delta
->base
);
447 obj
->real_type
= obj
->type
;
448 if (obj
->type
== OBJ_REF_DELTA
|| obj
->type
== OBJ_OFS_DELTA
) {
453 sha1_object(data
, obj
->size
, obj
->type
, obj
->sha1
);
456 percent
= display_progress(i
+1, nr_objects
, percent
);
458 objects
[i
].offset
= consumed_bytes
;
462 /* Check pack integrity */
464 SHA1_Final(sha1
, &input_ctx
);
465 if (hashcmp(fill(20), sha1
))
466 die("pack is corrupted (SHA1 mismatch)");
469 /* If input_fd is a file, we should have reached its end now. */
470 if (fstat(input_fd
, &st
))
471 die("cannot fstat packfile: %s", strerror(errno
));
472 if (S_ISREG(st
.st_mode
) &&
473 lseek(input_fd
, 0, SEEK_CUR
) - input_len
!= st
.st_size
)
474 die("pack has junk at the end");
479 /* Sort deltas by base SHA1/offset for fast searching */
480 qsort(deltas
, nr_deltas
, sizeof(struct delta_entry
),
481 compare_delta_entry
);
485 * - for all non-delta objects, look if it is used as a base for
487 * - if used as a base, uncompress the object and apply all deltas,
488 * recursively checking if the resulting object is used as a base
489 * for some more deltas.
492 fprintf(stderr
, "Resolving %d deltas.\n", nr_deltas
);
493 for (i
= 0; i
< nr_objects
; i
++) {
494 struct object_entry
*obj
= &objects
[i
];
495 union delta_base base
;
496 int j
, ref
, ref_first
, ref_last
, ofs
, ofs_first
, ofs_last
;
498 if (obj
->type
== OBJ_REF_DELTA
|| obj
->type
== OBJ_OFS_DELTA
)
500 hashcpy(base
.sha1
, obj
->sha1
);
501 ref
= !find_delta_children(&base
, &ref_first
, &ref_last
);
502 memset(&base
, 0, sizeof(base
));
503 base
.offset
= obj
->offset
;
504 ofs
= !find_delta_children(&base
, &ofs_first
, &ofs_last
);
507 data
= get_data_from_pack(obj
);
509 for (j
= ref_first
; j
<= ref_last
; j
++) {
510 struct object_entry
*child
= objects
+ deltas
[j
].obj_no
;
511 if (child
->real_type
== OBJ_REF_DELTA
)
512 resolve_delta(child
, data
,
513 obj
->size
, obj
->type
);
516 for (j
= ofs_first
; j
<= ofs_last
; j
++) {
517 struct object_entry
*child
= objects
+ deltas
[j
].obj_no
;
518 if (child
->real_type
== OBJ_OFS_DELTA
)
519 resolve_delta(child
, data
,
520 obj
->size
, obj
->type
);
524 percent
= display_progress(nr_resolved_deltas
,
527 if (verbose
&& nr_resolved_deltas
== nr_deltas
)
531 static int write_compressed(int fd
, void *in
, unsigned int size
, uint32_t *obj_crc
)
534 unsigned long maxsize
;
537 memset(&stream
, 0, sizeof(stream
));
538 deflateInit(&stream
, zlib_compression_level
);
539 maxsize
= deflateBound(&stream
, size
);
540 out
= xmalloc(maxsize
);
544 stream
.avail_in
= size
;
545 stream
.next_out
= out
;
546 stream
.avail_out
= maxsize
;
547 while (deflate(&stream
, Z_FINISH
) == Z_OK
);
550 size
= stream
.total_out
;
551 write_or_die(fd
, out
, size
);
552 *obj_crc
= crc32(*obj_crc
, out
, size
);
557 static void append_obj_to_pack(const unsigned char *sha1
, void *buf
,
558 unsigned long size
, enum object_type type
)
560 struct object_entry
*obj
= &objects
[nr_objects
++];
561 unsigned char header
[10];
562 unsigned long s
= size
;
564 unsigned char c
= (type
<< 4) | (s
& 15);
567 header
[n
++] = c
| 0x80;
572 write_or_die(output_fd
, header
, n
);
573 obj
[0].crc32
= crc32(0, Z_NULL
, 0);
574 obj
[0].crc32
= crc32(obj
[0].crc32
, header
, n
);
575 obj
[1].offset
= obj
[0].offset
+ n
;
576 obj
[1].offset
+= write_compressed(output_fd
, buf
, size
, &obj
[0].crc32
);
577 hashcpy(obj
->sha1
, sha1
);
580 static int delta_pos_compare(const void *_a
, const void *_b
)
582 struct delta_entry
*a
= *(struct delta_entry
**)_a
;
583 struct delta_entry
*b
= *(struct delta_entry
**)_b
;
584 return a
->obj_no
- b
->obj_no
;
587 static void fix_unresolved_deltas(int nr_unresolved
)
589 struct delta_entry
**sorted_by_pos
;
590 int i
, n
= 0, percent
= -1;
593 * Since many unresolved deltas may well be themselves base objects
594 * for more unresolved deltas, we really want to include the
595 * smallest number of base objects that would cover as much delta
596 * as possible by picking the
597 * trunc deltas first, allowing for other deltas to resolve without
598 * additional base objects. Since most base objects are to be found
599 * before deltas depending on them, a good heuristic is to start
600 * resolving deltas in the same order as their position in the pack.
602 sorted_by_pos
= xmalloc(nr_unresolved
* sizeof(*sorted_by_pos
));
603 for (i
= 0; i
< nr_deltas
; i
++) {
604 if (objects
[deltas
[i
].obj_no
].real_type
!= OBJ_REF_DELTA
)
606 sorted_by_pos
[n
++] = &deltas
[i
];
608 qsort(sorted_by_pos
, n
, sizeof(*sorted_by_pos
), delta_pos_compare
);
610 for (i
= 0; i
< n
; i
++) {
611 struct delta_entry
*d
= sorted_by_pos
[i
];
614 enum object_type type
;
617 if (objects
[d
->obj_no
].real_type
!= OBJ_REF_DELTA
)
619 data
= read_sha1_file(d
->base
.sha1
, &type
, &size
);
623 find_delta_children(&d
->base
, &first
, &last
);
624 for (j
= first
; j
<= last
; j
++) {
625 struct object_entry
*child
= objects
+ deltas
[j
].obj_no
;
626 if (child
->real_type
== OBJ_REF_DELTA
)
627 resolve_delta(child
, data
, size
, type
);
630 if (check_sha1_signature(d
->base
.sha1
, data
, size
, typename(type
)))
631 die("local object %s is corrupt", sha1_to_hex(d
->base
.sha1
));
632 append_obj_to_pack(d
->base
.sha1
, data
, size
, type
);
635 percent
= display_progress(nr_resolved_deltas
,
643 static void readjust_pack_header_and_sha1(unsigned char *sha1
)
645 struct pack_header hdr
;
649 /* Rewrite pack header with updated object number */
650 if (lseek(output_fd
, 0, SEEK_SET
) != 0)
651 die("cannot seek back: %s", strerror(errno
));
652 if (read_in_full(output_fd
, &hdr
, sizeof(hdr
)) != sizeof(hdr
))
653 die("cannot read pack header back: %s", strerror(errno
));
654 hdr
.hdr_entries
= htonl(nr_objects
);
655 if (lseek(output_fd
, 0, SEEK_SET
) != 0)
656 die("cannot seek back: %s", strerror(errno
));
657 write_or_die(output_fd
, &hdr
, sizeof(hdr
));
658 if (lseek(output_fd
, 0, SEEK_SET
) != 0)
659 die("cannot seek back: %s", strerror(errno
));
661 /* Recompute and store the new pack's SHA1 */
664 unsigned char *buf
[4096];
665 size
= xread(output_fd
, buf
, sizeof(buf
));
667 die("cannot read pack data back: %s", strerror(errno
));
668 SHA1_Update(&ctx
, buf
, size
);
670 SHA1_Final(sha1
, &ctx
);
671 write_or_die(output_fd
, sha1
, 20);
674 static uint32_t index_default_version
= 1;
675 static uint32_t index_off32_limit
= 0x7fffffff;
677 static int sha1_compare(const void *_a
, const void *_b
)
679 struct object_entry
*a
= *(struct object_entry
**)_a
;
680 struct object_entry
*b
= *(struct object_entry
**)_b
;
681 return hashcmp(a
->sha1
, b
->sha1
);
685 * On entry *sha1 contains the pack content SHA1 hash, on exit it is
686 * the SHA1 hash of sorted object names.
688 static const char *write_index_file(const char *index_name
, unsigned char *sha1
)
691 struct object_entry
**sorted_by_sha
, **list
, **last
;
695 uint32_t index_version
;
699 xcalloc(nr_objects
, sizeof(struct object_entry
*));
700 list
= sorted_by_sha
;
701 last
= sorted_by_sha
+ nr_objects
;
702 for (i
= 0; i
< nr_objects
; ++i
)
703 sorted_by_sha
[i
] = &objects
[i
];
704 qsort(sorted_by_sha
, nr_objects
, sizeof(sorted_by_sha
[0]),
708 sorted_by_sha
= list
= last
= NULL
;
711 static char tmpfile
[PATH_MAX
];
712 snprintf(tmpfile
, sizeof(tmpfile
),
713 "%s/tmp_idx_XXXXXX", get_object_directory());
714 fd
= mkstemp(tmpfile
);
715 index_name
= xstrdup(tmpfile
);
718 fd
= open(index_name
, O_CREAT
|O_EXCL
|O_WRONLY
, 0600);
721 die("unable to create %s: %s", index_name
, strerror(errno
));
722 f
= sha1fd(fd
, index_name
);
724 /* if last object's offset is >= 2^31 we should use index V2 */
725 index_version
= (objects
[nr_objects
-1].offset
>> 31) ? 2 : index_default_version
;
727 /* index versions 2 and above need a header */
728 if (index_version
>= 2) {
729 struct pack_idx_header hdr
;
730 hdr
.idx_signature
= htonl(PACK_IDX_SIGNATURE
);
731 hdr
.idx_version
= htonl(index_version
);
732 sha1write(f
, &hdr
, sizeof(hdr
));
736 * Write the first-level table (the list is sorted,
737 * but we use a 256-entry lookup to be able to avoid
738 * having to do eight extra binary search iterations).
740 for (i
= 0; i
< 256; i
++) {
741 struct object_entry
**next
= list
;
742 while (next
< last
) {
743 struct object_entry
*obj
= *next
;
744 if (obj
->sha1
[0] != i
)
748 array
[i
] = htonl(next
- sorted_by_sha
);
751 sha1write(f
, array
, 256 * 4);
753 /* compute the SHA1 hash of sorted object names. */
757 * Write the actual SHA1 entries..
759 list
= sorted_by_sha
;
760 for (i
= 0; i
< nr_objects
; i
++) {
761 struct object_entry
*obj
= *list
++;
762 if (index_version
< 2) {
763 uint32_t offset
= htonl(obj
->offset
);
764 sha1write(f
, &offset
, 4);
766 sha1write(f
, obj
->sha1
, 20);
767 SHA1_Update(&ctx
, obj
->sha1
, 20);
770 if (index_version
>= 2) {
771 unsigned int nr_large_offset
= 0;
773 /* write the crc32 table */
774 list
= sorted_by_sha
;
775 for (i
= 0; i
< nr_objects
; i
++) {
776 struct object_entry
*obj
= *list
++;
777 uint32_t crc32_val
= htonl(obj
->crc32
);
778 sha1write(f
, &crc32_val
, 4);
781 /* write the 32-bit offset table */
782 list
= sorted_by_sha
;
783 for (i
= 0; i
< nr_objects
; i
++) {
784 struct object_entry
*obj
= *list
++;
785 uint32_t offset
= (obj
->offset
<= index_off32_limit
) ?
786 obj
->offset
: (0x80000000 | nr_large_offset
++);
787 offset
= htonl(offset
);
788 sha1write(f
, &offset
, 4);
791 /* write the large offset table */
792 list
= sorted_by_sha
;
793 while (nr_large_offset
) {
794 struct object_entry
*obj
= *list
++;
795 uint64_t offset
= obj
->offset
;
796 if (offset
> index_off32_limit
) {
798 split
[0] = htonl(offset
>> 32);
799 split
[1] = htonl(offset
& 0xffffffff);
800 sha1write(f
, split
, 8);
806 sha1write(f
, sha1
, 20);
807 sha1close(f
, NULL
, 1);
809 SHA1_Final(sha1
, &ctx
);
813 static void final(const char *final_pack_name
, const char *curr_pack_name
,
814 const char *final_index_name
, const char *curr_index_name
,
815 const char *keep_name
, const char *keep_msg
,
818 const char *report
= "pack";
825 err
= close(output_fd
);
827 die("error while closing pack file: %s", strerror(errno
));
828 chmod(curr_pack_name
, 0444);
832 int keep_fd
, keep_msg_len
= strlen(keep_msg
);
834 snprintf(name
, sizeof(name
), "%s/pack/pack-%s.keep",
835 get_object_directory(), sha1_to_hex(sha1
));
838 keep_fd
= open(keep_name
, O_RDWR
|O_CREAT
|O_EXCL
, 0600);
841 die("cannot write keep file");
843 if (keep_msg_len
> 0) {
844 write_or_die(keep_fd
, keep_msg
, keep_msg_len
);
845 write_or_die(keep_fd
, "\n", 1);
852 if (final_pack_name
!= curr_pack_name
) {
853 if (!final_pack_name
) {
854 snprintf(name
, sizeof(name
), "%s/pack/pack-%s.pack",
855 get_object_directory(), sha1_to_hex(sha1
));
856 final_pack_name
= name
;
858 if (move_temp_to_file(curr_pack_name
, final_pack_name
))
859 die("cannot store pack file");
862 chmod(curr_index_name
, 0444);
863 if (final_index_name
!= curr_index_name
) {
864 if (!final_index_name
) {
865 snprintf(name
, sizeof(name
), "%s/pack/pack-%s.idx",
866 get_object_directory(), sha1_to_hex(sha1
));
867 final_index_name
= name
;
869 if (move_temp_to_file(curr_index_name
, final_index_name
))
870 die("cannot store index file");
874 printf("%s\n", sha1_to_hex(sha1
));
877 int len
= snprintf(buf
, sizeof(buf
), "%s\t%s\n",
878 report
, sha1_to_hex(sha1
));
879 write_or_die(1, buf
, len
);
882 * Let's just mimic git-unpack-objects here and write
883 * the last part of the input buffer to stdout.
886 err
= xwrite(1, input_buffer
+ input_offset
, input_len
);
895 int main(int argc
, char **argv
)
897 int i
, fix_thin_pack
= 0;
898 const char *curr_pack
, *pack_name
= NULL
;
899 const char *curr_index
, *index_name
= NULL
;
900 const char *keep_name
= NULL
, *keep_msg
= NULL
;
901 char *index_name_buf
= NULL
, *keep_name_buf
= NULL
;
902 unsigned char sha1
[20];
904 for (i
= 1; i
< argc
; i
++) {
905 const char *arg
= argv
[i
];
908 if (!strcmp(arg
, "--stdin")) {
910 } else if (!strcmp(arg
, "--fix-thin")) {
912 } else if (!strcmp(arg
, "--keep")) {
914 } else if (!prefixcmp(arg
, "--keep=")) {
916 } else if (!prefixcmp(arg
, "--pack_header=")) {
917 struct pack_header
*hdr
;
920 hdr
= (struct pack_header
*)input_buffer
;
921 hdr
->hdr_signature
= htonl(PACK_SIGNATURE
);
922 hdr
->hdr_version
= htonl(strtoul(arg
+ 14, &c
, 10));
925 hdr
->hdr_entries
= htonl(strtoul(c
+ 1, &c
, 10));
928 input_len
= sizeof(*hdr
);
929 } else if (!strcmp(arg
, "-v")) {
931 } else if (!strcmp(arg
, "-o")) {
932 if (index_name
|| (i
+1) >= argc
)
933 usage(index_pack_usage
);
934 index_name
= argv
[++i
];
935 } else if (!prefixcmp(arg
, "--index-version=")) {
937 index_default_version
= strtoul(arg
+ 16, &c
, 10);
938 if (index_default_version
> 2)
941 index_off32_limit
= strtoul(c
+1, &c
, 0);
942 if (*c
|| index_off32_limit
& 0x80000000)
945 usage(index_pack_usage
);
950 usage(index_pack_usage
);
954 if (!pack_name
&& !from_stdin
)
955 usage(index_pack_usage
);
956 if (fix_thin_pack
&& !from_stdin
)
957 die("--fix-thin cannot be used without --stdin");
958 if (!index_name
&& pack_name
) {
959 int len
= strlen(pack_name
);
960 if (!has_extension(pack_name
, ".pack"))
961 die("packfile name '%s' does not end with '.pack'",
963 index_name_buf
= xmalloc(len
);
964 memcpy(index_name_buf
, pack_name
, len
- 5);
965 strcpy(index_name_buf
+ len
- 5, ".idx");
966 index_name
= index_name_buf
;
968 if (keep_msg
&& !keep_name
&& pack_name
) {
969 int len
= strlen(pack_name
);
970 if (!has_extension(pack_name
, ".pack"))
971 die("packfile name '%s' does not end with '.pack'",
973 keep_name_buf
= xmalloc(len
);
974 memcpy(keep_name_buf
, pack_name
, len
- 5);
975 strcpy(keep_name_buf
+ len
- 5, ".keep");
976 keep_name
= keep_name_buf
;
979 curr_pack
= open_pack_file(pack_name
);
981 objects
= xmalloc((nr_objects
+ 1) * sizeof(struct object_entry
));
982 deltas
= xmalloc(nr_objects
* sizeof(struct delta_entry
));
984 setup_progress_signal();
985 parse_pack_objects(sha1
);
986 if (nr_deltas
!= nr_resolved_deltas
) {
988 int nr_unresolved
= nr_deltas
- nr_resolved_deltas
;
989 int nr_objects_initial
= nr_objects
;
990 if (nr_unresolved
<= 0)
991 die("confusion beyond insanity");
992 objects
= xrealloc(objects
,
993 (nr_objects
+ nr_unresolved
+ 1)
995 fix_unresolved_deltas(nr_unresolved
);
997 fprintf(stderr
, "%d objects were added to complete this thin pack.\n",
998 nr_objects
- nr_objects_initial
);
999 readjust_pack_header_and_sha1(sha1
);
1001 if (nr_deltas
!= nr_resolved_deltas
)
1002 die("pack has %d unresolved deltas",
1003 nr_deltas
- nr_resolved_deltas
);
1005 /* Flush remaining pack final 20-byte SHA1. */
1009 curr_index
= write_index_file(index_name
, sha1
);
1010 final(pack_name
, curr_pack
,
1011 index_name
, curr_index
,
1012 keep_name
, keep_msg
,
1015 free(index_name_buf
);
1016 free(keep_name_buf
);