midx: infer preferred pack when not given one
[git/debian.git] / midx.c
blob67de1dbaeb6dfc43e90238613836dce7b9cf982e
1 #include "cache.h"
2 #include "config.h"
3 #include "csum-file.h"
4 #include "dir.h"
5 #include "lockfile.h"
6 #include "packfile.h"
7 #include "object-store.h"
8 #include "hash-lookup.h"
9 #include "midx.h"
10 #include "progress.h"
11 #include "trace2.h"
12 #include "run-command.h"
13 #include "repository.h"
14 #include "chunk-format.h"
15 #include "pack.h"
17 #define MIDX_SIGNATURE 0x4d494458 /* "MIDX" */
18 #define MIDX_VERSION 1
19 #define MIDX_BYTE_FILE_VERSION 4
20 #define MIDX_BYTE_HASH_VERSION 5
21 #define MIDX_BYTE_NUM_CHUNKS 6
22 #define MIDX_BYTE_NUM_PACKS 8
23 #define MIDX_HEADER_SIZE 12
24 #define MIDX_MIN_SIZE (MIDX_HEADER_SIZE + the_hash_algo->rawsz)
26 #define MIDX_CHUNK_ALIGNMENT 4
27 #define MIDX_CHUNKID_PACKNAMES 0x504e414d /* "PNAM" */
28 #define MIDX_CHUNKID_OIDFANOUT 0x4f494446 /* "OIDF" */
29 #define MIDX_CHUNKID_OIDLOOKUP 0x4f49444c /* "OIDL" */
30 #define MIDX_CHUNKID_OBJECTOFFSETS 0x4f4f4646 /* "OOFF" */
31 #define MIDX_CHUNKID_LARGEOFFSETS 0x4c4f4646 /* "LOFF" */
32 #define MIDX_CHUNK_FANOUT_SIZE (sizeof(uint32_t) * 256)
33 #define MIDX_CHUNK_OFFSET_WIDTH (2 * sizeof(uint32_t))
34 #define MIDX_CHUNK_LARGE_OFFSET_WIDTH (sizeof(uint64_t))
35 #define MIDX_LARGE_OFFSET_NEEDED 0x80000000
37 #define PACK_EXPIRED UINT_MAX
39 static uint8_t oid_version(void)
41 switch (hash_algo_by_ptr(the_hash_algo)) {
42 case GIT_HASH_SHA1:
43 return 1;
44 case GIT_HASH_SHA256:
45 return 2;
46 default:
47 die(_("invalid hash version"));
51 static const unsigned char *get_midx_checksum(struct multi_pack_index *m)
53 return m->data + m->data_len - the_hash_algo->rawsz;
56 static char *get_midx_filename(const char *object_dir)
58 return xstrfmt("%s/pack/multi-pack-index", object_dir);
61 char *get_midx_rev_filename(struct multi_pack_index *m)
63 return xstrfmt("%s/pack/multi-pack-index-%s.rev",
64 m->object_dir, hash_to_hex(get_midx_checksum(m)));
67 static int midx_read_oid_fanout(const unsigned char *chunk_start,
68 size_t chunk_size, void *data)
70 struct multi_pack_index *m = data;
71 m->chunk_oid_fanout = (uint32_t *)chunk_start;
73 if (chunk_size != 4 * 256) {
74 error(_("multi-pack-index OID fanout is of the wrong size"));
75 return 1;
77 return 0;
80 struct multi_pack_index *load_multi_pack_index(const char *object_dir, int local)
82 struct multi_pack_index *m = NULL;
83 int fd;
84 struct stat st;
85 size_t midx_size;
86 void *midx_map = NULL;
87 uint32_t hash_version;
88 char *midx_name = get_midx_filename(object_dir);
89 uint32_t i;
90 const char *cur_pack_name;
91 struct chunkfile *cf = NULL;
93 fd = git_open(midx_name);
95 if (fd < 0)
96 goto cleanup_fail;
97 if (fstat(fd, &st)) {
98 error_errno(_("failed to read %s"), midx_name);
99 goto cleanup_fail;
102 midx_size = xsize_t(st.st_size);
104 if (midx_size < MIDX_MIN_SIZE) {
105 error(_("multi-pack-index file %s is too small"), midx_name);
106 goto cleanup_fail;
109 FREE_AND_NULL(midx_name);
111 midx_map = xmmap(NULL, midx_size, PROT_READ, MAP_PRIVATE, fd, 0);
112 close(fd);
114 FLEX_ALLOC_STR(m, object_dir, object_dir);
115 m->data = midx_map;
116 m->data_len = midx_size;
117 m->local = local;
119 m->signature = get_be32(m->data);
120 if (m->signature != MIDX_SIGNATURE)
121 die(_("multi-pack-index signature 0x%08x does not match signature 0x%08x"),
122 m->signature, MIDX_SIGNATURE);
124 m->version = m->data[MIDX_BYTE_FILE_VERSION];
125 if (m->version != MIDX_VERSION)
126 die(_("multi-pack-index version %d not recognized"),
127 m->version);
129 hash_version = m->data[MIDX_BYTE_HASH_VERSION];
130 if (hash_version != oid_version()) {
131 error(_("multi-pack-index hash version %u does not match version %u"),
132 hash_version, oid_version());
133 goto cleanup_fail;
135 m->hash_len = the_hash_algo->rawsz;
137 m->num_chunks = m->data[MIDX_BYTE_NUM_CHUNKS];
139 m->num_packs = get_be32(m->data + MIDX_BYTE_NUM_PACKS);
141 cf = init_chunkfile(NULL);
143 if (read_table_of_contents(cf, m->data, midx_size,
144 MIDX_HEADER_SIZE, m->num_chunks))
145 goto cleanup_fail;
147 if (pair_chunk(cf, MIDX_CHUNKID_PACKNAMES, &m->chunk_pack_names) == CHUNK_NOT_FOUND)
148 die(_("multi-pack-index missing required pack-name chunk"));
149 if (read_chunk(cf, MIDX_CHUNKID_OIDFANOUT, midx_read_oid_fanout, m) == CHUNK_NOT_FOUND)
150 die(_("multi-pack-index missing required OID fanout chunk"));
151 if (pair_chunk(cf, MIDX_CHUNKID_OIDLOOKUP, &m->chunk_oid_lookup) == CHUNK_NOT_FOUND)
152 die(_("multi-pack-index missing required OID lookup chunk"));
153 if (pair_chunk(cf, MIDX_CHUNKID_OBJECTOFFSETS, &m->chunk_object_offsets) == CHUNK_NOT_FOUND)
154 die(_("multi-pack-index missing required object offsets chunk"));
156 pair_chunk(cf, MIDX_CHUNKID_LARGEOFFSETS, &m->chunk_large_offsets);
158 m->num_objects = ntohl(m->chunk_oid_fanout[255]);
160 CALLOC_ARRAY(m->pack_names, m->num_packs);
161 CALLOC_ARRAY(m->packs, m->num_packs);
163 cur_pack_name = (const char *)m->chunk_pack_names;
164 for (i = 0; i < m->num_packs; i++) {
165 m->pack_names[i] = cur_pack_name;
167 cur_pack_name += strlen(cur_pack_name) + 1;
169 if (i && strcmp(m->pack_names[i], m->pack_names[i - 1]) <= 0)
170 die(_("multi-pack-index pack names out of order: '%s' before '%s'"),
171 m->pack_names[i - 1],
172 m->pack_names[i]);
175 trace2_data_intmax("midx", the_repository, "load/num_packs", m->num_packs);
176 trace2_data_intmax("midx", the_repository, "load/num_objects", m->num_objects);
178 return m;
180 cleanup_fail:
181 free(m);
182 free(midx_name);
183 free(cf);
184 if (midx_map)
185 munmap(midx_map, midx_size);
186 if (0 <= fd)
187 close(fd);
188 return NULL;
191 void close_midx(struct multi_pack_index *m)
193 uint32_t i;
195 if (!m)
196 return;
198 munmap((unsigned char *)m->data, m->data_len);
200 for (i = 0; i < m->num_packs; i++) {
201 if (m->packs[i])
202 m->packs[i]->multi_pack_index = 0;
204 FREE_AND_NULL(m->packs);
205 FREE_AND_NULL(m->pack_names);
208 int prepare_midx_pack(struct repository *r, struct multi_pack_index *m, uint32_t pack_int_id)
210 struct strbuf pack_name = STRBUF_INIT;
211 struct packed_git *p;
213 if (pack_int_id >= m->num_packs)
214 die(_("bad pack-int-id: %u (%u total packs)"),
215 pack_int_id, m->num_packs);
217 if (m->packs[pack_int_id])
218 return 0;
220 strbuf_addf(&pack_name, "%s/pack/%s", m->object_dir,
221 m->pack_names[pack_int_id]);
223 p = add_packed_git(pack_name.buf, pack_name.len, m->local);
224 strbuf_release(&pack_name);
226 if (!p)
227 return 1;
229 p->multi_pack_index = 1;
230 m->packs[pack_int_id] = p;
231 install_packed_git(r, p);
232 list_add_tail(&p->mru, &r->objects->packed_git_mru);
234 return 0;
237 int bsearch_midx(const struct object_id *oid, struct multi_pack_index *m, uint32_t *result)
239 return bsearch_hash(oid->hash, m->chunk_oid_fanout, m->chunk_oid_lookup,
240 the_hash_algo->rawsz, result);
243 struct object_id *nth_midxed_object_oid(struct object_id *oid,
244 struct multi_pack_index *m,
245 uint32_t n)
247 if (n >= m->num_objects)
248 return NULL;
250 oidread(oid, m->chunk_oid_lookup + m->hash_len * n);
251 return oid;
254 off_t nth_midxed_offset(struct multi_pack_index *m, uint32_t pos)
256 const unsigned char *offset_data;
257 uint32_t offset32;
259 offset_data = m->chunk_object_offsets + (off_t)pos * MIDX_CHUNK_OFFSET_WIDTH;
260 offset32 = get_be32(offset_data + sizeof(uint32_t));
262 if (m->chunk_large_offsets && offset32 & MIDX_LARGE_OFFSET_NEEDED) {
263 if (sizeof(off_t) < sizeof(uint64_t))
264 die(_("multi-pack-index stores a 64-bit offset, but off_t is too small"));
266 offset32 ^= MIDX_LARGE_OFFSET_NEEDED;
267 return get_be64(m->chunk_large_offsets + sizeof(uint64_t) * offset32);
270 return offset32;
273 uint32_t nth_midxed_pack_int_id(struct multi_pack_index *m, uint32_t pos)
275 return get_be32(m->chunk_object_offsets +
276 (off_t)pos * MIDX_CHUNK_OFFSET_WIDTH);
279 static int nth_midxed_pack_entry(struct repository *r,
280 struct multi_pack_index *m,
281 struct pack_entry *e,
282 uint32_t pos)
284 uint32_t pack_int_id;
285 struct packed_git *p;
287 if (pos >= m->num_objects)
288 return 0;
290 pack_int_id = nth_midxed_pack_int_id(m, pos);
292 if (prepare_midx_pack(r, m, pack_int_id))
293 return 0;
294 p = m->packs[pack_int_id];
297 * We are about to tell the caller where they can locate the
298 * requested object. We better make sure the packfile is
299 * still here and can be accessed before supplying that
300 * answer, as it may have been deleted since the MIDX was
301 * loaded!
303 if (!is_pack_valid(p))
304 return 0;
306 if (p->num_bad_objects) {
307 uint32_t i;
308 struct object_id oid;
309 nth_midxed_object_oid(&oid, m, pos);
310 for (i = 0; i < p->num_bad_objects; i++)
311 if (hasheq(oid.hash,
312 p->bad_object_sha1 + the_hash_algo->rawsz * i))
313 return 0;
316 e->offset = nth_midxed_offset(m, pos);
317 e->p = p;
319 return 1;
322 int fill_midx_entry(struct repository * r,
323 const struct object_id *oid,
324 struct pack_entry *e,
325 struct multi_pack_index *m)
327 uint32_t pos;
329 if (!bsearch_midx(oid, m, &pos))
330 return 0;
332 return nth_midxed_pack_entry(r, m, e, pos);
335 /* Match "foo.idx" against either "foo.pack" _or_ "foo.idx". */
336 static int cmp_idx_or_pack_name(const char *idx_or_pack_name,
337 const char *idx_name)
339 /* Skip past any initial matching prefix. */
340 while (*idx_name && *idx_name == *idx_or_pack_name) {
341 idx_name++;
342 idx_or_pack_name++;
346 * If we didn't match completely, we may have matched "pack-1234." and
347 * be left with "idx" and "pack" respectively, which is also OK. We do
348 * not have to check for "idx" and "idx", because that would have been
349 * a complete match (and in that case these strcmps will be false, but
350 * we'll correctly return 0 from the final strcmp() below.
352 * Technically this matches "fooidx" and "foopack", but we'd never have
353 * such names in the first place.
355 if (!strcmp(idx_name, "idx") && !strcmp(idx_or_pack_name, "pack"))
356 return 0;
359 * This not only checks for a complete match, but also orders based on
360 * the first non-identical character, which means our ordering will
361 * match a raw strcmp(). That makes it OK to use this to binary search
362 * a naively-sorted list.
364 return strcmp(idx_or_pack_name, idx_name);
367 int midx_contains_pack(struct multi_pack_index *m, const char *idx_or_pack_name)
369 uint32_t first = 0, last = m->num_packs;
371 while (first < last) {
372 uint32_t mid = first + (last - first) / 2;
373 const char *current;
374 int cmp;
376 current = m->pack_names[mid];
377 cmp = cmp_idx_or_pack_name(idx_or_pack_name, current);
378 if (!cmp)
379 return 1;
380 if (cmp > 0) {
381 first = mid + 1;
382 continue;
384 last = mid;
387 return 0;
390 int prepare_multi_pack_index_one(struct repository *r, const char *object_dir, int local)
392 struct multi_pack_index *m;
393 struct multi_pack_index *m_search;
395 prepare_repo_settings(r);
396 if (!r->settings.core_multi_pack_index)
397 return 0;
399 for (m_search = r->objects->multi_pack_index; m_search; m_search = m_search->next)
400 if (!strcmp(object_dir, m_search->object_dir))
401 return 1;
403 m = load_multi_pack_index(object_dir, local);
405 if (m) {
406 struct multi_pack_index *mp = r->objects->multi_pack_index;
407 if (mp) {
408 m->next = mp->next;
409 mp->next = m;
410 } else
411 r->objects->multi_pack_index = m;
412 return 1;
415 return 0;
418 static size_t write_midx_header(struct hashfile *f,
419 unsigned char num_chunks,
420 uint32_t num_packs)
422 hashwrite_be32(f, MIDX_SIGNATURE);
423 hashwrite_u8(f, MIDX_VERSION);
424 hashwrite_u8(f, oid_version());
425 hashwrite_u8(f, num_chunks);
426 hashwrite_u8(f, 0); /* unused */
427 hashwrite_be32(f, num_packs);
429 return MIDX_HEADER_SIZE;
432 struct pack_info {
433 uint32_t orig_pack_int_id;
434 char *pack_name;
435 struct packed_git *p;
436 unsigned expired : 1;
439 static int pack_info_compare(const void *_a, const void *_b)
441 struct pack_info *a = (struct pack_info *)_a;
442 struct pack_info *b = (struct pack_info *)_b;
443 return strcmp(a->pack_name, b->pack_name);
446 static int idx_or_pack_name_cmp(const void *_va, const void *_vb)
448 const char *pack_name = _va;
449 const struct pack_info *compar = _vb;
451 return cmp_idx_or_pack_name(pack_name, compar->pack_name);
454 struct write_midx_context {
455 struct pack_info *info;
456 uint32_t nr;
457 uint32_t alloc;
458 struct multi_pack_index *m;
459 struct progress *progress;
460 unsigned pack_paths_checked;
462 struct pack_midx_entry *entries;
463 uint32_t entries_nr;
465 uint32_t *pack_perm;
466 uint32_t *pack_order;
467 unsigned large_offsets_needed:1;
468 uint32_t num_large_offsets;
470 int preferred_pack_idx;
473 static void add_pack_to_midx(const char *full_path, size_t full_path_len,
474 const char *file_name, void *data)
476 struct write_midx_context *ctx = data;
478 if (ends_with(file_name, ".idx")) {
479 display_progress(ctx->progress, ++ctx->pack_paths_checked);
480 if (ctx->m && midx_contains_pack(ctx->m, file_name))
481 return;
483 ALLOC_GROW(ctx->info, ctx->nr + 1, ctx->alloc);
485 ctx->info[ctx->nr].p = add_packed_git(full_path,
486 full_path_len,
489 if (!ctx->info[ctx->nr].p) {
490 warning(_("failed to add packfile '%s'"),
491 full_path);
492 return;
495 if (open_pack_index(ctx->info[ctx->nr].p)) {
496 warning(_("failed to open pack-index '%s'"),
497 full_path);
498 close_pack(ctx->info[ctx->nr].p);
499 FREE_AND_NULL(ctx->info[ctx->nr].p);
500 return;
503 ctx->info[ctx->nr].pack_name = xstrdup(file_name);
504 ctx->info[ctx->nr].orig_pack_int_id = ctx->nr;
505 ctx->info[ctx->nr].expired = 0;
506 ctx->nr++;
510 struct pack_midx_entry {
511 struct object_id oid;
512 uint32_t pack_int_id;
513 time_t pack_mtime;
514 uint64_t offset;
515 unsigned preferred : 1;
518 static int midx_oid_compare(const void *_a, const void *_b)
520 const struct pack_midx_entry *a = (const struct pack_midx_entry *)_a;
521 const struct pack_midx_entry *b = (const struct pack_midx_entry *)_b;
522 int cmp = oidcmp(&a->oid, &b->oid);
524 if (cmp)
525 return cmp;
527 /* Sort objects in a preferred pack first when multiple copies exist. */
528 if (a->preferred > b->preferred)
529 return -1;
530 if (a->preferred < b->preferred)
531 return 1;
533 if (a->pack_mtime > b->pack_mtime)
534 return -1;
535 else if (a->pack_mtime < b->pack_mtime)
536 return 1;
538 return a->pack_int_id - b->pack_int_id;
541 static int nth_midxed_pack_midx_entry(struct multi_pack_index *m,
542 struct pack_midx_entry *e,
543 uint32_t pos)
545 if (pos >= m->num_objects)
546 return 1;
548 nth_midxed_object_oid(&e->oid, m, pos);
549 e->pack_int_id = nth_midxed_pack_int_id(m, pos);
550 e->offset = nth_midxed_offset(m, pos);
552 /* consider objects in midx to be from "old" packs */
553 e->pack_mtime = 0;
554 return 0;
557 static void fill_pack_entry(uint32_t pack_int_id,
558 struct packed_git *p,
559 uint32_t cur_object,
560 struct pack_midx_entry *entry,
561 int preferred)
563 if (nth_packed_object_id(&entry->oid, p, cur_object) < 0)
564 die(_("failed to locate object %d in packfile"), cur_object);
566 entry->pack_int_id = pack_int_id;
567 entry->pack_mtime = p->mtime;
569 entry->offset = nth_packed_object_offset(p, cur_object);
570 entry->preferred = !!preferred;
574 * It is possible to artificially get into a state where there are many
575 * duplicate copies of objects. That can create high memory pressure if
576 * we are to create a list of all objects before de-duplication. To reduce
577 * this memory pressure without a significant performance drop, automatically
578 * group objects by the first byte of their object id. Use the IDX fanout
579 * tables to group the data, copy to a local array, then sort.
581 * Copy only the de-duplicated entries (selected by most-recent modified time
582 * of a packfile containing the object).
584 static struct pack_midx_entry *get_sorted_entries(struct multi_pack_index *m,
585 struct pack_info *info,
586 uint32_t nr_packs,
587 uint32_t *nr_objects,
588 int preferred_pack)
590 uint32_t cur_fanout, cur_pack, cur_object;
591 uint32_t alloc_fanout, alloc_objects, total_objects = 0;
592 struct pack_midx_entry *entries_by_fanout = NULL;
593 struct pack_midx_entry *deduplicated_entries = NULL;
594 uint32_t start_pack = m ? m->num_packs : 0;
596 for (cur_pack = start_pack; cur_pack < nr_packs; cur_pack++)
597 total_objects += info[cur_pack].p->num_objects;
600 * As we de-duplicate by fanout value, we expect the fanout
601 * slices to be evenly distributed, with some noise. Hence,
602 * allocate slightly more than one 256th.
604 alloc_objects = alloc_fanout = total_objects > 3200 ? total_objects / 200 : 16;
606 ALLOC_ARRAY(entries_by_fanout, alloc_fanout);
607 ALLOC_ARRAY(deduplicated_entries, alloc_objects);
608 *nr_objects = 0;
610 for (cur_fanout = 0; cur_fanout < 256; cur_fanout++) {
611 uint32_t nr_fanout = 0;
613 if (m) {
614 uint32_t start = 0, end;
616 if (cur_fanout)
617 start = ntohl(m->chunk_oid_fanout[cur_fanout - 1]);
618 end = ntohl(m->chunk_oid_fanout[cur_fanout]);
620 for (cur_object = start; cur_object < end; cur_object++) {
621 ALLOC_GROW(entries_by_fanout, nr_fanout + 1, alloc_fanout);
622 nth_midxed_pack_midx_entry(m,
623 &entries_by_fanout[nr_fanout],
624 cur_object);
625 if (nth_midxed_pack_int_id(m, cur_object) == preferred_pack)
626 entries_by_fanout[nr_fanout].preferred = 1;
627 else
628 entries_by_fanout[nr_fanout].preferred = 0;
629 nr_fanout++;
633 for (cur_pack = start_pack; cur_pack < nr_packs; cur_pack++) {
634 uint32_t start = 0, end;
635 int preferred = cur_pack == preferred_pack;
637 if (cur_fanout)
638 start = get_pack_fanout(info[cur_pack].p, cur_fanout - 1);
639 end = get_pack_fanout(info[cur_pack].p, cur_fanout);
641 for (cur_object = start; cur_object < end; cur_object++) {
642 ALLOC_GROW(entries_by_fanout, nr_fanout + 1, alloc_fanout);
643 fill_pack_entry(cur_pack,
644 info[cur_pack].p,
645 cur_object,
646 &entries_by_fanout[nr_fanout],
647 preferred);
648 nr_fanout++;
652 QSORT(entries_by_fanout, nr_fanout, midx_oid_compare);
655 * The batch is now sorted by OID and then mtime (descending).
656 * Take only the first duplicate.
658 for (cur_object = 0; cur_object < nr_fanout; cur_object++) {
659 if (cur_object && oideq(&entries_by_fanout[cur_object - 1].oid,
660 &entries_by_fanout[cur_object].oid))
661 continue;
663 ALLOC_GROW(deduplicated_entries, *nr_objects + 1, alloc_objects);
664 memcpy(&deduplicated_entries[*nr_objects],
665 &entries_by_fanout[cur_object],
666 sizeof(struct pack_midx_entry));
667 (*nr_objects)++;
671 free(entries_by_fanout);
672 return deduplicated_entries;
675 static int write_midx_pack_names(struct hashfile *f, void *data)
677 struct write_midx_context *ctx = data;
678 uint32_t i;
679 unsigned char padding[MIDX_CHUNK_ALIGNMENT];
680 size_t written = 0;
682 for (i = 0; i < ctx->nr; i++) {
683 size_t writelen;
685 if (ctx->info[i].expired)
686 continue;
688 if (i && strcmp(ctx->info[i].pack_name, ctx->info[i - 1].pack_name) <= 0)
689 BUG("incorrect pack-file order: %s before %s",
690 ctx->info[i - 1].pack_name,
691 ctx->info[i].pack_name);
693 writelen = strlen(ctx->info[i].pack_name) + 1;
694 hashwrite(f, ctx->info[i].pack_name, writelen);
695 written += writelen;
698 /* add padding to be aligned */
699 i = MIDX_CHUNK_ALIGNMENT - (written % MIDX_CHUNK_ALIGNMENT);
700 if (i < MIDX_CHUNK_ALIGNMENT) {
701 memset(padding, 0, sizeof(padding));
702 hashwrite(f, padding, i);
705 return 0;
708 static int write_midx_oid_fanout(struct hashfile *f,
709 void *data)
711 struct write_midx_context *ctx = data;
712 struct pack_midx_entry *list = ctx->entries;
713 struct pack_midx_entry *last = ctx->entries + ctx->entries_nr;
714 uint32_t count = 0;
715 uint32_t i;
718 * Write the first-level table (the list is sorted,
719 * but we use a 256-entry lookup to be able to avoid
720 * having to do eight extra binary search iterations).
722 for (i = 0; i < 256; i++) {
723 struct pack_midx_entry *next = list;
725 while (next < last && next->oid.hash[0] == i) {
726 count++;
727 next++;
730 hashwrite_be32(f, count);
731 list = next;
734 return 0;
737 static int write_midx_oid_lookup(struct hashfile *f,
738 void *data)
740 struct write_midx_context *ctx = data;
741 unsigned char hash_len = the_hash_algo->rawsz;
742 struct pack_midx_entry *list = ctx->entries;
743 uint32_t i;
745 for (i = 0; i < ctx->entries_nr; i++) {
746 struct pack_midx_entry *obj = list++;
748 if (i < ctx->entries_nr - 1) {
749 struct pack_midx_entry *next = list;
750 if (oidcmp(&obj->oid, &next->oid) >= 0)
751 BUG("OIDs not in order: %s >= %s",
752 oid_to_hex(&obj->oid),
753 oid_to_hex(&next->oid));
756 hashwrite(f, obj->oid.hash, (int)hash_len);
759 return 0;
762 static int write_midx_object_offsets(struct hashfile *f,
763 void *data)
765 struct write_midx_context *ctx = data;
766 struct pack_midx_entry *list = ctx->entries;
767 uint32_t i, nr_large_offset = 0;
769 for (i = 0; i < ctx->entries_nr; i++) {
770 struct pack_midx_entry *obj = list++;
772 if (ctx->pack_perm[obj->pack_int_id] == PACK_EXPIRED)
773 BUG("object %s is in an expired pack with int-id %d",
774 oid_to_hex(&obj->oid),
775 obj->pack_int_id);
777 hashwrite_be32(f, ctx->pack_perm[obj->pack_int_id]);
779 if (ctx->large_offsets_needed && obj->offset >> 31)
780 hashwrite_be32(f, MIDX_LARGE_OFFSET_NEEDED | nr_large_offset++);
781 else if (!ctx->large_offsets_needed && obj->offset >> 32)
782 BUG("object %s requires a large offset (%"PRIx64") but the MIDX is not writing large offsets!",
783 oid_to_hex(&obj->oid),
784 obj->offset);
785 else
786 hashwrite_be32(f, (uint32_t)obj->offset);
789 return 0;
792 static int write_midx_large_offsets(struct hashfile *f,
793 void *data)
795 struct write_midx_context *ctx = data;
796 struct pack_midx_entry *list = ctx->entries;
797 struct pack_midx_entry *end = ctx->entries + ctx->entries_nr;
798 uint32_t nr_large_offset = ctx->num_large_offsets;
800 while (nr_large_offset) {
801 struct pack_midx_entry *obj;
802 uint64_t offset;
804 if (list >= end)
805 BUG("too many large-offset objects");
807 obj = list++;
808 offset = obj->offset;
810 if (!(offset >> 31))
811 continue;
813 hashwrite_be64(f, offset);
815 nr_large_offset--;
818 return 0;
821 struct midx_pack_order_data {
822 uint32_t nr;
823 uint32_t pack;
824 off_t offset;
827 static int midx_pack_order_cmp(const void *va, const void *vb)
829 const struct midx_pack_order_data *a = va, *b = vb;
830 if (a->pack < b->pack)
831 return -1;
832 else if (a->pack > b->pack)
833 return 1;
834 else if (a->offset < b->offset)
835 return -1;
836 else if (a->offset > b->offset)
837 return 1;
838 else
839 return 0;
842 static uint32_t *midx_pack_order(struct write_midx_context *ctx)
844 struct midx_pack_order_data *data;
845 uint32_t *pack_order;
846 uint32_t i;
848 ALLOC_ARRAY(data, ctx->entries_nr);
849 for (i = 0; i < ctx->entries_nr; i++) {
850 struct pack_midx_entry *e = &ctx->entries[i];
851 data[i].nr = i;
852 data[i].pack = ctx->pack_perm[e->pack_int_id];
853 if (!e->preferred)
854 data[i].pack |= (1U << 31);
855 data[i].offset = e->offset;
858 QSORT(data, ctx->entries_nr, midx_pack_order_cmp);
860 ALLOC_ARRAY(pack_order, ctx->entries_nr);
861 for (i = 0; i < ctx->entries_nr; i++)
862 pack_order[i] = data[i].nr;
863 free(data);
865 return pack_order;
868 static void write_midx_reverse_index(char *midx_name, unsigned char *midx_hash,
869 struct write_midx_context *ctx)
871 struct strbuf buf = STRBUF_INIT;
872 const char *tmp_file;
874 strbuf_addf(&buf, "%s-%s.rev", midx_name, hash_to_hex(midx_hash));
876 tmp_file = write_rev_file_order(NULL, ctx->pack_order, ctx->entries_nr,
877 midx_hash, WRITE_REV);
879 if (finalize_object_file(tmp_file, buf.buf))
880 die(_("cannot store reverse index file"));
882 strbuf_release(&buf);
885 static void clear_midx_files_ext(const char *object_dir, const char *ext,
886 unsigned char *keep_hash);
888 static int midx_checksum_valid(struct multi_pack_index *m)
890 return hashfile_checksum_valid(m->data, m->data_len);
893 static int write_midx_internal(const char *object_dir, struct multi_pack_index *m,
894 struct string_list *packs_to_drop,
895 const char *preferred_pack_name,
896 unsigned flags)
898 char *midx_name;
899 unsigned char midx_hash[GIT_MAX_RAWSZ];
900 uint32_t i;
901 struct hashfile *f = NULL;
902 struct lock_file lk;
903 struct write_midx_context ctx = { 0 };
904 int pack_name_concat_len = 0;
905 int dropped_packs = 0;
906 int result = 0;
907 struct chunkfile *cf;
909 midx_name = get_midx_filename(object_dir);
910 if (safe_create_leading_directories(midx_name))
911 die_errno(_("unable to create leading directories of %s"),
912 midx_name);
914 if (m)
915 ctx.m = m;
916 else
917 ctx.m = load_multi_pack_index(object_dir, 1);
919 if (ctx.m && !midx_checksum_valid(ctx.m)) {
920 warning(_("ignoring existing multi-pack-index; checksum mismatch"));
921 ctx.m = NULL;
924 ctx.nr = 0;
925 ctx.alloc = ctx.m ? ctx.m->num_packs : 16;
926 ctx.info = NULL;
927 ALLOC_ARRAY(ctx.info, ctx.alloc);
929 if (ctx.m) {
930 for (i = 0; i < ctx.m->num_packs; i++) {
931 ALLOC_GROW(ctx.info, ctx.nr + 1, ctx.alloc);
933 ctx.info[ctx.nr].orig_pack_int_id = i;
934 ctx.info[ctx.nr].pack_name = xstrdup(ctx.m->pack_names[i]);
935 ctx.info[ctx.nr].p = NULL;
936 ctx.info[ctx.nr].expired = 0;
938 if (flags & MIDX_WRITE_REV_INDEX) {
940 * If generating a reverse index, need to have
941 * packed_git's loaded to compare their
942 * mtimes and object count.
944 if (prepare_midx_pack(the_repository, ctx.m, i)) {
945 error(_("could not load pack"));
946 result = 1;
947 goto cleanup;
950 if (open_pack_index(ctx.m->packs[i]))
951 die(_("could not open index for %s"),
952 ctx.m->packs[i]->pack_name);
953 ctx.info[ctx.nr].p = ctx.m->packs[i];
956 ctx.nr++;
960 ctx.pack_paths_checked = 0;
961 if (flags & MIDX_PROGRESS)
962 ctx.progress = start_delayed_progress(_("Adding packfiles to multi-pack-index"), 0);
963 else
964 ctx.progress = NULL;
966 for_each_file_in_pack_dir(object_dir, add_pack_to_midx, &ctx);
967 stop_progress(&ctx.progress);
969 if (ctx.m && ctx.nr == ctx.m->num_packs && !packs_to_drop)
970 goto cleanup;
972 if (preferred_pack_name) {
973 int found = 0;
974 for (i = 0; i < ctx.nr; i++) {
975 if (!cmp_idx_or_pack_name(preferred_pack_name,
976 ctx.info[i].pack_name)) {
977 ctx.preferred_pack_idx = i;
978 found = 1;
979 break;
983 if (!found)
984 warning(_("unknown preferred pack: '%s'"),
985 preferred_pack_name);
986 } else if (ctx.nr && (flags & MIDX_WRITE_REV_INDEX)) {
987 struct packed_git *oldest = ctx.info[ctx.preferred_pack_idx].p;
988 ctx.preferred_pack_idx = 0;
990 if (packs_to_drop && packs_to_drop->nr)
991 BUG("cannot write a MIDX bitmap during expiration");
994 * set a preferred pack when writing a bitmap to ensure that
995 * the pack from which the first object is selected in pseudo
996 * pack-order has all of its objects selected from that pack
997 * (and not another pack containing a duplicate)
999 for (i = 1; i < ctx.nr; i++) {
1000 struct packed_git *p = ctx.info[i].p;
1002 if (!oldest->num_objects || p->mtime < oldest->mtime) {
1003 oldest = p;
1004 ctx.preferred_pack_idx = i;
1008 if (!oldest->num_objects) {
1010 * If all packs are empty; unset the preferred index.
1011 * This is acceptable since there will be no duplicate
1012 * objects to resolve, so the preferred value doesn't
1013 * matter.
1015 ctx.preferred_pack_idx = -1;
1017 } else {
1019 * otherwise don't mark any pack as preferred to avoid
1020 * interfering with expiration logic below
1022 ctx.preferred_pack_idx = -1;
1025 if (ctx.preferred_pack_idx > -1) {
1026 struct packed_git *preferred = ctx.info[ctx.preferred_pack_idx].p;
1027 if (!preferred->num_objects) {
1028 error(_("cannot select preferred pack %s with no objects"),
1029 preferred->pack_name);
1030 result = 1;
1031 goto cleanup;
1035 ctx.entries = get_sorted_entries(ctx.m, ctx.info, ctx.nr, &ctx.entries_nr,
1036 ctx.preferred_pack_idx);
1038 ctx.large_offsets_needed = 0;
1039 for (i = 0; i < ctx.entries_nr; i++) {
1040 if (ctx.entries[i].offset > 0x7fffffff)
1041 ctx.num_large_offsets++;
1042 if (ctx.entries[i].offset > 0xffffffff)
1043 ctx.large_offsets_needed = 1;
1046 QSORT(ctx.info, ctx.nr, pack_info_compare);
1048 if (packs_to_drop && packs_to_drop->nr) {
1049 int drop_index = 0;
1050 int missing_drops = 0;
1052 for (i = 0; i < ctx.nr && drop_index < packs_to_drop->nr; i++) {
1053 int cmp = strcmp(ctx.info[i].pack_name,
1054 packs_to_drop->items[drop_index].string);
1056 if (!cmp) {
1057 drop_index++;
1058 ctx.info[i].expired = 1;
1059 } else if (cmp > 0) {
1060 error(_("did not see pack-file %s to drop"),
1061 packs_to_drop->items[drop_index].string);
1062 drop_index++;
1063 missing_drops++;
1064 i--;
1065 } else {
1066 ctx.info[i].expired = 0;
1070 if (missing_drops) {
1071 result = 1;
1072 goto cleanup;
1077 * pack_perm stores a permutation between pack-int-ids from the
1078 * previous multi-pack-index to the new one we are writing:
1080 * pack_perm[old_id] = new_id
1082 ALLOC_ARRAY(ctx.pack_perm, ctx.nr);
1083 for (i = 0; i < ctx.nr; i++) {
1084 if (ctx.info[i].expired) {
1085 dropped_packs++;
1086 ctx.pack_perm[ctx.info[i].orig_pack_int_id] = PACK_EXPIRED;
1087 } else {
1088 ctx.pack_perm[ctx.info[i].orig_pack_int_id] = i - dropped_packs;
1092 for (i = 0; i < ctx.nr; i++) {
1093 if (!ctx.info[i].expired)
1094 pack_name_concat_len += strlen(ctx.info[i].pack_name) + 1;
1097 /* Check that the preferred pack wasn't expired (if given). */
1098 if (preferred_pack_name) {
1099 struct pack_info *preferred = bsearch(preferred_pack_name,
1100 ctx.info, ctx.nr,
1101 sizeof(*ctx.info),
1102 idx_or_pack_name_cmp);
1103 if (preferred) {
1104 uint32_t perm = ctx.pack_perm[preferred->orig_pack_int_id];
1105 if (perm == PACK_EXPIRED)
1106 warning(_("preferred pack '%s' is expired"),
1107 preferred_pack_name);
1111 if (pack_name_concat_len % MIDX_CHUNK_ALIGNMENT)
1112 pack_name_concat_len += MIDX_CHUNK_ALIGNMENT -
1113 (pack_name_concat_len % MIDX_CHUNK_ALIGNMENT);
1115 hold_lock_file_for_update(&lk, midx_name, LOCK_DIE_ON_ERROR);
1116 f = hashfd(get_lock_file_fd(&lk), get_lock_file_path(&lk));
1118 if (ctx.m)
1119 close_midx(ctx.m);
1121 if (ctx.nr - dropped_packs == 0) {
1122 error(_("no pack files to index."));
1123 result = 1;
1124 goto cleanup;
1127 cf = init_chunkfile(f);
1129 add_chunk(cf, MIDX_CHUNKID_PACKNAMES, pack_name_concat_len,
1130 write_midx_pack_names);
1131 add_chunk(cf, MIDX_CHUNKID_OIDFANOUT, MIDX_CHUNK_FANOUT_SIZE,
1132 write_midx_oid_fanout);
1133 add_chunk(cf, MIDX_CHUNKID_OIDLOOKUP,
1134 (size_t)ctx.entries_nr * the_hash_algo->rawsz,
1135 write_midx_oid_lookup);
1136 add_chunk(cf, MIDX_CHUNKID_OBJECTOFFSETS,
1137 (size_t)ctx.entries_nr * MIDX_CHUNK_OFFSET_WIDTH,
1138 write_midx_object_offsets);
1140 if (ctx.large_offsets_needed)
1141 add_chunk(cf, MIDX_CHUNKID_LARGEOFFSETS,
1142 (size_t)ctx.num_large_offsets * MIDX_CHUNK_LARGE_OFFSET_WIDTH,
1143 write_midx_large_offsets);
1145 write_midx_header(f, get_num_chunks(cf), ctx.nr - dropped_packs);
1146 write_chunkfile(cf, &ctx);
1148 finalize_hashfile(f, midx_hash, CSUM_FSYNC | CSUM_HASH_IN_STREAM);
1149 free_chunkfile(cf);
1151 if (flags & MIDX_WRITE_REV_INDEX)
1152 ctx.pack_order = midx_pack_order(&ctx);
1154 if (flags & MIDX_WRITE_REV_INDEX)
1155 write_midx_reverse_index(midx_name, midx_hash, &ctx);
1157 commit_lock_file(&lk);
1159 clear_midx_files_ext(object_dir, ".rev", midx_hash);
1161 cleanup:
1162 for (i = 0; i < ctx.nr; i++) {
1163 if (ctx.info[i].p) {
1164 close_pack(ctx.info[i].p);
1165 free(ctx.info[i].p);
1167 free(ctx.info[i].pack_name);
1170 free(ctx.info);
1171 free(ctx.entries);
1172 free(ctx.pack_perm);
1173 free(ctx.pack_order);
1174 free(midx_name);
1175 return result;
1178 int write_midx_file(const char *object_dir,
1179 const char *preferred_pack_name,
1180 unsigned flags)
1182 return write_midx_internal(object_dir, NULL, NULL, preferred_pack_name,
1183 flags);
1186 struct clear_midx_data {
1187 char *keep;
1188 const char *ext;
1191 static void clear_midx_file_ext(const char *full_path, size_t full_path_len,
1192 const char *file_name, void *_data)
1194 struct clear_midx_data *data = _data;
1196 if (!(starts_with(file_name, "multi-pack-index-") &&
1197 ends_with(file_name, data->ext)))
1198 return;
1199 if (data->keep && !strcmp(data->keep, file_name))
1200 return;
1202 if (unlink(full_path))
1203 die_errno(_("failed to remove %s"), full_path);
1206 static void clear_midx_files_ext(const char *object_dir, const char *ext,
1207 unsigned char *keep_hash)
1209 struct clear_midx_data data;
1210 memset(&data, 0, sizeof(struct clear_midx_data));
1212 if (keep_hash)
1213 data.keep = xstrfmt("multi-pack-index-%s%s",
1214 hash_to_hex(keep_hash), ext);
1215 data.ext = ext;
1217 for_each_file_in_pack_dir(object_dir,
1218 clear_midx_file_ext,
1219 &data);
1221 free(data.keep);
1224 void clear_midx_file(struct repository *r)
1226 char *midx = get_midx_filename(r->objects->odb->path);
1228 if (r->objects && r->objects->multi_pack_index) {
1229 close_midx(r->objects->multi_pack_index);
1230 r->objects->multi_pack_index = NULL;
1233 if (remove_path(midx))
1234 die(_("failed to clear multi-pack-index at %s"), midx);
1236 clear_midx_files_ext(r->objects->odb->path, ".rev", NULL);
1238 free(midx);
1241 static int verify_midx_error;
1243 __attribute__((format (printf, 1, 2)))
1244 static void midx_report(const char *fmt, ...)
1246 va_list ap;
1247 verify_midx_error = 1;
1248 va_start(ap, fmt);
1249 vfprintf(stderr, fmt, ap);
1250 fprintf(stderr, "\n");
1251 va_end(ap);
1254 struct pair_pos_vs_id
1256 uint32_t pos;
1257 uint32_t pack_int_id;
1260 static int compare_pair_pos_vs_id(const void *_a, const void *_b)
1262 struct pair_pos_vs_id *a = (struct pair_pos_vs_id *)_a;
1263 struct pair_pos_vs_id *b = (struct pair_pos_vs_id *)_b;
1265 return b->pack_int_id - a->pack_int_id;
1269 * Limit calls to display_progress() for performance reasons.
1270 * The interval here was arbitrarily chosen.
1272 #define SPARSE_PROGRESS_INTERVAL (1 << 12)
1273 #define midx_display_sparse_progress(progress, n) \
1274 do { \
1275 uint64_t _n = (n); \
1276 if ((_n & (SPARSE_PROGRESS_INTERVAL - 1)) == 0) \
1277 display_progress(progress, _n); \
1278 } while (0)
1280 int verify_midx_file(struct repository *r, const char *object_dir, unsigned flags)
1282 struct pair_pos_vs_id *pairs = NULL;
1283 uint32_t i;
1284 struct progress *progress = NULL;
1285 struct multi_pack_index *m = load_multi_pack_index(object_dir, 1);
1286 verify_midx_error = 0;
1288 if (!m) {
1289 int result = 0;
1290 struct stat sb;
1291 char *filename = get_midx_filename(object_dir);
1292 if (!stat(filename, &sb)) {
1293 error(_("multi-pack-index file exists, but failed to parse"));
1294 result = 1;
1296 free(filename);
1297 return result;
1300 if (!midx_checksum_valid(m))
1301 midx_report(_("incorrect checksum"));
1303 if (flags & MIDX_PROGRESS)
1304 progress = start_delayed_progress(_("Looking for referenced packfiles"),
1305 m->num_packs);
1306 for (i = 0; i < m->num_packs; i++) {
1307 if (prepare_midx_pack(r, m, i))
1308 midx_report("failed to load pack in position %d", i);
1310 display_progress(progress, i + 1);
1312 stop_progress(&progress);
1314 for (i = 0; i < 255; i++) {
1315 uint32_t oid_fanout1 = ntohl(m->chunk_oid_fanout[i]);
1316 uint32_t oid_fanout2 = ntohl(m->chunk_oid_fanout[i + 1]);
1318 if (oid_fanout1 > oid_fanout2)
1319 midx_report(_("oid fanout out of order: fanout[%d] = %"PRIx32" > %"PRIx32" = fanout[%d]"),
1320 i, oid_fanout1, oid_fanout2, i + 1);
1323 if (m->num_objects == 0) {
1324 midx_report(_("the midx contains no oid"));
1326 * Remaining tests assume that we have objects, so we can
1327 * return here.
1329 return verify_midx_error;
1332 if (flags & MIDX_PROGRESS)
1333 progress = start_sparse_progress(_("Verifying OID order in multi-pack-index"),
1334 m->num_objects - 1);
1335 for (i = 0; i < m->num_objects - 1; i++) {
1336 struct object_id oid1, oid2;
1338 nth_midxed_object_oid(&oid1, m, i);
1339 nth_midxed_object_oid(&oid2, m, i + 1);
1341 if (oidcmp(&oid1, &oid2) >= 0)
1342 midx_report(_("oid lookup out of order: oid[%d] = %s >= %s = oid[%d]"),
1343 i, oid_to_hex(&oid1), oid_to_hex(&oid2), i + 1);
1345 midx_display_sparse_progress(progress, i + 1);
1347 stop_progress(&progress);
1350 * Create an array mapping each object to its packfile id. Sort it
1351 * to group the objects by packfile. Use this permutation to visit
1352 * each of the objects and only require 1 packfile to be open at a
1353 * time.
1355 ALLOC_ARRAY(pairs, m->num_objects);
1356 for (i = 0; i < m->num_objects; i++) {
1357 pairs[i].pos = i;
1358 pairs[i].pack_int_id = nth_midxed_pack_int_id(m, i);
1361 if (flags & MIDX_PROGRESS)
1362 progress = start_sparse_progress(_("Sorting objects by packfile"),
1363 m->num_objects);
1364 display_progress(progress, 0); /* TODO: Measure QSORT() progress */
1365 QSORT(pairs, m->num_objects, compare_pair_pos_vs_id);
1366 stop_progress(&progress);
1368 if (flags & MIDX_PROGRESS)
1369 progress = start_sparse_progress(_("Verifying object offsets"), m->num_objects);
1370 for (i = 0; i < m->num_objects; i++) {
1371 struct object_id oid;
1372 struct pack_entry e;
1373 off_t m_offset, p_offset;
1375 if (i > 0 && pairs[i-1].pack_int_id != pairs[i].pack_int_id &&
1376 m->packs[pairs[i-1].pack_int_id])
1378 close_pack_fd(m->packs[pairs[i-1].pack_int_id]);
1379 close_pack_index(m->packs[pairs[i-1].pack_int_id]);
1382 nth_midxed_object_oid(&oid, m, pairs[i].pos);
1384 if (!fill_midx_entry(r, &oid, &e, m)) {
1385 midx_report(_("failed to load pack entry for oid[%d] = %s"),
1386 pairs[i].pos, oid_to_hex(&oid));
1387 continue;
1390 if (open_pack_index(e.p)) {
1391 midx_report(_("failed to load pack-index for packfile %s"),
1392 e.p->pack_name);
1393 break;
1396 m_offset = e.offset;
1397 p_offset = find_pack_entry_one(oid.hash, e.p);
1399 if (m_offset != p_offset)
1400 midx_report(_("incorrect object offset for oid[%d] = %s: %"PRIx64" != %"PRIx64),
1401 pairs[i].pos, oid_to_hex(&oid), m_offset, p_offset);
1403 midx_display_sparse_progress(progress, i + 1);
1405 stop_progress(&progress);
1407 free(pairs);
1409 return verify_midx_error;
1412 int expire_midx_packs(struct repository *r, const char *object_dir, unsigned flags)
1414 uint32_t i, *count, result = 0;
1415 struct string_list packs_to_drop = STRING_LIST_INIT_DUP;
1416 struct multi_pack_index *m = load_multi_pack_index(object_dir, 1);
1417 struct progress *progress = NULL;
1419 if (!m)
1420 return 0;
1422 CALLOC_ARRAY(count, m->num_packs);
1424 if (flags & MIDX_PROGRESS)
1425 progress = start_delayed_progress(_("Counting referenced objects"),
1426 m->num_objects);
1427 for (i = 0; i < m->num_objects; i++) {
1428 int pack_int_id = nth_midxed_pack_int_id(m, i);
1429 count[pack_int_id]++;
1430 display_progress(progress, i + 1);
1432 stop_progress(&progress);
1434 if (flags & MIDX_PROGRESS)
1435 progress = start_delayed_progress(_("Finding and deleting unreferenced packfiles"),
1436 m->num_packs);
1437 for (i = 0; i < m->num_packs; i++) {
1438 char *pack_name;
1439 display_progress(progress, i + 1);
1441 if (count[i])
1442 continue;
1444 if (prepare_midx_pack(r, m, i))
1445 continue;
1447 if (m->packs[i]->pack_keep)
1448 continue;
1450 pack_name = xstrdup(m->packs[i]->pack_name);
1451 close_pack(m->packs[i]);
1453 string_list_insert(&packs_to_drop, m->pack_names[i]);
1454 unlink_pack_path(pack_name, 0);
1455 free(pack_name);
1457 stop_progress(&progress);
1459 free(count);
1461 if (packs_to_drop.nr)
1462 result = write_midx_internal(object_dir, m, &packs_to_drop, NULL, flags);
1464 string_list_clear(&packs_to_drop, 0);
1465 return result;
1468 struct repack_info {
1469 timestamp_t mtime;
1470 uint32_t referenced_objects;
1471 uint32_t pack_int_id;
1474 static int compare_by_mtime(const void *a_, const void *b_)
1476 const struct repack_info *a, *b;
1478 a = (const struct repack_info *)a_;
1479 b = (const struct repack_info *)b_;
1481 if (a->mtime < b->mtime)
1482 return -1;
1483 if (a->mtime > b->mtime)
1484 return 1;
1485 return 0;
1488 static int fill_included_packs_all(struct repository *r,
1489 struct multi_pack_index *m,
1490 unsigned char *include_pack)
1492 uint32_t i, count = 0;
1493 int pack_kept_objects = 0;
1495 repo_config_get_bool(r, "repack.packkeptobjects", &pack_kept_objects);
1497 for (i = 0; i < m->num_packs; i++) {
1498 if (prepare_midx_pack(r, m, i))
1499 continue;
1500 if (!pack_kept_objects && m->packs[i]->pack_keep)
1501 continue;
1503 include_pack[i] = 1;
1504 count++;
1507 return count < 2;
1510 static int fill_included_packs_batch(struct repository *r,
1511 struct multi_pack_index *m,
1512 unsigned char *include_pack,
1513 size_t batch_size)
1515 uint32_t i, packs_to_repack;
1516 size_t total_size;
1517 struct repack_info *pack_info = xcalloc(m->num_packs, sizeof(struct repack_info));
1518 int pack_kept_objects = 0;
1520 repo_config_get_bool(r, "repack.packkeptobjects", &pack_kept_objects);
1522 for (i = 0; i < m->num_packs; i++) {
1523 pack_info[i].pack_int_id = i;
1525 if (prepare_midx_pack(r, m, i))
1526 continue;
1528 pack_info[i].mtime = m->packs[i]->mtime;
1531 for (i = 0; batch_size && i < m->num_objects; i++) {
1532 uint32_t pack_int_id = nth_midxed_pack_int_id(m, i);
1533 pack_info[pack_int_id].referenced_objects++;
1536 QSORT(pack_info, m->num_packs, compare_by_mtime);
1538 total_size = 0;
1539 packs_to_repack = 0;
1540 for (i = 0; total_size < batch_size && i < m->num_packs; i++) {
1541 int pack_int_id = pack_info[i].pack_int_id;
1542 struct packed_git *p = m->packs[pack_int_id];
1543 size_t expected_size;
1545 if (!p)
1546 continue;
1547 if (!pack_kept_objects && p->pack_keep)
1548 continue;
1549 if (open_pack_index(p) || !p->num_objects)
1550 continue;
1552 expected_size = (size_t)(p->pack_size
1553 * pack_info[i].referenced_objects);
1554 expected_size /= p->num_objects;
1556 if (expected_size >= batch_size)
1557 continue;
1559 packs_to_repack++;
1560 total_size += expected_size;
1561 include_pack[pack_int_id] = 1;
1564 free(pack_info);
1566 if (packs_to_repack < 2)
1567 return 1;
1569 return 0;
1572 int midx_repack(struct repository *r, const char *object_dir, size_t batch_size, unsigned flags)
1574 int result = 0;
1575 uint32_t i;
1576 unsigned char *include_pack;
1577 struct child_process cmd = CHILD_PROCESS_INIT;
1578 FILE *cmd_in;
1579 struct strbuf base_name = STRBUF_INIT;
1580 struct multi_pack_index *m = load_multi_pack_index(object_dir, 1);
1583 * When updating the default for these configuration
1584 * variables in builtin/repack.c, these must be adjusted
1585 * to match.
1587 int delta_base_offset = 1;
1588 int use_delta_islands = 0;
1590 if (!m)
1591 return 0;
1593 CALLOC_ARRAY(include_pack, m->num_packs);
1595 if (batch_size) {
1596 if (fill_included_packs_batch(r, m, include_pack, batch_size))
1597 goto cleanup;
1598 } else if (fill_included_packs_all(r, m, include_pack))
1599 goto cleanup;
1601 repo_config_get_bool(r, "repack.usedeltabaseoffset", &delta_base_offset);
1602 repo_config_get_bool(r, "repack.usedeltaislands", &use_delta_islands);
1604 strvec_push(&cmd.args, "pack-objects");
1606 strbuf_addstr(&base_name, object_dir);
1607 strbuf_addstr(&base_name, "/pack/pack");
1608 strvec_push(&cmd.args, base_name.buf);
1610 if (delta_base_offset)
1611 strvec_push(&cmd.args, "--delta-base-offset");
1612 if (use_delta_islands)
1613 strvec_push(&cmd.args, "--delta-islands");
1615 if (flags & MIDX_PROGRESS)
1616 strvec_push(&cmd.args, "--progress");
1617 else
1618 strvec_push(&cmd.args, "-q");
1620 strbuf_release(&base_name);
1622 cmd.git_cmd = 1;
1623 cmd.in = cmd.out = -1;
1625 if (start_command(&cmd)) {
1626 error(_("could not start pack-objects"));
1627 result = 1;
1628 goto cleanup;
1631 cmd_in = xfdopen(cmd.in, "w");
1633 for (i = 0; i < m->num_objects; i++) {
1634 struct object_id oid;
1635 uint32_t pack_int_id = nth_midxed_pack_int_id(m, i);
1637 if (!include_pack[pack_int_id])
1638 continue;
1640 nth_midxed_object_oid(&oid, m, i);
1641 fprintf(cmd_in, "%s\n", oid_to_hex(&oid));
1643 fclose(cmd_in);
1645 if (finish_command(&cmd)) {
1646 error(_("could not finish pack-objects"));
1647 result = 1;
1648 goto cleanup;
1651 result = write_midx_internal(object_dir, m, NULL, NULL, flags);
1652 m = NULL;
1654 cleanup:
1655 if (m)
1656 close_midx(m);
1657 free(include_pack);
1658 return result;