blob: 685566e0b5e458c510fdf989744d63dda29e28f0 [file] [log] [blame]
Matthias Kestenholz64413632006-08-03 17:24:37 +02001#include "builtin.h"
Linus Torvaldsbad50dc2005-06-25 15:27:14 -07002#include "cache.h"
Linus Torvalds74536952005-06-25 15:59:31 -07003#include "object.h"
Junio C Hamano8ee378a2005-06-26 04:29:18 -07004#include "delta.h"
Linus Torvaldsa733cb62005-06-28 14:21:02 -07005#include "pack.h"
Peter Eriksen8e440252006-04-02 14:44:09 +02006#include "blob.h"
7#include "commit.h"
8#include "tag.h"
9#include "tree.h"
Martin Koeglerb41860b2008-02-25 22:46:11 +010010#include "tree-walk.h"
Nicolas Pitre96a02f82007-04-18 14:27:45 -040011#include "progress.h"
Martin Koegler2add1e62008-02-25 22:46:10 +010012#include "decorate.h"
Martin Koeglerb41860b2008-02-25 22:46:11 +010013#include "fsck.h"
Linus Torvaldsbad50dc2005-06-25 15:27:14 -070014
Martin Koeglerb41860b2008-02-25 22:46:11 +010015static int dry_run, quiet, recover, has_errors, strict;
Heikki Orsilaf18d2442008-09-13 20:18:36 +030016static const char unpack_usage[] = "git unpack-objects [-n] [-q] [-r] [--strict] < pack-file";
Linus Torvaldsbad50dc2005-06-25 15:27:14 -070017
Linus Torvalds67e5a5e2005-06-28 20:34:23 -070018/* We always read in 4kB chunks. */
19static unsigned char buffer[4096];
Nicolas Pitred7dd0222007-04-09 01:06:30 -040020static unsigned int offset, len;
21static off_t consumed_bytes;
Nicolas Pitre9126f002008-10-01 14:05:20 -040022static git_SHA_CTX ctx;
Linus Torvalds67e5a5e2005-06-28 20:34:23 -070023
Junio C Hamanof2898cf2008-03-04 23:46:51 -080024/*
25 * When running under --strict mode, objects whose reachability are
26 * suspect are kept in core without getting written in the object
27 * store.
28 */
Martin Koegler2add1e62008-02-25 22:46:10 +010029struct obj_buffer {
30 char *buffer;
31 unsigned long size;
32};
33
34static struct decoration obj_decorate;
35
36static struct obj_buffer *lookup_object_buffer(struct object *base)
37{
38 return lookup_decoration(&obj_decorate, base);
39}
40
Martin Koeglerb41860b2008-02-25 22:46:11 +010041static void add_object_buffer(struct object *object, char *buffer, unsigned long size)
42{
43 struct obj_buffer *obj;
44 obj = xcalloc(1, sizeof(struct obj_buffer));
45 obj->buffer = buffer;
46 obj->size = size;
47 if (add_decoration(&obj_decorate, object, obj))
48 die("object %s tried to add buffer twice!", sha1_to_hex(object->sha1));
49}
50
Linus Torvalds67e5a5e2005-06-28 20:34:23 -070051/*
52 * Make sure at least "min" bytes are available in the buffer, and
53 * return the pointer to the buffer.
54 */
Edgar Toernig79a65692006-10-30 17:44:27 -080055static void *fill(int min)
Linus Torvalds67e5a5e2005-06-28 20:34:23 -070056{
57 if (min <= len)
58 return buffer + offset;
Linus Torvalds67e5a5e2005-06-28 20:34:23 -070059 if (min > sizeof(buffer))
60 die("cannot fill %d bytes", min);
61 if (offset) {
Nicolas Pitre9126f002008-10-01 14:05:20 -040062 git_SHA1_Update(&ctx, buffer, offset);
Edgar Toernig79a65692006-10-30 17:44:27 -080063 memmove(buffer, buffer + offset, len);
Linus Torvalds67e5a5e2005-06-28 20:34:23 -070064 offset = 0;
65 }
66 do {
Johan Herland8a912bc2007-05-15 14:49:22 +020067 ssize_t ret = xread(0, buffer + len, sizeof(buffer) - len);
Linus Torvalds67e5a5e2005-06-28 20:34:23 -070068 if (ret <= 0) {
69 if (!ret)
70 die("early EOF");
Thomas Rastd824cbb2009-06-27 17:58:46 +020071 die_errno("read error on input");
Linus Torvalds67e5a5e2005-06-28 20:34:23 -070072 }
73 len += ret;
74 } while (len < min);
75 return buffer;
76}
77
78static void use(int bytes)
79{
80 if (bytes > len)
81 die("used more bytes than were available");
82 len -= bytes;
83 offset += bytes;
Nicolas Pitred7dd0222007-04-09 01:06:30 -040084
85 /* make sure off_t is sufficiently large not to wrap */
86 if (consumed_bytes > consumed_bytes + bytes)
87 die("pack too large for current definition of off_t");
Nicolas Pitre209c5542006-09-21 00:07:39 -040088 consumed_bytes += bytes;
Linus Torvalds67e5a5e2005-06-28 20:34:23 -070089}
90
91static void *get_data(unsigned long size)
92{
93 z_stream stream;
94 void *buf = xmalloc(size);
95
Linus Torvalds67e5a5e2005-06-28 20:34:23 -070096 memset(&stream, 0, sizeof(stream));
97
98 stream.next_out = buf;
99 stream.avail_out = size;
100 stream.next_in = fill(1);
101 stream.avail_in = len;
Linus Torvalds39c68542009-01-07 19:54:47 -0800102 git_inflate_init(&stream);
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700103
104 for (;;) {
Linus Torvalds39c68542009-01-07 19:54:47 -0800105 int ret = git_inflate(&stream, 0);
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700106 use(len - stream.avail_in);
107 if (stream.total_out == size && ret == Z_STREAM_END)
108 break;
Junio C Hamanof986f2c2006-09-03 22:55:54 -0700109 if (ret != Z_OK) {
110 error("inflate returned %d\n", ret);
111 free(buf);
112 buf = NULL;
Junio C Hamano3b67d292006-09-13 12:59:20 -0700113 if (!recover)
Junio C Hamanof986f2c2006-09-03 22:55:54 -0700114 exit(1);
115 has_errors = 1;
116 break;
117 }
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700118 stream.next_in = fill(1);
119 stream.avail_in = len;
120 }
Linus Torvalds39c68542009-01-07 19:54:47 -0800121 git_inflate_end(&stream);
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700122 return buf;
123}
124
125struct delta_info {
126 unsigned char base_sha1[20];
Nicolas Pitred7dd0222007-04-09 01:06:30 -0400127 unsigned nr;
128 off_t base_offset;
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700129 unsigned long size;
130 void *delta;
131 struct delta_info *next;
Linus Torvaldsbad50dc2005-06-25 15:27:14 -0700132};
133
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700134static struct delta_info *delta_list;
Linus Torvalds74536952005-06-25 15:59:31 -0700135
Nicolas Pitre209c5542006-09-21 00:07:39 -0400136static void add_delta_to_list(unsigned nr, unsigned const char *base_sha1,
Nicolas Pitred7dd0222007-04-09 01:06:30 -0400137 off_t base_offset,
Nicolas Pitre209c5542006-09-21 00:07:39 -0400138 void *delta, unsigned long size)
Linus Torvaldsbad50dc2005-06-25 15:27:14 -0700139{
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700140 struct delta_info *info = xmalloc(sizeof(*info));
Linus Torvaldsbad50dc2005-06-25 15:27:14 -0700141
Shawn Pearcee7024962006-08-23 02:49:00 -0400142 hashcpy(info->base_sha1, base_sha1);
Nicolas Pitre209c5542006-09-21 00:07:39 -0400143 info->base_offset = base_offset;
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700144 info->size = size;
145 info->delta = delta;
Nicolas Pitre209c5542006-09-21 00:07:39 -0400146 info->nr = nr;
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700147 info->next = delta_list;
148 delta_list = info;
Linus Torvaldsbad50dc2005-06-25 15:27:14 -0700149}
150
Nicolas Pitre209c5542006-09-21 00:07:39 -0400151struct obj_info {
Nicolas Pitred7dd0222007-04-09 01:06:30 -0400152 off_t offset;
Linus Torvaldscca70812005-06-29 09:38:02 -0700153 unsigned char sha1[20];
Martin Koeglerb41860b2008-02-25 22:46:11 +0100154 struct object *obj;
Nicolas Pitre209c5542006-09-21 00:07:39 -0400155};
156
Martin Koeglerb41860b2008-02-25 22:46:11 +0100157#define FLAG_OPEN (1u<<20)
158#define FLAG_WRITTEN (1u<<21)
159
Nicolas Pitre209c5542006-09-21 00:07:39 -0400160static struct obj_info *obj_list;
Linus Torvalds2af202b2009-06-18 10:28:43 -0700161static unsigned nr_objects;
Martin Koeglerb41860b2008-02-25 22:46:11 +0100162
Junio C Hamanof2898cf2008-03-04 23:46:51 -0800163/*
164 * Called only from check_object() after it verified this object
165 * is Ok.
166 */
Martin Koeglerb41860b2008-02-25 22:46:11 +0100167static void write_cached_object(struct object *obj)
168{
169 unsigned char sha1[20];
170 struct obj_buffer *obj_buf = lookup_object_buffer(obj);
171 if (write_sha1_file(obj_buf->buffer, obj_buf->size, typename(obj->type), sha1) < 0)
172 die("failed to write object %s", sha1_to_hex(obj->sha1));
173 obj->flags |= FLAG_WRITTEN;
174}
175
Junio C Hamanof2898cf2008-03-04 23:46:51 -0800176/*
177 * At the very end of the processing, write_rest() scans the objects
178 * that have reachability requirements and calls this function.
179 * Verify its reachability and validity recursively and write it out.
180 */
Martin Koeglerb41860b2008-02-25 22:46:11 +0100181static int check_object(struct object *obj, int type, void *data)
182{
183 if (!obj)
Junio C Hamano9a217392009-08-13 12:41:14 -0700184 return 1;
Martin Koeglerb41860b2008-02-25 22:46:11 +0100185
186 if (obj->flags & FLAG_WRITTEN)
Junio C Hamano9a217392009-08-13 12:41:14 -0700187 return 0;
Martin Koeglerb41860b2008-02-25 22:46:11 +0100188
189 if (type != OBJ_ANY && obj->type != type)
190 die("object type mismatch");
191
192 if (!(obj->flags & FLAG_OPEN)) {
193 unsigned long size;
194 int type = sha1_object_info(obj->sha1, &size);
195 if (type != obj->type || type <= 0)
196 die("object of unexpected type");
197 obj->flags |= FLAG_WRITTEN;
Junio C Hamano9a217392009-08-13 12:41:14 -0700198 return 0;
Martin Koeglerb41860b2008-02-25 22:46:11 +0100199 }
200
201 if (fsck_object(obj, 1, fsck_error_function))
202 die("Error in object");
Junio C Hamanoab36d062009-08-27 16:59:08 -0700203 if (fsck_walk(obj, check_object, NULL))
Martin Koeglerb41860b2008-02-25 22:46:11 +0100204 die("Error on reachable objects of %s", sha1_to_hex(obj->sha1));
205 write_cached_object(obj);
Junio C Hamano9a217392009-08-13 12:41:14 -0700206 return 0;
Martin Koeglerb41860b2008-02-25 22:46:11 +0100207}
208
209static void write_rest(void)
210{
211 unsigned i;
Junio C Hamano9a217392009-08-13 12:41:14 -0700212 for (i = 0; i < nr_objects; i++) {
213 if (obj_list[i].obj)
Junio C Hamanoab36d062009-08-27 16:59:08 -0700214 check_object(obj_list[i].obj, OBJ_ANY, NULL);
Junio C Hamano9a217392009-08-13 12:41:14 -0700215 }
Martin Koeglerb41860b2008-02-25 22:46:11 +0100216}
Nicolas Pitre209c5542006-09-21 00:07:39 -0400217
Nicolas Pitre21666f12007-02-26 14:55:59 -0500218static void added_object(unsigned nr, enum object_type type,
219 void *data, unsigned long size);
Nicolas Pitre209c5542006-09-21 00:07:39 -0400220
Junio C Hamanof2898cf2008-03-04 23:46:51 -0800221/*
222 * Write out nr-th object from the list, now we know the contents
223 * of it. Under --strict, this buffers structured objects in-core,
224 * to be checked at the end.
225 */
Nicolas Pitre21666f12007-02-26 14:55:59 -0500226static void write_object(unsigned nr, enum object_type type,
227 void *buf, unsigned long size)
Nicolas Pitre209c5542006-09-21 00:07:39 -0400228{
Martin Koeglerb41860b2008-02-25 22:46:11 +0100229 if (!strict) {
230 if (write_sha1_file(buf, size, typename(type), obj_list[nr].sha1) < 0)
231 die("failed to write object");
Junio C Hamanof2898cf2008-03-04 23:46:51 -0800232 added_object(nr, type, buf, size);
Martin Koeglerb41860b2008-02-25 22:46:11 +0100233 free(buf);
Junio C Hamanof2898cf2008-03-04 23:46:51 -0800234 obj_list[nr].obj = NULL;
Martin Koeglerb41860b2008-02-25 22:46:11 +0100235 } else if (type == OBJ_BLOB) {
236 struct blob *blob;
237 if (write_sha1_file(buf, size, typename(type), obj_list[nr].sha1) < 0)
238 die("failed to write object");
Junio C Hamanof2898cf2008-03-04 23:46:51 -0800239 added_object(nr, type, buf, size);
Martin Koeglerb41860b2008-02-25 22:46:11 +0100240 free(buf);
241
242 blob = lookup_blob(obj_list[nr].sha1);
243 if (blob)
244 blob->object.flags |= FLAG_WRITTEN;
245 else
246 die("invalid blob object");
Junio C Hamanof2898cf2008-03-04 23:46:51 -0800247 obj_list[nr].obj = NULL;
Martin Koeglerb41860b2008-02-25 22:46:11 +0100248 } else {
249 struct object *obj;
250 int eaten;
251 hash_sha1_file(buf, size, typename(type), obj_list[nr].sha1);
Junio C Hamanof2898cf2008-03-04 23:46:51 -0800252 added_object(nr, type, buf, size);
Martin Koeglerb41860b2008-02-25 22:46:11 +0100253 obj = parse_object_buffer(obj_list[nr].sha1, type, size, buf, &eaten);
254 if (!obj)
255 die("invalid %s", typename(type));
Martin Koeglerb41860b2008-02-25 22:46:11 +0100256 add_object_buffer(obj, buf, size);
257 obj->flags |= FLAG_OPEN;
258 obj_list[nr].obj = obj;
259 }
Linus Torvaldscca70812005-06-29 09:38:02 -0700260}
261
Nicolas Pitre21666f12007-02-26 14:55:59 -0500262static void resolve_delta(unsigned nr, enum object_type type,
Junio C Hamanof986f2c2006-09-03 22:55:54 -0700263 void *base, unsigned long base_size,
264 void *delta, unsigned long delta_size)
Linus Torvaldsbad50dc2005-06-25 15:27:14 -0700265{
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700266 void *result;
267 unsigned long result_size;
Linus Torvaldsbad50dc2005-06-25 15:27:14 -0700268
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700269 result = patch_delta(base, base_size,
270 delta, delta_size,
271 &result_size);
272 if (!result)
273 die("failed to apply delta");
274 free(delta);
Nicolas Pitre21666f12007-02-26 14:55:59 -0500275 write_object(nr, type, result, result_size);
Linus Torvaldsbad50dc2005-06-25 15:27:14 -0700276}
277
Junio C Hamanof2898cf2008-03-04 23:46:51 -0800278/*
279 * We now know the contents of an object (which is nr-th in the pack);
280 * resolve all the deltified objects that are based on it.
281 */
Nicolas Pitre21666f12007-02-26 14:55:59 -0500282static void added_object(unsigned nr, enum object_type type,
283 void *data, unsigned long size)
Junio C Hamano8ee378a2005-06-26 04:29:18 -0700284{
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700285 struct delta_info **p = &delta_list;
286 struct delta_info *info;
287
288 while ((info = *p) != NULL) {
Nicolas Pitre209c5542006-09-21 00:07:39 -0400289 if (!hashcmp(info->base_sha1, obj_list[nr].sha1) ||
290 info->base_offset == obj_list[nr].offset) {
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700291 *p = info->next;
292 p = &delta_list;
Nicolas Pitre209c5542006-09-21 00:07:39 -0400293 resolve_delta(info->nr, type, data, size,
294 info->delta, info->size);
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700295 free(info);
296 continue;
297 }
298 p = &info->next;
299 }
300}
301
Nicolas Pitre21666f12007-02-26 14:55:59 -0500302static void unpack_non_delta_entry(enum object_type type, unsigned long size,
Nicolas Pitre209c5542006-09-21 00:07:39 -0400303 unsigned nr)
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700304{
305 void *buf = get_data(size);
Junio C Hamano8ee378a2005-06-26 04:29:18 -0700306
Junio C Hamanof986f2c2006-09-03 22:55:54 -0700307 if (!dry_run && buf)
Nicolas Pitre21666f12007-02-26 14:55:59 -0500308 write_object(nr, type, buf, size);
Martin Koeglerb41860b2008-02-25 22:46:11 +0100309 else
310 free(buf);
Junio C Hamano8ee378a2005-06-26 04:29:18 -0700311}
312
Junio C Hamanof2898cf2008-03-04 23:46:51 -0800313static int resolve_against_held(unsigned nr, const unsigned char *base,
314 void *delta_data, unsigned long delta_size)
315{
316 struct object *obj;
317 struct obj_buffer *obj_buffer;
318 obj = lookup_object(base);
319 if (!obj)
320 return 0;
321 obj_buffer = lookup_object_buffer(obj);
322 if (!obj_buffer)
323 return 0;
324 resolve_delta(nr, obj->type, obj_buffer->buffer,
325 obj_buffer->size, delta_data, delta_size);
326 return 1;
327}
328
Nicolas Pitre21666f12007-02-26 14:55:59 -0500329static void unpack_delta_entry(enum object_type type, unsigned long delta_size,
Nicolas Pitre209c5542006-09-21 00:07:39 -0400330 unsigned nr)
Junio C Hamano8ee378a2005-06-26 04:29:18 -0700331{
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700332 void *delta_data, *base;
333 unsigned long base_size;
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700334 unsigned char base_sha1[20];
Junio C Hamano8ee378a2005-06-26 04:29:18 -0700335
Nicolas Pitre21666f12007-02-26 14:55:59 -0500336 if (type == OBJ_REF_DELTA) {
Nicolas Pitre209c5542006-09-21 00:07:39 -0400337 hashcpy(base_sha1, fill(20));
338 use(20);
339 delta_data = get_data(delta_size);
340 if (dry_run || !delta_data) {
341 free(delta_data);
342 return;
343 }
Junio C Hamanof2898cf2008-03-04 23:46:51 -0800344 if (has_sha1_file(base_sha1))
345 ; /* Ok we have this one */
346 else if (resolve_against_held(nr, base_sha1,
347 delta_data, delta_size))
348 return; /* we are done */
349 else {
350 /* cannot resolve yet --- queue it */
Nicolas Pitre209c5542006-09-21 00:07:39 -0400351 hashcpy(obj_list[nr].sha1, null_sha1);
352 add_delta_to_list(nr, base_sha1, 0, delta_data, delta_size);
353 return;
354 }
355 } else {
356 unsigned base_found = 0;
357 unsigned char *pack, c;
Nicolas Pitred7dd0222007-04-09 01:06:30 -0400358 off_t base_offset;
Nicolas Pitre209c5542006-09-21 00:07:39 -0400359 unsigned lo, mid, hi;
Junio C Hamano8ee378a2005-06-26 04:29:18 -0700360
Nicolas Pitre209c5542006-09-21 00:07:39 -0400361 pack = fill(1);
362 c = *pack;
363 use(1);
364 base_offset = c & 127;
365 while (c & 128) {
366 base_offset += 1;
Nicolas Pitre8723f212007-04-09 01:06:29 -0400367 if (!base_offset || MSB(base_offset, 7))
Nicolas Pitre209c5542006-09-21 00:07:39 -0400368 die("offset value overflow for delta base object");
369 pack = fill(1);
370 c = *pack;
371 use(1);
372 base_offset = (base_offset << 7) + (c & 127);
373 }
374 base_offset = obj_list[nr].offset - base_offset;
Nicolas Pitred8f32552008-10-29 19:02:45 -0400375 if (base_offset <= 0 || base_offset >= obj_list[nr].offset)
376 die("offset value out of bound for delta base object");
Nicolas Pitre209c5542006-09-21 00:07:39 -0400377
378 delta_data = get_data(delta_size);
379 if (dry_run || !delta_data) {
380 free(delta_data);
381 return;
382 }
383 lo = 0;
384 hi = nr;
385 while (lo < hi) {
386 mid = (lo + hi)/2;
387 if (base_offset < obj_list[mid].offset) {
388 hi = mid;
389 } else if (base_offset > obj_list[mid].offset) {
390 lo = mid + 1;
391 } else {
392 hashcpy(base_sha1, obj_list[mid].sha1);
393 base_found = !is_null_sha1(base_sha1);
394 break;
395 }
396 }
397 if (!base_found) {
Junio C Hamanof2898cf2008-03-04 23:46:51 -0800398 /*
399 * The delta base object is itself a delta that
400 * has not been resolved yet.
401 */
Nicolas Pitre209c5542006-09-21 00:07:39 -0400402 hashcpy(obj_list[nr].sha1, null_sha1);
403 add_delta_to_list(nr, null_sha1, base_offset, delta_data, delta_size);
404 return;
405 }
Linus Torvaldsdddafff2005-06-29 09:53:20 -0700406 }
Linus Torvaldsc4fb06c2005-06-26 08:40:08 -0700407
Junio C Hamanof2898cf2008-03-04 23:46:51 -0800408 if (resolve_against_held(nr, base_sha1, delta_data, delta_size))
409 return;
Martin Koegler2add1e62008-02-25 22:46:10 +0100410
Nicolas Pitre21666f12007-02-26 14:55:59 -0500411 base = read_sha1_file(base_sha1, &type, &base_size);
Junio C Hamanof986f2c2006-09-03 22:55:54 -0700412 if (!base) {
413 error("failed to read delta-pack base object %s",
414 sha1_to_hex(base_sha1));
Junio C Hamano3b67d292006-09-13 12:59:20 -0700415 if (!recover)
Junio C Hamanof986f2c2006-09-03 22:55:54 -0700416 exit(1);
417 has_errors = 1;
418 return;
419 }
Nicolas Pitre209c5542006-09-21 00:07:39 -0400420 resolve_delta(nr, type, base, base_size, delta_data, delta_size);
Sergey Vlasovee639142005-08-03 16:11:00 +0400421 free(base);
Junio C Hamano8ee378a2005-06-26 04:29:18 -0700422}
423
Nicolas Pitre96a02f82007-04-18 14:27:45 -0400424static void unpack_one(unsigned nr)
Linus Torvalds74536952005-06-25 15:59:31 -0700425{
Linus Torvalds01247d82005-06-28 22:15:57 -0700426 unsigned shift;
Linus Torvalds48fb7de2009-06-17 17:22:27 -0700427 unsigned char *pack;
428 unsigned long size, c;
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700429 enum object_type type;
Linus Torvalds74536952005-06-25 15:59:31 -0700430
Nicolas Pitre209c5542006-09-21 00:07:39 -0400431 obj_list[nr].offset = consumed_bytes;
432
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700433 pack = fill(1);
434 c = *pack;
435 use(1);
Linus Torvaldsa733cb62005-06-28 14:21:02 -0700436 type = (c >> 4) & 7;
437 size = (c & 15);
Linus Torvalds01247d82005-06-28 22:15:57 -0700438 shift = 4;
Linus Torvaldsa733cb62005-06-28 14:21:02 -0700439 while (c & 0x80) {
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700440 pack = fill(1);
Nicolas Pitre209c5542006-09-21 00:07:39 -0400441 c = *pack;
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700442 use(1);
Linus Torvalds01247d82005-06-28 22:15:57 -0700443 size += (c & 0x7f) << shift;
444 shift += 7;
Linus Torvalds74536952005-06-25 15:59:31 -0700445 }
Linus Torvaldsd36f7b82005-07-09 10:43:02 -0700446
Linus Torvaldsa733cb62005-06-28 14:21:02 -0700447 switch (type) {
448 case OBJ_COMMIT:
449 case OBJ_TREE:
450 case OBJ_BLOB:
451 case OBJ_TAG:
Nicolas Pitre209c5542006-09-21 00:07:39 -0400452 unpack_non_delta_entry(type, size, nr);
Linus Torvaldsa733cb62005-06-28 14:21:02 -0700453 return;
Nicolas Pitreeb32d232006-09-21 00:06:49 -0400454 case OBJ_REF_DELTA:
Nicolas Pitre209c5542006-09-21 00:07:39 -0400455 case OBJ_OFS_DELTA:
456 unpack_delta_entry(type, size, nr);
Linus Torvaldsa733cb62005-06-28 14:21:02 -0700457 return;
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700458 default:
Junio C Hamanof986f2c2006-09-03 22:55:54 -0700459 error("bad object type %d", type);
460 has_errors = 1;
Junio C Hamano3b67d292006-09-13 12:59:20 -0700461 if (recover)
Junio C Hamanof986f2c2006-09-03 22:55:54 -0700462 return;
463 exit(1);
Linus Torvaldsa733cb62005-06-28 14:21:02 -0700464 }
Linus Torvalds74536952005-06-25 15:59:31 -0700465}
466
Linus Torvalds74536952005-06-25 15:59:31 -0700467static void unpack_all(void)
468{
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700469 int i;
Nicolas Pitredc6a0752007-10-30 14:57:32 -0400470 struct progress *progress = NULL;
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700471 struct pack_header *hdr = fill(sizeof(struct pack_header));
Martin Koeglerb41860b2008-02-25 22:46:11 +0100472
473 nr_objects = ntohl(hdr->hdr_entries);
Linus Torvalds74536952005-06-25 15:59:31 -0700474
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700475 if (ntohl(hdr->hdr_signature) != PACK_SIGNATURE)
476 die("bad pack file");
Nicolas Pitred60fc1c2006-02-09 17:50:04 -0500477 if (!pack_version_ok(hdr->hdr_version))
Ramsay Jones6e1c2342008-07-03 16:52:09 +0100478 die("unknown pack file version %"PRIu32,
479 ntohl(hdr->hdr_version));
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700480 use(sizeof(struct pack_header));
Nicolas Pitre96a02f82007-04-18 14:27:45 -0400481
Nicolas Pitre13aaf142007-04-20 14:10:07 -0400482 if (!quiet)
Nicolas Pitredc6a0752007-10-30 14:57:32 -0400483 progress = start_progress("Unpacking objects", nr_objects);
Brandon Casey19d4b412008-10-06 18:39:10 -0500484 obj_list = xcalloc(nr_objects, sizeof(*obj_list));
Nicolas Pitre96a02f82007-04-18 14:27:45 -0400485 for (i = 0; i < nr_objects; i++) {
486 unpack_one(i);
Nicolas Pitre4d4fcc52007-10-30 14:57:33 -0400487 display_progress(progress, i + 1);
Nicolas Pitre96a02f82007-04-18 14:27:45 -0400488 }
Nicolas Pitre4d4fcc52007-10-30 14:57:33 -0400489 stop_progress(&progress);
Nicolas Pitre96a02f82007-04-18 14:27:45 -0400490
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700491 if (delta_list)
492 die("unresolved deltas left after unpacking");
Linus Torvalds74536952005-06-25 15:59:31 -0700493}
494
Matthias Kestenholz64413632006-08-03 17:24:37 +0200495int cmd_unpack_objects(int argc, const char **argv, const char *prefix)
Linus Torvaldsbad50dc2005-06-25 15:27:14 -0700496{
497 int i;
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700498 unsigned char sha1[20];
Linus Torvaldsbad50dc2005-06-25 15:27:14 -0700499
Christian Couderdae556b2009-01-23 10:07:46 +0100500 read_replace_refs = 0;
501
Johannes Schindelinef90d6d2008-05-14 18:46:53 +0100502 git_config(git_default_config, NULL);
Junio C Hamano53228a52005-11-26 00:50:02 -0800503
Junio C Hamano476e8012006-01-06 18:53:16 -0800504 quiet = !isatty(2);
505
Linus Torvaldsbad50dc2005-06-25 15:27:14 -0700506 for (i = 1 ; i < argc; i++) {
507 const char *arg = argv[i];
508
509 if (*arg == '-') {
Linus Torvalds74536952005-06-25 15:59:31 -0700510 if (!strcmp(arg, "-n")) {
511 dry_run = 1;
512 continue;
513 }
Linus Torvaldsd36f7b82005-07-09 10:43:02 -0700514 if (!strcmp(arg, "-q")) {
515 quiet = 1;
516 continue;
517 }
Junio C Hamanof986f2c2006-09-03 22:55:54 -0700518 if (!strcmp(arg, "-r")) {
Junio C Hamano3b67d292006-09-13 12:59:20 -0700519 recover = 1;
Junio C Hamanof986f2c2006-09-03 22:55:54 -0700520 continue;
521 }
Martin Koeglerb41860b2008-02-25 22:46:11 +0100522 if (!strcmp(arg, "--strict")) {
523 strict = 1;
524 continue;
525 }
Junio C Hamanocc44c762007-02-20 01:53:29 -0800526 if (!prefixcmp(arg, "--pack_header=")) {
Nicolas Pitrebed006f2006-11-01 17:06:20 -0500527 struct pack_header *hdr;
528 char *c;
529
530 hdr = (struct pack_header *)buffer;
531 hdr->hdr_signature = htonl(PACK_SIGNATURE);
532 hdr->hdr_version = htonl(strtoul(arg + 14, &c, 10));
533 if (*c != ',')
534 die("bad %s", arg);
535 hdr->hdr_entries = htonl(strtoul(c + 1, &c, 10));
536 if (*c)
537 die("bad %s", arg);
538 len = sizeof(*hdr);
539 continue;
540 }
Linus Torvaldsbad50dc2005-06-25 15:27:14 -0700541 usage(unpack_usage);
542 }
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700543
544 /* We don't take any non-flag arguments now.. Maybe some day */
Linus Torvaldsbad50dc2005-06-25 15:27:14 -0700545 usage(unpack_usage);
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700546 }
Nicolas Pitre9126f002008-10-01 14:05:20 -0400547 git_SHA1_Init(&ctx);
Linus Torvalds74536952005-06-25 15:59:31 -0700548 unpack_all();
Nicolas Pitre9126f002008-10-01 14:05:20 -0400549 git_SHA1_Update(&ctx, buffer, offset);
550 git_SHA1_Final(sha1, &ctx);
Martin Koeglerb41860b2008-02-25 22:46:11 +0100551 if (strict)
552 write_rest();
David Rientjesa89fccd2006-08-17 11:54:57 -0700553 if (hashcmp(fill(20), sha1))
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700554 die("final sha1 did not match");
555 use(20);
556
557 /* Write the last part of the buffer to stdout */
558 while (len) {
Junio C Hamano1c15afb2005-12-19 16:18:28 -0800559 int ret = xwrite(1, buffer + offset, len);
560 if (ret <= 0)
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700561 break;
Linus Torvalds67e5a5e2005-06-28 20:34:23 -0700562 len -= ret;
563 offset += ret;
564 }
565
566 /* All done */
Junio C Hamanof986f2c2006-09-03 22:55:54 -0700567 return has_errors;
Linus Torvaldsbad50dc2005-06-25 15:27:14 -0700568}