2 #include "pack-revindex.h"
3 #include "object-store.h"
8 struct revindex_entry
{
14 * Pack index for existing packs give us easy access to the offsets into
15 * corresponding pack file where each object's data starts, but the entries
16 * do not store the size of the compressed representation (uncompressed
17 * size is easily available by examining the pack entry header). It is
18 * also rather expensive to find the sha1 for an object given its offset.
20 * The pack index file is sorted by object name mapping to offset;
21 * this revindex array is a list of offset/index_nr pairs
22 * ordered by offset, so if you know the offset of an object, next offset
23 * is where its packed representation ends and the index_nr can be used to
24 * get the object sha1 from the main index.
28 * This is a least-significant-digit radix sort.
30 * It sorts each of the "n" items in "entries" by its offset field. The "max"
31 * parameter must be at least as large as the largest offset in the array,
32 * and lets us quit the sort early.
34 static void sort_revindex(struct revindex_entry
*entries
, unsigned n
, off_t max
)
37 * We use a "digit" size of 16 bits. That keeps our memory
38 * usage reasonable, and we can generally (for a 4G or smaller
39 * packfile) quit after two rounds of radix-sorting.
41 #define DIGIT_SIZE (16)
42 #define BUCKETS (1 << DIGIT_SIZE)
44 * We want to know the bucket that a[i] will go into when we are using
45 * the digit that is N bits from the (least significant) end.
47 #define BUCKET_FOR(a, i, bits) (((a)[(i)].offset >> (bits)) & (BUCKETS-1))
50 * We need O(n) temporary storage. Rather than do an extra copy of the
51 * partial results into "entries", we sort back and forth between the
52 * real array and temporary storage. In each iteration of the loop, we
53 * keep track of them with alias pointers, always sorting from "from"
56 struct revindex_entry
*tmp
, *from
, *to
;
60 ALLOC_ARRAY(pos
, BUCKETS
);
66 * If (max >> bits) is zero, then we know that the radix digit we are
67 * on (and any higher) will be zero for all entries, and our loop will
68 * be a no-op, as everybody lands in the same zero-th bucket.
70 for (bits
= 0; max
>> bits
; bits
+= DIGIT_SIZE
) {
73 memset(pos
, 0, BUCKETS
* sizeof(*pos
));
76 * We want pos[i] to store the index of the last element that
77 * will go in bucket "i" (actually one past the last element).
78 * To do this, we first count the items that will go in each
79 * bucket, which gives us a relative offset from the last
80 * bucket. We can then cumulatively add the index from the
81 * previous bucket to get the true index.
83 for (i
= 0; i
< n
; i
++)
84 pos
[BUCKET_FOR(from
, i
, bits
)]++;
85 for (i
= 1; i
< BUCKETS
; i
++)
89 * Now we can drop the elements into their correct buckets (in
90 * our temporary array). We iterate the pos counter backwards
91 * to avoid using an extra index to count up. And since we are
92 * going backwards there, we must also go backwards through the
93 * array itself, to keep the sort stable.
95 * Note that we use an unsigned iterator to make sure we can
96 * handle 2^32-1 objects, even on a 32-bit system. But this
97 * means we cannot use the more obvious "i >= 0" loop condition
98 * for counting backwards, and must instead check for
99 * wrap-around with UINT_MAX.
101 for (i
= n
- 1; i
!= UINT_MAX
; i
--)
102 to
[--pos
[BUCKET_FOR(from
, i
, bits
)]] = from
[i
];
105 * Now "to" contains the most sorted list, so we swap "from" and
106 * "to" for the next iteration.
112 * If we ended with our data in the original array, great. If not,
113 * we have to move it back from the temporary storage.
116 COPY_ARRAY(entries
, tmp
, n
);
126 * Ordered list of offsets of objects in the pack.
128 static void create_pack_revindex(struct packed_git
*p
)
130 const unsigned num_ent
= p
->num_objects
;
132 const char *index
= p
->index_data
;
133 const unsigned hashsz
= the_hash_algo
->rawsz
;
135 ALLOC_ARRAY(p
->revindex
, num_ent
+ 1);
138 if (p
->index_version
> 1) {
139 const uint32_t *off_32
=
140 (uint32_t *)(index
+ 8 + (size_t)p
->num_objects
* (hashsz
+ 4));
141 const uint32_t *off_64
= off_32
+ p
->num_objects
;
142 for (i
= 0; i
< num_ent
; i
++) {
143 const uint32_t off
= ntohl(*off_32
++);
144 if (!(off
& 0x80000000)) {
145 p
->revindex
[i
].offset
= off
;
147 p
->revindex
[i
].offset
= get_be64(off_64
);
150 p
->revindex
[i
].nr
= i
;
153 for (i
= 0; i
< num_ent
; i
++) {
154 const uint32_t hl
= *((uint32_t *)(index
+ (hashsz
+ 4) * i
));
155 p
->revindex
[i
].offset
= ntohl(hl
);
156 p
->revindex
[i
].nr
= i
;
161 * This knows the pack format -- the hash trailer
162 * follows immediately after the last object data.
164 p
->revindex
[num_ent
].offset
= p
->pack_size
- hashsz
;
165 p
->revindex
[num_ent
].nr
= -1;
166 sort_revindex(p
->revindex
, num_ent
, p
->pack_size
);
169 static int create_pack_revindex_in_memory(struct packed_git
*p
)
171 if (git_env_bool(GIT_TEST_REV_INDEX_DIE_IN_MEMORY
, 0))
172 die("dying as requested by '%s'",
173 GIT_TEST_REV_INDEX_DIE_IN_MEMORY
);
174 if (open_pack_index(p
))
176 create_pack_revindex(p
);
180 static char *pack_revindex_filename(struct packed_git
*p
)
183 if (!strip_suffix(p
->pack_name
, ".pack", &len
))
184 BUG("pack_name does not end in .pack");
185 return xstrfmt("%.*s.rev", (int)len
, p
->pack_name
);
188 #define RIDX_HEADER_SIZE (12)
189 #define RIDX_MIN_SIZE (RIDX_HEADER_SIZE + (2 * the_hash_algo->rawsz))
191 struct revindex_header
{
197 static int load_revindex_from_disk(char *revindex_name
,
198 uint32_t num_objects
,
199 const uint32_t **data_p
, size_t *len_p
)
204 size_t revindex_size
;
205 struct revindex_header
*hdr
;
207 fd
= git_open(revindex_name
);
213 if (fstat(fd
, &st
)) {
214 ret
= error_errno(_("failed to read %s"), revindex_name
);
218 revindex_size
= xsize_t(st
.st_size
);
220 if (revindex_size
< RIDX_MIN_SIZE
) {
221 ret
= error(_("reverse-index file %s is too small"), revindex_name
);
225 if (revindex_size
- RIDX_MIN_SIZE
!= st_mult(sizeof(uint32_t), num_objects
)) {
226 ret
= error(_("reverse-index file %s is corrupt"), revindex_name
);
230 data
= xmmap(NULL
, revindex_size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
233 if (ntohl(hdr
->signature
) != RIDX_SIGNATURE
) {
234 ret
= error(_("reverse-index file %s has unknown signature"), revindex_name
);
237 if (ntohl(hdr
->version
) != 1) {
238 ret
= error(_("reverse-index file %s has unsupported version %"PRIu32
),
239 revindex_name
, ntohl(hdr
->version
));
242 if (!(ntohl(hdr
->hash_id
) == 1 || ntohl(hdr
->hash_id
) == 2)) {
243 ret
= error(_("reverse-index file %s has unsupported hash id %"PRIu32
),
244 revindex_name
, ntohl(hdr
->hash_id
));
251 munmap(data
, revindex_size
);
253 *len_p
= revindex_size
;
254 *data_p
= (const uint32_t *)data
;
261 static int load_pack_revindex_from_disk(struct packed_git
*p
)
265 if (open_pack_index(p
))
268 revindex_name
= pack_revindex_filename(p
);
270 ret
= load_revindex_from_disk(revindex_name
,
277 p
->revindex_data
= (const uint32_t *)((const char *)p
->revindex_map
+ RIDX_HEADER_SIZE
);
284 int load_pack_revindex(struct packed_git
*p
)
286 if (p
->revindex
|| p
->revindex_data
)
289 if (!load_pack_revindex_from_disk(p
))
291 else if (!create_pack_revindex_in_memory(p
))
296 int load_midx_revindex(struct multi_pack_index
*m
)
300 if (m
->revindex_data
)
303 revindex_name
= get_midx_rev_filename(m
);
305 ret
= load_revindex_from_disk(revindex_name
,
312 m
->revindex_data
= (const uint32_t *)((const char *)m
->revindex_map
+ RIDX_HEADER_SIZE
);
319 int close_midx_revindex(struct multi_pack_index
*m
)
321 if (!m
|| !m
->revindex_map
)
324 munmap((void*)m
->revindex_map
, m
->revindex_len
);
326 m
->revindex_map
= NULL
;
327 m
->revindex_data
= NULL
;
333 int offset_to_pack_pos(struct packed_git
*p
, off_t ofs
, uint32_t *pos
)
337 if (load_pack_revindex(p
) < 0)
341 hi
= p
->num_objects
+ 1;
344 const unsigned mi
= lo
+ (hi
- lo
) / 2;
345 off_t got
= pack_pos_to_offset(p
, mi
);
350 } else if (ofs
< got
)
356 error("bad offset for revindex");
360 uint32_t pack_pos_to_index(struct packed_git
*p
, uint32_t pos
)
362 if (!(p
->revindex
|| p
->revindex_data
))
363 BUG("pack_pos_to_index: reverse index not yet loaded");
364 if (p
->num_objects
<= pos
)
365 BUG("pack_pos_to_index: out-of-bounds object at %"PRIu32
, pos
);
368 return p
->revindex
[pos
].nr
;
370 return get_be32(p
->revindex_data
+ pos
);
373 off_t
pack_pos_to_offset(struct packed_git
*p
, uint32_t pos
)
375 if (!(p
->revindex
|| p
->revindex_data
))
376 BUG("pack_pos_to_index: reverse index not yet loaded");
377 if (p
->num_objects
< pos
)
378 BUG("pack_pos_to_offset: out-of-bounds object at %"PRIu32
, pos
);
381 return p
->revindex
[pos
].offset
;
382 else if (pos
== p
->num_objects
)
383 return p
->pack_size
- the_hash_algo
->rawsz
;
385 return nth_packed_object_offset(p
, pack_pos_to_index(p
, pos
));
388 uint32_t pack_pos_to_midx(struct multi_pack_index
*m
, uint32_t pos
)
390 if (!m
->revindex_data
)
391 BUG("pack_pos_to_midx: reverse index not yet loaded");
392 if (m
->num_objects
<= pos
)
393 BUG("pack_pos_to_midx: out-of-bounds object at %"PRIu32
, pos
);
394 return get_be32(m
->revindex_data
+ pos
);
397 struct midx_pack_key
{
401 uint32_t preferred_pack
;
402 struct multi_pack_index
*midx
;
405 static int midx_pack_order_cmp(const void *va
, const void *vb
)
407 const struct midx_pack_key
*key
= va
;
408 struct multi_pack_index
*midx
= key
->midx
;
410 uint32_t versus
= pack_pos_to_midx(midx
, (uint32_t*)vb
- (const uint32_t *)midx
->revindex_data
);
411 uint32_t versus_pack
= nth_midxed_pack_int_id(midx
, versus
);
414 uint32_t key_preferred
= key
->pack
== key
->preferred_pack
;
415 uint32_t versus_preferred
= versus_pack
== key
->preferred_pack
;
418 * First, compare the preferred-ness, noting that the preferred pack
421 if (key_preferred
&& !versus_preferred
)
423 else if (!key_preferred
&& versus_preferred
)
426 /* Then, break ties first by comparing the pack IDs. */
427 if (key
->pack
< versus_pack
)
429 else if (key
->pack
> versus_pack
)
432 /* Finally, break ties by comparing offsets within a pack. */
433 versus_offset
= nth_midxed_offset(midx
, versus
);
434 if (key
->offset
< versus_offset
)
436 else if (key
->offset
> versus_offset
)
442 int midx_to_pack_pos(struct multi_pack_index
*m
, uint32_t at
, uint32_t *pos
)
444 struct midx_pack_key key
;
447 if (!m
->revindex_data
)
448 BUG("midx_to_pack_pos: reverse index not yet loaded");
449 if (m
->num_objects
<= at
)
450 BUG("midx_to_pack_pos: out-of-bounds object at %"PRIu32
, at
);
452 key
.pack
= nth_midxed_pack_int_id(m
, at
);
453 key
.offset
= nth_midxed_offset(m
, at
);
456 * The preferred pack sorts first, so determine its identifier by
457 * looking at the first object in pseudo-pack order.
459 * Note that if no --preferred-pack is explicitly given when writing a
460 * multi-pack index, then whichever pack has the lowest identifier
461 * implicitly is preferred (and includes all its objects, since ties are
462 * broken first by pack identifier).
464 key
.preferred_pack
= nth_midxed_pack_int_id(m
, pack_pos_to_midx(m
, 0));
466 found
= bsearch(&key
, m
->revindex_data
, m
->num_objects
,
467 sizeof(*m
->revindex_data
), midx_pack_order_cmp
);
470 return error("bad offset for revindex");
472 *pos
= found
- m
->revindex_data
;