blob: c14274ac8d61bfbed4201485e68de822d5b46d32 [file] [log] [blame]
Stephan Mueller541af942014-05-31 15:44:17 +02001/*
2 * DRBG: Deterministic Random Bits Generator
3 * Based on NIST Recommended DRBG from NIST SP800-90A with the following
4 * properties:
5 * * CTR DRBG with DF with AES-128, AES-192, AES-256 cores
6 * * Hash DRBG with DF with SHA-1, SHA-256, SHA-384, SHA-512 cores
7 * * HMAC DRBG with DF with SHA-1, SHA-256, SHA-384, SHA-512 cores
8 * * with and without prediction resistance
9 *
10 * Copyright Stephan Mueller <smueller@chronox.de>, 2014
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, and the entire permission notice in its entirety,
17 * including the disclaimer of warranties.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. The name of the author may not be used to endorse or promote
22 * products derived from this software without specific prior
23 * written permission.
24 *
25 * ALTERNATIVELY, this product may be distributed under the terms of
26 * the GNU General Public License, in which case the provisions of the GPL are
27 * required INSTEAD OF the above restrictions. (This clause is
28 * necessary due to a potential bad interaction between the GPL and
29 * the restrictions contained in a BSD-style copyright.)
30 *
31 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
32 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
33 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF
34 * WHICH ARE HEREBY DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
35 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
36 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
37 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
38 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
39 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
40 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
41 * USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH
42 * DAMAGE.
43 *
44 * DRBG Usage
45 * ==========
46 * The SP 800-90A DRBG allows the user to specify a personalization string
47 * for initialization as well as an additional information string for each
48 * random number request. The following code fragments show how a caller
49 * uses the kernel crypto API to use the full functionality of the DRBG.
50 *
51 * Usage without any additional data
52 * ---------------------------------
53 * struct crypto_rng *drng;
54 * int err;
55 * char data[DATALEN];
56 *
57 * drng = crypto_alloc_rng(drng_name, 0, 0);
58 * err = crypto_rng_get_bytes(drng, &data, DATALEN);
59 * crypto_free_rng(drng);
60 *
61 *
62 * Usage with personalization string during initialization
63 * -------------------------------------------------------
64 * struct crypto_rng *drng;
65 * int err;
66 * char data[DATALEN];
67 * struct drbg_string pers;
68 * char personalization[11] = "some-string";
69 *
70 * drbg_string_fill(&pers, personalization, strlen(personalization));
71 * drng = crypto_alloc_rng(drng_name, 0, 0);
72 * // The reset completely re-initializes the DRBG with the provided
73 * // personalization string
74 * err = crypto_rng_reset(drng, &personalization, strlen(personalization));
75 * err = crypto_rng_get_bytes(drng, &data, DATALEN);
76 * crypto_free_rng(drng);
77 *
78 *
79 * Usage with additional information string during random number request
80 * ---------------------------------------------------------------------
81 * struct crypto_rng *drng;
82 * int err;
83 * char data[DATALEN];
84 * char addtl_string[11] = "some-string";
85 * string drbg_string addtl;
86 *
87 * drbg_string_fill(&addtl, addtl_string, strlen(addtl_string));
88 * drng = crypto_alloc_rng(drng_name, 0, 0);
89 * // The following call is a wrapper to crypto_rng_get_bytes() and returns
90 * // the same error codes.
91 * err = crypto_drbg_get_bytes_addtl(drng, &data, DATALEN, &addtl);
92 * crypto_free_rng(drng);
93 *
94 *
95 * Usage with personalization and additional information strings
96 * -------------------------------------------------------------
97 * Just mix both scenarios above.
98 */
99
100#include <crypto/drbg.h>
101
Stephan Mueller541af942014-05-31 15:44:17 +0200102/***************************************************************
103 * Backend cipher definitions available to DRBG
104 ***************************************************************/
105
106/*
107 * The order of the DRBG definitions here matter: every DRBG is registered
108 * as stdrng. Each DRBG receives an increasing cra_priority values the later
109 * they are defined in this array (see drbg_fill_array).
110 *
111 * HMAC DRBGs are favored over Hash DRBGs over CTR DRBGs, and
112 * the SHA256 / AES 256 over other ciphers. Thus, the favored
113 * DRBGs are the latest entries in this array.
114 */
115static const struct drbg_core drbg_cores[] = {
116#ifdef CONFIG_CRYPTO_DRBG_CTR
117 {
118 .flags = DRBG_CTR | DRBG_STRENGTH128,
119 .statelen = 32, /* 256 bits as defined in 10.2.1 */
Stephan Mueller541af942014-05-31 15:44:17 +0200120 .blocklen_bytes = 16,
121 .cra_name = "ctr_aes128",
Stephan Mueller04bcbfc2015-03-01 20:39:17 +0100122 .backend_cra_name = "aes",
Stephan Mueller541af942014-05-31 15:44:17 +0200123 }, {
124 .flags = DRBG_CTR | DRBG_STRENGTH192,
125 .statelen = 40, /* 320 bits as defined in 10.2.1 */
Stephan Mueller541af942014-05-31 15:44:17 +0200126 .blocklen_bytes = 16,
127 .cra_name = "ctr_aes192",
Stephan Mueller04bcbfc2015-03-01 20:39:17 +0100128 .backend_cra_name = "aes",
Stephan Mueller541af942014-05-31 15:44:17 +0200129 }, {
130 .flags = DRBG_CTR | DRBG_STRENGTH256,
131 .statelen = 48, /* 384 bits as defined in 10.2.1 */
Stephan Mueller541af942014-05-31 15:44:17 +0200132 .blocklen_bytes = 16,
133 .cra_name = "ctr_aes256",
Stephan Mueller04bcbfc2015-03-01 20:39:17 +0100134 .backend_cra_name = "aes",
Stephan Mueller541af942014-05-31 15:44:17 +0200135 },
136#endif /* CONFIG_CRYPTO_DRBG_CTR */
137#ifdef CONFIG_CRYPTO_DRBG_HASH
138 {
139 .flags = DRBG_HASH | DRBG_STRENGTH128,
140 .statelen = 55, /* 440 bits */
Stephan Mueller541af942014-05-31 15:44:17 +0200141 .blocklen_bytes = 20,
142 .cra_name = "sha1",
143 .backend_cra_name = "sha1",
144 }, {
145 .flags = DRBG_HASH | DRBG_STRENGTH256,
146 .statelen = 111, /* 888 bits */
Stephan Mueller541af942014-05-31 15:44:17 +0200147 .blocklen_bytes = 48,
148 .cra_name = "sha384",
149 .backend_cra_name = "sha384",
150 }, {
151 .flags = DRBG_HASH | DRBG_STRENGTH256,
152 .statelen = 111, /* 888 bits */
Stephan Mueller541af942014-05-31 15:44:17 +0200153 .blocklen_bytes = 64,
154 .cra_name = "sha512",
155 .backend_cra_name = "sha512",
156 }, {
157 .flags = DRBG_HASH | DRBG_STRENGTH256,
158 .statelen = 55, /* 440 bits */
Stephan Mueller541af942014-05-31 15:44:17 +0200159 .blocklen_bytes = 32,
160 .cra_name = "sha256",
161 .backend_cra_name = "sha256",
162 },
163#endif /* CONFIG_CRYPTO_DRBG_HASH */
164#ifdef CONFIG_CRYPTO_DRBG_HMAC
165 {
Stephan Mueller5b635e22014-07-06 02:26:37 +0200166 .flags = DRBG_HMAC | DRBG_STRENGTH128,
Stephan Mueller541af942014-05-31 15:44:17 +0200167 .statelen = 20, /* block length of cipher */
Stephan Mueller541af942014-05-31 15:44:17 +0200168 .blocklen_bytes = 20,
169 .cra_name = "hmac_sha1",
170 .backend_cra_name = "hmac(sha1)",
171 }, {
172 .flags = DRBG_HMAC | DRBG_STRENGTH256,
173 .statelen = 48, /* block length of cipher */
Stephan Mueller541af942014-05-31 15:44:17 +0200174 .blocklen_bytes = 48,
175 .cra_name = "hmac_sha384",
176 .backend_cra_name = "hmac(sha384)",
177 }, {
178 .flags = DRBG_HMAC | DRBG_STRENGTH256,
179 .statelen = 64, /* block length of cipher */
Stephan Mueller541af942014-05-31 15:44:17 +0200180 .blocklen_bytes = 64,
181 .cra_name = "hmac_sha512",
182 .backend_cra_name = "hmac(sha512)",
183 }, {
184 .flags = DRBG_HMAC | DRBG_STRENGTH256,
185 .statelen = 32, /* block length of cipher */
Stephan Mueller541af942014-05-31 15:44:17 +0200186 .blocklen_bytes = 32,
187 .cra_name = "hmac_sha256",
188 .backend_cra_name = "hmac(sha256)",
189 },
190#endif /* CONFIG_CRYPTO_DRBG_HMAC */
191};
192
193/******************************************************************
194 * Generic helper functions
195 ******************************************************************/
196
197/*
198 * Return strength of DRBG according to SP800-90A section 8.4
199 *
200 * @flags DRBG flags reference
201 *
202 * Return: normalized strength in *bytes* value or 32 as default
203 * to counter programming errors
204 */
205static inline unsigned short drbg_sec_strength(drbg_flag_t flags)
206{
207 switch (flags & DRBG_STRENGTH_MASK) {
208 case DRBG_STRENGTH128:
209 return 16;
210 case DRBG_STRENGTH192:
211 return 24;
212 case DRBG_STRENGTH256:
213 return 32;
214 default:
215 return 32;
216 }
217}
218
219/*
220 * FIPS 140-2 continuous self test
221 * The test is performed on the result of one round of the output
222 * function. Thus, the function implicitly knows the size of the
223 * buffer.
224 *
Stephan Mueller541af942014-05-31 15:44:17 +0200225 * @drbg DRBG handle
226 * @buf output buffer of random data to be checked
227 *
228 * return:
229 * true on success
230 * false on error
231 */
232static bool drbg_fips_continuous_test(struct drbg_state *drbg,
233 const unsigned char *buf)
234{
235#ifdef CONFIG_CRYPTO_FIPS
236 int ret = 0;
237 /* skip test if we test the overall system */
238 if (drbg->test_data)
239 return true;
240 /* only perform test in FIPS mode */
241 if (0 == fips_enabled)
242 return true;
243 if (!drbg->fips_primed) {
244 /* Priming of FIPS test */
245 memcpy(drbg->prev, buf, drbg_blocklen(drbg));
246 drbg->fips_primed = true;
247 /* return false due to priming, i.e. another round is needed */
248 return false;
249 }
250 ret = memcmp(drbg->prev, buf, drbg_blocklen(drbg));
Stephan Mueller905b42e2014-12-05 22:40:21 +0100251 if (!ret)
252 panic("DRBG continuous self test failed\n");
Stephan Mueller541af942014-05-31 15:44:17 +0200253 memcpy(drbg->prev, buf, drbg_blocklen(drbg));
254 /* the test shall pass when the two compared values are not equal */
255 return ret != 0;
256#else
257 return true;
258#endif /* CONFIG_CRYPTO_FIPS */
259}
260
261/*
262 * Convert an integer into a byte representation of this integer.
263 * The byte representation is big-endian
264 *
Stephan Mueller541af942014-05-31 15:44:17 +0200265 * @val value to be converted
Stephan Mueller72f3e002014-08-17 17:37:34 +0200266 * @buf buffer holding the converted integer -- caller must ensure that
267 * buffer size is at least 32 bit
Stephan Mueller541af942014-05-31 15:44:17 +0200268 */
269#if (defined(CONFIG_CRYPTO_DRBG_HASH) || defined(CONFIG_CRYPTO_DRBG_CTR))
Stephan Mueller72f3e002014-08-17 17:37:34 +0200270static inline void drbg_cpu_to_be32(__u32 val, unsigned char *buf)
Stephan Mueller541af942014-05-31 15:44:17 +0200271{
Stephan Mueller72f3e002014-08-17 17:37:34 +0200272 struct s {
Stephan Mueller7c8ae032014-08-26 09:32:24 +0200273 __be32 conv;
Stephan Mueller72f3e002014-08-17 17:37:34 +0200274 };
275 struct s *conversion = (struct s *) buf;
Stephan Mueller541af942014-05-31 15:44:17 +0200276
Stephan Mueller72f3e002014-08-17 17:37:34 +0200277 conversion->conv = cpu_to_be32(val);
Stephan Mueller541af942014-05-31 15:44:17 +0200278}
Stephan Mueller541af942014-05-31 15:44:17 +0200279#endif /* defined(CONFIG_CRYPTO_DRBG_HASH) || defined(CONFIG_CRYPTO_DRBG_CTR) */
280
281/******************************************************************
282 * CTR DRBG callback functions
283 ******************************************************************/
284
285#ifdef CONFIG_CRYPTO_DRBG_CTR
Stephan Muellere25e47e2014-07-06 02:23:03 +0200286#define CRYPTO_DRBG_CTR_STRING "CTR "
Stephan Mueller0653a7c2014-11-25 09:28:43 +0100287MODULE_ALIAS_CRYPTO("drbg_pr_ctr_aes256");
288MODULE_ALIAS_CRYPTO("drbg_nopr_ctr_aes256");
289MODULE_ALIAS_CRYPTO("drbg_pr_ctr_aes192");
290MODULE_ALIAS_CRYPTO("drbg_nopr_ctr_aes192");
291MODULE_ALIAS_CRYPTO("drbg_pr_ctr_aes128");
292MODULE_ALIAS_CRYPTO("drbg_nopr_ctr_aes128");
Stephan Mueller62b62b62014-11-04 03:08:09 +0100293
Stephan Mueller541af942014-05-31 15:44:17 +0200294static int drbg_kcapi_sym(struct drbg_state *drbg, const unsigned char *key,
295 unsigned char *outval, const struct drbg_string *in);
296static int drbg_init_sym_kernel(struct drbg_state *drbg);
297static int drbg_fini_sym_kernel(struct drbg_state *drbg);
298
299/* BCC function for CTR DRBG as defined in 10.4.3 */
300static int drbg_ctr_bcc(struct drbg_state *drbg,
301 unsigned char *out, const unsigned char *key,
Stephan Mueller8c987162014-06-28 21:58:24 +0200302 struct list_head *in)
Stephan Mueller541af942014-05-31 15:44:17 +0200303{
Stephan Mueller8c987162014-06-28 21:58:24 +0200304 int ret = 0;
305 struct drbg_string *curr = NULL;
Stephan Mueller541af942014-05-31 15:44:17 +0200306 struct drbg_string data;
Stephan Mueller8c987162014-06-28 21:58:24 +0200307 short cnt = 0;
Stephan Mueller541af942014-05-31 15:44:17 +0200308
309 drbg_string_fill(&data, out, drbg_blocklen(drbg));
310
311 /* 10.4.3 step 1 */
312 memset(out, 0, drbg_blocklen(drbg));
313
314 /* 10.4.3 step 2 / 4 */
Stephan Mueller8c987162014-06-28 21:58:24 +0200315 list_for_each_entry(curr, in, list) {
316 const unsigned char *pos = curr->buf;
317 size_t len = curr->len;
Stephan Mueller541af942014-05-31 15:44:17 +0200318 /* 10.4.3 step 4.1 */
Stephan Mueller8c987162014-06-28 21:58:24 +0200319 while (len) {
320 /* 10.4.3 step 4.2 */
321 if (drbg_blocklen(drbg) == cnt) {
322 cnt = 0;
323 ret = drbg_kcapi_sym(drbg, key, out, &data);
324 if (ret)
325 return ret;
Stephan Mueller541af942014-05-31 15:44:17 +0200326 }
Stephan Mueller8c987162014-06-28 21:58:24 +0200327 out[cnt] ^= *pos;
328 pos++;
329 cnt++;
330 len--;
Stephan Mueller541af942014-05-31 15:44:17 +0200331 }
Stephan Mueller541af942014-05-31 15:44:17 +0200332 }
Stephan Mueller8c987162014-06-28 21:58:24 +0200333 /* 10.4.3 step 4.2 for last block */
334 if (cnt)
335 ret = drbg_kcapi_sym(drbg, key, out, &data);
336
337 return ret;
Stephan Mueller541af942014-05-31 15:44:17 +0200338}
339
340/*
341 * scratchpad usage: drbg_ctr_update is interlinked with drbg_ctr_df
342 * (and drbg_ctr_bcc, but this function does not need any temporary buffers),
343 * the scratchpad is used as follows:
344 * drbg_ctr_update:
345 * temp
346 * start: drbg->scratchpad
347 * length: drbg_statelen(drbg) + drbg_blocklen(drbg)
348 * note: the cipher writing into this variable works
349 * blocklen-wise. Now, when the statelen is not a multiple
350 * of blocklen, the generateion loop below "spills over"
351 * by at most blocklen. Thus, we need to give sufficient
352 * memory.
353 * df_data
354 * start: drbg->scratchpad +
355 * drbg_statelen(drbg) + drbg_blocklen(drbg)
356 * length: drbg_statelen(drbg)
357 *
358 * drbg_ctr_df:
359 * pad
360 * start: df_data + drbg_statelen(drbg)
361 * length: drbg_blocklen(drbg)
362 * iv
363 * start: pad + drbg_blocklen(drbg)
364 * length: drbg_blocklen(drbg)
365 * temp
366 * start: iv + drbg_blocklen(drbg)
Stephan Mueller8fecaad2014-07-01 17:08:48 +0200367 * length: drbg_satelen(drbg) + drbg_blocklen(drbg)
368 * note: temp is the buffer that the BCC function operates
369 * on. BCC operates blockwise. drbg_statelen(drbg)
370 * is sufficient when the DRBG state length is a multiple
371 * of the block size. For AES192 (and maybe other ciphers)
372 * this is not correct and the length for temp is
373 * insufficient (yes, that also means for such ciphers,
374 * the final output of all BCC rounds are truncated).
375 * Therefore, add drbg_blocklen(drbg) to cover all
376 * possibilities.
Stephan Mueller541af942014-05-31 15:44:17 +0200377 */
378
379/* Derivation Function for CTR DRBG as defined in 10.4.2 */
380static int drbg_ctr_df(struct drbg_state *drbg,
381 unsigned char *df_data, size_t bytes_to_return,
Stephan Mueller8c987162014-06-28 21:58:24 +0200382 struct list_head *seedlist)
Stephan Mueller541af942014-05-31 15:44:17 +0200383{
384 int ret = -EFAULT;
385 unsigned char L_N[8];
386 /* S3 is input */
387 struct drbg_string S1, S2, S4, cipherin;
Stephan Mueller8c987162014-06-28 21:58:24 +0200388 LIST_HEAD(bcc_list);
Stephan Mueller541af942014-05-31 15:44:17 +0200389 unsigned char *pad = df_data + drbg_statelen(drbg);
390 unsigned char *iv = pad + drbg_blocklen(drbg);
391 unsigned char *temp = iv + drbg_blocklen(drbg);
392 size_t padlen = 0;
393 unsigned int templen = 0;
394 /* 10.4.2 step 7 */
395 unsigned int i = 0;
396 /* 10.4.2 step 8 */
397 const unsigned char *K = (unsigned char *)
398 "\x00\x01\x02\x03\x04\x05\x06\x07"
399 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
400 "\x10\x11\x12\x13\x14\x15\x16\x17"
401 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f";
402 unsigned char *X;
403 size_t generated_len = 0;
404 size_t inputlen = 0;
Stephan Mueller8c987162014-06-28 21:58:24 +0200405 struct drbg_string *seed = NULL;
Stephan Mueller541af942014-05-31 15:44:17 +0200406
407 memset(pad, 0, drbg_blocklen(drbg));
408 memset(iv, 0, drbg_blocklen(drbg));
409 memset(temp, 0, drbg_statelen(drbg));
410
411 /* 10.4.2 step 1 is implicit as we work byte-wise */
412
413 /* 10.4.2 step 2 */
414 if ((512/8) < bytes_to_return)
415 return -EINVAL;
416
417 /* 10.4.2 step 2 -- calculate the entire length of all input data */
Stephan Mueller8c987162014-06-28 21:58:24 +0200418 list_for_each_entry(seed, seedlist, list)
419 inputlen += seed->len;
Stephan Mueller72f3e002014-08-17 17:37:34 +0200420 drbg_cpu_to_be32(inputlen, &L_N[0]);
Stephan Mueller541af942014-05-31 15:44:17 +0200421
422 /* 10.4.2 step 3 */
Stephan Mueller72f3e002014-08-17 17:37:34 +0200423 drbg_cpu_to_be32(bytes_to_return, &L_N[4]);
Stephan Mueller541af942014-05-31 15:44:17 +0200424
425 /* 10.4.2 step 5: length is L_N, input_string, one byte, padding */
426 padlen = (inputlen + sizeof(L_N) + 1) % (drbg_blocklen(drbg));
427 /* wrap the padlen appropriately */
428 if (padlen)
429 padlen = drbg_blocklen(drbg) - padlen;
430 /*
431 * pad / padlen contains the 0x80 byte and the following zero bytes.
432 * As the calculated padlen value only covers the number of zero
433 * bytes, this value has to be incremented by one for the 0x80 byte.
434 */
435 padlen++;
436 pad[0] = 0x80;
437
438 /* 10.4.2 step 4 -- first fill the linked list and then order it */
439 drbg_string_fill(&S1, iv, drbg_blocklen(drbg));
Stephan Mueller8c987162014-06-28 21:58:24 +0200440 list_add_tail(&S1.list, &bcc_list);
Stephan Mueller541af942014-05-31 15:44:17 +0200441 drbg_string_fill(&S2, L_N, sizeof(L_N));
Stephan Mueller8c987162014-06-28 21:58:24 +0200442 list_add_tail(&S2.list, &bcc_list);
443 list_splice_tail(seedlist, &bcc_list);
Stephan Mueller541af942014-05-31 15:44:17 +0200444 drbg_string_fill(&S4, pad, padlen);
Stephan Mueller8c987162014-06-28 21:58:24 +0200445 list_add_tail(&S4.list, &bcc_list);
Stephan Mueller541af942014-05-31 15:44:17 +0200446
447 /* 10.4.2 step 9 */
448 while (templen < (drbg_keylen(drbg) + (drbg_blocklen(drbg)))) {
449 /*
450 * 10.4.2 step 9.1 - the padding is implicit as the buffer
451 * holds zeros after allocation -- even the increment of i
452 * is irrelevant as the increment remains within length of i
453 */
Stephan Mueller72f3e002014-08-17 17:37:34 +0200454 drbg_cpu_to_be32(i, iv);
Stephan Mueller541af942014-05-31 15:44:17 +0200455 /* 10.4.2 step 9.2 -- BCC and concatenation with temp */
Stephan Mueller8c987162014-06-28 21:58:24 +0200456 ret = drbg_ctr_bcc(drbg, temp + templen, K, &bcc_list);
Stephan Mueller541af942014-05-31 15:44:17 +0200457 if (ret)
458 goto out;
459 /* 10.4.2 step 9.3 */
460 i++;
461 templen += drbg_blocklen(drbg);
462 }
463
464 /* 10.4.2 step 11 */
465 X = temp + (drbg_keylen(drbg));
466 drbg_string_fill(&cipherin, X, drbg_blocklen(drbg));
467
468 /* 10.4.2 step 12: overwriting of outval is implemented in next step */
469
470 /* 10.4.2 step 13 */
471 while (generated_len < bytes_to_return) {
472 short blocklen = 0;
473 /*
474 * 10.4.2 step 13.1: the truncation of the key length is
475 * implicit as the key is only drbg_blocklen in size based on
476 * the implementation of the cipher function callback
477 */
478 ret = drbg_kcapi_sym(drbg, temp, X, &cipherin);
479 if (ret)
480 goto out;
481 blocklen = (drbg_blocklen(drbg) <
482 (bytes_to_return - generated_len)) ?
483 drbg_blocklen(drbg) :
484 (bytes_to_return - generated_len);
485 /* 10.4.2 step 13.2 and 14 */
486 memcpy(df_data + generated_len, X, blocklen);
487 generated_len += blocklen;
488 }
489
490 ret = 0;
491
492out:
Herbert Xu1471f092015-01-05 10:44:09 +1100493 memset(iv, 0, drbg_blocklen(drbg));
494 memset(temp, 0, drbg_statelen(drbg));
495 memset(pad, 0, drbg_blocklen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200496 return ret;
497}
498
Stephan Mueller72e7c252014-07-06 02:24:35 +0200499/*
500 * update function of CTR DRBG as defined in 10.2.1.2
501 *
502 * The reseed variable has an enhanced meaning compared to the update
503 * functions of the other DRBGs as follows:
504 * 0 => initial seed from initialization
505 * 1 => reseed via drbg_seed
506 * 2 => first invocation from drbg_ctr_update when addtl is present. In
507 * this case, the df_data scratchpad is not deleted so that it is
508 * available for another calls to prevent calling the DF function
509 * again.
510 * 3 => second invocation from drbg_ctr_update. When the update function
511 * was called with addtl, the df_data memory already contains the
512 * DFed addtl information and we do not need to call DF again.
513 */
Stephan Mueller8c987162014-06-28 21:58:24 +0200514static int drbg_ctr_update(struct drbg_state *drbg, struct list_head *seed,
515 int reseed)
Stephan Mueller541af942014-05-31 15:44:17 +0200516{
517 int ret = -EFAULT;
518 /* 10.2.1.2 step 1 */
519 unsigned char *temp = drbg->scratchpad;
520 unsigned char *df_data = drbg->scratchpad + drbg_statelen(drbg) +
521 drbg_blocklen(drbg);
522 unsigned char *temp_p, *df_data_p; /* pointer to iterate over buffers */
523 unsigned int len = 0;
524 struct drbg_string cipherin;
Stephan Mueller541af942014-05-31 15:44:17 +0200525
526 memset(temp, 0, drbg_statelen(drbg) + drbg_blocklen(drbg));
Stephan Mueller72e7c252014-07-06 02:24:35 +0200527 if (3 > reseed)
528 memset(df_data, 0, drbg_statelen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200529
530 /* 10.2.1.3.2 step 2 and 10.2.1.4.2 step 2 */
Stephan Mueller8c987162014-06-28 21:58:24 +0200531 if (seed) {
532 ret = drbg_ctr_df(drbg, df_data, drbg_statelen(drbg), seed);
Stephan Mueller541af942014-05-31 15:44:17 +0200533 if (ret)
534 goto out;
535 }
536
537 drbg_string_fill(&cipherin, drbg->V, drbg_blocklen(drbg));
538 /*
539 * 10.2.1.3.2 steps 2 and 3 are already covered as the allocation
540 * zeroizes all memory during initialization
541 */
542 while (len < (drbg_statelen(drbg))) {
543 /* 10.2.1.2 step 2.1 */
Stephan Mueller41a84982014-10-14 21:50:13 +0200544 crypto_inc(drbg->V, drbg_blocklen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200545 /*
546 * 10.2.1.2 step 2.2 */
547 ret = drbg_kcapi_sym(drbg, drbg->C, temp + len, &cipherin);
548 if (ret)
549 goto out;
550 /* 10.2.1.2 step 2.3 and 3 */
551 len += drbg_blocklen(drbg);
552 }
553
554 /* 10.2.1.2 step 4 */
555 temp_p = temp;
556 df_data_p = df_data;
557 for (len = 0; len < drbg_statelen(drbg); len++) {
558 *temp_p ^= *df_data_p;
559 df_data_p++; temp_p++;
560 }
561
562 /* 10.2.1.2 step 5 */
563 memcpy(drbg->C, temp, drbg_keylen(drbg));
564 /* 10.2.1.2 step 6 */
565 memcpy(drbg->V, temp + drbg_keylen(drbg), drbg_blocklen(drbg));
566 ret = 0;
567
568out:
Herbert Xu1471f092015-01-05 10:44:09 +1100569 memset(temp, 0, drbg_statelen(drbg) + drbg_blocklen(drbg));
Stephan Mueller72e7c252014-07-06 02:24:35 +0200570 if (2 != reseed)
Herbert Xu1471f092015-01-05 10:44:09 +1100571 memset(df_data, 0, drbg_statelen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200572 return ret;
573}
574
575/*
576 * scratchpad use: drbg_ctr_update is called independently from
577 * drbg_ctr_extract_bytes. Therefore, the scratchpad is reused
578 */
579/* Generate function of CTR DRBG as defined in 10.2.1.5.2 */
580static int drbg_ctr_generate(struct drbg_state *drbg,
581 unsigned char *buf, unsigned int buflen,
Stephan Mueller27e4de22014-07-06 02:25:36 +0200582 struct list_head *addtl)
Stephan Mueller541af942014-05-31 15:44:17 +0200583{
584 int len = 0;
585 int ret = 0;
586 struct drbg_string data;
Stephan Mueller541af942014-05-31 15:44:17 +0200587
588 memset(drbg->scratchpad, 0, drbg_blocklen(drbg));
589
590 /* 10.2.1.5.2 step 2 */
Stephan Mueller27e4de22014-07-06 02:25:36 +0200591 if (addtl && !list_empty(addtl)) {
592 ret = drbg_ctr_update(drbg, addtl, 2);
Stephan Mueller541af942014-05-31 15:44:17 +0200593 if (ret)
594 return 0;
595 }
596
597 /* 10.2.1.5.2 step 4.1 */
Stephan Mueller41a84982014-10-14 21:50:13 +0200598 crypto_inc(drbg->V, drbg_blocklen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200599 drbg_string_fill(&data, drbg->V, drbg_blocklen(drbg));
600 while (len < buflen) {
601 int outlen = 0;
602 /* 10.2.1.5.2 step 4.2 */
603 ret = drbg_kcapi_sym(drbg, drbg->C, drbg->scratchpad, &data);
604 if (ret) {
605 len = ret;
606 goto out;
607 }
608 outlen = (drbg_blocklen(drbg) < (buflen - len)) ?
609 drbg_blocklen(drbg) : (buflen - len);
610 if (!drbg_fips_continuous_test(drbg, drbg->scratchpad)) {
611 /* 10.2.1.5.2 step 6 */
Stephan Mueller41a84982014-10-14 21:50:13 +0200612 crypto_inc(drbg->V, drbg_blocklen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200613 continue;
614 }
615 /* 10.2.1.5.2 step 4.3 */
616 memcpy(buf + len, drbg->scratchpad, outlen);
617 len += outlen;
618 /* 10.2.1.5.2 step 6 */
619 if (len < buflen)
Stephan Mueller41a84982014-10-14 21:50:13 +0200620 crypto_inc(drbg->V, drbg_blocklen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200621 }
622
Stephan Mueller72e7c252014-07-06 02:24:35 +0200623 /* 10.2.1.5.2 step 6 */
624 ret = drbg_ctr_update(drbg, NULL, 3);
Stephan Mueller541af942014-05-31 15:44:17 +0200625 if (ret)
626 len = ret;
627
628out:
Herbert Xu1471f092015-01-05 10:44:09 +1100629 memset(drbg->scratchpad, 0, drbg_blocklen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200630 return len;
631}
632
633static struct drbg_state_ops drbg_ctr_ops = {
634 .update = drbg_ctr_update,
635 .generate = drbg_ctr_generate,
636 .crypto_init = drbg_init_sym_kernel,
637 .crypto_fini = drbg_fini_sym_kernel,
638};
639#endif /* CONFIG_CRYPTO_DRBG_CTR */
640
641/******************************************************************
642 * HMAC DRBG callback functions
643 ******************************************************************/
644
645#if defined(CONFIG_CRYPTO_DRBG_HASH) || defined(CONFIG_CRYPTO_DRBG_HMAC)
646static int drbg_kcapi_hash(struct drbg_state *drbg, const unsigned char *key,
Stephan Mueller8c987162014-06-28 21:58:24 +0200647 unsigned char *outval, const struct list_head *in);
Stephan Mueller541af942014-05-31 15:44:17 +0200648static int drbg_init_hash_kernel(struct drbg_state *drbg);
649static int drbg_fini_hash_kernel(struct drbg_state *drbg);
650#endif /* (CONFIG_CRYPTO_DRBG_HASH || CONFIG_CRYPTO_DRBG_HMAC) */
651
652#ifdef CONFIG_CRYPTO_DRBG_HMAC
Stephan Muellere25e47e2014-07-06 02:23:03 +0200653#define CRYPTO_DRBG_HMAC_STRING "HMAC "
Stephan Mueller0653a7c2014-11-25 09:28:43 +0100654MODULE_ALIAS_CRYPTO("drbg_pr_hmac_sha512");
655MODULE_ALIAS_CRYPTO("drbg_nopr_hmac_sha512");
656MODULE_ALIAS_CRYPTO("drbg_pr_hmac_sha384");
657MODULE_ALIAS_CRYPTO("drbg_nopr_hmac_sha384");
658MODULE_ALIAS_CRYPTO("drbg_pr_hmac_sha256");
659MODULE_ALIAS_CRYPTO("drbg_nopr_hmac_sha256");
660MODULE_ALIAS_CRYPTO("drbg_pr_hmac_sha1");
661MODULE_ALIAS_CRYPTO("drbg_nopr_hmac_sha1");
Stephan Mueller62b62b62014-11-04 03:08:09 +0100662
Stephan Mueller541af942014-05-31 15:44:17 +0200663/* update function of HMAC DRBG as defined in 10.1.2.2 */
Stephan Mueller8c987162014-06-28 21:58:24 +0200664static int drbg_hmac_update(struct drbg_state *drbg, struct list_head *seed,
665 int reseed)
Stephan Mueller541af942014-05-31 15:44:17 +0200666{
667 int ret = -EFAULT;
668 int i = 0;
Stephan Mueller8c987162014-06-28 21:58:24 +0200669 struct drbg_string seed1, seed2, vdata;
670 LIST_HEAD(seedlist);
671 LIST_HEAD(vdatalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200672
Stephan Muellerf072f0e2014-08-17 17:38:58 +0200673 if (!reseed)
674 /* 10.1.2.3 step 2 -- memset(0) of C is implicit with kzalloc */
Stephan Mueller541af942014-05-31 15:44:17 +0200675 memset(drbg->V, 1, drbg_statelen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200676
677 drbg_string_fill(&seed1, drbg->V, drbg_statelen(drbg));
Stephan Mueller8c987162014-06-28 21:58:24 +0200678 list_add_tail(&seed1.list, &seedlist);
Stephan Mueller541af942014-05-31 15:44:17 +0200679 /* buffer of seed2 will be filled in for loop below with one byte */
680 drbg_string_fill(&seed2, NULL, 1);
Stephan Mueller8c987162014-06-28 21:58:24 +0200681 list_add_tail(&seed2.list, &seedlist);
Stephan Mueller541af942014-05-31 15:44:17 +0200682 /* input data of seed is allowed to be NULL at this point */
Stephan Mueller8c987162014-06-28 21:58:24 +0200683 if (seed)
684 list_splice_tail(seed, &seedlist);
Stephan Mueller541af942014-05-31 15:44:17 +0200685
Stephan Mueller8c987162014-06-28 21:58:24 +0200686 drbg_string_fill(&vdata, drbg->V, drbg_statelen(drbg));
687 list_add_tail(&vdata.list, &vdatalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200688 for (i = 2; 0 < i; i--) {
689 /* first round uses 0x0, second 0x1 */
690 unsigned char prefix = DRBG_PREFIX0;
691 if (1 == i)
692 prefix = DRBG_PREFIX1;
693 /* 10.1.2.2 step 1 and 4 -- concatenation and HMAC for key */
694 seed2.buf = &prefix;
Stephan Mueller8c987162014-06-28 21:58:24 +0200695 ret = drbg_kcapi_hash(drbg, drbg->C, drbg->C, &seedlist);
Stephan Mueller541af942014-05-31 15:44:17 +0200696 if (ret)
697 return ret;
698
699 /* 10.1.2.2 step 2 and 5 -- HMAC for V */
Stephan Mueller8c987162014-06-28 21:58:24 +0200700 ret = drbg_kcapi_hash(drbg, drbg->C, drbg->V, &vdatalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200701 if (ret)
702 return ret;
703
704 /* 10.1.2.2 step 3 */
Stephan Mueller8c987162014-06-28 21:58:24 +0200705 if (!seed)
Stephan Mueller541af942014-05-31 15:44:17 +0200706 return ret;
707 }
708
709 return 0;
710}
711
712/* generate function of HMAC DRBG as defined in 10.1.2.5 */
713static int drbg_hmac_generate(struct drbg_state *drbg,
714 unsigned char *buf,
715 unsigned int buflen,
Stephan Mueller27e4de22014-07-06 02:25:36 +0200716 struct list_head *addtl)
Stephan Mueller541af942014-05-31 15:44:17 +0200717{
718 int len = 0;
719 int ret = 0;
720 struct drbg_string data;
Stephan Mueller8c987162014-06-28 21:58:24 +0200721 LIST_HEAD(datalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200722
723 /* 10.1.2.5 step 2 */
Stephan Mueller27e4de22014-07-06 02:25:36 +0200724 if (addtl && !list_empty(addtl)) {
725 ret = drbg_hmac_update(drbg, addtl, 1);
Stephan Mueller541af942014-05-31 15:44:17 +0200726 if (ret)
727 return ret;
728 }
729
730 drbg_string_fill(&data, drbg->V, drbg_statelen(drbg));
Stephan Mueller8c987162014-06-28 21:58:24 +0200731 list_add_tail(&data.list, &datalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200732 while (len < buflen) {
733 unsigned int outlen = 0;
734 /* 10.1.2.5 step 4.1 */
Stephan Mueller8c987162014-06-28 21:58:24 +0200735 ret = drbg_kcapi_hash(drbg, drbg->C, drbg->V, &datalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200736 if (ret)
737 return ret;
738 outlen = (drbg_blocklen(drbg) < (buflen - len)) ?
739 drbg_blocklen(drbg) : (buflen - len);
740 if (!drbg_fips_continuous_test(drbg, drbg->V))
741 continue;
742
743 /* 10.1.2.5 step 4.2 */
744 memcpy(buf + len, drbg->V, outlen);
745 len += outlen;
746 }
747
748 /* 10.1.2.5 step 6 */
Stephan Mueller27e4de22014-07-06 02:25:36 +0200749 if (addtl && !list_empty(addtl))
750 ret = drbg_hmac_update(drbg, addtl, 1);
751 else
Stephan Mueller8c987162014-06-28 21:58:24 +0200752 ret = drbg_hmac_update(drbg, NULL, 1);
Stephan Mueller541af942014-05-31 15:44:17 +0200753 if (ret)
754 return ret;
755
756 return len;
757}
758
759static struct drbg_state_ops drbg_hmac_ops = {
760 .update = drbg_hmac_update,
761 .generate = drbg_hmac_generate,
762 .crypto_init = drbg_init_hash_kernel,
763 .crypto_fini = drbg_fini_hash_kernel,
764
765};
766#endif /* CONFIG_CRYPTO_DRBG_HMAC */
767
768/******************************************************************
769 * Hash DRBG callback functions
770 ******************************************************************/
771
772#ifdef CONFIG_CRYPTO_DRBG_HASH
Stephan Muellere25e47e2014-07-06 02:23:03 +0200773#define CRYPTO_DRBG_HASH_STRING "HASH "
Stephan Mueller0653a7c2014-11-25 09:28:43 +0100774MODULE_ALIAS_CRYPTO("drbg_pr_sha512");
775MODULE_ALIAS_CRYPTO("drbg_nopr_sha512");
776MODULE_ALIAS_CRYPTO("drbg_pr_sha384");
777MODULE_ALIAS_CRYPTO("drbg_nopr_sha384");
778MODULE_ALIAS_CRYPTO("drbg_pr_sha256");
779MODULE_ALIAS_CRYPTO("drbg_nopr_sha256");
780MODULE_ALIAS_CRYPTO("drbg_pr_sha1");
781MODULE_ALIAS_CRYPTO("drbg_nopr_sha1");
Stephan Mueller62b62b62014-11-04 03:08:09 +0100782
Stephan Mueller541af942014-05-31 15:44:17 +0200783/*
Stephan Mueller41a84982014-10-14 21:50:13 +0200784 * Increment buffer
785 *
786 * @dst buffer to increment
787 * @add value to add
788 */
789static inline void drbg_add_buf(unsigned char *dst, size_t dstlen,
790 const unsigned char *add, size_t addlen)
791{
792 /* implied: dstlen > addlen */
793 unsigned char *dstptr;
794 const unsigned char *addptr;
795 unsigned int remainder = 0;
796 size_t len = addlen;
797
798 dstptr = dst + (dstlen-1);
799 addptr = add + (addlen-1);
800 while (len) {
801 remainder += *dstptr + *addptr;
802 *dstptr = remainder & 0xff;
803 remainder >>= 8;
804 len--; dstptr--; addptr--;
805 }
806 len = dstlen - addlen;
807 while (len && remainder > 0) {
808 remainder = *dstptr + 1;
809 *dstptr = remainder & 0xff;
810 remainder >>= 8;
811 len--; dstptr--;
812 }
813}
814
815/*
Stephan Mueller541af942014-05-31 15:44:17 +0200816 * scratchpad usage: as drbg_hash_update and drbg_hash_df are used
817 * interlinked, the scratchpad is used as follows:
818 * drbg_hash_update
819 * start: drbg->scratchpad
820 * length: drbg_statelen(drbg)
821 * drbg_hash_df:
822 * start: drbg->scratchpad + drbg_statelen(drbg)
823 * length: drbg_blocklen(drbg)
824 *
825 * drbg_hash_process_addtl uses the scratchpad, but fully completes
826 * before either of the functions mentioned before are invoked. Therefore,
827 * drbg_hash_process_addtl does not need to be specifically considered.
828 */
829
830/* Derivation Function for Hash DRBG as defined in 10.4.1 */
831static int drbg_hash_df(struct drbg_state *drbg,
832 unsigned char *outval, size_t outlen,
Stephan Mueller8c987162014-06-28 21:58:24 +0200833 struct list_head *entropylist)
Stephan Mueller541af942014-05-31 15:44:17 +0200834{
835 int ret = 0;
836 size_t len = 0;
837 unsigned char input[5];
838 unsigned char *tmp = drbg->scratchpad + drbg_statelen(drbg);
Stephan Mueller8c987162014-06-28 21:58:24 +0200839 struct drbg_string data;
Stephan Mueller541af942014-05-31 15:44:17 +0200840
841 memset(tmp, 0, drbg_blocklen(drbg));
842
843 /* 10.4.1 step 3 */
844 input[0] = 1;
Stephan Mueller72f3e002014-08-17 17:37:34 +0200845 drbg_cpu_to_be32((outlen * 8), &input[1]);
Stephan Mueller541af942014-05-31 15:44:17 +0200846
847 /* 10.4.1 step 4.1 -- concatenation of data for input into hash */
Stephan Mueller8c987162014-06-28 21:58:24 +0200848 drbg_string_fill(&data, input, 5);
849 list_add(&data.list, entropylist);
Stephan Mueller541af942014-05-31 15:44:17 +0200850
851 /* 10.4.1 step 4 */
852 while (len < outlen) {
853 short blocklen = 0;
854 /* 10.4.1 step 4.1 */
Stephan Mueller8c987162014-06-28 21:58:24 +0200855 ret = drbg_kcapi_hash(drbg, NULL, tmp, entropylist);
Stephan Mueller541af942014-05-31 15:44:17 +0200856 if (ret)
857 goto out;
858 /* 10.4.1 step 4.2 */
859 input[0]++;
860 blocklen = (drbg_blocklen(drbg) < (outlen - len)) ?
861 drbg_blocklen(drbg) : (outlen - len);
862 memcpy(outval + len, tmp, blocklen);
863 len += blocklen;
864 }
865
866out:
Herbert Xu1471f092015-01-05 10:44:09 +1100867 memset(tmp, 0, drbg_blocklen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200868 return ret;
869}
870
871/* update function for Hash DRBG as defined in 10.1.1.2 / 10.1.1.3 */
Stephan Mueller8c987162014-06-28 21:58:24 +0200872static int drbg_hash_update(struct drbg_state *drbg, struct list_head *seed,
Stephan Mueller541af942014-05-31 15:44:17 +0200873 int reseed)
874{
875 int ret = 0;
876 struct drbg_string data1, data2;
Stephan Mueller8c987162014-06-28 21:58:24 +0200877 LIST_HEAD(datalist);
878 LIST_HEAD(datalist2);
Stephan Mueller541af942014-05-31 15:44:17 +0200879 unsigned char *V = drbg->scratchpad;
880 unsigned char prefix = DRBG_PREFIX1;
881
882 memset(drbg->scratchpad, 0, drbg_statelen(drbg));
883 if (!seed)
884 return -EINVAL;
885
886 if (reseed) {
887 /* 10.1.1.3 step 1 */
888 memcpy(V, drbg->V, drbg_statelen(drbg));
889 drbg_string_fill(&data1, &prefix, 1);
Stephan Mueller8c987162014-06-28 21:58:24 +0200890 list_add_tail(&data1.list, &datalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200891 drbg_string_fill(&data2, V, drbg_statelen(drbg));
Stephan Mueller8c987162014-06-28 21:58:24 +0200892 list_add_tail(&data2.list, &datalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200893 }
Stephan Mueller8c987162014-06-28 21:58:24 +0200894 list_splice_tail(seed, &datalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200895
896 /* 10.1.1.2 / 10.1.1.3 step 2 and 3 */
Stephan Mueller8c987162014-06-28 21:58:24 +0200897 ret = drbg_hash_df(drbg, drbg->V, drbg_statelen(drbg), &datalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200898 if (ret)
899 goto out;
900
901 /* 10.1.1.2 / 10.1.1.3 step 4 */
902 prefix = DRBG_PREFIX0;
903 drbg_string_fill(&data1, &prefix, 1);
Stephan Mueller8c987162014-06-28 21:58:24 +0200904 list_add_tail(&data1.list, &datalist2);
Stephan Mueller541af942014-05-31 15:44:17 +0200905 drbg_string_fill(&data2, drbg->V, drbg_statelen(drbg));
Stephan Mueller8c987162014-06-28 21:58:24 +0200906 list_add_tail(&data2.list, &datalist2);
Stephan Mueller541af942014-05-31 15:44:17 +0200907 /* 10.1.1.2 / 10.1.1.3 step 4 */
Stephan Mueller8c987162014-06-28 21:58:24 +0200908 ret = drbg_hash_df(drbg, drbg->C, drbg_statelen(drbg), &datalist2);
Stephan Mueller541af942014-05-31 15:44:17 +0200909
910out:
Herbert Xu1471f092015-01-05 10:44:09 +1100911 memset(drbg->scratchpad, 0, drbg_statelen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200912 return ret;
913}
914
915/* processing of additional information string for Hash DRBG */
916static int drbg_hash_process_addtl(struct drbg_state *drbg,
Stephan Mueller27e4de22014-07-06 02:25:36 +0200917 struct list_head *addtl)
Stephan Mueller541af942014-05-31 15:44:17 +0200918{
919 int ret = 0;
920 struct drbg_string data1, data2;
Stephan Mueller8c987162014-06-28 21:58:24 +0200921 LIST_HEAD(datalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200922 unsigned char prefix = DRBG_PREFIX2;
923
924 /* this is value w as per documentation */
925 memset(drbg->scratchpad, 0, drbg_blocklen(drbg));
926
927 /* 10.1.1.4 step 2 */
Stephan Mueller27e4de22014-07-06 02:25:36 +0200928 if (!addtl || list_empty(addtl))
Stephan Mueller541af942014-05-31 15:44:17 +0200929 return 0;
930
931 /* 10.1.1.4 step 2a */
932 drbg_string_fill(&data1, &prefix, 1);
933 drbg_string_fill(&data2, drbg->V, drbg_statelen(drbg));
Stephan Mueller8c987162014-06-28 21:58:24 +0200934 list_add_tail(&data1.list, &datalist);
935 list_add_tail(&data2.list, &datalist);
Stephan Mueller27e4de22014-07-06 02:25:36 +0200936 list_splice_tail(addtl, &datalist);
Stephan Mueller8c987162014-06-28 21:58:24 +0200937 ret = drbg_kcapi_hash(drbg, NULL, drbg->scratchpad, &datalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200938 if (ret)
939 goto out;
940
941 /* 10.1.1.4 step 2b */
942 drbg_add_buf(drbg->V, drbg_statelen(drbg),
943 drbg->scratchpad, drbg_blocklen(drbg));
944
945out:
Herbert Xu1471f092015-01-05 10:44:09 +1100946 memset(drbg->scratchpad, 0, drbg_blocklen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200947 return ret;
948}
949
950/* Hashgen defined in 10.1.1.4 */
951static int drbg_hash_hashgen(struct drbg_state *drbg,
952 unsigned char *buf,
953 unsigned int buflen)
954{
955 int len = 0;
956 int ret = 0;
957 unsigned char *src = drbg->scratchpad;
958 unsigned char *dst = drbg->scratchpad + drbg_statelen(drbg);
959 struct drbg_string data;
Stephan Mueller8c987162014-06-28 21:58:24 +0200960 LIST_HEAD(datalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200961
962 memset(src, 0, drbg_statelen(drbg));
963 memset(dst, 0, drbg_blocklen(drbg));
964
965 /* 10.1.1.4 step hashgen 2 */
966 memcpy(src, drbg->V, drbg_statelen(drbg));
967
968 drbg_string_fill(&data, src, drbg_statelen(drbg));
Stephan Mueller8c987162014-06-28 21:58:24 +0200969 list_add_tail(&data.list, &datalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200970 while (len < buflen) {
971 unsigned int outlen = 0;
972 /* 10.1.1.4 step hashgen 4.1 */
Stephan Mueller8c987162014-06-28 21:58:24 +0200973 ret = drbg_kcapi_hash(drbg, NULL, dst, &datalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200974 if (ret) {
975 len = ret;
976 goto out;
977 }
978 outlen = (drbg_blocklen(drbg) < (buflen - len)) ?
979 drbg_blocklen(drbg) : (buflen - len);
980 if (!drbg_fips_continuous_test(drbg, dst)) {
Stephan Mueller41a84982014-10-14 21:50:13 +0200981 crypto_inc(src, drbg_statelen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200982 continue;
983 }
984 /* 10.1.1.4 step hashgen 4.2 */
985 memcpy(buf + len, dst, outlen);
986 len += outlen;
987 /* 10.1.1.4 hashgen step 4.3 */
988 if (len < buflen)
Stephan Mueller41a84982014-10-14 21:50:13 +0200989 crypto_inc(src, drbg_statelen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200990 }
991
992out:
Herbert Xu1471f092015-01-05 10:44:09 +1100993 memset(drbg->scratchpad, 0,
Stephan Mueller541af942014-05-31 15:44:17 +0200994 (drbg_statelen(drbg) + drbg_blocklen(drbg)));
995 return len;
996}
997
998/* generate function for Hash DRBG as defined in 10.1.1.4 */
999static int drbg_hash_generate(struct drbg_state *drbg,
1000 unsigned char *buf, unsigned int buflen,
Stephan Mueller27e4de22014-07-06 02:25:36 +02001001 struct list_head *addtl)
Stephan Mueller541af942014-05-31 15:44:17 +02001002{
1003 int len = 0;
1004 int ret = 0;
Stephan Mueller72f3e002014-08-17 17:37:34 +02001005 union {
1006 unsigned char req[8];
Stephan Mueller7c8ae032014-08-26 09:32:24 +02001007 __be64 req_int;
Stephan Mueller72f3e002014-08-17 17:37:34 +02001008 } u;
Stephan Mueller541af942014-05-31 15:44:17 +02001009 unsigned char prefix = DRBG_PREFIX3;
1010 struct drbg_string data1, data2;
Stephan Mueller8c987162014-06-28 21:58:24 +02001011 LIST_HEAD(datalist);
Stephan Mueller541af942014-05-31 15:44:17 +02001012
1013 /* 10.1.1.4 step 2 */
1014 ret = drbg_hash_process_addtl(drbg, addtl);
1015 if (ret)
1016 return ret;
1017 /* 10.1.1.4 step 3 */
1018 len = drbg_hash_hashgen(drbg, buf, buflen);
1019
1020 /* this is the value H as documented in 10.1.1.4 */
1021 memset(drbg->scratchpad, 0, drbg_blocklen(drbg));
1022 /* 10.1.1.4 step 4 */
1023 drbg_string_fill(&data1, &prefix, 1);
Stephan Mueller8c987162014-06-28 21:58:24 +02001024 list_add_tail(&data1.list, &datalist);
Stephan Mueller541af942014-05-31 15:44:17 +02001025 drbg_string_fill(&data2, drbg->V, drbg_statelen(drbg));
Stephan Mueller8c987162014-06-28 21:58:24 +02001026 list_add_tail(&data2.list, &datalist);
1027 ret = drbg_kcapi_hash(drbg, NULL, drbg->scratchpad, &datalist);
Stephan Mueller541af942014-05-31 15:44:17 +02001028 if (ret) {
1029 len = ret;
1030 goto out;
1031 }
1032
1033 /* 10.1.1.4 step 5 */
1034 drbg_add_buf(drbg->V, drbg_statelen(drbg),
1035 drbg->scratchpad, drbg_blocklen(drbg));
1036 drbg_add_buf(drbg->V, drbg_statelen(drbg),
1037 drbg->C, drbg_statelen(drbg));
Stephan Mueller72f3e002014-08-17 17:37:34 +02001038 u.req_int = cpu_to_be64(drbg->reseed_ctr);
1039 drbg_add_buf(drbg->V, drbg_statelen(drbg), u.req, 8);
Stephan Mueller541af942014-05-31 15:44:17 +02001040
1041out:
Herbert Xu1471f092015-01-05 10:44:09 +11001042 memset(drbg->scratchpad, 0, drbg_blocklen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +02001043 return len;
1044}
1045
1046/*
1047 * scratchpad usage: as update and generate are used isolated, both
1048 * can use the scratchpad
1049 */
1050static struct drbg_state_ops drbg_hash_ops = {
1051 .update = drbg_hash_update,
1052 .generate = drbg_hash_generate,
1053 .crypto_init = drbg_init_hash_kernel,
1054 .crypto_fini = drbg_fini_hash_kernel,
1055};
1056#endif /* CONFIG_CRYPTO_DRBG_HASH */
1057
1058/******************************************************************
1059 * Functions common for DRBG implementations
1060 ******************************************************************/
1061
1062/*
1063 * Seeding or reseeding of the DRBG
1064 *
1065 * @drbg: DRBG state struct
1066 * @pers: personalization / additional information buffer
1067 * @reseed: 0 for initial seed process, 1 for reseeding
1068 *
1069 * return:
1070 * 0 on success
1071 * error value otherwise
1072 */
1073static int drbg_seed(struct drbg_state *drbg, struct drbg_string *pers,
1074 bool reseed)
1075{
1076 int ret = 0;
1077 unsigned char *entropy = NULL;
1078 size_t entropylen = 0;
1079 struct drbg_string data1;
Stephan Mueller8c987162014-06-28 21:58:24 +02001080 LIST_HEAD(seedlist);
Stephan Mueller541af942014-05-31 15:44:17 +02001081
1082 /* 9.1 / 9.2 / 9.3.1 step 3 */
1083 if (pers && pers->len > (drbg_max_addtl(drbg))) {
Stephan Muellera9089572014-07-06 02:24:03 +02001084 pr_devel("DRBG: personalization string too long %zu\n",
Stephan Mueller541af942014-05-31 15:44:17 +02001085 pers->len);
1086 return -EINVAL;
1087 }
1088
1089 if (drbg->test_data && drbg->test_data->testentropy) {
1090 drbg_string_fill(&data1, drbg->test_data->testentropy->buf,
1091 drbg->test_data->testentropy->len);
1092 pr_devel("DRBG: using test entropy\n");
1093 } else {
1094 /*
1095 * Gather entropy equal to the security strength of the DRBG.
1096 * With a derivation function, a nonce is required in addition
1097 * to the entropy. A nonce must be at least 1/2 of the security
1098 * strength of the DRBG in size. Thus, entropy * nonce is 3/2
1099 * of the strength. The consideration of a nonce is only
1100 * applicable during initial seeding.
1101 */
1102 entropylen = drbg_sec_strength(drbg->core->flags);
1103 if (!entropylen)
1104 return -EFAULT;
1105 if (!reseed)
1106 entropylen = ((entropylen + 1) / 2) * 3;
1107 pr_devel("DRBG: (re)seeding with %zu bytes of entropy\n",
1108 entropylen);
1109 entropy = kzalloc(entropylen, GFP_KERNEL);
1110 if (!entropy)
1111 return -ENOMEM;
1112 get_random_bytes(entropy, entropylen);
1113 drbg_string_fill(&data1, entropy, entropylen);
1114 }
Stephan Mueller8c987162014-06-28 21:58:24 +02001115 list_add_tail(&data1.list, &seedlist);
Stephan Mueller541af942014-05-31 15:44:17 +02001116
1117 /*
1118 * concatenation of entropy with personalization str / addtl input)
1119 * the variable pers is directly handed in by the caller, so check its
1120 * contents whether it is appropriate
1121 */
Stephan Mueller8c987162014-06-28 21:58:24 +02001122 if (pers && pers->buf && 0 < pers->len) {
1123 list_add_tail(&pers->list, &seedlist);
Stephan Mueller541af942014-05-31 15:44:17 +02001124 pr_devel("DRBG: using personalization string\n");
1125 }
1126
Stephan Muellere6c02442014-08-17 17:39:31 +02001127 if (!reseed) {
1128 memset(drbg->V, 0, drbg_statelen(drbg));
1129 memset(drbg->C, 0, drbg_statelen(drbg));
1130 }
1131
Stephan Mueller8c987162014-06-28 21:58:24 +02001132 ret = drbg->d_ops->update(drbg, &seedlist, reseed);
Stephan Mueller541af942014-05-31 15:44:17 +02001133 if (ret)
1134 goto out;
1135
1136 drbg->seeded = true;
1137 /* 10.1.1.2 / 10.1.1.3 step 5 */
1138 drbg->reseed_ctr = 1;
1139
1140out:
Stephan Mueller46f64f62014-08-17 17:37:59 +02001141 kzfree(entropy);
Stephan Mueller541af942014-05-31 15:44:17 +02001142 return ret;
1143}
1144
1145/* Free all substructures in a DRBG state without the DRBG state structure */
1146static inline void drbg_dealloc_state(struct drbg_state *drbg)
1147{
1148 if (!drbg)
1149 return;
Stephan Mueller46f64f62014-08-17 17:37:59 +02001150 kzfree(drbg->V);
Stephan Mueller541af942014-05-31 15:44:17 +02001151 drbg->V = NULL;
Stephan Mueller46f64f62014-08-17 17:37:59 +02001152 kzfree(drbg->C);
Stephan Mueller541af942014-05-31 15:44:17 +02001153 drbg->C = NULL;
Stephan Mueller46f64f62014-08-17 17:37:59 +02001154 kzfree(drbg->scratchpad);
Stephan Mueller541af942014-05-31 15:44:17 +02001155 drbg->scratchpad = NULL;
1156 drbg->reseed_ctr = 0;
1157#ifdef CONFIG_CRYPTO_FIPS
Stephan Mueller46f64f62014-08-17 17:37:59 +02001158 kzfree(drbg->prev);
Stephan Mueller541af942014-05-31 15:44:17 +02001159 drbg->prev = NULL;
1160 drbg->fips_primed = false;
1161#endif
1162}
1163
1164/*
1165 * Allocate all sub-structures for a DRBG state.
1166 * The DRBG state structure must already be allocated.
1167 */
1168static inline int drbg_alloc_state(struct drbg_state *drbg)
1169{
1170 int ret = -ENOMEM;
1171 unsigned int sb_size = 0;
1172
Stephan Muellere6c02442014-08-17 17:39:31 +02001173 drbg->V = kmalloc(drbg_statelen(drbg), GFP_KERNEL);
Stephan Mueller541af942014-05-31 15:44:17 +02001174 if (!drbg->V)
1175 goto err;
Stephan Muellere6c02442014-08-17 17:39:31 +02001176 drbg->C = kmalloc(drbg_statelen(drbg), GFP_KERNEL);
Stephan Mueller541af942014-05-31 15:44:17 +02001177 if (!drbg->C)
1178 goto err;
1179#ifdef CONFIG_CRYPTO_FIPS
Stephan Muellere6c02442014-08-17 17:39:31 +02001180 drbg->prev = kmalloc(drbg_blocklen(drbg), GFP_KERNEL);
Stephan Mueller541af942014-05-31 15:44:17 +02001181 if (!drbg->prev)
1182 goto err;
1183 drbg->fips_primed = false;
1184#endif
1185 /* scratchpad is only generated for CTR and Hash */
1186 if (drbg->core->flags & DRBG_HMAC)
1187 sb_size = 0;
1188 else if (drbg->core->flags & DRBG_CTR)
1189 sb_size = drbg_statelen(drbg) + drbg_blocklen(drbg) + /* temp */
1190 drbg_statelen(drbg) + /* df_data */
1191 drbg_blocklen(drbg) + /* pad */
1192 drbg_blocklen(drbg) + /* iv */
Stephan Mueller8fecaad2014-07-01 17:08:48 +02001193 drbg_statelen(drbg) + drbg_blocklen(drbg); /* temp */
Stephan Mueller541af942014-05-31 15:44:17 +02001194 else
1195 sb_size = drbg_statelen(drbg) + drbg_blocklen(drbg);
1196
1197 if (0 < sb_size) {
1198 drbg->scratchpad = kzalloc(sb_size, GFP_KERNEL);
1199 if (!drbg->scratchpad)
1200 goto err;
1201 }
1202 spin_lock_init(&drbg->drbg_lock);
1203 return 0;
1204
1205err:
1206 drbg_dealloc_state(drbg);
1207 return ret;
1208}
1209
1210/*
1211 * Strategy to avoid holding long term locks: generate a shadow copy of DRBG
1212 * and perform all operations on this shadow copy. After finishing, restore
1213 * the updated state of the shadow copy into original drbg state. This way,
1214 * only the read and write operations of the original drbg state must be
1215 * locked
1216 */
1217static inline void drbg_copy_drbg(struct drbg_state *src,
1218 struct drbg_state *dst)
1219{
1220 if (!src || !dst)
1221 return;
1222 memcpy(dst->V, src->V, drbg_statelen(src));
1223 memcpy(dst->C, src->C, drbg_statelen(src));
1224 dst->reseed_ctr = src->reseed_ctr;
1225 dst->seeded = src->seeded;
1226 dst->pr = src->pr;
1227#ifdef CONFIG_CRYPTO_FIPS
1228 dst->fips_primed = src->fips_primed;
1229 memcpy(dst->prev, src->prev, drbg_blocklen(src));
1230#endif
1231 /*
1232 * Not copied:
1233 * scratchpad is initialized drbg_alloc_state;
1234 * priv_data is initialized with call to crypto_init;
1235 * d_ops and core are set outside, as these parameters are const;
1236 * test_data is set outside to prevent it being copied back.
1237 */
1238}
1239
1240static int drbg_make_shadow(struct drbg_state *drbg, struct drbg_state **shadow)
1241{
1242 int ret = -ENOMEM;
1243 struct drbg_state *tmp = NULL;
1244
Stephan Mueller541af942014-05-31 15:44:17 +02001245 tmp = kzalloc(sizeof(struct drbg_state), GFP_KERNEL);
1246 if (!tmp)
1247 return -ENOMEM;
1248
1249 /* read-only data as they are defined as const, no lock needed */
1250 tmp->core = drbg->core;
1251 tmp->d_ops = drbg->d_ops;
1252
1253 ret = drbg_alloc_state(tmp);
1254 if (ret)
1255 goto err;
1256
1257 spin_lock_bh(&drbg->drbg_lock);
1258 drbg_copy_drbg(drbg, tmp);
1259 /* only make a link to the test buffer, as we only read that data */
1260 tmp->test_data = drbg->test_data;
1261 spin_unlock_bh(&drbg->drbg_lock);
1262 *shadow = tmp;
1263 return 0;
1264
1265err:
Stephan Mueller46f64f62014-08-17 17:37:59 +02001266 kzfree(tmp);
Stephan Mueller541af942014-05-31 15:44:17 +02001267 return ret;
1268}
1269
1270static void drbg_restore_shadow(struct drbg_state *drbg,
1271 struct drbg_state **shadow)
1272{
1273 struct drbg_state *tmp = *shadow;
1274
1275 spin_lock_bh(&drbg->drbg_lock);
1276 drbg_copy_drbg(tmp, drbg);
1277 spin_unlock_bh(&drbg->drbg_lock);
1278 drbg_dealloc_state(tmp);
1279 kzfree(tmp);
1280 *shadow = NULL;
1281}
1282
1283/*************************************************************************
1284 * DRBG interface functions
1285 *************************************************************************/
1286
1287/*
1288 * DRBG generate function as required by SP800-90A - this function
1289 * generates random numbers
1290 *
1291 * @drbg DRBG state handle
1292 * @buf Buffer where to store the random numbers -- the buffer must already
1293 * be pre-allocated by caller
1294 * @buflen Length of output buffer - this value defines the number of random
1295 * bytes pulled from DRBG
1296 * @addtl Additional input that is mixed into state, may be NULL -- note
1297 * the entropy is pulled by the DRBG internally unconditionally
1298 * as defined in SP800-90A. The additional input is mixed into
1299 * the state in addition to the pulled entropy.
1300 *
1301 * return: generated number of bytes
1302 */
1303static int drbg_generate(struct drbg_state *drbg,
1304 unsigned char *buf, unsigned int buflen,
1305 struct drbg_string *addtl)
1306{
1307 int len = 0;
1308 struct drbg_state *shadow = NULL;
Stephan Mueller27e4de22014-07-06 02:25:36 +02001309 LIST_HEAD(addtllist);
1310 struct drbg_string timestamp;
1311 union {
1312 cycles_t cycles;
1313 unsigned char char_cycles[sizeof(cycles_t)];
1314 } now;
Stephan Mueller541af942014-05-31 15:44:17 +02001315
1316 if (0 == buflen || !buf) {
1317 pr_devel("DRBG: no output buffer provided\n");
1318 return -EINVAL;
1319 }
1320 if (addtl && NULL == addtl->buf && 0 < addtl->len) {
1321 pr_devel("DRBG: wrong format of additional information\n");
1322 return -EINVAL;
1323 }
1324
1325 len = drbg_make_shadow(drbg, &shadow);
1326 if (len) {
1327 pr_devel("DRBG: shadow copy cannot be generated\n");
1328 return len;
1329 }
1330
1331 /* 9.3.1 step 2 */
1332 len = -EINVAL;
1333 if (buflen > (drbg_max_request_bytes(shadow))) {
1334 pr_devel("DRBG: requested random numbers too large %u\n",
1335 buflen);
1336 goto err;
1337 }
1338
1339 /* 9.3.1 step 3 is implicit with the chosen DRBG */
1340
1341 /* 9.3.1 step 4 */
1342 if (addtl && addtl->len > (drbg_max_addtl(shadow))) {
1343 pr_devel("DRBG: additional information string too long %zu\n",
1344 addtl->len);
1345 goto err;
1346 }
1347 /* 9.3.1 step 5 is implicit with the chosen DRBG */
1348
1349 /*
1350 * 9.3.1 step 6 and 9 supplemented by 9.3.2 step c is implemented
1351 * here. The spec is a bit convoluted here, we make it simpler.
1352 */
1353 if ((drbg_max_requests(shadow)) < shadow->reseed_ctr)
1354 shadow->seeded = false;
1355
1356 /* allocate cipher handle */
Stephan Mueller45943a52014-08-17 17:38:29 +02001357 len = shadow->d_ops->crypto_init(shadow);
1358 if (len)
1359 goto err;
Stephan Mueller541af942014-05-31 15:44:17 +02001360
1361 if (shadow->pr || !shadow->seeded) {
1362 pr_devel("DRBG: reseeding before generation (prediction "
1363 "resistance: %s, state %s)\n",
1364 drbg->pr ? "true" : "false",
1365 drbg->seeded ? "seeded" : "unseeded");
1366 /* 9.3.1 steps 7.1 through 7.3 */
1367 len = drbg_seed(shadow, addtl, true);
1368 if (len)
1369 goto err;
1370 /* 9.3.1 step 7.4 */
1371 addtl = NULL;
1372 }
Stephan Mueller27e4de22014-07-06 02:25:36 +02001373
1374 /*
1375 * Mix the time stamp into the DRBG state if the DRBG is not in
1376 * test mode. If there are two callers invoking the DRBG at the same
1377 * time, i.e. before the first caller merges its shadow state back,
1378 * both callers would obtain the same random number stream without
1379 * changing the state here.
1380 */
1381 if (!drbg->test_data) {
1382 now.cycles = random_get_entropy();
1383 drbg_string_fill(&timestamp, now.char_cycles, sizeof(cycles_t));
1384 list_add_tail(&timestamp.list, &addtllist);
1385 }
1386 if (addtl && 0 < addtl->len)
1387 list_add_tail(&addtl->list, &addtllist);
Stephan Mueller541af942014-05-31 15:44:17 +02001388 /* 9.3.1 step 8 and 10 */
Stephan Mueller27e4de22014-07-06 02:25:36 +02001389 len = shadow->d_ops->generate(shadow, buf, buflen, &addtllist);
Stephan Mueller541af942014-05-31 15:44:17 +02001390
1391 /* 10.1.1.4 step 6, 10.1.2.5 step 7, 10.2.1.5.2 step 7 */
1392 shadow->reseed_ctr++;
1393 if (0 >= len)
1394 goto err;
1395
1396 /*
1397 * Section 11.3.3 requires to re-perform self tests after some
1398 * generated random numbers. The chosen value after which self
1399 * test is performed is arbitrary, but it should be reasonable.
1400 * However, we do not perform the self tests because of the following
1401 * reasons: it is mathematically impossible that the initial self tests
1402 * were successfully and the following are not. If the initial would
1403 * pass and the following would not, the kernel integrity is violated.
1404 * In this case, the entire kernel operation is questionable and it
1405 * is unlikely that the integrity violation only affects the
1406 * correct operation of the DRBG.
1407 *
1408 * Albeit the following code is commented out, it is provided in
1409 * case somebody has a need to implement the test of 11.3.3.
1410 */
1411#if 0
1412 if (shadow->reseed_ctr && !(shadow->reseed_ctr % 4096)) {
1413 int err = 0;
1414 pr_devel("DRBG: start to perform self test\n");
1415 if (drbg->core->flags & DRBG_HMAC)
1416 err = alg_test("drbg_pr_hmac_sha256",
1417 "drbg_pr_hmac_sha256", 0, 0);
1418 else if (drbg->core->flags & DRBG_CTR)
1419 err = alg_test("drbg_pr_ctr_aes128",
1420 "drbg_pr_ctr_aes128", 0, 0);
1421 else
1422 err = alg_test("drbg_pr_sha256",
1423 "drbg_pr_sha256", 0, 0);
1424 if (err) {
1425 pr_err("DRBG: periodical self test failed\n");
1426 /*
1427 * uninstantiate implies that from now on, only errors
1428 * are returned when reusing this DRBG cipher handle
1429 */
1430 drbg_uninstantiate(drbg);
1431 drbg_dealloc_state(shadow);
1432 kzfree(shadow);
1433 return 0;
1434 } else {
1435 pr_devel("DRBG: self test successful\n");
1436 }
1437 }
1438#endif
1439
1440err:
Stephan Mueller45943a52014-08-17 17:38:29 +02001441 shadow->d_ops->crypto_fini(shadow);
Stephan Mueller541af942014-05-31 15:44:17 +02001442 drbg_restore_shadow(drbg, &shadow);
1443 return len;
1444}
1445
1446/*
1447 * Wrapper around drbg_generate which can pull arbitrary long strings
1448 * from the DRBG without hitting the maximum request limitation.
1449 *
1450 * Parameters: see drbg_generate
1451 * Return codes: see drbg_generate -- if one drbg_generate request fails,
1452 * the entire drbg_generate_long request fails
1453 */
1454static int drbg_generate_long(struct drbg_state *drbg,
1455 unsigned char *buf, unsigned int buflen,
1456 struct drbg_string *addtl)
1457{
1458 int len = 0;
1459 unsigned int slice = 0;
1460 do {
1461 int tmplen = 0;
1462 unsigned int chunk = 0;
1463 slice = ((buflen - len) / drbg_max_request_bytes(drbg));
1464 chunk = slice ? drbg_max_request_bytes(drbg) : (buflen - len);
1465 tmplen = drbg_generate(drbg, buf + len, chunk, addtl);
1466 if (0 >= tmplen)
1467 return tmplen;
1468 len += tmplen;
Stephan Muellerce5481d2014-07-31 21:47:33 +02001469 } while (slice > 0 && (len < buflen));
Stephan Mueller541af942014-05-31 15:44:17 +02001470 return len;
1471}
1472
1473/*
1474 * DRBG instantiation function as required by SP800-90A - this function
1475 * sets up the DRBG handle, performs the initial seeding and all sanity
1476 * checks required by SP800-90A
1477 *
1478 * @drbg memory of state -- if NULL, new memory is allocated
1479 * @pers Personalization string that is mixed into state, may be NULL -- note
1480 * the entropy is pulled by the DRBG internally unconditionally
1481 * as defined in SP800-90A. The additional input is mixed into
1482 * the state in addition to the pulled entropy.
1483 * @coreref reference to core
1484 * @pr prediction resistance enabled
1485 *
1486 * return
1487 * 0 on success
1488 * error value otherwise
1489 */
1490static int drbg_instantiate(struct drbg_state *drbg, struct drbg_string *pers,
1491 int coreref, bool pr)
1492{
1493 int ret = -ENOMEM;
1494
1495 pr_devel("DRBG: Initializing DRBG core %d with prediction resistance "
1496 "%s\n", coreref, pr ? "enabled" : "disabled");
1497 drbg->core = &drbg_cores[coreref];
1498 drbg->pr = pr;
1499 drbg->seeded = false;
1500 switch (drbg->core->flags & DRBG_TYPE_MASK) {
1501#ifdef CONFIG_CRYPTO_DRBG_HMAC
1502 case DRBG_HMAC:
1503 drbg->d_ops = &drbg_hmac_ops;
1504 break;
1505#endif /* CONFIG_CRYPTO_DRBG_HMAC */
1506#ifdef CONFIG_CRYPTO_DRBG_HASH
1507 case DRBG_HASH:
1508 drbg->d_ops = &drbg_hash_ops;
1509 break;
1510#endif /* CONFIG_CRYPTO_DRBG_HASH */
1511#ifdef CONFIG_CRYPTO_DRBG_CTR
1512 case DRBG_CTR:
1513 drbg->d_ops = &drbg_ctr_ops;
1514 break;
1515#endif /* CONFIG_CRYPTO_DRBG_CTR */
1516 default:
1517 return -EOPNOTSUPP;
1518 }
1519
1520 /* 9.1 step 1 is implicit with the selected DRBG type */
1521
1522 /*
1523 * 9.1 step 2 is implicit as caller can select prediction resistance
1524 * and the flag is copied into drbg->flags --
1525 * all DRBG types support prediction resistance
1526 */
1527
1528 /* 9.1 step 4 is implicit in drbg_sec_strength */
1529
1530 ret = drbg_alloc_state(drbg);
1531 if (ret)
1532 return ret;
1533
1534 ret = -EFAULT;
Stephan Mueller45943a52014-08-17 17:38:29 +02001535 if (drbg->d_ops->crypto_init(drbg))
Stephan Mueller541af942014-05-31 15:44:17 +02001536 goto err;
1537 ret = drbg_seed(drbg, pers, false);
Stephan Mueller45943a52014-08-17 17:38:29 +02001538 drbg->d_ops->crypto_fini(drbg);
Stephan Mueller541af942014-05-31 15:44:17 +02001539 if (ret)
1540 goto err;
1541
1542 return 0;
1543
1544err:
1545 drbg_dealloc_state(drbg);
1546 return ret;
1547}
1548
1549/*
1550 * DRBG uninstantiate function as required by SP800-90A - this function
1551 * frees all buffers and the DRBG handle
1552 *
1553 * @drbg DRBG state handle
1554 *
1555 * return
1556 * 0 on success
1557 */
1558static int drbg_uninstantiate(struct drbg_state *drbg)
1559{
1560 spin_lock_bh(&drbg->drbg_lock);
1561 drbg_dealloc_state(drbg);
1562 /* no scrubbing of test_data -- this shall survive an uninstantiate */
1563 spin_unlock_bh(&drbg->drbg_lock);
1564 return 0;
1565}
1566
1567/*
1568 * Helper function for setting the test data in the DRBG
1569 *
1570 * @drbg DRBG state handle
1571 * @test_data test data to sets
1572 */
1573static inline void drbg_set_testdata(struct drbg_state *drbg,
1574 struct drbg_test_data *test_data)
1575{
1576 if (!test_data || !test_data->testentropy)
1577 return;
1578 spin_lock_bh(&drbg->drbg_lock);
1579 drbg->test_data = test_data;
1580 spin_unlock_bh(&drbg->drbg_lock);
1581}
1582
1583/***************************************************************
1584 * Kernel crypto API cipher invocations requested by DRBG
1585 ***************************************************************/
1586
1587#if defined(CONFIG_CRYPTO_DRBG_HASH) || defined(CONFIG_CRYPTO_DRBG_HMAC)
1588struct sdesc {
1589 struct shash_desc shash;
1590 char ctx[];
1591};
1592
1593static int drbg_init_hash_kernel(struct drbg_state *drbg)
1594{
1595 struct sdesc *sdesc;
1596 struct crypto_shash *tfm;
1597
1598 tfm = crypto_alloc_shash(drbg->core->backend_cra_name, 0, 0);
1599 if (IS_ERR(tfm)) {
1600 pr_info("DRBG: could not allocate digest TFM handle\n");
1601 return PTR_ERR(tfm);
1602 }
1603 BUG_ON(drbg_blocklen(drbg) != crypto_shash_digestsize(tfm));
1604 sdesc = kzalloc(sizeof(struct shash_desc) + crypto_shash_descsize(tfm),
1605 GFP_KERNEL);
1606 if (!sdesc) {
1607 crypto_free_shash(tfm);
1608 return -ENOMEM;
1609 }
1610
1611 sdesc->shash.tfm = tfm;
1612 sdesc->shash.flags = 0;
1613 drbg->priv_data = sdesc;
1614 return 0;
1615}
1616
1617static int drbg_fini_hash_kernel(struct drbg_state *drbg)
1618{
1619 struct sdesc *sdesc = (struct sdesc *)drbg->priv_data;
1620 if (sdesc) {
1621 crypto_free_shash(sdesc->shash.tfm);
1622 kzfree(sdesc);
1623 }
1624 drbg->priv_data = NULL;
1625 return 0;
1626}
1627
1628static int drbg_kcapi_hash(struct drbg_state *drbg, const unsigned char *key,
Stephan Mueller8c987162014-06-28 21:58:24 +02001629 unsigned char *outval, const struct list_head *in)
Stephan Mueller541af942014-05-31 15:44:17 +02001630{
1631 struct sdesc *sdesc = (struct sdesc *)drbg->priv_data;
Stephan Mueller8c987162014-06-28 21:58:24 +02001632 struct drbg_string *input = NULL;
Stephan Mueller541af942014-05-31 15:44:17 +02001633
1634 if (key)
1635 crypto_shash_setkey(sdesc->shash.tfm, key, drbg_statelen(drbg));
1636 crypto_shash_init(&sdesc->shash);
Stephan Mueller8c987162014-06-28 21:58:24 +02001637 list_for_each_entry(input, in, list)
1638 crypto_shash_update(&sdesc->shash, input->buf, input->len);
Stephan Mueller541af942014-05-31 15:44:17 +02001639 return crypto_shash_final(&sdesc->shash, outval);
1640}
1641#endif /* (CONFIG_CRYPTO_DRBG_HASH || CONFIG_CRYPTO_DRBG_HMAC) */
1642
1643#ifdef CONFIG_CRYPTO_DRBG_CTR
1644static int drbg_init_sym_kernel(struct drbg_state *drbg)
1645{
1646 int ret = 0;
Stephan Mueller04bcbfc2015-03-01 20:39:17 +01001647 struct crypto_cipher *tfm;
Stephan Mueller541af942014-05-31 15:44:17 +02001648
Stephan Mueller04bcbfc2015-03-01 20:39:17 +01001649 tfm = crypto_alloc_cipher(drbg->core->backend_cra_name, 0, 0);
Stephan Mueller541af942014-05-31 15:44:17 +02001650 if (IS_ERR(tfm)) {
1651 pr_info("DRBG: could not allocate cipher TFM handle\n");
1652 return PTR_ERR(tfm);
1653 }
Stephan Mueller04bcbfc2015-03-01 20:39:17 +01001654 BUG_ON(drbg_blocklen(drbg) != crypto_cipher_blocksize(tfm));
Stephan Mueller541af942014-05-31 15:44:17 +02001655 drbg->priv_data = tfm;
1656 return ret;
1657}
1658
1659static int drbg_fini_sym_kernel(struct drbg_state *drbg)
1660{
Stephan Mueller04bcbfc2015-03-01 20:39:17 +01001661 struct crypto_cipher *tfm =
1662 (struct crypto_cipher *)drbg->priv_data;
Stephan Mueller541af942014-05-31 15:44:17 +02001663 if (tfm)
Stephan Mueller04bcbfc2015-03-01 20:39:17 +01001664 crypto_free_cipher(tfm);
Stephan Mueller541af942014-05-31 15:44:17 +02001665 drbg->priv_data = NULL;
1666 return 0;
1667}
1668
1669static int drbg_kcapi_sym(struct drbg_state *drbg, const unsigned char *key,
1670 unsigned char *outval, const struct drbg_string *in)
1671{
Stephan Mueller04bcbfc2015-03-01 20:39:17 +01001672 struct crypto_cipher *tfm =
1673 (struct crypto_cipher *)drbg->priv_data;
Stephan Mueller541af942014-05-31 15:44:17 +02001674
Stephan Mueller04bcbfc2015-03-01 20:39:17 +01001675 crypto_cipher_setkey(tfm, key, (drbg_keylen(drbg)));
Stephan Mueller541af942014-05-31 15:44:17 +02001676 /* there is only component in *in */
Stephan Mueller04bcbfc2015-03-01 20:39:17 +01001677 BUG_ON(in->len < drbg_blocklen(drbg));
1678 crypto_cipher_encrypt_one(tfm, outval, in->buf);
1679 return 0;
Stephan Mueller541af942014-05-31 15:44:17 +02001680}
1681#endif /* CONFIG_CRYPTO_DRBG_CTR */
1682
1683/***************************************************************
1684 * Kernel crypto API interface to register DRBG
1685 ***************************************************************/
1686
1687/*
1688 * Look up the DRBG flags by given kernel crypto API cra_name
1689 * The code uses the drbg_cores definition to do this
1690 *
1691 * @cra_name kernel crypto API cra_name
1692 * @coreref reference to integer which is filled with the pointer to
1693 * the applicable core
1694 * @pr reference for setting prediction resistance
1695 *
1696 * return: flags
1697 */
1698static inline void drbg_convert_tfm_core(const char *cra_driver_name,
1699 int *coreref, bool *pr)
1700{
1701 int i = 0;
1702 size_t start = 0;
1703 int len = 0;
1704
1705 *pr = true;
1706 /* disassemble the names */
1707 if (!memcmp(cra_driver_name, "drbg_nopr_", 10)) {
1708 start = 10;
1709 *pr = false;
1710 } else if (!memcmp(cra_driver_name, "drbg_pr_", 8)) {
1711 start = 8;
1712 } else {
1713 return;
1714 }
1715
1716 /* remove the first part */
1717 len = strlen(cra_driver_name) - start;
1718 for (i = 0; ARRAY_SIZE(drbg_cores) > i; i++) {
1719 if (!memcmp(cra_driver_name + start, drbg_cores[i].cra_name,
1720 len)) {
1721 *coreref = i;
1722 return;
1723 }
1724 }
1725}
1726
1727static int drbg_kcapi_init(struct crypto_tfm *tfm)
1728{
1729 struct drbg_state *drbg = crypto_tfm_ctx(tfm);
1730 bool pr = false;
1731 int coreref = 0;
1732
Stephan Mueller4f150712014-07-06 02:25:04 +02001733 drbg_convert_tfm_core(crypto_tfm_alg_driver_name(tfm), &coreref, &pr);
Stephan Mueller541af942014-05-31 15:44:17 +02001734 /*
1735 * when personalization string is needed, the caller must call reset
1736 * and provide the personalization string as seed information
1737 */
1738 return drbg_instantiate(drbg, NULL, coreref, pr);
1739}
1740
1741static void drbg_kcapi_cleanup(struct crypto_tfm *tfm)
1742{
1743 drbg_uninstantiate(crypto_tfm_ctx(tfm));
1744}
1745
1746/*
1747 * Generate random numbers invoked by the kernel crypto API:
1748 * The API of the kernel crypto API is extended as follows:
1749 *
1750 * If dlen is larger than zero, rdata is interpreted as the output buffer
1751 * where random data is to be stored.
1752 *
1753 * If dlen is zero, rdata is interpreted as a pointer to a struct drbg_gen
1754 * which holds the additional information string that is used for the
1755 * DRBG generation process. The output buffer that is to be used to store
1756 * data is also pointed to by struct drbg_gen.
1757 */
1758static int drbg_kcapi_random(struct crypto_rng *tfm, u8 *rdata,
1759 unsigned int dlen)
1760{
1761 struct drbg_state *drbg = crypto_rng_ctx(tfm);
1762 if (0 < dlen) {
1763 return drbg_generate_long(drbg, rdata, dlen, NULL);
1764 } else {
1765 struct drbg_gen *data = (struct drbg_gen *)rdata;
Stephan Mueller8c987162014-06-28 21:58:24 +02001766 struct drbg_string addtl;
Stephan Mueller541af942014-05-31 15:44:17 +02001767 /* catch NULL pointer */
1768 if (!data)
1769 return 0;
1770 drbg_set_testdata(drbg, data->test_data);
Stephan Mueller8c987162014-06-28 21:58:24 +02001771 /* linked list variable is now local to allow modification */
1772 drbg_string_fill(&addtl, data->addtl->buf, data->addtl->len);
Stephan Mueller541af942014-05-31 15:44:17 +02001773 return drbg_generate_long(drbg, data->outbuf, data->outlen,
Stephan Mueller8c987162014-06-28 21:58:24 +02001774 &addtl);
Stephan Mueller541af942014-05-31 15:44:17 +02001775 }
1776}
1777
1778/*
1779 * Reset the DRBG invoked by the kernel crypto API
1780 * The reset implies a full re-initialization of the DRBG. Similar to the
1781 * generate function of drbg_kcapi_random, this function extends the
1782 * kernel crypto API interface with struct drbg_gen
1783 */
1784static int drbg_kcapi_reset(struct crypto_rng *tfm, u8 *seed, unsigned int slen)
1785{
1786 struct drbg_state *drbg = crypto_rng_ctx(tfm);
1787 struct crypto_tfm *tfm_base = crypto_rng_tfm(tfm);
1788 bool pr = false;
1789 struct drbg_string seed_string;
1790 int coreref = 0;
1791
1792 drbg_uninstantiate(drbg);
1793 drbg_convert_tfm_core(crypto_tfm_alg_driver_name(tfm_base), &coreref,
1794 &pr);
1795 if (0 < slen) {
1796 drbg_string_fill(&seed_string, seed, slen);
1797 return drbg_instantiate(drbg, &seed_string, coreref, pr);
1798 } else {
1799 struct drbg_gen *data = (struct drbg_gen *)seed;
1800 /* allow invocation of API call with NULL, 0 */
1801 if (!data)
1802 return drbg_instantiate(drbg, NULL, coreref, pr);
1803 drbg_set_testdata(drbg, data->test_data);
Stephan Mueller8c987162014-06-28 21:58:24 +02001804 /* linked list variable is now local to allow modification */
1805 drbg_string_fill(&seed_string, data->addtl->buf,
1806 data->addtl->len);
1807 return drbg_instantiate(drbg, &seed_string, coreref, pr);
Stephan Mueller541af942014-05-31 15:44:17 +02001808 }
1809}
1810
1811/***************************************************************
1812 * Kernel module: code to load the module
1813 ***************************************************************/
1814
1815/*
1816 * Tests as defined in 11.3.2 in addition to the cipher tests: testing
1817 * of the error handling.
1818 *
1819 * Note: testing of failing seed source as defined in 11.3.2 is not applicable
1820 * as seed source of get_random_bytes does not fail.
1821 *
1822 * Note 2: There is no sensible way of testing the reseed counter
1823 * enforcement, so skip it.
1824 */
1825static inline int __init drbg_healthcheck_sanity(void)
1826{
1827#ifdef CONFIG_CRYPTO_FIPS
1828 int len = 0;
1829#define OUTBUFLEN 16
1830 unsigned char buf[OUTBUFLEN];
1831 struct drbg_state *drbg = NULL;
1832 int ret = -EFAULT;
1833 int rc = -EFAULT;
1834 bool pr = false;
1835 int coreref = 0;
1836 struct drbg_string addtl;
1837 size_t max_addtllen, max_request_bytes;
1838
1839 /* only perform test in FIPS mode */
1840 if (!fips_enabled)
1841 return 0;
1842
1843#ifdef CONFIG_CRYPTO_DRBG_CTR
1844 drbg_convert_tfm_core("drbg_nopr_ctr_aes128", &coreref, &pr);
Stephan Muellere25e47e2014-07-06 02:23:03 +02001845#elif defined CONFIG_CRYPTO_DRBG_HASH
Stephan Mueller541af942014-05-31 15:44:17 +02001846 drbg_convert_tfm_core("drbg_nopr_sha256", &coreref, &pr);
1847#else
1848 drbg_convert_tfm_core("drbg_nopr_hmac_sha256", &coreref, &pr);
1849#endif
1850
1851 drbg = kzalloc(sizeof(struct drbg_state), GFP_KERNEL);
1852 if (!drbg)
1853 return -ENOMEM;
1854
1855 /*
1856 * if the following tests fail, it is likely that there is a buffer
1857 * overflow as buf is much smaller than the requested or provided
1858 * string lengths -- in case the error handling does not succeed
1859 * we may get an OOPS. And we want to get an OOPS as this is a
1860 * grave bug.
1861 */
1862
1863 /* get a valid instance of DRBG for following tests */
1864 ret = drbg_instantiate(drbg, NULL, coreref, pr);
1865 if (ret) {
1866 rc = ret;
1867 goto outbuf;
1868 }
1869 max_addtllen = drbg_max_addtl(drbg);
1870 max_request_bytes = drbg_max_request_bytes(drbg);
1871 drbg_string_fill(&addtl, buf, max_addtllen + 1);
1872 /* overflow addtllen with additonal info string */
1873 len = drbg_generate(drbg, buf, OUTBUFLEN, &addtl);
1874 BUG_ON(0 < len);
1875 /* overflow max_bits */
1876 len = drbg_generate(drbg, buf, (max_request_bytes + 1), NULL);
1877 BUG_ON(0 < len);
1878 drbg_uninstantiate(drbg);
1879
1880 /* overflow max addtllen with personalization string */
1881 ret = drbg_instantiate(drbg, &addtl, coreref, pr);
1882 BUG_ON(0 == ret);
Stephan Mueller541af942014-05-31 15:44:17 +02001883 /* all tests passed */
1884 rc = 0;
1885
1886 pr_devel("DRBG: Sanity tests for failure code paths successfully "
1887 "completed\n");
1888
1889 drbg_uninstantiate(drbg);
1890outbuf:
1891 kzfree(drbg);
1892 return rc;
1893#else /* CONFIG_CRYPTO_FIPS */
1894 return 0;
1895#endif /* CONFIG_CRYPTO_FIPS */
1896}
1897
1898static struct crypto_alg drbg_algs[22];
1899
1900/*
1901 * Fill the array drbg_algs used to register the different DRBGs
1902 * with the kernel crypto API. To fill the array, the information
1903 * from drbg_cores[] is used.
1904 */
1905static inline void __init drbg_fill_array(struct crypto_alg *alg,
1906 const struct drbg_core *core, int pr)
1907{
1908 int pos = 0;
1909 static int priority = 100;
1910
1911 memset(alg, 0, sizeof(struct crypto_alg));
1912 memcpy(alg->cra_name, "stdrng", 6);
1913 if (pr) {
1914 memcpy(alg->cra_driver_name, "drbg_pr_", 8);
1915 pos = 8;
1916 } else {
1917 memcpy(alg->cra_driver_name, "drbg_nopr_", 10);
1918 pos = 10;
1919 }
1920 memcpy(alg->cra_driver_name + pos, core->cra_name,
1921 strlen(core->cra_name));
1922
1923 alg->cra_priority = priority;
1924 priority++;
1925 /*
1926 * If FIPS mode enabled, the selected DRBG shall have the
1927 * highest cra_priority over other stdrng instances to ensure
1928 * it is selected.
1929 */
1930 if (fips_enabled)
1931 alg->cra_priority += 200;
1932
1933 alg->cra_flags = CRYPTO_ALG_TYPE_RNG;
1934 alg->cra_ctxsize = sizeof(struct drbg_state);
1935 alg->cra_type = &crypto_rng_type;
1936 alg->cra_module = THIS_MODULE;
1937 alg->cra_init = drbg_kcapi_init;
1938 alg->cra_exit = drbg_kcapi_cleanup;
1939 alg->cra_u.rng.rng_make_random = drbg_kcapi_random;
1940 alg->cra_u.rng.rng_reset = drbg_kcapi_reset;
1941 alg->cra_u.rng.seedsize = 0;
1942}
1943
1944static int __init drbg_init(void)
1945{
1946 unsigned int i = 0; /* pointer to drbg_algs */
1947 unsigned int j = 0; /* pointer to drbg_cores */
1948 int ret = -EFAULT;
1949
1950 ret = drbg_healthcheck_sanity();
1951 if (ret)
1952 return ret;
1953
1954 if (ARRAY_SIZE(drbg_cores) * 2 > ARRAY_SIZE(drbg_algs)) {
1955 pr_info("DRBG: Cannot register all DRBG types"
Stephan Muellera9089572014-07-06 02:24:03 +02001956 "(slots needed: %zu, slots available: %zu)\n",
Stephan Mueller541af942014-05-31 15:44:17 +02001957 ARRAY_SIZE(drbg_cores) * 2, ARRAY_SIZE(drbg_algs));
1958 return ret;
1959 }
1960
1961 /*
1962 * each DRBG definition can be used with PR and without PR, thus
1963 * we instantiate each DRBG in drbg_cores[] twice.
1964 *
1965 * As the order of placing them into the drbg_algs array matters
1966 * (the later DRBGs receive a higher cra_priority) we register the
1967 * prediction resistance DRBGs first as the should not be too
1968 * interesting.
1969 */
1970 for (j = 0; ARRAY_SIZE(drbg_cores) > j; j++, i++)
1971 drbg_fill_array(&drbg_algs[i], &drbg_cores[j], 1);
1972 for (j = 0; ARRAY_SIZE(drbg_cores) > j; j++, i++)
1973 drbg_fill_array(&drbg_algs[i], &drbg_cores[j], 0);
1974 return crypto_register_algs(drbg_algs, (ARRAY_SIZE(drbg_cores) * 2));
1975}
1976
Fengguang Wu96956ae2014-07-10 16:52:04 +08001977static void __exit drbg_exit(void)
Stephan Mueller541af942014-05-31 15:44:17 +02001978{
1979 crypto_unregister_algs(drbg_algs, (ARRAY_SIZE(drbg_cores) * 2));
1980}
1981
1982module_init(drbg_init);
1983module_exit(drbg_exit);
Stephan Muellere25e47e2014-07-06 02:23:03 +02001984#ifndef CRYPTO_DRBG_HASH_STRING
1985#define CRYPTO_DRBG_HASH_STRING ""
1986#endif
1987#ifndef CRYPTO_DRBG_HMAC_STRING
1988#define CRYPTO_DRBG_HMAC_STRING ""
1989#endif
1990#ifndef CRYPTO_DRBG_CTR_STRING
1991#define CRYPTO_DRBG_CTR_STRING ""
1992#endif
Stephan Mueller541af942014-05-31 15:44:17 +02001993MODULE_LICENSE("GPL");
1994MODULE_AUTHOR("Stephan Mueller <smueller@chronox.de>");
Stephan Muellere25e47e2014-07-06 02:23:03 +02001995MODULE_DESCRIPTION("NIST SP800-90A Deterministic Random Bit Generator (DRBG) "
1996 "using following cores: "
1997 CRYPTO_DRBG_HASH_STRING
1998 CRYPTO_DRBG_HMAC_STRING
1999 CRYPTO_DRBG_CTR_STRING);