pack-check.c 4.5 KB
Newer Older
1 2 3
#include "cache.h"
#include "pack.h"

4 5
#define BATCH (1u<<20)

6 7 8 9 10 11 12
static int verify_packfile(struct packed_git *p)
{
	unsigned long index_size = p->index_size;
	void *index_base = p->index_base;
	SHA_CTX ctx;
	unsigned char sha1[20];
	struct pack_header *hdr;
J
Junio C Hamano 已提交
13
	int nr_objects, err, i;
14 15
	unsigned char *packdata;
	unsigned long datasize;
16

J
Junio C Hamano 已提交
17
	/* Header consistency check */
18 19
	hdr = p->pack_base;
	if (hdr->hdr_signature != htonl(PACK_SIGNATURE))
T
Timo Sirainen 已提交
20
		return error("Packfile %s signature mismatch", p->pack_name);
N
Nicolas Pitre 已提交
21 22 23
	if (!pack_version_ok(hdr->hdr_version))
		return error("Packfile version %d unsupported",
			     ntohl(hdr->hdr_version));
24 25 26 27 28 29
	nr_objects = ntohl(hdr->hdr_entries);
	if (num_packed_objects(p) != nr_objects)
		return error("Packfile claims to have %d objects, "
			     "while idx size expects %d", nr_objects,
			     num_packed_objects(p));

30
	/* Check integrity of pack data with its SHA-1 checksum */
31
	SHA1_Init(&ctx);
32 33 34 35 36 37 38 39
	packdata = p->pack_base;
	datasize = p->pack_size - 20;
	while (datasize) {
		unsigned long batch = (datasize < BATCH) ? datasize : BATCH;
		SHA1_Update(&ctx, packdata, batch);
		datasize -= batch;
		packdata += batch;
	}
40
	SHA1_Final(sha1, &ctx);
41 42

	if (hashcmp(sha1, (unsigned char *)(p->pack_base) + p->pack_size - 20))
43 44
		return error("Packfile %s SHA1 mismatch with itself",
			     p->pack_name);
45
	if (hashcmp(sha1, (unsigned char *)index_base + index_size - 40))
46 47
		return error("Packfile %s SHA1 mismatch with idx",
			     p->pack_name);
J
Junio C Hamano 已提交
48 49 50 51 52 53 54 55 56

	/* Make sure everything reachable from idx is valid.  Since we
	 * have verified that nr_objects matches between idx and pack,
	 * we do not do scan-streaming check on the pack file.
	 */
	for (i = err = 0; i < nr_objects; i++) {
		unsigned char sha1[20];
		void *data;
		char type[20];
N
Nicolas Pitre 已提交
57
		unsigned long size, offset;
J
Junio C Hamano 已提交
58 59 60

		if (nth_packed_object_sha1(p, i, sha1))
			die("internal error pack-check nth-packed-object");
N
Nicolas Pitre 已提交
61 62
		offset = find_pack_entry_one(sha1, p);
		if (!offset)
J
Junio C Hamano 已提交
63
			die("internal error pack-check find-pack-entry-one");
N
Nicolas Pitre 已提交
64
		data = unpack_entry_gently(p, offset, type, &size);
J
Junio C Hamano 已提交
65 66 67 68 69 70
		if (!data) {
			err = error("cannot unpack %s from %s",
				    sha1_to_hex(sha1), p->pack_name);
			continue;
		}
		if (check_sha1_signature(sha1, data, size, type)) {
71
			err = error("packed %s from %s is corrupt",
J
Junio C Hamano 已提交
72 73 74 75 76 77 78 79
				    sha1_to_hex(sha1), p->pack_name);
			free(data);
			continue;
		}
		free(data);
	}

	return err;
80 81 82
}


83 84
#define MAX_CHAIN 40

J
Junio C Hamano 已提交
85 86
static void show_pack_info(struct packed_git *p)
{
87 88
	struct pack_header *hdr;
	int nr_objects, i;
89
	unsigned int chain_histogram[MAX_CHAIN];
90 91 92

	hdr = p->pack_base;
	nr_objects = ntohl(hdr->hdr_entries);
93
	memset(chain_histogram, 0, sizeof(chain_histogram));
94 95 96 97 98 99

	for (i = 0; i < nr_objects; i++) {
		unsigned char sha1[20], base_sha1[20];
		char type[20];
		unsigned long size;
		unsigned long store_size;
N
Nicolas Pitre 已提交
100
		unsigned long offset;
J
Junio C Hamano 已提交
101
		unsigned int delta_chain_length;
102 103 104

		if (nth_packed_object_sha1(p, i, sha1))
			die("internal error pack-check nth-packed-object");
N
Nicolas Pitre 已提交
105 106
		offset = find_pack_entry_one(sha1, p);
		if (!offset)
107 108
			die("internal error pack-check find-pack-entry-one");

N
Nicolas Pitre 已提交
109
		packed_object_info_detail(p, offset, type, &size, &store_size,
110 111 112 113
					  &delta_chain_length,
					  base_sha1);
		printf("%s ", sha1_to_hex(sha1));
		if (!delta_chain_length)
N
Nicolas Pitre 已提交
114
			printf("%-6s %lu %lu\n", type, size, offset);
115
		else {
N
Nicolas Pitre 已提交
116
			printf("%-6s %lu %lu %u %s\n", type, size, offset,
117
			       delta_chain_length, sha1_to_hex(base_sha1));
118 119 120 121 122
			if (delta_chain_length < MAX_CHAIN)
				chain_histogram[delta_chain_length]++;
			else
				chain_histogram[0]++;
		}
123 124
	}

125 126 127 128 129 130 131 132 133
	for (i = 0; i < MAX_CHAIN; i++) {
		if (!chain_histogram[i])
			continue;
		printf("chain length %s %d: %d object%s\n",
		       i ? "=" : ">=",
		       i ? i : MAX_CHAIN,
		       chain_histogram[i],
		       1 < chain_histogram[i] ? "s" : "");
	}
J
Junio C Hamano 已提交
134 135 136
}

int verify_pack(struct packed_git *p, int verbose)
137 138 139 140 141 142 143
{
	unsigned long index_size = p->index_size;
	void *index_base = p->index_base;
	SHA_CTX ctx;
	unsigned char sha1[20];
	int ret;

J
Junio C Hamano 已提交
144
	ret = 0;
145 146 147 148
	/* Verify SHA1 sum of the index file */
	SHA1_Init(&ctx);
	SHA1_Update(&ctx, index_base, index_size - 20);
	SHA1_Final(sha1, &ctx);
149
	if (hashcmp(sha1, (unsigned char *)index_base + index_size - 20))
J
Junio C Hamano 已提交
150 151 152 153 154 155 156 157 158 159 160 161 162 163
		ret = error("Packfile index for %s SHA1 mismatch",
			    p->pack_name);

	if (!ret) {
		/* Verify pack file */
		use_packed_git(p);
		ret = verify_packfile(p);
		unuse_packed_git(p);
	}

	if (verbose) {
		if (ret)
			printf("%s: bad\n", p->pack_name);
		else {
164
			use_packed_git(p);
J
Junio C Hamano 已提交
165
			show_pack_info(p);
166
			unuse_packed_git(p);
J
Junio C Hamano 已提交
167 168 169
			printf("%s: ok\n", p->pack_name);
		}
	}
170 171 172

	return ret;
}