Raw
1 #include "git-compat-util.h"
2 #include "hash.h"
3 #include "hex.h"
4
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,
11 };
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
16 },
17 .algo = GIT_HASH_SHA1,
18 };
19 static const struct object_id null_oid_sha1 = {
20 .hash = {0},
21 .algo = GIT_HASH_SHA1,
22 };
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
29 },
30 .algo = GIT_HASH_SHA256,
31 };
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
38 },
39 .algo = GIT_HASH_SHA256,
40 };
41 static const struct object_id null_oid_sha256 = {
42 .hash = {0},
43 .algo = GIT_HASH_SHA256,
44 };
45
46 static void git_hash_sha1_init(struct git_hash_ctx *ctx)
47 {
48 ctx->algop = &hash_algos[GIT_HASH_SHA1];
49 git_SHA1_Init(&ctx->state.sha1);
50 }
51
52 static void git_hash_sha1_clone(struct git_hash_ctx *dst, const struct git_hash_ctx *src)
53 {
54 dst->algop = src->algop;
55 git_SHA1_Clone(&dst->state.sha1, &src->state.sha1);
56 }
57
58 static void git_hash_sha1_update(struct git_hash_ctx *ctx, const void *data, size_t len)
59 {
60 git_SHA1_Update(&ctx->state.sha1, data, len);
61 }
62
63 static void git_hash_sha1_final(unsigned char *hash, struct git_hash_ctx *ctx)
64 {
65 git_SHA1_Final(hash, &ctx->state.sha1);
66 }
67
68 static void git_hash_sha1_final_oid(struct object_id *oid, struct git_hash_ctx *ctx)
69 {
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;
73 }
74
75 static void git_hash_sha1_init_unsafe(struct git_hash_ctx *ctx)
76 {
77 ctx->algop = unsafe_hash_algo(&hash_algos[GIT_HASH_SHA1]);
78 git_SHA1_Init_unsafe(&ctx->state.sha1_unsafe);
79 }
80
81 static void git_hash_sha1_clone_unsafe(struct git_hash_ctx *dst, const struct git_hash_ctx *src)
82 {
83 dst->algop = src->algop;
84 git_SHA1_Clone_unsafe(&dst->state.sha1_unsafe, &src->state.sha1_unsafe);
85 }
86
87 static void git_hash_sha1_update_unsafe(struct git_hash_ctx *ctx, const void *data,
88 size_t len)
89 {
90 git_SHA1_Update_unsafe(&ctx->state.sha1_unsafe, data, len);
91 }
92
93 static void git_hash_sha1_final_unsafe(unsigned char *hash, struct git_hash_ctx *ctx)
94 {
95 git_SHA1_Final_unsafe(hash, &ctx->state.sha1_unsafe);
96 }
97
98 static void git_hash_sha1_final_oid_unsafe(struct object_id *oid, struct git_hash_ctx *ctx)
99 {
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;
103 }
104
105 static void git_hash_sha256_init(struct git_hash_ctx *ctx)
106 {
107 ctx->algop = unsafe_hash_algo(&hash_algos[GIT_HASH_SHA256]);
108 git_SHA256_Init(&ctx->state.sha256);
109 }
110
111 static void git_hash_sha256_clone(struct git_hash_ctx *dst, const struct git_hash_ctx *src)
112 {
113 dst->algop = src->algop;
114 git_SHA256_Clone(&dst->state.sha256, &src->state.sha256);
115 }
116
117 static void git_hash_sha256_update(struct git_hash_ctx *ctx, const void *data, size_t len)
118 {
119 git_SHA256_Update(&ctx->state.sha256, data, len);
120 }
121
122 static void git_hash_sha256_final(unsigned char *hash, struct git_hash_ctx *ctx)
123 {
124 git_SHA256_Final(hash, &ctx->state.sha256);
125 }
126
127 static void git_hash_sha256_final_oid(struct object_id *oid, struct git_hash_ctx *ctx)
128 {
129 git_SHA256_Final(oid->hash, &ctx->state.sha256);
130 /*
131 * This currently does nothing, so the compiler should optimize it out,
132 * but keep it in case we extend the hash size again.
133 */
134 memset(oid->hash + GIT_SHA256_RAWSZ, 0, GIT_MAX_RAWSZ - GIT_SHA256_RAWSZ);
135 oid->algo = GIT_HASH_SHA256;
136 }
137
138 static void git_hash_unknown_init(struct git_hash_ctx *ctx UNUSED)
139 {
140 BUG("trying to init unknown hash");
141 }
142
143 static void git_hash_unknown_clone(struct git_hash_ctx *dst UNUSED,
144 const struct git_hash_ctx *src UNUSED)
145 {
146 BUG("trying to clone unknown hash");
147 }
148
149 static void git_hash_unknown_update(struct git_hash_ctx *ctx UNUSED,
150 const void *data UNUSED,
151 size_t len UNUSED)
152 {
153 BUG("trying to update unknown hash");
154 }
155
156 static void git_hash_unknown_final(unsigned char *hash UNUSED,
157 struct git_hash_ctx *ctx UNUSED)
158 {
159 BUG("trying to finalize unknown hash");
160 }
161
162 static void git_hash_unknown_final_oid(struct object_id *oid UNUSED,
163 struct git_hash_ctx *ctx UNUSED)
164 {
165 BUG("trying to finalize unknown hash");
166 }
167
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,
182 };
183
184 const struct git_hash_algo hash_algos[GIT_HASH_NALGOS] = {
185 {
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,
199 },
200 {
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,
215 },
216 {
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,
230 }
231 };
232
233 const struct object_id *null_oid(const struct git_hash_algo *algop)
234 {
235 return algop->null_oid;
236 }
237
238 const char *empty_tree_oid_hex(const struct git_hash_algo *algop)
239 {
240 static char buf[GIT_MAX_HEXSZ + 1];
241 return oid_to_hex_r(buf, algop->empty_tree);
242 }
243
244 const struct git_hash_algo *hash_algo_ptr_by_number(uint32_t algo)
245 {
246 if (algo >= GIT_HASH_NALGOS)
247 return NULL;
248 return &hash_algos[algo];
249 }
250
251 struct git_hash_ctx *git_hash_alloc(void)
252 {
253 return xmalloc(sizeof(struct git_hash_ctx));
254 }
255
256 void git_hash_free(struct git_hash_ctx *ctx)
257 {
258 free(ctx);
259 }
260
261 void git_hash_init(struct git_hash_ctx *ctx, const struct git_hash_algo *algop)
262 {
263 algop->init_fn(ctx);
264 }
265
266 void git_hash_clone(struct git_hash_ctx *dst, const struct git_hash_ctx *src)
267 {
268 src->algop->clone_fn(dst, src);
269 }
270
271 void git_hash_update(struct git_hash_ctx *ctx, const void *in, size_t len)
272 {
273 ctx->algop->update_fn(ctx, in, len);
274 }
275
276 void git_hash_final(unsigned char *hash, struct git_hash_ctx *ctx)
277 {
278 ctx->algop->final_fn(hash, ctx);
279 }
280
281 void git_hash_final_oid(struct object_id *oid, struct git_hash_ctx *ctx)
282 {
283 ctx->algop->final_oid_fn(oid, ctx);
284 }
285
286 uint32_t hash_algo_by_name(const char *name)
287 {
288 if (!name)
289 return GIT_HASH_UNKNOWN;
290 for (size_t i = 1; i < GIT_HASH_NALGOS; i++)
291 if (!strcmp(name, hash_algos[i].name))
292 return i;
293 return GIT_HASH_UNKNOWN;
294 }
295
296 uint32_t hash_algo_by_id(uint32_t format_id)
297 {
298 for (size_t i = 1; i < GIT_HASH_NALGOS; i++)
299 if (format_id == hash_algos[i].format_id)
300 return i;
301 return GIT_HASH_UNKNOWN;
302 }
303
304 uint32_t hash_algo_by_length(size_t len)
305 {
306 for (size_t i = 1; i < GIT_HASH_NALGOS; i++)
307 if (len == hash_algos[i].rawsz)
308 return i;
309 return GIT_HASH_UNKNOWN;
310 }
311
312 const struct git_hash_algo *unsafe_hash_algo(const struct git_hash_algo *algop)
313 {
314 /* If we have a faster "unsafe" implementation, use that. */
315 if (algop->unsafe)
316 return algop->unsafe;
317 /* Otherwise use the default one. */
318 return algop;
319 }
320
321 unsigned oid_common_prefix_hexlen(const struct object_id *a,
322 const struct object_id *b)
323 {
324 unsigned rawsz = hash_algos[a->algo].rawsz;
325
326 for (unsigned i = 0; i < rawsz; i++) {
327 if (a->hash[i] == b->hash[i])
328 continue;
329
330 if ((a->hash[i] ^ b->hash[i]) & 0xf0)
331 return i * 2;
332 else
333 return i * 2 + 1;
334 }
335
336 return rawsz * 2;
337 }