The sixteenth batch
[git/gitster.git] / hash.c
blob4a04ecb50e8a0bf3298a6d6ab26bd0475b814dca
1 #include "git-compat-util.h"
2 #include "hash.h"
3 #include "hex.h"
5 static const struct object_id empty_tree_oid = {
6 .hash = {
7 0x4b, 0x82, 0x5d, 0xc6, 0x42, 0xcb, 0x6e, 0xb9, 0xa0, 0x60,
8 0xe5, 0x4b, 0xf8, 0xd6, 0x92, 0x88, 0xfb, 0xee, 0x49, 0x04
9 },
10 .algo = GIT_HASH_SHA1,
12 static const struct object_id empty_blob_oid = {
13 .hash = {
14 0xe6, 0x9d, 0xe2, 0x9b, 0xb2, 0xd1, 0xd6, 0x43, 0x4b, 0x8b,
15 0x29, 0xae, 0x77, 0x5a, 0xd8, 0xc2, 0xe4, 0x8c, 0x53, 0x91
17 .algo = GIT_HASH_SHA1,
19 static const struct object_id null_oid_sha1 = {
20 .hash = {0},
21 .algo = GIT_HASH_SHA1,
23 static const struct object_id empty_tree_oid_sha256 = {
24 .hash = {
25 0x6e, 0xf1, 0x9b, 0x41, 0x22, 0x5c, 0x53, 0x69, 0xf1, 0xc1,
26 0x04, 0xd4, 0x5d, 0x8d, 0x85, 0xef, 0xa9, 0xb0, 0x57, 0xb5,
27 0x3b, 0x14, 0xb4, 0xb9, 0xb9, 0x39, 0xdd, 0x74, 0xde, 0xcc,
28 0x53, 0x21
30 .algo = GIT_HASH_SHA256,
32 static const struct object_id empty_blob_oid_sha256 = {
33 .hash = {
34 0x47, 0x3a, 0x0f, 0x4c, 0x3b, 0xe8, 0xa9, 0x36, 0x81, 0xa2,
35 0x67, 0xe3, 0xb1, 0xe9, 0xa7, 0xdc, 0xda, 0x11, 0x85, 0x43,
36 0x6f, 0xe1, 0x41, 0xf7, 0x74, 0x91, 0x20, 0xa3, 0x03, 0x72,
37 0x18, 0x13
39 .algo = GIT_HASH_SHA256,
41 static const struct object_id null_oid_sha256 = {
42 .hash = {0},
43 .algo = GIT_HASH_SHA256,
46 static void git_hash_sha1_init(struct git_hash_ctx *ctx)
48 ctx->algop = &hash_algos[GIT_HASH_SHA1];
49 git_SHA1_Init(&ctx->state.sha1);
52 static void git_hash_sha1_clone(struct git_hash_ctx *dst, const struct git_hash_ctx *src)
54 dst->algop = src->algop;
55 git_SHA1_Clone(&dst->state.sha1, &src->state.sha1);
58 static void git_hash_sha1_update(struct git_hash_ctx *ctx, const void *data, size_t len)
60 git_SHA1_Update(&ctx->state.sha1, data, len);
63 static void git_hash_sha1_final(unsigned char *hash, struct git_hash_ctx *ctx)
65 git_SHA1_Final(hash, &ctx->state.sha1);
68 static void git_hash_sha1_final_oid(struct object_id *oid, struct git_hash_ctx *ctx)
70 git_SHA1_Final(oid->hash, &ctx->state.sha1);
71 memset(oid->hash + GIT_SHA1_RAWSZ, 0, GIT_MAX_RAWSZ - GIT_SHA1_RAWSZ);
72 oid->algo = GIT_HASH_SHA1;
75 static void git_hash_sha1_init_unsafe(struct git_hash_ctx *ctx)
77 ctx->algop = unsafe_hash_algo(&hash_algos[GIT_HASH_SHA1]);
78 git_SHA1_Init_unsafe(&ctx->state.sha1_unsafe);
81 static void git_hash_sha1_clone_unsafe(struct git_hash_ctx *dst, const struct git_hash_ctx *src)
83 dst->algop = src->algop;
84 git_SHA1_Clone_unsafe(&dst->state.sha1_unsafe, &src->state.sha1_unsafe);
87 static void git_hash_sha1_update_unsafe(struct git_hash_ctx *ctx, const void *data,
88 size_t len)
90 git_SHA1_Update_unsafe(&ctx->state.sha1_unsafe, data, len);
93 static void git_hash_sha1_final_unsafe(unsigned char *hash, struct git_hash_ctx *ctx)
95 git_SHA1_Final_unsafe(hash, &ctx->state.sha1_unsafe);
98 static void git_hash_sha1_final_oid_unsafe(struct object_id *oid, struct git_hash_ctx *ctx)
100 git_SHA1_Final_unsafe(oid->hash, &ctx->state.sha1_unsafe);
101 memset(oid->hash + GIT_SHA1_RAWSZ, 0, GIT_MAX_RAWSZ - GIT_SHA1_RAWSZ);
102 oid->algo = GIT_HASH_SHA1;
105 static void git_hash_sha256_init(struct git_hash_ctx *ctx)
107 ctx->algop = unsafe_hash_algo(&hash_algos[GIT_HASH_SHA256]);
108 git_SHA256_Init(&ctx->state.sha256);
111 static void git_hash_sha256_clone(struct git_hash_ctx *dst, const struct git_hash_ctx *src)
113 dst->algop = src->algop;
114 git_SHA256_Clone(&dst->state.sha256, &src->state.sha256);
117 static void git_hash_sha256_update(struct git_hash_ctx *ctx, const void *data, size_t len)
119 git_SHA256_Update(&ctx->state.sha256, data, len);
122 static void git_hash_sha256_final(unsigned char *hash, struct git_hash_ctx *ctx)
124 git_SHA256_Final(hash, &ctx->state.sha256);
127 static void git_hash_sha256_final_oid(struct object_id *oid, struct git_hash_ctx *ctx)
129 git_SHA256_Final(oid->hash, &ctx->state.sha256);
131 * This currently does nothing, so the compiler should optimize it out,
132 * but keep it in case we extend the hash size again.
134 memset(oid->hash + GIT_SHA256_RAWSZ, 0, GIT_MAX_RAWSZ - GIT_SHA256_RAWSZ);
135 oid->algo = GIT_HASH_SHA256;
138 static void git_hash_unknown_init(struct git_hash_ctx *ctx UNUSED)
140 BUG("trying to init unknown hash");
143 static void git_hash_unknown_clone(struct git_hash_ctx *dst UNUSED,
144 const struct git_hash_ctx *src UNUSED)
146 BUG("trying to clone unknown hash");
149 static void git_hash_unknown_update(struct git_hash_ctx *ctx UNUSED,
150 const void *data UNUSED,
151 size_t len UNUSED)
153 BUG("trying to update unknown hash");
156 static void git_hash_unknown_final(unsigned char *hash UNUSED,
157 struct git_hash_ctx *ctx UNUSED)
159 BUG("trying to finalize unknown hash");
162 static void git_hash_unknown_final_oid(struct object_id *oid UNUSED,
163 struct git_hash_ctx *ctx UNUSED)
165 BUG("trying to finalize unknown hash");
168 static const struct git_hash_algo sha1_unsafe_algo = {
169 .name = "sha1",
170 .format_id = GIT_SHA1_FORMAT_ID,
171 .rawsz = GIT_SHA1_RAWSZ,
172 .hexsz = GIT_SHA1_HEXSZ,
173 .blksz = GIT_SHA1_BLKSZ,
174 .init_fn = git_hash_sha1_init_unsafe,
175 .clone_fn = git_hash_sha1_clone_unsafe,
176 .update_fn = git_hash_sha1_update_unsafe,
177 .final_fn = git_hash_sha1_final_unsafe,
178 .final_oid_fn = git_hash_sha1_final_oid_unsafe,
179 .empty_tree = &empty_tree_oid,
180 .empty_blob = &empty_blob_oid,
181 .null_oid = &null_oid_sha1,
184 const struct git_hash_algo hash_algos[GIT_HASH_NALGOS] = {
186 .name = NULL,
187 .format_id = 0x00000000,
188 .rawsz = 0,
189 .hexsz = 0,
190 .blksz = 0,
191 .init_fn = git_hash_unknown_init,
192 .clone_fn = git_hash_unknown_clone,
193 .update_fn = git_hash_unknown_update,
194 .final_fn = git_hash_unknown_final,
195 .final_oid_fn = git_hash_unknown_final_oid,
196 .empty_tree = NULL,
197 .empty_blob = NULL,
198 .null_oid = NULL,
201 .name = "sha1",
202 .format_id = GIT_SHA1_FORMAT_ID,
203 .rawsz = GIT_SHA1_RAWSZ,
204 .hexsz = GIT_SHA1_HEXSZ,
205 .blksz = GIT_SHA1_BLKSZ,
206 .init_fn = git_hash_sha1_init,
207 .clone_fn = git_hash_sha1_clone,
208 .update_fn = git_hash_sha1_update,
209 .final_fn = git_hash_sha1_final,
210 .final_oid_fn = git_hash_sha1_final_oid,
211 .unsafe = &sha1_unsafe_algo,
212 .empty_tree = &empty_tree_oid,
213 .empty_blob = &empty_blob_oid,
214 .null_oid = &null_oid_sha1,
217 .name = "sha256",
218 .format_id = GIT_SHA256_FORMAT_ID,
219 .rawsz = GIT_SHA256_RAWSZ,
220 .hexsz = GIT_SHA256_HEXSZ,
221 .blksz = GIT_SHA256_BLKSZ,
222 .init_fn = git_hash_sha256_init,
223 .clone_fn = git_hash_sha256_clone,
224 .update_fn = git_hash_sha256_update,
225 .final_fn = git_hash_sha256_final,
226 .final_oid_fn = git_hash_sha256_final_oid,
227 .empty_tree = &empty_tree_oid_sha256,
228 .empty_blob = &empty_blob_oid_sha256,
229 .null_oid = &null_oid_sha256,
233 const struct object_id *null_oid(const struct git_hash_algo *algop)
235 return algop->null_oid;
238 const char *empty_tree_oid_hex(const struct git_hash_algo *algop)
240 static char buf[GIT_MAX_HEXSZ + 1];
241 return oid_to_hex_r(buf, algop->empty_tree);
244 int hash_algo_by_name(const char *name)
246 if (!name)
247 return GIT_HASH_UNKNOWN;
248 for (size_t i = 1; i < GIT_HASH_NALGOS; i++)
249 if (!strcmp(name, hash_algos[i].name))
250 return i;
251 return GIT_HASH_UNKNOWN;
254 int hash_algo_by_id(uint32_t format_id)
256 for (size_t i = 1; i < GIT_HASH_NALGOS; i++)
257 if (format_id == hash_algos[i].format_id)
258 return i;
259 return GIT_HASH_UNKNOWN;
262 int hash_algo_by_length(size_t len)
264 for (size_t i = 1; i < GIT_HASH_NALGOS; i++)
265 if (len == hash_algos[i].rawsz)
266 return i;
267 return GIT_HASH_UNKNOWN;
270 const struct git_hash_algo *unsafe_hash_algo(const struct git_hash_algo *algop)
272 /* If we have a faster "unsafe" implementation, use that. */
273 if (algop->unsafe)
274 return algop->unsafe;
275 /* Otherwise use the default one. */
276 return algop;