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 #if !defined(CONFIG_CRYPTO_DRBG_HASH) && \
103 !defined(CONFIG_CRYPTO_DRBG_HMAC) && \
104 !defined(CONFIG_CRYPTO_DRBG_CTR)
105 #warning "The DRBG code is useless without compiling at least one DRBG type"
108 /***************************************************************
109 * Backend cipher definitions available to DRBG
110 ***************************************************************/
113 * The order of the DRBG definitions here matter: every DRBG is registered
114 * as stdrng. Each DRBG receives an increasing cra_priority values the later
115 * they are defined in this array (see drbg_fill_array).
117 * HMAC DRBGs are favored over Hash DRBGs over CTR DRBGs, and
118 * the SHA256 / AES 256 over other ciphers. Thus, the favored
119 * DRBGs are the latest entries in this array.
121 static const struct drbg_core drbg_cores
[] = {
122 #ifdef CONFIG_CRYPTO_DRBG_CTR
124 .flags
= DRBG_CTR
| DRBG_STRENGTH128
,
125 .statelen
= 32, /* 256 bits as defined in 10.2.1 */
129 .blocklen_bytes
= 16,
130 .cra_name
= "ctr_aes128",
131 .backend_cra_name
= "ecb(aes)",
133 .flags
= DRBG_CTR
| DRBG_STRENGTH192
,
134 .statelen
= 40, /* 320 bits as defined in 10.2.1 */
138 .blocklen_bytes
= 16,
139 .cra_name
= "ctr_aes192",
140 .backend_cra_name
= "ecb(aes)",
142 .flags
= DRBG_CTR
| DRBG_STRENGTH256
,
143 .statelen
= 48, /* 384 bits as defined in 10.2.1 */
147 .blocklen_bytes
= 16,
148 .cra_name
= "ctr_aes256",
149 .backend_cra_name
= "ecb(aes)",
151 #endif /* CONFIG_CRYPTO_DRBG_CTR */
152 #ifdef CONFIG_CRYPTO_DRBG_HASH
154 .flags
= DRBG_HASH
| DRBG_STRENGTH128
,
155 .statelen
= 55, /* 440 bits */
159 .blocklen_bytes
= 20,
161 .backend_cra_name
= "sha1",
163 .flags
= DRBG_HASH
| DRBG_STRENGTH256
,
164 .statelen
= 111, /* 888 bits */
168 .blocklen_bytes
= 48,
169 .cra_name
= "sha384",
170 .backend_cra_name
= "sha384",
172 .flags
= DRBG_HASH
| DRBG_STRENGTH256
,
173 .statelen
= 111, /* 888 bits */
177 .blocklen_bytes
= 64,
178 .cra_name
= "sha512",
179 .backend_cra_name
= "sha512",
181 .flags
= DRBG_HASH
| DRBG_STRENGTH256
,
182 .statelen
= 55, /* 440 bits */
186 .blocklen_bytes
= 32,
187 .cra_name
= "sha256",
188 .backend_cra_name
= "sha256",
190 #endif /* CONFIG_CRYPTO_DRBG_HASH */
191 #ifdef CONFIG_CRYPTO_DRBG_HMAC
193 .flags
= DRBG_HMAC
| DRBG_STRENGTH256
,
194 .statelen
= 20, /* block length of cipher */
198 .blocklen_bytes
= 20,
199 .cra_name
= "hmac_sha1",
200 .backend_cra_name
= "hmac(sha1)",
202 .flags
= DRBG_HMAC
| DRBG_STRENGTH256
,
203 .statelen
= 48, /* block length of cipher */
207 .blocklen_bytes
= 48,
208 .cra_name
= "hmac_sha384",
209 .backend_cra_name
= "hmac(sha384)",
211 .flags
= DRBG_HMAC
| DRBG_STRENGTH256
,
212 .statelen
= 64, /* block length of cipher */
216 .blocklen_bytes
= 64,
217 .cra_name
= "hmac_sha512",
218 .backend_cra_name
= "hmac(sha512)",
220 .flags
= DRBG_HMAC
| DRBG_STRENGTH256
,
221 .statelen
= 32, /* block length of cipher */
225 .blocklen_bytes
= 32,
226 .cra_name
= "hmac_sha256",
227 .backend_cra_name
= "hmac(sha256)",
229 #endif /* CONFIG_CRYPTO_DRBG_HMAC */
232 /******************************************************************
233 * Generic helper functions
234 ******************************************************************/
237 * Return strength of DRBG according to SP800-90A section 8.4
239 * @flags DRBG flags reference
241 * Return: normalized strength in *bytes* value or 32 as default
242 * to counter programming errors
244 static inline unsigned short drbg_sec_strength(drbg_flag_t flags
)
246 switch (flags
& DRBG_STRENGTH_MASK
) {
247 case DRBG_STRENGTH128
:
249 case DRBG_STRENGTH192
:
251 case DRBG_STRENGTH256
:
259 * FIPS 140-2 continuous self test
260 * The test is performed on the result of one round of the output
261 * function. Thus, the function implicitly knows the size of the
264 * The FIPS test can be called in an endless loop until it returns
265 * true. Although the code looks like a potential for a deadlock, it
266 * is not the case, because returning a false cannot mathematically
267 * occur (except once when a reseed took place and the updated state
268 * would is now set up such that the generation of new value returns
269 * an identical one -- this is most unlikely and would happen only once).
270 * Thus, if this function repeatedly returns false and thus would cause
271 * a deadlock, the integrity of the entire kernel is lost.
274 * @buf output buffer of random data to be checked
280 static bool drbg_fips_continuous_test(struct drbg_state
*drbg
,
281 const unsigned char *buf
)
283 #ifdef CONFIG_CRYPTO_FIPS
285 /* skip test if we test the overall system */
288 /* only perform test in FIPS mode */
289 if (0 == fips_enabled
)
291 if (!drbg
->fips_primed
) {
292 /* Priming of FIPS test */
293 memcpy(drbg
->prev
, buf
, drbg_blocklen(drbg
));
294 drbg
->fips_primed
= true;
295 /* return false due to priming, i.e. another round is needed */
298 ret
= memcmp(drbg
->prev
, buf
, drbg_blocklen(drbg
));
299 memcpy(drbg
->prev
, buf
, drbg_blocklen(drbg
));
300 /* the test shall pass when the two compared values are not equal */
304 #endif /* CONFIG_CRYPTO_FIPS */
308 * Convert an integer into a byte representation of this integer.
309 * The byte representation is big-endian
311 * @buf buffer holding the converted integer
312 * @val value to be converted
313 * @buflen length of buffer
315 #if (defined(CONFIG_CRYPTO_DRBG_HASH) || defined(CONFIG_CRYPTO_DRBG_CTR))
316 static inline void drbg_int2byte(unsigned char *buf
, uint64_t val
,
322 byte
= buf
+ (buflen
- 1);
323 for (i
= 0; i
< buflen
; i
++)
324 *(byte
--) = val
>> (i
* 8) & 0xff;
330 * @dst buffer to increment
333 static inline void drbg_add_buf(unsigned char *dst
, size_t dstlen
,
334 const unsigned char *add
, size_t addlen
)
336 /* implied: dstlen > addlen */
337 unsigned char *dstptr
;
338 const unsigned char *addptr
;
339 unsigned int remainder
= 0;
342 dstptr
= dst
+ (dstlen
-1);
343 addptr
= add
+ (addlen
-1);
345 remainder
+= *dstptr
+ *addptr
;
346 *dstptr
= remainder
& 0xff;
348 len
--; dstptr
--; addptr
--;
350 len
= dstlen
- addlen
;
351 while (len
&& remainder
> 0) {
352 remainder
= *dstptr
+ 1;
353 *dstptr
= remainder
& 0xff;
358 #endif /* defined(CONFIG_CRYPTO_DRBG_HASH) || defined(CONFIG_CRYPTO_DRBG_CTR) */
360 /******************************************************************
361 * CTR DRBG callback functions
362 ******************************************************************/
364 #ifdef CONFIG_CRYPTO_DRBG_CTR
365 static int drbg_kcapi_sym(struct drbg_state
*drbg
, const unsigned char *key
,
366 unsigned char *outval
, const struct drbg_string
*in
);
367 static int drbg_init_sym_kernel(struct drbg_state
*drbg
);
368 static int drbg_fini_sym_kernel(struct drbg_state
*drbg
);
370 /* BCC function for CTR DRBG as defined in 10.4.3 */
371 static int drbg_ctr_bcc(struct drbg_state
*drbg
,
372 unsigned char *out
, const unsigned char *key
,
373 struct drbg_string
*in
)
376 struct drbg_string
*curr
= in
;
377 size_t inpos
= curr
->len
;
378 const unsigned char *pos
= curr
->buf
;
379 struct drbg_string data
;
381 drbg_string_fill(&data
, out
, drbg_blocklen(drbg
));
384 memset(out
, 0, drbg_blocklen(drbg
));
386 /* 10.4.3 step 2 / 4 */
389 /* 10.4.3 step 4.1 */
390 for (cnt
= 0; cnt
< drbg_blocklen(drbg
); cnt
++) {
394 * The following branch implements the linked list
395 * iteration of drbg_string *in. If we are at the
396 * end of the current list member, we have to start
397 * using the next member if available. The inpos
398 * value always points to the current byte and will
399 * be zero if we have processed the last byte of
400 * the last linked list member.
413 /* 10.4.3 step 4.2 */
414 ret
= drbg_kcapi_sym(drbg
, key
, out
, &data
);
423 * scratchpad usage: drbg_ctr_update is interlinked with drbg_ctr_df
424 * (and drbg_ctr_bcc, but this function does not need any temporary buffers),
425 * the scratchpad is used as follows:
428 * start: drbg->scratchpad
429 * length: drbg_statelen(drbg) + drbg_blocklen(drbg)
430 * note: the cipher writing into this variable works
431 * blocklen-wise. Now, when the statelen is not a multiple
432 * of blocklen, the generateion loop below "spills over"
433 * by at most blocklen. Thus, we need to give sufficient
436 * start: drbg->scratchpad +
437 * drbg_statelen(drbg) + drbg_blocklen(drbg)
438 * length: drbg_statelen(drbg)
442 * start: df_data + drbg_statelen(drbg)
443 * length: drbg_blocklen(drbg)
445 * start: pad + drbg_blocklen(drbg)
446 * length: drbg_blocklen(drbg)
448 * start: iv + drbg_blocklen(drbg)
449 * length: drbg_satelen(drbg) + drbg_blocklen(drbg)
450 * note: temp is the buffer that the BCC function operates
451 * on. BCC operates blockwise. drbg_statelen(drbg)
452 * is sufficient when the DRBG state length is a multiple
453 * of the block size. For AES192 (and maybe other ciphers)
454 * this is not correct and the length for temp is
455 * insufficient (yes, that also means for such ciphers,
456 * the final output of all BCC rounds are truncated).
457 * Therefore, add drbg_blocklen(drbg) to cover all
461 /* Derivation Function for CTR DRBG as defined in 10.4.2 */
462 static int drbg_ctr_df(struct drbg_state
*drbg
,
463 unsigned char *df_data
, size_t bytes_to_return
,
464 struct drbg_string
*addtl
)
467 unsigned char L_N
[8];
469 struct drbg_string S1
, S2
, S4
, cipherin
;
470 struct drbg_string
*tempstr
= addtl
;
471 unsigned char *pad
= df_data
+ drbg_statelen(drbg
);
472 unsigned char *iv
= pad
+ drbg_blocklen(drbg
);
473 unsigned char *temp
= iv
+ drbg_blocklen(drbg
);
475 unsigned int templen
= 0;
479 const unsigned char *K
= (unsigned char *)
480 "\x00\x01\x02\x03\x04\x05\x06\x07"
481 "\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f"
482 "\x10\x11\x12\x13\x14\x15\x16\x17"
483 "\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f";
485 size_t generated_len
= 0;
488 memset(pad
, 0, drbg_blocklen(drbg
));
489 memset(iv
, 0, drbg_blocklen(drbg
));
490 memset(temp
, 0, drbg_statelen(drbg
));
492 /* 10.4.2 step 1 is implicit as we work byte-wise */
495 if ((512/8) < bytes_to_return
)
498 /* 10.4.2 step 2 -- calculate the entire length of all input data */
499 for (; NULL
!= tempstr
; tempstr
= tempstr
->next
)
500 inputlen
+= tempstr
->len
;
501 drbg_int2byte(&L_N
[0], inputlen
, 4);
504 drbg_int2byte(&L_N
[4], bytes_to_return
, 4);
506 /* 10.4.2 step 5: length is L_N, input_string, one byte, padding */
507 padlen
= (inputlen
+ sizeof(L_N
) + 1) % (drbg_blocklen(drbg
));
508 /* wrap the padlen appropriately */
510 padlen
= drbg_blocklen(drbg
) - padlen
;
512 * pad / padlen contains the 0x80 byte and the following zero bytes.
513 * As the calculated padlen value only covers the number of zero
514 * bytes, this value has to be incremented by one for the 0x80 byte.
519 /* 10.4.2 step 4 -- first fill the linked list and then order it */
520 drbg_string_fill(&S1
, iv
, drbg_blocklen(drbg
));
521 drbg_string_fill(&S2
, L_N
, sizeof(L_N
));
522 drbg_string_fill(&S4
, pad
, padlen
);
527 * Splice in addtl between S2 and S4 -- we place S4 at the end
528 * of the input data chain. As this code is only triggered when
529 * addtl is not NULL, no NULL checks are necessary.
532 while (tempstr
->next
)
533 tempstr
= tempstr
->next
;
537 while (templen
< (drbg_keylen(drbg
) + (drbg_blocklen(drbg
)))) {
539 * 10.4.2 step 9.1 - the padding is implicit as the buffer
540 * holds zeros after allocation -- even the increment of i
541 * is irrelevant as the increment remains within length of i
543 drbg_int2byte(iv
, i
, 4);
544 /* 10.4.2 step 9.2 -- BCC and concatenation with temp */
545 ret
= drbg_ctr_bcc(drbg
, temp
+ templen
, K
, &S1
);
548 /* 10.4.2 step 9.3 */
550 templen
+= drbg_blocklen(drbg
);
554 X
= temp
+ (drbg_keylen(drbg
));
555 drbg_string_fill(&cipherin
, X
, drbg_blocklen(drbg
));
557 /* 10.4.2 step 12: overwriting of outval is implemented in next step */
560 while (generated_len
< bytes_to_return
) {
563 * 10.4.2 step 13.1: the truncation of the key length is
564 * implicit as the key is only drbg_blocklen in size based on
565 * the implementation of the cipher function callback
567 ret
= drbg_kcapi_sym(drbg
, temp
, X
, &cipherin
);
570 blocklen
= (drbg_blocklen(drbg
) <
571 (bytes_to_return
- generated_len
)) ?
572 drbg_blocklen(drbg
) :
573 (bytes_to_return
- generated_len
);
574 /* 10.4.2 step 13.2 and 14 */
575 memcpy(df_data
+ generated_len
, X
, blocklen
);
576 generated_len
+= blocklen
;
582 memset(iv
, 0, drbg_blocklen(drbg
));
583 memset(temp
, 0, drbg_statelen(drbg
));
584 memset(pad
, 0, drbg_blocklen(drbg
));
588 /* update function of CTR DRBG as defined in 10.2.1.2 */
589 static int drbg_ctr_update(struct drbg_state
*drbg
,
590 struct drbg_string
*addtl
, int reseed
)
593 /* 10.2.1.2 step 1 */
594 unsigned char *temp
= drbg
->scratchpad
;
595 unsigned char *df_data
= drbg
->scratchpad
+ drbg_statelen(drbg
) +
597 unsigned char *temp_p
, *df_data_p
; /* pointer to iterate over buffers */
598 unsigned int len
= 0;
599 struct drbg_string cipherin
;
600 unsigned char prefix
= DRBG_PREFIX1
;
602 memset(temp
, 0, drbg_statelen(drbg
) + drbg_blocklen(drbg
));
603 memset(df_data
, 0, drbg_statelen(drbg
));
605 /* 10.2.1.3.2 step 2 and 10.2.1.4.2 step 2 */
606 if (addtl
&& 0 < addtl
->len
) {
607 ret
= drbg_ctr_df(drbg
, df_data
, drbg_statelen(drbg
),
613 drbg_string_fill(&cipherin
, drbg
->V
, drbg_blocklen(drbg
));
615 * 10.2.1.3.2 steps 2 and 3 are already covered as the allocation
616 * zeroizes all memory during initialization
618 while (len
< (drbg_statelen(drbg
))) {
619 /* 10.2.1.2 step 2.1 */
620 drbg_add_buf(drbg
->V
, drbg_blocklen(drbg
), &prefix
, 1);
622 * 10.2.1.2 step 2.2 */
623 ret
= drbg_kcapi_sym(drbg
, drbg
->C
, temp
+ len
, &cipherin
);
626 /* 10.2.1.2 step 2.3 and 3 */
627 len
+= drbg_blocklen(drbg
);
630 /* 10.2.1.2 step 4 */
633 for (len
= 0; len
< drbg_statelen(drbg
); len
++) {
634 *temp_p
^= *df_data_p
;
635 df_data_p
++; temp_p
++;
638 /* 10.2.1.2 step 5 */
639 memcpy(drbg
->C
, temp
, drbg_keylen(drbg
));
640 /* 10.2.1.2 step 6 */
641 memcpy(drbg
->V
, temp
+ drbg_keylen(drbg
), drbg_blocklen(drbg
));
645 memset(temp
, 0, drbg_statelen(drbg
) + drbg_blocklen(drbg
));
646 memset(df_data
, 0, drbg_statelen(drbg
));
651 * scratchpad use: drbg_ctr_update is called independently from
652 * drbg_ctr_extract_bytes. Therefore, the scratchpad is reused
654 /* Generate function of CTR DRBG as defined in 10.2.1.5.2 */
655 static int drbg_ctr_generate(struct drbg_state
*drbg
,
656 unsigned char *buf
, unsigned int buflen
,
657 struct drbg_string
*addtl
)
661 struct drbg_string data
;
662 unsigned char prefix
= DRBG_PREFIX1
;
664 memset(drbg
->scratchpad
, 0, drbg_blocklen(drbg
));
666 /* 10.2.1.5.2 step 2 */
667 if (addtl
&& 0 < addtl
->len
) {
669 ret
= drbg_ctr_update(drbg
, addtl
, 1);
674 /* 10.2.1.5.2 step 4.1 */
675 drbg_add_buf(drbg
->V
, drbg_blocklen(drbg
), &prefix
, 1);
676 drbg_string_fill(&data
, drbg
->V
, drbg_blocklen(drbg
));
677 while (len
< buflen
) {
679 /* 10.2.1.5.2 step 4.2 */
680 ret
= drbg_kcapi_sym(drbg
, drbg
->C
, drbg
->scratchpad
, &data
);
685 outlen
= (drbg_blocklen(drbg
) < (buflen
- len
)) ?
686 drbg_blocklen(drbg
) : (buflen
- len
);
687 if (!drbg_fips_continuous_test(drbg
, drbg
->scratchpad
)) {
688 /* 10.2.1.5.2 step 6 */
689 drbg_add_buf(drbg
->V
, drbg_blocklen(drbg
), &prefix
, 1);
692 /* 10.2.1.5.2 step 4.3 */
693 memcpy(buf
+ len
, drbg
->scratchpad
, outlen
);
695 /* 10.2.1.5.2 step 6 */
697 drbg_add_buf(drbg
->V
, drbg_blocklen(drbg
), &prefix
, 1);
700 /* 10.2.1.5.2 step 6 */
704 * The following call invokes the DF function again which could be
705 * optimized. In step 2, the "additional_input" after step 2 is the
706 * output of the DF function. If this result would be saved, the DF
707 * function would not need to be invoked again at this point.
709 ret
= drbg_ctr_update(drbg
, addtl
, 1);
714 memset(drbg
->scratchpad
, 0, drbg_blocklen(drbg
));
718 static struct drbg_state_ops drbg_ctr_ops
= {
719 .update
= drbg_ctr_update
,
720 .generate
= drbg_ctr_generate
,
721 .crypto_init
= drbg_init_sym_kernel
,
722 .crypto_fini
= drbg_fini_sym_kernel
,
724 #endif /* CONFIG_CRYPTO_DRBG_CTR */
726 /******************************************************************
727 * HMAC DRBG callback functions
728 ******************************************************************/
730 #if defined(CONFIG_CRYPTO_DRBG_HASH) || defined(CONFIG_CRYPTO_DRBG_HMAC)
731 static int drbg_kcapi_hash(struct drbg_state
*drbg
, const unsigned char *key
,
732 unsigned char *outval
, const struct drbg_string
*in
);
733 static int drbg_init_hash_kernel(struct drbg_state
*drbg
);
734 static int drbg_fini_hash_kernel(struct drbg_state
*drbg
);
735 #endif /* (CONFIG_CRYPTO_DRBG_HASH || CONFIG_CRYPTO_DRBG_HMAC) */
737 #ifdef CONFIG_CRYPTO_DRBG_HMAC
738 /* update function of HMAC DRBG as defined in 10.1.2.2 */
739 static int drbg_hmac_update(struct drbg_state
*drbg
,
740 struct drbg_string
*seed
, int reseed
)
744 struct drbg_string seed1
, seed2
, cipherin
;
747 /* 10.1.2.3 step 2 */
748 memset(drbg
->C
, 0, drbg_statelen(drbg
));
749 memset(drbg
->V
, 1, drbg_statelen(drbg
));
752 drbg_string_fill(&seed1
, drbg
->V
, drbg_statelen(drbg
));
753 /* buffer of seed2 will be filled in for loop below with one byte */
754 drbg_string_fill(&seed2
, NULL
, 1);
756 /* input data of seed is allowed to be NULL at this point */
759 drbg_string_fill(&cipherin
, drbg
->V
, drbg_statelen(drbg
));
760 for (i
= 2; 0 < i
; i
--) {
761 /* first round uses 0x0, second 0x1 */
762 unsigned char prefix
= DRBG_PREFIX0
;
764 prefix
= DRBG_PREFIX1
;
765 /* 10.1.2.2 step 1 and 4 -- concatenation and HMAC for key */
767 ret
= drbg_kcapi_hash(drbg
, drbg
->C
, drbg
->C
, &seed1
);
771 /* 10.1.2.2 step 2 and 5 -- HMAC for V */
772 ret
= drbg_kcapi_hash(drbg
, drbg
->C
, drbg
->V
, &cipherin
);
776 /* 10.1.2.2 step 3 */
777 if (!seed
|| 0 == seed
->len
)
784 /* generate function of HMAC DRBG as defined in 10.1.2.5 */
785 static int drbg_hmac_generate(struct drbg_state
*drbg
,
788 struct drbg_string
*addtl
)
792 struct drbg_string data
;
794 /* 10.1.2.5 step 2 */
795 if (addtl
&& 0 < addtl
->len
) {
797 ret
= drbg_hmac_update(drbg
, addtl
, 1);
802 drbg_string_fill(&data
, drbg
->V
, drbg_statelen(drbg
));
803 while (len
< buflen
) {
804 unsigned int outlen
= 0;
805 /* 10.1.2.5 step 4.1 */
806 ret
= drbg_kcapi_hash(drbg
, drbg
->C
, drbg
->V
, &data
);
809 outlen
= (drbg_blocklen(drbg
) < (buflen
- len
)) ?
810 drbg_blocklen(drbg
) : (buflen
- len
);
811 if (!drbg_fips_continuous_test(drbg
, drbg
->V
))
814 /* 10.1.2.5 step 4.2 */
815 memcpy(buf
+ len
, drbg
->V
, outlen
);
819 /* 10.1.2.5 step 6 */
822 ret
= drbg_hmac_update(drbg
, addtl
, 1);
829 static struct drbg_state_ops drbg_hmac_ops
= {
830 .update
= drbg_hmac_update
,
831 .generate
= drbg_hmac_generate
,
832 .crypto_init
= drbg_init_hash_kernel
,
833 .crypto_fini
= drbg_fini_hash_kernel
,
836 #endif /* CONFIG_CRYPTO_DRBG_HMAC */
838 /******************************************************************
839 * Hash DRBG callback functions
840 ******************************************************************/
842 #ifdef CONFIG_CRYPTO_DRBG_HASH
844 * scratchpad usage: as drbg_hash_update and drbg_hash_df are used
845 * interlinked, the scratchpad is used as follows:
847 * start: drbg->scratchpad
848 * length: drbg_statelen(drbg)
850 * start: drbg->scratchpad + drbg_statelen(drbg)
851 * length: drbg_blocklen(drbg)
853 * drbg_hash_process_addtl uses the scratchpad, but fully completes
854 * before either of the functions mentioned before are invoked. Therefore,
855 * drbg_hash_process_addtl does not need to be specifically considered.
858 /* Derivation Function for Hash DRBG as defined in 10.4.1 */
859 static int drbg_hash_df(struct drbg_state
*drbg
,
860 unsigned char *outval
, size_t outlen
,
861 struct drbg_string
*entropy
)
865 unsigned char input
[5];
866 unsigned char *tmp
= drbg
->scratchpad
+ drbg_statelen(drbg
);
867 struct drbg_string data1
;
869 memset(tmp
, 0, drbg_blocklen(drbg
));
873 drbg_int2byte(&input
[1], (outlen
* 8), 4);
875 /* 10.4.1 step 4.1 -- concatenation of data for input into hash */
876 drbg_string_fill(&data1
, input
, 5);
877 data1
.next
= entropy
;
880 while (len
< outlen
) {
882 /* 10.4.1 step 4.1 */
883 ret
= drbg_kcapi_hash(drbg
, NULL
, tmp
, &data1
);
886 /* 10.4.1 step 4.2 */
888 blocklen
= (drbg_blocklen(drbg
) < (outlen
- len
)) ?
889 drbg_blocklen(drbg
) : (outlen
- len
);
890 memcpy(outval
+ len
, tmp
, blocklen
);
895 memset(tmp
, 0, drbg_blocklen(drbg
));
899 /* update function for Hash DRBG as defined in 10.1.1.2 / 10.1.1.3 */
900 static int drbg_hash_update(struct drbg_state
*drbg
, struct drbg_string
*seed
,
904 struct drbg_string data1
, data2
;
905 unsigned char *V
= drbg
->scratchpad
;
906 unsigned char prefix
= DRBG_PREFIX1
;
908 memset(drbg
->scratchpad
, 0, drbg_statelen(drbg
));
913 /* 10.1.1.3 step 1 */
914 memcpy(V
, drbg
->V
, drbg_statelen(drbg
));
915 drbg_string_fill(&data1
, &prefix
, 1);
916 drbg_string_fill(&data2
, V
, drbg_statelen(drbg
));
920 drbg_string_fill(&data1
, seed
->buf
, seed
->len
);
921 data1
.next
= seed
->next
;
924 /* 10.1.1.2 / 10.1.1.3 step 2 and 3 */
925 ret
= drbg_hash_df(drbg
, drbg
->V
, drbg_statelen(drbg
), &data1
);
929 /* 10.1.1.2 / 10.1.1.3 step 4 */
930 prefix
= DRBG_PREFIX0
;
931 drbg_string_fill(&data1
, &prefix
, 1);
932 drbg_string_fill(&data2
, drbg
->V
, drbg_statelen(drbg
));
934 /* 10.1.1.2 / 10.1.1.3 step 4 */
935 ret
= drbg_hash_df(drbg
, drbg
->C
, drbg_statelen(drbg
), &data1
);
938 memset(drbg
->scratchpad
, 0, drbg_statelen(drbg
));
942 /* processing of additional information string for Hash DRBG */
943 static int drbg_hash_process_addtl(struct drbg_state
*drbg
,
944 struct drbg_string
*addtl
)
947 struct drbg_string data1
, data2
;
948 struct drbg_string
*data3
;
949 unsigned char prefix
= DRBG_PREFIX2
;
951 /* this is value w as per documentation */
952 memset(drbg
->scratchpad
, 0, drbg_blocklen(drbg
));
954 /* 10.1.1.4 step 2 */
955 if (!addtl
|| 0 == addtl
->len
)
958 /* 10.1.1.4 step 2a */
959 drbg_string_fill(&data1
, &prefix
, 1);
960 drbg_string_fill(&data2
, drbg
->V
, drbg_statelen(drbg
));
965 ret
= drbg_kcapi_hash(drbg
, NULL
, drbg
->scratchpad
, &data1
);
969 /* 10.1.1.4 step 2b */
970 drbg_add_buf(drbg
->V
, drbg_statelen(drbg
),
971 drbg
->scratchpad
, drbg_blocklen(drbg
));
974 memset(drbg
->scratchpad
, 0, drbg_blocklen(drbg
));
978 /* Hashgen defined in 10.1.1.4 */
979 static int drbg_hash_hashgen(struct drbg_state
*drbg
,
985 unsigned char *src
= drbg
->scratchpad
;
986 unsigned char *dst
= drbg
->scratchpad
+ drbg_statelen(drbg
);
987 struct drbg_string data
;
988 unsigned char prefix
= DRBG_PREFIX1
;
990 memset(src
, 0, drbg_statelen(drbg
));
991 memset(dst
, 0, drbg_blocklen(drbg
));
993 /* 10.1.1.4 step hashgen 2 */
994 memcpy(src
, drbg
->V
, drbg_statelen(drbg
));
996 drbg_string_fill(&data
, src
, drbg_statelen(drbg
));
997 while (len
< buflen
) {
998 unsigned int outlen
= 0;
999 /* 10.1.1.4 step hashgen 4.1 */
1000 ret
= drbg_kcapi_hash(drbg
, NULL
, dst
, &data
);
1005 outlen
= (drbg_blocklen(drbg
) < (buflen
- len
)) ?
1006 drbg_blocklen(drbg
) : (buflen
- len
);
1007 if (!drbg_fips_continuous_test(drbg
, dst
)) {
1008 drbg_add_buf(src
, drbg_statelen(drbg
), &prefix
, 1);
1011 /* 10.1.1.4 step hashgen 4.2 */
1012 memcpy(buf
+ len
, dst
, outlen
);
1014 /* 10.1.1.4 hashgen step 4.3 */
1016 drbg_add_buf(src
, drbg_statelen(drbg
), &prefix
, 1);
1020 memset(drbg
->scratchpad
, 0,
1021 (drbg_statelen(drbg
) + drbg_blocklen(drbg
)));
1025 /* generate function for Hash DRBG as defined in 10.1.1.4 */
1026 static int drbg_hash_generate(struct drbg_state
*drbg
,
1027 unsigned char *buf
, unsigned int buflen
,
1028 struct drbg_string
*addtl
)
1032 unsigned char req
[8];
1033 unsigned char prefix
= DRBG_PREFIX3
;
1034 struct drbg_string data1
, data2
;
1036 /* 10.1.1.4 step 2 */
1037 ret
= drbg_hash_process_addtl(drbg
, addtl
);
1040 /* 10.1.1.4 step 3 */
1041 len
= drbg_hash_hashgen(drbg
, buf
, buflen
);
1043 /* this is the value H as documented in 10.1.1.4 */
1044 memset(drbg
->scratchpad
, 0, drbg_blocklen(drbg
));
1045 /* 10.1.1.4 step 4 */
1046 drbg_string_fill(&data1
, &prefix
, 1);
1047 drbg_string_fill(&data2
, drbg
->V
, drbg_statelen(drbg
));
1048 data1
.next
= &data2
;
1049 ret
= drbg_kcapi_hash(drbg
, NULL
, drbg
->scratchpad
, &data1
);
1055 /* 10.1.1.4 step 5 */
1056 drbg_add_buf(drbg
->V
, drbg_statelen(drbg
),
1057 drbg
->scratchpad
, drbg_blocklen(drbg
));
1058 drbg_add_buf(drbg
->V
, drbg_statelen(drbg
),
1059 drbg
->C
, drbg_statelen(drbg
));
1060 drbg_int2byte(req
, drbg
->reseed_ctr
, sizeof(req
));
1061 drbg_add_buf(drbg
->V
, drbg_statelen(drbg
), req
, 8);
1064 memset(drbg
->scratchpad
, 0, drbg_blocklen(drbg
));
1069 * scratchpad usage: as update and generate are used isolated, both
1070 * can use the scratchpad
1072 static struct drbg_state_ops drbg_hash_ops
= {
1073 .update
= drbg_hash_update
,
1074 .generate
= drbg_hash_generate
,
1075 .crypto_init
= drbg_init_hash_kernel
,
1076 .crypto_fini
= drbg_fini_hash_kernel
,
1078 #endif /* CONFIG_CRYPTO_DRBG_HASH */
1080 /******************************************************************
1081 * Functions common for DRBG implementations
1082 ******************************************************************/
1085 * Seeding or reseeding of the DRBG
1087 * @drbg: DRBG state struct
1088 * @pers: personalization / additional information buffer
1089 * @reseed: 0 for initial seed process, 1 for reseeding
1093 * error value otherwise
1095 static int drbg_seed(struct drbg_state
*drbg
, struct drbg_string
*pers
,
1099 unsigned char *entropy
= NULL
;
1100 size_t entropylen
= 0;
1101 struct drbg_string data1
;
1103 /* 9.1 / 9.2 / 9.3.1 step 3 */
1104 if (pers
&& pers
->len
> (drbg_max_addtl(drbg
))) {
1105 pr_devel("DRBG: personalization string too long %lu\n",
1110 if (drbg
->test_data
&& drbg
->test_data
->testentropy
) {
1111 drbg_string_fill(&data1
, drbg
->test_data
->testentropy
->buf
,
1112 drbg
->test_data
->testentropy
->len
);
1113 pr_devel("DRBG: using test entropy\n");
1116 * Gather entropy equal to the security strength of the DRBG.
1117 * With a derivation function, a nonce is required in addition
1118 * to the entropy. A nonce must be at least 1/2 of the security
1119 * strength of the DRBG in size. Thus, entropy * nonce is 3/2
1120 * of the strength. The consideration of a nonce is only
1121 * applicable during initial seeding.
1123 entropylen
= drbg_sec_strength(drbg
->core
->flags
);
1127 entropylen
= ((entropylen
+ 1) / 2) * 3;
1128 pr_devel("DRBG: (re)seeding with %zu bytes of entropy\n",
1130 entropy
= kzalloc(entropylen
, GFP_KERNEL
);
1133 get_random_bytes(entropy
, entropylen
);
1134 drbg_string_fill(&data1
, entropy
, entropylen
);
1138 * concatenation of entropy with personalization str / addtl input)
1139 * the variable pers is directly handed in by the caller, so check its
1140 * contents whether it is appropriate
1142 if (pers
&& pers
->buf
&& 0 < pers
->len
&& NULL
== pers
->next
) {
1144 pr_devel("DRBG: using personalization string\n");
1147 ret
= drbg
->d_ops
->update(drbg
, &data1
, reseed
);
1151 drbg
->seeded
= true;
1152 /* 10.1.1.2 / 10.1.1.3 step 5 */
1153 drbg
->reseed_ctr
= 1;
1161 /* Free all substructures in a DRBG state without the DRBG state structure */
1162 static inline void drbg_dealloc_state(struct drbg_state
*drbg
)
1172 if (drbg
->scratchpad
)
1173 kzfree(drbg
->scratchpad
);
1174 drbg
->scratchpad
= NULL
;
1175 drbg
->reseed_ctr
= 0;
1176 #ifdef CONFIG_CRYPTO_FIPS
1180 drbg
->fips_primed
= false;
1185 * Allocate all sub-structures for a DRBG state.
1186 * The DRBG state structure must already be allocated.
1188 static inline int drbg_alloc_state(struct drbg_state
*drbg
)
1191 unsigned int sb_size
= 0;
1196 drbg
->V
= kzalloc(drbg_statelen(drbg
), GFP_KERNEL
);
1199 drbg
->C
= kzalloc(drbg_statelen(drbg
), GFP_KERNEL
);
1202 #ifdef CONFIG_CRYPTO_FIPS
1203 drbg
->prev
= kzalloc(drbg_blocklen(drbg
), GFP_KERNEL
);
1206 drbg
->fips_primed
= false;
1208 /* scratchpad is only generated for CTR and Hash */
1209 if (drbg
->core
->flags
& DRBG_HMAC
)
1211 else if (drbg
->core
->flags
& DRBG_CTR
)
1212 sb_size
= drbg_statelen(drbg
) + drbg_blocklen(drbg
) + /* temp */
1213 drbg_statelen(drbg
) + /* df_data */
1214 drbg_blocklen(drbg
) + /* pad */
1215 drbg_blocklen(drbg
) + /* iv */
1216 drbg_statelen(drbg
) + drbg_blocklen(drbg
); /* temp */
1218 sb_size
= drbg_statelen(drbg
) + drbg_blocklen(drbg
);
1221 drbg
->scratchpad
= kzalloc(sb_size
, GFP_KERNEL
);
1222 if (!drbg
->scratchpad
)
1225 spin_lock_init(&drbg
->drbg_lock
);
1229 drbg_dealloc_state(drbg
);
1234 * Strategy to avoid holding long term locks: generate a shadow copy of DRBG
1235 * and perform all operations on this shadow copy. After finishing, restore
1236 * the updated state of the shadow copy into original drbg state. This way,
1237 * only the read and write operations of the original drbg state must be
1240 static inline void drbg_copy_drbg(struct drbg_state
*src
,
1241 struct drbg_state
*dst
)
1245 memcpy(dst
->V
, src
->V
, drbg_statelen(src
));
1246 memcpy(dst
->C
, src
->C
, drbg_statelen(src
));
1247 dst
->reseed_ctr
= src
->reseed_ctr
;
1248 dst
->seeded
= src
->seeded
;
1250 #ifdef CONFIG_CRYPTO_FIPS
1251 dst
->fips_primed
= src
->fips_primed
;
1252 memcpy(dst
->prev
, src
->prev
, drbg_blocklen(src
));
1256 * scratchpad is initialized drbg_alloc_state;
1257 * priv_data is initialized with call to crypto_init;
1258 * d_ops and core are set outside, as these parameters are const;
1259 * test_data is set outside to prevent it being copied back.
1263 static int drbg_make_shadow(struct drbg_state
*drbg
, struct drbg_state
**shadow
)
1266 struct drbg_state
*tmp
= NULL
;
1268 if (!drbg
|| !drbg
->core
|| !drbg
->V
|| !drbg
->C
) {
1269 pr_devel("DRBG: attempt to generate shadow copy for "
1270 "uninitialized DRBG state rejected\n");
1273 /* HMAC does not have a scratchpad */
1274 if (!(drbg
->core
->flags
& DRBG_HMAC
) && NULL
== drbg
->scratchpad
)
1277 tmp
= kzalloc(sizeof(struct drbg_state
), GFP_KERNEL
);
1281 /* read-only data as they are defined as const, no lock needed */
1282 tmp
->core
= drbg
->core
;
1283 tmp
->d_ops
= drbg
->d_ops
;
1285 ret
= drbg_alloc_state(tmp
);
1289 spin_lock_bh(&drbg
->drbg_lock
);
1290 drbg_copy_drbg(drbg
, tmp
);
1291 /* only make a link to the test buffer, as we only read that data */
1292 tmp
->test_data
= drbg
->test_data
;
1293 spin_unlock_bh(&drbg
->drbg_lock
);
1303 static void drbg_restore_shadow(struct drbg_state
*drbg
,
1304 struct drbg_state
**shadow
)
1306 struct drbg_state
*tmp
= *shadow
;
1308 spin_lock_bh(&drbg
->drbg_lock
);
1309 drbg_copy_drbg(tmp
, drbg
);
1310 spin_unlock_bh(&drbg
->drbg_lock
);
1311 drbg_dealloc_state(tmp
);
1316 /*************************************************************************
1317 * DRBG interface functions
1318 *************************************************************************/
1321 * DRBG generate function as required by SP800-90A - this function
1322 * generates random numbers
1324 * @drbg DRBG state handle
1325 * @buf Buffer where to store the random numbers -- the buffer must already
1326 * be pre-allocated by caller
1327 * @buflen Length of output buffer - this value defines the number of random
1328 * bytes pulled from DRBG
1329 * @addtl Additional input that is mixed into state, may be NULL -- note
1330 * the entropy is pulled by the DRBG internally unconditionally
1331 * as defined in SP800-90A. The additional input is mixed into
1332 * the state in addition to the pulled entropy.
1334 * return: generated number of bytes
1336 static int drbg_generate(struct drbg_state
*drbg
,
1337 unsigned char *buf
, unsigned int buflen
,
1338 struct drbg_string
*addtl
)
1341 struct drbg_state
*shadow
= NULL
;
1343 if (0 == buflen
|| !buf
) {
1344 pr_devel("DRBG: no output buffer provided\n");
1347 if (addtl
&& NULL
== addtl
->buf
&& 0 < addtl
->len
) {
1348 pr_devel("DRBG: wrong format of additional information\n");
1352 len
= drbg_make_shadow(drbg
, &shadow
);
1354 pr_devel("DRBG: shadow copy cannot be generated\n");
1360 if (buflen
> (drbg_max_request_bytes(shadow
))) {
1361 pr_devel("DRBG: requested random numbers too large %u\n",
1366 /* 9.3.1 step 3 is implicit with the chosen DRBG */
1369 if (addtl
&& addtl
->len
> (drbg_max_addtl(shadow
))) {
1370 pr_devel("DRBG: additional information string too long %zu\n",
1374 /* 9.3.1 step 5 is implicit with the chosen DRBG */
1377 * 9.3.1 step 6 and 9 supplemented by 9.3.2 step c is implemented
1378 * here. The spec is a bit convoluted here, we make it simpler.
1380 if ((drbg_max_requests(shadow
)) < shadow
->reseed_ctr
)
1381 shadow
->seeded
= false;
1383 /* allocate cipher handle */
1384 if (shadow
->d_ops
->crypto_init
) {
1385 len
= shadow
->d_ops
->crypto_init(shadow
);
1390 if (shadow
->pr
|| !shadow
->seeded
) {
1391 pr_devel("DRBG: reseeding before generation (prediction "
1392 "resistance: %s, state %s)\n",
1393 drbg
->pr
? "true" : "false",
1394 drbg
->seeded
? "seeded" : "unseeded");
1395 /* 9.3.1 steps 7.1 through 7.3 */
1396 len
= drbg_seed(shadow
, addtl
, true);
1399 /* 9.3.1 step 7.4 */
1402 /* 9.3.1 step 8 and 10 */
1403 len
= shadow
->d_ops
->generate(shadow
, buf
, buflen
, addtl
);
1405 /* 10.1.1.4 step 6, 10.1.2.5 step 7, 10.2.1.5.2 step 7 */
1406 shadow
->reseed_ctr
++;
1411 * Section 11.3.3 requires to re-perform self tests after some
1412 * generated random numbers. The chosen value after which self
1413 * test is performed is arbitrary, but it should be reasonable.
1414 * However, we do not perform the self tests because of the following
1415 * reasons: it is mathematically impossible that the initial self tests
1416 * were successfully and the following are not. If the initial would
1417 * pass and the following would not, the kernel integrity is violated.
1418 * In this case, the entire kernel operation is questionable and it
1419 * is unlikely that the integrity violation only affects the
1420 * correct operation of the DRBG.
1422 * Albeit the following code is commented out, it is provided in
1423 * case somebody has a need to implement the test of 11.3.3.
1426 if (shadow
->reseed_ctr
&& !(shadow
->reseed_ctr
% 4096)) {
1428 pr_devel("DRBG: start to perform self test\n");
1429 if (drbg
->core
->flags
& DRBG_HMAC
)
1430 err
= alg_test("drbg_pr_hmac_sha256",
1431 "drbg_pr_hmac_sha256", 0, 0);
1432 else if (drbg
->core
->flags
& DRBG_CTR
)
1433 err
= alg_test("drbg_pr_ctr_aes128",
1434 "drbg_pr_ctr_aes128", 0, 0);
1436 err
= alg_test("drbg_pr_sha256",
1437 "drbg_pr_sha256", 0, 0);
1439 pr_err("DRBG: periodical self test failed\n");
1441 * uninstantiate implies that from now on, only errors
1442 * are returned when reusing this DRBG cipher handle
1444 drbg_uninstantiate(drbg
);
1445 drbg_dealloc_state(shadow
);
1449 pr_devel("DRBG: self test successful\n");
1455 if (shadow
->d_ops
->crypto_fini
)
1456 shadow
->d_ops
->crypto_fini(shadow
);
1457 drbg_restore_shadow(drbg
, &shadow
);
1462 * Wrapper around drbg_generate which can pull arbitrary long strings
1463 * from the DRBG without hitting the maximum request limitation.
1465 * Parameters: see drbg_generate
1466 * Return codes: see drbg_generate -- if one drbg_generate request fails,
1467 * the entire drbg_generate_long request fails
1469 static int drbg_generate_long(struct drbg_state
*drbg
,
1470 unsigned char *buf
, unsigned int buflen
,
1471 struct drbg_string
*addtl
)
1474 unsigned int slice
= 0;
1477 unsigned int chunk
= 0;
1478 slice
= ((buflen
- len
) / drbg_max_request_bytes(drbg
));
1479 chunk
= slice
? drbg_max_request_bytes(drbg
) : (buflen
- len
);
1480 tmplen
= drbg_generate(drbg
, buf
+ len
, chunk
, addtl
);
1484 } while (slice
> 0);
1489 * DRBG instantiation function as required by SP800-90A - this function
1490 * sets up the DRBG handle, performs the initial seeding and all sanity
1491 * checks required by SP800-90A
1493 * @drbg memory of state -- if NULL, new memory is allocated
1494 * @pers Personalization string that is mixed into state, may be NULL -- note
1495 * the entropy is pulled by the DRBG internally unconditionally
1496 * as defined in SP800-90A. The additional input is mixed into
1497 * the state in addition to the pulled entropy.
1498 * @coreref reference to core
1499 * @pr prediction resistance enabled
1503 * error value otherwise
1505 static int drbg_instantiate(struct drbg_state
*drbg
, struct drbg_string
*pers
,
1506 int coreref
, bool pr
)
1510 pr_devel("DRBG: Initializing DRBG core %d with prediction resistance "
1511 "%s\n", coreref
, pr
? "enabled" : "disabled");
1512 drbg
->core
= &drbg_cores
[coreref
];
1514 drbg
->seeded
= false;
1515 switch (drbg
->core
->flags
& DRBG_TYPE_MASK
) {
1516 #ifdef CONFIG_CRYPTO_DRBG_HMAC
1518 drbg
->d_ops
= &drbg_hmac_ops
;
1520 #endif /* CONFIG_CRYPTO_DRBG_HMAC */
1521 #ifdef CONFIG_CRYPTO_DRBG_HASH
1523 drbg
->d_ops
= &drbg_hash_ops
;
1525 #endif /* CONFIG_CRYPTO_DRBG_HASH */
1526 #ifdef CONFIG_CRYPTO_DRBG_CTR
1528 drbg
->d_ops
= &drbg_ctr_ops
;
1530 #endif /* CONFIG_CRYPTO_DRBG_CTR */
1535 /* 9.1 step 1 is implicit with the selected DRBG type */
1538 * 9.1 step 2 is implicit as caller can select prediction resistance
1539 * and the flag is copied into drbg->flags --
1540 * all DRBG types support prediction resistance
1543 /* 9.1 step 4 is implicit in drbg_sec_strength */
1545 ret
= drbg_alloc_state(drbg
);
1550 if (drbg
->d_ops
->crypto_init
&& drbg
->d_ops
->crypto_init(drbg
))
1552 ret
= drbg_seed(drbg
, pers
, false);
1553 if (drbg
->d_ops
->crypto_fini
)
1554 drbg
->d_ops
->crypto_fini(drbg
);
1561 drbg_dealloc_state(drbg
);
1566 * DRBG uninstantiate function as required by SP800-90A - this function
1567 * frees all buffers and the DRBG handle
1569 * @drbg DRBG state handle
1574 static int drbg_uninstantiate(struct drbg_state
*drbg
)
1576 spin_lock_bh(&drbg
->drbg_lock
);
1577 drbg_dealloc_state(drbg
);
1578 /* no scrubbing of test_data -- this shall survive an uninstantiate */
1579 spin_unlock_bh(&drbg
->drbg_lock
);
1584 * Helper function for setting the test data in the DRBG
1586 * @drbg DRBG state handle
1587 * @test_data test data to sets
1589 static inline void drbg_set_testdata(struct drbg_state
*drbg
,
1590 struct drbg_test_data
*test_data
)
1592 if (!test_data
|| !test_data
->testentropy
)
1594 spin_lock_bh(&drbg
->drbg_lock
);
1595 drbg
->test_data
= test_data
;
1596 spin_unlock_bh(&drbg
->drbg_lock
);
1599 /***************************************************************
1600 * Kernel crypto API cipher invocations requested by DRBG
1601 ***************************************************************/
1603 #if defined(CONFIG_CRYPTO_DRBG_HASH) || defined(CONFIG_CRYPTO_DRBG_HMAC)
1605 struct shash_desc shash
;
1609 static int drbg_init_hash_kernel(struct drbg_state
*drbg
)
1611 struct sdesc
*sdesc
;
1612 struct crypto_shash
*tfm
;
1614 tfm
= crypto_alloc_shash(drbg
->core
->backend_cra_name
, 0, 0);
1616 pr_info("DRBG: could not allocate digest TFM handle\n");
1617 return PTR_ERR(tfm
);
1619 BUG_ON(drbg_blocklen(drbg
) != crypto_shash_digestsize(tfm
));
1620 sdesc
= kzalloc(sizeof(struct shash_desc
) + crypto_shash_descsize(tfm
),
1623 crypto_free_shash(tfm
);
1627 sdesc
->shash
.tfm
= tfm
;
1628 sdesc
->shash
.flags
= 0;
1629 drbg
->priv_data
= sdesc
;
1633 static int drbg_fini_hash_kernel(struct drbg_state
*drbg
)
1635 struct sdesc
*sdesc
= (struct sdesc
*)drbg
->priv_data
;
1637 crypto_free_shash(sdesc
->shash
.tfm
);
1640 drbg
->priv_data
= NULL
;
1644 static int drbg_kcapi_hash(struct drbg_state
*drbg
, const unsigned char *key
,
1645 unsigned char *outval
, const struct drbg_string
*in
)
1647 struct sdesc
*sdesc
= (struct sdesc
*)drbg
->priv_data
;
1650 crypto_shash_setkey(sdesc
->shash
.tfm
, key
, drbg_statelen(drbg
));
1651 crypto_shash_init(&sdesc
->shash
);
1652 for (; NULL
!= in
; in
= in
->next
)
1653 crypto_shash_update(&sdesc
->shash
, in
->buf
, in
->len
);
1654 return crypto_shash_final(&sdesc
->shash
, outval
);
1656 #endif /* (CONFIG_CRYPTO_DRBG_HASH || CONFIG_CRYPTO_DRBG_HMAC) */
1658 #ifdef CONFIG_CRYPTO_DRBG_CTR
1659 static int drbg_init_sym_kernel(struct drbg_state
*drbg
)
1662 struct crypto_blkcipher
*tfm
;
1664 tfm
= crypto_alloc_blkcipher(drbg
->core
->backend_cra_name
, 0, 0);
1666 pr_info("DRBG: could not allocate cipher TFM handle\n");
1667 return PTR_ERR(tfm
);
1669 BUG_ON(drbg_blocklen(drbg
) != crypto_blkcipher_blocksize(tfm
));
1670 drbg
->priv_data
= tfm
;
1674 static int drbg_fini_sym_kernel(struct drbg_state
*drbg
)
1676 struct crypto_blkcipher
*tfm
=
1677 (struct crypto_blkcipher
*)drbg
->priv_data
;
1679 crypto_free_blkcipher(tfm
);
1680 drbg
->priv_data
= NULL
;
1684 static int drbg_kcapi_sym(struct drbg_state
*drbg
, const unsigned char *key
,
1685 unsigned char *outval
, const struct drbg_string
*in
)
1688 struct scatterlist sg_in
, sg_out
;
1689 struct blkcipher_desc desc
;
1690 struct crypto_blkcipher
*tfm
=
1691 (struct crypto_blkcipher
*)drbg
->priv_data
;
1695 crypto_blkcipher_setkey(tfm
, key
, (drbg_keylen(drbg
)));
1696 /* there is only component in *in */
1697 sg_init_one(&sg_in
, in
->buf
, in
->len
);
1698 sg_init_one(&sg_out
, outval
, drbg_blocklen(drbg
));
1699 ret
= crypto_blkcipher_encrypt(&desc
, &sg_out
, &sg_in
, in
->len
);
1703 #endif /* CONFIG_CRYPTO_DRBG_CTR */
1705 /***************************************************************
1706 * Kernel crypto API interface to register DRBG
1707 ***************************************************************/
1710 * Look up the DRBG flags by given kernel crypto API cra_name
1711 * The code uses the drbg_cores definition to do this
1713 * @cra_name kernel crypto API cra_name
1714 * @coreref reference to integer which is filled with the pointer to
1715 * the applicable core
1716 * @pr reference for setting prediction resistance
1720 static inline void drbg_convert_tfm_core(const char *cra_driver_name
,
1721 int *coreref
, bool *pr
)
1728 /* disassemble the names */
1729 if (!memcmp(cra_driver_name
, "drbg_nopr_", 10)) {
1732 } else if (!memcmp(cra_driver_name
, "drbg_pr_", 8)) {
1738 /* remove the first part */
1739 len
= strlen(cra_driver_name
) - start
;
1740 for (i
= 0; ARRAY_SIZE(drbg_cores
) > i
; i
++) {
1741 if (!memcmp(cra_driver_name
+ start
, drbg_cores
[i
].cra_name
,
1749 static int drbg_kcapi_init(struct crypto_tfm
*tfm
)
1751 struct drbg_state
*drbg
= crypto_tfm_ctx(tfm
);
1755 drbg_convert_tfm_core(crypto_tfm_alg_name(tfm
), &coreref
, &pr
);
1757 * when personalization string is needed, the caller must call reset
1758 * and provide the personalization string as seed information
1760 return drbg_instantiate(drbg
, NULL
, coreref
, pr
);
1763 static void drbg_kcapi_cleanup(struct crypto_tfm
*tfm
)
1765 drbg_uninstantiate(crypto_tfm_ctx(tfm
));
1769 * Generate random numbers invoked by the kernel crypto API:
1770 * The API of the kernel crypto API is extended as follows:
1772 * If dlen is larger than zero, rdata is interpreted as the output buffer
1773 * where random data is to be stored.
1775 * If dlen is zero, rdata is interpreted as a pointer to a struct drbg_gen
1776 * which holds the additional information string that is used for the
1777 * DRBG generation process. The output buffer that is to be used to store
1778 * data is also pointed to by struct drbg_gen.
1780 static int drbg_kcapi_random(struct crypto_rng
*tfm
, u8
*rdata
,
1783 struct drbg_state
*drbg
= crypto_rng_ctx(tfm
);
1785 return drbg_generate_long(drbg
, rdata
, dlen
, NULL
);
1787 struct drbg_gen
*data
= (struct drbg_gen
*)rdata
;
1788 /* catch NULL pointer */
1791 drbg_set_testdata(drbg
, data
->test_data
);
1792 return drbg_generate_long(drbg
, data
->outbuf
, data
->outlen
,
1798 * Reset the DRBG invoked by the kernel crypto API
1799 * The reset implies a full re-initialization of the DRBG. Similar to the
1800 * generate function of drbg_kcapi_random, this function extends the
1801 * kernel crypto API interface with struct drbg_gen
1803 static int drbg_kcapi_reset(struct crypto_rng
*tfm
, u8
*seed
, unsigned int slen
)
1805 struct drbg_state
*drbg
= crypto_rng_ctx(tfm
);
1806 struct crypto_tfm
*tfm_base
= crypto_rng_tfm(tfm
);
1808 struct drbg_string seed_string
;
1811 drbg_uninstantiate(drbg
);
1812 drbg_convert_tfm_core(crypto_tfm_alg_driver_name(tfm_base
), &coreref
,
1815 drbg_string_fill(&seed_string
, seed
, slen
);
1816 return drbg_instantiate(drbg
, &seed_string
, coreref
, pr
);
1818 struct drbg_gen
*data
= (struct drbg_gen
*)seed
;
1819 /* allow invocation of API call with NULL, 0 */
1821 return drbg_instantiate(drbg
, NULL
, coreref
, pr
);
1822 drbg_set_testdata(drbg
, data
->test_data
);
1823 return drbg_instantiate(drbg
, data
->addtl
, coreref
, pr
);
1827 /***************************************************************
1828 * Kernel module: code to load the module
1829 ***************************************************************/
1832 * Tests as defined in 11.3.2 in addition to the cipher tests: testing
1833 * of the error handling.
1835 * Note: testing of failing seed source as defined in 11.3.2 is not applicable
1836 * as seed source of get_random_bytes does not fail.
1838 * Note 2: There is no sensible way of testing the reseed counter
1839 * enforcement, so skip it.
1841 static inline int __init
drbg_healthcheck_sanity(void)
1843 #ifdef CONFIG_CRYPTO_FIPS
1845 #define OUTBUFLEN 16
1846 unsigned char buf
[OUTBUFLEN
];
1847 struct drbg_state
*drbg
= NULL
;
1852 struct drbg_string addtl
;
1853 size_t max_addtllen
, max_request_bytes
;
1855 /* only perform test in FIPS mode */
1859 #ifdef CONFIG_CRYPTO_DRBG_CTR
1860 drbg_convert_tfm_core("drbg_nopr_ctr_aes128", &coreref
, &pr
);
1861 #elif CONFIG_CRYPTO_DRBG_HASH
1862 drbg_convert_tfm_core("drbg_nopr_sha256", &coreref
, &pr
);
1864 drbg_convert_tfm_core("drbg_nopr_hmac_sha256", &coreref
, &pr
);
1867 drbg
= kzalloc(sizeof(struct drbg_state
), GFP_KERNEL
);
1872 * if the following tests fail, it is likely that there is a buffer
1873 * overflow as buf is much smaller than the requested or provided
1874 * string lengths -- in case the error handling does not succeed
1875 * we may get an OOPS. And we want to get an OOPS as this is a
1879 /* get a valid instance of DRBG for following tests */
1880 ret
= drbg_instantiate(drbg
, NULL
, coreref
, pr
);
1885 max_addtllen
= drbg_max_addtl(drbg
);
1886 max_request_bytes
= drbg_max_request_bytes(drbg
);
1887 drbg_string_fill(&addtl
, buf
, max_addtllen
+ 1);
1888 /* overflow addtllen with additonal info string */
1889 len
= drbg_generate(drbg
, buf
, OUTBUFLEN
, &addtl
);
1891 /* overflow max_bits */
1892 len
= drbg_generate(drbg
, buf
, (max_request_bytes
+ 1), NULL
);
1894 drbg_uninstantiate(drbg
);
1896 /* overflow max addtllen with personalization string */
1897 ret
= drbg_instantiate(drbg
, &addtl
, coreref
, pr
);
1899 /* test uninstantated DRBG */
1900 len
= drbg_generate(drbg
, buf
, (max_request_bytes
+ 1), NULL
);
1902 /* all tests passed */
1905 pr_devel("DRBG: Sanity tests for failure code paths successfully "
1908 drbg_uninstantiate(drbg
);
1912 #else /* CONFIG_CRYPTO_FIPS */
1914 #endif /* CONFIG_CRYPTO_FIPS */
1917 static struct crypto_alg drbg_algs
[22];
1920 * Fill the array drbg_algs used to register the different DRBGs
1921 * with the kernel crypto API. To fill the array, the information
1922 * from drbg_cores[] is used.
1924 static inline void __init
drbg_fill_array(struct crypto_alg
*alg
,
1925 const struct drbg_core
*core
, int pr
)
1928 static int priority
= 100;
1930 memset(alg
, 0, sizeof(struct crypto_alg
));
1931 memcpy(alg
->cra_name
, "stdrng", 6);
1933 memcpy(alg
->cra_driver_name
, "drbg_pr_", 8);
1936 memcpy(alg
->cra_driver_name
, "drbg_nopr_", 10);
1939 memcpy(alg
->cra_driver_name
+ pos
, core
->cra_name
,
1940 strlen(core
->cra_name
));
1942 alg
->cra_priority
= priority
;
1945 * If FIPS mode enabled, the selected DRBG shall have the
1946 * highest cra_priority over other stdrng instances to ensure
1950 alg
->cra_priority
+= 200;
1952 alg
->cra_flags
= CRYPTO_ALG_TYPE_RNG
;
1953 alg
->cra_ctxsize
= sizeof(struct drbg_state
);
1954 alg
->cra_type
= &crypto_rng_type
;
1955 alg
->cra_module
= THIS_MODULE
;
1956 alg
->cra_init
= drbg_kcapi_init
;
1957 alg
->cra_exit
= drbg_kcapi_cleanup
;
1958 alg
->cra_u
.rng
.rng_make_random
= drbg_kcapi_random
;
1959 alg
->cra_u
.rng
.rng_reset
= drbg_kcapi_reset
;
1960 alg
->cra_u
.rng
.seedsize
= 0;
1963 static int __init
drbg_init(void)
1965 unsigned int i
= 0; /* pointer to drbg_algs */
1966 unsigned int j
= 0; /* pointer to drbg_cores */
1969 ret
= drbg_healthcheck_sanity();
1973 if (ARRAY_SIZE(drbg_cores
) * 2 > ARRAY_SIZE(drbg_algs
)) {
1974 pr_info("DRBG: Cannot register all DRBG types"
1975 "(slots needed: %lu, slots available: %lu)\n",
1976 ARRAY_SIZE(drbg_cores
) * 2, ARRAY_SIZE(drbg_algs
));
1981 * each DRBG definition can be used with PR and without PR, thus
1982 * we instantiate each DRBG in drbg_cores[] twice.
1984 * As the order of placing them into the drbg_algs array matters
1985 * (the later DRBGs receive a higher cra_priority) we register the
1986 * prediction resistance DRBGs first as the should not be too
1989 for (j
= 0; ARRAY_SIZE(drbg_cores
) > j
; j
++, i
++)
1990 drbg_fill_array(&drbg_algs
[i
], &drbg_cores
[j
], 1);
1991 for (j
= 0; ARRAY_SIZE(drbg_cores
) > j
; j
++, i
++)
1992 drbg_fill_array(&drbg_algs
[i
], &drbg_cores
[j
], 0);
1993 return crypto_register_algs(drbg_algs
, (ARRAY_SIZE(drbg_cores
) * 2));
1996 void __exit
drbg_exit(void)
1998 crypto_unregister_algs(drbg_algs
, (ARRAY_SIZE(drbg_cores
) * 2));
2001 module_init(drbg_init
);
2002 module_exit(drbg_exit
);
2003 MODULE_LICENSE("GPL");
2004 MODULE_AUTHOR("Stephan Mueller <smueller@chronox.de>");
2005 MODULE_DESCRIPTION("NIST SP800-90A Deterministic Random Bit Generator (DRBG) using following cores:"
2006 #ifdef CONFIG_CRYPTO_DRBG_HMAC
2009 #ifdef CONFIG_CRYPTO_DRBG_HASH
2012 #ifdef CONFIG_CRYPTO_DRBG_CTR