blob: 463ac597ef0468cc863273a0a7989e594c17042c [file] [log] [blame]
David Sterba91d68932019-10-24 18:28:31 +02001// SPDX-License-Identifier: (GPL-2.0-only OR Apache-2.0)
2/*
3 * BLAKE2b reference source code package - reference C implementations
4 *
5 * Copyright 2012, Samuel Neves <sneves@dei.uc.pt>. You may use this under the
6 * terms of the CC0, the OpenSSL Licence, or the Apache Public License 2.0, at
7 * your option. The terms of these licenses can be found at:
8 *
9 * - CC0 1.0 Universal : http://creativecommons.org/publicdomain/zero/1.0
10 * - OpenSSL license : https://www.openssl.org/source/license.html
11 * - Apache 2.0 : http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * More information about the BLAKE2 hash function can be found at
14 * https://blake2.net.
15 *
16 * Note: the original sources have been modified for inclusion in linux kernel
17 * in terms of coding style, using generic helpers and simplifications of error
18 * handling.
19 */
20
21#include <asm/unaligned.h>
22#include <linux/module.h>
23#include <linux/string.h>
24#include <linux/kernel.h>
25#include <linux/bitops.h>
26#include <crypto/internal/hash.h>
27
28#define BLAKE2B_160_DIGEST_SIZE (160 / 8)
29#define BLAKE2B_256_DIGEST_SIZE (256 / 8)
30#define BLAKE2B_384_DIGEST_SIZE (384 / 8)
31#define BLAKE2B_512_DIGEST_SIZE (512 / 8)
32
33enum blake2b_constant {
34 BLAKE2B_BLOCKBYTES = 128,
David Sterba91d68932019-10-24 18:28:31 +020035 BLAKE2B_KEYBYTES = 64,
David Sterba91d68932019-10-24 18:28:31 +020036};
37
38struct blake2b_state {
39 u64 h[8];
40 u64 t[2];
41 u64 f[2];
42 u8 buf[BLAKE2B_BLOCKBYTES];
43 size_t buflen;
David Sterba91d68932019-10-24 18:28:31 +020044};
45
David Sterba91d68932019-10-24 18:28:31 +020046static const u64 blake2b_IV[8] = {
47 0x6a09e667f3bcc908ULL, 0xbb67ae8584caa73bULL,
48 0x3c6ef372fe94f82bULL, 0xa54ff53a5f1d36f1ULL,
49 0x510e527fade682d1ULL, 0x9b05688c2b3e6c1fULL,
50 0x1f83d9abfb41bd6bULL, 0x5be0cd19137e2179ULL
51};
52
53static const u8 blake2b_sigma[12][16] = {
54 { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 },
55 { 14, 10, 4, 8, 9, 15, 13, 6, 1, 12, 0, 2, 11, 7, 5, 3 },
56 { 11, 8, 12, 0, 5, 2, 15, 13, 10, 14, 3, 6, 7, 1, 9, 4 },
57 { 7, 9, 3, 1, 13, 12, 11, 14, 2, 6, 5, 10, 4, 0, 15, 8 },
58 { 9, 0, 5, 7, 2, 4, 10, 15, 14, 1, 11, 12, 6, 8, 3, 13 },
59 { 2, 12, 6, 10, 0, 11, 8, 3, 4, 13, 7, 5, 15, 14, 1, 9 },
60 { 12, 5, 1, 15, 14, 13, 4, 10, 0, 7, 6, 3, 9, 2, 8, 11 },
61 { 13, 11, 7, 14, 12, 1, 3, 9, 5, 0, 15, 4, 8, 6, 2, 10 },
62 { 6, 15, 14, 9, 11, 3, 0, 8, 12, 2, 13, 7, 1, 4, 10, 5 },
63 { 10, 2, 8, 4, 7, 6, 1, 5, 15, 11, 9, 14, 3, 12, 13, 0 },
64 { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 },
65 { 14, 10, 4, 8, 9, 15, 13, 6, 1, 12, 0, 2, 11, 7, 5, 3 }
66};
67
David Sterba91d68932019-10-24 18:28:31 +020068static void blake2b_increment_counter(struct blake2b_state *S, const u64 inc)
69{
70 S->t[0] += inc;
71 S->t[1] += (S->t[0] < inc);
72}
73
David Sterba91d68932019-10-24 18:28:31 +020074#define G(r,i,a,b,c,d) \
75 do { \
76 a = a + b + m[blake2b_sigma[r][2*i+0]]; \
77 d = ror64(d ^ a, 32); \
78 c = c + d; \
79 b = ror64(b ^ c, 24); \
80 a = a + b + m[blake2b_sigma[r][2*i+1]]; \
81 d = ror64(d ^ a, 16); \
82 c = c + d; \
83 b = ror64(b ^ c, 63); \
84 } while (0)
85
86#define ROUND(r) \
87 do { \
88 G(r,0,v[ 0],v[ 4],v[ 8],v[12]); \
89 G(r,1,v[ 1],v[ 5],v[ 9],v[13]); \
90 G(r,2,v[ 2],v[ 6],v[10],v[14]); \
91 G(r,3,v[ 3],v[ 7],v[11],v[15]); \
92 G(r,4,v[ 0],v[ 5],v[10],v[15]); \
93 G(r,5,v[ 1],v[ 6],v[11],v[12]); \
94 G(r,6,v[ 2],v[ 7],v[ 8],v[13]); \
95 G(r,7,v[ 3],v[ 4],v[ 9],v[14]); \
96 } while (0)
97
98static void blake2b_compress(struct blake2b_state *S,
99 const u8 block[BLAKE2B_BLOCKBYTES])
100{
101 u64 m[16];
102 u64 v[16];
103 size_t i;
104
105 for (i = 0; i < 16; ++i)
106 m[i] = get_unaligned_le64(block + i * sizeof(m[i]));
107
108 for (i = 0; i < 8; ++i)
109 v[i] = S->h[i];
110
111 v[ 8] = blake2b_IV[0];
112 v[ 9] = blake2b_IV[1];
113 v[10] = blake2b_IV[2];
114 v[11] = blake2b_IV[3];
115 v[12] = blake2b_IV[4] ^ S->t[0];
116 v[13] = blake2b_IV[5] ^ S->t[1];
117 v[14] = blake2b_IV[6] ^ S->f[0];
118 v[15] = blake2b_IV[7] ^ S->f[1];
119
120 ROUND(0);
121 ROUND(1);
122 ROUND(2);
123 ROUND(3);
124 ROUND(4);
125 ROUND(5);
126 ROUND(6);
127 ROUND(7);
128 ROUND(8);
129 ROUND(9);
130 ROUND(10);
131 ROUND(11);
132
133 for (i = 0; i < 8; ++i)
134 S->h[i] = S->h[i] ^ v[i] ^ v[i + 8];
135}
136
137#undef G
138#undef ROUND
139
140static void blake2b_update(struct blake2b_state *S, const void *pin, size_t inlen)
141{
142 const u8 *in = (const u8 *)pin;
143
144 if (inlen > 0) {
145 size_t left = S->buflen;
146 size_t fill = BLAKE2B_BLOCKBYTES - left;
147
148 if (inlen > fill) {
149 S->buflen = 0;
150 /* Fill buffer */
151 memcpy(S->buf + left, in, fill);
152 blake2b_increment_counter(S, BLAKE2B_BLOCKBYTES);
153 /* Compress */
154 blake2b_compress(S, S->buf);
155 in += fill;
156 inlen -= fill;
157 while (inlen > BLAKE2B_BLOCKBYTES) {
158 blake2b_increment_counter(S, BLAKE2B_BLOCKBYTES);
159 blake2b_compress(S, in);
160 in += BLAKE2B_BLOCKBYTES;
161 inlen -= BLAKE2B_BLOCKBYTES;
162 }
163 }
164 memcpy(S->buf + S->buflen, in, inlen);
165 S->buflen += inlen;
166 }
167}
168
David Sterba91d68932019-10-24 18:28:31 +0200169struct digest_tfm_ctx {
170 u8 key[BLAKE2B_KEYBYTES];
171 unsigned int keylen;
172};
173
174static int digest_setkey(struct crypto_shash *tfm, const u8 *key,
175 unsigned int keylen)
176{
177 struct digest_tfm_ctx *mctx = crypto_shash_ctx(tfm);
178
179 if (keylen == 0 || keylen > BLAKE2B_KEYBYTES) {
180 crypto_shash_set_flags(tfm, CRYPTO_TFM_RES_BAD_KEY_LEN);
181 return -EINVAL;
182 }
183
184 memcpy(mctx->key, key, keylen);
185 mctx->keylen = keylen;
186
187 return 0;
188}
189
David Sterbae3749692019-11-12 11:20:25 +0100190static int blake2b_init(struct shash_desc *desc)
David Sterba91d68932019-10-24 18:28:31 +0200191{
192 struct digest_tfm_ctx *mctx = crypto_shash_ctx(desc->tfm);
193 struct blake2b_state *state = shash_desc_ctx(desc);
194 const int digestsize = crypto_shash_digestsize(desc->tfm);
195
David Sterbae3749692019-11-12 11:20:25 +0100196 memset(state, 0, sizeof(*state));
197 memcpy(state->h, blake2b_IV, sizeof(state->h));
198
199 /* Parameter block is all zeros except index 0, no xor for 1..7 */
200 state->h[0] ^= 0x01010000 | mctx->keylen << 8 | digestsize;
201
202 if (mctx->keylen) {
David Sterbae87e4842019-11-12 11:20:26 +0100203 /*
204 * Prefill the buffer with the key, next call to _update or
205 * _final will process it
206 */
207 memcpy(state->buf, mctx->key, mctx->keylen);
208 state->buflen = BLAKE2B_BLOCKBYTES;
David Sterbae3749692019-11-12 11:20:25 +0100209 }
David Sterba91d68932019-10-24 18:28:31 +0200210 return 0;
211}
212
213static int digest_update(struct shash_desc *desc, const u8 *data,
214 unsigned int length)
215{
216 struct blake2b_state *state = shash_desc_ctx(desc);
217
218 blake2b_update(state, data, length);
219 return 0;
220}
221
David Sterba086db432019-11-12 11:20:24 +0100222static int blake2b_final(struct shash_desc *desc, u8 *out)
David Sterba91d68932019-10-24 18:28:31 +0200223{
224 struct blake2b_state *state = shash_desc_ctx(desc);
225 const int digestsize = crypto_shash_digestsize(desc->tfm);
David Sterba086db432019-11-12 11:20:24 +0100226 size_t i;
David Sterba91d68932019-10-24 18:28:31 +0200227
David Sterba086db432019-11-12 11:20:24 +0100228 blake2b_increment_counter(state, state->buflen);
David Sterbaa2e4bdc2019-11-12 11:20:28 +0100229 /* Set last block */
230 state->f[0] = (u64)-1;
David Sterba086db432019-11-12 11:20:24 +0100231 /* Padding */
232 memset(state->buf + state->buflen, 0, BLAKE2B_BLOCKBYTES - state->buflen);
233 blake2b_compress(state, state->buf);
234
235 /* Avoid temporary buffer and switch the internal output to LE order */
236 for (i = 0; i < ARRAY_SIZE(state->h); i++)
237 __cpu_to_le64s(&state->h[i]);
238
239 memcpy(out, state->h, digestsize);
David Sterba91d68932019-10-24 18:28:31 +0200240 return 0;
241}
242
243static struct shash_alg blake2b_algs[] = {
244 {
245 .base.cra_name = "blake2b-160",
246 .base.cra_driver_name = "blake2b-160-generic",
247 .base.cra_priority = 100,
248 .base.cra_flags = CRYPTO_ALG_OPTIONAL_KEY,
249 .base.cra_blocksize = BLAKE2B_BLOCKBYTES,
250 .base.cra_ctxsize = sizeof(struct digest_tfm_ctx),
251 .base.cra_module = THIS_MODULE,
252 .digestsize = BLAKE2B_160_DIGEST_SIZE,
253 .setkey = digest_setkey,
David Sterbae3749692019-11-12 11:20:25 +0100254 .init = blake2b_init,
David Sterba91d68932019-10-24 18:28:31 +0200255 .update = digest_update,
David Sterba086db432019-11-12 11:20:24 +0100256 .final = blake2b_final,
David Sterba91d68932019-10-24 18:28:31 +0200257 .descsize = sizeof(struct blake2b_state),
258 }, {
259 .base.cra_name = "blake2b-256",
260 .base.cra_driver_name = "blake2b-256-generic",
261 .base.cra_priority = 100,
262 .base.cra_flags = CRYPTO_ALG_OPTIONAL_KEY,
263 .base.cra_blocksize = BLAKE2B_BLOCKBYTES,
264 .base.cra_ctxsize = sizeof(struct digest_tfm_ctx),
265 .base.cra_module = THIS_MODULE,
266 .digestsize = BLAKE2B_256_DIGEST_SIZE,
267 .setkey = digest_setkey,
David Sterbae3749692019-11-12 11:20:25 +0100268 .init = blake2b_init,
David Sterba91d68932019-10-24 18:28:31 +0200269 .update = digest_update,
David Sterba086db432019-11-12 11:20:24 +0100270 .final = blake2b_final,
David Sterba91d68932019-10-24 18:28:31 +0200271 .descsize = sizeof(struct blake2b_state),
272 }, {
273 .base.cra_name = "blake2b-384",
274 .base.cra_driver_name = "blake2b-384-generic",
275 .base.cra_priority = 100,
276 .base.cra_flags = CRYPTO_ALG_OPTIONAL_KEY,
277 .base.cra_blocksize = BLAKE2B_BLOCKBYTES,
278 .base.cra_ctxsize = sizeof(struct digest_tfm_ctx),
279 .base.cra_module = THIS_MODULE,
280 .digestsize = BLAKE2B_384_DIGEST_SIZE,
281 .setkey = digest_setkey,
David Sterbae3749692019-11-12 11:20:25 +0100282 .init = blake2b_init,
David Sterba91d68932019-10-24 18:28:31 +0200283 .update = digest_update,
David Sterba086db432019-11-12 11:20:24 +0100284 .final = blake2b_final,
David Sterba91d68932019-10-24 18:28:31 +0200285 .descsize = sizeof(struct blake2b_state),
286 }, {
287 .base.cra_name = "blake2b-512",
288 .base.cra_driver_name = "blake2b-512-generic",
289 .base.cra_priority = 100,
290 .base.cra_flags = CRYPTO_ALG_OPTIONAL_KEY,
291 .base.cra_blocksize = BLAKE2B_BLOCKBYTES,
292 .base.cra_ctxsize = sizeof(struct digest_tfm_ctx),
293 .base.cra_module = THIS_MODULE,
294 .digestsize = BLAKE2B_512_DIGEST_SIZE,
295 .setkey = digest_setkey,
David Sterbae3749692019-11-12 11:20:25 +0100296 .init = blake2b_init,
David Sterba91d68932019-10-24 18:28:31 +0200297 .update = digest_update,
David Sterba086db432019-11-12 11:20:24 +0100298 .final = blake2b_final,
David Sterba91d68932019-10-24 18:28:31 +0200299 .descsize = sizeof(struct blake2b_state),
300 }
301};
302
303static int __init blake2b_mod_init(void)
304{
David Sterba91d68932019-10-24 18:28:31 +0200305 return crypto_register_shashes(blake2b_algs, ARRAY_SIZE(blake2b_algs));
306}
307
308static void __exit blake2b_mod_fini(void)
309{
310 crypto_unregister_shashes(blake2b_algs, ARRAY_SIZE(blake2b_algs));
311}
312
313subsys_initcall(blake2b_mod_init);
314module_exit(blake2b_mod_fini);
315
316MODULE_AUTHOR("David Sterba <kdave@kernel.org>");
317MODULE_DESCRIPTION("BLAKE2b generic implementation");
318MODULE_LICENSE("GPL");
319MODULE_ALIAS_CRYPTO("blake2b-160");
320MODULE_ALIAS_CRYPTO("blake2b-160-generic");
321MODULE_ALIAS_CRYPTO("blake2b-256");
322MODULE_ALIAS_CRYPTO("blake2b-256-generic");
323MODULE_ALIAS_CRYPTO("blake2b-384");
324MODULE_ALIAS_CRYPTO("blake2b-384-generic");
325MODULE_ALIAS_CRYPTO("blake2b-512");
326MODULE_ALIAS_CRYPTO("blake2b-512-generic");