2 * DRBG: Deterministic Random Bits Generator
3 * Based on NIST Recommended DRBG from NIST SP800-90A with the following
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
10 * Copyright Stephan Mueller <smueller@chronox.de>, 2014
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
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
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.)
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
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.
51 * Usage without any additional data
52 * ---------------------------------
53 * struct crypto_rng *drng;
57 * drng = crypto_alloc_rng(drng_name, 0, 0);
58 * err = crypto_rng_get_bytes(drng, &data, DATALEN);
59 * crypto_free_rng(drng);
62 * Usage with personalization string during initialization
63 * -------------------------------------------------------
64 * struct crypto_rng *drng;
67 * struct drbg_string pers;
68 * char personalization[11] = "some-string";
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);
79 * Usage with additional information string during random number request
80 * ---------------------------------------------------------------------
81 * struct crypto_rng *drng;
84 * char addtl_string[11] = "some-string";
85 * string drbg_string addtl;
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);
95 * Usage with personalization and additional information strings
96 * -------------------------------------------------------------
97 * Just mix both scenarios above.
100 #include <crypto/drbg.h>
102 /***************************************************************
103 * Backend cipher definitions available to DRBG
104 ***************************************************************/
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).
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.
115 static const struct drbg_core drbg_cores
[] = {
116 #ifdef CONFIG_CRYPTO_DRBG_CTR
118 .flags
= DRBG_CTR
| DRBG_STRENGTH128
,
119 .statelen
= 32, /* 256 bits as defined in 10.2.1 */
123 .blocklen_bytes
= 16,
124 .cra_name
= "ctr_aes128",
125 .backend_cra_name
= "ecb(aes)",
127 .flags
= DRBG_CTR
| DRBG_STRENGTH192
,
128 .statelen
= 40, /* 320 bits as defined in 10.2.1 */
132 .blocklen_bytes
= 16,
133 .cra_name
= "ctr_aes192",
134 .backend_cra_name
= "ecb(aes)",
136 .flags
= DRBG_CTR
| DRBG_STRENGTH256
,
137 .statelen
= 48, /* 384 bits as defined in 10.2.1 */
141 .blocklen_bytes
= 16,
142 .cra_name
= "ctr_aes256",
143 .backend_cra_name
= "ecb(aes)",
145 #endif /* CONFIG_CRYPTO_DRBG_CTR */
146 #ifdef CONFIG_CRYPTO_DRBG_HASH
148 .flags
= DRBG_HASH
| DRBG_STRENGTH128
,
149 .statelen
= 55, /* 440 bits */
153 .blocklen_bytes
= 20,
155 .backend_cra_name
= "sha1",
157 .flags
= DRBG_HASH
| DRBG_STRENGTH256
,
158 .statelen
= 111, /* 888 bits */
162 .blocklen_bytes
= 48,
163 .cra_name
= "sha384",
164 .backend_cra_name
= "sha384",
166 .flags
= DRBG_HASH
| DRBG_STRENGTH256
,
167 .statelen
= 111, /* 888 bits */
171 .blocklen_bytes
= 64,
172 .cra_name
= "sha512",
173 .backend_cra_name
= "sha512",
175 .flags
= DRBG_HASH
| DRBG_STRENGTH256
,
176 .statelen
= 55, /* 440 bits */
180 .blocklen_bytes
= 32,
181 .cra_name
= "sha256",
182 .backend_cra_name
= "sha256",
184 #endif /* CONFIG_CRYPTO_DRBG_HASH */
185 #ifdef CONFIG_CRYPTO_DRBG_HMAC
187 .flags
= DRBG_HMAC
| DRBG_STRENGTH128
,
188 .statelen
= 20, /* block length of cipher */
192 .blocklen_bytes
= 20,
193 .cra_name
= "hmac_sha1",
194 .backend_cra_name
= "hmac(sha1)",
196 .flags
= DRBG_HMAC
| DRBG_STRENGTH256
,
197 .statelen
= 48, /* block length of cipher */
201 .blocklen_bytes
= 48,
202 .cra_name
= "hmac_sha384",
203 .backend_cra_name
= "hmac(sha384)",
205 .flags
= DRBG_HMAC
| DRBG_STRENGTH256
,
206 .statelen
= 64, /* block length of cipher */
210 .blocklen_bytes
= 64,
211 .cra_name
= "hmac_sha512",
212 .backend_cra_name
= "hmac(sha512)",
214 .flags
= DRBG_HMAC
| DRBG_STRENGTH256
,
215 .statelen
= 32, /* block length of cipher */
219 .blocklen_bytes
= 32,
220 .cra_name
= "hmac_sha256",
221 .backend_cra_name
= "hmac(sha256)",
223 #endif /* CONFIG_CRYPTO_DRBG_HMAC */
226 /******************************************************************
227 * Generic helper functions
228 ******************************************************************/
231 * Return strength of DRBG according to SP800-90A section 8.4
233 * @flags DRBG flags reference
235 * Return: normalized strength in *bytes* value or 32 as default
236 * to counter programming errors
238 static inline unsigned short drbg_sec_strength(drbg_flag_t flags
)
240 switch (flags
& DRBG_STRENGTH_MASK
) {
241 case DRBG_STRENGTH128
:
243 case DRBG_STRENGTH192
:
245 case DRBG_STRENGTH256
:
253 * FIPS 140-2 continuous self test
254 * The test is performed on the result of one round of the output
255 * function. Thus, the function implicitly knows the size of the
258 * The FIPS test can be called in an endless loop until it returns
259 * true. Although the code looks like a potential for a deadlock, it
260 * is not the case, because returning a false cannot mathematically
261 * occur (except once when a reseed took place and the updated state
262 * would is now set up such that the generation of new value returns
263 * an identical one -- this is most unlikely and would happen only once).
264 * Thus, if this function repeatedly returns false and thus would cause
265 * a deadlock, the integrity of the entire kernel is lost.
268 * @buf output buffer of random data to be checked
274 static bool drbg_fips_continuous_test(struct drbg_state
*drbg
,
275 const unsigned char *buf
)
277 #ifdef CONFIG_CRYPTO_FIPS
279 /* skip test if we test the overall system */
282 /* only perform test in FIPS mode */
283 if (0 == fips_enabled
)
285 if (!drbg
->fips_primed
) {
286 /* Priming of FIPS test */
287 memcpy(drbg
->prev
, buf
, drbg_blocklen(drbg
));
288 drbg
->fips_primed
= true;
289 /* return false due to priming, i.e. another round is needed */
292 ret
= memcmp(drbg
->prev
, buf
, drbg_blocklen(drbg
));
293 memcpy(drbg
->prev
, buf
, drbg_blocklen(drbg
));
294 /* the test shall pass when the two compared values are not equal */
298 #endif /* CONFIG_CRYPTO_FIPS */
302 * Convert an integer into a byte representation of this integer.
303 * The byte representation is big-endian
305 * @buf buffer holding the converted integer
306 * @val value to be converted
307 * @buflen length of buffer
309 #if (defined(CONFIG_CRYPTO_DRBG_HASH) || defined(CONFIG_CRYPTO_DRBG_CTR))
310 static inline void drbg_int2byte(unsigned char *buf
, uint64_t val
,
316 byte
= buf
+ (buflen
- 1);
317 for (i
= 0; i
< buflen
; i
++)
318 *(byte
--) = val
>> (i
* 8) & 0xff;
324 * @dst buffer to increment
327 static inline void drbg_add_buf(unsigned char *dst
, size_t dstlen
,
328 const unsigned char *add
, size_t addlen
)
330 /* implied: dstlen > addlen */
331 unsigned char *dstptr
;
332 const unsigned char *addptr
;
333 unsigned int remainder
= 0;
336 dstptr
= dst
+ (dstlen
-1);
337 addptr
= add
+ (addlen
-1);
339 remainder
+= *dstptr
+ *addptr
;
340 *dstptr
= remainder
& 0xff;
342 len
--; dstptr
--; addptr
--;
344 len
= dstlen
- addlen
;
345 while (len
&& remainder
> 0) {
346 remainder
= *dstptr
+ 1;
347 *dstptr
= remainder
& 0xff;
352 #endif /* defined(CONFIG_CRYPTO_DRBG_HASH) || defined(CONFIG_CRYPTO_DRBG_CTR) */
354 /******************************************************************
355 * CTR DRBG callback functions
356 ******************************************************************/
358 #ifdef CONFIG_CRYPTO_DRBG_CTR
359 #define CRYPTO_DRBG_CTR_STRING "CTR "
360 static int drbg_kcapi_sym(struct drbg_state
*drbg
, const unsigned char *key
,
361 unsigned char *outval
, const struct drbg_string
*in
);
362 static int drbg_init_sym_kernel(struct drbg_state
*drbg
);
363 static int drbg_fini_sym_kernel(struct drbg_state
*drbg
);
365 /* BCC function for CTR DRBG as defined in 10.4.3 */
366 static int drbg_ctr_bcc(struct drbg_state
*drbg
,
367 unsigned char *out
, const unsigned char *key
,
368 struct list_head
*in
)
371 struct drbg_string
*curr
= NULL
;
372 struct drbg_string data
;
375 drbg_string_fill(&data
, out
, drbg_blocklen(drbg
));
378 memset(out
, 0, drbg_blocklen(drbg
));
380 /* 10.4.3 step 2 / 4 */
381 list_for_each_entry(curr
, in
, list
) {
382 const unsigned char *pos
= curr
->buf
;
383 size_t len
= curr
->len
;
384 /* 10.4.3 step 4.1 */
386 /* 10.4.3 step 4.2 */
387 if (drbg_blocklen(drbg
) == cnt
) {
389 ret
= drbg_kcapi_sym(drbg
, key
, out
, &data
);
399 /* 10.4.3 step 4.2 for last block */
401 ret
= drbg_kcapi_sym(drbg
, key
, out
, &data
);
407 * scratchpad usage: drbg_ctr_update is interlinked with drbg_ctr_df
408 * (and drbg_ctr_bcc, but this function does not need any temporary buffers),
409 * the scratchpad is used as follows:
412 * start: drbg->scratchpad
413 * length: drbg_statelen(drbg) + drbg_blocklen(drbg)
414 * note: the cipher writing into this variable works
415 * blocklen-wise. Now, when the statelen is not a multiple
416 * of blocklen, the generateion loop below "spills over"
417 * by at most blocklen. Thus, we need to give sufficient
420 * start: drbg->scratchpad +
421 * drbg_statelen(drbg) + drbg_blocklen(drbg)
422 * length: drbg_statelen(drbg)
426 * start: df_data + drbg_statelen(drbg)
427 * length: drbg_blocklen(drbg)
429 * start: pad + drbg_blocklen(drbg)
430 * length: drbg_blocklen(drbg)
432 * start: iv + drbg_blocklen(drbg)
433 * length: drbg_satelen(drbg) + drbg_blocklen(drbg)
434 * note: temp is the buffer that the BCC function operates
435 * on. BCC operates blockwise. drbg_statelen(drbg)
436 * is sufficient when the DRBG state length is a multiple
437 * of the block size. For AES192 (and maybe other ciphers)
438 * this is not correct and the length for temp is
439 * insufficient (yes, that also means for such ciphers,
440 * the final output of all BCC rounds are truncated).
441 * Therefore, add drbg_blocklen(drbg) to cover all
445 /* Derivation Function for CTR DRBG as defined in 10.4.2 */
446 static int drbg_ctr_df(struct drbg_state
*drbg
,
447 unsigned char *df_data
, size_t bytes_to_return
,
448 struct list_head
*seedlist
)
451 unsigned char L_N
[8];
453 struct drbg_string S1
, S2
, S4
, cipherin
;
455 unsigned char *pad
= df_data
+ drbg_statelen(drbg
);
456 unsigned char *iv
= pad
+ drbg_blocklen(drbg
);
457 unsigned char *temp
= iv
+ drbg_blocklen(drbg
);
459 unsigned int templen
= 0;
463 const unsigned char *K
= (unsigned char *)
464 "\x00\x01\x02\x03\x04\x05\x06\x07"
465 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
466 "\x10\x11\x12\x13\x14\x15\x16\x17"
467 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f";
469 size_t generated_len
= 0;
471 struct drbg_string
*seed
= NULL
;
473 memset(pad
, 0, drbg_blocklen(drbg
));
474 memset(iv
, 0, drbg_blocklen(drbg
));
475 memset(temp
, 0, drbg_statelen(drbg
));
477 /* 10.4.2 step 1 is implicit as we work byte-wise */
480 if ((512/8) < bytes_to_return
)
483 /* 10.4.2 step 2 -- calculate the entire length of all input data */
484 list_for_each_entry(seed
, seedlist
, list
)
485 inputlen
+= seed
->len
;
486 drbg_int2byte(&L_N
[0], inputlen
, 4);
489 drbg_int2byte(&L_N
[4], bytes_to_return
, 4);
491 /* 10.4.2 step 5: length is L_N, input_string, one byte, padding */
492 padlen
= (inputlen
+ sizeof(L_N
) + 1) % (drbg_blocklen(drbg
));
493 /* wrap the padlen appropriately */
495 padlen
= drbg_blocklen(drbg
) - padlen
;
497 * pad / padlen contains the 0x80 byte and the following zero bytes.
498 * As the calculated padlen value only covers the number of zero
499 * bytes, this value has to be incremented by one for the 0x80 byte.
504 /* 10.4.2 step 4 -- first fill the linked list and then order it */
505 drbg_string_fill(&S1
, iv
, drbg_blocklen(drbg
));
506 list_add_tail(&S1
.list
, &bcc_list
);
507 drbg_string_fill(&S2
, L_N
, sizeof(L_N
));
508 list_add_tail(&S2
.list
, &bcc_list
);
509 list_splice_tail(seedlist
, &bcc_list
);
510 drbg_string_fill(&S4
, pad
, padlen
);
511 list_add_tail(&S4
.list
, &bcc_list
);
514 while (templen
< (drbg_keylen(drbg
) + (drbg_blocklen(drbg
)))) {
516 * 10.4.2 step 9.1 - the padding is implicit as the buffer
517 * holds zeros after allocation -- even the increment of i
518 * is irrelevant as the increment remains within length of i
520 drbg_int2byte(iv
, i
, 4);
521 /* 10.4.2 step 9.2 -- BCC and concatenation with temp */
522 ret
= drbg_ctr_bcc(drbg
, temp
+ templen
, K
, &bcc_list
);
525 /* 10.4.2 step 9.3 */
527 templen
+= drbg_blocklen(drbg
);
531 X
= temp
+ (drbg_keylen(drbg
));
532 drbg_string_fill(&cipherin
, X
, drbg_blocklen(drbg
));
534 /* 10.4.2 step 12: overwriting of outval is implemented in next step */
537 while (generated_len
< bytes_to_return
) {
540 * 10.4.2 step 13.1: the truncation of the key length is
541 * implicit as the key is only drbg_blocklen in size based on
542 * the implementation of the cipher function callback
544 ret
= drbg_kcapi_sym(drbg
, temp
, X
, &cipherin
);
547 blocklen
= (drbg_blocklen(drbg
) <
548 (bytes_to_return
- generated_len
)) ?
549 drbg_blocklen(drbg
) :
550 (bytes_to_return
- generated_len
);
551 /* 10.4.2 step 13.2 and 14 */
552 memcpy(df_data
+ generated_len
, X
, blocklen
);
553 generated_len
+= blocklen
;
559 memset(iv
, 0, drbg_blocklen(drbg
));
560 memset(temp
, 0, drbg_statelen(drbg
));
561 memset(pad
, 0, drbg_blocklen(drbg
));
566 * update function of CTR DRBG as defined in 10.2.1.2
568 * The reseed variable has an enhanced meaning compared to the update
569 * functions of the other DRBGs as follows:
570 * 0 => initial seed from initialization
571 * 1 => reseed via drbg_seed
572 * 2 => first invocation from drbg_ctr_update when addtl is present. In
573 * this case, the df_data scratchpad is not deleted so that it is
574 * available for another calls to prevent calling the DF function
576 * 3 => second invocation from drbg_ctr_update. When the update function
577 * was called with addtl, the df_data memory already contains the
578 * DFed addtl information and we do not need to call DF again.
580 static int drbg_ctr_update(struct drbg_state
*drbg
, struct list_head
*seed
,
584 /* 10.2.1.2 step 1 */
585 unsigned char *temp
= drbg
->scratchpad
;
586 unsigned char *df_data
= drbg
->scratchpad
+ drbg_statelen(drbg
) +
588 unsigned char *temp_p
, *df_data_p
; /* pointer to iterate over buffers */
589 unsigned int len
= 0;
590 struct drbg_string cipherin
;
591 unsigned char prefix
= DRBG_PREFIX1
;
593 memset(temp
, 0, drbg_statelen(drbg
) + drbg_blocklen(drbg
));
595 memset(df_data
, 0, drbg_statelen(drbg
));
597 /* 10.2.1.3.2 step 2 and 10.2.1.4.2 step 2 */
599 ret
= drbg_ctr_df(drbg
, df_data
, drbg_statelen(drbg
), seed
);
604 drbg_string_fill(&cipherin
, drbg
->V
, drbg_blocklen(drbg
));
606 * 10.2.1.3.2 steps 2 and 3 are already covered as the allocation
607 * zeroizes all memory during initialization
609 while (len
< (drbg_statelen(drbg
))) {
610 /* 10.2.1.2 step 2.1 */
611 drbg_add_buf(drbg
->V
, drbg_blocklen(drbg
), &prefix
, 1);
613 * 10.2.1.2 step 2.2 */
614 ret
= drbg_kcapi_sym(drbg
, drbg
->C
, temp
+ len
, &cipherin
);
617 /* 10.2.1.2 step 2.3 and 3 */
618 len
+= drbg_blocklen(drbg
);
621 /* 10.2.1.2 step 4 */
624 for (len
= 0; len
< drbg_statelen(drbg
); len
++) {
625 *temp_p
^= *df_data_p
;
626 df_data_p
++; temp_p
++;
629 /* 10.2.1.2 step 5 */
630 memcpy(drbg
->C
, temp
, drbg_keylen(drbg
));
631 /* 10.2.1.2 step 6 */
632 memcpy(drbg
->V
, temp
+ drbg_keylen(drbg
), drbg_blocklen(drbg
));
636 memset(temp
, 0, drbg_statelen(drbg
) + drbg_blocklen(drbg
));
638 memset(df_data
, 0, drbg_statelen(drbg
));
643 * scratchpad use: drbg_ctr_update is called independently from
644 * drbg_ctr_extract_bytes. Therefore, the scratchpad is reused
646 /* Generate function of CTR DRBG as defined in 10.2.1.5.2 */
647 static int drbg_ctr_generate(struct drbg_state
*drbg
,
648 unsigned char *buf
, unsigned int buflen
,
649 struct list_head
*addtl
)
653 struct drbg_string data
;
654 unsigned char prefix
= DRBG_PREFIX1
;
656 memset(drbg
->scratchpad
, 0, drbg_blocklen(drbg
));
658 /* 10.2.1.5.2 step 2 */
659 if (addtl
&& !list_empty(addtl
)) {
660 ret
= drbg_ctr_update(drbg
, addtl
, 2);
665 /* 10.2.1.5.2 step 4.1 */
666 drbg_add_buf(drbg
->V
, drbg_blocklen(drbg
), &prefix
, 1);
667 drbg_string_fill(&data
, drbg
->V
, drbg_blocklen(drbg
));
668 while (len
< buflen
) {
670 /* 10.2.1.5.2 step 4.2 */
671 ret
= drbg_kcapi_sym(drbg
, drbg
->C
, drbg
->scratchpad
, &data
);
676 outlen
= (drbg_blocklen(drbg
) < (buflen
- len
)) ?
677 drbg_blocklen(drbg
) : (buflen
- len
);
678 if (!drbg_fips_continuous_test(drbg
, drbg
->scratchpad
)) {
679 /* 10.2.1.5.2 step 6 */
680 drbg_add_buf(drbg
->V
, drbg_blocklen(drbg
), &prefix
, 1);
683 /* 10.2.1.5.2 step 4.3 */
684 memcpy(buf
+ len
, drbg
->scratchpad
, outlen
);
686 /* 10.2.1.5.2 step 6 */
688 drbg_add_buf(drbg
->V
, drbg_blocklen(drbg
), &prefix
, 1);
691 /* 10.2.1.5.2 step 6 */
692 ret
= drbg_ctr_update(drbg
, NULL
, 3);
697 memset(drbg
->scratchpad
, 0, drbg_blocklen(drbg
));
701 static struct drbg_state_ops drbg_ctr_ops
= {
702 .update
= drbg_ctr_update
,
703 .generate
= drbg_ctr_generate
,
704 .crypto_init
= drbg_init_sym_kernel
,
705 .crypto_fini
= drbg_fini_sym_kernel
,
707 #endif /* CONFIG_CRYPTO_DRBG_CTR */
709 /******************************************************************
710 * HMAC DRBG callback functions
711 ******************************************************************/
713 #if defined(CONFIG_CRYPTO_DRBG_HASH) || defined(CONFIG_CRYPTO_DRBG_HMAC)
714 static int drbg_kcapi_hash(struct drbg_state
*drbg
, const unsigned char *key
,
715 unsigned char *outval
, const struct list_head
*in
);
716 static int drbg_init_hash_kernel(struct drbg_state
*drbg
);
717 static int drbg_fini_hash_kernel(struct drbg_state
*drbg
);
718 #endif /* (CONFIG_CRYPTO_DRBG_HASH || CONFIG_CRYPTO_DRBG_HMAC) */
720 #ifdef CONFIG_CRYPTO_DRBG_HMAC
721 #define CRYPTO_DRBG_HMAC_STRING "HMAC "
722 /* update function of HMAC DRBG as defined in 10.1.2.2 */
723 static int drbg_hmac_update(struct drbg_state
*drbg
, struct list_head
*seed
,
728 struct drbg_string seed1
, seed2
, vdata
;
730 LIST_HEAD(vdatalist
);
733 /* 10.1.2.3 step 2 */
734 memset(drbg
->C
, 0, drbg_statelen(drbg
));
735 memset(drbg
->V
, 1, drbg_statelen(drbg
));
738 drbg_string_fill(&seed1
, drbg
->V
, drbg_statelen(drbg
));
739 list_add_tail(&seed1
.list
, &seedlist
);
740 /* buffer of seed2 will be filled in for loop below with one byte */
741 drbg_string_fill(&seed2
, NULL
, 1);
742 list_add_tail(&seed2
.list
, &seedlist
);
743 /* input data of seed is allowed to be NULL at this point */
745 list_splice_tail(seed
, &seedlist
);
747 drbg_string_fill(&vdata
, drbg
->V
, drbg_statelen(drbg
));
748 list_add_tail(&vdata
.list
, &vdatalist
);
749 for (i
= 2; 0 < i
; i
--) {
750 /* first round uses 0x0, second 0x1 */
751 unsigned char prefix
= DRBG_PREFIX0
;
753 prefix
= DRBG_PREFIX1
;
754 /* 10.1.2.2 step 1 and 4 -- concatenation and HMAC for key */
756 ret
= drbg_kcapi_hash(drbg
, drbg
->C
, drbg
->C
, &seedlist
);
760 /* 10.1.2.2 step 2 and 5 -- HMAC for V */
761 ret
= drbg_kcapi_hash(drbg
, drbg
->C
, drbg
->V
, &vdatalist
);
765 /* 10.1.2.2 step 3 */
773 /* generate function of HMAC DRBG as defined in 10.1.2.5 */
774 static int drbg_hmac_generate(struct drbg_state
*drbg
,
777 struct list_head
*addtl
)
781 struct drbg_string data
;
784 /* 10.1.2.5 step 2 */
785 if (addtl
&& !list_empty(addtl
)) {
786 ret
= drbg_hmac_update(drbg
, addtl
, 1);
791 drbg_string_fill(&data
, drbg
->V
, drbg_statelen(drbg
));
792 list_add_tail(&data
.list
, &datalist
);
793 while (len
< buflen
) {
794 unsigned int outlen
= 0;
795 /* 10.1.2.5 step 4.1 */
796 ret
= drbg_kcapi_hash(drbg
, drbg
->C
, drbg
->V
, &datalist
);
799 outlen
= (drbg_blocklen(drbg
) < (buflen
- len
)) ?
800 drbg_blocklen(drbg
) : (buflen
- len
);
801 if (!drbg_fips_continuous_test(drbg
, drbg
->V
))
804 /* 10.1.2.5 step 4.2 */
805 memcpy(buf
+ len
, drbg
->V
, outlen
);
809 /* 10.1.2.5 step 6 */
810 if (addtl
&& !list_empty(addtl
))
811 ret
= drbg_hmac_update(drbg
, addtl
, 1);
813 ret
= drbg_hmac_update(drbg
, NULL
, 1);
820 static struct drbg_state_ops drbg_hmac_ops
= {
821 .update
= drbg_hmac_update
,
822 .generate
= drbg_hmac_generate
,
823 .crypto_init
= drbg_init_hash_kernel
,
824 .crypto_fini
= drbg_fini_hash_kernel
,
827 #endif /* CONFIG_CRYPTO_DRBG_HMAC */
829 /******************************************************************
830 * Hash DRBG callback functions
831 ******************************************************************/
833 #ifdef CONFIG_CRYPTO_DRBG_HASH
834 #define CRYPTO_DRBG_HASH_STRING "HASH "
836 * scratchpad usage: as drbg_hash_update and drbg_hash_df are used
837 * interlinked, the scratchpad is used as follows:
839 * start: drbg->scratchpad
840 * length: drbg_statelen(drbg)
842 * start: drbg->scratchpad + drbg_statelen(drbg)
843 * length: drbg_blocklen(drbg)
845 * drbg_hash_process_addtl uses the scratchpad, but fully completes
846 * before either of the functions mentioned before are invoked. Therefore,
847 * drbg_hash_process_addtl does not need to be specifically considered.
850 /* Derivation Function for Hash DRBG as defined in 10.4.1 */
851 static int drbg_hash_df(struct drbg_state
*drbg
,
852 unsigned char *outval
, size_t outlen
,
853 struct list_head
*entropylist
)
857 unsigned char input
[5];
858 unsigned char *tmp
= drbg
->scratchpad
+ drbg_statelen(drbg
);
859 struct drbg_string data
;
861 memset(tmp
, 0, drbg_blocklen(drbg
));
865 drbg_int2byte(&input
[1], (outlen
* 8), 4);
867 /* 10.4.1 step 4.1 -- concatenation of data for input into hash */
868 drbg_string_fill(&data
, input
, 5);
869 list_add(&data
.list
, entropylist
);
872 while (len
< outlen
) {
874 /* 10.4.1 step 4.1 */
875 ret
= drbg_kcapi_hash(drbg
, NULL
, tmp
, entropylist
);
878 /* 10.4.1 step 4.2 */
880 blocklen
= (drbg_blocklen(drbg
) < (outlen
- len
)) ?
881 drbg_blocklen(drbg
) : (outlen
- len
);
882 memcpy(outval
+ len
, tmp
, blocklen
);
887 memset(tmp
, 0, drbg_blocklen(drbg
));
891 /* update function for Hash DRBG as defined in 10.1.1.2 / 10.1.1.3 */
892 static int drbg_hash_update(struct drbg_state
*drbg
, struct list_head
*seed
,
896 struct drbg_string data1
, data2
;
898 LIST_HEAD(datalist2
);
899 unsigned char *V
= drbg
->scratchpad
;
900 unsigned char prefix
= DRBG_PREFIX1
;
902 memset(drbg
->scratchpad
, 0, drbg_statelen(drbg
));
907 /* 10.1.1.3 step 1 */
908 memcpy(V
, drbg
->V
, drbg_statelen(drbg
));
909 drbg_string_fill(&data1
, &prefix
, 1);
910 list_add_tail(&data1
.list
, &datalist
);
911 drbg_string_fill(&data2
, V
, drbg_statelen(drbg
));
912 list_add_tail(&data2
.list
, &datalist
);
914 list_splice_tail(seed
, &datalist
);
916 /* 10.1.1.2 / 10.1.1.3 step 2 and 3 */
917 ret
= drbg_hash_df(drbg
, drbg
->V
, drbg_statelen(drbg
), &datalist
);
921 /* 10.1.1.2 / 10.1.1.3 step 4 */
922 prefix
= DRBG_PREFIX0
;
923 drbg_string_fill(&data1
, &prefix
, 1);
924 list_add_tail(&data1
.list
, &datalist2
);
925 drbg_string_fill(&data2
, drbg
->V
, drbg_statelen(drbg
));
926 list_add_tail(&data2
.list
, &datalist2
);
927 /* 10.1.1.2 / 10.1.1.3 step 4 */
928 ret
= drbg_hash_df(drbg
, drbg
->C
, drbg_statelen(drbg
), &datalist2
);
931 memset(drbg
->scratchpad
, 0, drbg_statelen(drbg
));
935 /* processing of additional information string for Hash DRBG */
936 static int drbg_hash_process_addtl(struct drbg_state
*drbg
,
937 struct list_head
*addtl
)
940 struct drbg_string data1
, data2
;
942 unsigned char prefix
= DRBG_PREFIX2
;
944 /* this is value w as per documentation */
945 memset(drbg
->scratchpad
, 0, drbg_blocklen(drbg
));
947 /* 10.1.1.4 step 2 */
948 if (!addtl
|| list_empty(addtl
))
951 /* 10.1.1.4 step 2a */
952 drbg_string_fill(&data1
, &prefix
, 1);
953 drbg_string_fill(&data2
, drbg
->V
, drbg_statelen(drbg
));
954 list_add_tail(&data1
.list
, &datalist
);
955 list_add_tail(&data2
.list
, &datalist
);
956 list_splice_tail(addtl
, &datalist
);
957 ret
= drbg_kcapi_hash(drbg
, NULL
, drbg
->scratchpad
, &datalist
);
961 /* 10.1.1.4 step 2b */
962 drbg_add_buf(drbg
->V
, drbg_statelen(drbg
),
963 drbg
->scratchpad
, drbg_blocklen(drbg
));
966 memset(drbg
->scratchpad
, 0, drbg_blocklen(drbg
));
970 /* Hashgen defined in 10.1.1.4 */
971 static int drbg_hash_hashgen(struct drbg_state
*drbg
,
977 unsigned char *src
= drbg
->scratchpad
;
978 unsigned char *dst
= drbg
->scratchpad
+ drbg_statelen(drbg
);
979 struct drbg_string data
;
981 unsigned char prefix
= DRBG_PREFIX1
;
983 memset(src
, 0, drbg_statelen(drbg
));
984 memset(dst
, 0, drbg_blocklen(drbg
));
986 /* 10.1.1.4 step hashgen 2 */
987 memcpy(src
, drbg
->V
, drbg_statelen(drbg
));
989 drbg_string_fill(&data
, src
, drbg_statelen(drbg
));
990 list_add_tail(&data
.list
, &datalist
);
991 while (len
< buflen
) {
992 unsigned int outlen
= 0;
993 /* 10.1.1.4 step hashgen 4.1 */
994 ret
= drbg_kcapi_hash(drbg
, NULL
, dst
, &datalist
);
999 outlen
= (drbg_blocklen(drbg
) < (buflen
- len
)) ?
1000 drbg_blocklen(drbg
) : (buflen
- len
);
1001 if (!drbg_fips_continuous_test(drbg
, dst
)) {
1002 drbg_add_buf(src
, drbg_statelen(drbg
), &prefix
, 1);
1005 /* 10.1.1.4 step hashgen 4.2 */
1006 memcpy(buf
+ len
, dst
, outlen
);
1008 /* 10.1.1.4 hashgen step 4.3 */
1010 drbg_add_buf(src
, drbg_statelen(drbg
), &prefix
, 1);
1014 memset(drbg
->scratchpad
, 0,
1015 (drbg_statelen(drbg
) + drbg_blocklen(drbg
)));
1019 /* generate function for Hash DRBG as defined in 10.1.1.4 */
1020 static int drbg_hash_generate(struct drbg_state
*drbg
,
1021 unsigned char *buf
, unsigned int buflen
,
1022 struct list_head
*addtl
)
1026 unsigned char req
[8];
1027 unsigned char prefix
= DRBG_PREFIX3
;
1028 struct drbg_string data1
, data2
;
1029 LIST_HEAD(datalist
);
1031 /* 10.1.1.4 step 2 */
1032 ret
= drbg_hash_process_addtl(drbg
, addtl
);
1035 /* 10.1.1.4 step 3 */
1036 len
= drbg_hash_hashgen(drbg
, buf
, buflen
);
1038 /* this is the value H as documented in 10.1.1.4 */
1039 memset(drbg
->scratchpad
, 0, drbg_blocklen(drbg
));
1040 /* 10.1.1.4 step 4 */
1041 drbg_string_fill(&data1
, &prefix
, 1);
1042 list_add_tail(&data1
.list
, &datalist
);
1043 drbg_string_fill(&data2
, drbg
->V
, drbg_statelen(drbg
));
1044 list_add_tail(&data2
.list
, &datalist
);
1045 ret
= drbg_kcapi_hash(drbg
, NULL
, drbg
->scratchpad
, &datalist
);
1051 /* 10.1.1.4 step 5 */
1052 drbg_add_buf(drbg
->V
, drbg_statelen(drbg
),
1053 drbg
->scratchpad
, drbg_blocklen(drbg
));
1054 drbg_add_buf(drbg
->V
, drbg_statelen(drbg
),
1055 drbg
->C
, drbg_statelen(drbg
));
1056 drbg_int2byte(req
, drbg
->reseed_ctr
, sizeof(req
));
1057 drbg_add_buf(drbg
->V
, drbg_statelen(drbg
), req
, 8);
1060 memset(drbg
->scratchpad
, 0, drbg_blocklen(drbg
));
1065 * scratchpad usage: as update and generate are used isolated, both
1066 * can use the scratchpad
1068 static struct drbg_state_ops drbg_hash_ops
= {
1069 .update
= drbg_hash_update
,
1070 .generate
= drbg_hash_generate
,
1071 .crypto_init
= drbg_init_hash_kernel
,
1072 .crypto_fini
= drbg_fini_hash_kernel
,
1074 #endif /* CONFIG_CRYPTO_DRBG_HASH */
1076 /******************************************************************
1077 * Functions common for DRBG implementations
1078 ******************************************************************/
1081 * Seeding or reseeding of the DRBG
1083 * @drbg: DRBG state struct
1084 * @pers: personalization / additional information buffer
1085 * @reseed: 0 for initial seed process, 1 for reseeding
1089 * error value otherwise
1091 static int drbg_seed(struct drbg_state
*drbg
, struct drbg_string
*pers
,
1095 unsigned char *entropy
= NULL
;
1096 size_t entropylen
= 0;
1097 struct drbg_string data1
;
1098 LIST_HEAD(seedlist
);
1100 /* 9.1 / 9.2 / 9.3.1 step 3 */
1101 if (pers
&& pers
->len
> (drbg_max_addtl(drbg
))) {
1102 pr_devel("DRBG: personalization string too long %zu\n",
1107 if (drbg
->test_data
&& drbg
->test_data
->testentropy
) {
1108 drbg_string_fill(&data1
, drbg
->test_data
->testentropy
->buf
,
1109 drbg
->test_data
->testentropy
->len
);
1110 pr_devel("DRBG: using test entropy\n");
1113 * Gather entropy equal to the security strength of the DRBG.
1114 * With a derivation function, a nonce is required in addition
1115 * to the entropy. A nonce must be at least 1/2 of the security
1116 * strength of the DRBG in size. Thus, entropy * nonce is 3/2
1117 * of the strength. The consideration of a nonce is only
1118 * applicable during initial seeding.
1120 entropylen
= drbg_sec_strength(drbg
->core
->flags
);
1124 entropylen
= ((entropylen
+ 1) / 2) * 3;
1125 pr_devel("DRBG: (re)seeding with %zu bytes of entropy\n",
1127 entropy
= kzalloc(entropylen
, GFP_KERNEL
);
1130 get_random_bytes(entropy
, entropylen
);
1131 drbg_string_fill(&data1
, entropy
, entropylen
);
1133 list_add_tail(&data1
.list
, &seedlist
);
1136 * concatenation of entropy with personalization str / addtl input)
1137 * the variable pers is directly handed in by the caller, so check its
1138 * contents whether it is appropriate
1140 if (pers
&& pers
->buf
&& 0 < pers
->len
) {
1141 list_add_tail(&pers
->list
, &seedlist
);
1142 pr_devel("DRBG: using personalization string\n");
1145 ret
= drbg
->d_ops
->update(drbg
, &seedlist
, reseed
);
1149 drbg
->seeded
= true;
1150 /* 10.1.1.2 / 10.1.1.3 step 5 */
1151 drbg
->reseed_ctr
= 1;
1159 /* Free all substructures in a DRBG state without the DRBG state structure */
1160 static inline void drbg_dealloc_state(struct drbg_state
*drbg
)
1170 if (drbg
->scratchpad
)
1171 kzfree(drbg
->scratchpad
);
1172 drbg
->scratchpad
= NULL
;
1173 drbg
->reseed_ctr
= 0;
1174 #ifdef CONFIG_CRYPTO_FIPS
1178 drbg
->fips_primed
= false;
1183 * Allocate all sub-structures for a DRBG state.
1184 * The DRBG state structure must already be allocated.
1186 static inline int drbg_alloc_state(struct drbg_state
*drbg
)
1189 unsigned int sb_size
= 0;
1194 drbg
->V
= kzalloc(drbg_statelen(drbg
), GFP_KERNEL
);
1197 drbg
->C
= kzalloc(drbg_statelen(drbg
), GFP_KERNEL
);
1200 #ifdef CONFIG_CRYPTO_FIPS
1201 drbg
->prev
= kzalloc(drbg_blocklen(drbg
), GFP_KERNEL
);
1204 drbg
->fips_primed
= false;
1206 /* scratchpad is only generated for CTR and Hash */
1207 if (drbg
->core
->flags
& DRBG_HMAC
)
1209 else if (drbg
->core
->flags
& DRBG_CTR
)
1210 sb_size
= drbg_statelen(drbg
) + drbg_blocklen(drbg
) + /* temp */
1211 drbg_statelen(drbg
) + /* df_data */
1212 drbg_blocklen(drbg
) + /* pad */
1213 drbg_blocklen(drbg
) + /* iv */
1214 drbg_statelen(drbg
) + drbg_blocklen(drbg
); /* temp */
1216 sb_size
= drbg_statelen(drbg
) + drbg_blocklen(drbg
);
1219 drbg
->scratchpad
= kzalloc(sb_size
, GFP_KERNEL
);
1220 if (!drbg
->scratchpad
)
1223 spin_lock_init(&drbg
->drbg_lock
);
1227 drbg_dealloc_state(drbg
);
1232 * Strategy to avoid holding long term locks: generate a shadow copy of DRBG
1233 * and perform all operations on this shadow copy. After finishing, restore
1234 * the updated state of the shadow copy into original drbg state. This way,
1235 * only the read and write operations of the original drbg state must be
1238 static inline void drbg_copy_drbg(struct drbg_state
*src
,
1239 struct drbg_state
*dst
)
1243 memcpy(dst
->V
, src
->V
, drbg_statelen(src
));
1244 memcpy(dst
->C
, src
->C
, drbg_statelen(src
));
1245 dst
->reseed_ctr
= src
->reseed_ctr
;
1246 dst
->seeded
= src
->seeded
;
1248 #ifdef CONFIG_CRYPTO_FIPS
1249 dst
->fips_primed
= src
->fips_primed
;
1250 memcpy(dst
->prev
, src
->prev
, drbg_blocklen(src
));
1254 * scratchpad is initialized drbg_alloc_state;
1255 * priv_data is initialized with call to crypto_init;
1256 * d_ops and core are set outside, as these parameters are const;
1257 * test_data is set outside to prevent it being copied back.
1261 static int drbg_make_shadow(struct drbg_state
*drbg
, struct drbg_state
**shadow
)
1264 struct drbg_state
*tmp
= NULL
;
1266 if (!drbg
|| !drbg
->core
|| !drbg
->V
|| !drbg
->C
) {
1267 pr_devel("DRBG: attempt to generate shadow copy for "
1268 "uninitialized DRBG state rejected\n");
1271 /* HMAC does not have a scratchpad */
1272 if (!(drbg
->core
->flags
& DRBG_HMAC
) && NULL
== drbg
->scratchpad
)
1275 tmp
= kzalloc(sizeof(struct drbg_state
), GFP_KERNEL
);
1279 /* read-only data as they are defined as const, no lock needed */
1280 tmp
->core
= drbg
->core
;
1281 tmp
->d_ops
= drbg
->d_ops
;
1283 ret
= drbg_alloc_state(tmp
);
1287 spin_lock_bh(&drbg
->drbg_lock
);
1288 drbg_copy_drbg(drbg
, tmp
);
1289 /* only make a link to the test buffer, as we only read that data */
1290 tmp
->test_data
= drbg
->test_data
;
1291 spin_unlock_bh(&drbg
->drbg_lock
);
1301 static void drbg_restore_shadow(struct drbg_state
*drbg
,
1302 struct drbg_state
**shadow
)
1304 struct drbg_state
*tmp
= *shadow
;
1306 spin_lock_bh(&drbg
->drbg_lock
);
1307 drbg_copy_drbg(tmp
, drbg
);
1308 spin_unlock_bh(&drbg
->drbg_lock
);
1309 drbg_dealloc_state(tmp
);
1314 /*************************************************************************
1315 * DRBG interface functions
1316 *************************************************************************/
1319 * DRBG generate function as required by SP800-90A - this function
1320 * generates random numbers
1322 * @drbg DRBG state handle
1323 * @buf Buffer where to store the random numbers -- the buffer must already
1324 * be pre-allocated by caller
1325 * @buflen Length of output buffer - this value defines the number of random
1326 * bytes pulled from DRBG
1327 * @addtl Additional input that is mixed into state, may be NULL -- note
1328 * the entropy is pulled by the DRBG internally unconditionally
1329 * as defined in SP800-90A. The additional input is mixed into
1330 * the state in addition to the pulled entropy.
1332 * return: generated number of bytes
1334 static int drbg_generate(struct drbg_state
*drbg
,
1335 unsigned char *buf
, unsigned int buflen
,
1336 struct drbg_string
*addtl
)
1339 struct drbg_state
*shadow
= NULL
;
1340 LIST_HEAD(addtllist
);
1341 struct drbg_string timestamp
;
1344 unsigned char char_cycles
[sizeof(cycles_t
)];
1347 if (0 == buflen
|| !buf
) {
1348 pr_devel("DRBG: no output buffer provided\n");
1351 if (addtl
&& NULL
== addtl
->buf
&& 0 < addtl
->len
) {
1352 pr_devel("DRBG: wrong format of additional information\n");
1356 len
= drbg_make_shadow(drbg
, &shadow
);
1358 pr_devel("DRBG: shadow copy cannot be generated\n");
1364 if (buflen
> (drbg_max_request_bytes(shadow
))) {
1365 pr_devel("DRBG: requested random numbers too large %u\n",
1370 /* 9.3.1 step 3 is implicit with the chosen DRBG */
1373 if (addtl
&& addtl
->len
> (drbg_max_addtl(shadow
))) {
1374 pr_devel("DRBG: additional information string too long %zu\n",
1378 /* 9.3.1 step 5 is implicit with the chosen DRBG */
1381 * 9.3.1 step 6 and 9 supplemented by 9.3.2 step c is implemented
1382 * here. The spec is a bit convoluted here, we make it simpler.
1384 if ((drbg_max_requests(shadow
)) < shadow
->reseed_ctr
)
1385 shadow
->seeded
= false;
1387 /* allocate cipher handle */
1388 if (shadow
->d_ops
->crypto_init
) {
1389 len
= shadow
->d_ops
->crypto_init(shadow
);
1394 if (shadow
->pr
|| !shadow
->seeded
) {
1395 pr_devel("DRBG: reseeding before generation (prediction "
1396 "resistance: %s, state %s)\n",
1397 drbg
->pr
? "true" : "false",
1398 drbg
->seeded
? "seeded" : "unseeded");
1399 /* 9.3.1 steps 7.1 through 7.3 */
1400 len
= drbg_seed(shadow
, addtl
, true);
1403 /* 9.3.1 step 7.4 */
1408 * Mix the time stamp into the DRBG state if the DRBG is not in
1409 * test mode. If there are two callers invoking the DRBG at the same
1410 * time, i.e. before the first caller merges its shadow state back,
1411 * both callers would obtain the same random number stream without
1412 * changing the state here.
1414 if (!drbg
->test_data
) {
1415 now
.cycles
= random_get_entropy();
1416 drbg_string_fill(×tamp
, now
.char_cycles
, sizeof(cycles_t
));
1417 list_add_tail(×tamp
.list
, &addtllist
);
1419 if (addtl
&& 0 < addtl
->len
)
1420 list_add_tail(&addtl
->list
, &addtllist
);
1421 /* 9.3.1 step 8 and 10 */
1422 len
= shadow
->d_ops
->generate(shadow
, buf
, buflen
, &addtllist
);
1424 /* 10.1.1.4 step 6, 10.1.2.5 step 7, 10.2.1.5.2 step 7 */
1425 shadow
->reseed_ctr
++;
1430 * Section 11.3.3 requires to re-perform self tests after some
1431 * generated random numbers. The chosen value after which self
1432 * test is performed is arbitrary, but it should be reasonable.
1433 * However, we do not perform the self tests because of the following
1434 * reasons: it is mathematically impossible that the initial self tests
1435 * were successfully and the following are not. If the initial would
1436 * pass and the following would not, the kernel integrity is violated.
1437 * In this case, the entire kernel operation is questionable and it
1438 * is unlikely that the integrity violation only affects the
1439 * correct operation of the DRBG.
1441 * Albeit the following code is commented out, it is provided in
1442 * case somebody has a need to implement the test of 11.3.3.
1445 if (shadow
->reseed_ctr
&& !(shadow
->reseed_ctr
% 4096)) {
1447 pr_devel("DRBG: start to perform self test\n");
1448 if (drbg
->core
->flags
& DRBG_HMAC
)
1449 err
= alg_test("drbg_pr_hmac_sha256",
1450 "drbg_pr_hmac_sha256", 0, 0);
1451 else if (drbg
->core
->flags
& DRBG_CTR
)
1452 err
= alg_test("drbg_pr_ctr_aes128",
1453 "drbg_pr_ctr_aes128", 0, 0);
1455 err
= alg_test("drbg_pr_sha256",
1456 "drbg_pr_sha256", 0, 0);
1458 pr_err("DRBG: periodical self test failed\n");
1460 * uninstantiate implies that from now on, only errors
1461 * are returned when reusing this DRBG cipher handle
1463 drbg_uninstantiate(drbg
);
1464 drbg_dealloc_state(shadow
);
1468 pr_devel("DRBG: self test successful\n");
1474 if (shadow
->d_ops
->crypto_fini
)
1475 shadow
->d_ops
->crypto_fini(shadow
);
1476 drbg_restore_shadow(drbg
, &shadow
);
1481 * Wrapper around drbg_generate which can pull arbitrary long strings
1482 * from the DRBG without hitting the maximum request limitation.
1484 * Parameters: see drbg_generate
1485 * Return codes: see drbg_generate -- if one drbg_generate request fails,
1486 * the entire drbg_generate_long request fails
1488 static int drbg_generate_long(struct drbg_state
*drbg
,
1489 unsigned char *buf
, unsigned int buflen
,
1490 struct drbg_string
*addtl
)
1493 unsigned int slice
= 0;
1496 unsigned int chunk
= 0;
1497 slice
= ((buflen
- len
) / drbg_max_request_bytes(drbg
));
1498 chunk
= slice
? drbg_max_request_bytes(drbg
) : (buflen
- len
);
1499 tmplen
= drbg_generate(drbg
, buf
+ len
, chunk
, addtl
);
1503 } while (slice
> 0 && (len
< buflen
));
1508 * DRBG instantiation function as required by SP800-90A - this function
1509 * sets up the DRBG handle, performs the initial seeding and all sanity
1510 * checks required by SP800-90A
1512 * @drbg memory of state -- if NULL, new memory is allocated
1513 * @pers Personalization string that is mixed into state, may be NULL -- note
1514 * the entropy is pulled by the DRBG internally unconditionally
1515 * as defined in SP800-90A. The additional input is mixed into
1516 * the state in addition to the pulled entropy.
1517 * @coreref reference to core
1518 * @pr prediction resistance enabled
1522 * error value otherwise
1524 static int drbg_instantiate(struct drbg_state
*drbg
, struct drbg_string
*pers
,
1525 int coreref
, bool pr
)
1529 pr_devel("DRBG: Initializing DRBG core %d with prediction resistance "
1530 "%s\n", coreref
, pr
? "enabled" : "disabled");
1531 drbg
->core
= &drbg_cores
[coreref
];
1533 drbg
->seeded
= false;
1534 switch (drbg
->core
->flags
& DRBG_TYPE_MASK
) {
1535 #ifdef CONFIG_CRYPTO_DRBG_HMAC
1537 drbg
->d_ops
= &drbg_hmac_ops
;
1539 #endif /* CONFIG_CRYPTO_DRBG_HMAC */
1540 #ifdef CONFIG_CRYPTO_DRBG_HASH
1542 drbg
->d_ops
= &drbg_hash_ops
;
1544 #endif /* CONFIG_CRYPTO_DRBG_HASH */
1545 #ifdef CONFIG_CRYPTO_DRBG_CTR
1547 drbg
->d_ops
= &drbg_ctr_ops
;
1549 #endif /* CONFIG_CRYPTO_DRBG_CTR */
1554 /* 9.1 step 1 is implicit with the selected DRBG type */
1557 * 9.1 step 2 is implicit as caller can select prediction resistance
1558 * and the flag is copied into drbg->flags --
1559 * all DRBG types support prediction resistance
1562 /* 9.1 step 4 is implicit in drbg_sec_strength */
1564 ret
= drbg_alloc_state(drbg
);
1569 if (drbg
->d_ops
->crypto_init
&& drbg
->d_ops
->crypto_init(drbg
))
1571 ret
= drbg_seed(drbg
, pers
, false);
1572 if (drbg
->d_ops
->crypto_fini
)
1573 drbg
->d_ops
->crypto_fini(drbg
);
1580 drbg_dealloc_state(drbg
);
1585 * DRBG uninstantiate function as required by SP800-90A - this function
1586 * frees all buffers and the DRBG handle
1588 * @drbg DRBG state handle
1593 static int drbg_uninstantiate(struct drbg_state
*drbg
)
1595 spin_lock_bh(&drbg
->drbg_lock
);
1596 drbg_dealloc_state(drbg
);
1597 /* no scrubbing of test_data -- this shall survive an uninstantiate */
1598 spin_unlock_bh(&drbg
->drbg_lock
);
1603 * Helper function for setting the test data in the DRBG
1605 * @drbg DRBG state handle
1606 * @test_data test data to sets
1608 static inline void drbg_set_testdata(struct drbg_state
*drbg
,
1609 struct drbg_test_data
*test_data
)
1611 if (!test_data
|| !test_data
->testentropy
)
1613 spin_lock_bh(&drbg
->drbg_lock
);
1614 drbg
->test_data
= test_data
;
1615 spin_unlock_bh(&drbg
->drbg_lock
);
1618 /***************************************************************
1619 * Kernel crypto API cipher invocations requested by DRBG
1620 ***************************************************************/
1622 #if defined(CONFIG_CRYPTO_DRBG_HASH) || defined(CONFIG_CRYPTO_DRBG_HMAC)
1624 struct shash_desc shash
;
1628 static int drbg_init_hash_kernel(struct drbg_state
*drbg
)
1630 struct sdesc
*sdesc
;
1631 struct crypto_shash
*tfm
;
1633 tfm
= crypto_alloc_shash(drbg
->core
->backend_cra_name
, 0, 0);
1635 pr_info("DRBG: could not allocate digest TFM handle\n");
1636 return PTR_ERR(tfm
);
1638 BUG_ON(drbg_blocklen(drbg
) != crypto_shash_digestsize(tfm
));
1639 sdesc
= kzalloc(sizeof(struct shash_desc
) + crypto_shash_descsize(tfm
),
1642 crypto_free_shash(tfm
);
1646 sdesc
->shash
.tfm
= tfm
;
1647 sdesc
->shash
.flags
= 0;
1648 drbg
->priv_data
= sdesc
;
1652 static int drbg_fini_hash_kernel(struct drbg_state
*drbg
)
1654 struct sdesc
*sdesc
= (struct sdesc
*)drbg
->priv_data
;
1656 crypto_free_shash(sdesc
->shash
.tfm
);
1659 drbg
->priv_data
= NULL
;
1663 static int drbg_kcapi_hash(struct drbg_state
*drbg
, const unsigned char *key
,
1664 unsigned char *outval
, const struct list_head
*in
)
1666 struct sdesc
*sdesc
= (struct sdesc
*)drbg
->priv_data
;
1667 struct drbg_string
*input
= NULL
;
1670 crypto_shash_setkey(sdesc
->shash
.tfm
, key
, drbg_statelen(drbg
));
1671 crypto_shash_init(&sdesc
->shash
);
1672 list_for_each_entry(input
, in
, list
)
1673 crypto_shash_update(&sdesc
->shash
, input
->buf
, input
->len
);
1674 return crypto_shash_final(&sdesc
->shash
, outval
);
1676 #endif /* (CONFIG_CRYPTO_DRBG_HASH || CONFIG_CRYPTO_DRBG_HMAC) */
1678 #ifdef CONFIG_CRYPTO_DRBG_CTR
1679 static int drbg_init_sym_kernel(struct drbg_state
*drbg
)
1682 struct crypto_blkcipher
*tfm
;
1684 tfm
= crypto_alloc_blkcipher(drbg
->core
->backend_cra_name
, 0, 0);
1686 pr_info("DRBG: could not allocate cipher TFM handle\n");
1687 return PTR_ERR(tfm
);
1689 BUG_ON(drbg_blocklen(drbg
) != crypto_blkcipher_blocksize(tfm
));
1690 drbg
->priv_data
= tfm
;
1694 static int drbg_fini_sym_kernel(struct drbg_state
*drbg
)
1696 struct crypto_blkcipher
*tfm
=
1697 (struct crypto_blkcipher
*)drbg
->priv_data
;
1699 crypto_free_blkcipher(tfm
);
1700 drbg
->priv_data
= NULL
;
1704 static int drbg_kcapi_sym(struct drbg_state
*drbg
, const unsigned char *key
,
1705 unsigned char *outval
, const struct drbg_string
*in
)
1708 struct scatterlist sg_in
, sg_out
;
1709 struct blkcipher_desc desc
;
1710 struct crypto_blkcipher
*tfm
=
1711 (struct crypto_blkcipher
*)drbg
->priv_data
;
1715 crypto_blkcipher_setkey(tfm
, key
, (drbg_keylen(drbg
)));
1716 /* there is only component in *in */
1717 sg_init_one(&sg_in
, in
->buf
, in
->len
);
1718 sg_init_one(&sg_out
, outval
, drbg_blocklen(drbg
));
1719 ret
= crypto_blkcipher_encrypt(&desc
, &sg_out
, &sg_in
, in
->len
);
1723 #endif /* CONFIG_CRYPTO_DRBG_CTR */
1725 /***************************************************************
1726 * Kernel crypto API interface to register DRBG
1727 ***************************************************************/
1730 * Look up the DRBG flags by given kernel crypto API cra_name
1731 * The code uses the drbg_cores definition to do this
1733 * @cra_name kernel crypto API cra_name
1734 * @coreref reference to integer which is filled with the pointer to
1735 * the applicable core
1736 * @pr reference for setting prediction resistance
1740 static inline void drbg_convert_tfm_core(const char *cra_driver_name
,
1741 int *coreref
, bool *pr
)
1748 /* disassemble the names */
1749 if (!memcmp(cra_driver_name
, "drbg_nopr_", 10)) {
1752 } else if (!memcmp(cra_driver_name
, "drbg_pr_", 8)) {
1758 /* remove the first part */
1759 len
= strlen(cra_driver_name
) - start
;
1760 for (i
= 0; ARRAY_SIZE(drbg_cores
) > i
; i
++) {
1761 if (!memcmp(cra_driver_name
+ start
, drbg_cores
[i
].cra_name
,
1769 static int drbg_kcapi_init(struct crypto_tfm
*tfm
)
1771 struct drbg_state
*drbg
= crypto_tfm_ctx(tfm
);
1775 drbg_convert_tfm_core(crypto_tfm_alg_driver_name(tfm
), &coreref
, &pr
);
1777 * when personalization string is needed, the caller must call reset
1778 * and provide the personalization string as seed information
1780 return drbg_instantiate(drbg
, NULL
, coreref
, pr
);
1783 static void drbg_kcapi_cleanup(struct crypto_tfm
*tfm
)
1785 drbg_uninstantiate(crypto_tfm_ctx(tfm
));
1789 * Generate random numbers invoked by the kernel crypto API:
1790 * The API of the kernel crypto API is extended as follows:
1792 * If dlen is larger than zero, rdata is interpreted as the output buffer
1793 * where random data is to be stored.
1795 * If dlen is zero, rdata is interpreted as a pointer to a struct drbg_gen
1796 * which holds the additional information string that is used for the
1797 * DRBG generation process. The output buffer that is to be used to store
1798 * data is also pointed to by struct drbg_gen.
1800 static int drbg_kcapi_random(struct crypto_rng
*tfm
, u8
*rdata
,
1803 struct drbg_state
*drbg
= crypto_rng_ctx(tfm
);
1805 return drbg_generate_long(drbg
, rdata
, dlen
, NULL
);
1807 struct drbg_gen
*data
= (struct drbg_gen
*)rdata
;
1808 struct drbg_string addtl
;
1809 /* catch NULL pointer */
1812 drbg_set_testdata(drbg
, data
->test_data
);
1813 /* linked list variable is now local to allow modification */
1814 drbg_string_fill(&addtl
, data
->addtl
->buf
, data
->addtl
->len
);
1815 return drbg_generate_long(drbg
, data
->outbuf
, data
->outlen
,
1821 * Reset the DRBG invoked by the kernel crypto API
1822 * The reset implies a full re-initialization of the DRBG. Similar to the
1823 * generate function of drbg_kcapi_random, this function extends the
1824 * kernel crypto API interface with struct drbg_gen
1826 static int drbg_kcapi_reset(struct crypto_rng
*tfm
, u8
*seed
, unsigned int slen
)
1828 struct drbg_state
*drbg
= crypto_rng_ctx(tfm
);
1829 struct crypto_tfm
*tfm_base
= crypto_rng_tfm(tfm
);
1831 struct drbg_string seed_string
;
1834 drbg_uninstantiate(drbg
);
1835 drbg_convert_tfm_core(crypto_tfm_alg_driver_name(tfm_base
), &coreref
,
1838 drbg_string_fill(&seed_string
, seed
, slen
);
1839 return drbg_instantiate(drbg
, &seed_string
, coreref
, pr
);
1841 struct drbg_gen
*data
= (struct drbg_gen
*)seed
;
1842 /* allow invocation of API call with NULL, 0 */
1844 return drbg_instantiate(drbg
, NULL
, coreref
, pr
);
1845 drbg_set_testdata(drbg
, data
->test_data
);
1846 /* linked list variable is now local to allow modification */
1847 drbg_string_fill(&seed_string
, data
->addtl
->buf
,
1849 return drbg_instantiate(drbg
, &seed_string
, coreref
, pr
);
1853 /***************************************************************
1854 * Kernel module: code to load the module
1855 ***************************************************************/
1858 * Tests as defined in 11.3.2 in addition to the cipher tests: testing
1859 * of the error handling.
1861 * Note: testing of failing seed source as defined in 11.3.2 is not applicable
1862 * as seed source of get_random_bytes does not fail.
1864 * Note 2: There is no sensible way of testing the reseed counter
1865 * enforcement, so skip it.
1867 static inline int __init
drbg_healthcheck_sanity(void)
1869 #ifdef CONFIG_CRYPTO_FIPS
1871 #define OUTBUFLEN 16
1872 unsigned char buf
[OUTBUFLEN
];
1873 struct drbg_state
*drbg
= NULL
;
1878 struct drbg_string addtl
;
1879 size_t max_addtllen
, max_request_bytes
;
1881 /* only perform test in FIPS mode */
1885 #ifdef CONFIG_CRYPTO_DRBG_CTR
1886 drbg_convert_tfm_core("drbg_nopr_ctr_aes128", &coreref
, &pr
);
1887 #elif defined CONFIG_CRYPTO_DRBG_HASH
1888 drbg_convert_tfm_core("drbg_nopr_sha256", &coreref
, &pr
);
1890 drbg_convert_tfm_core("drbg_nopr_hmac_sha256", &coreref
, &pr
);
1893 drbg
= kzalloc(sizeof(struct drbg_state
), GFP_KERNEL
);
1898 * if the following tests fail, it is likely that there is a buffer
1899 * overflow as buf is much smaller than the requested or provided
1900 * string lengths -- in case the error handling does not succeed
1901 * we may get an OOPS. And we want to get an OOPS as this is a
1905 /* get a valid instance of DRBG for following tests */
1906 ret
= drbg_instantiate(drbg
, NULL
, coreref
, pr
);
1911 max_addtllen
= drbg_max_addtl(drbg
);
1912 max_request_bytes
= drbg_max_request_bytes(drbg
);
1913 drbg_string_fill(&addtl
, buf
, max_addtllen
+ 1);
1914 /* overflow addtllen with additonal info string */
1915 len
= drbg_generate(drbg
, buf
, OUTBUFLEN
, &addtl
);
1917 /* overflow max_bits */
1918 len
= drbg_generate(drbg
, buf
, (max_request_bytes
+ 1), NULL
);
1920 drbg_uninstantiate(drbg
);
1922 /* overflow max addtllen with personalization string */
1923 ret
= drbg_instantiate(drbg
, &addtl
, coreref
, pr
);
1925 /* test uninstantated DRBG */
1926 len
= drbg_generate(drbg
, buf
, (max_request_bytes
+ 1), NULL
);
1928 /* all tests passed */
1931 pr_devel("DRBG: Sanity tests for failure code paths successfully "
1934 drbg_uninstantiate(drbg
);
1938 #else /* CONFIG_CRYPTO_FIPS */
1940 #endif /* CONFIG_CRYPTO_FIPS */
1943 static struct crypto_alg drbg_algs
[22];
1946 * Fill the array drbg_algs used to register the different DRBGs
1947 * with the kernel crypto API. To fill the array, the information
1948 * from drbg_cores[] is used.
1950 static inline void __init
drbg_fill_array(struct crypto_alg
*alg
,
1951 const struct drbg_core
*core
, int pr
)
1954 static int priority
= 100;
1956 memset(alg
, 0, sizeof(struct crypto_alg
));
1957 memcpy(alg
->cra_name
, "stdrng", 6);
1959 memcpy(alg
->cra_driver_name
, "drbg_pr_", 8);
1962 memcpy(alg
->cra_driver_name
, "drbg_nopr_", 10);
1965 memcpy(alg
->cra_driver_name
+ pos
, core
->cra_name
,
1966 strlen(core
->cra_name
));
1968 alg
->cra_priority
= priority
;
1971 * If FIPS mode enabled, the selected DRBG shall have the
1972 * highest cra_priority over other stdrng instances to ensure
1976 alg
->cra_priority
+= 200;
1978 alg
->cra_flags
= CRYPTO_ALG_TYPE_RNG
;
1979 alg
->cra_ctxsize
= sizeof(struct drbg_state
);
1980 alg
->cra_type
= &crypto_rng_type
;
1981 alg
->cra_module
= THIS_MODULE
;
1982 alg
->cra_init
= drbg_kcapi_init
;
1983 alg
->cra_exit
= drbg_kcapi_cleanup
;
1984 alg
->cra_u
.rng
.rng_make_random
= drbg_kcapi_random
;
1985 alg
->cra_u
.rng
.rng_reset
= drbg_kcapi_reset
;
1986 alg
->cra_u
.rng
.seedsize
= 0;
1989 static int __init
drbg_init(void)
1991 unsigned int i
= 0; /* pointer to drbg_algs */
1992 unsigned int j
= 0; /* pointer to drbg_cores */
1995 ret
= drbg_healthcheck_sanity();
1999 if (ARRAY_SIZE(drbg_cores
) * 2 > ARRAY_SIZE(drbg_algs
)) {
2000 pr_info("DRBG: Cannot register all DRBG types"
2001 "(slots needed: %zu, slots available: %zu)\n",
2002 ARRAY_SIZE(drbg_cores
) * 2, ARRAY_SIZE(drbg_algs
));
2007 * each DRBG definition can be used with PR and without PR, thus
2008 * we instantiate each DRBG in drbg_cores[] twice.
2010 * As the order of placing them into the drbg_algs array matters
2011 * (the later DRBGs receive a higher cra_priority) we register the
2012 * prediction resistance DRBGs first as the should not be too
2015 for (j
= 0; ARRAY_SIZE(drbg_cores
) > j
; j
++, i
++)
2016 drbg_fill_array(&drbg_algs
[i
], &drbg_cores
[j
], 1);
2017 for (j
= 0; ARRAY_SIZE(drbg_cores
) > j
; j
++, i
++)
2018 drbg_fill_array(&drbg_algs
[i
], &drbg_cores
[j
], 0);
2019 return crypto_register_algs(drbg_algs
, (ARRAY_SIZE(drbg_cores
) * 2));
2022 static void __exit
drbg_exit(void)
2024 crypto_unregister_algs(drbg_algs
, (ARRAY_SIZE(drbg_cores
) * 2));
2027 module_init(drbg_init
);
2028 module_exit(drbg_exit
);
2029 #ifndef CRYPTO_DRBG_HASH_STRING
2030 #define CRYPTO_DRBG_HASH_STRING ""
2032 #ifndef CRYPTO_DRBG_HMAC_STRING
2033 #define CRYPTO_DRBG_HMAC_STRING ""
2035 #ifndef CRYPTO_DRBG_CTR_STRING
2036 #define CRYPTO_DRBG_CTR_STRING ""
2038 MODULE_LICENSE("GPL");
2039 MODULE_AUTHOR("Stephan Mueller <smueller@chronox.de>");
2040 MODULE_DESCRIPTION("NIST SP800-90A Deterministic Random Bit Generator (DRBG) "
2041 "using following cores: "
2042 CRYPTO_DRBG_HASH_STRING
2043 CRYPTO_DRBG_HMAC_STRING
2044 CRYPTO_DRBG_CTR_STRING
);