Matthias Kestenholz | 6441363 | 2006-08-03 17:24:37 +0200 | [diff] [blame] | 1 | #include "builtin.h" |
Linus Torvalds | bad50dc | 2005-06-25 15:27:14 -0700 | [diff] [blame] | 2 | #include "cache.h" |
Linus Torvalds | 7453695 | 2005-06-25 15:59:31 -0700 | [diff] [blame] | 3 | #include "object.h" |
Junio C Hamano | 8ee378a | 2005-06-26 04:29:18 -0700 | [diff] [blame] | 4 | #include "delta.h" |
Linus Torvalds | a733cb6 | 2005-06-28 14:21:02 -0700 | [diff] [blame] | 5 | #include "pack.h" |
Peter Eriksen | 8e44025 | 2006-04-02 14:44:09 +0200 | [diff] [blame] | 6 | #include "blob.h" |
| 7 | #include "commit.h" |
| 8 | #include "tag.h" |
| 9 | #include "tree.h" |
Nicolas Pitre | 96a02f8 | 2007-04-18 14:27:45 -0400 | [diff] [blame] | 10 | #include "progress.h" |
Linus Torvalds | bad50dc | 2005-06-25 15:27:14 -0700 | [diff] [blame] | 11 | |
Junio C Hamano | 3b67d29 | 2006-09-13 12:59:20 -0700 | [diff] [blame] | 12 | static int dry_run, quiet, recover, has_errors; |
| 13 | static const char unpack_usage[] = "git-unpack-objects [-n] [-q] [-r] < pack-file"; |
Linus Torvalds | bad50dc | 2005-06-25 15:27:14 -0700 | [diff] [blame] | 14 | |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 15 | /* We always read in 4kB chunks. */ |
| 16 | static unsigned char buffer[4096]; |
Nicolas Pitre | d7dd022 | 2007-04-09 01:06:30 -0400 | [diff] [blame] | 17 | static unsigned int offset, len; |
| 18 | static off_t consumed_bytes; |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 19 | static SHA_CTX ctx; |
| 20 | |
| 21 | /* |
| 22 | * Make sure at least "min" bytes are available in the buffer, and |
| 23 | * return the pointer to the buffer. |
| 24 | */ |
Edgar Toernig | 79a6569 | 2006-10-30 17:44:27 -0800 | [diff] [blame] | 25 | static void *fill(int min) |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 26 | { |
| 27 | if (min <= len) |
| 28 | return buffer + offset; |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 29 | if (min > sizeof(buffer)) |
| 30 | die("cannot fill %d bytes", min); |
| 31 | if (offset) { |
| 32 | SHA1_Update(&ctx, buffer, offset); |
Edgar Toernig | 79a6569 | 2006-10-30 17:44:27 -0800 | [diff] [blame] | 33 | memmove(buffer, buffer + offset, len); |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 34 | offset = 0; |
| 35 | } |
| 36 | do { |
Johan Herland | 8a912bc | 2007-05-15 14:49:22 +0200 | [diff] [blame] | 37 | ssize_t ret = xread(0, buffer + len, sizeof(buffer) - len); |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 38 | if (ret <= 0) { |
| 39 | if (!ret) |
| 40 | die("early EOF"); |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 41 | die("read error on input: %s", strerror(errno)); |
| 42 | } |
| 43 | len += ret; |
| 44 | } while (len < min); |
| 45 | return buffer; |
| 46 | } |
| 47 | |
| 48 | static void use(int bytes) |
| 49 | { |
| 50 | if (bytes > len) |
| 51 | die("used more bytes than were available"); |
| 52 | len -= bytes; |
| 53 | offset += bytes; |
Nicolas Pitre | d7dd022 | 2007-04-09 01:06:30 -0400 | [diff] [blame] | 54 | |
| 55 | /* make sure off_t is sufficiently large not to wrap */ |
| 56 | if (consumed_bytes > consumed_bytes + bytes) |
| 57 | die("pack too large for current definition of off_t"); |
Nicolas Pitre | 209c554 | 2006-09-21 00:07:39 -0400 | [diff] [blame] | 58 | consumed_bytes += bytes; |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | static void *get_data(unsigned long size) |
| 62 | { |
| 63 | z_stream stream; |
| 64 | void *buf = xmalloc(size); |
| 65 | |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 66 | memset(&stream, 0, sizeof(stream)); |
| 67 | |
| 68 | stream.next_out = buf; |
| 69 | stream.avail_out = size; |
| 70 | stream.next_in = fill(1); |
| 71 | stream.avail_in = len; |
| 72 | inflateInit(&stream); |
| 73 | |
| 74 | for (;;) { |
| 75 | int ret = inflate(&stream, 0); |
| 76 | use(len - stream.avail_in); |
| 77 | if (stream.total_out == size && ret == Z_STREAM_END) |
| 78 | break; |
Junio C Hamano | f986f2c | 2006-09-03 22:55:54 -0700 | [diff] [blame] | 79 | if (ret != Z_OK) { |
| 80 | error("inflate returned %d\n", ret); |
| 81 | free(buf); |
| 82 | buf = NULL; |
Junio C Hamano | 3b67d29 | 2006-09-13 12:59:20 -0700 | [diff] [blame] | 83 | if (!recover) |
Junio C Hamano | f986f2c | 2006-09-03 22:55:54 -0700 | [diff] [blame] | 84 | exit(1); |
| 85 | has_errors = 1; |
| 86 | break; |
| 87 | } |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 88 | stream.next_in = fill(1); |
| 89 | stream.avail_in = len; |
| 90 | } |
Sergey Vlasov | ee63914 | 2005-08-03 16:11:00 +0400 | [diff] [blame] | 91 | inflateEnd(&stream); |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 92 | return buf; |
| 93 | } |
| 94 | |
| 95 | struct delta_info { |
| 96 | unsigned char base_sha1[20]; |
Nicolas Pitre | d7dd022 | 2007-04-09 01:06:30 -0400 | [diff] [blame] | 97 | unsigned nr; |
| 98 | off_t base_offset; |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 99 | unsigned long size; |
| 100 | void *delta; |
| 101 | struct delta_info *next; |
Linus Torvalds | bad50dc | 2005-06-25 15:27:14 -0700 | [diff] [blame] | 102 | }; |
| 103 | |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 104 | static struct delta_info *delta_list; |
Linus Torvalds | 7453695 | 2005-06-25 15:59:31 -0700 | [diff] [blame] | 105 | |
Nicolas Pitre | 209c554 | 2006-09-21 00:07:39 -0400 | [diff] [blame] | 106 | static void add_delta_to_list(unsigned nr, unsigned const char *base_sha1, |
Nicolas Pitre | d7dd022 | 2007-04-09 01:06:30 -0400 | [diff] [blame] | 107 | off_t base_offset, |
Nicolas Pitre | 209c554 | 2006-09-21 00:07:39 -0400 | [diff] [blame] | 108 | void *delta, unsigned long size) |
Linus Torvalds | bad50dc | 2005-06-25 15:27:14 -0700 | [diff] [blame] | 109 | { |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 110 | struct delta_info *info = xmalloc(sizeof(*info)); |
Linus Torvalds | bad50dc | 2005-06-25 15:27:14 -0700 | [diff] [blame] | 111 | |
Shawn Pearce | e702496 | 2006-08-23 02:49:00 -0400 | [diff] [blame] | 112 | hashcpy(info->base_sha1, base_sha1); |
Nicolas Pitre | 209c554 | 2006-09-21 00:07:39 -0400 | [diff] [blame] | 113 | info->base_offset = base_offset; |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 114 | info->size = size; |
| 115 | info->delta = delta; |
Nicolas Pitre | 209c554 | 2006-09-21 00:07:39 -0400 | [diff] [blame] | 116 | info->nr = nr; |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 117 | info->next = delta_list; |
| 118 | delta_list = info; |
Linus Torvalds | bad50dc | 2005-06-25 15:27:14 -0700 | [diff] [blame] | 119 | } |
| 120 | |
Nicolas Pitre | 209c554 | 2006-09-21 00:07:39 -0400 | [diff] [blame] | 121 | struct obj_info { |
Nicolas Pitre | d7dd022 | 2007-04-09 01:06:30 -0400 | [diff] [blame] | 122 | off_t offset; |
Linus Torvalds | cca7081 | 2005-06-29 09:38:02 -0700 | [diff] [blame] | 123 | unsigned char sha1[20]; |
Nicolas Pitre | 209c554 | 2006-09-21 00:07:39 -0400 | [diff] [blame] | 124 | }; |
| 125 | |
| 126 | static struct obj_info *obj_list; |
| 127 | |
Nicolas Pitre | 21666f1 | 2007-02-26 14:55:59 -0500 | [diff] [blame] | 128 | static void added_object(unsigned nr, enum object_type type, |
| 129 | void *data, unsigned long size); |
Nicolas Pitre | 209c554 | 2006-09-21 00:07:39 -0400 | [diff] [blame] | 130 | |
Nicolas Pitre | 21666f1 | 2007-02-26 14:55:59 -0500 | [diff] [blame] | 131 | static void write_object(unsigned nr, enum object_type type, |
| 132 | void *buf, unsigned long size) |
Nicolas Pitre | 209c554 | 2006-09-21 00:07:39 -0400 | [diff] [blame] | 133 | { |
Nicolas Pitre | 21666f1 | 2007-02-26 14:55:59 -0500 | [diff] [blame] | 134 | if (write_sha1_file(buf, size, typename(type), obj_list[nr].sha1) < 0) |
Linus Torvalds | cca7081 | 2005-06-29 09:38:02 -0700 | [diff] [blame] | 135 | die("failed to write object"); |
Nicolas Pitre | 209c554 | 2006-09-21 00:07:39 -0400 | [diff] [blame] | 136 | added_object(nr, type, buf, size); |
Linus Torvalds | cca7081 | 2005-06-29 09:38:02 -0700 | [diff] [blame] | 137 | } |
| 138 | |
Nicolas Pitre | 21666f1 | 2007-02-26 14:55:59 -0500 | [diff] [blame] | 139 | static void resolve_delta(unsigned nr, enum object_type type, |
Junio C Hamano | f986f2c | 2006-09-03 22:55:54 -0700 | [diff] [blame] | 140 | void *base, unsigned long base_size, |
| 141 | void *delta, unsigned long delta_size) |
Linus Torvalds | bad50dc | 2005-06-25 15:27:14 -0700 | [diff] [blame] | 142 | { |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 143 | void *result; |
| 144 | unsigned long result_size; |
Linus Torvalds | bad50dc | 2005-06-25 15:27:14 -0700 | [diff] [blame] | 145 | |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 146 | result = patch_delta(base, base_size, |
| 147 | delta, delta_size, |
| 148 | &result_size); |
| 149 | if (!result) |
| 150 | die("failed to apply delta"); |
| 151 | free(delta); |
Nicolas Pitre | 21666f1 | 2007-02-26 14:55:59 -0500 | [diff] [blame] | 152 | write_object(nr, type, result, result_size); |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 153 | free(result); |
Linus Torvalds | bad50dc | 2005-06-25 15:27:14 -0700 | [diff] [blame] | 154 | } |
| 155 | |
Nicolas Pitre | 21666f1 | 2007-02-26 14:55:59 -0500 | [diff] [blame] | 156 | static void added_object(unsigned nr, enum object_type type, |
| 157 | void *data, unsigned long size) |
Junio C Hamano | 8ee378a | 2005-06-26 04:29:18 -0700 | [diff] [blame] | 158 | { |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 159 | struct delta_info **p = &delta_list; |
| 160 | struct delta_info *info; |
| 161 | |
| 162 | while ((info = *p) != NULL) { |
Nicolas Pitre | 209c554 | 2006-09-21 00:07:39 -0400 | [diff] [blame] | 163 | if (!hashcmp(info->base_sha1, obj_list[nr].sha1) || |
| 164 | info->base_offset == obj_list[nr].offset) { |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 165 | *p = info->next; |
| 166 | p = &delta_list; |
Nicolas Pitre | 209c554 | 2006-09-21 00:07:39 -0400 | [diff] [blame] | 167 | resolve_delta(info->nr, type, data, size, |
| 168 | info->delta, info->size); |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 169 | free(info); |
| 170 | continue; |
| 171 | } |
| 172 | p = &info->next; |
| 173 | } |
| 174 | } |
| 175 | |
Nicolas Pitre | 21666f1 | 2007-02-26 14:55:59 -0500 | [diff] [blame] | 176 | static void unpack_non_delta_entry(enum object_type type, unsigned long size, |
Nicolas Pitre | 209c554 | 2006-09-21 00:07:39 -0400 | [diff] [blame] | 177 | unsigned nr) |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 178 | { |
| 179 | void *buf = get_data(size); |
Junio C Hamano | 8ee378a | 2005-06-26 04:29:18 -0700 | [diff] [blame] | 180 | |
Junio C Hamano | f986f2c | 2006-09-03 22:55:54 -0700 | [diff] [blame] | 181 | if (!dry_run && buf) |
Nicolas Pitre | 21666f1 | 2007-02-26 14:55:59 -0500 | [diff] [blame] | 182 | write_object(nr, type, buf, size); |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 183 | free(buf); |
Junio C Hamano | 8ee378a | 2005-06-26 04:29:18 -0700 | [diff] [blame] | 184 | } |
| 185 | |
Nicolas Pitre | 21666f1 | 2007-02-26 14:55:59 -0500 | [diff] [blame] | 186 | static void unpack_delta_entry(enum object_type type, unsigned long delta_size, |
Nicolas Pitre | 209c554 | 2006-09-21 00:07:39 -0400 | [diff] [blame] | 187 | unsigned nr) |
Junio C Hamano | 8ee378a | 2005-06-26 04:29:18 -0700 | [diff] [blame] | 188 | { |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 189 | void *delta_data, *base; |
| 190 | unsigned long base_size; |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 191 | unsigned char base_sha1[20]; |
Junio C Hamano | 8ee378a | 2005-06-26 04:29:18 -0700 | [diff] [blame] | 192 | |
Nicolas Pitre | 21666f1 | 2007-02-26 14:55:59 -0500 | [diff] [blame] | 193 | if (type == OBJ_REF_DELTA) { |
Nicolas Pitre | 209c554 | 2006-09-21 00:07:39 -0400 | [diff] [blame] | 194 | hashcpy(base_sha1, fill(20)); |
| 195 | use(20); |
| 196 | delta_data = get_data(delta_size); |
| 197 | if (dry_run || !delta_data) { |
| 198 | free(delta_data); |
| 199 | return; |
| 200 | } |
| 201 | if (!has_sha1_file(base_sha1)) { |
| 202 | hashcpy(obj_list[nr].sha1, null_sha1); |
| 203 | add_delta_to_list(nr, base_sha1, 0, delta_data, delta_size); |
| 204 | return; |
| 205 | } |
| 206 | } else { |
| 207 | unsigned base_found = 0; |
| 208 | unsigned char *pack, c; |
Nicolas Pitre | d7dd022 | 2007-04-09 01:06:30 -0400 | [diff] [blame] | 209 | off_t base_offset; |
Nicolas Pitre | 209c554 | 2006-09-21 00:07:39 -0400 | [diff] [blame] | 210 | unsigned lo, mid, hi; |
Junio C Hamano | 8ee378a | 2005-06-26 04:29:18 -0700 | [diff] [blame] | 211 | |
Nicolas Pitre | 209c554 | 2006-09-21 00:07:39 -0400 | [diff] [blame] | 212 | pack = fill(1); |
| 213 | c = *pack; |
| 214 | use(1); |
| 215 | base_offset = c & 127; |
| 216 | while (c & 128) { |
| 217 | base_offset += 1; |
Nicolas Pitre | 8723f21 | 2007-04-09 01:06:29 -0400 | [diff] [blame] | 218 | if (!base_offset || MSB(base_offset, 7)) |
Nicolas Pitre | 209c554 | 2006-09-21 00:07:39 -0400 | [diff] [blame] | 219 | die("offset value overflow for delta base object"); |
| 220 | pack = fill(1); |
| 221 | c = *pack; |
| 222 | use(1); |
| 223 | base_offset = (base_offset << 7) + (c & 127); |
| 224 | } |
| 225 | base_offset = obj_list[nr].offset - base_offset; |
| 226 | |
| 227 | delta_data = get_data(delta_size); |
| 228 | if (dry_run || !delta_data) { |
| 229 | free(delta_data); |
| 230 | return; |
| 231 | } |
| 232 | lo = 0; |
| 233 | hi = nr; |
| 234 | while (lo < hi) { |
| 235 | mid = (lo + hi)/2; |
| 236 | if (base_offset < obj_list[mid].offset) { |
| 237 | hi = mid; |
| 238 | } else if (base_offset > obj_list[mid].offset) { |
| 239 | lo = mid + 1; |
| 240 | } else { |
| 241 | hashcpy(base_sha1, obj_list[mid].sha1); |
| 242 | base_found = !is_null_sha1(base_sha1); |
| 243 | break; |
| 244 | } |
| 245 | } |
| 246 | if (!base_found) { |
| 247 | /* The delta base object is itself a delta that |
| 248 | has not been resolved yet. */ |
| 249 | hashcpy(obj_list[nr].sha1, null_sha1); |
| 250 | add_delta_to_list(nr, null_sha1, base_offset, delta_data, delta_size); |
| 251 | return; |
| 252 | } |
Linus Torvalds | dddafff | 2005-06-29 09:53:20 -0700 | [diff] [blame] | 253 | } |
Linus Torvalds | c4fb06c | 2005-06-26 08:40:08 -0700 | [diff] [blame] | 254 | |
Nicolas Pitre | 21666f1 | 2007-02-26 14:55:59 -0500 | [diff] [blame] | 255 | base = read_sha1_file(base_sha1, &type, &base_size); |
Junio C Hamano | f986f2c | 2006-09-03 22:55:54 -0700 | [diff] [blame] | 256 | if (!base) { |
| 257 | error("failed to read delta-pack base object %s", |
| 258 | sha1_to_hex(base_sha1)); |
Junio C Hamano | 3b67d29 | 2006-09-13 12:59:20 -0700 | [diff] [blame] | 259 | if (!recover) |
Junio C Hamano | f986f2c | 2006-09-03 22:55:54 -0700 | [diff] [blame] | 260 | exit(1); |
| 261 | has_errors = 1; |
| 262 | return; |
| 263 | } |
Nicolas Pitre | 209c554 | 2006-09-21 00:07:39 -0400 | [diff] [blame] | 264 | resolve_delta(nr, type, base, base_size, delta_data, delta_size); |
Sergey Vlasov | ee63914 | 2005-08-03 16:11:00 +0400 | [diff] [blame] | 265 | free(base); |
Junio C Hamano | 8ee378a | 2005-06-26 04:29:18 -0700 | [diff] [blame] | 266 | } |
| 267 | |
Nicolas Pitre | 96a02f8 | 2007-04-18 14:27:45 -0400 | [diff] [blame] | 268 | static void unpack_one(unsigned nr) |
Linus Torvalds | 7453695 | 2005-06-25 15:59:31 -0700 | [diff] [blame] | 269 | { |
Linus Torvalds | 01247d8 | 2005-06-28 22:15:57 -0700 | [diff] [blame] | 270 | unsigned shift; |
Linus Torvalds | a733cb6 | 2005-06-28 14:21:02 -0700 | [diff] [blame] | 271 | unsigned char *pack, c; |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 272 | unsigned long size; |
| 273 | enum object_type type; |
Linus Torvalds | 7453695 | 2005-06-25 15:59:31 -0700 | [diff] [blame] | 274 | |
Nicolas Pitre | 209c554 | 2006-09-21 00:07:39 -0400 | [diff] [blame] | 275 | obj_list[nr].offset = consumed_bytes; |
| 276 | |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 277 | pack = fill(1); |
| 278 | c = *pack; |
| 279 | use(1); |
Linus Torvalds | a733cb6 | 2005-06-28 14:21:02 -0700 | [diff] [blame] | 280 | type = (c >> 4) & 7; |
| 281 | size = (c & 15); |
Linus Torvalds | 01247d8 | 2005-06-28 22:15:57 -0700 | [diff] [blame] | 282 | shift = 4; |
Linus Torvalds | a733cb6 | 2005-06-28 14:21:02 -0700 | [diff] [blame] | 283 | while (c & 0x80) { |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 284 | pack = fill(1); |
Nicolas Pitre | 209c554 | 2006-09-21 00:07:39 -0400 | [diff] [blame] | 285 | c = *pack; |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 286 | use(1); |
Linus Torvalds | 01247d8 | 2005-06-28 22:15:57 -0700 | [diff] [blame] | 287 | size += (c & 0x7f) << shift; |
| 288 | shift += 7; |
Linus Torvalds | 7453695 | 2005-06-25 15:59:31 -0700 | [diff] [blame] | 289 | } |
Linus Torvalds | d36f7b8 | 2005-07-09 10:43:02 -0700 | [diff] [blame] | 290 | |
Linus Torvalds | a733cb6 | 2005-06-28 14:21:02 -0700 | [diff] [blame] | 291 | switch (type) { |
| 292 | case OBJ_COMMIT: |
| 293 | case OBJ_TREE: |
| 294 | case OBJ_BLOB: |
| 295 | case OBJ_TAG: |
Nicolas Pitre | 209c554 | 2006-09-21 00:07:39 -0400 | [diff] [blame] | 296 | unpack_non_delta_entry(type, size, nr); |
Linus Torvalds | a733cb6 | 2005-06-28 14:21:02 -0700 | [diff] [blame] | 297 | return; |
Nicolas Pitre | eb32d23 | 2006-09-21 00:06:49 -0400 | [diff] [blame] | 298 | case OBJ_REF_DELTA: |
Nicolas Pitre | 209c554 | 2006-09-21 00:07:39 -0400 | [diff] [blame] | 299 | case OBJ_OFS_DELTA: |
| 300 | unpack_delta_entry(type, size, nr); |
Linus Torvalds | a733cb6 | 2005-06-28 14:21:02 -0700 | [diff] [blame] | 301 | return; |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 302 | default: |
Junio C Hamano | f986f2c | 2006-09-03 22:55:54 -0700 | [diff] [blame] | 303 | error("bad object type %d", type); |
| 304 | has_errors = 1; |
Junio C Hamano | 3b67d29 | 2006-09-13 12:59:20 -0700 | [diff] [blame] | 305 | if (recover) |
Junio C Hamano | f986f2c | 2006-09-03 22:55:54 -0700 | [diff] [blame] | 306 | return; |
| 307 | exit(1); |
Linus Torvalds | a733cb6 | 2005-06-28 14:21:02 -0700 | [diff] [blame] | 308 | } |
Linus Torvalds | 7453695 | 2005-06-25 15:59:31 -0700 | [diff] [blame] | 309 | } |
| 310 | |
Linus Torvalds | 7453695 | 2005-06-25 15:59:31 -0700 | [diff] [blame] | 311 | static void unpack_all(void) |
| 312 | { |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 313 | int i; |
Nicolas Pitre | dc6a075 | 2007-10-30 14:57:32 -0400 | [diff] [blame] | 314 | struct progress *progress = NULL; |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 315 | struct pack_header *hdr = fill(sizeof(struct pack_header)); |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 316 | unsigned nr_objects = ntohl(hdr->hdr_entries); |
Linus Torvalds | 7453695 | 2005-06-25 15:59:31 -0700 | [diff] [blame] | 317 | |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 318 | if (ntohl(hdr->hdr_signature) != PACK_SIGNATURE) |
| 319 | die("bad pack file"); |
Nicolas Pitre | d60fc1c | 2006-02-09 17:50:04 -0500 | [diff] [blame] | 320 | if (!pack_version_ok(hdr->hdr_version)) |
| 321 | die("unknown pack file version %d", ntohl(hdr->hdr_version)); |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 322 | use(sizeof(struct pack_header)); |
Nicolas Pitre | 96a02f8 | 2007-04-18 14:27:45 -0400 | [diff] [blame] | 323 | |
Nicolas Pitre | 13aaf14 | 2007-04-20 14:10:07 -0400 | [diff] [blame] | 324 | if (!quiet) |
Nicolas Pitre | dc6a075 | 2007-10-30 14:57:32 -0400 | [diff] [blame] | 325 | progress = start_progress("Unpacking objects", nr_objects); |
Nicolas Pitre | 96a02f8 | 2007-04-18 14:27:45 -0400 | [diff] [blame] | 326 | obj_list = xmalloc(nr_objects * sizeof(*obj_list)); |
| 327 | for (i = 0; i < nr_objects; i++) { |
| 328 | unpack_one(i); |
Nicolas Pitre | 4d4fcc5 | 2007-10-30 14:57:33 -0400 | [diff] [blame] | 329 | display_progress(progress, i + 1); |
Nicolas Pitre | 96a02f8 | 2007-04-18 14:27:45 -0400 | [diff] [blame] | 330 | } |
Nicolas Pitre | 4d4fcc5 | 2007-10-30 14:57:33 -0400 | [diff] [blame] | 331 | stop_progress(&progress); |
Nicolas Pitre | 96a02f8 | 2007-04-18 14:27:45 -0400 | [diff] [blame] | 332 | |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 333 | if (delta_list) |
| 334 | die("unresolved deltas left after unpacking"); |
Linus Torvalds | 7453695 | 2005-06-25 15:59:31 -0700 | [diff] [blame] | 335 | } |
| 336 | |
Matthias Kestenholz | 6441363 | 2006-08-03 17:24:37 +0200 | [diff] [blame] | 337 | int cmd_unpack_objects(int argc, const char **argv, const char *prefix) |
Linus Torvalds | bad50dc | 2005-06-25 15:27:14 -0700 | [diff] [blame] | 338 | { |
| 339 | int i; |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 340 | unsigned char sha1[20]; |
Linus Torvalds | bad50dc | 2005-06-25 15:27:14 -0700 | [diff] [blame] | 341 | |
Junio C Hamano | 8e27364 | 2006-07-17 15:10:10 -0700 | [diff] [blame] | 342 | git_config(git_default_config); |
Junio C Hamano | 53228a5 | 2005-11-26 00:50:02 -0800 | [diff] [blame] | 343 | |
Junio C Hamano | 476e801 | 2006-01-06 18:53:16 -0800 | [diff] [blame] | 344 | quiet = !isatty(2); |
| 345 | |
Linus Torvalds | bad50dc | 2005-06-25 15:27:14 -0700 | [diff] [blame] | 346 | for (i = 1 ; i < argc; i++) { |
| 347 | const char *arg = argv[i]; |
| 348 | |
| 349 | if (*arg == '-') { |
Linus Torvalds | 7453695 | 2005-06-25 15:59:31 -0700 | [diff] [blame] | 350 | if (!strcmp(arg, "-n")) { |
| 351 | dry_run = 1; |
| 352 | continue; |
| 353 | } |
Linus Torvalds | d36f7b8 | 2005-07-09 10:43:02 -0700 | [diff] [blame] | 354 | if (!strcmp(arg, "-q")) { |
| 355 | quiet = 1; |
| 356 | continue; |
| 357 | } |
Junio C Hamano | f986f2c | 2006-09-03 22:55:54 -0700 | [diff] [blame] | 358 | if (!strcmp(arg, "-r")) { |
Junio C Hamano | 3b67d29 | 2006-09-13 12:59:20 -0700 | [diff] [blame] | 359 | recover = 1; |
Junio C Hamano | f986f2c | 2006-09-03 22:55:54 -0700 | [diff] [blame] | 360 | continue; |
| 361 | } |
Junio C Hamano | cc44c76 | 2007-02-20 01:53:29 -0800 | [diff] [blame] | 362 | if (!prefixcmp(arg, "--pack_header=")) { |
Nicolas Pitre | bed006f | 2006-11-01 17:06:20 -0500 | [diff] [blame] | 363 | struct pack_header *hdr; |
| 364 | char *c; |
| 365 | |
| 366 | hdr = (struct pack_header *)buffer; |
| 367 | hdr->hdr_signature = htonl(PACK_SIGNATURE); |
| 368 | hdr->hdr_version = htonl(strtoul(arg + 14, &c, 10)); |
| 369 | if (*c != ',') |
| 370 | die("bad %s", arg); |
| 371 | hdr->hdr_entries = htonl(strtoul(c + 1, &c, 10)); |
| 372 | if (*c) |
| 373 | die("bad %s", arg); |
| 374 | len = sizeof(*hdr); |
| 375 | continue; |
| 376 | } |
Linus Torvalds | bad50dc | 2005-06-25 15:27:14 -0700 | [diff] [blame] | 377 | usage(unpack_usage); |
| 378 | } |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 379 | |
| 380 | /* We don't take any non-flag arguments now.. Maybe some day */ |
Linus Torvalds | bad50dc | 2005-06-25 15:27:14 -0700 | [diff] [blame] | 381 | usage(unpack_usage); |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 382 | } |
| 383 | SHA1_Init(&ctx); |
Linus Torvalds | 7453695 | 2005-06-25 15:59:31 -0700 | [diff] [blame] | 384 | unpack_all(); |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 385 | SHA1_Update(&ctx, buffer, offset); |
| 386 | SHA1_Final(sha1, &ctx); |
David Rientjes | a89fccd | 2006-08-17 11:54:57 -0700 | [diff] [blame] | 387 | if (hashcmp(fill(20), sha1)) |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 388 | die("final sha1 did not match"); |
| 389 | use(20); |
| 390 | |
| 391 | /* Write the last part of the buffer to stdout */ |
| 392 | while (len) { |
Junio C Hamano | 1c15afb | 2005-12-19 16:18:28 -0800 | [diff] [blame] | 393 | int ret = xwrite(1, buffer + offset, len); |
| 394 | if (ret <= 0) |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 395 | break; |
Linus Torvalds | 67e5a5e | 2005-06-28 20:34:23 -0700 | [diff] [blame] | 396 | len -= ret; |
| 397 | offset += ret; |
| 398 | } |
| 399 | |
| 400 | /* All done */ |
Junio C Hamano | f986f2c | 2006-09-03 22:55:54 -0700 | [diff] [blame] | 401 | return has_errors; |
Linus Torvalds | bad50dc | 2005-06-25 15:27:14 -0700 | [diff] [blame] | 402 | } |