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