10 #include "tree-walk.h"
15 static int dry_run
, quiet
, recover
, has_errors
, strict
;
16 static const char unpack_usage
[] = "git unpack-objects [-n] [-q] [-r] [--strict] < pack-file";
18 /* We always read in 4kB chunks. */
19 static unsigned char buffer
[4096];
20 static unsigned int offset
, len
;
21 static off_t consumed_bytes
;
22 static git_SHA_CTX ctx
;
25 * When running under --strict mode, objects whose reachability are
26 * suspect are kept in core without getting written in the object
34 static struct decoration obj_decorate
;
36 static struct obj_buffer
*lookup_object_buffer(struct object
*base
)
38 return lookup_decoration(&obj_decorate
, base
);
41 static void add_object_buffer(struct object
*object
, char *buffer
, unsigned long size
)
43 struct obj_buffer
*obj
;
44 obj
= xcalloc(1, sizeof(struct obj_buffer
));
47 if (add_decoration(&obj_decorate
, object
, obj
))
48 die("object %s tried to add buffer twice!", sha1_to_hex(object
->sha1
));
52 * Make sure at least "min" bytes are available in the buffer, and
53 * return the pointer to the buffer.
55 static void *fill(int min
)
58 return buffer
+ offset
;
59 if (min
> sizeof(buffer
))
60 die("cannot fill %d bytes", min
);
62 git_SHA1_Update(&ctx
, buffer
, offset
);
63 memmove(buffer
, buffer
+ offset
, len
);
67 ssize_t ret
= xread(0, buffer
+ len
, sizeof(buffer
) - len
);
71 die_errno("read error on input");
78 static void use(int bytes
)
81 die("used more bytes than were available");
85 /* make sure off_t is sufficiently large not to wrap */
86 if (signed_add_overflows(consumed_bytes
, bytes
))
87 die("pack too large for current definition of off_t");
88 consumed_bytes
+= bytes
;
91 static void *get_data(unsigned long size
)
94 void *buf
= xmalloc(size
);
96 memset(&stream
, 0, sizeof(stream
));
98 stream
.next_out
= buf
;
99 stream
.avail_out
= size
;
100 stream
.next_in
= fill(1);
101 stream
.avail_in
= len
;
102 git_inflate_init(&stream
);
105 int ret
= git_inflate(&stream
, 0);
106 use(len
- stream
.avail_in
);
107 if (stream
.total_out
== size
&& ret
== Z_STREAM_END
)
110 error("inflate returned %d\n", ret
);
118 stream
.next_in
= fill(1);
119 stream
.avail_in
= len
;
121 git_inflate_end(&stream
);
126 unsigned char base_sha1
[20];
131 struct delta_info
*next
;
134 static struct delta_info
*delta_list
;
136 static void add_delta_to_list(unsigned nr
, unsigned const char *base_sha1
,
138 void *delta
, unsigned long size
)
140 struct delta_info
*info
= xmalloc(sizeof(*info
));
142 hashcpy(info
->base_sha1
, base_sha1
);
143 info
->base_offset
= base_offset
;
147 info
->next
= delta_list
;
153 unsigned char sha1
[20];
157 #define FLAG_OPEN (1u<<20)
158 #define FLAG_WRITTEN (1u<<21)
160 static struct obj_info
*obj_list
;
161 static unsigned nr_objects
;
164 * Called only from check_object() after it verified this object
167 static void write_cached_object(struct object
*obj
)
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
;
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.
181 static int check_object(struct object
*obj
, int type
, void *data
)
186 if (obj
->flags
& FLAG_WRITTEN
)
189 if (type
!= OBJ_ANY
&& obj
->type
!= type
)
190 die("object type mismatch");
192 if (!(obj
->flags
& FLAG_OPEN
)) {
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
;
201 if (fsck_object(obj
, 1, fsck_error_function
))
202 die("Error in object");
203 if (fsck_walk(obj
, check_object
, NULL
))
204 die("Error on reachable objects of %s", sha1_to_hex(obj
->sha1
));
205 write_cached_object(obj
);
209 static void write_rest(void)
212 for (i
= 0; i
< nr_objects
; i
++) {
214 check_object(obj_list
[i
].obj
, OBJ_ANY
, NULL
);
218 static void added_object(unsigned nr
, enum object_type type
,
219 void *data
, unsigned long size
);
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.
226 static void write_object(unsigned nr
, enum object_type type
,
227 void *buf
, unsigned long size
)
230 if (write_sha1_file(buf
, size
, typename(type
), obj_list
[nr
].sha1
) < 0)
231 die("failed to write object");
232 added_object(nr
, type
, buf
, size
);
234 obj_list
[nr
].obj
= NULL
;
235 } else if (type
== OBJ_BLOB
) {
237 if (write_sha1_file(buf
, size
, typename(type
), obj_list
[nr
].sha1
) < 0)
238 die("failed to write object");
239 added_object(nr
, type
, buf
, size
);
242 blob
= lookup_blob(obj_list
[nr
].sha1
);
244 blob
->object
.flags
|= FLAG_WRITTEN
;
246 die("invalid blob object");
247 obj_list
[nr
].obj
= NULL
;
251 hash_sha1_file(buf
, size
, typename(type
), obj_list
[nr
].sha1
);
252 added_object(nr
, type
, buf
, size
);
253 obj
= parse_object_buffer(obj_list
[nr
].sha1
, type
, size
, buf
, &eaten
);
255 die("invalid %s", typename(type
));
256 add_object_buffer(obj
, buf
, size
);
257 obj
->flags
|= FLAG_OPEN
;
258 obj_list
[nr
].obj
= obj
;
262 static void resolve_delta(unsigned nr
, enum object_type type
,
263 void *base
, unsigned long base_size
,
264 void *delta
, unsigned long delta_size
)
267 unsigned long result_size
;
269 result
= patch_delta(base
, base_size
,
273 die("failed to apply delta");
275 write_object(nr
, type
, result
, result_size
);
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.
282 static void added_object(unsigned nr
, enum object_type type
,
283 void *data
, unsigned long size
)
285 struct delta_info
**p
= &delta_list
;
286 struct delta_info
*info
;
288 while ((info
= *p
) != NULL
) {
289 if (!hashcmp(info
->base_sha1
, obj_list
[nr
].sha1
) ||
290 info
->base_offset
== obj_list
[nr
].offset
) {
293 resolve_delta(info
->nr
, type
, data
, size
,
294 info
->delta
, info
->size
);
302 static void unpack_non_delta_entry(enum object_type type
, unsigned long size
,
305 void *buf
= get_data(size
);
308 write_object(nr
, type
, buf
, size
);
313 static int resolve_against_held(unsigned nr
, const unsigned char *base
,
314 void *delta_data
, unsigned long delta_size
)
317 struct obj_buffer
*obj_buffer
;
318 obj
= lookup_object(base
);
321 obj_buffer
= lookup_object_buffer(obj
);
324 resolve_delta(nr
, obj
->type
, obj_buffer
->buffer
,
325 obj_buffer
->size
, delta_data
, delta_size
);
329 static void unpack_delta_entry(enum object_type type
, unsigned long delta_size
,
332 void *delta_data
, *base
;
333 unsigned long base_size
;
334 unsigned char base_sha1
[20];
336 if (type
== OBJ_REF_DELTA
) {
337 hashcpy(base_sha1
, fill(20));
339 delta_data
= get_data(delta_size
);
340 if (dry_run
|| !delta_data
) {
344 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 */
350 /* cannot resolve yet --- queue it */
351 hashcpy(obj_list
[nr
].sha1
, null_sha1
);
352 add_delta_to_list(nr
, base_sha1
, 0, delta_data
, delta_size
);
356 unsigned base_found
= 0;
357 unsigned char *pack
, c
;
359 unsigned lo
, mid
, hi
;
364 base_offset
= c
& 127;
367 if (!base_offset
|| MSB(base_offset
, 7))
368 die("offset value overflow for delta base object");
372 base_offset
= (base_offset
<< 7) + (c
& 127);
374 base_offset
= obj_list
[nr
].offset
- base_offset
;
375 if (base_offset
<= 0 || base_offset
>= obj_list
[nr
].offset
)
376 die("offset value out of bound for delta base object");
378 delta_data
= get_data(delta_size
);
379 if (dry_run
|| !delta_data
) {
387 if (base_offset
< obj_list
[mid
].offset
) {
389 } else if (base_offset
> obj_list
[mid
].offset
) {
392 hashcpy(base_sha1
, obj_list
[mid
].sha1
);
393 base_found
= !is_null_sha1(base_sha1
);
399 * The delta base object is itself a delta that
400 * has not been resolved yet.
402 hashcpy(obj_list
[nr
].sha1
, null_sha1
);
403 add_delta_to_list(nr
, null_sha1
, base_offset
, delta_data
, delta_size
);
408 if (resolve_against_held(nr
, base_sha1
, delta_data
, delta_size
))
411 base
= read_sha1_file(base_sha1
, &type
, &base_size
);
413 error("failed to read delta-pack base object %s",
414 sha1_to_hex(base_sha1
));
420 resolve_delta(nr
, type
, base
, base_size
, delta_data
, delta_size
);
424 static void unpack_one(unsigned nr
)
428 unsigned long size
, c
;
429 enum object_type type
;
431 obj_list
[nr
].offset
= consumed_bytes
;
443 size
+= (c
& 0x7f) << shift
;
452 unpack_non_delta_entry(type
, size
, nr
);
456 unpack_delta_entry(type
, size
, nr
);
459 error("bad object type %d", type
);
467 static void unpack_all(void)
470 struct progress
*progress
= NULL
;
471 struct pack_header
*hdr
= fill(sizeof(struct pack_header
));
473 nr_objects
= ntohl(hdr
->hdr_entries
);
475 if (ntohl(hdr
->hdr_signature
) != PACK_SIGNATURE
)
476 die("bad pack file");
477 if (!pack_version_ok(hdr
->hdr_version
))
478 die("unknown pack file version %"PRIu32
,
479 ntohl(hdr
->hdr_version
));
480 use(sizeof(struct pack_header
));
483 progress
= start_progress("Unpacking objects", nr_objects
);
484 obj_list
= xcalloc(nr_objects
, sizeof(*obj_list
));
485 for (i
= 0; i
< nr_objects
; i
++) {
487 display_progress(progress
, i
+ 1);
489 stop_progress(&progress
);
492 die("unresolved deltas left after unpacking");
495 int cmd_unpack_objects(int argc
, const char **argv
, const char *prefix
)
498 unsigned char sha1
[20];
500 read_replace_refs
= 0;
502 git_config(git_default_config
, NULL
);
506 for (i
= 1 ; i
< argc
; i
++) {
507 const char *arg
= argv
[i
];
510 if (!strcmp(arg
, "-n")) {
514 if (!strcmp(arg
, "-q")) {
518 if (!strcmp(arg
, "-r")) {
522 if (!strcmp(arg
, "--strict")) {
526 if (!prefixcmp(arg
, "--pack_header=")) {
527 struct pack_header
*hdr
;
530 hdr
= (struct pack_header
*)buffer
;
531 hdr
->hdr_signature
= htonl(PACK_SIGNATURE
);
532 hdr
->hdr_version
= htonl(strtoul(arg
+ 14, &c
, 10));
535 hdr
->hdr_entries
= htonl(strtoul(c
+ 1, &c
, 10));
544 /* We don't take any non-flag arguments now.. Maybe some day */
549 git_SHA1_Update(&ctx
, buffer
, offset
);
550 git_SHA1_Final(sha1
, &ctx
);
553 if (hashcmp(fill(20), sha1
))
554 die("final sha1 did not match");
557 /* Write the last part of the buffer to stdout */
559 int ret
= xwrite(1, buffer
+ offset
, len
);