debian: new upstream release
[git/debian.git] / pack-bitmap.c
blob0260890341b5a36af3ee1ec248282e2f1f1ebc53
1 #include "git-compat-util.h"
2 #include "commit.h"
3 #include "gettext.h"
4 #include "hex.h"
5 #include "strbuf.h"
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"
15 #include "packfile.h"
16 #include "repository.h"
17 #include "trace2.h"
18 #include "object-file.h"
19 #include "object-store-ll.h"
20 #include "list-objects-filter-options.h"
21 #include "midx.h"
22 #include "config.h"
25 * An entry on the bitmap index, representing the bitmap for a given
26 * commit.
28 struct stored_bitmap {
29 struct object_id oid;
30 struct ewah_bitmap *root;
31 struct stored_bitmap *xor;
32 int flags;
36 * The active bitmap index for a repository. By design, repositories only have
37 * a single bitmap index available (the index for the biggest packfile in
38 * the repository), since bitmap indexes need full closure.
40 * If there is more than one bitmap index available (e.g. because of alternates),
41 * the active bitmap index is the largest one.
43 struct bitmap_index {
45 * The pack or multi-pack index (MIDX) that this bitmap index belongs
46 * to.
48 * Exactly one of these must be non-NULL; this specifies the object
49 * order used to interpret this bitmap.
51 struct packed_git *pack;
52 struct multi_pack_index *midx;
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
59 uint32_t reuse_objects;
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 */
67 * Type indexes.
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.
73 struct ewah_bitmap *commits;
74 struct ewah_bitmap *trees;
75 struct ewah_bitmap *blobs;
76 struct ewah_bitmap *tags;
78 /* Map from object ID -> `stored_bitmap` for all the bitmapped commits */
79 kh_oid_map_t *bitmaps;
81 /* Number of bitmapped commits */
82 uint32_t entry_count;
84 /* If not NULL, this is a name-hash cache pointing into map. */
85 uint32_t *hashes;
87 /* The checksum of the packfile or MIDX; points into map. */
88 const unsigned char *checksum;
91 * If not NULL, this point into the commit table extension
92 * (within the memory mapped region `map`).
94 unsigned char *table_lookup;
97 * Extended index.
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
103 struct eindex {
104 struct object **objects;
105 uint32_t *hashes;
106 uint32_t count, alloc;
107 kh_oid_pos_t *positions;
108 } ext_index;
110 /* Bitmap result of the last performed walk */
111 struct bitmap *result;
113 /* "have" bitmap from the last performed walk */
114 struct bitmap *haves;
116 /* Version of the bitmap index */
117 unsigned int version;
120 static struct ewah_bitmap *lookup_stored_bitmap(struct stored_bitmap *st)
122 struct ewah_bitmap *parent;
123 struct ewah_bitmap *composed;
125 if (!st->xor)
126 return st->root;
128 composed = ewah_pool_new();
129 parent = lookup_stored_bitmap(st->xor);
130 ewah_xor(st->root, parent, composed);
132 ewah_pool_free(st->root);
133 st->root = composed;
134 st->xor = NULL;
136 return composed;
140 * Read a bitmap from the current read position on the mmaped
141 * index, and increase the read position accordingly
143 static struct ewah_bitmap *read_bitmap_1(struct bitmap_index *index)
145 struct ewah_bitmap *b = ewah_pool_new();
147 ssize_t bitmap_size = ewah_read_mmap(b,
148 index->map + index->map_pos,
149 index->map_size - index->map_pos);
151 if (bitmap_size < 0) {
152 error(_("failed to load bitmap index (corrupted?)"));
153 ewah_pool_free(b);
154 return NULL;
157 index->map_pos += bitmap_size;
158 return b;
161 static uint32_t bitmap_num_objects(struct bitmap_index *index)
163 if (index->midx)
164 return index->midx->num_objects;
165 return index->pack->num_objects;
168 static int load_bitmap_header(struct bitmap_index *index)
170 struct bitmap_disk_header *header = (void *)index->map;
171 size_t header_size = sizeof(*header) - GIT_MAX_RAWSZ + the_hash_algo->rawsz;
173 if (index->map_size < header_size + the_hash_algo->rawsz)
174 return error(_("corrupted bitmap index (too small)"));
176 if (memcmp(header->magic, BITMAP_IDX_SIGNATURE, sizeof(BITMAP_IDX_SIGNATURE)) != 0)
177 return error(_("corrupted bitmap index file (wrong header)"));
179 index->version = ntohs(header->version);
180 if (index->version != 1)
181 return error(_("unsupported version '%d' for bitmap index file"), index->version);
183 /* Parse known bitmap format options */
185 uint32_t flags = ntohs(header->options);
186 size_t cache_size = st_mult(bitmap_num_objects(index), sizeof(uint32_t));
187 unsigned char *index_end = index->map + index->map_size - the_hash_algo->rawsz;
189 if ((flags & BITMAP_OPT_FULL_DAG) == 0)
190 BUG("unsupported options for bitmap index file "
191 "(Git requires BITMAP_OPT_FULL_DAG)");
193 if (flags & BITMAP_OPT_HASH_CACHE) {
194 if (cache_size > index_end - index->map - header_size)
195 return error(_("corrupted bitmap index file (too short to fit hash cache)"));
196 index->hashes = (void *)(index_end - cache_size);
197 index_end -= cache_size;
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;
211 index->entry_count = ntohl(header->entry_count);
212 index->checksum = header->checksum;
213 index->map_pos += header_size;
214 return 0;
217 static struct stored_bitmap *store_bitmap(struct bitmap_index *index,
218 struct ewah_bitmap *root,
219 const struct object_id *oid,
220 struct stored_bitmap *xor_with,
221 int flags)
223 struct stored_bitmap *stored;
224 khiter_t hash_pos;
225 int ret;
227 stored = xmalloc(sizeof(struct stored_bitmap));
228 stored->root = root;
229 stored->xor = xor_with;
230 stored->flags = flags;
231 oidcpy(&stored->oid, oid);
233 hash_pos = kh_put_oid_map(index->bitmaps, stored->oid, &ret);
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.
240 if (ret == 0) {
241 error(_("duplicate entry in bitmap index: '%s'"), oid_to_hex(oid));
242 return NULL;
245 kh_value(index->bitmaps, hash_pos) = stored;
246 return stored;
249 static inline uint32_t read_be32(const unsigned char *buffer, size_t *pos)
251 uint32_t result = get_be32(buffer + *pos);
252 (*pos) += sizeof(result);
253 return result;
256 static inline uint8_t read_u8(const unsigned char *buffer, size_t *pos)
258 return buffer[(*pos)++];
261 #define MAX_XOR_OFFSET 160
263 static int nth_bitmap_object_oid(struct bitmap_index *index,
264 struct object_id *oid,
265 uint32_t n)
267 if (index->midx)
268 return nth_midxed_object_oid(oid, index->midx, n) ? 0 : -1;
269 return nth_packed_object_id(oid, index->pack, n);
272 static int load_bitmap_entries_v1(struct bitmap_index *index)
274 uint32_t i;
275 struct stored_bitmap *recent_bitmaps[MAX_XOR_OFFSET] = { NULL };
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;
282 struct object_id oid;
284 if (index->map_size - index->map_pos < 6)
285 return error(_("corrupt ewah bitmap: truncated header for entry %d"), i);
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);
291 if (nth_bitmap_object_oid(index, &oid, commit_idx_pos) < 0)
292 return error(_("corrupt ewah bitmap: commit index %u out of range"),
293 (unsigned)commit_idx_pos);
295 bitmap = read_bitmap_1(index);
296 if (!bitmap)
297 return -1;
299 if (xor_offset > MAX_XOR_OFFSET || xor_offset > i)
300 return error(_("corrupted bitmap pack index"));
302 if (xor_offset > 0) {
303 xor_bitmap = recent_bitmaps[(i - xor_offset) % MAX_XOR_OFFSET];
305 if (!xor_bitmap)
306 return error(_("invalid XOR offset in bitmap pack index"));
309 recent_bitmaps[i % MAX_XOR_OFFSET] = store_bitmap(
310 index, bitmap, &oid, xor_bitmap, flags);
313 return 0;
316 char *midx_bitmap_filename(struct multi_pack_index *midx)
318 struct strbuf buf = STRBUF_INIT;
320 get_midx_filename(&buf, midx->object_dir);
321 strbuf_addf(&buf, "-%s.bitmap", hash_to_hex(get_midx_checksum(midx)));
323 return strbuf_detach(&buf, NULL);
326 char *pack_bitmap_filename(struct packed_git *p)
328 size_t len;
330 if (!strip_suffix(p->pack_name, ".pack", &len))
331 BUG("pack_name does not end in .pack");
332 return xstrfmt("%.*s.bitmap", (int)len, p->pack_name);
335 static int open_midx_bitmap_1(struct bitmap_index *bitmap_git,
336 struct multi_pack_index *midx)
338 struct stat st;
339 char *bitmap_name = midx_bitmap_filename(midx);
340 int fd = git_open(bitmap_name);
341 uint32_t i;
342 struct packed_git *preferred;
344 if (fd < 0) {
345 if (errno != ENOENT)
346 warning_errno("cannot open '%s'", bitmap_name);
347 free(bitmap_name);
348 return -1;
350 free(bitmap_name);
352 if (fstat(fd, &st)) {
353 error_errno(_("cannot fstat bitmap file"));
354 close(fd);
355 return -1;
358 if (bitmap_git->pack || bitmap_git->midx) {
359 struct strbuf buf = STRBUF_INIT;
360 get_midx_filename(&buf, midx->object_dir);
361 trace2_data_string("bitmap", the_repository,
362 "ignoring extra midx bitmap file", buf.buf);
363 close(fd);
364 strbuf_release(&buf);
365 return -1;
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);
375 if (load_bitmap_header(bitmap_git) < 0)
376 goto cleanup;
378 if (!hasheq(get_midx_checksum(bitmap_git->midx), bitmap_git->checksum)) {
379 error(_("checksum doesn't match in MIDX and bitmap"));
380 goto cleanup;
383 if (load_midx_revindex(bitmap_git->midx)) {
384 warning(_("multi-pack bitmap is missing required reverse index"));
385 goto cleanup;
388 for (i = 0; i < bitmap_git->midx->num_packs; i++) {
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;
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;
403 return 0;
405 cleanup:
406 munmap(bitmap_git->map, bitmap_git->map_size);
407 bitmap_git->map_size = 0;
408 bitmap_git->map_pos = 0;
409 bitmap_git->map = NULL;
410 bitmap_git->midx = NULL;
411 return -1;
414 static int open_pack_bitmap_1(struct bitmap_index *bitmap_git, struct packed_git *packfile)
416 int fd;
417 struct stat st;
418 char *bitmap_name;
420 bitmap_name = pack_bitmap_filename(packfile);
421 fd = git_open(bitmap_name);
423 if (fd < 0) {
424 if (errno != ENOENT)
425 warning_errno("cannot open '%s'", bitmap_name);
426 free(bitmap_name);
427 return -1;
429 free(bitmap_name);
431 if (fstat(fd, &st)) {
432 error_errno(_("cannot fstat bitmap file"));
433 close(fd);
434 return -1;
437 if (bitmap_git->pack || bitmap_git->midx) {
438 trace2_data_string("bitmap", the_repository,
439 "ignoring extra bitmap file", packfile->pack_name);
440 close(fd);
441 return -1;
444 if (!is_pack_valid(packfile)) {
445 close(fd);
446 return -1;
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;
453 close(fd);
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;
459 bitmap_git->map_pos = 0;
460 bitmap_git->pack = NULL;
461 return -1;
464 trace2_data_string("bitmap", the_repository, "opened bitmap file",
465 packfile->pack_name);
466 return 0;
469 static int load_reverse_index(struct repository *r, struct bitmap_index *bitmap_git)
471 if (bitmap_is_midx(bitmap_git)) {
472 uint32_t i;
473 int ret;
476 * The multi-pack-index's .rev file is already loaded via
477 * open_pack_bitmap_1().
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.
482 for (i = 0; i < bitmap_git->midx->num_packs; i++) {
483 ret = load_pack_revindex(r, bitmap_git->midx->packs[i]);
484 if (ret)
485 return ret;
487 return 0;
489 return load_pack_revindex(r, bitmap_git->pack);
492 static int load_bitmap(struct repository *r, struct bitmap_index *bitmap_git)
494 assert(bitmap_git->map);
496 bitmap_git->bitmaps = kh_init_oid_map();
497 bitmap_git->ext_index.positions = kh_init_oid_pos();
499 if (load_reverse_index(r, bitmap_git))
500 goto failed;
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)))
506 goto failed;
508 if (!bitmap_git->table_lookup && load_bitmap_entries_v1(bitmap_git) < 0)
509 goto failed;
511 return 0;
513 failed:
514 munmap(bitmap_git->map, bitmap_git->map_size);
515 bitmap_git->map = NULL;
516 bitmap_git->map_size = 0;
518 kh_destroy_oid_map(bitmap_git->bitmaps);
519 bitmap_git->bitmaps = NULL;
521 kh_destroy_oid_pos(bitmap_git->ext_index.positions);
522 bitmap_git->ext_index.positions = NULL;
524 return -1;
527 static int open_pack_bitmap(struct repository *r,
528 struct bitmap_index *bitmap_git)
530 struct packed_git *p;
531 int ret = -1;
533 for (p = get_all_packs(r); p; p = p->next) {
534 if (open_pack_bitmap_1(bitmap_git, p) == 0) {
535 ret = 0;
537 * The only reason to keep looking is to report
538 * duplicates.
540 if (!trace2_is_enabled())
541 break;
545 return ret;
548 static int open_midx_bitmap(struct repository *r,
549 struct bitmap_index *bitmap_git)
551 int ret = -1;
552 struct multi_pack_index *midx;
554 assert(!bitmap_git->map);
556 for (midx = get_multi_pack_index(r); midx; midx = midx->next) {
557 if (!open_midx_bitmap_1(bitmap_git, midx))
558 ret = 0;
560 return ret;
563 static int open_bitmap(struct repository *r,
564 struct bitmap_index *bitmap_git)
566 int found;
568 assert(!bitmap_git->map);
570 found = !open_midx_bitmap(r, bitmap_git);
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
576 if (!found || trace2_is_enabled())
577 found |= !open_pack_bitmap(r, bitmap_git);
579 return found ? 0 : -1;
582 struct bitmap_index *prepare_bitmap_git(struct repository *r)
584 struct bitmap_index *bitmap_git = xcalloc(1, sizeof(*bitmap_git));
586 if (!open_bitmap(r, bitmap_git) && !load_bitmap(r, bitmap_git))
587 return bitmap_git;
589 free_bitmap_index(bitmap_git);
590 return NULL;
593 struct bitmap_index *prepare_midx_bitmap_git(struct multi_pack_index *midx)
595 struct repository *r = the_repository;
596 struct bitmap_index *bitmap_git = xcalloc(1, sizeof(*bitmap_git));
598 if (!open_midx_bitmap_1(bitmap_git, midx) && !load_bitmap(r, bitmap_git))
599 return bitmap_git;
601 free_bitmap_index(bitmap_git);
602 return NULL;
605 struct include_data {
606 struct bitmap_index *bitmap_git;
607 struct bitmap *base;
608 struct bitmap *seen;
611 struct bitmap_lookup_table_triplet {
612 uint32_t commit_pos;
613 uint64_t offset;
614 uint32_t xor_row;
617 struct bitmap_lookup_table_xor_item {
618 struct object_id oid;
619 uint64_t offset;
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`.
628 static int bitmap_lookup_table_get_triplet_by_pointer(struct bitmap_lookup_table_triplet *triplet,
629 const unsigned char *p)
631 if (!triplet)
632 return -1;
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;
643 * This function gets the raw triplet from `row`'th row in the
644 * lookup table and fills that data to the `triplet`.
646 static int bitmap_lookup_table_get_triplet(struct bitmap_index *bitmap_git,
647 uint32_t pos,
648 struct bitmap_lookup_table_triplet *triplet)
650 unsigned char *p = NULL;
651 if (pos >= bitmap_git->entry_count)
652 return error(_("corrupt bitmap lookup table: triplet position out of index"));
654 p = bitmap_git->table_lookup + st_mult(pos, BITMAP_LOOKUP_TABLE_TRIPLET_WIDTH);
656 return bitmap_lookup_table_get_triplet_by_pointer(triplet, p);
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`.
665 static int triplet_cmp(const void *commit_pos, const void *table_entry)
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;
675 return 0;
678 static uint32_t bitmap_bsearch_pos(struct bitmap_index *bitmap_git,
679 struct object_id *oid,
680 uint32_t *result)
682 int found;
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);
689 return found;
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.
698 static int bitmap_bsearch_triplet_by_pos(uint32_t commit_pos,
699 struct bitmap_index *bitmap_git,
700 struct bitmap_lookup_table_triplet *triplet)
702 unsigned char *p = bsearch(&commit_pos, bitmap_git->table_lookup, bitmap_git->entry_count,
703 BITMAP_LOOKUP_TABLE_TRIPLET_WIDTH, triplet_cmp);
705 if (!p)
706 return -1;
708 return bitmap_lookup_table_get_triplet_by_pointer(triplet, p);
711 static struct stored_bitmap *lazy_bitmap_for_commit(struct bitmap_index *bitmap_git,
712 struct commit *commit)
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;
729 if (is_corrupt)
730 return NULL;
732 if (!bitmap_bsearch_pos(bitmap_git, oid, &commit_pos))
733 return NULL;
735 if (bitmap_bsearch_triplet_by_pos(commit_pos, bitmap_git, &triplet) < 0)
736 return NULL;
738 xor_items_nr = 0;
739 offset = triplet.offset;
740 xor_row = triplet.xor_row;
742 while (xor_row != 0xffffffff) {
743 ALLOC_GROW(xor_items, xor_items_nr + 1, xor_items_alloc);
745 if (xor_items_nr + 1 >= bitmap_git->entry_count) {
746 error(_("corrupt bitmap lookup table: xor chain exceeds entry count"));
747 goto corrupt;
750 if (bitmap_lookup_table_get_triplet(bitmap_git, xor_row, &triplet) < 0)
751 goto corrupt;
753 xor_item = &xor_items[xor_items_nr];
754 xor_item->offset = triplet.offset;
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;
762 hash_pos = kh_get_oid_map(bitmap_git->bitmaps, xor_item->oid);
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.
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;
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;
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);
791 if (!bitmap)
792 goto corrupt;
794 xor_bitmap = store_bitmap(bitmap_git, bitmap, &xor_item->oid, xor_bitmap, xor_flags);
795 xor_items_nr--;
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;
806 * Don't bother reading the commit's index position or its xor
807 * offset:
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.
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.
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).
825 * Instead, we can skip ahead and immediately read the flags and
826 * ewah bitmap.
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);
832 if (!bitmap)
833 goto corrupt;
835 return store_bitmap(bitmap_git, bitmap, oid, xor_bitmap, flags);
837 corrupt:
838 free(xor_items);
839 is_corrupt = 1;
840 return NULL;
843 struct ewah_bitmap *bitmap_for_commit(struct bitmap_index *bitmap_git,
844 struct commit *commit)
846 khiter_t hash_pos = kh_get_oid_map(bitmap_git->bitmaps,
847 commit->object.oid);
848 if (hash_pos >= kh_end(bitmap_git->bitmaps)) {
849 struct stored_bitmap *bitmap = NULL;
850 if (!bitmap_git->table_lookup)
851 return NULL;
853 /* this is a fairly hot codepath - no trace2_region please */
854 /* NEEDSWORK: cache misses aren't recorded */
855 bitmap = lazy_bitmap_for_commit(bitmap_git, commit);
856 if (!bitmap)
857 return NULL;
858 return lookup_stored_bitmap(bitmap);
860 return lookup_stored_bitmap(kh_value(bitmap_git->bitmaps, hash_pos));
863 static inline int bitmap_position_extended(struct bitmap_index *bitmap_git,
864 const struct object_id *oid)
866 kh_oid_pos_t *positions = bitmap_git->ext_index.positions;
867 khiter_t pos = kh_get_oid_pos(positions, *oid);
869 if (pos < kh_end(positions)) {
870 int bitmap_pos = kh_value(positions, pos);
871 return bitmap_pos + bitmap_num_objects(bitmap_git);
874 return -1;
877 static inline int bitmap_position_packfile(struct bitmap_index *bitmap_git,
878 const struct object_id *oid)
880 uint32_t pos;
881 off_t offset = find_pack_entry_one(oid->hash, bitmap_git->pack);
882 if (!offset)
883 return -1;
885 if (offset_to_pack_pos(bitmap_git->pack, offset, &pos) < 0)
886 return -1;
887 return pos;
890 static int bitmap_position_midx(struct bitmap_index *bitmap_git,
891 const struct object_id *oid)
893 uint32_t want, got;
894 if (!bsearch_midx(oid, bitmap_git->midx, &want))
895 return -1;
897 if (midx_to_pack_pos(bitmap_git->midx, want, &got) < 0)
898 return -1;
899 return got;
902 static int bitmap_position(struct bitmap_index *bitmap_git,
903 const struct object_id *oid)
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);
910 return (pos >= 0) ? pos : bitmap_position_extended(bitmap_git, oid);
913 static int ext_index_add_object(struct bitmap_index *bitmap_git,
914 struct object *object, const char *name)
916 struct eindex *eindex = &bitmap_git->ext_index;
918 khiter_t hash_pos;
919 int hash_ret;
920 int bitmap_pos;
922 hash_pos = kh_put_oid_pos(eindex->positions, object->oid, &hash_ret);
923 if (hash_ret > 0) {
924 if (eindex->count >= eindex->alloc) {
925 eindex->alloc = (eindex->alloc + 16) * 3 / 2;
926 REALLOC_ARRAY(eindex->objects, eindex->alloc);
927 REALLOC_ARRAY(eindex->hashes, eindex->alloc);
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);
939 return bitmap_pos + bitmap_num_objects(bitmap_git);
942 struct bitmap_show_data {
943 struct bitmap_index *bitmap_git;
944 struct bitmap *base;
947 static void show_object(struct object *object, const char *name, void *data_)
949 struct bitmap_show_data *data = data_;
950 int bitmap_pos;
952 bitmap_pos = bitmap_position(data->bitmap_git, &object->oid);
954 if (bitmap_pos < 0)
955 bitmap_pos = ext_index_add_object(data->bitmap_git, object,
956 name);
958 bitmap_set(data->base, bitmap_pos);
961 static void show_commit(struct commit *commit UNUSED,
962 void *data UNUSED)
966 static int add_to_include_set(struct bitmap_index *bitmap_git,
967 struct include_data *data,
968 struct commit *commit,
969 int bitmap_pos)
971 struct ewah_bitmap *partial;
973 if (data->seen && bitmap_get(data->seen, bitmap_pos))
974 return 0;
976 if (bitmap_get(data->base, bitmap_pos))
977 return 0;
979 partial = bitmap_for_commit(bitmap_git, commit);
980 if (partial) {
981 bitmap_or_ewah(data->base, partial);
982 return 0;
985 bitmap_set(data->base, bitmap_pos);
986 return 1;
989 static int should_include(struct commit *commit, void *_data)
991 struct include_data *data = _data;
992 int bitmap_pos;
994 bitmap_pos = bitmap_position(data->bitmap_git, &commit->object.oid);
995 if (bitmap_pos < 0)
996 bitmap_pos = ext_index_add_object(data->bitmap_git,
997 (struct object *)commit,
998 NULL);
1000 if (!add_to_include_set(data->bitmap_git, data, commit, bitmap_pos)) {
1001 struct commit_list *parent = commit->parents;
1003 while (parent) {
1004 parent->item->object.flags |= SEEN;
1005 parent = parent->next;
1008 return 0;
1011 return 1;
1014 static int should_include_obj(struct object *obj, void *_data)
1016 struct include_data *data = _data;
1017 int bitmap_pos;
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;
1027 return 1;
1030 static int add_commit_to_bitmap(struct bitmap_index *bitmap_git,
1031 struct bitmap **base,
1032 struct commit *commit)
1034 struct ewah_bitmap *or_with = bitmap_for_commit(bitmap_git, commit);
1036 if (!or_with)
1037 return 0;
1039 if (!*base)
1040 *base = ewah_to_bitmap(or_with);
1041 else
1042 bitmap_or_ewah(*base, or_with);
1044 return 1;
1047 static struct bitmap *fill_in_bitmap(struct bitmap_index *bitmap_git,
1048 struct rev_info *revs,
1049 struct bitmap *base,
1050 struct bitmap *seen)
1052 struct include_data incdata;
1053 struct bitmap_show_data show_data;
1055 if (!base)
1056 base = bitmap_new();
1058 incdata.bitmap_git = bitmap_git;
1059 incdata.base = base;
1060 incdata.seen = seen;
1062 revs->include_check = should_include;
1063 revs->include_check_obj = should_include_obj;
1064 revs->include_check_data = &incdata;
1066 if (prepare_revision_walk(revs))
1067 die(_("revision walk setup failed"));
1069 show_data.bitmap_git = bitmap_git;
1070 show_data.base = base;
1072 traverse_commit_list(revs, show_commit, show_object, &show_data);
1074 revs->include_check = NULL;
1075 revs->include_check_obj = NULL;
1076 revs->include_check_data = NULL;
1078 return base;
1081 struct bitmap_boundary_cb {
1082 struct bitmap_index *bitmap_git;
1083 struct bitmap *base;
1085 struct object_array boundary;
1088 static void show_boundary_commit(struct commit *commit, void *_data)
1090 struct bitmap_boundary_cb *data = _data;
1092 if (commit->object.flags & BOUNDARY)
1093 add_object_array(&commit->object, "", &data->boundary);
1095 if (commit->object.flags & UNINTERESTING) {
1096 if (bitmap_walk_contains(data->bitmap_git, data->base,
1097 &commit->object.oid))
1098 return;
1100 add_commit_to_bitmap(data->bitmap_git, &data->base, commit);
1104 static void show_boundary_object(struct object *object UNUSED,
1105 const char *name UNUSED,
1106 void *data UNUSED)
1108 BUG("should not be called");
1111 static struct bitmap *find_boundary_objects(struct bitmap_index *bitmap_git,
1112 struct rev_info *revs,
1113 struct object_list *roots)
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;
1121 cb.bitmap_git = bitmap_git;
1122 cb.base = bitmap_new();
1123 object_array_init(&cb.boundary);
1125 revs->ignore_missing_links = 1;
1128 * OR in any existing reachability bitmaps among `roots` into
1129 * `cb.base`.
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;
1137 if (add_commit_to_bitmap(bitmap_git, &cb.base,
1138 (struct commit *)object))
1139 continue;
1141 any_missing = 1;
1144 if (!any_missing)
1145 goto cleanup;
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;
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.
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);
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);
1173 revs->blob_objects = tmp_blobs;
1174 revs->tree_objects = tmp_trees;
1175 revs->tag_objects = tmp_tags;
1177 reset_revision_walk();
1178 clear_object_flags(UNINTERESTING);
1181 * Then add the boundary commit(s) as fill-in traversal tips.
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, "");
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);
1195 cleanup:
1196 object_array_clear(&cb.boundary);
1197 revs->ignore_missing_links = 0;
1199 return cb.base;
1202 static struct bitmap *find_objects(struct bitmap_index *bitmap_git,
1203 struct rev_info *revs,
1204 struct object_list *roots,
1205 struct bitmap *seen)
1207 struct bitmap *base = NULL;
1208 int needs_walk = 0;
1210 struct object_list *not_mapped = NULL;
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.
1217 * The ones without bitmaps in the index will be stored in the
1218 * `not_mapped_list` for further processing.
1220 while (roots) {
1221 struct object *object = roots->item;
1222 roots = roots->next;
1224 if (object->type == OBJ_COMMIT &&
1225 add_commit_to_bitmap(bitmap_git, &base, (struct commit *)object)) {
1226 object->flags |= SEEN;
1227 continue;
1230 object_list_insert(object, &not_mapped);
1234 * Best case scenario: We found bitmaps for all the roots,
1235 * so the resulting `or` bitmap has the full reachability analysis
1237 if (!not_mapped)
1238 return base;
1240 roots = not_mapped;
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.
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
1251 while (roots) {
1252 struct object *object = roots->item;
1253 int pos;
1255 roots = roots->next;
1256 pos = bitmap_position(bitmap_git, &object->oid);
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;
1267 if (needs_walk) {
1269 * This fill-in traversal may walk over some objects
1270 * again, since we have already traversed in order to
1271 * find the boundary.
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).
1280 base = fill_in_bitmap(bitmap_git, revs, base, seen);
1283 return base;
1286 static void show_extended_objects(struct bitmap_index *bitmap_git,
1287 struct rev_info *revs,
1288 show_reachable_fn show_reach)
1290 struct bitmap *objects = bitmap_git->result;
1291 struct eindex *eindex = &bitmap_git->ext_index;
1292 uint32_t i;
1294 for (i = 0; i < eindex->count; ++i) {
1295 struct object *obj;
1297 if (!bitmap_get(objects, st_add(bitmap_num_objects(bitmap_git), i)))
1298 continue;
1300 obj = eindex->objects[i];
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;
1306 show_reach(&obj->oid, obj->type, 0, eindex->hashes[i], NULL, 0);
1310 static void init_type_iterator(struct ewah_iterator *it,
1311 struct bitmap_index *bitmap_git,
1312 enum object_type type)
1314 switch (type) {
1315 case OBJ_COMMIT:
1316 ewah_iterator_init(it, bitmap_git->commits);
1317 break;
1319 case OBJ_TREE:
1320 ewah_iterator_init(it, bitmap_git->trees);
1321 break;
1323 case OBJ_BLOB:
1324 ewah_iterator_init(it, bitmap_git->blobs);
1325 break;
1327 case OBJ_TAG:
1328 ewah_iterator_init(it, bitmap_git->tags);
1329 break;
1331 default:
1332 BUG("object type %d not stored by bitmap type index", type);
1333 break;
1337 static void show_objects_for_type(
1338 struct bitmap_index *bitmap_git,
1339 enum object_type object_type,
1340 show_reachable_fn show_reach)
1342 size_t i = 0;
1343 uint32_t offset;
1345 struct ewah_iterator it;
1346 eword_t filter;
1348 struct bitmap *objects = bitmap_git->result;
1350 init_type_iterator(&it, bitmap_git, object_type);
1352 for (i = 0; i < objects->word_alloc &&
1353 ewah_iterator_next(&filter, &it); i++) {
1354 eword_t word = objects->words[i] & filter;
1355 size_t pos = (i * BITS_IN_EWORD);
1357 if (!word)
1358 continue;
1360 for (offset = 0; offset < BITS_IN_EWORD; ++offset) {
1361 struct packed_git *pack;
1362 struct object_id oid;
1363 uint32_t hash = 0, index_pos;
1364 off_t ofs;
1366 if ((word >> offset) == 0)
1367 break;
1369 offset += ewah_bit_ctz64(word >> offset);
1371 if (bitmap_is_midx(bitmap_git)) {
1372 struct multi_pack_index *m = bitmap_git->midx;
1373 uint32_t pack_id;
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);
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);
1386 pack = bitmap_git->pack;
1389 if (bitmap_git->hashes)
1390 hash = get_be32(bitmap_git->hashes + index_pos);
1392 show_reach(&oid, object_type, 0, hash, pack, ofs);
1397 static int in_bitmapped_pack(struct bitmap_index *bitmap_git,
1398 struct object_list *roots)
1400 while (roots) {
1401 struct object *object = roots->item;
1402 roots = roots->next;
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;
1413 return 0;
1416 static struct bitmap *find_tip_objects(struct bitmap_index *bitmap_git,
1417 struct object_list *tip_objects,
1418 enum object_type type)
1420 struct bitmap *result = bitmap_new();
1421 struct object_list *p;
1423 for (p = tip_objects; p; p = p->next) {
1424 int pos;
1426 if (p->item->type != type)
1427 continue;
1429 pos = bitmap_position(bitmap_git, &p->item->oid);
1430 if (pos < 0)
1431 continue;
1433 bitmap_set(result, pos);
1436 return result;
1439 static 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)
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;
1451 * The non-bitmap version of this filter never removes
1452 * objects which the other side specifically asked for,
1453 * so we must match that behavior.
1455 tips = find_tip_objects(bitmap_git, tip_objects, type);
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.
1462 for (i = 0, init_type_iterator(&it, bitmap_git, type);
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;
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.
1475 for (i = 0; i < eindex->count; i++) {
1476 size_t pos = st_add(i, bitmap_num_objects(bitmap_git));
1477 if (eindex->objects[i]->type == type &&
1478 bitmap_get(to_filter, pos) &&
1479 !bitmap_get(tips, pos))
1480 bitmap_unset(to_filter, pos);
1483 bitmap_free(tips);
1486 static void filter_bitmap_blob_none(struct bitmap_index *bitmap_git,
1487 struct object_list *tip_objects,
1488 struct bitmap *to_filter)
1490 filter_bitmap_exclude_type(bitmap_git, tip_objects, to_filter,
1491 OBJ_BLOB);
1494 static unsigned long get_size_by_pos(struct bitmap_index *bitmap_git,
1495 uint32_t pos)
1497 unsigned long size;
1498 struct object_info oi = OBJECT_INFO_INIT;
1500 oi.sizep = &size;
1502 if (pos < bitmap_num_objects(bitmap_git)) {
1503 struct packed_git *pack;
1504 off_t ofs;
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);
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);
1517 if (packed_object_info(the_repository, pack, ofs, &oi) < 0) {
1518 struct object_id oid;
1519 nth_bitmap_object_oid(bitmap_git, &oid,
1520 pack_pos_to_index(pack, pos));
1521 die(_("unable to get size of %s"), oid_to_hex(&oid));
1523 } else {
1524 struct eindex *eindex = &bitmap_git->ext_index;
1525 struct object *obj = eindex->objects[pos - bitmap_num_objects(bitmap_git)];
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));
1530 return size;
1533 static 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)
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;
1544 tips = find_tip_objects(bitmap_git, tip_objects, OBJ_BLOB);
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;
1552 for (offset = 0; offset < BITS_IN_EWORD; offset++) {
1553 uint32_t pos;
1555 if ((word >> offset) == 0)
1556 break;
1557 offset += ewah_bit_ctz64(word >> offset);
1558 pos = i * BITS_IN_EWORD + offset;
1560 if (!bitmap_get(tips, pos) &&
1561 get_size_by_pos(bitmap_git, pos) >= limit)
1562 bitmap_unset(to_filter, pos);
1566 for (i = 0; i < eindex->count; i++) {
1567 size_t pos = st_add(i, bitmap_num_objects(bitmap_git));
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);
1575 bitmap_free(tips);
1578 static 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)
1583 if (limit)
1584 BUG("filter_bitmap_tree_depth given non-zero limit");
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);
1592 static 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)
1597 if (object_type < OBJ_COMMIT || object_type > OBJ_TAG)
1598 BUG("filter_bitmap_object_type given invalid object");
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);
1610 static 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)
1615 if (!filter || filter->choice == LOFC_DISABLED)
1616 return 0;
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;
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;
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;
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;
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;
1657 return 0;
1660 /* filter choice not handled */
1661 return -1;
1664 static int can_filter_bitmap(struct list_objects_filter_options *filter)
1666 return !filter_bitmap(NULL, NULL, NULL, filter);
1670 static void filter_packed_objects_from_bitmap(struct bitmap_index *bitmap_git,
1671 struct bitmap *result)
1673 struct eindex *eindex = &bitmap_git->ext_index;
1674 uint32_t objects_nr;
1675 size_t i, pos;
1677 objects_nr = bitmap_num_objects(bitmap_git);
1678 pos = objects_nr / BITS_IN_EWORD;
1680 if (pos > result->word_alloc)
1681 pos = result->word_alloc;
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);
1687 for (i = 0; i < eindex->count; ++i) {
1688 if (has_object_pack(&eindex->objects[i]->oid))
1689 bitmap_unset(result, objects_nr + i);
1693 struct bitmap_index *prepare_bitmap_walk(struct rev_info *revs,
1694 int filter_provided_objects)
1696 unsigned int i;
1697 int use_boundary_traversal;
1699 struct object_list *wants = NULL;
1700 struct object_list *haves = NULL;
1702 struct bitmap *wants_bitmap = NULL;
1703 struct bitmap *haves_bitmap = NULL;
1705 struct bitmap_index *bitmap_git;
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).
1712 if (revs->prune)
1713 return NULL;
1715 if (!can_filter_bitmap(&revs->filter))
1716 return NULL;
1718 /* try to open a bitmapped pack, but don't parse it yet
1719 * because we may not need to use it */
1720 CALLOC_ARRAY(bitmap_git, 1);
1721 if (open_bitmap(revs->repo, bitmap_git) < 0)
1722 goto cleanup;
1724 for (i = 0; i < revs->pending.nr; ++i) {
1725 struct object *object = revs->pending.objects[i].item;
1727 if (object->type == OBJ_NONE)
1728 parse_object_or_die(&object->oid, NULL);
1730 while (object->type == OBJ_TAG) {
1731 struct tag *tag = (struct tag *) object;
1733 if (object->flags & UNINTERESTING)
1734 object_list_insert(object, &haves);
1735 else
1736 object_list_insert(object, &wants);
1738 object = parse_object_or_die(get_tagged_oid(tag), NULL);
1739 object->flags |= (tag->object.flags & UNINTERESTING);
1742 if (object->flags & UNINTERESTING)
1743 object_list_insert(object, &haves);
1744 else
1745 object_list_insert(object, &wants);
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;
1754 if (!use_boundary_traversal) {
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
1760 if (haves && !in_bitmapped_pack(bitmap_git, haves))
1761 goto cleanup;
1764 /* if we don't want anything, we're done here */
1765 if (!wants)
1766 goto cleanup;
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
1773 if (load_bitmap(revs->repo, bitmap_git) < 0)
1774 goto cleanup;
1776 if (!use_boundary_traversal)
1777 object_array_clear(&revs->pending);
1779 if (haves) {
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);
1793 if (!haves_bitmap)
1794 BUG("failed to perform bitmap walk");
1797 if (use_boundary_traversal) {
1798 object_array_clear(&revs->pending);
1799 reset_revision_walk();
1802 wants_bitmap = find_objects(bitmap_git, revs, wants, haves_bitmap);
1804 if (!wants_bitmap)
1805 BUG("failed to perform bitmap walk");
1807 if (haves_bitmap)
1808 bitmap_and_not(wants_bitmap, haves_bitmap);
1810 filter_bitmap(bitmap_git,
1811 (revs->filter.choice && filter_provided_objects) ? NULL : wants,
1812 wants_bitmap,
1813 &revs->filter);
1815 if (revs->unpacked)
1816 filter_packed_objects_from_bitmap(bitmap_git, wants_bitmap);
1818 bitmap_git->result = wants_bitmap;
1819 bitmap_git->haves = haves_bitmap;
1821 object_list_free(&wants);
1822 object_list_free(&haves);
1824 return bitmap_git;
1826 cleanup:
1827 free_bitmap_index(bitmap_git);
1828 object_list_free(&wants);
1829 object_list_free(&haves);
1830 return NULL;
1834 * -1 means "stop trying further objects"; 0 means we may or may not have
1835 * reused, but you can keep feeding bits.
1837 static int try_partial_reuse(struct packed_git *pack,
1838 size_t pos,
1839 struct bitmap *reuse,
1840 struct pack_window **w_curs)
1842 off_t offset, delta_obj_offset;
1843 enum object_type type;
1844 unsigned long size;
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:
1853 * - The first pack->num_objects bits of a MIDX bitmap are
1854 * reserved for the preferred pack, and
1856 * - Ties due to duplicate objects are always resolved in
1857 * favor of the preferred pack.
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.
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.
1869 if (pos >= pack->num_objects)
1870 return -1; /* not actually in the pack or MIDX preferred pack */
1872 offset = delta_obj_offset = pack_pos_to_offset(pack, pos);
1873 type = unpack_object_header(pack, w_curs, &offset, &size);
1874 if (type < 0)
1875 return -1; /* broken packfile, punt */
1877 if (type == OBJ_REF_DELTA || type == OBJ_OFS_DELTA) {
1878 off_t base_offset;
1879 uint32_t base_pos;
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.
1889 base_offset = get_delta_base(pack, w_curs, &offset, type,
1890 delta_obj_offset);
1891 if (!base_offset)
1892 return 0;
1893 if (offset_to_pack_pos(pack, base_offset, &base_pos) < 0)
1894 return 0;
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.
1905 if (base_pos >= pos)
1906 return 0;
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.
1916 if (!bitmap_get(reuse, base_pos))
1917 return 0;
1921 * If we got here, then the object is OK to reuse. Mark it.
1923 bitmap_set(reuse, pos);
1924 return 0;
1927 uint32_t midx_preferred_pack(struct bitmap_index *bitmap_git)
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));
1935 int 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)
1940 struct repository *r = the_repository;
1941 struct packed_git *pack;
1942 struct bitmap *result = bitmap_git->result;
1943 struct bitmap *reuse;
1944 struct pack_window *w_curs = NULL;
1945 size_t i = 0;
1946 uint32_t offset;
1947 uint32_t objects_nr;
1949 assert(result);
1951 load_reverse_index(r, bitmap_git);
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;
1959 while (i < result->word_alloc && result->words[i] == (eword_t)~0)
1960 i++;
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.
1970 if (i > objects_nr / BITS_IN_EWORD)
1971 i = objects_nr / BITS_IN_EWORD;
1973 reuse = bitmap_word_alloc(i);
1974 memset(reuse->words, 0xFF, i * sizeof(eword_t));
1976 for (; i < result->word_alloc; ++i) {
1977 eword_t word = result->words[i];
1978 size_t pos = (i * BITS_IN_EWORD);
1980 for (offset = 0; offset < BITS_IN_EWORD; ++offset) {
1981 if ((word >> offset) == 0)
1982 break;
1984 offset += ewah_bit_ctz64(word >> offset);
1985 if (try_partial_reuse(pack, pos + offset,
1986 reuse, &w_curs) < 0) {
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.
1993 * Jump out of both loops to avoid future
1994 * unnecessary calls to try_partial_reuse.
1996 goto done;
2001 done:
2002 unuse_pack(&w_curs);
2004 *entries = bitmap_popcount(reuse);
2005 if (!*entries) {
2006 bitmap_free(reuse);
2007 return -1;
2011 * Drop any reused objects from the result, since they will not
2012 * need to be handled separately.
2014 bitmap_and_not(result, reuse);
2015 *packfile_out = pack;
2016 *reuse_out = reuse;
2017 return 0;
2020 int bitmap_walk_contains(struct bitmap_index *bitmap_git,
2021 struct bitmap *bitmap, const struct object_id *oid)
2023 int idx;
2025 if (!bitmap)
2026 return 0;
2028 idx = bitmap_position(bitmap_git, oid);
2029 return idx >= 0 && bitmap_get(bitmap, idx);
2032 void traverse_bitmap_commit_list(struct bitmap_index *bitmap_git,
2033 struct rev_info *revs,
2034 show_reachable_fn show_reachable)
2036 assert(bitmap_git->result);
2038 show_objects_for_type(bitmap_git, OBJ_COMMIT, show_reachable);
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);
2046 show_extended_objects(bitmap_git, revs, show_reachable);
2049 static uint32_t count_object_type(struct bitmap_index *bitmap_git,
2050 enum object_type type)
2052 struct bitmap *objects = bitmap_git->result;
2053 struct eindex *eindex = &bitmap_git->ext_index;
2055 uint32_t i = 0, count = 0;
2056 struct ewah_iterator it;
2057 eword_t filter;
2059 init_type_iterator(&it, bitmap_git, type);
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);
2066 for (i = 0; i < eindex->count; ++i) {
2067 if (eindex->objects[i]->type == type &&
2068 bitmap_get(objects,
2069 st_add(bitmap_num_objects(bitmap_git), i)))
2070 count++;
2073 return count;
2076 void count_bitmap_commit_list(struct bitmap_index *bitmap_git,
2077 uint32_t *commits, uint32_t *trees,
2078 uint32_t *blobs, uint32_t *tags)
2080 assert(bitmap_git->result);
2082 if (commits)
2083 *commits = count_object_type(bitmap_git, OBJ_COMMIT);
2085 if (trees)
2086 *trees = count_object_type(bitmap_git, OBJ_TREE);
2088 if (blobs)
2089 *blobs = count_object_type(bitmap_git, OBJ_BLOB);
2091 if (tags)
2092 *tags = count_object_type(bitmap_git, OBJ_TAG);
2095 struct bitmap_test_data {
2096 struct bitmap_index *bitmap_git;
2097 struct bitmap *base;
2098 struct bitmap *commits;
2099 struct bitmap *trees;
2100 struct bitmap *blobs;
2101 struct bitmap *tags;
2102 struct progress *prg;
2103 size_t seen;
2106 static void test_bitmap_type(struct bitmap_test_data *tdata,
2107 struct object *obj, int pos)
2109 enum object_type bitmap_type = OBJ_NONE;
2110 int bitmaps_nr = 0;
2112 if (bitmap_get(tdata->commits, pos)) {
2113 bitmap_type = OBJ_COMMIT;
2114 bitmaps_nr++;
2116 if (bitmap_get(tdata->trees, pos)) {
2117 bitmap_type = OBJ_TREE;
2118 bitmaps_nr++;
2120 if (bitmap_get(tdata->blobs, pos)) {
2121 bitmap_type = OBJ_BLOB;
2122 bitmaps_nr++;
2124 if (bitmap_get(tdata->tags, pos)) {
2125 bitmap_type = OBJ_TAG;
2126 bitmaps_nr++;
2129 if (bitmap_type == OBJ_NONE)
2130 die(_("object '%s' not found in type bitmaps"),
2131 oid_to_hex(&obj->oid));
2133 if (bitmaps_nr > 1)
2134 die(_("object '%s' does not have a unique type"),
2135 oid_to_hex(&obj->oid));
2137 if (bitmap_type != obj->type)
2138 die(_("object '%s': real type '%s', expected: '%s'"),
2139 oid_to_hex(&obj->oid),
2140 type_name(obj->type),
2141 type_name(bitmap_type));
2144 static void test_show_object(struct object *object,
2145 const char *name UNUSED,
2146 void *data)
2148 struct bitmap_test_data *tdata = data;
2149 int bitmap_pos;
2151 bitmap_pos = bitmap_position(tdata->bitmap_git, &object->oid);
2152 if (bitmap_pos < 0)
2153 die(_("object not in bitmap: '%s'"), oid_to_hex(&object->oid));
2154 test_bitmap_type(tdata, object, bitmap_pos);
2156 bitmap_set(tdata->base, bitmap_pos);
2157 display_progress(tdata->prg, ++tdata->seen);
2160 static void test_show_commit(struct commit *commit, void *data)
2162 struct bitmap_test_data *tdata = data;
2163 int bitmap_pos;
2165 bitmap_pos = bitmap_position(tdata->bitmap_git,
2166 &commit->object.oid);
2167 if (bitmap_pos < 0)
2168 die(_("object not in bitmap: '%s'"), oid_to_hex(&commit->object.oid));
2169 test_bitmap_type(tdata, &commit->object, bitmap_pos);
2171 bitmap_set(tdata->base, bitmap_pos);
2172 display_progress(tdata->prg, ++tdata->seen);
2175 void test_bitmap_walk(struct rev_info *revs)
2177 struct object *root;
2178 struct bitmap *result = NULL;
2179 size_t result_popcnt;
2180 struct bitmap_test_data tdata;
2181 struct bitmap_index *bitmap_git;
2182 struct ewah_bitmap *bm;
2184 if (!(bitmap_git = prepare_bitmap_git(revs->repo)))
2185 die(_("failed to load bitmap indexes"));
2187 if (revs->pending.nr != 1)
2188 die(_("you must specify exactly one commit to test"));
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");
2195 root = revs->pending.objects[0].item;
2196 bm = bitmap_for_commit(bitmap_git, (struct commit *)root);
2198 if (bm) {
2199 fprintf_ln(stderr, "Found bitmap for '%s'. %d bits / %08x checksum",
2200 oid_to_hex(&root->oid), (int)bm->bit_size, ewah_checksum(bm));
2202 result = ewah_to_bitmap(bm);
2205 if (!result)
2206 die(_("commit '%s' doesn't have an indexed bitmap"), oid_to_hex(&root->oid));
2208 revs->tag_objects = 1;
2209 revs->tree_objects = 1;
2210 revs->blob_objects = 1;
2212 result_popcnt = bitmap_popcount(result);
2214 if (prepare_revision_walk(revs))
2215 die(_("revision walk setup failed"));
2217 tdata.bitmap_git = bitmap_git;
2218 tdata.base = bitmap_new();
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);
2223 tdata.prg = start_progress("Verifying bitmap entries", result_popcnt);
2224 tdata.seen = 0;
2226 traverse_commit_list(revs, &test_show_commit, &test_show_object, &tdata);
2228 stop_progress(&tdata.prg);
2230 if (bitmap_equals(result, tdata.base))
2231 fprintf_ln(stderr, "OK!");
2232 else
2233 die(_("mismatch in bitmap results"));
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);
2241 free_bitmap_index(bitmap_git);
2244 int test_bitmap_commits(struct repository *r)
2246 struct object_id oid;
2247 MAYBE_UNUSED void *value;
2248 struct bitmap_index *bitmap_git = prepare_bitmap_git(r);
2250 if (!bitmap_git)
2251 die(_("failed to load bitmap indexes"));
2254 * As this function is only used to print bitmap selected
2255 * commits, we don't have to read the commit table.
2257 if (bitmap_git->table_lookup) {
2258 if (load_bitmap_entries_v1(bitmap_git) < 0)
2259 die(_("failed to load bitmap indexes"));
2262 kh_foreach(bitmap_git->bitmaps, oid, value, {
2263 printf_ln("%s", oid_to_hex(&oid));
2266 free_bitmap_index(bitmap_git);
2268 return 0;
2271 int test_bitmap_hashes(struct repository *r)
2273 struct bitmap_index *bitmap_git = prepare_bitmap_git(r);
2274 struct object_id oid;
2275 uint32_t i, index_pos;
2277 if (!bitmap_git || !bitmap_git->hashes)
2278 goto cleanup;
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);
2286 nth_bitmap_object_oid(bitmap_git, &oid, index_pos);
2288 printf_ln("%s %"PRIu32"",
2289 oid_to_hex(&oid), get_be32(bitmap_git->hashes + index_pos));
2292 cleanup:
2293 free_bitmap_index(bitmap_git);
2295 return 0;
2298 int rebuild_bitmap(const uint32_t *reposition,
2299 struct ewah_bitmap *source,
2300 struct bitmap *dest)
2302 uint32_t pos = 0;
2303 struct ewah_iterator it;
2304 eword_t word;
2306 ewah_iterator_init(&it, source);
2308 while (ewah_iterator_next(&word, &it)) {
2309 uint32_t offset, bit_pos;
2311 for (offset = 0; offset < BITS_IN_EWORD; ++offset) {
2312 if ((word >> offset) == 0)
2313 break;
2315 offset += ewah_bit_ctz64(word >> offset);
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;
2324 pos += BITS_IN_EWORD;
2326 return 0;
2329 uint32_t *create_bitmap_mapping(struct bitmap_index *bitmap_git,
2330 struct packing_data *mapping)
2332 struct repository *r = the_repository;
2333 uint32_t i, num_objects;
2334 uint32_t *reposition;
2336 if (!bitmap_is_midx(bitmap_git))
2337 load_reverse_index(r, bitmap_git);
2338 else if (load_midx_revindex(bitmap_git->midx))
2339 BUG("rebuild_existing_bitmaps: missing required rev-cache "
2340 "extension");
2342 num_objects = bitmap_num_objects(bitmap_git);
2343 CALLOC_ARRAY(reposition, num_objects);
2345 for (i = 0; i < num_objects; ++i) {
2346 struct object_id oid;
2347 struct object_entry *oe;
2348 uint32_t index_pos;
2350 if (bitmap_is_midx(bitmap_git))
2351 index_pos = pack_pos_to_midx(bitmap_git->midx, i);
2352 else
2353 index_pos = pack_pos_to_index(bitmap_git->pack, i);
2354 nth_bitmap_object_oid(bitmap_git, &oid, index_pos);
2355 oe = packlist_find(mapping, &oid);
2357 if (oe) {
2358 reposition[i] = oe_in_pack_pos(mapping, oe) + 1;
2359 if (bitmap_git->hashes && !oe->hash)
2360 oe->hash = get_be32(bitmap_git->hashes + index_pos);
2364 return reposition;
2367 void free_bitmap_index(struct bitmap_index *b)
2369 if (!b)
2370 return;
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);
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);
2385 kh_destroy_oid_map(b->bitmaps);
2386 free(b->ext_index.objects);
2387 free(b->ext_index.hashes);
2388 kh_destroy_oid_pos(b->ext_index.positions);
2389 bitmap_free(b->result);
2390 bitmap_free(b->haves);
2391 if (bitmap_is_midx(b)) {
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.
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.
2402 close_midx_revindex(b->midx);
2404 free(b);
2407 int bitmap_has_oid_in_uninteresting(struct bitmap_index *bitmap_git,
2408 const struct object_id *oid)
2410 return bitmap_git &&
2411 bitmap_walk_contains(bitmap_git, bitmap_git->haves, oid);
2414 static off_t get_disk_usage_for_type(struct bitmap_index *bitmap_git,
2415 enum object_type object_type)
2417 struct bitmap *result = bitmap_git->result;
2418 off_t total = 0;
2419 struct ewah_iterator it;
2420 eword_t filter;
2421 size_t i;
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;
2430 if (!word)
2431 continue;
2433 for (offset = 0; offset < BITS_IN_EWORD; offset++) {
2434 if ((word >> offset) == 0)
2435 break;
2437 offset += ewah_bit_ctz64(word >> offset);
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);
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];
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);
2451 die(_("could not find '%s' in pack '%s' at offset %"PRIuMAX),
2452 oid_to_hex(&oid),
2453 pack->pack_name,
2454 (uintmax_t)offset);
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);
2466 return total;
2469 static off_t get_disk_usage_for_extended(struct bitmap_index *bitmap_git)
2471 struct bitmap *result = bitmap_git->result;
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;
2478 oi.disk_sizep = &object_size;
2480 for (i = 0; i < eindex->count; i++) {
2481 struct object *obj = eindex->objects[i];
2483 if (!bitmap_get(result,
2484 st_add(bitmap_num_objects(bitmap_git), i)))
2485 continue;
2487 if (oid_object_info_extended(the_repository, &obj->oid, &oi, 0) < 0)
2488 die(_("unable to get disk usage of '%s'"),
2489 oid_to_hex(&obj->oid));
2491 total += object_size;
2493 return total;
2496 off_t get_disk_usage_from_bitmap(struct bitmap_index *bitmap_git,
2497 struct rev_info *revs)
2499 off_t total = 0;
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);
2509 total += get_disk_usage_for_extended(bitmap_git);
2511 return total;
2514 int bitmap_is_midx(struct bitmap_index *bitmap_git)
2516 return !!bitmap_git->midx;
2519 const struct string_list *bitmap_preferred_tips(struct repository *r)
2521 const struct string_list *dest;
2523 if (!repo_config_get_string_multi(r, "pack.preferbitmaptips", &dest))
2524 return dest;
2525 return NULL;
2528 int bitmap_is_preferred_refname(struct repository *r, const char *refname)
2530 const struct string_list *preferred_tips = bitmap_preferred_tips(r);
2531 struct string_list_item *item;
2533 if (!preferred_tips)
2534 return 0;
2536 for_each_string_list_item(item, preferred_tips) {
2537 if (starts_with(refname, item->string))
2538 return 1;
2541 return 0;
2544 static int verify_bitmap_file(const char *name)
2546 struct stat st;
2547 unsigned char *data;
2548 int fd = git_open(name);
2549 int res = 0;
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;
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);
2564 munmap(data, st.st_size);
2565 return res;
2568 int verify_bitmap_files(struct repository *r)
2570 int res = 0;
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);
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);
2586 return res;