]> git.ipfire.org Git - thirdparty/git.git/blame - pack-bitmap.c
line-log.h: remove unnecessary include
[thirdparty/git.git] / pack-bitmap.c
CommitLineData
b6fdc44c 1#include "git-compat-util.h"
fff42755 2#include "commit.h"
f394e093 3#include "gettext.h"
41771fa4 4#include "hex.h"
baf20c39 5#include "strbuf.h"
fff42755
VM
6#include "tag.h"
7#include "diff.h"
8#include "revision.h"
9#include "progress.h"
10#include "list-objects.h"
11#include "pack.h"
12#include "pack-bitmap.h"
13#include "pack-revindex.h"
14#include "pack-objects.h"
0317f455 15#include "packfile.h"
a80d72db 16#include "repository.h"
74ea5c95 17#include "trace2.h"
87bed179 18#include "object-file.h"
a034e910 19#include "object-store-ll.h"
6663ae0a 20#include "list-objects-filter-options.h"
0f533c72 21#include "midx.h"
3f267a11 22#include "config.h"
fff42755
VM
23
24/*
25 * An entry on the bitmap index, representing the bitmap for a given
26 * commit.
27 */
28struct stored_bitmap {
53636539 29 struct object_id oid;
fff42755
VM
30 struct ewah_bitmap *root;
31 struct stored_bitmap *xor;
32 int flags;
33};
34
35/*
3ae5fa07 36 * The active bitmap index for a repository. By design, repositories only have
fff42755
VM
37 * a single bitmap index available (the index for the biggest packfile in
38 * the repository), since bitmap indexes need full closure.
39 *
40 * If there is more than one bitmap index available (e.g. because of alternates),
41 * the active bitmap index is the largest one.
42 */
3ae5fa07 43struct bitmap_index {
0f533c72
TB
44 /*
45 * The pack or multi-pack index (MIDX) that this bitmap index belongs
46 * to.
47 *
48 * Exactly one of these must be non-NULL; this specifies the object
49 * order used to interpret this bitmap.
50 */
fff42755 51 struct packed_git *pack;
0f533c72 52 struct multi_pack_index *midx;
fff42755 53
fff42755
VM
54 /*
55 * Mark the first `reuse_objects` in the packfile as reused:
56 * they will be sent as-is without using them for repacking
57 * calculations
58 */
59 uint32_t reuse_objects;
60
61 /* mmapped buffer of the whole bitmap index */
62 unsigned char *map;
63 size_t map_size; /* size of the mmaped buffer */
64 size_t map_pos; /* current position when loading the index */
65
66 /*
67 * Type indexes.
68 *
69 * Each bitmap marks which objects in the packfile are of the given
70 * type. This provides type information when yielding the objects from
71 * the packfile during a walk, which allows for better delta bases.
72 */
73 struct ewah_bitmap *commits;
74 struct ewah_bitmap *trees;
75 struct ewah_bitmap *blobs;
76 struct ewah_bitmap *tags;
77
3c771448 78 /* Map from object ID -> `stored_bitmap` for all the bitmapped commits */
79 kh_oid_map_t *bitmaps;
fff42755
VM
80
81 /* Number of bitmapped commits */
82 uint32_t entry_count;
83
f3c23db2 84 /* If not NULL, this is a name-hash cache pointing into map. */
ae4f07fb
VM
85 uint32_t *hashes;
86
0f533c72
TB
87 /* The checksum of the packfile or MIDX; points into map. */
88 const unsigned char *checksum;
89
28cd7306
AC
90 /*
91 * If not NULL, this point into the commit table extension
92 * (within the memory mapped region `map`).
93 */
94 unsigned char *table_lookup;
95
fff42755
VM
96 /*
97 * Extended index.
98 *
99 * When trying to perform bitmap operations with objects that are not
100 * packed in `pack`, these objects are added to this "fake index" and
101 * are assumed to appear at the end of the packfile for all operations
102 */
103 struct eindex {
104 struct object **objects;
105 uint32_t *hashes;
106 uint32_t count, alloc;
3c771448 107 kh_oid_pos_t *positions;
fff42755
VM
108 } ext_index;
109
110 /* Bitmap result of the last performed walk */
111 struct bitmap *result;
112
30cdc33f
JK
113 /* "have" bitmap from the last performed walk */
114 struct bitmap *haves;
115
fff42755
VM
116 /* Version of the bitmap index */
117 unsigned int version;
3ae5fa07 118};
fff42755
VM
119
120static struct ewah_bitmap *lookup_stored_bitmap(struct stored_bitmap *st)
121{
122 struct ewah_bitmap *parent;
123 struct ewah_bitmap *composed;
124
afe8a907 125 if (!st->xor)
fff42755
VM
126 return st->root;
127
128 composed = ewah_pool_new();
129 parent = lookup_stored_bitmap(st->xor);
130 ewah_xor(st->root, parent, composed);
131
132 ewah_pool_free(st->root);
133 st->root = composed;
134 st->xor = NULL;
135
136 return composed;
137}
138
139/*
140 * Read a bitmap from the current read position on the mmaped
141 * index, and increase the read position accordingly
142 */
143static struct ewah_bitmap *read_bitmap_1(struct bitmap_index *index)
144{
145 struct ewah_bitmap *b = ewah_pool_new();
146
1140bf01 147 ssize_t bitmap_size = ewah_read_mmap(b,
fff42755
VM
148 index->map + index->map_pos,
149 index->map_size - index->map_pos);
150
151 if (bitmap_size < 0) {
9975975d 152 error(_("failed to load bitmap index (corrupted?)"));
fff42755
VM
153 ewah_pool_free(b);
154 return NULL;
155 }
156
157 index->map_pos += bitmap_size;
158 return b;
159}
160
ed184620
TB
161static uint32_t bitmap_num_objects(struct bitmap_index *index)
162{
0f533c72
TB
163 if (index->midx)
164 return index->midx->num_objects;
ed184620
TB
165 return index->pack->num_objects;
166}
167
fff42755
VM
168static int load_bitmap_header(struct bitmap_index *index)
169{
170 struct bitmap_disk_header *header = (void *)index->map;
ca510902 171 size_t header_size = sizeof(*header) - GIT_MAX_RAWSZ + the_hash_algo->rawsz;
fff42755 172
ca510902 173 if (index->map_size < header_size + the_hash_algo->rawsz)
9975975d 174 return error(_("corrupted bitmap index (too small)"));
fff42755
VM
175
176 if (memcmp(header->magic, BITMAP_IDX_SIGNATURE, sizeof(BITMAP_IDX_SIGNATURE)) != 0)
9975975d 177 return error(_("corrupted bitmap index file (wrong header)"));
fff42755
VM
178
179 index->version = ntohs(header->version);
180 if (index->version != 1)
9975975d 181 return error(_("unsupported version '%d' for bitmap index file"), index->version);
fff42755
VM
182
183 /* Parse known bitmap format options */
184 {
185 uint32_t flags = ntohs(header->options);
ed184620 186 size_t cache_size = st_mult(bitmap_num_objects(index), sizeof(uint32_t));
ec6c7b43 187 unsigned char *index_end = index->map + index->map_size - the_hash_algo->rawsz;
fff42755
VM
188
189 if ((flags & BITMAP_OPT_FULL_DAG) == 0)
baf20c39 190 BUG("unsupported options for bitmap index file "
fff42755 191 "(Git requires BITMAP_OPT_FULL_DAG)");
ae4f07fb
VM
192
193 if (flags & BITMAP_OPT_HASH_CACHE) {
ec6c7b43 194 if (cache_size > index_end - index->map - header_size)
9975975d 195 return error(_("corrupted bitmap index file (too short to fit hash cache)"));
ec6c7b43
JK
196 index->hashes = (void *)(index_end - cache_size);
197 index_end -= cache_size;
ae4f07fb 198 }
28cd7306
AC
199
200 if (flags & BITMAP_OPT_LOOKUP_TABLE) {
201 size_t table_size = st_mult(ntohl(header->entry_count),
202 BITMAP_LOOKUP_TABLE_TRIPLET_WIDTH);
203 if (table_size > index_end - index->map - header_size)
204 return error(_("corrupted bitmap index file (too short to fit lookup table)"));
205 if (git_env_bool("GIT_TEST_READ_COMMIT_TABLE", 1))
206 index->table_lookup = (void *)(index_end - table_size);
207 index_end -= table_size;
208 }
fff42755
VM
209 }
210
211 index->entry_count = ntohl(header->entry_count);
0f533c72 212 index->checksum = header->checksum;
ca510902 213 index->map_pos += header_size;
fff42755
VM
214 return 0;
215}
216
217static struct stored_bitmap *store_bitmap(struct bitmap_index *index,
218 struct ewah_bitmap *root,
500e4f23 219 const struct object_id *oid,
fff42755
VM
220 struct stored_bitmap *xor_with,
221 int flags)
222{
223 struct stored_bitmap *stored;
224 khiter_t hash_pos;
225 int ret;
226
227 stored = xmalloc(sizeof(struct stored_bitmap));
228 stored->root = root;
229 stored->xor = xor_with;
230 stored->flags = flags;
500e4f23 231 oidcpy(&stored->oid, oid);
fff42755 232
3c771448 233 hash_pos = kh_put_oid_map(index->bitmaps, stored->oid, &ret);
fff42755 234
28cd7306
AC
235 /*
236 * A 0 return code means the insertion succeeded with no changes,
237 * because the SHA1 already existed on the map. This is bad, there
238 * shouldn't be duplicated commits in the index.
239 */
fff42755 240 if (ret == 0) {
9975975d 241 error(_("duplicate entry in bitmap index: '%s'"), oid_to_hex(oid));
fff42755
VM
242 return NULL;
243 }
244
245 kh_value(index->bitmaps, hash_pos) = stored;
246 return stored;
247}
248
b5007211
KB
249static inline uint32_t read_be32(const unsigned char *buffer, size_t *pos)
250{
251 uint32_t result = get_be32(buffer + *pos);
252 (*pos) += sizeof(result);
253 return result;
254}
255
256static inline uint8_t read_u8(const unsigned char *buffer, size_t *pos)
257{
258 return buffer[(*pos)++];
259}
260
599dc766
RS
261#define MAX_XOR_OFFSET 160
262
6b4277e6
TB
263static int nth_bitmap_object_oid(struct bitmap_index *index,
264 struct object_id *oid,
265 uint32_t n)
266{
0f533c72
TB
267 if (index->midx)
268 return nth_midxed_object_oid(oid, index->midx, n) ? 0 : -1;
6b4277e6
TB
269 return nth_packed_object_id(oid, index->pack, n);
270}
271
fff42755
VM
272static int load_bitmap_entries_v1(struct bitmap_index *index)
273{
fff42755 274 uint32_t i;
599dc766 275 struct stored_bitmap *recent_bitmaps[MAX_XOR_OFFSET] = { NULL };
fff42755
VM
276
277 for (i = 0; i < index->entry_count; ++i) {
278 int xor_offset, flags;
279 struct ewah_bitmap *bitmap = NULL;
280 struct stored_bitmap *xor_bitmap = NULL;
281 uint32_t commit_idx_pos;
500e4f23 282 struct object_id oid;
fff42755 283
c6b0c391 284 if (index->map_size - index->map_pos < 6)
9975975d 285 return error(_("corrupt ewah bitmap: truncated header for entry %d"), i);
c6b0c391 286
b5007211
KB
287 commit_idx_pos = read_be32(index->map, &index->map_pos);
288 xor_offset = read_u8(index->map, &index->map_pos);
289 flags = read_u8(index->map, &index->map_pos);
fff42755 290
6b4277e6 291 if (nth_bitmap_object_oid(index, &oid, commit_idx_pos) < 0)
9975975d 292 return error(_("corrupt ewah bitmap: commit index %u out of range"),
c6b0c391 293 (unsigned)commit_idx_pos);
fff42755 294
fff42755
VM
295 bitmap = read_bitmap_1(index);
296 if (!bitmap)
297 return -1;
298
299 if (xor_offset > MAX_XOR_OFFSET || xor_offset > i)
9975975d 300 return error(_("corrupted bitmap pack index"));
fff42755
VM
301
302 if (xor_offset > 0) {
303 xor_bitmap = recent_bitmaps[(i - xor_offset) % MAX_XOR_OFFSET];
304
afe8a907 305 if (!xor_bitmap)
9975975d 306 return error(_("invalid XOR offset in bitmap pack index"));
fff42755
VM
307 }
308
309 recent_bitmaps[i % MAX_XOR_OFFSET] = store_bitmap(
500e4f23 310 index, bitmap, &oid, xor_bitmap, flags);
fff42755
VM
311 }
312
313 return 0;
314}
315
0f533c72
TB
316char *midx_bitmap_filename(struct multi_pack_index *midx)
317{
60980aed
TB
318 struct strbuf buf = STRBUF_INIT;
319
320 get_midx_filename(&buf, midx->object_dir);
321 strbuf_addf(&buf, "-%s.bitmap", hash_to_hex(get_midx_checksum(midx)));
322
323 return strbuf_detach(&buf, NULL);
0f533c72
TB
324}
325
326char *pack_bitmap_filename(struct packed_git *p)
cb468050 327{
9ae97018 328 size_t len;
cb468050 329
9ae97018 330 if (!strip_suffix(p->pack_name, ".pack", &len))
033abf97 331 BUG("pack_name does not end in .pack");
9ae97018 332 return xstrfmt("%.*s.bitmap", (int)len, p->pack_name);
cb468050
JH
333}
334
0f533c72
TB
335static int open_midx_bitmap_1(struct bitmap_index *bitmap_git,
336 struct multi_pack_index *midx)
337{
338 struct stat st;
349c26ff
TL
339 char *bitmap_name = midx_bitmap_filename(midx);
340 int fd = git_open(bitmap_name);
44f9fd64
TB
341 uint32_t i;
342 struct packed_git *preferred;
0f533c72 343
6411cc08
TL
344 if (fd < 0) {
345 if (errno != ENOENT)
346 warning_errno("cannot open '%s'", bitmap_name);
347 free(bitmap_name);
0f533c72 348 return -1;
6411cc08
TL
349 }
350 free(bitmap_name);
0f533c72
TB
351
352 if (fstat(fd, &st)) {
9005eb02 353 error_errno(_("cannot fstat bitmap file"));
0f533c72
TB
354 close(fd);
355 return -1;
356 }
357
358 if (bitmap_git->pack || bitmap_git->midx) {
60980aed
TB
359 struct strbuf buf = STRBUF_INIT;
360 get_midx_filename(&buf, midx->object_dir);
8ddc0663
TL
361 trace2_data_string("bitmap", the_repository,
362 "ignoring extra midx bitmap file", buf.buf);
0f533c72 363 close(fd);
60980aed 364 strbuf_release(&buf);
0f533c72
TB
365 return -1;
366 }
367
368 bitmap_git->midx = midx;
369 bitmap_git->map_size = xsize_t(st.st_size);
370 bitmap_git->map_pos = 0;
371 bitmap_git->map = xmmap(NULL, bitmap_git->map_size, PROT_READ,
372 MAP_PRIVATE, fd, 0);
373 close(fd);
374
375 if (load_bitmap_header(bitmap_git) < 0)
376 goto cleanup;
377
9005eb02
TL
378 if (!hasheq(get_midx_checksum(bitmap_git->midx), bitmap_git->checksum)) {
379 error(_("checksum doesn't match in MIDX and bitmap"));
0f533c72 380 goto cleanup;
9005eb02 381 }
0f533c72 382
5a6072f6 383 if (load_midx_revindex(bitmap_git->midx)) {
0f533c72
TB
384 warning(_("multi-pack bitmap is missing required reverse index"));
385 goto cleanup;
386 }
44f9fd64
TB
387
388 for (i = 0; i < bitmap_git->midx->num_packs; i++) {
06f38678
TB
389 if (prepare_midx_pack(the_repository, bitmap_git->midx, i)) {
390 warning(_("could not open pack %s"),
391 bitmap_git->midx->pack_names[i]);
392 goto cleanup;
393 }
44f9fd64
TB
394 }
395
396 preferred = bitmap_git->midx->packs[midx_preferred_pack(bitmap_git)];
397 if (!is_pack_valid(preferred)) {
398 warning(_("preferred pack (%s) is invalid"),
399 preferred->pack_name);
400 goto cleanup;
401 }
402
0f533c72
TB
403 return 0;
404
405cleanup:
406 munmap(bitmap_git->map, bitmap_git->map_size);
407 bitmap_git->map_size = 0;
f8b60cf9 408 bitmap_git->map_pos = 0;
0f533c72 409 bitmap_git->map = NULL;
f8b60cf9 410 bitmap_git->midx = NULL;
0f533c72
TB
411 return -1;
412}
413
3ae5fa07 414static int open_pack_bitmap_1(struct bitmap_index *bitmap_git, struct packed_git *packfile)
fff42755
VM
415{
416 int fd;
417 struct stat st;
349c26ff 418 char *bitmap_name;
fff42755 419
349c26ff
TL
420 bitmap_name = pack_bitmap_filename(packfile);
421 fd = git_open(bitmap_name);
fff42755 422
6411cc08
TL
423 if (fd < 0) {
424 if (errno != ENOENT)
425 warning_errno("cannot open '%s'", bitmap_name);
426 free(bitmap_name);
fff42755 427 return -1;
6411cc08
TL
428 }
429 free(bitmap_name);
fff42755
VM
430
431 if (fstat(fd, &st)) {
9005eb02 432 error_errno(_("cannot fstat bitmap file"));
fff42755
VM
433 close(fd);
434 return -1;
435 }
436
0f533c72 437 if (bitmap_git->pack || bitmap_git->midx) {
8ddc0663
TL
438 trace2_data_string("bitmap", the_repository,
439 "ignoring extra bitmap file", packfile->pack_name);
fff42755
VM
440 close(fd);
441 return -1;
442 }
443
dc1daacd
JK
444 if (!is_pack_valid(packfile)) {
445 close(fd);
446 return -1;
447 }
448
3ae5fa07
JT
449 bitmap_git->pack = packfile;
450 bitmap_git->map_size = xsize_t(st.st_size);
451 bitmap_git->map = xmmap(NULL, bitmap_git->map_size, PROT_READ, MAP_PRIVATE, fd, 0);
452 bitmap_git->map_pos = 0;
fff42755
VM
453 close(fd);
454
3ae5fa07
JT
455 if (load_bitmap_header(bitmap_git) < 0) {
456 munmap(bitmap_git->map, bitmap_git->map_size);
457 bitmap_git->map = NULL;
458 bitmap_git->map_size = 0;
f8b60cf9
TB
459 bitmap_git->map_pos = 0;
460 bitmap_git->pack = NULL;
fff42755
VM
461 return -1;
462 }
463
8ddc0663
TL
464 trace2_data_string("bitmap", the_repository, "opened bitmap file",
465 packfile->pack_name);
fff42755
VM
466 return 0;
467}
468
65308ad8 469static int load_reverse_index(struct repository *r, struct bitmap_index *bitmap_git)
0f533c72
TB
470{
471 if (bitmap_is_midx(bitmap_git)) {
472 uint32_t i;
473 int ret;
474
475 /*
476 * The multi-pack-index's .rev file is already loaded via
477 * open_pack_bitmap_1().
478 *
479 * But we still need to open the individual pack .rev files,
480 * since we will need to make use of them in pack-objects.
481 */
482 for (i = 0; i < bitmap_git->midx->num_packs; i++) {
65308ad8 483 ret = load_pack_revindex(r, bitmap_git->midx->packs[i]);
0f533c72
TB
484 if (ret)
485 return ret;
486 }
487 return 0;
488 }
65308ad8 489 return load_pack_revindex(r, bitmap_git->pack);
0f533c72
TB
490}
491
65308ad8 492static int load_bitmap(struct repository *r, struct bitmap_index *bitmap_git)
fff42755 493{
199c86be 494 assert(bitmap_git->map);
fff42755 495
3c771448 496 bitmap_git->bitmaps = kh_init_oid_map();
497 bitmap_git->ext_index.positions = kh_init_oid_pos();
0f533c72 498
65308ad8 499 if (load_reverse_index(r, bitmap_git))
4828ce98 500 goto failed;
fff42755 501
3ae5fa07
JT
502 if (!(bitmap_git->commits = read_bitmap_1(bitmap_git)) ||
503 !(bitmap_git->trees = read_bitmap_1(bitmap_git)) ||
504 !(bitmap_git->blobs = read_bitmap_1(bitmap_git)) ||
505 !(bitmap_git->tags = read_bitmap_1(bitmap_git)))
fff42755
VM
506 goto failed;
507
28cd7306 508 if (!bitmap_git->table_lookup && load_bitmap_entries_v1(bitmap_git) < 0)
fff42755
VM
509 goto failed;
510
fff42755
VM
511 return 0;
512
513failed:
3ae5fa07
JT
514 munmap(bitmap_git->map, bitmap_git->map_size);
515 bitmap_git->map = NULL;
516 bitmap_git->map_size = 0;
bb514de3
JK
517
518 kh_destroy_oid_map(bitmap_git->bitmaps);
519 bitmap_git->bitmaps = NULL;
520
521 kh_destroy_oid_pos(bitmap_git->ext_index.positions);
522 bitmap_git->ext_index.positions = NULL;
523
fff42755
VM
524 return -1;
525}
526
7c141127
NTND
527static int open_pack_bitmap(struct repository *r,
528 struct bitmap_index *bitmap_git)
fff42755
VM
529{
530 struct packed_git *p;
531 int ret = -1;
532
7c141127 533 for (p = get_all_packs(r); p; p = p->next) {
833f4c05 534 if (open_pack_bitmap_1(bitmap_git, p) == 0) {
fff42755 535 ret = 0;
833f4c05
JK
536 /*
537 * The only reason to keep looking is to report
538 * duplicates.
539 */
540 if (!trace2_is_enabled())
541 break;
542 }
fff42755
VM
543 }
544
545 return ret;
546}
547
0f533c72
TB
548static int open_midx_bitmap(struct repository *r,
549 struct bitmap_index *bitmap_git)
550{
5dcee7c7 551 int ret = -1;
0f533c72
TB
552 struct multi_pack_index *midx;
553
554 assert(!bitmap_git->map);
555
556 for (midx = get_multi_pack_index(r); midx; midx = midx->next) {
557 if (!open_midx_bitmap_1(bitmap_git, midx))
5dcee7c7 558 ret = 0;
0f533c72 559 }
5dcee7c7 560 return ret;
0f533c72
TB
561}
562
563static int open_bitmap(struct repository *r,
564 struct bitmap_index *bitmap_git)
565{
c8f43570
JK
566 int found;
567
0f533c72
TB
568 assert(!bitmap_git->map);
569
c8f43570
JK
570 found = !open_midx_bitmap(r, bitmap_git);
571
572 /*
573 * these will all be skipped if we opened a midx bitmap; but run it
574 * anyway if tracing is enabled to report the duplicates
575 */
576 if (!found || trace2_is_enabled())
577 found |= !open_pack_bitmap(r, bitmap_git);
578
579 return found ? 0 : -1;
0f533c72
TB
580}
581
7c141127 582struct bitmap_index *prepare_bitmap_git(struct repository *r)
fff42755 583{
3ae5fa07 584 struct bitmap_index *bitmap_git = xcalloc(1, sizeof(*bitmap_git));
fff42755 585
65308ad8 586 if (!open_bitmap(r, bitmap_git) && !load_bitmap(r, bitmap_git))
0f533c72
TB
587 return bitmap_git;
588
589 free_bitmap_index(bitmap_git);
590 return NULL;
591}
592
bfbb60d3 593struct bitmap_index *prepare_midx_bitmap_git(struct multi_pack_index *midx)
0f533c72 594{
65308ad8 595 struct repository *r = the_repository;
0f533c72
TB
596 struct bitmap_index *bitmap_git = xcalloc(1, sizeof(*bitmap_git));
597
65308ad8 598 if (!open_midx_bitmap_1(bitmap_git, midx) && !load_bitmap(r, bitmap_git))
3ae5fa07 599 return bitmap_git;
fff42755 600
f3c23db2 601 free_bitmap_index(bitmap_git);
3ae5fa07 602 return NULL;
fff42755
VM
603}
604
605struct include_data {
3ae5fa07 606 struct bitmap_index *bitmap_git;
fff42755
VM
607 struct bitmap *base;
608 struct bitmap *seen;
609};
610
28cd7306
AC
611struct bitmap_lookup_table_triplet {
612 uint32_t commit_pos;
613 uint64_t offset;
614 uint32_t xor_row;
615};
616
617struct bitmap_lookup_table_xor_item {
618 struct object_id oid;
619 uint64_t offset;
620};
621
622/*
623 * Given a `triplet` struct pointer and pointer `p`, this
624 * function reads the triplet beginning at `p` into the struct.
625 * Note that this function assumes that there is enough memory
626 * left for filling the `triplet` struct from `p`.
627 */
628static int bitmap_lookup_table_get_triplet_by_pointer(struct bitmap_lookup_table_triplet *triplet,
629 const unsigned char *p)
630{
631 if (!triplet)
632 return -1;
633
634 triplet->commit_pos = get_be32(p);
635 p += sizeof(uint32_t);
636 triplet->offset = get_be64(p);
637 p += sizeof(uint64_t);
638 triplet->xor_row = get_be32(p);
639 return 0;
640}
641
642/*
643 * This function gets the raw triplet from `row`'th row in the
644 * lookup table and fills that data to the `triplet`.
645 */
646static int bitmap_lookup_table_get_triplet(struct bitmap_index *bitmap_git,
647 uint32_t pos,
648 struct bitmap_lookup_table_triplet *triplet)
649{
650 unsigned char *p = NULL;
651 if (pos >= bitmap_git->entry_count)
652 return error(_("corrupt bitmap lookup table: triplet position out of index"));
653
654 p = bitmap_git->table_lookup + st_mult(pos, BITMAP_LOOKUP_TABLE_TRIPLET_WIDTH);
655
656 return bitmap_lookup_table_get_triplet_by_pointer(triplet, p);
657}
658
659/*
660 * Searches for a matching triplet. `commit_pos` is a pointer
661 * to the wanted commit position value. `table_entry` points to
662 * a triplet in lookup table. The first 4 bytes of each
663 * triplet (pointed by `table_entry`) are compared with `*commit_pos`.
664 */
665static int triplet_cmp(const void *commit_pos, const void *table_entry)
666{
667
668 uint32_t a = *(uint32_t *)commit_pos;
669 uint32_t b = get_be32(table_entry);
670 if (a > b)
671 return 1;
672 else if (a < b)
673 return -1;
674
675 return 0;
676}
677
678static uint32_t bitmap_bsearch_pos(struct bitmap_index *bitmap_git,
679 struct object_id *oid,
680 uint32_t *result)
681{
682 int found;
683
684 if (bitmap_is_midx(bitmap_git))
685 found = bsearch_midx(oid, bitmap_git->midx, result);
686 else
687 found = bsearch_pack(oid, bitmap_git->pack, result);
688
689 return found;
690}
691
692/*
693 * `bsearch_triplet_by_pos` function searches for the raw triplet
694 * having commit position same as `commit_pos` and fills `triplet`
695 * object from the raw triplet. Returns 1 on success and 0 on
696 * failure.
697 */
698static int bitmap_bsearch_triplet_by_pos(uint32_t commit_pos,
699 struct bitmap_index *bitmap_git,
700 struct bitmap_lookup_table_triplet *triplet)
701{
702 unsigned char *p = bsearch(&commit_pos, bitmap_git->table_lookup, bitmap_git->entry_count,
703 BITMAP_LOOKUP_TABLE_TRIPLET_WIDTH, triplet_cmp);
704
705 if (!p)
706 return -1;
707
708 return bitmap_lookup_table_get_triplet_by_pointer(triplet, p);
709}
710
711static struct stored_bitmap *lazy_bitmap_for_commit(struct bitmap_index *bitmap_git,
712 struct commit *commit)
713{
714 uint32_t commit_pos, xor_row;
715 uint64_t offset;
716 int flags;
717 struct bitmap_lookup_table_triplet triplet;
718 struct object_id *oid = &commit->object.oid;
719 struct ewah_bitmap *bitmap;
720 struct stored_bitmap *xor_bitmap = NULL;
721 const int bitmap_header_size = 6;
722 static struct bitmap_lookup_table_xor_item *xor_items = NULL;
723 static size_t xor_items_nr = 0, xor_items_alloc = 0;
724 static int is_corrupt = 0;
725 int xor_flags;
726 khiter_t hash_pos;
727 struct bitmap_lookup_table_xor_item *xor_item;
728
729 if (is_corrupt)
730 return NULL;
731
732 if (!bitmap_bsearch_pos(bitmap_git, oid, &commit_pos))
733 return NULL;
734
735 if (bitmap_bsearch_triplet_by_pos(commit_pos, bitmap_git, &triplet) < 0)
736 return NULL;
737
738 xor_items_nr = 0;
739 offset = triplet.offset;
740 xor_row = triplet.xor_row;
741
742 while (xor_row != 0xffffffff) {
743 ALLOC_GROW(xor_items, xor_items_nr + 1, xor_items_alloc);
744
745 if (xor_items_nr + 1 >= bitmap_git->entry_count) {
711340c7 746 error(_("corrupt bitmap lookup table: xor chain exceeds entry count"));
28cd7306
AC
747 goto corrupt;
748 }
749
750 if (bitmap_lookup_table_get_triplet(bitmap_git, xor_row, &triplet) < 0)
751 goto corrupt;
752
753 xor_item = &xor_items[xor_items_nr];
754 xor_item->offset = triplet.offset;
755
756 if (nth_bitmap_object_oid(bitmap_git, &xor_item->oid, triplet.commit_pos) < 0) {
757 error(_("corrupt bitmap lookup table: commit index %u out of range"),
758 triplet.commit_pos);
759 goto corrupt;
760 }
761
762 hash_pos = kh_get_oid_map(bitmap_git->bitmaps, xor_item->oid);
763
764 /*
765 * If desired bitmap is already stored, we don't need
766 * to iterate further. Because we know that bitmaps
767 * that are needed to be parsed to parse this bitmap
768 * has already been stored. So, assign this stored bitmap
769 * to the xor_bitmap.
770 */
771 if (hash_pos < kh_end(bitmap_git->bitmaps) &&
772 (xor_bitmap = kh_value(bitmap_git->bitmaps, hash_pos)))
773 break;
774 xor_items_nr++;
775 xor_row = triplet.xor_row;
776 }
777
778 while (xor_items_nr) {
779 xor_item = &xor_items[xor_items_nr - 1];
780 bitmap_git->map_pos = xor_item->offset;
781 if (bitmap_git->map_size - bitmap_git->map_pos < bitmap_header_size) {
782 error(_("corrupt ewah bitmap: truncated header for bitmap of commit \"%s\""),
783 oid_to_hex(&xor_item->oid));
784 goto corrupt;
785 }
786
787 bitmap_git->map_pos += sizeof(uint32_t) + sizeof(uint8_t);
788 xor_flags = read_u8(bitmap_git->map, &bitmap_git->map_pos);
789 bitmap = read_bitmap_1(bitmap_git);
790
791 if (!bitmap)
792 goto corrupt;
793
794 xor_bitmap = store_bitmap(bitmap_git, bitmap, &xor_item->oid, xor_bitmap, xor_flags);
795 xor_items_nr--;
796 }
797
798 bitmap_git->map_pos = offset;
799 if (bitmap_git->map_size - bitmap_git->map_pos < bitmap_header_size) {
800 error(_("corrupt ewah bitmap: truncated header for bitmap of commit \"%s\""),
801 oid_to_hex(oid));
802 goto corrupt;
803 }
804
805 /*
806 * Don't bother reading the commit's index position or its xor
807 * offset:
808 *
809 * - The commit's index position is irrelevant to us, since
810 * load_bitmap_entries_v1 only uses it to learn the object
811 * id which is used to compute the hashmap's key. We already
812 * have an object id, so no need to look it up again.
813 *
814 * - The xor_offset is unusable for us, since it specifies how
815 * many entries previous to ours we should look at. This
816 * makes sense when reading the bitmaps sequentially (as in
817 * load_bitmap_entries_v1()), since we can keep track of
818 * each bitmap as we read them.
819 *
820 * But it can't work for us, since the bitmap's don't have a
821 * fixed size. So we learn the position of the xor'd bitmap
822 * from the commit table (and resolve it to a bitmap in the
823 * above if-statement).
824 *
825 * Instead, we can skip ahead and immediately read the flags and
826 * ewah bitmap.
827 */
828 bitmap_git->map_pos += sizeof(uint32_t) + sizeof(uint8_t);
829 flags = read_u8(bitmap_git->map, &bitmap_git->map_pos);
830 bitmap = read_bitmap_1(bitmap_git);
831
832 if (!bitmap)
833 goto corrupt;
834
835 return store_bitmap(bitmap_git, bitmap, oid, xor_bitmap, flags);
836
837corrupt:
838 free(xor_items);
839 is_corrupt = 1;
840 return NULL;
841}
842
98c31f36
TB
843struct ewah_bitmap *bitmap_for_commit(struct bitmap_index *bitmap_git,
844 struct commit *commit)
845{
846 khiter_t hash_pos = kh_get_oid_map(bitmap_git->bitmaps,
847 commit->object.oid);
28cd7306
AC
848 if (hash_pos >= kh_end(bitmap_git->bitmaps)) {
849 struct stored_bitmap *bitmap = NULL;
850 if (!bitmap_git->table_lookup)
851 return NULL;
852
89a1ab8f 853 /* this is a fairly hot codepath - no trace2_region please */
28cd7306
AC
854 /* NEEDSWORK: cache misses aren't recorded */
855 bitmap = lazy_bitmap_for_commit(bitmap_git, commit);
28cd7306
AC
856 if (!bitmap)
857 return NULL;
858 return lookup_stored_bitmap(bitmap);
859 }
98c31f36
TB
860 return lookup_stored_bitmap(kh_value(bitmap_git->bitmaps, hash_pos));
861}
862
3ae5fa07 863static inline int bitmap_position_extended(struct bitmap_index *bitmap_git,
3c771448 864 const struct object_id *oid)
fff42755 865{
4ed43d16 866 kh_oid_pos_t *positions = bitmap_git->ext_index.positions;
3c771448 867 khiter_t pos = kh_get_oid_pos(positions, *oid);
fff42755
VM
868
869 if (pos < kh_end(positions)) {
870 int bitmap_pos = kh_value(positions, pos);
ed184620 871 return bitmap_pos + bitmap_num_objects(bitmap_git);
fff42755
VM
872 }
873
874 return -1;
875}
876
3ae5fa07 877static inline int bitmap_position_packfile(struct bitmap_index *bitmap_git,
3c771448 878 const struct object_id *oid)
fff42755 879{
57665086 880 uint32_t pos;
3c771448 881 off_t offset = find_pack_entry_one(oid->hash, bitmap_git->pack);
fff42755
VM
882 if (!offset)
883 return -1;
884
57665086
TB
885 if (offset_to_pack_pos(bitmap_git->pack, offset, &pos) < 0)
886 return -1;
887 return pos;
fff42755
VM
888}
889
0f533c72
TB
890static int bitmap_position_midx(struct bitmap_index *bitmap_git,
891 const struct object_id *oid)
892{
893 uint32_t want, got;
894 if (!bsearch_midx(oid, bitmap_git->midx, &want))
895 return -1;
896
897 if (midx_to_pack_pos(bitmap_git->midx, want, &got) < 0)
898 return -1;
899 return got;
900}
901
3ae5fa07 902static int bitmap_position(struct bitmap_index *bitmap_git,
3c771448 903 const struct object_id *oid)
fff42755 904{
0f533c72
TB
905 int pos;
906 if (bitmap_is_midx(bitmap_git))
907 pos = bitmap_position_midx(bitmap_git, oid);
908 else
909 pos = bitmap_position_packfile(bitmap_git, oid);
3c771448 910 return (pos >= 0) ? pos : bitmap_position_extended(bitmap_git, oid);
fff42755
VM
911}
912
3ae5fa07
JT
913static int ext_index_add_object(struct bitmap_index *bitmap_git,
914 struct object *object, const char *name)
fff42755 915{
3ae5fa07 916 struct eindex *eindex = &bitmap_git->ext_index;
fff42755
VM
917
918 khiter_t hash_pos;
919 int hash_ret;
920 int bitmap_pos;
921
3c771448 922 hash_pos = kh_put_oid_pos(eindex->positions, object->oid, &hash_ret);
fff42755
VM
923 if (hash_ret > 0) {
924 if (eindex->count >= eindex->alloc) {
925 eindex->alloc = (eindex->alloc + 16) * 3 / 2;
2756ca43
RS
926 REALLOC_ARRAY(eindex->objects, eindex->alloc);
927 REALLOC_ARRAY(eindex->hashes, eindex->alloc);
fff42755
VM
928 }
929
930 bitmap_pos = eindex->count;
931 eindex->objects[eindex->count] = object;
932 eindex->hashes[eindex->count] = pack_name_hash(name);
933 kh_value(eindex->positions, hash_pos) = bitmap_pos;
934 eindex->count++;
935 } else {
936 bitmap_pos = kh_value(eindex->positions, hash_pos);
937 }
938
ed184620 939 return bitmap_pos + bitmap_num_objects(bitmap_git);
fff42755
VM
940}
941
3ae5fa07
JT
942struct bitmap_show_data {
943 struct bitmap_index *bitmap_git;
944 struct bitmap *base;
945};
946
947static void show_object(struct object *object, const char *name, void *data_)
fff42755 948{
3ae5fa07 949 struct bitmap_show_data *data = data_;
fff42755
VM
950 int bitmap_pos;
951
3c771448 952 bitmap_pos = bitmap_position(data->bitmap_git, &object->oid);
fff42755 953
de1e67d0 954 if (bitmap_pos < 0)
3ae5fa07
JT
955 bitmap_pos = ext_index_add_object(data->bitmap_git, object,
956 name);
fff42755 957
3ae5fa07 958 bitmap_set(data->base, bitmap_pos);
fff42755
VM
959}
960
c50dca2a
JK
961static void show_commit(struct commit *commit UNUSED,
962 void *data UNUSED)
fff42755
VM
963{
964}
965
3ae5fa07
JT
966static int add_to_include_set(struct bitmap_index *bitmap_git,
967 struct include_data *data,
98c31f36 968 struct commit *commit,
fff42755
VM
969 int bitmap_pos)
970{
98c31f36 971 struct ewah_bitmap *partial;
fff42755
VM
972
973 if (data->seen && bitmap_get(data->seen, bitmap_pos))
974 return 0;
975
976 if (bitmap_get(data->base, bitmap_pos))
977 return 0;
978
98c31f36
TB
979 partial = bitmap_for_commit(bitmap_git, commit);
980 if (partial) {
981 bitmap_or_ewah(data->base, partial);
fff42755
VM
982 return 0;
983 }
984
985 bitmap_set(data->base, bitmap_pos);
986 return 1;
987}
988
989static int should_include(struct commit *commit, void *_data)
990{
991 struct include_data *data = _data;
992 int bitmap_pos;
993
3c771448 994 bitmap_pos = bitmap_position(data->bitmap_git, &commit->object.oid);
fff42755 995 if (bitmap_pos < 0)
3ae5fa07
JT
996 bitmap_pos = ext_index_add_object(data->bitmap_git,
997 (struct object *)commit,
998 NULL);
fff42755 999
98c31f36 1000 if (!add_to_include_set(data->bitmap_git, data, commit, bitmap_pos)) {
fff42755
VM
1001 struct commit_list *parent = commit->parents;
1002
1003 while (parent) {
1004 parent->item->object.flags |= SEEN;
1005 parent = parent->next;
1006 }
1007
1008 return 0;
1009 }
1010
1011 return 1;
1012}
1013
aa9ad6fe
JK
1014static int should_include_obj(struct object *obj, void *_data)
1015{
1016 struct include_data *data = _data;
1017 int bitmap_pos;
1018
1019 bitmap_pos = bitmap_position(data->bitmap_git, &obj->oid);
1020 if (bitmap_pos < 0)
1021 return 1;
1022 if ((data->seen && bitmap_get(data->seen, bitmap_pos)) ||
1023 bitmap_get(data->base, bitmap_pos)) {
1024 obj->flags |= SEEN;
1025 return 0;
1026 }
1027 return 1;
1028}
1029
83578051
TB
1030static int add_commit_to_bitmap(struct bitmap_index *bitmap_git,
1031 struct bitmap **base,
1032 struct commit *commit)
1033{
1034 struct ewah_bitmap *or_with = bitmap_for_commit(bitmap_git, commit);
1035
1036 if (!or_with)
1037 return 0;
1038
afe8a907 1039 if (!*base)
83578051
TB
1040 *base = ewah_to_bitmap(or_with);
1041 else
1042 bitmap_or_ewah(*base, or_with);
1043
1044 return 1;
1045}
1046
47ff853f
TB
1047static struct bitmap *fill_in_bitmap(struct bitmap_index *bitmap_git,
1048 struct rev_info *revs,
1049 struct bitmap *base,
1050 struct bitmap *seen)
1051{
1052 struct include_data incdata;
1053 struct bitmap_show_data show_data;
1054
1055 if (!base)
1056 base = bitmap_new();
1057
1058 incdata.bitmap_git = bitmap_git;
1059 incdata.base = base;
1060 incdata.seen = seen;
1061
1062 revs->include_check = should_include;
1063 revs->include_check_obj = should_include_obj;
1064 revs->include_check_data = &incdata;
1065
1066 if (prepare_revision_walk(revs))
1067 die(_("revision walk setup failed"));
1068
1069 show_data.bitmap_git = bitmap_git;
1070 show_data.base = base;
1071
1072 traverse_commit_list(revs, show_commit, show_object, &show_data);
1073
1074 revs->include_check = NULL;
1075 revs->include_check_obj = NULL;
1076 revs->include_check_data = NULL;
1077
1078 return base;
1079}
1080
b0afdce5
TB
1081struct bitmap_boundary_cb {
1082 struct bitmap_index *bitmap_git;
1083 struct bitmap *base;
1084
1085 struct object_array boundary;
1086};
1087
1088static void show_boundary_commit(struct commit *commit, void *_data)
1089{
1090 struct bitmap_boundary_cb *data = _data;
1091
1092 if (commit->object.flags & BOUNDARY)
1093 add_object_array(&commit->object, "", &data->boundary);
1094
1095 if (commit->object.flags & UNINTERESTING) {
1096 if (bitmap_walk_contains(data->bitmap_git, data->base,
1097 &commit->object.oid))
1098 return;
1099
1100 add_commit_to_bitmap(data->bitmap_git, &data->base, commit);
1101 }
1102}
1103
d79b9f7c
JK
1104static void show_boundary_object(struct object *object UNUSED,
1105 const char *name UNUSED,
1106 void *data UNUSED)
b0afdce5
TB
1107{
1108 BUG("should not be called");
1109}
1110
1111static struct bitmap *find_boundary_objects(struct bitmap_index *bitmap_git,
1112 struct rev_info *revs,
1113 struct object_list *roots)
1114{
1115 struct bitmap_boundary_cb cb;
1116 struct object_list *root;
1117 unsigned int i;
1118 unsigned int tmp_blobs, tmp_trees, tmp_tags;
1119 int any_missing = 0;
1120
1121 cb.bitmap_git = bitmap_git;
1122 cb.base = bitmap_new();
1123 object_array_init(&cb.boundary);
1124
1125 revs->ignore_missing_links = 1;
1126
1127 /*
1128 * OR in any existing reachability bitmaps among `roots` into
1129 * `cb.base`.
1130 */
1131 for (root = roots; root; root = root->next) {
1132 struct object *object = root->item;
1133 if (object->type != OBJ_COMMIT ||
1134 bitmap_walk_contains(bitmap_git, cb.base, &object->oid))
1135 continue;
1136
1137 if (add_commit_to_bitmap(bitmap_git, &cb.base,
1138 (struct commit *)object))
1139 continue;
1140
1141 any_missing = 1;
1142 }
1143
1144 if (!any_missing)
1145 goto cleanup;
1146
1147 tmp_blobs = revs->blob_objects;
1148 tmp_trees = revs->tree_objects;
1149 tmp_tags = revs->blob_objects;
1150 revs->blob_objects = 0;
1151 revs->tree_objects = 0;
1152 revs->tag_objects = 0;
1153
1154 /*
1155 * We didn't have complete coverage of the roots. First setup a
1156 * revision walk to (a) OR in any bitmaps that are UNINTERESTING
1157 * between the tips and boundary, and (b) record the boundary.
1158 */
1159 trace2_region_enter("pack-bitmap", "boundary-prepare", the_repository);
1160 if (prepare_revision_walk(revs))
1161 die("revision walk setup failed");
1162 trace2_region_leave("pack-bitmap", "boundary-prepare", the_repository);
1163
1164 trace2_region_enter("pack-bitmap", "boundary-traverse", the_repository);
1165 revs->boundary = 1;
1166 traverse_commit_list_filtered(revs,
1167 show_boundary_commit,
1168 show_boundary_object,
1169 &cb, NULL);
1170 revs->boundary = 0;
1171 trace2_region_leave("pack-bitmap", "boundary-traverse", the_repository);
1172
1173 revs->blob_objects = tmp_blobs;
1174 revs->tree_objects = tmp_trees;
1175 revs->tag_objects = tmp_tags;
1176
1177 reset_revision_walk();
1178 clear_object_flags(UNINTERESTING);
1179
1180 /*
1181 * Then add the boundary commit(s) as fill-in traversal tips.
1182 */
1183 trace2_region_enter("pack-bitmap", "boundary-fill-in", the_repository);
1184 for (i = 0; i < cb.boundary.nr; i++) {
1185 struct object *obj = cb.boundary.objects[i].item;
1186 if (bitmap_walk_contains(bitmap_git, cb.base, &obj->oid))
1187 obj->flags |= SEEN;
1188 else
1189 add_pending_object(revs, obj, "");
1190 }
1191 if (revs->pending.nr)
1192 cb.base = fill_in_bitmap(bitmap_git, revs, cb.base, NULL);
1193 trace2_region_leave("pack-bitmap", "boundary-fill-in", the_repository);
1194
1195cleanup:
1196 object_array_clear(&cb.boundary);
1197 revs->ignore_missing_links = 0;
1198
1199 return cb.base;
1200}
1201
3ae5fa07
JT
1202static struct bitmap *find_objects(struct bitmap_index *bitmap_git,
1203 struct rev_info *revs,
fff42755 1204 struct object_list *roots,
09d4a79e 1205 struct bitmap *seen)
fff42755
VM
1206{
1207 struct bitmap *base = NULL;
1208 int needs_walk = 0;
1209
1210 struct object_list *not_mapped = NULL;
1211
1212 /*
1213 * Go through all the roots for the walk. The ones that have bitmaps
1214 * on the bitmap index will be `or`ed together to form an initial
1215 * global reachability analysis.
1216 *
1217 * The ones without bitmaps in the index will be stored in the
1218 * `not_mapped_list` for further processing.
1219 */
1220 while (roots) {
1221 struct object *object = roots->item;
1222 roots = roots->next;
1223
83578051
TB
1224 if (object->type == OBJ_COMMIT &&
1225 add_commit_to_bitmap(bitmap_git, &base, (struct commit *)object)) {
1226 object->flags |= SEEN;
1227 continue;
fff42755
VM
1228 }
1229
1230 object_list_insert(object, &not_mapped);
1231 }
1232
1233 /*
1234 * Best case scenario: We found bitmaps for all the roots,
1235 * so the resulting `or` bitmap has the full reachability analysis
1236 */
afe8a907 1237 if (!not_mapped)
fff42755
VM
1238 return base;
1239
1240 roots = not_mapped;
1241
1242 /*
1243 * Let's iterate through all the roots that don't have bitmaps to
1244 * check if we can determine them to be reachable from the existing
1245 * global bitmap.
1246 *
1247 * If we cannot find them in the existing global bitmap, we'll need
1248 * to push them to an actual walk and run it until we can confirm
1249 * they are reachable
1250 */
1251 while (roots) {
1252 struct object *object = roots->item;
1253 int pos;
1254
1255 roots = roots->next;
3c771448 1256 pos = bitmap_position(bitmap_git, &object->oid);
fff42755
VM
1257
1258 if (pos < 0 || base == NULL || !bitmap_get(base, pos)) {
1259 object->flags &= ~UNINTERESTING;
1260 add_pending_object(revs, object, "");
1261 needs_walk = 1;
1262 } else {
1263 object->flags |= SEEN;
1264 }
1265 }
1266
1267 if (needs_walk) {
b0afdce5
TB
1268 /*
1269 * This fill-in traversal may walk over some objects
1270 * again, since we have already traversed in order to
1271 * find the boundary.
1272 *
1273 * But this extra walk should be extremely cheap, since
1274 * all commit objects are loaded into memory, and
1275 * because we skip walking to parents that are
1276 * UNINTERESTING, since it will be marked in the haves
1277 * bitmap already (or it has an on-disk bitmap, since
1278 * OR-ing it in covers all of its ancestors).
1279 */
47ff853f 1280 base = fill_in_bitmap(bitmap_git, revs, base, seen);
fff42755
VM
1281 }
1282
1283 return base;
1284}
1285
3ae5fa07 1286static void show_extended_objects(struct bitmap_index *bitmap_git,
4eb707eb 1287 struct rev_info *revs,
fff42755
VM
1288 show_reachable_fn show_reach)
1289{
3ae5fa07
JT
1290 struct bitmap *objects = bitmap_git->result;
1291 struct eindex *eindex = &bitmap_git->ext_index;
fff42755
VM
1292 uint32_t i;
1293
1294 for (i = 0; i < eindex->count; ++i) {
1295 struct object *obj;
1296
0948c501 1297 if (!bitmap_get(objects, st_add(bitmap_num_objects(bitmap_git), i)))
fff42755
VM
1298 continue;
1299
1300 obj = eindex->objects[i];
4eb707eb
JK
1301 if ((obj->type == OBJ_BLOB && !revs->blob_objects) ||
1302 (obj->type == OBJ_TREE && !revs->tree_objects) ||
1303 (obj->type == OBJ_TAG && !revs->tag_objects))
1304 continue;
1305
20664967 1306 show_reach(&obj->oid, obj->type, 0, eindex->hashes[i], NULL, 0);
fff42755
VM
1307 }
1308}
1309
551cf8b6
JK
1310static void init_type_iterator(struct ewah_iterator *it,
1311 struct bitmap_index *bitmap_git,
1312 enum object_type type)
1313{
1314 switch (type) {
1315 case OBJ_COMMIT:
1316 ewah_iterator_init(it, bitmap_git->commits);
1317 break;
1318
1319 case OBJ_TREE:
1320 ewah_iterator_init(it, bitmap_git->trees);
1321 break;
1322
1323 case OBJ_BLOB:
1324 ewah_iterator_init(it, bitmap_git->blobs);
1325 break;
1326
1327 case OBJ_TAG:
1328 ewah_iterator_init(it, bitmap_git->tags);
1329 break;
1330
1331 default:
1332 BUG("object type %d not stored by bitmap type index", type);
1333 break;
1334 }
1335}
1336
fff42755 1337static void show_objects_for_type(
3ae5fa07 1338 struct bitmap_index *bitmap_git,
fff42755
VM
1339 enum object_type object_type,
1340 show_reachable_fn show_reach)
1341{
d2ea0310 1342 size_t i = 0;
fff42755
VM
1343 uint32_t offset;
1344
1345 struct ewah_iterator it;
1346 eword_t filter;
1347
3ae5fa07
JT
1348 struct bitmap *objects = bitmap_git->result;
1349
551cf8b6 1350 init_type_iterator(&it, bitmap_git, object_type);
fff42755 1351
d2ea0310
JK
1352 for (i = 0; i < objects->word_alloc &&
1353 ewah_iterator_next(&filter, &it); i++) {
fff42755 1354 eword_t word = objects->words[i] & filter;
d2ea0310
JK
1355 size_t pos = (i * BITS_IN_EWORD);
1356
1357 if (!word)
1358 continue;
fff42755 1359
34b935c0 1360 for (offset = 0; offset < BITS_IN_EWORD; ++offset) {
0f533c72 1361 struct packed_git *pack;
20664967 1362 struct object_id oid;
cf98f2e8
TB
1363 uint32_t hash = 0, index_pos;
1364 off_t ofs;
fff42755
VM
1365
1366 if ((word >> offset) == 0)
1367 break;
1368
1369 offset += ewah_bit_ctz64(word >> offset);
1370
0f533c72
TB
1371 if (bitmap_is_midx(bitmap_git)) {
1372 struct multi_pack_index *m = bitmap_git->midx;
1373 uint32_t pack_id;
1374
1375 index_pos = pack_pos_to_midx(m, pos + offset);
1376 ofs = nth_midxed_offset(m, index_pos);
1377 nth_midxed_object_oid(&oid, m, index_pos);
1378
1379 pack_id = nth_midxed_pack_int_id(m, index_pos);
1380 pack = bitmap_git->midx->packs[pack_id];
1381 } else {
1382 index_pos = pack_pos_to_index(bitmap_git->pack, pos + offset);
1383 ofs = pack_pos_to_offset(bitmap_git->pack, pos + offset);
1384 nth_bitmap_object_oid(bitmap_git, &oid, index_pos);
1385
1386 pack = bitmap_git->pack;
1387 }
fff42755 1388
3ae5fa07 1389 if (bitmap_git->hashes)
cf98f2e8 1390 hash = get_be32(bitmap_git->hashes + index_pos);
ae4f07fb 1391
0f533c72 1392 show_reach(&oid, object_type, 0, hash, pack, ofs);
fff42755 1393 }
fff42755
VM
1394 }
1395}
1396
3ae5fa07
JT
1397static int in_bitmapped_pack(struct bitmap_index *bitmap_git,
1398 struct object_list *roots)
fff42755
VM
1399{
1400 while (roots) {
1401 struct object *object = roots->item;
1402 roots = roots->next;
1403
0f533c72
TB
1404 if (bitmap_is_midx(bitmap_git)) {
1405 if (bsearch_midx(&object->oid, bitmap_git->midx, NULL))
1406 return 1;
1407 } else {
1408 if (find_pack_entry_one(object->oid.hash, bitmap_git->pack) > 0)
1409 return 1;
1410 }
fff42755
VM
1411 }
1412
1413 return 0;
1414}
1415
856e12c1
TB
1416static struct bitmap *find_tip_objects(struct bitmap_index *bitmap_git,
1417 struct object_list *tip_objects,
1418 enum object_type type)
4f3bd560
JK
1419{
1420 struct bitmap *result = bitmap_new();
1421 struct object_list *p;
1422
1423 for (p = tip_objects; p; p = p->next) {
1424 int pos;
1425
856e12c1 1426 if (p->item->type != type)
4f3bd560
JK
1427 continue;
1428
1429 pos = bitmap_position(bitmap_git, &p->item->oid);
1430 if (pos < 0)
1431 continue;
1432
1433 bitmap_set(result, pos);
1434 }
1435
1436 return result;
1437}
1438
856e12c1
TB
1439static void filter_bitmap_exclude_type(struct bitmap_index *bitmap_git,
1440 struct object_list *tip_objects,
1441 struct bitmap *to_filter,
1442 enum object_type type)
4f3bd560
JK
1443{
1444 struct eindex *eindex = &bitmap_git->ext_index;
1445 struct bitmap *tips;
1446 struct ewah_iterator it;
1447 eword_t mask;
1448 uint32_t i;
1449
1450 /*
1451 * The non-bitmap version of this filter never removes
856e12c1 1452 * objects which the other side specifically asked for,
4f3bd560
JK
1453 * so we must match that behavior.
1454 */
856e12c1 1455 tips = find_tip_objects(bitmap_git, tip_objects, type);
4f3bd560
JK
1456
1457 /*
ddcb189d
TB
1458 * We can use the type-level bitmap for 'type' to work in whole
1459 * words for the objects that are actually in the bitmapped
1460 * packfile.
4f3bd560 1461 */
856e12c1 1462 for (i = 0, init_type_iterator(&it, bitmap_git, type);
4f3bd560
JK
1463 i < to_filter->word_alloc && ewah_iterator_next(&mask, &it);
1464 i++) {
1465 if (i < tips->word_alloc)
1466 mask &= ~tips->words[i];
1467 to_filter->words[i] &= ~mask;
1468 }
1469
1470 /*
ddcb189d
TB
1471 * Clear any objects that weren't in the packfile (and so would
1472 * not have been caught by the loop above. We'll have to check
1473 * them individually.
4f3bd560
JK
1474 */
1475 for (i = 0; i < eindex->count; i++) {
0948c501 1476 size_t pos = st_add(i, bitmap_num_objects(bitmap_git));
856e12c1 1477 if (eindex->objects[i]->type == type &&
4f3bd560
JK
1478 bitmap_get(to_filter, pos) &&
1479 !bitmap_get(tips, pos))
1480 bitmap_unset(to_filter, pos);
1481 }
1482
1483 bitmap_free(tips);
1484}
1485
856e12c1
TB
1486static void filter_bitmap_blob_none(struct bitmap_index *bitmap_git,
1487 struct object_list *tip_objects,
1488 struct bitmap *to_filter)
1489{
1490 filter_bitmap_exclude_type(bitmap_git, tip_objects, to_filter,
1491 OBJ_BLOB);
1492}
1493
84243da1
JK
1494static unsigned long get_size_by_pos(struct bitmap_index *bitmap_git,
1495 uint32_t pos)
1496{
84243da1
JK
1497 unsigned long size;
1498 struct object_info oi = OBJECT_INFO_INIT;
1499
1500 oi.sizep = &size;
1501
ed184620 1502 if (pos < bitmap_num_objects(bitmap_git)) {
0f533c72
TB
1503 struct packed_git *pack;
1504 off_t ofs;
1505
1506 if (bitmap_is_midx(bitmap_git)) {
1507 uint32_t midx_pos = pack_pos_to_midx(bitmap_git->midx, pos);
1508 uint32_t pack_id = nth_midxed_pack_int_id(bitmap_git->midx, midx_pos);
1509
1510 pack = bitmap_git->midx->packs[pack_id];
1511 ofs = nth_midxed_offset(bitmap_git->midx, midx_pos);
1512 } else {
1513 pack = bitmap_git->pack;
1514 ofs = pack_pos_to_offset(pack, pos);
1515 }
1516
a78a9032 1517 if (packed_object_info(the_repository, pack, ofs, &oi) < 0) {
84243da1 1518 struct object_id oid;
6b4277e6
TB
1519 nth_bitmap_object_oid(bitmap_git, &oid,
1520 pack_pos_to_index(pack, pos));
84243da1
JK
1521 die(_("unable to get size of %s"), oid_to_hex(&oid));
1522 }
1523 } else {
1524 struct eindex *eindex = &bitmap_git->ext_index;
ed184620 1525 struct object *obj = eindex->objects[pos - bitmap_num_objects(bitmap_git)];
84243da1
JK
1526 if (oid_object_info_extended(the_repository, &obj->oid, &oi, 0) < 0)
1527 die(_("unable to get size of %s"), oid_to_hex(&obj->oid));
1528 }
1529
1530 return size;
1531}
1532
1533static void filter_bitmap_blob_limit(struct bitmap_index *bitmap_git,
1534 struct object_list *tip_objects,
1535 struct bitmap *to_filter,
1536 unsigned long limit)
1537{
1538 struct eindex *eindex = &bitmap_git->ext_index;
1539 struct bitmap *tips;
1540 struct ewah_iterator it;
1541 eword_t mask;
1542 uint32_t i;
1543
856e12c1 1544 tips = find_tip_objects(bitmap_git, tip_objects, OBJ_BLOB);
84243da1
JK
1545
1546 for (i = 0, init_type_iterator(&it, bitmap_git, OBJ_BLOB);
1547 i < to_filter->word_alloc && ewah_iterator_next(&mask, &it);
1548 i++) {
1549 eword_t word = to_filter->words[i] & mask;
1550 unsigned offset;
1551
1552 for (offset = 0; offset < BITS_IN_EWORD; offset++) {
1553 uint32_t pos;
1554
1555 if ((word >> offset) == 0)
1556 break;
1557 offset += ewah_bit_ctz64(word >> offset);
1558 pos = i * BITS_IN_EWORD + offset;
1559
1560 if (!bitmap_get(tips, pos) &&
1561 get_size_by_pos(bitmap_git, pos) >= limit)
1562 bitmap_unset(to_filter, pos);
1563 }
1564 }
1565
1566 for (i = 0; i < eindex->count; i++) {
0948c501 1567 size_t pos = st_add(i, bitmap_num_objects(bitmap_git));
84243da1
JK
1568 if (eindex->objects[i]->type == OBJ_BLOB &&
1569 bitmap_get(to_filter, pos) &&
1570 !bitmap_get(tips, pos) &&
1571 get_size_by_pos(bitmap_git, pos) >= limit)
1572 bitmap_unset(to_filter, pos);
1573 }
1574
1575 bitmap_free(tips);
1576}
1577
b0a8d482
TB
1578static void filter_bitmap_tree_depth(struct bitmap_index *bitmap_git,
1579 struct object_list *tip_objects,
1580 struct bitmap *to_filter,
1581 unsigned long limit)
1582{
1583 if (limit)
1584 BUG("filter_bitmap_tree_depth given non-zero limit");
1585
1586 filter_bitmap_exclude_type(bitmap_git, tip_objects, to_filter,
1587 OBJ_TREE);
1588 filter_bitmap_exclude_type(bitmap_git, tip_objects, to_filter,
1589 OBJ_BLOB);
1590}
1591
7ab6aafa
PS
1592static void filter_bitmap_object_type(struct bitmap_index *bitmap_git,
1593 struct object_list *tip_objects,
1594 struct bitmap *to_filter,
1595 enum object_type object_type)
1596{
1597 if (object_type < OBJ_COMMIT || object_type > OBJ_TAG)
1598 BUG("filter_bitmap_object_type given invalid object");
1599
1600 if (object_type != OBJ_TAG)
1601 filter_bitmap_exclude_type(bitmap_git, tip_objects, to_filter, OBJ_TAG);
1602 if (object_type != OBJ_COMMIT)
1603 filter_bitmap_exclude_type(bitmap_git, tip_objects, to_filter, OBJ_COMMIT);
1604 if (object_type != OBJ_TREE)
1605 filter_bitmap_exclude_type(bitmap_git, tip_objects, to_filter, OBJ_TREE);
1606 if (object_type != OBJ_BLOB)
1607 filter_bitmap_exclude_type(bitmap_git, tip_objects, to_filter, OBJ_BLOB);
1608}
1609
6663ae0a
JK
1610static int filter_bitmap(struct bitmap_index *bitmap_git,
1611 struct object_list *tip_objects,
1612 struct bitmap *to_filter,
1613 struct list_objects_filter_options *filter)
1614{
1615 if (!filter || filter->choice == LOFC_DISABLED)
1616 return 0;
1617
4f3bd560
JK
1618 if (filter->choice == LOFC_BLOB_NONE) {
1619 if (bitmap_git)
1620 filter_bitmap_blob_none(bitmap_git, tip_objects,
1621 to_filter);
1622 return 0;
1623 }
1624
84243da1
JK
1625 if (filter->choice == LOFC_BLOB_LIMIT) {
1626 if (bitmap_git)
1627 filter_bitmap_blob_limit(bitmap_git, tip_objects,
1628 to_filter,
1629 filter->blob_limit_value);
1630 return 0;
1631 }
1632
b0a8d482
TB
1633 if (filter->choice == LOFC_TREE_DEPTH &&
1634 filter->tree_exclude_depth == 0) {
1635 if (bitmap_git)
1636 filter_bitmap_tree_depth(bitmap_git, tip_objects,
1637 to_filter,
1638 filter->tree_exclude_depth);
1639 return 0;
1640 }
1641
7ab6aafa
PS
1642 if (filter->choice == LOFC_OBJECT_TYPE) {
1643 if (bitmap_git)
1644 filter_bitmap_object_type(bitmap_git, tip_objects,
1645 to_filter,
1646 filter->object_type);
1647 return 0;
1648 }
1649
169a15eb
PS
1650 if (filter->choice == LOFC_COMBINE) {
1651 int i;
1652 for (i = 0; i < filter->sub_nr; i++) {
1653 if (filter_bitmap(bitmap_git, tip_objects, to_filter,
1654 &filter->sub[i]) < 0)
1655 return -1;
1656 }
1657 return 0;
1658 }
1659
6663ae0a
JK
1660 /* filter choice not handled */
1661 return -1;
1662}
1663
1664static int can_filter_bitmap(struct list_objects_filter_options *filter)
1665{
1666 return !filter_bitmap(NULL, NULL, NULL, filter);
1667}
1668
7b3c8e9f
TB
1669
1670static void filter_packed_objects_from_bitmap(struct bitmap_index *bitmap_git,
1671 struct bitmap *result)
1672{
1673 struct eindex *eindex = &bitmap_git->ext_index;
1674 uint32_t objects_nr;
1675 size_t i, pos;
1676
1677 objects_nr = bitmap_num_objects(bitmap_git);
1678 pos = objects_nr / BITS_IN_EWORD;
1679
1680 if (pos > result->word_alloc)
1681 pos = result->word_alloc;
1682
1683 memset(result->words, 0x00, sizeof(eword_t) * pos);
1684 for (i = pos * BITS_IN_EWORD; i < objects_nr; i++)
1685 bitmap_unset(result, i);
1686
1687 for (i = 0; i < eindex->count; ++i) {
1688 if (has_object_pack(&eindex->objects[i]->oid))
1689 bitmap_unset(result, objects_nr + i);
1690 }
1691}
1692
6663ae0a 1693struct bitmap_index *prepare_bitmap_walk(struct rev_info *revs,
9cf68b27 1694 int filter_provided_objects)
fff42755
VM
1695{
1696 unsigned int i;
b0afdce5 1697 int use_boundary_traversal;
fff42755
VM
1698
1699 struct object_list *wants = NULL;
1700 struct object_list *haves = NULL;
1701
1702 struct bitmap *wants_bitmap = NULL;
1703 struct bitmap *haves_bitmap = NULL;
1704
d90fe06e
JK
1705 struct bitmap_index *bitmap_git;
1706
1707 /*
1708 * We can't do pathspec limiting with bitmaps, because we don't know
1709 * which commits are associated with which object changes (let alone
1710 * even which objects are associated with which paths).
1711 */
1712 if (revs->prune)
1713 return NULL;
1714
09d4a79e 1715 if (!can_filter_bitmap(&revs->filter))
6663ae0a
JK
1716 return NULL;
1717
3ae5fa07
JT
1718 /* try to open a bitmapped pack, but don't parse it yet
1719 * because we may not need to use it */
ca56dadb 1720 CALLOC_ARRAY(bitmap_git, 1);
0f533c72 1721 if (open_bitmap(revs->repo, bitmap_git) < 0)
f3c23db2 1722 goto cleanup;
fff42755 1723
4d01a7fa
1724 for (i = 0; i < revs->pending.nr; ++i) {
1725 struct object *object = revs->pending.objects[i].item;
fff42755
VM
1726
1727 if (object->type == OBJ_NONE)
c251c83d 1728 parse_object_or_die(&object->oid, NULL);
fff42755
VM
1729
1730 while (object->type == OBJ_TAG) {
1731 struct tag *tag = (struct tag *) object;
1732
1733 if (object->flags & UNINTERESTING)
1734 object_list_insert(object, &haves);
1735 else
1736 object_list_insert(object, &wants);
1737
dad3f060 1738 object = parse_object_or_die(get_tagged_oid(tag), NULL);
540cdc11 1739 object->flags |= (tag->object.flags & UNINTERESTING);
fff42755
VM
1740 }
1741
1742 if (object->flags & UNINTERESTING)
1743 object_list_insert(object, &haves);
1744 else
1745 object_list_insert(object, &wants);
1746 }
1747
b0afdce5
TB
1748 use_boundary_traversal = git_env_bool(GIT_TEST_PACK_USE_BITMAP_BOUNDARY_TRAVERSAL, -1);
1749 if (use_boundary_traversal < 0) {
1750 prepare_repo_settings(revs->repo);
1751 use_boundary_traversal = revs->repo->settings.pack_use_bitmap_boundary_traversal;
1752 }
1753
1754 if (!use_boundary_traversal) {
1755 /*
1756 * if we have a HAVES list, but none of those haves is contained
1757 * in the packfile that has a bitmap, we don't have anything to
1758 * optimize here
1759 */
1760 if (haves && !in_bitmapped_pack(bitmap_git, haves))
1761 goto cleanup;
1762 }
fff42755
VM
1763
1764 /* if we don't want anything, we're done here */
1765 if (!wants)
f3c23db2 1766 goto cleanup;
fff42755
VM
1767
1768 /*
1769 * now we're going to use bitmaps, so load the actual bitmap entries
1770 * from disk. this is the point of no return; after this the rev_list
1771 * becomes invalidated and we must perform the revwalk through bitmaps
1772 */
65308ad8 1773 if (load_bitmap(revs->repo, bitmap_git) < 0)
f3c23db2 1774 goto cleanup;
fff42755 1775
b0afdce5
TB
1776 if (!use_boundary_traversal)
1777 object_array_clear(&revs->pending);
fff42755
VM
1778
1779 if (haves) {
b0afdce5
TB
1780 if (use_boundary_traversal) {
1781 trace2_region_enter("pack-bitmap", "haves/boundary", the_repository);
1782 haves_bitmap = find_boundary_objects(bitmap_git, revs, haves);
1783 trace2_region_leave("pack-bitmap", "haves/boundary", the_repository);
1784 } else {
1785 trace2_region_enter("pack-bitmap", "haves/classic", the_repository);
1786 revs->ignore_missing_links = 1;
1787 haves_bitmap = find_objects(bitmap_git, revs, haves, NULL);
1788 reset_revision_walk();
1789 revs->ignore_missing_links = 0;
1790 trace2_region_leave("pack-bitmap", "haves/classic", the_repository);
1791 }
fff42755 1792
afe8a907 1793 if (!haves_bitmap)
033abf97 1794 BUG("failed to perform bitmap walk");
fff42755
VM
1795 }
1796
b0afdce5
TB
1797 if (use_boundary_traversal) {
1798 object_array_clear(&revs->pending);
1799 reset_revision_walk();
1800 }
1801
09d4a79e 1802 wants_bitmap = find_objects(bitmap_git, revs, wants, haves_bitmap);
fff42755
VM
1803
1804 if (!wants_bitmap)
033abf97 1805 BUG("failed to perform bitmap walk");
fff42755
VM
1806
1807 if (haves_bitmap)
1808 bitmap_and_not(wants_bitmap, haves_bitmap);
1809
09d4a79e
DS
1810 filter_bitmap(bitmap_git,
1811 (revs->filter.choice && filter_provided_objects) ? NULL : wants,
1812 wants_bitmap,
1813 &revs->filter);
6663ae0a 1814
7b3c8e9f
TB
1815 if (revs->unpacked)
1816 filter_packed_objects_from_bitmap(bitmap_git, wants_bitmap);
1817
3ae5fa07 1818 bitmap_git->result = wants_bitmap;
30cdc33f 1819 bitmap_git->haves = haves_bitmap;
fff42755 1820
acac50dd
JK
1821 object_list_free(&wants);
1822 object_list_free(&haves);
1823
3ae5fa07 1824 return bitmap_git;
f3c23db2
JT
1825
1826cleanup:
1827 free_bitmap_index(bitmap_git);
acac50dd
JK
1828 object_list_free(&wants);
1829 object_list_free(&haves);
f3c23db2 1830 return NULL;
fff42755
VM
1831}
1832
a5f9f24a
TB
1833/*
1834 * -1 means "stop trying further objects"; 0 means we may or may not have
1835 * reused, but you can keep feeding bits.
1836 */
73cd7d94 1837static int try_partial_reuse(struct packed_git *pack,
a5f9f24a
TB
1838 size_t pos,
1839 struct bitmap *reuse,
1840 struct pack_window **w_curs)
fff42755 1841{
0f533c72 1842 off_t offset, delta_obj_offset;
bb514de3
JK
1843 enum object_type type;
1844 unsigned long size;
1845
0f533c72
TB
1846 /*
1847 * try_partial_reuse() is called either on (a) objects in the
1848 * bitmapped pack (in the case of a single-pack bitmap) or (b)
1849 * objects in the preferred pack of a multi-pack bitmap.
1850 * Importantly, the latter can pretend as if only a single pack
1851 * exists because:
1852 *
1853 * - The first pack->num_objects bits of a MIDX bitmap are
1854 * reserved for the preferred pack, and
1855 *
1856 * - Ties due to duplicate objects are always resolved in
1857 * favor of the preferred pack.
1858 *
1859 * Therefore we do not need to ever ask the MIDX for its copy of
1860 * an object by OID, since it will always select it from the
1861 * preferred pack. Likewise, the selected copy of the base
1862 * object for any deltas will reside in the same pack.
1863 *
1864 * This means that we can reuse pos when looking up the bit in
1865 * the reuse bitmap, too, since bits corresponding to the
1866 * preferred pack precede all bits from other packs.
1867 */
1868
1869 if (pos >= pack->num_objects)
1870 return -1; /* not actually in the pack or MIDX preferred pack */
bb514de3 1871
0f533c72
TB
1872 offset = delta_obj_offset = pack_pos_to_offset(pack, pos);
1873 type = unpack_object_header(pack, w_curs, &offset, &size);
bb514de3 1874 if (type < 0)
a5f9f24a 1875 return -1; /* broken packfile, punt */
bb514de3
JK
1876
1877 if (type == OBJ_REF_DELTA || type == OBJ_OFS_DELTA) {
1878 off_t base_offset;
011f3fd5 1879 uint32_t base_pos;
bb514de3
JK
1880
1881 /*
1882 * Find the position of the base object so we can look it up
1883 * in our bitmaps. If we can't come up with an offset, or if
1884 * that offset is not in the revidx, the pack is corrupt.
1885 * There's nothing we can do, so just punt on this object,
1886 * and the normal slow path will complain about it in
1887 * more detail.
1888 */
0f533c72
TB
1889 base_offset = get_delta_base(pack, w_curs, &offset, type,
1890 delta_obj_offset);
bb514de3 1891 if (!base_offset)
a5f9f24a 1892 return 0;
0f533c72 1893 if (offset_to_pack_pos(pack, base_offset, &base_pos) < 0)
a5f9f24a 1894 return 0;
bb514de3
JK
1895
1896 /*
1897 * We assume delta dependencies always point backwards. This
1898 * lets us do a single pass, and is basically always true
1899 * due to the way OFS_DELTAs work. You would not typically
1900 * find REF_DELTA in a bitmapped pack, since we only bitmap
1901 * packs we write fresh, and OFS_DELTA is the default). But
1902 * let's double check to make sure the pack wasn't written with
1903 * odd parameters.
1904 */
1905 if (base_pos >= pos)
a5f9f24a 1906 return 0;
bb514de3
JK
1907
1908 /*
1909 * And finally, if we're not sending the base as part of our
1910 * reuse chunk, then don't send this object either. The base
1911 * would come after us, along with other objects not
1912 * necessarily in the pack, which means we'd need to convert
1913 * to REF_DELTA on the fly. Better to just let the normal
1914 * object_entry code path handle it.
1915 */
1916 if (!bitmap_get(reuse, base_pos))
a5f9f24a 1917 return 0;
bb514de3
JK
1918 }
1919
fff42755 1920 /*
bb514de3 1921 * If we got here, then the object is OK to reuse. Mark it.
fff42755 1922 */
bb514de3 1923 bitmap_set(reuse, pos);
a5f9f24a 1924 return 0;
bb514de3 1925}
fff42755 1926
6d08b9d4 1927uint32_t midx_preferred_pack(struct bitmap_index *bitmap_git)
0f533c72
TB
1928{
1929 struct multi_pack_index *m = bitmap_git->midx;
1930 if (!m)
1931 BUG("midx_preferred_pack: requires non-empty MIDX");
1932 return nth_midxed_pack_int_id(m, pack_pos_to_midx(bitmap_git->midx, 0));
1933}
1934
bb514de3
JK
1935int reuse_partial_packfile_from_bitmap(struct bitmap_index *bitmap_git,
1936 struct packed_git **packfile_out,
1937 uint32_t *entries,
1938 struct bitmap **reuse_out)
1939{
65308ad8 1940 struct repository *r = the_repository;
0f533c72 1941 struct packed_git *pack;
3ae5fa07 1942 struct bitmap *result = bitmap_git->result;
bb514de3
JK
1943 struct bitmap *reuse;
1944 struct pack_window *w_curs = NULL;
1945 size_t i = 0;
1946 uint32_t offset;
0f533c72 1947 uint32_t objects_nr;
fff42755
VM
1948
1949 assert(result);
1950
65308ad8 1951 load_reverse_index(r, bitmap_git);
0f533c72
TB
1952
1953 if (bitmap_is_midx(bitmap_git))
1954 pack = bitmap_git->midx->packs[midx_preferred_pack(bitmap_git)];
1955 else
1956 pack = bitmap_git->pack;
1957 objects_nr = pack->num_objects;
1958
bb514de3
JK
1959 while (i < result->word_alloc && result->words[i] == (eword_t)~0)
1960 i++;
fff42755 1961
0f533c72
TB
1962 /*
1963 * Don't mark objects not in the packfile or preferred pack. This bitmap
1964 * marks objects eligible for reuse, but the pack-reuse code only
1965 * understands how to reuse a single pack. Since the preferred pack is
1966 * guaranteed to have all bases for its deltas (in a multi-pack bitmap),
1967 * we use it instead of another pack. In single-pack bitmaps, the choice
1968 * is made for us.
1969 */
ed184620
TB
1970 if (i > objects_nr / BITS_IN_EWORD)
1971 i = objects_nr / BITS_IN_EWORD;
fff42755 1972
bb514de3
JK
1973 reuse = bitmap_word_alloc(i);
1974 memset(reuse->words, 0xFF, i * sizeof(eword_t));
fff42755 1975
bb514de3
JK
1976 for (; i < result->word_alloc; ++i) {
1977 eword_t word = result->words[i];
1978 size_t pos = (i * BITS_IN_EWORD);
fff42755 1979
bb514de3
JK
1980 for (offset = 0; offset < BITS_IN_EWORD; ++offset) {
1981 if ((word >> offset) == 0)
1982 break;
fff42755 1983
bb514de3 1984 offset += ewah_bit_ctz64(word >> offset);
73cd7d94 1985 if (try_partial_reuse(pack, pos + offset,
0f533c72 1986 reuse, &w_curs) < 0) {
a5f9f24a
TB
1987 /*
1988 * try_partial_reuse indicated we couldn't reuse
1989 * any bits, so there is no point in trying more
1990 * bits in the current word, or any other words
1991 * in result.
1992 *
1993 * Jump out of both loops to avoid future
1994 * unnecessary calls to try_partial_reuse.
1995 */
1996 goto done;
1997 }
bb514de3 1998 }
fff42755 1999 }
fff42755 2000
a5f9f24a 2001done:
bb514de3 2002 unuse_pack(&w_curs);
fff42755 2003
bb514de3
JK
2004 *entries = bitmap_popcount(reuse);
2005 if (!*entries) {
2006 bitmap_free(reuse);
fff42755 2007 return -1;
fff42755
VM
2008 }
2009
bb514de3
JK
2010 /*
2011 * Drop any reused objects from the result, since they will not
2012 * need to be handled separately.
2013 */
2014 bitmap_and_not(result, reuse);
0f533c72 2015 *packfile_out = pack;
bb514de3 2016 *reuse_out = reuse;
fff42755
VM
2017 return 0;
2018}
fff42755 2019
40d18ff8
JK
2020int bitmap_walk_contains(struct bitmap_index *bitmap_git,
2021 struct bitmap *bitmap, const struct object_id *oid)
2022{
2023 int idx;
fff42755 2024
40d18ff8
JK
2025 if (!bitmap)
2026 return 0;
fff42755 2027
40d18ff8
JK
2028 idx = bitmap_position(bitmap_git, oid);
2029 return idx >= 0 && bitmap_get(bitmap, idx);
fff42755
VM
2030}
2031
3ae5fa07 2032void traverse_bitmap_commit_list(struct bitmap_index *bitmap_git,
4eb707eb 2033 struct rev_info *revs,
3ae5fa07 2034 show_reachable_fn show_reachable)
fff42755 2035{
3ae5fa07 2036 assert(bitmap_git->result);
fff42755 2037
551cf8b6 2038 show_objects_for_type(bitmap_git, OBJ_COMMIT, show_reachable);
4eb707eb
JK
2039 if (revs->tree_objects)
2040 show_objects_for_type(bitmap_git, OBJ_TREE, show_reachable);
2041 if (revs->blob_objects)
2042 show_objects_for_type(bitmap_git, OBJ_BLOB, show_reachable);
2043 if (revs->tag_objects)
2044 show_objects_for_type(bitmap_git, OBJ_TAG, show_reachable);
fff42755 2045
4eb707eb 2046 show_extended_objects(bitmap_git, revs, show_reachable);
fff42755
VM
2047}
2048
3ae5fa07 2049static uint32_t count_object_type(struct bitmap_index *bitmap_git,
fff42755
VM
2050 enum object_type type)
2051{
3ae5fa07
JT
2052 struct bitmap *objects = bitmap_git->result;
2053 struct eindex *eindex = &bitmap_git->ext_index;
fff42755
VM
2054
2055 uint32_t i = 0, count = 0;
2056 struct ewah_iterator it;
2057 eword_t filter;
2058
551cf8b6 2059 init_type_iterator(&it, bitmap_git, type);
fff42755
VM
2060
2061 while (i < objects->word_alloc && ewah_iterator_next(&filter, &it)) {
2062 eword_t word = objects->words[i++] & filter;
2063 count += ewah_bit_popcount64(word);
2064 }
2065
2066 for (i = 0; i < eindex->count; ++i) {
2067 if (eindex->objects[i]->type == type &&
0948c501
TB
2068 bitmap_get(objects,
2069 st_add(bitmap_num_objects(bitmap_git), i)))
fff42755
VM
2070 count++;
2071 }
2072
2073 return count;
2074}
2075
3ae5fa07
JT
2076void count_bitmap_commit_list(struct bitmap_index *bitmap_git,
2077 uint32_t *commits, uint32_t *trees,
fff42755
VM
2078 uint32_t *blobs, uint32_t *tags)
2079{
3ae5fa07 2080 assert(bitmap_git->result);
fff42755
VM
2081
2082 if (commits)
3ae5fa07 2083 *commits = count_object_type(bitmap_git, OBJ_COMMIT);
fff42755
VM
2084
2085 if (trees)
3ae5fa07 2086 *trees = count_object_type(bitmap_git, OBJ_TREE);
fff42755
VM
2087
2088 if (blobs)
3ae5fa07 2089 *blobs = count_object_type(bitmap_git, OBJ_BLOB);
fff42755
VM
2090
2091 if (tags)
3ae5fa07 2092 *tags = count_object_type(bitmap_git, OBJ_TAG);
fff42755
VM
2093}
2094
2095struct bitmap_test_data {
3ae5fa07 2096 struct bitmap_index *bitmap_git;
fff42755 2097 struct bitmap *base;
fa95666a
TB
2098 struct bitmap *commits;
2099 struct bitmap *trees;
2100 struct bitmap *blobs;
2101 struct bitmap *tags;
fff42755
VM
2102 struct progress *prg;
2103 size_t seen;
2104};
2105
fa95666a
TB
2106static void test_bitmap_type(struct bitmap_test_data *tdata,
2107 struct object *obj, int pos)
2108{
2109 enum object_type bitmap_type = OBJ_NONE;
2110 int bitmaps_nr = 0;
2111
2112 if (bitmap_get(tdata->commits, pos)) {
2113 bitmap_type = OBJ_COMMIT;
2114 bitmaps_nr++;
2115 }
2116 if (bitmap_get(tdata->trees, pos)) {
2117 bitmap_type = OBJ_TREE;
2118 bitmaps_nr++;
2119 }
2120 if (bitmap_get(tdata->blobs, pos)) {
2121 bitmap_type = OBJ_BLOB;
2122 bitmaps_nr++;
2123 }
2124 if (bitmap_get(tdata->tags, pos)) {
2125 bitmap_type = OBJ_TAG;
2126 bitmaps_nr++;
2127 }
2128
2129 if (bitmap_type == OBJ_NONE)
9975975d 2130 die(_("object '%s' not found in type bitmaps"),
fa95666a
TB
2131 oid_to_hex(&obj->oid));
2132
2133 if (bitmaps_nr > 1)
9975975d 2134 die(_("object '%s' does not have a unique type"),
fa95666a
TB
2135 oid_to_hex(&obj->oid));
2136
2137 if (bitmap_type != obj->type)
9975975d 2138 die(_("object '%s': real type '%s', expected: '%s'"),
fa95666a
TB
2139 oid_to_hex(&obj->oid),
2140 type_name(obj->type),
2141 type_name(bitmap_type));
2142}
2143
c50dca2a
JK
2144static void test_show_object(struct object *object,
2145 const char *name UNUSED,
de1e67d0 2146 void *data)
fff42755
VM
2147{
2148 struct bitmap_test_data *tdata = data;
2149 int bitmap_pos;
2150
3c771448 2151 bitmap_pos = bitmap_position(tdata->bitmap_git, &object->oid);
fff42755 2152 if (bitmap_pos < 0)
9975975d 2153 die(_("object not in bitmap: '%s'"), oid_to_hex(&object->oid));
fa95666a 2154 test_bitmap_type(tdata, object, bitmap_pos);
fff42755
VM
2155
2156 bitmap_set(tdata->base, bitmap_pos);
2157 display_progress(tdata->prg, ++tdata->seen);
2158}
2159
2160static void test_show_commit(struct commit *commit, void *data)
2161{
2162 struct bitmap_test_data *tdata = data;
2163 int bitmap_pos;
2164
3ae5fa07 2165 bitmap_pos = bitmap_position(tdata->bitmap_git,
3c771448 2166 &commit->object.oid);
fff42755 2167 if (bitmap_pos < 0)
9975975d 2168 die(_("object not in bitmap: '%s'"), oid_to_hex(&commit->object.oid));
fa95666a 2169 test_bitmap_type(tdata, &commit->object, bitmap_pos);
fff42755
VM
2170
2171 bitmap_set(tdata->base, bitmap_pos);
2172 display_progress(tdata->prg, ++tdata->seen);
2173}
2174
2175void test_bitmap_walk(struct rev_info *revs)
2176{
2177 struct object *root;
2178 struct bitmap *result = NULL;
fff42755
VM
2179 size_t result_popcnt;
2180 struct bitmap_test_data tdata;
3ae5fa07 2181 struct bitmap_index *bitmap_git;
98c31f36 2182 struct ewah_bitmap *bm;
fff42755 2183
7c141127 2184 if (!(bitmap_git = prepare_bitmap_git(revs->repo)))
9975975d 2185 die(_("failed to load bitmap indexes"));
fff42755
VM
2186
2187 if (revs->pending.nr != 1)
9975975d 2188 die(_("you must specify exactly one commit to test"));
fff42755 2189
28cd7306
AC
2190 fprintf_ln(stderr, "Bitmap v%d test (%d entries%s)",
2191 bitmap_git->version,
2192 bitmap_git->entry_count,
2193 bitmap_git->table_lookup ? "" : " loaded");
fff42755
VM
2194
2195 root = revs->pending.objects[0].item;
98c31f36 2196 bm = bitmap_for_commit(bitmap_git, (struct commit *)root);
fff42755 2197
98c31f36 2198 if (bm) {
baf20c39 2199 fprintf_ln(stderr, "Found bitmap for '%s'. %d bits / %08x checksum",
f2fd0760 2200 oid_to_hex(&root->oid), (int)bm->bit_size, ewah_checksum(bm));
fff42755
VM
2201
2202 result = ewah_to_bitmap(bm);
2203 }
2204
afe8a907 2205 if (!result)
9975975d 2206 die(_("commit '%s' doesn't have an indexed bitmap"), oid_to_hex(&root->oid));
fff42755
VM
2207
2208 revs->tag_objects = 1;
2209 revs->tree_objects = 1;
2210 revs->blob_objects = 1;
2211
2212 result_popcnt = bitmap_popcount(result);
2213
2214 if (prepare_revision_walk(revs))
9975975d 2215 die(_("revision walk setup failed"));
fff42755 2216
3ae5fa07 2217 tdata.bitmap_git = bitmap_git;
fff42755 2218 tdata.base = bitmap_new();
fa95666a
TB
2219 tdata.commits = ewah_to_bitmap(bitmap_git->commits);
2220 tdata.trees = ewah_to_bitmap(bitmap_git->trees);
2221 tdata.blobs = ewah_to_bitmap(bitmap_git->blobs);
2222 tdata.tags = ewah_to_bitmap(bitmap_git->tags);
fff42755
VM
2223 tdata.prg = start_progress("Verifying bitmap entries", result_popcnt);
2224 tdata.seen = 0;
2225
2226 traverse_commit_list(revs, &test_show_commit, &test_show_object, &tdata);
2227
2228 stop_progress(&tdata.prg);
2229
2230 if (bitmap_equals(result, tdata.base))
baf20c39 2231 fprintf_ln(stderr, "OK!");
fff42755 2232 else
9975975d 2233 die(_("mismatch in bitmap results"));
f86a3747 2234
02281511
TB
2235 bitmap_free(result);
2236 bitmap_free(tdata.base);
2237 bitmap_free(tdata.commits);
2238 bitmap_free(tdata.trees);
2239 bitmap_free(tdata.blobs);
2240 bitmap_free(tdata.tags);
f3c23db2 2241 free_bitmap_index(bitmap_git);
fff42755 2242}
7cc8f971 2243
dff5e49e
TB
2244int test_bitmap_commits(struct repository *r)
2245{
dff5e49e
TB
2246 struct object_id oid;
2247 MAYBE_UNUSED void *value;
28cd7306 2248 struct bitmap_index *bitmap_git = prepare_bitmap_git(r);
dff5e49e
TB
2249
2250 if (!bitmap_git)
9975975d 2251 die(_("failed to load bitmap indexes"));
dff5e49e 2252
28cd7306
AC
2253 /*
2254 * As this function is only used to print bitmap selected
2255 * commits, we don't have to read the commit table.
2256 */
2257 if (bitmap_git->table_lookup) {
2258 if (load_bitmap_entries_v1(bitmap_git) < 0)
2259 die(_("failed to load bitmap indexes"));
2260 }
2261
dff5e49e 2262 kh_foreach(bitmap_git->bitmaps, oid, value, {
baf20c39 2263 printf_ln("%s", oid_to_hex(&oid));
dff5e49e
TB
2264 });
2265
2266 free_bitmap_index(bitmap_git);
2267
2268 return 0;
2269}
2270
a05f02b1
TB
2271int test_bitmap_hashes(struct repository *r)
2272{
2273 struct bitmap_index *bitmap_git = prepare_bitmap_git(r);
2274 struct object_id oid;
2275 uint32_t i, index_pos;
2276
875da7f0 2277 if (!bitmap_git || !bitmap_git->hashes)
a05f02b1
TB
2278 goto cleanup;
2279
2280 for (i = 0; i < bitmap_num_objects(bitmap_git); i++) {
2281 if (bitmap_is_midx(bitmap_git))
2282 index_pos = pack_pos_to_midx(bitmap_git->midx, i);
2283 else
2284 index_pos = pack_pos_to_index(bitmap_git->pack, i);
2285
2286 nth_bitmap_object_oid(bitmap_git, &oid, index_pos);
2287
baf20c39 2288 printf_ln("%s %"PRIu32"",
a05f02b1
TB
2289 oid_to_hex(&oid), get_be32(bitmap_git->hashes + index_pos));
2290 }
2291
2292cleanup:
2293 free_bitmap_index(bitmap_git);
2294
2295 return 0;
2296}
2297
449fa5ee
JK
2298int rebuild_bitmap(const uint32_t *reposition,
2299 struct ewah_bitmap *source,
2300 struct bitmap *dest)
7cc8f971
VM
2301{
2302 uint32_t pos = 0;
2303 struct ewah_iterator it;
2304 eword_t word;
2305
2306 ewah_iterator_init(&it, source);
2307
2308 while (ewah_iterator_next(&word, &it)) {
2309 uint32_t offset, bit_pos;
2310
34b935c0 2311 for (offset = 0; offset < BITS_IN_EWORD; ++offset) {
7cc8f971
VM
2312 if ((word >> offset) == 0)
2313 break;
2314
2315 offset += ewah_bit_ctz64(word >> offset);
2316
2317 bit_pos = reposition[pos + offset];
2318 if (bit_pos > 0)
2319 bitmap_set(dest, bit_pos - 1);
2320 else /* can't reuse, we don't have the object */
2321 return -1;
2322 }
2323
34b935c0 2324 pos += BITS_IN_EWORD;
7cc8f971
VM
2325 }
2326 return 0;
2327}
2328
449fa5ee
JK
2329uint32_t *create_bitmap_mapping(struct bitmap_index *bitmap_git,
2330 struct packing_data *mapping)
7cc8f971 2331{
65308ad8 2332 struct repository *r = the_repository;
7cc8f971
VM
2333 uint32_t i, num_objects;
2334 uint32_t *reposition;
7cc8f971 2335
0f533c72 2336 if (!bitmap_is_midx(bitmap_git))
65308ad8 2337 load_reverse_index(r, bitmap_git);
5a6072f6 2338 else if (load_midx_revindex(bitmap_git->midx))
0f533c72
TB
2339 BUG("rebuild_existing_bitmaps: missing required rev-cache "
2340 "extension");
2341
ed184620 2342 num_objects = bitmap_num_objects(bitmap_git);
ca56dadb 2343 CALLOC_ARRAY(reposition, num_objects);
7cc8f971
VM
2344
2345 for (i = 0; i < num_objects; ++i) {
3df28cae 2346 struct object_id oid;
7cc8f971 2347 struct object_entry *oe;
8de300e1 2348 uint32_t index_pos;
7cc8f971 2349
0f533c72 2350 if (bitmap_is_midx(bitmap_git))
8de300e1 2351 index_pos = pack_pos_to_midx(bitmap_git->midx, i);
0f533c72 2352 else
8de300e1
TB
2353 index_pos = pack_pos_to_index(bitmap_git->pack, i);
2354 nth_bitmap_object_oid(bitmap_git, &oid, index_pos);
3a37876b 2355 oe = packlist_find(mapping, &oid);
7cc8f971 2356
8de300e1 2357 if (oe) {
06af3bba 2358 reposition[i] = oe_in_pack_pos(mapping, oe) + 1;
8de300e1
TB
2359 if (bitmap_git->hashes && !oe->hash)
2360 oe->hash = get_be32(bitmap_git->hashes + index_pos);
2361 }
7cc8f971
VM
2362 }
2363
449fa5ee 2364 return reposition;
7cc8f971 2365}
f3c23db2
JT
2366
2367void free_bitmap_index(struct bitmap_index *b)
2368{
2369 if (!b)
2370 return;
2371
2372 if (b->map)
2373 munmap(b->map, b->map_size);
2374 ewah_pool_free(b->commits);
2375 ewah_pool_free(b->trees);
2376 ewah_pool_free(b->blobs);
2377 ewah_pool_free(b->tags);
655b8561
TB
2378 if (b->bitmaps) {
2379 struct stored_bitmap *sb;
2380 kh_foreach_value(b->bitmaps, sb, {
2381 ewah_pool_free(sb->root);
2382 free(sb);
2383 });
2384 }
3c771448 2385 kh_destroy_oid_map(b->bitmaps);
f3c23db2
JT
2386 free(b->ext_index.objects);
2387 free(b->ext_index.hashes);
655b8561 2388 kh_destroy_oid_pos(b->ext_index.positions);
f3c23db2 2389 bitmap_free(b->result);
30cdc33f 2390 bitmap_free(b->haves);
0f533c72
TB
2391 if (bitmap_is_midx(b)) {
2392 /*
2393 * Multi-pack bitmaps need to have resources associated with
2394 * their on-disk reverse indexes unmapped so that stale .rev and
2395 * .bitmap files can be removed.
2396 *
2397 * Unlike pack-based bitmaps, multi-pack bitmaps can be read and
2398 * written in the same 'git multi-pack-index write --bitmap'
2399 * process. Close resources so they can be removed safely on
2400 * platforms like Windows.
2401 */
2402 close_midx_revindex(b->midx);
2403 }
f3c23db2
JT
2404 free(b);
2405}
30cdc33f 2406
3c771448 2407int bitmap_has_oid_in_uninteresting(struct bitmap_index *bitmap_git,
2408 const struct object_id *oid)
30cdc33f 2409{
8ebf5296
JK
2410 return bitmap_git &&
2411 bitmap_walk_contains(bitmap_git, bitmap_git->haves, oid);
30cdc33f 2412}
16950f83
JK
2413
2414static off_t get_disk_usage_for_type(struct bitmap_index *bitmap_git,
2415 enum object_type object_type)
2416{
2417 struct bitmap *result = bitmap_git->result;
16950f83
JK
2418 off_t total = 0;
2419 struct ewah_iterator it;
2420 eword_t filter;
2421 size_t i;
2422
2423 init_type_iterator(&it, bitmap_git, object_type);
2424 for (i = 0; i < result->word_alloc &&
2425 ewah_iterator_next(&filter, &it); i++) {
2426 eword_t word = result->words[i] & filter;
2427 size_t base = (i * BITS_IN_EWORD);
2428 unsigned offset;
2429
2430 if (!word)
2431 continue;
2432
2433 for (offset = 0; offset < BITS_IN_EWORD; offset++) {
16950f83
JK
2434 if ((word >> offset) == 0)
2435 break;
2436
2437 offset += ewah_bit_ctz64(word >> offset);
0f533c72
TB
2438
2439 if (bitmap_is_midx(bitmap_git)) {
2440 uint32_t pack_pos;
2441 uint32_t midx_pos = pack_pos_to_midx(bitmap_git->midx, base + offset);
2442 off_t offset = nth_midxed_offset(bitmap_git->midx, midx_pos);
2443
2444 uint32_t pack_id = nth_midxed_pack_int_id(bitmap_git->midx, midx_pos);
2445 struct packed_git *pack = bitmap_git->midx->packs[pack_id];
2446
2447 if (offset_to_pack_pos(pack, offset, &pack_pos) < 0) {
2448 struct object_id oid;
2449 nth_midxed_object_oid(&oid, bitmap_git->midx, midx_pos);
2450
baf20c39 2451 die(_("could not find '%s' in pack '%s' at offset %"PRIuMAX),
0f533c72
TB
2452 oid_to_hex(&oid),
2453 pack->pack_name,
2454 (uintmax_t)offset);
2455 }
2456
2457 total += pack_pos_to_offset(pack, pack_pos + 1) - offset;
2458 } else {
2459 size_t pos = base + offset;
2460 total += pack_pos_to_offset(bitmap_git->pack, pos + 1) -
2461 pack_pos_to_offset(bitmap_git->pack, pos);
2462 }
16950f83
JK
2463 }
2464 }
2465
2466 return total;
2467}
2468
2469static off_t get_disk_usage_for_extended(struct bitmap_index *bitmap_git)
2470{
2471 struct bitmap *result = bitmap_git->result;
16950f83
JK
2472 struct eindex *eindex = &bitmap_git->ext_index;
2473 off_t total = 0;
2474 struct object_info oi = OBJECT_INFO_INIT;
2475 off_t object_size;
2476 size_t i;
2477
2478 oi.disk_sizep = &object_size;
2479
2480 for (i = 0; i < eindex->count; i++) {
2481 struct object *obj = eindex->objects[i];
2482
0948c501
TB
2483 if (!bitmap_get(result,
2484 st_add(bitmap_num_objects(bitmap_git), i)))
16950f83
JK
2485 continue;
2486
2487 if (oid_object_info_extended(the_repository, &obj->oid, &oi, 0) < 0)
baf20c39 2488 die(_("unable to get disk usage of '%s'"),
16950f83
JK
2489 oid_to_hex(&obj->oid));
2490
2491 total += object_size;
2492 }
2493 return total;
2494}
2495
2496off_t get_disk_usage_from_bitmap(struct bitmap_index *bitmap_git,
2497 struct rev_info *revs)
2498{
2499 off_t total = 0;
2500
2501 total += get_disk_usage_for_type(bitmap_git, OBJ_COMMIT);
2502 if (revs->tree_objects)
2503 total += get_disk_usage_for_type(bitmap_git, OBJ_TREE);
2504 if (revs->blob_objects)
2505 total += get_disk_usage_for_type(bitmap_git, OBJ_BLOB);
2506 if (revs->tag_objects)
2507 total += get_disk_usage_for_type(bitmap_git, OBJ_TAG);
2508
2509 total += get_disk_usage_for_extended(bitmap_git);
2510
2511 return total;
2512}
3f267a11 2513
0f533c72
TB
2514int bitmap_is_midx(struct bitmap_index *bitmap_git)
2515{
2516 return !!bitmap_git->midx;
2517}
2518
3f267a11
TB
2519const struct string_list *bitmap_preferred_tips(struct repository *r)
2520{
a4286193
ÆAB
2521 const struct string_list *dest;
2522
9e2d884d 2523 if (!repo_config_get_string_multi(r, "pack.preferbitmaptips", &dest))
a4286193
ÆAB
2524 return dest;
2525 return NULL;
3f267a11 2526}
711260fd
TB
2527
2528int bitmap_is_preferred_refname(struct repository *r, const char *refname)
2529{
2530 const struct string_list *preferred_tips = bitmap_preferred_tips(r);
2531 struct string_list_item *item;
2532
2533 if (!preferred_tips)
2534 return 0;
2535
2536 for_each_string_list_item(item, preferred_tips) {
2537 if (starts_with(refname, item->string))
2538 return 1;
2539 }
2540
2541 return 0;
2542}
756f1bcd
DS
2543
2544static int verify_bitmap_file(const char *name)
2545{
2546 struct stat st;
2547 unsigned char *data;
2548 int fd = git_open(name);
2549 int res = 0;
2550
2551 /* It is OK to not have the file. */
2552 if (fd < 0 || fstat(fd, &st)) {
2553 if (fd >= 0)
2554 close(fd);
2555 return 0;
2556 }
2557
2558 data = xmmap(NULL, st.st_size, PROT_READ, MAP_PRIVATE, fd, 0);
2559 close(fd);
2560 if (!hashfile_checksum_valid(data, st.st_size))
2561 res = error(_("bitmap file '%s' has invalid checksum"),
2562 name);
2563
2564 munmap(data, st.st_size);
2565 return res;
2566}
2567
2568int verify_bitmap_files(struct repository *r)
2569{
2570 int res = 0;
2571
2572 for (struct multi_pack_index *m = get_multi_pack_index(r);
2573 m; m = m->next) {
2574 char *midx_bitmap_name = midx_bitmap_filename(m);
2575 res |= verify_bitmap_file(midx_bitmap_name);
2576 free(midx_bitmap_name);
2577 }
2578
2579 for (struct packed_git *p = get_all_packs(r);
2580 p; p = p->next) {
2581 char *pack_bitmap_name = pack_bitmap_filename(p);
2582 res |= verify_bitmap_file(pack_bitmap_name);
2583 free(pack_bitmap_name);
2584 }
2585
2586 return res;
2587}