7 #include "object-store.h"
8 #include "sha1-lookup.h"
11 #define MIDX_SIGNATURE 0x4d494458 /* "MIDX" */
12 #define MIDX_VERSION 1
13 #define MIDX_BYTE_FILE_VERSION 4
14 #define MIDX_BYTE_HASH_VERSION 5
15 #define MIDX_BYTE_NUM_CHUNKS 6
16 #define MIDX_BYTE_NUM_PACKS 8
17 #define MIDX_HASH_VERSION 1
18 #define MIDX_HEADER_SIZE 12
19 #define MIDX_HASH_LEN 20
20 #define MIDX_MIN_SIZE (MIDX_HEADER_SIZE + MIDX_HASH_LEN)
22 #define MIDX_MAX_CHUNKS 5
23 #define MIDX_CHUNK_ALIGNMENT 4
24 #define MIDX_CHUNKID_PACKNAMES 0x504e414d /* "PNAM" */
25 #define MIDX_CHUNKID_OIDFANOUT 0x4f494446 /* "OIDF" */
26 #define MIDX_CHUNKID_OIDLOOKUP 0x4f49444c /* "OIDL" */
27 #define MIDX_CHUNKID_OBJECTOFFSETS 0x4f4f4646 /* "OOFF" */
28 #define MIDX_CHUNKID_LARGEOFFSETS 0x4c4f4646 /* "LOFF" */
29 #define MIDX_CHUNKLOOKUP_WIDTH (sizeof(uint32_t) + sizeof(uint64_t))
30 #define MIDX_CHUNK_FANOUT_SIZE (sizeof(uint32_t) * 256)
31 #define MIDX_CHUNK_OFFSET_WIDTH (2 * sizeof(uint32_t))
32 #define MIDX_CHUNK_LARGE_OFFSET_WIDTH (sizeof(uint64_t))
33 #define MIDX_LARGE_OFFSET_NEEDED 0x80000000
35 static char *get_midx_filename(const char *object_dir
)
37 return xstrfmt("%s/pack/multi-pack-index", object_dir
);
40 struct multi_pack_index
*load_multi_pack_index(const char *object_dir
, int local
)
42 struct multi_pack_index
*m
= NULL
;
46 void *midx_map
= NULL
;
47 uint32_t hash_version
;
48 char *midx_name
= get_midx_filename(object_dir
);
50 const char *cur_pack_name
;
52 fd
= git_open(midx_name
);
57 error_errno(_("failed to read %s"), midx_name
);
61 midx_size
= xsize_t(st
.st_size
);
63 if (midx_size
< MIDX_MIN_SIZE
) {
64 error(_("multi-pack-index file %s is too small"), midx_name
);
68 FREE_AND_NULL(midx_name
);
70 midx_map
= xmmap(NULL
, midx_size
, PROT_READ
, MAP_PRIVATE
, fd
, 0);
72 FLEX_ALLOC_MEM(m
, object_dir
, object_dir
, strlen(object_dir
));
75 m
->data_len
= midx_size
;
78 m
->signature
= get_be32(m
->data
);
79 if (m
->signature
!= MIDX_SIGNATURE
)
80 die(_("multi-pack-index signature 0x%08x does not match signature 0x%08x"),
81 m
->signature
, MIDX_SIGNATURE
);
83 m
->version
= m
->data
[MIDX_BYTE_FILE_VERSION
];
84 if (m
->version
!= MIDX_VERSION
)
85 die(_("multi-pack-index version %d not recognized"),
88 hash_version
= m
->data
[MIDX_BYTE_HASH_VERSION
];
89 if (hash_version
!= MIDX_HASH_VERSION
)
90 die(_("hash version %u does not match"), hash_version
);
91 m
->hash_len
= MIDX_HASH_LEN
;
93 m
->num_chunks
= m
->data
[MIDX_BYTE_NUM_CHUNKS
];
95 m
->num_packs
= get_be32(m
->data
+ MIDX_BYTE_NUM_PACKS
);
97 for (i
= 0; i
< m
->num_chunks
; i
++) {
98 uint32_t chunk_id
= get_be32(m
->data
+ MIDX_HEADER_SIZE
+
99 MIDX_CHUNKLOOKUP_WIDTH
* i
);
100 uint64_t chunk_offset
= get_be64(m
->data
+ MIDX_HEADER_SIZE
+ 4 +
101 MIDX_CHUNKLOOKUP_WIDTH
* i
);
104 case MIDX_CHUNKID_PACKNAMES
:
105 m
->chunk_pack_names
= m
->data
+ chunk_offset
;
108 case MIDX_CHUNKID_OIDFANOUT
:
109 m
->chunk_oid_fanout
= (uint32_t *)(m
->data
+ chunk_offset
);
112 case MIDX_CHUNKID_OIDLOOKUP
:
113 m
->chunk_oid_lookup
= m
->data
+ chunk_offset
;
116 case MIDX_CHUNKID_OBJECTOFFSETS
:
117 m
->chunk_object_offsets
= m
->data
+ chunk_offset
;
120 case MIDX_CHUNKID_LARGEOFFSETS
:
121 m
->chunk_large_offsets
= m
->data
+ chunk_offset
;
125 die(_("terminating multi-pack-index chunk id appears earlier than expected"));
130 * Do nothing on unrecognized chunks, allowing future
131 * extensions to add optional chunks.
137 if (!m
->chunk_pack_names
)
138 die(_("multi-pack-index missing required pack-name chunk"));
139 if (!m
->chunk_oid_fanout
)
140 die(_("multi-pack-index missing required OID fanout chunk"));
141 if (!m
->chunk_oid_lookup
)
142 die(_("multi-pack-index missing required OID lookup chunk"));
143 if (!m
->chunk_object_offsets
)
144 die(_("multi-pack-index missing required object offsets chunk"));
146 m
->num_objects
= ntohl(m
->chunk_oid_fanout
[255]);
148 m
->pack_names
= xcalloc(m
->num_packs
, sizeof(*m
->pack_names
));
149 m
->packs
= xcalloc(m
->num_packs
, sizeof(*m
->packs
));
151 cur_pack_name
= (const char *)m
->chunk_pack_names
;
152 for (i
= 0; i
< m
->num_packs
; i
++) {
153 m
->pack_names
[i
] = cur_pack_name
;
155 cur_pack_name
+= strlen(cur_pack_name
) + 1;
157 if (i
&& strcmp(m
->pack_names
[i
], m
->pack_names
[i
- 1]) <= 0) {
158 error(_("multi-pack-index pack names out of order: '%s' before '%s'"),
159 m
->pack_names
[i
- 1],
171 munmap(midx_map
, midx_size
);
177 static void close_midx(struct multi_pack_index
*m
)
180 munmap((unsigned char *)m
->data
, m
->data_len
);
184 for (i
= 0; i
< m
->num_packs
; i
++) {
186 close_pack(m
->packs
[i
]);
190 FREE_AND_NULL(m
->packs
);
191 FREE_AND_NULL(m
->pack_names
);
194 int prepare_midx_pack(struct multi_pack_index
*m
, uint32_t pack_int_id
)
196 struct strbuf pack_name
= STRBUF_INIT
;
198 if (pack_int_id
>= m
->num_packs
)
199 BUG("bad pack-int-id");
201 if (m
->packs
[pack_int_id
])
204 strbuf_addf(&pack_name
, "%s/pack/%s", m
->object_dir
,
205 m
->pack_names
[pack_int_id
]);
207 m
->packs
[pack_int_id
] = add_packed_git(pack_name
.buf
, pack_name
.len
, m
->local
);
208 strbuf_release(&pack_name
);
209 return !m
->packs
[pack_int_id
];
212 int bsearch_midx(const struct object_id
*oid
, struct multi_pack_index
*m
, uint32_t *result
)
214 return bsearch_hash(oid
->hash
, m
->chunk_oid_fanout
, m
->chunk_oid_lookup
,
215 MIDX_HASH_LEN
, result
);
218 struct object_id
*nth_midxed_object_oid(struct object_id
*oid
,
219 struct multi_pack_index
*m
,
222 if (n
>= m
->num_objects
)
225 hashcpy(oid
->hash
, m
->chunk_oid_lookup
+ m
->hash_len
* n
);
229 static off_t
nth_midxed_offset(struct multi_pack_index
*m
, uint32_t pos
)
231 const unsigned char *offset_data
;
234 offset_data
= m
->chunk_object_offsets
+ pos
* MIDX_CHUNK_OFFSET_WIDTH
;
235 offset32
= get_be32(offset_data
+ sizeof(uint32_t));
237 if (m
->chunk_large_offsets
&& offset32
& MIDX_LARGE_OFFSET_NEEDED
) {
238 if (sizeof(offset32
) < sizeof(uint64_t))
239 die(_("multi-pack-index stores a 64-bit offset, but off_t is too small"));
241 offset32
^= MIDX_LARGE_OFFSET_NEEDED
;
242 return get_be64(m
->chunk_large_offsets
+ sizeof(uint64_t) * offset32
);
248 static uint32_t nth_midxed_pack_int_id(struct multi_pack_index
*m
, uint32_t pos
)
250 return get_be32(m
->chunk_object_offsets
+ pos
* MIDX_CHUNK_OFFSET_WIDTH
);
253 static int nth_midxed_pack_entry(struct multi_pack_index
*m
, struct pack_entry
*e
, uint32_t pos
)
255 uint32_t pack_int_id
;
256 struct packed_git
*p
;
258 if (pos
>= m
->num_objects
)
261 pack_int_id
= nth_midxed_pack_int_id(m
, pos
);
263 if (prepare_midx_pack(m
, pack_int_id
))
264 die(_("error preparing packfile from multi-pack-index"));
265 p
= m
->packs
[pack_int_id
];
268 * We are about to tell the caller where they can locate the
269 * requested object. We better make sure the packfile is
270 * still here and can be accessed before supplying that
271 * answer, as it may have been deleted since the MIDX was
274 if (!is_pack_valid(p
))
277 if (p
->num_bad_objects
) {
279 struct object_id oid
;
280 nth_midxed_object_oid(&oid
, m
, pos
);
281 for (i
= 0; i
< p
->num_bad_objects
; i
++)
282 if (!hashcmp(oid
.hash
,
283 p
->bad_object_sha1
+ the_hash_algo
->rawsz
* i
))
287 e
->offset
= nth_midxed_offset(m
, pos
);
293 int fill_midx_entry(const struct object_id
*oid
, struct pack_entry
*e
, struct multi_pack_index
*m
)
297 if (!bsearch_midx(oid
, m
, &pos
))
300 return nth_midxed_pack_entry(m
, e
, pos
);
303 int midx_contains_pack(struct multi_pack_index
*m
, const char *idx_name
)
305 uint32_t first
= 0, last
= m
->num_packs
;
307 while (first
< last
) {
308 uint32_t mid
= first
+ (last
- first
) / 2;
312 current
= m
->pack_names
[mid
];
313 cmp
= strcmp(idx_name
, current
);
326 int prepare_multi_pack_index_one(struct repository
*r
, const char *object_dir
, int local
)
328 struct multi_pack_index
*m
;
329 struct multi_pack_index
*m_search
;
332 if (repo_config_get_bool(r
, "core.multipackindex", &config_value
) ||
336 for (m_search
= r
->objects
->multi_pack_index
; m_search
; m_search
= m_search
->next
)
337 if (!strcmp(object_dir
, m_search
->object_dir
))
340 m
= load_multi_pack_index(object_dir
, local
);
343 m
->next
= r
->objects
->multi_pack_index
;
344 r
->objects
->multi_pack_index
= m
;
351 static size_t write_midx_header(struct hashfile
*f
,
352 unsigned char num_chunks
,
355 unsigned char byte_values
[4];
357 hashwrite_be32(f
, MIDX_SIGNATURE
);
358 byte_values
[0] = MIDX_VERSION
;
359 byte_values
[1] = MIDX_HASH_VERSION
;
360 byte_values
[2] = num_chunks
;
361 byte_values
[3] = 0; /* unused */
362 hashwrite(f
, byte_values
, sizeof(byte_values
));
363 hashwrite_be32(f
, num_packs
);
365 return MIDX_HEADER_SIZE
;
369 struct packed_git
**list
;
373 uint32_t alloc_names
;
374 size_t pack_name_concat_len
;
375 struct multi_pack_index
*m
;
378 static void add_pack_to_midx(const char *full_path
, size_t full_path_len
,
379 const char *file_name
, void *data
)
381 struct pack_list
*packs
= (struct pack_list
*)data
;
383 if (ends_with(file_name
, ".idx")) {
384 if (packs
->m
&& midx_contains_pack(packs
->m
, file_name
))
387 ALLOC_GROW(packs
->list
, packs
->nr
+ 1, packs
->alloc_list
);
388 ALLOC_GROW(packs
->names
, packs
->nr
+ 1, packs
->alloc_names
);
390 packs
->list
[packs
->nr
] = add_packed_git(full_path
,
394 if (!packs
->list
[packs
->nr
]) {
395 warning(_("failed to add packfile '%s'"),
400 if (open_pack_index(packs
->list
[packs
->nr
])) {
401 warning(_("failed to open pack-index '%s'"),
403 close_pack(packs
->list
[packs
->nr
]);
404 FREE_AND_NULL(packs
->list
[packs
->nr
]);
408 packs
->names
[packs
->nr
] = xstrdup(file_name
);
409 packs
->pack_name_concat_len
+= strlen(file_name
) + 1;
415 uint32_t pack_int_id
;
419 static int pack_pair_compare(const void *_a
, const void *_b
)
421 struct pack_pair
*a
= (struct pack_pair
*)_a
;
422 struct pack_pair
*b
= (struct pack_pair
*)_b
;
423 return strcmp(a
->pack_name
, b
->pack_name
);
426 static void sort_packs_by_name(char **pack_names
, uint32_t nr_packs
, uint32_t *perm
)
429 struct pack_pair
*pairs
;
431 ALLOC_ARRAY(pairs
, nr_packs
);
433 for (i
= 0; i
< nr_packs
; i
++) {
434 pairs
[i
].pack_int_id
= i
;
435 pairs
[i
].pack_name
= pack_names
[i
];
438 QSORT(pairs
, nr_packs
, pack_pair_compare
);
440 for (i
= 0; i
< nr_packs
; i
++) {
441 pack_names
[i
] = pairs
[i
].pack_name
;
442 perm
[pairs
[i
].pack_int_id
] = i
;
448 struct pack_midx_entry
{
449 struct object_id oid
;
450 uint32_t pack_int_id
;
455 static int midx_oid_compare(const void *_a
, const void *_b
)
457 const struct pack_midx_entry
*a
= (const struct pack_midx_entry
*)_a
;
458 const struct pack_midx_entry
*b
= (const struct pack_midx_entry
*)_b
;
459 int cmp
= oidcmp(&a
->oid
, &b
->oid
);
464 if (a
->pack_mtime
> b
->pack_mtime
)
466 else if (a
->pack_mtime
< b
->pack_mtime
)
469 return a
->pack_int_id
- b
->pack_int_id
;
472 static int nth_midxed_pack_midx_entry(struct multi_pack_index
*m
,
474 struct pack_midx_entry
*e
,
477 if (pos
>= m
->num_objects
)
480 nth_midxed_object_oid(&e
->oid
, m
, pos
);
481 e
->pack_int_id
= pack_perm
[nth_midxed_pack_int_id(m
, pos
)];
482 e
->offset
= nth_midxed_offset(m
, pos
);
484 /* consider objects in midx to be from "old" packs */
489 static void fill_pack_entry(uint32_t pack_int_id
,
490 struct packed_git
*p
,
492 struct pack_midx_entry
*entry
)
494 if (!nth_packed_object_oid(&entry
->oid
, p
, cur_object
))
495 die(_("failed to locate object %d in packfile"), cur_object
);
497 entry
->pack_int_id
= pack_int_id
;
498 entry
->pack_mtime
= p
->mtime
;
500 entry
->offset
= nth_packed_object_offset(p
, cur_object
);
504 * It is possible to artificially get into a state where there are many
505 * duplicate copies of objects. That can create high memory pressure if
506 * we are to create a list of all objects before de-duplication. To reduce
507 * this memory pressure without a significant performance drop, automatically
508 * group objects by the first byte of their object id. Use the IDX fanout
509 * tables to group the data, copy to a local array, then sort.
511 * Copy only the de-duplicated entries (selected by most-recent modified time
512 * of a packfile containing the object).
514 static struct pack_midx_entry
*get_sorted_entries(struct multi_pack_index
*m
,
515 struct packed_git
**p
,
518 uint32_t *nr_objects
)
520 uint32_t cur_fanout
, cur_pack
, cur_object
;
521 uint32_t alloc_fanout
, alloc_objects
, total_objects
= 0;
522 struct pack_midx_entry
*entries_by_fanout
= NULL
;
523 struct pack_midx_entry
*deduplicated_entries
= NULL
;
524 uint32_t start_pack
= m ? m
->num_packs
: 0;
526 for (cur_pack
= start_pack
; cur_pack
< nr_packs
; cur_pack
++)
527 total_objects
+= p
[cur_pack
]->num_objects
;
530 * As we de-duplicate by fanout value, we expect the fanout
531 * slices to be evenly distributed, with some noise. Hence,
532 * allocate slightly more than one 256th.
534 alloc_objects
= alloc_fanout
= total_objects
> 3200 ? total_objects
/ 200 : 16;
536 ALLOC_ARRAY(entries_by_fanout
, alloc_fanout
);
537 ALLOC_ARRAY(deduplicated_entries
, alloc_objects
);
540 for (cur_fanout
= 0; cur_fanout
< 256; cur_fanout
++) {
541 uint32_t nr_fanout
= 0;
544 uint32_t start
= 0, end
;
547 start
= ntohl(m
->chunk_oid_fanout
[cur_fanout
- 1]);
548 end
= ntohl(m
->chunk_oid_fanout
[cur_fanout
]);
550 for (cur_object
= start
; cur_object
< end
; cur_object
++) {
551 ALLOC_GROW(entries_by_fanout
, nr_fanout
+ 1, alloc_fanout
);
552 nth_midxed_pack_midx_entry(m
, perm
,
553 &entries_by_fanout
[nr_fanout
],
559 for (cur_pack
= start_pack
; cur_pack
< nr_packs
; cur_pack
++) {
560 uint32_t start
= 0, end
;
563 start
= get_pack_fanout(p
[cur_pack
], cur_fanout
- 1);
564 end
= get_pack_fanout(p
[cur_pack
], cur_fanout
);
566 for (cur_object
= start
; cur_object
< end
; cur_object
++) {
567 ALLOC_GROW(entries_by_fanout
, nr_fanout
+ 1, alloc_fanout
);
568 fill_pack_entry(perm
[cur_pack
], p
[cur_pack
], cur_object
, &entries_by_fanout
[nr_fanout
]);
573 QSORT(entries_by_fanout
, nr_fanout
, midx_oid_compare
);
576 * The batch is now sorted by OID and then mtime (descending).
577 * Take only the first duplicate.
579 for (cur_object
= 0; cur_object
< nr_fanout
; cur_object
++) {
580 if (cur_object
&& !oidcmp(&entries_by_fanout
[cur_object
- 1].oid
,
581 &entries_by_fanout
[cur_object
].oid
))
584 ALLOC_GROW(deduplicated_entries
, *nr_objects
+ 1, alloc_objects
);
585 memcpy(&deduplicated_entries
[*nr_objects
],
586 &entries_by_fanout
[cur_object
],
587 sizeof(struct pack_midx_entry
));
592 free(entries_by_fanout
);
593 return deduplicated_entries
;
596 static size_t write_midx_pack_names(struct hashfile
*f
,
601 unsigned char padding
[MIDX_CHUNK_ALIGNMENT
];
604 for (i
= 0; i
< num_packs
; i
++) {
605 size_t writelen
= strlen(pack_names
[i
]) + 1;
607 if (i
&& strcmp(pack_names
[i
], pack_names
[i
- 1]) <= 0)
608 BUG("incorrect pack-file order: %s before %s",
612 hashwrite(f
, pack_names
[i
], writelen
);
616 /* add padding to be aligned */
617 i
= MIDX_CHUNK_ALIGNMENT
- (written
% MIDX_CHUNK_ALIGNMENT
);
618 if (i
< MIDX_CHUNK_ALIGNMENT
) {
619 memset(padding
, 0, sizeof(padding
));
620 hashwrite(f
, padding
, i
);
627 static size_t write_midx_oid_fanout(struct hashfile
*f
,
628 struct pack_midx_entry
*objects
,
631 struct pack_midx_entry
*list
= objects
;
632 struct pack_midx_entry
*last
= objects
+ nr_objects
;
637 * Write the first-level table (the list is sorted,
638 * but we use a 256-entry lookup to be able to avoid
639 * having to do eight extra binary search iterations).
641 for (i
= 0; i
< 256; i
++) {
642 struct pack_midx_entry
*next
= list
;
644 while (next
< last
&& next
->oid
.hash
[0] == i
) {
649 hashwrite_be32(f
, count
);
653 return MIDX_CHUNK_FANOUT_SIZE
;
656 static size_t write_midx_oid_lookup(struct hashfile
*f
, unsigned char hash_len
,
657 struct pack_midx_entry
*objects
,
660 struct pack_midx_entry
*list
= objects
;
664 for (i
= 0; i
< nr_objects
; i
++) {
665 struct pack_midx_entry
*obj
= list
++;
667 if (i
< nr_objects
- 1) {
668 struct pack_midx_entry
*next
= list
;
669 if (oidcmp(&obj
->oid
, &next
->oid
) >= 0)
670 BUG("OIDs not in order: %s >= %s",
671 oid_to_hex(&obj
->oid
),
672 oid_to_hex(&next
->oid
));
675 hashwrite(f
, obj
->oid
.hash
, (int)hash_len
);
682 static size_t write_midx_object_offsets(struct hashfile
*f
, int large_offset_needed
,
683 struct pack_midx_entry
*objects
, uint32_t nr_objects
)
685 struct pack_midx_entry
*list
= objects
;
686 uint32_t i
, nr_large_offset
= 0;
689 for (i
= 0; i
< nr_objects
; i
++) {
690 struct pack_midx_entry
*obj
= list
++;
692 hashwrite_be32(f
, obj
->pack_int_id
);
694 if (large_offset_needed
&& obj
->offset
>> 31)
695 hashwrite_be32(f
, MIDX_LARGE_OFFSET_NEEDED
| nr_large_offset
++);
696 else if (!large_offset_needed
&& obj
->offset
>> 32)
697 BUG("object %s requires a large offset (%"PRIx64
") but the MIDX is not writing large offsets!",
698 oid_to_hex(&obj
->oid
),
701 hashwrite_be32(f
, (uint32_t)obj
->offset
);
703 written
+= MIDX_CHUNK_OFFSET_WIDTH
;
709 static size_t write_midx_large_offsets(struct hashfile
*f
, uint32_t nr_large_offset
,
710 struct pack_midx_entry
*objects
, uint32_t nr_objects
)
712 struct pack_midx_entry
*list
= objects
;
715 while (nr_large_offset
) {
716 struct pack_midx_entry
*obj
= list
++;
717 uint64_t offset
= obj
->offset
;
722 hashwrite_be32(f
, offset
>> 32);
723 hashwrite_be32(f
, offset
& 0xffffffffUL
);
724 written
+= 2 * sizeof(uint32_t);
732 int write_midx_file(const char *object_dir
)
734 unsigned char cur_chunk
, num_chunks
= 0;
737 struct hashfile
*f
= NULL
;
739 struct pack_list packs
;
740 uint32_t *pack_perm
= NULL
;
741 uint64_t written
= 0;
742 uint32_t chunk_ids
[MIDX_MAX_CHUNKS
+ 1];
743 uint64_t chunk_offsets
[MIDX_MAX_CHUNKS
+ 1];
744 uint32_t nr_entries
, num_large_offsets
= 0;
745 struct pack_midx_entry
*entries
= NULL
;
746 int large_offsets_needed
= 0;
748 midx_name
= get_midx_filename(object_dir
);
749 if (safe_create_leading_directories(midx_name
)) {
751 die_errno(_("unable to create leading directories of %s"),
755 packs
.m
= load_multi_pack_index(object_dir
, 1);
758 packs
.alloc_list
= packs
.m ? packs
.m
->num_packs
: 16;
759 packs
.alloc_names
= packs
.alloc_list
;
762 packs
.pack_name_concat_len
= 0;
763 ALLOC_ARRAY(packs
.list
, packs
.alloc_list
);
764 ALLOC_ARRAY(packs
.names
, packs
.alloc_names
);
767 for (i
= 0; i
< packs
.m
->num_packs
; i
++) {
768 ALLOC_GROW(packs
.list
, packs
.nr
+ 1, packs
.alloc_list
);
769 ALLOC_GROW(packs
.names
, packs
.nr
+ 1, packs
.alloc_names
);
771 packs
.list
[packs
.nr
] = NULL
;
772 packs
.names
[packs
.nr
] = xstrdup(packs
.m
->pack_names
[i
]);
773 packs
.pack_name_concat_len
+= strlen(packs
.names
[packs
.nr
]) + 1;
778 for_each_file_in_pack_dir(object_dir
, add_pack_to_midx
, &packs
);
780 if (packs
.m
&& packs
.nr
== packs
.m
->num_packs
)
783 if (packs
.pack_name_concat_len
% MIDX_CHUNK_ALIGNMENT
)
784 packs
.pack_name_concat_len
+= MIDX_CHUNK_ALIGNMENT
-
785 (packs
.pack_name_concat_len
% MIDX_CHUNK_ALIGNMENT
);
787 ALLOC_ARRAY(pack_perm
, packs
.nr
);
788 sort_packs_by_name(packs
.names
, packs
.nr
, pack_perm
);
790 entries
= get_sorted_entries(packs
.m
, packs
.list
, pack_perm
, packs
.nr
, &nr_entries
);
792 for (i
= 0; i
< nr_entries
; i
++) {
793 if (entries
[i
].offset
> 0x7fffffff)
795 if (entries
[i
].offset
> 0xffffffff)
796 large_offsets_needed
= 1;
799 hold_lock_file_for_update(&lk
, midx_name
, LOCK_DIE_ON_ERROR
);
800 f
= hashfd(lk
.tempfile
->fd
, lk
.tempfile
->filename
.buf
);
801 FREE_AND_NULL(midx_name
);
807 num_chunks
= large_offsets_needed ?
5 : 4;
809 written
= write_midx_header(f
, num_chunks
, packs
.nr
);
811 chunk_ids
[cur_chunk
] = MIDX_CHUNKID_PACKNAMES
;
812 chunk_offsets
[cur_chunk
] = written
+ (num_chunks
+ 1) * MIDX_CHUNKLOOKUP_WIDTH
;
815 chunk_ids
[cur_chunk
] = MIDX_CHUNKID_OIDFANOUT
;
816 chunk_offsets
[cur_chunk
] = chunk_offsets
[cur_chunk
- 1] + packs
.pack_name_concat_len
;
819 chunk_ids
[cur_chunk
] = MIDX_CHUNKID_OIDLOOKUP
;
820 chunk_offsets
[cur_chunk
] = chunk_offsets
[cur_chunk
- 1] + MIDX_CHUNK_FANOUT_SIZE
;
823 chunk_ids
[cur_chunk
] = MIDX_CHUNKID_OBJECTOFFSETS
;
824 chunk_offsets
[cur_chunk
] = chunk_offsets
[cur_chunk
- 1] + nr_entries
* MIDX_HASH_LEN
;
827 chunk_offsets
[cur_chunk
] = chunk_offsets
[cur_chunk
- 1] + nr_entries
* MIDX_CHUNK_OFFSET_WIDTH
;
828 if (large_offsets_needed
) {
829 chunk_ids
[cur_chunk
] = MIDX_CHUNKID_LARGEOFFSETS
;
832 chunk_offsets
[cur_chunk
] = chunk_offsets
[cur_chunk
- 1] +
833 num_large_offsets
* MIDX_CHUNK_LARGE_OFFSET_WIDTH
;
836 chunk_ids
[cur_chunk
] = 0;
838 for (i
= 0; i
<= num_chunks
; i
++) {
839 if (i
&& chunk_offsets
[i
] < chunk_offsets
[i
- 1])
840 BUG("incorrect chunk offsets: %"PRIu64
" before %"PRIu64
,
841 chunk_offsets
[i
- 1],
844 if (chunk_offsets
[i
] % MIDX_CHUNK_ALIGNMENT
)
845 BUG("chunk offset %"PRIu64
" is not properly aligned",
848 hashwrite_be32(f
, chunk_ids
[i
]);
849 hashwrite_be32(f
, chunk_offsets
[i
] >> 32);
850 hashwrite_be32(f
, chunk_offsets
[i
]);
852 written
+= MIDX_CHUNKLOOKUP_WIDTH
;
855 for (i
= 0; i
< num_chunks
; i
++) {
856 if (written
!= chunk_offsets
[i
])
857 BUG("incorrect chunk offset (%"PRIu64
" != %"PRIu64
") for chunk id %"PRIx32
,
862 switch (chunk_ids
[i
]) {
863 case MIDX_CHUNKID_PACKNAMES
:
864 written
+= write_midx_pack_names(f
, packs
.names
, packs
.nr
);
867 case MIDX_CHUNKID_OIDFANOUT
:
868 written
+= write_midx_oid_fanout(f
, entries
, nr_entries
);
871 case MIDX_CHUNKID_OIDLOOKUP
:
872 written
+= write_midx_oid_lookup(f
, MIDX_HASH_LEN
, entries
, nr_entries
);
875 case MIDX_CHUNKID_OBJECTOFFSETS
:
876 written
+= write_midx_object_offsets(f
, large_offsets_needed
, entries
, nr_entries
);
879 case MIDX_CHUNKID_LARGEOFFSETS
:
880 written
+= write_midx_large_offsets(f
, num_large_offsets
, entries
, nr_entries
);
884 BUG("trying to write unknown chunk id %"PRIx32
,
889 if (written
!= chunk_offsets
[num_chunks
])
890 BUG("incorrect final offset %"PRIu64
" != %"PRIu64
,
892 chunk_offsets
[num_chunks
]);
894 finalize_hashfile(f
, NULL
, CSUM_FSYNC
| CSUM_HASH_IN_STREAM
);
895 commit_lock_file(&lk
);
898 for (i
= 0; i
< packs
.nr
; i
++) {
900 close_pack(packs
.list
[i
]);
903 free(packs
.names
[i
]);
914 void clear_midx_file(const char *object_dir
)
916 char *midx
= get_midx_filename(object_dir
);
918 if (remove_path(midx
)) {
920 die(_("failed to clear multi-pack-index at %s"), midx
);
926 static int verify_midx_error
;
928 int verify_midx_file(const char *object_dir
)
930 struct multi_pack_index
*m
= load_multi_pack_index(object_dir
, 1);
931 verify_midx_error
= 0;
936 return verify_midx_error
;