unpack-objects.con commit [PATCH] Add git-verify-pack command. (f925339)
   1#include "cache.h"
   2#include "object.h"
   3#include "delta.h"
   4#include "pack.h"
   5
   6static int dry_run;
   7static const char unpack_usage[] = "git-unpack-objects < pack-file";
   8
   9/* We always read in 4kB chunks. */
  10static unsigned char buffer[4096];
  11static unsigned long offset, len, eof;
  12static SHA_CTX ctx;
  13
  14/*
  15 * Make sure at least "min" bytes are available in the buffer, and
  16 * return the pointer to the buffer.
  17 */
  18static void * fill(int min)
  19{
  20        if (min <= len)
  21                return buffer + offset;
  22        if (eof)
  23                die("unable to fill input");
  24        if (min > sizeof(buffer))
  25                die("cannot fill %d bytes", min);
  26        if (offset) {
  27                SHA1_Update(&ctx, buffer, offset);
  28                memcpy(buffer, buffer + offset, len);
  29                offset = 0;
  30        }
  31        do {
  32                int ret = read(0, buffer + len, sizeof(buffer) - len);
  33                if (ret <= 0) {
  34                        if (!ret)
  35                                die("early EOF");
  36                        if (errno == EAGAIN || errno == EINTR)
  37                                continue;
  38                        die("read error on input: %s", strerror(errno));
  39                }
  40                len += ret;
  41        } while (len < min);
  42        return buffer;
  43}
  44
  45static void use(int bytes)
  46{
  47        if (bytes > len)
  48                die("used more bytes than were available");
  49        len -= bytes;
  50        offset += bytes;
  51}
  52
  53static void *get_data(unsigned long size)
  54{
  55        z_stream stream;
  56        void *buf = xmalloc(size);
  57
  58        if (!size)
  59                return buf;
  60        memset(&stream, 0, sizeof(stream));
  61
  62        stream.next_out = buf;
  63        stream.avail_out = size;
  64        stream.next_in = fill(1);
  65        stream.avail_in = len;
  66        inflateInit(&stream);
  67
  68        for (;;) {
  69                int ret = inflate(&stream, 0);
  70                use(len - stream.avail_in);
  71                if (stream.total_out == size && ret == Z_STREAM_END)
  72                        break;
  73                if (ret != Z_OK)
  74                        die("inflate returned %d\n", ret);
  75                stream.next_in = fill(1);
  76                stream.avail_in = len;
  77        }
  78        return buf;
  79}
  80
  81struct delta_info {
  82        unsigned char base_sha1[20];
  83        unsigned long size;
  84        void *delta;
  85        struct delta_info *next;
  86};
  87
  88static struct delta_info *delta_list;
  89
  90static void add_delta_to_list(unsigned char *base_sha1, void *delta, unsigned long size)
  91{
  92        struct delta_info *info = xmalloc(sizeof(*info));
  93
  94        memcpy(info->base_sha1, base_sha1, 20);
  95        info->size = size;
  96        info->delta = delta;
  97        info->next = delta_list;
  98        delta_list = info;
  99}
 100
 101static void added_object(unsigned char *sha1, char *type, void *data, unsigned long size);
 102
 103static int resolve_delta(char *type,
 104        void *base, unsigned long base_size, 
 105        void *delta, unsigned long delta_size)
 106{
 107        void *result;
 108        unsigned long result_size;
 109        unsigned char sha1[20];
 110
 111        result = patch_delta(base, base_size,
 112                             delta, delta_size,
 113                             &result_size);
 114        if (!result)
 115                die("failed to apply delta");
 116        free(delta);
 117
 118        if (write_sha1_file(result, result_size, type, sha1) < 0)
 119                die("failed to write object");
 120        added_object(sha1, type, result, result_size);
 121        free(result);
 122        return 0;
 123}
 124
 125static void added_object(unsigned char *sha1, char *type, void *data, unsigned long size)
 126{
 127        struct delta_info **p = &delta_list;
 128        struct delta_info *info;
 129
 130        while ((info = *p) != NULL) {
 131                if (!memcmp(info->base_sha1, sha1, 20)) {
 132                        *p = info->next;
 133                        p = &delta_list;
 134                        resolve_delta(type, data, size, info->delta, info->size);
 135                        free(info);
 136                        continue;
 137                }
 138                p = &info->next;
 139        }
 140}
 141
 142static int unpack_non_delta_entry(enum object_type kind, unsigned long size)
 143{
 144        void *buf = get_data(size);
 145        unsigned char sha1[20];
 146        char *type;
 147
 148        switch (kind) {
 149        case OBJ_COMMIT: type = "commit"; break;
 150        case OBJ_TREE:   type = "tree"; break;
 151        case OBJ_BLOB:   type = "blob"; break;
 152        case OBJ_TAG:    type = "tag"; break;
 153        default: die("bad type %d", kind);
 154        }
 155        if (write_sha1_file(buf, size, type, sha1) < 0)
 156                die("failed to write object");
 157        added_object(sha1, type, buf, size);
 158        free(buf);
 159        return 0;
 160}
 161
 162static int unpack_delta_entry(unsigned long delta_size)
 163{
 164        void *delta_data, *base;
 165        unsigned long base_size;
 166        char type[20];
 167        unsigned char base_sha1[20];
 168
 169        memcpy(base_sha1, fill(20), 20);
 170        use(20);
 171
 172        delta_data = get_data(delta_size);
 173
 174        if (!has_sha1_file(base_sha1)) {
 175                add_delta_to_list(base_sha1, delta_data, delta_size);
 176                return 0;
 177        }
 178        base = read_sha1_file(base_sha1, type, &base_size);
 179        if (!base)
 180                die("failed to read delta-pack base object %s", sha1_to_hex(base_sha1));
 181        return resolve_delta(type, base, base_size, delta_data, delta_size);
 182}
 183
 184static void unpack_one(void)
 185{
 186        unsigned shift;
 187        unsigned char *pack, c;
 188        unsigned long size;
 189        enum object_type type;
 190
 191        pack = fill(1);
 192        c = *pack;
 193        use(1);
 194        type = (c >> 4) & 7;
 195        size = (c & 15);
 196        shift = 4;
 197        while (c & 0x80) {
 198                pack = fill(1);
 199                c = *pack++;
 200                use(1);
 201                size += (c & 0x7f) << shift;
 202                shift += 7;
 203        }
 204        switch (type) {
 205        case OBJ_COMMIT:
 206        case OBJ_TREE:
 207        case OBJ_BLOB:
 208        case OBJ_TAG:
 209                unpack_non_delta_entry(type, size);
 210                return;
 211        case OBJ_DELTA:
 212                unpack_delta_entry(size);
 213                return;
 214        default:
 215                die("bad object type %d", type);
 216        }
 217}
 218
 219/*
 220 * We unpack from the end, older files first. Now, usually
 221 * there are deltas etc, so we'll not actually write the
 222 * objects in that order, but we might as well try..
 223 */
 224static void unpack_all(void)
 225{
 226        int i;
 227        struct pack_header *hdr = fill(sizeof(struct pack_header));
 228        unsigned version = ntohl(hdr->hdr_version);
 229        unsigned nr_objects = ntohl(hdr->hdr_entries);
 230
 231        if (ntohl(hdr->hdr_signature) != PACK_SIGNATURE)
 232                die("bad pack file");
 233        if (version != PACK_VERSION)
 234                die("unable to handle pack file version %d", version);
 235        fprintf(stderr, "Unpacking %d objects\n", nr_objects);
 236
 237        use(sizeof(struct pack_header));
 238        for (i = 0; i < nr_objects; i++)
 239                unpack_one();
 240        if (delta_list)
 241                die("unresolved deltas left after unpacking");
 242}
 243
 244int main(int argc, char **argv)
 245{
 246        int i;
 247        unsigned char sha1[20];
 248
 249        for (i = 1 ; i < argc; i++) {
 250                const char *arg = argv[i];
 251
 252                if (*arg == '-') {
 253                        if (!strcmp(arg, "-n")) {
 254                                dry_run = 1;
 255                                continue;
 256                        }
 257                        usage(unpack_usage);
 258                }
 259
 260                /* We don't take any non-flag arguments now.. Maybe some day */
 261                usage(unpack_usage);
 262        }
 263        SHA1_Init(&ctx);
 264        unpack_all();
 265        SHA1_Update(&ctx, buffer, offset);
 266        SHA1_Final(sha1, &ctx);
 267        if (memcmp(fill(20), sha1, 20))
 268                die("final sha1 did not match");
 269        use(20);
 270
 271        /* Write the last part of the buffer to stdout */
 272        while (len) {
 273                int ret = write(1, buffer + offset, len);
 274                if (!ret)
 275                        break;
 276                if (ret < 0) {
 277                        if (errno == EAGAIN || errno == EINTR)
 278                                continue;
 279                        break;
 280                }
 281                len -= ret;
 282                offset += ret;
 283        }
 284
 285        /* All done */
 286        return 0;
 287}