blob: 9e8658317251dfc5c2d5aa116305e229783dde76 [file] [log] [blame]
Derrick Stoleea3407732018-07-12 15:39:21 -04001#include "cache.h"
Derrick Stoleec4d25222018-07-12 15:39:33 -04002#include "config.h"
Derrick Stoleefc59e742018-07-12 15:39:22 -04003#include "csum-file.h"
Derrick Stolee396f2572018-07-12 15:39:26 -04004#include "dir.h"
Derrick Stoleefc59e742018-07-12 15:39:22 -04005#include "lockfile.h"
Derrick Stolee396f2572018-07-12 15:39:26 -04006#include "packfile.h"
Derrick Stolee4d805602018-07-12 15:39:23 -04007#include "object-store.h"
Martin Ågrenbc626922020-12-31 12:56:23 +01008#include "hash-lookup.h"
Derrick Stoleea3407732018-07-12 15:39:21 -04009#include "midx.h"
Derrick Stolee144d7032018-09-13 11:02:26 -070010#include "progress.h"
Jeff Hostetlerd8292232019-03-21 12:36:13 -070011#include "trace2.h"
Derrick Stoleece1e4a12019-06-10 16:35:27 -070012#include "run-command.h"
Derrick Stolee18e449f2020-09-25 12:33:34 +000013#include "repository.h"
Derrick Stolee63a8f0e2021-02-18 14:07:33 +000014#include "chunk-format.h"
Taylor Blau38ff7ca2021-03-30 11:04:32 -040015#include "pack.h"
Derrick Stoleea3407732018-07-12 15:39:21 -040016
Derrick Stoleefc59e742018-07-12 15:39:22 -040017#define MIDX_SIGNATURE 0x4d494458 /* "MIDX" */
18#define MIDX_VERSION 1
Derrick Stolee4d805602018-07-12 15:39:23 -040019#define MIDX_BYTE_FILE_VERSION 4
20#define MIDX_BYTE_HASH_VERSION 5
21#define MIDX_BYTE_NUM_CHUNKS 6
22#define MIDX_BYTE_NUM_PACKS 8
Derrick Stoleefc59e742018-07-12 15:39:22 -040023#define MIDX_HEADER_SIZE 12
brian m. carlsonaaa95df2019-08-18 20:04:27 +000024#define MIDX_MIN_SIZE (MIDX_HEADER_SIZE + the_hash_algo->rawsz)
Derrick Stoleefc59e742018-07-12 15:39:22 -040025
Derrick Stolee32f3c542018-07-12 15:39:27 -040026#define MIDX_CHUNK_ALIGNMENT 4
27#define MIDX_CHUNKID_PACKNAMES 0x504e414d /* "PNAM" */
Derrick Stoleed7cacf22018-07-12 15:39:31 -040028#define MIDX_CHUNKID_OIDFANOUT 0x4f494446 /* "OIDF" */
Derrick Stolee0d5b3a52018-07-12 15:39:30 -040029#define MIDX_CHUNKID_OIDLOOKUP 0x4f49444c /* "OIDL" */
Derrick Stolee662148c2018-07-12 15:39:32 -040030#define MIDX_CHUNKID_OBJECTOFFSETS 0x4f4f4646 /* "OOFF" */
31#define MIDX_CHUNKID_LARGEOFFSETS 0x4c4f4646 /* "LOFF" */
Derrick Stoleed7cacf22018-07-12 15:39:31 -040032#define MIDX_CHUNK_FANOUT_SIZE (sizeof(uint32_t) * 256)
Derrick Stolee662148c2018-07-12 15:39:32 -040033#define MIDX_CHUNK_OFFSET_WIDTH (2 * sizeof(uint32_t))
34#define MIDX_CHUNK_LARGE_OFFSET_WIDTH (sizeof(uint64_t))
35#define MIDX_LARGE_OFFSET_NEEDED 0x80000000
Derrick Stolee32f3c542018-07-12 15:39:27 -040036
Derrick Stolee19575c72019-06-10 16:35:25 -070037#define PACK_EXPIRED UINT_MAX
38
Derrick Stoleed9607542020-08-17 14:04:48 +000039static uint8_t oid_version(void)
40{
41 switch (hash_algo_by_ptr(the_hash_algo)) {
42 case GIT_HASH_SHA1:
43 return 1;
44 case GIT_HASH_SHA256:
45 return 2;
46 default:
47 die(_("invalid hash version"));
48 }
49}
50
Taylor Blauf8940812021-03-30 11:04:26 -040051static const unsigned char *get_midx_checksum(struct multi_pack_index *m)
52{
53 return m->data + m->data_len - the_hash_algo->rawsz;
54}
55
Derrick Stoleefc59e742018-07-12 15:39:22 -040056static char *get_midx_filename(const char *object_dir)
57{
58 return xstrfmt("%s/pack/multi-pack-index", object_dir);
59}
60
Taylor Blauf8940812021-03-30 11:04:26 -040061char *get_midx_rev_filename(struct multi_pack_index *m)
62{
63 return xstrfmt("%s/pack/multi-pack-index-%s.rev",
64 m->object_dir, hash_to_hex(get_midx_checksum(m)));
65}
66
Derrick Stolee6ab3b8b2021-02-18 14:07:36 +000067static int midx_read_oid_fanout(const unsigned char *chunk_start,
68 size_t chunk_size, void *data)
69{
70 struct multi_pack_index *m = data;
71 m->chunk_oid_fanout = (uint32_t *)chunk_start;
72
73 if (chunk_size != 4 * 256) {
74 error(_("multi-pack-index OID fanout is of the wrong size"));
75 return 1;
76 }
77 return 0;
78}
79
Derrick Stolee2cf489a2018-08-20 16:51:55 +000080struct multi_pack_index *load_multi_pack_index(const char *object_dir, int local)
Derrick Stolee4d805602018-07-12 15:39:23 -040081{
82 struct multi_pack_index *m = NULL;
83 int fd;
84 struct stat st;
85 size_t midx_size;
86 void *midx_map = NULL;
87 uint32_t hash_version;
88 char *midx_name = get_midx_filename(object_dir);
Derrick Stolee32f3c542018-07-12 15:39:27 -040089 uint32_t i;
Derrick Stolee32275652018-07-12 15:39:28 -040090 const char *cur_pack_name;
Derrick Stolee6ab3b8b2021-02-18 14:07:36 +000091 struct chunkfile *cf = NULL;
Derrick Stolee4d805602018-07-12 15:39:23 -040092
93 fd = git_open(midx_name);
94
95 if (fd < 0)
96 goto cleanup_fail;
97 if (fstat(fd, &st)) {
98 error_errno(_("failed to read %s"), midx_name);
99 goto cleanup_fail;
100 }
101
102 midx_size = xsize_t(st.st_size);
103
104 if (midx_size < MIDX_MIN_SIZE) {
105 error(_("multi-pack-index file %s is too small"), midx_name);
106 goto cleanup_fail;
107 }
108
109 FREE_AND_NULL(midx_name);
110
111 midx_map = xmmap(NULL, midx_size, PROT_READ, MAP_PRIVATE, fd, 0);
Derrick Stolee6c7ff7c2020-04-24 09:17:16 -0400112 close(fd);
Derrick Stolee4d805602018-07-12 15:39:23 -0400113
Denton Liu577314c2019-04-03 15:00:05 -0700114 FLEX_ALLOC_STR(m, object_dir, object_dir);
Derrick Stolee4d805602018-07-12 15:39:23 -0400115 m->data = midx_map;
116 m->data_len = midx_size;
Derrick Stolee2cf489a2018-08-20 16:51:55 +0000117 m->local = local;
Derrick Stolee4d805602018-07-12 15:39:23 -0400118
119 m->signature = get_be32(m->data);
Derrick Stolee53ad0402018-09-13 11:02:15 -0700120 if (m->signature != MIDX_SIGNATURE)
121 die(_("multi-pack-index signature 0x%08x does not match signature 0x%08x"),
Derrick Stolee4d805602018-07-12 15:39:23 -0400122 m->signature, MIDX_SIGNATURE);
Derrick Stolee4d805602018-07-12 15:39:23 -0400123
124 m->version = m->data[MIDX_BYTE_FILE_VERSION];
Derrick Stolee53ad0402018-09-13 11:02:15 -0700125 if (m->version != MIDX_VERSION)
126 die(_("multi-pack-index version %d not recognized"),
Derrick Stolee4d805602018-07-12 15:39:23 -0400127 m->version);
Derrick Stolee4d805602018-07-12 15:39:23 -0400128
129 hash_version = m->data[MIDX_BYTE_HASH_VERSION];
Derrick Stoleed9607542020-08-17 14:04:48 +0000130 if (hash_version != oid_version()) {
131 error(_("multi-pack-index hash version %u does not match version %u"),
132 hash_version, oid_version());
133 goto cleanup_fail;
134 }
brian m. carlsonaaa95df2019-08-18 20:04:27 +0000135 m->hash_len = the_hash_algo->rawsz;
Derrick Stolee4d805602018-07-12 15:39:23 -0400136
137 m->num_chunks = m->data[MIDX_BYTE_NUM_CHUNKS];
138
139 m->num_packs = get_be32(m->data + MIDX_BYTE_NUM_PACKS);
140
Derrick Stolee6ab3b8b2021-02-18 14:07:36 +0000141 cf = init_chunkfile(NULL);
Derrick Stolee32f3c542018-07-12 15:39:27 -0400142
Derrick Stolee6ab3b8b2021-02-18 14:07:36 +0000143 if (read_table_of_contents(cf, m->data, midx_size,
144 MIDX_HEADER_SIZE, m->num_chunks))
145 goto cleanup_fail;
Derrick Stoleed3f8e212018-09-13 11:02:16 -0700146
Derrick Stolee6ab3b8b2021-02-18 14:07:36 +0000147 if (pair_chunk(cf, MIDX_CHUNKID_PACKNAMES, &m->chunk_pack_names) == CHUNK_NOT_FOUND)
Derrick Stolee32f3c542018-07-12 15:39:27 -0400148 die(_("multi-pack-index missing required pack-name chunk"));
Derrick Stolee6ab3b8b2021-02-18 14:07:36 +0000149 if (read_chunk(cf, MIDX_CHUNKID_OIDFANOUT, midx_read_oid_fanout, m) == CHUNK_NOT_FOUND)
Derrick Stoleed7cacf22018-07-12 15:39:31 -0400150 die(_("multi-pack-index missing required OID fanout chunk"));
Derrick Stolee6ab3b8b2021-02-18 14:07:36 +0000151 if (pair_chunk(cf, MIDX_CHUNKID_OIDLOOKUP, &m->chunk_oid_lookup) == CHUNK_NOT_FOUND)
Derrick Stolee0d5b3a52018-07-12 15:39:30 -0400152 die(_("multi-pack-index missing required OID lookup chunk"));
Derrick Stolee6ab3b8b2021-02-18 14:07:36 +0000153 if (pair_chunk(cf, MIDX_CHUNKID_OBJECTOFFSETS, &m->chunk_object_offsets) == CHUNK_NOT_FOUND)
Derrick Stolee662148c2018-07-12 15:39:32 -0400154 die(_("multi-pack-index missing required object offsets chunk"));
Derrick Stolee32f3c542018-07-12 15:39:27 -0400155
Derrick Stolee6ab3b8b2021-02-18 14:07:36 +0000156 pair_chunk(cf, MIDX_CHUNKID_LARGEOFFSETS, &m->chunk_large_offsets);
157
Derrick Stoleed7cacf22018-07-12 15:39:31 -0400158 m->num_objects = ntohl(m->chunk_oid_fanout[255]);
159
René Scharfeca56dad2021-03-13 17:17:22 +0100160 CALLOC_ARRAY(m->pack_names, m->num_packs);
161 CALLOC_ARRAY(m->packs, m->num_packs);
Derrick Stolee32275652018-07-12 15:39:28 -0400162
163 cur_pack_name = (const char *)m->chunk_pack_names;
164 for (i = 0; i < m->num_packs; i++) {
165 m->pack_names[i] = cur_pack_name;
166
167 cur_pack_name += strlen(cur_pack_name) + 1;
168
Derrick Stolee8e72a3c2018-09-13 11:02:18 -0700169 if (i && strcmp(m->pack_names[i], m->pack_names[i - 1]) <= 0)
170 die(_("multi-pack-index pack names out of order: '%s' before '%s'"),
Derrick Stolee32275652018-07-12 15:39:28 -0400171 m->pack_names[i - 1],
172 m->pack_names[i]);
Derrick Stolee32275652018-07-12 15:39:28 -0400173 }
174
Jeff Hostetlerd8292232019-03-21 12:36:13 -0700175 trace2_data_intmax("midx", the_repository, "load/num_packs", m->num_packs);
176 trace2_data_intmax("midx", the_repository, "load/num_objects", m->num_objects);
177
Derrick Stolee4d805602018-07-12 15:39:23 -0400178 return m;
179
180cleanup_fail:
181 free(m);
182 free(midx_name);
Derrick Stolee6ab3b8b2021-02-18 14:07:36 +0000183 free(cf);
Derrick Stolee4d805602018-07-12 15:39:23 -0400184 if (midx_map)
185 munmap(midx_map, midx_size);
186 if (0 <= fd)
187 close(fd);
188 return NULL;
189}
190
Derrick Stolee1dcd9f22018-10-12 10:34:19 -0700191void close_midx(struct multi_pack_index *m)
Derrick Stoleea40498a2018-07-12 15:39:36 -0400192{
193 uint32_t i;
Derrick Stolee1dcd9f22018-10-12 10:34:19 -0700194
195 if (!m)
196 return;
197
Derrick Stoleea40498a2018-07-12 15:39:36 -0400198 munmap((unsigned char *)m->data, m->data_len);
Derrick Stoleea40498a2018-07-12 15:39:36 -0400199
200 for (i = 0; i < m->num_packs; i++) {
Derrick Stoleeaf96fe32019-04-29 09:18:56 -0700201 if (m->packs[i])
202 m->packs[i]->multi_pack_index = 0;
Derrick Stoleea40498a2018-07-12 15:39:36 -0400203 }
204 FREE_AND_NULL(m->packs);
205 FREE_AND_NULL(m->pack_names);
206}
207
Derrick Stolee64404a22019-04-29 09:18:55 -0700208int prepare_midx_pack(struct repository *r, struct multi_pack_index *m, uint32_t pack_int_id)
Derrick Stolee3715a632018-07-12 15:39:34 -0400209{
210 struct strbuf pack_name = STRBUF_INIT;
Derrick Stoleeaf96fe32019-04-29 09:18:56 -0700211 struct packed_git *p;
Derrick Stolee3715a632018-07-12 15:39:34 -0400212
213 if (pack_int_id >= m->num_packs)
Jean-Noël Avilad355e462018-11-28 22:43:09 +0100214 die(_("bad pack-int-id: %u (%u total packs)"),
Derrick Stoleecc6af732018-09-13 11:02:25 -0700215 pack_int_id, m->num_packs);
Derrick Stolee3715a632018-07-12 15:39:34 -0400216
217 if (m->packs[pack_int_id])
218 return 0;
219
220 strbuf_addf(&pack_name, "%s/pack/%s", m->object_dir,
221 m->pack_names[pack_int_id]);
222
Derrick Stoleeaf96fe32019-04-29 09:18:56 -0700223 p = add_packed_git(pack_name.buf, pack_name.len, m->local);
Derrick Stolee3715a632018-07-12 15:39:34 -0400224 strbuf_release(&pack_name);
Derrick Stoleeaf96fe32019-04-29 09:18:56 -0700225
226 if (!p)
227 return 1;
228
229 p->multi_pack_index = 1;
230 m->packs[pack_int_id] = p;
231 install_packed_git(r, p);
232 list_add_tail(&p->mru, &r->objects->packed_git_mru);
233
234 return 0;
Derrick Stolee3715a632018-07-12 15:39:34 -0400235}
236
237int bsearch_midx(const struct object_id *oid, struct multi_pack_index *m, uint32_t *result)
238{
239 return bsearch_hash(oid->hash, m->chunk_oid_fanout, m->chunk_oid_lookup,
brian m. carlsonaaa95df2019-08-18 20:04:27 +0000240 the_hash_algo->rawsz, result);
Derrick Stolee3715a632018-07-12 15:39:34 -0400241}
242
Derrick Stolee8aac67a2018-07-12 15:39:35 -0400243struct object_id *nth_midxed_object_oid(struct object_id *oid,
244 struct multi_pack_index *m,
245 uint32_t n)
246{
247 if (n >= m->num_objects)
248 return NULL;
249
250 hashcpy(oid->hash, m->chunk_oid_lookup + m->hash_len * n);
251 return oid;
252}
253
Taylor Blau62f2c1b2021-03-30 11:04:20 -0400254off_t nth_midxed_offset(struct multi_pack_index *m, uint32_t pos)
Derrick Stolee3715a632018-07-12 15:39:34 -0400255{
256 const unsigned char *offset_data;
257 uint32_t offset32;
258
Derrick Stolee329fac32021-02-18 14:07:37 +0000259 offset_data = m->chunk_object_offsets + (off_t)pos * MIDX_CHUNK_OFFSET_WIDTH;
Derrick Stolee3715a632018-07-12 15:39:34 -0400260 offset32 = get_be32(offset_data + sizeof(uint32_t));
261
262 if (m->chunk_large_offsets && offset32 & MIDX_LARGE_OFFSET_NEEDED) {
Derrick Stoleed8ac9ee2018-09-13 11:02:23 -0700263 if (sizeof(off_t) < sizeof(uint64_t))
Derrick Stolee3715a632018-07-12 15:39:34 -0400264 die(_("multi-pack-index stores a 64-bit offset, but off_t is too small"));
265
266 offset32 ^= MIDX_LARGE_OFFSET_NEEDED;
267 return get_be64(m->chunk_large_offsets + sizeof(uint64_t) * offset32);
268 }
269
270 return offset32;
271}
272
Taylor Blau62f2c1b2021-03-30 11:04:20 -0400273uint32_t nth_midxed_pack_int_id(struct multi_pack_index *m, uint32_t pos)
Derrick Stolee3715a632018-07-12 15:39:34 -0400274{
Derrick Stolee329fac32021-02-18 14:07:37 +0000275 return get_be32(m->chunk_object_offsets +
276 (off_t)pos * MIDX_CHUNK_OFFSET_WIDTH);
Derrick Stolee3715a632018-07-12 15:39:34 -0400277}
278
Derrick Stolee64404a22019-04-29 09:18:55 -0700279static int nth_midxed_pack_entry(struct repository *r,
280 struct multi_pack_index *m,
281 struct pack_entry *e,
282 uint32_t pos)
Derrick Stolee3715a632018-07-12 15:39:34 -0400283{
284 uint32_t pack_int_id;
285 struct packed_git *p;
286
287 if (pos >= m->num_objects)
288 return 0;
289
290 pack_int_id = nth_midxed_pack_int_id(m, pos);
291
Derrick Stolee64404a22019-04-29 09:18:55 -0700292 if (prepare_midx_pack(r, m, pack_int_id))
Taylor Blau506ec2f2020-11-25 12:17:33 -0500293 return 0;
Derrick Stolee3715a632018-07-12 15:39:34 -0400294 p = m->packs[pack_int_id];
295
296 /*
297 * We are about to tell the caller where they can locate the
298 * requested object. We better make sure the packfile is
299 * still here and can be accessed before supplying that
300 * answer, as it may have been deleted since the MIDX was
301 * loaded!
302 */
303 if (!is_pack_valid(p))
304 return 0;
305
Derrick Stoleec39b02a2018-08-20 16:51:57 +0000306 if (p->num_bad_objects) {
307 uint32_t i;
308 struct object_id oid;
309 nth_midxed_object_oid(&oid, m, pos);
310 for (i = 0; i < p->num_bad_objects; i++)
Jeff Kinge43d2dc2018-10-02 17:19:21 -0400311 if (hasheq(oid.hash,
312 p->bad_object_sha1 + the_hash_algo->rawsz * i))
Derrick Stoleec39b02a2018-08-20 16:51:57 +0000313 return 0;
314 }
315
Derrick Stolee3715a632018-07-12 15:39:34 -0400316 e->offset = nth_midxed_offset(m, pos);
317 e->p = p;
318
319 return 1;
320}
321
Derrick Stolee64404a22019-04-29 09:18:55 -0700322int fill_midx_entry(struct repository * r,
323 const struct object_id *oid,
324 struct pack_entry *e,
325 struct multi_pack_index *m)
Derrick Stolee3715a632018-07-12 15:39:34 -0400326{
327 uint32_t pos;
328
329 if (!bsearch_midx(oid, m, &pos))
330 return 0;
331
Derrick Stolee64404a22019-04-29 09:18:55 -0700332 return nth_midxed_pack_entry(r, m, e, pos);
Derrick Stolee3715a632018-07-12 15:39:34 -0400333}
334
Jeff King013fd7a2019-04-05 14:06:04 -0400335/* Match "foo.idx" against either "foo.pack" _or_ "foo.idx". */
336static int cmp_idx_or_pack_name(const char *idx_or_pack_name,
337 const char *idx_name)
338{
339 /* Skip past any initial matching prefix. */
340 while (*idx_name && *idx_name == *idx_or_pack_name) {
341 idx_name++;
342 idx_or_pack_name++;
343 }
344
345 /*
346 * If we didn't match completely, we may have matched "pack-1234." and
347 * be left with "idx" and "pack" respectively, which is also OK. We do
348 * not have to check for "idx" and "idx", because that would have been
349 * a complete match (and in that case these strcmps will be false, but
350 * we'll correctly return 0 from the final strcmp() below.
351 *
352 * Technically this matches "fooidx" and "foopack", but we'd never have
353 * such names in the first place.
354 */
355 if (!strcmp(idx_name, "idx") && !strcmp(idx_or_pack_name, "pack"))
356 return 0;
357
358 /*
359 * This not only checks for a complete match, but also orders based on
360 * the first non-identical character, which means our ordering will
361 * match a raw strcmp(). That makes it OK to use this to binary search
362 * a naively-sorted list.
363 */
364 return strcmp(idx_or_pack_name, idx_name);
365}
366
367int midx_contains_pack(struct multi_pack_index *m, const char *idx_or_pack_name)
Derrick Stoleea40498a2018-07-12 15:39:36 -0400368{
369 uint32_t first = 0, last = m->num_packs;
370
371 while (first < last) {
372 uint32_t mid = first + (last - first) / 2;
373 const char *current;
374 int cmp;
375
376 current = m->pack_names[mid];
Jeff King013fd7a2019-04-05 14:06:04 -0400377 cmp = cmp_idx_or_pack_name(idx_or_pack_name, current);
Derrick Stoleea40498a2018-07-12 15:39:36 -0400378 if (!cmp)
379 return 1;
380 if (cmp > 0) {
381 first = mid + 1;
382 continue;
383 }
384 last = mid;
385 }
386
387 return 0;
388}
389
Derrick Stolee2cf489a2018-08-20 16:51:55 +0000390int prepare_multi_pack_index_one(struct repository *r, const char *object_dir, int local)
Derrick Stoleec4d25222018-07-12 15:39:33 -0400391{
Derrick Stolee29e20162018-08-20 16:52:00 +0000392 struct multi_pack_index *m;
Derrick Stoleec4d25222018-07-12 15:39:33 -0400393 struct multi_pack_index *m_search;
Derrick Stoleec4d25222018-07-12 15:39:33 -0400394
Derrick Stolee18e449f2020-09-25 12:33:34 +0000395 prepare_repo_settings(r);
396 if (!r->settings.core_multi_pack_index)
Derrick Stoleec4d25222018-07-12 15:39:33 -0400397 return 0;
398
Derrick Stolee29e20162018-08-20 16:52:00 +0000399 for (m_search = r->objects->multi_pack_index; m_search; m_search = m_search->next)
Derrick Stoleec4d25222018-07-12 15:39:33 -0400400 if (!strcmp(object_dir, m_search->object_dir))
401 return 1;
402
Derrick Stolee29e20162018-08-20 16:52:00 +0000403 m = load_multi_pack_index(object_dir, local);
Derrick Stoleec4d25222018-07-12 15:39:33 -0400404
Derrick Stolee29e20162018-08-20 16:52:00 +0000405 if (m) {
Taylor Blau59552fb2020-08-28 16:22:13 -0400406 struct multi_pack_index *mp = r->objects->multi_pack_index;
407 if (mp) {
408 m->next = mp->next;
409 mp->next = m;
410 } else
411 r->objects->multi_pack_index = m;
Derrick Stoleec4d25222018-07-12 15:39:33 -0400412 return 1;
413 }
414
415 return 0;
416}
417
Derrick Stoleefc59e742018-07-12 15:39:22 -0400418static size_t write_midx_header(struct hashfile *f,
419 unsigned char num_chunks,
420 uint32_t num_packs)
421{
Derrick Stoleefc59e742018-07-12 15:39:22 -0400422 hashwrite_be32(f, MIDX_SIGNATURE);
René Scharfe014f1442020-09-06 10:59:02 +0200423 hashwrite_u8(f, MIDX_VERSION);
424 hashwrite_u8(f, oid_version());
425 hashwrite_u8(f, num_chunks);
426 hashwrite_u8(f, 0); /* unused */
Derrick Stoleefc59e742018-07-12 15:39:22 -0400427 hashwrite_be32(f, num_packs);
428
429 return MIDX_HEADER_SIZE;
430}
431
Derrick Stoleed01bf2e2019-06-10 16:35:24 -0700432struct pack_info {
433 uint32_t orig_pack_int_id;
434 char *pack_name;
435 struct packed_git *p;
Derrick Stolee19575c72019-06-10 16:35:25 -0700436 unsigned expired : 1;
Derrick Stoleed01bf2e2019-06-10 16:35:24 -0700437};
438
439static int pack_info_compare(const void *_a, const void *_b)
440{
441 struct pack_info *a = (struct pack_info *)_a;
442 struct pack_info *b = (struct pack_info *)_b;
443 return strcmp(a->pack_name, b->pack_name);
444}
445
Taylor Blau9218c6a2021-03-30 11:04:11 -0400446static int idx_or_pack_name_cmp(const void *_va, const void *_vb)
447{
448 const char *pack_name = _va;
449 const struct pack_info *compar = _vb;
450
451 return cmp_idx_or_pack_name(pack_name, compar->pack_name);
452}
453
Derrick Stolee577dc492021-02-18 14:07:26 +0000454struct write_midx_context {
Derrick Stoleed01bf2e2019-06-10 16:35:24 -0700455 struct pack_info *info;
Derrick Stolee396f2572018-07-12 15:39:26 -0400456 uint32_t nr;
Derrick Stoleed01bf2e2019-06-10 16:35:24 -0700457 uint32_t alloc;
Derrick Stoleea40498a2018-07-12 15:39:36 -0400458 struct multi_pack_index *m;
William Baker840cef02019-10-21 18:39:59 +0000459 struct progress *progress;
460 unsigned pack_paths_checked;
Derrick Stolee31bda9a2021-02-18 14:07:28 +0000461
462 struct pack_midx_entry *entries;
463 uint32_t entries_nr;
Derrick Stolee7a3ada12021-02-18 14:07:29 +0000464
465 uint32_t *pack_perm;
Taylor Blau38ff7ca2021-03-30 11:04:32 -0400466 uint32_t *pack_order;
Derrick Stolee7a3ada12021-02-18 14:07:29 +0000467 unsigned large_offsets_needed:1;
Derrick Stolee980f5252021-02-18 14:07:30 +0000468 uint32_t num_large_offsets;
Taylor Blau9218c6a2021-03-30 11:04:11 -0400469
470 int preferred_pack_idx;
Derrick Stolee396f2572018-07-12 15:39:26 -0400471};
472
473static void add_pack_to_midx(const char *full_path, size_t full_path_len,
474 const char *file_name, void *data)
475{
Derrick Stolee577dc492021-02-18 14:07:26 +0000476 struct write_midx_context *ctx = data;
Derrick Stolee396f2572018-07-12 15:39:26 -0400477
478 if (ends_with(file_name, ".idx")) {
Derrick Stolee577dc492021-02-18 14:07:26 +0000479 display_progress(ctx->progress, ++ctx->pack_paths_checked);
480 if (ctx->m && midx_contains_pack(ctx->m, file_name))
Derrick Stoleea40498a2018-07-12 15:39:36 -0400481 return;
482
Derrick Stolee577dc492021-02-18 14:07:26 +0000483 ALLOC_GROW(ctx->info, ctx->nr + 1, ctx->alloc);
Derrick Stolee396f2572018-07-12 15:39:26 -0400484
Derrick Stolee577dc492021-02-18 14:07:26 +0000485 ctx->info[ctx->nr].p = add_packed_git(full_path,
486 full_path_len,
487 0);
Derrick Stoleefe1ed562018-07-12 15:39:29 -0400488
Derrick Stolee577dc492021-02-18 14:07:26 +0000489 if (!ctx->info[ctx->nr].p) {
Derrick Stolee396f2572018-07-12 15:39:26 -0400490 warning(_("failed to add packfile '%s'"),
491 full_path);
492 return;
493 }
494
Derrick Stolee577dc492021-02-18 14:07:26 +0000495 if (open_pack_index(ctx->info[ctx->nr].p)) {
Derrick Stoleefe1ed562018-07-12 15:39:29 -0400496 warning(_("failed to open pack-index '%s'"),
497 full_path);
Derrick Stolee577dc492021-02-18 14:07:26 +0000498 close_pack(ctx->info[ctx->nr].p);
499 FREE_AND_NULL(ctx->info[ctx->nr].p);
Derrick Stoleefe1ed562018-07-12 15:39:29 -0400500 return;
501 }
502
Derrick Stolee577dc492021-02-18 14:07:26 +0000503 ctx->info[ctx->nr].pack_name = xstrdup(file_name);
504 ctx->info[ctx->nr].orig_pack_int_id = ctx->nr;
505 ctx->info[ctx->nr].expired = 0;
506 ctx->nr++;
Derrick Stolee396f2572018-07-12 15:39:26 -0400507 }
508}
509
Derrick Stoleefe1ed562018-07-12 15:39:29 -0400510struct pack_midx_entry {
511 struct object_id oid;
512 uint32_t pack_int_id;
513 time_t pack_mtime;
514 uint64_t offset;
Taylor Blau9218c6a2021-03-30 11:04:11 -0400515 unsigned preferred : 1;
Derrick Stoleefe1ed562018-07-12 15:39:29 -0400516};
517
518static int midx_oid_compare(const void *_a, const void *_b)
519{
520 const struct pack_midx_entry *a = (const struct pack_midx_entry *)_a;
521 const struct pack_midx_entry *b = (const struct pack_midx_entry *)_b;
522 int cmp = oidcmp(&a->oid, &b->oid);
523
524 if (cmp)
525 return cmp;
526
Taylor Blau9218c6a2021-03-30 11:04:11 -0400527 /* Sort objects in a preferred pack first when multiple copies exist. */
528 if (a->preferred > b->preferred)
529 return -1;
530 if (a->preferred < b->preferred)
531 return 1;
532
Derrick Stoleefe1ed562018-07-12 15:39:29 -0400533 if (a->pack_mtime > b->pack_mtime)
534 return -1;
535 else if (a->pack_mtime < b->pack_mtime)
536 return 1;
537
538 return a->pack_int_id - b->pack_int_id;
539}
540
Derrick Stoleea40498a2018-07-12 15:39:36 -0400541static int nth_midxed_pack_midx_entry(struct multi_pack_index *m,
Derrick Stoleea40498a2018-07-12 15:39:36 -0400542 struct pack_midx_entry *e,
543 uint32_t pos)
544{
545 if (pos >= m->num_objects)
546 return 1;
547
548 nth_midxed_object_oid(&e->oid, m, pos);
Derrick Stoleed01bf2e2019-06-10 16:35:24 -0700549 e->pack_int_id = nth_midxed_pack_int_id(m, pos);
Derrick Stoleea40498a2018-07-12 15:39:36 -0400550 e->offset = nth_midxed_offset(m, pos);
551
552 /* consider objects in midx to be from "old" packs */
553 e->pack_mtime = 0;
554 return 0;
555}
556
Derrick Stoleefe1ed562018-07-12 15:39:29 -0400557static void fill_pack_entry(uint32_t pack_int_id,
558 struct packed_git *p,
559 uint32_t cur_object,
Taylor Blau9218c6a2021-03-30 11:04:11 -0400560 struct pack_midx_entry *entry,
561 int preferred)
Derrick Stoleefe1ed562018-07-12 15:39:29 -0400562{
Jeff King07636712020-02-23 23:27:36 -0500563 if (nth_packed_object_id(&entry->oid, p, cur_object) < 0)
Derrick Stoleefe1ed562018-07-12 15:39:29 -0400564 die(_("failed to locate object %d in packfile"), cur_object);
565
566 entry->pack_int_id = pack_int_id;
567 entry->pack_mtime = p->mtime;
568
569 entry->offset = nth_packed_object_offset(p, cur_object);
Taylor Blau9218c6a2021-03-30 11:04:11 -0400570 entry->preferred = !!preferred;
Derrick Stoleefe1ed562018-07-12 15:39:29 -0400571}
572
573/*
574 * It is possible to artificially get into a state where there are many
575 * duplicate copies of objects. That can create high memory pressure if
576 * we are to create a list of all objects before de-duplication. To reduce
577 * this memory pressure without a significant performance drop, automatically
578 * group objects by the first byte of their object id. Use the IDX fanout
579 * tables to group the data, copy to a local array, then sort.
580 *
581 * Copy only the de-duplicated entries (selected by most-recent modified time
582 * of a packfile containing the object).
583 */
Derrick Stoleea40498a2018-07-12 15:39:36 -0400584static struct pack_midx_entry *get_sorted_entries(struct multi_pack_index *m,
Derrick Stoleed01bf2e2019-06-10 16:35:24 -0700585 struct pack_info *info,
Derrick Stoleefe1ed562018-07-12 15:39:29 -0400586 uint32_t nr_packs,
Taylor Blau9218c6a2021-03-30 11:04:11 -0400587 uint32_t *nr_objects,
588 int preferred_pack)
Derrick Stoleefe1ed562018-07-12 15:39:29 -0400589{
590 uint32_t cur_fanout, cur_pack, cur_object;
591 uint32_t alloc_fanout, alloc_objects, total_objects = 0;
592 struct pack_midx_entry *entries_by_fanout = NULL;
593 struct pack_midx_entry *deduplicated_entries = NULL;
Derrick Stoleea40498a2018-07-12 15:39:36 -0400594 uint32_t start_pack = m ? m->num_packs : 0;
Derrick Stoleefe1ed562018-07-12 15:39:29 -0400595
Derrick Stoleea40498a2018-07-12 15:39:36 -0400596 for (cur_pack = start_pack; cur_pack < nr_packs; cur_pack++)
Derrick Stoleed01bf2e2019-06-10 16:35:24 -0700597 total_objects += info[cur_pack].p->num_objects;
Derrick Stoleefe1ed562018-07-12 15:39:29 -0400598
599 /*
600 * As we de-duplicate by fanout value, we expect the fanout
601 * slices to be evenly distributed, with some noise. Hence,
602 * allocate slightly more than one 256th.
603 */
604 alloc_objects = alloc_fanout = total_objects > 3200 ? total_objects / 200 : 16;
605
606 ALLOC_ARRAY(entries_by_fanout, alloc_fanout);
607 ALLOC_ARRAY(deduplicated_entries, alloc_objects);
608 *nr_objects = 0;
609
610 for (cur_fanout = 0; cur_fanout < 256; cur_fanout++) {
611 uint32_t nr_fanout = 0;
612
Derrick Stoleea40498a2018-07-12 15:39:36 -0400613 if (m) {
614 uint32_t start = 0, end;
615
616 if (cur_fanout)
617 start = ntohl(m->chunk_oid_fanout[cur_fanout - 1]);
618 end = ntohl(m->chunk_oid_fanout[cur_fanout]);
619
620 for (cur_object = start; cur_object < end; cur_object++) {
621 ALLOC_GROW(entries_by_fanout, nr_fanout + 1, alloc_fanout);
Derrick Stoleed01bf2e2019-06-10 16:35:24 -0700622 nth_midxed_pack_midx_entry(m,
Derrick Stoleea40498a2018-07-12 15:39:36 -0400623 &entries_by_fanout[nr_fanout],
624 cur_object);
Taylor Blau9218c6a2021-03-30 11:04:11 -0400625 if (nth_midxed_pack_int_id(m, cur_object) == preferred_pack)
626 entries_by_fanout[nr_fanout].preferred = 1;
627 else
628 entries_by_fanout[nr_fanout].preferred = 0;
Derrick Stoleea40498a2018-07-12 15:39:36 -0400629 nr_fanout++;
630 }
631 }
632
633 for (cur_pack = start_pack; cur_pack < nr_packs; cur_pack++) {
Derrick Stoleefe1ed562018-07-12 15:39:29 -0400634 uint32_t start = 0, end;
Taylor Blau9218c6a2021-03-30 11:04:11 -0400635 int preferred = cur_pack == preferred_pack;
Derrick Stoleefe1ed562018-07-12 15:39:29 -0400636
637 if (cur_fanout)
Derrick Stoleed01bf2e2019-06-10 16:35:24 -0700638 start = get_pack_fanout(info[cur_pack].p, cur_fanout - 1);
639 end = get_pack_fanout(info[cur_pack].p, cur_fanout);
Derrick Stoleefe1ed562018-07-12 15:39:29 -0400640
641 for (cur_object = start; cur_object < end; cur_object++) {
642 ALLOC_GROW(entries_by_fanout, nr_fanout + 1, alloc_fanout);
Taylor Blau9218c6a2021-03-30 11:04:11 -0400643 fill_pack_entry(cur_pack,
644 info[cur_pack].p,
645 cur_object,
646 &entries_by_fanout[nr_fanout],
647 preferred);
Derrick Stoleefe1ed562018-07-12 15:39:29 -0400648 nr_fanout++;
649 }
650 }
651
652 QSORT(entries_by_fanout, nr_fanout, midx_oid_compare);
653
654 /*
655 * The batch is now sorted by OID and then mtime (descending).
656 * Take only the first duplicate.
657 */
658 for (cur_object = 0; cur_object < nr_fanout; cur_object++) {
Jeff Kinge43d2dc2018-10-02 17:19:21 -0400659 if (cur_object && oideq(&entries_by_fanout[cur_object - 1].oid,
660 &entries_by_fanout[cur_object].oid))
Derrick Stoleefe1ed562018-07-12 15:39:29 -0400661 continue;
662
663 ALLOC_GROW(deduplicated_entries, *nr_objects + 1, alloc_objects);
664 memcpy(&deduplicated_entries[*nr_objects],
665 &entries_by_fanout[cur_object],
666 sizeof(struct pack_midx_entry));
667 (*nr_objects)++;
668 }
669 }
670
671 free(entries_by_fanout);
672 return deduplicated_entries;
673}
674
Derrick Stolee0ccd7132021-02-18 14:07:31 +0000675static int write_midx_pack_names(struct hashfile *f, void *data)
Derrick Stolee32f3c542018-07-12 15:39:27 -0400676{
Derrick Stoleeb4d94142021-02-18 14:07:27 +0000677 struct write_midx_context *ctx = data;
Derrick Stolee32f3c542018-07-12 15:39:27 -0400678 uint32_t i;
679 unsigned char padding[MIDX_CHUNK_ALIGNMENT];
680 size_t written = 0;
681
Derrick Stoleeb4d94142021-02-18 14:07:27 +0000682 for (i = 0; i < ctx->nr; i++) {
Derrick Stolee19575c72019-06-10 16:35:25 -0700683 size_t writelen;
684
Derrick Stoleeb4d94142021-02-18 14:07:27 +0000685 if (ctx->info[i].expired)
Derrick Stolee19575c72019-06-10 16:35:25 -0700686 continue;
Derrick Stolee32f3c542018-07-12 15:39:27 -0400687
Derrick Stoleeb4d94142021-02-18 14:07:27 +0000688 if (i && strcmp(ctx->info[i].pack_name, ctx->info[i - 1].pack_name) <= 0)
Derrick Stolee32f3c542018-07-12 15:39:27 -0400689 BUG("incorrect pack-file order: %s before %s",
Derrick Stoleeb4d94142021-02-18 14:07:27 +0000690 ctx->info[i - 1].pack_name,
691 ctx->info[i].pack_name);
Derrick Stolee32f3c542018-07-12 15:39:27 -0400692
Derrick Stoleeb4d94142021-02-18 14:07:27 +0000693 writelen = strlen(ctx->info[i].pack_name) + 1;
694 hashwrite(f, ctx->info[i].pack_name, writelen);
Derrick Stolee32f3c542018-07-12 15:39:27 -0400695 written += writelen;
696 }
697
698 /* add padding to be aligned */
699 i = MIDX_CHUNK_ALIGNMENT - (written % MIDX_CHUNK_ALIGNMENT);
700 if (i < MIDX_CHUNK_ALIGNMENT) {
701 memset(padding, 0, sizeof(padding));
702 hashwrite(f, padding, i);
Derrick Stolee32f3c542018-07-12 15:39:27 -0400703 }
704
Derrick Stolee0ccd7132021-02-18 14:07:31 +0000705 return 0;
Derrick Stolee32f3c542018-07-12 15:39:27 -0400706}
707
Derrick Stolee0ccd7132021-02-18 14:07:31 +0000708static int write_midx_oid_fanout(struct hashfile *f,
709 void *data)
Derrick Stoleed7cacf22018-07-12 15:39:31 -0400710{
Derrick Stolee31bda9a2021-02-18 14:07:28 +0000711 struct write_midx_context *ctx = data;
712 struct pack_midx_entry *list = ctx->entries;
713 struct pack_midx_entry *last = ctx->entries + ctx->entries_nr;
Derrick Stoleed7cacf22018-07-12 15:39:31 -0400714 uint32_t count = 0;
715 uint32_t i;
716
717 /*
718 * Write the first-level table (the list is sorted,
719 * but we use a 256-entry lookup to be able to avoid
720 * having to do eight extra binary search iterations).
721 */
722 for (i = 0; i < 256; i++) {
723 struct pack_midx_entry *next = list;
724
725 while (next < last && next->oid.hash[0] == i) {
726 count++;
727 next++;
728 }
729
730 hashwrite_be32(f, count);
731 list = next;
732 }
733
Derrick Stolee0ccd7132021-02-18 14:07:31 +0000734 return 0;
Derrick Stoleed7cacf22018-07-12 15:39:31 -0400735}
736
Derrick Stolee0ccd7132021-02-18 14:07:31 +0000737static int write_midx_oid_lookup(struct hashfile *f,
738 void *data)
Derrick Stolee0d5b3a52018-07-12 15:39:30 -0400739{
Derrick Stolee31bda9a2021-02-18 14:07:28 +0000740 struct write_midx_context *ctx = data;
741 unsigned char hash_len = the_hash_algo->rawsz;
742 struct pack_midx_entry *list = ctx->entries;
Derrick Stolee0d5b3a52018-07-12 15:39:30 -0400743 uint32_t i;
Derrick Stolee0d5b3a52018-07-12 15:39:30 -0400744
Derrick Stolee31bda9a2021-02-18 14:07:28 +0000745 for (i = 0; i < ctx->entries_nr; i++) {
Derrick Stolee0d5b3a52018-07-12 15:39:30 -0400746 struct pack_midx_entry *obj = list++;
747
Derrick Stolee31bda9a2021-02-18 14:07:28 +0000748 if (i < ctx->entries_nr - 1) {
Derrick Stolee0d5b3a52018-07-12 15:39:30 -0400749 struct pack_midx_entry *next = list;
750 if (oidcmp(&obj->oid, &next->oid) >= 0)
751 BUG("OIDs not in order: %s >= %s",
752 oid_to_hex(&obj->oid),
753 oid_to_hex(&next->oid));
754 }
755
756 hashwrite(f, obj->oid.hash, (int)hash_len);
Derrick Stolee0d5b3a52018-07-12 15:39:30 -0400757 }
758
Derrick Stolee0ccd7132021-02-18 14:07:31 +0000759 return 0;
Derrick Stolee0d5b3a52018-07-12 15:39:30 -0400760}
761
Derrick Stolee0ccd7132021-02-18 14:07:31 +0000762static int write_midx_object_offsets(struct hashfile *f,
763 void *data)
Derrick Stolee662148c2018-07-12 15:39:32 -0400764{
Derrick Stolee7a3ada12021-02-18 14:07:29 +0000765 struct write_midx_context *ctx = data;
766 struct pack_midx_entry *list = ctx->entries;
Derrick Stolee662148c2018-07-12 15:39:32 -0400767 uint32_t i, nr_large_offset = 0;
Derrick Stolee662148c2018-07-12 15:39:32 -0400768
Derrick Stolee7a3ada12021-02-18 14:07:29 +0000769 for (i = 0; i < ctx->entries_nr; i++) {
Derrick Stolee662148c2018-07-12 15:39:32 -0400770 struct pack_midx_entry *obj = list++;
771
Derrick Stolee7a3ada12021-02-18 14:07:29 +0000772 if (ctx->pack_perm[obj->pack_int_id] == PACK_EXPIRED)
Derrick Stolee19575c72019-06-10 16:35:25 -0700773 BUG("object %s is in an expired pack with int-id %d",
774 oid_to_hex(&obj->oid),
775 obj->pack_int_id);
776
Derrick Stolee7a3ada12021-02-18 14:07:29 +0000777 hashwrite_be32(f, ctx->pack_perm[obj->pack_int_id]);
Derrick Stolee662148c2018-07-12 15:39:32 -0400778
Derrick Stolee7a3ada12021-02-18 14:07:29 +0000779 if (ctx->large_offsets_needed && obj->offset >> 31)
Derrick Stolee662148c2018-07-12 15:39:32 -0400780 hashwrite_be32(f, MIDX_LARGE_OFFSET_NEEDED | nr_large_offset++);
Derrick Stolee7a3ada12021-02-18 14:07:29 +0000781 else if (!ctx->large_offsets_needed && obj->offset >> 32)
Derrick Stolee662148c2018-07-12 15:39:32 -0400782 BUG("object %s requires a large offset (%"PRIx64") but the MIDX is not writing large offsets!",
783 oid_to_hex(&obj->oid),
784 obj->offset);
785 else
786 hashwrite_be32(f, (uint32_t)obj->offset);
Derrick Stolee662148c2018-07-12 15:39:32 -0400787 }
788
Derrick Stolee0ccd7132021-02-18 14:07:31 +0000789 return 0;
Derrick Stolee662148c2018-07-12 15:39:32 -0400790}
791
Derrick Stolee0ccd7132021-02-18 14:07:31 +0000792static int write_midx_large_offsets(struct hashfile *f,
793 void *data)
Derrick Stolee662148c2018-07-12 15:39:32 -0400794{
Derrick Stolee980f5252021-02-18 14:07:30 +0000795 struct write_midx_context *ctx = data;
796 struct pack_midx_entry *list = ctx->entries;
797 struct pack_midx_entry *end = ctx->entries + ctx->entries_nr;
Derrick Stolee980f5252021-02-18 14:07:30 +0000798 uint32_t nr_large_offset = ctx->num_large_offsets;
Derrick Stolee662148c2018-07-12 15:39:32 -0400799
800 while (nr_large_offset) {
Jeff King61b0fcb2018-11-03 22:27:46 -0400801 struct pack_midx_entry *obj;
802 uint64_t offset;
803
804 if (list >= end)
805 BUG("too many large-offset objects");
806
807 obj = list++;
808 offset = obj->offset;
Derrick Stolee662148c2018-07-12 15:39:32 -0400809
810 if (!(offset >> 31))
811 continue;
812
Derrick Stolee0ccd7132021-02-18 14:07:31 +0000813 hashwrite_be64(f, offset);
Derrick Stolee662148c2018-07-12 15:39:32 -0400814
815 nr_large_offset--;
816 }
817
Derrick Stolee0ccd7132021-02-18 14:07:31 +0000818 return 0;
Derrick Stolee662148c2018-07-12 15:39:32 -0400819}
820
Jeff King30077522021-03-30 11:04:36 -0400821struct midx_pack_order_data {
822 uint32_t nr;
823 uint32_t pack;
824 off_t offset;
825};
826
827static int midx_pack_order_cmp(const void *va, const void *vb)
Taylor Blau38ff7ca2021-03-30 11:04:32 -0400828{
Jeff King30077522021-03-30 11:04:36 -0400829 const struct midx_pack_order_data *a = va, *b = vb;
830 if (a->pack < b->pack)
Taylor Blau38ff7ca2021-03-30 11:04:32 -0400831 return -1;
Jeff King30077522021-03-30 11:04:36 -0400832 else if (a->pack > b->pack)
Taylor Blau38ff7ca2021-03-30 11:04:32 -0400833 return 1;
Jeff King30077522021-03-30 11:04:36 -0400834 else if (a->offset < b->offset)
Taylor Blau38ff7ca2021-03-30 11:04:32 -0400835 return -1;
Jeff King30077522021-03-30 11:04:36 -0400836 else if (a->offset > b->offset)
Taylor Blau38ff7ca2021-03-30 11:04:32 -0400837 return 1;
Jeff King30077522021-03-30 11:04:36 -0400838 else
839 return 0;
Taylor Blau38ff7ca2021-03-30 11:04:32 -0400840}
841
842static uint32_t *midx_pack_order(struct write_midx_context *ctx)
843{
Jeff King30077522021-03-30 11:04:36 -0400844 struct midx_pack_order_data *data;
Taylor Blau38ff7ca2021-03-30 11:04:32 -0400845 uint32_t *pack_order;
846 uint32_t i;
847
Jeff King30077522021-03-30 11:04:36 -0400848 ALLOC_ARRAY(data, ctx->entries_nr);
849 for (i = 0; i < ctx->entries_nr; i++) {
850 struct pack_midx_entry *e = &ctx->entries[i];
851 data[i].nr = i;
852 data[i].pack = ctx->pack_perm[e->pack_int_id];
853 if (!e->preferred)
854 data[i].pack |= (1U << 31);
855 data[i].offset = e->offset;
856 }
857
858 QSORT(data, ctx->entries_nr, midx_pack_order_cmp);
859
Taylor Blau38ff7ca2021-03-30 11:04:32 -0400860 ALLOC_ARRAY(pack_order, ctx->entries_nr);
861 for (i = 0; i < ctx->entries_nr; i++)
Jeff King30077522021-03-30 11:04:36 -0400862 pack_order[i] = data[i].nr;
863 free(data);
Taylor Blau38ff7ca2021-03-30 11:04:32 -0400864
865 return pack_order;
866}
867
868static void write_midx_reverse_index(char *midx_name, unsigned char *midx_hash,
869 struct write_midx_context *ctx)
870{
871 struct strbuf buf = STRBUF_INIT;
872 const char *tmp_file;
873
874 strbuf_addf(&buf, "%s-%s.rev", midx_name, hash_to_hex(midx_hash));
875
876 tmp_file = write_rev_file_order(NULL, ctx->pack_order, ctx->entries_nr,
877 midx_hash, WRITE_REV);
878
879 if (finalize_object_file(tmp_file, buf.buf))
880 die(_("cannot store reverse index file"));
881
882 strbuf_release(&buf);
883}
884
885static void clear_midx_files_ext(struct repository *r, const char *ext,
886 unsigned char *keep_hash);
887
Derrick Stolee19575c72019-06-10 16:35:25 -0700888static int write_midx_internal(const char *object_dir, struct multi_pack_index *m,
Taylor Blau9218c6a2021-03-30 11:04:11 -0400889 struct string_list *packs_to_drop,
890 const char *preferred_pack_name,
891 unsigned flags)
Derrick Stoleea3407732018-07-12 15:39:21 -0400892{
Derrick Stoleefc59e742018-07-12 15:39:22 -0400893 char *midx_name;
Taylor Blau9f191612021-03-30 11:04:17 -0400894 unsigned char midx_hash[GIT_MAX_RAWSZ];
Derrick Stolee396f2572018-07-12 15:39:26 -0400895 uint32_t i;
Derrick Stoleefc59e742018-07-12 15:39:22 -0400896 struct hashfile *f = NULL;
897 struct lock_file lk;
Derrick Stolee577dc492021-02-18 14:07:26 +0000898 struct write_midx_context ctx = { 0 };
Derrick Stoleedba61752019-06-10 16:35:24 -0700899 int pack_name_concat_len = 0;
Derrick Stolee19575c72019-06-10 16:35:25 -0700900 int dropped_packs = 0;
901 int result = 0;
Derrick Stolee63a8f0e2021-02-18 14:07:33 +0000902 struct chunkfile *cf;
Derrick Stoleefc59e742018-07-12 15:39:22 -0400903
904 midx_name = get_midx_filename(object_dir);
Jeff Kingd5e19612020-08-13 11:55:00 -0400905 if (safe_create_leading_directories(midx_name))
Derrick Stoleefc59e742018-07-12 15:39:22 -0400906 die_errno(_("unable to create leading directories of %s"),
907 midx_name);
Derrick Stoleefc59e742018-07-12 15:39:22 -0400908
Derrick Stolee19575c72019-06-10 16:35:25 -0700909 if (m)
Derrick Stolee577dc492021-02-18 14:07:26 +0000910 ctx.m = m;
Derrick Stolee19575c72019-06-10 16:35:25 -0700911 else
Derrick Stolee577dc492021-02-18 14:07:26 +0000912 ctx.m = load_multi_pack_index(object_dir, 1);
Derrick Stoleea40498a2018-07-12 15:39:36 -0400913
Derrick Stolee577dc492021-02-18 14:07:26 +0000914 ctx.nr = 0;
915 ctx.alloc = ctx.m ? ctx.m->num_packs : 16;
916 ctx.info = NULL;
917 ALLOC_ARRAY(ctx.info, ctx.alloc);
Derrick Stolee396f2572018-07-12 15:39:26 -0400918
Derrick Stolee577dc492021-02-18 14:07:26 +0000919 if (ctx.m) {
920 for (i = 0; i < ctx.m->num_packs; i++) {
921 ALLOC_GROW(ctx.info, ctx.nr + 1, ctx.alloc);
Derrick Stoleea40498a2018-07-12 15:39:36 -0400922
Derrick Stolee577dc492021-02-18 14:07:26 +0000923 ctx.info[ctx.nr].orig_pack_int_id = i;
924 ctx.info[ctx.nr].pack_name = xstrdup(ctx.m->pack_names[i]);
925 ctx.info[ctx.nr].p = NULL;
926 ctx.info[ctx.nr].expired = 0;
927 ctx.nr++;
Derrick Stoleea40498a2018-07-12 15:39:36 -0400928 }
929 }
930
Derrick Stolee577dc492021-02-18 14:07:26 +0000931 ctx.pack_paths_checked = 0;
William Baker840cef02019-10-21 18:39:59 +0000932 if (flags & MIDX_PROGRESS)
Derrick Stolee577dc492021-02-18 14:07:26 +0000933 ctx.progress = start_delayed_progress(_("Adding packfiles to multi-pack-index"), 0);
William Baker840cef02019-10-21 18:39:59 +0000934 else
Derrick Stolee577dc492021-02-18 14:07:26 +0000935 ctx.progress = NULL;
William Baker840cef02019-10-21 18:39:59 +0000936
Derrick Stolee577dc492021-02-18 14:07:26 +0000937 for_each_file_in_pack_dir(object_dir, add_pack_to_midx, &ctx);
938 stop_progress(&ctx.progress);
Derrick Stolee396f2572018-07-12 15:39:26 -0400939
Derrick Stolee577dc492021-02-18 14:07:26 +0000940 if (ctx.m && ctx.nr == ctx.m->num_packs && !packs_to_drop)
Derrick Stoleea40498a2018-07-12 15:39:36 -0400941 goto cleanup;
942
Taylor Blau9218c6a2021-03-30 11:04:11 -0400943 ctx.preferred_pack_idx = -1;
944 if (preferred_pack_name) {
945 for (i = 0; i < ctx.nr; i++) {
946 if (!cmp_idx_or_pack_name(preferred_pack_name,
947 ctx.info[i].pack_name)) {
948 ctx.preferred_pack_idx = i;
949 break;
950 }
951 }
952 }
953
954 ctx.entries = get_sorted_entries(ctx.m, ctx.info, ctx.nr, &ctx.entries_nr,
955 ctx.preferred_pack_idx);
Derrick Stoleea40498a2018-07-12 15:39:36 -0400956
Derrick Stolee7a3ada12021-02-18 14:07:29 +0000957 ctx.large_offsets_needed = 0;
Derrick Stolee31bda9a2021-02-18 14:07:28 +0000958 for (i = 0; i < ctx.entries_nr; i++) {
959 if (ctx.entries[i].offset > 0x7fffffff)
Derrick Stolee980f5252021-02-18 14:07:30 +0000960 ctx.num_large_offsets++;
Derrick Stolee31bda9a2021-02-18 14:07:28 +0000961 if (ctx.entries[i].offset > 0xffffffff)
Derrick Stolee7a3ada12021-02-18 14:07:29 +0000962 ctx.large_offsets_needed = 1;
Derrick Stolee662148c2018-07-12 15:39:32 -0400963 }
Derrick Stoleefe1ed562018-07-12 15:39:29 -0400964
Derrick Stolee577dc492021-02-18 14:07:26 +0000965 QSORT(ctx.info, ctx.nr, pack_info_compare);
Derrick Stoleed01bf2e2019-06-10 16:35:24 -0700966
Derrick Stolee19575c72019-06-10 16:35:25 -0700967 if (packs_to_drop && packs_to_drop->nr) {
968 int drop_index = 0;
969 int missing_drops = 0;
970
Derrick Stolee577dc492021-02-18 14:07:26 +0000971 for (i = 0; i < ctx.nr && drop_index < packs_to_drop->nr; i++) {
972 int cmp = strcmp(ctx.info[i].pack_name,
Derrick Stolee19575c72019-06-10 16:35:25 -0700973 packs_to_drop->items[drop_index].string);
974
975 if (!cmp) {
976 drop_index++;
Derrick Stolee577dc492021-02-18 14:07:26 +0000977 ctx.info[i].expired = 1;
Derrick Stolee19575c72019-06-10 16:35:25 -0700978 } else if (cmp > 0) {
979 error(_("did not see pack-file %s to drop"),
980 packs_to_drop->items[drop_index].string);
981 drop_index++;
982 missing_drops++;
983 i--;
984 } else {
Derrick Stolee577dc492021-02-18 14:07:26 +0000985 ctx.info[i].expired = 0;
Derrick Stolee19575c72019-06-10 16:35:25 -0700986 }
987 }
988
989 if (missing_drops) {
990 result = 1;
991 goto cleanup;
992 }
993 }
994
Derrick Stoleed01bf2e2019-06-10 16:35:24 -0700995 /*
996 * pack_perm stores a permutation between pack-int-ids from the
997 * previous multi-pack-index to the new one we are writing:
998 *
999 * pack_perm[old_id] = new_id
1000 */
Derrick Stolee7a3ada12021-02-18 14:07:29 +00001001 ALLOC_ARRAY(ctx.pack_perm, ctx.nr);
Derrick Stolee577dc492021-02-18 14:07:26 +00001002 for (i = 0; i < ctx.nr; i++) {
1003 if (ctx.info[i].expired) {
Derrick Stolee19575c72019-06-10 16:35:25 -07001004 dropped_packs++;
Derrick Stolee7a3ada12021-02-18 14:07:29 +00001005 ctx.pack_perm[ctx.info[i].orig_pack_int_id] = PACK_EXPIRED;
Derrick Stolee19575c72019-06-10 16:35:25 -07001006 } else {
Derrick Stolee7a3ada12021-02-18 14:07:29 +00001007 ctx.pack_perm[ctx.info[i].orig_pack_int_id] = i - dropped_packs;
Derrick Stolee19575c72019-06-10 16:35:25 -07001008 }
Derrick Stoleed01bf2e2019-06-10 16:35:24 -07001009 }
1010
Derrick Stolee577dc492021-02-18 14:07:26 +00001011 for (i = 0; i < ctx.nr; i++) {
1012 if (!ctx.info[i].expired)
1013 pack_name_concat_len += strlen(ctx.info[i].pack_name) + 1;
Derrick Stolee19575c72019-06-10 16:35:25 -07001014 }
Derrick Stoleedba61752019-06-10 16:35:24 -07001015
Taylor Blau9218c6a2021-03-30 11:04:11 -04001016 /* Check that the preferred pack wasn't expired (if given). */
1017 if (preferred_pack_name) {
1018 struct pack_info *preferred = bsearch(preferred_pack_name,
1019 ctx.info, ctx.nr,
1020 sizeof(*ctx.info),
1021 idx_or_pack_name_cmp);
1022
1023 if (!preferred)
1024 warning(_("unknown preferred pack: '%s'"),
1025 preferred_pack_name);
1026 else {
1027 uint32_t perm = ctx.pack_perm[preferred->orig_pack_int_id];
1028 if (perm == PACK_EXPIRED)
1029 warning(_("preferred pack '%s' is expired"),
1030 preferred_pack_name);
1031 }
1032 }
1033
Derrick Stoleedba61752019-06-10 16:35:24 -07001034 if (pack_name_concat_len % MIDX_CHUNK_ALIGNMENT)
1035 pack_name_concat_len += MIDX_CHUNK_ALIGNMENT -
1036 (pack_name_concat_len % MIDX_CHUNK_ALIGNMENT);
1037
Derrick Stoleefc59e742018-07-12 15:39:22 -04001038 hold_lock_file_for_update(&lk, midx_name, LOCK_DIE_ON_ERROR);
Martin Ågrenacd71602021-01-05 20:23:48 +01001039 f = hashfd(get_lock_file_fd(&lk), get_lock_file_path(&lk));
Derrick Stoleefc59e742018-07-12 15:39:22 -04001040
Derrick Stolee577dc492021-02-18 14:07:26 +00001041 if (ctx.m)
1042 close_midx(ctx.m);
Derrick Stoleea40498a2018-07-12 15:39:36 -04001043
Derrick Stolee577dc492021-02-18 14:07:26 +00001044 if (ctx.nr - dropped_packs == 0) {
Damien Robert796d61c2020-03-28 23:18:22 +01001045 error(_("no pack files to index."));
1046 result = 1;
1047 goto cleanup;
1048 }
1049
Derrick Stolee63a8f0e2021-02-18 14:07:33 +00001050 cf = init_chunkfile(f);
Derrick Stolee32f3c542018-07-12 15:39:27 -04001051
Derrick Stolee63a8f0e2021-02-18 14:07:33 +00001052 add_chunk(cf, MIDX_CHUNKID_PACKNAMES, pack_name_concat_len,
1053 write_midx_pack_names);
1054 add_chunk(cf, MIDX_CHUNKID_OIDFANOUT, MIDX_CHUNK_FANOUT_SIZE,
1055 write_midx_oid_fanout);
1056 add_chunk(cf, MIDX_CHUNKID_OIDLOOKUP,
Derrick Stolee329fac32021-02-18 14:07:37 +00001057 (size_t)ctx.entries_nr * the_hash_algo->rawsz,
Derrick Stolee63a8f0e2021-02-18 14:07:33 +00001058 write_midx_oid_lookup);
1059 add_chunk(cf, MIDX_CHUNKID_OBJECTOFFSETS,
Derrick Stolee329fac32021-02-18 14:07:37 +00001060 (size_t)ctx.entries_nr * MIDX_CHUNK_OFFSET_WIDTH,
Derrick Stolee63a8f0e2021-02-18 14:07:33 +00001061 write_midx_object_offsets);
Derrick Stolee32f3c542018-07-12 15:39:27 -04001062
Derrick Stolee63a8f0e2021-02-18 14:07:33 +00001063 if (ctx.large_offsets_needed)
1064 add_chunk(cf, MIDX_CHUNKID_LARGEOFFSETS,
Derrick Stolee329fac32021-02-18 14:07:37 +00001065 (size_t)ctx.num_large_offsets * MIDX_CHUNK_LARGE_OFFSET_WIDTH,
Derrick Stolee63a8f0e2021-02-18 14:07:33 +00001066 write_midx_large_offsets);
Derrick Stolee32f3c542018-07-12 15:39:27 -04001067
Derrick Stolee63a8f0e2021-02-18 14:07:33 +00001068 write_midx_header(f, get_num_chunks(cf), ctx.nr - dropped_packs);
1069 write_chunkfile(cf, &ctx);
Derrick Stoleefc59e742018-07-12 15:39:22 -04001070
Taylor Blau9f191612021-03-30 11:04:17 -04001071 finalize_hashfile(f, midx_hash, CSUM_FSYNC | CSUM_HASH_IN_STREAM);
Derrick Stolee63a8f0e2021-02-18 14:07:33 +00001072 free_chunkfile(cf);
Taylor Blau38ff7ca2021-03-30 11:04:32 -04001073
1074 if (flags & MIDX_WRITE_REV_INDEX)
1075 ctx.pack_order = midx_pack_order(&ctx);
1076
1077 if (flags & MIDX_WRITE_REV_INDEX)
1078 write_midx_reverse_index(midx_name, midx_hash, &ctx);
1079 clear_midx_files_ext(the_repository, ".rev", midx_hash);
1080
Derrick Stoleefc59e742018-07-12 15:39:22 -04001081 commit_lock_file(&lk);
1082
Derrick Stoleea40498a2018-07-12 15:39:36 -04001083cleanup:
Derrick Stolee577dc492021-02-18 14:07:26 +00001084 for (i = 0; i < ctx.nr; i++) {
1085 if (ctx.info[i].p) {
1086 close_pack(ctx.info[i].p);
1087 free(ctx.info[i].p);
Derrick Stolee396f2572018-07-12 15:39:26 -04001088 }
Derrick Stolee577dc492021-02-18 14:07:26 +00001089 free(ctx.info[i].pack_name);
Derrick Stolee396f2572018-07-12 15:39:26 -04001090 }
1091
Derrick Stolee577dc492021-02-18 14:07:26 +00001092 free(ctx.info);
Derrick Stolee31bda9a2021-02-18 14:07:28 +00001093 free(ctx.entries);
Derrick Stolee7a3ada12021-02-18 14:07:29 +00001094 free(ctx.pack_perm);
Taylor Blau38ff7ca2021-03-30 11:04:32 -04001095 free(ctx.pack_order);
Derrick Stoleea40498a2018-07-12 15:39:36 -04001096 free(midx_name);
Derrick Stolee19575c72019-06-10 16:35:25 -07001097 return result;
1098}
1099
Taylor Blau9218c6a2021-03-30 11:04:11 -04001100int write_midx_file(const char *object_dir,
1101 const char *preferred_pack_name,
1102 unsigned flags)
Derrick Stolee19575c72019-06-10 16:35:25 -07001103{
Taylor Blau9218c6a2021-03-30 11:04:11 -04001104 return write_midx_internal(object_dir, NULL, NULL, preferred_pack_name,
1105 flags);
Derrick Stoleea3407732018-07-12 15:39:21 -04001106}
Derrick Stolee525e18c2018-07-12 15:39:40 -04001107
Taylor Blau38ff7ca2021-03-30 11:04:32 -04001108struct clear_midx_data {
1109 char *keep;
1110 const char *ext;
1111};
1112
1113static void clear_midx_file_ext(const char *full_path, size_t full_path_len,
1114 const char *file_name, void *_data)
1115{
1116 struct clear_midx_data *data = _data;
1117
1118 if (!(starts_with(file_name, "multi-pack-index-") &&
1119 ends_with(file_name, data->ext)))
1120 return;
1121 if (data->keep && !strcmp(data->keep, file_name))
1122 return;
1123
1124 if (unlink(full_path))
1125 die_errno(_("failed to remove %s"), full_path);
1126}
1127
1128static void clear_midx_files_ext(struct repository *r, const char *ext,
1129 unsigned char *keep_hash)
1130{
1131 struct clear_midx_data data;
1132 memset(&data, 0, sizeof(struct clear_midx_data));
1133
1134 if (keep_hash)
1135 data.keep = xstrfmt("multi-pack-index-%s%s",
1136 hash_to_hex(keep_hash), ext);
1137 data.ext = ext;
1138
1139 for_each_file_in_pack_dir(r->objects->odb->path,
1140 clear_midx_file_ext,
1141 &data);
1142
1143 free(data.keep);
Derrick Stoleea3407732018-07-12 15:39:21 -04001144}
Derrick Stolee525e18c2018-07-12 15:39:40 -04001145
Derrick Stolee1dcd9f22018-10-12 10:34:19 -07001146void clear_midx_file(struct repository *r)
Derrick Stolee525e18c2018-07-12 15:39:40 -04001147{
Junio C Hamano3b2f8a02019-01-04 13:33:32 -08001148 char *midx = get_midx_filename(r->objects->odb->path);
Derrick Stolee1dcd9f22018-10-12 10:34:19 -07001149
1150 if (r->objects && r->objects->multi_pack_index) {
1151 close_midx(r->objects->multi_pack_index);
1152 r->objects->multi_pack_index = NULL;
1153 }
Derrick Stolee525e18c2018-07-12 15:39:40 -04001154
Jeff Kingd5e19612020-08-13 11:55:00 -04001155 if (remove_path(midx))
Derrick Stolee525e18c2018-07-12 15:39:40 -04001156 die(_("failed to clear multi-pack-index at %s"), midx);
Derrick Stolee525e18c2018-07-12 15:39:40 -04001157
Taylor Blau38ff7ca2021-03-30 11:04:32 -04001158 clear_midx_files_ext(r, ".rev", NULL);
1159
Derrick Stolee525e18c2018-07-12 15:39:40 -04001160 free(midx);
1161}
Derrick Stolee56ee7ff2018-09-13 11:02:13 -07001162
1163static int verify_midx_error;
1164
Derrick Stoleed4bf1d82018-09-13 11:02:19 -07001165static void midx_report(const char *fmt, ...)
1166{
1167 va_list ap;
1168 verify_midx_error = 1;
1169 va_start(ap, fmt);
1170 vfprintf(stderr, fmt, ap);
1171 fprintf(stderr, "\n");
1172 va_end(ap);
1173}
1174
Jeff Hostetler5ae18df2019-03-21 12:36:15 -07001175struct pair_pos_vs_id
1176{
1177 uint32_t pos;
1178 uint32_t pack_int_id;
1179};
1180
1181static int compare_pair_pos_vs_id(const void *_a, const void *_b)
1182{
1183 struct pair_pos_vs_id *a = (struct pair_pos_vs_id *)_a;
1184 struct pair_pos_vs_id *b = (struct pair_pos_vs_id *)_b;
1185
1186 return b->pack_int_id - a->pack_int_id;
1187}
1188
Jeff Hostetler430efb82019-03-21 12:36:14 -07001189/*
1190 * Limit calls to display_progress() for performance reasons.
1191 * The interval here was arbitrarily chosen.
1192 */
1193#define SPARSE_PROGRESS_INTERVAL (1 << 12)
1194#define midx_display_sparse_progress(progress, n) \
1195 do { \
1196 uint64_t _n = (n); \
1197 if ((_n & (SPARSE_PROGRESS_INTERVAL - 1)) == 0) \
1198 display_progress(progress, _n); \
1199 } while (0)
1200
William Bakerefbc3ae2019-10-21 18:39:58 +00001201int verify_midx_file(struct repository *r, const char *object_dir, unsigned flags)
Derrick Stolee56ee7ff2018-09-13 11:02:13 -07001202{
Jeff Hostetler5ae18df2019-03-21 12:36:15 -07001203 struct pair_pos_vs_id *pairs = NULL;
Derrick Stoleed4bf1d82018-09-13 11:02:19 -07001204 uint32_t i;
William Bakerad600962019-10-21 18:40:01 +00001205 struct progress *progress = NULL;
Derrick Stolee56ee7ff2018-09-13 11:02:13 -07001206 struct multi_pack_index *m = load_multi_pack_index(object_dir, 1);
1207 verify_midx_error = 0;
1208
Derrick Stoleed9607542020-08-17 14:04:48 +00001209 if (!m) {
1210 int result = 0;
1211 struct stat sb;
1212 char *filename = get_midx_filename(object_dir);
1213 if (!stat(filename, &sb)) {
1214 error(_("multi-pack-index file exists, but failed to parse"));
1215 result = 1;
1216 }
1217 free(filename);
1218 return result;
1219 }
Derrick Stolee56ee7ff2018-09-13 11:02:13 -07001220
William Bakerad600962019-10-21 18:40:01 +00001221 if (flags & MIDX_PROGRESS)
Derrick Stoleeefdd2f02020-09-25 12:33:35 +00001222 progress = start_delayed_progress(_("Looking for referenced packfiles"),
William Bakerad600962019-10-21 18:40:01 +00001223 m->num_packs);
Derrick Stoleed4bf1d82018-09-13 11:02:19 -07001224 for (i = 0; i < m->num_packs; i++) {
Derrick Stolee64404a22019-04-29 09:18:55 -07001225 if (prepare_midx_pack(r, m, i))
Derrick Stoleed4bf1d82018-09-13 11:02:19 -07001226 midx_report("failed to load pack in position %d", i);
Jeff Hostetler430efb82019-03-21 12:36:14 -07001227
1228 display_progress(progress, i + 1);
Derrick Stoleed4bf1d82018-09-13 11:02:19 -07001229 }
Jeff Hostetler430efb82019-03-21 12:36:14 -07001230 stop_progress(&progress);
Derrick Stoleed4bf1d82018-09-13 11:02:19 -07001231
Derrick Stolee2f23d3f2018-09-13 11:02:20 -07001232 for (i = 0; i < 255; i++) {
1233 uint32_t oid_fanout1 = ntohl(m->chunk_oid_fanout[i]);
1234 uint32_t oid_fanout2 = ntohl(m->chunk_oid_fanout[i + 1]);
1235
1236 if (oid_fanout1 > oid_fanout2)
1237 midx_report(_("oid fanout out of order: fanout[%d] = %"PRIx32" > %"PRIx32" = fanout[%d]"),
1238 i, oid_fanout1, oid_fanout2, i + 1);
1239 }
1240
Damien Robert796d61c2020-03-28 23:18:22 +01001241 if (m->num_objects == 0) {
1242 midx_report(_("the midx contains no oid"));
1243 /*
1244 * Remaining tests assume that we have objects, so we can
1245 * return here.
1246 */
1247 return verify_midx_error;
1248 }
1249
William Bakerad600962019-10-21 18:40:01 +00001250 if (flags & MIDX_PROGRESS)
1251 progress = start_sparse_progress(_("Verifying OID order in multi-pack-index"),
1252 m->num_objects - 1);
Derrick Stolee55c56482018-09-13 11:02:22 -07001253 for (i = 0; i < m->num_objects - 1; i++) {
1254 struct object_id oid1, oid2;
1255
1256 nth_midxed_object_oid(&oid1, m, i);
1257 nth_midxed_object_oid(&oid2, m, i + 1);
1258
1259 if (oidcmp(&oid1, &oid2) >= 0)
1260 midx_report(_("oid lookup out of order: oid[%d] = %s >= %s = oid[%d]"),
1261 i, oid_to_hex(&oid1), oid_to_hex(&oid2), i + 1);
Derrick Stolee55c56482018-09-13 11:02:22 -07001262
Jeff Hostetler430efb82019-03-21 12:36:14 -07001263 midx_display_sparse_progress(progress, i + 1);
1264 }
1265 stop_progress(&progress);
1266
Jeff Hostetler5ae18df2019-03-21 12:36:15 -07001267 /*
1268 * Create an array mapping each object to its packfile id. Sort it
1269 * to group the objects by packfile. Use this permutation to visit
1270 * each of the objects and only require 1 packfile to be open at a
1271 * time.
1272 */
1273 ALLOC_ARRAY(pairs, m->num_objects);
1274 for (i = 0; i < m->num_objects; i++) {
1275 pairs[i].pos = i;
1276 pairs[i].pack_int_id = nth_midxed_pack_int_id(m, i);
1277 }
1278
William Bakerad600962019-10-21 18:40:01 +00001279 if (flags & MIDX_PROGRESS)
1280 progress = start_sparse_progress(_("Sorting objects by packfile"),
1281 m->num_objects);
Jeff Hostetler5ae18df2019-03-21 12:36:15 -07001282 display_progress(progress, 0); /* TODO: Measure QSORT() progress */
1283 QSORT(pairs, m->num_objects, compare_pair_pos_vs_id);
1284 stop_progress(&progress);
1285
William Bakerad600962019-10-21 18:40:01 +00001286 if (flags & MIDX_PROGRESS)
1287 progress = start_sparse_progress(_("Verifying object offsets"), m->num_objects);
Derrick Stoleecc6af732018-09-13 11:02:25 -07001288 for (i = 0; i < m->num_objects; i++) {
1289 struct object_id oid;
1290 struct pack_entry e;
1291 off_t m_offset, p_offset;
1292
Jeff Hostetler5ae18df2019-03-21 12:36:15 -07001293 if (i > 0 && pairs[i-1].pack_int_id != pairs[i].pack_int_id &&
1294 m->packs[pairs[i-1].pack_int_id])
1295 {
1296 close_pack_fd(m->packs[pairs[i-1].pack_int_id]);
1297 close_pack_index(m->packs[pairs[i-1].pack_int_id]);
1298 }
1299
1300 nth_midxed_object_oid(&oid, m, pairs[i].pos);
1301
Derrick Stolee64404a22019-04-29 09:18:55 -07001302 if (!fill_midx_entry(r, &oid, &e, m)) {
Derrick Stoleecc6af732018-09-13 11:02:25 -07001303 midx_report(_("failed to load pack entry for oid[%d] = %s"),
Jeff Hostetler5ae18df2019-03-21 12:36:15 -07001304 pairs[i].pos, oid_to_hex(&oid));
Derrick Stoleecc6af732018-09-13 11:02:25 -07001305 continue;
1306 }
1307
1308 if (open_pack_index(e.p)) {
1309 midx_report(_("failed to load pack-index for packfile %s"),
1310 e.p->pack_name);
1311 break;
1312 }
1313
1314 m_offset = e.offset;
1315 p_offset = find_pack_entry_one(oid.hash, e.p);
1316
1317 if (m_offset != p_offset)
1318 midx_report(_("incorrect object offset for oid[%d] = %s: %"PRIx64" != %"PRIx64),
Jeff Hostetler5ae18df2019-03-21 12:36:15 -07001319 pairs[i].pos, oid_to_hex(&oid), m_offset, p_offset);
Derrick Stolee144d7032018-09-13 11:02:26 -07001320
Jeff Hostetler430efb82019-03-21 12:36:14 -07001321 midx_display_sparse_progress(progress, i + 1);
Derrick Stoleecc6af732018-09-13 11:02:25 -07001322 }
Derrick Stolee144d7032018-09-13 11:02:26 -07001323 stop_progress(&progress);
Derrick Stoleecc6af732018-09-13 11:02:25 -07001324
Jeff Hostetler5ae18df2019-03-21 12:36:15 -07001325 free(pairs);
1326
Derrick Stolee56ee7ff2018-09-13 11:02:13 -07001327 return verify_midx_error;
1328}
Derrick Stoleecff97112019-06-10 16:35:23 -07001329
William Bakerefbc3ae2019-10-21 18:39:58 +00001330int expire_midx_packs(struct repository *r, const char *object_dir, unsigned flags)
Derrick Stoleecff97112019-06-10 16:35:23 -07001331{
Derrick Stolee19575c72019-06-10 16:35:25 -07001332 uint32_t i, *count, result = 0;
1333 struct string_list packs_to_drop = STRING_LIST_INIT_DUP;
1334 struct multi_pack_index *m = load_multi_pack_index(object_dir, 1);
William Baker8dc18f82019-10-21 18:40:00 +00001335 struct progress *progress = NULL;
Derrick Stolee19575c72019-06-10 16:35:25 -07001336
1337 if (!m)
1338 return 0;
1339
René Scharfeca56dad2021-03-13 17:17:22 +01001340 CALLOC_ARRAY(count, m->num_packs);
William Baker8dc18f82019-10-21 18:40:00 +00001341
1342 if (flags & MIDX_PROGRESS)
Derrick Stoleeefdd2f02020-09-25 12:33:35 +00001343 progress = start_delayed_progress(_("Counting referenced objects"),
William Baker8dc18f82019-10-21 18:40:00 +00001344 m->num_objects);
Derrick Stolee19575c72019-06-10 16:35:25 -07001345 for (i = 0; i < m->num_objects; i++) {
1346 int pack_int_id = nth_midxed_pack_int_id(m, i);
1347 count[pack_int_id]++;
William Baker8dc18f82019-10-21 18:40:00 +00001348 display_progress(progress, i + 1);
Derrick Stolee19575c72019-06-10 16:35:25 -07001349 }
William Baker8dc18f82019-10-21 18:40:00 +00001350 stop_progress(&progress);
Derrick Stolee19575c72019-06-10 16:35:25 -07001351
William Baker8dc18f82019-10-21 18:40:00 +00001352 if (flags & MIDX_PROGRESS)
Derrick Stoleeefdd2f02020-09-25 12:33:35 +00001353 progress = start_delayed_progress(_("Finding and deleting unreferenced packfiles"),
William Baker8dc18f82019-10-21 18:40:00 +00001354 m->num_packs);
Derrick Stolee19575c72019-06-10 16:35:25 -07001355 for (i = 0; i < m->num_packs; i++) {
1356 char *pack_name;
William Baker8dc18f82019-10-21 18:40:00 +00001357 display_progress(progress, i + 1);
Derrick Stolee19575c72019-06-10 16:35:25 -07001358
1359 if (count[i])
1360 continue;
1361
1362 if (prepare_midx_pack(r, m, i))
1363 continue;
1364
1365 if (m->packs[i]->pack_keep)
1366 continue;
1367
1368 pack_name = xstrdup(m->packs[i]->pack_name);
1369 close_pack(m->packs[i]);
1370
1371 string_list_insert(&packs_to_drop, m->pack_names[i]);
1372 unlink_pack_path(pack_name, 0);
1373 free(pack_name);
1374 }
William Baker8dc18f82019-10-21 18:40:00 +00001375 stop_progress(&progress);
Derrick Stolee19575c72019-06-10 16:35:25 -07001376
1377 free(count);
1378
1379 if (packs_to_drop.nr)
Taylor Blau9218c6a2021-03-30 11:04:11 -04001380 result = write_midx_internal(object_dir, m, &packs_to_drop, NULL, flags);
Derrick Stolee19575c72019-06-10 16:35:25 -07001381
1382 string_list_clear(&packs_to_drop, 0);
1383 return result;
Derrick Stoleecff97112019-06-10 16:35:23 -07001384}
Derrick Stolee2af890b2019-06-10 16:35:26 -07001385
Derrick Stoleece1e4a12019-06-10 16:35:27 -07001386struct repack_info {
1387 timestamp_t mtime;
1388 uint32_t referenced_objects;
1389 uint32_t pack_int_id;
1390};
1391
1392static int compare_by_mtime(const void *a_, const void *b_)
1393{
1394 const struct repack_info *a, *b;
1395
1396 a = (const struct repack_info *)a_;
1397 b = (const struct repack_info *)b_;
1398
1399 if (a->mtime < b->mtime)
1400 return -1;
1401 if (a->mtime > b->mtime)
1402 return 1;
1403 return 0;
1404}
1405
Derrick Stolee3ce4ca02020-05-10 16:07:34 +00001406static int fill_included_packs_all(struct repository *r,
1407 struct multi_pack_index *m,
Derrick Stoleece1e4a12019-06-10 16:35:27 -07001408 unsigned char *include_pack)
1409{
Derrick Stolee3ce4ca02020-05-10 16:07:34 +00001410 uint32_t i, count = 0;
1411 int pack_kept_objects = 0;
Derrick Stoleece1e4a12019-06-10 16:35:27 -07001412
Derrick Stolee3ce4ca02020-05-10 16:07:34 +00001413 repo_config_get_bool(r, "repack.packkeptobjects", &pack_kept_objects);
1414
1415 for (i = 0; i < m->num_packs; i++) {
1416 if (prepare_midx_pack(r, m, i))
1417 continue;
1418 if (!pack_kept_objects && m->packs[i]->pack_keep)
1419 continue;
1420
Derrick Stoleece1e4a12019-06-10 16:35:27 -07001421 include_pack[i] = 1;
Derrick Stolee3ce4ca02020-05-10 16:07:34 +00001422 count++;
1423 }
Derrick Stoleece1e4a12019-06-10 16:35:27 -07001424
Derrick Stolee3ce4ca02020-05-10 16:07:34 +00001425 return count < 2;
Derrick Stoleece1e4a12019-06-10 16:35:27 -07001426}
1427
1428static int fill_included_packs_batch(struct repository *r,
1429 struct multi_pack_index *m,
1430 unsigned char *include_pack,
1431 size_t batch_size)
1432{
1433 uint32_t i, packs_to_repack;
1434 size_t total_size;
1435 struct repack_info *pack_info = xcalloc(m->num_packs, sizeof(struct repack_info));
Derrick Stolee3ce4ca02020-05-10 16:07:34 +00001436 int pack_kept_objects = 0;
1437
1438 repo_config_get_bool(r, "repack.packkeptobjects", &pack_kept_objects);
Derrick Stoleece1e4a12019-06-10 16:35:27 -07001439
1440 for (i = 0; i < m->num_packs; i++) {
1441 pack_info[i].pack_int_id = i;
1442
1443 if (prepare_midx_pack(r, m, i))
1444 continue;
1445
1446 pack_info[i].mtime = m->packs[i]->mtime;
1447 }
1448
1449 for (i = 0; batch_size && i < m->num_objects; i++) {
1450 uint32_t pack_int_id = nth_midxed_pack_int_id(m, i);
1451 pack_info[pack_int_id].referenced_objects++;
1452 }
1453
1454 QSORT(pack_info, m->num_packs, compare_by_mtime);
1455
1456 total_size = 0;
1457 packs_to_repack = 0;
1458 for (i = 0; total_size < batch_size && i < m->num_packs; i++) {
1459 int pack_int_id = pack_info[i].pack_int_id;
1460 struct packed_git *p = m->packs[pack_int_id];
1461 size_t expected_size;
1462
1463 if (!p)
1464 continue;
Derrick Stolee3ce4ca02020-05-10 16:07:34 +00001465 if (!pack_kept_objects && p->pack_keep)
1466 continue;
Derrick Stoleece1e4a12019-06-10 16:35:27 -07001467 if (open_pack_index(p) || !p->num_objects)
1468 continue;
1469
1470 expected_size = (size_t)(p->pack_size
1471 * pack_info[i].referenced_objects);
1472 expected_size /= p->num_objects;
1473
1474 if (expected_size >= batch_size)
1475 continue;
1476
1477 packs_to_repack++;
1478 total_size += expected_size;
1479 include_pack[pack_int_id] = 1;
1480 }
1481
1482 free(pack_info);
1483
Derrick Stolee1eb22c72020-08-11 15:30:18 +00001484 if (packs_to_repack < 2)
Derrick Stoleece1e4a12019-06-10 16:35:27 -07001485 return 1;
1486
1487 return 0;
1488}
1489
William Bakerefbc3ae2019-10-21 18:39:58 +00001490int midx_repack(struct repository *r, const char *object_dir, size_t batch_size, unsigned flags)
Derrick Stolee2af890b2019-06-10 16:35:26 -07001491{
Derrick Stoleece1e4a12019-06-10 16:35:27 -07001492 int result = 0;
1493 uint32_t i;
1494 unsigned char *include_pack;
1495 struct child_process cmd = CHILD_PROCESS_INIT;
René Scharfe6af3b002020-08-12 18:52:54 +02001496 FILE *cmd_in;
Derrick Stoleece1e4a12019-06-10 16:35:27 -07001497 struct strbuf base_name = STRBUF_INIT;
1498 struct multi_pack_index *m = load_multi_pack_index(object_dir, 1);
1499
Son Luong Ngoce11d86d2020-05-10 16:07:33 +00001500 /*
1501 * When updating the default for these configuration
1502 * variables in builtin/repack.c, these must be adjusted
1503 * to match.
1504 */
1505 int delta_base_offset = 1;
1506 int use_delta_islands = 0;
1507
Derrick Stoleece1e4a12019-06-10 16:35:27 -07001508 if (!m)
1509 return 0;
1510
René Scharfeca56dad2021-03-13 17:17:22 +01001511 CALLOC_ARRAY(include_pack, m->num_packs);
Derrick Stoleece1e4a12019-06-10 16:35:27 -07001512
1513 if (batch_size) {
1514 if (fill_included_packs_batch(r, m, include_pack, batch_size))
1515 goto cleanup;
Derrick Stolee3ce4ca02020-05-10 16:07:34 +00001516 } else if (fill_included_packs_all(r, m, include_pack))
Derrick Stoleece1e4a12019-06-10 16:35:27 -07001517 goto cleanup;
1518
Son Luong Ngoce11d86d2020-05-10 16:07:33 +00001519 repo_config_get_bool(r, "repack.usedeltabaseoffset", &delta_base_offset);
1520 repo_config_get_bool(r, "repack.usedeltaislands", &use_delta_islands);
1521
Jeff Kingc972bf42020-07-28 16:25:12 -04001522 strvec_push(&cmd.args, "pack-objects");
Derrick Stoleece1e4a12019-06-10 16:35:27 -07001523
1524 strbuf_addstr(&base_name, object_dir);
1525 strbuf_addstr(&base_name, "/pack/pack");
Jeff Kingc972bf42020-07-28 16:25:12 -04001526 strvec_push(&cmd.args, base_name.buf);
William Baker64d80e72019-10-21 18:40:02 +00001527
Son Luong Ngoce11d86d2020-05-10 16:07:33 +00001528 if (delta_base_offset)
Jeff Kingc972bf42020-07-28 16:25:12 -04001529 strvec_push(&cmd.args, "--delta-base-offset");
Son Luong Ngoce11d86d2020-05-10 16:07:33 +00001530 if (use_delta_islands)
Jeff Kingc972bf42020-07-28 16:25:12 -04001531 strvec_push(&cmd.args, "--delta-islands");
Son Luong Ngoce11d86d2020-05-10 16:07:33 +00001532
William Baker64d80e72019-10-21 18:40:02 +00001533 if (flags & MIDX_PROGRESS)
Jeff Kingc972bf42020-07-28 16:25:12 -04001534 strvec_push(&cmd.args, "--progress");
William Baker64d80e72019-10-21 18:40:02 +00001535 else
Jeff Kingc972bf42020-07-28 16:25:12 -04001536 strvec_push(&cmd.args, "-q");
William Baker64d80e72019-10-21 18:40:02 +00001537
Derrick Stoleece1e4a12019-06-10 16:35:27 -07001538 strbuf_release(&base_name);
1539
1540 cmd.git_cmd = 1;
1541 cmd.in = cmd.out = -1;
1542
1543 if (start_command(&cmd)) {
1544 error(_("could not start pack-objects"));
1545 result = 1;
1546 goto cleanup;
1547 }
1548
René Scharfe6af3b002020-08-12 18:52:54 +02001549 cmd_in = xfdopen(cmd.in, "w");
1550
Derrick Stoleece1e4a12019-06-10 16:35:27 -07001551 for (i = 0; i < m->num_objects; i++) {
1552 struct object_id oid;
1553 uint32_t pack_int_id = nth_midxed_pack_int_id(m, i);
1554
1555 if (!include_pack[pack_int_id])
1556 continue;
1557
1558 nth_midxed_object_oid(&oid, m, i);
René Scharfe6af3b002020-08-12 18:52:54 +02001559 fprintf(cmd_in, "%s\n", oid_to_hex(&oid));
Derrick Stoleece1e4a12019-06-10 16:35:27 -07001560 }
René Scharfe6af3b002020-08-12 18:52:54 +02001561 fclose(cmd_in);
Derrick Stoleece1e4a12019-06-10 16:35:27 -07001562
1563 if (finish_command(&cmd)) {
1564 error(_("could not finish pack-objects"));
1565 result = 1;
1566 goto cleanup;
1567 }
1568
Taylor Blau9218c6a2021-03-30 11:04:11 -04001569 result = write_midx_internal(object_dir, m, NULL, NULL, flags);
Derrick Stoleece1e4a12019-06-10 16:35:27 -07001570 m = NULL;
1571
1572cleanup:
1573 if (m)
1574 close_midx(m);
1575 free(include_pack);
1576 return result;
Derrick Stolee2af890b2019-06-10 16:35:26 -07001577}