]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/pack-objects.c
strvec: convert builtin/ callers away from argv_array name
[thirdparty/git.git] / builtin / pack-objects.c
CommitLineData
5d4a6003 1#include "builtin.h"
c323ac7d 2#include "cache.h"
a80d72db 3#include "repository.h"
b2141fc1 4#include "config.h"
a74db82e 5#include "attr.h"
c323ac7d 6#include "object.h"
8e440259
PE
7#include "blob.h"
8#include "commit.h"
9#include "tag.h"
10#include "tree.h"
c323ac7d 11#include "delta.h"
a733cb60 12#include "pack.h"
3449f8c4 13#include "pack-revindex.h"
c38138cd 14#include "csum-file.h"
1b0c7174 15#include "tree-walk.h"
b5d97e6b
JH
16#include "diff.h"
17#include "revision.h"
18#include "list-objects.h"
9535ce73
JH
19#include "list-objects-filter.h"
20#include "list-objects-filter-options.h"
2834bc27 21#include "pack-objects.h"
96a02f8f 22#include "progress.h"
f0a24aa5 23#include "refs.h"
cf2ba13a 24#include "streaming.h"
93749194 25#include "thread-utils.h"
6b8fda2d 26#include "pack-bitmap.h"
28b8a730 27#include "delta-islands.h"
abcb8655 28#include "reachable.h"
fe299ec5 29#include "oid-array.h"
dbbcd44f 30#include "strvec.h"
ec2dd32c 31#include "list.h"
0317f455 32#include "packfile.h"
a80d72db 33#include "object-store.h"
ed7e5fc3 34#include "dir.h"
6a22d521 35#include "midx.h"
ae417807 36#include "trace2.h"
120ad2b0 37#include "shallow.h"
8ecce684 38
43fa44fa 39#define IN_PACK(obj) oe_in_pack(&to_pack, obj)
ac77d0c3
NTND
40#define SIZE(obj) oe_size(&to_pack, obj)
41#define SET_SIZE(obj,size) oe_set_size(&to_pack, obj, size)
0aca34e8 42#define DELTA_SIZE(obj) oe_delta_size(&to_pack, obj)
898eba5e
NTND
43#define DELTA(obj) oe_delta(&to_pack, obj)
44#define DELTA_CHILD(obj) oe_delta_child(&to_pack, obj)
45#define DELTA_SIBLING(obj) oe_delta_sibling(&to_pack, obj)
46#define SET_DELTA(obj, val) oe_set_delta(&to_pack, obj, val)
6a1e32d5 47#define SET_DELTA_EXT(obj, oid) oe_set_delta_ext(&to_pack, obj, oid)
0aca34e8 48#define SET_DELTA_SIZE(obj, val) oe_set_delta_size(&to_pack, obj, val)
898eba5e
NTND
49#define SET_DELTA_CHILD(obj, val) oe_set_delta_child(&to_pack, obj, val)
50#define SET_DELTA_SIBLING(obj, val) oe_set_delta_sibling(&to_pack, obj, val)
43fa44fa 51
99fb6e04 52static const char *pack_usage[] = {
b8c1d275
AH
53 N_("git pack-objects --stdout [<options>...] [< <ref-list> | < <object-list>]"),
54 N_("git pack-objects [<options>...] <base-name> [< <ref-list> | < <object-list>]"),
99fb6e04
NTND
55 NULL
56};
c323ac7d 57
3f9ac8d2 58/*
2834bc27
VM
59 * Objects we are going to pack are collected in the `to_pack` structure.
60 * It contains an array (dynamically expanded) of the object data, and a map
61 * that can resolve SHA1s to their position in the array.
3f9ac8d2 62 */
2834bc27
VM
63static struct packing_data to_pack;
64
79814f42 65static struct pack_idx_entry **written_list;
5af05043 66static uint32_t nr_result, nr_written, nr_seen;
6a1e32d5 67static struct bitmap_index *bitmap_git;
28b8a730 68static uint32_t write_layer;
3f9ac8d2 69
96f1e58f 70static int non_empty;
a7de7130 71static int reuse_delta = 1, reuse_object = 1;
e5e9714a 72static int keep_unreachable, unpack_unreachable, include_tag;
dddbad72 73static timestamp_t unpack_unreachable_expiration;
e26a8c47 74static int pack_loose_unreachable;
96f1e58f 75static int local;
56dfeb62 76static int have_non_local_packs;
96f1e58f 77static int incremental;
ed7e5fc3
NTND
78static int ignore_packed_keep_on_disk;
79static int ignore_packed_keep_in_core;
be6b1914 80static int allow_ofs_delta;
ebcfb379 81static struct pack_idx_option pack_idx_opts;
d01fb92f 82static const char *base_name;
024701f1 83static int progress = 1;
4812a93a 84static int window = 10;
568508e7 85static unsigned long pack_size_limit;
618e613a 86static int depth = 50;
43cc2b42 87static int delta_search_threads;
df6d6101 88static int pack_to_stdout;
4f6d26b1 89static int sparse;
6a1e32d5 90static int thin;
8d1d8f83 91static int num_preferred_base;
dc6a0757 92static struct progress *progress_state;
c323ac7d 93
6b8fda2d
VM
94static struct packed_git *reuse_packfile;
95static uint32_t reuse_packfile_objects;
bb514de3 96static struct bitmap *reuse_packfile_bitmap;
6b8fda2d 97
645c432d
KS
98static int use_bitmap_index_default = 1;
99static int use_bitmap_index = -1;
e704fc79 100static int allow_pack_reuse = 1;
25575015
JK
101static enum {
102 WRITE_BITMAP_FALSE = 0,
103 WRITE_BITMAP_QUIET,
104 WRITE_BITMAP_TRUE,
105} write_bitmap_index;
d4316604 106static uint16_t write_bitmap_options = BITMAP_OPT_HASH_CACHE;
6b8fda2d 107
0c16cd49
JT
108static int exclude_promisor_objects;
109
28b8a730
JK
110static int use_delta_islands;
111
074b2eea 112static unsigned long delta_cache_size = 0;
9806f5a7 113static unsigned long max_delta_cache_size = DEFAULT_DELTA_CACHE_SIZE;
e3dfddb3 114static unsigned long cache_max_small_delta_size = 1000;
074b2eea 115
a97773ce
BD
116static unsigned long window_memory_limit = 0;
117
9535ce73
JH
118static struct list_objects_filter_options filter_options;
119
dd4b732d
JT
120static struct string_list uri_protocols = STRING_LIST_INIT_NODUP;
121
9535ce73 122enum missing_action {
0c16cd49
JT
123 MA_ERROR = 0, /* fail if any missing objects are encountered */
124 MA_ALLOW_ANY, /* silently allow ALL missing objects */
125 MA_ALLOW_PROMISOR, /* silently allow all missing PROMISOR objects */
9535ce73
JH
126};
127static enum missing_action arg_missing_action;
128static show_object_fn fn_show_object;
129
dd4b732d
JT
130struct configured_exclusion {
131 struct oidmap_entry e;
132 char *pack_hash_hex;
133 char *uri;
134};
135static struct oidmap configured_exclusions;
136
137static struct oidset excluded_by_config;
138
3f9ac8d2
JH
139/*
140 * stats
141 */
7cadf491
SP
142static uint32_t written, written_delta;
143static uint32_t reused, reused_delta;
3f9ac8d2 144
7cc8f971
VM
145/*
146 * Indexed commits
147 */
148static struct commit **indexed_commits;
149static unsigned int indexed_commits_nr;
150static unsigned int indexed_commits_alloc;
151
152static void index_commit_for_bitmap(struct commit *commit)
153{
154 if (indexed_commits_nr >= indexed_commits_alloc) {
155 indexed_commits_alloc = (indexed_commits_alloc + 32) * 2;
2756ca43 156 REALLOC_ARRAY(indexed_commits, indexed_commits_alloc);
7cc8f971
VM
157 }
158
159 indexed_commits[indexed_commits_nr++] = commit;
160}
780e6e73 161
3613f9b4 162static void *get_delta(struct object_entry *entry)
c323ac7d 163{
3613f9b4
NP
164 unsigned long size, base_size, delta_size;
165 void *buf, *base_buf, *delta_buf;
21666f1a 166 enum object_type type;
c323ac7d 167
b4f5aca4 168 buf = read_object_file(&entry->idx.oid, &type, &size);
3613f9b4 169 if (!buf)
f616db6a 170 die(_("unable to read %s"), oid_to_hex(&entry->idx.oid));
898eba5e
NTND
171 base_buf = read_object_file(&DELTA(entry)->idx.oid, &type,
172 &base_size);
3613f9b4 173 if (!base_buf)
e6a492b7 174 die("unable to read %s",
898eba5e 175 oid_to_hex(&DELTA(entry)->idx.oid));
3613f9b4 176 delta_buf = diff_delta(base_buf, base_size,
dcde55bc 177 buf, size, &delta_size, 0);
1a07e59c 178 /*
15beaaa3 179 * We successfully computed this delta once but dropped it for
1a07e59c
NTND
180 * memory reasons. Something is very wrong if this time we
181 * recompute and create a different delta.
182 */
0aca34e8 183 if (!delta_buf || delta_size != DELTA_SIZE(entry))
1a07e59c 184 BUG("delta size changed");
3613f9b4
NP
185 free(buf);
186 free(base_buf);
c323ac7d
LT
187 return delta_buf;
188}
189
30ebb40a
NP
190static unsigned long do_compress(void **pptr, unsigned long size)
191{
ef49a7a0 192 git_zstream stream;
30ebb40a
NP
193 void *in, *out;
194 unsigned long maxsize;
195
55bb5c91 196 git_deflate_init(&stream, pack_compression_level);
225a6f10 197 maxsize = git_deflate_bound(&stream, size);
30ebb40a
NP
198
199 in = *pptr;
200 out = xmalloc(maxsize);
201 *pptr = out;
202
203 stream.next_in = in;
204 stream.avail_in = size;
205 stream.next_out = out;
206 stream.avail_out = maxsize;
55bb5c91 207 while (git_deflate(&stream, Z_FINISH) == Z_OK)
30ebb40a 208 ; /* nothing */
55bb5c91 209 git_deflate_end(&stream);
30ebb40a
NP
210
211 free(in);
212 return stream.total_out;
213}
214
98a3beab 215static unsigned long write_large_blob_data(struct git_istream *st, struct hashfile *f,
188960b4 216 const struct object_id *oid)
cf2ba13a
NTND
217{
218 git_zstream stream;
219 unsigned char ibuf[1024 * 16];
220 unsigned char obuf[1024 * 16];
221 unsigned long olen = 0;
222
cf2ba13a
NTND
223 git_deflate_init(&stream, pack_compression_level);
224
225 for (;;) {
226 ssize_t readlen;
227 int zret = Z_OK;
228 readlen = read_istream(st, ibuf, sizeof(ibuf));
229 if (readlen == -1)
188960b4 230 die(_("unable to read %s"), oid_to_hex(oid));
cf2ba13a
NTND
231
232 stream.next_in = ibuf;
233 stream.avail_in = readlen;
234 while ((stream.avail_in || readlen == 0) &&
235 (zret == Z_OK || zret == Z_BUF_ERROR)) {
236 stream.next_out = obuf;
237 stream.avail_out = sizeof(obuf);
238 zret = git_deflate(&stream, readlen ? 0 : Z_FINISH);
98a3beab 239 hashwrite(f, obuf, stream.next_out - obuf);
cf2ba13a
NTND
240 olen += stream.next_out - obuf;
241 }
242 if (stream.avail_in)
243 die(_("deflate error (%d)"), zret);
244 if (readlen == 0) {
245 if (zret != Z_STREAM_END)
246 die(_("deflate error (%d)"), zret);
247 break;
248 }
249 }
250 git_deflate_end(&stream);
251 return olen;
252}
253
780e6e73
NP
254/*
255 * we are going to reuse the existing object data as is. make
256 * sure it is not corrupt.
257 */
079afb18
SP
258static int check_pack_inflate(struct packed_git *p,
259 struct pack_window **w_curs,
6777a59f
SP
260 off_t offset,
261 off_t len,
079afb18
SP
262 unsigned long expect)
263{
ef49a7a0 264 git_zstream stream;
079afb18
SP
265 unsigned char fakebuf[4096], *in;
266 int st;
267
268 memset(&stream, 0, sizeof(stream));
39c68542 269 git_inflate_init(&stream);
079afb18
SP
270 do {
271 in = use_pack(p, w_curs, offset, &stream.avail_in);
272 stream.next_in = in;
273 stream.next_out = fakebuf;
274 stream.avail_out = sizeof(fakebuf);
39c68542 275 st = git_inflate(&stream, Z_FINISH);
079afb18
SP
276 offset += stream.next_in - in;
277 } while (st == Z_OK || st == Z_BUF_ERROR);
39c68542 278 git_inflate_end(&stream);
079afb18
SP
279 return (st == Z_STREAM_END &&
280 stream.total_out == expect &&
281 stream.total_in == len) ? 0 : -1;
282}
283
98a3beab 284static void copy_pack_data(struct hashfile *f,
079afb18
SP
285 struct packed_git *p,
286 struct pack_window **w_curs,
6777a59f
SP
287 off_t offset,
288 off_t len)
079afb18
SP
289{
290 unsigned char *in;
ef49a7a0 291 unsigned long avail;
079afb18
SP
292
293 while (len) {
294 in = use_pack(p, w_curs, offset, &avail);
295 if (avail > len)
ef49a7a0 296 avail = (unsigned long)len;
98a3beab 297 hashwrite(f, in, avail);
079afb18
SP
298 offset += avail;
299 len -= avail;
300 }
301}
302
1b4bb16b 303/* Return 0 if we will bust the pack-size limit */
98a3beab 304static unsigned long write_no_reuse_object(struct hashfile *f, struct object_entry *entry,
c9018b03 305 unsigned long limit, int usable_delta)
c323ac7d 306{
c9018b03 307 unsigned long size, datalen;
2c5e2865
JK
308 unsigned char header[MAX_PACK_OBJECT_HEADER],
309 dheader[MAX_PACK_OBJECT_HEADER];
6777a59f 310 unsigned hdrlen;
2c5ef824 311 enum object_type type;
c9018b03 312 void *buf;
cf2ba13a 313 struct git_istream *st = NULL;
41179100 314 const unsigned hashsz = the_hash_algo->rawsz;
c9018b03
NTND
315
316 if (!usable_delta) {
fd9b1bae 317 if (oe_type(entry) == OBJ_BLOB &&
ac77d0c3 318 oe_size_greater_than(&to_pack, entry, big_file_threshold) &&
c8123e72
MT
319 (st = open_istream(the_repository, &entry->idx.oid, &type,
320 &size, NULL)) != NULL)
cf2ba13a
NTND
321 buf = NULL;
322 else {
b4f5aca4 323 buf = read_object_file(&entry->idx.oid, &type, &size);
cf2ba13a 324 if (!buf)
e6a492b7 325 die(_("unable to read %s"),
326 oid_to_hex(&entry->idx.oid));
cf2ba13a 327 }
c9018b03
NTND
328 /*
329 * make sure no cached delta data remains from a
330 * previous attempt before a pack split occurred.
331 */
6a83d902 332 FREE_AND_NULL(entry->delta_data);
c9018b03
NTND
333 entry->z_delta_size = 0;
334 } else if (entry->delta_data) {
0aca34e8 335 size = DELTA_SIZE(entry);
c9018b03
NTND
336 buf = entry->delta_data;
337 entry->delta_data = NULL;
898eba5e 338 type = (allow_ofs_delta && DELTA(entry)->idx.offset) ?
c9018b03
NTND
339 OBJ_OFS_DELTA : OBJ_REF_DELTA;
340 } else {
341 buf = get_delta(entry);
0aca34e8 342 size = DELTA_SIZE(entry);
898eba5e 343 type = (allow_ofs_delta && DELTA(entry)->idx.offset) ?
c9018b03
NTND
344 OBJ_OFS_DELTA : OBJ_REF_DELTA;
345 }
346
cf2ba13a
NTND
347 if (st) /* large blob case, just assume we don't compress well */
348 datalen = size;
349 else if (entry->z_delta_size)
c9018b03
NTND
350 datalen = entry->z_delta_size;
351 else
352 datalen = do_compress(&buf, size);
353
354 /*
355 * The object header is a byte of 'type' followed by zero or
356 * more bytes of length.
357 */
7202a6fa
JK
358 hdrlen = encode_in_pack_object_header(header, sizeof(header),
359 type, size);
c9018b03
NTND
360
361 if (type == OBJ_OFS_DELTA) {
362 /*
363 * Deltas with relative base contain an additional
364 * encoding of the relative offset for the delta
365 * base from this object's position in the pack.
366 */
898eba5e 367 off_t ofs = entry->idx.offset - DELTA(entry)->idx.offset;
c9018b03
NTND
368 unsigned pos = sizeof(dheader) - 1;
369 dheader[pos] = ofs & 127;
370 while (ofs >>= 7)
371 dheader[--pos] = 128 | (--ofs & 127);
41179100 372 if (limit && hdrlen + sizeof(dheader) - pos + datalen + hashsz >= limit) {
cf2ba13a
NTND
373 if (st)
374 close_istream(st);
c9018b03
NTND
375 free(buf);
376 return 0;
377 }
98a3beab 378 hashwrite(f, header, hdrlen);
379 hashwrite(f, dheader + pos, sizeof(dheader) - pos);
c9018b03
NTND
380 hdrlen += sizeof(dheader) - pos;
381 } else if (type == OBJ_REF_DELTA) {
382 /*
383 * Deltas with a base reference contain
41179100 384 * additional bytes for the base object ID.
c9018b03 385 */
41179100 386 if (limit && hdrlen + hashsz + datalen + hashsz >= limit) {
cf2ba13a
NTND
387 if (st)
388 close_istream(st);
c9018b03
NTND
389 free(buf);
390 return 0;
391 }
98a3beab 392 hashwrite(f, header, hdrlen);
42c8ce1c 393 hashwrite(f, DELTA(entry)->idx.oid.hash, hashsz);
41179100 394 hdrlen += hashsz;
c9018b03 395 } else {
41179100 396 if (limit && hdrlen + datalen + hashsz >= limit) {
cf2ba13a
NTND
397 if (st)
398 close_istream(st);
c9018b03
NTND
399 free(buf);
400 return 0;
401 }
98a3beab 402 hashwrite(f, header, hdrlen);
c9018b03 403 }
cf2ba13a 404 if (st) {
188960b4 405 datalen = write_large_blob_data(st, f, &entry->idx.oid);
cf2ba13a
NTND
406 close_istream(st);
407 } else {
98a3beab 408 hashwrite(f, buf, datalen);
cf2ba13a
NTND
409 free(buf);
410 }
c9018b03
NTND
411
412 return hdrlen + datalen;
413}
414
415/* Return 0 if we will bust the pack-size limit */
98a3beab 416static off_t write_reuse_object(struct hashfile *f, struct object_entry *entry,
af92a645 417 unsigned long limit, int usable_delta)
c9018b03 418{
43fa44fa 419 struct packed_git *p = IN_PACK(entry);
c9018b03
NTND
420 struct pack_window *w_curs = NULL;
421 struct revindex_entry *revidx;
422 off_t offset;
fd9b1bae 423 enum object_type type = oe_type(entry);
211c61c6 424 off_t datalen;
2c5e2865
JK
425 unsigned char header[MAX_PACK_OBJECT_HEADER],
426 dheader[MAX_PACK_OBJECT_HEADER];
c9018b03 427 unsigned hdrlen;
41179100 428 const unsigned hashsz = the_hash_algo->rawsz;
ac77d0c3 429 unsigned long entry_size = SIZE(entry);
c9018b03 430
898eba5e
NTND
431 if (DELTA(entry))
432 type = (allow_ofs_delta && DELTA(entry)->idx.offset) ?
c9018b03 433 OBJ_OFS_DELTA : OBJ_REF_DELTA;
7202a6fa 434 hdrlen = encode_in_pack_object_header(header, sizeof(header),
ac77d0c3 435 type, entry_size);
c9018b03
NTND
436
437 offset = entry->in_pack_offset;
438 revidx = find_pack_revindex(p, offset);
439 datalen = revidx[1].offset - offset;
440 if (!pack_to_stdout && p->index_version > 1 &&
441 check_pack_crc(p, &w_curs, offset, datalen, revidx->nr)) {
f616db6a 442 error(_("bad packed object CRC for %s"),
e6a492b7 443 oid_to_hex(&entry->idx.oid));
c9018b03
NTND
444 unuse_pack(&w_curs);
445 return write_no_reuse_object(f, entry, limit, usable_delta);
446 }
447
448 offset += entry->in_pack_header_size;
449 datalen -= entry->in_pack_header_size;
450
451 if (!pack_to_stdout && p->index_version == 1 &&
ac77d0c3 452 check_pack_inflate(p, &w_curs, offset, datalen, entry_size)) {
f616db6a 453 error(_("corrupt packed object for %s"),
e6a492b7 454 oid_to_hex(&entry->idx.oid));
c9018b03
NTND
455 unuse_pack(&w_curs);
456 return write_no_reuse_object(f, entry, limit, usable_delta);
457 }
458
459 if (type == OBJ_OFS_DELTA) {
898eba5e 460 off_t ofs = entry->idx.offset - DELTA(entry)->idx.offset;
c9018b03
NTND
461 unsigned pos = sizeof(dheader) - 1;
462 dheader[pos] = ofs & 127;
463 while (ofs >>= 7)
464 dheader[--pos] = 128 | (--ofs & 127);
41179100 465 if (limit && hdrlen + sizeof(dheader) - pos + datalen + hashsz >= limit) {
c9018b03
NTND
466 unuse_pack(&w_curs);
467 return 0;
468 }
98a3beab 469 hashwrite(f, header, hdrlen);
470 hashwrite(f, dheader + pos, sizeof(dheader) - pos);
c9018b03
NTND
471 hdrlen += sizeof(dheader) - pos;
472 reused_delta++;
473 } else if (type == OBJ_REF_DELTA) {
41179100 474 if (limit && hdrlen + hashsz + datalen + hashsz >= limit) {
c9018b03
NTND
475 unuse_pack(&w_curs);
476 return 0;
477 }
98a3beab 478 hashwrite(f, header, hdrlen);
42c8ce1c 479 hashwrite(f, DELTA(entry)->idx.oid.hash, hashsz);
41179100 480 hdrlen += hashsz;
c9018b03
NTND
481 reused_delta++;
482 } else {
41179100 483 if (limit && hdrlen + datalen + hashsz >= limit) {
c9018b03
NTND
484 unuse_pack(&w_curs);
485 return 0;
486 }
98a3beab 487 hashwrite(f, header, hdrlen);
c9018b03
NTND
488 }
489 copy_pack_data(f, p, &w_curs, offset, datalen);
490 unuse_pack(&w_curs);
491 reused++;
492 return hdrlen + datalen;
493}
494
495/* Return 0 if we will bust the pack-size limit */
98a3beab 496static off_t write_object(struct hashfile *f,
af92a645
NTND
497 struct object_entry *entry,
498 off_t write_offset)
c9018b03 499{
af92a645
NTND
500 unsigned long limit;
501 off_t len;
2c5ef824 502 int usable_delta, to_reuse;
c323ac7d 503
78d1e84f
NP
504 if (!pack_to_stdout)
505 crc32_begin(f);
506
a2430dde 507 /* apply size limit if limited packsize and not first object */
a1e4760f
NP
508 if (!pack_size_limit || !nr_written)
509 limit = 0;
510 else if (pack_size_limit <= write_offset)
511 /*
512 * the earlier object did not fit the limit; avoid
513 * mistaking this with unlimited (i.e. limit = 0).
514 */
515 limit = 1;
516 else
517 limit = pack_size_limit - write_offset;
2c5ef824 518
898eba5e 519 if (!DELTA(entry))
2c5ef824
NP
520 usable_delta = 0; /* no delta */
521 else if (!pack_size_limit)
522 usable_delta = 1; /* unlimited packfile */
898eba5e 523 else if (DELTA(entry)->idx.offset == (off_t)-1)
2c5ef824 524 usable_delta = 0; /* base was written to another pack */
898eba5e 525 else if (DELTA(entry)->idx.offset)
2c5ef824
NP
526 usable_delta = 1; /* base already exists in this pack */
527 else
528 usable_delta = 0; /* base could end up in another pack */
529
a7de7130 530 if (!reuse_object)
fa736f72 531 to_reuse = 0; /* explicit */
43fa44fa 532 else if (!IN_PACK(entry))
ab7cd7bb 533 to_reuse = 0; /* can't reuse what we don't have */
fd9b1bae
NTND
534 else if (oe_type(entry) == OBJ_REF_DELTA ||
535 oe_type(entry) == OBJ_OFS_DELTA)
17b08f2c
DH
536 /* check_object() decided it for us ... */
537 to_reuse = usable_delta;
538 /* ... but pack split may override that */
fd9b1bae 539 else if (oe_type(entry) != entry->in_pack_type)
ab7cd7bb 540 to_reuse = 0; /* pack has delta which is unusable */
898eba5e 541 else if (DELTA(entry))
ab7cd7bb
JH
542 to_reuse = 0; /* we want to pack afresh */
543 else
544 to_reuse = 1; /* we have it in-pack undeltified,
545 * and we do not need to deltify it.
546 */
547
c9018b03
NTND
548 if (!to_reuse)
549 len = write_no_reuse_object(f, entry, limit, usable_delta);
550 else
551 len = write_reuse_object(f, entry, limit, usable_delta);
552 if (!len)
553 return 0;
64bd76b1 554
17b08f2c 555 if (usable_delta)
ab7cd7bb 556 written_delta++;
3f9ac8d2 557 written++;
78d1e84f 558 if (!pack_to_stdout)
aa7e44bf 559 entry->idx.crc32 = crc32_end(f);
c9018b03 560 return len;
c323ac7d
LT
561}
562
f63c79db
JH
563enum write_one_status {
564 WRITE_ONE_SKIP = -1, /* already written */
565 WRITE_ONE_BREAK = 0, /* writing this will bust the limit; not written */
566 WRITE_ONE_WRITTEN = 1, /* normal */
567 WRITE_ONE_RECURSIVE = 2 /* already scheduled to be written */
568};
569
98a3beab 570static enum write_one_status write_one(struct hashfile *f,
f63c79db
JH
571 struct object_entry *e,
572 off_t *offset)
9d5ab962 573{
af92a645 574 off_t size;
f63c79db 575 int recursing;
d7dd0223 576
f63c79db
JH
577 /*
578 * we set offset to 1 (which is an impossible value) to mark
579 * the fact that this object is involved in "write its base
580 * first before writing a deltified object" recursion.
581 */
582 recursing = (e->idx.offset == 1);
583 if (recursing) {
f616db6a 584 warning(_("recursive delta detected for object %s"),
e6a492b7 585 oid_to_hex(&e->idx.oid));
f63c79db
JH
586 return WRITE_ONE_RECURSIVE;
587 } else if (e->idx.offset || e->preferred_base) {
588 /* offset is non zero if object is written already. */
589 return WRITE_ONE_SKIP;
590 }
d7dd0223 591
720c9f7b 592 /* if we are deltified, write out base object first. */
898eba5e 593 if (DELTA(e)) {
f63c79db 594 e->idx.offset = 1; /* now recurse */
898eba5e 595 switch (write_one(f, DELTA(e), offset)) {
f63c79db
JH
596 case WRITE_ONE_RECURSIVE:
597 /* we cannot depend on this one */
898eba5e 598 SET_DELTA(e, NULL);
f63c79db
JH
599 break;
600 default:
601 break;
602 case WRITE_ONE_BREAK:
603 e->idx.offset = recursing;
604 return WRITE_ONE_BREAK;
605 }
606 }
d7dd0223 607
6ed7f25e
NP
608 e->idx.offset = *offset;
609 size = write_object(f, e, *offset);
17b08f2c 610 if (!size) {
f63c79db
JH
611 e->idx.offset = recursing;
612 return WRITE_ONE_BREAK;
17b08f2c 613 }
79814f42 614 written_list[nr_written++] = &e->idx;
d7dd0223
NP
615
616 /* make sure off_t is sufficiently large not to wrap */
c03c8315 617 if (signed_add_overflows(*offset, size))
f616db6a 618 die(_("pack too large for current definition of off_t"));
6ed7f25e 619 *offset += size;
f63c79db 620 return WRITE_ONE_WRITTEN;
9d5ab962
JH
621}
622
d155254c 623static int mark_tagged(const char *path, const struct object_id *oid, int flag,
1b4bb16b
JH
624 void *cb_data)
625{
188960b4 626 struct object_id peeled;
3a37876b 627 struct object_entry *entry = packlist_find(&to_pack, oid);
1b4bb16b
JH
628
629 if (entry)
630 entry->tagged = 1;
b420d909 631 if (!peel_ref(path, &peeled)) {
3a37876b 632 entry = packlist_find(&to_pack, &peeled);
1b4bb16b
JH
633 if (entry)
634 entry->tagged = 1;
635 }
636 return 0;
637}
638
be126818 639static inline void add_to_write_order(struct object_entry **wo,
92bef1a1 640 unsigned int *endp,
1b4bb16b
JH
641 struct object_entry *e)
642{
fe0ac2fb 643 if (e->filled || oe_layer(&to_pack, e) != write_layer)
1b4bb16b
JH
644 return;
645 wo[(*endp)++] = e;
646 e->filled = 1;
647}
648
649static void add_descendants_to_write_order(struct object_entry **wo,
92bef1a1 650 unsigned int *endp,
1b4bb16b
JH
651 struct object_entry *e)
652{
f380872f
DM
653 int add_to_order = 1;
654 while (e) {
655 if (add_to_order) {
656 struct object_entry *s;
657 /* add this node... */
658 add_to_write_order(wo, endp, e);
659 /* all its siblings... */
898eba5e 660 for (s = DELTA_SIBLING(e); s; s = DELTA_SIBLING(s)) {
f380872f
DM
661 add_to_write_order(wo, endp, s);
662 }
663 }
664 /* drop down a level to add left subtree nodes if possible */
898eba5e 665 if (DELTA_CHILD(e)) {
f380872f 666 add_to_order = 1;
898eba5e 667 e = DELTA_CHILD(e);
f380872f
DM
668 } else {
669 add_to_order = 0;
670 /* our sibling might have some children, it is next */
898eba5e
NTND
671 if (DELTA_SIBLING(e)) {
672 e = DELTA_SIBLING(e);
f380872f
DM
673 continue;
674 }
675 /* go back to our parent node */
898eba5e
NTND
676 e = DELTA(e);
677 while (e && !DELTA_SIBLING(e)) {
f380872f
DM
678 /* we're on the right side of a subtree, keep
679 * going up until we can go right again */
898eba5e 680 e = DELTA(e);
f380872f
DM
681 }
682 if (!e) {
683 /* done- we hit our original root node */
684 return;
685 }
686 /* pass it off to sibling at this level */
898eba5e 687 e = DELTA_SIBLING(e);
f380872f
DM
688 }
689 };
1b4bb16b
JH
690}
691
692static void add_family_to_write_order(struct object_entry **wo,
92bef1a1 693 unsigned int *endp,
1b4bb16b
JH
694 struct object_entry *e)
695{
696 struct object_entry *root;
697
898eba5e 698 for (root = e; DELTA(root); root = DELTA(root))
1b4bb16b 699 ; /* nothing */
1b4bb16b
JH
700 add_descendants_to_write_order(wo, endp, root);
701}
702
f64ba53e 703static void compute_layer_order(struct object_entry **wo, unsigned int *wo_end)
1b4bb16b 704{
f64ba53e 705 unsigned int i, last_untagged;
2834bc27 706 struct object_entry *objects = to_pack.objects;
1b4bb16b 707
2834bc27 708 for (i = 0; i < to_pack.nr_objects; i++) {
1b4bb16b
JH
709 if (objects[i].tagged)
710 break;
f64ba53e 711 add_to_write_order(wo, wo_end, &objects[i]);
1b4bb16b 712 }
38d4debb 713 last_untagged = i;
1b4bb16b
JH
714
715 /*
716 * Then fill all the tagged tips.
717 */
2834bc27 718 for (; i < to_pack.nr_objects; i++) {
1b4bb16b 719 if (objects[i].tagged)
f64ba53e 720 add_to_write_order(wo, wo_end, &objects[i]);
1b4bb16b
JH
721 }
722
723 /*
724 * And then all remaining commits and tags.
725 */
2834bc27 726 for (i = last_untagged; i < to_pack.nr_objects; i++) {
fd9b1bae
NTND
727 if (oe_type(&objects[i]) != OBJ_COMMIT &&
728 oe_type(&objects[i]) != OBJ_TAG)
1b4bb16b 729 continue;
f64ba53e 730 add_to_write_order(wo, wo_end, &objects[i]);
1b4bb16b
JH
731 }
732
733 /*
734 * And then all the trees.
735 */
2834bc27 736 for (i = last_untagged; i < to_pack.nr_objects; i++) {
fd9b1bae 737 if (oe_type(&objects[i]) != OBJ_TREE)
1b4bb16b 738 continue;
f64ba53e 739 add_to_write_order(wo, wo_end, &objects[i]);
1b4bb16b
JH
740 }
741
742 /*
743 * Finally all the rest in really tight order
744 */
2834bc27 745 for (i = last_untagged; i < to_pack.nr_objects; i++) {
fe0ac2fb 746 if (!objects[i].filled && oe_layer(&to_pack, &objects[i]) == write_layer)
f64ba53e 747 add_family_to_write_order(wo, wo_end, &objects[i]);
38d4debb 748 }
f64ba53e
CC
749}
750
751static struct object_entry **compute_write_order(void)
752{
28b8a730 753 uint32_t max_layers = 1;
f64ba53e
CC
754 unsigned int i, wo_end;
755
756 struct object_entry **wo;
757 struct object_entry *objects = to_pack.objects;
758
759 for (i = 0; i < to_pack.nr_objects; i++) {
760 objects[i].tagged = 0;
761 objects[i].filled = 0;
762 SET_DELTA_CHILD(&objects[i], NULL);
763 SET_DELTA_SIBLING(&objects[i], NULL);
764 }
765
766 /*
767 * Fully connect delta_child/delta_sibling network.
768 * Make sure delta_sibling is sorted in the original
769 * recency order.
770 */
771 for (i = to_pack.nr_objects; i > 0;) {
772 struct object_entry *e = &objects[--i];
773 if (!DELTA(e))
774 continue;
775 /* Mark me as the first child */
776 e->delta_sibling_idx = DELTA(e)->delta_child_idx;
777 SET_DELTA_CHILD(DELTA(e), e);
38d4debb
DM
778 }
779
f64ba53e
CC
780 /*
781 * Mark objects that are at the tip of tags.
782 */
783 for_each_tag_ref(mark_tagged, NULL);
784
28b8a730
JK
785 if (use_delta_islands)
786 max_layers = compute_pack_layers(&to_pack);
787
f64ba53e
CC
788 ALLOC_ARRAY(wo, to_pack.nr_objects);
789 wo_end = 0;
790
28b8a730
JK
791 for (; write_layer < max_layers; ++write_layer)
792 compute_layer_order(wo, &wo_end);
38d4debb 793
2834bc27 794 if (wo_end != to_pack.nr_objects)
f616db6a
NTND
795 die(_("ordered %u objects, expected %"PRIu32),
796 wo_end, to_pack.nr_objects);
1b4bb16b
JH
797
798 return wo;
799}
800
bb514de3
JK
801
802/*
803 * A reused set of objects. All objects in a chunk have the same
804 * relative position in the original packfile and the generated
805 * packfile.
806 */
807
808static struct reused_chunk {
809 /* The offset of the first object of this chunk in the original
810 * packfile. */
811 off_t original;
812 /* The offset of the first object of this chunk in the generated
813 * packfile minus "original". */
814 off_t difference;
815} *reused_chunks;
816static int reused_chunks_nr;
817static int reused_chunks_alloc;
818
819static void record_reused_object(off_t where, off_t offset)
820{
821 if (reused_chunks_nr && reused_chunks[reused_chunks_nr-1].difference == offset)
822 return;
823
824 ALLOC_GROW(reused_chunks, reused_chunks_nr + 1,
825 reused_chunks_alloc);
826 reused_chunks[reused_chunks_nr].original = where;
827 reused_chunks[reused_chunks_nr].difference = offset;
828 reused_chunks_nr++;
829}
830
831/*
832 * Binary search to find the chunk that "where" is in. Note
833 * that we're not looking for an exact match, just the first
834 * chunk that contains it (which implicitly ends at the start
835 * of the next chunk.
836 */
837static off_t find_reused_offset(off_t where)
6b8fda2d 838{
bb514de3
JK
839 int lo = 0, hi = reused_chunks_nr;
840 while (lo < hi) {
841 int mi = lo + ((hi - lo) / 2);
842 if (where == reused_chunks[mi].original)
843 return reused_chunks[mi].difference;
844 if (where < reused_chunks[mi].original)
845 hi = mi;
846 else
847 lo = mi + 1;
848 }
6b8fda2d 849
bb514de3
JK
850 /*
851 * The first chunk starts at zero, so we can't have gone below
852 * there.
853 */
854 assert(lo);
855 return reused_chunks[lo-1].difference;
856}
6b8fda2d 857
bb514de3
JK
858static void write_reused_pack_one(size_t pos, struct hashfile *out,
859 struct pack_window **w_curs)
6b8fda2d 860{
bb514de3
JK
861 off_t offset, next, cur;
862 enum object_type type;
863 unsigned long size;
6b8fda2d 864
bb514de3
JK
865 offset = reuse_packfile->revindex[pos].offset;
866 next = reuse_packfile->revindex[pos + 1].offset;
6b8fda2d 867
bb514de3 868 record_reused_object(offset, offset - hashfile_total(out));
6b8fda2d 869
bb514de3
JK
870 cur = offset;
871 type = unpack_object_header(reuse_packfile, w_curs, &cur, &size);
872 assert(type >= 0);
6b8fda2d 873
bb514de3
JK
874 if (type == OBJ_OFS_DELTA) {
875 off_t base_offset;
876 off_t fixup;
877
878 unsigned char header[MAX_PACK_OBJECT_HEADER];
879 unsigned len;
880
881 base_offset = get_delta_base(reuse_packfile, w_curs, &cur, type, offset);
882 assert(base_offset != 0);
883
884 /* Convert to REF_DELTA if we must... */
885 if (!allow_ofs_delta) {
886 int base_pos = find_revindex_position(reuse_packfile, base_offset);
f66d4e02
JK
887 struct object_id base_oid;
888
889 nth_packed_object_id(&base_oid, reuse_packfile,
890 reuse_packfile->revindex[base_pos].nr);
bb514de3
JK
891
892 len = encode_in_pack_object_header(header, sizeof(header),
893 OBJ_REF_DELTA, size);
894 hashwrite(out, header, len);
f8cb64e3 895 hashwrite(out, base_oid.hash, the_hash_algo->rawsz);
bb514de3
JK
896 copy_pack_data(out, reuse_packfile, w_curs, cur, next - cur);
897 return;
898 }
6b8fda2d 899
bb514de3
JK
900 /* Otherwise see if we need to rewrite the offset... */
901 fixup = find_reused_offset(offset) -
902 find_reused_offset(base_offset);
903 if (fixup) {
904 unsigned char ofs_header[10];
905 unsigned i, ofs_len;
906 off_t ofs = offset - base_offset - fixup;
6b8fda2d 907
bb514de3
JK
908 len = encode_in_pack_object_header(header, sizeof(header),
909 OBJ_OFS_DELTA, size);
6b8fda2d 910
bb514de3
JK
911 i = sizeof(ofs_header) - 1;
912 ofs_header[i] = ofs & 127;
913 while (ofs >>= 7)
914 ofs_header[--i] = 128 | (--ofs & 127);
6b8fda2d 915
bb514de3 916 ofs_len = sizeof(ofs_header) - i;
6b8fda2d 917
bb514de3
JK
918 hashwrite(out, header, len);
919 hashwrite(out, ofs_header + sizeof(ofs_header) - ofs_len, ofs_len);
920 copy_pack_data(out, reuse_packfile, w_curs, cur, next - cur);
921 return;
922 }
923
924 /* ...otherwise we have no fixup, and can write it verbatim */
925 }
926
927 copy_pack_data(out, reuse_packfile, w_curs, offset, next - offset);
928}
929
930static size_t write_reused_pack_verbatim(struct hashfile *out,
931 struct pack_window **w_curs)
932{
933 size_t pos = 0;
934
935 while (pos < reuse_packfile_bitmap->word_alloc &&
936 reuse_packfile_bitmap->words[pos] == (eword_t)~0)
937 pos++;
938
939 if (pos) {
940 off_t to_write;
941
942 written = (pos * BITS_IN_EWORD);
943 to_write = reuse_packfile->revindex[written].offset
944 - sizeof(struct pack_header);
945
946 /* We're recording one chunk, not one object. */
947 record_reused_object(sizeof(struct pack_header), 0);
948 hashflush(out);
949 copy_pack_data(out, reuse_packfile, w_curs,
950 sizeof(struct pack_header), to_write);
657673f1 951
657673f1 952 display_progress(progress_state, written);
6b8fda2d 953 }
bb514de3
JK
954 return pos;
955}
956
957static void write_reused_pack(struct hashfile *f)
958{
959 size_t i = 0;
960 uint32_t offset;
961 struct pack_window *w_curs = NULL;
962
963 if (allow_ofs_delta)
964 i = write_reused_pack_verbatim(f, &w_curs);
965
966 for (; i < reuse_packfile_bitmap->word_alloc; ++i) {
967 eword_t word = reuse_packfile_bitmap->words[i];
968 size_t pos = (i * BITS_IN_EWORD);
6b8fda2d 969
bb514de3
JK
970 for (offset = 0; offset < BITS_IN_EWORD; ++offset) {
971 if ((word >> offset) == 0)
972 break;
973
974 offset += ewah_bit_ctz64(word >> offset);
975 write_reused_pack_one(pos + offset, f, &w_curs);
976 display_progress(progress_state, ++written);
977 }
978 }
6b8fda2d 979
bb514de3 980 unuse_pack(&w_curs);
6b8fda2d
VM
981}
982
dd4b732d
JT
983static void write_excluded_by_configs(void)
984{
985 struct oidset_iter iter;
986 const struct object_id *oid;
987
988 oidset_iter_init(&excluded_by_config, &iter);
989 while ((oid = oidset_iter_next(&iter))) {
990 struct configured_exclusion *ex =
991 oidmap_get(&configured_exclusions, oid);
992
993 if (!ex)
994 BUG("configured exclusion wasn't configured");
995 write_in_full(1, ex->pack_hash_hex, strlen(ex->pack_hash_hex));
996 write_in_full(1, " ", 1);
997 write_in_full(1, ex->uri, strlen(ex->uri));
998 write_in_full(1, "\n", 1);
999 }
1000}
1001
9cea46cd
EW
1002static const char no_split_warning[] = N_(
1003"disabling bitmap writing, packs are split due to pack.packSizeLimit"
1004);
1005
d01fb92f 1006static void write_pack_file(void)
c323ac7d 1007{
ebe27b13 1008 uint32_t i = 0, j;
98a3beab 1009 struct hashfile *f;
6ed7f25e 1010 off_t offset;
ebe27b13 1011 uint32_t nr_remaining = nr_result;
f746bae8 1012 time_t last_mtime = 0;
1b4bb16b 1013 struct object_entry **write_order;
81a216a5 1014
bcd7954e 1015 if (progress > pack_to_stdout)
754dbc43 1016 progress_state = start_progress(_("Writing objects"), nr_result);
b32fa95f 1017 ALLOC_ARRAY(written_list, to_pack.nr_objects);
1b4bb16b 1018 write_order = compute_write_order();
183bdb2c 1019
ebe27b13 1020 do {
188960b4 1021 struct object_id oid;
7ba502c4 1022 char *pack_tmp_name = NULL;
aa7e44bf 1023
cdf9db3c 1024 if (pack_to_stdout)
98a3beab 1025 f = hashfd_throughput(1, "<stdout>", progress_state);
cdf9db3c
JH
1026 else
1027 f = create_tmp_packfile(&pack_tmp_name);
ebe27b13 1028
c0ad4657 1029 offset = write_pack_header(f, nr_remaining);
6b8fda2d
VM
1030
1031 if (reuse_packfile) {
6b8fda2d 1032 assert(pack_to_stdout);
bb514de3
JK
1033 write_reused_pack(f);
1034 offset = hashfile_total(f);
6b8fda2d
VM
1035 }
1036
ebe27b13 1037 nr_written = 0;
2834bc27 1038 for (; i < to_pack.nr_objects; i++) {
1b4bb16b 1039 struct object_entry *e = write_order[i];
cddec4f8 1040 if (write_one(f, e, &offset) == WRITE_ONE_BREAK)
720c9f7b
NP
1041 break;
1042 display_progress(progress_state, written);
1043 }
c553ca25 1044
ebe27b13
DH
1045 /*
1046 * Did we write the wrong # entries in the header?
1047 * If so, rewrite it like in fast-import
1048 */
54352bb2 1049 if (pack_to_stdout) {
cfe83216 1050 finalize_hashfile(f, oid.hash, CSUM_HASH_IN_STREAM | CSUM_CLOSE);
54352bb2 1051 } else if (nr_written == nr_remaining) {
cfe83216 1052 finalize_hashfile(f, oid.hash, CSUM_HASH_IN_STREAM | CSUM_FSYNC | CSUM_CLOSE);
ebe27b13 1053 } else {
f2af9f5e 1054 int fd = finalize_hashfile(f, oid.hash, 0);
188960b4 1055 fixup_pack_header_footer(fd, oid.hash, pack_tmp_name,
1056 nr_written, oid.hash, offset);
7ba502c4 1057 close(fd);
9cea46cd 1058 if (write_bitmap_index) {
25575015
JK
1059 if (write_bitmap_index != WRITE_BITMAP_QUIET)
1060 warning(_(no_split_warning));
9cea46cd
EW
1061 write_bitmap_index = 0;
1062 }
ebe27b13
DH
1063 }
1064
1065 if (!pack_to_stdout) {
f746bae8 1066 struct stat st;
58892711 1067 struct strbuf tmpname = STRBUF_INIT;
d01fb92f 1068
f746bae8
NP
1069 /*
1070 * Packs are runtime accessed in their mtime
1071 * order since newer packs are more likely to contain
1072 * younger objects. So if we are creating multiple
1073 * packs then we should modify the mtime of later ones
1074 * to preserve this property.
1075 */
0e990530 1076 if (stat(pack_tmp_name, &st) < 0) {
f616db6a 1077 warning_errno(_("failed to stat %s"), pack_tmp_name);
f746bae8
NP
1078 } else if (!last_mtime) {
1079 last_mtime = st.st_mtime;
1080 } else {
1081 struct utimbuf utb;
1082 utb.actime = st.st_atime;
1083 utb.modtime = --last_mtime;
0e990530 1084 if (utime(pack_tmp_name, &utb) < 0)
f616db6a 1085 warning_errno(_("failed utime() on %s"), pack_tmp_name);
f746bae8
NP
1086 }
1087
58892711 1088 strbuf_addf(&tmpname, "%s-", base_name);
7cc8f971
VM
1089
1090 if (write_bitmap_index) {
188960b4 1091 bitmap_writer_set_checksum(oid.hash);
06af3bba
NTND
1092 bitmap_writer_build_type_index(
1093 &to_pack, written_list, nr_written);
7cc8f971
VM
1094 }
1095
58892711 1096 finish_tmp_packfile(&tmpname, pack_tmp_name,
0e990530 1097 written_list, nr_written,
188960b4 1098 &pack_idx_opts, oid.hash);
7cc8f971
VM
1099
1100 if (write_bitmap_index) {
188960b4 1101 strbuf_addf(&tmpname, "%s.bitmap", oid_to_hex(&oid));
7cc8f971
VM
1102
1103 stop_progress(&progress_state);
1104
1105 bitmap_writer_show_progress(progress);
1106 bitmap_writer_reuse_bitmaps(&to_pack);
1107 bitmap_writer_select_commits(indexed_commits, indexed_commits_nr, -1);
1108 bitmap_writer_build(&to_pack);
ae4f07fb 1109 bitmap_writer_finish(written_list, nr_written,
58892711 1110 tmpname.buf, write_bitmap_options);
7cc8f971
VM
1111 write_bitmap_index = 0;
1112 }
1113
58892711 1114 strbuf_release(&tmpname);
7ba502c4 1115 free(pack_tmp_name);
188960b4 1116 puts(oid_to_hex(&oid));
ebe27b13
DH
1117 }
1118
1119 /* mark written objects as written to previous pack */
1120 for (j = 0; j < nr_written; j++) {
79814f42 1121 written_list[j]->offset = (off_t)-1;
ebe27b13
DH
1122 }
1123 nr_remaining -= nr_written;
2834bc27 1124 } while (nr_remaining && i < to_pack.nr_objects);
ebe27b13
DH
1125
1126 free(written_list);
1b4bb16b 1127 free(write_order);
4d4fcc54 1128 stop_progress(&progress_state);
67c08ce1 1129 if (written != nr_result)
f616db6a
NTND
1130 die(_("wrote %"PRIu32" objects while expecting %"PRIu32),
1131 written, nr_result);
9ed87902
JT
1132 trace2_data_intmax("pack-objects", the_repository,
1133 "write_pack_file/wrote", nr_result);
c323ac7d
LT
1134}
1135
a74db82e
JH
1136static int no_try_delta(const char *path)
1137{
2aef63d3 1138 static struct attr_check *check;
a74db82e 1139
2aef63d3
JH
1140 if (!check)
1141 check = attr_check_initl("delta", NULL);
f8adbec9 1142 git_check_attr(the_repository->index, path, check);
2aef63d3 1143 if (ATTR_FALSE(check->items[0].value))
a74db82e
JH
1144 return 1;
1145 return 0;
1146}
1147
ce2bc424
JK
1148/*
1149 * When adding an object, check whether we have already added it
1150 * to our packing list. If so, we can skip. However, if we are
1151 * being asked to excludei t, but the previous mention was to include
1152 * it, make sure to adjust its flags and tweak our numbers accordingly.
1153 *
1154 * As an optimization, we pass out the index position where we would have
1155 * found the item, since that saves us from having to look it up again a
1156 * few lines later when we want to add the new entry.
1157 */
188960b4 1158static int have_duplicate_entry(const struct object_id *oid,
3a37876b 1159 int exclude)
c323ac7d 1160{
c323ac7d 1161 struct object_entry *entry;
29b734e4 1162
92fb0db9
JK
1163 if (reuse_packfile_bitmap &&
1164 bitmap_walk_contains(bitmap_git, reuse_packfile_bitmap, oid))
1165 return 1;
1166
3a37876b 1167 entry = packlist_find(&to_pack, oid);
ce2bc424 1168 if (!entry)
29b734e4 1169 return 0;
ce2bc424
JK
1170
1171 if (exclude) {
1172 if (!entry->preferred_base)
1173 nr_result--;
1174 entry->preferred_base = 1;
29b734e4 1175 }
c323ac7d 1176
ce2bc424
JK
1177 return 1;
1178}
1179
702d1b95
KS
1180static int want_found_object(int exclude, struct packed_git *p)
1181{
1182 if (exclude)
1183 return 1;
1184 if (incremental)
1185 return 0;
1186
1187 /*
1188 * When asked to do --local (do not include an object that appears in a
1189 * pack we borrow from elsewhere) or --honor-pack-keep (do not include
1190 * an object that appears in a pack marked with .keep), finding a pack
1191 * that matches the criteria is sufficient for us to decide to omit it.
1192 * However, even if this pack does not satisfy the criteria, we need to
1193 * make sure no copy of this object appears in _any_ pack that makes us
1194 * to omit the object, so we need to check all the packs.
1195 *
1196 * We can however first check whether these options can possible matter;
1197 * if they do not matter we know we want the object in generated pack.
1198 * Otherwise, we signal "-1" at the end to tell the caller that we do
1199 * not know either way, and it needs to check more packs.
1200 */
ed7e5fc3
NTND
1201 if (!ignore_packed_keep_on_disk &&
1202 !ignore_packed_keep_in_core &&
702d1b95
KS
1203 (!local || !have_non_local_packs))
1204 return 1;
1205
1206 if (local && !p->pack_local)
1207 return 0;
ed7e5fc3
NTND
1208 if (p->pack_local &&
1209 ((ignore_packed_keep_on_disk && p->pack_keep) ||
1210 (ignore_packed_keep_in_core && p->pack_keep_in_core)))
702d1b95
KS
1211 return 0;
1212
1213 /* we don't know yet; keep looking for more packs */
1214 return -1;
1215}
1216
ce2bc424
JK
1217/*
1218 * Check whether we want the object in the pack (e.g., we do not want
1219 * objects found in non-local stores if the "--local" option was used).
1220 *
702d1b95
KS
1221 * If the caller already knows an existing pack it wants to take the object
1222 * from, that is passed in *found_pack and *found_offset; otherwise this
1223 * function finds if there is any pack that has the object and returns the pack
1224 * and its offset in these variables.
ce2bc424 1225 */
188960b4 1226static int want_object_in_pack(const struct object_id *oid,
ce2bc424
JK
1227 int exclude,
1228 struct packed_git **found_pack,
1229 off_t *found_offset)
1230{
702d1b95 1231 int want;
8865859d 1232 struct list_head *pos;
6a22d521 1233 struct multi_pack_index *m;
ce2bc424 1234
6862ebbf 1235 if (!exclude && local && has_loose_object_nonlocal(oid))
daae0625
BC
1236 return 0;
1237
702d1b95
KS
1238 /*
1239 * If we already know the pack object lives in, start checks from that
1240 * pack - in the usual case when neither --local was given nor .keep files
1241 * are present we will determine the answer right now.
1242 */
1243 if (*found_pack) {
1244 want = want_found_object(exclude, *found_pack);
1245 if (want != -1)
1246 return want;
1247 }
6a22d521
DS
1248
1249 for (m = get_multi_pack_index(the_repository); m; m = m->next) {
1250 struct pack_entry e;
64404a24 1251 if (fill_midx_entry(the_repository, oid, &e, m)) {
6a22d521
DS
1252 struct packed_git *p = e.p;
1253 off_t offset;
1254
1255 if (p == *found_pack)
1256 offset = *found_offset;
1257 else
1258 offset = find_pack_entry_one(oid->hash, p);
1259
1260 if (offset) {
1261 if (!*found_pack) {
1262 if (!is_pack_valid(p))
1263 continue;
1264 *found_offset = offset;
1265 *found_pack = p;
1266 }
1267 want = want_found_object(exclude, p);
1268 if (want != -1)
1269 return want;
1270 }
1271 }
1272 }
1273
a80d72db 1274 list_for_each(pos, get_packed_git_mru(the_repository)) {
ec2dd32c 1275 struct packed_git *p = list_entry(pos, struct packed_git, mru);
702d1b95
KS
1276 off_t offset;
1277
1278 if (p == *found_pack)
1279 offset = *found_offset;
1280 else
188960b4 1281 offset = find_pack_entry_one(oid->hash, p);
702d1b95 1282
5c49c116 1283 if (offset) {
ce2bc424 1284 if (!*found_pack) {
319b678a 1285 if (!is_pack_valid(p))
4c080182 1286 continue;
ce2bc424
JK
1287 *found_offset = offset;
1288 *found_pack = p;
64560374 1289 }
702d1b95 1290 want = want_found_object(exclude, p);
e6e24c94 1291 if (!exclude && want > 0)
a80d72db
SB
1292 list_move(&p->mru,
1293 get_packed_git_mru(the_repository));
702d1b95
KS
1294 if (want != -1)
1295 return want;
64560374
LT
1296 }
1297 }
eb019375 1298
dd4b732d
JT
1299 if (uri_protocols.nr) {
1300 struct configured_exclusion *ex =
1301 oidmap_get(&configured_exclusions, oid);
1302 int i;
1303 const char *p;
1304
1305 if (ex) {
1306 for (i = 0; i < uri_protocols.nr; i++) {
1307 if (skip_prefix(ex->uri,
1308 uri_protocols.items[i].string,
1309 &p) &&
1310 *p == ':') {
1311 oidset_insert(&excluded_by_config, oid);
1312 return 0;
1313 }
1314 }
1315 }
1316 }
1317
ce2bc424
JK
1318 return 1;
1319}
1320
188960b4 1321static void create_object_entry(const struct object_id *oid,
ce2bc424
JK
1322 enum object_type type,
1323 uint32_t hash,
1324 int exclude,
1325 int no_try_delta,
ce2bc424
JK
1326 struct packed_git *found_pack,
1327 off_t found_offset)
1328{
1329 struct object_entry *entry;
29b734e4 1330
3a37876b 1331 entry = packlist_alloc(&to_pack, oid);
27225f2e 1332 entry->hash = hash;
fd9b1bae 1333 oe_set_type(entry, type);
29b734e4
NP
1334 if (exclude)
1335 entry->preferred_base = 1;
81a216a5
NP
1336 else
1337 nr_result++;
29b734e4 1338 if (found_pack) {
43fa44fa 1339 oe_set_in_pack(&to_pack, entry, found_pack);
29b734e4
NP
1340 entry->in_pack_offset = found_offset;
1341 }
7a979d99 1342
ce2bc424
JK
1343 entry->no_try_delta = no_try_delta;
1344}
29b734e4 1345
373c67da
JK
1346static const char no_closure_warning[] = N_(
1347"disabling bitmap writing, as some objects are not being packed"
1348);
1349
188960b4 1350static int add_object_entry(const struct object_id *oid, enum object_type type,
ce2bc424
JK
1351 const char *name, int exclude)
1352{
702d1b95
KS
1353 struct packed_git *found_pack = NULL;
1354 off_t found_offset = 0;
7a979d99 1355
5af05043
NTND
1356 display_progress(progress_state, ++nr_seen);
1357
3a37876b 1358 if (have_duplicate_entry(oid, exclude))
ce2bc424 1359 return 0;
a74db82e 1360
188960b4 1361 if (!want_object_in_pack(oid, exclude, &found_pack, &found_offset)) {
373c67da
JK
1362 /* The pack is missing an object, so it will not have closure */
1363 if (write_bitmap_index) {
25575015
JK
1364 if (write_bitmap_index != WRITE_BITMAP_QUIET)
1365 warning(_(no_closure_warning));
373c67da
JK
1366 write_bitmap_index = 0;
1367 }
ce2bc424 1368 return 0;
373c67da 1369 }
29b734e4 1370
188960b4 1371 create_object_entry(oid, type, pack_name_hash(name),
ce2bc424 1372 exclude, name && no_try_delta(name),
3a37876b 1373 found_pack, found_offset);
29b734e4 1374 return 1;
c323ac7d
LT
1375}
1376
20664967 1377static int add_object_entry_from_bitmap(const struct object_id *oid,
6b8fda2d
VM
1378 enum object_type type,
1379 int flags, uint32_t name_hash,
1380 struct packed_git *pack, off_t offset)
1381{
5af05043
NTND
1382 display_progress(progress_state, ++nr_seen);
1383
3a37876b 1384 if (have_duplicate_entry(oid, 0))
6b8fda2d
VM
1385 return 0;
1386
188960b4 1387 if (!want_object_in_pack(oid, 0, &pack, &offset))
702d1b95
KS
1388 return 0;
1389
3a37876b 1390 create_object_entry(oid, type, name_hash, 0, 0, pack, offset);
29b734e4 1391 return 1;
c323ac7d
LT
1392}
1393
5379a5c5 1394struct pbase_tree_cache {
188960b4 1395 struct object_id oid;
5379a5c5
JH
1396 int ref;
1397 int temporary;
1398 void *tree_data;
1399 unsigned long tree_size;
1400};
1401
1402static struct pbase_tree_cache *(pbase_tree_cache[256]);
188960b4 1403static int pbase_tree_cache_ix(const struct object_id *oid)
5379a5c5 1404{
188960b4 1405 return oid->hash[0] % ARRAY_SIZE(pbase_tree_cache);
5379a5c5
JH
1406}
1407static int pbase_tree_cache_ix_incr(int ix)
1408{
1409 return (ix+1) % ARRAY_SIZE(pbase_tree_cache);
1410}
1411
1412static struct pbase_tree {
1413 struct pbase_tree *next;
1414 /* This is a phony "cache" entry; we are not
01689909 1415 * going to evict it or find it through _get()
5379a5c5
JH
1416 * mechanism -- this is for the toplevel node that
1417 * would almost always change with any commit.
1418 */
1419 struct pbase_tree_cache pcache;
1420} *pbase_tree;
1421
188960b4 1422static struct pbase_tree_cache *pbase_tree_get(const struct object_id *oid)
5379a5c5
JH
1423{
1424 struct pbase_tree_cache *ent, *nent;
1425 void *data;
1426 unsigned long size;
21666f1a 1427 enum object_type type;
5379a5c5 1428 int neigh;
188960b4 1429 int my_ix = pbase_tree_cache_ix(oid);
5379a5c5
JH
1430 int available_ix = -1;
1431
1432 /* pbase-tree-cache acts as a limited hashtable.
1433 * your object will be found at your index or within a few
1434 * slots after that slot if it is cached.
1435 */
1436 for (neigh = 0; neigh < 8; neigh++) {
1437 ent = pbase_tree_cache[my_ix];
4a7e27e9 1438 if (ent && oideq(&ent->oid, oid)) {
5379a5c5
JH
1439 ent->ref++;
1440 return ent;
1441 }
1442 else if (((available_ix < 0) && (!ent || !ent->ref)) ||
1443 ((0 <= available_ix) &&
1444 (!ent && pbase_tree_cache[available_ix])))
1445 available_ix = my_ix;
1446 if (!ent)
1447 break;
1448 my_ix = pbase_tree_cache_ix_incr(my_ix);
1449 }
1450
1451 /* Did not find one. Either we got a bogus request or
1452 * we need to read and perhaps cache.
1453 */
b4f5aca4 1454 data = read_object_file(oid, &type, &size);
5379a5c5
JH
1455 if (!data)
1456 return NULL;
21666f1a 1457 if (type != OBJ_TREE) {
5379a5c5
JH
1458 free(data);
1459 return NULL;
1460 }
1461
1462 /* We need to either cache or return a throwaway copy */
1463
1464 if (available_ix < 0)
1465 ent = NULL;
1466 else {
1467 ent = pbase_tree_cache[available_ix];
1468 my_ix = available_ix;
1469 }
1470
1471 if (!ent) {
1472 nent = xmalloc(sizeof(*nent));
1473 nent->temporary = (available_ix < 0);
1474 }
1475 else {
1476 /* evict and reuse */
1477 free(ent->tree_data);
1478 nent = ent;
1479 }
188960b4 1480 oidcpy(&nent->oid, oid);
5379a5c5
JH
1481 nent->tree_data = data;
1482 nent->tree_size = size;
1483 nent->ref = 1;
1484 if (!nent->temporary)
1485 pbase_tree_cache[my_ix] = nent;
1486 return nent;
1487}
1488
1489static void pbase_tree_put(struct pbase_tree_cache *cache)
1490{
1491 if (!cache->temporary) {
1492 cache->ref--;
1493 return;
1494 }
1495 free(cache->tree_data);
1496 free(cache);
1497}
1498
1499static int name_cmp_len(const char *name)
1500{
1501 int i;
1502 for (i = 0; name[i] && name[i] != '\n' && name[i] != '/'; i++)
1503 ;
1504 return i;
1505}
1506
1507static void add_pbase_object(struct tree_desc *tree,
5379a5c5 1508 const char *name,
ce0bd642
LT
1509 int cmplen,
1510 const char *fullname)
3f9ac8d2 1511{
4c068a98 1512 struct name_entry entry;
8a5a8d6c 1513 int cmp;
4c068a98
LT
1514
1515 while (tree_entry(tree,&entry)) {
1211be6b
LT
1516 if (S_ISGITLINK(entry.mode))
1517 continue;
0de16337 1518 cmp = tree_entry_len(&entry) != cmplen ? 1 :
8a5a8d6c
NP
1519 memcmp(name, entry.path, cmplen);
1520 if (cmp > 0)
7a979d99 1521 continue;
8a5a8d6c
NP
1522 if (cmp < 0)
1523 return;
5379a5c5 1524 if (name[cmplen] != '/') {
ea82b2a0 1525 add_object_entry(&entry.oid,
4d1012c3 1526 object_type(entry.mode),
bc32fed5 1527 fullname, 1);
5379a5c5
JH
1528 return;
1529 }
8a5a8d6c 1530 if (S_ISDIR(entry.mode)) {
7a979d99 1531 struct tree_desc sub;
5379a5c5
JH
1532 struct pbase_tree_cache *tree;
1533 const char *down = name+cmplen+1;
1534 int downlen = name_cmp_len(down);
1535
ea82b2a0 1536 tree = pbase_tree_get(&entry.oid);
5379a5c5
JH
1537 if (!tree)
1538 return;
6fda5e51 1539 init_tree_desc(&sub, tree->tree_data, tree->tree_size);
5379a5c5 1540
ce0bd642 1541 add_pbase_object(&sub, down, downlen, fullname);
5379a5c5
JH
1542 pbase_tree_put(tree);
1543 }
1544 }
1545}
1d6b38cc 1546
5379a5c5
JH
1547static unsigned *done_pbase_paths;
1548static int done_pbase_paths_num;
1549static int done_pbase_paths_alloc;
1550static int done_pbase_path_pos(unsigned hash)
1551{
1552 int lo = 0;
1553 int hi = done_pbase_paths_num;
1554 while (lo < hi) {
19716b21 1555 int mi = lo + (hi - lo) / 2;
5379a5c5
JH
1556 if (done_pbase_paths[mi] == hash)
1557 return mi;
1558 if (done_pbase_paths[mi] < hash)
1559 hi = mi;
1560 else
1561 lo = mi + 1;
1562 }
1563 return -lo-1;
1564}
1565
1566static int check_pbase_path(unsigned hash)
1567{
c7b07805 1568 int pos = done_pbase_path_pos(hash);
5379a5c5
JH
1569 if (0 <= pos)
1570 return 1;
1571 pos = -pos - 1;
25e19407
DD
1572 ALLOC_GROW(done_pbase_paths,
1573 done_pbase_paths_num + 1,
1574 done_pbase_paths_alloc);
5379a5c5
JH
1575 done_pbase_paths_num++;
1576 if (pos < done_pbase_paths_num)
f331ab9d
RS
1577 MOVE_ARRAY(done_pbase_paths + pos + 1, done_pbase_paths + pos,
1578 done_pbase_paths_num - pos - 1);
5379a5c5
JH
1579 done_pbase_paths[pos] = hash;
1580 return 0;
1581}
1582
bc32fed5 1583static void add_preferred_base_object(const char *name)
5379a5c5
JH
1584{
1585 struct pbase_tree *it;
8a5a8d6c 1586 int cmplen;
68fb36eb 1587 unsigned hash = pack_name_hash(name);
5379a5c5 1588
8a5a8d6c 1589 if (!num_preferred_base || check_pbase_path(hash))
5379a5c5
JH
1590 return;
1591
8a5a8d6c 1592 cmplen = name_cmp_len(name);
5379a5c5
JH
1593 for (it = pbase_tree; it; it = it->next) {
1594 if (cmplen == 0) {
188960b4 1595 add_object_entry(&it->pcache.oid, OBJ_TREE, NULL, 1);
5379a5c5
JH
1596 }
1597 else {
1598 struct tree_desc tree;
6fda5e51 1599 init_tree_desc(&tree, it->pcache.tree_data, it->pcache.tree_size);
ce0bd642 1600 add_pbase_object(&tree, name, cmplen, name);
7a979d99 1601 }
3f9ac8d2 1602 }
3f9ac8d2
JH
1603}
1604
188960b4 1605static void add_preferred_base(struct object_id *oid)
3f9ac8d2 1606{
5379a5c5
JH
1607 struct pbase_tree *it;
1608 void *data;
1609 unsigned long size;
188960b4 1610 struct object_id tree_oid;
1d6b38cc 1611
8d1d8f83
JH
1612 if (window <= num_preferred_base++)
1613 return;
1614
d3b4705a
NTND
1615 data = read_object_with_reference(the_repository, oid,
1616 tree_type, &size, &tree_oid);
5379a5c5 1617 if (!data)
7a979d99 1618 return;
5379a5c5
JH
1619
1620 for (it = pbase_tree; it; it = it->next) {
4a7e27e9 1621 if (oideq(&it->pcache.oid, &tree_oid)) {
5379a5c5
JH
1622 free(data);
1623 return;
1624 }
1625 }
1626
1627 it = xcalloc(1, sizeof(*it));
1628 it->next = pbase_tree;
1629 pbase_tree = it;
1630
188960b4 1631 oidcpy(&it->pcache.oid, &tree_oid);
5379a5c5
JH
1632 it->pcache.tree_data = data;
1633 it->pcache.tree_size = size;
3f9ac8d2
JH
1634}
1635
0ef95f72
NP
1636static void cleanup_preferred_base(void)
1637{
1638 struct pbase_tree *it;
1639 unsigned i;
1640
1641 it = pbase_tree;
1642 pbase_tree = NULL;
1643 while (it) {
095b3b2c
BW
1644 struct pbase_tree *tmp = it;
1645 it = tmp->next;
1646 free(tmp->pcache.tree_data);
1647 free(tmp);
0ef95f72
NP
1648 }
1649
1650 for (i = 0; i < ARRAY_SIZE(pbase_tree_cache); i++) {
1651 if (!pbase_tree_cache[i])
1652 continue;
1653 free(pbase_tree_cache[i]->tree_data);
6a83d902 1654 FREE_AND_NULL(pbase_tree_cache[i]);
0ef95f72
NP
1655 }
1656
6a83d902 1657 FREE_AND_NULL(done_pbase_paths);
0ef95f72
NP
1658 done_pbase_paths_num = done_pbase_paths_alloc = 0;
1659}
1660
2fa233a5
JK
1661/*
1662 * Return 1 iff the object specified by "delta" can be sent
1663 * literally as a delta against the base in "base_sha1". If
1664 * so, then *base_out will point to the entry in our packing
1665 * list, or NULL if we must use the external-base list.
1666 *
1667 * Depth value does not matter - find_deltas() will
1668 * never consider reused delta as the base object to
1669 * deltify other objects against, in order to avoid
1670 * circular deltas.
1671 */
3f83fd5e 1672static int can_reuse_delta(const struct object_id *base_oid,
2fa233a5
JK
1673 struct object_entry *delta,
1674 struct object_entry **base_out)
1675{
1676 struct object_entry *base;
3df28cae 1677
2fa233a5
JK
1678 /*
1679 * First see if we're already sending the base (or it's explicitly in
1680 * our "excluded" list).
1681 */
3f83fd5e 1682 base = packlist_find(&to_pack, base_oid);
2fa233a5
JK
1683 if (base) {
1684 if (!in_same_island(&delta->idx.oid, &base->idx.oid))
1685 return 0;
1686 *base_out = base;
1687 return 1;
1688 }
1689
1690 /*
1691 * Otherwise, reachability bitmaps may tell us if the receiver has it,
1692 * even if it was buried too deep in history to make it into the
1693 * packing list.
1694 */
3f83fd5e 1695 if (thin && bitmap_has_oid_in_uninteresting(bitmap_git, base_oid)) {
2fa233a5 1696 if (use_delta_islands) {
3f83fd5e 1697 if (!in_same_island(&delta->idx.oid, base_oid))
2fa233a5
JK
1698 return 0;
1699 }
1700 *base_out = NULL;
1701 return 1;
1702 }
1703
1704 return 0;
1705}
1706
c323ac7d
LT
1707static void check_object(struct object_entry *entry)
1708{
ac77d0c3
NTND
1709 unsigned long canonical_size;
1710
43fa44fa
NTND
1711 if (IN_PACK(entry)) {
1712 struct packed_git *p = IN_PACK(entry);
03e79c88 1713 struct pack_window *w_curs = NULL;
3f83fd5e
JK
1714 int have_base = 0;
1715 struct object_id base_ref;
5c49c116
NP
1716 struct object_entry *base_entry;
1717 unsigned long used, used_0;
ef49a7a0 1718 unsigned long avail;
5c49c116
NP
1719 off_t ofs;
1720 unsigned char *buf, c;
fd9b1bae 1721 enum object_type type;
27a7d067 1722 unsigned long in_pack_size;
780e6e73 1723
6777a59f 1724 buf = use_pack(p, &w_curs, entry->in_pack_offset, &avail);
ab7cd7bb 1725
5c49c116 1726 /*
fa736f72
NP
1727 * We want in_pack_type even if we do not reuse delta
1728 * since non-delta representations could still be reused.
ab7cd7bb 1729 */
09ded04b 1730 used = unpack_object_header_buffer(buf, avail,
fd9b1bae 1731 &type,
27a7d067 1732 &in_pack_size);
03d66015
NP
1733 if (used == 0)
1734 goto give_up;
ab7cd7bb 1735
fd9b1bae
NTND
1736 if (type < 0)
1737 BUG("invalid type %d", type);
1738 entry->in_pack_type = type;
1739
5c49c116
NP
1740 /*
1741 * Determine if this is a delta and if so whether we can
1742 * reuse it or not. Otherwise let's find out as cheaply as
1743 * possible what the actual type and size for this object is.
3f9ac8d2 1744 */
5c49c116
NP
1745 switch (entry->in_pack_type) {
1746 default:
1747 /* Not a delta hence we've already got all we need. */
fd9b1bae 1748 oe_set_type(entry, entry->in_pack_type);
ac77d0c3 1749 SET_SIZE(entry, in_pack_size);
5c49c116 1750 entry->in_pack_header_size = used;
fd9b1bae 1751 if (oe_type(entry) < OBJ_COMMIT || oe_type(entry) > OBJ_BLOB)
03d66015 1752 goto give_up;
5c49c116
NP
1753 unuse_pack(&w_curs);
1754 return;
1755 case OBJ_REF_DELTA:
3f83fd5e
JK
1756 if (reuse_delta && !entry->preferred_base) {
1757 oidread(&base_ref,
1758 use_pack(p, &w_curs,
1759 entry->in_pack_offset + used,
1760 NULL));
1761 have_base = 1;
1762 }
41179100 1763 entry->in_pack_header_size = used + the_hash_algo->rawsz;
5c49c116
NP
1764 break;
1765 case OBJ_OFS_DELTA:
1766 buf = use_pack(p, &w_curs,
1767 entry->in_pack_offset + used, NULL);
1768 used_0 = 0;
1769 c = buf[used_0++];
1770 ofs = c & 127;
1771 while (c & 128) {
1772 ofs += 1;
03d66015 1773 if (!ofs || MSB(ofs, 7)) {
f616db6a 1774 error(_("delta base offset overflow in pack for %s"),
e6a492b7 1775 oid_to_hex(&entry->idx.oid));
03d66015
NP
1776 goto give_up;
1777 }
5c49c116
NP
1778 c = buf[used_0++];
1779 ofs = (ofs << 7) + (c & 127);
780e6e73 1780 }
5c49c116 1781 ofs = entry->in_pack_offset - ofs;
03d66015 1782 if (ofs <= 0 || ofs >= entry->in_pack_offset) {
f616db6a 1783 error(_("delta base offset out of bound for %s"),
e6a492b7 1784 oid_to_hex(&entry->idx.oid));
03d66015
NP
1785 goto give_up;
1786 }
a7de7130 1787 if (reuse_delta && !entry->preferred_base) {
3449f8c4
NP
1788 struct revindex_entry *revidx;
1789 revidx = find_pack_revindex(p, ofs);
08698b1e
NP
1790 if (!revidx)
1791 goto give_up;
3f83fd5e
JK
1792 if (!nth_packed_object_id(&base_ref, p, revidx->nr))
1793 have_base = 1;
3449f8c4 1794 }
5c49c116
NP
1795 entry->in_pack_header_size = used + used_0;
1796 break;
780e6e73 1797 }
780e6e73 1798
3f83fd5e
JK
1799 if (have_base &&
1800 can_reuse_delta(&base_ref, entry, &base_entry)) {
fd9b1bae 1801 oe_set_type(entry, entry->in_pack_type);
ac77d0c3 1802 SET_SIZE(entry, in_pack_size); /* delta size */
0aca34e8 1803 SET_DELTA_SIZE(entry, in_pack_size);
6a1e32d5
JK
1804
1805 if (base_entry) {
1806 SET_DELTA(entry, base_entry);
1807 entry->delta_sibling_idx = base_entry->delta_child_idx;
1808 SET_DELTA_CHILD(base_entry, entry);
1809 } else {
a93c141d 1810 SET_DELTA_EXT(entry, &base_ref);
6a1e32d5
JK
1811 }
1812
5c49c116
NP
1813 unuse_pack(&w_curs);
1814 return;
1815 }
ab7cd7bb 1816
fd9b1bae 1817 if (oe_type(entry)) {
27a7d067
NTND
1818 off_t delta_pos;
1819
5c49c116
NP
1820 /*
1821 * This must be a delta and we already know what the
1822 * final object type is. Let's extract the actual
1823 * object size from the delta header.
1824 */
27a7d067 1825 delta_pos = entry->in_pack_offset + entry->in_pack_header_size;
ac77d0c3
NTND
1826 canonical_size = get_size_from_delta(p, &w_curs, delta_pos);
1827 if (canonical_size == 0)
03d66015 1828 goto give_up;
ac77d0c3 1829 SET_SIZE(entry, canonical_size);
5c49c116 1830 unuse_pack(&w_curs);
3f9ac8d2
JH
1831 return;
1832 }
5c49c116
NP
1833
1834 /*
1835 * No choice but to fall back to the recursive delta walk
c93206b4 1836 * with oid_object_info() to find about the object type
5c49c116
NP
1837 * at this point...
1838 */
03d66015 1839 give_up:
5c49c116 1840 unuse_pack(&w_curs);
36e4d74a 1841 }
3f9ac8d2 1842
ad635e82
JH
1843 oe_set_type(entry,
1844 oid_object_info(the_repository, &entry->idx.oid, &canonical_size));
ac77d0c3
NTND
1845 if (entry->type_valid) {
1846 SET_SIZE(entry, canonical_size);
1847 } else {
1848 /*
1849 * Bad object type is checked in prepare_pack(). This is
1850 * to permit a missing preferred base object to be ignored
1851 * as a preferred base. Doing so can result in a larger
1852 * pack file, but the transfer will still take place.
1853 */
1854 }
3f9ac8d2
JH
1855}
1856
5c49c116
NP
1857static int pack_offset_sort(const void *_a, const void *_b)
1858{
1859 const struct object_entry *a = *(struct object_entry **)_a;
1860 const struct object_entry *b = *(struct object_entry **)_b;
43fa44fa
NTND
1861 const struct packed_git *a_in_pack = IN_PACK(a);
1862 const struct packed_git *b_in_pack = IN_PACK(b);
5c49c116
NP
1863
1864 /* avoid filesystem trashing with loose objects */
43fa44fa 1865 if (!a_in_pack && !b_in_pack)
e6a492b7 1866 return oidcmp(&a->idx.oid, &b->idx.oid);
5c49c116 1867
43fa44fa 1868 if (a_in_pack < b_in_pack)
5c49c116 1869 return -1;
43fa44fa 1870 if (a_in_pack > b_in_pack)
5c49c116
NP
1871 return 1;
1872 return a->in_pack_offset < b->in_pack_offset ? -1 :
1873 (a->in_pack_offset > b->in_pack_offset);
1874}
1875
4cf2143e
JK
1876/*
1877 * Drop an on-disk delta we were planning to reuse. Naively, this would
1878 * just involve blanking out the "delta" field, but we have to deal
1879 * with some extra book-keeping:
1880 *
1881 * 1. Removing ourselves from the delta_sibling linked list.
1882 *
1883 * 2. Updating our size/type to the non-delta representation. These were
1884 * either not recorded initially (size) or overwritten with the delta type
1885 * (type) when check_object() decided to reuse the delta.
7dbabbbe
JK
1886 *
1887 * 3. Resetting our delta depth, as we are now a base object.
4cf2143e
JK
1888 */
1889static void drop_reused_delta(struct object_entry *entry)
1890{
898eba5e 1891 unsigned *idx = &to_pack.objects[entry->delta_idx - 1].delta_child_idx;
4cf2143e 1892 struct object_info oi = OBJECT_INFO_INIT;
fd9b1bae 1893 enum object_type type;
ac77d0c3 1894 unsigned long size;
4cf2143e 1895
898eba5e
NTND
1896 while (*idx) {
1897 struct object_entry *oe = &to_pack.objects[*idx - 1];
4cf2143e 1898
898eba5e
NTND
1899 if (oe == entry)
1900 *idx = oe->delta_sibling_idx;
4cf2143e 1901 else
898eba5e 1902 idx = &oe->delta_sibling_idx;
4cf2143e 1903 }
898eba5e 1904 SET_DELTA(entry, NULL);
7dbabbbe 1905 entry->depth = 0;
4cf2143e 1906
ac77d0c3 1907 oi.sizep = &size;
fd9b1bae 1908 oi.typep = &type;
ad635e82 1909 if (packed_object_info(the_repository, IN_PACK(entry), entry->in_pack_offset, &oi) < 0) {
4cf2143e
JK
1910 /*
1911 * We failed to get the info from this pack for some reason;
c93206b4 1912 * fall back to oid_object_info, which may find another copy.
fd9b1bae 1913 * And if that fails, the error will be recorded in oe_type(entry)
4cf2143e
JK
1914 * and dealt with in prepare_pack().
1915 */
ad635e82
JH
1916 oe_set_type(entry,
1917 oid_object_info(the_repository, &entry->idx.oid, &size));
fd9b1bae
NTND
1918 } else {
1919 oe_set_type(entry, type);
4cf2143e 1920 }
ac77d0c3 1921 SET_SIZE(entry, size);
4cf2143e
JK
1922}
1923
1924/*
1925 * Follow the chain of deltas from this entry onward, throwing away any links
1926 * that cause us to hit a cycle (as determined by the DFS state flags in
1927 * the entries).
7dbabbbe
JK
1928 *
1929 * We also detect too-long reused chains that would violate our --depth
1930 * limit.
4cf2143e
JK
1931 */
1932static void break_delta_chains(struct object_entry *entry)
1933{
42b766d7
JK
1934 /*
1935 * The actual depth of each object we will write is stored as an int,
1936 * as it cannot exceed our int "depth" limit. But before we break
1937 * changes based no that limit, we may potentially go as deep as the
1938 * number of objects, which is elsewhere bounded to a uint32_t.
1939 */
1940 uint32_t total_depth;
1941 struct object_entry *cur, *next;
1942
1943 for (cur = entry, total_depth = 0;
1944 cur;
898eba5e 1945 cur = DELTA(cur), total_depth++) {
42b766d7
JK
1946 if (cur->dfs_state == DFS_DONE) {
1947 /*
1948 * We've already seen this object and know it isn't
1949 * part of a cycle. We do need to append its depth
1950 * to our count.
1951 */
1952 total_depth += cur->depth;
1953 break;
1954 }
4cf2143e 1955
4cf2143e 1956 /*
42b766d7
JK
1957 * We break cycles before looping, so an ACTIVE state (or any
1958 * other cruft which made its way into the state variable)
1959 * is a bug.
4cf2143e 1960 */
42b766d7 1961 if (cur->dfs_state != DFS_NONE)
033abf97 1962 BUG("confusing delta dfs state in first pass: %d",
42b766d7 1963 cur->dfs_state);
4cf2143e 1964
4cf2143e 1965 /*
42b766d7
JK
1966 * Now we know this is the first time we've seen the object. If
1967 * it's not a delta, we're done traversing, but we'll mark it
1968 * done to save time on future traversals.
4cf2143e 1969 */
898eba5e 1970 if (!DELTA(cur)) {
42b766d7
JK
1971 cur->dfs_state = DFS_DONE;
1972 break;
1973 }
4cf2143e 1974
4cf2143e 1975 /*
42b766d7
JK
1976 * Mark ourselves as active and see if the next step causes
1977 * us to cycle to another active object. It's important to do
1978 * this _before_ we loop, because it impacts where we make the
1979 * cut, and thus how our total_depth counter works.
1980 * E.g., We may see a partial loop like:
1981 *
1982 * A -> B -> C -> D -> B
1983 *
1984 * Cutting B->C breaks the cycle. But now the depth of A is
1985 * only 1, and our total_depth counter is at 3. The size of the
1986 * error is always one less than the size of the cycle we
1987 * broke. Commits C and D were "lost" from A's chain.
1988 *
1989 * If we instead cut D->B, then the depth of A is correct at 3.
1990 * We keep all commits in the chain that we examined.
4cf2143e 1991 */
42b766d7 1992 cur->dfs_state = DFS_ACTIVE;
898eba5e 1993 if (DELTA(cur)->dfs_state == DFS_ACTIVE) {
42b766d7
JK
1994 drop_reused_delta(cur);
1995 cur->dfs_state = DFS_DONE;
1996 break;
7dbabbbe 1997 }
42b766d7 1998 }
7dbabbbe 1999
42b766d7
JK
2000 /*
2001 * And now that we've gone all the way to the bottom of the chain, we
2002 * need to clear the active flags and set the depth fields as
2003 * appropriate. Unlike the loop above, which can quit when it drops a
2004 * delta, we need to keep going to look for more depth cuts. So we need
2005 * an extra "next" pointer to keep going after we reset cur->delta.
2006 */
2007 for (cur = entry; cur; cur = next) {
898eba5e 2008 next = DELTA(cur);
4cf2143e 2009
42b766d7
JK
2010 /*
2011 * We should have a chain of zero or more ACTIVE states down to
2012 * a final DONE. We can quit after the DONE, because either it
2013 * has no bases, or we've already handled them in a previous
2014 * call.
2015 */
2016 if (cur->dfs_state == DFS_DONE)
2017 break;
2018 else if (cur->dfs_state != DFS_ACTIVE)
033abf97 2019 BUG("confusing delta dfs state in second pass: %d",
42b766d7 2020 cur->dfs_state);
4cf2143e 2021
4cf2143e 2022 /*
42b766d7
JK
2023 * If the total_depth is more than depth, then we need to snip
2024 * the chain into two or more smaller chains that don't exceed
2025 * the maximum depth. Most of the resulting chains will contain
2026 * (depth + 1) entries (i.e., depth deltas plus one base), and
2027 * the last chain (i.e., the one containing entry) will contain
2028 * whatever entries are left over, namely
2029 * (total_depth % (depth + 1)) of them.
2030 *
2031 * Since we are iterating towards decreasing depth, we need to
2032 * decrement total_depth as we go, and we need to write to the
2033 * entry what its final depth will be after all of the
2034 * snipping. Since we're snipping into chains of length (depth
2035 * + 1) entries, the final depth of an entry will be its
2036 * original depth modulo (depth + 1). Any time we encounter an
2037 * entry whose final depth is supposed to be zero, we snip it
2038 * from its delta base, thereby making it so.
4cf2143e 2039 */
42b766d7
JK
2040 cur->depth = (total_depth--) % (depth + 1);
2041 if (!cur->depth)
2042 drop_reused_delta(cur);
2043
2044 cur->dfs_state = DFS_DONE;
4cf2143e
JK
2045 }
2046}
2047
c323ac7d
LT
2048static void get_object_details(void)
2049{
7cadf491 2050 uint32_t i;
5c49c116
NP
2051 struct object_entry **sorted_by_offset;
2052
5af05043
NTND
2053 if (progress)
2054 progress_state = start_progress(_("Counting objects"),
2055 to_pack.nr_objects);
2056
2834bc27
VM
2057 sorted_by_offset = xcalloc(to_pack.nr_objects, sizeof(struct object_entry *));
2058 for (i = 0; i < to_pack.nr_objects; i++)
2059 sorted_by_offset[i] = to_pack.objects + i;
9ed0d8d6 2060 QSORT(sorted_by_offset, to_pack.nr_objects, pack_offset_sort);
c323ac7d 2061
2834bc27 2062 for (i = 0; i < to_pack.nr_objects; i++) {
15366280
JH
2063 struct object_entry *entry = sorted_by_offset[i];
2064 check_object(entry);
ac77d0c3
NTND
2065 if (entry->type_valid &&
2066 oe_size_greater_than(&to_pack, entry, big_file_threshold))
15366280 2067 entry->no_try_delta = 1;
5af05043 2068 display_progress(progress_state, i + 1);
15366280 2069 }
5af05043 2070 stop_progress(&progress_state);
3449f8c4 2071
4cf2143e
JK
2072 /*
2073 * This must happen in a second pass, since we rely on the delta
2074 * information for the whole list being completed.
2075 */
2076 for (i = 0; i < to_pack.nr_objects; i++)
2077 break_delta_chains(&to_pack.objects[i]);
2078
5c49c116 2079 free(sorted_by_offset);
c323ac7d
LT
2080}
2081
b904166c
NP
2082/*
2083 * We search for deltas in a list sorted by type, by filename hash, and then
2084 * by size, so that we see progressively smaller and smaller files.
2085 * That's because we prefer deltas to be from the bigger file
2086 * to the smaller -- deletes are potentially cheaper, but perhaps
2087 * more importantly, the bigger file is likely the more recent
2088 * one. The deepest deltas are therefore the oldest objects which are
2089 * less susceptible to be accessed often.
2090 */
9668cf59 2091static int type_size_sort(const void *_a, const void *_b)
c323ac7d 2092{
9668cf59
NP
2093 const struct object_entry *a = *(struct object_entry **)_a;
2094 const struct object_entry *b = *(struct object_entry **)_b;
33de80b1
SL
2095 const enum object_type a_type = oe_type(a);
2096 const enum object_type b_type = oe_type(b);
2097 const unsigned long a_size = SIZE(a);
2098 const unsigned long b_size = SIZE(b);
9668cf59 2099
fd9b1bae 2100 if (a_type > b_type)
27225f2e 2101 return -1;
fd9b1bae 2102 if (a_type < b_type)
27225f2e 2103 return 1;
b904166c 2104 if (a->hash > b->hash)
7a979d99 2105 return -1;
b904166c 2106 if (a->hash < b->hash)
7a979d99 2107 return 1;
b904166c 2108 if (a->preferred_base > b->preferred_base)
c323ac7d 2109 return -1;
b904166c
NP
2110 if (a->preferred_base < b->preferred_base)
2111 return 1;
28b8a730 2112 if (use_delta_islands) {
33de80b1 2113 const int island_cmp = island_delta_cmp(&a->idx.oid, &b->idx.oid);
28b8a730
JK
2114 if (island_cmp)
2115 return island_cmp;
2116 }
ac77d0c3 2117 if (a_size > b_size)
b904166c 2118 return -1;
ac77d0c3 2119 if (a_size < b_size)
c323ac7d 2120 return 1;
b904166c 2121 return a < b ? -1 : (a > b); /* newest first */
c323ac7d
LT
2122}
2123
2124struct unpacked {
2125 struct object_entry *entry;
2126 void *data;
f6c7081a 2127 struct delta_index *index;
5a235b5e 2128 unsigned depth;
c323ac7d
LT
2129};
2130
d250626c
NP
2131static int delta_cacheable(unsigned long src_size, unsigned long trg_size,
2132 unsigned long delta_size)
074b2eea
MK
2133{
2134 if (max_delta_cache_size && delta_cache_size + delta_size > max_delta_cache_size)
2135 return 0;
2136
e3dfddb3
MK
2137 if (delta_size < cache_max_small_delta_size)
2138 return 1;
2139
074b2eea
MK
2140 /* cache delta, if objects are large enough compared to delta size */
2141 if ((src_size >> 20) + (trg_size >> 21) > (delta_size >> 10))
2142 return 1;
2143
2144 return 0;
2145}
2146
ffbd51cc 2147/* Protect delta_cache_size */
44626dc7 2148static pthread_mutex_t cache_mutex;
3c701839
NP
2149#define cache_lock() pthread_mutex_lock(&cache_mutex)
2150#define cache_unlock() pthread_mutex_unlock(&cache_mutex)
2151
ffbd51cc
NTND
2152/*
2153 * Protect object list partitioning (e.g. struct thread_param) and
2154 * progress_state
2155 */
44626dc7 2156static pthread_mutex_t progress_mutex;
8ecce684
NP
2157#define progress_lock() pthread_mutex_lock(&progress_mutex)
2158#define progress_unlock() pthread_mutex_unlock(&progress_mutex)
2159
ffbd51cc
NTND
2160/*
2161 * Access to struct object_entry is unprotected since each thread owns
2162 * a portion of the main object list. Just don't access object entries
2163 * ahead in the list because they can be stolen and would need
2164 * progress_mutex for protection.
2165 */
8ecce684 2166
ac77d0c3
NTND
2167/*
2168 * Return the size of the object without doing any delta
2169 * reconstruction (so non-deltas are true object sizes, but deltas
2170 * return the size of the delta data).
2171 */
2172unsigned long oe_get_size_slow(struct packing_data *pack,
2173 const struct object_entry *e)
2174{
2175 struct packed_git *p;
2176 struct pack_window *w_curs;
2177 unsigned char *buf;
2178 enum object_type type;
2179 unsigned long used, avail, size;
2180
2181 if (e->type_ != OBJ_OFS_DELTA && e->type_ != OBJ_REF_DELTA) {
edb673cf 2182 packing_data_lock(&to_pack);
ad635e82 2183 if (oid_object_info(the_repository, &e->idx.oid, &size) < 0)
ac77d0c3
NTND
2184 die(_("unable to get size of %s"),
2185 oid_to_hex(&e->idx.oid));
edb673cf 2186 packing_data_unlock(&to_pack);
ac77d0c3
NTND
2187 return size;
2188 }
2189
2190 p = oe_in_pack(pack, e);
2191 if (!p)
2192 BUG("when e->type is a delta, it must belong to a pack");
2193
edb673cf 2194 packing_data_lock(&to_pack);
ac77d0c3
NTND
2195 w_curs = NULL;
2196 buf = use_pack(p, &w_curs, e->in_pack_offset, &avail);
2197 used = unpack_object_header_buffer(buf, avail, &type, &size);
2198 if (used == 0)
2199 die(_("unable to parse object header of %s"),
2200 oid_to_hex(&e->idx.oid));
2201
2202 unuse_pack(&w_curs);
edb673cf 2203 packing_data_unlock(&to_pack);
ac77d0c3
NTND
2204 return size;
2205}
2206
f6c7081a 2207static int try_delta(struct unpacked *trg, struct unpacked *src,
ef0316fc 2208 unsigned max_depth, unsigned long *mem_usage)
c323ac7d 2209{
f6c7081a
NP
2210 struct object_entry *trg_entry = trg->entry;
2211 struct object_entry *src_entry = src->entry;
560b25a8 2212 unsigned long trg_size, src_size, delta_size, sizediff, max_size, sz;
c83f032e 2213 unsigned ref_depth;
21666f1a 2214 enum object_type type;
c323ac7d
LT
2215 void *delta_buf;
2216
2217 /* Don't bother doing diffs between different types */
fd9b1bae 2218 if (oe_type(trg_entry) != oe_type(src_entry))
c323ac7d
LT
2219 return -1;
2220
51d1e83f 2221 /*
15f07e06
JK
2222 * We do not bother to try a delta that we discarded on an
2223 * earlier try, but only when reusing delta data. Note that
2224 * src_entry that is marked as the preferred_base should always
2225 * be considered, as even if we produce a suboptimal delta against
2226 * it, we will still save the transfer cost, as we already know
2227 * the other side has it and we won't send src_entry at all.
51d1e83f 2228 */
43fa44fa
NTND
2229 if (reuse_delta && IN_PACK(trg_entry) &&
2230 IN_PACK(trg_entry) == IN_PACK(src_entry) &&
15f07e06 2231 !src_entry->preferred_base &&
e9195b58
JH
2232 trg_entry->in_pack_type != OBJ_REF_DELTA &&
2233 trg_entry->in_pack_type != OBJ_OFS_DELTA)
51d1e83f
LT
2234 return 0;
2235
898b14ce 2236 /* Let's not bust the allowed depth. */
5a235b5e 2237 if (src->depth >= max_depth)
d116a45a 2238 return 0;
c323ac7d 2239
c3b06a69 2240 /* Now some size filtering heuristics. */
ac77d0c3 2241 trg_size = SIZE(trg_entry);
898eba5e 2242 if (!DELTA(trg_entry)) {
41179100 2243 max_size = trg_size/2 - the_hash_algo->rawsz;
c83f032e
NP
2244 ref_depth = 1;
2245 } else {
0aca34e8 2246 max_size = DELTA_SIZE(trg_entry);
5a235b5e 2247 ref_depth = trg->depth;
c83f032e 2248 }
720fe22d 2249 max_size = (uint64_t)max_size * (max_depth - src->depth) /
c83f032e 2250 (max_depth - ref_depth + 1);
c3b06a69
NP
2251 if (max_size == 0)
2252 return 0;
ac77d0c3 2253 src_size = SIZE(src_entry);
560b25a8 2254 sizediff = src_size < trg_size ? trg_size - src_size : 0;
27225f2e 2255 if (sizediff >= max_size)
f527cb8c 2256 return 0;
a1dab41a
BD
2257 if (trg_size < src_size / 32)
2258 return 0;
f6c7081a 2259
28b8a730
JK
2260 if (!in_same_island(&trg->entry->idx.oid, &src->entry->idx.oid))
2261 return 0;
2262
560b25a8
NP
2263 /* Load data if not already done */
2264 if (!trg->data) {
edb673cf 2265 packing_data_lock(&to_pack);
b4f5aca4 2266 trg->data = read_object_file(&trg_entry->idx.oid, &type, &sz);
edb673cf 2267 packing_data_unlock(&to_pack);
2e3404c3 2268 if (!trg->data)
f616db6a 2269 die(_("object %s cannot be read"),
e6a492b7 2270 oid_to_hex(&trg_entry->idx.oid));
560b25a8 2271 if (sz != trg_size)
ca473cef
TB
2272 die(_("object %s inconsistent object length (%"PRIuMAX" vs %"PRIuMAX")"),
2273 oid_to_hex(&trg_entry->idx.oid), (uintmax_t)sz,
2274 (uintmax_t)trg_size);
ef0316fc 2275 *mem_usage += sz;
560b25a8
NP
2276 }
2277 if (!src->data) {
edb673cf 2278 packing_data_lock(&to_pack);
b4f5aca4 2279 src->data = read_object_file(&src_entry->idx.oid, &type, &sz);
edb673cf 2280 packing_data_unlock(&to_pack);
71064a95
NP
2281 if (!src->data) {
2282 if (src_entry->preferred_base) {
2283 static int warned = 0;
2284 if (!warned++)
f616db6a 2285 warning(_("object %s cannot be read"),
e6a492b7 2286 oid_to_hex(&src_entry->idx.oid));
71064a95
NP
2287 /*
2288 * Those objects are not included in the
2289 * resulting pack. Be resilient and ignore
2290 * them if they can't be read, in case the
2291 * pack could be created nevertheless.
2292 */
2293 return 0;
2294 }
f616db6a 2295 die(_("object %s cannot be read"),
e6a492b7 2296 oid_to_hex(&src_entry->idx.oid));
71064a95 2297 }
560b25a8 2298 if (sz != src_size)
ca473cef
TB
2299 die(_("object %s inconsistent object length (%"PRIuMAX" vs %"PRIuMAX")"),
2300 oid_to_hex(&src_entry->idx.oid), (uintmax_t)sz,
2301 (uintmax_t)src_size);
ef0316fc 2302 *mem_usage += sz;
560b25a8
NP
2303 }
2304 if (!src->index) {
2305 src->index = create_delta_index(src->data, src_size);
a588d88a
MK
2306 if (!src->index) {
2307 static int warned = 0;
2308 if (!warned++)
f616db6a 2309 warning(_("suboptimal pack - out of memory"));
a588d88a
MK
2310 return 0;
2311 }
ef0316fc 2312 *mem_usage += sizeof_delta_index(src->index);
560b25a8
NP
2313 }
2314
2315 delta_buf = create_delta(src->index, trg->data, trg_size, &delta_size, max_size);
c323ac7d 2316 if (!delta_buf)
75c42d8c 2317 return 0;
f6c7081a 2318
898eba5e 2319 if (DELTA(trg_entry)) {
848d732c 2320 /* Prefer only shallower same-sized deltas. */
0aca34e8 2321 if (delta_size == DELTA_SIZE(trg_entry) &&
5a235b5e 2322 src->depth + 1 >= trg->depth) {
848d732c
BD
2323 free(delta_buf);
2324 return 0;
2325 }
074b2eea 2326 }
9e2d57a0 2327
3c701839
NP
2328 /*
2329 * Handle memory allocation outside of the cache
2330 * accounting lock. Compiler will optimize the strangeness
7eb151d6 2331 * away when NO_PTHREADS is defined.
3c701839 2332 */
8e0f7003 2333 free(trg_entry->delta_data);
3c701839 2334 cache_lock();
9e2d57a0 2335 if (trg_entry->delta_data) {
0aca34e8 2336 delta_cache_size -= DELTA_SIZE(trg_entry);
9e2d57a0
NP
2337 trg_entry->delta_data = NULL;
2338 }
d250626c 2339 if (delta_cacheable(src_size, trg_size, delta_size)) {
b7a28f78 2340 delta_cache_size += delta_size;
3c701839
NP
2341 cache_unlock();
2342 trg_entry->delta_data = xrealloc(delta_buf, delta_size);
2343 } else {
2344 cache_unlock();
074b2eea 2345 free(delta_buf);
3c701839
NP
2346 }
2347
898eba5e 2348 SET_DELTA(trg_entry, src_entry);
0aca34e8 2349 SET_DELTA_SIZE(trg_entry, delta_size);
b7a28f78
NP
2350 trg->depth = src->depth + 1;
2351
f6c7081a 2352 return 1;
c323ac7d
LT
2353}
2354
898b14ce 2355static unsigned int check_delta_limit(struct object_entry *me, unsigned int n)
b2504a0d 2356{
898eba5e 2357 struct object_entry *child = DELTA_CHILD(me);
898b14ce
NP
2358 unsigned int m = n;
2359 while (child) {
33de80b1 2360 const unsigned int c = check_delta_limit(child, n + 1);
898b14ce
NP
2361 if (m < c)
2362 m = c;
898eba5e 2363 child = DELTA_SIBLING(child);
898b14ce
NP
2364 }
2365 return m;
b2504a0d
NP
2366}
2367
75ad235c 2368static unsigned long free_unpacked(struct unpacked *n)
a97773ce 2369{
ef0316fc 2370 unsigned long freed_mem = sizeof_delta_index(n->index);
a97773ce
BD
2371 free_delta_index(n->index);
2372 n->index = NULL;
2373 if (n->data) {
ac77d0c3 2374 freed_mem += SIZE(n->entry);
6a83d902 2375 FREE_AND_NULL(n->data);
a97773ce
BD
2376 }
2377 n->entry = NULL;
7d7baa5e 2378 n->depth = 0;
ef0316fc 2379 return freed_mem;
a97773ce
BD
2380}
2381
384b32c0 2382static void find_deltas(struct object_entry **list, unsigned *list_size,
e334977d 2383 int window, int depth, unsigned *processed)
c323ac7d 2384{
384b32c0 2385 uint32_t i, idx = 0, count = 0;
7cadf491 2386 struct unpacked *array;
ef0316fc 2387 unsigned long mem_usage = 0;
c323ac7d 2388
19d4b416 2389 array = xcalloc(window, sizeof(struct unpacked));
21fcd1bd 2390
384b32c0 2391 for (;;) {
421b488a 2392 struct object_entry *entry;
c323ac7d 2393 struct unpacked *n = array + idx;
ef0316fc 2394 int j, max_depth, best_base = -1;
c323ac7d 2395
384b32c0
NP
2396 progress_lock();
2397 if (!*list_size) {
2398 progress_unlock();
2399 break;
2400 }
421b488a 2401 entry = *list++;
384b32c0
NP
2402 (*list_size)--;
2403 if (!entry->preferred_base) {
2404 (*processed)++;
2405 display_progress(progress_state, *processed);
2406 }
2407 progress_unlock();
2408
ef0316fc 2409 mem_usage -= free_unpacked(n);
c323ac7d 2410 n->entry = entry;
ab7cd7bb 2411
a97773ce 2412 while (window_memory_limit &&
ef0316fc 2413 mem_usage > window_memory_limit &&
a97773ce 2414 count > 1) {
33de80b1 2415 const uint32_t tail = (idx + window - count) % window;
75ad235c 2416 mem_usage -= free_unpacked(array + tail);
a97773ce
BD
2417 count--;
2418 }
2419
75d39853
NP
2420 /* We do not compute delta to *create* objects we are not
2421 * going to pack.
2422 */
2423 if (entry->preferred_base)
2424 goto next;
2425
898b14ce
NP
2426 /*
2427 * If the current object is at pack edge, take the depth the
2428 * objects that depend on the current object into account
2429 * otherwise they would become too deep.
2430 */
2431 max_depth = depth;
898eba5e 2432 if (DELTA_CHILD(entry)) {
898b14ce
NP
2433 max_depth -= check_delta_limit(entry, 0);
2434 if (max_depth <= 0)
2435 goto next;
2436 }
2437
78817c15
LT
2438 j = window;
2439 while (--j > 0) {
77639870 2440 int ret;
7cadf491 2441 uint32_t other_idx = idx + j;
c323ac7d 2442 struct unpacked *m;
78817c15
LT
2443 if (other_idx >= window)
2444 other_idx -= window;
c323ac7d
LT
2445 m = array + other_idx;
2446 if (!m->entry)
2447 break;
ef0316fc 2448 ret = try_delta(n, m, max_depth, &mem_usage);
77639870 2449 if (ret < 0)
c323ac7d 2450 break;
77639870
JH
2451 else if (ret > 0)
2452 best_base = other_idx;
c323ac7d 2453 }
898b14ce 2454
ed4a9031
NP
2455 /*
2456 * If we decided to cache the delta data, then it is best
2457 * to compress it right away. First because we have to do
2458 * it anyway, and doing it here while we're threaded will
2459 * save a lot of time in the non threaded write phase,
2460 * as well as allow for caching more deltas within
2461 * the same cache size limit.
2462 * ...
2463 * But only if not writing to stdout, since in that case
2464 * the network is most likely throttling writes anyway,
2465 * and therefore it is best to go to the write phase ASAP
2466 * instead, as we can afford spending more time compressing
2467 * between writes at that moment.
2468 */
2469 if (entry->delta_data && !pack_to_stdout) {
0cb3c142
NTND
2470 unsigned long size;
2471
0aca34e8 2472 size = do_compress(&entry->delta_data, DELTA_SIZE(entry));
0cb3c142
NTND
2473 if (size < (1U << OE_Z_DELTA_BITS)) {
2474 entry->z_delta_size = size;
2475 cache_lock();
0aca34e8 2476 delta_cache_size -= DELTA_SIZE(entry);
0cb3c142
NTND
2477 delta_cache_size += entry->z_delta_size;
2478 cache_unlock();
2479 } else {
2480 FREE_AND_NULL(entry->delta_data);
2481 entry->z_delta_size = 0;
2482 }
ed4a9031
NP
2483 }
2484
70ca1a3f
JH
2485 /* if we made n a delta, and if n is already at max
2486 * depth, leaving it in the window is pointless. we
2487 * should evict it first.
70ca1a3f 2488 */
898eba5e 2489 if (DELTA(entry) && max_depth <= n->depth)
70ca1a3f 2490 continue;
ff45715c 2491
77639870
JH
2492 /*
2493 * Move the best delta base up in the window, after the
2494 * currently deltified object, to keep it longer. It will
2495 * be the first base object to be attempted next.
2496 */
898eba5e 2497 if (DELTA(entry)) {
77639870
JH
2498 struct unpacked swap = array[best_base];
2499 int dist = (window + idx - best_base) % window;
2500 int dst = best_base;
2501 while (dist--) {
2502 int src = (dst + 1) % window;
2503 array[dst] = array[src];
2504 dst = src;
2505 }
2506 array[dst] = swap;
2507 }
2508
898b14ce 2509 next:
521a4f4c 2510 idx++;
a97773ce
BD
2511 if (count + 1 < window)
2512 count++;
521a4f4c
LT
2513 if (idx >= window)
2514 idx = 0;
384b32c0 2515 }
adee7bdf 2516
f6c7081a 2517 for (i = 0; i < window; ++i) {
ff45715c 2518 free_delta_index(array[i].index);
adee7bdf 2519 free(array[i].data);
f6c7081a 2520 }
adee7bdf 2521 free(array);
c323ac7d
LT
2522}
2523
50f22ada 2524/*
ffbd51cc
NTND
2525 * The main object list is split into smaller lists, each is handed to
2526 * one worker.
2527 *
50f22ada
JS
2528 * The main thread waits on the condition that (at least) one of the workers
2529 * has stopped working (which is indicated in the .working member of
2530 * struct thread_params).
ffbd51cc 2531 *
50f22ada
JS
2532 * When a work thread has completed its work, it sets .working to 0 and
2533 * signals the main thread and waits on the condition that .data_ready
2534 * becomes 1.
ffbd51cc
NTND
2535 *
2536 * The main thread steals half of the work from the worker that has
2537 * most work left to hand it to the idle worker.
50f22ada
JS
2538 */
2539
8ecce684
NP
2540struct thread_params {
2541 pthread_t thread;
2542 struct object_entry **list;
2543 unsigned list_size;
384b32c0 2544 unsigned remaining;
8ecce684
NP
2545 int window;
2546 int depth;
50f22ada
JS
2547 int working;
2548 int data_ready;
2549 pthread_mutex_t mutex;
2550 pthread_cond_t cond;
8ecce684
NP
2551 unsigned *processed;
2552};
2553
44626dc7
AH
2554static pthread_cond_t progress_cond;
2555
2556/*
2557 * Mutex and conditional variable can't be statically-initialized on Windows.
2558 */
2559static void init_threaded_search(void)
2560{
44626dc7
AH
2561 pthread_mutex_init(&cache_mutex, NULL);
2562 pthread_mutex_init(&progress_mutex, NULL);
2563 pthread_cond_init(&progress_cond, NULL);
2564}
2565
2566static void cleanup_threaded_search(void)
2567{
2568 pthread_cond_destroy(&progress_cond);
44626dc7
AH
2569 pthread_mutex_destroy(&cache_mutex);
2570 pthread_mutex_destroy(&progress_mutex);
2571}
c2a33679 2572
8ecce684
NP
2573static void *threaded_find_deltas(void *arg)
2574{
c2a33679
NP
2575 struct thread_params *me = arg;
2576
0c2ad00b 2577 progress_lock();
50f22ada 2578 while (me->remaining) {
0c2ad00b
2579 progress_unlock();
2580
384b32c0 2581 find_deltas(me->list, &me->remaining,
c2a33679 2582 me->window, me->depth, me->processed);
50f22ada
JS
2583
2584 progress_lock();
2585 me->working = 0;
2586 pthread_cond_signal(&progress_cond);
2587 progress_unlock();
2588
2589 /*
2590 * We must not set ->data_ready before we wait on the
2591 * condition because the main thread may have set it to 1
2592 * before we get here. In order to be sure that new
2593 * work is available if we see 1 in ->data_ready, it
2594 * was initialized to 0 before this thread was spawned
2595 * and we reset it to 0 right away.
2596 */
2597 pthread_mutex_lock(&me->mutex);
2598 while (!me->data_ready)
2599 pthread_cond_wait(&me->cond, &me->mutex);
2600 me->data_ready = 0;
2601 pthread_mutex_unlock(&me->mutex);
0c2ad00b
2602
2603 progress_lock();
c2a33679 2604 }
0c2ad00b 2605 progress_unlock();
50f22ada
JS
2606 /* leave ->working 1 so that this doesn't get more work assigned */
2607 return NULL;
8ecce684
NP
2608}
2609
8ecce684
NP
2610static void ll_find_deltas(struct object_entry **list, unsigned list_size,
2611 int window, int depth, unsigned *processed)
2612{
dcda3614 2613 struct thread_params *p;
384b32c0 2614 int i, ret, active_threads = 0;
c2a33679 2615
44626dc7
AH
2616 init_threaded_search();
2617
367f4a43 2618 if (delta_search_threads <= 1) {
384b32c0 2619 find_deltas(list, &list_size, window, depth, processed);
44626dc7 2620 cleanup_threaded_search();
367f4a43
NP
2621 return;
2622 }
43cc2b42 2623 if (progress > pack_to_stdout)
f616db6a 2624 fprintf_ln(stderr, _("Delta compression using up to %d threads"),
1a07e59c 2625 delta_search_threads);
dcda3614 2626 p = xcalloc(delta_search_threads, sizeof(*p));
367f4a43 2627
50f22ada 2628 /* Partition the work amongst work threads. */
367f4a43 2629 for (i = 0; i < delta_search_threads; i++) {
50f22ada
JS
2630 unsigned sub_size = list_size / (delta_search_threads - i);
2631
bf874896
NP
2632 /* don't use too small segments or no deltas will be found */
2633 if (sub_size < 2*window && i+1 < delta_search_threads)
2634 sub_size = 0;
2635
8ecce684
NP
2636 p[i].window = window;
2637 p[i].depth = depth;
2638 p[i].processed = processed;
50f22ada
JS
2639 p[i].working = 1;
2640 p[i].data_ready = 0;
c2a33679 2641
59921b4b 2642 /* try to split chunks on "path" boundaries */
6fc74703
NP
2643 while (sub_size && sub_size < list_size &&
2644 list[sub_size]->hash &&
384b32c0
NP
2645 list[sub_size]->hash == list[sub_size-1]->hash)
2646 sub_size++;
2647
50f22ada
JS
2648 p[i].list = list;
2649 p[i].list_size = sub_size;
2650 p[i].remaining = sub_size;
59921b4b 2651
384b32c0
NP
2652 list += sub_size;
2653 list_size -= sub_size;
2654 }
2655
50f22ada
JS
2656 /* Start work threads. */
2657 for (i = 0; i < delta_search_threads; i++) {
2658 if (!p[i].list_size)
2659 continue;
68e6a4f8
JS
2660 pthread_mutex_init(&p[i].mutex, NULL);
2661 pthread_cond_init(&p[i].cond, NULL);
50f22ada
JS
2662 ret = pthread_create(&p[i].thread, NULL,
2663 threaded_find_deltas, &p[i]);
2664 if (ret)
f616db6a 2665 die(_("unable to create thread: %s"), strerror(ret));
50f22ada
JS
2666 active_threads++;
2667 }
2668
384b32c0
NP
2669 /*
2670 * Now let's wait for work completion. Each time a thread is done
2671 * with its work, we steal half of the remaining work from the
2672 * thread with the largest number of unprocessed objects and give
2673 * it to that newly idle thread. This ensure good load balancing
2674 * until the remaining object list segments are simply too short
2675 * to be worth splitting anymore.
2676 */
50f22ada
JS
2677 while (active_threads) {
2678 struct thread_params *target = NULL;
384b32c0
NP
2679 struct thread_params *victim = NULL;
2680 unsigned sub_size = 0;
384b32c0
NP
2681
2682 progress_lock();
50f22ada
JS
2683 for (;;) {
2684 for (i = 0; !target && i < delta_search_threads; i++)
2685 if (!p[i].working)
2686 target = &p[i];
2687 if (target)
2688 break;
2689 pthread_cond_wait(&progress_cond, &progress_mutex);
2690 }
2691
384b32c0
NP
2692 for (i = 0; i < delta_search_threads; i++)
2693 if (p[i].remaining > 2*window &&
2694 (!victim || victim->remaining < p[i].remaining))
2695 victim = &p[i];
2696 if (victim) {
2697 sub_size = victim->remaining / 2;
2698 list = victim->list + victim->list_size - sub_size;
2699 while (sub_size && list[0]->hash &&
2700 list[0]->hash == list[-1]->hash) {
2701 list++;
2702 sub_size--;
2703 }
eb9688ff
NP
2704 if (!sub_size) {
2705 /*
2706 * It is possible for some "paths" to have
2707 * so many objects that no hash boundary
2708 * might be found. Let's just steal the
2709 * exact half in that case.
2710 */
2711 sub_size = victim->remaining / 2;
2712 list -= sub_size;
2713 }
384b32c0
NP
2714 target->list = list;
2715 victim->list_size -= sub_size;
2716 victim->remaining -= sub_size;
2717 }
384b32c0
NP
2718 target->list_size = sub_size;
2719 target->remaining = sub_size;
50f22ada
JS
2720 target->working = 1;
2721 progress_unlock();
2722
2723 pthread_mutex_lock(&target->mutex);
2724 target->data_ready = 1;
2725 pthread_cond_signal(&target->cond);
2726 pthread_mutex_unlock(&target->mutex);
c2a33679 2727
384b32c0 2728 if (!sub_size) {
b81d9af7 2729 pthread_join(target->thread, NULL);
50f22ada
JS
2730 pthread_cond_destroy(&target->cond);
2731 pthread_mutex_destroy(&target->mutex);
384b32c0 2732 active_threads--;
c2a33679 2733 }
50f22ada 2734 }
44626dc7 2735 cleanup_threaded_search();
dcda3614 2736 free(p);
8ecce684
NP
2737}
2738
ff483026
JK
2739static int obj_is_packed(const struct object_id *oid)
2740{
a14aebea 2741 return packlist_find(&to_pack, oid) ||
92fb0db9
JK
2742 (reuse_packfile_bitmap &&
2743 bitmap_walk_contains(bitmap_git, reuse_packfile_bitmap, oid));
ff483026
JK
2744}
2745
b773ddea
JK
2746static void add_tag_chain(const struct object_id *oid)
2747{
2748 struct tag *tag;
2749
2750 /*
2751 * We catch duplicates already in add_object_entry(), but we'd
2752 * prefer to do this extra check to avoid having to parse the
2753 * tag at all if we already know that it's being packed (e.g., if
2754 * it was included via bitmaps, we would not have parsed it
2755 * previously).
2756 */
ff483026 2757 if (obj_is_packed(oid))
b773ddea
JK
2758 return;
2759
ce71efb7 2760 tag = lookup_tag(the_repository, oid);
b773ddea
JK
2761 while (1) {
2762 if (!tag || parse_tag(tag) || !tag->tagged)
f616db6a 2763 die(_("unable to pack objects reachable from tag %s"),
b773ddea
JK
2764 oid_to_hex(oid));
2765
188960b4 2766 add_object_entry(&tag->object.oid, OBJ_TAG, NULL, 0);
b773ddea
JK
2767
2768 if (tag->tagged->type != OBJ_TAG)
2769 return;
2770
2771 tag = (struct tag *)tag->tagged;
2772 }
2773}
2774
d155254c 2775static int add_ref_tag(const char *path, const struct object_id *oid, int flag, void *cb_data)
f0a24aa5 2776{
d155254c 2777 struct object_id peeled;
f0a24aa5 2778
59556548 2779 if (starts_with(path, "refs/tags/") && /* is a tag? */
b420d909 2780 !peel_ref(path, &peeled) && /* peelable? */
ff483026 2781 obj_is_packed(&peeled)) /* object packed? */
b773ddea 2782 add_tag_chain(oid);
f0a24aa5
SP
2783 return 0;
2784}
2785
f3123c4a
JH
2786static void prepare_pack(int window, int depth)
2787{
9668cf59 2788 struct object_entry **delta_list;
6e1c2344
RJ
2789 uint32_t i, nr_deltas;
2790 unsigned n;
9668cf59 2791
28b8a730 2792 if (use_delta_islands)
385cb64f 2793 resolve_tree_islands(the_repository, progress, &to_pack);
28b8a730 2794
3f9ac8d2 2795 get_object_details();
9668cf59 2796
0e8189e2
NP
2797 /*
2798 * If we're locally repacking then we need to be doubly careful
2799 * from now on in order to make sure no stealth corruption gets
2800 * propagated to the new pack. Clients receiving streamed packs
2801 * should validate everything they get anyway so no need to incur
2802 * the additional cost here in that case.
2803 */
2804 if (!pack_to_stdout)
2805 do_check_packed_object_crc = 1;
2806
2834bc27 2807 if (!to_pack.nr_objects || !window || !depth)
9668cf59
NP
2808 return;
2809
b32fa95f 2810 ALLOC_ARRAY(delta_list, to_pack.nr_objects);
75d39853
NP
2811 nr_deltas = n = 0;
2812
2834bc27
VM
2813 for (i = 0; i < to_pack.nr_objects; i++) {
2814 struct object_entry *entry = to_pack.objects + i;
75d39853 2815
898eba5e 2816 if (DELTA(entry))
75d39853 2817 /* This happens if we decided to reuse existing
a7de7130 2818 * delta from a pack. "reuse_delta &&" is implied.
75d39853
NP
2819 */
2820 continue;
2821
ac77d0c3
NTND
2822 if (!entry->type_valid ||
2823 oe_size_less_than(&to_pack, entry, 50))
75d39853
NP
2824 continue;
2825
2826 if (entry->no_try_delta)
2827 continue;
2828
6d6f9cdd 2829 if (!entry->preferred_base) {
75d39853 2830 nr_deltas++;
fd9b1bae 2831 if (oe_type(entry) < 0)
f616db6a 2832 die(_("unable to get type of object %s"),
e6a492b7 2833 oid_to_hex(&entry->idx.oid));
eede9f42 2834 } else {
fd9b1bae 2835 if (oe_type(entry) < 0) {
eede9f42
NP
2836 /*
2837 * This object is not found, but we
2838 * don't have to include it anyway.
2839 */
2840 continue;
2841 }
6d6f9cdd 2842 }
75d39853
NP
2843
2844 delta_list[n++] = entry;
2845 }
2846
2f8b8947 2847 if (nr_deltas && n > 1) {
e334977d 2848 unsigned nr_done = 0;
bb514de3 2849
e334977d 2850 if (progress)
754dbc43 2851 progress_state = start_progress(_("Compressing objects"),
dc6a0757 2852 nr_deltas);
9ed0d8d6 2853 QSORT(delta_list, n, type_size_sort);
8ecce684 2854 ll_find_deltas(delta_list, n, window+1, depth, &nr_done);
4d4fcc54 2855 stop_progress(&progress_state);
e334977d 2856 if (nr_done != nr_deltas)
f616db6a 2857 die(_("inconsistency with delta count"));
75d39853 2858 }
9668cf59 2859 free(delta_list);
f3123c4a
JH
2860}
2861
ef90d6d4 2862static int git_pack_config(const char *k, const char *v, void *cb)
4812a93a 2863{
eeefa7c9 2864 if (!strcmp(k, "pack.window")) {
4812a93a
JK
2865 window = git_config_int(k, v);
2866 return 0;
2867 }
a97773ce
BD
2868 if (!strcmp(k, "pack.windowmemory")) {
2869 window_memory_limit = git_config_ulong(k, v);
2870 return 0;
2871 }
2872 if (!strcmp(k, "pack.depth")) {
842aaf93
TT
2873 depth = git_config_int(k, v);
2874 return 0;
2875 }
074b2eea
MK
2876 if (!strcmp(k, "pack.deltacachesize")) {
2877 max_delta_cache_size = git_config_int(k, v);
2878 return 0;
2879 }
e3dfddb3
MK
2880 if (!strcmp(k, "pack.deltacachelimit")) {
2881 cache_max_small_delta_size = git_config_int(k, v);
2882 return 0;
2883 }
ae4f07fb
VM
2884 if (!strcmp(k, "pack.writebitmaphashcache")) {
2885 if (git_config_bool(k, v))
2886 write_bitmap_options |= BITMAP_OPT_HASH_CACHE;
2887 else
2888 write_bitmap_options &= ~BITMAP_OPT_HASH_CACHE;
2889 }
6b8fda2d 2890 if (!strcmp(k, "pack.usebitmaps")) {
645c432d 2891 use_bitmap_index_default = git_config_bool(k, v);
6b8fda2d
VM
2892 return 0;
2893 }
e704fc79
JK
2894 if (!strcmp(k, "pack.allowpackreuse")) {
2895 allow_pack_reuse = git_config_bool(k, v);
2896 return 0;
2897 }
693b86ff
NP
2898 if (!strcmp(k, "pack.threads")) {
2899 delta_search_threads = git_config_int(k, v);
833e3df1 2900 if (delta_search_threads < 0)
f616db6a 2901 die(_("invalid number of threads specified (%d)"),
693b86ff 2902 delta_search_threads);
9c897c5c 2903 if (!HAVE_THREADS && delta_search_threads != 1) {
f616db6a 2904 warning(_("no threads support, ignoring %s"), k);
2e96d815
ÆAB
2905 delta_search_threads = 0;
2906 }
693b86ff
NP
2907 return 0;
2908 }
4d00bda2 2909 if (!strcmp(k, "pack.indexversion")) {
ebcfb379
JH
2910 pack_idx_opts.version = git_config_int(k, v);
2911 if (pack_idx_opts.version > 2)
f616db6a 2912 die(_("bad pack.indexversion=%"PRIu32),
ebcfb379 2913 pack_idx_opts.version);
4d00bda2
NP
2914 return 0;
2915 }
dd4b732d
JT
2916 if (!strcmp(k, "uploadpack.blobpackfileuri")) {
2917 struct configured_exclusion *ex = xmalloc(sizeof(*ex));
2918 const char *oid_end, *pack_end;
2919 /*
2920 * Stores the pack hash. This is not a true object ID, but is
2921 * of the same form.
2922 */
2923 struct object_id pack_hash;
2924
2925 if (parse_oid_hex(v, &ex->e.oid, &oid_end) ||
2926 *oid_end != ' ' ||
2927 parse_oid_hex(oid_end + 1, &pack_hash, &pack_end) ||
2928 *pack_end != ' ')
2929 die(_("value of uploadpack.blobpackfileuri must be "
2930 "of the form '<object-hash> <pack-hash> <uri>' (got '%s')"), v);
2931 if (oidmap_get(&configured_exclusions, &ex->e.oid))
2932 die(_("object already configured in another "
2933 "uploadpack.blobpackfileuri (got '%s')"), v);
2934 ex->pack_hash_hex = xcalloc(1, pack_end - oid_end);
2935 memcpy(ex->pack_hash_hex, oid_end + 1, pack_end - oid_end - 1);
2936 ex->uri = xstrdup(pack_end + 1);
2937 oidmap_put(&configured_exclusions, ex);
2938 }
ef90d6d4 2939 return git_default_config(k, v, cb);
4812a93a
JK
2940}
2941
b5d97e6b 2942static void read_object_list_from_stdin(void)
c323ac7d 2943{
188960b4 2944 char line[GIT_MAX_HEXSZ + 1 + PATH_MAX + 2];
2945 struct object_id oid;
2946 const char *p;
b2504a0d 2947
da93d12b 2948 for (;;) {
da93d12b
LT
2949 if (!fgets(line, sizeof(line), stdin)) {
2950 if (feof(stdin))
2951 break;
2952 if (!ferror(stdin))
1a07e59c 2953 die("BUG: fgets returned NULL, not EOF, not error!");
687dd75c 2954 if (errno != EINTR)
d824cbba 2955 die_errno("fgets");
687dd75c
JH
2956 clearerr(stdin);
2957 continue;
da93d12b 2958 }
7a979d99 2959 if (line[0] == '-') {
188960b4 2960 if (get_oid_hex(line+1, &oid))
f616db6a 2961 die(_("expected edge object ID, got garbage:\n %s"),
b5d97e6b 2962 line);
188960b4 2963 add_preferred_base(&oid);
7a979d99 2964 continue;
21fcd1bd 2965 }
188960b4 2966 if (parse_oid_hex(line, &oid, &p))
f616db6a 2967 die(_("expected object ID, got garbage:\n %s"), line);
b5d97e6b 2968
188960b4 2969 add_preferred_base_object(p + 1);
fd9b1bae 2970 add_object_entry(&oid, OBJ_NONE, p + 1, 0);
c323ac7d 2971 }
b5d97e6b
JH
2972}
2973
95308d64 2974/* Remember to update object flag allocation in object.h */
08cdfb13
JH
2975#define OBJECT_ADDED (1u<<20)
2976
11c211fa 2977static void show_commit(struct commit *commit, void *data)
b5d97e6b 2978{
188960b4 2979 add_object_entry(&commit->object.oid, OBJ_COMMIT, NULL, 0);
08cdfb13 2980 commit->object.flags |= OBJECT_ADDED;
7cc8f971
VM
2981
2982 if (write_bitmap_index)
2983 index_commit_for_bitmap(commit);
28b8a730
JK
2984
2985 if (use_delta_islands)
2986 propagate_island_marks(commit);
b5d97e6b
JH
2987}
2988
de1e67d0 2989static void show_object(struct object *obj, const char *name, void *data)
b5d97e6b 2990{
8d2dfc49 2991 add_preferred_base_object(name);
188960b4 2992 add_object_entry(&obj->oid, obj->type, name, 0);
8d2dfc49 2993 obj->flags |= OBJECT_ADDED;
28b8a730
JK
2994
2995 if (use_delta_islands) {
2996 const char *p;
39490536 2997 unsigned depth;
28b8a730
JK
2998 struct object_entry *ent;
2999
39490536
JK
3000 /* the empty string is a root tree, which is depth 0 */
3001 depth = *name ? 1 : 0;
28b8a730
JK
3002 for (p = strchr(name, '/'); p; p = strchr(p + 1, '/'))
3003 depth++;
3004
3a37876b 3005 ent = packlist_find(&to_pack, &obj->oid);
108f5303
CC
3006 if (ent && depth > oe_tree_depth(&to_pack, ent))
3007 oe_set_tree_depth(&to_pack, ent, depth);
28b8a730 3008 }
b5d97e6b
JH
3009}
3010
9535ce73
JH
3011static void show_object__ma_allow_any(struct object *obj, const char *name, void *data)
3012{
3013 assert(arg_missing_action == MA_ALLOW_ANY);
3014
3015 /*
3016 * Quietly ignore ALL missing objects. This avoids problems with
3017 * staging them now and getting an odd error later.
3018 */
3019 if (!has_object_file(&obj->oid))
3020 return;
3021
3022 show_object(obj, name, data);
3023}
3024
0c16cd49
JT
3025static void show_object__ma_allow_promisor(struct object *obj, const char *name, void *data)
3026{
3027 assert(arg_missing_action == MA_ALLOW_PROMISOR);
3028
3029 /*
3030 * Quietly ignore EXPECTED missing objects. This avoids problems with
3031 * staging them now and getting an odd error later.
3032 */
3033 if (!has_object_file(&obj->oid) && is_promisor_object(&obj->oid))
3034 return;
3035
3036 show_object(obj, name, data);
3037}
3038
9535ce73
JH
3039static int option_parse_missing_action(const struct option *opt,
3040 const char *arg, int unset)
3041{
3042 assert(arg);
3043 assert(!unset);
3044
3045 if (!strcmp(arg, "error")) {
3046 arg_missing_action = MA_ERROR;
3047 fn_show_object = show_object;
3048 return 0;
3049 }
3050
3051 if (!strcmp(arg, "allow-any")) {
3052 arg_missing_action = MA_ALLOW_ANY;
0c16cd49 3053 fetch_if_missing = 0;
9535ce73
JH
3054 fn_show_object = show_object__ma_allow_any;
3055 return 0;
3056 }
3057
0c16cd49
JT
3058 if (!strcmp(arg, "allow-promisor")) {
3059 arg_missing_action = MA_ALLOW_PROMISOR;
3060 fetch_if_missing = 0;
3061 fn_show_object = show_object__ma_allow_promisor;
3062 return 0;
3063 }
3064
9535ce73
JH
3065 die(_("invalid value for --missing"));
3066 return 0;
3067}
3068
8d1d8f83
JH
3069static void show_edge(struct commit *commit)
3070{
188960b4 3071 add_preferred_base(&commit->object.oid);
8d1d8f83
JH
3072}
3073
08cdfb13
JH
3074struct in_pack_object {
3075 off_t offset;
3076 struct object *object;
3077};
3078
3079struct in_pack {
071bcaab
RJ
3080 unsigned int alloc;
3081 unsigned int nr;
08cdfb13
JH
3082 struct in_pack_object *array;
3083};
3084
3085static void mark_in_pack_object(struct object *object, struct packed_git *p, struct in_pack *in_pack)
3086{
ed1c9977 3087 in_pack->array[in_pack->nr].offset = find_pack_entry_one(object->oid.hash, p);
08cdfb13
JH
3088 in_pack->array[in_pack->nr].object = object;
3089 in_pack->nr++;
3090}
3091
3092/*
3093 * Compare the objects in the offset order, in order to emulate the
f18d244a 3094 * "git rev-list --objects" output that produced the pack originally.
08cdfb13
JH
3095 */
3096static int ofscmp(const void *a_, const void *b_)
3097{
3098 struct in_pack_object *a = (struct in_pack_object *)a_;
3099 struct in_pack_object *b = (struct in_pack_object *)b_;
3100
3101 if (a->offset < b->offset)
3102 return -1;
3103 else if (a->offset > b->offset)
3104 return 1;
3105 else
f2fd0760 3106 return oidcmp(&a->object->oid, &b->object->oid);
08cdfb13
JH
3107}
3108
7a2a7216 3109static void add_objects_in_unpacked_packs(void)
08cdfb13
JH
3110{
3111 struct packed_git *p;
3112 struct in_pack in_pack;
3113 uint32_t i;
3114
3115 memset(&in_pack, 0, sizeof(in_pack));
3116
454ea2e4 3117 for (p = get_all_packs(the_repository); p; p = p->next) {
188960b4 3118 struct object_id oid;
08cdfb13
JH
3119 struct object *o;
3120
ed7e5fc3 3121 if (!p->pack_local || p->pack_keep || p->pack_keep_in_core)
08cdfb13
JH
3122 continue;
3123 if (open_pack_index(p))
f616db6a 3124 die(_("cannot open pack index"));
08cdfb13
JH
3125
3126 ALLOC_GROW(in_pack.array,
3127 in_pack.nr + p->num_objects,
3128 in_pack.alloc);
3129
3130 for (i = 0; i < p->num_objects; i++) {
0763671b 3131 nth_packed_object_id(&oid, p, i);
0ebbcf70 3132 o = lookup_unknown_object(&oid);
08cdfb13
JH
3133 if (!(o->flags & OBJECT_ADDED))
3134 mark_in_pack_object(o, p, &in_pack);
3135 o->flags |= OBJECT_ADDED;
3136 }
3137 }
3138
3139 if (in_pack.nr) {
9ed0d8d6 3140 QSORT(in_pack.array, in_pack.nr, ofscmp);
08cdfb13
JH
3141 for (i = 0; i < in_pack.nr; i++) {
3142 struct object *o = in_pack.array[i].object;
188960b4 3143 add_object_entry(&o->oid, o->type, "", 0);
08cdfb13
JH
3144 }
3145 }
3146 free(in_pack.array);
3147}
3148
76c1d9a0 3149static int add_loose_object(const struct object_id *oid, const char *path,
e26a8c47
JK
3150 void *data)
3151{
0df8e965 3152 enum object_type type = oid_object_info(the_repository, oid, NULL);
e26a8c47
JK
3153
3154 if (type < 0) {
f616db6a 3155 warning(_("loose object at %s could not be examined"), path);
e26a8c47
JK
3156 return 0;
3157 }
3158
188960b4 3159 add_object_entry(oid, type, "", 0);
e26a8c47
JK
3160 return 0;
3161}
3162
3163/*
3164 * We actually don't even have to worry about reachability here.
3165 * add_object_entry will weed out duplicates, so we just add every
3166 * loose object we find.
3167 */
3168static void add_unreachable_loose_objects(void)
3169{
3170 for_each_loose_file_in_objdir(get_object_directory(),
3171 add_loose_object,
3172 NULL, NULL, NULL);
3173}
3174
188960b4 3175static int has_sha1_pack_kept_or_nonlocal(const struct object_id *oid)
094085e3
BC
3176{
3177 static struct packed_git *last_found = (void *)1;
3178 struct packed_git *p;
3179
a80d72db 3180 p = (last_found != (void *)1) ? last_found :
454ea2e4 3181 get_all_packs(the_repository);
094085e3
BC
3182
3183 while (p) {
ed7e5fc3
NTND
3184 if ((!p->pack_local || p->pack_keep ||
3185 p->pack_keep_in_core) &&
188960b4 3186 find_pack_entry_one(oid->hash, p)) {
094085e3
BC
3187 last_found = p;
3188 return 1;
3189 }
3190 if (p == last_found)
454ea2e4 3191 p = get_all_packs(the_repository);
094085e3
BC
3192 else
3193 p = p->next;
3194 if (p == last_found)
3195 p = p->next;
3196 }
3197 return 0;
3198}
3199
abcb8655
JK
3200/*
3201 * Store a list of sha1s that are should not be discarded
3202 * because they are either written too recently, or are
3203 * reachable from another object that was.
3204 *
3205 * This is filled by get_object_list.
3206 */
910650d2 3207static struct oid_array recent_objects;
abcb8655 3208
4ce3621a 3209static int loosened_object_can_be_discarded(const struct object_id *oid,
dddbad72 3210 timestamp_t mtime)
d0d46abc
JK
3211{
3212 if (!unpack_unreachable_expiration)
3213 return 0;
3214 if (mtime > unpack_unreachable_expiration)
3215 return 0;
910650d2 3216 if (oid_array_lookup(&recent_objects, oid) >= 0)
abcb8655 3217 return 0;
d0d46abc
JK
3218 return 1;
3219}
3220
7a2a7216 3221static void loosen_unused_packed_objects(void)
ca11b212
NP
3222{
3223 struct packed_git *p;
3224 uint32_t i;
4ce3621a 3225 struct object_id oid;
ca11b212 3226
454ea2e4 3227 for (p = get_all_packs(the_repository); p; p = p->next) {
ed7e5fc3 3228 if (!p->pack_local || p->pack_keep || p->pack_keep_in_core)
ca11b212
NP
3229 continue;
3230
3231 if (open_pack_index(p))
f616db6a 3232 die(_("cannot open pack index"));
ca11b212
NP
3233
3234 for (i = 0; i < p->num_objects; i++) {
0763671b 3235 nth_packed_object_id(&oid, p, i);
3a37876b 3236 if (!packlist_find(&to_pack, &oid) &&
188960b4 3237 !has_sha1_pack_kept_or_nonlocal(&oid) &&
4ce3621a 3238 !loosened_object_can_be_discarded(&oid, p->mtime))
4bdb70a4 3239 if (force_object_loose(&oid, p->mtime))
f616db6a 3240 die(_("unable to force loose object"));
ca11b212
NP
3241 }
3242 }
3243}
3244
69e4b342 3245/*
645c432d
KS
3246 * This tracks any options which pack-reuse code expects to be on, or which a
3247 * reader of the pack might not understand, and which would therefore prevent
3248 * blind reuse of what we have on disk.
69e4b342
JK
3249 */
3250static int pack_options_allow_reuse(void)
3251{
e704fc79
JK
3252 return allow_pack_reuse &&
3253 pack_to_stdout &&
ed7e5fc3
NTND
3254 !ignore_packed_keep_on_disk &&
3255 !ignore_packed_keep_in_core &&
9df4a607
JK
3256 (!local || !have_non_local_packs) &&
3257 !incremental;
69e4b342
JK
3258}
3259
6b8fda2d
VM
3260static int get_object_list_from_bitmap(struct rev_info *revs)
3261{
3ab3185f 3262 if (!(bitmap_git = prepare_bitmap_walk(revs, &filter_options)))
6b8fda2d
VM
3263 return -1;
3264
69e4b342
JK
3265 if (pack_options_allow_reuse() &&
3266 !reuse_partial_packfile_from_bitmap(
3ae5fa07 3267 bitmap_git,
6b8fda2d
VM
3268 &reuse_packfile,
3269 &reuse_packfile_objects,
bb514de3 3270 &reuse_packfile_bitmap)) {
6b8fda2d
VM
3271 assert(reuse_packfile_objects);
3272 nr_result += reuse_packfile_objects;
78d2214e 3273 display_progress(progress_state, nr_result);
6b8fda2d
VM
3274 }
3275
4eb707eb
JK
3276 traverse_bitmap_commit_list(bitmap_git, revs,
3277 &add_object_entry_from_bitmap);
6b8fda2d
VM
3278 return 0;
3279}
3280
abcb8655 3281static void record_recent_object(struct object *obj,
de1e67d0 3282 const char *name,
abcb8655
JK
3283 void *data)
3284{
910650d2 3285 oid_array_append(&recent_objects, &obj->oid);
abcb8655
JK
3286}
3287
3288static void record_recent_commit(struct commit *commit, void *data)
3289{
910650d2 3290 oid_array_append(&recent_objects, &commit->object.oid);
abcb8655
JK
3291}
3292
8d1d8f83 3293static void get_object_list(int ac, const char **av)
b5d97e6b
JH
3294{
3295 struct rev_info revs;
bbcde41a
MD
3296 struct setup_revision_opt s_r_opt = {
3297 .allow_exclude_promisor_objects = 1,
3298 };
b5d97e6b 3299 char line[1000];
b5d97e6b 3300 int flags = 0;
a4544b31 3301 int save_warning;
b5d97e6b 3302
2abf3503 3303 repo_init_revisions(the_repository, &revs, NULL);
b5d97e6b 3304 save_commit_buffer = 0;
bbcde41a 3305 setup_revisions(ac, av, &revs, &s_r_opt);
b5d97e6b 3306
b790e0f6 3307 /* make sure shallows are read */
c8813487 3308 is_repository_shallow(the_repository);
b790e0f6 3309
a4544b31
DS
3310 save_warning = warn_on_object_refname_ambiguity;
3311 warn_on_object_refname_ambiguity = 0;
3312
b5d97e6b
JH
3313 while (fgets(line, sizeof(line), stdin) != NULL) {
3314 int len = strlen(line);
872c930d 3315 if (len && line[len - 1] == '\n')
b5d97e6b
JH
3316 line[--len] = 0;
3317 if (!len)
3318 break;
3319 if (*line == '-') {
3320 if (!strcmp(line, "--not")) {
3321 flags ^= UNINTERESTING;
7cc8f971 3322 write_bitmap_index = 0;
b5d97e6b
JH
3323 continue;
3324 }
b790e0f6 3325 if (starts_with(line, "--shallow ")) {
e92b848c 3326 struct object_id oid;
3327 if (get_oid_hex(line + 10, &oid))
b790e0f6 3328 die("not an SHA-1 '%s'", line + 10);
19143f13 3329 register_shallow(the_repository, &oid);
f7f91086 3330 use_bitmap_index = 0;
b790e0f6
NTND
3331 continue;
3332 }
f616db6a 3333 die(_("not a rev '%s'"), line);
b5d97e6b 3334 }
8e676e8b 3335 if (handle_revision_arg(line, &revs, flags, REVARG_CANNOT_BE_FILENAME))
f616db6a 3336 die(_("bad revision '%s'"), line);
b5d97e6b
JH
3337 }
3338
a4544b31
DS
3339 warn_on_object_refname_ambiguity = save_warning;
3340
6b8fda2d
VM
3341 if (use_bitmap_index && !get_object_list_from_bitmap(&revs))
3342 return;
3343
28b8a730 3344 if (use_delta_islands)
bdbdf42f 3345 load_delta_islands(the_repository, progress);
28b8a730 3346
3d51e1b5 3347 if (prepare_revision_walk(&revs))
f616db6a 3348 die(_("revision walk setup failed"));
4f6d26b1 3349 mark_edges_uninteresting(&revs, show_edge, sparse);
9535ce73
JH
3350
3351 if (!fn_show_object)
3352 fn_show_object = show_object;
3353 traverse_commit_list_filtered(&filter_options, &revs,
3354 show_commit, fn_show_object, NULL,
3355 NULL);
08cdfb13 3356
abcb8655
JK
3357 if (unpack_unreachable_expiration) {
3358 revs.ignore_missing_links = 1;
3359 if (add_unseen_recent_objects_to_traversal(&revs,
3360 unpack_unreachable_expiration))
f616db6a 3361 die(_("unable to add recent objects"));
abcb8655 3362 if (prepare_revision_walk(&revs))
f616db6a 3363 die(_("revision walk setup failed"));
abcb8655
JK
3364 traverse_commit_list(&revs, record_recent_commit,
3365 record_recent_object, NULL);
3366 }
3367
08cdfb13 3368 if (keep_unreachable)
7a2a7216 3369 add_objects_in_unpacked_packs();
e26a8c47
JK
3370 if (pack_loose_unreachable)
3371 add_unreachable_loose_objects();
ca11b212 3372 if (unpack_unreachable)
7a2a7216 3373 loosen_unused_packed_objects();
abcb8655 3374
910650d2 3375 oid_array_clear(&recent_objects);
b5d97e6b
JH
3376}
3377
ed7e5fc3
NTND
3378static void add_extra_kept_packs(const struct string_list *names)
3379{
3380 struct packed_git *p;
3381
3382 if (!names->nr)
3383 return;
3384
454ea2e4 3385 for (p = get_all_packs(the_repository); p; p = p->next) {
ed7e5fc3
NTND
3386 const char *name = basename(p->pack_name);
3387 int i;
3388
3389 if (!p->pack_local)
3390 continue;
3391
3392 for (i = 0; i < names->nr; i++)
3393 if (!fspathcmp(name, names->items[i].string))
3394 break;
3395
3396 if (i < names->nr) {
3397 p->pack_keep_in_core = 1;
3398 ignore_packed_keep_in_core = 1;
3399 continue;
3400 }
3401 }
3402}
3403
99fb6e04
NTND
3404static int option_parse_index_version(const struct option *opt,
3405 const char *arg, int unset)
3406{
3407 char *c;
3408 const char *val = arg;
517fe807
JK
3409
3410 BUG_ON_OPT_NEG(unset);
3411
99fb6e04
NTND
3412 pack_idx_opts.version = strtoul(val, &c, 10);
3413 if (pack_idx_opts.version > 2)
3414 die(_("unsupported index version %s"), val);
3415 if (*c == ',' && c[1])
3416 pack_idx_opts.off32_limit = strtoul(c+1, &c, 0);
3417 if (*c || pack_idx_opts.off32_limit & 0x80000000)
3418 die(_("bad index version '%s'"), val);
3419 return 0;
3420}
3421
7e52f566
JK
3422static int option_parse_unpack_unreachable(const struct option *opt,
3423 const char *arg, int unset)
3424{
3425 if (unset) {
3426 unpack_unreachable = 0;
3427 unpack_unreachable_expiration = 0;
3428 }
3429 else {
3430 unpack_unreachable = 1;
3431 if (arg)
3432 unpack_unreachable_expiration = approxidate(arg);
3433 }
3434 return 0;
3435}
3436
b5d97e6b
JH
3437int cmd_pack_objects(int argc, const char **argv, const char *prefix)
3438{
b5d97e6b 3439 int use_internal_rev_list = 0;
2dacf26d 3440 int shallow = 0;
4f366275 3441 int all_progress_implied = 0;
22f9b7f3 3442 struct strvec rp = STRVEC_INIT;
99fb6e04 3443 int rev_list_unpacked = 0, rev_list_all = 0, rev_list_reflog = 0;
c90f9e13 3444 int rev_list_index = 0;
ed7e5fc3 3445 struct string_list keep_pack_list = STRING_LIST_INIT_NODUP;
99fb6e04
NTND
3446 struct option pack_objects_options[] = {
3447 OPT_SET_INT('q', "quiet", &progress,
4c688120 3448 N_("do not show progress meter"), 0),
99fb6e04 3449 OPT_SET_INT(0, "progress", &progress,
4c688120 3450 N_("show progress meter"), 1),
99fb6e04 3451 OPT_SET_INT(0, "all-progress", &progress,
4c688120 3452 N_("show progress meter during object writing phase"), 2),
99fb6e04
NTND
3453 OPT_BOOL(0, "all-progress-implied",
3454 &all_progress_implied,
4c688120 3455 N_("similar to --all-progress when progress meter is shown")),
203c8533 3456 OPT_CALLBACK_F(0, "index-version", NULL, N_("<version>[,<offset>]"),
4c688120 3457 N_("write the pack index file in the specified idx format version"),
203c8533 3458 PARSE_OPT_NONEG, option_parse_index_version),
2a514ed8
CB
3459 OPT_MAGNITUDE(0, "max-pack-size", &pack_size_limit,
3460 N_("maximum size of each output pack file")),
99fb6e04 3461 OPT_BOOL(0, "local", &local,
4c688120 3462 N_("ignore borrowed objects from alternate object store")),
99fb6e04 3463 OPT_BOOL(0, "incremental", &incremental,
4c688120 3464 N_("ignore packed objects")),
99fb6e04 3465 OPT_INTEGER(0, "window", &window,
4c688120 3466 N_("limit pack window by objects")),
2a514ed8
CB
3467 OPT_MAGNITUDE(0, "window-memory", &window_memory_limit,
3468 N_("limit pack window by memory in addition to object limit")),
99fb6e04 3469 OPT_INTEGER(0, "depth", &depth,
4c688120 3470 N_("maximum length of delta chain allowed in the resulting pack")),
99fb6e04 3471 OPT_BOOL(0, "reuse-delta", &reuse_delta,
4c688120 3472 N_("reuse existing deltas")),
99fb6e04 3473 OPT_BOOL(0, "reuse-object", &reuse_object,
4c688120 3474 N_("reuse existing objects")),
99fb6e04 3475 OPT_BOOL(0, "delta-base-offset", &allow_ofs_delta,
4c688120 3476 N_("use OFS_DELTA objects")),
99fb6e04 3477 OPT_INTEGER(0, "threads", &delta_search_threads,
4c688120 3478 N_("use threads when searching for best delta matches")),
99fb6e04 3479 OPT_BOOL(0, "non-empty", &non_empty,
4c688120 3480 N_("do not create an empty pack output")),
99fb6e04 3481 OPT_BOOL(0, "revs", &use_internal_rev_list,
4c688120 3482 N_("read revision arguments from standard input")),
3e4a67b4
NTND
3483 OPT_SET_INT_F(0, "unpacked", &rev_list_unpacked,
3484 N_("limit the objects to those that are not yet packed"),
3485 1, PARSE_OPT_NONEG),
3486 OPT_SET_INT_F(0, "all", &rev_list_all,
3487 N_("include objects reachable from any reference"),
3488 1, PARSE_OPT_NONEG),
3489 OPT_SET_INT_F(0, "reflog", &rev_list_reflog,
3490 N_("include objects referred by reflog entries"),
3491 1, PARSE_OPT_NONEG),
3492 OPT_SET_INT_F(0, "indexed-objects", &rev_list_index,
3493 N_("include objects referred to by the index"),
3494 1, PARSE_OPT_NONEG),
99fb6e04 3495 OPT_BOOL(0, "stdout", &pack_to_stdout,
4c688120 3496 N_("output pack to stdout")),
99fb6e04 3497 OPT_BOOL(0, "include-tag", &include_tag,
4c688120 3498 N_("include tag objects that refer to objects to be packed")),
99fb6e04 3499 OPT_BOOL(0, "keep-unreachable", &keep_unreachable,
4c688120 3500 N_("keep unreachable objects")),
e26a8c47
JK
3501 OPT_BOOL(0, "pack-loose-unreachable", &pack_loose_unreachable,
3502 N_("pack loose unreachable objects")),
203c8533 3503 OPT_CALLBACK_F(0, "unpack-unreachable", NULL, N_("time"),
4c688120 3504 N_("unpack unreachable objects newer than <time>"),
203c8533 3505 PARSE_OPT_OPTARG, option_parse_unpack_unreachable),
4f6d26b1
DS
3506 OPT_BOOL(0, "sparse", &sparse,
3507 N_("use the sparse reachability algorithm")),
99fb6e04 3508 OPT_BOOL(0, "thin", &thin,
4c688120 3509 N_("create thin packs")),
2dacf26d 3510 OPT_BOOL(0, "shallow", &shallow,
3511 N_("create packs suitable for shallow fetches")),
ed7e5fc3 3512 OPT_BOOL(0, "honor-pack-keep", &ignore_packed_keep_on_disk,
4c688120 3513 N_("ignore packs that have companion .keep file")),
ed7e5fc3
NTND
3514 OPT_STRING_LIST(0, "keep-pack", &keep_pack_list, N_("name"),
3515 N_("ignore this pack")),
99fb6e04 3516 OPT_INTEGER(0, "compression", &pack_compression_level,
4c688120 3517 N_("pack compression level")),
99fb6e04 3518 OPT_SET_INT(0, "keep-true-parents", &grafts_replace_parents,
4c688120 3519 N_("do not hide commits by grafts"), 0),
6b8fda2d
VM
3520 OPT_BOOL(0, "use-bitmap-index", &use_bitmap_index,
3521 N_("use a bitmap index if available to speed up counting objects")),
25575015
JK
3522 OPT_SET_INT(0, "write-bitmap-index", &write_bitmap_index,
3523 N_("write a bitmap index together with the pack index"),
3524 WRITE_BITMAP_TRUE),
3525 OPT_SET_INT_F(0, "write-bitmap-index-quiet",
3526 &write_bitmap_index,
3527 N_("write a bitmap index if possible"),
3528 WRITE_BITMAP_QUIET, PARSE_OPT_HIDDEN),
9535ce73 3529 OPT_PARSE_LIST_OBJECTS_FILTER(&filter_options),
203c8533 3530 OPT_CALLBACK_F(0, "missing", NULL, N_("action"),
9535ce73 3531 N_("handling for missing objects"), PARSE_OPT_NONEG,
203c8533 3532 option_parse_missing_action),
0c16cd49
JT
3533 OPT_BOOL(0, "exclude-promisor-objects", &exclude_promisor_objects,
3534 N_("do not pack objects in promisor packfiles")),
28b8a730
JK
3535 OPT_BOOL(0, "delta-islands", &use_delta_islands,
3536 N_("respect islands during delta compression")),
dd4b732d
JT
3537 OPT_STRING_LIST(0, "uri-protocol", &uri_protocols,
3538 N_("protocol"),
3539 N_("exclude any configured uploadpack.blobpackfileuri with this protocol")),
99fb6e04
NTND
3540 OPT_END(),
3541 };
8d1d8f83 3542
0c6804ab
NTND
3543 if (DFS_NUM_STATES > (1 << OE_DFS_STATE_BITS))
3544 BUG("too many dfs states, increase OE_DFS_STATE_BITS");
3545
6ebd1caf 3546 read_replace_refs = 0;
dae556bd 3547
2d657ab9 3548 sparse = git_env_bool("GIT_TEST_PACK_SPARSE", -1);
7211b9e7 3549 prepare_repo_settings(the_repository);
2d657ab9 3550 if (sparse < 0)
7211b9e7
DS
3551 sparse = the_repository->settings.pack_use_sparse;
3552
ebcfb379 3553 reset_pack_idx_option(&pack_idx_opts);
ef90d6d4 3554 git_config(git_pack_config, NULL);
b5d97e6b
JH
3555
3556 progress = isatty(2);
99fb6e04
NTND
3557 argc = parse_options(argc, argv, prefix, pack_objects_options,
3558 pack_usage, 0);
b5d97e6b 3559
99fb6e04
NTND
3560 if (argc) {
3561 base_name = argv[0];
3562 argc--;
b5d97e6b 3563 }
99fb6e04
NTND
3564 if (pack_to_stdout != !base_name || argc)
3565 usage_with_options(pack_usage, pack_objects_options);
b5d97e6b 3566
b5c0cbd8
NTND
3567 if (depth >= (1 << OE_DEPTH_BITS)) {
3568 warning(_("delta chain depth %d is too deep, forcing %d"),
3569 depth, (1 << OE_DEPTH_BITS) - 1);
3570 depth = (1 << OE_DEPTH_BITS) - 1;
3571 }
0cb3c142
NTND
3572 if (cache_max_small_delta_size >= (1U << OE_Z_DELTA_BITS)) {
3573 warning(_("pack.deltaCacheLimit is too high, forcing %d"),
3574 (1U << OE_Z_DELTA_BITS) - 1);
3575 cache_max_small_delta_size = (1U << OE_Z_DELTA_BITS) - 1;
3576 }
b5c0cbd8 3577
22f9b7f3 3578 strvec_push(&rp, "pack-objects");
99fb6e04
NTND
3579 if (thin) {
3580 use_internal_rev_list = 1;
22f9b7f3 3581 strvec_push(&rp, shallow
2dacf26d 3582 ? "--objects-edge-aggressive"
3583 : "--objects-edge");
99fb6e04 3584 } else
22f9b7f3 3585 strvec_push(&rp, "--objects");
b5d97e6b 3586
99fb6e04
NTND
3587 if (rev_list_all) {
3588 use_internal_rev_list = 1;
22f9b7f3 3589 strvec_push(&rp, "--all");
99fb6e04
NTND
3590 }
3591 if (rev_list_reflog) {
3592 use_internal_rev_list = 1;
22f9b7f3 3593 strvec_push(&rp, "--reflog");
99fb6e04 3594 }
c90f9e13
JK
3595 if (rev_list_index) {
3596 use_internal_rev_list = 1;
22f9b7f3 3597 strvec_push(&rp, "--indexed-objects");
99fb6e04
NTND
3598 }
3599 if (rev_list_unpacked) {
3600 use_internal_rev_list = 1;
22f9b7f3 3601 strvec_push(&rp, "--unpacked");
99fb6e04 3602 }
b5d97e6b 3603
0c16cd49
JT
3604 if (exclude_promisor_objects) {
3605 use_internal_rev_list = 1;
3606 fetch_if_missing = 0;
22f9b7f3 3607 strvec_push(&rp, "--exclude-promisor-objects");
0c16cd49 3608 }
58bd77b6
NTND
3609 if (unpack_unreachable || keep_unreachable || pack_loose_unreachable)
3610 use_internal_rev_list = 1;
0c16cd49 3611
99fb6e04
NTND
3612 if (!reuse_object)
3613 reuse_delta = 0;
3614 if (pack_compression_level == -1)
3615 pack_compression_level = Z_DEFAULT_COMPRESSION;
3616 else if (pack_compression_level < 0 || pack_compression_level > Z_BEST_COMPRESSION)
f616db6a 3617 die(_("bad pack compression level %d"), pack_compression_level);
0c45d258
JH
3618
3619 if (!delta_search_threads) /* --threads=0 means autodetect */
3620 delta_search_threads = online_cpus();
3621
9c897c5c 3622 if (!HAVE_THREADS && delta_search_threads != 1)
f616db6a 3623 warning(_("no threads support, ignoring --threads"));
2b84b5a8
JS
3624 if (!pack_to_stdout && !pack_size_limit)
3625 pack_size_limit = pack_size_limit_cfg;
01c12a23 3626 if (pack_to_stdout && pack_size_limit)
f616db6a 3627 die(_("--max-pack-size cannot be used to build a pack for transfer"));
07cf0f24 3628 if (pack_size_limit && pack_size_limit < 1024*1024) {
f616db6a 3629 warning(_("minimum pack size limit is 1 MiB"));
07cf0f24
NP
3630 pack_size_limit = 1024*1024;
3631 }
01c12a23 3632
8d1d8f83 3633 if (!pack_to_stdout && thin)
f616db6a 3634 die(_("--thin cannot be used to build an indexable pack"));
b5d97e6b 3635
ca11b212 3636 if (keep_unreachable && unpack_unreachable)
f616db6a 3637 die(_("--keep-unreachable and --unpack-unreachable are incompatible"));
b1e757f3
JK
3638 if (!rev_list_all || !rev_list_reflog || !rev_list_index)
3639 unpack_unreachable_expiration = 0;
ca11b212 3640
9535ce73
JH
3641 if (filter_options.choice) {
3642 if (!pack_to_stdout)
f616db6a 3643 die(_("cannot use --filter without --stdout"));
9535ce73
JH
3644 }
3645
645c432d
KS
3646 /*
3647 * "soft" reasons not to use bitmaps - for on-disk repack by default we want
3648 *
3649 * - to produce good pack (with bitmap index not-yet-packed objects are
3650 * packed in suboptimal order).
3651 *
3652 * - to use more robust pack-generation codepath (avoiding possible
3653 * bugs in bitmap code and possible bitmap index corruption).
3654 */
3655 if (!pack_to_stdout)
3656 use_bitmap_index_default = 0;
3657
3658 if (use_bitmap_index < 0)
3659 use_bitmap_index = use_bitmap_index_default;
3660
3661 /* "hard" reasons not to use bitmaps; these just won't work at all */
c8813487 3662 if (!use_internal_rev_list || (!pack_to_stdout && write_bitmap_index) || is_repository_shallow(the_repository))
6b8fda2d
VM
3663 use_bitmap_index = 0;
3664
7cc8f971
VM
3665 if (pack_to_stdout || !rev_list_all)
3666 write_bitmap_index = 0;
3667
28b8a730 3668 if (use_delta_islands)
22f9b7f3 3669 strvec_push(&rp, "--topo-order");
28b8a730 3670
4f366275
NP
3671 if (progress && all_progress_implied)
3672 progress = 2;
3673
ed7e5fc3
NTND
3674 add_extra_kept_packs(&keep_pack_list);
3675 if (ignore_packed_keep_on_disk) {
56dfeb62 3676 struct packed_git *p;
454ea2e4 3677 for (p = get_all_packs(the_repository); p; p = p->next)
56dfeb62
JK
3678 if (p->pack_local && p->pack_keep)
3679 break;
3680 if (!p) /* no keep-able packs found */
ed7e5fc3 3681 ignore_packed_keep_on_disk = 0;
56dfeb62
JK
3682 }
3683 if (local) {
3684 /*
ed7e5fc3
NTND
3685 * unlike ignore_packed_keep_on_disk above, we do not
3686 * want to unset "local" based on looking at packs, as
3687 * it also covers non-local objects
56dfeb62
JK
3688 */
3689 struct packed_git *p;
454ea2e4 3690 for (p = get_all_packs(the_repository); p; p = p->next) {
56dfeb62
JK
3691 if (!p->pack_local) {
3692 have_non_local_packs = 1;
3693 break;
3694 }
3695 }
3696 }
b5d97e6b 3697
ae417807
DS
3698 trace2_region_enter("pack-objects", "enumerate-objects",
3699 the_repository);
7c141127 3700 prepare_packing_data(the_repository, &to_pack);
43fa44fa 3701
13aaf148 3702 if (progress)
5af05043 3703 progress_state = start_progress(_("Enumerating objects"), 0);
b5d97e6b
JH
3704 if (!use_internal_rev_list)
3705 read_object_list_from_stdin();
8d1d8f83 3706 else {
edfbb2aa 3707 get_object_list(rp.argc, rp.argv);
22f9b7f3 3708 strvec_clear(&rp);
8d1d8f83 3709 }
0ef95f72 3710 cleanup_preferred_base();
d155254c
MH
3711 if (include_tag && nr_result)
3712 for_each_ref(add_ref_tag, NULL);
4d4fcc54 3713 stop_progress(&progress_state);
ae417807
DS
3714 trace2_region_leave("pack-objects", "enumerate-objects",
3715 the_repository);
96a02f8f 3716
f0b0af1b 3717 if (non_empty && !nr_result)
1c4a2912 3718 return 0;
ae417807
DS
3719 if (nr_result) {
3720 trace2_region_enter("pack-objects", "prepare-pack",
3721 the_repository);
f7ae6a93 3722 prepare_pack(window, depth);
ae417807
DS
3723 trace2_region_leave("pack-objects", "prepare-pack",
3724 the_repository);
3725 }
3726
3727 trace2_region_enter("pack-objects", "write-pack-file", the_repository);
dd4b732d 3728 write_excluded_by_configs();
d01fb92f 3729 write_pack_file();
ae417807
DS
3730 trace2_region_leave("pack-objects", "write-pack-file", the_repository);
3731
ab7cd7bb 3732 if (progress)
f616db6a
NTND
3733 fprintf_ln(stderr,
3734 _("Total %"PRIu32" (delta %"PRIu32"),"
bab28d9f
JK
3735 " reused %"PRIu32" (delta %"PRIu32"),"
3736 " pack-reused %"PRIu32),
3737 written, written_delta, reused, reused_delta,
3738 reuse_packfile_objects);
c323ac7d
LT
3739 return 0;
3740}