]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/index-pack.c
cocci: apply the "packfile.h" part of "the_repository.pending"
[thirdparty/git.git] / builtin / index-pack.c
CommitLineData
2ad9d4cb 1#include "builtin.h"
b2141fc1 2#include "config.h"
9cf6d335
SV
3#include "delta.h"
4#include "pack.h"
5#include "csum-file.h"
8e440259
PE
6#include "blob.h"
7#include "commit.h"
8#include "tag.h"
9#include "tree.h"
96a02f8f 10#include "progress.h"
0153be05 11#include "fsck.h"
d807c4a0 12#include "exec-cmd.h"
4614043c 13#include "streaming.h"
b8a2486f 14#include "thread-utils.h"
4f39cd82 15#include "packfile.h"
a80d72db 16#include "object-store.h"
b14ed5ad 17#include "promisor-remote.h"
9cf6d335
SV
18
19static const char index_pack_usage[] =
e37d0b87 20"git index-pack [-v] [-o <index-file>] [--keep | --keep=<msg>] [--[no-]rev-index] [--verify] [--strict] (<pack-file> | --stdin [--fix-thin] [<pack-file>])";
9cf6d335 21
9cba13ca 22struct object_entry {
aa7e44bf 23 struct pack_idx_entry idx;
2d477051 24 unsigned long size;
41730576
NTND
25 unsigned char hdr_size;
26 signed char type;
27 signed char real_type;
9cf6d335
SV
28};
29
41730576 30struct object_stat {
38a45561
JH
31 unsigned delta_depth;
32 int base_object_no;
53dda6ff
NP
33};
34
f41aebd4 35struct base_data {
b4718cae 36 /* Initialized by make_base(). */
4a438cab 37 struct base_data *base;
03993e13 38 struct object_entry *obj;
2baad220
NTND
39 int ref_first, ref_last;
40 int ofs_first, ofs_last;
f08cbf60
JT
41 /*
42 * Threads should increment retain_data if they are about to call
43 * patch_delta() using this struct's data as a base, and decrement this
44 * when they are done. While retain_data is nonzero, this struct's data
45 * will not be freed even if the delta base cache limit is exceeded.
46 */
47 int retain_data;
48 /*
49 * The number of direct children that have not been fully processed
50 * (entered work_head, entered done_head, left done_head). When this
51 * number reaches zero, this struct base_data can be freed.
52 */
53 int children_remaining;
b4718cae
JT
54
55 /* Not initialized by make_base(). */
f08cbf60 56 struct list_head list;
b4718cae
JT
57 void *data;
58 unsigned long size;
f41aebd4
SP
59};
60
f08cbf60
JT
61/*
62 * Stack of struct base_data that have unprocessed children.
63 * threaded_second_pass() uses this as a source of work (the other being the
64 * objects array).
65 *
66 * Guarded by work_mutex.
67 */
68static LIST_HEAD(work_head);
69
70/*
71 * Stack of struct base_data that have children, all of whom have been
72 * processed or are being processed, and at least one child is being processed.
73 * These struct base_data must be kept around until the last child is
74 * processed.
75 *
76 * Guarded by work_mutex.
77 */
78static LIST_HEAD(done_head);
79
80/*
81 * All threads share one delta base cache.
82 *
83 * base_cache_used is guarded by work_mutex, and base_cache_limit is read-only
84 * in a thread.
85 */
86static size_t base_cache_used;
87static size_t base_cache_limit;
88
b8a2486f 89struct thread_local {
b8a2486f 90 pthread_t thread;
39539495 91 int pack_fd;
b8a2486f
NTND
92};
93
95308d64 94/* Remember to update object flag allocation in object.h */
0153be05
MK
95#define FLAG_LINK (1u<<20)
96#define FLAG_CHECKED (1u<<21)
97
c6458e60
NTND
98struct ofs_delta_entry {
99 off_t offset;
100 int obj_no;
101};
102
103struct ref_delta_entry {
af8caf33 104 struct object_id oid;
636171cb 105 int obj_no;
9cf6d335
SV
106};
107
9cf6d335 108static struct object_entry *objects;
41730576 109static struct object_stat *obj_stat;
c6458e60
NTND
110static struct ofs_delta_entry *ofs_deltas;
111static struct ref_delta_entry *ref_deltas;
b8a2486f 112static struct thread_local nothread_data;
9cf6d335 113static int nr_objects;
c6458e60
NTND
114static int nr_ofs_deltas;
115static int nr_ref_deltas;
116static int ref_deltas_alloc;
636171cb 117static int nr_resolved_deltas;
b8a2486f 118static int nr_threads;
9cf6d335 119
e42797f5 120static int from_stdin;
0153be05 121static int strict;
c6807a40 122static int do_fsck_object;
3745e269 123static struct fsck_options fsck_options = FSCK_OPTIONS_MISSING_GITMODULES;
3c9af366 124static int verbose;
f46c46e4 125static const char *progress_title;
e376f17f 126static int show_resolving_progress;
3aba2fdd 127static int show_stat;
c6807a40 128static int check_self_contained_and_connected;
3c9af366 129
dc6a0757 130static struct progress *progress;
e42797f5 131
2d477051
NP
132/* We always read in 4kB chunks. */
133static unsigned char input_buffer[4096];
d7dd0223
NP
134static unsigned int input_offset, input_len;
135static off_t consumed_bytes;
411481be 136static off_t max_input_size;
d1a0ed18 137static unsigned deepest_delta;
454253f0 138static git_hash_ctx input_ctx;
ee5743ce 139static uint32_t input_crc32;
39539495
NTND
140static int input_fd, output_fd;
141static const char *curr_pack;
2d477051 142
b8a2486f
NTND
143static struct thread_local *thread_data;
144static int nr_dispatched;
145static int threads_active;
146
147static pthread_mutex_t read_mutex;
148#define read_lock() lock_mutex(&read_mutex)
149#define read_unlock() unlock_mutex(&read_mutex)
150
151static pthread_mutex_t counter_mutex;
152#define counter_lock() lock_mutex(&counter_mutex)
153#define counter_unlock() unlock_mutex(&counter_mutex)
154
155static pthread_mutex_t work_mutex;
156#define work_lock() lock_mutex(&work_mutex)
157#define work_unlock() unlock_mutex(&work_mutex)
158
3aba2fdd
NTND
159static pthread_mutex_t deepest_delta_mutex;
160#define deepest_delta_lock() lock_mutex(&deepest_delta_mutex)
161#define deepest_delta_unlock() unlock_mutex(&deepest_delta_mutex)
162
b8a2486f
NTND
163static pthread_key_t key;
164
165static inline void lock_mutex(pthread_mutex_t *mutex)
166{
167 if (threads_active)
168 pthread_mutex_lock(mutex);
169}
170
171static inline void unlock_mutex(pthread_mutex_t *mutex)
172{
173 if (threads_active)
174 pthread_mutex_unlock(mutex);
175}
176
177/*
178 * Mutex and conditional variable can't be statically-initialized on Windows.
179 */
180static void init_thread(void)
181{
39539495 182 int i;
b8a2486f
NTND
183 init_recursive_mutex(&read_mutex);
184 pthread_mutex_init(&counter_mutex, NULL);
185 pthread_mutex_init(&work_mutex, NULL);
3aba2fdd
NTND
186 if (show_stat)
187 pthread_mutex_init(&deepest_delta_mutex, NULL);
b8a2486f 188 pthread_key_create(&key, NULL);
ca56dadb 189 CALLOC_ARRAY(thread_data, nr_threads);
39539495 190 for (i = 0; i < nr_threads; i++) {
6346f704 191 thread_data[i].pack_fd = xopen(curr_pack, O_RDONLY);
39539495
NTND
192 }
193
b8a2486f
NTND
194 threads_active = 1;
195}
196
197static void cleanup_thread(void)
198{
39539495 199 int i;
b8a2486f
NTND
200 if (!threads_active)
201 return;
202 threads_active = 0;
203 pthread_mutex_destroy(&read_mutex);
204 pthread_mutex_destroy(&counter_mutex);
205 pthread_mutex_destroy(&work_mutex);
3aba2fdd
NTND
206 if (show_stat)
207 pthread_mutex_destroy(&deepest_delta_mutex);
39539495
NTND
208 for (i = 0; i < nr_threads; i++)
209 close(thread_data[i].pack_fd);
b8a2486f
NTND
210 pthread_key_delete(key);
211 free(thread_data);
212}
213
a1aad716
ÆAB
214static int mark_link(struct object *obj, enum object_type type,
215 void *data, struct fsck_options *options)
0153be05
MK
216{
217 if (!obj)
218 return -1;
219
220 if (type != OBJ_ANY && obj->type != type)
f2fd0760 221 die(_("object type mismatch at %s"), oid_to_hex(&obj->oid));
0153be05
MK
222
223 obj->flags |= FLAG_LINK;
224 return 0;
225}
226
227/* The content of each linked object must have been checked
228 or it must be already present in the object database */
c6807a40 229static unsigned check_object(struct object *obj)
0153be05
MK
230{
231 if (!obj)
c6807a40 232 return 0;
0153be05
MK
233
234 if (!(obj->flags & FLAG_LINK))
c6807a40 235 return 0;
0153be05
MK
236
237 if (!(obj->flags & FLAG_CHECKED)) {
238 unsigned long size;
0df8e965 239 int type = oid_object_info(the_repository, &obj->oid, &size);
77583e77
JK
240 if (type <= 0)
241 die(_("did not receive expected object %s"),
f2fd0760 242 oid_to_hex(&obj->oid));
77583e77
JK
243 if (type != obj->type)
244 die(_("object %s: expected type %s, found %s"),
f2fd0760 245 oid_to_hex(&obj->oid),
debca9d2 246 type_name(obj->type), type_name(type));
0153be05 247 obj->flags |= FLAG_CHECKED;
c6807a40 248 return 1;
0153be05 249 }
c6807a40
NTND
250
251 return 0;
0153be05
MK
252}
253
c6807a40 254static unsigned check_objects(void)
0153be05 255{
c6807a40 256 unsigned i, max, foreign_nr = 0;
0153be05
MK
257
258 max = get_max_object_index();
79e3aa66
SG
259
260 if (verbose)
261 progress = start_delayed_progress(_("Checking objects"), max);
262
263 for (i = 0; i < max; i++) {
c6807a40 264 foreign_nr += check_object(get_indexed_object(i));
79e3aa66
SG
265 display_progress(progress, i + 1);
266 }
267
268 stop_progress(&progress);
c6807a40 269 return foreign_nr;
0153be05
MK
270}
271
272
636171cb 273/* Discard current buffer used content. */
a6e8a767 274static void flush(void)
636171cb
NP
275{
276 if (input_offset) {
277 if (output_fd >= 0)
278 write_or_die(output_fd, input_buffer, input_offset);
454253f0 279 the_hash_algo->update_fn(&input_ctx, input_buffer, input_offset);
554a2636 280 memmove(input_buffer, input_buffer + input_offset, input_len);
636171cb
NP
281 input_offset = 0;
282 }
283}
284
2d477051
NP
285/*
286 * Make sure at least "min" bytes are available in the buffer, and
287 * return the pointer to the buffer.
288 */
b89c4e93 289static void *fill(int min)
9cf6d335 290{
2d477051
NP
291 if (min <= input_len)
292 return input_buffer + input_offset;
293 if (min > sizeof(input_buffer))
c2b97ecf
NTND
294 die(Q_("cannot fill %d byte",
295 "cannot fill %d bytes",
296 min),
297 min);
636171cb 298 flush();
2d477051 299 do {
8a912bcb 300 ssize_t ret = xread(input_fd, input_buffer + input_len,
2d477051
NP
301 sizeof(input_buffer) - input_len);
302 if (ret <= 0) {
303 if (!ret)
c2b97ecf
NTND
304 die(_("early EOF"));
305 die_errno(_("read error on input"));
2d477051
NP
306 }
307 input_len += ret;
218558af
NP
308 if (from_stdin)
309 display_throughput(progress, consumed_bytes + input_len);
2d477051
NP
310 } while (input_len < min);
311 return input_buffer;
312}
313
314static void use(int bytes)
315{
316 if (bytes > input_len)
c2b97ecf 317 die(_("used more bytes than were available"));
ee5743ce 318 input_crc32 = crc32(input_crc32, input_buffer + input_offset, bytes);
2d477051
NP
319 input_len -= bytes;
320 input_offset += bytes;
d7dd0223
NP
321
322 /* make sure off_t is sufficiently large not to wrap */
c03c8315 323 if (signed_add_overflows(consumed_bytes, bytes))
c2b97ecf 324 die(_("pack too large for current definition of off_t"));
2d477051 325 consumed_bytes += bytes;
0cf5fbc2
MC
326 if (max_input_size && consumed_bytes > max_input_size) {
327 struct strbuf size_limit = STRBUF_INIT;
328 strbuf_humanise_bytes(&size_limit, max_input_size);
329 die(_("pack exceeds maximum allowed size (%s)"),
330 size_limit.buf);
331 }
2d477051 332}
9cf6d335 333
3bb72562 334static const char *open_pack_file(const char *pack_name)
2d477051 335{
e42797f5
NP
336 if (from_stdin) {
337 input_fd = 0;
338 if (!pack_name) {
594fa999
JK
339 struct strbuf tmp_file = STRBUF_INIT;
340 output_fd = odb_mkstemp(&tmp_file,
6e180cdc 341 "pack/tmp_pack_XXXXXX");
594fa999 342 pack_name = strbuf_detach(&tmp_file, NULL);
892e723a 343 } else {
66e905b7 344 output_fd = xopen(pack_name, O_CREAT|O_EXCL|O_RDWR, 0600);
892e723a 345 }
39539495 346 nothread_data.pack_fd = output_fd;
e42797f5 347 } else {
66e905b7 348 input_fd = xopen(pack_name, O_RDONLY);
e42797f5 349 output_fd = -1;
39539495 350 nothread_data.pack_fd = input_fd;
e42797f5 351 }
454253f0 352 the_hash_algo->init_fn(&input_ctx);
e42797f5 353 return pack_name;
9cf6d335
SV
354}
355
356static void parse_pack_header(void)
357{
2d477051 358 struct pack_header *hdr = fill(sizeof(struct pack_header));
9cf6d335
SV
359
360 /* Header consistency check */
9cf6d335 361 if (hdr->hdr_signature != htonl(PACK_SIGNATURE))
c2b97ecf 362 die(_("pack signature mismatch"));
d60fc1c8 363 if (!pack_version_ok(hdr->hdr_version))
f350df42 364 die(_("pack version %"PRIu32" unsupported"),
6e1c2344 365 ntohl(hdr->hdr_version));
9cf6d335
SV
366
367 nr_objects = ntohl(hdr->hdr_entries);
2d477051 368 use(sizeof(struct pack_header));
9cf6d335
SV
369}
370
103e02c7 371__attribute__((format (printf, 2, 3)))
fd3e6747 372static NORETURN void bad_object(off_t offset, const char *format, ...)
9cf6d335
SV
373{
374 va_list params;
375 char buf[1024];
376
377 va_start(params, format);
378 vsnprintf(buf, sizeof(buf), format, params);
379 va_end(params);
fd3e6747
NTND
380 die(_("pack has bad object at offset %"PRIuMAX": %s"),
381 (uintmax_t)offset, buf);
9cf6d335
SV
382}
383
b8a2486f
NTND
384static inline struct thread_local *get_thread_data(void)
385{
2094c5e5
NTND
386 if (HAVE_THREADS) {
387 if (threads_active)
388 return pthread_getspecific(key);
389 assert(!threads_active &&
390 "This should only be reached when all threads are gone");
391 }
b8a2486f
NTND
392 return &nothread_data;
393}
394
b8a2486f
NTND
395static void set_thread_data(struct thread_local *data)
396{
397 if (threads_active)
398 pthread_setspecific(key, data);
399}
b8a2486f 400
6a87ed97
NP
401static void free_base_data(struct base_data *c)
402{
403 if (c->data) {
6a83d902 404 FREE_AND_NULL(c->data);
f08cbf60 405 base_cache_used -= c->size;
6a87ed97
NP
406 }
407}
408
92392b4a
SP
409static void prune_base_data(struct base_data *retain)
410{
f08cbf60 411 struct list_head *pos;
92392b4a 412
f08cbf60 413 if (base_cache_used <= base_cache_limit)
a7f7e84a 414 return;
4a438cab 415
f08cbf60
JT
416 list_for_each_prev(pos, &done_head) {
417 struct base_data *b = list_entry(pos, struct base_data, list);
418 if (b->retain_data || b == retain)
419 continue;
420 if (b->data) {
421 free_base_data(b);
422 if (base_cache_used <= base_cache_limit)
423 return;
424 }
92392b4a 425 }
4a438cab 426
f08cbf60
JT
427 list_for_each_prev(pos, &work_head) {
428 struct base_data *b = list_entry(pos, struct base_data, list);
429 if (b->retain_data || b == retain)
430 continue;
431 if (b->data) {
432 free_base_data(b);
433 if (base_cache_used <= base_cache_limit)
434 return;
435 }
a7f7e84a 436 }
4a438cab
SP
437}
438
681b07de
NTND
439static int is_delta_type(enum object_type type)
440{
441 return (type == OBJ_REF_DELTA || type == OBJ_OFS_DELTA);
442}
443
da49a7da 444static void *unpack_entry_data(off_t offset, unsigned long size,
454253f0 445 enum object_type type, struct object_id *oid)
9cf6d335 446{
9ec2dde9 447 static char fixed_buf[8192];
7ce4721a 448 int status;
ef49a7a0 449 git_zstream stream;
9ec2dde9 450 void *buf;
454253f0 451 git_hash_ctx c;
681b07de
NTND
452 char hdr[32];
453 int hdrlen;
454
455 if (!is_delta_type(type)) {
b04cdea4 456 hdrlen = format_object_header(hdr, sizeof(hdr), type, size);
454253f0 457 the_hash_algo->init_fn(&c);
458 the_hash_algo->update_fn(&c, hdr, hdrlen);
681b07de 459 } else
454253f0 460 oid = NULL;
9ec2dde9
NTND
461 if (type == OBJ_BLOB && size > big_file_threshold)
462 buf = fixed_buf;
463 else
a1e920a0 464 buf = xmallocz(size);
9cf6d335
SV
465
466 memset(&stream, 0, sizeof(stream));
7ce4721a 467 git_inflate_init(&stream);
9cf6d335 468 stream.next_out = buf;
9ec2dde9 469 stream.avail_out = buf == fixed_buf ? sizeof(fixed_buf) : size;
9cf6d335 470
7ce4721a 471 do {
681b07de 472 unsigned char *last_out = stream.next_out;
2d477051
NP
473 stream.next_in = fill(1);
474 stream.avail_in = input_len;
7ce4721a
NP
475 status = git_inflate(&stream, 0);
476 use(input_len - stream.avail_in);
454253f0 477 if (oid)
478 the_hash_algo->update_fn(&c, last_out, stream.next_out - last_out);
9ec2dde9
NTND
479 if (buf == fixed_buf) {
480 stream.next_out = buf;
481 stream.avail_out = sizeof(fixed_buf);
482 }
7ce4721a
NP
483 } while (status == Z_OK);
484 if (stream.total_out != size || status != Z_STREAM_END)
c2b97ecf 485 bad_object(offset, _("inflate returned %d"), status);
39c68542 486 git_inflate_end(&stream);
454253f0 487 if (oid)
5951bf46 488 the_hash_algo->final_oid_fn(oid, &c);
9ec2dde9 489 return buf == fixed_buf ? NULL : buf;
9cf6d335
SV
490}
491
681b07de 492static void *unpack_raw_entry(struct object_entry *obj,
c6458e60 493 off_t *ofs_offset,
454253f0 494 struct object_id *ref_oid,
495 struct object_id *oid)
9cf6d335 496{
48fb7deb
LT
497 unsigned char *p;
498 unsigned long size, c;
d7dd0223 499 off_t base_offset;
9cf6d335 500 unsigned shift;
ee5743ce 501 void *data;
9cf6d335 502
aa7e44bf 503 obj->idx.offset = consumed_bytes;
1e4cd68c 504 input_crc32 = crc32(0, NULL, 0);
2d477051
NP
505
506 p = fill(1);
507 c = *p;
508 use(1);
509 obj->type = (c >> 4) & 7;
9cf6d335
SV
510 size = (c & 15);
511 shift = 4;
512 while (c & 0x80) {
2d477051
NP
513 p = fill(1);
514 c = *p;
515 use(1);
48fb7deb 516 size += (c & 0x7f) << shift;
9cf6d335
SV
517 shift += 7;
518 }
2d477051 519 obj->size = size;
9cf6d335 520
2d477051 521 switch (obj->type) {
eb32d236 522 case OBJ_REF_DELTA:
92e2cab9 523 oidread(ref_oid, fill(the_hash_algo->rawsz));
454253f0 524 use(the_hash_algo->rawsz);
53dda6ff
NP
525 break;
526 case OBJ_OFS_DELTA:
2d477051
NP
527 p = fill(1);
528 c = *p;
529 use(1);
53dda6ff
NP
530 base_offset = c & 127;
531 while (c & 128) {
532 base_offset += 1;
8723f216 533 if (!base_offset || MSB(base_offset, 7))
c2b97ecf 534 bad_object(obj->idx.offset, _("offset value overflow for delta base object"));
2d477051
NP
535 p = fill(1);
536 c = *p;
537 use(1);
53dda6ff
NP
538 base_offset = (base_offset << 7) + (c & 127);
539 }
c6458e60
NTND
540 *ofs_offset = obj->idx.offset - base_offset;
541 if (*ofs_offset <= 0 || *ofs_offset >= obj->idx.offset)
c2b97ecf 542 bad_object(obj->idx.offset, _("delta base offset is out of bound"));
53dda6ff 543 break;
9cf6d335
SV
544 case OBJ_COMMIT:
545 case OBJ_TREE:
546 case OBJ_BLOB:
547 case OBJ_TAG:
9cf6d335
SV
548 break;
549 default:
c2b97ecf 550 bad_object(obj->idx.offset, _("unknown object type %d"), obj->type);
9cf6d335 551 }
aa7e44bf 552 obj->hdr_size = consumed_bytes - obj->idx.offset;
2d477051 553
454253f0 554 data = unpack_entry_data(obj->idx.offset, obj->size, obj->type, oid);
aa7e44bf 555 obj->idx.crc32 = input_crc32;
ee5743ce 556 return data;
2d477051
NP
557}
558
8a2e163c
NTND
559static void *unpack_data(struct object_entry *obj,
560 int (*consume)(const unsigned char *, unsigned long, void *),
561 void *cb_data)
2d477051 562{
a91ef6e7 563 off_t from = obj[0].idx.offset + obj[0].hdr_size;
7171a0b0 564 off_t len = obj[1].idx.offset - from;
776ea370 565 unsigned char *data, *inbuf;
ef49a7a0 566 git_zstream stream;
776ea370 567 int status;
9cf6d335 568
a1e920a0 569 data = xmallocz(consume ? 64*1024 : obj->size);
7171a0b0 570 inbuf = xmalloc((len < 64*1024) ? (int)len : 64*1024);
776ea370 571
2d477051 572 memset(&stream, 0, sizeof(stream));
776ea370 573 git_inflate_init(&stream);
2d477051 574 stream.next_out = data;
8a2e163c 575 stream.avail_out = consume ? 64*1024 : obj->size;
776ea370
NP
576
577 do {
7171a0b0 578 ssize_t n = (len < 64*1024) ? (ssize_t)len : 64*1024;
53f52cd9 579 n = xpread(get_thread_data()->pack_fd, inbuf, n, from);
776ea370 580 if (n < 0)
c2b97ecf 581 die_errno(_("cannot pread pack file"));
776ea370 582 if (!n)
7171a0b0
NTND
583 die(Q_("premature end of pack file, %"PRIuMAX" byte missing",
584 "premature end of pack file, %"PRIuMAX" bytes missing",
6f693252 585 len),
7171a0b0 586 (uintmax_t)len);
776ea370
NP
587 from += n;
588 len -= n;
589 stream.next_in = inbuf;
590 stream.avail_in = n;
f8b09038
JK
591 if (!consume)
592 status = git_inflate(&stream, 0);
593 else {
594 do {
595 status = git_inflate(&stream, 0);
596 if (consume(data, stream.next_out - data, cb_data)) {
597 free(inbuf);
598 free(data);
599 return NULL;
600 }
601 stream.next_out = data;
602 stream.avail_out = 64*1024;
603 } while (status == Z_OK && stream.avail_in);
8a2e163c 604 }
776ea370
NP
605 } while (len && status == Z_OK && !stream.avail_in);
606
607 /* This has been inflated OK when first encountered, so... */
608 if (status != Z_STREAM_END || stream.total_out != obj->size)
c2b97ecf 609 die(_("serious inflate inconsistency"));
776ea370
NP
610
611 git_inflate_end(&stream);
612 free(inbuf);
8a2e163c 613 if (consume) {
6a83d902 614 FREE_AND_NULL(data);
8a2e163c 615 }
9cf6d335
SV
616 return data;
617}
618
8a2e163c
NTND
619static void *get_data_from_pack(struct object_entry *obj)
620{
621 return unpack_data(obj, NULL, NULL);
622}
623
c6458e60
NTND
624static int compare_ofs_delta_bases(off_t offset1, off_t offset2,
625 enum object_type type1,
626 enum object_type type2)
7218a215
JH
627{
628 int cmp = type1 - type2;
629 if (cmp)
630 return cmp;
f0e7f11d
JK
631 return offset1 < offset2 ? -1 :
632 offset1 > offset2 ? 1 :
633 0;
7218a215
JH
634}
635
fc968e26 636static int find_ofs_delta(const off_t offset)
9cf6d335 637{
c6458e60
NTND
638 int first = 0, last = nr_ofs_deltas;
639
640 while (first < last) {
19716b21 641 int next = first + (last - first) / 2;
c6458e60
NTND
642 struct ofs_delta_entry *delta = &ofs_deltas[next];
643 int cmp;
644
645 cmp = compare_ofs_delta_bases(offset, delta->offset,
fc968e26
JT
646 OBJ_OFS_DELTA,
647 objects[delta->obj_no].type);
c6458e60
NTND
648 if (!cmp)
649 return next;
650 if (cmp < 0) {
651 last = next;
652 continue;
653 }
654 first = next+1;
655 }
656 return -first-1;
9cf6d335
SV
657}
658
c6458e60 659static void find_ofs_delta_children(off_t offset,
fc968e26 660 int *first_index, int *last_index)
9cf6d335 661{
fc968e26 662 int first = find_ofs_delta(offset);
9cf6d335 663 int last = first;
c6458e60 664 int end = nr_ofs_deltas - 1;
9cf6d335 665
6a87ed97
NP
666 if (first < 0) {
667 *first_index = 0;
668 *last_index = -1;
669 return;
670 }
c6458e60 671 while (first > 0 && ofs_deltas[first - 1].offset == offset)
9cf6d335 672 --first;
c6458e60
NTND
673 while (last < end && ofs_deltas[last + 1].offset == offset)
674 ++last;
675 *first_index = first;
676 *last_index = last;
677}
678
af8caf33 679static int compare_ref_delta_bases(const struct object_id *oid1,
680 const struct object_id *oid2,
c6458e60
NTND
681 enum object_type type1,
682 enum object_type type2)
683{
684 int cmp = type1 - type2;
685 if (cmp)
686 return cmp;
af8caf33 687 return oidcmp(oid1, oid2);
c6458e60
NTND
688}
689
fc968e26 690static int find_ref_delta(const struct object_id *oid)
c6458e60
NTND
691{
692 int first = 0, last = nr_ref_deltas;
693
694 while (first < last) {
19716b21 695 int next = first + (last - first) / 2;
c6458e60
NTND
696 struct ref_delta_entry *delta = &ref_deltas[next];
697 int cmp;
698
af8caf33 699 cmp = compare_ref_delta_bases(oid, &delta->oid,
fc968e26
JT
700 OBJ_REF_DELTA,
701 objects[delta->obj_no].type);
c6458e60
NTND
702 if (!cmp)
703 return next;
704 if (cmp < 0) {
705 last = next;
706 continue;
707 }
708 first = next+1;
709 }
710 return -first-1;
711}
712
af8caf33 713static void find_ref_delta_children(const struct object_id *oid,
fc968e26 714 int *first_index, int *last_index)
c6458e60 715{
fc968e26 716 int first = find_ref_delta(oid);
c6458e60
NTND
717 int last = first;
718 int end = nr_ref_deltas - 1;
719
720 if (first < 0) {
721 *first_index = 0;
722 *last_index = -1;
723 return;
724 }
4a7e27e9 725 while (first > 0 && oideq(&ref_deltas[first - 1].oid, oid))
c6458e60 726 --first;
4a7e27e9 727 while (last < end && oideq(&ref_deltas[last + 1].oid, oid))
9cf6d335
SV
728 ++last;
729 *first_index = first;
730 *last_index = last;
9cf6d335
SV
731}
732
4614043c
NTND
733struct compare_data {
734 struct object_entry *entry;
735 struct git_istream *st;
736 unsigned char *buf;
737 unsigned long buf_size;
738};
739
740static int compare_objects(const unsigned char *buf, unsigned long size,
741 void *cb_data)
742{
743 struct compare_data *data = cb_data;
744
745 if (data->buf_size < size) {
746 free(data->buf);
747 data->buf = xmalloc(size);
748 data->buf_size = size;
749 }
750
751 while (size) {
752 ssize_t len = read_istream(data->st, data->buf, size);
753 if (len == 0)
754 die(_("SHA1 COLLISION FOUND WITH %s !"),
e6a492b7 755 oid_to_hex(&data->entry->idx.oid));
4614043c
NTND
756 if (len < 0)
757 die(_("unable to read %s"),
e6a492b7 758 oid_to_hex(&data->entry->idx.oid));
4614043c
NTND
759 if (memcmp(buf, data->buf, len))
760 die(_("SHA1 COLLISION FOUND WITH %s !"),
e6a492b7 761 oid_to_hex(&data->entry->idx.oid));
4614043c
NTND
762 size -= len;
763 buf += len;
764 }
765 return 0;
766}
767
768static int check_collison(struct object_entry *entry)
769{
770 struct compare_data data;
771 enum object_type type;
772 unsigned long size;
773
774 if (entry->size <= big_file_threshold || entry->type != OBJ_BLOB)
775 return -1;
776
777 memset(&data, 0, sizeof(data));
778 data.entry = entry;
c8123e72
MT
779 data.st = open_istream(the_repository, &entry->idx.oid, &type, &size,
780 NULL);
4614043c
NTND
781 if (!data.st)
782 return -1;
783 if (size != entry->size || type != entry->type)
784 die(_("SHA1 COLLISION FOUND WITH %s !"),
e6a492b7 785 oid_to_hex(&entry->idx.oid));
4614043c
NTND
786 unpack_data(entry, compare_objects, &data);
787 close_istream(data.st);
788 free(data.buf);
789 return 0;
790}
791
9ec2dde9
NTND
792static void sha1_object(const void *data, struct object_entry *obj_entry,
793 unsigned long size, enum object_type type,
3e930981 794 const struct object_id *oid)
9cf6d335 795{
9ec2dde9 796 void *new_data = NULL;
29401e15 797 int collision_test_needed = 0;
9ec2dde9
NTND
798
799 assert(data || obj_entry);
800
29401e15
JK
801 if (startup_info->have_repository) {
802 read_lock();
e83e71c5 803 collision_test_needed =
bc726bd0
ÆAB
804 repo_has_object_file_with_flags(the_repository, oid,
805 OBJECT_INFO_QUICK);
29401e15
JK
806 read_unlock();
807 }
4614043c
NTND
808
809 if (collision_test_needed && !data) {
810 read_lock();
811 if (!check_collison(obj_entry))
812 collision_test_needed = 0;
813 read_unlock();
814 }
815 if (collision_test_needed) {
8685da42
NP
816 void *has_data;
817 enum object_type has_type;
818 unsigned long has_size;
4614043c 819 read_lock();
0df8e965 820 has_type = oid_object_info(the_repository, oid, &has_size);
51054177 821 if (has_type < 0)
3e930981 822 die(_("cannot read existing object info %s"), oid_to_hex(oid));
4614043c 823 if (has_type != type || has_size != size)
3e930981 824 die(_("SHA1 COLLISION FOUND WITH %s !"), oid_to_hex(oid));
bc726bd0
ÆAB
825 has_data = repo_read_object_file(the_repository, oid,
826 &has_type, &has_size);
b8a2486f 827 read_unlock();
4614043c
NTND
828 if (!data)
829 data = new_data = get_data_from_pack(obj_entry);
8685da42 830 if (!has_data)
3e930981 831 die(_("cannot read existing object %s"), oid_to_hex(oid));
8685da42
NP
832 if (size != has_size || type != has_type ||
833 memcmp(data, has_data, size) != 0)
3e930981 834 die(_("SHA1 COLLISION FOUND WITH %s !"), oid_to_hex(oid));
bbf4b41b 835 free(has_data);
4614043c 836 }
b8a2486f 837
ffb2c0fe 838 if (strict || do_fsck_object) {
b8a2486f 839 read_lock();
0153be05 840 if (type == OBJ_BLOB) {
da14a7ff 841 struct blob *blob = lookup_blob(the_repository, oid);
0153be05
MK
842 if (blob)
843 blob->object.flags |= FLAG_CHECKED;
844 else
3e930981 845 die(_("invalid blob object %s"), oid_to_hex(oid));
73c3f0f7
JK
846 if (do_fsck_object &&
847 fsck_object(&blob->object, (void *)data, size, &fsck_options))
848 die(_("fsck error in packed object"));
0153be05
MK
849 } else {
850 struct object *obj;
851 int eaten;
852 void *buf = (void *) data;
853
920734b0 854 assert(data && "data can only be NULL for large _blobs_");
9ec2dde9 855
0153be05
MK
856 /*
857 * we do not need to free the memory here, as the
858 * buf is deleted by the caller.
859 */
1ec5bfd2
SB
860 obj = parse_object_buffer(the_repository, oid, type,
861 size, buf,
c251c83d 862 &eaten);
0153be05 863 if (!obj)
debca9d2 864 die(_("invalid %s"), type_name(type));
c6807a40 865 if (do_fsck_object &&
22410549 866 fsck_object(obj, buf, size, &fsck_options))
db5a58c1 867 die(_("fsck error in packed object"));
ffb2c0fe 868 if (strict && fsck_walk(obj, NULL, &fsck_options))
f2fd0760 869 die(_("Not all child objects of %s are reachable"), oid_to_hex(&obj->oid));
0153be05
MK
870
871 if (obj->type == OBJ_TREE) {
872 struct tree *item = (struct tree *) obj;
873 item->buffer = NULL;
6e454b9a 874 obj->parsed = 0;
0153be05
MK
875 }
876 if (obj->type == OBJ_COMMIT) {
877 struct commit *commit = (struct commit *) obj;
8597ea3a 878 if (detach_commit_buffer(commit, NULL) != data)
033abf97 879 BUG("parse_object_buffer transmogrified our buffer");
0153be05
MK
880 }
881 obj->flags |= FLAG_CHECKED;
882 }
b8a2486f 883 read_unlock();
0153be05 884 }
9ec2dde9
NTND
885
886 free(new_data);
9cf6d335
SV
887}
888
20e95d0a 889/*
ec6a8f97 890 * Ensure that this node has been reconstructed and return its contents.
20e95d0a 891 *
ec6a8f97
JT
892 * In the typical and best case, this node would already be reconstructed
893 * (through the invocation to resolve_delta() in threaded_second_pass()) and it
894 * would not be pruned. However, if pruning of this node was necessary due to
895 * reaching delta_base_cache_limit, this function will find the closest
896 * ancestor with reconstructed data that has not been pruned (or if there is
897 * none, the ultimate base object), and reconstruct each node in the delta
898 * chain in order to generate the reconstructed data for this node.
20e95d0a 899 */
92392b4a
SP
900static void *get_base_data(struct base_data *c)
901{
902 if (!c->data) {
903 struct object_entry *obj = c->obj;
20e95d0a
NTND
904 struct base_data **delta = NULL;
905 int delta_nr = 0, delta_alloc = 0;
92392b4a 906
20e95d0a
NTND
907 while (is_delta_type(c->obj->type) && !c->data) {
908 ALLOC_GROW(delta, delta_nr + 1, delta_alloc);
909 delta[delta_nr++] = c;
910 c = c->base;
911 }
912 if (!delta_nr) {
913 c->data = get_data_from_pack(obj);
914 c->size = obj->size;
f08cbf60 915 base_cache_used += c->size;
20e95d0a
NTND
916 prune_base_data(c);
917 }
918 for (; delta_nr > 0; delta_nr--) {
919 void *base, *raw;
920 c = delta[delta_nr - 1];
921 obj = c->obj;
922 base = get_base_data(c->base);
923 raw = get_data_from_pack(obj);
92392b4a
SP
924 c->data = patch_delta(
925 base, c->base->size,
926 raw, obj->size,
927 &c->size);
928 free(raw);
929 if (!c->data)
c2b97ecf 930 bad_object(obj->idx.offset, _("failed to apply delta"));
f08cbf60 931 base_cache_used += c->size;
20e95d0a 932 prune_base_data(c);
9441b61d 933 }
20e95d0a 934 free(delta);
92392b4a
SP
935 }
936 return c->data;
937}
938
b4718cae
JT
939static struct base_data *make_base(struct object_entry *obj,
940 struct base_data *parent)
9cf6d335 941{
b4718cae
JT
942 struct base_data *base = xcalloc(1, sizeof(struct base_data));
943 base->base = parent;
944 base->obj = obj;
945 find_ref_delta_children(&obj->idx.oid,
946 &base->ref_first, &base->ref_last);
947 find_ofs_delta_children(obj->idx.offset,
948 &base->ofs_first, &base->ofs_last);
f08cbf60
JT
949 base->children_remaining = base->ref_last - base->ref_first +
950 base->ofs_last - base->ofs_first + 2;
b4718cae
JT
951 return base;
952}
953
954static struct base_data *resolve_delta(struct object_entry *delta_obj,
955 struct base_data *base)
956{
ee6f0583 957 void *delta_data, *result_data;
b4718cae
JT
958 struct base_data *result;
959 unsigned long result_size;
9cf6d335 960
3aba2fdd 961 if (show_stat) {
41730576
NTND
962 int i = delta_obj - objects;
963 int j = base->obj - objects;
964 obj_stat[i].delta_depth = obj_stat[j].delta_depth + 1;
3aba2fdd 965 deepest_delta_lock();
41730576
NTND
966 if (deepest_delta < obj_stat[i].delta_depth)
967 deepest_delta = obj_stat[i].delta_depth;
3aba2fdd 968 deepest_delta_unlock();
41730576 969 obj_stat[i].base_object_no = j;
3aba2fdd 970 }
636171cb 971 delta_data = get_data_from_pack(delta_obj);
ee6f0583
JT
972 assert(base->data);
973 result_data = patch_delta(base->data, base->size,
b4718cae 974 delta_data, delta_obj->size, &result_size);
9cf6d335 975 free(delta_data);
b4718cae 976 if (!result_data)
c2b97ecf 977 bad_object(delta_obj->idx.offset, _("failed to apply delta"));
b4718cae 978 hash_object_file(the_hash_algo, result_data, result_size,
44439c1c 979 delta_obj->real_type, &delta_obj->idx.oid);
b4718cae 980 sha1_object(result_data, NULL, result_size, delta_obj->real_type,
3e930981 981 &delta_obj->idx.oid);
b4718cae
JT
982
983 result = make_base(delta_obj, base);
f08cbf60
JT
984 result->data = result_data;
985 result->size = result_size;
b4718cae 986
b8a2486f 987 counter_lock();
636171cb 988 nr_resolved_deltas++;
b8a2486f 989 counter_unlock();
ab791dd1 990
b4718cae 991 return result;
9cf6d335
SV
992}
993
c6458e60 994static int compare_ofs_delta_entry(const void *a, const void *b)
9cf6d335 995{
c6458e60
NTND
996 const struct ofs_delta_entry *delta_a = a;
997 const struct ofs_delta_entry *delta_b = b;
7218a215 998
f0e7f11d
JK
999 return delta_a->offset < delta_b->offset ? -1 :
1000 delta_a->offset > delta_b->offset ? 1 :
1001 0;
c6458e60
NTND
1002}
1003
1004static int compare_ref_delta_entry(const void *a, const void *b)
9cf6d335 1005{
c6458e60
NTND
1006 const struct ref_delta_entry *delta_a = a;
1007 const struct ref_delta_entry *delta_b = b;
7218a215 1008
af8caf33 1009 return oidcmp(&delta_a->oid, &delta_b->oid);
9cf6d335
SV
1010}
1011
b8a2486f
NTND
1012static void *threaded_second_pass(void *data)
1013{
f08cbf60
JT
1014 if (data)
1015 set_thread_data(data);
b8a2486f 1016 for (;;) {
f08cbf60
JT
1017 struct base_data *parent = NULL;
1018 struct object_entry *child_obj;
1019 struct base_data *child;
1020
cea69151
JK
1021 counter_lock();
1022 display_progress(progress, nr_resolved_deltas);
1023 counter_unlock();
1024
8f82aad4 1025 work_lock();
f08cbf60
JT
1026 if (list_empty(&work_head)) {
1027 /*
1028 * Take an object from the object array.
1029 */
1030 while (nr_dispatched < nr_objects &&
1031 is_delta_type(objects[nr_dispatched].type))
1032 nr_dispatched++;
1033 if (nr_dispatched >= nr_objects) {
1034 work_unlock();
1035 break;
1036 }
1037 child_obj = &objects[nr_dispatched++];
1038 } else {
1039 /*
1040 * Peek at the top of the stack, and take a child from
1041 * it.
1042 */
1043 parent = list_first_entry(&work_head, struct base_data,
1044 list);
1045
1046 if (parent->ref_first <= parent->ref_last) {
1047 int offset = ref_deltas[parent->ref_first++].obj_no;
1048 child_obj = objects + offset;
1049 if (child_obj->real_type != OBJ_REF_DELTA)
1050 die("REF_DELTA at offset %"PRIuMAX" already resolved (duplicate base %s?)",
1051 (uintmax_t) child_obj->idx.offset,
1052 oid_to_hex(&parent->obj->idx.oid));
1053 child_obj->real_type = parent->obj->real_type;
1054 } else {
1055 child_obj = objects +
1056 ofs_deltas[parent->ofs_first++].obj_no;
1057 assert(child_obj->real_type == OBJ_OFS_DELTA);
1058 child_obj->real_type = parent->obj->real_type;
1059 }
1060
1061 if (parent->ref_first > parent->ref_last &&
1062 parent->ofs_first > parent->ofs_last) {
1063 /*
1064 * This parent has run out of children, so move
1065 * it to done_head.
1066 */
1067 list_del(&parent->list);
1068 list_add(&parent->list, &done_head);
1069 }
1070
1071 /*
1072 * Ensure that the parent has data, since we will need
1073 * it later.
1074 *
1075 * NEEDSWORK: If parent data needs to be reloaded, this
1076 * prolongs the time that the current thread spends in
1077 * the mutex. A mitigating factor is that parent data
1078 * needs to be reloaded only if the delta base cache
1079 * limit is exceeded, so in the typical case, this does
1080 * not happen.
1081 */
1082 get_base_data(parent);
1083 parent->retain_data++;
b8a2486f 1084 }
b8a2486f
NTND
1085 work_unlock();
1086
f08cbf60
JT
1087 if (parent) {
1088 child = resolve_delta(child_obj, parent);
1089 if (!child->children_remaining)
1090 FREE_AND_NULL(child->data);
1091 } else {
1092 child = make_base(child_obj, NULL);
1093 if (child->children_remaining) {
1094 /*
1095 * Since this child has its own delta children,
1096 * we will need this data in the future.
1097 * Inflate now so that future iterations will
1098 * have access to this object's data while
1099 * outside the work mutex.
1100 */
1101 child->data = get_data_from_pack(child_obj);
1102 child->size = child_obj->size;
1103 }
1104 }
1105
1106 work_lock();
1107 if (parent)
1108 parent->retain_data--;
1109 if (child->data) {
1110 /*
1111 * This child has its own children, so add it to
1112 * work_head.
1113 */
1114 list_add(&child->list, &work_head);
1115 base_cache_used += child->size;
1116 prune_base_data(NULL);
f2bcc69e 1117 free_base_data(child);
f08cbf60
JT
1118 } else {
1119 /*
1120 * This child does not have its own children. It may be
1121 * the last descendant of its ancestors; free those
1122 * that we can.
1123 */
1124 struct base_data *p = parent;
1125
1126 while (p) {
1127 struct base_data *next_p;
1128
1129 p->children_remaining--;
1130 if (p->children_remaining)
1131 break;
1132
1133 next_p = p->base;
1134 free_base_data(p);
1135 list_del(&p->list);
1136 free(p);
1137
1138 p = next_p;
1139 }
f2bcc69e 1140 FREE_AND_NULL(child);
f08cbf60
JT
1141 }
1142 work_unlock();
b8a2486f
NTND
1143 }
1144 return NULL;
1145}
b8a2486f 1146
5272f755
NTND
1147/*
1148 * First pass:
1149 * - find locations of all objects;
1150 * - calculate SHA1 of all non-delta objects;
1151 * - remember base (SHA1 or offset) for all deltas.
1152 */
454253f0 1153static void parse_pack_objects(unsigned char *hash)
9cf6d335 1154{
9ec2dde9 1155 int i, nr_delays = 0;
c6458e60 1156 struct ofs_delta_entry *ofs_delta = ofs_deltas;
454253f0 1157 struct object_id ref_delta_oid;
2d477051 1158 struct stat st;
9cf6d335 1159
13aaf148 1160 if (verbose)
29e63ed3 1161 progress = start_progress(
f46c46e4 1162 progress_title ? progress_title :
c2b97ecf 1163 from_stdin ? _("Receiving objects") : _("Indexing objects"),
29e63ed3 1164 nr_objects);
9cf6d335
SV
1165 for (i = 0; i < nr_objects; i++) {
1166 struct object_entry *obj = &objects[i];
c6458e60 1167 void *data = unpack_raw_entry(obj, &ofs_delta->offset,
454253f0 1168 &ref_delta_oid,
1169 &obj->idx.oid);
9cf6d335 1170 obj->real_type = obj->type;
c6458e60
NTND
1171 if (obj->type == OBJ_OFS_DELTA) {
1172 nr_ofs_deltas++;
1173 ofs_delta->obj_no = i;
1174 ofs_delta++;
1175 } else if (obj->type == OBJ_REF_DELTA) {
1176 ALLOC_GROW(ref_deltas, nr_ref_deltas + 1, ref_deltas_alloc);
af8caf33 1177 oidcpy(&ref_deltas[nr_ref_deltas].oid, &ref_delta_oid);
c6458e60
NTND
1178 ref_deltas[nr_ref_deltas].obj_no = i;
1179 nr_ref_deltas++;
9ec2dde9
NTND
1180 } else if (!data) {
1181 /* large blobs, check later */
1182 obj->real_type = OBJ_BAD;
1183 nr_delays++;
9cf6d335 1184 } else
e6a492b7 1185 sha1_object(data, NULL, obj->size, obj->type,
3e930981 1186 &obj->idx.oid);
9cf6d335 1187 free(data);
4d4fcc54 1188 display_progress(progress, i+1);
9cf6d335 1189 }
aa7e44bf 1190 objects[i].idx.offset = consumed_bytes;
4d4fcc54 1191 stop_progress(&progress);
2d477051
NP
1192
1193 /* Check pack integrity */
636171cb 1194 flush();
454253f0 1195 the_hash_algo->final_fn(hash, &input_ctx);
67947c34 1196 if (!hasheq(fill(the_hash_algo->rawsz), hash))
c2b97ecf 1197 die(_("pack is corrupted (SHA1 mismatch)"));
454253f0 1198 use(the_hash_algo->rawsz);
2d477051
NP
1199
1200 /* If input_fd is a file, we should have reached its end now. */
1201 if (fstat(input_fd, &st))
c2b97ecf 1202 die_errno(_("cannot fstat packfile"));
fa257b05
JS
1203 if (S_ISREG(st.st_mode) &&
1204 lseek(input_fd, 0, SEEK_CUR) - input_len != st.st_size)
c2b97ecf 1205 die(_("pack has junk at the end"));
9ec2dde9
NTND
1206
1207 for (i = 0; i < nr_objects; i++) {
1208 struct object_entry *obj = &objects[i];
1209 if (obj->real_type != OBJ_BAD)
1210 continue;
1211 obj->real_type = obj->type;
e6a492b7 1212 sha1_object(NULL, obj, obj->size, obj->type,
3e930981 1213 &obj->idx.oid);
9ec2dde9
NTND
1214 nr_delays--;
1215 }
1216 if (nr_delays)
1217 die(_("confusion beyond insanity in parse_pack_objects()"));
5272f755
NTND
1218}
1219
1220/*
1221 * Second pass:
1222 * - for all non-delta objects, look if it is used as a base for
1223 * deltas;
1224 * - if used as a base, uncompress the object and apply all deltas,
1225 * recursively checking if the resulting object is used as a base
1226 * for some more deltas.
1227 */
1228static void resolve_deltas(void)
1229{
1230 int i;
9cf6d335 1231
c6458e60 1232 if (!nr_ofs_deltas && !nr_ref_deltas)
3c9af366
NP
1233 return;
1234
53dda6ff 1235 /* Sort deltas by base SHA1/offset for fast searching */
9ed0d8d6
RS
1236 QSORT(ofs_deltas, nr_ofs_deltas, compare_ofs_delta_entry);
1237 QSORT(ref_deltas, nr_ref_deltas, compare_ref_delta_entry);
9cf6d335 1238
e376f17f 1239 if (verbose || show_resolving_progress)
c6458e60
NTND
1240 progress = start_progress(_("Resolving deltas"),
1241 nr_ref_deltas + nr_ofs_deltas);
b8a2486f 1242
b8a2486f 1243 nr_dispatched = 0;
f08cbf60 1244 base_cache_limit = delta_base_cache_limit * nr_threads;
b8a2486f
NTND
1245 if (nr_threads > 1 || getenv("GIT_FORCE_THREADS")) {
1246 init_thread();
1247 for (i = 0; i < nr_threads; i++) {
1248 int ret = pthread_create(&thread_data[i].thread, NULL,
1249 threaded_second_pass, thread_data + i);
1250 if (ret)
f350df42
NTND
1251 die(_("unable to create thread: %s"),
1252 strerror(ret));
b8a2486f
NTND
1253 }
1254 for (i = 0; i < nr_threads; i++)
1255 pthread_join(thread_data[i].thread, NULL);
1256 cleanup_thread();
1257 return;
1258 }
46e6fb1e 1259 threaded_second_pass(&nothread_data);
636171cb
NP
1260}
1261
5272f755
NTND
1262/*
1263 * Third pass:
1264 * - append objects to convert thin pack to full pack if required
454253f0 1265 * - write the final pack hash
5272f755 1266 */
98a3beab 1267static void fix_unresolved_deltas(struct hashfile *f);
454253f0 1268static void conclude_pack(int fix_thin_pack, const char *curr_pack, unsigned char *pack_hash)
5272f755 1269{
c6458e60 1270 if (nr_ref_deltas + nr_ofs_deltas == nr_resolved_deltas) {
5272f755 1271 stop_progress(&progress);
454253f0 1272 /* Flush remaining pack final hash. */
5272f755
NTND
1273 flush();
1274 return;
1275 }
1276
1277 if (fix_thin_pack) {
98a3beab 1278 struct hashfile *f;
454253f0 1279 unsigned char read_hash[GIT_MAX_RAWSZ], tail_hash[GIT_MAX_RAWSZ];
5c3459fc 1280 struct strbuf msg = STRBUF_INIT;
c6458e60 1281 int nr_unresolved = nr_ofs_deltas + nr_ref_deltas - nr_resolved_deltas;
5272f755
NTND
1282 int nr_objects_initial = nr_objects;
1283 if (nr_unresolved <= 0)
cc13431a 1284 die(_("confusion beyond insanity"));
2756ca43 1285 REALLOC_ARRAY(objects, nr_objects + nr_unresolved + 1);
57165db0
JK
1286 memset(objects + nr_objects + 1, 0,
1287 nr_unresolved * sizeof(*objects));
98a3beab 1288 f = hashfd(output_fd, curr_pack);
781d9306 1289 fix_unresolved_deltas(f);
71d99b81
VA
1290 strbuf_addf(&msg, Q_("completed with %d local object",
1291 "completed with %d local objects",
1292 nr_objects - nr_objects_initial),
5c3459fc
NTND
1293 nr_objects - nr_objects_initial);
1294 stop_progress_msg(&progress, msg.buf);
1295 strbuf_release(&msg);
020406ea 1296 finalize_hashfile(f, tail_hash, FSYNC_COMPONENT_PACK, 0);
454253f0 1297 hashcpy(read_hash, pack_hash);
1298 fixup_pack_header_footer(output_fd, pack_hash,
5272f755 1299 curr_pack, nr_objects,
454253f0 1300 read_hash, consumed_bytes-the_hash_algo->rawsz);
67947c34 1301 if (!hasheq(read_hash, tail_hash))
f350df42
NTND
1302 die(_("Unexpected tail checksum for %s "
1303 "(disk corruption?)"), curr_pack);
5272f755 1304 }
c6458e60 1305 if (nr_ofs_deltas + nr_ref_deltas != nr_resolved_deltas)
cc13431a
JH
1306 die(Q_("pack has %d unresolved delta",
1307 "pack has %d unresolved deltas",
c6458e60
NTND
1308 nr_ofs_deltas + nr_ref_deltas - nr_resolved_deltas),
1309 nr_ofs_deltas + nr_ref_deltas - nr_resolved_deltas);
5272f755
NTND
1310}
1311
98a3beab 1312static int write_compressed(struct hashfile *f, void *in, unsigned int size)
636171cb 1313{
ef49a7a0 1314 git_zstream stream;
7734d7f2
NP
1315 int status;
1316 unsigned char outbuf[4096];
636171cb 1317
55bb5c91 1318 git_deflate_init(&stream, zlib_compression_level);
636171cb
NP
1319 stream.next_in = in;
1320 stream.avail_in = size;
636171cb 1321
7734d7f2
NP
1322 do {
1323 stream.next_out = outbuf;
1324 stream.avail_out = sizeof(outbuf);
55bb5c91 1325 status = git_deflate(&stream, Z_FINISH);
98a3beab 1326 hashwrite(f, outbuf, sizeof(outbuf) - stream.avail_out);
7734d7f2
NP
1327 } while (status == Z_OK);
1328
1329 if (status != Z_STREAM_END)
c2b97ecf 1330 die(_("unable to deflate appended object (%d)"), status);
636171cb 1331 size = stream.total_out;
55bb5c91 1332 git_deflate_end(&stream);
636171cb
NP
1333 return size;
1334}
1335
98a3beab 1336static struct object_entry *append_obj_to_pack(struct hashfile *f,
03993e13 1337 const unsigned char *sha1, void *buf,
636171cb
NP
1338 unsigned long size, enum object_type type)
1339{
1340 struct object_entry *obj = &objects[nr_objects++];
1341 unsigned char header[10];
1342 unsigned long s = size;
1343 int n = 0;
1344 unsigned char c = (type << 4) | (s & 15);
1345 s >>= 4;
1346 while (s) {
1347 header[n++] = c | 0x80;
1348 c = s & 0x7f;
1349 s >>= 7;
1350 }
1351 header[n++] = c;
8522148f 1352 crc32_begin(f);
98a3beab 1353 hashwrite(f, header, n);
72de2883
BS
1354 obj[0].size = size;
1355 obj[0].hdr_size = n;
1356 obj[0].type = type;
1357 obj[0].real_type = type;
aa7e44bf 1358 obj[1].idx.offset = obj[0].idx.offset + n;
8522148f
NP
1359 obj[1].idx.offset += write_compressed(f, buf, size);
1360 obj[0].idx.crc32 = crc32_end(f);
98a3beab 1361 hashflush(f);
92e2cab9 1362 oidread(&obj->idx.oid, sha1);
03993e13 1363 return obj;
636171cb
NP
1364}
1365
1366static int delta_pos_compare(const void *_a, const void *_b)
1367{
c6458e60
NTND
1368 struct ref_delta_entry *a = *(struct ref_delta_entry **)_a;
1369 struct ref_delta_entry *b = *(struct ref_delta_entry **)_b;
636171cb
NP
1370 return a->obj_no - b->obj_no;
1371}
9cf6d335 1372
98a3beab 1373static void fix_unresolved_deltas(struct hashfile *f)
636171cb 1374{
c6458e60 1375 struct ref_delta_entry **sorted_by_pos;
781d9306 1376 int i;
636171cb
NP
1377
1378 /*
1379 * Since many unresolved deltas may well be themselves base objects
1380 * for more unresolved deltas, we really want to include the
1381 * smallest number of base objects that would cover as much delta
1382 * as possible by picking the
1383 * trunc deltas first, allowing for other deltas to resolve without
1384 * additional base objects. Since most base objects are to be found
1385 * before deltas depending on them, a good heuristic is to start
1386 * resolving deltas in the same order as their position in the pack.
1387 */
b32fa95f 1388 ALLOC_ARRAY(sorted_by_pos, nr_ref_deltas);
c6458e60 1389 for (i = 0; i < nr_ref_deltas; i++)
781d9306 1390 sorted_by_pos[i] = &ref_deltas[i];
9ed0d8d6 1391 QSORT(sorted_by_pos, nr_ref_deltas, delta_pos_compare);
636171cb 1392
b14ed5ad 1393 if (has_promisor_remote()) {
8a30a1ef
JT
1394 /*
1395 * Prefetch the delta bases.
1396 */
1397 struct oid_array to_fetch = OID_ARRAY_INIT;
1398 for (i = 0; i < nr_ref_deltas; i++) {
1399 struct ref_delta_entry *d = sorted_by_pos[i];
1400 if (!oid_object_info_extended(the_repository, &d->oid,
1401 NULL,
1402 OBJECT_INFO_FOR_PREFETCH))
1403 continue;
1404 oid_array_append(&to_fetch, &d->oid);
1405 }
db7ed741
JT
1406 promisor_remote_get_direct(the_repository,
1407 to_fetch.oid, to_fetch.nr);
8a30a1ef
JT
1408 oid_array_clear(&to_fetch);
1409 }
1410
781d9306 1411 for (i = 0; i < nr_ref_deltas; i++) {
c6458e60 1412 struct ref_delta_entry *d = sorted_by_pos[i];
21666f1a 1413 enum object_type type;
b4718cae
JT
1414 void *data;
1415 unsigned long size;
636171cb
NP
1416
1417 if (objects[d->obj_no].real_type != OBJ_REF_DELTA)
1418 continue;
bc726bd0
ÆAB
1419 data = repo_read_object_file(the_repository, &d->oid, &type,
1420 &size);
b4718cae 1421 if (!data)
636171cb 1422 continue;
636171cb 1423
ee213de2 1424 if (check_object_signature(the_repository, &d->oid, data, size,
44439c1c 1425 type) < 0)
af8caf33 1426 die(_("local object %s is corrupt"), oid_to_hex(&d->oid));
f08cbf60
JT
1427
1428 /*
1429 * Add this as an object to the objects array and call
1430 * threaded_second_pass() (which will pick up the added
1431 * object).
1432 */
1433 append_obj_to_pack(f, d->oid.hash, data, size, type);
f2bcc69e 1434 free(data);
f08cbf60
JT
1435 threaded_second_pass(NULL);
1436
4d4fcc54 1437 display_progress(progress, nr_resolved_deltas);
636171cb
NP
1438 }
1439 free(sorted_by_pos);
1440}
1441
84d54494
TB
1442static const char *derive_filename(const char *pack_name, const char *strip,
1443 const char *suffix, struct strbuf *buf)
8e29c7c3
JT
1444{
1445 size_t len;
84d54494
TB
1446 if (!strip_suffix(pack_name, strip, &len) || !len ||
1447 pack_name[len - 1] != '.')
1448 die(_("packfile name '%s' does not end with '.%s'"),
1449 pack_name, strip);
8e29c7c3 1450 strbuf_add(buf, pack_name, len);
8e29c7c3
JT
1451 strbuf_addstr(buf, suffix);
1452 return buf->buf;
1453}
1454
1455static void write_special_file(const char *suffix, const char *msg,
0fd90dab 1456 const char *pack_name, const unsigned char *hash,
8e29c7c3
JT
1457 const char **report)
1458{
1459 struct strbuf name_buf = STRBUF_INIT;
1460 const char *filename;
1461 int fd;
1462 int msg_len = strlen(msg);
1463
1464 if (pack_name)
84d54494 1465 filename = derive_filename(pack_name, "pack", suffix, &name_buf);
8e29c7c3 1466 else
0fd90dab 1467 filename = odb_pack_name(&name_buf, hash, suffix);
8e29c7c3
JT
1468
1469 fd = odb_pack_keep(filename);
1470 if (fd < 0) {
1471 if (errno != EEXIST)
1472 die_errno(_("cannot write %s file '%s'"),
1473 suffix, filename);
1474 } else {
1475 if (msg_len > 0) {
1476 write_or_die(fd, msg, msg_len);
1477 write_or_die(fd, "\n", 1);
1478 }
1479 if (close(fd) != 0)
1480 die_errno(_("cannot close written %s file '%s'"),
1481 suffix, filename);
88e2f9ed
JT
1482 if (report)
1483 *report = suffix;
8e29c7c3
JT
1484 }
1485 strbuf_release(&name_buf);
1486}
1487
8737dab3
ÆAB
1488static void rename_tmp_packfile(const char **final_name,
1489 const char *curr_name,
1490 struct strbuf *name, unsigned char *hash,
1491 const char *ext, int make_read_only_if_same)
1492{
1493 if (*final_name != curr_name) {
1494 if (!*final_name)
1495 *final_name = odb_pack_name(name, hash, ext);
1496 if (finalize_object_file(curr_name, *final_name))
f7337193 1497 die(_("unable to rename temporary '*.%s' file to '%s'"),
8737dab3
ÆAB
1498 ext, *final_name);
1499 } else if (make_read_only_if_same) {
1500 chmod(*final_name, 0444);
1501 }
1502}
1503
e42797f5
NP
1504static void final(const char *final_pack_name, const char *curr_pack_name,
1505 const char *final_index_name, const char *curr_index_name,
e37d0b87 1506 const char *final_rev_index_name, const char *curr_rev_index_name,
88e2f9ed 1507 const char *keep_msg, const char *promisor_msg,
454253f0 1508 unsigned char *hash)
e42797f5 1509{
3a55602e 1510 const char *report = "pack";
f2075480
JK
1511 struct strbuf pack_name = STRBUF_INIT;
1512 struct strbuf index_name = STRBUF_INIT;
e37d0b87 1513 struct strbuf rev_index_name = STRBUF_INIT;
e42797f5
NP
1514 int err;
1515
1516 if (!from_stdin) {
1517 close(input_fd);
1518 } else {
020406ea 1519 fsync_component_or_die(FSYNC_COMPONENT_PACK, output_fd, curr_pack_name);
e42797f5
NP
1520 err = close(output_fd);
1521 if (err)
c2b97ecf 1522 die_errno(_("error while closing pack file"));
e42797f5
NP
1523 }
1524
8e29c7c3 1525 if (keep_msg)
0fd90dab 1526 write_special_file("keep", keep_msg, final_pack_name, hash,
8e29c7c3 1527 &report);
88e2f9ed
JT
1528 if (promisor_msg)
1529 write_special_file("promisor", promisor_msg, final_pack_name,
0fd90dab 1530 hash, NULL);
b8077709 1531
8737dab3
ÆAB
1532 rename_tmp_packfile(&final_pack_name, curr_pack_name, &pack_name,
1533 hash, "pack", from_stdin);
8737dab3
ÆAB
1534 if (curr_rev_index_name)
1535 rename_tmp_packfile(&final_rev_index_name, curr_rev_index_name,
1536 &rev_index_name, hash, "rev", 1);
522a5c2c
TB
1537 rename_tmp_packfile(&final_index_name, curr_index_name, &index_name,
1538 hash, "idx", 1);
e37d0b87 1539
368b4e59
JK
1540 if (do_fsck_object) {
1541 struct packed_git *p;
1542 p = add_packed_git(final_index_name, strlen(final_index_name), 0);
1543 if (p)
549ca8aa 1544 install_packed_git(the_repository, p);
368b4e59 1545 }
73c3f0f7 1546
576162a4 1547 if (!from_stdin) {
69fa3370 1548 printf("%s\n", hash_to_hex(hash));
576162a4 1549 } else {
5b1ef2ce
JK
1550 struct strbuf buf = STRBUF_INIT;
1551
69fa3370 1552 strbuf_addf(&buf, "%s\t%s\n", report, hash_to_hex(hash));
5b1ef2ce
JK
1553 write_or_die(1, buf.buf, buf.len);
1554 strbuf_release(&buf);
576162a4
NP
1555
1556 /*
1557 * Let's just mimic git-unpack-objects here and write
1558 * the last part of the input buffer to stdout.
1559 */
1560 while (input_len) {
1561 err = xwrite(1, input_buffer + input_offset, input_len);
1562 if (err <= 0)
1563 break;
1564 input_len -= err;
1565 input_offset += err;
1566 }
1567 }
ba47a308 1568
e37d0b87 1569 strbuf_release(&rev_index_name);
f2075480
JK
1570 strbuf_release(&index_name);
1571 strbuf_release(&pack_name);
9cf6d335
SV
1572}
1573
ef90d6d4 1574static int git_index_pack_config(const char *k, const char *v, void *cb)
4d00bda2 1575{
ebcfb379
JH
1576 struct pack_idx_option *opts = cb;
1577
4d00bda2 1578 if (!strcmp(k, "pack.indexversion")) {
ebcfb379
JH
1579 opts->version = git_config_int(k, v);
1580 if (opts->version > 2)
b4eda05d 1581 die(_("bad pack.indexVersion=%"PRIu32), opts->version);
4d00bda2
NP
1582 return 0;
1583 }
b8a2486f
NTND
1584 if (!strcmp(k, "pack.threads")) {
1585 nr_threads = git_config_int(k, v);
1586 if (nr_threads < 0)
f350df42 1587 die(_("invalid number of threads specified (%d)"),
b8a2486f 1588 nr_threads);
2094c5e5 1589 if (!HAVE_THREADS && nr_threads != 1) {
f350df42 1590 warning(_("no threads support, ignoring %s"), k);
2094c5e5
NTND
1591 nr_threads = 1;
1592 }
b8a2486f
NTND
1593 return 0;
1594 }
e37d0b87
TB
1595 if (!strcmp(k, "pack.writereverseindex")) {
1596 if (git_config_bool(k, v))
1597 opts->flags |= WRITE_REV;
1598 else
1599 opts->flags &= ~WRITE_REV;
1600 }
ef90d6d4 1601 return git_default_config(k, v, cb);
4d00bda2
NP
1602}
1603
3c9fc074
JH
1604static int cmp_uint32(const void *a_, const void *b_)
1605{
1606 uint32_t a = *((uint32_t *)a_);
1607 uint32_t b = *((uint32_t *)b_);
1608
1609 return (a < b) ? -1 : (a != b);
1610}
1611
1612static void read_v2_anomalous_offsets(struct packed_git *p,
1613 struct pack_idx_option *opts)
1614{
1615 const uint32_t *idx1, *idx2;
1616 uint32_t i;
1617
1618 /* The address of the 4-byte offset table */
629dffc4 1619 idx1 = (((const uint32_t *)((const uint8_t *)p->index_data + p->crc_offset))
f86f7695 1620 + (size_t)p->num_objects /* CRC32 table */
3c9fc074
JH
1621 );
1622
1623 /* The address of the 8-byte offset table */
1624 idx2 = idx1 + p->num_objects;
1625
1626 for (i = 0; i < p->num_objects; i++) {
1627 uint32_t off = ntohl(idx1[i]);
1628 if (!(off & 0x80000000))
1629 continue;
1630 off = off & 0x7fffffff;
47fe3f6e 1631 check_pack_index_ptr(p, &idx2[off * 2]);
3c9fc074
JH
1632 if (idx2[off * 2])
1633 continue;
1634 /*
1635 * The real offset is ntohl(idx2[off * 2]) in high 4
1636 * octets, and ntohl(idx2[off * 2 + 1]) in low 4
1637 * octets. But idx2[off * 2] is Zero!!!
1638 */
1639 ALLOC_GROW(opts->anomaly, opts->anomaly_nr + 1, opts->anomaly_alloc);
1640 opts->anomaly[opts->anomaly_nr++] = ntohl(idx2[off * 2 + 1]);
1641 }
1642
1b5294de 1643 QSORT(opts->anomaly, opts->anomaly_nr, cmp_uint32);
3c9fc074
JH
1644}
1645
e337a04d
JH
1646static void read_idx_option(struct pack_idx_option *opts, const char *pack_name)
1647{
1648 struct packed_git *p = add_packed_git(pack_name, strlen(pack_name), 1);
1649
1650 if (!p)
c2b97ecf 1651 die(_("Cannot open existing pack file '%s'"), pack_name);
e337a04d 1652 if (open_pack_index(p))
c2b97ecf 1653 die(_("Cannot open existing pack idx file for '%s'"), pack_name);
e337a04d
JH
1654
1655 /* Read the attributes from the existing idx file */
1656 opts->version = p->index_version;
1657
3c9fc074
JH
1658 if (opts->version == 2)
1659 read_v2_anomalous_offsets(p, opts);
1660
e337a04d
JH
1661 /*
1662 * Get rid of the idx file as we do not need it anymore.
1663 * NEEDSWORK: extract this bit from free_pack_by_name() in
e5afd444 1664 * object-file.c, perhaps? It shouldn't matter very much as we
e337a04d
JH
1665 * know we haven't installed this pack (hence we never have
1666 * read anything from it).
1667 */
1668 close_pack_index(p);
1669 free(p);
1670}
1671
38a45561
JH
1672static void show_pack_info(int stat_only)
1673{
c6458e60 1674 int i, baseobjects = nr_objects - nr_ref_deltas - nr_ofs_deltas;
d1a0ed18
JH
1675 unsigned long *chain_histogram = NULL;
1676
1677 if (deepest_delta)
ca56dadb 1678 CALLOC_ARRAY(chain_histogram, deepest_delta);
d1a0ed18 1679
38a45561
JH
1680 for (i = 0; i < nr_objects; i++) {
1681 struct object_entry *obj = &objects[i];
1682
d1a0ed18 1683 if (is_delta_type(obj->type))
41730576 1684 chain_histogram[obj_stat[i].delta_depth - 1]++;
38a45561
JH
1685 if (stat_only)
1686 continue;
ca473cef 1687 printf("%s %-6s %"PRIuMAX" %"PRIuMAX" %"PRIuMAX,
e6a492b7 1688 oid_to_hex(&obj->idx.oid),
ca473cef
TB
1689 type_name(obj->real_type), (uintmax_t)obj->size,
1690 (uintmax_t)(obj[1].idx.offset - obj->idx.offset),
38a45561
JH
1691 (uintmax_t)obj->idx.offset);
1692 if (is_delta_type(obj->type)) {
41730576 1693 struct object_entry *bobj = &objects[obj_stat[i].base_object_no];
e6a492b7 1694 printf(" %u %s", obj_stat[i].delta_depth,
1695 oid_to_hex(&bobj->idx.oid));
38a45561
JH
1696 }
1697 putchar('\n');
1698 }
d1a0ed18
JH
1699
1700 if (baseobjects)
c2b97ecf
NTND
1701 printf_ln(Q_("non delta: %d object",
1702 "non delta: %d objects",
1703 baseobjects),
1704 baseobjects);
d1a0ed18
JH
1705 for (i = 0; i < deepest_delta; i++) {
1706 if (!chain_histogram[i])
1707 continue;
c2b97ecf
NTND
1708 printf_ln(Q_("chain length = %d: %lu object",
1709 "chain length = %d: %lu objects",
1710 chain_histogram[i]),
1711 i + 1,
1712 chain_histogram[i]);
d1a0ed18 1713 }
f2bcc69e 1714 free(chain_histogram);
38a45561
JH
1715}
1716
3bb72562 1717int cmd_index_pack(int argc, const char **argv, const char *prefix)
9cf6d335 1718{
e37d0b87 1719 int i, fix_thin_pack = 0, verify = 0, stat_only = 0, rev_index;
39539495 1720 const char *curr_index;
e37d0b87
TB
1721 const char *curr_rev_index = NULL;
1722 const char *index_name = NULL, *pack_name = NULL, *rev_index_name = NULL;
8e29c7c3 1723 const char *keep_msg = NULL;
88e2f9ed 1724 const char *promisor_msg = NULL;
8e29c7c3 1725 struct strbuf index_name_buf = STRBUF_INIT;
e37d0b87 1726 struct strbuf rev_index_name_buf = STRBUF_INIT;
aa7e44bf 1727 struct pack_idx_entry **idx_objects;
ebcfb379 1728 struct pack_idx_option opts;
454253f0 1729 unsigned char pack_hash[GIT_MAX_RAWSZ];
c6807a40 1730 unsigned foreign_nr = 1; /* zero is a "good" value, assume bad */
83558686 1731 int report_end_of_input = 0;
586740aa 1732 int hash_algo = 0;
9cf6d335 1733
8b4c0103 1734 /*
8a30a1ef
JT
1735 * index-pack never needs to fetch missing objects except when
1736 * REF_DELTA bases are missing (which are explicitly handled). It only
1737 * accesses the repo to do hash collision checks and to check which
1738 * REF_DELTA bases need to be fetched.
8b4c0103
JT
1739 */
1740 fetch_if_missing = 0;
1741
99caeed0
JN
1742 if (argc == 2 && !strcmp(argv[1], "-h"))
1743 usage(index_pack_usage);
1744
6ebd1caf 1745 read_replace_refs = 0;
22410549 1746 fsck_options.walk = mark_link;
6e2a09d2 1747
ebcfb379
JH
1748 reset_pack_idx_option(&opts);
1749 git_config(git_index_pack_config, &opts);
3f8099fc 1750 if (prefix && chdir(prefix))
c2b97ecf 1751 die(_("Cannot come back to cwd"));
4d00bda2 1752
e8c58f89
TB
1753 if (git_env_bool(GIT_TEST_WRITE_REV_INDEX, 0))
1754 rev_index = 1;
1755 else
1756 rev_index = !!(opts.flags & (WRITE_REV_VERIFY | WRITE_REV));
e37d0b87 1757
9cf6d335 1758 for (i = 1; i < argc; i++) {
3bb72562 1759 const char *arg = argv[i];
9cf6d335
SV
1760
1761 if (*arg == '-') {
e42797f5
NP
1762 if (!strcmp(arg, "--stdin")) {
1763 from_stdin = 1;
636171cb
NP
1764 } else if (!strcmp(arg, "--fix-thin")) {
1765 fix_thin_pack = 1;
72885a6d 1766 } else if (skip_to_optional_arg(arg, "--strict", &arg)) {
5d477a33
JS
1767 strict = 1;
1768 do_fsck_object = 1;
1769 fsck_set_msg_types(&fsck_options, arg);
c6807a40
NTND
1770 } else if (!strcmp(arg, "--check-self-contained-and-connected")) {
1771 strict = 1;
1772 check_self_contained_and_connected = 1;
ffb2c0fe
JT
1773 } else if (!strcmp(arg, "--fsck-objects")) {
1774 do_fsck_object = 1;
e337a04d
JH
1775 } else if (!strcmp(arg, "--verify")) {
1776 verify = 1;
38a45561
JH
1777 } else if (!strcmp(arg, "--verify-stat")) {
1778 verify = 1;
3aba2fdd 1779 show_stat = 1;
38a45561
JH
1780 } else if (!strcmp(arg, "--verify-stat-only")) {
1781 verify = 1;
3aba2fdd 1782 show_stat = 1;
38a45561 1783 stat_only = 1;
72885a6d
CC
1784 } else if (skip_to_optional_arg(arg, "--keep", &keep_msg)) {
1785 ; /* nothing to do */
f3d618d2
JH
1786 } else if (skip_to_optional_arg(arg, "--promisor", &promisor_msg)) {
1787 ; /* already parsed */
59556548 1788 } else if (starts_with(arg, "--threads=")) {
b8a2486f
NTND
1789 char *end;
1790 nr_threads = strtoul(arg+10, &end, 0);
1791 if (!arg[10] || *end || nr_threads < 0)
1792 usage(index_pack_usage);
2094c5e5
NTND
1793 if (!HAVE_THREADS && nr_threads != 1) {
1794 warning(_("no threads support, ignoring %s"), arg);
1795 nr_threads = 1;
1796 }
59556548 1797 } else if (starts_with(arg, "--pack_header=")) {
bed006fb
NP
1798 struct pack_header *hdr;
1799 char *c;
1800
1801 hdr = (struct pack_header *)input_buffer;
1802 hdr->hdr_signature = htonl(PACK_SIGNATURE);
1803 hdr->hdr_version = htonl(strtoul(arg + 14, &c, 10));
1804 if (*c != ',')
c2b97ecf 1805 die(_("bad %s"), arg);
bed006fb
NP
1806 hdr->hdr_entries = htonl(strtoul(c + 1, &c, 10));
1807 if (*c)
c2b97ecf 1808 die(_("bad %s"), arg);
bed006fb 1809 input_len = sizeof(*hdr);
3c9af366
NP
1810 } else if (!strcmp(arg, "-v")) {
1811 verbose = 1;
f46c46e4
ÆAB
1812 } else if (!strcmp(arg, "--progress-title")) {
1813 if (progress_title || (i+1) >= argc)
1814 usage(index_pack_usage);
1815 progress_title = argv[++i];
e376f17f
JK
1816 } else if (!strcmp(arg, "--show-resolving-progress")) {
1817 show_resolving_progress = 1;
83558686
JK
1818 } else if (!strcmp(arg, "--report-end-of-input")) {
1819 report_end_of_input = 1;
e42797f5 1820 } else if (!strcmp(arg, "-o")) {
9cf6d335
SV
1821 if (index_name || (i+1) >= argc)
1822 usage(index_pack_usage);
1823 index_name = argv[++i];
59556548 1824 } else if (starts_with(arg, "--index-version=")) {
4ba7d711 1825 char *c;
ebcfb379
JH
1826 opts.version = strtoul(arg + 16, &c, 10);
1827 if (opts.version > 2)
c2b97ecf 1828 die(_("bad %s"), arg);
4ba7d711 1829 if (*c == ',')
ebcfb379
JH
1830 opts.off32_limit = strtoul(c+1, &c, 0);
1831 if (*c || opts.off32_limit & 0x80000000)
c2b97ecf 1832 die(_("bad %s"), arg);
411481be
JK
1833 } else if (skip_prefix(arg, "--max-input-size=", &arg)) {
1834 max_input_size = strtoumax(arg, NULL, 10);
586740aa 1835 } else if (skip_prefix(arg, "--object-format=", &arg)) {
1836 hash_algo = hash_algo_by_name(arg);
1837 if (hash_algo == GIT_HASH_UNKNOWN)
1838 die(_("unknown hash algorithm '%s'"), arg);
1839 repo_set_hash_algo(the_repository, hash_algo);
e37d0b87
TB
1840 } else if (!strcmp(arg, "--rev-index")) {
1841 rev_index = 1;
1842 } else if (!strcmp(arg, "--no-rev-index")) {
1843 rev_index = 0;
9cf6d335
SV
1844 } else
1845 usage(index_pack_usage);
1846 continue;
1847 }
1848
1849 if (pack_name)
1850 usage(index_pack_usage);
1851 pack_name = arg;
1852 }
1853
e42797f5 1854 if (!pack_name && !from_stdin)
9cf6d335 1855 usage(index_pack_usage);
636171cb 1856 if (fix_thin_pack && !from_stdin)
6fa00ee8 1857 die(_("the option '%s' requires '%s'"), "--fix-thin", "--stdin");
7176a314
JK
1858 if (from_stdin && !startup_info->have_repository)
1859 die(_("--stdin requires a git repository"));
586740aa 1860 if (from_stdin && hash_algo)
12909b6b 1861 die(_("options '%s' and '%s' cannot be used together"), "--object-format", "--stdin");
bfee614a 1862 if (!index_name && pack_name)
84d54494 1863 index_name = derive_filename(pack_name, "pack", "idx", &index_name_buf);
bfee614a 1864
e37d0b87
TB
1865 opts.flags &= ~(WRITE_REV | WRITE_REV_VERIFY);
1866 if (rev_index) {
1867 opts.flags |= verify ? WRITE_REV_VERIFY : WRITE_REV;
1868 if (index_name)
1869 rev_index_name = derive_filename(index_name,
1870 "idx", "rev",
1871 &rev_index_name_buf);
1872 }
1873
e337a04d
JH
1874 if (verify) {
1875 if (!index_name)
c2b97ecf 1876 die(_("--verify with no packfile name given"));
e337a04d 1877 read_idx_option(&opts, index_name);
68be2fea 1878 opts.flags |= WRITE_IDX_VERIFY | WRITE_IDX_STRICT;
e337a04d 1879 }
68be2fea
JH
1880 if (strict)
1881 opts.flags |= WRITE_IDX_STRICT;
9cf6d335 1882
2094c5e5 1883 if (HAVE_THREADS && !nr_threads) {
b8a2486f 1884 nr_threads = online_cpus();
fbff95b6
JK
1885 /*
1886 * Experiments show that going above 20 threads doesn't help,
1887 * no matter how many cores you have. Below that, we tend to
1888 * max at half the number of online_cpus(), presumably because
1889 * half of those are hyperthreads rather than full cores. We'll
1890 * never reduce the level below "3", though, to match a
1891 * historical value that nobody complained about.
1892 */
1893 if (nr_threads < 4)
1894 ; /* too few cores to consider capping */
1895 else if (nr_threads < 6)
1896 nr_threads = 3; /* historic cap */
1897 else if (nr_threads < 40)
1898 nr_threads /= 2;
1899 else
1900 nr_threads = 20; /* hard cap */
b8a2486f 1901 }
b8a2486f 1902
e42797f5 1903 curr_pack = open_pack_file(pack_name);
9cf6d335 1904 parse_pack_header();
ca56dadb 1905 CALLOC_ARRAY(objects, st_add(nr_objects, 1));
41730576 1906 if (show_stat)
ca56dadb
RS
1907 CALLOC_ARRAY(obj_stat, st_add(nr_objects, 1));
1908 CALLOC_ARRAY(ofs_deltas, nr_objects);
454253f0 1909 parse_pack_objects(pack_hash);
83558686
JK
1910 if (report_end_of_input)
1911 write_in_full(2, "\0", 1);
5272f755 1912 resolve_deltas();
454253f0 1913 conclude_pack(fix_thin_pack, curr_pack, pack_hash);
c6458e60
NTND
1914 free(ofs_deltas);
1915 free(ref_deltas);
0153be05 1916 if (strict)
c6807a40 1917 foreign_nr = check_objects();
aa7e44bf 1918
3aba2fdd 1919 if (show_stat)
38a45561
JH
1920 show_pack_info(stat_only);
1921
b32fa95f 1922 ALLOC_ARRAY(idx_objects, nr_objects);
aa7e44bf
GB
1923 for (i = 0; i < nr_objects; i++)
1924 idx_objects[i] = &objects[i].idx;
454253f0 1925 curr_index = write_idx_file(index_name, idx_objects, nr_objects, &opts, pack_hash);
e37d0b87
TB
1926 if (rev_index)
1927 curr_rev_index = write_rev_file(rev_index_name, idx_objects,
1928 nr_objects, pack_hash,
1929 opts.flags);
aa7e44bf
GB
1930 free(idx_objects);
1931
e337a04d
JH
1932 if (!verify)
1933 final(pack_name, curr_pack,
1934 index_name, curr_index,
e37d0b87 1935 rev_index_name, curr_rev_index,
88e2f9ed 1936 keep_msg, promisor_msg,
454253f0 1937 pack_hash);
e337a04d
JH
1938 else
1939 close(input_fd);
73c3f0f7 1940
462f5cae
ÆAB
1941 if (do_fsck_object && fsck_finish(&fsck_options))
1942 die(_("fsck error in pack objects"));
73c3f0f7 1943
f2bcc69e 1944 free(opts.anomaly);
9cf6d335 1945 free(objects);
592ce208 1946 strbuf_release(&index_name_buf);
e37d0b87 1947 strbuf_release(&rev_index_name_buf);
afe8a907 1948 if (!pack_name)
3bb72562 1949 free((void *) curr_pack);
afe8a907 1950 if (!index_name)
3bb72562 1951 free((void *) curr_index);
afe8a907 1952 if (!rev_index_name)
e37d0b87 1953 free((void *) curr_rev_index);
9cf6d335 1954
c6807a40
NTND
1955 /*
1956 * Let the caller know this pack is not self contained
1957 */
1958 if (check_self_contained_and_connected && foreign_nr)
1959 return 1;
1960
9cf6d335
SV
1961 return 0;
1962}