]> git.ipfire.org Git - thirdparty/git.git/blame - midx.c
midx.c: lookup MIDX by object directory during repack
[thirdparty/git.git] / midx.c
CommitLineData
a3407730 1#include "cache.h"
c4d25228 2#include "config.h"
fc59e748 3#include "csum-file.h"
396f2570 4#include "dir.h"
fc59e748 5#include "lockfile.h"
396f2570 6#include "packfile.h"
4d80560c 7#include "object-store.h"
bc626927 8#include "hash-lookup.h"
a3407730 9#include "midx.h"
144d7033 10#include "progress.h"
d829223a 11#include "trace2.h"
ce1e4a10 12#include "run-command.h"
18e449f8 13#include "repository.h"
63a8f0e9 14#include "chunk-format.h"
38ff7cab 15#include "pack.h"
c528e179
TB
16#include "pack-bitmap.h"
17#include "refs.h"
18#include "revision.h"
19#include "list-objects.h"
a3407730 20
fc59e748
DS
21#define MIDX_SIGNATURE 0x4d494458 /* "MIDX" */
22#define MIDX_VERSION 1
4d80560c
DS
23#define MIDX_BYTE_FILE_VERSION 4
24#define MIDX_BYTE_HASH_VERSION 5
25#define MIDX_BYTE_NUM_CHUNKS 6
26#define MIDX_BYTE_NUM_PACKS 8
fc59e748 27#define MIDX_HEADER_SIZE 12
aaa95dfa 28#define MIDX_MIN_SIZE (MIDX_HEADER_SIZE + the_hash_algo->rawsz)
fc59e748 29
32f3c541
DS
30#define MIDX_CHUNK_ALIGNMENT 4
31#define MIDX_CHUNKID_PACKNAMES 0x504e414d /* "PNAM" */
d7cacf29 32#define MIDX_CHUNKID_OIDFANOUT 0x4f494446 /* "OIDF" */
0d5b3a5e 33#define MIDX_CHUNKID_OIDLOOKUP 0x4f49444c /* "OIDL" */
662148c4
DS
34#define MIDX_CHUNKID_OBJECTOFFSETS 0x4f4f4646 /* "OOFF" */
35#define MIDX_CHUNKID_LARGEOFFSETS 0x4c4f4646 /* "LOFF" */
d7cacf29 36#define MIDX_CHUNK_FANOUT_SIZE (sizeof(uint32_t) * 256)
662148c4
DS
37#define MIDX_CHUNK_OFFSET_WIDTH (2 * sizeof(uint32_t))
38#define MIDX_CHUNK_LARGE_OFFSET_WIDTH (sizeof(uint64_t))
39#define MIDX_LARGE_OFFSET_NEEDED 0x80000000
32f3c541 40
19575c7c
DS
41#define PACK_EXPIRED UINT_MAX
42
d9607542
DS
43static uint8_t oid_version(void)
44{
45 switch (hash_algo_by_ptr(the_hash_algo)) {
46 case GIT_HASH_SHA1:
47 return 1;
48 case GIT_HASH_SHA256:
49 return 2;
50 default:
51 die(_("invalid hash version"));
52 }
53}
54
0f533c72 55const unsigned char *get_midx_checksum(struct multi_pack_index *m)
f894081d
TB
56{
57 return m->data + m->data_len - the_hash_algo->rawsz;
58}
59
0f533c72 60char *get_midx_filename(const char *object_dir)
fc59e748
DS
61{
62 return xstrfmt("%s/pack/multi-pack-index", object_dir);
63}
64
f894081d
TB
65char *get_midx_rev_filename(struct multi_pack_index *m)
66{
67 return xstrfmt("%s/pack/multi-pack-index-%s.rev",
68 m->object_dir, hash_to_hex(get_midx_checksum(m)));
69}
70
6ab3b8b8
DS
71static int midx_read_oid_fanout(const unsigned char *chunk_start,
72 size_t chunk_size, void *data)
73{
74 struct multi_pack_index *m = data;
75 m->chunk_oid_fanout = (uint32_t *)chunk_start;
76
77 if (chunk_size != 4 * 256) {
78 error(_("multi-pack-index OID fanout is of the wrong size"));
79 return 1;
80 }
81 return 0;
82}
83
2cf489a3 84struct multi_pack_index *load_multi_pack_index(const char *object_dir, int local)
4d80560c
DS
85{
86 struct multi_pack_index *m = NULL;
87 int fd;
88 struct stat st;
89 size_t midx_size;
90 void *midx_map = NULL;
91 uint32_t hash_version;
92 char *midx_name = get_midx_filename(object_dir);
32f3c541 93 uint32_t i;
3227565c 94 const char *cur_pack_name;
6ab3b8b8 95 struct chunkfile *cf = NULL;
4d80560c
DS
96
97 fd = git_open(midx_name);
98
99 if (fd < 0)
100 goto cleanup_fail;
101 if (fstat(fd, &st)) {
102 error_errno(_("failed to read %s"), midx_name);
103 goto cleanup_fail;
104 }
105
106 midx_size = xsize_t(st.st_size);
107
108 if (midx_size < MIDX_MIN_SIZE) {
109 error(_("multi-pack-index file %s is too small"), midx_name);
110 goto cleanup_fail;
111 }
112
113 FREE_AND_NULL(midx_name);
114
115 midx_map = xmmap(NULL, midx_size, PROT_READ, MAP_PRIVATE, fd, 0);
6c7ff7cf 116 close(fd);
4d80560c 117
577314ca 118 FLEX_ALLOC_STR(m, object_dir, object_dir);
4d80560c
DS
119 m->data = midx_map;
120 m->data_len = midx_size;
2cf489a3 121 m->local = local;
4d80560c
DS
122
123 m->signature = get_be32(m->data);
53ad0407
DS
124 if (m->signature != MIDX_SIGNATURE)
125 die(_("multi-pack-index signature 0x%08x does not match signature 0x%08x"),
4d80560c 126 m->signature, MIDX_SIGNATURE);
4d80560c
DS
127
128 m->version = m->data[MIDX_BYTE_FILE_VERSION];
53ad0407
DS
129 if (m->version != MIDX_VERSION)
130 die(_("multi-pack-index version %d not recognized"),
4d80560c 131 m->version);
4d80560c
DS
132
133 hash_version = m->data[MIDX_BYTE_HASH_VERSION];
d9607542
DS
134 if (hash_version != oid_version()) {
135 error(_("multi-pack-index hash version %u does not match version %u"),
136 hash_version, oid_version());
137 goto cleanup_fail;
138 }
aaa95dfa 139 m->hash_len = the_hash_algo->rawsz;
4d80560c
DS
140
141 m->num_chunks = m->data[MIDX_BYTE_NUM_CHUNKS];
142
143 m->num_packs = get_be32(m->data + MIDX_BYTE_NUM_PACKS);
144
6ab3b8b8 145 cf = init_chunkfile(NULL);
32f3c541 146
6ab3b8b8
DS
147 if (read_table_of_contents(cf, m->data, midx_size,
148 MIDX_HEADER_SIZE, m->num_chunks))
149 goto cleanup_fail;
32f3c541 150
6ab3b8b8 151 if (pair_chunk(cf, MIDX_CHUNKID_PACKNAMES, &m->chunk_pack_names) == CHUNK_NOT_FOUND)
32f3c541 152 die(_("multi-pack-index missing required pack-name chunk"));
6ab3b8b8 153 if (read_chunk(cf, MIDX_CHUNKID_OIDFANOUT, midx_read_oid_fanout, m) == CHUNK_NOT_FOUND)
d7cacf29 154 die(_("multi-pack-index missing required OID fanout chunk"));
6ab3b8b8 155 if (pair_chunk(cf, MIDX_CHUNKID_OIDLOOKUP, &m->chunk_oid_lookup) == CHUNK_NOT_FOUND)
0d5b3a5e 156 die(_("multi-pack-index missing required OID lookup chunk"));
6ab3b8b8 157 if (pair_chunk(cf, MIDX_CHUNKID_OBJECTOFFSETS, &m->chunk_object_offsets) == CHUNK_NOT_FOUND)
662148c4 158 die(_("multi-pack-index missing required object offsets chunk"));
32f3c541 159
6ab3b8b8
DS
160 pair_chunk(cf, MIDX_CHUNKID_LARGEOFFSETS, &m->chunk_large_offsets);
161
d7cacf29
DS
162 m->num_objects = ntohl(m->chunk_oid_fanout[255]);
163
ca56dadb
RS
164 CALLOC_ARRAY(m->pack_names, m->num_packs);
165 CALLOC_ARRAY(m->packs, m->num_packs);
3227565c
DS
166
167 cur_pack_name = (const char *)m->chunk_pack_names;
168 for (i = 0; i < m->num_packs; i++) {
169 m->pack_names[i] = cur_pack_name;
170
171 cur_pack_name += strlen(cur_pack_name) + 1;
172
8e72a3c3
DS
173 if (i && strcmp(m->pack_names[i], m->pack_names[i - 1]) <= 0)
174 die(_("multi-pack-index pack names out of order: '%s' before '%s'"),
3227565c
DS
175 m->pack_names[i - 1],
176 m->pack_names[i]);
3227565c
DS
177 }
178
d829223a
JH
179 trace2_data_intmax("midx", the_repository, "load/num_packs", m->num_packs);
180 trace2_data_intmax("midx", the_repository, "load/num_objects", m->num_objects);
181
4d80560c
DS
182 return m;
183
184cleanup_fail:
185 free(m);
186 free(midx_name);
6ab3b8b8 187 free(cf);
4d80560c
DS
188 if (midx_map)
189 munmap(midx_map, midx_size);
190 if (0 <= fd)
191 close(fd);
192 return NULL;
193}
194
1dcd9f20 195void close_midx(struct multi_pack_index *m)
a40498a1
DS
196{
197 uint32_t i;
1dcd9f20
DS
198
199 if (!m)
200 return;
201
9bb6c2e5
TB
202 close_midx(m->next);
203
a40498a1 204 munmap((unsigned char *)m->data, m->data_len);
a40498a1
DS
205
206 for (i = 0; i < m->num_packs; i++) {
af96fe33
DS
207 if (m->packs[i])
208 m->packs[i]->multi_pack_index = 0;
a40498a1
DS
209 }
210 FREE_AND_NULL(m->packs);
211 FREE_AND_NULL(m->pack_names);
9bb6c2e5 212 free(m);
a40498a1
DS
213}
214
64404a24 215int prepare_midx_pack(struct repository *r, struct multi_pack_index *m, uint32_t pack_int_id)
3715a633
DS
216{
217 struct strbuf pack_name = STRBUF_INIT;
af96fe33 218 struct packed_git *p;
3715a633
DS
219
220 if (pack_int_id >= m->num_packs)
d355e46a 221 die(_("bad pack-int-id: %u (%u total packs)"),
cc6af73c 222 pack_int_id, m->num_packs);
3715a633
DS
223
224 if (m->packs[pack_int_id])
225 return 0;
226
227 strbuf_addf(&pack_name, "%s/pack/%s", m->object_dir,
228 m->pack_names[pack_int_id]);
229
af96fe33 230 p = add_packed_git(pack_name.buf, pack_name.len, m->local);
3715a633 231 strbuf_release(&pack_name);
af96fe33
DS
232
233 if (!p)
234 return 1;
235
236 p->multi_pack_index = 1;
237 m->packs[pack_int_id] = p;
238 install_packed_git(r, p);
239 list_add_tail(&p->mru, &r->objects->packed_git_mru);
240
241 return 0;
3715a633
DS
242}
243
244int bsearch_midx(const struct object_id *oid, struct multi_pack_index *m, uint32_t *result)
245{
246 return bsearch_hash(oid->hash, m->chunk_oid_fanout, m->chunk_oid_lookup,
aaa95dfa 247 the_hash_algo->rawsz, result);
3715a633
DS
248}
249
8aac67a1
DS
250struct object_id *nth_midxed_object_oid(struct object_id *oid,
251 struct multi_pack_index *m,
252 uint32_t n)
253{
254 if (n >= m->num_objects)
255 return NULL;
256
92e2cab9 257 oidread(oid, m->chunk_oid_lookup + m->hash_len * n);
8aac67a1
DS
258 return oid;
259}
260
62f2c1b5 261off_t nth_midxed_offset(struct multi_pack_index *m, uint32_t pos)
3715a633
DS
262{
263 const unsigned char *offset_data;
264 uint32_t offset32;
265
329fac3a 266 offset_data = m->chunk_object_offsets + (off_t)pos * MIDX_CHUNK_OFFSET_WIDTH;
3715a633
DS
267 offset32 = get_be32(offset_data + sizeof(uint32_t));
268
269 if (m->chunk_large_offsets && offset32 & MIDX_LARGE_OFFSET_NEEDED) {
d8ac9ee1 270 if (sizeof(off_t) < sizeof(uint64_t))
3715a633
DS
271 die(_("multi-pack-index stores a 64-bit offset, but off_t is too small"));
272
273 offset32 ^= MIDX_LARGE_OFFSET_NEEDED;
274 return get_be64(m->chunk_large_offsets + sizeof(uint64_t) * offset32);
275 }
276
277 return offset32;
278}
279
62f2c1b5 280uint32_t nth_midxed_pack_int_id(struct multi_pack_index *m, uint32_t pos)
3715a633 281{
329fac3a
DS
282 return get_be32(m->chunk_object_offsets +
283 (off_t)pos * MIDX_CHUNK_OFFSET_WIDTH);
3715a633
DS
284}
285
893b5635
RS
286int fill_midx_entry(struct repository * r,
287 const struct object_id *oid,
288 struct pack_entry *e,
289 struct multi_pack_index *m)
3715a633 290{
893b5635 291 uint32_t pos;
3715a633
DS
292 uint32_t pack_int_id;
293 struct packed_git *p;
294
893b5635
RS
295 if (!bsearch_midx(oid, m, &pos))
296 return 0;
297
3715a633
DS
298 if (pos >= m->num_objects)
299 return 0;
300
301 pack_int_id = nth_midxed_pack_int_id(m, pos);
302
64404a24 303 if (prepare_midx_pack(r, m, pack_int_id))
506ec2fb 304 return 0;
3715a633
DS
305 p = m->packs[pack_int_id];
306
307 /*
308 * We are about to tell the caller where they can locate the
309 * requested object. We better make sure the packfile is
310 * still here and can be accessed before supplying that
311 * answer, as it may have been deleted since the MIDX was
312 * loaded!
313 */
314 if (!is_pack_valid(p))
315 return 0;
316
09ef6617
RS
317 if (oidset_size(&p->bad_objects) &&
318 oidset_contains(&p->bad_objects, oid))
319 return 0;
c39b02ae 320
3715a633
DS
321 e->offset = nth_midxed_offset(m, pos);
322 e->p = p;
323
324 return 1;
325}
326
013fd7ad
JK
327/* Match "foo.idx" against either "foo.pack" _or_ "foo.idx". */
328static int cmp_idx_or_pack_name(const char *idx_or_pack_name,
329 const char *idx_name)
330{
331 /* Skip past any initial matching prefix. */
332 while (*idx_name && *idx_name == *idx_or_pack_name) {
333 idx_name++;
334 idx_or_pack_name++;
335 }
336
337 /*
338 * If we didn't match completely, we may have matched "pack-1234." and
339 * be left with "idx" and "pack" respectively, which is also OK. We do
340 * not have to check for "idx" and "idx", because that would have been
341 * a complete match (and in that case these strcmps will be false, but
342 * we'll correctly return 0 from the final strcmp() below.
343 *
344 * Technically this matches "fooidx" and "foopack", but we'd never have
345 * such names in the first place.
346 */
347 if (!strcmp(idx_name, "idx") && !strcmp(idx_or_pack_name, "pack"))
348 return 0;
349
350 /*
351 * This not only checks for a complete match, but also orders based on
352 * the first non-identical character, which means our ordering will
353 * match a raw strcmp(). That makes it OK to use this to binary search
354 * a naively-sorted list.
355 */
356 return strcmp(idx_or_pack_name, idx_name);
357}
358
359int midx_contains_pack(struct multi_pack_index *m, const char *idx_or_pack_name)
a40498a1
DS
360{
361 uint32_t first = 0, last = m->num_packs;
362
363 while (first < last) {
364 uint32_t mid = first + (last - first) / 2;
365 const char *current;
366 int cmp;
367
368 current = m->pack_names[mid];
013fd7ad 369 cmp = cmp_idx_or_pack_name(idx_or_pack_name, current);
a40498a1
DS
370 if (!cmp)
371 return 1;
372 if (cmp > 0) {
373 first = mid + 1;
374 continue;
375 }
376 last = mid;
377 }
378
379 return 0;
380}
381
2cf489a3 382int prepare_multi_pack_index_one(struct repository *r, const char *object_dir, int local)
c4d25228 383{
29e2016b 384 struct multi_pack_index *m;
c4d25228 385 struct multi_pack_index *m_search;
c4d25228 386
18e449f8
DS
387 prepare_repo_settings(r);
388 if (!r->settings.core_multi_pack_index)
c4d25228
DS
389 return 0;
390
29e2016b 391 for (m_search = r->objects->multi_pack_index; m_search; m_search = m_search->next)
c4d25228
DS
392 if (!strcmp(object_dir, m_search->object_dir))
393 return 1;
394
29e2016b 395 m = load_multi_pack_index(object_dir, local);
c4d25228 396
29e2016b 397 if (m) {
59552fb3
TB
398 struct multi_pack_index *mp = r->objects->multi_pack_index;
399 if (mp) {
400 m->next = mp->next;
401 mp->next = m;
402 } else
403 r->objects->multi_pack_index = m;
c4d25228
DS
404 return 1;
405 }
406
407 return 0;
408}
409
fc59e748
DS
410static size_t write_midx_header(struct hashfile *f,
411 unsigned char num_chunks,
412 uint32_t num_packs)
413{
fc59e748 414 hashwrite_be32(f, MIDX_SIGNATURE);
014f1447
RS
415 hashwrite_u8(f, MIDX_VERSION);
416 hashwrite_u8(f, oid_version());
417 hashwrite_u8(f, num_chunks);
418 hashwrite_u8(f, 0); /* unused */
fc59e748
DS
419 hashwrite_be32(f, num_packs);
420
421 return MIDX_HEADER_SIZE;
422}
423
d01bf2e6
DS
424struct pack_info {
425 uint32_t orig_pack_int_id;
426 char *pack_name;
427 struct packed_git *p;
19575c7c 428 unsigned expired : 1;
d01bf2e6
DS
429};
430
431static int pack_info_compare(const void *_a, const void *_b)
432{
433 struct pack_info *a = (struct pack_info *)_a;
434 struct pack_info *b = (struct pack_info *)_b;
435 return strcmp(a->pack_name, b->pack_name);
436}
437
9218c6a4
TB
438static int idx_or_pack_name_cmp(const void *_va, const void *_vb)
439{
440 const char *pack_name = _va;
441 const struct pack_info *compar = _vb;
442
443 return cmp_idx_or_pack_name(pack_name, compar->pack_name);
444}
445
577dc496 446struct write_midx_context {
d01bf2e6 447 struct pack_info *info;
396f2570 448 uint32_t nr;
d01bf2e6 449 uint32_t alloc;
a40498a1 450 struct multi_pack_index *m;
840cef0c
WB
451 struct progress *progress;
452 unsigned pack_paths_checked;
31bda9a2
DS
453
454 struct pack_midx_entry *entries;
455 uint32_t entries_nr;
7a3ada11
DS
456
457 uint32_t *pack_perm;
38ff7cab 458 uint32_t *pack_order;
7a3ada11 459 unsigned large_offsets_needed:1;
980f525c 460 uint32_t num_large_offsets;
9218c6a4
TB
461
462 int preferred_pack_idx;
56d863e9
TB
463
464 struct string_list *to_include;
396f2570
DS
465};
466
467static void add_pack_to_midx(const char *full_path, size_t full_path_len,
468 const char *file_name, void *data)
469{
577dc496 470 struct write_midx_context *ctx = data;
396f2570
DS
471
472 if (ends_with(file_name, ".idx")) {
577dc496 473 display_progress(ctx->progress, ++ctx->pack_paths_checked);
56d863e9
TB
474 /*
475 * Note that at most one of ctx->m and ctx->to_include are set,
476 * so we are testing midx_contains_pack() and
477 * string_list_has_string() independently (guarded by the
478 * appropriate NULL checks).
479 *
480 * We could support passing to_include while reusing an existing
481 * MIDX, but don't currently since the reuse process drags
482 * forward all packs from an existing MIDX (without checking
483 * whether or not they appear in the to_include list).
484 *
485 * If we added support for that, these next two conditional
486 * should be performed independently (likely checking
487 * to_include before the existing MIDX).
488 */
577dc496 489 if (ctx->m && midx_contains_pack(ctx->m, file_name))
a40498a1 490 return;
56d863e9
TB
491 else if (ctx->to_include &&
492 !string_list_has_string(ctx->to_include, file_name))
493 return;
a40498a1 494
577dc496 495 ALLOC_GROW(ctx->info, ctx->nr + 1, ctx->alloc);
396f2570 496
577dc496
DS
497 ctx->info[ctx->nr].p = add_packed_git(full_path,
498 full_path_len,
499 0);
fe1ed56f 500
577dc496 501 if (!ctx->info[ctx->nr].p) {
396f2570
DS
502 warning(_("failed to add packfile '%s'"),
503 full_path);
504 return;
505 }
506
577dc496 507 if (open_pack_index(ctx->info[ctx->nr].p)) {
fe1ed56f
DS
508 warning(_("failed to open pack-index '%s'"),
509 full_path);
577dc496
DS
510 close_pack(ctx->info[ctx->nr].p);
511 FREE_AND_NULL(ctx->info[ctx->nr].p);
fe1ed56f
DS
512 return;
513 }
514
577dc496
DS
515 ctx->info[ctx->nr].pack_name = xstrdup(file_name);
516 ctx->info[ctx->nr].orig_pack_int_id = ctx->nr;
517 ctx->info[ctx->nr].expired = 0;
518 ctx->nr++;
396f2570
DS
519 }
520}
521
fe1ed56f
DS
522struct pack_midx_entry {
523 struct object_id oid;
524 uint32_t pack_int_id;
525 time_t pack_mtime;
526 uint64_t offset;
9218c6a4 527 unsigned preferred : 1;
fe1ed56f
DS
528};
529
530static int midx_oid_compare(const void *_a, const void *_b)
531{
532 const struct pack_midx_entry *a = (const struct pack_midx_entry *)_a;
533 const struct pack_midx_entry *b = (const struct pack_midx_entry *)_b;
534 int cmp = oidcmp(&a->oid, &b->oid);
535
536 if (cmp)
537 return cmp;
538
9218c6a4
TB
539 /* Sort objects in a preferred pack first when multiple copies exist. */
540 if (a->preferred > b->preferred)
541 return -1;
542 if (a->preferred < b->preferred)
543 return 1;
544
fe1ed56f
DS
545 if (a->pack_mtime > b->pack_mtime)
546 return -1;
547 else if (a->pack_mtime < b->pack_mtime)
548 return 1;
549
550 return a->pack_int_id - b->pack_int_id;
551}
552
a40498a1 553static int nth_midxed_pack_midx_entry(struct multi_pack_index *m,
a40498a1
DS
554 struct pack_midx_entry *e,
555 uint32_t pos)
556{
557 if (pos >= m->num_objects)
558 return 1;
559
560 nth_midxed_object_oid(&e->oid, m, pos);
d01bf2e6 561 e->pack_int_id = nth_midxed_pack_int_id(m, pos);
a40498a1
DS
562 e->offset = nth_midxed_offset(m, pos);
563
564 /* consider objects in midx to be from "old" packs */
565 e->pack_mtime = 0;
566 return 0;
567}
568
fe1ed56f
DS
569static void fill_pack_entry(uint32_t pack_int_id,
570 struct packed_git *p,
571 uint32_t cur_object,
9218c6a4
TB
572 struct pack_midx_entry *entry,
573 int preferred)
fe1ed56f 574{
0763671b 575 if (nth_packed_object_id(&entry->oid, p, cur_object) < 0)
fe1ed56f
DS
576 die(_("failed to locate object %d in packfile"), cur_object);
577
578 entry->pack_int_id = pack_int_id;
579 entry->pack_mtime = p->mtime;
580
581 entry->offset = nth_packed_object_offset(p, cur_object);
9218c6a4 582 entry->preferred = !!preferred;
fe1ed56f
DS
583}
584
585/*
586 * It is possible to artificially get into a state where there are many
587 * duplicate copies of objects. That can create high memory pressure if
588 * we are to create a list of all objects before de-duplication. To reduce
589 * this memory pressure without a significant performance drop, automatically
590 * group objects by the first byte of their object id. Use the IDX fanout
591 * tables to group the data, copy to a local array, then sort.
592 *
593 * Copy only the de-duplicated entries (selected by most-recent modified time
594 * of a packfile containing the object).
595 */
a40498a1 596static struct pack_midx_entry *get_sorted_entries(struct multi_pack_index *m,
d01bf2e6 597 struct pack_info *info,
fe1ed56f 598 uint32_t nr_packs,
9218c6a4
TB
599 uint32_t *nr_objects,
600 int preferred_pack)
fe1ed56f
DS
601{
602 uint32_t cur_fanout, cur_pack, cur_object;
603 uint32_t alloc_fanout, alloc_objects, total_objects = 0;
604 struct pack_midx_entry *entries_by_fanout = NULL;
605 struct pack_midx_entry *deduplicated_entries = NULL;
a40498a1 606 uint32_t start_pack = m ? m->num_packs : 0;
fe1ed56f 607
a40498a1 608 for (cur_pack = start_pack; cur_pack < nr_packs; cur_pack++)
d01bf2e6 609 total_objects += info[cur_pack].p->num_objects;
fe1ed56f
DS
610
611 /*
612 * As we de-duplicate by fanout value, we expect the fanout
613 * slices to be evenly distributed, with some noise. Hence,
614 * allocate slightly more than one 256th.
615 */
616 alloc_objects = alloc_fanout = total_objects > 3200 ? total_objects / 200 : 16;
617
618 ALLOC_ARRAY(entries_by_fanout, alloc_fanout);
619 ALLOC_ARRAY(deduplicated_entries, alloc_objects);
620 *nr_objects = 0;
621
622 for (cur_fanout = 0; cur_fanout < 256; cur_fanout++) {
623 uint32_t nr_fanout = 0;
624
a40498a1
DS
625 if (m) {
626 uint32_t start = 0, end;
627
628 if (cur_fanout)
629 start = ntohl(m->chunk_oid_fanout[cur_fanout - 1]);
630 end = ntohl(m->chunk_oid_fanout[cur_fanout]);
631
632 for (cur_object = start; cur_object < end; cur_object++) {
633 ALLOC_GROW(entries_by_fanout, nr_fanout + 1, alloc_fanout);
d01bf2e6 634 nth_midxed_pack_midx_entry(m,
a40498a1
DS
635 &entries_by_fanout[nr_fanout],
636 cur_object);
9218c6a4
TB
637 if (nth_midxed_pack_int_id(m, cur_object) == preferred_pack)
638 entries_by_fanout[nr_fanout].preferred = 1;
639 else
640 entries_by_fanout[nr_fanout].preferred = 0;
a40498a1
DS
641 nr_fanout++;
642 }
643 }
644
645 for (cur_pack = start_pack; cur_pack < nr_packs; cur_pack++) {
fe1ed56f 646 uint32_t start = 0, end;
9218c6a4 647 int preferred = cur_pack == preferred_pack;
fe1ed56f
DS
648
649 if (cur_fanout)
d01bf2e6
DS
650 start = get_pack_fanout(info[cur_pack].p, cur_fanout - 1);
651 end = get_pack_fanout(info[cur_pack].p, cur_fanout);
fe1ed56f
DS
652
653 for (cur_object = start; cur_object < end; cur_object++) {
654 ALLOC_GROW(entries_by_fanout, nr_fanout + 1, alloc_fanout);
9218c6a4
TB
655 fill_pack_entry(cur_pack,
656 info[cur_pack].p,
657 cur_object,
658 &entries_by_fanout[nr_fanout],
659 preferred);
fe1ed56f
DS
660 nr_fanout++;
661 }
662 }
663
664 QSORT(entries_by_fanout, nr_fanout, midx_oid_compare);
665
666 /*
667 * The batch is now sorted by OID and then mtime (descending).
668 * Take only the first duplicate.
669 */
670 for (cur_object = 0; cur_object < nr_fanout; cur_object++) {
e43d2dcc
JK
671 if (cur_object && oideq(&entries_by_fanout[cur_object - 1].oid,
672 &entries_by_fanout[cur_object].oid))
fe1ed56f
DS
673 continue;
674
675 ALLOC_GROW(deduplicated_entries, *nr_objects + 1, alloc_objects);
676 memcpy(&deduplicated_entries[*nr_objects],
677 &entries_by_fanout[cur_object],
678 sizeof(struct pack_midx_entry));
679 (*nr_objects)++;
680 }
681 }
682
683 free(entries_by_fanout);
684 return deduplicated_entries;
685}
686
0ccd713c 687static int write_midx_pack_names(struct hashfile *f, void *data)
32f3c541 688{
b4d94142 689 struct write_midx_context *ctx = data;
32f3c541
DS
690 uint32_t i;
691 unsigned char padding[MIDX_CHUNK_ALIGNMENT];
692 size_t written = 0;
693
b4d94142 694 for (i = 0; i < ctx->nr; i++) {
19575c7c
DS
695 size_t writelen;
696
b4d94142 697 if (ctx->info[i].expired)
19575c7c 698 continue;
32f3c541 699
b4d94142 700 if (i && strcmp(ctx->info[i].pack_name, ctx->info[i - 1].pack_name) <= 0)
32f3c541 701 BUG("incorrect pack-file order: %s before %s",
b4d94142
DS
702 ctx->info[i - 1].pack_name,
703 ctx->info[i].pack_name);
32f3c541 704
b4d94142
DS
705 writelen = strlen(ctx->info[i].pack_name) + 1;
706 hashwrite(f, ctx->info[i].pack_name, writelen);
32f3c541
DS
707 written += writelen;
708 }
709
710 /* add padding to be aligned */
711 i = MIDX_CHUNK_ALIGNMENT - (written % MIDX_CHUNK_ALIGNMENT);
712 if (i < MIDX_CHUNK_ALIGNMENT) {
713 memset(padding, 0, sizeof(padding));
714 hashwrite(f, padding, i);
32f3c541
DS
715 }
716
0ccd713c 717 return 0;
32f3c541
DS
718}
719
0ccd713c
DS
720static int write_midx_oid_fanout(struct hashfile *f,
721 void *data)
d7cacf29 722{
31bda9a2
DS
723 struct write_midx_context *ctx = data;
724 struct pack_midx_entry *list = ctx->entries;
725 struct pack_midx_entry *last = ctx->entries + ctx->entries_nr;
d7cacf29
DS
726 uint32_t count = 0;
727 uint32_t i;
728
729 /*
730 * Write the first-level table (the list is sorted,
731 * but we use a 256-entry lookup to be able to avoid
732 * having to do eight extra binary search iterations).
733 */
734 for (i = 0; i < 256; i++) {
735 struct pack_midx_entry *next = list;
736
737 while (next < last && next->oid.hash[0] == i) {
738 count++;
739 next++;
740 }
741
742 hashwrite_be32(f, count);
743 list = next;
744 }
745
0ccd713c 746 return 0;
d7cacf29
DS
747}
748
0ccd713c
DS
749static int write_midx_oid_lookup(struct hashfile *f,
750 void *data)
0d5b3a5e 751{
31bda9a2
DS
752 struct write_midx_context *ctx = data;
753 unsigned char hash_len = the_hash_algo->rawsz;
754 struct pack_midx_entry *list = ctx->entries;
0d5b3a5e 755 uint32_t i;
0d5b3a5e 756
31bda9a2 757 for (i = 0; i < ctx->entries_nr; i++) {
0d5b3a5e
DS
758 struct pack_midx_entry *obj = list++;
759
31bda9a2 760 if (i < ctx->entries_nr - 1) {
0d5b3a5e
DS
761 struct pack_midx_entry *next = list;
762 if (oidcmp(&obj->oid, &next->oid) >= 0)
763 BUG("OIDs not in order: %s >= %s",
764 oid_to_hex(&obj->oid),
765 oid_to_hex(&next->oid));
766 }
767
768 hashwrite(f, obj->oid.hash, (int)hash_len);
0d5b3a5e
DS
769 }
770
0ccd713c 771 return 0;
0d5b3a5e
DS
772}
773
0ccd713c
DS
774static int write_midx_object_offsets(struct hashfile *f,
775 void *data)
662148c4 776{
7a3ada11
DS
777 struct write_midx_context *ctx = data;
778 struct pack_midx_entry *list = ctx->entries;
662148c4 779 uint32_t i, nr_large_offset = 0;
662148c4 780
7a3ada11 781 for (i = 0; i < ctx->entries_nr; i++) {
662148c4
DS
782 struct pack_midx_entry *obj = list++;
783
7a3ada11 784 if (ctx->pack_perm[obj->pack_int_id] == PACK_EXPIRED)
19575c7c
DS
785 BUG("object %s is in an expired pack with int-id %d",
786 oid_to_hex(&obj->oid),
787 obj->pack_int_id);
788
7a3ada11 789 hashwrite_be32(f, ctx->pack_perm[obj->pack_int_id]);
662148c4 790
7a3ada11 791 if (ctx->large_offsets_needed && obj->offset >> 31)
662148c4 792 hashwrite_be32(f, MIDX_LARGE_OFFSET_NEEDED | nr_large_offset++);
7a3ada11 793 else if (!ctx->large_offsets_needed && obj->offset >> 32)
662148c4
DS
794 BUG("object %s requires a large offset (%"PRIx64") but the MIDX is not writing large offsets!",
795 oid_to_hex(&obj->oid),
796 obj->offset);
797 else
798 hashwrite_be32(f, (uint32_t)obj->offset);
662148c4
DS
799 }
800
0ccd713c 801 return 0;
662148c4
DS
802}
803
0ccd713c
DS
804static int write_midx_large_offsets(struct hashfile *f,
805 void *data)
662148c4 806{
980f525c
DS
807 struct write_midx_context *ctx = data;
808 struct pack_midx_entry *list = ctx->entries;
809 struct pack_midx_entry *end = ctx->entries + ctx->entries_nr;
980f525c 810 uint32_t nr_large_offset = ctx->num_large_offsets;
662148c4
DS
811
812 while (nr_large_offset) {
61b0fcbb
JK
813 struct pack_midx_entry *obj;
814 uint64_t offset;
815
816 if (list >= end)
817 BUG("too many large-offset objects");
818
819 obj = list++;
820 offset = obj->offset;
662148c4
DS
821
822 if (!(offset >> 31))
823 continue;
824
0ccd713c 825 hashwrite_be64(f, offset);
662148c4
DS
826
827 nr_large_offset--;
828 }
829
0ccd713c 830 return 0;
662148c4
DS
831}
832
30077524
JK
833struct midx_pack_order_data {
834 uint32_t nr;
835 uint32_t pack;
836 off_t offset;
837};
38ff7cab 838
30077524
JK
839static int midx_pack_order_cmp(const void *va, const void *vb)
840{
841 const struct midx_pack_order_data *a = va, *b = vb;
842 if (a->pack < b->pack)
38ff7cab 843 return -1;
30077524 844 else if (a->pack > b->pack)
38ff7cab 845 return 1;
30077524 846 else if (a->offset < b->offset)
38ff7cab 847 return -1;
30077524 848 else if (a->offset > b->offset)
38ff7cab 849 return 1;
30077524
JK
850 else
851 return 0;
38ff7cab
TB
852}
853
854static uint32_t *midx_pack_order(struct write_midx_context *ctx)
855{
30077524 856 struct midx_pack_order_data *data;
38ff7cab
TB
857 uint32_t *pack_order;
858 uint32_t i;
859
30077524
JK
860 ALLOC_ARRAY(data, ctx->entries_nr);
861 for (i = 0; i < ctx->entries_nr; i++) {
862 struct pack_midx_entry *e = &ctx->entries[i];
863 data[i].nr = i;
864 data[i].pack = ctx->pack_perm[e->pack_int_id];
865 if (!e->preferred)
866 data[i].pack |= (1U << 31);
867 data[i].offset = e->offset;
868 }
869
870 QSORT(data, ctx->entries_nr, midx_pack_order_cmp);
871
38ff7cab
TB
872 ALLOC_ARRAY(pack_order, ctx->entries_nr);
873 for (i = 0; i < ctx->entries_nr; i++)
30077524
JK
874 pack_order[i] = data[i].nr;
875 free(data);
38ff7cab
TB
876
877 return pack_order;
878}
879
880static void write_midx_reverse_index(char *midx_name, unsigned char *midx_hash,
881 struct write_midx_context *ctx)
882{
883 struct strbuf buf = STRBUF_INIT;
884 const char *tmp_file;
885
886 strbuf_addf(&buf, "%s-%s.rev", midx_name, hash_to_hex(midx_hash));
887
888 tmp_file = write_rev_file_order(NULL, ctx->pack_order, ctx->entries_nr,
889 midx_hash, WRITE_REV);
890
891 if (finalize_object_file(tmp_file, buf.buf))
892 die(_("cannot store reverse index file"));
893
894 strbuf_release(&buf);
895}
896
426c00e4 897static void clear_midx_files_ext(const char *object_dir, const char *ext,
38ff7cab
TB
898 unsigned char *keep_hash);
899
ec1e28ef
TB
900static int midx_checksum_valid(struct multi_pack_index *m)
901{
902 return hashfile_checksum_valid(m->data, m->data_len);
903}
904
c528e179
TB
905static void prepare_midx_packing_data(struct packing_data *pdata,
906 struct write_midx_context *ctx)
907{
908 uint32_t i;
909
910 memset(pdata, 0, sizeof(struct packing_data));
911 prepare_packing_data(the_repository, pdata);
912
913 for (i = 0; i < ctx->entries_nr; i++) {
914 struct pack_midx_entry *from = &ctx->entries[ctx->pack_order[i]];
915 struct object_entry *to = packlist_alloc(pdata, &from->oid);
916
917 oe_set_in_pack(pdata, to,
918 ctx->info[ctx->pack_perm[from->pack_int_id]].p);
919 }
920}
921
922static int add_ref_to_pending(const char *refname,
923 const struct object_id *oid,
924 int flag, void *cb_data)
925{
926 struct rev_info *revs = (struct rev_info*)cb_data;
927 struct object *object;
928
929 if ((flag & REF_ISSYMREF) && (flag & REF_ISBROKEN)) {
930 warning("symbolic ref is dangling: %s", refname);
931 return 0;
932 }
933
934 object = parse_object_or_die(oid, refname);
935 if (object->type != OBJ_COMMIT)
936 return 0;
937
938 add_pending_object(revs, object, "");
939 if (bitmap_is_preferred_refname(revs->repo, refname))
940 object->flags |= NEEDS_BITMAP;
941 return 0;
942}
943
944struct bitmap_commit_cb {
945 struct commit **commits;
946 size_t commits_nr, commits_alloc;
947
948 struct write_midx_context *ctx;
949};
950
951static const struct object_id *bitmap_oid_access(size_t index,
952 const void *_entries)
953{
954 const struct pack_midx_entry *entries = _entries;
955 return &entries[index].oid;
956}
957
958static void bitmap_show_commit(struct commit *commit, void *_data)
959{
960 struct bitmap_commit_cb *data = _data;
961 int pos = oid_pos(&commit->object.oid, data->ctx->entries,
962 data->ctx->entries_nr,
963 bitmap_oid_access);
964 if (pos < 0)
965 return;
966
967 ALLOC_GROW(data->commits, data->commits_nr + 1, data->commits_alloc);
968 data->commits[data->commits_nr++] = commit;
969}
970
08944d1c
TB
971static int read_refs_snapshot(const char *refs_snapshot,
972 struct rev_info *revs)
973{
974 struct strbuf buf = STRBUF_INIT;
975 struct object_id oid;
976 FILE *f = xfopen(refs_snapshot, "r");
977
978 while (strbuf_getline(&buf, f) != EOF) {
979 struct object *object;
980 int preferred = 0;
981 char *hex = buf.buf;
982 const char *end = NULL;
983
984 if (buf.len && *buf.buf == '+') {
985 preferred = 1;
986 hex = &buf.buf[1];
987 }
988
989 if (parse_oid_hex(hex, &oid, &end) < 0)
990 die(_("could not parse line: %s"), buf.buf);
991 if (*end)
992 die(_("malformed line: %s"), buf.buf);
993
994 object = parse_object_or_die(&oid, NULL);
995 if (preferred)
996 object->flags |= NEEDS_BITMAP;
997
998 add_pending_object(revs, object, "");
999 }
1000
1001 fclose(f);
1002 strbuf_release(&buf);
1003 return 0;
1004}
1005
c528e179 1006static struct commit **find_commits_for_midx_bitmap(uint32_t *indexed_commits_nr_p,
08944d1c 1007 const char *refs_snapshot,
c528e179
TB
1008 struct write_midx_context *ctx)
1009{
1010 struct rev_info revs;
1011 struct bitmap_commit_cb cb = {0};
1012
1013 cb.ctx = ctx;
1014
1015 repo_init_revisions(the_repository, &revs, NULL);
08944d1c
TB
1016 if (refs_snapshot) {
1017 read_refs_snapshot(refs_snapshot, &revs);
1018 } else {
1019 setup_revisions(0, NULL, &revs, NULL);
1020 for_each_ref(add_ref_to_pending, &revs);
1021 }
c528e179
TB
1022
1023 /*
1024 * Skipping promisor objects here is intentional, since it only excludes
1025 * them from the list of reachable commits that we want to select from
1026 * when computing the selection of MIDX'd commits to receive bitmaps.
1027 *
1028 * Reachability bitmaps do require that their objects be closed under
1029 * reachability, but fetching any objects missing from promisors at this
1030 * point is too late. But, if one of those objects can be reached from
1031 * an another object that is included in the bitmap, then we will
1032 * complain later that we don't have reachability closure (and fail
1033 * appropriately).
1034 */
1035 fetch_if_missing = 0;
1036 revs.exclude_promisor_objects = 1;
1037
1038 if (prepare_revision_walk(&revs))
1039 die(_("revision walk setup failed"));
1040
1041 traverse_commit_list(&revs, bitmap_show_commit, NULL, &cb);
1042 if (indexed_commits_nr_p)
1043 *indexed_commits_nr_p = cb.commits_nr;
1044
1045 return cb.commits;
1046}
1047
1048static int write_midx_bitmap(char *midx_name, unsigned char *midx_hash,
1049 struct write_midx_context *ctx,
08944d1c 1050 const char *refs_snapshot,
c528e179
TB
1051 unsigned flags)
1052{
1053 struct packing_data pdata;
1054 struct pack_idx_entry **index;
1055 struct commit **commits = NULL;
1056 uint32_t i, commits_nr;
caca3c9f 1057 uint16_t options = 0;
c528e179
TB
1058 char *bitmap_name = xstrfmt("%s-%s.bitmap", midx_name, hash_to_hex(midx_hash));
1059 int ret;
1060
caca3c9f
TB
1061 if (flags & MIDX_WRITE_BITMAP_HASH_CACHE)
1062 options |= BITMAP_OPT_HASH_CACHE;
1063
c528e179
TB
1064 prepare_midx_packing_data(&pdata, ctx);
1065
08944d1c 1066 commits = find_commits_for_midx_bitmap(&commits_nr, refs_snapshot, ctx);
c528e179
TB
1067
1068 /*
1069 * Build the MIDX-order index based on pdata.objects (which is already
1070 * in MIDX order; c.f., 'midx_pack_order_cmp()' for the definition of
1071 * this order).
1072 */
1073 ALLOC_ARRAY(index, pdata.nr_objects);
1074 for (i = 0; i < pdata.nr_objects; i++)
1075 index[i] = &pdata.objects[i].idx;
1076
1077 bitmap_writer_show_progress(flags & MIDX_PROGRESS);
1078 bitmap_writer_build_type_index(&pdata, index, pdata.nr_objects);
1079
1080 /*
1081 * bitmap_writer_finish expects objects in lex order, but pack_order
1082 * gives us exactly that. use it directly instead of re-sorting the
1083 * array.
1084 *
1085 * This changes the order of objects in 'index' between
1086 * bitmap_writer_build_type_index and bitmap_writer_finish.
1087 *
1088 * The same re-ordering takes place in the single-pack bitmap code via
1089 * write_idx_file(), which is called by finish_tmp_packfile(), which
1090 * happens between bitmap_writer_build_type_index() and
1091 * bitmap_writer_finish().
1092 */
1093 for (i = 0; i < pdata.nr_objects; i++)
1094 index[ctx->pack_order[i]] = &pdata.objects[i].idx;
1095
1096 bitmap_writer_select_commits(commits, commits_nr, -1);
1097 ret = bitmap_writer_build(&pdata);
1098 if (ret < 0)
1099 goto cleanup;
1100
1101 bitmap_writer_set_checksum(midx_hash);
caca3c9f 1102 bitmap_writer_finish(index, pdata.nr_objects, bitmap_name, options);
c528e179
TB
1103
1104cleanup:
1105 free(index);
1106 free(bitmap_name);
1107 return ret;
1108}
1109
504131ac
TB
1110static struct multi_pack_index *lookup_multi_pack_index(struct repository *r,
1111 const char *object_dir)
1112{
1113 struct multi_pack_index *cur;
1114
1115 /* Ensure the given object_dir is local, or a known alternate. */
1116 find_odb(r, object_dir);
1117
1118 for (cur = get_multi_pack_index(r); cur; cur = cur->next) {
1119 if (!strcmp(object_dir, cur->object_dir))
1120 return cur;
1121 }
1122
1123 return NULL;
1124}
1125
f57a7396 1126static int write_midx_internal(const char *object_dir,
56d863e9 1127 struct string_list *packs_to_include,
9218c6a4
TB
1128 struct string_list *packs_to_drop,
1129 const char *preferred_pack_name,
08944d1c 1130 const char *refs_snapshot,
9218c6a4 1131 unsigned flags)
a3407730 1132{
fc59e748 1133 char *midx_name;
9f191611 1134 unsigned char midx_hash[GIT_MAX_RAWSZ];
396f2570 1135 uint32_t i;
fc59e748
DS
1136 struct hashfile *f = NULL;
1137 struct lock_file lk;
577dc496 1138 struct write_midx_context ctx = { 0 };
dba6175c 1139 int pack_name_concat_len = 0;
19575c7c
DS
1140 int dropped_packs = 0;
1141 int result = 0;
63a8f0e9 1142 struct chunkfile *cf;
fc59e748
DS
1143
1144 midx_name = get_midx_filename(object_dir);
d5e1961c 1145 if (safe_create_leading_directories(midx_name))
fc59e748
DS
1146 die_errno(_("unable to create leading directories of %s"),
1147 midx_name);
fc59e748 1148
56d863e9
TB
1149 if (!packs_to_include) {
1150 /*
1151 * Only reference an existing MIDX when not filtering which
1152 * packs to include, since all packs and objects are copied
1153 * blindly from an existing MIDX if one is present.
1154 */
504131ac 1155 ctx.m = lookup_multi_pack_index(the_repository, object_dir);
f57a7396 1156 }
577dc496 1157
ec1e28ef
TB
1158 if (ctx.m && !midx_checksum_valid(ctx.m)) {
1159 warning(_("ignoring existing multi-pack-index; checksum mismatch"));
1160 ctx.m = NULL;
1161 }
1162
577dc496
DS
1163 ctx.nr = 0;
1164 ctx.alloc = ctx.m ? ctx.m->num_packs : 16;
1165 ctx.info = NULL;
1166 ALLOC_ARRAY(ctx.info, ctx.alloc);
1167
1168 if (ctx.m) {
1169 for (i = 0; i < ctx.m->num_packs; i++) {
1170 ALLOC_GROW(ctx.info, ctx.nr + 1, ctx.alloc);
1171
1172 ctx.info[ctx.nr].orig_pack_int_id = i;
1173 ctx.info[ctx.nr].pack_name = xstrdup(ctx.m->pack_names[i]);
c528e179 1174 ctx.info[ctx.nr].p = ctx.m->packs[i];
577dc496 1175 ctx.info[ctx.nr].expired = 0;
5d3cd09a
TB
1176
1177 if (flags & MIDX_WRITE_REV_INDEX) {
1178 /*
1179 * If generating a reverse index, need to have
1180 * packed_git's loaded to compare their
1181 * mtimes and object count.
1182 */
1183 if (prepare_midx_pack(the_repository, ctx.m, i)) {
1184 error(_("could not load pack"));
1185 result = 1;
1186 goto cleanup;
1187 }
1188
1189 if (open_pack_index(ctx.m->packs[i]))
1190 die(_("could not open index for %s"),
1191 ctx.m->packs[i]->pack_name);
1192 ctx.info[ctx.nr].p = ctx.m->packs[i];
1193 }
1194
577dc496 1195 ctx.nr++;
a40498a1
DS
1196 }
1197 }
1198
577dc496 1199 ctx.pack_paths_checked = 0;
840cef0c 1200 if (flags & MIDX_PROGRESS)
577dc496 1201 ctx.progress = start_delayed_progress(_("Adding packfiles to multi-pack-index"), 0);
840cef0c 1202 else
577dc496 1203 ctx.progress = NULL;
840cef0c 1204
56d863e9
TB
1205 ctx.to_include = packs_to_include;
1206
577dc496
DS
1207 for_each_file_in_pack_dir(object_dir, add_pack_to_midx, &ctx);
1208 stop_progress(&ctx.progress);
396f2570 1209
56d863e9
TB
1210 if ((ctx.m && ctx.nr == ctx.m->num_packs) &&
1211 !(packs_to_include || packs_to_drop)) {
c528e179
TB
1212 struct bitmap_index *bitmap_git;
1213 int bitmap_exists;
1214 int want_bitmap = flags & MIDX_WRITE_BITMAP;
1215
bfbb60d3 1216 bitmap_git = prepare_midx_bitmap_git(ctx.m);
c528e179
TB
1217 bitmap_exists = bitmap_git && bitmap_is_midx(bitmap_git);
1218 free_bitmap_index(bitmap_git);
1219
1220 if (bitmap_exists || !want_bitmap) {
1221 /*
1222 * The correct MIDX already exists, and so does a
1223 * corresponding bitmap (or one wasn't requested).
1224 */
1225 if (!want_bitmap)
1226 clear_midx_files_ext(object_dir, ".bitmap",
1227 NULL);
1228 goto cleanup;
1229 }
1230 }
a40498a1 1231
9218c6a4 1232 if (preferred_pack_name) {
177c0d6e 1233 int found = 0;
9218c6a4
TB
1234 for (i = 0; i < ctx.nr; i++) {
1235 if (!cmp_idx_or_pack_name(preferred_pack_name,
1236 ctx.info[i].pack_name)) {
1237 ctx.preferred_pack_idx = i;
177c0d6e 1238 found = 1;
9218c6a4
TB
1239 break;
1240 }
1241 }
177c0d6e
TB
1242
1243 if (!found)
1244 warning(_("unknown preferred pack: '%s'"),
1245 preferred_pack_name);
c528e179
TB
1246 } else if (ctx.nr &&
1247 (flags & (MIDX_WRITE_REV_INDEX | MIDX_WRITE_BITMAP))) {
177c0d6e
TB
1248 struct packed_git *oldest = ctx.info[ctx.preferred_pack_idx].p;
1249 ctx.preferred_pack_idx = 0;
1250
1251 if (packs_to_drop && packs_to_drop->nr)
1252 BUG("cannot write a MIDX bitmap during expiration");
1253
1254 /*
1255 * set a preferred pack when writing a bitmap to ensure that
1256 * the pack from which the first object is selected in pseudo
1257 * pack-order has all of its objects selected from that pack
1258 * (and not another pack containing a duplicate)
1259 */
1260 for (i = 1; i < ctx.nr; i++) {
1261 struct packed_git *p = ctx.info[i].p;
1262
1263 if (!oldest->num_objects || p->mtime < oldest->mtime) {
1264 oldest = p;
1265 ctx.preferred_pack_idx = i;
1266 }
1267 }
1268
1269 if (!oldest->num_objects) {
1270 /*
1271 * If all packs are empty; unset the preferred index.
1272 * This is acceptable since there will be no duplicate
1273 * objects to resolve, so the preferred value doesn't
1274 * matter.
1275 */
1276 ctx.preferred_pack_idx = -1;
1277 }
1278 } else {
1279 /*
1280 * otherwise don't mark any pack as preferred to avoid
1281 * interfering with expiration logic below
1282 */
1283 ctx.preferred_pack_idx = -1;
9218c6a4
TB
1284 }
1285
5d3cd09a
TB
1286 if (ctx.preferred_pack_idx > -1) {
1287 struct packed_git *preferred = ctx.info[ctx.preferred_pack_idx].p;
1288 if (!preferred->num_objects) {
1289 error(_("cannot select preferred pack %s with no objects"),
1290 preferred->pack_name);
1291 result = 1;
1292 goto cleanup;
1293 }
1294 }
1295
9218c6a4
TB
1296 ctx.entries = get_sorted_entries(ctx.m, ctx.info, ctx.nr, &ctx.entries_nr,
1297 ctx.preferred_pack_idx);
a40498a1 1298
7a3ada11 1299 ctx.large_offsets_needed = 0;
31bda9a2
DS
1300 for (i = 0; i < ctx.entries_nr; i++) {
1301 if (ctx.entries[i].offset > 0x7fffffff)
980f525c 1302 ctx.num_large_offsets++;
31bda9a2 1303 if (ctx.entries[i].offset > 0xffffffff)
7a3ada11 1304 ctx.large_offsets_needed = 1;
662148c4 1305 }
fe1ed56f 1306
577dc496 1307 QSORT(ctx.info, ctx.nr, pack_info_compare);
d01bf2e6 1308
19575c7c
DS
1309 if (packs_to_drop && packs_to_drop->nr) {
1310 int drop_index = 0;
1311 int missing_drops = 0;
1312
577dc496
DS
1313 for (i = 0; i < ctx.nr && drop_index < packs_to_drop->nr; i++) {
1314 int cmp = strcmp(ctx.info[i].pack_name,
19575c7c
DS
1315 packs_to_drop->items[drop_index].string);
1316
1317 if (!cmp) {
1318 drop_index++;
577dc496 1319 ctx.info[i].expired = 1;
19575c7c
DS
1320 } else if (cmp > 0) {
1321 error(_("did not see pack-file %s to drop"),
1322 packs_to_drop->items[drop_index].string);
1323 drop_index++;
1324 missing_drops++;
1325 i--;
1326 } else {
577dc496 1327 ctx.info[i].expired = 0;
19575c7c
DS
1328 }
1329 }
1330
1331 if (missing_drops) {
1332 result = 1;
1333 goto cleanup;
1334 }
1335 }
1336
d01bf2e6
DS
1337 /*
1338 * pack_perm stores a permutation between pack-int-ids from the
1339 * previous multi-pack-index to the new one we are writing:
1340 *
1341 * pack_perm[old_id] = new_id
1342 */
7a3ada11 1343 ALLOC_ARRAY(ctx.pack_perm, ctx.nr);
577dc496
DS
1344 for (i = 0; i < ctx.nr; i++) {
1345 if (ctx.info[i].expired) {
19575c7c 1346 dropped_packs++;
7a3ada11 1347 ctx.pack_perm[ctx.info[i].orig_pack_int_id] = PACK_EXPIRED;
19575c7c 1348 } else {
7a3ada11 1349 ctx.pack_perm[ctx.info[i].orig_pack_int_id] = i - dropped_packs;
19575c7c 1350 }
d01bf2e6
DS
1351 }
1352
577dc496
DS
1353 for (i = 0; i < ctx.nr; i++) {
1354 if (!ctx.info[i].expired)
1355 pack_name_concat_len += strlen(ctx.info[i].pack_name) + 1;
19575c7c 1356 }
dba6175c 1357
9218c6a4
TB
1358 /* Check that the preferred pack wasn't expired (if given). */
1359 if (preferred_pack_name) {
1360 struct pack_info *preferred = bsearch(preferred_pack_name,
1361 ctx.info, ctx.nr,
1362 sizeof(*ctx.info),
1363 idx_or_pack_name_cmp);
177c0d6e 1364 if (preferred) {
9218c6a4
TB
1365 uint32_t perm = ctx.pack_perm[preferred->orig_pack_int_id];
1366 if (perm == PACK_EXPIRED)
1367 warning(_("preferred pack '%s' is expired"),
1368 preferred_pack_name);
1369 }
1370 }
1371
dba6175c
DS
1372 if (pack_name_concat_len % MIDX_CHUNK_ALIGNMENT)
1373 pack_name_concat_len += MIDX_CHUNK_ALIGNMENT -
1374 (pack_name_concat_len % MIDX_CHUNK_ALIGNMENT);
1375
fc59e748 1376 hold_lock_file_for_update(&lk, midx_name, LOCK_DIE_ON_ERROR);
acd71602 1377 f = hashfd(get_lock_file_fd(&lk), get_lock_file_path(&lk));
fc59e748 1378
577dc496 1379 if (ctx.nr - dropped_packs == 0) {
796d61cd
DR
1380 error(_("no pack files to index."));
1381 result = 1;
1382 goto cleanup;
1383 }
1384
63a8f0e9 1385 cf = init_chunkfile(f);
32f3c541 1386
63a8f0e9
DS
1387 add_chunk(cf, MIDX_CHUNKID_PACKNAMES, pack_name_concat_len,
1388 write_midx_pack_names);
1389 add_chunk(cf, MIDX_CHUNKID_OIDFANOUT, MIDX_CHUNK_FANOUT_SIZE,
1390 write_midx_oid_fanout);
1391 add_chunk(cf, MIDX_CHUNKID_OIDLOOKUP,
329fac3a 1392 (size_t)ctx.entries_nr * the_hash_algo->rawsz,
63a8f0e9
DS
1393 write_midx_oid_lookup);
1394 add_chunk(cf, MIDX_CHUNKID_OBJECTOFFSETS,
329fac3a 1395 (size_t)ctx.entries_nr * MIDX_CHUNK_OFFSET_WIDTH,
63a8f0e9 1396 write_midx_object_offsets);
32f3c541 1397
63a8f0e9
DS
1398 if (ctx.large_offsets_needed)
1399 add_chunk(cf, MIDX_CHUNKID_LARGEOFFSETS,
329fac3a 1400 (size_t)ctx.num_large_offsets * MIDX_CHUNK_LARGE_OFFSET_WIDTH,
63a8f0e9 1401 write_midx_large_offsets);
32f3c541 1402
63a8f0e9
DS
1403 write_midx_header(f, get_num_chunks(cf), ctx.nr - dropped_packs);
1404 write_chunkfile(cf, &ctx);
fc59e748 1405
9f191611 1406 finalize_hashfile(f, midx_hash, CSUM_FSYNC | CSUM_HASH_IN_STREAM);
63a8f0e9 1407 free_chunkfile(cf);
38ff7cab 1408
c528e179 1409 if (flags & (MIDX_WRITE_REV_INDEX | MIDX_WRITE_BITMAP))
38ff7cab
TB
1410 ctx.pack_order = midx_pack_order(&ctx);
1411
1412 if (flags & MIDX_WRITE_REV_INDEX)
1413 write_midx_reverse_index(midx_name, midx_hash, &ctx);
c528e179 1414 if (flags & MIDX_WRITE_BITMAP) {
08944d1c
TB
1415 if (write_midx_bitmap(midx_name, midx_hash, &ctx,
1416 refs_snapshot, flags) < 0) {
c528e179
TB
1417 error(_("could not write multi-pack bitmap"));
1418 result = 1;
1419 goto cleanup;
1420 }
1421 }
1422
1423 if (ctx.m)
1424 close_object_store(the_repository->objects);
38ff7cab 1425
fc59e748
DS
1426 commit_lock_file(&lk);
1427
c528e179 1428 clear_midx_files_ext(object_dir, ".bitmap", midx_hash);
f5909d34
TB
1429 clear_midx_files_ext(object_dir, ".rev", midx_hash);
1430
a40498a1 1431cleanup:
577dc496
DS
1432 for (i = 0; i < ctx.nr; i++) {
1433 if (ctx.info[i].p) {
1434 close_pack(ctx.info[i].p);
1435 free(ctx.info[i].p);
396f2570 1436 }
577dc496 1437 free(ctx.info[i].pack_name);
396f2570
DS
1438 }
1439
577dc496 1440 free(ctx.info);
31bda9a2 1441 free(ctx.entries);
7a3ada11 1442 free(ctx.pack_perm);
38ff7cab 1443 free(ctx.pack_order);
a40498a1 1444 free(midx_name);
c528e179 1445
19575c7c
DS
1446 return result;
1447}
1448
9218c6a4
TB
1449int write_midx_file(const char *object_dir,
1450 const char *preferred_pack_name,
08944d1c 1451 const char *refs_snapshot,
9218c6a4 1452 unsigned flags)
19575c7c 1453{
56d863e9 1454 return write_midx_internal(object_dir, NULL, NULL, preferred_pack_name,
08944d1c 1455 refs_snapshot, flags);
56d863e9
TB
1456}
1457
1458int write_midx_file_only(const char *object_dir,
1459 struct string_list *packs_to_include,
1460 const char *preferred_pack_name,
08944d1c 1461 const char *refs_snapshot,
56d863e9
TB
1462 unsigned flags)
1463{
1464 return write_midx_internal(object_dir, packs_to_include, NULL,
08944d1c 1465 preferred_pack_name, refs_snapshot, flags);
a3407730 1466}
525e18c0 1467
38ff7cab
TB
1468struct clear_midx_data {
1469 char *keep;
1470 const char *ext;
1471};
1472
1473static void clear_midx_file_ext(const char *full_path, size_t full_path_len,
1474 const char *file_name, void *_data)
1475{
1476 struct clear_midx_data *data = _data;
1477
1478 if (!(starts_with(file_name, "multi-pack-index-") &&
1479 ends_with(file_name, data->ext)))
1480 return;
1481 if (data->keep && !strcmp(data->keep, file_name))
1482 return;
1483
1484 if (unlink(full_path))
1485 die_errno(_("failed to remove %s"), full_path);
1486}
1487
426c00e4 1488static void clear_midx_files_ext(const char *object_dir, const char *ext,
38ff7cab
TB
1489 unsigned char *keep_hash)
1490{
1491 struct clear_midx_data data;
1492 memset(&data, 0, sizeof(struct clear_midx_data));
1493
1494 if (keep_hash)
1495 data.keep = xstrfmt("multi-pack-index-%s%s",
1496 hash_to_hex(keep_hash), ext);
1497 data.ext = ext;
1498
426c00e4 1499 for_each_file_in_pack_dir(object_dir,
38ff7cab
TB
1500 clear_midx_file_ext,
1501 &data);
1502
1503 free(data.keep);
a3407730 1504}
525e18c0 1505
1dcd9f20 1506void clear_midx_file(struct repository *r)
525e18c0 1507{
3b2f8a02 1508 char *midx = get_midx_filename(r->objects->odb->path);
1dcd9f20
DS
1509
1510 if (r->objects && r->objects->multi_pack_index) {
1511 close_midx(r->objects->multi_pack_index);
1512 r->objects->multi_pack_index = NULL;
1513 }
525e18c0 1514
d5e1961c 1515 if (remove_path(midx))
525e18c0 1516 die(_("failed to clear multi-pack-index at %s"), midx);
525e18c0 1517
c528e179 1518 clear_midx_files_ext(r->objects->odb->path, ".bitmap", NULL);
426c00e4 1519 clear_midx_files_ext(r->objects->odb->path, ".rev", NULL);
38ff7cab 1520
525e18c0
DS
1521 free(midx);
1522}
56ee7ff1
DS
1523
1524static int verify_midx_error;
1525
48ca53ca 1526__attribute__((format (printf, 1, 2)))
d4bf1d88
DS
1527static void midx_report(const char *fmt, ...)
1528{
1529 va_list ap;
1530 verify_midx_error = 1;
1531 va_start(ap, fmt);
1532 vfprintf(stderr, fmt, ap);
1533 fprintf(stderr, "\n");
1534 va_end(ap);
1535}
1536
5ae18df9
JH
1537struct pair_pos_vs_id
1538{
1539 uint32_t pos;
1540 uint32_t pack_int_id;
1541};
1542
1543static int compare_pair_pos_vs_id(const void *_a, const void *_b)
1544{
1545 struct pair_pos_vs_id *a = (struct pair_pos_vs_id *)_a;
1546 struct pair_pos_vs_id *b = (struct pair_pos_vs_id *)_b;
1547
1548 return b->pack_int_id - a->pack_int_id;
1549}
1550
430efb8a
JH
1551/*
1552 * Limit calls to display_progress() for performance reasons.
1553 * The interval here was arbitrarily chosen.
1554 */
1555#define SPARSE_PROGRESS_INTERVAL (1 << 12)
1556#define midx_display_sparse_progress(progress, n) \
1557 do { \
1558 uint64_t _n = (n); \
1559 if ((_n & (SPARSE_PROGRESS_INTERVAL - 1)) == 0) \
1560 display_progress(progress, _n); \
1561 } while (0)
1562
efbc3aee 1563int verify_midx_file(struct repository *r, const char *object_dir, unsigned flags)
56ee7ff1 1564{
5ae18df9 1565 struct pair_pos_vs_id *pairs = NULL;
d4bf1d88 1566 uint32_t i;
ad60096d 1567 struct progress *progress = NULL;
56ee7ff1
DS
1568 struct multi_pack_index *m = load_multi_pack_index(object_dir, 1);
1569 verify_midx_error = 0;
1570
d9607542
DS
1571 if (!m) {
1572 int result = 0;
1573 struct stat sb;
1574 char *filename = get_midx_filename(object_dir);
1575 if (!stat(filename, &sb)) {
1576 error(_("multi-pack-index file exists, but failed to parse"));
1577 result = 1;
1578 }
1579 free(filename);
1580 return result;
1581 }
56ee7ff1 1582
f89ecf79
TB
1583 if (!midx_checksum_valid(m))
1584 midx_report(_("incorrect checksum"));
1585
ad60096d 1586 if (flags & MIDX_PROGRESS)
efdd2f0d 1587 progress = start_delayed_progress(_("Looking for referenced packfiles"),
ad60096d 1588 m->num_packs);
d4bf1d88 1589 for (i = 0; i < m->num_packs; i++) {
64404a24 1590 if (prepare_midx_pack(r, m, i))
d4bf1d88 1591 midx_report("failed to load pack in position %d", i);
430efb8a
JH
1592
1593 display_progress(progress, i + 1);
d4bf1d88 1594 }
430efb8a 1595 stop_progress(&progress);
d4bf1d88 1596
2f23d3f3
DS
1597 for (i = 0; i < 255; i++) {
1598 uint32_t oid_fanout1 = ntohl(m->chunk_oid_fanout[i]);
1599 uint32_t oid_fanout2 = ntohl(m->chunk_oid_fanout[i + 1]);
1600
1601 if (oid_fanout1 > oid_fanout2)
1602 midx_report(_("oid fanout out of order: fanout[%d] = %"PRIx32" > %"PRIx32" = fanout[%d]"),
1603 i, oid_fanout1, oid_fanout2, i + 1);
1604 }
1605
796d61cd
DR
1606 if (m->num_objects == 0) {
1607 midx_report(_("the midx contains no oid"));
1608 /*
1609 * Remaining tests assume that we have objects, so we can
1610 * return here.
1611 */
1612 return verify_midx_error;
1613 }
1614
ad60096d
WB
1615 if (flags & MIDX_PROGRESS)
1616 progress = start_sparse_progress(_("Verifying OID order in multi-pack-index"),
1617 m->num_objects - 1);
55c5648d
DS
1618 for (i = 0; i < m->num_objects - 1; i++) {
1619 struct object_id oid1, oid2;
1620
1621 nth_midxed_object_oid(&oid1, m, i);
1622 nth_midxed_object_oid(&oid2, m, i + 1);
1623
1624 if (oidcmp(&oid1, &oid2) >= 0)
1625 midx_report(_("oid lookup out of order: oid[%d] = %s >= %s = oid[%d]"),
1626 i, oid_to_hex(&oid1), oid_to_hex(&oid2), i + 1);
430efb8a
JH
1627
1628 midx_display_sparse_progress(progress, i + 1);
55c5648d 1629 }
430efb8a 1630 stop_progress(&progress);
55c5648d 1631
5ae18df9
JH
1632 /*
1633 * Create an array mapping each object to its packfile id. Sort it
1634 * to group the objects by packfile. Use this permutation to visit
1635 * each of the objects and only require 1 packfile to be open at a
1636 * time.
1637 */
1638 ALLOC_ARRAY(pairs, m->num_objects);
1639 for (i = 0; i < m->num_objects; i++) {
1640 pairs[i].pos = i;
1641 pairs[i].pack_int_id = nth_midxed_pack_int_id(m, i);
1642 }
1643
ad60096d
WB
1644 if (flags & MIDX_PROGRESS)
1645 progress = start_sparse_progress(_("Sorting objects by packfile"),
1646 m->num_objects);
5ae18df9
JH
1647 display_progress(progress, 0); /* TODO: Measure QSORT() progress */
1648 QSORT(pairs, m->num_objects, compare_pair_pos_vs_id);
1649 stop_progress(&progress);
1650
ad60096d
WB
1651 if (flags & MIDX_PROGRESS)
1652 progress = start_sparse_progress(_("Verifying object offsets"), m->num_objects);
cc6af73c
DS
1653 for (i = 0; i < m->num_objects; i++) {
1654 struct object_id oid;
1655 struct pack_entry e;
1656 off_t m_offset, p_offset;
1657
5ae18df9
JH
1658 if (i > 0 && pairs[i-1].pack_int_id != pairs[i].pack_int_id &&
1659 m->packs[pairs[i-1].pack_int_id])
1660 {
1661 close_pack_fd(m->packs[pairs[i-1].pack_int_id]);
1662 close_pack_index(m->packs[pairs[i-1].pack_int_id]);
1663 }
1664
1665 nth_midxed_object_oid(&oid, m, pairs[i].pos);
1666
64404a24 1667 if (!fill_midx_entry(r, &oid, &e, m)) {
cc6af73c 1668 midx_report(_("failed to load pack entry for oid[%d] = %s"),
5ae18df9 1669 pairs[i].pos, oid_to_hex(&oid));
cc6af73c
DS
1670 continue;
1671 }
1672
1673 if (open_pack_index(e.p)) {
1674 midx_report(_("failed to load pack-index for packfile %s"),
1675 e.p->pack_name);
1676 break;
1677 }
1678
1679 m_offset = e.offset;
1680 p_offset = find_pack_entry_one(oid.hash, e.p);
1681
1682 if (m_offset != p_offset)
1683 midx_report(_("incorrect object offset for oid[%d] = %s: %"PRIx64" != %"PRIx64),
5ae18df9 1684 pairs[i].pos, oid_to_hex(&oid), m_offset, p_offset);
144d7033 1685
430efb8a 1686 midx_display_sparse_progress(progress, i + 1);
cc6af73c 1687 }
144d7033 1688 stop_progress(&progress);
cc6af73c 1689
5ae18df9
JH
1690 free(pairs);
1691
56ee7ff1
DS
1692 return verify_midx_error;
1693}
cff97116 1694
efbc3aee 1695int expire_midx_packs(struct repository *r, const char *object_dir, unsigned flags)
cff97116 1696{
19575c7c
DS
1697 uint32_t i, *count, result = 0;
1698 struct string_list packs_to_drop = STRING_LIST_INIT_DUP;
98926e0d 1699 struct multi_pack_index *m = lookup_multi_pack_index(r, object_dir);
8dc18f89 1700 struct progress *progress = NULL;
19575c7c
DS
1701
1702 if (!m)
1703 return 0;
1704
ca56dadb 1705 CALLOC_ARRAY(count, m->num_packs);
8dc18f89
WB
1706
1707 if (flags & MIDX_PROGRESS)
efdd2f0d 1708 progress = start_delayed_progress(_("Counting referenced objects"),
8dc18f89 1709 m->num_objects);
19575c7c
DS
1710 for (i = 0; i < m->num_objects; i++) {
1711 int pack_int_id = nth_midxed_pack_int_id(m, i);
1712 count[pack_int_id]++;
8dc18f89 1713 display_progress(progress, i + 1);
19575c7c 1714 }
8dc18f89 1715 stop_progress(&progress);
19575c7c 1716
8dc18f89 1717 if (flags & MIDX_PROGRESS)
efdd2f0d 1718 progress = start_delayed_progress(_("Finding and deleting unreferenced packfiles"),
8dc18f89 1719 m->num_packs);
19575c7c
DS
1720 for (i = 0; i < m->num_packs; i++) {
1721 char *pack_name;
8dc18f89 1722 display_progress(progress, i + 1);
19575c7c
DS
1723
1724 if (count[i])
1725 continue;
1726
1727 if (prepare_midx_pack(r, m, i))
1728 continue;
1729
1730 if (m->packs[i]->pack_keep)
1731 continue;
1732
1733 pack_name = xstrdup(m->packs[i]->pack_name);
1734 close_pack(m->packs[i]);
1735
1736 string_list_insert(&packs_to_drop, m->pack_names[i]);
1737 unlink_pack_path(pack_name, 0);
1738 free(pack_name);
1739 }
8dc18f89 1740 stop_progress(&progress);
19575c7c
DS
1741
1742 free(count);
1743
98926e0d 1744 if (packs_to_drop.nr)
08944d1c 1745 result = write_midx_internal(object_dir, NULL, &packs_to_drop, NULL, NULL, flags);
19575c7c
DS
1746
1747 string_list_clear(&packs_to_drop, 0);
98926e0d 1748
19575c7c 1749 return result;
cff97116 1750}
2af890bb 1751
ce1e4a10
DS
1752struct repack_info {
1753 timestamp_t mtime;
1754 uint32_t referenced_objects;
1755 uint32_t pack_int_id;
1756};
1757
1758static int compare_by_mtime(const void *a_, const void *b_)
2af890bb 1759{
ce1e4a10
DS
1760 const struct repack_info *a, *b;
1761
1762 a = (const struct repack_info *)a_;
1763 b = (const struct repack_info *)b_;
1764
1765 if (a->mtime < b->mtime)
1766 return -1;
1767 if (a->mtime > b->mtime)
1768 return 1;
1769 return 0;
1770}
1771
3ce4ca0a
DS
1772static int fill_included_packs_all(struct repository *r,
1773 struct multi_pack_index *m,
ce1e4a10
DS
1774 unsigned char *include_pack)
1775{
3ce4ca0a
DS
1776 uint32_t i, count = 0;
1777 int pack_kept_objects = 0;
1778
1779 repo_config_get_bool(r, "repack.packkeptobjects", &pack_kept_objects);
1780
1781 for (i = 0; i < m->num_packs; i++) {
1782 if (prepare_midx_pack(r, m, i))
1783 continue;
1784 if (!pack_kept_objects && m->packs[i]->pack_keep)
1785 continue;
ce1e4a10 1786
ce1e4a10 1787 include_pack[i] = 1;
3ce4ca0a
DS
1788 count++;
1789 }
ce1e4a10 1790
3ce4ca0a 1791 return count < 2;
ce1e4a10
DS
1792}
1793
1794static int fill_included_packs_batch(struct repository *r,
1795 struct multi_pack_index *m,
1796 unsigned char *include_pack,
1797 size_t batch_size)
1798{
1799 uint32_t i, packs_to_repack;
1800 size_t total_size;
1801 struct repack_info *pack_info = xcalloc(m->num_packs, sizeof(struct repack_info));
3ce4ca0a
DS
1802 int pack_kept_objects = 0;
1803
1804 repo_config_get_bool(r, "repack.packkeptobjects", &pack_kept_objects);
ce1e4a10
DS
1805
1806 for (i = 0; i < m->num_packs; i++) {
1807 pack_info[i].pack_int_id = i;
1808
1809 if (prepare_midx_pack(r, m, i))
1810 continue;
1811
1812 pack_info[i].mtime = m->packs[i]->mtime;
1813 }
1814
1815 for (i = 0; batch_size && i < m->num_objects; i++) {
1816 uint32_t pack_int_id = nth_midxed_pack_int_id(m, i);
1817 pack_info[pack_int_id].referenced_objects++;
1818 }
1819
1820 QSORT(pack_info, m->num_packs, compare_by_mtime);
1821
1822 total_size = 0;
1823 packs_to_repack = 0;
1824 for (i = 0; total_size < batch_size && i < m->num_packs; i++) {
1825 int pack_int_id = pack_info[i].pack_int_id;
1826 struct packed_git *p = m->packs[pack_int_id];
1827 size_t expected_size;
1828
1829 if (!p)
1830 continue;
3ce4ca0a
DS
1831 if (!pack_kept_objects && p->pack_keep)
1832 continue;
ce1e4a10
DS
1833 if (open_pack_index(p) || !p->num_objects)
1834 continue;
1835
1836 expected_size = (size_t)(p->pack_size
1837 * pack_info[i].referenced_objects);
1838 expected_size /= p->num_objects;
1839
1840 if (expected_size >= batch_size)
1841 continue;
1842
1843 packs_to_repack++;
1844 total_size += expected_size;
1845 include_pack[pack_int_id] = 1;
1846 }
1847
1848 free(pack_info);
1849
1eb22c7d 1850 if (packs_to_repack < 2)
ce1e4a10
DS
1851 return 1;
1852
2af890bb
DS
1853 return 0;
1854}
ce1e4a10 1855
efbc3aee 1856int midx_repack(struct repository *r, const char *object_dir, size_t batch_size, unsigned flags)
ce1e4a10
DS
1857{
1858 int result = 0;
1859 uint32_t i;
1860 unsigned char *include_pack;
1861 struct child_process cmd = CHILD_PROCESS_INIT;
6af3b00a 1862 FILE *cmd_in;
ce1e4a10 1863 struct strbuf base_name = STRBUF_INIT;
c0f1f9de 1864 struct multi_pack_index *m = lookup_multi_pack_index(r, object_dir);
ce1e4a10 1865
e11d86de
SLN
1866 /*
1867 * When updating the default for these configuration
1868 * variables in builtin/repack.c, these must be adjusted
1869 * to match.
1870 */
1871 int delta_base_offset = 1;
1872 int use_delta_islands = 0;
1873
ce1e4a10
DS
1874 if (!m)
1875 return 0;
1876
ca56dadb 1877 CALLOC_ARRAY(include_pack, m->num_packs);
ce1e4a10
DS
1878
1879 if (batch_size) {
1880 if (fill_included_packs_batch(r, m, include_pack, batch_size))
1881 goto cleanup;
3ce4ca0a 1882 } else if (fill_included_packs_all(r, m, include_pack))
ce1e4a10
DS
1883 goto cleanup;
1884
e11d86de
SLN
1885 repo_config_get_bool(r, "repack.usedeltabaseoffset", &delta_base_offset);
1886 repo_config_get_bool(r, "repack.usedeltaislands", &use_delta_islands);
1887
c972bf4c 1888 strvec_push(&cmd.args, "pack-objects");
ce1e4a10
DS
1889
1890 strbuf_addstr(&base_name, object_dir);
1891 strbuf_addstr(&base_name, "/pack/pack");
c972bf4c 1892 strvec_push(&cmd.args, base_name.buf);
64d80e7d 1893
e11d86de 1894 if (delta_base_offset)
c972bf4c 1895 strvec_push(&cmd.args, "--delta-base-offset");
e11d86de 1896 if (use_delta_islands)
c972bf4c 1897 strvec_push(&cmd.args, "--delta-islands");
e11d86de 1898
64d80e7d 1899 if (flags & MIDX_PROGRESS)
c972bf4c 1900 strvec_push(&cmd.args, "--progress");
64d80e7d 1901 else
c972bf4c 1902 strvec_push(&cmd.args, "-q");
64d80e7d 1903
ce1e4a10
DS
1904 strbuf_release(&base_name);
1905
1906 cmd.git_cmd = 1;
1907 cmd.in = cmd.out = -1;
1908
1909 if (start_command(&cmd)) {
1910 error(_("could not start pack-objects"));
1911 result = 1;
1912 goto cleanup;
1913 }
1914
6af3b00a
RS
1915 cmd_in = xfdopen(cmd.in, "w");
1916
ce1e4a10
DS
1917 for (i = 0; i < m->num_objects; i++) {
1918 struct object_id oid;
1919 uint32_t pack_int_id = nth_midxed_pack_int_id(m, i);
1920
1921 if (!include_pack[pack_int_id])
1922 continue;
1923
1924 nth_midxed_object_oid(&oid, m, i);
6af3b00a 1925 fprintf(cmd_in, "%s\n", oid_to_hex(&oid));
ce1e4a10 1926 }
6af3b00a 1927 fclose(cmd_in);
ce1e4a10
DS
1928
1929 if (finish_command(&cmd)) {
1930 error(_("could not finish pack-objects"));
1931 result = 1;
1932 goto cleanup;
1933 }
1934
08944d1c 1935 result = write_midx_internal(object_dir, NULL, NULL, NULL, NULL, flags);
ce1e4a10
DS
1936
1937cleanup:
ce1e4a10
DS
1938 free(include_pack);
1939 return result;
1940}