blob: 5fad297424fcff08d4b56910a6de09c4641ee420 [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>
Stephan Mueller57225e62015-06-09 21:55:38 +0800101#include <linux/kernel.h>
Stephan Mueller541af942014-05-31 15:44:17 +0200102
Stephan Mueller541af942014-05-31 15:44:17 +0200103/***************************************************************
104 * Backend cipher definitions available to DRBG
105 ***************************************************************/
106
107/*
108 * The order of the DRBG definitions here matter: every DRBG is registered
109 * as stdrng. Each DRBG receives an increasing cra_priority values the later
110 * they are defined in this array (see drbg_fill_array).
111 *
112 * HMAC DRBGs are favored over Hash DRBGs over CTR DRBGs, and
113 * the SHA256 / AES 256 over other ciphers. Thus, the favored
114 * DRBGs are the latest entries in this array.
115 */
116static const struct drbg_core drbg_cores[] = {
117#ifdef CONFIG_CRYPTO_DRBG_CTR
118 {
119 .flags = DRBG_CTR | DRBG_STRENGTH128,
120 .statelen = 32, /* 256 bits as defined in 10.2.1 */
Stephan Mueller541af942014-05-31 15:44:17 +0200121 .blocklen_bytes = 16,
122 .cra_name = "ctr_aes128",
Stephan Mueller04bcbfc2015-03-01 20:39:17 +0100123 .backend_cra_name = "aes",
Stephan Mueller541af942014-05-31 15:44:17 +0200124 }, {
125 .flags = DRBG_CTR | DRBG_STRENGTH192,
126 .statelen = 40, /* 320 bits as defined in 10.2.1 */
Stephan Mueller541af942014-05-31 15:44:17 +0200127 .blocklen_bytes = 16,
128 .cra_name = "ctr_aes192",
Stephan Mueller04bcbfc2015-03-01 20:39:17 +0100129 .backend_cra_name = "aes",
Stephan Mueller541af942014-05-31 15:44:17 +0200130 }, {
131 .flags = DRBG_CTR | DRBG_STRENGTH256,
132 .statelen = 48, /* 384 bits as defined in 10.2.1 */
Stephan Mueller541af942014-05-31 15:44:17 +0200133 .blocklen_bytes = 16,
134 .cra_name = "ctr_aes256",
Stephan Mueller04bcbfc2015-03-01 20:39:17 +0100135 .backend_cra_name = "aes",
Stephan Mueller541af942014-05-31 15:44:17 +0200136 },
137#endif /* CONFIG_CRYPTO_DRBG_CTR */
138#ifdef CONFIG_CRYPTO_DRBG_HASH
139 {
140 .flags = DRBG_HASH | DRBG_STRENGTH128,
141 .statelen = 55, /* 440 bits */
Stephan Mueller541af942014-05-31 15:44:17 +0200142 .blocklen_bytes = 20,
143 .cra_name = "sha1",
144 .backend_cra_name = "sha1",
145 }, {
146 .flags = DRBG_HASH | DRBG_STRENGTH256,
147 .statelen = 111, /* 888 bits */
Stephan Mueller541af942014-05-31 15:44:17 +0200148 .blocklen_bytes = 48,
149 .cra_name = "sha384",
150 .backend_cra_name = "sha384",
151 }, {
152 .flags = DRBG_HASH | DRBG_STRENGTH256,
153 .statelen = 111, /* 888 bits */
Stephan Mueller541af942014-05-31 15:44:17 +0200154 .blocklen_bytes = 64,
155 .cra_name = "sha512",
156 .backend_cra_name = "sha512",
157 }, {
158 .flags = DRBG_HASH | DRBG_STRENGTH256,
159 .statelen = 55, /* 440 bits */
Stephan Mueller541af942014-05-31 15:44:17 +0200160 .blocklen_bytes = 32,
161 .cra_name = "sha256",
162 .backend_cra_name = "sha256",
163 },
164#endif /* CONFIG_CRYPTO_DRBG_HASH */
165#ifdef CONFIG_CRYPTO_DRBG_HMAC
166 {
Stephan Mueller5b635e22014-07-06 02:26:37 +0200167 .flags = DRBG_HMAC | DRBG_STRENGTH128,
Stephan Mueller541af942014-05-31 15:44:17 +0200168 .statelen = 20, /* block length of cipher */
Stephan Mueller541af942014-05-31 15:44:17 +0200169 .blocklen_bytes = 20,
170 .cra_name = "hmac_sha1",
171 .backend_cra_name = "hmac(sha1)",
172 }, {
173 .flags = DRBG_HMAC | DRBG_STRENGTH256,
174 .statelen = 48, /* block length of cipher */
Stephan Mueller541af942014-05-31 15:44:17 +0200175 .blocklen_bytes = 48,
176 .cra_name = "hmac_sha384",
177 .backend_cra_name = "hmac(sha384)",
178 }, {
179 .flags = DRBG_HMAC | DRBG_STRENGTH256,
180 .statelen = 64, /* block length of cipher */
Stephan Mueller541af942014-05-31 15:44:17 +0200181 .blocklen_bytes = 64,
182 .cra_name = "hmac_sha512",
183 .backend_cra_name = "hmac(sha512)",
184 }, {
185 .flags = DRBG_HMAC | DRBG_STRENGTH256,
186 .statelen = 32, /* block length of cipher */
Stephan Mueller541af942014-05-31 15:44:17 +0200187 .blocklen_bytes = 32,
188 .cra_name = "hmac_sha256",
189 .backend_cra_name = "hmac(sha256)",
190 },
191#endif /* CONFIG_CRYPTO_DRBG_HMAC */
192};
193
Stephan Mueller57225e62015-06-09 21:55:38 +0800194static int drbg_uninstantiate(struct drbg_state *drbg);
195
Stephan Mueller541af942014-05-31 15:44:17 +0200196/******************************************************************
197 * Generic helper functions
198 ******************************************************************/
199
200/*
201 * Return strength of DRBG according to SP800-90A section 8.4
202 *
203 * @flags DRBG flags reference
204 *
205 * Return: normalized strength in *bytes* value or 32 as default
206 * to counter programming errors
207 */
208static inline unsigned short drbg_sec_strength(drbg_flag_t flags)
209{
210 switch (flags & DRBG_STRENGTH_MASK) {
211 case DRBG_STRENGTH128:
212 return 16;
213 case DRBG_STRENGTH192:
214 return 24;
215 case DRBG_STRENGTH256:
216 return 32;
217 default:
218 return 32;
219 }
220}
221
222/*
223 * FIPS 140-2 continuous self test
224 * The test is performed on the result of one round of the output
225 * function. Thus, the function implicitly knows the size of the
226 * buffer.
227 *
Stephan Mueller541af942014-05-31 15:44:17 +0200228 * @drbg DRBG handle
229 * @buf output buffer of random data to be checked
230 *
231 * return:
232 * true on success
233 * false on error
234 */
235static bool drbg_fips_continuous_test(struct drbg_state *drbg,
236 const unsigned char *buf)
237{
238#ifdef CONFIG_CRYPTO_FIPS
239 int ret = 0;
240 /* skip test if we test the overall system */
Herbert Xu8fded592015-04-21 10:46:41 +0800241 if (list_empty(&drbg->test_data.list))
Stephan Mueller541af942014-05-31 15:44:17 +0200242 return true;
243 /* only perform test in FIPS mode */
244 if (0 == fips_enabled)
245 return true;
246 if (!drbg->fips_primed) {
247 /* Priming of FIPS test */
248 memcpy(drbg->prev, buf, drbg_blocklen(drbg));
249 drbg->fips_primed = true;
250 /* return false due to priming, i.e. another round is needed */
251 return false;
252 }
253 ret = memcmp(drbg->prev, buf, drbg_blocklen(drbg));
Stephan Mueller905b42e2014-12-05 22:40:21 +0100254 if (!ret)
255 panic("DRBG continuous self test failed\n");
Stephan Mueller541af942014-05-31 15:44:17 +0200256 memcpy(drbg->prev, buf, drbg_blocklen(drbg));
257 /* the test shall pass when the two compared values are not equal */
258 return ret != 0;
259#else
260 return true;
261#endif /* CONFIG_CRYPTO_FIPS */
262}
263
264/*
265 * Convert an integer into a byte representation of this integer.
266 * The byte representation is big-endian
267 *
Stephan Mueller541af942014-05-31 15:44:17 +0200268 * @val value to be converted
Stephan Mueller72f3e002014-08-17 17:37:34 +0200269 * @buf buffer holding the converted integer -- caller must ensure that
270 * buffer size is at least 32 bit
Stephan Mueller541af942014-05-31 15:44:17 +0200271 */
272#if (defined(CONFIG_CRYPTO_DRBG_HASH) || defined(CONFIG_CRYPTO_DRBG_CTR))
Stephan Mueller72f3e002014-08-17 17:37:34 +0200273static inline void drbg_cpu_to_be32(__u32 val, unsigned char *buf)
Stephan Mueller541af942014-05-31 15:44:17 +0200274{
Stephan Mueller72f3e002014-08-17 17:37:34 +0200275 struct s {
Stephan Mueller7c8ae032014-08-26 09:32:24 +0200276 __be32 conv;
Stephan Mueller72f3e002014-08-17 17:37:34 +0200277 };
278 struct s *conversion = (struct s *) buf;
Stephan Mueller541af942014-05-31 15:44:17 +0200279
Stephan Mueller72f3e002014-08-17 17:37:34 +0200280 conversion->conv = cpu_to_be32(val);
Stephan Mueller541af942014-05-31 15:44:17 +0200281}
Stephan Mueller541af942014-05-31 15:44:17 +0200282#endif /* defined(CONFIG_CRYPTO_DRBG_HASH) || defined(CONFIG_CRYPTO_DRBG_CTR) */
283
284/******************************************************************
285 * CTR DRBG callback functions
286 ******************************************************************/
287
288#ifdef CONFIG_CRYPTO_DRBG_CTR
Stephan Muellere25e47e2014-07-06 02:23:03 +0200289#define CRYPTO_DRBG_CTR_STRING "CTR "
Stephan Mueller0653a7c2014-11-25 09:28:43 +0100290MODULE_ALIAS_CRYPTO("drbg_pr_ctr_aes256");
291MODULE_ALIAS_CRYPTO("drbg_nopr_ctr_aes256");
292MODULE_ALIAS_CRYPTO("drbg_pr_ctr_aes192");
293MODULE_ALIAS_CRYPTO("drbg_nopr_ctr_aes192");
294MODULE_ALIAS_CRYPTO("drbg_pr_ctr_aes128");
295MODULE_ALIAS_CRYPTO("drbg_nopr_ctr_aes128");
Stephan Mueller62b62b62014-11-04 03:08:09 +0100296
Stephan Mueller541af942014-05-31 15:44:17 +0200297static int drbg_kcapi_sym(struct drbg_state *drbg, const unsigned char *key,
298 unsigned char *outval, const struct drbg_string *in);
299static int drbg_init_sym_kernel(struct drbg_state *drbg);
300static int drbg_fini_sym_kernel(struct drbg_state *drbg);
301
302/* BCC function for CTR DRBG as defined in 10.4.3 */
303static int drbg_ctr_bcc(struct drbg_state *drbg,
304 unsigned char *out, const unsigned char *key,
Stephan Mueller8c987162014-06-28 21:58:24 +0200305 struct list_head *in)
Stephan Mueller541af942014-05-31 15:44:17 +0200306{
Stephan Mueller8c987162014-06-28 21:58:24 +0200307 int ret = 0;
308 struct drbg_string *curr = NULL;
Stephan Mueller541af942014-05-31 15:44:17 +0200309 struct drbg_string data;
Stephan Mueller8c987162014-06-28 21:58:24 +0200310 short cnt = 0;
Stephan Mueller541af942014-05-31 15:44:17 +0200311
312 drbg_string_fill(&data, out, drbg_blocklen(drbg));
313
Stephan Mueller541af942014-05-31 15:44:17 +0200314 /* 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));
Stephan Mueller541af942014-05-31 15:44:17 +0200409
410 /* 10.4.2 step 1 is implicit as we work byte-wise */
411
412 /* 10.4.2 step 2 */
413 if ((512/8) < bytes_to_return)
414 return -EINVAL;
415
416 /* 10.4.2 step 2 -- calculate the entire length of all input data */
Stephan Mueller8c987162014-06-28 21:58:24 +0200417 list_for_each_entry(seed, seedlist, list)
418 inputlen += seed->len;
Stephan Mueller72f3e002014-08-17 17:37:34 +0200419 drbg_cpu_to_be32(inputlen, &L_N[0]);
Stephan Mueller541af942014-05-31 15:44:17 +0200420
421 /* 10.4.2 step 3 */
Stephan Mueller72f3e002014-08-17 17:37:34 +0200422 drbg_cpu_to_be32(bytes_to_return, &L_N[4]);
Stephan Mueller541af942014-05-31 15:44:17 +0200423
424 /* 10.4.2 step 5: length is L_N, input_string, one byte, padding */
425 padlen = (inputlen + sizeof(L_N) + 1) % (drbg_blocklen(drbg));
426 /* wrap the padlen appropriately */
427 if (padlen)
428 padlen = drbg_blocklen(drbg) - padlen;
429 /*
430 * pad / padlen contains the 0x80 byte and the following zero bytes.
431 * As the calculated padlen value only covers the number of zero
432 * bytes, this value has to be incremented by one for the 0x80 byte.
433 */
434 padlen++;
435 pad[0] = 0x80;
436
437 /* 10.4.2 step 4 -- first fill the linked list and then order it */
438 drbg_string_fill(&S1, iv, drbg_blocklen(drbg));
Stephan Mueller8c987162014-06-28 21:58:24 +0200439 list_add_tail(&S1.list, &bcc_list);
Stephan Mueller541af942014-05-31 15:44:17 +0200440 drbg_string_fill(&S2, L_N, sizeof(L_N));
Stephan Mueller8c987162014-06-28 21:58:24 +0200441 list_add_tail(&S2.list, &bcc_list);
442 list_splice_tail(seedlist, &bcc_list);
Stephan Mueller541af942014-05-31 15:44:17 +0200443 drbg_string_fill(&S4, pad, padlen);
Stephan Mueller8c987162014-06-28 21:58:24 +0200444 list_add_tail(&S4.list, &bcc_list);
Stephan Mueller541af942014-05-31 15:44:17 +0200445
446 /* 10.4.2 step 9 */
447 while (templen < (drbg_keylen(drbg) + (drbg_blocklen(drbg)))) {
448 /*
449 * 10.4.2 step 9.1 - the padding is implicit as the buffer
450 * holds zeros after allocation -- even the increment of i
451 * is irrelevant as the increment remains within length of i
452 */
Stephan Mueller72f3e002014-08-17 17:37:34 +0200453 drbg_cpu_to_be32(i, iv);
Stephan Mueller541af942014-05-31 15:44:17 +0200454 /* 10.4.2 step 9.2 -- BCC and concatenation with temp */
Stephan Mueller8c987162014-06-28 21:58:24 +0200455 ret = drbg_ctr_bcc(drbg, temp + templen, K, &bcc_list);
Stephan Mueller541af942014-05-31 15:44:17 +0200456 if (ret)
457 goto out;
458 /* 10.4.2 step 9.3 */
459 i++;
460 templen += drbg_blocklen(drbg);
461 }
462
463 /* 10.4.2 step 11 */
464 X = temp + (drbg_keylen(drbg));
465 drbg_string_fill(&cipherin, X, drbg_blocklen(drbg));
466
467 /* 10.4.2 step 12: overwriting of outval is implemented in next step */
468
469 /* 10.4.2 step 13 */
470 while (generated_len < bytes_to_return) {
471 short blocklen = 0;
472 /*
473 * 10.4.2 step 13.1: the truncation of the key length is
474 * implicit as the key is only drbg_blocklen in size based on
475 * the implementation of the cipher function callback
476 */
477 ret = drbg_kcapi_sym(drbg, temp, X, &cipherin);
478 if (ret)
479 goto out;
480 blocklen = (drbg_blocklen(drbg) <
481 (bytes_to_return - generated_len)) ?
482 drbg_blocklen(drbg) :
483 (bytes_to_return - generated_len);
484 /* 10.4.2 step 13.2 and 14 */
485 memcpy(df_data + generated_len, X, blocklen);
486 generated_len += blocklen;
487 }
488
489 ret = 0;
490
491out:
Herbert Xu1471f092015-01-05 10:44:09 +1100492 memset(iv, 0, drbg_blocklen(drbg));
Stephan Mueller8e0498d2015-04-17 14:54:08 +0200493 memset(temp, 0, drbg_statelen(drbg) + drbg_blocklen(drbg));
Herbert Xu1471f092015-01-05 10:44:09 +1100494 memset(pad, 0, drbg_blocklen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200495 return ret;
496}
497
Stephan Mueller72e7c252014-07-06 02:24:35 +0200498/*
499 * update function of CTR DRBG as defined in 10.2.1.2
500 *
501 * The reseed variable has an enhanced meaning compared to the update
502 * functions of the other DRBGs as follows:
503 * 0 => initial seed from initialization
504 * 1 => reseed via drbg_seed
505 * 2 => first invocation from drbg_ctr_update when addtl is present. In
506 * this case, the df_data scratchpad is not deleted so that it is
507 * available for another calls to prevent calling the DF function
508 * again.
509 * 3 => second invocation from drbg_ctr_update. When the update function
510 * was called with addtl, the df_data memory already contains the
511 * DFed addtl information and we do not need to call DF again.
512 */
Stephan Mueller8c987162014-06-28 21:58:24 +0200513static int drbg_ctr_update(struct drbg_state *drbg, struct list_head *seed,
514 int reseed)
Stephan Mueller541af942014-05-31 15:44:17 +0200515{
516 int ret = -EFAULT;
517 /* 10.2.1.2 step 1 */
518 unsigned char *temp = drbg->scratchpad;
519 unsigned char *df_data = drbg->scratchpad + drbg_statelen(drbg) +
520 drbg_blocklen(drbg);
521 unsigned char *temp_p, *df_data_p; /* pointer to iterate over buffers */
522 unsigned int len = 0;
523 struct drbg_string cipherin;
Stephan Mueller541af942014-05-31 15:44:17 +0200524
Stephan Mueller72e7c252014-07-06 02:24:35 +0200525 if (3 > reseed)
526 memset(df_data, 0, drbg_statelen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200527
528 /* 10.2.1.3.2 step 2 and 10.2.1.4.2 step 2 */
Stephan Mueller8c987162014-06-28 21:58:24 +0200529 if (seed) {
530 ret = drbg_ctr_df(drbg, df_data, drbg_statelen(drbg), seed);
Stephan Mueller541af942014-05-31 15:44:17 +0200531 if (ret)
532 goto out;
533 }
534
535 drbg_string_fill(&cipherin, drbg->V, drbg_blocklen(drbg));
536 /*
537 * 10.2.1.3.2 steps 2 and 3 are already covered as the allocation
538 * zeroizes all memory during initialization
539 */
540 while (len < (drbg_statelen(drbg))) {
541 /* 10.2.1.2 step 2.1 */
Stephan Mueller41a84982014-10-14 21:50:13 +0200542 crypto_inc(drbg->V, drbg_blocklen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200543 /*
544 * 10.2.1.2 step 2.2 */
545 ret = drbg_kcapi_sym(drbg, drbg->C, temp + len, &cipherin);
546 if (ret)
547 goto out;
548 /* 10.2.1.2 step 2.3 and 3 */
549 len += drbg_blocklen(drbg);
550 }
551
552 /* 10.2.1.2 step 4 */
553 temp_p = temp;
554 df_data_p = df_data;
555 for (len = 0; len < drbg_statelen(drbg); len++) {
556 *temp_p ^= *df_data_p;
557 df_data_p++; temp_p++;
558 }
559
560 /* 10.2.1.2 step 5 */
561 memcpy(drbg->C, temp, drbg_keylen(drbg));
562 /* 10.2.1.2 step 6 */
563 memcpy(drbg->V, temp + drbg_keylen(drbg), drbg_blocklen(drbg));
564 ret = 0;
565
566out:
Herbert Xu1471f092015-01-05 10:44:09 +1100567 memset(temp, 0, drbg_statelen(drbg) + drbg_blocklen(drbg));
Stephan Mueller72e7c252014-07-06 02:24:35 +0200568 if (2 != reseed)
Herbert Xu1471f092015-01-05 10:44:09 +1100569 memset(df_data, 0, drbg_statelen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200570 return ret;
571}
572
573/*
574 * scratchpad use: drbg_ctr_update is called independently from
575 * drbg_ctr_extract_bytes. Therefore, the scratchpad is reused
576 */
577/* Generate function of CTR DRBG as defined in 10.2.1.5.2 */
578static int drbg_ctr_generate(struct drbg_state *drbg,
579 unsigned char *buf, unsigned int buflen,
Stephan Mueller27e4de22014-07-06 02:25:36 +0200580 struct list_head *addtl)
Stephan Mueller541af942014-05-31 15:44:17 +0200581{
582 int len = 0;
583 int ret = 0;
584 struct drbg_string data;
Stephan Mueller541af942014-05-31 15:44:17 +0200585
Stephan Mueller541af942014-05-31 15:44:17 +0200586 /* 10.2.1.5.2 step 2 */
Stephan Mueller27e4de22014-07-06 02:25:36 +0200587 if (addtl && !list_empty(addtl)) {
588 ret = drbg_ctr_update(drbg, addtl, 2);
Stephan Mueller541af942014-05-31 15:44:17 +0200589 if (ret)
590 return 0;
591 }
592
593 /* 10.2.1.5.2 step 4.1 */
Stephan Mueller41a84982014-10-14 21:50:13 +0200594 crypto_inc(drbg->V, drbg_blocklen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200595 drbg_string_fill(&data, drbg->V, drbg_blocklen(drbg));
596 while (len < buflen) {
597 int outlen = 0;
598 /* 10.2.1.5.2 step 4.2 */
599 ret = drbg_kcapi_sym(drbg, drbg->C, drbg->scratchpad, &data);
600 if (ret) {
601 len = ret;
602 goto out;
603 }
604 outlen = (drbg_blocklen(drbg) < (buflen - len)) ?
605 drbg_blocklen(drbg) : (buflen - len);
606 if (!drbg_fips_continuous_test(drbg, drbg->scratchpad)) {
607 /* 10.2.1.5.2 step 6 */
Stephan Mueller41a84982014-10-14 21:50:13 +0200608 crypto_inc(drbg->V, drbg_blocklen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200609 continue;
610 }
611 /* 10.2.1.5.2 step 4.3 */
612 memcpy(buf + len, drbg->scratchpad, outlen);
613 len += outlen;
614 /* 10.2.1.5.2 step 6 */
615 if (len < buflen)
Stephan Mueller41a84982014-10-14 21:50:13 +0200616 crypto_inc(drbg->V, drbg_blocklen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200617 }
618
Stephan Mueller72e7c252014-07-06 02:24:35 +0200619 /* 10.2.1.5.2 step 6 */
620 ret = drbg_ctr_update(drbg, NULL, 3);
Stephan Mueller541af942014-05-31 15:44:17 +0200621 if (ret)
622 len = ret;
623
624out:
Herbert Xu1471f092015-01-05 10:44:09 +1100625 memset(drbg->scratchpad, 0, drbg_blocklen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200626 return len;
627}
628
629static struct drbg_state_ops drbg_ctr_ops = {
630 .update = drbg_ctr_update,
631 .generate = drbg_ctr_generate,
632 .crypto_init = drbg_init_sym_kernel,
633 .crypto_fini = drbg_fini_sym_kernel,
634};
635#endif /* CONFIG_CRYPTO_DRBG_CTR */
636
637/******************************************************************
638 * HMAC DRBG callback functions
639 ******************************************************************/
640
641#if defined(CONFIG_CRYPTO_DRBG_HASH) || defined(CONFIG_CRYPTO_DRBG_HMAC)
642static int drbg_kcapi_hash(struct drbg_state *drbg, const unsigned char *key,
Stephan Mueller8c987162014-06-28 21:58:24 +0200643 unsigned char *outval, const struct list_head *in);
Stephan Mueller541af942014-05-31 15:44:17 +0200644static int drbg_init_hash_kernel(struct drbg_state *drbg);
645static int drbg_fini_hash_kernel(struct drbg_state *drbg);
646#endif /* (CONFIG_CRYPTO_DRBG_HASH || CONFIG_CRYPTO_DRBG_HMAC) */
647
648#ifdef CONFIG_CRYPTO_DRBG_HMAC
Stephan Muellere25e47e2014-07-06 02:23:03 +0200649#define CRYPTO_DRBG_HMAC_STRING "HMAC "
Stephan Mueller0653a7c2014-11-25 09:28:43 +0100650MODULE_ALIAS_CRYPTO("drbg_pr_hmac_sha512");
651MODULE_ALIAS_CRYPTO("drbg_nopr_hmac_sha512");
652MODULE_ALIAS_CRYPTO("drbg_pr_hmac_sha384");
653MODULE_ALIAS_CRYPTO("drbg_nopr_hmac_sha384");
654MODULE_ALIAS_CRYPTO("drbg_pr_hmac_sha256");
655MODULE_ALIAS_CRYPTO("drbg_nopr_hmac_sha256");
656MODULE_ALIAS_CRYPTO("drbg_pr_hmac_sha1");
657MODULE_ALIAS_CRYPTO("drbg_nopr_hmac_sha1");
Stephan Mueller62b62b62014-11-04 03:08:09 +0100658
Stephan Mueller541af942014-05-31 15:44:17 +0200659/* update function of HMAC DRBG as defined in 10.1.2.2 */
Stephan Mueller8c987162014-06-28 21:58:24 +0200660static int drbg_hmac_update(struct drbg_state *drbg, struct list_head *seed,
661 int reseed)
Stephan Mueller541af942014-05-31 15:44:17 +0200662{
663 int ret = -EFAULT;
664 int i = 0;
Stephan Mueller8c987162014-06-28 21:58:24 +0200665 struct drbg_string seed1, seed2, vdata;
666 LIST_HEAD(seedlist);
667 LIST_HEAD(vdatalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200668
Stephan Muellerf072f0e2014-08-17 17:38:58 +0200669 if (!reseed)
670 /* 10.1.2.3 step 2 -- memset(0) of C is implicit with kzalloc */
Stephan Mueller541af942014-05-31 15:44:17 +0200671 memset(drbg->V, 1, drbg_statelen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200672
673 drbg_string_fill(&seed1, drbg->V, drbg_statelen(drbg));
Stephan Mueller8c987162014-06-28 21:58:24 +0200674 list_add_tail(&seed1.list, &seedlist);
Stephan Mueller541af942014-05-31 15:44:17 +0200675 /* buffer of seed2 will be filled in for loop below with one byte */
676 drbg_string_fill(&seed2, NULL, 1);
Stephan Mueller8c987162014-06-28 21:58:24 +0200677 list_add_tail(&seed2.list, &seedlist);
Stephan Mueller541af942014-05-31 15:44:17 +0200678 /* input data of seed is allowed to be NULL at this point */
Stephan Mueller8c987162014-06-28 21:58:24 +0200679 if (seed)
680 list_splice_tail(seed, &seedlist);
Stephan Mueller541af942014-05-31 15:44:17 +0200681
Stephan Mueller8c987162014-06-28 21:58:24 +0200682 drbg_string_fill(&vdata, drbg->V, drbg_statelen(drbg));
683 list_add_tail(&vdata.list, &vdatalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200684 for (i = 2; 0 < i; i--) {
685 /* first round uses 0x0, second 0x1 */
686 unsigned char prefix = DRBG_PREFIX0;
687 if (1 == i)
688 prefix = DRBG_PREFIX1;
689 /* 10.1.2.2 step 1 and 4 -- concatenation and HMAC for key */
690 seed2.buf = &prefix;
Stephan Mueller8c987162014-06-28 21:58:24 +0200691 ret = drbg_kcapi_hash(drbg, drbg->C, drbg->C, &seedlist);
Stephan Mueller541af942014-05-31 15:44:17 +0200692 if (ret)
693 return ret;
694
695 /* 10.1.2.2 step 2 and 5 -- HMAC for V */
Stephan Mueller8c987162014-06-28 21:58:24 +0200696 ret = drbg_kcapi_hash(drbg, drbg->C, drbg->V, &vdatalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200697 if (ret)
698 return ret;
699
700 /* 10.1.2.2 step 3 */
Stephan Mueller8c987162014-06-28 21:58:24 +0200701 if (!seed)
Stephan Mueller541af942014-05-31 15:44:17 +0200702 return ret;
703 }
704
705 return 0;
706}
707
708/* generate function of HMAC DRBG as defined in 10.1.2.5 */
709static int drbg_hmac_generate(struct drbg_state *drbg,
710 unsigned char *buf,
711 unsigned int buflen,
Stephan Mueller27e4de22014-07-06 02:25:36 +0200712 struct list_head *addtl)
Stephan Mueller541af942014-05-31 15:44:17 +0200713{
714 int len = 0;
715 int ret = 0;
716 struct drbg_string data;
Stephan Mueller8c987162014-06-28 21:58:24 +0200717 LIST_HEAD(datalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200718
719 /* 10.1.2.5 step 2 */
Stephan Mueller27e4de22014-07-06 02:25:36 +0200720 if (addtl && !list_empty(addtl)) {
721 ret = drbg_hmac_update(drbg, addtl, 1);
Stephan Mueller541af942014-05-31 15:44:17 +0200722 if (ret)
723 return ret;
724 }
725
726 drbg_string_fill(&data, drbg->V, drbg_statelen(drbg));
Stephan Mueller8c987162014-06-28 21:58:24 +0200727 list_add_tail(&data.list, &datalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200728 while (len < buflen) {
729 unsigned int outlen = 0;
730 /* 10.1.2.5 step 4.1 */
Stephan Mueller8c987162014-06-28 21:58:24 +0200731 ret = drbg_kcapi_hash(drbg, drbg->C, drbg->V, &datalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200732 if (ret)
733 return ret;
734 outlen = (drbg_blocklen(drbg) < (buflen - len)) ?
735 drbg_blocklen(drbg) : (buflen - len);
736 if (!drbg_fips_continuous_test(drbg, drbg->V))
737 continue;
738
739 /* 10.1.2.5 step 4.2 */
740 memcpy(buf + len, drbg->V, outlen);
741 len += outlen;
742 }
743
744 /* 10.1.2.5 step 6 */
Stephan Mueller27e4de22014-07-06 02:25:36 +0200745 if (addtl && !list_empty(addtl))
746 ret = drbg_hmac_update(drbg, addtl, 1);
747 else
Stephan Mueller8c987162014-06-28 21:58:24 +0200748 ret = drbg_hmac_update(drbg, NULL, 1);
Stephan Mueller541af942014-05-31 15:44:17 +0200749 if (ret)
750 return ret;
751
752 return len;
753}
754
755static struct drbg_state_ops drbg_hmac_ops = {
756 .update = drbg_hmac_update,
757 .generate = drbg_hmac_generate,
758 .crypto_init = drbg_init_hash_kernel,
759 .crypto_fini = drbg_fini_hash_kernel,
Stephan Mueller541af942014-05-31 15:44:17 +0200760};
761#endif /* CONFIG_CRYPTO_DRBG_HMAC */
762
763/******************************************************************
764 * Hash DRBG callback functions
765 ******************************************************************/
766
767#ifdef CONFIG_CRYPTO_DRBG_HASH
Stephan Muellere25e47e2014-07-06 02:23:03 +0200768#define CRYPTO_DRBG_HASH_STRING "HASH "
Stephan Mueller0653a7c2014-11-25 09:28:43 +0100769MODULE_ALIAS_CRYPTO("drbg_pr_sha512");
770MODULE_ALIAS_CRYPTO("drbg_nopr_sha512");
771MODULE_ALIAS_CRYPTO("drbg_pr_sha384");
772MODULE_ALIAS_CRYPTO("drbg_nopr_sha384");
773MODULE_ALIAS_CRYPTO("drbg_pr_sha256");
774MODULE_ALIAS_CRYPTO("drbg_nopr_sha256");
775MODULE_ALIAS_CRYPTO("drbg_pr_sha1");
776MODULE_ALIAS_CRYPTO("drbg_nopr_sha1");
Stephan Mueller62b62b62014-11-04 03:08:09 +0100777
Stephan Mueller541af942014-05-31 15:44:17 +0200778/*
Stephan Mueller41a84982014-10-14 21:50:13 +0200779 * Increment buffer
780 *
781 * @dst buffer to increment
782 * @add value to add
783 */
784static inline void drbg_add_buf(unsigned char *dst, size_t dstlen,
785 const unsigned char *add, size_t addlen)
786{
787 /* implied: dstlen > addlen */
788 unsigned char *dstptr;
789 const unsigned char *addptr;
790 unsigned int remainder = 0;
791 size_t len = addlen;
792
793 dstptr = dst + (dstlen-1);
794 addptr = add + (addlen-1);
795 while (len) {
796 remainder += *dstptr + *addptr;
797 *dstptr = remainder & 0xff;
798 remainder >>= 8;
799 len--; dstptr--; addptr--;
800 }
801 len = dstlen - addlen;
802 while (len && remainder > 0) {
803 remainder = *dstptr + 1;
804 *dstptr = remainder & 0xff;
805 remainder >>= 8;
806 len--; dstptr--;
807 }
808}
809
810/*
Stephan Mueller541af942014-05-31 15:44:17 +0200811 * scratchpad usage: as drbg_hash_update and drbg_hash_df are used
812 * interlinked, the scratchpad is used as follows:
813 * drbg_hash_update
814 * start: drbg->scratchpad
815 * length: drbg_statelen(drbg)
816 * drbg_hash_df:
817 * start: drbg->scratchpad + drbg_statelen(drbg)
818 * length: drbg_blocklen(drbg)
819 *
820 * drbg_hash_process_addtl uses the scratchpad, but fully completes
821 * before either of the functions mentioned before are invoked. Therefore,
822 * drbg_hash_process_addtl does not need to be specifically considered.
823 */
824
825/* Derivation Function for Hash DRBG as defined in 10.4.1 */
826static int drbg_hash_df(struct drbg_state *drbg,
827 unsigned char *outval, size_t outlen,
Stephan Mueller8c987162014-06-28 21:58:24 +0200828 struct list_head *entropylist)
Stephan Mueller541af942014-05-31 15:44:17 +0200829{
830 int ret = 0;
831 size_t len = 0;
832 unsigned char input[5];
833 unsigned char *tmp = drbg->scratchpad + drbg_statelen(drbg);
Stephan Mueller8c987162014-06-28 21:58:24 +0200834 struct drbg_string data;
Stephan Mueller541af942014-05-31 15:44:17 +0200835
Stephan Mueller541af942014-05-31 15:44:17 +0200836 /* 10.4.1 step 3 */
837 input[0] = 1;
Stephan Mueller72f3e002014-08-17 17:37:34 +0200838 drbg_cpu_to_be32((outlen * 8), &input[1]);
Stephan Mueller541af942014-05-31 15:44:17 +0200839
840 /* 10.4.1 step 4.1 -- concatenation of data for input into hash */
Stephan Mueller8c987162014-06-28 21:58:24 +0200841 drbg_string_fill(&data, input, 5);
842 list_add(&data.list, entropylist);
Stephan Mueller541af942014-05-31 15:44:17 +0200843
844 /* 10.4.1 step 4 */
845 while (len < outlen) {
846 short blocklen = 0;
847 /* 10.4.1 step 4.1 */
Stephan Mueller8c987162014-06-28 21:58:24 +0200848 ret = drbg_kcapi_hash(drbg, NULL, tmp, entropylist);
Stephan Mueller541af942014-05-31 15:44:17 +0200849 if (ret)
850 goto out;
851 /* 10.4.1 step 4.2 */
852 input[0]++;
853 blocklen = (drbg_blocklen(drbg) < (outlen - len)) ?
854 drbg_blocklen(drbg) : (outlen - len);
855 memcpy(outval + len, tmp, blocklen);
856 len += blocklen;
857 }
858
859out:
Herbert Xu1471f092015-01-05 10:44:09 +1100860 memset(tmp, 0, drbg_blocklen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200861 return ret;
862}
863
864/* update function for Hash DRBG as defined in 10.1.1.2 / 10.1.1.3 */
Stephan Mueller8c987162014-06-28 21:58:24 +0200865static int drbg_hash_update(struct drbg_state *drbg, struct list_head *seed,
Stephan Mueller541af942014-05-31 15:44:17 +0200866 int reseed)
867{
868 int ret = 0;
869 struct drbg_string data1, data2;
Stephan Mueller8c987162014-06-28 21:58:24 +0200870 LIST_HEAD(datalist);
871 LIST_HEAD(datalist2);
Stephan Mueller541af942014-05-31 15:44:17 +0200872 unsigned char *V = drbg->scratchpad;
873 unsigned char prefix = DRBG_PREFIX1;
874
Stephan Mueller541af942014-05-31 15:44:17 +0200875 if (!seed)
876 return -EINVAL;
877
878 if (reseed) {
879 /* 10.1.1.3 step 1 */
880 memcpy(V, drbg->V, drbg_statelen(drbg));
881 drbg_string_fill(&data1, &prefix, 1);
Stephan Mueller8c987162014-06-28 21:58:24 +0200882 list_add_tail(&data1.list, &datalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200883 drbg_string_fill(&data2, V, drbg_statelen(drbg));
Stephan Mueller8c987162014-06-28 21:58:24 +0200884 list_add_tail(&data2.list, &datalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200885 }
Stephan Mueller8c987162014-06-28 21:58:24 +0200886 list_splice_tail(seed, &datalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200887
888 /* 10.1.1.2 / 10.1.1.3 step 2 and 3 */
Stephan Mueller8c987162014-06-28 21:58:24 +0200889 ret = drbg_hash_df(drbg, drbg->V, drbg_statelen(drbg), &datalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200890 if (ret)
891 goto out;
892
893 /* 10.1.1.2 / 10.1.1.3 step 4 */
894 prefix = DRBG_PREFIX0;
895 drbg_string_fill(&data1, &prefix, 1);
Stephan Mueller8c987162014-06-28 21:58:24 +0200896 list_add_tail(&data1.list, &datalist2);
Stephan Mueller541af942014-05-31 15:44:17 +0200897 drbg_string_fill(&data2, drbg->V, drbg_statelen(drbg));
Stephan Mueller8c987162014-06-28 21:58:24 +0200898 list_add_tail(&data2.list, &datalist2);
Stephan Mueller541af942014-05-31 15:44:17 +0200899 /* 10.1.1.2 / 10.1.1.3 step 4 */
Stephan Mueller8c987162014-06-28 21:58:24 +0200900 ret = drbg_hash_df(drbg, drbg->C, drbg_statelen(drbg), &datalist2);
Stephan Mueller541af942014-05-31 15:44:17 +0200901
902out:
Herbert Xu1471f092015-01-05 10:44:09 +1100903 memset(drbg->scratchpad, 0, drbg_statelen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200904 return ret;
905}
906
907/* processing of additional information string for Hash DRBG */
908static int drbg_hash_process_addtl(struct drbg_state *drbg,
Stephan Mueller27e4de22014-07-06 02:25:36 +0200909 struct list_head *addtl)
Stephan Mueller541af942014-05-31 15:44:17 +0200910{
911 int ret = 0;
912 struct drbg_string data1, data2;
Stephan Mueller8c987162014-06-28 21:58:24 +0200913 LIST_HEAD(datalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200914 unsigned char prefix = DRBG_PREFIX2;
915
Stephan Mueller541af942014-05-31 15:44:17 +0200916 /* 10.1.1.4 step 2 */
Stephan Mueller27e4de22014-07-06 02:25:36 +0200917 if (!addtl || list_empty(addtl))
Stephan Mueller541af942014-05-31 15:44:17 +0200918 return 0;
919
920 /* 10.1.1.4 step 2a */
921 drbg_string_fill(&data1, &prefix, 1);
922 drbg_string_fill(&data2, drbg->V, drbg_statelen(drbg));
Stephan Mueller8c987162014-06-28 21:58:24 +0200923 list_add_tail(&data1.list, &datalist);
924 list_add_tail(&data2.list, &datalist);
Stephan Mueller27e4de22014-07-06 02:25:36 +0200925 list_splice_tail(addtl, &datalist);
Stephan Mueller8c987162014-06-28 21:58:24 +0200926 ret = drbg_kcapi_hash(drbg, NULL, drbg->scratchpad, &datalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200927 if (ret)
928 goto out;
929
930 /* 10.1.1.4 step 2b */
931 drbg_add_buf(drbg->V, drbg_statelen(drbg),
932 drbg->scratchpad, drbg_blocklen(drbg));
933
934out:
Herbert Xu1471f092015-01-05 10:44:09 +1100935 memset(drbg->scratchpad, 0, drbg_blocklen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200936 return ret;
937}
938
939/* Hashgen defined in 10.1.1.4 */
940static int drbg_hash_hashgen(struct drbg_state *drbg,
941 unsigned char *buf,
942 unsigned int buflen)
943{
944 int len = 0;
945 int ret = 0;
946 unsigned char *src = drbg->scratchpad;
947 unsigned char *dst = drbg->scratchpad + drbg_statelen(drbg);
948 struct drbg_string data;
Stephan Mueller8c987162014-06-28 21:58:24 +0200949 LIST_HEAD(datalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200950
Stephan Mueller541af942014-05-31 15:44:17 +0200951 /* 10.1.1.4 step hashgen 2 */
952 memcpy(src, drbg->V, drbg_statelen(drbg));
953
954 drbg_string_fill(&data, src, drbg_statelen(drbg));
Stephan Mueller8c987162014-06-28 21:58:24 +0200955 list_add_tail(&data.list, &datalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200956 while (len < buflen) {
957 unsigned int outlen = 0;
958 /* 10.1.1.4 step hashgen 4.1 */
Stephan Mueller8c987162014-06-28 21:58:24 +0200959 ret = drbg_kcapi_hash(drbg, NULL, dst, &datalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200960 if (ret) {
961 len = ret;
962 goto out;
963 }
964 outlen = (drbg_blocklen(drbg) < (buflen - len)) ?
965 drbg_blocklen(drbg) : (buflen - len);
966 if (!drbg_fips_continuous_test(drbg, dst)) {
Stephan Mueller41a84982014-10-14 21:50:13 +0200967 crypto_inc(src, drbg_statelen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200968 continue;
969 }
970 /* 10.1.1.4 step hashgen 4.2 */
971 memcpy(buf + len, dst, outlen);
972 len += outlen;
973 /* 10.1.1.4 hashgen step 4.3 */
974 if (len < buflen)
Stephan Mueller41a84982014-10-14 21:50:13 +0200975 crypto_inc(src, drbg_statelen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +0200976 }
977
978out:
Herbert Xu1471f092015-01-05 10:44:09 +1100979 memset(drbg->scratchpad, 0,
Stephan Mueller541af942014-05-31 15:44:17 +0200980 (drbg_statelen(drbg) + drbg_blocklen(drbg)));
981 return len;
982}
983
984/* generate function for Hash DRBG as defined in 10.1.1.4 */
985static int drbg_hash_generate(struct drbg_state *drbg,
986 unsigned char *buf, unsigned int buflen,
Stephan Mueller27e4de22014-07-06 02:25:36 +0200987 struct list_head *addtl)
Stephan Mueller541af942014-05-31 15:44:17 +0200988{
989 int len = 0;
990 int ret = 0;
Stephan Mueller72f3e002014-08-17 17:37:34 +0200991 union {
992 unsigned char req[8];
Stephan Mueller7c8ae032014-08-26 09:32:24 +0200993 __be64 req_int;
Stephan Mueller72f3e002014-08-17 17:37:34 +0200994 } u;
Stephan Mueller541af942014-05-31 15:44:17 +0200995 unsigned char prefix = DRBG_PREFIX3;
996 struct drbg_string data1, data2;
Stephan Mueller8c987162014-06-28 21:58:24 +0200997 LIST_HEAD(datalist);
Stephan Mueller541af942014-05-31 15:44:17 +0200998
999 /* 10.1.1.4 step 2 */
1000 ret = drbg_hash_process_addtl(drbg, addtl);
1001 if (ret)
1002 return ret;
1003 /* 10.1.1.4 step 3 */
1004 len = drbg_hash_hashgen(drbg, buf, buflen);
1005
1006 /* this is the value H as documented in 10.1.1.4 */
Stephan Mueller541af942014-05-31 15:44:17 +02001007 /* 10.1.1.4 step 4 */
1008 drbg_string_fill(&data1, &prefix, 1);
Stephan Mueller8c987162014-06-28 21:58:24 +02001009 list_add_tail(&data1.list, &datalist);
Stephan Mueller541af942014-05-31 15:44:17 +02001010 drbg_string_fill(&data2, drbg->V, drbg_statelen(drbg));
Stephan Mueller8c987162014-06-28 21:58:24 +02001011 list_add_tail(&data2.list, &datalist);
1012 ret = drbg_kcapi_hash(drbg, NULL, drbg->scratchpad, &datalist);
Stephan Mueller541af942014-05-31 15:44:17 +02001013 if (ret) {
1014 len = ret;
1015 goto out;
1016 }
1017
1018 /* 10.1.1.4 step 5 */
1019 drbg_add_buf(drbg->V, drbg_statelen(drbg),
1020 drbg->scratchpad, drbg_blocklen(drbg));
1021 drbg_add_buf(drbg->V, drbg_statelen(drbg),
1022 drbg->C, drbg_statelen(drbg));
Stephan Mueller72f3e002014-08-17 17:37:34 +02001023 u.req_int = cpu_to_be64(drbg->reseed_ctr);
1024 drbg_add_buf(drbg->V, drbg_statelen(drbg), u.req, 8);
Stephan Mueller541af942014-05-31 15:44:17 +02001025
1026out:
Herbert Xu1471f092015-01-05 10:44:09 +11001027 memset(drbg->scratchpad, 0, drbg_blocklen(drbg));
Stephan Mueller541af942014-05-31 15:44:17 +02001028 return len;
1029}
1030
1031/*
1032 * scratchpad usage: as update and generate are used isolated, both
1033 * can use the scratchpad
1034 */
1035static struct drbg_state_ops drbg_hash_ops = {
1036 .update = drbg_hash_update,
1037 .generate = drbg_hash_generate,
1038 .crypto_init = drbg_init_hash_kernel,
1039 .crypto_fini = drbg_fini_hash_kernel,
1040};
1041#endif /* CONFIG_CRYPTO_DRBG_HASH */
1042
1043/******************************************************************
1044 * Functions common for DRBG implementations
1045 ******************************************************************/
1046
Stephan Mueller3d6a5f72015-05-25 15:09:14 +02001047static inline int __drbg_seed(struct drbg_state *drbg, struct list_head *seed,
1048 int reseed)
1049{
1050 int ret = drbg->d_ops->update(drbg, seed, reseed);
1051
1052 if (ret)
1053 return ret;
1054
1055 drbg->seeded = true;
1056 /* 10.1.1.2 / 10.1.1.3 step 5 */
1057 drbg->reseed_ctr = 1;
1058
1059 return ret;
1060}
1061
Stephan Mueller4c787992015-05-25 15:09:36 +02001062static void drbg_async_seed(struct work_struct *work)
1063{
1064 struct drbg_string data;
1065 LIST_HEAD(seedlist);
1066 struct drbg_state *drbg = container_of(work, struct drbg_state,
1067 seed_work);
Stephan Mueller57225e62015-06-09 21:55:38 +08001068 unsigned int entropylen = drbg_sec_strength(drbg->core->flags);
1069 unsigned char entropy[32];
Stephan Mueller4c787992015-05-25 15:09:36 +02001070
Stephan Mueller57225e62015-06-09 21:55:38 +08001071 BUG_ON(!entropylen);
1072 BUG_ON(entropylen > sizeof(entropy));
1073 get_random_bytes(entropy, entropylen);
Stephan Mueller4c787992015-05-25 15:09:36 +02001074
Stephan Mueller57225e62015-06-09 21:55:38 +08001075 drbg_string_fill(&data, entropy, entropylen);
Stephan Mueller4c787992015-05-25 15:09:36 +02001076 list_add_tail(&data.list, &seedlist);
Stephan Mueller57225e62015-06-09 21:55:38 +08001077
Stephan Mueller4c787992015-05-25 15:09:36 +02001078 mutex_lock(&drbg->drbg_mutex);
Stephan Mueller57225e62015-06-09 21:55:38 +08001079
1080 /* If nonblocking pool is initialized, deactivate Jitter RNG */
1081 crypto_free_rng(drbg->jent);
1082 drbg->jent = NULL;
1083
1084 /* Set seeded to false so that if __drbg_seed fails the
1085 * next generate call will trigger a reseed.
1086 */
1087 drbg->seeded = false;
1088
1089 __drbg_seed(drbg, &seedlist, true);
1090
Stephan Mueller42ea5072015-06-10 03:33:37 +02001091 if (drbg->seeded)
1092 drbg->reseed_threshold = drbg_max_requests(drbg);
1093
Stephan Mueller4c787992015-05-25 15:09:36 +02001094 mutex_unlock(&drbg->drbg_mutex);
Stephan Mueller57225e62015-06-09 21:55:38 +08001095
1096 memzero_explicit(entropy, entropylen);
Stephan Mueller4c787992015-05-25 15:09:36 +02001097}
1098
Stephan Mueller541af942014-05-31 15:44:17 +02001099/*
1100 * Seeding or reseeding of the DRBG
1101 *
1102 * @drbg: DRBG state struct
1103 * @pers: personalization / additional information buffer
1104 * @reseed: 0 for initial seed process, 1 for reseeding
1105 *
1106 * return:
1107 * 0 on success
1108 * error value otherwise
1109 */
1110static int drbg_seed(struct drbg_state *drbg, struct drbg_string *pers,
1111 bool reseed)
1112{
Stephan Mueller57225e62015-06-09 21:55:38 +08001113 int ret;
1114 unsigned char entropy[((32 + 16) * 2)];
1115 unsigned int entropylen = drbg_sec_strength(drbg->core->flags);
Stephan Mueller541af942014-05-31 15:44:17 +02001116 struct drbg_string data1;
Stephan Mueller8c987162014-06-28 21:58:24 +02001117 LIST_HEAD(seedlist);
Stephan Mueller541af942014-05-31 15:44:17 +02001118
1119 /* 9.1 / 9.2 / 9.3.1 step 3 */
1120 if (pers && pers->len > (drbg_max_addtl(drbg))) {
Stephan Muellera9089572014-07-06 02:24:03 +02001121 pr_devel("DRBG: personalization string too long %zu\n",
Stephan Mueller541af942014-05-31 15:44:17 +02001122 pers->len);
1123 return -EINVAL;
1124 }
1125
Herbert Xu8fded592015-04-21 10:46:41 +08001126 if (list_empty(&drbg->test_data.list)) {
1127 drbg_string_fill(&data1, drbg->test_data.buf,
1128 drbg->test_data.len);
Stephan Mueller541af942014-05-31 15:44:17 +02001129 pr_devel("DRBG: using test entropy\n");
1130 } else {
Stephan Mueller57225e62015-06-09 21:55:38 +08001131 /*
1132 * Gather entropy equal to the security strength of the DRBG.
1133 * With a derivation function, a nonce is required in addition
1134 * to the entropy. A nonce must be at least 1/2 of the security
1135 * strength of the DRBG in size. Thus, entropy + nonce is 3/2
1136 * of the strength. The consideration of a nonce is only
1137 * applicable during initial seeding.
1138 */
1139 BUG_ON(!entropylen);
1140 if (!reseed)
1141 entropylen = ((entropylen + 1) / 2) * 3;
1142 BUG_ON((entropylen * 2) > sizeof(entropy));
Stephan Muellerb8ec5ba2015-05-25 15:09:59 +02001143
Stephan Mueller57225e62015-06-09 21:55:38 +08001144 /* Get seed from in-kernel /dev/urandom */
1145 get_random_bytes(entropy, entropylen);
1146
1147 if (!drbg->jent) {
1148 drbg_string_fill(&data1, entropy, entropylen);
1149 pr_devel("DRBG: (re)seeding with %u bytes of entropy\n",
1150 entropylen);
Stephan Muellerb8ec5ba2015-05-25 15:09:59 +02001151 } else {
Stephan Mueller57225e62015-06-09 21:55:38 +08001152 /* Get seed from Jitter RNG */
1153 ret = crypto_rng_get_bytes(drbg->jent,
1154 entropy + entropylen,
1155 entropylen);
1156 if (ret) {
1157 pr_devel("DRBG: jent failed with %d\n", ret);
1158 return ret;
1159 }
1160
1161 drbg_string_fill(&data1, entropy, entropylen * 2);
1162 pr_devel("DRBG: (re)seeding with %u bytes of entropy\n",
1163 entropylen * 2);
Stephan Muellerb8ec5ba2015-05-25 15:09:59 +02001164 }
Stephan Mueller541af942014-05-31 15:44:17 +02001165 }
Stephan Mueller8c987162014-06-28 21:58:24 +02001166 list_add_tail(&data1.list, &seedlist);
Stephan Mueller541af942014-05-31 15:44:17 +02001167
1168 /*
1169 * concatenation of entropy with personalization str / addtl input)
1170 * the variable pers is directly handed in by the caller, so check its
1171 * contents whether it is appropriate
1172 */
Stephan Mueller8c987162014-06-28 21:58:24 +02001173 if (pers && pers->buf && 0 < pers->len) {
1174 list_add_tail(&pers->list, &seedlist);
Stephan Mueller541af942014-05-31 15:44:17 +02001175 pr_devel("DRBG: using personalization string\n");
1176 }
1177
Stephan Muellere6c02442014-08-17 17:39:31 +02001178 if (!reseed) {
1179 memset(drbg->V, 0, drbg_statelen(drbg));
1180 memset(drbg->C, 0, drbg_statelen(drbg));
1181 }
1182
Stephan Mueller3d6a5f72015-05-25 15:09:14 +02001183 ret = __drbg_seed(drbg, &seedlist, reseed);
1184
Stephan Mueller57225e62015-06-09 21:55:38 +08001185 memzero_explicit(entropy, entropylen * 2);
Stephan Mueller541af942014-05-31 15:44:17 +02001186
Stephan Mueller541af942014-05-31 15:44:17 +02001187 return ret;
1188}
1189
1190/* Free all substructures in a DRBG state without the DRBG state structure */
1191static inline void drbg_dealloc_state(struct drbg_state *drbg)
1192{
1193 if (!drbg)
1194 return;
Stephan Mueller46f64f62014-08-17 17:37:59 +02001195 kzfree(drbg->V);
Stephan Mueller541af942014-05-31 15:44:17 +02001196 drbg->V = NULL;
Stephan Mueller46f64f62014-08-17 17:37:59 +02001197 kzfree(drbg->C);
Stephan Mueller541af942014-05-31 15:44:17 +02001198 drbg->C = NULL;
Stephan Mueller46f64f62014-08-17 17:37:59 +02001199 kzfree(drbg->scratchpad);
Stephan Mueller541af942014-05-31 15:44:17 +02001200 drbg->scratchpad = NULL;
1201 drbg->reseed_ctr = 0;
Herbert Xu2a57e422015-04-20 11:29:15 +08001202 drbg->d_ops = NULL;
1203 drbg->core = NULL;
Stephan Mueller541af942014-05-31 15:44:17 +02001204#ifdef CONFIG_CRYPTO_FIPS
Stephan Mueller46f64f62014-08-17 17:37:59 +02001205 kzfree(drbg->prev);
Stephan Mueller541af942014-05-31 15:44:17 +02001206 drbg->prev = NULL;
1207 drbg->fips_primed = false;
1208#endif
1209}
1210
1211/*
1212 * Allocate all sub-structures for a DRBG state.
1213 * The DRBG state structure must already be allocated.
1214 */
1215static inline int drbg_alloc_state(struct drbg_state *drbg)
1216{
1217 int ret = -ENOMEM;
1218 unsigned int sb_size = 0;
1219
Herbert Xu2a57e422015-04-20 11:29:15 +08001220 switch (drbg->core->flags & DRBG_TYPE_MASK) {
1221#ifdef CONFIG_CRYPTO_DRBG_HMAC
1222 case DRBG_HMAC:
1223 drbg->d_ops = &drbg_hmac_ops;
1224 break;
1225#endif /* CONFIG_CRYPTO_DRBG_HMAC */
1226#ifdef CONFIG_CRYPTO_DRBG_HASH
1227 case DRBG_HASH:
1228 drbg->d_ops = &drbg_hash_ops;
1229 break;
1230#endif /* CONFIG_CRYPTO_DRBG_HASH */
1231#ifdef CONFIG_CRYPTO_DRBG_CTR
1232 case DRBG_CTR:
1233 drbg->d_ops = &drbg_ctr_ops;
1234 break;
1235#endif /* CONFIG_CRYPTO_DRBG_CTR */
1236 default:
1237 ret = -EOPNOTSUPP;
1238 goto err;
1239 }
1240
Stephan Muellere6c02442014-08-17 17:39:31 +02001241 drbg->V = kmalloc(drbg_statelen(drbg), GFP_KERNEL);
Stephan Mueller541af942014-05-31 15:44:17 +02001242 if (!drbg->V)
1243 goto err;
Stephan Muellere6c02442014-08-17 17:39:31 +02001244 drbg->C = kmalloc(drbg_statelen(drbg), GFP_KERNEL);
Stephan Mueller541af942014-05-31 15:44:17 +02001245 if (!drbg->C)
1246 goto err;
1247#ifdef CONFIG_CRYPTO_FIPS
Stephan Muellere6c02442014-08-17 17:39:31 +02001248 drbg->prev = kmalloc(drbg_blocklen(drbg), GFP_KERNEL);
Stephan Mueller541af942014-05-31 15:44:17 +02001249 if (!drbg->prev)
1250 goto err;
1251 drbg->fips_primed = false;
1252#endif
1253 /* scratchpad is only generated for CTR and Hash */
1254 if (drbg->core->flags & DRBG_HMAC)
1255 sb_size = 0;
1256 else if (drbg->core->flags & DRBG_CTR)
1257 sb_size = drbg_statelen(drbg) + drbg_blocklen(drbg) + /* temp */
1258 drbg_statelen(drbg) + /* df_data */
1259 drbg_blocklen(drbg) + /* pad */
1260 drbg_blocklen(drbg) + /* iv */
Stephan Mueller8fecaad2014-07-01 17:08:48 +02001261 drbg_statelen(drbg) + drbg_blocklen(drbg); /* temp */
Stephan Mueller541af942014-05-31 15:44:17 +02001262 else
1263 sb_size = drbg_statelen(drbg) + drbg_blocklen(drbg);
1264
1265 if (0 < sb_size) {
1266 drbg->scratchpad = kzalloc(sb_size, GFP_KERNEL);
1267 if (!drbg->scratchpad)
1268 goto err;
1269 }
Stephan Mueller3d6a5f72015-05-25 15:09:14 +02001270
Stephan Mueller541af942014-05-31 15:44:17 +02001271 return 0;
1272
1273err:
1274 drbg_dealloc_state(drbg);
1275 return ret;
1276}
1277
Stephan Mueller541af942014-05-31 15:44:17 +02001278/*************************************************************************
1279 * DRBG interface functions
1280 *************************************************************************/
1281
1282/*
1283 * DRBG generate function as required by SP800-90A - this function
1284 * generates random numbers
1285 *
1286 * @drbg DRBG state handle
1287 * @buf Buffer where to store the random numbers -- the buffer must already
1288 * be pre-allocated by caller
1289 * @buflen Length of output buffer - this value defines the number of random
1290 * bytes pulled from DRBG
1291 * @addtl Additional input that is mixed into state, may be NULL -- note
1292 * the entropy is pulled by the DRBG internally unconditionally
1293 * as defined in SP800-90A. The additional input is mixed into
1294 * the state in addition to the pulled entropy.
1295 *
Stephan Muellercde001e2015-03-06 08:26:31 +01001296 * return: 0 when all bytes are generated; < 0 in case of an error
Stephan Mueller541af942014-05-31 15:44:17 +02001297 */
1298static int drbg_generate(struct drbg_state *drbg,
1299 unsigned char *buf, unsigned int buflen,
1300 struct drbg_string *addtl)
1301{
1302 int len = 0;
Stephan Mueller27e4de22014-07-06 02:25:36 +02001303 LIST_HEAD(addtllist);
Stephan Mueller541af942014-05-31 15:44:17 +02001304
Herbert Xu2a57e422015-04-20 11:29:15 +08001305 if (!drbg->core) {
1306 pr_devel("DRBG: not yet seeded\n");
1307 return -EINVAL;
1308 }
Stephan Mueller541af942014-05-31 15:44:17 +02001309 if (0 == buflen || !buf) {
1310 pr_devel("DRBG: no output buffer provided\n");
1311 return -EINVAL;
1312 }
1313 if (addtl && NULL == addtl->buf && 0 < addtl->len) {
1314 pr_devel("DRBG: wrong format of additional information\n");
1315 return -EINVAL;
1316 }
1317
Stephan Mueller541af942014-05-31 15:44:17 +02001318 /* 9.3.1 step 2 */
1319 len = -EINVAL;
Stephan Mueller76899a42015-04-18 19:36:17 +02001320 if (buflen > (drbg_max_request_bytes(drbg))) {
Stephan Mueller541af942014-05-31 15:44:17 +02001321 pr_devel("DRBG: requested random numbers too large %u\n",
1322 buflen);
1323 goto err;
1324 }
1325
1326 /* 9.3.1 step 3 is implicit with the chosen DRBG */
1327
1328 /* 9.3.1 step 4 */
Stephan Mueller76899a42015-04-18 19:36:17 +02001329 if (addtl && addtl->len > (drbg_max_addtl(drbg))) {
Stephan Mueller541af942014-05-31 15:44:17 +02001330 pr_devel("DRBG: additional information string too long %zu\n",
1331 addtl->len);
1332 goto err;
1333 }
1334 /* 9.3.1 step 5 is implicit with the chosen DRBG */
1335
1336 /*
1337 * 9.3.1 step 6 and 9 supplemented by 9.3.2 step c is implemented
1338 * here. The spec is a bit convoluted here, we make it simpler.
1339 */
Stephan Mueller42ea5072015-06-10 03:33:37 +02001340 if (drbg->reseed_threshold < drbg->reseed_ctr)
Stephan Mueller76899a42015-04-18 19:36:17 +02001341 drbg->seeded = false;
Stephan Mueller541af942014-05-31 15:44:17 +02001342
Stephan Mueller76899a42015-04-18 19:36:17 +02001343 if (drbg->pr || !drbg->seeded) {
Stephan Mueller541af942014-05-31 15:44:17 +02001344 pr_devel("DRBG: reseeding before generation (prediction "
1345 "resistance: %s, state %s)\n",
1346 drbg->pr ? "true" : "false",
1347 drbg->seeded ? "seeded" : "unseeded");
1348 /* 9.3.1 steps 7.1 through 7.3 */
Stephan Mueller76899a42015-04-18 19:36:17 +02001349 len = drbg_seed(drbg, addtl, true);
Stephan Mueller541af942014-05-31 15:44:17 +02001350 if (len)
1351 goto err;
1352 /* 9.3.1 step 7.4 */
1353 addtl = NULL;
1354 }
Stephan Mueller27e4de22014-07-06 02:25:36 +02001355
Stephan Mueller27e4de22014-07-06 02:25:36 +02001356 if (addtl && 0 < addtl->len)
1357 list_add_tail(&addtl->list, &addtllist);
Stephan Mueller541af942014-05-31 15:44:17 +02001358 /* 9.3.1 step 8 and 10 */
Stephan Mueller76899a42015-04-18 19:36:17 +02001359 len = drbg->d_ops->generate(drbg, buf, buflen, &addtllist);
Stephan Mueller541af942014-05-31 15:44:17 +02001360
1361 /* 10.1.1.4 step 6, 10.1.2.5 step 7, 10.2.1.5.2 step 7 */
Stephan Mueller76899a42015-04-18 19:36:17 +02001362 drbg->reseed_ctr++;
Stephan Mueller541af942014-05-31 15:44:17 +02001363 if (0 >= len)
1364 goto err;
1365
1366 /*
1367 * Section 11.3.3 requires to re-perform self tests after some
1368 * generated random numbers. The chosen value after which self
1369 * test is performed is arbitrary, but it should be reasonable.
1370 * However, we do not perform the self tests because of the following
1371 * reasons: it is mathematically impossible that the initial self tests
1372 * were successfully and the following are not. If the initial would
1373 * pass and the following would not, the kernel integrity is violated.
1374 * In this case, the entire kernel operation is questionable and it
1375 * is unlikely that the integrity violation only affects the
1376 * correct operation of the DRBG.
1377 *
1378 * Albeit the following code is commented out, it is provided in
1379 * case somebody has a need to implement the test of 11.3.3.
1380 */
1381#if 0
Stephan Mueller76899a42015-04-18 19:36:17 +02001382 if (drbg->reseed_ctr && !(drbg->reseed_ctr % 4096)) {
Stephan Mueller541af942014-05-31 15:44:17 +02001383 int err = 0;
1384 pr_devel("DRBG: start to perform self test\n");
1385 if (drbg->core->flags & DRBG_HMAC)
1386 err = alg_test("drbg_pr_hmac_sha256",
1387 "drbg_pr_hmac_sha256", 0, 0);
1388 else if (drbg->core->flags & DRBG_CTR)
1389 err = alg_test("drbg_pr_ctr_aes128",
1390 "drbg_pr_ctr_aes128", 0, 0);
1391 else
1392 err = alg_test("drbg_pr_sha256",
1393 "drbg_pr_sha256", 0, 0);
1394 if (err) {
1395 pr_err("DRBG: periodical self test failed\n");
1396 /*
1397 * uninstantiate implies that from now on, only errors
1398 * are returned when reusing this DRBG cipher handle
1399 */
1400 drbg_uninstantiate(drbg);
Stephan Mueller541af942014-05-31 15:44:17 +02001401 return 0;
1402 } else {
1403 pr_devel("DRBG: self test successful\n");
1404 }
1405 }
1406#endif
1407
Stephan Muellercde001e2015-03-06 08:26:31 +01001408 /*
1409 * All operations were successful, return 0 as mandated by
1410 * the kernel crypto API interface.
1411 */
1412 len = 0;
Stephan Mueller541af942014-05-31 15:44:17 +02001413err:
Stephan Mueller541af942014-05-31 15:44:17 +02001414 return len;
1415}
1416
1417/*
1418 * Wrapper around drbg_generate which can pull arbitrary long strings
1419 * from the DRBG without hitting the maximum request limitation.
1420 *
1421 * Parameters: see drbg_generate
1422 * Return codes: see drbg_generate -- if one drbg_generate request fails,
1423 * the entire drbg_generate_long request fails
1424 */
1425static int drbg_generate_long(struct drbg_state *drbg,
1426 unsigned char *buf, unsigned int buflen,
1427 struct drbg_string *addtl)
1428{
Stephan Mueller082eb102015-04-18 19:35:45 +02001429 unsigned int len = 0;
Stephan Mueller541af942014-05-31 15:44:17 +02001430 unsigned int slice = 0;
1431 do {
Stephan Mueller082eb102015-04-18 19:35:45 +02001432 int err = 0;
Stephan Mueller541af942014-05-31 15:44:17 +02001433 unsigned int chunk = 0;
1434 slice = ((buflen - len) / drbg_max_request_bytes(drbg));
1435 chunk = slice ? drbg_max_request_bytes(drbg) : (buflen - len);
Stephan Mueller76899a42015-04-18 19:36:17 +02001436 mutex_lock(&drbg->drbg_mutex);
Stephan Mueller082eb102015-04-18 19:35:45 +02001437 err = drbg_generate(drbg, buf + len, chunk, addtl);
Stephan Mueller76899a42015-04-18 19:36:17 +02001438 mutex_unlock(&drbg->drbg_mutex);
Stephan Mueller082eb102015-04-18 19:35:45 +02001439 if (0 > err)
1440 return err;
1441 len += chunk;
Stephan Muellerce5481d2014-07-31 21:47:33 +02001442 } while (slice > 0 && (len < buflen));
Stephan Mueller082eb102015-04-18 19:35:45 +02001443 return 0;
Stephan Mueller541af942014-05-31 15:44:17 +02001444}
1445
Stephan Mueller57225e62015-06-09 21:55:38 +08001446static void drbg_schedule_async_seed(struct random_ready_callback *rdy)
1447{
1448 struct drbg_state *drbg = container_of(rdy, struct drbg_state,
1449 random_ready);
1450
1451 schedule_work(&drbg->seed_work);
1452}
1453
1454static int drbg_prepare_hrng(struct drbg_state *drbg)
1455{
1456 int err;
1457
1458 /* We do not need an HRNG in test mode. */
1459 if (list_empty(&drbg->test_data.list))
1460 return 0;
1461
1462 INIT_WORK(&drbg->seed_work, drbg_async_seed);
1463
1464 drbg->random_ready.owner = THIS_MODULE;
1465 drbg->random_ready.func = drbg_schedule_async_seed;
1466
1467 err = add_random_ready_callback(&drbg->random_ready);
1468
1469 switch (err) {
1470 case 0:
1471 break;
1472
1473 case -EALREADY:
1474 err = 0;
1475 /* fall through */
1476
1477 default:
1478 drbg->random_ready.func = NULL;
1479 return err;
1480 }
1481
1482 drbg->jent = crypto_alloc_rng("jitterentropy_rng", 0, 0);
1483
Stephan Mueller42ea5072015-06-10 03:33:37 +02001484 /*
1485 * Require frequent reseeds until the seed source is fully
1486 * initialized.
1487 */
1488 drbg->reseed_threshold = 50;
1489
Stephan Mueller57225e62015-06-09 21:55:38 +08001490 return err;
1491}
1492
Stephan Mueller541af942014-05-31 15:44:17 +02001493/*
1494 * DRBG instantiation function as required by SP800-90A - this function
1495 * sets up the DRBG handle, performs the initial seeding and all sanity
1496 * checks required by SP800-90A
1497 *
1498 * @drbg memory of state -- if NULL, new memory is allocated
1499 * @pers Personalization string that is mixed into state, may be NULL -- note
1500 * the entropy is pulled by the DRBG internally unconditionally
1501 * as defined in SP800-90A. The additional input is mixed into
1502 * the state in addition to the pulled entropy.
1503 * @coreref reference to core
1504 * @pr prediction resistance enabled
1505 *
1506 * return
1507 * 0 on success
1508 * error value otherwise
1509 */
1510static int drbg_instantiate(struct drbg_state *drbg, struct drbg_string *pers,
1511 int coreref, bool pr)
1512{
Herbert Xu2a57e422015-04-20 11:29:15 +08001513 int ret;
1514 bool reseed = true;
Stephan Mueller541af942014-05-31 15:44:17 +02001515
1516 pr_devel("DRBG: Initializing DRBG core %d with prediction resistance "
1517 "%s\n", coreref, pr ? "enabled" : "disabled");
Stephan Mueller76899a42015-04-18 19:36:17 +02001518 mutex_lock(&drbg->drbg_mutex);
Stephan Mueller541af942014-05-31 15:44:17 +02001519
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
Herbert Xu2a57e422015-04-20 11:29:15 +08001530 if (!drbg->core) {
1531 drbg->core = &drbg_cores[coreref];
1532 drbg->pr = pr;
1533 drbg->seeded = false;
Stephan Mueller42ea5072015-06-10 03:33:37 +02001534 drbg->reseed_threshold = drbg_max_requests(drbg);
Stephan Mueller541af942014-05-31 15:44:17 +02001535
Herbert Xu2a57e422015-04-20 11:29:15 +08001536 ret = drbg_alloc_state(drbg);
1537 if (ret)
1538 goto unlock;
1539
1540 ret = -EFAULT;
1541 if (drbg->d_ops->crypto_init(drbg))
1542 goto err;
1543
Stephan Mueller57225e62015-06-09 21:55:38 +08001544 ret = drbg_prepare_hrng(drbg);
1545 if (ret)
1546 goto free_everything;
1547
1548 if (IS_ERR(drbg->jent)) {
1549 ret = PTR_ERR(drbg->jent);
1550 drbg->jent = NULL;
1551 if (fips_enabled || ret != -ENOENT)
1552 goto free_everything;
1553 pr_info("DRBG: Continuing without Jitter RNG\n");
1554 }
1555
Herbert Xu2a57e422015-04-20 11:29:15 +08001556 reseed = false;
1557 }
1558
1559 ret = drbg_seed(drbg, pers, reseed);
1560
Stephan Mueller57225e62015-06-09 21:55:38 +08001561 if (ret && !reseed)
1562 goto free_everything;
Stephan Mueller541af942014-05-31 15:44:17 +02001563
Stephan Mueller76899a42015-04-18 19:36:17 +02001564 mutex_unlock(&drbg->drbg_mutex);
Herbert Xu2a57e422015-04-20 11:29:15 +08001565 return ret;
Stephan Mueller541af942014-05-31 15:44:17 +02001566
1567err:
1568 drbg_dealloc_state(drbg);
Stephan Mueller76899a42015-04-18 19:36:17 +02001569unlock:
1570 mutex_unlock(&drbg->drbg_mutex);
Stephan Mueller541af942014-05-31 15:44:17 +02001571 return ret;
Stephan Mueller57225e62015-06-09 21:55:38 +08001572
1573free_everything:
1574 mutex_unlock(&drbg->drbg_mutex);
1575 drbg_uninstantiate(drbg);
1576 return ret;
Stephan Mueller541af942014-05-31 15:44:17 +02001577}
1578
1579/*
1580 * DRBG uninstantiate function as required by SP800-90A - this function
1581 * frees all buffers and the DRBG handle
1582 *
1583 * @drbg DRBG state handle
1584 *
1585 * return
1586 * 0 on success
1587 */
1588static int drbg_uninstantiate(struct drbg_state *drbg)
1589{
Stephan Mueller57225e62015-06-09 21:55:38 +08001590 if (drbg->random_ready.func) {
1591 del_random_ready_callback(&drbg->random_ready);
1592 cancel_work_sync(&drbg->seed_work);
1593 crypto_free_rng(drbg->jent);
1594 drbg->jent = NULL;
1595 }
1596
Herbert Xu2a57e422015-04-20 11:29:15 +08001597 if (drbg->d_ops)
1598 drbg->d_ops->crypto_fini(drbg);
Stephan Mueller541af942014-05-31 15:44:17 +02001599 drbg_dealloc_state(drbg);
1600 /* no scrubbing of test_data -- this shall survive an uninstantiate */
Stephan Mueller541af942014-05-31 15:44:17 +02001601 return 0;
1602}
1603
1604/*
1605 * Helper function for setting the test data in the DRBG
1606 *
1607 * @drbg DRBG state handle
Herbert Xu8fded592015-04-21 10:46:41 +08001608 * @data test data
1609 * @len test data length
Stephan Mueller541af942014-05-31 15:44:17 +02001610 */
Herbert Xu8fded592015-04-21 10:46:41 +08001611static void drbg_kcapi_set_entropy(struct crypto_rng *tfm,
1612 const u8 *data, unsigned int len)
Stephan Mueller541af942014-05-31 15:44:17 +02001613{
Herbert Xu8fded592015-04-21 10:46:41 +08001614 struct drbg_state *drbg = crypto_rng_ctx(tfm);
1615
1616 mutex_lock(&drbg->drbg_mutex);
1617 drbg_string_fill(&drbg->test_data, data, len);
Stephan Mueller76899a42015-04-18 19:36:17 +02001618 mutex_unlock(&drbg->drbg_mutex);
Stephan Mueller541af942014-05-31 15:44:17 +02001619}
1620
1621/***************************************************************
1622 * Kernel crypto API cipher invocations requested by DRBG
1623 ***************************************************************/
1624
1625#if defined(CONFIG_CRYPTO_DRBG_HASH) || defined(CONFIG_CRYPTO_DRBG_HMAC)
1626struct sdesc {
1627 struct shash_desc shash;
1628 char ctx[];
1629};
1630
1631static int drbg_init_hash_kernel(struct drbg_state *drbg)
1632{
1633 struct sdesc *sdesc;
1634 struct crypto_shash *tfm;
1635
1636 tfm = crypto_alloc_shash(drbg->core->backend_cra_name, 0, 0);
1637 if (IS_ERR(tfm)) {
1638 pr_info("DRBG: could not allocate digest TFM handle\n");
1639 return PTR_ERR(tfm);
1640 }
1641 BUG_ON(drbg_blocklen(drbg) != crypto_shash_digestsize(tfm));
1642 sdesc = kzalloc(sizeof(struct shash_desc) + crypto_shash_descsize(tfm),
1643 GFP_KERNEL);
1644 if (!sdesc) {
1645 crypto_free_shash(tfm);
1646 return -ENOMEM;
1647 }
1648
1649 sdesc->shash.tfm = tfm;
1650 sdesc->shash.flags = 0;
1651 drbg->priv_data = sdesc;
1652 return 0;
1653}
1654
1655static int drbg_fini_hash_kernel(struct drbg_state *drbg)
1656{
1657 struct sdesc *sdesc = (struct sdesc *)drbg->priv_data;
1658 if (sdesc) {
1659 crypto_free_shash(sdesc->shash.tfm);
1660 kzfree(sdesc);
1661 }
1662 drbg->priv_data = NULL;
1663 return 0;
1664}
1665
1666static int drbg_kcapi_hash(struct drbg_state *drbg, const unsigned char *key,
Stephan Mueller8c987162014-06-28 21:58:24 +02001667 unsigned char *outval, const struct list_head *in)
Stephan Mueller541af942014-05-31 15:44:17 +02001668{
1669 struct sdesc *sdesc = (struct sdesc *)drbg->priv_data;
Stephan Mueller8c987162014-06-28 21:58:24 +02001670 struct drbg_string *input = NULL;
Stephan Mueller541af942014-05-31 15:44:17 +02001671
1672 if (key)
1673 crypto_shash_setkey(sdesc->shash.tfm, key, drbg_statelen(drbg));
1674 crypto_shash_init(&sdesc->shash);
Stephan Mueller8c987162014-06-28 21:58:24 +02001675 list_for_each_entry(input, in, list)
1676 crypto_shash_update(&sdesc->shash, input->buf, input->len);
Stephan Mueller541af942014-05-31 15:44:17 +02001677 return crypto_shash_final(&sdesc->shash, outval);
1678}
1679#endif /* (CONFIG_CRYPTO_DRBG_HASH || CONFIG_CRYPTO_DRBG_HMAC) */
1680
1681#ifdef CONFIG_CRYPTO_DRBG_CTR
1682static int drbg_init_sym_kernel(struct drbg_state *drbg)
1683{
1684 int ret = 0;
Stephan Mueller04bcbfc2015-03-01 20:39:17 +01001685 struct crypto_cipher *tfm;
Stephan Mueller541af942014-05-31 15:44:17 +02001686
Stephan Mueller04bcbfc2015-03-01 20:39:17 +01001687 tfm = crypto_alloc_cipher(drbg->core->backend_cra_name, 0, 0);
Stephan Mueller541af942014-05-31 15:44:17 +02001688 if (IS_ERR(tfm)) {
1689 pr_info("DRBG: could not allocate cipher TFM handle\n");
1690 return PTR_ERR(tfm);
1691 }
Stephan Mueller04bcbfc2015-03-01 20:39:17 +01001692 BUG_ON(drbg_blocklen(drbg) != crypto_cipher_blocksize(tfm));
Stephan Mueller541af942014-05-31 15:44:17 +02001693 drbg->priv_data = tfm;
1694 return ret;
1695}
1696
1697static int drbg_fini_sym_kernel(struct drbg_state *drbg)
1698{
Stephan Mueller04bcbfc2015-03-01 20:39:17 +01001699 struct crypto_cipher *tfm =
1700 (struct crypto_cipher *)drbg->priv_data;
Stephan Mueller541af942014-05-31 15:44:17 +02001701 if (tfm)
Stephan Mueller04bcbfc2015-03-01 20:39:17 +01001702 crypto_free_cipher(tfm);
Stephan Mueller541af942014-05-31 15:44:17 +02001703 drbg->priv_data = NULL;
1704 return 0;
1705}
1706
1707static int drbg_kcapi_sym(struct drbg_state *drbg, const unsigned char *key,
1708 unsigned char *outval, const struct drbg_string *in)
1709{
Stephan Mueller04bcbfc2015-03-01 20:39:17 +01001710 struct crypto_cipher *tfm =
1711 (struct crypto_cipher *)drbg->priv_data;
Stephan Mueller541af942014-05-31 15:44:17 +02001712
Stephan Mueller04bcbfc2015-03-01 20:39:17 +01001713 crypto_cipher_setkey(tfm, key, (drbg_keylen(drbg)));
Stephan Mueller541af942014-05-31 15:44:17 +02001714 /* there is only component in *in */
Stephan Mueller04bcbfc2015-03-01 20:39:17 +01001715 BUG_ON(in->len < drbg_blocklen(drbg));
1716 crypto_cipher_encrypt_one(tfm, outval, in->buf);
1717 return 0;
Stephan Mueller541af942014-05-31 15:44:17 +02001718}
1719#endif /* CONFIG_CRYPTO_DRBG_CTR */
1720
1721/***************************************************************
1722 * Kernel crypto API interface to register DRBG
1723 ***************************************************************/
1724
1725/*
1726 * Look up the DRBG flags by given kernel crypto API cra_name
1727 * The code uses the drbg_cores definition to do this
1728 *
1729 * @cra_name kernel crypto API cra_name
1730 * @coreref reference to integer which is filled with the pointer to
1731 * the applicable core
1732 * @pr reference for setting prediction resistance
1733 *
1734 * return: flags
1735 */
1736static inline void drbg_convert_tfm_core(const char *cra_driver_name,
1737 int *coreref, bool *pr)
1738{
1739 int i = 0;
1740 size_t start = 0;
1741 int len = 0;
1742
1743 *pr = true;
1744 /* disassemble the names */
1745 if (!memcmp(cra_driver_name, "drbg_nopr_", 10)) {
1746 start = 10;
1747 *pr = false;
1748 } else if (!memcmp(cra_driver_name, "drbg_pr_", 8)) {
1749 start = 8;
1750 } else {
1751 return;
1752 }
1753
1754 /* remove the first part */
1755 len = strlen(cra_driver_name) - start;
1756 for (i = 0; ARRAY_SIZE(drbg_cores) > i; i++) {
1757 if (!memcmp(cra_driver_name + start, drbg_cores[i].cra_name,
1758 len)) {
1759 *coreref = i;
1760 return;
1761 }
1762 }
1763}
1764
1765static int drbg_kcapi_init(struct crypto_tfm *tfm)
1766{
1767 struct drbg_state *drbg = crypto_tfm_ctx(tfm);
Stephan Mueller541af942014-05-31 15:44:17 +02001768
Stephan Mueller76899a42015-04-18 19:36:17 +02001769 mutex_init(&drbg->drbg_mutex);
Herbert Xu2a57e422015-04-20 11:29:15 +08001770
1771 return 0;
Stephan Mueller541af942014-05-31 15:44:17 +02001772}
1773
1774static void drbg_kcapi_cleanup(struct crypto_tfm *tfm)
1775{
1776 drbg_uninstantiate(crypto_tfm_ctx(tfm));
1777}
1778
1779/*
1780 * Generate random numbers invoked by the kernel crypto API:
1781 * The API of the kernel crypto API is extended as follows:
1782 *
Herbert Xu8fded592015-04-21 10:46:41 +08001783 * src is additional input supplied to the RNG.
1784 * slen is the length of src.
1785 * dst is the output buffer where random data is to be stored.
1786 * dlen is the length of dst.
Stephan Mueller541af942014-05-31 15:44:17 +02001787 */
Herbert Xu8fded592015-04-21 10:46:41 +08001788static int drbg_kcapi_random(struct crypto_rng *tfm,
1789 const u8 *src, unsigned int slen,
1790 u8 *dst, unsigned int dlen)
Stephan Mueller541af942014-05-31 15:44:17 +02001791{
1792 struct drbg_state *drbg = crypto_rng_ctx(tfm);
Herbert Xu8fded592015-04-21 10:46:41 +08001793 struct drbg_string *addtl = NULL;
1794 struct drbg_string string;
1795
1796 if (slen) {
Stephan Mueller8c987162014-06-28 21:58:24 +02001797 /* linked list variable is now local to allow modification */
Herbert Xu8fded592015-04-21 10:46:41 +08001798 drbg_string_fill(&string, src, slen);
1799 addtl = &string;
Stephan Mueller541af942014-05-31 15:44:17 +02001800 }
Herbert Xu8fded592015-04-21 10:46:41 +08001801
1802 return drbg_generate_long(drbg, dst, dlen, addtl);
Stephan Mueller541af942014-05-31 15:44:17 +02001803}
1804
1805/*
Herbert Xu2a57e422015-04-20 11:29:15 +08001806 * Seed the DRBG invoked by the kernel crypto API
Stephan Mueller541af942014-05-31 15:44:17 +02001807 */
Herbert Xu8fded592015-04-21 10:46:41 +08001808static int drbg_kcapi_seed(struct crypto_rng *tfm,
1809 const u8 *seed, unsigned int slen)
Stephan Mueller541af942014-05-31 15:44:17 +02001810{
1811 struct drbg_state *drbg = crypto_rng_ctx(tfm);
1812 struct crypto_tfm *tfm_base = crypto_rng_tfm(tfm);
1813 bool pr = false;
Herbert Xu8fded592015-04-21 10:46:41 +08001814 struct drbg_string string;
1815 struct drbg_string *seed_string = NULL;
Stephan Mueller541af942014-05-31 15:44:17 +02001816 int coreref = 0;
1817
Stephan Mueller541af942014-05-31 15:44:17 +02001818 drbg_convert_tfm_core(crypto_tfm_alg_driver_name(tfm_base), &coreref,
1819 &pr);
1820 if (0 < slen) {
Herbert Xu8fded592015-04-21 10:46:41 +08001821 drbg_string_fill(&string, seed, slen);
1822 seed_string = &string;
Stephan Mueller541af942014-05-31 15:44:17 +02001823 }
Herbert Xu8fded592015-04-21 10:46:41 +08001824
1825 return drbg_instantiate(drbg, seed_string, coreref, pr);
Stephan Mueller541af942014-05-31 15:44:17 +02001826}
1827
1828/***************************************************************
1829 * Kernel module: code to load the module
1830 ***************************************************************/
1831
1832/*
1833 * Tests as defined in 11.3.2 in addition to the cipher tests: testing
1834 * of the error handling.
1835 *
1836 * Note: testing of failing seed source as defined in 11.3.2 is not applicable
1837 * as seed source of get_random_bytes does not fail.
1838 *
1839 * Note 2: There is no sensible way of testing the reseed counter
1840 * enforcement, so skip it.
1841 */
1842static inline int __init drbg_healthcheck_sanity(void)
1843{
Stephan Mueller541af942014-05-31 15:44:17 +02001844 int len = 0;
1845#define OUTBUFLEN 16
1846 unsigned char buf[OUTBUFLEN];
1847 struct drbg_state *drbg = NULL;
1848 int ret = -EFAULT;
1849 int rc = -EFAULT;
1850 bool pr = false;
1851 int coreref = 0;
1852 struct drbg_string addtl;
1853 size_t max_addtllen, max_request_bytes;
1854
1855 /* only perform test in FIPS mode */
1856 if (!fips_enabled)
1857 return 0;
1858
1859#ifdef CONFIG_CRYPTO_DRBG_CTR
1860 drbg_convert_tfm_core("drbg_nopr_ctr_aes128", &coreref, &pr);
Stephan Muellere25e47e2014-07-06 02:23:03 +02001861#elif defined CONFIG_CRYPTO_DRBG_HASH
Stephan Mueller541af942014-05-31 15:44:17 +02001862 drbg_convert_tfm_core("drbg_nopr_sha256", &coreref, &pr);
1863#else
1864 drbg_convert_tfm_core("drbg_nopr_hmac_sha256", &coreref, &pr);
1865#endif
1866
1867 drbg = kzalloc(sizeof(struct drbg_state), GFP_KERNEL);
1868 if (!drbg)
1869 return -ENOMEM;
1870
Herbert Xue11a7542015-04-20 11:26:48 +08001871 mutex_init(&drbg->drbg_mutex);
1872
Stephan Mueller541af942014-05-31 15:44:17 +02001873 /*
1874 * if the following tests fail, it is likely that there is a buffer
1875 * overflow as buf is much smaller than the requested or provided
1876 * string lengths -- in case the error handling does not succeed
1877 * we may get an OOPS. And we want to get an OOPS as this is a
1878 * grave bug.
1879 */
1880
1881 /* get a valid instance of DRBG for following tests */
1882 ret = drbg_instantiate(drbg, NULL, coreref, pr);
1883 if (ret) {
1884 rc = ret;
1885 goto outbuf;
1886 }
1887 max_addtllen = drbg_max_addtl(drbg);
1888 max_request_bytes = drbg_max_request_bytes(drbg);
1889 drbg_string_fill(&addtl, buf, max_addtllen + 1);
1890 /* overflow addtllen with additonal info string */
1891 len = drbg_generate(drbg, buf, OUTBUFLEN, &addtl);
1892 BUG_ON(0 < len);
1893 /* overflow max_bits */
1894 len = drbg_generate(drbg, buf, (max_request_bytes + 1), NULL);
1895 BUG_ON(0 < len);
1896 drbg_uninstantiate(drbg);
1897
1898 /* overflow max addtllen with personalization string */
1899 ret = drbg_instantiate(drbg, &addtl, coreref, pr);
1900 BUG_ON(0 == ret);
Stephan Mueller541af942014-05-31 15:44:17 +02001901 /* all tests passed */
1902 rc = 0;
1903
1904 pr_devel("DRBG: Sanity tests for failure code paths successfully "
1905 "completed\n");
1906
1907 drbg_uninstantiate(drbg);
1908outbuf:
1909 kzfree(drbg);
1910 return rc;
Stephan Mueller541af942014-05-31 15:44:17 +02001911}
1912
Herbert Xu8fded592015-04-21 10:46:41 +08001913static struct rng_alg drbg_algs[22];
Stephan Mueller541af942014-05-31 15:44:17 +02001914
1915/*
1916 * Fill the array drbg_algs used to register the different DRBGs
1917 * with the kernel crypto API. To fill the array, the information
1918 * from drbg_cores[] is used.
1919 */
Herbert Xu8fded592015-04-21 10:46:41 +08001920static inline void __init drbg_fill_array(struct rng_alg *alg,
Stephan Mueller541af942014-05-31 15:44:17 +02001921 const struct drbg_core *core, int pr)
1922{
1923 int pos = 0;
Herbert Xu51ee14222015-06-03 14:49:28 +08001924 static int priority = 200;
Stephan Mueller541af942014-05-31 15:44:17 +02001925
Herbert Xu8fded592015-04-21 10:46:41 +08001926 memcpy(alg->base.cra_name, "stdrng", 6);
Stephan Mueller541af942014-05-31 15:44:17 +02001927 if (pr) {
Herbert Xu8fded592015-04-21 10:46:41 +08001928 memcpy(alg->base.cra_driver_name, "drbg_pr_", 8);
Stephan Mueller541af942014-05-31 15:44:17 +02001929 pos = 8;
1930 } else {
Herbert Xu8fded592015-04-21 10:46:41 +08001931 memcpy(alg->base.cra_driver_name, "drbg_nopr_", 10);
Stephan Mueller541af942014-05-31 15:44:17 +02001932 pos = 10;
1933 }
Herbert Xu8fded592015-04-21 10:46:41 +08001934 memcpy(alg->base.cra_driver_name + pos, core->cra_name,
Stephan Mueller541af942014-05-31 15:44:17 +02001935 strlen(core->cra_name));
1936
Herbert Xu8fded592015-04-21 10:46:41 +08001937 alg->base.cra_priority = priority;
Stephan Mueller541af942014-05-31 15:44:17 +02001938 priority++;
1939 /*
1940 * If FIPS mode enabled, the selected DRBG shall have the
1941 * highest cra_priority over other stdrng instances to ensure
1942 * it is selected.
1943 */
1944 if (fips_enabled)
Herbert Xu8fded592015-04-21 10:46:41 +08001945 alg->base.cra_priority += 200;
Stephan Mueller541af942014-05-31 15:44:17 +02001946
Herbert Xu8fded592015-04-21 10:46:41 +08001947 alg->base.cra_ctxsize = sizeof(struct drbg_state);
1948 alg->base.cra_module = THIS_MODULE;
1949 alg->base.cra_init = drbg_kcapi_init;
1950 alg->base.cra_exit = drbg_kcapi_cleanup;
1951 alg->generate = drbg_kcapi_random;
1952 alg->seed = drbg_kcapi_seed;
1953 alg->set_ent = drbg_kcapi_set_entropy;
1954 alg->seedsize = 0;
Stephan Mueller541af942014-05-31 15:44:17 +02001955}
1956
1957static int __init drbg_init(void)
1958{
1959 unsigned int i = 0; /* pointer to drbg_algs */
1960 unsigned int j = 0; /* pointer to drbg_cores */
1961 int ret = -EFAULT;
1962
1963 ret = drbg_healthcheck_sanity();
1964 if (ret)
1965 return ret;
1966
1967 if (ARRAY_SIZE(drbg_cores) * 2 > ARRAY_SIZE(drbg_algs)) {
1968 pr_info("DRBG: Cannot register all DRBG types"
Stephan Muellera9089572014-07-06 02:24:03 +02001969 "(slots needed: %zu, slots available: %zu)\n",
Stephan Mueller541af942014-05-31 15:44:17 +02001970 ARRAY_SIZE(drbg_cores) * 2, ARRAY_SIZE(drbg_algs));
1971 return ret;
1972 }
1973
1974 /*
1975 * each DRBG definition can be used with PR and without PR, thus
1976 * we instantiate each DRBG in drbg_cores[] twice.
1977 *
1978 * As the order of placing them into the drbg_algs array matters
1979 * (the later DRBGs receive a higher cra_priority) we register the
1980 * prediction resistance DRBGs first as the should not be too
1981 * interesting.
1982 */
1983 for (j = 0; ARRAY_SIZE(drbg_cores) > j; j++, i++)
1984 drbg_fill_array(&drbg_algs[i], &drbg_cores[j], 1);
1985 for (j = 0; ARRAY_SIZE(drbg_cores) > j; j++, i++)
1986 drbg_fill_array(&drbg_algs[i], &drbg_cores[j], 0);
Herbert Xu8fded592015-04-21 10:46:41 +08001987 return crypto_register_rngs(drbg_algs, (ARRAY_SIZE(drbg_cores) * 2));
Stephan Mueller541af942014-05-31 15:44:17 +02001988}
1989
Fengguang Wu96956ae2014-07-10 16:52:04 +08001990static void __exit drbg_exit(void)
Stephan Mueller541af942014-05-31 15:44:17 +02001991{
Herbert Xu8fded592015-04-21 10:46:41 +08001992 crypto_unregister_rngs(drbg_algs, (ARRAY_SIZE(drbg_cores) * 2));
Stephan Mueller541af942014-05-31 15:44:17 +02001993}
1994
1995module_init(drbg_init);
1996module_exit(drbg_exit);
Stephan Muellere25e47e2014-07-06 02:23:03 +02001997#ifndef CRYPTO_DRBG_HASH_STRING
1998#define CRYPTO_DRBG_HASH_STRING ""
1999#endif
2000#ifndef CRYPTO_DRBG_HMAC_STRING
2001#define CRYPTO_DRBG_HMAC_STRING ""
2002#endif
2003#ifndef CRYPTO_DRBG_CTR_STRING
2004#define CRYPTO_DRBG_CTR_STRING ""
2005#endif
Stephan Mueller541af942014-05-31 15:44:17 +02002006MODULE_LICENSE("GPL");
2007MODULE_AUTHOR("Stephan Mueller <smueller@chronox.de>");
Stephan Muellere25e47e2014-07-06 02:23:03 +02002008MODULE_DESCRIPTION("NIST SP800-90A Deterministic Random Bit Generator (DRBG) "
2009 "using following cores: "
2010 CRYPTO_DRBG_HASH_STRING
2011 CRYPTO_DRBG_HMAC_STRING
2012 CRYPTO_DRBG_CTR_STRING);
Herbert Xu51ee14222015-06-03 14:49:28 +08002013MODULE_ALIAS_CRYPTO("stdrng");