blob: e40451ffb4ecd31107bfe51817cdce18e1dfe859 [file] [log] [blame]
Ramsay Jones2ad9d4c2011-04-07 19:23:40 +01001#include "builtin.h"
Sergey Vlasov9cf6d332005-10-12 12:01:31 -07002#include "delta.h"
3#include "pack.h"
4#include "csum-file.h"
Peter Eriksen8e440252006-04-02 14:44:09 +02005#include "blob.h"
6#include "commit.h"
7#include "tag.h"
8#include "tree.h"
Nicolas Pitre96a02f82007-04-18 14:27:45 -04009#include "progress.h"
Martin Koegler0153be02008-02-25 22:46:12 +010010#include "fsck.h"
Steffen Prohaska2fb3f6d2009-01-18 13:00:12 +010011#include "exec_cmd.h"
Sergey Vlasov9cf6d332005-10-12 12:01:31 -070012
13static const char index_pack_usage[] =
Štěpán Němec0adda932010-10-08 19:31:17 +020014"git index-pack [-v] [-o <index-file>] [ --keep | --keep=<msg> ] [--strict] (<pack-file> | --stdin [--fix-thin] [<pack-file>])";
Sergey Vlasov9cf6d332005-10-12 12:01:31 -070015
Jonathan Nieder9cba13c2011-03-16 02:08:34 -050016struct object_entry {
Geert Boschaa7e44b2007-06-01 15:18:05 -040017 struct pack_idx_entry idx;
Nicolas Pitre2d477052006-10-20 14:45:21 -040018 unsigned long size;
19 unsigned int hdr_size;
Sergey Vlasov9cf6d332005-10-12 12:01:31 -070020 enum object_type type;
21 enum object_type real_type;
Sergey Vlasov9cf6d332005-10-12 12:01:31 -070022};
23
Nicolas Pitre53dda6f2006-09-21 00:08:33 -040024union delta_base {
25 unsigned char sha1[20];
Nicolas Pitred7dd0222007-04-09 01:06:30 -040026 off_t offset;
Nicolas Pitre53dda6f2006-09-21 00:08:33 -040027};
28
Shawn O. Pearcef41aebd2008-07-13 22:07:44 -040029struct base_data {
Shawn O. Pearce4a438ca2008-07-13 22:07:45 -040030 struct base_data *base;
31 struct base_data *child;
Shawn O. Pearce03993e12008-07-13 22:07:46 -040032 struct object_entry *obj;
Shawn O. Pearcef41aebd2008-07-13 22:07:44 -040033 void *data;
34 unsigned long size;
35};
36
Nicolas Pitre3c552872006-10-17 16:23:26 -040037/*
38 * Even if sizeof(union delta_base) == 24 on 64-bit archs, we really want
39 * to memcmp() only the first 20 bytes.
40 */
41#define UNION_BASE_SZ 20
42
Martin Koegler0153be02008-02-25 22:46:12 +010043#define FLAG_LINK (1u<<20)
44#define FLAG_CHECKED (1u<<21)
45
Jonathan Nieder9cba13c2011-03-16 02:08:34 -050046struct delta_entry {
Nicolas Pitre53dda6f2006-09-21 00:08:33 -040047 union delta_base base;
Nicolas Pitre636171c2006-10-25 23:28:17 -040048 int obj_no;
Sergey Vlasov9cf6d332005-10-12 12:01:31 -070049};
50
Sergey Vlasov9cf6d332005-10-12 12:01:31 -070051static struct object_entry *objects;
52static struct delta_entry *deltas;
Shawn O. Pearce4a438ca2008-07-13 22:07:45 -040053static struct base_data *base_cache;
Shawn O. Pearce92392b42008-07-15 04:45:34 +000054static size_t base_cache_used;
Sergey Vlasov9cf6d332005-10-12 12:01:31 -070055static int nr_objects;
56static int nr_deltas;
Nicolas Pitre636171c2006-10-25 23:28:17 -040057static int nr_resolved_deltas;
Sergey Vlasov9cf6d332005-10-12 12:01:31 -070058
Nicolas Pitree42797f2006-10-23 14:50:18 -040059static int from_stdin;
Martin Koegler0153be02008-02-25 22:46:12 +010060static int strict;
Nicolas Pitre3c9af362006-10-25 23:32:59 -040061static int verbose;
62
Nicolas Pitredc6a0752007-10-30 14:57:32 -040063static struct progress *progress;
Nicolas Pitree42797f2006-10-23 14:50:18 -040064
Nicolas Pitre2d477052006-10-20 14:45:21 -040065/* We always read in 4kB chunks. */
66static unsigned char input_buffer[4096];
Nicolas Pitred7dd0222007-04-09 01:06:30 -040067static unsigned int input_offset, input_len;
68static off_t consumed_bytes;
Nicolas Pitre9126f002008-10-01 14:05:20 -040069static git_SHA_CTX input_ctx;
Nicolas Pitreee5743c2007-04-09 01:06:32 -040070static uint32_t input_crc32;
Nicolas Pitre6d2fa7f2006-12-19 10:53:08 -050071static int input_fd, output_fd, pack_fd;
Nicolas Pitre2d477052006-10-20 14:45:21 -040072
Martin Koegler0153be02008-02-25 22:46:12 +010073static int mark_link(struct object *obj, int type, void *data)
74{
75 if (!obj)
76 return -1;
77
78 if (type != OBJ_ANY && obj->type != type)
79 die("object type mismatch at %s", sha1_to_hex(obj->sha1));
80
81 obj->flags |= FLAG_LINK;
82 return 0;
83}
84
85/* The content of each linked object must have been checked
86 or it must be already present in the object database */
87static void check_object(struct object *obj)
88{
89 if (!obj)
90 return;
91
92 if (!(obj->flags & FLAG_LINK))
93 return;
94
95 if (!(obj->flags & FLAG_CHECKED)) {
96 unsigned long size;
97 int type = sha1_object_info(obj->sha1, &size);
98 if (type != obj->type || type <= 0)
99 die("object of unexpected type");
100 obj->flags |= FLAG_CHECKED;
101 return;
102 }
103}
104
105static void check_objects(void)
106{
107 unsigned i, max;
108
109 max = get_max_object_index();
110 for (i = 0; i < max; i++)
111 check_object(get_indexed_object(i));
112}
113
114
Nicolas Pitre636171c2006-10-25 23:28:17 -0400115/* Discard current buffer used content. */
Rene Scharfea6e8a762006-11-18 13:07:06 +0100116static void flush(void)
Nicolas Pitre636171c2006-10-25 23:28:17 -0400117{
118 if (input_offset) {
119 if (output_fd >= 0)
120 write_or_die(output_fd, input_buffer, input_offset);
Nicolas Pitre9126f002008-10-01 14:05:20 -0400121 git_SHA1_Update(&input_ctx, input_buffer, input_offset);
Jim Meyering554a2632006-12-11 19:06:34 +0100122 memmove(input_buffer, input_buffer + input_offset, input_len);
Nicolas Pitre636171c2006-10-25 23:28:17 -0400123 input_offset = 0;
124 }
125}
126
Nicolas Pitre2d477052006-10-20 14:45:21 -0400127/*
128 * Make sure at least "min" bytes are available in the buffer, and
129 * return the pointer to the buffer.
130 */
Nicolas Pitreb89c4e92006-10-27 16:14:23 -0400131static void *fill(int min)
Nicolas Pitre2d477052006-10-20 14:45:21 -0400132{
133 if (min <= input_len)
134 return input_buffer + input_offset;
135 if (min > sizeof(input_buffer))
136 die("cannot fill %d bytes", min);
Nicolas Pitre636171c2006-10-25 23:28:17 -0400137 flush();
Nicolas Pitre2d477052006-10-20 14:45:21 -0400138 do {
Johan Herland8a912bc2007-05-15 14:49:22 +0200139 ssize_t ret = xread(input_fd, input_buffer + input_len,
Nicolas Pitre2d477052006-10-20 14:45:21 -0400140 sizeof(input_buffer) - input_len);
141 if (ret <= 0) {
142 if (!ret)
143 die("early EOF");
Thomas Rastd824cbb2009-06-27 17:58:46 +0200144 die_errno("read error on input");
Nicolas Pitre2d477052006-10-20 14:45:21 -0400145 }
146 input_len += ret;
Nicolas Pitre218558a2007-11-04 22:15:41 -0500147 if (from_stdin)
148 display_throughput(progress, consumed_bytes + input_len);
Nicolas Pitre2d477052006-10-20 14:45:21 -0400149 } while (input_len < min);
150 return input_buffer;
151}
152
153static void use(int bytes)
154{
155 if (bytes > input_len)
156 die("used more bytes than were available");
Nicolas Pitreee5743c2007-04-09 01:06:32 -0400157 input_crc32 = crc32(input_crc32, input_buffer + input_offset, bytes);
Nicolas Pitre2d477052006-10-20 14:45:21 -0400158 input_len -= bytes;
159 input_offset += bytes;
Nicolas Pitred7dd0222007-04-09 01:06:30 -0400160
161 /* make sure off_t is sufficiently large not to wrap */
Erik Faye-Lundc03c8312010-10-05 09:24:10 +0200162 if (signed_add_overflows(consumed_bytes, bytes))
Nicolas Pitred7dd0222007-04-09 01:06:30 -0400163 die("pack too large for current definition of off_t");
Nicolas Pitre2d477052006-10-20 14:45:21 -0400164 consumed_bytes += bytes;
165}
166
Linus Torvalds3bb72562010-01-22 07:55:19 -0800167static const char *open_pack_file(const char *pack_name)
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700168{
Nicolas Pitree42797f2006-10-23 14:50:18 -0400169 if (from_stdin) {
170 input_fd = 0;
171 if (!pack_name) {
172 static char tmpfile[PATH_MAX];
Junio C Hamano6e180cd2009-02-24 23:11:29 -0800173 output_fd = odb_mkstemp(tmpfile, sizeof(tmpfile),
174 "pack/tmp_pack_XXXXXX");
Nicolas Pitree42797f2006-10-23 14:50:18 -0400175 pack_name = xstrdup(tmpfile);
176 } else
177 output_fd = open(pack_name, O_CREAT|O_EXCL|O_RDWR, 0600);
178 if (output_fd < 0)
Thomas Rastd824cbb2009-06-27 17:58:46 +0200179 die_errno("unable to create '%s'", pack_name);
Nicolas Pitre6d2fa7f2006-12-19 10:53:08 -0500180 pack_fd = output_fd;
Nicolas Pitree42797f2006-10-23 14:50:18 -0400181 } else {
182 input_fd = open(pack_name, O_RDONLY);
183 if (input_fd < 0)
Thomas Rastd824cbb2009-06-27 17:58:46 +0200184 die_errno("cannot open packfile '%s'", pack_name);
Nicolas Pitree42797f2006-10-23 14:50:18 -0400185 output_fd = -1;
Nicolas Pitre6d2fa7f2006-12-19 10:53:08 -0500186 pack_fd = input_fd;
Nicolas Pitree42797f2006-10-23 14:50:18 -0400187 }
Nicolas Pitre9126f002008-10-01 14:05:20 -0400188 git_SHA1_Init(&input_ctx);
Nicolas Pitree42797f2006-10-23 14:50:18 -0400189 return pack_name;
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700190}
191
192static void parse_pack_header(void)
193{
Nicolas Pitre2d477052006-10-20 14:45:21 -0400194 struct pack_header *hdr = fill(sizeof(struct pack_header));
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700195
196 /* Header consistency check */
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700197 if (hdr->hdr_signature != htonl(PACK_SIGNATURE))
Nicolas Pitree42797f2006-10-23 14:50:18 -0400198 die("pack signature mismatch");
Nicolas Pitred60fc1c2006-02-09 17:50:04 -0500199 if (!pack_version_ok(hdr->hdr_version))
Ramsay Jones6e1c2342008-07-03 16:52:09 +0100200 die("pack version %"PRIu32" unsupported",
201 ntohl(hdr->hdr_version));
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700202
203 nr_objects = ntohl(hdr->hdr_entries);
Nicolas Pitre2d477052006-10-20 14:45:21 -0400204 use(sizeof(struct pack_header));
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700205}
206
Erik Faye-Lunda4f31312009-09-30 18:05:49 +0000207static NORETURN void bad_object(unsigned long offset, const char *format,
208 ...) __attribute__((format (printf, 2, 3)));
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700209
Stephen Boydc2e86ad2011-03-22 00:51:05 -0700210static NORETURN void bad_object(unsigned long offset, const char *format, ...)
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700211{
212 va_list params;
213 char buf[1024];
214
215 va_start(params, format);
216 vsnprintf(buf, sizeof(buf), format, params);
217 va_end(params);
Nicolas Pitree42797f2006-10-23 14:50:18 -0400218 die("pack has bad object at offset %lu: %s", offset, buf);
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700219}
220
Nicolas Pitre6a87ed92008-10-17 15:57:58 -0400221static void free_base_data(struct base_data *c)
222{
223 if (c->data) {
224 free(c->data);
225 c->data = NULL;
226 base_cache_used -= c->size;
227 }
228}
229
Shawn O. Pearce92392b42008-07-15 04:45:34 +0000230static void prune_base_data(struct base_data *retain)
231{
Benjamin Kramer8e24cba2009-03-15 22:01:20 +0100232 struct base_data *b;
Shawn O. Pearce92392b42008-07-15 04:45:34 +0000233 for (b = base_cache;
234 base_cache_used > delta_base_cache_limit && b;
235 b = b->child) {
Nicolas Pitre6a87ed92008-10-17 15:57:58 -0400236 if (b->data && b != retain)
237 free_base_data(b);
Shawn O. Pearce92392b42008-07-15 04:45:34 +0000238 }
239}
240
Shawn O. Pearce4a438ca2008-07-13 22:07:45 -0400241static void link_base_data(struct base_data *base, struct base_data *c)
242{
243 if (base)
244 base->child = c;
245 else
246 base_cache = c;
247
248 c->base = base;
249 c->child = NULL;
Nicolas Pitre9441b612008-10-17 15:57:57 -0400250 if (c->data)
251 base_cache_used += c->size;
Shawn O. Pearce92392b42008-07-15 04:45:34 +0000252 prune_base_data(c);
Shawn O. Pearce4a438ca2008-07-13 22:07:45 -0400253}
254
255static void unlink_base_data(struct base_data *c)
256{
257 struct base_data *base = c->base;
258 if (base)
259 base->child = NULL;
260 else
261 base_cache = NULL;
Nicolas Pitre6a87ed92008-10-17 15:57:58 -0400262 free_base_data(c);
Shawn O. Pearce4a438ca2008-07-13 22:07:45 -0400263}
264
Nicolas Pitre2d477052006-10-20 14:45:21 -0400265static void *unpack_entry_data(unsigned long offset, unsigned long size)
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700266{
Nicolas Pitre7ce47212010-04-12 12:12:06 -0400267 int status;
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700268 z_stream stream;
269 void *buf = xmalloc(size);
270
271 memset(&stream, 0, sizeof(stream));
Nicolas Pitre7ce47212010-04-12 12:12:06 -0400272 git_inflate_init(&stream);
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700273 stream.next_out = buf;
274 stream.avail_out = size;
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700275
Nicolas Pitre7ce47212010-04-12 12:12:06 -0400276 do {
Nicolas Pitre2d477052006-10-20 14:45:21 -0400277 stream.next_in = fill(1);
278 stream.avail_in = input_len;
Nicolas Pitre7ce47212010-04-12 12:12:06 -0400279 status = git_inflate(&stream, 0);
280 use(input_len - stream.avail_in);
281 } while (status == Z_OK);
282 if (stream.total_out != size || status != Z_STREAM_END)
283 bad_object(offset, "inflate returned %d", status);
Linus Torvalds39c68542009-01-07 19:54:47 -0800284 git_inflate_end(&stream);
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700285 return buf;
286}
287
Nicolas Pitre2d477052006-10-20 14:45:21 -0400288static void *unpack_raw_entry(struct object_entry *obj, union delta_base *delta_base)
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700289{
Linus Torvalds48fb7de2009-06-17 17:22:27 -0700290 unsigned char *p;
291 unsigned long size, c;
Nicolas Pitred7dd0222007-04-09 01:06:30 -0400292 off_t base_offset;
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700293 unsigned shift;
Nicolas Pitreee5743c2007-04-09 01:06:32 -0400294 void *data;
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700295
Geert Boschaa7e44b2007-06-01 15:18:05 -0400296 obj->idx.offset = consumed_bytes;
Stephen Boyd1e4cd682011-04-03 00:06:54 -0700297 input_crc32 = crc32(0, NULL, 0);
Nicolas Pitre2d477052006-10-20 14:45:21 -0400298
299 p = fill(1);
300 c = *p;
301 use(1);
302 obj->type = (c >> 4) & 7;
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700303 size = (c & 15);
304 shift = 4;
305 while (c & 0x80) {
Nicolas Pitre2d477052006-10-20 14:45:21 -0400306 p = fill(1);
307 c = *p;
308 use(1);
Linus Torvalds48fb7de2009-06-17 17:22:27 -0700309 size += (c & 0x7f) << shift;
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700310 shift += 7;
311 }
Nicolas Pitre2d477052006-10-20 14:45:21 -0400312 obj->size = size;
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700313
Nicolas Pitre2d477052006-10-20 14:45:21 -0400314 switch (obj->type) {
Nicolas Pitreeb32d232006-09-21 00:06:49 -0400315 case OBJ_REF_DELTA:
Nicolas Pitre2d477052006-10-20 14:45:21 -0400316 hashcpy(delta_base->sha1, fill(20));
317 use(20);
Nicolas Pitre53dda6f2006-09-21 00:08:33 -0400318 break;
319 case OBJ_OFS_DELTA:
320 memset(delta_base, 0, sizeof(*delta_base));
Nicolas Pitre2d477052006-10-20 14:45:21 -0400321 p = fill(1);
322 c = *p;
323 use(1);
Nicolas Pitre53dda6f2006-09-21 00:08:33 -0400324 base_offset = c & 127;
325 while (c & 128) {
326 base_offset += 1;
Nicolas Pitre8723f212007-04-09 01:06:29 -0400327 if (!base_offset || MSB(base_offset, 7))
Geert Boschaa7e44b2007-06-01 15:18:05 -0400328 bad_object(obj->idx.offset, "offset value overflow for delta base object");
Nicolas Pitre2d477052006-10-20 14:45:21 -0400329 p = fill(1);
330 c = *p;
331 use(1);
Nicolas Pitre53dda6f2006-09-21 00:08:33 -0400332 base_offset = (base_offset << 7) + (c & 127);
333 }
Geert Boschaa7e44b2007-06-01 15:18:05 -0400334 delta_base->offset = obj->idx.offset - base_offset;
Nicolas Pitred8f32552008-10-29 19:02:45 -0400335 if (delta_base->offset <= 0 || delta_base->offset >= obj->idx.offset)
Geert Boschaa7e44b2007-06-01 15:18:05 -0400336 bad_object(obj->idx.offset, "delta base offset is out of bound");
Nicolas Pitre53dda6f2006-09-21 00:08:33 -0400337 break;
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700338 case OBJ_COMMIT:
339 case OBJ_TREE:
340 case OBJ_BLOB:
341 case OBJ_TAG:
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700342 break;
343 default:
Geert Boschaa7e44b2007-06-01 15:18:05 -0400344 bad_object(obj->idx.offset, "unknown object type %d", obj->type);
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700345 }
Geert Boschaa7e44b2007-06-01 15:18:05 -0400346 obj->hdr_size = consumed_bytes - obj->idx.offset;
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700347
Geert Boschaa7e44b2007-06-01 15:18:05 -0400348 data = unpack_entry_data(obj->idx.offset, obj->size);
349 obj->idx.crc32 = input_crc32;
Nicolas Pitreee5743c2007-04-09 01:06:32 -0400350 return data;
Nicolas Pitre2d477052006-10-20 14:45:21 -0400351}
352
Nicolas Pitreb89c4e92006-10-27 16:14:23 -0400353static void *get_data_from_pack(struct object_entry *obj)
Nicolas Pitre2d477052006-10-20 14:45:21 -0400354{
Nicolas Pitrea91ef6e2007-11-10 23:29:10 -0500355 off_t from = obj[0].idx.offset + obj[0].hdr_size;
Geert Boschaa7e44b2007-06-01 15:18:05 -0400356 unsigned long len = obj[1].idx.offset - from;
Nicolas Pitre776ea372010-04-12 12:11:07 -0400357 unsigned char *data, *inbuf;
Nicolas Pitre2d477052006-10-20 14:45:21 -0400358 z_stream stream;
Nicolas Pitre776ea372010-04-12 12:11:07 -0400359 int status;
Nicolas Pitre2d477052006-10-20 14:45:21 -0400360
Nicolas Pitre776ea372010-04-12 12:11:07 -0400361 data = xmalloc(obj->size);
362 inbuf = xmalloc((len < 64*1024) ? len : 64*1024);
363
364 memset(&stream, 0, sizeof(stream));
365 git_inflate_init(&stream);
366 stream.next_out = data;
367 stream.avail_out = obj->size;
368
Shawn O. Pearcea91d49c2007-02-27 23:47:19 -0500369 do {
Nicolas Pitre776ea372010-04-12 12:11:07 -0400370 ssize_t n = (len < 64*1024) ? len : 64*1024;
371 n = pread(pack_fd, inbuf, n, from);
Samuel Tardieufb742432008-10-06 19:28:41 +0200372 if (n < 0)
Thomas Rastd824cbb2009-06-27 17:58:46 +0200373 die_errno("cannot pread pack file");
Samuel Tardieufb742432008-10-06 19:28:41 +0200374 if (!n)
Nicolas Pitre776ea372010-04-12 12:11:07 -0400375 die("premature end of pack file, %lu bytes missing", len);
376 from += n;
377 len -= n;
378 stream.next_in = inbuf;
379 stream.avail_in = n;
380 status = git_inflate(&stream, 0);
381 } while (len && status == Z_OK && !stream.avail_in);
382
383 /* This has been inflated OK when first encountered, so... */
384 if (status != Z_STREAM_END || stream.total_out != obj->size)
Nicolas Pitre2d477052006-10-20 14:45:21 -0400385 die("serious inflate inconsistency");
Nicolas Pitre776ea372010-04-12 12:11:07 -0400386
387 git_inflate_end(&stream);
388 free(inbuf);
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700389 return data;
390}
391
Nicolas Pitre53dda6f2006-09-21 00:08:33 -0400392static int find_delta(const union delta_base *base)
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700393{
394 int first = 0, last = nr_deltas;
395
396 while (first < last) {
397 int next = (first + last) / 2;
398 struct delta_entry *delta = &deltas[next];
399 int cmp;
400
Nicolas Pitre3c552872006-10-17 16:23:26 -0400401 cmp = memcmp(base, &delta->base, UNION_BASE_SZ);
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700402 if (!cmp)
403 return next;
404 if (cmp < 0) {
405 last = next;
406 continue;
407 }
408 first = next+1;
409 }
410 return -first-1;
411}
412
Nicolas Pitre6a87ed92008-10-17 15:57:58 -0400413static void find_delta_children(const union delta_base *base,
414 int *first_index, int *last_index)
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700415{
Nicolas Pitre53dda6f2006-09-21 00:08:33 -0400416 int first = find_delta(base);
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700417 int last = first;
418 int end = nr_deltas - 1;
419
Nicolas Pitre6a87ed92008-10-17 15:57:58 -0400420 if (first < 0) {
421 *first_index = 0;
422 *last_index = -1;
423 return;
424 }
Nicolas Pitre3c552872006-10-17 16:23:26 -0400425 while (first > 0 && !memcmp(&deltas[first - 1].base, base, UNION_BASE_SZ))
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700426 --first;
Nicolas Pitre3c552872006-10-17 16:23:26 -0400427 while (last < end && !memcmp(&deltas[last + 1].base, base, UNION_BASE_SZ))
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700428 ++last;
429 *first_index = first;
430 *last_index = last;
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700431}
432
433static void sha1_object(const void *data, unsigned long size,
Nicolas Pitre9096c662007-03-20 17:07:48 -0400434 enum object_type type, unsigned char *sha1)
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700435{
Nicolas Pitrece9fbf12007-03-20 16:02:09 -0400436 hash_sha1_file(data, size, typename(type), sha1);
Nicolas Pitre9096c662007-03-20 17:07:48 -0400437 if (has_sha1_file(sha1)) {
Nicolas Pitre8685da42007-03-20 15:32:35 -0400438 void *has_data;
439 enum object_type has_type;
440 unsigned long has_size;
441 has_data = read_sha1_file(sha1, &has_type, &has_size);
442 if (!has_data)
443 die("cannot read existing object %s", sha1_to_hex(sha1));
444 if (size != has_size || type != has_type ||
445 memcmp(data, has_data, size) != 0)
446 die("SHA1 COLLISION FOUND WITH %s !", sha1_to_hex(sha1));
Nicolas Pitrebbf4b412007-04-03 12:33:46 -0400447 free(has_data);
Nicolas Pitre8685da42007-03-20 15:32:35 -0400448 }
Martin Koegler0153be02008-02-25 22:46:12 +0100449 if (strict) {
450 if (type == OBJ_BLOB) {
451 struct blob *blob = lookup_blob(sha1);
452 if (blob)
453 blob->object.flags |= FLAG_CHECKED;
454 else
455 die("invalid blob object %s", sha1_to_hex(sha1));
456 } else {
457 struct object *obj;
458 int eaten;
459 void *buf = (void *) data;
460
461 /*
462 * we do not need to free the memory here, as the
463 * buf is deleted by the caller.
464 */
465 obj = parse_object_buffer(sha1, type, size, buf, &eaten);
466 if (!obj)
467 die("invalid %s", typename(type));
468 if (fsck_object(obj, 1, fsck_error_function))
469 die("Error in object");
Linus Torvalds2af202b2009-06-18 10:28:43 -0700470 if (fsck_walk(obj, mark_link, NULL))
Martin Koegler0153be02008-02-25 22:46:12 +0100471 die("Not all child objects of %s are reachable", sha1_to_hex(obj->sha1));
472
473 if (obj->type == OBJ_TREE) {
474 struct tree *item = (struct tree *) obj;
475 item->buffer = NULL;
476 }
477 if (obj->type == OBJ_COMMIT) {
478 struct commit *commit = (struct commit *) obj;
479 commit->buffer = NULL;
480 }
481 obj->flags |= FLAG_CHECKED;
482 }
483 }
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700484}
485
Shawn O. Pearce92392b42008-07-15 04:45:34 +0000486static void *get_base_data(struct base_data *c)
487{
488 if (!c->data) {
489 struct object_entry *obj = c->obj;
490
491 if (obj->type == OBJ_REF_DELTA || obj->type == OBJ_OFS_DELTA) {
492 void *base = get_base_data(c->base);
493 void *raw = get_data_from_pack(obj);
494 c->data = patch_delta(
495 base, c->base->size,
496 raw, obj->size,
497 &c->size);
498 free(raw);
499 if (!c->data)
500 bad_object(obj->idx.offset, "failed to apply delta");
Nicolas Pitre9441b612008-10-17 15:57:57 -0400501 } else {
Shawn O. Pearce92392b42008-07-15 04:45:34 +0000502 c->data = get_data_from_pack(obj);
Nicolas Pitre9441b612008-10-17 15:57:57 -0400503 c->size = obj->size;
504 }
Shawn O. Pearce92392b42008-07-15 04:45:34 +0000505
506 base_cache_used += c->size;
507 prune_base_data(c);
508 }
509 return c->data;
510}
511
Shawn O. Pearcef41aebd2008-07-13 22:07:44 -0400512static void resolve_delta(struct object_entry *delta_obj,
Nicolas Pitre9441b612008-10-17 15:57:57 -0400513 struct base_data *base, struct base_data *result)
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700514{
Nicolas Pitrece3f6dc2008-10-20 16:46:19 -0400515 void *base_data, *delta_data;
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700516
Nicolas Pitrece3f6dc2008-10-20 16:46:19 -0400517 delta_obj->real_type = base->obj->real_type;
Nicolas Pitre636171c2006-10-25 23:28:17 -0400518 delta_data = get_data_from_pack(delta_obj);
Nicolas Pitrece3f6dc2008-10-20 16:46:19 -0400519 base_data = get_base_data(base);
Nicolas Pitre9441b612008-10-17 15:57:57 -0400520 result->obj = delta_obj;
Nicolas Pitrece3f6dc2008-10-20 16:46:19 -0400521 result->data = patch_delta(base_data, base->size,
522 delta_data, delta_obj->size, &result->size);
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700523 free(delta_data);
Nicolas Pitre9441b612008-10-17 15:57:57 -0400524 if (!result->data)
Geert Boschaa7e44b2007-06-01 15:18:05 -0400525 bad_object(delta_obj->idx.offset, "failed to apply delta");
Nicolas Pitre9441b612008-10-17 15:57:57 -0400526 sha1_object(result->data, result->size, delta_obj->real_type,
527 delta_obj->idx.sha1);
Nicolas Pitre636171c2006-10-25 23:28:17 -0400528 nr_resolved_deltas++;
Nicolas Pitre9441b612008-10-17 15:57:57 -0400529}
Nicolas Pitre53dda6f2006-09-21 00:08:33 -0400530
Nicolas Pitre9441b612008-10-17 15:57:57 -0400531static void find_unresolved_deltas(struct base_data *base,
532 struct base_data *prev_base)
533{
Nicolas Pitre6a87ed92008-10-17 15:57:58 -0400534 int i, ref_first, ref_last, ofs_first, ofs_last;
Shawn O. Pearce4a438ca2008-07-13 22:07:45 -0400535
Nicolas Pitre9441b612008-10-17 15:57:57 -0400536 /*
537 * This is a recursive function. Those brackets should help reducing
538 * stack usage by limiting the scope of the delta_base union.
539 */
540 {
541 union delta_base base_spec;
542
543 hashcpy(base_spec.sha1, base->obj->idx.sha1);
Nicolas Pitre6a87ed92008-10-17 15:57:58 -0400544 find_delta_children(&base_spec, &ref_first, &ref_last);
Nicolas Pitre9441b612008-10-17 15:57:57 -0400545
546 memset(&base_spec, 0, sizeof(base_spec));
547 base_spec.offset = base->obj->idx.offset;
Nicolas Pitre6a87ed92008-10-17 15:57:58 -0400548 find_delta_children(&base_spec, &ofs_first, &ofs_last);
Nicolas Pitre9441b612008-10-17 15:57:57 -0400549 }
550
Nicolas Pitre9ed19612008-10-23 15:05:59 -0400551 if (ref_last == -1 && ofs_last == -1) {
552 free(base->data);
Nicolas Pitre9441b612008-10-17 15:57:57 -0400553 return;
Nicolas Pitre9ed19612008-10-23 15:05:59 -0400554 }
Nicolas Pitre9441b612008-10-17 15:57:57 -0400555
556 link_base_data(prev_base, base);
557
Nicolas Pitre6a87ed92008-10-17 15:57:58 -0400558 for (i = ref_first; i <= ref_last; i++) {
559 struct object_entry *child = objects + deltas[i].obj_no;
560 if (child->real_type == OBJ_REF_DELTA) {
561 struct base_data result;
562 resolve_delta(child, base, &result);
563 if (i == ref_last && ofs_last == -1)
564 free_base_data(base);
565 find_unresolved_deltas(&result, base);
Nicolas Pitre636171c2006-10-25 23:28:17 -0400566 }
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700567 }
Nicolas Pitre53dda6f2006-09-21 00:08:33 -0400568
Nicolas Pitre6a87ed92008-10-17 15:57:58 -0400569 for (i = ofs_first; i <= ofs_last; i++) {
570 struct object_entry *child = objects + deltas[i].obj_no;
571 if (child->real_type == OBJ_OFS_DELTA) {
572 struct base_data result;
573 resolve_delta(child, base, &result);
574 if (i == ofs_last)
575 free_base_data(base);
576 find_unresolved_deltas(&result, base);
Nicolas Pitre636171c2006-10-25 23:28:17 -0400577 }
Nicolas Pitre53dda6f2006-09-21 00:08:33 -0400578 }
579
Nicolas Pitre9441b612008-10-17 15:57:57 -0400580 unlink_base_data(base);
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700581}
582
583static int compare_delta_entry(const void *a, const void *b)
584{
585 const struct delta_entry *delta_a = a;
586 const struct delta_entry *delta_b = b;
Nicolas Pitre3c552872006-10-17 16:23:26 -0400587 return memcmp(&delta_a->base, &delta_b->base, UNION_BASE_SZ);
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700588}
589
Nicolas Pitre2d477052006-10-20 14:45:21 -0400590/* Parse all objects and return the pack content SHA1 hash */
591static void parse_pack_objects(unsigned char *sha1)
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700592{
Nicolas Pitre96a02f82007-04-18 14:27:45 -0400593 int i;
Nicolas Pitre53dda6f2006-09-21 00:08:33 -0400594 struct delta_entry *delta = deltas;
Nicolas Pitre2d477052006-10-20 14:45:21 -0400595 struct stat st;
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700596
597 /*
598 * First pass:
599 * - find locations of all objects;
600 * - calculate SHA1 of all non-delta objects;
Nicolas Pitreb89c4e92006-10-27 16:14:23 -0400601 * - remember base (SHA1 or offset) for all deltas.
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700602 */
Nicolas Pitre13aaf142007-04-20 14:10:07 -0400603 if (verbose)
Nicolas Pitre29e63ed2007-10-30 14:57:35 -0400604 progress = start_progress(
605 from_stdin ? "Receiving objects" : "Indexing objects",
606 nr_objects);
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700607 for (i = 0; i < nr_objects; i++) {
608 struct object_entry *obj = &objects[i];
Shawn O. Pearcef41aebd2008-07-13 22:07:44 -0400609 void *data = unpack_raw_entry(obj, &delta->base);
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700610 obj->real_type = obj->type;
Nicolas Pitre53dda6f2006-09-21 00:08:33 -0400611 if (obj->type == OBJ_REF_DELTA || obj->type == OBJ_OFS_DELTA) {
612 nr_deltas++;
Nicolas Pitre636171c2006-10-25 23:28:17 -0400613 delta->obj_no = i;
Nicolas Pitre53dda6f2006-09-21 00:08:33 -0400614 delta++;
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700615 } else
Geert Boschaa7e44b2007-06-01 15:18:05 -0400616 sha1_object(data, obj->size, obj->type, obj->idx.sha1);
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700617 free(data);
Nicolas Pitre4d4fcc52007-10-30 14:57:33 -0400618 display_progress(progress, i+1);
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700619 }
Geert Boschaa7e44b2007-06-01 15:18:05 -0400620 objects[i].idx.offset = consumed_bytes;
Nicolas Pitre4d4fcc52007-10-30 14:57:33 -0400621 stop_progress(&progress);
Nicolas Pitre2d477052006-10-20 14:45:21 -0400622
623 /* Check pack integrity */
Nicolas Pitre636171c2006-10-25 23:28:17 -0400624 flush();
Nicolas Pitre9126f002008-10-01 14:05:20 -0400625 git_SHA1_Final(sha1, &input_ctx);
Nicolas Pitre2d477052006-10-20 14:45:21 -0400626 if (hashcmp(fill(20), sha1))
Nicolas Pitree42797f2006-10-23 14:50:18 -0400627 die("pack is corrupted (SHA1 mismatch)");
Nicolas Pitre9bee2472006-10-25 23:31:53 -0400628 use(20);
Nicolas Pitre2d477052006-10-20 14:45:21 -0400629
630 /* If input_fd is a file, we should have reached its end now. */
631 if (fstat(input_fd, &st))
Thomas Rastd824cbb2009-06-27 17:58:46 +0200632 die_errno("cannot fstat packfile");
Johannes Schindelinfa257b02007-02-22 19:14:14 +0100633 if (S_ISREG(st.st_mode) &&
634 lseek(input_fd, 0, SEEK_CUR) - input_len != st.st_size)
Nicolas Pitree42797f2006-10-23 14:50:18 -0400635 die("pack has junk at the end");
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700636
Nicolas Pitre3c9af362006-10-25 23:32:59 -0400637 if (!nr_deltas)
638 return;
639
Nicolas Pitre53dda6f2006-09-21 00:08:33 -0400640 /* Sort deltas by base SHA1/offset for fast searching */
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700641 qsort(deltas, nr_deltas, sizeof(struct delta_entry),
642 compare_delta_entry);
643
644 /*
645 * Second pass:
646 * - for all non-delta objects, look if it is used as a base for
647 * deltas;
648 * - if used as a base, uncompress the object and apply all deltas,
649 * recursively checking if the resulting object is used as a base
650 * for some more deltas.
651 */
Nicolas Pitre13aaf142007-04-20 14:10:07 -0400652 if (verbose)
Nicolas Pitredc6a0752007-10-30 14:57:32 -0400653 progress = start_progress("Resolving deltas", nr_deltas);
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700654 for (i = 0; i < nr_objects; i++) {
655 struct object_entry *obj = &objects[i];
Shawn O. Pearcef41aebd2008-07-13 22:07:44 -0400656 struct base_data base_obj;
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700657
Nicolas Pitre53dda6f2006-09-21 00:08:33 -0400658 if (obj->type == OBJ_REF_DELTA || obj->type == OBJ_OFS_DELTA)
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700659 continue;
Shawn O. Pearce03993e12008-07-13 22:07:46 -0400660 base_obj.obj = obj;
Nicolas Pitre9441b612008-10-17 15:57:57 -0400661 base_obj.data = NULL;
662 find_unresolved_deltas(&base_obj, NULL);
Nicolas Pitre4d4fcc52007-10-30 14:57:33 -0400663 display_progress(progress, nr_resolved_deltas);
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700664 }
Nicolas Pitre636171c2006-10-25 23:28:17 -0400665}
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700666
Nicolas Pitre85221482008-08-29 16:08:01 -0400667static int write_compressed(struct sha1file *f, void *in, unsigned int size)
Nicolas Pitre636171c2006-10-25 23:28:17 -0400668{
669 z_stream stream;
Nicolas Pitre7734d7f2010-04-12 16:50:35 -0400670 int status;
671 unsigned char outbuf[4096];
Nicolas Pitre636171c2006-10-25 23:28:17 -0400672
673 memset(&stream, 0, sizeof(stream));
674 deflateInit(&stream, zlib_compression_level);
Nicolas Pitre636171c2006-10-25 23:28:17 -0400675 stream.next_in = in;
676 stream.avail_in = size;
Nicolas Pitre636171c2006-10-25 23:28:17 -0400677
Nicolas Pitre7734d7f2010-04-12 16:50:35 -0400678 do {
679 stream.next_out = outbuf;
680 stream.avail_out = sizeof(outbuf);
681 status = deflate(&stream, Z_FINISH);
682 sha1write(f, outbuf, sizeof(outbuf) - stream.avail_out);
683 } while (status == Z_OK);
684
685 if (status != Z_STREAM_END)
686 die("unable to deflate appended object (%d)", status);
Nicolas Pitre636171c2006-10-25 23:28:17 -0400687 size = stream.total_out;
Nicolas Pitre7734d7f2010-04-12 16:50:35 -0400688 deflateEnd(&stream);
Nicolas Pitre636171c2006-10-25 23:28:17 -0400689 return size;
690}
691
Nicolas Pitre85221482008-08-29 16:08:01 -0400692static struct object_entry *append_obj_to_pack(struct sha1file *f,
Shawn O. Pearce03993e12008-07-13 22:07:46 -0400693 const unsigned char *sha1, void *buf,
Nicolas Pitre636171c2006-10-25 23:28:17 -0400694 unsigned long size, enum object_type type)
695{
696 struct object_entry *obj = &objects[nr_objects++];
697 unsigned char header[10];
698 unsigned long s = size;
699 int n = 0;
700 unsigned char c = (type << 4) | (s & 15);
701 s >>= 4;
702 while (s) {
703 header[n++] = c | 0x80;
704 c = s & 0x7f;
705 s >>= 7;
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700706 }
Nicolas Pitre636171c2006-10-25 23:28:17 -0400707 header[n++] = c;
Nicolas Pitre85221482008-08-29 16:08:01 -0400708 crc32_begin(f);
709 sha1write(f, header, n);
Björn Steinbrink72de2882008-07-24 18:32:00 +0100710 obj[0].size = size;
711 obj[0].hdr_size = n;
712 obj[0].type = type;
713 obj[0].real_type = type;
Geert Boschaa7e44b2007-06-01 15:18:05 -0400714 obj[1].idx.offset = obj[0].idx.offset + n;
Nicolas Pitre85221482008-08-29 16:08:01 -0400715 obj[1].idx.offset += write_compressed(f, buf, size);
716 obj[0].idx.crc32 = crc32_end(f);
Nicolas Pitre838cd342008-10-09 22:08:51 -0400717 sha1flush(f);
Geert Boschaa7e44b2007-06-01 15:18:05 -0400718 hashcpy(obj->idx.sha1, sha1);
Shawn O. Pearce03993e12008-07-13 22:07:46 -0400719 return obj;
Nicolas Pitre636171c2006-10-25 23:28:17 -0400720}
721
722static int delta_pos_compare(const void *_a, const void *_b)
723{
724 struct delta_entry *a = *(struct delta_entry **)_a;
725 struct delta_entry *b = *(struct delta_entry **)_b;
726 return a->obj_no - b->obj_no;
727}
728
Nicolas Pitre85221482008-08-29 16:08:01 -0400729static void fix_unresolved_deltas(struct sha1file *f, int nr_unresolved)
Nicolas Pitre636171c2006-10-25 23:28:17 -0400730{
731 struct delta_entry **sorted_by_pos;
Nicolas Pitre96a02f82007-04-18 14:27:45 -0400732 int i, n = 0;
Nicolas Pitre636171c2006-10-25 23:28:17 -0400733
734 /*
735 * Since many unresolved deltas may well be themselves base objects
736 * for more unresolved deltas, we really want to include the
737 * smallest number of base objects that would cover as much delta
738 * as possible by picking the
739 * trunc deltas first, allowing for other deltas to resolve without
740 * additional base objects. Since most base objects are to be found
741 * before deltas depending on them, a good heuristic is to start
742 * resolving deltas in the same order as their position in the pack.
743 */
744 sorted_by_pos = xmalloc(nr_unresolved * sizeof(*sorted_by_pos));
745 for (i = 0; i < nr_deltas; i++) {
746 if (objects[deltas[i].obj_no].real_type != OBJ_REF_DELTA)
747 continue;
748 sorted_by_pos[n++] = &deltas[i];
749 }
750 qsort(sorted_by_pos, n, sizeof(*sorted_by_pos), delta_pos_compare);
751
752 for (i = 0; i < n; i++) {
753 struct delta_entry *d = sorted_by_pos[i];
Nicolas Pitre21666f12007-02-26 14:55:59 -0500754 enum object_type type;
Shawn O. Pearcef41aebd2008-07-13 22:07:44 -0400755 struct base_data base_obj;
Nicolas Pitre636171c2006-10-25 23:28:17 -0400756
757 if (objects[d->obj_no].real_type != OBJ_REF_DELTA)
758 continue;
Shawn O. Pearcef41aebd2008-07-13 22:07:44 -0400759 base_obj.data = read_sha1_file(d->base.sha1, &type, &base_obj.size);
760 if (!base_obj.data)
Nicolas Pitre636171c2006-10-25 23:28:17 -0400761 continue;
Nicolas Pitre636171c2006-10-25 23:28:17 -0400762
Shawn O. Pearce03993e12008-07-13 22:07:46 -0400763 if (check_sha1_signature(d->base.sha1, base_obj.data,
764 base_obj.size, typename(type)))
765 die("local object %s is corrupt", sha1_to_hex(d->base.sha1));
Nicolas Pitre85221482008-08-29 16:08:01 -0400766 base_obj.obj = append_obj_to_pack(f, d->base.sha1,
767 base_obj.data, base_obj.size, type);
Nicolas Pitre9441b612008-10-17 15:57:57 -0400768 find_unresolved_deltas(&base_obj, NULL);
Nicolas Pitre4d4fcc52007-10-30 14:57:33 -0400769 display_progress(progress, nr_resolved_deltas);
Nicolas Pitre636171c2006-10-25 23:28:17 -0400770 }
771 free(sorted_by_pos);
772}
773
Nicolas Pitree42797f2006-10-23 14:50:18 -0400774static void final(const char *final_pack_name, const char *curr_pack_name,
775 const char *final_index_name, const char *curr_index_name,
Shawn Pearceb8077702006-10-29 04:41:59 -0500776 const char *keep_name, const char *keep_msg,
Nicolas Pitree42797f2006-10-23 14:50:18 -0400777 unsigned char *sha1)
778{
Shawn O. Pearce3a556022007-03-06 20:44:17 -0500779 const char *report = "pack";
Nicolas Pitree42797f2006-10-23 14:50:18 -0400780 char name[PATH_MAX];
781 int err;
782
783 if (!from_stdin) {
784 close(input_fd);
785 } else {
Linus Torvalds4c81b032008-05-30 08:42:16 -0700786 fsync_or_die(output_fd, curr_pack_name);
Nicolas Pitree42797f2006-10-23 14:50:18 -0400787 err = close(output_fd);
788 if (err)
Thomas Rastd824cbb2009-06-27 17:58:46 +0200789 die_errno("error while closing pack file");
Nicolas Pitree42797f2006-10-23 14:50:18 -0400790 }
791
Shawn Pearceb8077702006-10-29 04:41:59 -0500792 if (keep_msg) {
793 int keep_fd, keep_msg_len = strlen(keep_msg);
Junio C Hamano6e180cd2009-02-24 23:11:29 -0800794
795 if (!keep_name)
796 keep_fd = odb_pack_keep(name, sizeof(name), sha1);
797 else
798 keep_fd = open(keep_name, O_RDWR|O_CREAT|O_EXCL, 0600);
799
Nicolas Pitre9ca4a202006-11-01 17:06:24 -0500800 if (keep_fd < 0) {
801 if (errno != EEXIST)
Thomas Rastd824cbb2009-06-27 17:58:46 +0200802 die_errno("cannot write keep file '%s'",
803 keep_name);
Nicolas Pitre9ca4a202006-11-01 17:06:24 -0500804 } else {
805 if (keep_msg_len > 0) {
806 write_or_die(keep_fd, keep_msg, keep_msg_len);
807 write_or_die(keep_fd, "\n", 1);
808 }
Jim Meyering91c8d592007-06-24 21:20:41 +0200809 if (close(keep_fd) != 0)
Thomas Rastd824cbb2009-06-27 17:58:46 +0200810 die_errno("cannot close written keep file '%s'",
811 keep_name);
Nicolas Pitre576162a2006-11-01 17:06:25 -0500812 report = "keep";
Shawn Pearceb8077702006-10-29 04:41:59 -0500813 }
Shawn Pearceb8077702006-10-29 04:41:59 -0500814 }
815
Nicolas Pitree42797f2006-10-23 14:50:18 -0400816 if (final_pack_name != curr_pack_name) {
817 if (!final_pack_name) {
818 snprintf(name, sizeof(name), "%s/pack/pack-%s.pack",
819 get_object_directory(), sha1_to_hex(sha1));
820 final_pack_name = name;
821 }
822 if (move_temp_to_file(curr_pack_name, final_pack_name))
823 die("cannot store pack file");
Johan Herlandfb8b1932009-03-26 16:16:47 +0100824 } else if (from_stdin)
Petr Baudis33b65032008-10-03 12:20:43 +0200825 chmod(final_pack_name, 0444);
Nicolas Pitree42797f2006-10-23 14:50:18 -0400826
Nicolas Pitree42797f2006-10-23 14:50:18 -0400827 if (final_index_name != curr_index_name) {
828 if (!final_index_name) {
829 snprintf(name, sizeof(name), "%s/pack/pack-%s.idx",
830 get_object_directory(), sha1_to_hex(sha1));
831 final_index_name = name;
832 }
833 if (move_temp_to_file(curr_index_name, final_index_name))
834 die("cannot store index file");
Johan Herlandfb8b1932009-03-26 16:16:47 +0100835 } else
836 chmod(final_index_name, 0444);
Nicolas Pitre576162a2006-11-01 17:06:25 -0500837
838 if (!from_stdin) {
839 printf("%s\n", sha1_to_hex(sha1));
840 } else {
841 char buf[48];
842 int len = snprintf(buf, sizeof(buf), "%s\t%s\n",
843 report, sha1_to_hex(sha1));
Junio C Hamanod1b2ddc2007-01-11 13:15:51 -0800844 write_or_die(1, buf, len);
Nicolas Pitre576162a2006-11-01 17:06:25 -0500845
846 /*
847 * Let's just mimic git-unpack-objects here and write
848 * the last part of the input buffer to stdout.
849 */
850 while (input_len) {
851 err = xwrite(1, input_buffer + input_offset, input_len);
852 if (err <= 0)
853 break;
854 input_len -= err;
855 input_offset += err;
856 }
857 }
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700858}
859
Johannes Schindelinef90d6d2008-05-14 18:46:53 +0100860static int git_index_pack_config(const char *k, const char *v, void *cb)
Nicolas Pitre4d00bda2007-11-01 23:26:04 -0400861{
862 if (!strcmp(k, "pack.indexversion")) {
863 pack_idx_default_version = git_config_int(k, v);
864 if (pack_idx_default_version > 2)
Ramsay Jones6e1c2342008-07-03 16:52:09 +0100865 die("bad pack.indexversion=%"PRIu32,
866 pack_idx_default_version);
Nicolas Pitre4d00bda2007-11-01 23:26:04 -0400867 return 0;
868 }
Johannes Schindelinef90d6d2008-05-14 18:46:53 +0100869 return git_default_config(k, v, cb);
Nicolas Pitre4d00bda2007-11-01 23:26:04 -0400870}
871
Linus Torvalds3bb72562010-01-22 07:55:19 -0800872int cmd_index_pack(int argc, const char **argv, const char *prefix)
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700873{
Nicolas Pitre636171c2006-10-25 23:28:17 -0400874 int i, fix_thin_pack = 0;
Linus Torvalds3bb72562010-01-22 07:55:19 -0800875 const char *curr_pack, *curr_index;
876 const char *index_name = NULL, *pack_name = NULL;
Shawn Pearceb8077702006-10-29 04:41:59 -0500877 const char *keep_name = NULL, *keep_msg = NULL;
878 char *index_name_buf = NULL, *keep_name_buf = NULL;
Geert Boschaa7e44b2007-06-01 15:18:05 -0400879 struct pack_idx_entry **idx_objects;
Nicolas Pitre85221482008-08-29 16:08:01 -0400880 unsigned char pack_sha1[20];
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700881
Jonathan Nieder99caeed2009-11-09 09:05:01 -0600882 if (argc == 2 && !strcmp(argv[1], "-h"))
883 usage(index_pack_usage);
884
Nelson Elhage6e2a09d2010-08-12 10:18:12 -0400885 read_replace_refs = 0;
886
Nguyễn Thái Ngọc Duy3f8099f2010-07-24 06:30:49 -0500887 git_config(git_index_pack_config, NULL);
888 if (prefix && chdir(prefix))
889 die("Cannot come back to cwd");
Nicolas Pitre4d00bda2007-11-01 23:26:04 -0400890
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700891 for (i = 1; i < argc; i++) {
Linus Torvalds3bb72562010-01-22 07:55:19 -0800892 const char *arg = argv[i];
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700893
894 if (*arg == '-') {
Nicolas Pitree42797f2006-10-23 14:50:18 -0400895 if (!strcmp(arg, "--stdin")) {
896 from_stdin = 1;
Nicolas Pitre636171c2006-10-25 23:28:17 -0400897 } else if (!strcmp(arg, "--fix-thin")) {
898 fix_thin_pack = 1;
Martin Koegler0153be02008-02-25 22:46:12 +0100899 } else if (!strcmp(arg, "--strict")) {
900 strict = 1;
Shawn Pearceb8077702006-10-29 04:41:59 -0500901 } else if (!strcmp(arg, "--keep")) {
902 keep_msg = "";
Junio C Hamanocc44c762007-02-20 01:53:29 -0800903 } else if (!prefixcmp(arg, "--keep=")) {
Shawn Pearceb8077702006-10-29 04:41:59 -0500904 keep_msg = arg + 7;
Junio C Hamanocc44c762007-02-20 01:53:29 -0800905 } else if (!prefixcmp(arg, "--pack_header=")) {
Nicolas Pitrebed006f2006-11-01 17:06:20 -0500906 struct pack_header *hdr;
907 char *c;
908
909 hdr = (struct pack_header *)input_buffer;
910 hdr->hdr_signature = htonl(PACK_SIGNATURE);
911 hdr->hdr_version = htonl(strtoul(arg + 14, &c, 10));
912 if (*c != ',')
913 die("bad %s", arg);
914 hdr->hdr_entries = htonl(strtoul(c + 1, &c, 10));
915 if (*c)
916 die("bad %s", arg);
917 input_len = sizeof(*hdr);
Nicolas Pitre3c9af362006-10-25 23:32:59 -0400918 } else if (!strcmp(arg, "-v")) {
919 verbose = 1;
Nicolas Pitree42797f2006-10-23 14:50:18 -0400920 } else if (!strcmp(arg, "-o")) {
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700921 if (index_name || (i+1) >= argc)
922 usage(index_pack_usage);
923 index_name = argv[++i];
Nicolas Pitre4ba7d712007-04-09 17:32:03 -0400924 } else if (!prefixcmp(arg, "--index-version=")) {
925 char *c;
Geert Boschaa7e44b2007-06-01 15:18:05 -0400926 pack_idx_default_version = strtoul(arg + 16, &c, 10);
927 if (pack_idx_default_version > 2)
Nicolas Pitre4ba7d712007-04-09 17:32:03 -0400928 die("bad %s", arg);
929 if (*c == ',')
Geert Boschaa7e44b2007-06-01 15:18:05 -0400930 pack_idx_off32_limit = strtoul(c+1, &c, 0);
931 if (*c || pack_idx_off32_limit & 0x80000000)
Nicolas Pitre4ba7d712007-04-09 17:32:03 -0400932 die("bad %s", arg);
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700933 } else
934 usage(index_pack_usage);
935 continue;
936 }
937
938 if (pack_name)
939 usage(index_pack_usage);
940 pack_name = arg;
941 }
942
Nicolas Pitree42797f2006-10-23 14:50:18 -0400943 if (!pack_name && !from_stdin)
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700944 usage(index_pack_usage);
Nicolas Pitre636171c2006-10-25 23:28:17 -0400945 if (fix_thin_pack && !from_stdin)
946 die("--fix-thin cannot be used without --stdin");
Nicolas Pitree42797f2006-10-23 14:50:18 -0400947 if (!index_name && pack_name) {
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700948 int len = strlen(pack_name);
Rene Scharfe5bb1cda2006-08-11 14:01:45 +0200949 if (!has_extension(pack_name, ".pack"))
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700950 die("packfile name '%s' does not end with '.pack'",
951 pack_name);
Pavel Roskin6689f082005-12-21 15:35:48 -0500952 index_name_buf = xmalloc(len);
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700953 memcpy(index_name_buf, pack_name, len - 5);
954 strcpy(index_name_buf + len - 5, ".idx");
955 index_name = index_name_buf;
956 }
Shawn Pearceb8077702006-10-29 04:41:59 -0500957 if (keep_msg && !keep_name && pack_name) {
958 int len = strlen(pack_name);
959 if (!has_extension(pack_name, ".pack"))
960 die("packfile name '%s' does not end with '.pack'",
961 pack_name);
962 keep_name_buf = xmalloc(len);
963 memcpy(keep_name_buf, pack_name, len - 5);
964 strcpy(keep_name_buf + len - 5, ".keep");
965 keep_name = keep_name_buf;
966 }
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700967
Nicolas Pitree42797f2006-10-23 14:50:18 -0400968 curr_pack = open_pack_file(pack_name);
Sergey Vlasov9cf6d332005-10-12 12:01:31 -0700969 parse_pack_header();
Nicolas Pitre636171c2006-10-25 23:28:17 -0400970 objects = xmalloc((nr_objects + 1) * sizeof(struct object_entry));
971 deltas = xmalloc(nr_objects * sizeof(struct delta_entry));
Nicolas Pitre85221482008-08-29 16:08:01 -0400972 parse_pack_objects(pack_sha1);
Nicolas Pitre96a02f82007-04-18 14:27:45 -0400973 if (nr_deltas == nr_resolved_deltas) {
Nicolas Pitre4d4fcc52007-10-30 14:57:33 -0400974 stop_progress(&progress);
Nicolas Pitre96a02f82007-04-18 14:27:45 -0400975 /* Flush remaining pack final 20-byte SHA1. */
976 flush();
977 } else {
Nicolas Pitre636171c2006-10-25 23:28:17 -0400978 if (fix_thin_pack) {
Nicolas Pitre85221482008-08-29 16:08:01 -0400979 struct sha1file *f;
980 unsigned char read_sha1[20], tail_sha1[20];
Nicolas Pitrea984a062007-11-08 15:45:41 -0500981 char msg[48];
Nicolas Pitre636171c2006-10-25 23:28:17 -0400982 int nr_unresolved = nr_deltas - nr_resolved_deltas;
Nicolas Pitre3c9af362006-10-25 23:32:59 -0400983 int nr_objects_initial = nr_objects;
Nicolas Pitre636171c2006-10-25 23:28:17 -0400984 if (nr_unresolved <= 0)
985 die("confusion beyond insanity");
986 objects = xrealloc(objects,
987 (nr_objects + nr_unresolved + 1)
988 * sizeof(*objects));
Nicolas Pitre85221482008-08-29 16:08:01 -0400989 f = sha1fd(output_fd, curr_pack);
990 fix_unresolved_deltas(f, nr_unresolved);
Nicolas Pitrea984a062007-11-08 15:45:41 -0500991 sprintf(msg, "completed with %d local objects",
992 nr_objects - nr_objects_initial);
993 stop_progress_msg(&progress, msg);
Nicolas Pitre85221482008-08-29 16:08:01 -0400994 sha1close(f, tail_sha1, 0);
995 hashcpy(read_sha1, pack_sha1);
996 fixup_pack_header_footer(output_fd, pack_sha1,
Nicolas Pitreabeb40e2008-08-29 16:07:59 -0400997 curr_pack, nr_objects,
Nicolas Pitre85221482008-08-29 16:08:01 -0400998 read_sha1, consumed_bytes-20);
999 if (hashcmp(read_sha1, tail_sha1) != 0)
1000 die("Unexpected tail checksum for %s "
1001 "(disk corruption?)", curr_pack);
Nicolas Pitre636171c2006-10-25 23:28:17 -04001002 }
1003 if (nr_deltas != nr_resolved_deltas)
1004 die("pack has %d unresolved deltas",
1005 nr_deltas - nr_resolved_deltas);
Nicolas Pitre636171c2006-10-25 23:28:17 -04001006 }
Sergey Vlasov9cf6d332005-10-12 12:01:31 -07001007 free(deltas);
Martin Koegler0153be02008-02-25 22:46:12 +01001008 if (strict)
1009 check_objects();
Geert Boschaa7e44b2007-06-01 15:18:05 -04001010
1011 idx_objects = xmalloc((nr_objects) * sizeof(struct pack_idx_entry *));
1012 for (i = 0; i < nr_objects; i++)
1013 idx_objects[i] = &objects[i].idx;
Nicolas Pitre85221482008-08-29 16:08:01 -04001014 curr_index = write_idx_file(index_name, idx_objects, nr_objects, pack_sha1);
Geert Boschaa7e44b2007-06-01 15:18:05 -04001015 free(idx_objects);
1016
Shawn Pearceb8077702006-10-29 04:41:59 -05001017 final(pack_name, curr_pack,
1018 index_name, curr_index,
1019 keep_name, keep_msg,
Nicolas Pitre85221482008-08-29 16:08:01 -04001020 pack_sha1);
Sergey Vlasov9cf6d332005-10-12 12:01:31 -07001021 free(objects);
1022 free(index_name_buf);
Shawn Pearceb8077702006-10-29 04:41:59 -05001023 free(keep_name_buf);
Nicolas Pitrec85228e2007-10-16 21:55:50 -04001024 if (pack_name == NULL)
Linus Torvalds3bb72562010-01-22 07:55:19 -08001025 free((void *) curr_pack);
Nicolas Pitrec85228e2007-10-16 21:55:50 -04001026 if (index_name == NULL)
Linus Torvalds3bb72562010-01-22 07:55:19 -08001027 free((void *) curr_index);
Sergey Vlasov9cf6d332005-10-12 12:01:31 -07001028
Sergey Vlasov9cf6d332005-10-12 12:01:31 -07001029 return 0;
1030}