12 #include "streaming.h"
13 #include "thread-utils.h"
15 static const char index_pack_usage
[] =
16 "git index-pack [-v] [-o <index-file>] [--keep | --keep=<msg>] [--verify] [--strict] (<pack-file> | --stdin [--fix-thin] [<pack-file>])";
19 struct pack_idx_entry idx
;
21 unsigned int hdr_size
;
22 enum object_type type
;
23 enum object_type real_type
;
29 unsigned char sha1
[20];
34 struct base_data
*base
;
35 struct base_data
*child
;
36 struct object_entry
*obj
;
39 int ref_first
, ref_last
;
40 int ofs_first
, ofs_last
;
43 #if !defined(NO_PTHREADS) && defined(NO_THREAD_SAFE_PREAD)
44 /* pread() emulation is not thread-safe. Disable threading. */
52 struct base_data
*base_cache
;
53 size_t base_cache_used
;
57 * Even if sizeof(union delta_base) == 24 on 64-bit archs, we really want
58 * to memcmp() only the first 20 bytes.
60 #define UNION_BASE_SZ 20
62 #define FLAG_LINK (1u<<20)
63 #define FLAG_CHECKED (1u<<21)
66 union delta_base base
;
70 static struct object_entry
*objects
;
71 static struct delta_entry
*deltas
;
72 static struct thread_local nothread_data
;
73 static int nr_objects
;
75 static int nr_resolved_deltas
;
76 static int nr_threads
;
78 static int from_stdin
;
80 static int do_fsck_object
;
83 static int check_self_contained_and_connected
;
85 static struct progress
*progress
;
87 /* We always read in 4kB chunks. */
88 static unsigned char input_buffer
[4096];
89 static unsigned int input_offset
, input_len
;
90 static off_t consumed_bytes
;
91 static unsigned deepest_delta
;
92 static git_SHA_CTX input_ctx
;
93 static uint32_t input_crc32
;
94 static int input_fd
, output_fd
, pack_fd
;
98 static struct thread_local
*thread_data
;
99 static int nr_dispatched
;
100 static int threads_active
;
102 static pthread_mutex_t read_mutex
;
103 #define read_lock() lock_mutex(&read_mutex)
104 #define read_unlock() unlock_mutex(&read_mutex)
106 static pthread_mutex_t counter_mutex
;
107 #define counter_lock() lock_mutex(&counter_mutex)
108 #define counter_unlock() unlock_mutex(&counter_mutex)
110 static pthread_mutex_t work_mutex
;
111 #define work_lock() lock_mutex(&work_mutex)
112 #define work_unlock() unlock_mutex(&work_mutex)
114 static pthread_mutex_t deepest_delta_mutex
;
115 #define deepest_delta_lock() lock_mutex(&deepest_delta_mutex)
116 #define deepest_delta_unlock() unlock_mutex(&deepest_delta_mutex)
118 static pthread_key_t key
;
120 static inline void lock_mutex(pthread_mutex_t
*mutex
)
123 pthread_mutex_lock(mutex
);
126 static inline void unlock_mutex(pthread_mutex_t
*mutex
)
129 pthread_mutex_unlock(mutex
);
133 * Mutex and conditional variable can't be statically-initialized on Windows.
135 static void init_thread(void)
137 init_recursive_mutex(&read_mutex
);
138 pthread_mutex_init(&counter_mutex
, NULL
);
139 pthread_mutex_init(&work_mutex
, NULL
);
141 pthread_mutex_init(&deepest_delta_mutex
, NULL
);
142 pthread_key_create(&key
, NULL
);
143 thread_data
= xcalloc(nr_threads
, sizeof(*thread_data
));
147 static void cleanup_thread(void)
152 pthread_mutex_destroy(&read_mutex
);
153 pthread_mutex_destroy(&counter_mutex
);
154 pthread_mutex_destroy(&work_mutex
);
156 pthread_mutex_destroy(&deepest_delta_mutex
);
157 pthread_key_delete(key
);
164 #define read_unlock()
166 #define counter_lock()
167 #define counter_unlock()
170 #define work_unlock()
172 #define deepest_delta_lock()
173 #define deepest_delta_unlock()
178 static int mark_link(struct object
*obj
, int type
, void *data
)
183 if (type
!= OBJ_ANY
&& obj
->type
!= type
)
184 die(_("object type mismatch at %s"), sha1_to_hex(obj
->sha1
));
186 obj
->flags
|= FLAG_LINK
;
190 /* The content of each linked object must have been checked
191 or it must be already present in the object database */
192 static unsigned check_object(struct object
*obj
)
197 if (!(obj
->flags
& FLAG_LINK
))
200 if (!(obj
->flags
& FLAG_CHECKED
)) {
202 int type
= sha1_object_info(obj
->sha1
, &size
);
203 if (type
!= obj
->type
|| type
<= 0)
204 die(_("object of unexpected type"));
205 obj
->flags
|= FLAG_CHECKED
;
212 static unsigned check_objects(void)
214 unsigned i
, max
, foreign_nr
= 0;
216 max
= get_max_object_index();
217 for (i
= 0; i
< max
; i
++)
218 foreign_nr
+= check_object(get_indexed_object(i
));
223 /* Discard current buffer used content. */
224 static void flush(void)
228 write_or_die(output_fd
, input_buffer
, input_offset
);
229 git_SHA1_Update(&input_ctx
, input_buffer
, input_offset
);
230 memmove(input_buffer
, input_buffer
+ input_offset
, input_len
);
236 * Make sure at least "min" bytes are available in the buffer, and
237 * return the pointer to the buffer.
239 static void *fill(int min
)
241 if (min
<= input_len
)
242 return input_buffer
+ input_offset
;
243 if (min
> sizeof(input_buffer
))
244 die(Q_("cannot fill %d byte",
245 "cannot fill %d bytes",
250 ssize_t ret
= xread(input_fd
, input_buffer
+ input_len
,
251 sizeof(input_buffer
) - input_len
);
255 die_errno(_("read error on input"));
259 display_throughput(progress
, consumed_bytes
+ input_len
);
260 } while (input_len
< min
);
264 static void use(int bytes
)
266 if (bytes
> input_len
)
267 die(_("used more bytes than were available"));
268 input_crc32
= crc32(input_crc32
, input_buffer
+ input_offset
, bytes
);
270 input_offset
+= bytes
;
272 /* make sure off_t is sufficiently large not to wrap */
273 if (signed_add_overflows(consumed_bytes
, bytes
))
274 die(_("pack too large for current definition of off_t"));
275 consumed_bytes
+= bytes
;
278 static const char *open_pack_file(const char *pack_name
)
283 static char tmp_file
[PATH_MAX
];
284 output_fd
= odb_mkstemp(tmp_file
, sizeof(tmp_file
),
285 "pack/tmp_pack_XXXXXX");
286 pack_name
= xstrdup(tmp_file
);
288 output_fd
= open(pack_name
, O_CREAT
|O_EXCL
|O_RDWR
, 0600);
290 die_errno(_("unable to create '%s'"), pack_name
);
293 input_fd
= open(pack_name
, O_RDONLY
);
295 die_errno(_("cannot open packfile '%s'"), pack_name
);
299 git_SHA1_Init(&input_ctx
);
303 static void parse_pack_header(void)
305 struct pack_header
*hdr
= fill(sizeof(struct pack_header
));
307 /* Header consistency check */
308 if (hdr
->hdr_signature
!= htonl(PACK_SIGNATURE
))
309 die(_("pack signature mismatch"));
310 if (!pack_version_ok(hdr
->hdr_version
))
311 die(_("pack version %"PRIu32
" unsupported"),
312 ntohl(hdr
->hdr_version
));
314 nr_objects
= ntohl(hdr
->hdr_entries
);
315 use(sizeof(struct pack_header
));
318 static NORETURN
void bad_object(unsigned long offset
, const char *format
,
319 ...) __attribute__((format (printf
, 2, 3)));
321 static NORETURN
void bad_object(unsigned long offset
, const char *format
, ...)
326 va_start(params
, format
);
327 vsnprintf(buf
, sizeof(buf
), format
, params
);
329 die(_("pack has bad object at offset %lu: %s"), offset
, buf
);
332 static inline struct thread_local
*get_thread_data(void)
336 return pthread_getspecific(key
);
337 assert(!threads_active
&&
338 "This should only be reached when all threads are gone");
340 return ¬hread_data
;
344 static void set_thread_data(struct thread_local
*data
)
347 pthread_setspecific(key
, data
);
351 static struct base_data
*alloc_base_data(void)
353 struct base_data
*base
= xmalloc(sizeof(struct base_data
));
354 memset(base
, 0, sizeof(*base
));
360 static void free_base_data(struct base_data
*c
)
365 get_thread_data()->base_cache_used
-= c
->size
;
369 static void prune_base_data(struct base_data
*retain
)
372 struct thread_local
*data
= get_thread_data();
373 for (b
= data
->base_cache
;
374 data
->base_cache_used
> delta_base_cache_limit
&& b
;
376 if (b
->data
&& b
!= retain
)
381 static void link_base_data(struct base_data
*base
, struct base_data
*c
)
386 get_thread_data()->base_cache
= c
;
391 get_thread_data()->base_cache_used
+= c
->size
;
395 static void unlink_base_data(struct base_data
*c
)
397 struct base_data
*base
= c
->base
;
401 get_thread_data()->base_cache
= NULL
;
405 static int is_delta_type(enum object_type type
)
407 return (type
== OBJ_REF_DELTA
|| type
== OBJ_OFS_DELTA
);
410 static void *unpack_entry_data(unsigned long offset
, unsigned long size
,
411 enum object_type type
, unsigned char *sha1
)
413 static char fixed_buf
[8192];
421 if (!is_delta_type(type
)) {
422 hdrlen
= sprintf(hdr
, "%s %lu", typename(type
), size
) + 1;
424 git_SHA1_Update(&c
, hdr
, hdrlen
);
427 if (type
== OBJ_BLOB
&& size
> big_file_threshold
)
432 memset(&stream
, 0, sizeof(stream
));
433 git_inflate_init(&stream
);
434 stream
.next_out
= buf
;
435 stream
.avail_out
= buf
== fixed_buf
? sizeof(fixed_buf
) : size
;
438 unsigned char *last_out
= stream
.next_out
;
439 stream
.next_in
= fill(1);
440 stream
.avail_in
= input_len
;
441 status
= git_inflate(&stream
, 0);
442 use(input_len
- stream
.avail_in
);
444 git_SHA1_Update(&c
, last_out
, stream
.next_out
- last_out
);
445 if (buf
== fixed_buf
) {
446 stream
.next_out
= buf
;
447 stream
.avail_out
= sizeof(fixed_buf
);
449 } while (status
== Z_OK
);
450 if (stream
.total_out
!= size
|| status
!= Z_STREAM_END
)
451 bad_object(offset
, _("inflate returned %d"), status
);
452 git_inflate_end(&stream
);
454 git_SHA1_Final(sha1
, &c
);
455 return buf
== fixed_buf
? NULL
: buf
;
458 static void *unpack_raw_entry(struct object_entry
*obj
,
459 union delta_base
*delta_base
,
463 unsigned long size
, c
;
468 obj
->idx
.offset
= consumed_bytes
;
469 input_crc32
= crc32(0, NULL
, 0);
474 obj
->type
= (c
>> 4) & 7;
481 size
+= (c
& 0x7f) << shift
;
488 hashcpy(delta_base
->sha1
, fill(20));
492 memset(delta_base
, 0, sizeof(*delta_base
));
496 base_offset
= c
& 127;
499 if (!base_offset
|| MSB(base_offset
, 7))
500 bad_object(obj
->idx
.offset
, _("offset value overflow for delta base object"));
504 base_offset
= (base_offset
<< 7) + (c
& 127);
506 delta_base
->offset
= obj
->idx
.offset
- base_offset
;
507 if (delta_base
->offset
<= 0 || delta_base
->offset
>= obj
->idx
.offset
)
508 bad_object(obj
->idx
.offset
, _("delta base offset is out of bound"));
516 bad_object(obj
->idx
.offset
, _("unknown object type %d"), obj
->type
);
518 obj
->hdr_size
= consumed_bytes
- obj
->idx
.offset
;
520 data
= unpack_entry_data(obj
->idx
.offset
, obj
->size
, obj
->type
, sha1
);
521 obj
->idx
.crc32
= input_crc32
;
525 static void *unpack_data(struct object_entry
*obj
,
526 int (*consume
)(const unsigned char *, unsigned long, void *),
529 off_t from
= obj
[0].idx
.offset
+ obj
[0].hdr_size
;
530 unsigned long len
= obj
[1].idx
.offset
- from
;
531 unsigned char *data
, *inbuf
;
535 data
= xmalloc(consume
? 64*1024 : obj
->size
);
536 inbuf
= xmalloc((len
< 64*1024) ? len
: 64*1024);
538 memset(&stream
, 0, sizeof(stream
));
539 git_inflate_init(&stream
);
540 stream
.next_out
= data
;
541 stream
.avail_out
= consume
? 64*1024 : obj
->size
;
544 ssize_t n
= (len
< 64*1024) ? len
: 64*1024;
545 n
= pread(pack_fd
, inbuf
, n
, from
);
547 die_errno(_("cannot pread pack file"));
549 die(Q_("premature end of pack file, %lu byte missing",
550 "premature end of pack file, %lu bytes missing",
555 stream
.next_in
= inbuf
;
558 status
= git_inflate(&stream
, 0);
561 status
= git_inflate(&stream
, 0);
562 if (consume(data
, stream
.next_out
- data
, cb_data
)) {
567 stream
.next_out
= data
;
568 stream
.avail_out
= 64*1024;
569 } while (status
== Z_OK
&& stream
.avail_in
);
571 } while (len
&& status
== Z_OK
&& !stream
.avail_in
);
573 /* This has been inflated OK when first encountered, so... */
574 if (status
!= Z_STREAM_END
|| stream
.total_out
!= obj
->size
)
575 die(_("serious inflate inconsistency"));
577 git_inflate_end(&stream
);
586 static void *get_data_from_pack(struct object_entry
*obj
)
588 return unpack_data(obj
, NULL
, NULL
);
591 static int compare_delta_bases(const union delta_base
*base1
,
592 const union delta_base
*base2
,
593 enum object_type type1
,
594 enum object_type type2
)
596 int cmp
= type1
- type2
;
599 return memcmp(base1
, base2
, UNION_BASE_SZ
);
602 static int find_delta(const union delta_base
*base
, enum object_type type
)
604 int first
= 0, last
= nr_deltas
;
606 while (first
< last
) {
607 int next
= (first
+ last
) / 2;
608 struct delta_entry
*delta
= &deltas
[next
];
611 cmp
= compare_delta_bases(base
, &delta
->base
,
612 type
, objects
[delta
->obj_no
].type
);
624 static void find_delta_children(const union delta_base
*base
,
625 int *first_index
, int *last_index
,
626 enum object_type type
)
628 int first
= find_delta(base
, type
);
630 int end
= nr_deltas
- 1;
637 while (first
> 0 && !memcmp(&deltas
[first
- 1].base
, base
, UNION_BASE_SZ
))
639 while (last
< end
&& !memcmp(&deltas
[last
+ 1].base
, base
, UNION_BASE_SZ
))
641 *first_index
= first
;
645 struct compare_data
{
646 struct object_entry
*entry
;
647 struct git_istream
*st
;
649 unsigned long buf_size
;
652 static int compare_objects(const unsigned char *buf
, unsigned long size
,
655 struct compare_data
*data
= cb_data
;
657 if (data
->buf_size
< size
) {
659 data
->buf
= xmalloc(size
);
660 data
->buf_size
= size
;
664 ssize_t len
= read_istream(data
->st
, data
->buf
, size
);
666 die(_("SHA1 COLLISION FOUND WITH %s !"),
667 sha1_to_hex(data
->entry
->idx
.sha1
));
669 die(_("unable to read %s"),
670 sha1_to_hex(data
->entry
->idx
.sha1
));
671 if (memcmp(buf
, data
->buf
, len
))
672 die(_("SHA1 COLLISION FOUND WITH %s !"),
673 sha1_to_hex(data
->entry
->idx
.sha1
));
680 static int check_collison(struct object_entry
*entry
)
682 struct compare_data data
;
683 enum object_type type
;
686 if (entry
->size
<= big_file_threshold
|| entry
->type
!= OBJ_BLOB
)
689 memset(&data
, 0, sizeof(data
));
691 data
.st
= open_istream(entry
->idx
.sha1
, &type
, &size
, NULL
);
694 if (size
!= entry
->size
|| type
!= entry
->type
)
695 die(_("SHA1 COLLISION FOUND WITH %s !"),
696 sha1_to_hex(entry
->idx
.sha1
));
697 unpack_data(entry
, compare_objects
, &data
);
698 close_istream(data
.st
);
703 static void sha1_object(const void *data
, struct object_entry
*obj_entry
,
704 unsigned long size
, enum object_type type
,
705 const unsigned char *sha1
)
707 void *new_data
= NULL
;
708 int collision_test_needed
;
710 assert(data
|| obj_entry
);
713 collision_test_needed
= has_sha1_file(sha1
);
716 if (collision_test_needed
&& !data
) {
718 if (!check_collison(obj_entry
))
719 collision_test_needed
= 0;
722 if (collision_test_needed
) {
724 enum object_type has_type
;
725 unsigned long has_size
;
727 has_type
= sha1_object_info(sha1
, &has_size
);
728 if (has_type
!= type
|| has_size
!= size
)
729 die(_("SHA1 COLLISION FOUND WITH %s !"), sha1_to_hex(sha1
));
730 has_data
= read_sha1_file(sha1
, &has_type
, &has_size
);
733 data
= new_data
= get_data_from_pack(obj_entry
);
735 die(_("cannot read existing object %s"), sha1_to_hex(sha1
));
736 if (size
!= has_size
|| type
!= has_type
||
737 memcmp(data
, has_data
, size
) != 0)
738 die(_("SHA1 COLLISION FOUND WITH %s !"), sha1_to_hex(sha1
));
744 if (type
== OBJ_BLOB
) {
745 struct blob
*blob
= lookup_blob(sha1
);
747 blob
->object
.flags
|= FLAG_CHECKED
;
749 die(_("invalid blob object %s"), sha1_to_hex(sha1
));
753 void *buf
= (void *) data
;
755 assert(data
&& "data can only be NULL for large _blobs_");
758 * we do not need to free the memory here, as the
759 * buf is deleted by the caller.
761 obj
= parse_object_buffer(sha1
, type
, size
, buf
, &eaten
);
763 die(_("invalid %s"), typename(type
));
764 if (do_fsck_object
&&
765 fsck_object(obj
, 1, fsck_error_function
))
766 die(_("Error in object"));
767 if (fsck_walk(obj
, mark_link
, NULL
))
768 die(_("Not all child objects of %s are reachable"), sha1_to_hex(obj
->sha1
));
770 if (obj
->type
== OBJ_TREE
) {
771 struct tree
*item
= (struct tree
*) obj
;
775 if (obj
->type
== OBJ_COMMIT
) {
776 struct commit
*commit
= (struct commit
*) obj
;
777 commit
->buffer
= NULL
;
779 obj
->flags
|= FLAG_CHECKED
;
788 * This function is part of find_unresolved_deltas(). There are two
789 * walkers going in the opposite ways.
791 * The first one in find_unresolved_deltas() traverses down from
792 * parent node to children, deflating nodes along the way. However,
793 * memory for deflated nodes is limited by delta_base_cache_limit, so
794 * at some point parent node's deflated content may be freed.
796 * The second walker is this function, which goes from current node up
797 * to top parent if necessary to deflate the node. In normal
798 * situation, its parent node would be already deflated, so it just
799 * needs to apply delta.
801 * In the worst case scenario, parent node is no longer deflated because
802 * we're running out of delta_base_cache_limit; we need to re-deflate
803 * parents, possibly up to the top base.
805 * All deflated objects here are subject to be freed if we exceed
806 * delta_base_cache_limit, just like in find_unresolved_deltas(), we
807 * just need to make sure the last node is not freed.
809 static void *get_base_data(struct base_data
*c
)
812 struct object_entry
*obj
= c
->obj
;
813 struct base_data
**delta
= NULL
;
814 int delta_nr
= 0, delta_alloc
= 0;
816 while (is_delta_type(c
->obj
->type
) && !c
->data
) {
817 ALLOC_GROW(delta
, delta_nr
+ 1, delta_alloc
);
818 delta
[delta_nr
++] = c
;
822 c
->data
= get_data_from_pack(obj
);
824 get_thread_data()->base_cache_used
+= c
->size
;
827 for (; delta_nr
> 0; delta_nr
--) {
829 c
= delta
[delta_nr
- 1];
831 base
= get_base_data(c
->base
);
832 raw
= get_data_from_pack(obj
);
833 c
->data
= patch_delta(
839 bad_object(obj
->idx
.offset
, _("failed to apply delta"));
840 get_thread_data()->base_cache_used
+= c
->size
;
848 static void resolve_delta(struct object_entry
*delta_obj
,
849 struct base_data
*base
, struct base_data
*result
)
851 void *base_data
, *delta_data
;
853 delta_obj
->real_type
= base
->obj
->real_type
;
855 delta_obj
->delta_depth
= base
->obj
->delta_depth
+ 1;
856 deepest_delta_lock();
857 if (deepest_delta
< delta_obj
->delta_depth
)
858 deepest_delta
= delta_obj
->delta_depth
;
859 deepest_delta_unlock();
861 delta_obj
->base_object_no
= base
->obj
- objects
;
862 delta_data
= get_data_from_pack(delta_obj
);
863 base_data
= get_base_data(base
);
864 result
->obj
= delta_obj
;
865 result
->data
= patch_delta(base_data
, base
->size
,
866 delta_data
, delta_obj
->size
, &result
->size
);
869 bad_object(delta_obj
->idx
.offset
, _("failed to apply delta"));
870 hash_sha1_file(result
->data
, result
->size
,
871 typename(delta_obj
->real_type
), delta_obj
->idx
.sha1
);
872 sha1_object(result
->data
, NULL
, result
->size
, delta_obj
->real_type
,
873 delta_obj
->idx
.sha1
);
875 nr_resolved_deltas
++;
879 static struct base_data
*find_unresolved_deltas_1(struct base_data
*base
,
880 struct base_data
*prev_base
)
882 if (base
->ref_last
== -1 && base
->ofs_last
== -1) {
883 union delta_base base_spec
;
885 hashcpy(base_spec
.sha1
, base
->obj
->idx
.sha1
);
886 find_delta_children(&base_spec
,
887 &base
->ref_first
, &base
->ref_last
, OBJ_REF_DELTA
);
889 memset(&base_spec
, 0, sizeof(base_spec
));
890 base_spec
.offset
= base
->obj
->idx
.offset
;
891 find_delta_children(&base_spec
,
892 &base
->ofs_first
, &base
->ofs_last
, OBJ_OFS_DELTA
);
894 if (base
->ref_last
== -1 && base
->ofs_last
== -1) {
899 link_base_data(prev_base
, base
);
902 if (base
->ref_first
<= base
->ref_last
) {
903 struct object_entry
*child
= objects
+ deltas
[base
->ref_first
].obj_no
;
904 struct base_data
*result
= alloc_base_data();
906 assert(child
->real_type
== OBJ_REF_DELTA
);
907 resolve_delta(child
, base
, result
);
908 if (base
->ref_first
== base
->ref_last
&& base
->ofs_last
== -1)
909 free_base_data(base
);
915 if (base
->ofs_first
<= base
->ofs_last
) {
916 struct object_entry
*child
= objects
+ deltas
[base
->ofs_first
].obj_no
;
917 struct base_data
*result
= alloc_base_data();
919 assert(child
->real_type
== OBJ_OFS_DELTA
);
920 resolve_delta(child
, base
, result
);
921 if (base
->ofs_first
== base
->ofs_last
)
922 free_base_data(base
);
928 unlink_base_data(base
);
932 static void find_unresolved_deltas(struct base_data
*base
)
934 struct base_data
*new_base
, *prev_base
= NULL
;
936 new_base
= find_unresolved_deltas_1(base
, prev_base
);
946 prev_base
= base
->base
;
951 static int compare_delta_entry(const void *a
, const void *b
)
953 const struct delta_entry
*delta_a
= a
;
954 const struct delta_entry
*delta_b
= b
;
956 /* group by type (ref vs ofs) and then by value (sha-1 or offset) */
957 return compare_delta_bases(&delta_a
->base
, &delta_b
->base
,
958 objects
[delta_a
->obj_no
].type
,
959 objects
[delta_b
->obj_no
].type
);
962 static void resolve_base(struct object_entry
*obj
)
964 struct base_data
*base_obj
= alloc_base_data();
966 base_obj
->data
= NULL
;
967 find_unresolved_deltas(base_obj
);
971 static void *threaded_second_pass(void *data
)
973 set_thread_data(data
);
977 display_progress(progress
, nr_resolved_deltas
);
980 while (nr_dispatched
< nr_objects
&&
981 is_delta_type(objects
[nr_dispatched
].type
))
983 if (nr_dispatched
>= nr_objects
) {
990 resolve_base(&objects
[i
]);
998 * - find locations of all objects;
999 * - calculate SHA1 of all non-delta objects;
1000 * - remember base (SHA1 or offset) for all deltas.
1002 static void parse_pack_objects(unsigned char *sha1
)
1004 int i
, nr_delays
= 0;
1005 struct delta_entry
*delta
= deltas
;
1009 progress
= start_progress(
1010 from_stdin
? _("Receiving objects") : _("Indexing objects"),
1012 for (i
= 0; i
< nr_objects
; i
++) {
1013 struct object_entry
*obj
= &objects
[i
];
1014 void *data
= unpack_raw_entry(obj
, &delta
->base
, obj
->idx
.sha1
);
1015 obj
->real_type
= obj
->type
;
1016 if (is_delta_type(obj
->type
)) {
1021 /* large blobs, check later */
1022 obj
->real_type
= OBJ_BAD
;
1025 sha1_object(data
, NULL
, obj
->size
, obj
->type
, obj
->idx
.sha1
);
1027 display_progress(progress
, i
+1);
1029 objects
[i
].idx
.offset
= consumed_bytes
;
1030 stop_progress(&progress
);
1032 /* Check pack integrity */
1034 git_SHA1_Final(sha1
, &input_ctx
);
1035 if (hashcmp(fill(20), sha1
))
1036 die(_("pack is corrupted (SHA1 mismatch)"));
1039 /* If input_fd is a file, we should have reached its end now. */
1040 if (fstat(input_fd
, &st
))
1041 die_errno(_("cannot fstat packfile"));
1042 if (S_ISREG(st
.st_mode
) &&
1043 lseek(input_fd
, 0, SEEK_CUR
) - input_len
!= st
.st_size
)
1044 die(_("pack has junk at the end"));
1046 for (i
= 0; i
< nr_objects
; i
++) {
1047 struct object_entry
*obj
= &objects
[i
];
1048 if (obj
->real_type
!= OBJ_BAD
)
1050 obj
->real_type
= obj
->type
;
1051 sha1_object(NULL
, obj
, obj
->size
, obj
->type
, obj
->idx
.sha1
);
1055 die(_("confusion beyond insanity in parse_pack_objects()"));
1060 * - for all non-delta objects, look if it is used as a base for
1062 * - if used as a base, uncompress the object and apply all deltas,
1063 * recursively checking if the resulting object is used as a base
1064 * for some more deltas.
1066 static void resolve_deltas(void)
1073 /* Sort deltas by base SHA1/offset for fast searching */
1074 qsort(deltas
, nr_deltas
, sizeof(struct delta_entry
),
1075 compare_delta_entry
);
1078 progress
= start_progress(_("Resolving deltas"), nr_deltas
);
1082 if (nr_threads
> 1 || getenv("GIT_FORCE_THREADS")) {
1084 for (i
= 0; i
< nr_threads
; i
++) {
1085 int ret
= pthread_create(&thread_data
[i
].thread
, NULL
,
1086 threaded_second_pass
, thread_data
+ i
);
1088 die(_("unable to create thread: %s"),
1091 for (i
= 0; i
< nr_threads
; i
++)
1092 pthread_join(thread_data
[i
].thread
, NULL
);
1098 for (i
= 0; i
< nr_objects
; i
++) {
1099 struct object_entry
*obj
= &objects
[i
];
1101 if (is_delta_type(obj
->type
))
1104 display_progress(progress
, nr_resolved_deltas
);
1110 * - append objects to convert thin pack to full pack if required
1111 * - write the final 20-byte SHA-1
1113 static void fix_unresolved_deltas(struct sha1file
*f
, int nr_unresolved
);
1114 static void conclude_pack(int fix_thin_pack
, const char *curr_pack
, unsigned char *pack_sha1
)
1116 if (nr_deltas
== nr_resolved_deltas
) {
1117 stop_progress(&progress
);
1118 /* Flush remaining pack final 20-byte SHA1. */
1123 if (fix_thin_pack
) {
1125 unsigned char read_sha1
[20], tail_sha1
[20];
1126 struct strbuf msg
= STRBUF_INIT
;
1127 int nr_unresolved
= nr_deltas
- nr_resolved_deltas
;
1128 int nr_objects_initial
= nr_objects
;
1129 if (nr_unresolved
<= 0)
1130 die(_("confusion beyond insanity"));
1131 objects
= xrealloc(objects
,
1132 (nr_objects
+ nr_unresolved
+ 1)
1133 * sizeof(*objects
));
1134 memset(objects
+ nr_objects
+ 1, 0,
1135 nr_unresolved
* sizeof(*objects
));
1136 f
= sha1fd(output_fd
, curr_pack
);
1137 fix_unresolved_deltas(f
, nr_unresolved
);
1138 strbuf_addf(&msg
, _("completed with %d local objects"),
1139 nr_objects
- nr_objects_initial
);
1140 stop_progress_msg(&progress
, msg
.buf
);
1141 strbuf_release(&msg
);
1142 sha1close(f
, tail_sha1
, 0);
1143 hashcpy(read_sha1
, pack_sha1
);
1144 fixup_pack_header_footer(output_fd
, pack_sha1
,
1145 curr_pack
, nr_objects
,
1146 read_sha1
, consumed_bytes
-20);
1147 if (hashcmp(read_sha1
, tail_sha1
) != 0)
1148 die(_("Unexpected tail checksum for %s "
1149 "(disk corruption?)"), curr_pack
);
1151 if (nr_deltas
!= nr_resolved_deltas
)
1152 die(Q_("pack has %d unresolved delta",
1153 "pack has %d unresolved deltas",
1154 nr_deltas
- nr_resolved_deltas
),
1155 nr_deltas
- nr_resolved_deltas
);
1158 static int write_compressed(struct sha1file
*f
, void *in
, unsigned int size
)
1162 unsigned char outbuf
[4096];
1164 memset(&stream
, 0, sizeof(stream
));
1165 git_deflate_init(&stream
, zlib_compression_level
);
1166 stream
.next_in
= in
;
1167 stream
.avail_in
= size
;
1170 stream
.next_out
= outbuf
;
1171 stream
.avail_out
= sizeof(outbuf
);
1172 status
= git_deflate(&stream
, Z_FINISH
);
1173 sha1write(f
, outbuf
, sizeof(outbuf
) - stream
.avail_out
);
1174 } while (status
== Z_OK
);
1176 if (status
!= Z_STREAM_END
)
1177 die(_("unable to deflate appended object (%d)"), status
);
1178 size
= stream
.total_out
;
1179 git_deflate_end(&stream
);
1183 static struct object_entry
*append_obj_to_pack(struct sha1file
*f
,
1184 const unsigned char *sha1
, void *buf
,
1185 unsigned long size
, enum object_type type
)
1187 struct object_entry
*obj
= &objects
[nr_objects
++];
1188 unsigned char header
[10];
1189 unsigned long s
= size
;
1191 unsigned char c
= (type
<< 4) | (s
& 15);
1194 header
[n
++] = c
| 0x80;
1200 sha1write(f
, header
, n
);
1202 obj
[0].hdr_size
= n
;
1204 obj
[0].real_type
= type
;
1205 obj
[1].idx
.offset
= obj
[0].idx
.offset
+ n
;
1206 obj
[1].idx
.offset
+= write_compressed(f
, buf
, size
);
1207 obj
[0].idx
.crc32
= crc32_end(f
);
1209 hashcpy(obj
->idx
.sha1
, sha1
);
1213 static int delta_pos_compare(const void *_a
, const void *_b
)
1215 struct delta_entry
*a
= *(struct delta_entry
**)_a
;
1216 struct delta_entry
*b
= *(struct delta_entry
**)_b
;
1217 return a
->obj_no
- b
->obj_no
;
1220 static void fix_unresolved_deltas(struct sha1file
*f
, int nr_unresolved
)
1222 struct delta_entry
**sorted_by_pos
;
1226 * Since many unresolved deltas may well be themselves base objects
1227 * for more unresolved deltas, we really want to include the
1228 * smallest number of base objects that would cover as much delta
1229 * as possible by picking the
1230 * trunc deltas first, allowing for other deltas to resolve without
1231 * additional base objects. Since most base objects are to be found
1232 * before deltas depending on them, a good heuristic is to start
1233 * resolving deltas in the same order as their position in the pack.
1235 sorted_by_pos
= xmalloc(nr_unresolved
* sizeof(*sorted_by_pos
));
1236 for (i
= 0; i
< nr_deltas
; i
++) {
1237 if (objects
[deltas
[i
].obj_no
].real_type
!= OBJ_REF_DELTA
)
1239 sorted_by_pos
[n
++] = &deltas
[i
];
1241 qsort(sorted_by_pos
, n
, sizeof(*sorted_by_pos
), delta_pos_compare
);
1243 for (i
= 0; i
< n
; i
++) {
1244 struct delta_entry
*d
= sorted_by_pos
[i
];
1245 enum object_type type
;
1246 struct base_data
*base_obj
= alloc_base_data();
1248 if (objects
[d
->obj_no
].real_type
!= OBJ_REF_DELTA
)
1250 base_obj
->data
= read_sha1_file(d
->base
.sha1
, &type
, &base_obj
->size
);
1251 if (!base_obj
->data
)
1254 if (check_sha1_signature(d
->base
.sha1
, base_obj
->data
,
1255 base_obj
->size
, typename(type
)))
1256 die(_("local object %s is corrupt"), sha1_to_hex(d
->base
.sha1
));
1257 base_obj
->obj
= append_obj_to_pack(f
, d
->base
.sha1
,
1258 base_obj
->data
, base_obj
->size
, type
);
1259 find_unresolved_deltas(base_obj
);
1260 display_progress(progress
, nr_resolved_deltas
);
1262 free(sorted_by_pos
);
1265 static void final(const char *final_pack_name
, const char *curr_pack_name
,
1266 const char *final_index_name
, const char *curr_index_name
,
1267 const char *keep_name
, const char *keep_msg
,
1268 unsigned char *sha1
)
1270 const char *report
= "pack";
1271 char name
[PATH_MAX
];
1277 fsync_or_die(output_fd
, curr_pack_name
);
1278 err
= close(output_fd
);
1280 die_errno(_("error while closing pack file"));
1284 int keep_fd
, keep_msg_len
= strlen(keep_msg
);
1287 keep_fd
= odb_pack_keep(name
, sizeof(name
), sha1
);
1289 keep_fd
= open(keep_name
, O_RDWR
|O_CREAT
|O_EXCL
, 0600);
1292 if (errno
!= EEXIST
)
1293 die_errno(_("cannot write keep file '%s'"),
1296 if (keep_msg_len
> 0) {
1297 write_or_die(keep_fd
, keep_msg
, keep_msg_len
);
1298 write_or_die(keep_fd
, "\n", 1);
1300 if (close(keep_fd
) != 0)
1301 die_errno(_("cannot close written keep file '%s'"),
1307 if (final_pack_name
!= curr_pack_name
) {
1308 if (!final_pack_name
) {
1309 snprintf(name
, sizeof(name
), "%s/pack/pack-%s.pack",
1310 get_object_directory(), sha1_to_hex(sha1
));
1311 final_pack_name
= name
;
1313 if (move_temp_to_file(curr_pack_name
, final_pack_name
))
1314 die(_("cannot store pack file"));
1315 } else if (from_stdin
)
1316 chmod(final_pack_name
, 0444);
1318 if (final_index_name
!= curr_index_name
) {
1319 if (!final_index_name
) {
1320 snprintf(name
, sizeof(name
), "%s/pack/pack-%s.idx",
1321 get_object_directory(), sha1_to_hex(sha1
));
1322 final_index_name
= name
;
1324 if (move_temp_to_file(curr_index_name
, final_index_name
))
1325 die(_("cannot store index file"));
1327 chmod(final_index_name
, 0444);
1330 printf("%s\n", sha1_to_hex(sha1
));
1333 int len
= snprintf(buf
, sizeof(buf
), "%s\t%s\n",
1334 report
, sha1_to_hex(sha1
));
1335 write_or_die(1, buf
, len
);
1338 * Let's just mimic git-unpack-objects here and write
1339 * the last part of the input buffer to stdout.
1342 err
= xwrite(1, input_buffer
+ input_offset
, input_len
);
1346 input_offset
+= err
;
1351 static int git_index_pack_config(const char *k
, const char *v
, void *cb
)
1353 struct pack_idx_option
*opts
= cb
;
1355 if (!strcmp(k
, "pack.indexversion")) {
1356 opts
->version
= git_config_int(k
, v
);
1357 if (opts
->version
> 2)
1358 die(_("bad pack.indexversion=%"PRIu32
), opts
->version
);
1361 if (!strcmp(k
, "pack.threads")) {
1362 nr_threads
= git_config_int(k
, v
);
1364 die(_("invalid number of threads specified (%d)"),
1367 if (nr_threads
!= 1)
1368 warning(_("no threads support, ignoring %s"), k
);
1373 return git_default_config(k
, v
, cb
);
1376 static int cmp_uint32(const void *a_
, const void *b_
)
1378 uint32_t a
= *((uint32_t *)a_
);
1379 uint32_t b
= *((uint32_t *)b_
);
1381 return (a
< b
) ? -1 : (a
!= b
);
1384 static void read_v2_anomalous_offsets(struct packed_git
*p
,
1385 struct pack_idx_option
*opts
)
1387 const uint32_t *idx1
, *idx2
;
1390 /* The address of the 4-byte offset table */
1391 idx1
= (((const uint32_t *)p
->index_data
)
1392 + 2 /* 8-byte header */
1394 + 5 * p
->num_objects
/* 20-byte SHA-1 table */
1395 + p
->num_objects
/* CRC32 table */
1398 /* The address of the 8-byte offset table */
1399 idx2
= idx1
+ p
->num_objects
;
1401 for (i
= 0; i
< p
->num_objects
; i
++) {
1402 uint32_t off
= ntohl(idx1
[i
]);
1403 if (!(off
& 0x80000000))
1405 off
= off
& 0x7fffffff;
1409 * The real offset is ntohl(idx2[off * 2]) in high 4
1410 * octets, and ntohl(idx2[off * 2 + 1]) in low 4
1411 * octets. But idx2[off * 2] is Zero!!!
1413 ALLOC_GROW(opts
->anomaly
, opts
->anomaly_nr
+ 1, opts
->anomaly_alloc
);
1414 opts
->anomaly
[opts
->anomaly_nr
++] = ntohl(idx2
[off
* 2 + 1]);
1417 if (1 < opts
->anomaly_nr
)
1418 qsort(opts
->anomaly
, opts
->anomaly_nr
, sizeof(uint32_t), cmp_uint32
);
1421 static void read_idx_option(struct pack_idx_option
*opts
, const char *pack_name
)
1423 struct packed_git
*p
= add_packed_git(pack_name
, strlen(pack_name
), 1);
1426 die(_("Cannot open existing pack file '%s'"), pack_name
);
1427 if (open_pack_index(p
))
1428 die(_("Cannot open existing pack idx file for '%s'"), pack_name
);
1430 /* Read the attributes from the existing idx file */
1431 opts
->version
= p
->index_version
;
1433 if (opts
->version
== 2)
1434 read_v2_anomalous_offsets(p
, opts
);
1437 * Get rid of the idx file as we do not need it anymore.
1438 * NEEDSWORK: extract this bit from free_pack_by_name() in
1439 * sha1_file.c, perhaps? It shouldn't matter very much as we
1440 * know we haven't installed this pack (hence we never have
1441 * read anything from it).
1443 close_pack_index(p
);
1447 static void show_pack_info(int stat_only
)
1449 int i
, baseobjects
= nr_objects
- nr_deltas
;
1450 unsigned long *chain_histogram
= NULL
;
1453 chain_histogram
= xcalloc(deepest_delta
, sizeof(unsigned long));
1455 for (i
= 0; i
< nr_objects
; i
++) {
1456 struct object_entry
*obj
= &objects
[i
];
1458 if (is_delta_type(obj
->type
))
1459 chain_histogram
[obj
->delta_depth
- 1]++;
1462 printf("%s %-6s %lu %lu %"PRIuMAX
,
1463 sha1_to_hex(obj
->idx
.sha1
),
1464 typename(obj
->real_type
), obj
->size
,
1465 (unsigned long)(obj
[1].idx
.offset
- obj
->idx
.offset
),
1466 (uintmax_t)obj
->idx
.offset
);
1467 if (is_delta_type(obj
->type
)) {
1468 struct object_entry
*bobj
= &objects
[obj
->base_object_no
];
1469 printf(" %u %s", obj
->delta_depth
, sha1_to_hex(bobj
->idx
.sha1
));
1475 printf_ln(Q_("non delta: %d object",
1476 "non delta: %d objects",
1479 for (i
= 0; i
< deepest_delta
; i
++) {
1480 if (!chain_histogram
[i
])
1482 printf_ln(Q_("chain length = %d: %lu object",
1483 "chain length = %d: %lu objects",
1484 chain_histogram
[i
]),
1486 chain_histogram
[i
]);
1490 int cmd_index_pack(int argc
, const char **argv
, const char *prefix
)
1492 int i
, fix_thin_pack
= 0, verify
= 0, stat_only
= 0;
1493 const char *curr_pack
, *curr_index
;
1494 const char *index_name
= NULL
, *pack_name
= NULL
;
1495 const char *keep_name
= NULL
, *keep_msg
= NULL
;
1496 char *index_name_buf
= NULL
, *keep_name_buf
= NULL
;
1497 struct pack_idx_entry
**idx_objects
;
1498 struct pack_idx_option opts
;
1499 unsigned char pack_sha1
[20];
1500 unsigned foreign_nr
= 1; /* zero is a "good" value, assume bad */
1502 if (argc
== 2 && !strcmp(argv
[1], "-h"))
1503 usage(index_pack_usage
);
1505 read_replace_refs
= 0;
1507 reset_pack_idx_option(&opts
);
1508 git_config(git_index_pack_config
, &opts
);
1509 if (prefix
&& chdir(prefix
))
1510 die(_("Cannot come back to cwd"));
1512 for (i
= 1; i
< argc
; i
++) {
1513 const char *arg
= argv
[i
];
1516 if (!strcmp(arg
, "--stdin")) {
1518 } else if (!strcmp(arg
, "--fix-thin")) {
1520 } else if (!strcmp(arg
, "--strict")) {
1523 } else if (!strcmp(arg
, "--check-self-contained-and-connected")) {
1525 check_self_contained_and_connected
= 1;
1526 } else if (!strcmp(arg
, "--verify")) {
1528 } else if (!strcmp(arg
, "--verify-stat")) {
1531 } else if (!strcmp(arg
, "--verify-stat-only")) {
1535 } else if (!strcmp(arg
, "--keep")) {
1537 } else if (!prefixcmp(arg
, "--keep=")) {
1539 } else if (!prefixcmp(arg
, "--threads=")) {
1541 nr_threads
= strtoul(arg
+10, &end
, 0);
1542 if (!arg
[10] || *end
|| nr_threads
< 0)
1543 usage(index_pack_usage
);
1545 if (nr_threads
!= 1)
1546 warning(_("no threads support, "
1547 "ignoring %s"), arg
);
1550 } else if (!prefixcmp(arg
, "--pack_header=")) {
1551 struct pack_header
*hdr
;
1554 hdr
= (struct pack_header
*)input_buffer
;
1555 hdr
->hdr_signature
= htonl(PACK_SIGNATURE
);
1556 hdr
->hdr_version
= htonl(strtoul(arg
+ 14, &c
, 10));
1558 die(_("bad %s"), arg
);
1559 hdr
->hdr_entries
= htonl(strtoul(c
+ 1, &c
, 10));
1561 die(_("bad %s"), arg
);
1562 input_len
= sizeof(*hdr
);
1563 } else if (!strcmp(arg
, "-v")) {
1565 } else if (!strcmp(arg
, "-o")) {
1566 if (index_name
|| (i
+1) >= argc
)
1567 usage(index_pack_usage
);
1568 index_name
= argv
[++i
];
1569 } else if (!prefixcmp(arg
, "--index-version=")) {
1571 opts
.version
= strtoul(arg
+ 16, &c
, 10);
1572 if (opts
.version
> 2)
1573 die(_("bad %s"), arg
);
1575 opts
.off32_limit
= strtoul(c
+1, &c
, 0);
1576 if (*c
|| opts
.off32_limit
& 0x80000000)
1577 die(_("bad %s"), arg
);
1579 usage(index_pack_usage
);
1584 usage(index_pack_usage
);
1588 if (!pack_name
&& !from_stdin
)
1589 usage(index_pack_usage
);
1590 if (fix_thin_pack
&& !from_stdin
)
1591 die(_("--fix-thin cannot be used without --stdin"));
1592 if (!index_name
&& pack_name
) {
1593 int len
= strlen(pack_name
);
1594 if (!has_extension(pack_name
, ".pack"))
1595 die(_("packfile name '%s' does not end with '.pack'"),
1597 index_name_buf
= xmalloc(len
);
1598 memcpy(index_name_buf
, pack_name
, len
- 5);
1599 strcpy(index_name_buf
+ len
- 5, ".idx");
1600 index_name
= index_name_buf
;
1602 if (keep_msg
&& !keep_name
&& pack_name
) {
1603 int len
= strlen(pack_name
);
1604 if (!has_extension(pack_name
, ".pack"))
1605 die(_("packfile name '%s' does not end with '.pack'"),
1607 keep_name_buf
= xmalloc(len
);
1608 memcpy(keep_name_buf
, pack_name
, len
- 5);
1609 strcpy(keep_name_buf
+ len
- 5, ".keep");
1610 keep_name
= keep_name_buf
;
1614 die(_("--verify with no packfile name given"));
1615 read_idx_option(&opts
, index_name
);
1616 opts
.flags
|= WRITE_IDX_VERIFY
| WRITE_IDX_STRICT
;
1619 opts
.flags
|= WRITE_IDX_STRICT
;
1623 nr_threads
= online_cpus();
1624 /* An experiment showed that more threads does not mean faster */
1630 curr_pack
= open_pack_file(pack_name
);
1631 parse_pack_header();
1632 objects
= xcalloc(nr_objects
+ 1, sizeof(struct object_entry
));
1633 deltas
= xcalloc(nr_objects
, sizeof(struct delta_entry
));
1634 parse_pack_objects(pack_sha1
);
1636 conclude_pack(fix_thin_pack
, curr_pack
, pack_sha1
);
1639 foreign_nr
= check_objects();
1642 show_pack_info(stat_only
);
1644 idx_objects
= xmalloc((nr_objects
) * sizeof(struct pack_idx_entry
*));
1645 for (i
= 0; i
< nr_objects
; i
++)
1646 idx_objects
[i
] = &objects
[i
].idx
;
1647 curr_index
= write_idx_file(index_name
, idx_objects
, nr_objects
, &opts
, pack_sha1
);
1651 final(pack_name
, curr_pack
,
1652 index_name
, curr_index
,
1653 keep_name
, keep_msg
,
1658 free(index_name_buf
);
1659 free(keep_name_buf
);
1660 if (pack_name
== NULL
)
1661 free((void *) curr_pack
);
1662 if (index_name
== NULL
)
1663 free((void *) curr_index
);
1666 * Let the caller know this pack is not self contained
1668 if (check_self_contained_and_connected
&& foreign_nr
)