1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Algorithm testing framework and tests.
5 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
6 * Copyright (c) 2002 Jean-Francois Dive <jef@linuxbe.org>
7 * Copyright (c) 2007 Nokia Siemens Networks
8 * Copyright (c) 2008 Herbert Xu <herbert@gondor.apana.org.au>
9 * Copyright (c) 2019 Google LLC
11 * Updated RFC4106 AES-GCM testing.
12 * Authors: Aidan O'Mahony (aidan.o.mahony@intel.com)
13 * Adrian Hoban <adrian.hoban@intel.com>
14 * Gabriele Paoloni <gabriele.paoloni@intel.com>
15 * Tadeusz Struk (tadeusz.struk@intel.com)
16 * Copyright (c) 2010, Intel Corporation.
19 #include <crypto/aead.h>
20 #include <crypto/hash.h>
21 #include <crypto/skcipher.h>
22 #include <linux/err.h>
23 #include <linux/fips.h>
24 #include <linux/module.h>
25 #include <linux/once.h>
26 #include <linux/random.h>
27 #include <linux/scatterlist.h>
28 #include <linux/slab.h>
29 #include <linux/string.h>
30 #include <linux/uio.h>
31 #include <crypto/rng.h>
32 #include <crypto/drbg.h>
33 #include <crypto/akcipher.h>
34 #include <crypto/kpp.h>
35 #include <crypto/acompress.h>
36 #include <crypto/internal/cipher.h>
37 #include <crypto/internal/simd.h>
41 MODULE_IMPORT_NS(CRYPTO_INTERNAL);
44 module_param(notests, bool, 0644);
45 MODULE_PARM_DESC(notests, "disable crypto self-tests");
47 static bool panic_on_fail;
48 module_param(panic_on_fail, bool, 0444);
50 #ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
51 static bool noextratests;
52 module_param(noextratests, bool, 0644);
53 MODULE_PARM_DESC(noextratests, "disable expensive crypto self-tests");
55 static unsigned int fuzz_iterations = 100;
56 module_param(fuzz_iterations, uint, 0644);
57 MODULE_PARM_DESC(fuzz_iterations, "number of fuzz test iterations");
60 #ifdef CONFIG_CRYPTO_MANAGER_DISABLE_TESTS
63 int alg_test(const char *driver, const char *alg, u32 type, u32 mask)
73 * Need slab memory for testing (size in number of pages).
78 * Used by test_cipher()
83 struct aead_test_suite {
84 const struct aead_testvec *vecs;
88 * Set if trying to decrypt an inauthentic ciphertext with this
89 * algorithm might result in EINVAL rather than EBADMSG, due to other
90 * validation the algorithm does on the inputs such as length checks.
92 unsigned int einval_allowed : 1;
95 * Set if this algorithm requires that the IV be located at the end of
96 * the AAD buffer, in addition to being given in the normal way. The
97 * behavior when the two IV copies differ is implementation-defined.
99 unsigned int aad_iv : 1;
102 struct cipher_test_suite {
103 const struct cipher_testvec *vecs;
107 struct comp_test_suite {
109 const struct comp_testvec *vecs;
114 struct hash_test_suite {
115 const struct hash_testvec *vecs;
119 struct cprng_test_suite {
120 const struct cprng_testvec *vecs;
124 struct drbg_test_suite {
125 const struct drbg_testvec *vecs;
129 struct akcipher_test_suite {
130 const struct akcipher_testvec *vecs;
134 struct kpp_test_suite {
135 const struct kpp_testvec *vecs;
139 struct alg_test_desc {
141 const char *generic_driver;
142 int (*test)(const struct alg_test_desc *desc, const char *driver,
144 int fips_allowed; /* set if alg is allowed in fips mode */
147 struct aead_test_suite aead;
148 struct cipher_test_suite cipher;
149 struct comp_test_suite comp;
150 struct hash_test_suite hash;
151 struct cprng_test_suite cprng;
152 struct drbg_test_suite drbg;
153 struct akcipher_test_suite akcipher;
154 struct kpp_test_suite kpp;
158 static void hexdump(unsigned char *buf, unsigned int len)
160 print_hex_dump(KERN_CONT, "", DUMP_PREFIX_OFFSET,
165 static int __testmgr_alloc_buf(char *buf[XBUFSIZE], int order)
169 for (i = 0; i < XBUFSIZE; i++) {
170 buf[i] = (char *)__get_free_pages(GFP_KERNEL, order);
179 free_pages((unsigned long)buf[i], order);
184 static int testmgr_alloc_buf(char *buf[XBUFSIZE])
186 return __testmgr_alloc_buf(buf, 0);
189 static void __testmgr_free_buf(char *buf[XBUFSIZE], int order)
193 for (i = 0; i < XBUFSIZE; i++)
194 free_pages((unsigned long)buf[i], order);
197 static void testmgr_free_buf(char *buf[XBUFSIZE])
199 __testmgr_free_buf(buf, 0);
202 #define TESTMGR_POISON_BYTE 0xfe
203 #define TESTMGR_POISON_LEN 16
205 static inline void testmgr_poison(void *addr, size_t len)
207 memset(addr, TESTMGR_POISON_BYTE, len);
210 /* Is the memory region still fully poisoned? */
211 static inline bool testmgr_is_poison(const void *addr, size_t len)
213 return memchr_inv(addr, TESTMGR_POISON_BYTE, len) == NULL;
216 /* flush type for hash algorithms */
218 /* merge with update of previous buffer(s) */
221 /* update with previous buffer(s) before doing this one */
224 /* likewise, but also export and re-import the intermediate state */
228 /* finalization function for hash algorithms */
229 enum finalization_type {
230 FINALIZATION_TYPE_FINAL, /* use final() */
231 FINALIZATION_TYPE_FINUP, /* use finup() */
232 FINALIZATION_TYPE_DIGEST, /* use digest() */
236 * Whether the crypto operation will occur in-place, and if so whether the
237 * source and destination scatterlist pointers will coincide (req->src ==
238 * req->dst), or whether they'll merely point to two separate scatterlists
239 * (req->src != req->dst) that reference the same underlying memory.
241 * This is only relevant for algorithm types that support in-place operation.
249 #define TEST_SG_TOTAL 10000
252 * struct test_sg_division - description of a scatterlist entry
254 * This struct describes one entry of a scatterlist being constructed to check a
255 * crypto test vector.
257 * @proportion_of_total: length of this chunk relative to the total length,
258 * given as a proportion out of TEST_SG_TOTAL so that it
259 * scales to fit any test vector
260 * @offset: byte offset into a 2-page buffer at which this chunk will start
261 * @offset_relative_to_alignmask: if true, add the algorithm's alignmask to the
263 * @flush_type: for hashes, whether an update() should be done now vs.
264 * continuing to accumulate data
265 * @nosimd: if doing the pending update(), do it with SIMD disabled?
267 struct test_sg_division {
268 unsigned int proportion_of_total;
270 bool offset_relative_to_alignmask;
271 enum flush_type flush_type;
276 * struct testvec_config - configuration for testing a crypto test vector
278 * This struct describes the data layout and other parameters with which each
279 * crypto test vector can be tested.
281 * @name: name of this config, logged for debugging purposes if a test fails
282 * @inplace_mode: whether and how to operate on the data in-place, if applicable
283 * @req_flags: extra request_flags, e.g. CRYPTO_TFM_REQ_MAY_SLEEP
284 * @src_divs: description of how to arrange the source scatterlist
285 * @dst_divs: description of how to arrange the dst scatterlist, if applicable
286 * for the algorithm type. Defaults to @src_divs if unset.
287 * @iv_offset: misalignment of the IV in the range [0..MAX_ALGAPI_ALIGNMASK+1],
288 * where 0 is aligned to a 2*(MAX_ALGAPI_ALIGNMASK+1) byte boundary
289 * @iv_offset_relative_to_alignmask: if true, add the algorithm's alignmask to
291 * @key_offset: misalignment of the key, where 0 is default alignment
292 * @key_offset_relative_to_alignmask: if true, add the algorithm's alignmask to
294 * @finalization_type: what finalization function to use for hashes
295 * @nosimd: execute with SIMD disabled? Requires !CRYPTO_TFM_REQ_MAY_SLEEP.
297 struct testvec_config {
299 enum inplace_mode inplace_mode;
301 struct test_sg_division src_divs[XBUFSIZE];
302 struct test_sg_division dst_divs[XBUFSIZE];
303 unsigned int iv_offset;
304 unsigned int key_offset;
305 bool iv_offset_relative_to_alignmask;
306 bool key_offset_relative_to_alignmask;
307 enum finalization_type finalization_type;
311 #define TESTVEC_CONFIG_NAMELEN 192
314 * The following are the lists of testvec_configs to test for each algorithm
315 * type when the basic crypto self-tests are enabled, i.e. when
316 * CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is unset. They aim to provide good test
317 * coverage, while keeping the test time much shorter than the full fuzz tests
318 * so that the basic tests can be enabled in a wider range of circumstances.
321 /* Configs for skciphers and aeads */
322 static const struct testvec_config default_cipher_testvec_configs[] = {
324 .name = "in-place (one sglist)",
325 .inplace_mode = INPLACE_ONE_SGLIST,
326 .src_divs = { { .proportion_of_total = 10000 } },
328 .name = "in-place (two sglists)",
329 .inplace_mode = INPLACE_TWO_SGLISTS,
330 .src_divs = { { .proportion_of_total = 10000 } },
332 .name = "out-of-place",
333 .inplace_mode = OUT_OF_PLACE,
334 .src_divs = { { .proportion_of_total = 10000 } },
336 .name = "unaligned buffer, offset=1",
337 .src_divs = { { .proportion_of_total = 10000, .offset = 1 } },
341 .name = "buffer aligned only to alignmask",
344 .proportion_of_total = 10000,
346 .offset_relative_to_alignmask = true,
350 .iv_offset_relative_to_alignmask = true,
352 .key_offset_relative_to_alignmask = true,
354 .name = "two even aligned splits",
356 { .proportion_of_total = 5000 },
357 { .proportion_of_total = 5000 },
360 .name = "uneven misaligned splits, may sleep",
361 .req_flags = CRYPTO_TFM_REQ_MAY_SLEEP,
363 { .proportion_of_total = 1900, .offset = 33 },
364 { .proportion_of_total = 3300, .offset = 7 },
365 { .proportion_of_total = 4800, .offset = 18 },
370 .name = "misaligned splits crossing pages, inplace",
371 .inplace_mode = INPLACE_ONE_SGLIST,
374 .proportion_of_total = 7500,
375 .offset = PAGE_SIZE - 32
377 .proportion_of_total = 2500,
378 .offset = PAGE_SIZE - 7
384 static const struct testvec_config default_hash_testvec_configs[] = {
386 .name = "init+update+final aligned buffer",
387 .src_divs = { { .proportion_of_total = 10000 } },
388 .finalization_type = FINALIZATION_TYPE_FINAL,
390 .name = "init+finup aligned buffer",
391 .src_divs = { { .proportion_of_total = 10000 } },
392 .finalization_type = FINALIZATION_TYPE_FINUP,
394 .name = "digest aligned buffer",
395 .src_divs = { { .proportion_of_total = 10000 } },
396 .finalization_type = FINALIZATION_TYPE_DIGEST,
398 .name = "init+update+final misaligned buffer",
399 .src_divs = { { .proportion_of_total = 10000, .offset = 1 } },
400 .finalization_type = FINALIZATION_TYPE_FINAL,
403 .name = "digest buffer aligned only to alignmask",
406 .proportion_of_total = 10000,
408 .offset_relative_to_alignmask = true,
411 .finalization_type = FINALIZATION_TYPE_DIGEST,
413 .key_offset_relative_to_alignmask = true,
415 .name = "init+update+update+final two even splits",
417 { .proportion_of_total = 5000 },
419 .proportion_of_total = 5000,
420 .flush_type = FLUSH_TYPE_FLUSH,
423 .finalization_type = FINALIZATION_TYPE_FINAL,
425 .name = "digest uneven misaligned splits, may sleep",
426 .req_flags = CRYPTO_TFM_REQ_MAY_SLEEP,
428 { .proportion_of_total = 1900, .offset = 33 },
429 { .proportion_of_total = 3300, .offset = 7 },
430 { .proportion_of_total = 4800, .offset = 18 },
432 .finalization_type = FINALIZATION_TYPE_DIGEST,
434 .name = "digest misaligned splits crossing pages",
437 .proportion_of_total = 7500,
438 .offset = PAGE_SIZE - 32,
440 .proportion_of_total = 2500,
441 .offset = PAGE_SIZE - 7,
444 .finalization_type = FINALIZATION_TYPE_DIGEST,
446 .name = "import/export",
449 .proportion_of_total = 6500,
450 .flush_type = FLUSH_TYPE_REIMPORT,
452 .proportion_of_total = 3500,
453 .flush_type = FLUSH_TYPE_REIMPORT,
456 .finalization_type = FINALIZATION_TYPE_FINAL,
460 static unsigned int count_test_sg_divisions(const struct test_sg_division *divs)
462 unsigned int remaining = TEST_SG_TOTAL;
463 unsigned int ndivs = 0;
466 remaining -= divs[ndivs++].proportion_of_total;
472 #define SGDIVS_HAVE_FLUSHES BIT(0)
473 #define SGDIVS_HAVE_NOSIMD BIT(1)
475 static bool valid_sg_divisions(const struct test_sg_division *divs,
476 unsigned int count, int *flags_ret)
478 unsigned int total = 0;
481 for (i = 0; i < count && total != TEST_SG_TOTAL; i++) {
482 if (divs[i].proportion_of_total <= 0 ||
483 divs[i].proportion_of_total > TEST_SG_TOTAL - total)
485 total += divs[i].proportion_of_total;
486 if (divs[i].flush_type != FLUSH_TYPE_NONE)
487 *flags_ret |= SGDIVS_HAVE_FLUSHES;
489 *flags_ret |= SGDIVS_HAVE_NOSIMD;
491 return total == TEST_SG_TOTAL &&
492 memchr_inv(&divs[i], 0, (count - i) * sizeof(divs[0])) == NULL;
496 * Check whether the given testvec_config is valid. This isn't strictly needed
497 * since every testvec_config should be valid, but check anyway so that people
498 * don't unknowingly add broken configs that don't do what they wanted.
500 static bool valid_testvec_config(const struct testvec_config *cfg)
504 if (cfg->name == NULL)
507 if (!valid_sg_divisions(cfg->src_divs, ARRAY_SIZE(cfg->src_divs),
511 if (cfg->dst_divs[0].proportion_of_total) {
512 if (!valid_sg_divisions(cfg->dst_divs,
513 ARRAY_SIZE(cfg->dst_divs), &flags))
516 if (memchr_inv(cfg->dst_divs, 0, sizeof(cfg->dst_divs)))
518 /* defaults to dst_divs=src_divs */
522 (cfg->iv_offset_relative_to_alignmask ? MAX_ALGAPI_ALIGNMASK : 0) >
523 MAX_ALGAPI_ALIGNMASK + 1)
526 if ((flags & (SGDIVS_HAVE_FLUSHES | SGDIVS_HAVE_NOSIMD)) &&
527 cfg->finalization_type == FINALIZATION_TYPE_DIGEST)
530 if ((cfg->nosimd || (flags & SGDIVS_HAVE_NOSIMD)) &&
531 (cfg->req_flags & CRYPTO_TFM_REQ_MAY_SLEEP))
538 char *bufs[XBUFSIZE];
539 struct scatterlist sgl[XBUFSIZE];
540 struct scatterlist sgl_saved[XBUFSIZE];
541 struct scatterlist *sgl_ptr;
545 static int init_test_sglist(struct test_sglist *tsgl)
547 return __testmgr_alloc_buf(tsgl->bufs, 1 /* two pages per buffer */);
550 static void destroy_test_sglist(struct test_sglist *tsgl)
552 return __testmgr_free_buf(tsgl->bufs, 1 /* two pages per buffer */);
556 * build_test_sglist() - build a scatterlist for a crypto test
558 * @tsgl: the scatterlist to build. @tsgl->bufs[] contains an array of 2-page
559 * buffers which the scatterlist @tsgl->sgl[] will be made to point into.
560 * @divs: the layout specification on which the scatterlist will be based
561 * @alignmask: the algorithm's alignmask
562 * @total_len: the total length of the scatterlist to build in bytes
563 * @data: if non-NULL, the buffers will be filled with this data until it ends.
564 * Otherwise the buffers will be poisoned. In both cases, some bytes
565 * past the end of each buffer will be poisoned to help detect overruns.
566 * @out_divs: if non-NULL, the test_sg_division to which each scatterlist entry
567 * corresponds will be returned here. This will match @divs except
568 * that divisions resolving to a length of 0 are omitted as they are
569 * not included in the scatterlist.
571 * Return: 0 or a -errno value
573 static int build_test_sglist(struct test_sglist *tsgl,
574 const struct test_sg_division *divs,
575 const unsigned int alignmask,
576 const unsigned int total_len,
577 struct iov_iter *data,
578 const struct test_sg_division *out_divs[XBUFSIZE])
581 const struct test_sg_division *div;
583 } partitions[XBUFSIZE];
584 const unsigned int ndivs = count_test_sg_divisions(divs);
585 unsigned int len_remaining = total_len;
588 BUILD_BUG_ON(ARRAY_SIZE(partitions) != ARRAY_SIZE(tsgl->sgl));
589 if (WARN_ON(ndivs > ARRAY_SIZE(partitions)))
592 /* Calculate the (div, length) pairs */
594 for (i = 0; i < ndivs; i++) {
595 unsigned int len_this_sg =
597 (total_len * divs[i].proportion_of_total +
598 TEST_SG_TOTAL / 2) / TEST_SG_TOTAL);
600 if (len_this_sg != 0) {
601 partitions[tsgl->nents].div = &divs[i];
602 partitions[tsgl->nents].length = len_this_sg;
604 len_remaining -= len_this_sg;
607 if (tsgl->nents == 0) {
608 partitions[tsgl->nents].div = &divs[0];
609 partitions[tsgl->nents].length = 0;
612 partitions[tsgl->nents - 1].length += len_remaining;
614 /* Set up the sgl entries and fill the data or poison */
615 sg_init_table(tsgl->sgl, tsgl->nents);
616 for (i = 0; i < tsgl->nents; i++) {
617 unsigned int offset = partitions[i].div->offset;
620 if (partitions[i].div->offset_relative_to_alignmask)
623 while (offset + partitions[i].length + TESTMGR_POISON_LEN >
625 if (WARN_ON(offset <= 0))
630 addr = &tsgl->bufs[i][offset];
631 sg_set_buf(&tsgl->sgl[i], addr, partitions[i].length);
634 out_divs[i] = partitions[i].div;
637 size_t copy_len, copied;
639 copy_len = min(partitions[i].length, data->count);
640 copied = copy_from_iter(addr, copy_len, data);
641 if (WARN_ON(copied != copy_len))
643 testmgr_poison(addr + copy_len, partitions[i].length +
644 TESTMGR_POISON_LEN - copy_len);
646 testmgr_poison(addr, partitions[i].length +
651 sg_mark_end(&tsgl->sgl[tsgl->nents - 1]);
652 tsgl->sgl_ptr = tsgl->sgl;
653 memcpy(tsgl->sgl_saved, tsgl->sgl, tsgl->nents * sizeof(tsgl->sgl[0]));
658 * Verify that a scatterlist crypto operation produced the correct output.
660 * @tsgl: scatterlist containing the actual output
661 * @expected_output: buffer containing the expected output
662 * @len_to_check: length of @expected_output in bytes
663 * @unchecked_prefix_len: number of ignored bytes in @tsgl prior to real result
664 * @check_poison: verify that the poison bytes after each chunk are intact?
666 * Return: 0 if correct, -EINVAL if incorrect, -EOVERFLOW if buffer overrun.
668 static int verify_correct_output(const struct test_sglist *tsgl,
669 const char *expected_output,
670 unsigned int len_to_check,
671 unsigned int unchecked_prefix_len,
676 for (i = 0; i < tsgl->nents; i++) {
677 struct scatterlist *sg = &tsgl->sgl_ptr[i];
678 unsigned int len = sg->length;
679 unsigned int offset = sg->offset;
680 const char *actual_output;
682 if (unchecked_prefix_len) {
683 if (unchecked_prefix_len >= len) {
684 unchecked_prefix_len -= len;
687 offset += unchecked_prefix_len;
688 len -= unchecked_prefix_len;
689 unchecked_prefix_len = 0;
691 len = min(len, len_to_check);
692 actual_output = page_address(sg_page(sg)) + offset;
693 if (memcmp(expected_output, actual_output, len) != 0)
696 !testmgr_is_poison(actual_output + len, TESTMGR_POISON_LEN))
699 expected_output += len;
701 if (WARN_ON(len_to_check != 0))
706 static bool is_test_sglist_corrupted(const struct test_sglist *tsgl)
710 for (i = 0; i < tsgl->nents; i++) {
711 if (tsgl->sgl[i].page_link != tsgl->sgl_saved[i].page_link)
713 if (tsgl->sgl[i].offset != tsgl->sgl_saved[i].offset)
715 if (tsgl->sgl[i].length != tsgl->sgl_saved[i].length)
721 struct cipher_test_sglists {
722 struct test_sglist src;
723 struct test_sglist dst;
726 static struct cipher_test_sglists *alloc_cipher_test_sglists(void)
728 struct cipher_test_sglists *tsgls;
730 tsgls = kmalloc(sizeof(*tsgls), GFP_KERNEL);
734 if (init_test_sglist(&tsgls->src) != 0)
736 if (init_test_sglist(&tsgls->dst) != 0)
737 goto fail_destroy_src;
742 destroy_test_sglist(&tsgls->src);
748 static void free_cipher_test_sglists(struct cipher_test_sglists *tsgls)
751 destroy_test_sglist(&tsgls->src);
752 destroy_test_sglist(&tsgls->dst);
757 /* Build the src and dst scatterlists for an skcipher or AEAD test */
758 static int build_cipher_test_sglists(struct cipher_test_sglists *tsgls,
759 const struct testvec_config *cfg,
760 unsigned int alignmask,
761 unsigned int src_total_len,
762 unsigned int dst_total_len,
763 const struct kvec *inputs,
764 unsigned int nr_inputs)
766 struct iov_iter input;
769 iov_iter_kvec(&input, ITER_SOURCE, inputs, nr_inputs, src_total_len);
770 err = build_test_sglist(&tsgls->src, cfg->src_divs, alignmask,
771 cfg->inplace_mode != OUT_OF_PLACE ?
772 max(dst_total_len, src_total_len) :
779 * In-place crypto operations can use the same scatterlist for both the
780 * source and destination (req->src == req->dst), or can use separate
781 * scatterlists (req->src != req->dst) which point to the same
782 * underlying memory. Make sure to test both cases.
784 if (cfg->inplace_mode == INPLACE_ONE_SGLIST) {
785 tsgls->dst.sgl_ptr = tsgls->src.sgl;
786 tsgls->dst.nents = tsgls->src.nents;
789 if (cfg->inplace_mode == INPLACE_TWO_SGLISTS) {
791 * For now we keep it simple and only test the case where the
792 * two scatterlists have identical entries, rather than
793 * different entries that split up the same memory differently.
795 memcpy(tsgls->dst.sgl, tsgls->src.sgl,
796 tsgls->src.nents * sizeof(tsgls->src.sgl[0]));
797 memcpy(tsgls->dst.sgl_saved, tsgls->src.sgl,
798 tsgls->src.nents * sizeof(tsgls->src.sgl[0]));
799 tsgls->dst.sgl_ptr = tsgls->dst.sgl;
800 tsgls->dst.nents = tsgls->src.nents;
804 return build_test_sglist(&tsgls->dst,
805 cfg->dst_divs[0].proportion_of_total ?
806 cfg->dst_divs : cfg->src_divs,
807 alignmask, dst_total_len, NULL, NULL);
811 * Support for testing passing a misaligned key to setkey():
813 * If cfg->key_offset is set, copy the key into a new buffer at that offset,
814 * optionally adding alignmask. Else, just use the key directly.
816 static int prepare_keybuf(const u8 *key, unsigned int ksize,
817 const struct testvec_config *cfg,
818 unsigned int alignmask,
819 const u8 **keybuf_ret, const u8 **keyptr_ret)
821 unsigned int key_offset = cfg->key_offset;
822 u8 *keybuf = NULL, *keyptr = (u8 *)key;
824 if (key_offset != 0) {
825 if (cfg->key_offset_relative_to_alignmask)
826 key_offset += alignmask;
827 keybuf = kmalloc(key_offset + ksize, GFP_KERNEL);
830 keyptr = keybuf + key_offset;
831 memcpy(keyptr, key, ksize);
833 *keybuf_ret = keybuf;
834 *keyptr_ret = keyptr;
838 /* Like setkey_f(tfm, key, ksize), but sometimes misalign the key */
839 #define do_setkey(setkey_f, tfm, key, ksize, cfg, alignmask) \
841 const u8 *keybuf, *keyptr; \
844 err = prepare_keybuf((key), (ksize), (cfg), (alignmask), \
847 err = setkey_f((tfm), keyptr, (ksize)); \
853 #ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
856 * The fuzz tests use prandom instead of the normal Linux RNG since they don't
857 * need cryptographically secure random numbers. This greatly improves the
858 * performance of these tests, especially if they are run before the Linux RNG
859 * has been initialized or if they are run on a lockdep-enabled kernel.
862 static inline void init_rnd_state(struct rnd_state *rng)
864 prandom_seed_state(rng, get_random_u64());
867 static inline u8 prandom_u8(struct rnd_state *rng)
869 return prandom_u32_state(rng);
872 static inline u32 prandom_u32_below(struct rnd_state *rng, u32 ceil)
875 * This is slightly biased for non-power-of-2 values of 'ceil', but this
876 * isn't important here.
878 return prandom_u32_state(rng) % ceil;
881 static inline bool prandom_bool(struct rnd_state *rng)
883 return prandom_u32_below(rng, 2);
886 static inline u32 prandom_u32_inclusive(struct rnd_state *rng,
889 return floor + prandom_u32_below(rng, ceil - floor + 1);
892 /* Generate a random length in range [0, max_len], but prefer smaller values */
893 static unsigned int generate_random_length(struct rnd_state *rng,
894 unsigned int max_len)
896 unsigned int len = prandom_u32_below(rng, max_len + 1);
898 switch (prandom_u32_below(rng, 4)) {
910 /* Flip a random bit in the given nonempty data buffer */
911 static void flip_random_bit(struct rnd_state *rng, u8 *buf, size_t size)
915 bitpos = prandom_u32_below(rng, size * 8);
916 buf[bitpos / 8] ^= 1 << (bitpos % 8);
919 /* Flip a random byte in the given nonempty data buffer */
920 static void flip_random_byte(struct rnd_state *rng, u8 *buf, size_t size)
922 buf[prandom_u32_below(rng, size)] ^= 0xff;
925 /* Sometimes make some random changes to the given nonempty data buffer */
926 static void mutate_buffer(struct rnd_state *rng, u8 *buf, size_t size)
931 /* Sometimes flip some bits */
932 if (prandom_u32_below(rng, 4) == 0) {
933 num_flips = min_t(size_t, 1 << prandom_u32_below(rng, 8),
935 for (i = 0; i < num_flips; i++)
936 flip_random_bit(rng, buf, size);
939 /* Sometimes flip some bytes */
940 if (prandom_u32_below(rng, 4) == 0) {
941 num_flips = min_t(size_t, 1 << prandom_u32_below(rng, 8), size);
942 for (i = 0; i < num_flips; i++)
943 flip_random_byte(rng, buf, size);
947 /* Randomly generate 'count' bytes, but sometimes make them "interesting" */
948 static void generate_random_bytes(struct rnd_state *rng, u8 *buf, size_t count)
957 switch (prandom_u32_below(rng, 8)) { /* Choose a generation strategy */
960 /* All the same byte, plus optional mutations */
961 switch (prandom_u32_below(rng, 4)) {
972 memset(buf, b, count);
973 mutate_buffer(rng, buf, count);
976 /* Ascending or descending bytes, plus optional mutations */
977 increment = prandom_u8(rng);
979 for (i = 0; i < count; i++, b += increment)
981 mutate_buffer(rng, buf, count);
984 /* Fully random bytes */
985 prandom_bytes_state(rng, buf, count);
989 static char *generate_random_sgl_divisions(struct rnd_state *rng,
990 struct test_sg_division *divs,
991 size_t max_divs, char *p, char *end,
992 bool gen_flushes, u32 req_flags)
994 struct test_sg_division *div = divs;
995 unsigned int remaining = TEST_SG_TOTAL;
998 unsigned int this_len;
999 const char *flushtype_str;
1001 if (div == &divs[max_divs - 1] || prandom_bool(rng))
1002 this_len = remaining;
1004 this_len = prandom_u32_inclusive(rng, 1, remaining);
1005 div->proportion_of_total = this_len;
1007 if (prandom_u32_below(rng, 4) == 0)
1008 div->offset = prandom_u32_inclusive(rng,
1011 else if (prandom_bool(rng))
1012 div->offset = prandom_u32_below(rng, 32);
1014 div->offset = prandom_u32_below(rng, PAGE_SIZE);
1015 if (prandom_u32_below(rng, 8) == 0)
1016 div->offset_relative_to_alignmask = true;
1018 div->flush_type = FLUSH_TYPE_NONE;
1020 switch (prandom_u32_below(rng, 4)) {
1022 div->flush_type = FLUSH_TYPE_REIMPORT;
1025 div->flush_type = FLUSH_TYPE_FLUSH;
1030 if (div->flush_type != FLUSH_TYPE_NONE &&
1031 !(req_flags & CRYPTO_TFM_REQ_MAY_SLEEP) &&
1035 switch (div->flush_type) {
1036 case FLUSH_TYPE_FLUSH:
1038 flushtype_str = "<flush,nosimd>";
1040 flushtype_str = "<flush>";
1042 case FLUSH_TYPE_REIMPORT:
1044 flushtype_str = "<reimport,nosimd>";
1046 flushtype_str = "<reimport>";
1053 BUILD_BUG_ON(TEST_SG_TOTAL != 10000); /* for "%u.%u%%" */
1054 p += scnprintf(p, end - p, "%s%u.%u%%@%s+%u%s", flushtype_str,
1055 this_len / 100, this_len % 100,
1056 div->offset_relative_to_alignmask ?
1058 div->offset, this_len == remaining ? "" : ", ");
1059 remaining -= this_len;
1061 } while (remaining);
1066 /* Generate a random testvec_config for fuzz testing */
1067 static void generate_random_testvec_config(struct rnd_state *rng,
1068 struct testvec_config *cfg,
1069 char *name, size_t max_namelen)
1072 char * const end = name + max_namelen;
1074 memset(cfg, 0, sizeof(*cfg));
1078 p += scnprintf(p, end - p, "random:");
1080 switch (prandom_u32_below(rng, 4)) {
1083 cfg->inplace_mode = OUT_OF_PLACE;
1086 cfg->inplace_mode = INPLACE_ONE_SGLIST;
1087 p += scnprintf(p, end - p, " inplace_one_sglist");
1090 cfg->inplace_mode = INPLACE_TWO_SGLISTS;
1091 p += scnprintf(p, end - p, " inplace_two_sglists");
1095 if (prandom_bool(rng)) {
1096 cfg->req_flags |= CRYPTO_TFM_REQ_MAY_SLEEP;
1097 p += scnprintf(p, end - p, " may_sleep");
1100 switch (prandom_u32_below(rng, 4)) {
1102 cfg->finalization_type = FINALIZATION_TYPE_FINAL;
1103 p += scnprintf(p, end - p, " use_final");
1106 cfg->finalization_type = FINALIZATION_TYPE_FINUP;
1107 p += scnprintf(p, end - p, " use_finup");
1110 cfg->finalization_type = FINALIZATION_TYPE_DIGEST;
1111 p += scnprintf(p, end - p, " use_digest");
1115 if (!(cfg->req_flags & CRYPTO_TFM_REQ_MAY_SLEEP) && prandom_bool(rng)) {
1117 p += scnprintf(p, end - p, " nosimd");
1120 p += scnprintf(p, end - p, " src_divs=[");
1121 p = generate_random_sgl_divisions(rng, cfg->src_divs,
1122 ARRAY_SIZE(cfg->src_divs), p, end,
1123 (cfg->finalization_type !=
1124 FINALIZATION_TYPE_DIGEST),
1126 p += scnprintf(p, end - p, "]");
1128 if (cfg->inplace_mode == OUT_OF_PLACE && prandom_bool(rng)) {
1129 p += scnprintf(p, end - p, " dst_divs=[");
1130 p = generate_random_sgl_divisions(rng, cfg->dst_divs,
1131 ARRAY_SIZE(cfg->dst_divs),
1134 p += scnprintf(p, end - p, "]");
1137 if (prandom_bool(rng)) {
1138 cfg->iv_offset = prandom_u32_inclusive(rng, 1,
1139 MAX_ALGAPI_ALIGNMASK);
1140 p += scnprintf(p, end - p, " iv_offset=%u", cfg->iv_offset);
1143 if (prandom_bool(rng)) {
1144 cfg->key_offset = prandom_u32_inclusive(rng, 1,
1145 MAX_ALGAPI_ALIGNMASK);
1146 p += scnprintf(p, end - p, " key_offset=%u", cfg->key_offset);
1149 WARN_ON_ONCE(!valid_testvec_config(cfg));
1152 static void crypto_disable_simd_for_test(void)
1155 __this_cpu_write(crypto_simd_disabled_for_test, true);
1158 static void crypto_reenable_simd_for_test(void)
1160 __this_cpu_write(crypto_simd_disabled_for_test, false);
1165 * Given an algorithm name, build the name of the generic implementation of that
1166 * algorithm, assuming the usual naming convention. Specifically, this appends
1167 * "-generic" to every part of the name that is not a template name. Examples:
1169 * aes => aes-generic
1170 * cbc(aes) => cbc(aes-generic)
1171 * cts(cbc(aes)) => cts(cbc(aes-generic))
1172 * rfc7539(chacha20,poly1305) => rfc7539(chacha20-generic,poly1305-generic)
1174 * Return: 0 on success, or -ENAMETOOLONG if the generic name would be too long
1176 static int build_generic_driver_name(const char *algname,
1177 char driver_name[CRYPTO_MAX_ALG_NAME])
1179 const char *in = algname;
1180 char *out = driver_name;
1181 size_t len = strlen(algname);
1183 if (len >= CRYPTO_MAX_ALG_NAME)
1186 const char *in_saved = in;
1188 while (*in && *in != '(' && *in != ')' && *in != ',')
1190 if (*in != '(' && in > in_saved) {
1192 if (len >= CRYPTO_MAX_ALG_NAME)
1194 memcpy(out, "-generic", 8);
1197 } while ((*out++ = *in++) != '\0');
1201 pr_err("alg: generic driver name for \"%s\" would be too long\n",
1203 return -ENAMETOOLONG;
1205 #else /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
1206 static void crypto_disable_simd_for_test(void)
1210 static void crypto_reenable_simd_for_test(void)
1213 #endif /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
1215 static int build_hash_sglist(struct test_sglist *tsgl,
1216 const struct hash_testvec *vec,
1217 const struct testvec_config *cfg,
1218 unsigned int alignmask,
1219 const struct test_sg_division *divs[XBUFSIZE])
1222 struct iov_iter input;
1224 kv.iov_base = (void *)vec->plaintext;
1225 kv.iov_len = vec->psize;
1226 iov_iter_kvec(&input, ITER_SOURCE, &kv, 1, vec->psize);
1227 return build_test_sglist(tsgl, cfg->src_divs, alignmask, vec->psize,
1231 static int check_hash_result(const char *type,
1232 const u8 *result, unsigned int digestsize,
1233 const struct hash_testvec *vec,
1234 const char *vec_name,
1236 const struct testvec_config *cfg)
1238 if (memcmp(result, vec->digest, digestsize) != 0) {
1239 pr_err("alg: %s: %s test failed (wrong result) on test vector %s, cfg=\"%s\"\n",
1240 type, driver, vec_name, cfg->name);
1243 if (!testmgr_is_poison(&result[digestsize], TESTMGR_POISON_LEN)) {
1244 pr_err("alg: %s: %s overran result buffer on test vector %s, cfg=\"%s\"\n",
1245 type, driver, vec_name, cfg->name);
1251 static inline int check_shash_op(const char *op, int err,
1252 const char *driver, const char *vec_name,
1253 const struct testvec_config *cfg)
1256 pr_err("alg: shash: %s %s() failed with err %d on test vector %s, cfg=\"%s\"\n",
1257 driver, op, err, vec_name, cfg->name);
1261 /* Test one hash test vector in one configuration, using the shash API */
1262 static int test_shash_vec_cfg(const struct hash_testvec *vec,
1263 const char *vec_name,
1264 const struct testvec_config *cfg,
1265 struct shash_desc *desc,
1266 struct test_sglist *tsgl,
1269 struct crypto_shash *tfm = desc->tfm;
1270 const unsigned int alignmask = crypto_shash_alignmask(tfm);
1271 const unsigned int digestsize = crypto_shash_digestsize(tfm);
1272 const unsigned int statesize = crypto_shash_statesize(tfm);
1273 const char *driver = crypto_shash_driver_name(tfm);
1274 const struct test_sg_division *divs[XBUFSIZE];
1276 u8 result[HASH_MAX_DIGESTSIZE + TESTMGR_POISON_LEN];
1279 /* Set the key, if specified */
1281 err = do_setkey(crypto_shash_setkey, tfm, vec->key, vec->ksize,
1284 if (err == vec->setkey_error)
1286 pr_err("alg: shash: %s setkey failed on test vector %s; expected_error=%d, actual_error=%d, flags=%#x\n",
1287 driver, vec_name, vec->setkey_error, err,
1288 crypto_shash_get_flags(tfm));
1291 if (vec->setkey_error) {
1292 pr_err("alg: shash: %s setkey unexpectedly succeeded on test vector %s; expected_error=%d\n",
1293 driver, vec_name, vec->setkey_error);
1298 /* Build the scatterlist for the source data */
1299 err = build_hash_sglist(tsgl, vec, cfg, alignmask, divs);
1301 pr_err("alg: shash: %s: error preparing scatterlist for test vector %s, cfg=\"%s\"\n",
1302 driver, vec_name, cfg->name);
1306 /* Do the actual hashing */
1308 testmgr_poison(desc->__ctx, crypto_shash_descsize(tfm));
1309 testmgr_poison(result, digestsize + TESTMGR_POISON_LEN);
1311 if (cfg->finalization_type == FINALIZATION_TYPE_DIGEST ||
1312 vec->digest_error) {
1313 /* Just using digest() */
1314 if (tsgl->nents != 1)
1317 crypto_disable_simd_for_test();
1318 err = crypto_shash_digest(desc, sg_virt(&tsgl->sgl[0]),
1319 tsgl->sgl[0].length, result);
1321 crypto_reenable_simd_for_test();
1323 if (err == vec->digest_error)
1325 pr_err("alg: shash: %s digest() failed on test vector %s; expected_error=%d, actual_error=%d, cfg=\"%s\"\n",
1326 driver, vec_name, vec->digest_error, err,
1330 if (vec->digest_error) {
1331 pr_err("alg: shash: %s digest() unexpectedly succeeded on test vector %s; expected_error=%d, cfg=\"%s\"\n",
1332 driver, vec_name, vec->digest_error, cfg->name);
1338 /* Using init(), zero or more update(), then final() or finup() */
1341 crypto_disable_simd_for_test();
1342 err = crypto_shash_init(desc);
1344 crypto_reenable_simd_for_test();
1345 err = check_shash_op("init", err, driver, vec_name, cfg);
1349 for (i = 0; i < tsgl->nents; i++) {
1350 if (i + 1 == tsgl->nents &&
1351 cfg->finalization_type == FINALIZATION_TYPE_FINUP) {
1352 if (divs[i]->nosimd)
1353 crypto_disable_simd_for_test();
1354 err = crypto_shash_finup(desc, sg_virt(&tsgl->sgl[i]),
1355 tsgl->sgl[i].length, result);
1356 if (divs[i]->nosimd)
1357 crypto_reenable_simd_for_test();
1358 err = check_shash_op("finup", err, driver, vec_name,
1364 if (divs[i]->nosimd)
1365 crypto_disable_simd_for_test();
1366 err = crypto_shash_update(desc, sg_virt(&tsgl->sgl[i]),
1367 tsgl->sgl[i].length);
1368 if (divs[i]->nosimd)
1369 crypto_reenable_simd_for_test();
1370 err = check_shash_op("update", err, driver, vec_name, cfg);
1373 if (divs[i]->flush_type == FLUSH_TYPE_REIMPORT) {
1374 /* Test ->export() and ->import() */
1375 testmgr_poison(hashstate + statesize,
1376 TESTMGR_POISON_LEN);
1377 err = crypto_shash_export(desc, hashstate);
1378 err = check_shash_op("export", err, driver, vec_name,
1382 if (!testmgr_is_poison(hashstate + statesize,
1383 TESTMGR_POISON_LEN)) {
1384 pr_err("alg: shash: %s export() overran state buffer on test vector %s, cfg=\"%s\"\n",
1385 driver, vec_name, cfg->name);
1388 testmgr_poison(desc->__ctx, crypto_shash_descsize(tfm));
1389 err = crypto_shash_import(desc, hashstate);
1390 err = check_shash_op("import", err, driver, vec_name,
1398 crypto_disable_simd_for_test();
1399 err = crypto_shash_final(desc, result);
1401 crypto_reenable_simd_for_test();
1402 err = check_shash_op("final", err, driver, vec_name, cfg);
1406 return check_hash_result("shash", result, digestsize, vec, vec_name,
1410 static int do_ahash_op(int (*op)(struct ahash_request *req),
1411 struct ahash_request *req,
1412 struct crypto_wait *wait, bool nosimd)
1417 crypto_disable_simd_for_test();
1422 crypto_reenable_simd_for_test();
1424 return crypto_wait_req(err, wait);
1427 static int check_nonfinal_ahash_op(const char *op, int err,
1428 u8 *result, unsigned int digestsize,
1429 const char *driver, const char *vec_name,
1430 const struct testvec_config *cfg)
1433 pr_err("alg: ahash: %s %s() failed with err %d on test vector %s, cfg=\"%s\"\n",
1434 driver, op, err, vec_name, cfg->name);
1437 if (!testmgr_is_poison(result, digestsize)) {
1438 pr_err("alg: ahash: %s %s() used result buffer on test vector %s, cfg=\"%s\"\n",
1439 driver, op, vec_name, cfg->name);
1445 /* Test one hash test vector in one configuration, using the ahash API */
1446 static int test_ahash_vec_cfg(const struct hash_testvec *vec,
1447 const char *vec_name,
1448 const struct testvec_config *cfg,
1449 struct ahash_request *req,
1450 struct test_sglist *tsgl,
1453 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
1454 const unsigned int alignmask = crypto_ahash_alignmask(tfm);
1455 const unsigned int digestsize = crypto_ahash_digestsize(tfm);
1456 const unsigned int statesize = crypto_ahash_statesize(tfm);
1457 const char *driver = crypto_ahash_driver_name(tfm);
1458 const u32 req_flags = CRYPTO_TFM_REQ_MAY_BACKLOG | cfg->req_flags;
1459 const struct test_sg_division *divs[XBUFSIZE];
1460 DECLARE_CRYPTO_WAIT(wait);
1462 struct scatterlist *pending_sgl;
1463 unsigned int pending_len;
1464 u8 result[HASH_MAX_DIGESTSIZE + TESTMGR_POISON_LEN];
1467 /* Set the key, if specified */
1469 err = do_setkey(crypto_ahash_setkey, tfm, vec->key, vec->ksize,
1472 if (err == vec->setkey_error)
1474 pr_err("alg: ahash: %s setkey failed on test vector %s; expected_error=%d, actual_error=%d, flags=%#x\n",
1475 driver, vec_name, vec->setkey_error, err,
1476 crypto_ahash_get_flags(tfm));
1479 if (vec->setkey_error) {
1480 pr_err("alg: ahash: %s setkey unexpectedly succeeded on test vector %s; expected_error=%d\n",
1481 driver, vec_name, vec->setkey_error);
1486 /* Build the scatterlist for the source data */
1487 err = build_hash_sglist(tsgl, vec, cfg, alignmask, divs);
1489 pr_err("alg: ahash: %s: error preparing scatterlist for test vector %s, cfg=\"%s\"\n",
1490 driver, vec_name, cfg->name);
1494 /* Do the actual hashing */
1496 testmgr_poison(req->__ctx, crypto_ahash_reqsize(tfm));
1497 testmgr_poison(result, digestsize + TESTMGR_POISON_LEN);
1499 if (cfg->finalization_type == FINALIZATION_TYPE_DIGEST ||
1500 vec->digest_error) {
1501 /* Just using digest() */
1502 ahash_request_set_callback(req, req_flags, crypto_req_done,
1504 ahash_request_set_crypt(req, tsgl->sgl, result, vec->psize);
1505 err = do_ahash_op(crypto_ahash_digest, req, &wait, cfg->nosimd);
1507 if (err == vec->digest_error)
1509 pr_err("alg: ahash: %s digest() failed on test vector %s; expected_error=%d, actual_error=%d, cfg=\"%s\"\n",
1510 driver, vec_name, vec->digest_error, err,
1514 if (vec->digest_error) {
1515 pr_err("alg: ahash: %s digest() unexpectedly succeeded on test vector %s; expected_error=%d, cfg=\"%s\"\n",
1516 driver, vec_name, vec->digest_error, cfg->name);
1522 /* Using init(), zero or more update(), then final() or finup() */
1524 ahash_request_set_callback(req, req_flags, crypto_req_done, &wait);
1525 ahash_request_set_crypt(req, NULL, result, 0);
1526 err = do_ahash_op(crypto_ahash_init, req, &wait, cfg->nosimd);
1527 err = check_nonfinal_ahash_op("init", err, result, digestsize,
1528 driver, vec_name, cfg);
1534 for (i = 0; i < tsgl->nents; i++) {
1535 if (divs[i]->flush_type != FLUSH_TYPE_NONE &&
1536 pending_sgl != NULL) {
1537 /* update() with the pending data */
1538 ahash_request_set_callback(req, req_flags,
1539 crypto_req_done, &wait);
1540 ahash_request_set_crypt(req, pending_sgl, result,
1542 err = do_ahash_op(crypto_ahash_update, req, &wait,
1544 err = check_nonfinal_ahash_op("update", err,
1546 driver, vec_name, cfg);
1552 if (divs[i]->flush_type == FLUSH_TYPE_REIMPORT) {
1553 /* Test ->export() and ->import() */
1554 testmgr_poison(hashstate + statesize,
1555 TESTMGR_POISON_LEN);
1556 err = crypto_ahash_export(req, hashstate);
1557 err = check_nonfinal_ahash_op("export", err,
1559 driver, vec_name, cfg);
1562 if (!testmgr_is_poison(hashstate + statesize,
1563 TESTMGR_POISON_LEN)) {
1564 pr_err("alg: ahash: %s export() overran state buffer on test vector %s, cfg=\"%s\"\n",
1565 driver, vec_name, cfg->name);
1569 testmgr_poison(req->__ctx, crypto_ahash_reqsize(tfm));
1570 err = crypto_ahash_import(req, hashstate);
1571 err = check_nonfinal_ahash_op("import", err,
1573 driver, vec_name, cfg);
1577 if (pending_sgl == NULL)
1578 pending_sgl = &tsgl->sgl[i];
1579 pending_len += tsgl->sgl[i].length;
1582 ahash_request_set_callback(req, req_flags, crypto_req_done, &wait);
1583 ahash_request_set_crypt(req, pending_sgl, result, pending_len);
1584 if (cfg->finalization_type == FINALIZATION_TYPE_FINAL) {
1585 /* finish with update() and final() */
1586 err = do_ahash_op(crypto_ahash_update, req, &wait, cfg->nosimd);
1587 err = check_nonfinal_ahash_op("update", err, result, digestsize,
1588 driver, vec_name, cfg);
1591 err = do_ahash_op(crypto_ahash_final, req, &wait, cfg->nosimd);
1593 pr_err("alg: ahash: %s final() failed with err %d on test vector %s, cfg=\"%s\"\n",
1594 driver, err, vec_name, cfg->name);
1598 /* finish with finup() */
1599 err = do_ahash_op(crypto_ahash_finup, req, &wait, cfg->nosimd);
1601 pr_err("alg: ahash: %s finup() failed with err %d on test vector %s, cfg=\"%s\"\n",
1602 driver, err, vec_name, cfg->name);
1608 return check_hash_result("ahash", result, digestsize, vec, vec_name,
1612 static int test_hash_vec_cfg(const struct hash_testvec *vec,
1613 const char *vec_name,
1614 const struct testvec_config *cfg,
1615 struct ahash_request *req,
1616 struct shash_desc *desc,
1617 struct test_sglist *tsgl,
1623 * For algorithms implemented as "shash", most bugs will be detected by
1624 * both the shash and ahash tests. Test the shash API first so that the
1625 * failures involve less indirection, so are easier to debug.
1629 err = test_shash_vec_cfg(vec, vec_name, cfg, desc, tsgl,
1635 return test_ahash_vec_cfg(vec, vec_name, cfg, req, tsgl, hashstate);
1638 static int test_hash_vec(const struct hash_testvec *vec, unsigned int vec_num,
1639 struct ahash_request *req, struct shash_desc *desc,
1640 struct test_sglist *tsgl, u8 *hashstate)
1646 sprintf(vec_name, "%u", vec_num);
1648 for (i = 0; i < ARRAY_SIZE(default_hash_testvec_configs); i++) {
1649 err = test_hash_vec_cfg(vec, vec_name,
1650 &default_hash_testvec_configs[i],
1651 req, desc, tsgl, hashstate);
1656 #ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
1657 if (!noextratests) {
1658 struct rnd_state rng;
1659 struct testvec_config cfg;
1660 char cfgname[TESTVEC_CONFIG_NAMELEN];
1662 init_rnd_state(&rng);
1664 for (i = 0; i < fuzz_iterations; i++) {
1665 generate_random_testvec_config(&rng, &cfg, cfgname,
1667 err = test_hash_vec_cfg(vec, vec_name, &cfg,
1668 req, desc, tsgl, hashstate);
1678 #ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
1680 * Generate a hash test vector from the given implementation.
1681 * Assumes the buffers in 'vec' were already allocated.
1683 static void generate_random_hash_testvec(struct rnd_state *rng,
1684 struct shash_desc *desc,
1685 struct hash_testvec *vec,
1686 unsigned int maxkeysize,
1687 unsigned int maxdatasize,
1688 char *name, size_t max_namelen)
1691 vec->psize = generate_random_length(rng, maxdatasize);
1692 generate_random_bytes(rng, (u8 *)vec->plaintext, vec->psize);
1695 * Key: length in range [1, maxkeysize], but usually choose maxkeysize.
1696 * If algorithm is unkeyed, then maxkeysize == 0 and set ksize = 0.
1698 vec->setkey_error = 0;
1701 vec->ksize = maxkeysize;
1702 if (prandom_u32_below(rng, 4) == 0)
1703 vec->ksize = prandom_u32_inclusive(rng, 1, maxkeysize);
1704 generate_random_bytes(rng, (u8 *)vec->key, vec->ksize);
1706 vec->setkey_error = crypto_shash_setkey(desc->tfm, vec->key,
1708 /* If the key couldn't be set, no need to continue to digest. */
1709 if (vec->setkey_error)
1714 vec->digest_error = crypto_shash_digest(desc, vec->plaintext,
1715 vec->psize, (u8 *)vec->digest);
1717 snprintf(name, max_namelen, "\"random: psize=%u ksize=%u\"",
1718 vec->psize, vec->ksize);
1722 * Test the hash algorithm represented by @req against the corresponding generic
1723 * implementation, if one is available.
1725 static int test_hash_vs_generic_impl(const char *generic_driver,
1726 unsigned int maxkeysize,
1727 struct ahash_request *req,
1728 struct shash_desc *desc,
1729 struct test_sglist *tsgl,
1732 struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
1733 const unsigned int digestsize = crypto_ahash_digestsize(tfm);
1734 const unsigned int blocksize = crypto_ahash_blocksize(tfm);
1735 const unsigned int maxdatasize = (2 * PAGE_SIZE) - TESTMGR_POISON_LEN;
1736 const char *algname = crypto_hash_alg_common(tfm)->base.cra_name;
1737 const char *driver = crypto_ahash_driver_name(tfm);
1738 struct rnd_state rng;
1739 char _generic_driver[CRYPTO_MAX_ALG_NAME];
1740 struct crypto_shash *generic_tfm = NULL;
1741 struct shash_desc *generic_desc = NULL;
1743 struct hash_testvec vec = { 0 };
1745 struct testvec_config *cfg;
1746 char cfgname[TESTVEC_CONFIG_NAMELEN];
1752 init_rnd_state(&rng);
1754 if (!generic_driver) { /* Use default naming convention? */
1755 err = build_generic_driver_name(algname, _generic_driver);
1758 generic_driver = _generic_driver;
1761 if (strcmp(generic_driver, driver) == 0) /* Already the generic impl? */
1764 generic_tfm = crypto_alloc_shash(generic_driver, 0, 0);
1765 if (IS_ERR(generic_tfm)) {
1766 err = PTR_ERR(generic_tfm);
1767 if (err == -ENOENT) {
1768 pr_warn("alg: hash: skipping comparison tests for %s because %s is unavailable\n",
1769 driver, generic_driver);
1772 pr_err("alg: hash: error allocating %s (generic impl of %s): %d\n",
1773 generic_driver, algname, err);
1777 cfg = kzalloc(sizeof(*cfg), GFP_KERNEL);
1783 generic_desc = kzalloc(sizeof(*desc) +
1784 crypto_shash_descsize(generic_tfm), GFP_KERNEL);
1785 if (!generic_desc) {
1789 generic_desc->tfm = generic_tfm;
1791 /* Check the algorithm properties for consistency. */
1793 if (digestsize != crypto_shash_digestsize(generic_tfm)) {
1794 pr_err("alg: hash: digestsize for %s (%u) doesn't match generic impl (%u)\n",
1796 crypto_shash_digestsize(generic_tfm));
1801 if (blocksize != crypto_shash_blocksize(generic_tfm)) {
1802 pr_err("alg: hash: blocksize for %s (%u) doesn't match generic impl (%u)\n",
1803 driver, blocksize, crypto_shash_blocksize(generic_tfm));
1809 * Now generate test vectors using the generic implementation, and test
1810 * the other implementation against them.
1813 vec.key = kmalloc(maxkeysize, GFP_KERNEL);
1814 vec.plaintext = kmalloc(maxdatasize, GFP_KERNEL);
1815 vec.digest = kmalloc(digestsize, GFP_KERNEL);
1816 if (!vec.key || !vec.plaintext || !vec.digest) {
1821 for (i = 0; i < fuzz_iterations * 8; i++) {
1822 generate_random_hash_testvec(&rng, generic_desc, &vec,
1823 maxkeysize, maxdatasize,
1824 vec_name, sizeof(vec_name));
1825 generate_random_testvec_config(&rng, cfg, cfgname,
1828 err = test_hash_vec_cfg(&vec, vec_name, cfg,
1829 req, desc, tsgl, hashstate);
1838 kfree(vec.plaintext);
1840 crypto_free_shash(generic_tfm);
1841 kfree_sensitive(generic_desc);
1844 #else /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
1845 static int test_hash_vs_generic_impl(const char *generic_driver,
1846 unsigned int maxkeysize,
1847 struct ahash_request *req,
1848 struct shash_desc *desc,
1849 struct test_sglist *tsgl,
1854 #endif /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
1856 static int alloc_shash(const char *driver, u32 type, u32 mask,
1857 struct crypto_shash **tfm_ret,
1858 struct shash_desc **desc_ret)
1860 struct crypto_shash *tfm;
1861 struct shash_desc *desc;
1863 tfm = crypto_alloc_shash(driver, type, mask);
1865 if (PTR_ERR(tfm) == -ENOENT) {
1867 * This algorithm is only available through the ahash
1868 * API, not the shash API, so skip the shash tests.
1872 pr_err("alg: hash: failed to allocate shash transform for %s: %ld\n",
1873 driver, PTR_ERR(tfm));
1874 return PTR_ERR(tfm);
1877 desc = kmalloc(sizeof(*desc) + crypto_shash_descsize(tfm), GFP_KERNEL);
1879 crypto_free_shash(tfm);
1889 static int __alg_test_hash(const struct hash_testvec *vecs,
1890 unsigned int num_vecs, const char *driver,
1892 const char *generic_driver, unsigned int maxkeysize)
1894 struct crypto_ahash *atfm = NULL;
1895 struct ahash_request *req = NULL;
1896 struct crypto_shash *stfm = NULL;
1897 struct shash_desc *desc = NULL;
1898 struct test_sglist *tsgl = NULL;
1899 u8 *hashstate = NULL;
1900 unsigned int statesize;
1905 * Always test the ahash API. This works regardless of whether the
1906 * algorithm is implemented as ahash or shash.
1909 atfm = crypto_alloc_ahash(driver, type, mask);
1911 pr_err("alg: hash: failed to allocate transform for %s: %ld\n",
1912 driver, PTR_ERR(atfm));
1913 return PTR_ERR(atfm);
1915 driver = crypto_ahash_driver_name(atfm);
1917 req = ahash_request_alloc(atfm, GFP_KERNEL);
1919 pr_err("alg: hash: failed to allocate request for %s\n",
1926 * If available also test the shash API, to cover corner cases that may
1927 * be missed by testing the ahash API only.
1929 err = alloc_shash(driver, type, mask, &stfm, &desc);
1933 tsgl = kmalloc(sizeof(*tsgl), GFP_KERNEL);
1934 if (!tsgl || init_test_sglist(tsgl) != 0) {
1935 pr_err("alg: hash: failed to allocate test buffers for %s\n",
1943 statesize = crypto_ahash_statesize(atfm);
1945 statesize = max(statesize, crypto_shash_statesize(stfm));
1946 hashstate = kmalloc(statesize + TESTMGR_POISON_LEN, GFP_KERNEL);
1948 pr_err("alg: hash: failed to allocate hash state buffer for %s\n",
1954 for (i = 0; i < num_vecs; i++) {
1955 if (fips_enabled && vecs[i].fips_skip)
1958 err = test_hash_vec(&vecs[i], i, req, desc, tsgl, hashstate);
1963 err = test_hash_vs_generic_impl(generic_driver, maxkeysize, req,
1964 desc, tsgl, hashstate);
1968 destroy_test_sglist(tsgl);
1972 crypto_free_shash(stfm);
1973 ahash_request_free(req);
1974 crypto_free_ahash(atfm);
1978 static int alg_test_hash(const struct alg_test_desc *desc, const char *driver,
1981 const struct hash_testvec *template = desc->suite.hash.vecs;
1982 unsigned int tcount = desc->suite.hash.count;
1983 unsigned int nr_unkeyed, nr_keyed;
1984 unsigned int maxkeysize = 0;
1988 * For OPTIONAL_KEY algorithms, we have to do all the unkeyed tests
1989 * first, before setting a key on the tfm. To make this easier, we
1990 * require that the unkeyed test vectors (if any) are listed first.
1993 for (nr_unkeyed = 0; nr_unkeyed < tcount; nr_unkeyed++) {
1994 if (template[nr_unkeyed].ksize)
1997 for (nr_keyed = 0; nr_unkeyed + nr_keyed < tcount; nr_keyed++) {
1998 if (!template[nr_unkeyed + nr_keyed].ksize) {
1999 pr_err("alg: hash: test vectors for %s out of order, "
2000 "unkeyed ones must come first\n", desc->alg);
2003 maxkeysize = max_t(unsigned int, maxkeysize,
2004 template[nr_unkeyed + nr_keyed].ksize);
2009 err = __alg_test_hash(template, nr_unkeyed, driver, type, mask,
2010 desc->generic_driver, maxkeysize);
2011 template += nr_unkeyed;
2014 if (!err && nr_keyed)
2015 err = __alg_test_hash(template, nr_keyed, driver, type, mask,
2016 desc->generic_driver, maxkeysize);
2021 static int test_aead_vec_cfg(int enc, const struct aead_testvec *vec,
2022 const char *vec_name,
2023 const struct testvec_config *cfg,
2024 struct aead_request *req,
2025 struct cipher_test_sglists *tsgls)
2027 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
2028 const unsigned int alignmask = crypto_aead_alignmask(tfm);
2029 const unsigned int ivsize = crypto_aead_ivsize(tfm);
2030 const unsigned int authsize = vec->clen - vec->plen;
2031 const char *driver = crypto_aead_driver_name(tfm);
2032 const u32 req_flags = CRYPTO_TFM_REQ_MAY_BACKLOG | cfg->req_flags;
2033 const char *op = enc ? "encryption" : "decryption";
2034 DECLARE_CRYPTO_WAIT(wait);
2035 u8 _iv[3 * (MAX_ALGAPI_ALIGNMASK + 1) + MAX_IVLEN];
2036 u8 *iv = PTR_ALIGN(&_iv[0], 2 * (MAX_ALGAPI_ALIGNMASK + 1)) +
2038 (cfg->iv_offset_relative_to_alignmask ? alignmask : 0);
2039 struct kvec input[2];
2044 crypto_aead_set_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
2046 crypto_aead_clear_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
2048 err = do_setkey(crypto_aead_setkey, tfm, vec->key, vec->klen,
2050 if (err && err != vec->setkey_error) {
2051 pr_err("alg: aead: %s setkey failed on test vector %s; expected_error=%d, actual_error=%d, flags=%#x\n",
2052 driver, vec_name, vec->setkey_error, err,
2053 crypto_aead_get_flags(tfm));
2056 if (!err && vec->setkey_error) {
2057 pr_err("alg: aead: %s setkey unexpectedly succeeded on test vector %s; expected_error=%d\n",
2058 driver, vec_name, vec->setkey_error);
2062 /* Set the authentication tag size */
2063 err = crypto_aead_setauthsize(tfm, authsize);
2064 if (err && err != vec->setauthsize_error) {
2065 pr_err("alg: aead: %s setauthsize failed on test vector %s; expected_error=%d, actual_error=%d\n",
2066 driver, vec_name, vec->setauthsize_error, err);
2069 if (!err && vec->setauthsize_error) {
2070 pr_err("alg: aead: %s setauthsize unexpectedly succeeded on test vector %s; expected_error=%d\n",
2071 driver, vec_name, vec->setauthsize_error);
2075 if (vec->setkey_error || vec->setauthsize_error)
2078 /* The IV must be copied to a buffer, as the algorithm may modify it */
2079 if (WARN_ON(ivsize > MAX_IVLEN))
2082 memcpy(iv, vec->iv, ivsize);
2084 memset(iv, 0, ivsize);
2086 /* Build the src/dst scatterlists */
2087 input[0].iov_base = (void *)vec->assoc;
2088 input[0].iov_len = vec->alen;
2089 input[1].iov_base = enc ? (void *)vec->ptext : (void *)vec->ctext;
2090 input[1].iov_len = enc ? vec->plen : vec->clen;
2091 err = build_cipher_test_sglists(tsgls, cfg, alignmask,
2092 vec->alen + (enc ? vec->plen :
2094 vec->alen + (enc ? vec->clen :
2098 pr_err("alg: aead: %s %s: error preparing scatterlists for test vector %s, cfg=\"%s\"\n",
2099 driver, op, vec_name, cfg->name);
2103 /* Do the actual encryption or decryption */
2104 testmgr_poison(req->__ctx, crypto_aead_reqsize(tfm));
2105 aead_request_set_callback(req, req_flags, crypto_req_done, &wait);
2106 aead_request_set_crypt(req, tsgls->src.sgl_ptr, tsgls->dst.sgl_ptr,
2107 enc ? vec->plen : vec->clen, iv);
2108 aead_request_set_ad(req, vec->alen);
2110 crypto_disable_simd_for_test();
2111 err = enc ? crypto_aead_encrypt(req) : crypto_aead_decrypt(req);
2113 crypto_reenable_simd_for_test();
2114 err = crypto_wait_req(err, &wait);
2116 /* Check that the algorithm didn't overwrite things it shouldn't have */
2117 if (req->cryptlen != (enc ? vec->plen : vec->clen) ||
2118 req->assoclen != vec->alen ||
2120 req->src != tsgls->src.sgl_ptr ||
2121 req->dst != tsgls->dst.sgl_ptr ||
2122 crypto_aead_reqtfm(req) != tfm ||
2123 req->base.complete != crypto_req_done ||
2124 req->base.flags != req_flags ||
2125 req->base.data != &wait) {
2126 pr_err("alg: aead: %s %s corrupted request struct on test vector %s, cfg=\"%s\"\n",
2127 driver, op, vec_name, cfg->name);
2128 if (req->cryptlen != (enc ? vec->plen : vec->clen))
2129 pr_err("alg: aead: changed 'req->cryptlen'\n");
2130 if (req->assoclen != vec->alen)
2131 pr_err("alg: aead: changed 'req->assoclen'\n");
2133 pr_err("alg: aead: changed 'req->iv'\n");
2134 if (req->src != tsgls->src.sgl_ptr)
2135 pr_err("alg: aead: changed 'req->src'\n");
2136 if (req->dst != tsgls->dst.sgl_ptr)
2137 pr_err("alg: aead: changed 'req->dst'\n");
2138 if (crypto_aead_reqtfm(req) != tfm)
2139 pr_err("alg: aead: changed 'req->base.tfm'\n");
2140 if (req->base.complete != crypto_req_done)
2141 pr_err("alg: aead: changed 'req->base.complete'\n");
2142 if (req->base.flags != req_flags)
2143 pr_err("alg: aead: changed 'req->base.flags'\n");
2144 if (req->base.data != &wait)
2145 pr_err("alg: aead: changed 'req->base.data'\n");
2148 if (is_test_sglist_corrupted(&tsgls->src)) {
2149 pr_err("alg: aead: %s %s corrupted src sgl on test vector %s, cfg=\"%s\"\n",
2150 driver, op, vec_name, cfg->name);
2153 if (tsgls->dst.sgl_ptr != tsgls->src.sgl &&
2154 is_test_sglist_corrupted(&tsgls->dst)) {
2155 pr_err("alg: aead: %s %s corrupted dst sgl on test vector %s, cfg=\"%s\"\n",
2156 driver, op, vec_name, cfg->name);
2160 /* Check for unexpected success or failure, or wrong error code */
2161 if ((err == 0 && vec->novrfy) ||
2162 (err != vec->crypt_error && !(err == -EBADMSG && vec->novrfy))) {
2163 char expected_error[32];
2166 vec->crypt_error != 0 && vec->crypt_error != -EBADMSG)
2167 sprintf(expected_error, "-EBADMSG or %d",
2169 else if (vec->novrfy)
2170 sprintf(expected_error, "-EBADMSG");
2172 sprintf(expected_error, "%d", vec->crypt_error);
2174 pr_err("alg: aead: %s %s failed on test vector %s; expected_error=%s, actual_error=%d, cfg=\"%s\"\n",
2175 driver, op, vec_name, expected_error, err,
2179 pr_err("alg: aead: %s %s unexpectedly succeeded on test vector %s; expected_error=%s, cfg=\"%s\"\n",
2180 driver, op, vec_name, expected_error, cfg->name);
2183 if (err) /* Expectedly failed. */
2186 /* Check for the correct output (ciphertext or plaintext) */
2187 err = verify_correct_output(&tsgls->dst, enc ? vec->ctext : vec->ptext,
2188 enc ? vec->clen : vec->plen,
2190 enc || cfg->inplace_mode == OUT_OF_PLACE);
2191 if (err == -EOVERFLOW) {
2192 pr_err("alg: aead: %s %s overran dst buffer on test vector %s, cfg=\"%s\"\n",
2193 driver, op, vec_name, cfg->name);
2197 pr_err("alg: aead: %s %s test failed (wrong result) on test vector %s, cfg=\"%s\"\n",
2198 driver, op, vec_name, cfg->name);
2205 static int test_aead_vec(int enc, const struct aead_testvec *vec,
2206 unsigned int vec_num, struct aead_request *req,
2207 struct cipher_test_sglists *tsgls)
2213 if (enc && vec->novrfy)
2216 sprintf(vec_name, "%u", vec_num);
2218 for (i = 0; i < ARRAY_SIZE(default_cipher_testvec_configs); i++) {
2219 err = test_aead_vec_cfg(enc, vec, vec_name,
2220 &default_cipher_testvec_configs[i],
2226 #ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
2227 if (!noextratests) {
2228 struct rnd_state rng;
2229 struct testvec_config cfg;
2230 char cfgname[TESTVEC_CONFIG_NAMELEN];
2232 init_rnd_state(&rng);
2234 for (i = 0; i < fuzz_iterations; i++) {
2235 generate_random_testvec_config(&rng, &cfg, cfgname,
2237 err = test_aead_vec_cfg(enc, vec, vec_name,
2248 #ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
2250 struct aead_extra_tests_ctx {
2251 struct rnd_state rng;
2252 struct aead_request *req;
2253 struct crypto_aead *tfm;
2254 const struct alg_test_desc *test_desc;
2255 struct cipher_test_sglists *tsgls;
2256 unsigned int maxdatasize;
2257 unsigned int maxkeysize;
2259 struct aead_testvec vec;
2261 char cfgname[TESTVEC_CONFIG_NAMELEN];
2262 struct testvec_config cfg;
2266 * Make at least one random change to a (ciphertext, AAD) pair. "Ciphertext"
2267 * here means the full ciphertext including the authentication tag. The
2268 * authentication tag (and hence also the ciphertext) is assumed to be nonempty.
2270 static void mutate_aead_message(struct rnd_state *rng,
2271 struct aead_testvec *vec, bool aad_iv,
2272 unsigned int ivsize)
2274 const unsigned int aad_tail_size = aad_iv ? ivsize : 0;
2275 const unsigned int authsize = vec->clen - vec->plen;
2277 if (prandom_bool(rng) && vec->alen > aad_tail_size) {
2278 /* Mutate the AAD */
2279 flip_random_bit(rng, (u8 *)vec->assoc,
2280 vec->alen - aad_tail_size);
2281 if (prandom_bool(rng))
2284 if (prandom_bool(rng)) {
2285 /* Mutate auth tag (assuming it's at the end of ciphertext) */
2286 flip_random_bit(rng, (u8 *)vec->ctext + vec->plen, authsize);
2288 /* Mutate any part of the ciphertext */
2289 flip_random_bit(rng, (u8 *)vec->ctext, vec->clen);
2294 * Minimum authentication tag size in bytes at which we assume that we can
2295 * reliably generate inauthentic messages, i.e. not generate an authentic
2296 * message by chance.
2298 #define MIN_COLLISION_FREE_AUTHSIZE 8
2300 static void generate_aead_message(struct rnd_state *rng,
2301 struct aead_request *req,
2302 const struct aead_test_suite *suite,
2303 struct aead_testvec *vec,
2304 bool prefer_inauthentic)
2306 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
2307 const unsigned int ivsize = crypto_aead_ivsize(tfm);
2308 const unsigned int authsize = vec->clen - vec->plen;
2309 const bool inauthentic = (authsize >= MIN_COLLISION_FREE_AUTHSIZE) &&
2310 (prefer_inauthentic ||
2311 prandom_u32_below(rng, 4) == 0);
2313 /* Generate the AAD. */
2314 generate_random_bytes(rng, (u8 *)vec->assoc, vec->alen);
2315 if (suite->aad_iv && vec->alen >= ivsize)
2316 /* Avoid implementation-defined behavior. */
2317 memcpy((u8 *)vec->assoc + vec->alen - ivsize, vec->iv, ivsize);
2319 if (inauthentic && prandom_bool(rng)) {
2320 /* Generate a random ciphertext. */
2321 generate_random_bytes(rng, (u8 *)vec->ctext, vec->clen);
2324 struct scatterlist src[2], dst;
2326 DECLARE_CRYPTO_WAIT(wait);
2328 /* Generate a random plaintext and encrypt it. */
2329 sg_init_table(src, 2);
2331 sg_set_buf(&src[i++], vec->assoc, vec->alen);
2333 generate_random_bytes(rng, (u8 *)vec->ptext, vec->plen);
2334 sg_set_buf(&src[i++], vec->ptext, vec->plen);
2336 sg_init_one(&dst, vec->ctext, vec->alen + vec->clen);
2337 memcpy(iv, vec->iv, ivsize);
2338 aead_request_set_callback(req, 0, crypto_req_done, &wait);
2339 aead_request_set_crypt(req, src, &dst, vec->plen, iv);
2340 aead_request_set_ad(req, vec->alen);
2341 vec->crypt_error = crypto_wait_req(crypto_aead_encrypt(req),
2343 /* If encryption failed, we're done. */
2344 if (vec->crypt_error != 0)
2346 memmove((u8 *)vec->ctext, vec->ctext + vec->alen, vec->clen);
2350 * Mutate the authentic (ciphertext, AAD) pair to get an
2353 mutate_aead_message(rng, vec, suite->aad_iv, ivsize);
2356 if (suite->einval_allowed)
2357 vec->crypt_error = -EINVAL;
2361 * Generate an AEAD test vector 'vec' using the implementation specified by
2362 * 'req'. The buffers in 'vec' must already be allocated.
2364 * If 'prefer_inauthentic' is true, then this function will generate inauthentic
2365 * test vectors (i.e. vectors with 'vec->novrfy=1') more often.
2367 static void generate_random_aead_testvec(struct rnd_state *rng,
2368 struct aead_request *req,
2369 struct aead_testvec *vec,
2370 const struct aead_test_suite *suite,
2371 unsigned int maxkeysize,
2372 unsigned int maxdatasize,
2373 char *name, size_t max_namelen,
2374 bool prefer_inauthentic)
2376 struct crypto_aead *tfm = crypto_aead_reqtfm(req);
2377 const unsigned int ivsize = crypto_aead_ivsize(tfm);
2378 const unsigned int maxauthsize = crypto_aead_maxauthsize(tfm);
2379 unsigned int authsize;
2380 unsigned int total_len;
2382 /* Key: length in [0, maxkeysize], but usually choose maxkeysize */
2383 vec->klen = maxkeysize;
2384 if (prandom_u32_below(rng, 4) == 0)
2385 vec->klen = prandom_u32_below(rng, maxkeysize + 1);
2386 generate_random_bytes(rng, (u8 *)vec->key, vec->klen);
2387 vec->setkey_error = crypto_aead_setkey(tfm, vec->key, vec->klen);
2390 generate_random_bytes(rng, (u8 *)vec->iv, ivsize);
2392 /* Tag length: in [0, maxauthsize], but usually choose maxauthsize */
2393 authsize = maxauthsize;
2394 if (prandom_u32_below(rng, 4) == 0)
2395 authsize = prandom_u32_below(rng, maxauthsize + 1);
2396 if (prefer_inauthentic && authsize < MIN_COLLISION_FREE_AUTHSIZE)
2397 authsize = MIN_COLLISION_FREE_AUTHSIZE;
2398 if (WARN_ON(authsize > maxdatasize))
2399 authsize = maxdatasize;
2400 maxdatasize -= authsize;
2401 vec->setauthsize_error = crypto_aead_setauthsize(tfm, authsize);
2403 /* AAD, plaintext, and ciphertext lengths */
2404 total_len = generate_random_length(rng, maxdatasize);
2405 if (prandom_u32_below(rng, 4) == 0)
2408 vec->alen = generate_random_length(rng, total_len);
2409 vec->plen = total_len - vec->alen;
2410 vec->clen = vec->plen + authsize;
2413 * Generate the AAD, plaintext, and ciphertext. Not applicable if the
2414 * key or the authentication tag size couldn't be set.
2417 vec->crypt_error = 0;
2418 if (vec->setkey_error == 0 && vec->setauthsize_error == 0)
2419 generate_aead_message(rng, req, suite, vec, prefer_inauthentic);
2420 snprintf(name, max_namelen,
2421 "\"random: alen=%u plen=%u authsize=%u klen=%u novrfy=%d\"",
2422 vec->alen, vec->plen, authsize, vec->klen, vec->novrfy);
2425 static void try_to_generate_inauthentic_testvec(
2426 struct aead_extra_tests_ctx *ctx)
2430 for (i = 0; i < 10; i++) {
2431 generate_random_aead_testvec(&ctx->rng, ctx->req, &ctx->vec,
2432 &ctx->test_desc->suite.aead,
2433 ctx->maxkeysize, ctx->maxdatasize,
2435 sizeof(ctx->vec_name), true);
2436 if (ctx->vec.novrfy)
2442 * Generate inauthentic test vectors (i.e. ciphertext, AAD pairs that aren't the
2443 * result of an encryption with the key) and verify that decryption fails.
2445 static int test_aead_inauthentic_inputs(struct aead_extra_tests_ctx *ctx)
2450 for (i = 0; i < fuzz_iterations * 8; i++) {
2452 * Since this part of the tests isn't comparing the
2453 * implementation to another, there's no point in testing any
2454 * test vectors other than inauthentic ones (vec.novrfy=1) here.
2456 * If we're having trouble generating such a test vector, e.g.
2457 * if the algorithm keeps rejecting the generated keys, don't
2458 * retry forever; just continue on.
2460 try_to_generate_inauthentic_testvec(ctx);
2461 if (ctx->vec.novrfy) {
2462 generate_random_testvec_config(&ctx->rng, &ctx->cfg,
2464 sizeof(ctx->cfgname));
2465 err = test_aead_vec_cfg(DECRYPT, &ctx->vec,
2466 ctx->vec_name, &ctx->cfg,
2467 ctx->req, ctx->tsgls);
2477 * Test the AEAD algorithm against the corresponding generic implementation, if
2480 static int test_aead_vs_generic_impl(struct aead_extra_tests_ctx *ctx)
2482 struct crypto_aead *tfm = ctx->tfm;
2483 const char *algname = crypto_aead_alg(tfm)->base.cra_name;
2484 const char *driver = crypto_aead_driver_name(tfm);
2485 const char *generic_driver = ctx->test_desc->generic_driver;
2486 char _generic_driver[CRYPTO_MAX_ALG_NAME];
2487 struct crypto_aead *generic_tfm = NULL;
2488 struct aead_request *generic_req = NULL;
2492 if (!generic_driver) { /* Use default naming convention? */
2493 err = build_generic_driver_name(algname, _generic_driver);
2496 generic_driver = _generic_driver;
2499 if (strcmp(generic_driver, driver) == 0) /* Already the generic impl? */
2502 generic_tfm = crypto_alloc_aead(generic_driver, 0, 0);
2503 if (IS_ERR(generic_tfm)) {
2504 err = PTR_ERR(generic_tfm);
2505 if (err == -ENOENT) {
2506 pr_warn("alg: aead: skipping comparison tests for %s because %s is unavailable\n",
2507 driver, generic_driver);
2510 pr_err("alg: aead: error allocating %s (generic impl of %s): %d\n",
2511 generic_driver, algname, err);
2515 generic_req = aead_request_alloc(generic_tfm, GFP_KERNEL);
2521 /* Check the algorithm properties for consistency. */
2523 if (crypto_aead_maxauthsize(tfm) !=
2524 crypto_aead_maxauthsize(generic_tfm)) {
2525 pr_err("alg: aead: maxauthsize for %s (%u) doesn't match generic impl (%u)\n",
2526 driver, crypto_aead_maxauthsize(tfm),
2527 crypto_aead_maxauthsize(generic_tfm));
2532 if (crypto_aead_ivsize(tfm) != crypto_aead_ivsize(generic_tfm)) {
2533 pr_err("alg: aead: ivsize for %s (%u) doesn't match generic impl (%u)\n",
2534 driver, crypto_aead_ivsize(tfm),
2535 crypto_aead_ivsize(generic_tfm));
2540 if (crypto_aead_blocksize(tfm) != crypto_aead_blocksize(generic_tfm)) {
2541 pr_err("alg: aead: blocksize for %s (%u) doesn't match generic impl (%u)\n",
2542 driver, crypto_aead_blocksize(tfm),
2543 crypto_aead_blocksize(generic_tfm));
2549 * Now generate test vectors using the generic implementation, and test
2550 * the other implementation against them.
2552 for (i = 0; i < fuzz_iterations * 8; i++) {
2553 generate_random_aead_testvec(&ctx->rng, generic_req, &ctx->vec,
2554 &ctx->test_desc->suite.aead,
2555 ctx->maxkeysize, ctx->maxdatasize,
2557 sizeof(ctx->vec_name), false);
2558 generate_random_testvec_config(&ctx->rng, &ctx->cfg,
2560 sizeof(ctx->cfgname));
2561 if (!ctx->vec.novrfy) {
2562 err = test_aead_vec_cfg(ENCRYPT, &ctx->vec,
2563 ctx->vec_name, &ctx->cfg,
2564 ctx->req, ctx->tsgls);
2568 if (ctx->vec.crypt_error == 0 || ctx->vec.novrfy) {
2569 err = test_aead_vec_cfg(DECRYPT, &ctx->vec,
2570 ctx->vec_name, &ctx->cfg,
2571 ctx->req, ctx->tsgls);
2579 crypto_free_aead(generic_tfm);
2580 aead_request_free(generic_req);
2584 static int test_aead_extra(const struct alg_test_desc *test_desc,
2585 struct aead_request *req,
2586 struct cipher_test_sglists *tsgls)
2588 struct aead_extra_tests_ctx *ctx;
2595 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
2598 init_rnd_state(&ctx->rng);
2600 ctx->tfm = crypto_aead_reqtfm(req);
2601 ctx->test_desc = test_desc;
2603 ctx->maxdatasize = (2 * PAGE_SIZE) - TESTMGR_POISON_LEN;
2604 ctx->maxkeysize = 0;
2605 for (i = 0; i < test_desc->suite.aead.count; i++)
2606 ctx->maxkeysize = max_t(unsigned int, ctx->maxkeysize,
2607 test_desc->suite.aead.vecs[i].klen);
2609 ctx->vec.key = kmalloc(ctx->maxkeysize, GFP_KERNEL);
2610 ctx->vec.iv = kmalloc(crypto_aead_ivsize(ctx->tfm), GFP_KERNEL);
2611 ctx->vec.assoc = kmalloc(ctx->maxdatasize, GFP_KERNEL);
2612 ctx->vec.ptext = kmalloc(ctx->maxdatasize, GFP_KERNEL);
2613 ctx->vec.ctext = kmalloc(ctx->maxdatasize, GFP_KERNEL);
2614 if (!ctx->vec.key || !ctx->vec.iv || !ctx->vec.assoc ||
2615 !ctx->vec.ptext || !ctx->vec.ctext) {
2620 err = test_aead_vs_generic_impl(ctx);
2624 err = test_aead_inauthentic_inputs(ctx);
2626 kfree(ctx->vec.key);
2628 kfree(ctx->vec.assoc);
2629 kfree(ctx->vec.ptext);
2630 kfree(ctx->vec.ctext);
2634 #else /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
2635 static int test_aead_extra(const struct alg_test_desc *test_desc,
2636 struct aead_request *req,
2637 struct cipher_test_sglists *tsgls)
2641 #endif /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
2643 static int test_aead(int enc, const struct aead_test_suite *suite,
2644 struct aead_request *req,
2645 struct cipher_test_sglists *tsgls)
2650 for (i = 0; i < suite->count; i++) {
2651 err = test_aead_vec(enc, &suite->vecs[i], i, req, tsgls);
2659 static int alg_test_aead(const struct alg_test_desc *desc, const char *driver,
2662 const struct aead_test_suite *suite = &desc->suite.aead;
2663 struct crypto_aead *tfm;
2664 struct aead_request *req = NULL;
2665 struct cipher_test_sglists *tsgls = NULL;
2668 if (suite->count <= 0) {
2669 pr_err("alg: aead: empty test suite for %s\n", driver);
2673 tfm = crypto_alloc_aead(driver, type, mask);
2675 pr_err("alg: aead: failed to allocate transform for %s: %ld\n",
2676 driver, PTR_ERR(tfm));
2677 return PTR_ERR(tfm);
2679 driver = crypto_aead_driver_name(tfm);
2681 req = aead_request_alloc(tfm, GFP_KERNEL);
2683 pr_err("alg: aead: failed to allocate request for %s\n",
2689 tsgls = alloc_cipher_test_sglists();
2691 pr_err("alg: aead: failed to allocate test buffers for %s\n",
2697 err = test_aead(ENCRYPT, suite, req, tsgls);
2701 err = test_aead(DECRYPT, suite, req, tsgls);
2705 err = test_aead_extra(desc, req, tsgls);
2707 free_cipher_test_sglists(tsgls);
2708 aead_request_free(req);
2709 crypto_free_aead(tfm);
2713 static int test_cipher(struct crypto_cipher *tfm, int enc,
2714 const struct cipher_testvec *template,
2715 unsigned int tcount)
2717 const char *algo = crypto_tfm_alg_driver_name(crypto_cipher_tfm(tfm));
2718 unsigned int i, j, k;
2721 const char *input, *result;
2723 char *xbuf[XBUFSIZE];
2726 if (testmgr_alloc_buf(xbuf))
2735 for (i = 0; i < tcount; i++) {
2737 if (fips_enabled && template[i].fips_skip)
2740 input = enc ? template[i].ptext : template[i].ctext;
2741 result = enc ? template[i].ctext : template[i].ptext;
2745 if (WARN_ON(template[i].len > PAGE_SIZE))
2749 memcpy(data, input, template[i].len);
2751 crypto_cipher_clear_flags(tfm, ~0);
2753 crypto_cipher_set_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
2755 ret = crypto_cipher_setkey(tfm, template[i].key,
2758 if (ret == template[i].setkey_error)
2760 pr_err("alg: cipher: %s setkey failed on test vector %u; expected_error=%d, actual_error=%d, flags=%#x\n",
2761 algo, j, template[i].setkey_error, ret,
2762 crypto_cipher_get_flags(tfm));
2765 if (template[i].setkey_error) {
2766 pr_err("alg: cipher: %s setkey unexpectedly succeeded on test vector %u; expected_error=%d\n",
2767 algo, j, template[i].setkey_error);
2772 for (k = 0; k < template[i].len;
2773 k += crypto_cipher_blocksize(tfm)) {
2775 crypto_cipher_encrypt_one(tfm, data + k,
2778 crypto_cipher_decrypt_one(tfm, data + k,
2783 if (memcmp(q, result, template[i].len)) {
2784 printk(KERN_ERR "alg: cipher: Test %d failed "
2785 "on %s for %s\n", j, e, algo);
2786 hexdump(q, template[i].len);
2795 testmgr_free_buf(xbuf);
2800 static int test_skcipher_vec_cfg(int enc, const struct cipher_testvec *vec,
2801 const char *vec_name,
2802 const struct testvec_config *cfg,
2803 struct skcipher_request *req,
2804 struct cipher_test_sglists *tsgls)
2806 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
2807 const unsigned int alignmask = crypto_skcipher_alignmask(tfm);
2808 const unsigned int ivsize = crypto_skcipher_ivsize(tfm);
2809 const char *driver = crypto_skcipher_driver_name(tfm);
2810 const u32 req_flags = CRYPTO_TFM_REQ_MAY_BACKLOG | cfg->req_flags;
2811 const char *op = enc ? "encryption" : "decryption";
2812 DECLARE_CRYPTO_WAIT(wait);
2813 u8 _iv[3 * (MAX_ALGAPI_ALIGNMASK + 1) + MAX_IVLEN];
2814 u8 *iv = PTR_ALIGN(&_iv[0], 2 * (MAX_ALGAPI_ALIGNMASK + 1)) +
2816 (cfg->iv_offset_relative_to_alignmask ? alignmask : 0);
2822 crypto_skcipher_set_flags(tfm, CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
2824 crypto_skcipher_clear_flags(tfm,
2825 CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
2826 err = do_setkey(crypto_skcipher_setkey, tfm, vec->key, vec->klen,
2829 if (err == vec->setkey_error)
2831 pr_err("alg: skcipher: %s setkey failed on test vector %s; expected_error=%d, actual_error=%d, flags=%#x\n",
2832 driver, vec_name, vec->setkey_error, err,
2833 crypto_skcipher_get_flags(tfm));
2836 if (vec->setkey_error) {
2837 pr_err("alg: skcipher: %s setkey unexpectedly succeeded on test vector %s; expected_error=%d\n",
2838 driver, vec_name, vec->setkey_error);
2842 /* The IV must be copied to a buffer, as the algorithm may modify it */
2844 if (WARN_ON(ivsize > MAX_IVLEN))
2846 if (vec->generates_iv && !enc)
2847 memcpy(iv, vec->iv_out, ivsize);
2849 memcpy(iv, vec->iv, ivsize);
2851 memset(iv, 0, ivsize);
2853 if (vec->generates_iv) {
2854 pr_err("alg: skcipher: %s has ivsize=0 but test vector %s generates IV!\n",
2861 /* Build the src/dst scatterlists */
2862 input.iov_base = enc ? (void *)vec->ptext : (void *)vec->ctext;
2863 input.iov_len = vec->len;
2864 err = build_cipher_test_sglists(tsgls, cfg, alignmask,
2865 vec->len, vec->len, &input, 1);
2867 pr_err("alg: skcipher: %s %s: error preparing scatterlists for test vector %s, cfg=\"%s\"\n",
2868 driver, op, vec_name, cfg->name);
2872 /* Do the actual encryption or decryption */
2873 testmgr_poison(req->__ctx, crypto_skcipher_reqsize(tfm));
2874 skcipher_request_set_callback(req, req_flags, crypto_req_done, &wait);
2875 skcipher_request_set_crypt(req, tsgls->src.sgl_ptr, tsgls->dst.sgl_ptr,
2878 crypto_disable_simd_for_test();
2879 err = enc ? crypto_skcipher_encrypt(req) : crypto_skcipher_decrypt(req);
2881 crypto_reenable_simd_for_test();
2882 err = crypto_wait_req(err, &wait);
2884 /* Check that the algorithm didn't overwrite things it shouldn't have */
2885 if (req->cryptlen != vec->len ||
2887 req->src != tsgls->src.sgl_ptr ||
2888 req->dst != tsgls->dst.sgl_ptr ||
2889 crypto_skcipher_reqtfm(req) != tfm ||
2890 req->base.complete != crypto_req_done ||
2891 req->base.flags != req_flags ||
2892 req->base.data != &wait) {
2893 pr_err("alg: skcipher: %s %s corrupted request struct on test vector %s, cfg=\"%s\"\n",
2894 driver, op, vec_name, cfg->name);
2895 if (req->cryptlen != vec->len)
2896 pr_err("alg: skcipher: changed 'req->cryptlen'\n");
2898 pr_err("alg: skcipher: changed 'req->iv'\n");
2899 if (req->src != tsgls->src.sgl_ptr)
2900 pr_err("alg: skcipher: changed 'req->src'\n");
2901 if (req->dst != tsgls->dst.sgl_ptr)
2902 pr_err("alg: skcipher: changed 'req->dst'\n");
2903 if (crypto_skcipher_reqtfm(req) != tfm)
2904 pr_err("alg: skcipher: changed 'req->base.tfm'\n");
2905 if (req->base.complete != crypto_req_done)
2906 pr_err("alg: skcipher: changed 'req->base.complete'\n");
2907 if (req->base.flags != req_flags)
2908 pr_err("alg: skcipher: changed 'req->base.flags'\n");
2909 if (req->base.data != &wait)
2910 pr_err("alg: skcipher: changed 'req->base.data'\n");
2913 if (is_test_sglist_corrupted(&tsgls->src)) {
2914 pr_err("alg: skcipher: %s %s corrupted src sgl on test vector %s, cfg=\"%s\"\n",
2915 driver, op, vec_name, cfg->name);
2918 if (tsgls->dst.sgl_ptr != tsgls->src.sgl &&
2919 is_test_sglist_corrupted(&tsgls->dst)) {
2920 pr_err("alg: skcipher: %s %s corrupted dst sgl on test vector %s, cfg=\"%s\"\n",
2921 driver, op, vec_name, cfg->name);
2925 /* Check for success or failure */
2927 if (err == vec->crypt_error)
2929 pr_err("alg: skcipher: %s %s failed on test vector %s; expected_error=%d, actual_error=%d, cfg=\"%s\"\n",
2930 driver, op, vec_name, vec->crypt_error, err, cfg->name);
2933 if (vec->crypt_error) {
2934 pr_err("alg: skcipher: %s %s unexpectedly succeeded on test vector %s; expected_error=%d, cfg=\"%s\"\n",
2935 driver, op, vec_name, vec->crypt_error, cfg->name);
2939 /* Check for the correct output (ciphertext or plaintext) */
2940 err = verify_correct_output(&tsgls->dst, enc ? vec->ctext : vec->ptext,
2942 if (err == -EOVERFLOW) {
2943 pr_err("alg: skcipher: %s %s overran dst buffer on test vector %s, cfg=\"%s\"\n",
2944 driver, op, vec_name, cfg->name);
2948 pr_err("alg: skcipher: %s %s test failed (wrong result) on test vector %s, cfg=\"%s\"\n",
2949 driver, op, vec_name, cfg->name);
2953 /* If applicable, check that the algorithm generated the correct IV */
2954 if (vec->iv_out && memcmp(iv, vec->iv_out, ivsize) != 0) {
2955 pr_err("alg: skcipher: %s %s test failed (wrong output IV) on test vector %s, cfg=\"%s\"\n",
2956 driver, op, vec_name, cfg->name);
2957 hexdump(iv, ivsize);
2964 static int test_skcipher_vec(int enc, const struct cipher_testvec *vec,
2965 unsigned int vec_num,
2966 struct skcipher_request *req,
2967 struct cipher_test_sglists *tsgls)
2973 if (fips_enabled && vec->fips_skip)
2976 sprintf(vec_name, "%u", vec_num);
2978 for (i = 0; i < ARRAY_SIZE(default_cipher_testvec_configs); i++) {
2979 err = test_skcipher_vec_cfg(enc, vec, vec_name,
2980 &default_cipher_testvec_configs[i],
2986 #ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
2987 if (!noextratests) {
2988 struct rnd_state rng;
2989 struct testvec_config cfg;
2990 char cfgname[TESTVEC_CONFIG_NAMELEN];
2992 init_rnd_state(&rng);
2994 for (i = 0; i < fuzz_iterations; i++) {
2995 generate_random_testvec_config(&rng, &cfg, cfgname,
2997 err = test_skcipher_vec_cfg(enc, vec, vec_name,
3008 #ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
3010 * Generate a symmetric cipher test vector from the given implementation.
3011 * Assumes the buffers in 'vec' were already allocated.
3013 static void generate_random_cipher_testvec(struct rnd_state *rng,
3014 struct skcipher_request *req,
3015 struct cipher_testvec *vec,
3016 unsigned int maxdatasize,
3017 char *name, size_t max_namelen)
3019 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
3020 const unsigned int maxkeysize = crypto_skcipher_max_keysize(tfm);
3021 const unsigned int ivsize = crypto_skcipher_ivsize(tfm);
3022 struct scatterlist src, dst;
3024 DECLARE_CRYPTO_WAIT(wait);
3026 /* Key: length in [0, maxkeysize], but usually choose maxkeysize */
3027 vec->klen = maxkeysize;
3028 if (prandom_u32_below(rng, 4) == 0)
3029 vec->klen = prandom_u32_below(rng, maxkeysize + 1);
3030 generate_random_bytes(rng, (u8 *)vec->key, vec->klen);
3031 vec->setkey_error = crypto_skcipher_setkey(tfm, vec->key, vec->klen);
3034 generate_random_bytes(rng, (u8 *)vec->iv, ivsize);
3037 vec->len = generate_random_length(rng, maxdatasize);
3038 generate_random_bytes(rng, (u8 *)vec->ptext, vec->len);
3040 /* If the key couldn't be set, no need to continue to encrypt. */
3041 if (vec->setkey_error)
3045 sg_init_one(&src, vec->ptext, vec->len);
3046 sg_init_one(&dst, vec->ctext, vec->len);
3047 memcpy(iv, vec->iv, ivsize);
3048 skcipher_request_set_callback(req, 0, crypto_req_done, &wait);
3049 skcipher_request_set_crypt(req, &src, &dst, vec->len, iv);
3050 vec->crypt_error = crypto_wait_req(crypto_skcipher_encrypt(req), &wait);
3051 if (vec->crypt_error != 0) {
3053 * The only acceptable error here is for an invalid length, so
3054 * skcipher decryption should fail with the same error too.
3055 * We'll test for this. But to keep the API usage well-defined,
3056 * explicitly initialize the ciphertext buffer too.
3058 memset((u8 *)vec->ctext, 0, vec->len);
3061 snprintf(name, max_namelen, "\"random: len=%u klen=%u\"",
3062 vec->len, vec->klen);
3066 * Test the skcipher algorithm represented by @req against the corresponding
3067 * generic implementation, if one is available.
3069 static int test_skcipher_vs_generic_impl(const char *generic_driver,
3070 struct skcipher_request *req,
3071 struct cipher_test_sglists *tsgls)
3073 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
3074 const unsigned int maxkeysize = crypto_skcipher_max_keysize(tfm);
3075 const unsigned int ivsize = crypto_skcipher_ivsize(tfm);
3076 const unsigned int blocksize = crypto_skcipher_blocksize(tfm);
3077 const unsigned int maxdatasize = (2 * PAGE_SIZE) - TESTMGR_POISON_LEN;
3078 const char *algname = crypto_skcipher_alg(tfm)->base.cra_name;
3079 const char *driver = crypto_skcipher_driver_name(tfm);
3080 struct rnd_state rng;
3081 char _generic_driver[CRYPTO_MAX_ALG_NAME];
3082 struct crypto_skcipher *generic_tfm = NULL;
3083 struct skcipher_request *generic_req = NULL;
3085 struct cipher_testvec vec = { 0 };
3087 struct testvec_config *cfg;
3088 char cfgname[TESTVEC_CONFIG_NAMELEN];
3094 /* Keywrap isn't supported here yet as it handles its IV differently. */
3095 if (strncmp(algname, "kw(", 3) == 0)
3098 init_rnd_state(&rng);
3100 if (!generic_driver) { /* Use default naming convention? */
3101 err = build_generic_driver_name(algname, _generic_driver);
3104 generic_driver = _generic_driver;
3107 if (strcmp(generic_driver, driver) == 0) /* Already the generic impl? */
3110 generic_tfm = crypto_alloc_skcipher(generic_driver, 0, 0);
3111 if (IS_ERR(generic_tfm)) {
3112 err = PTR_ERR(generic_tfm);
3113 if (err == -ENOENT) {
3114 pr_warn("alg: skcipher: skipping comparison tests for %s because %s is unavailable\n",
3115 driver, generic_driver);
3118 pr_err("alg: skcipher: error allocating %s (generic impl of %s): %d\n",
3119 generic_driver, algname, err);
3123 cfg = kzalloc(sizeof(*cfg), GFP_KERNEL);
3129 generic_req = skcipher_request_alloc(generic_tfm, GFP_KERNEL);
3135 /* Check the algorithm properties for consistency. */
3137 if (crypto_skcipher_min_keysize(tfm) !=
3138 crypto_skcipher_min_keysize(generic_tfm)) {
3139 pr_err("alg: skcipher: min keysize for %s (%u) doesn't match generic impl (%u)\n",
3140 driver, crypto_skcipher_min_keysize(tfm),
3141 crypto_skcipher_min_keysize(generic_tfm));
3146 if (maxkeysize != crypto_skcipher_max_keysize(generic_tfm)) {
3147 pr_err("alg: skcipher: max keysize for %s (%u) doesn't match generic impl (%u)\n",
3149 crypto_skcipher_max_keysize(generic_tfm));
3154 if (ivsize != crypto_skcipher_ivsize(generic_tfm)) {
3155 pr_err("alg: skcipher: ivsize for %s (%u) doesn't match generic impl (%u)\n",
3156 driver, ivsize, crypto_skcipher_ivsize(generic_tfm));
3161 if (blocksize != crypto_skcipher_blocksize(generic_tfm)) {
3162 pr_err("alg: skcipher: blocksize for %s (%u) doesn't match generic impl (%u)\n",
3164 crypto_skcipher_blocksize(generic_tfm));
3170 * Now generate test vectors using the generic implementation, and test
3171 * the other implementation against them.
3174 vec.key = kmalloc(maxkeysize, GFP_KERNEL);
3175 vec.iv = kmalloc(ivsize, GFP_KERNEL);
3176 vec.ptext = kmalloc(maxdatasize, GFP_KERNEL);
3177 vec.ctext = kmalloc(maxdatasize, GFP_KERNEL);
3178 if (!vec.key || !vec.iv || !vec.ptext || !vec.ctext) {
3183 for (i = 0; i < fuzz_iterations * 8; i++) {
3184 generate_random_cipher_testvec(&rng, generic_req, &vec,
3186 vec_name, sizeof(vec_name));
3187 generate_random_testvec_config(&rng, cfg, cfgname,
3190 err = test_skcipher_vec_cfg(ENCRYPT, &vec, vec_name,
3194 err = test_skcipher_vec_cfg(DECRYPT, &vec, vec_name,
3207 crypto_free_skcipher(generic_tfm);
3208 skcipher_request_free(generic_req);
3211 #else /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
3212 static int test_skcipher_vs_generic_impl(const char *generic_driver,
3213 struct skcipher_request *req,
3214 struct cipher_test_sglists *tsgls)
3218 #endif /* !CONFIG_CRYPTO_MANAGER_EXTRA_TESTS */
3220 static int test_skcipher(int enc, const struct cipher_test_suite *suite,
3221 struct skcipher_request *req,
3222 struct cipher_test_sglists *tsgls)
3227 for (i = 0; i < suite->count; i++) {
3228 err = test_skcipher_vec(enc, &suite->vecs[i], i, req, tsgls);
3236 static int alg_test_skcipher(const struct alg_test_desc *desc,
3237 const char *driver, u32 type, u32 mask)
3239 const struct cipher_test_suite *suite = &desc->suite.cipher;
3240 struct crypto_skcipher *tfm;
3241 struct skcipher_request *req = NULL;
3242 struct cipher_test_sglists *tsgls = NULL;
3245 if (suite->count <= 0) {
3246 pr_err("alg: skcipher: empty test suite for %s\n", driver);
3250 tfm = crypto_alloc_skcipher(driver, type, mask);
3252 pr_err("alg: skcipher: failed to allocate transform for %s: %ld\n",
3253 driver, PTR_ERR(tfm));
3254 return PTR_ERR(tfm);
3256 driver = crypto_skcipher_driver_name(tfm);
3258 req = skcipher_request_alloc(tfm, GFP_KERNEL);
3260 pr_err("alg: skcipher: failed to allocate request for %s\n",
3266 tsgls = alloc_cipher_test_sglists();
3268 pr_err("alg: skcipher: failed to allocate test buffers for %s\n",
3274 err = test_skcipher(ENCRYPT, suite, req, tsgls);
3278 err = test_skcipher(DECRYPT, suite, req, tsgls);
3282 err = test_skcipher_vs_generic_impl(desc->generic_driver, req, tsgls);
3284 free_cipher_test_sglists(tsgls);
3285 skcipher_request_free(req);
3286 crypto_free_skcipher(tfm);
3290 static int test_comp(struct crypto_comp *tfm,
3291 const struct comp_testvec *ctemplate,
3292 const struct comp_testvec *dtemplate,
3293 int ctcount, int dtcount)
3295 const char *algo = crypto_tfm_alg_driver_name(crypto_comp_tfm(tfm));
3296 char *output, *decomp_output;
3300 output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
3304 decomp_output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
3305 if (!decomp_output) {
3310 for (i = 0; i < ctcount; i++) {
3312 unsigned int dlen = COMP_BUF_SIZE;
3314 memset(output, 0, COMP_BUF_SIZE);
3315 memset(decomp_output, 0, COMP_BUF_SIZE);
3317 ilen = ctemplate[i].inlen;
3318 ret = crypto_comp_compress(tfm, ctemplate[i].input,
3319 ilen, output, &dlen);
3321 printk(KERN_ERR "alg: comp: compression failed "
3322 "on test %d for %s: ret=%d\n", i + 1, algo,
3328 dlen = COMP_BUF_SIZE;
3329 ret = crypto_comp_decompress(tfm, output,
3330 ilen, decomp_output, &dlen);
3332 pr_err("alg: comp: compression failed: decompress: on test %d for %s failed: ret=%d\n",
3337 if (dlen != ctemplate[i].inlen) {
3338 printk(KERN_ERR "alg: comp: Compression test %d "
3339 "failed for %s: output len = %d\n", i + 1, algo,
3345 if (memcmp(decomp_output, ctemplate[i].input,
3346 ctemplate[i].inlen)) {
3347 pr_err("alg: comp: compression failed: output differs: on test %d for %s\n",
3349 hexdump(decomp_output, dlen);
3355 for (i = 0; i < dtcount; i++) {
3357 unsigned int dlen = COMP_BUF_SIZE;
3359 memset(decomp_output, 0, COMP_BUF_SIZE);
3361 ilen = dtemplate[i].inlen;
3362 ret = crypto_comp_decompress(tfm, dtemplate[i].input,
3363 ilen, decomp_output, &dlen);
3365 printk(KERN_ERR "alg: comp: decompression failed "
3366 "on test %d for %s: ret=%d\n", i + 1, algo,
3371 if (dlen != dtemplate[i].outlen) {
3372 printk(KERN_ERR "alg: comp: Decompression test %d "
3373 "failed for %s: output len = %d\n", i + 1, algo,
3379 if (memcmp(decomp_output, dtemplate[i].output, dlen)) {
3380 printk(KERN_ERR "alg: comp: Decompression test %d "
3381 "failed for %s\n", i + 1, algo);
3382 hexdump(decomp_output, dlen);
3391 kfree(decomp_output);
3396 static int test_acomp(struct crypto_acomp *tfm,
3397 const struct comp_testvec *ctemplate,
3398 const struct comp_testvec *dtemplate,
3399 int ctcount, int dtcount)
3401 const char *algo = crypto_tfm_alg_driver_name(crypto_acomp_tfm(tfm));
3403 char *output, *decomp_out;
3405 struct scatterlist src, dst;
3406 struct acomp_req *req;
3407 struct crypto_wait wait;
3409 output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
3413 decomp_out = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
3419 for (i = 0; i < ctcount; i++) {
3420 unsigned int dlen = COMP_BUF_SIZE;
3421 int ilen = ctemplate[i].inlen;
3424 input_vec = kmemdup(ctemplate[i].input, ilen, GFP_KERNEL);
3430 memset(output, 0, dlen);
3431 crypto_init_wait(&wait);
3432 sg_init_one(&src, input_vec, ilen);
3433 sg_init_one(&dst, output, dlen);
3435 req = acomp_request_alloc(tfm);
3437 pr_err("alg: acomp: request alloc failed for %s\n",
3444 acomp_request_set_params(req, &src, &dst, ilen, dlen);
3445 acomp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
3446 crypto_req_done, &wait);
3448 ret = crypto_wait_req(crypto_acomp_compress(req), &wait);
3450 pr_err("alg: acomp: compression failed on test %d for %s: ret=%d\n",
3453 acomp_request_free(req);
3458 dlen = COMP_BUF_SIZE;
3459 sg_init_one(&src, output, ilen);
3460 sg_init_one(&dst, decomp_out, dlen);
3461 crypto_init_wait(&wait);
3462 acomp_request_set_params(req, &src, &dst, ilen, dlen);
3464 ret = crypto_wait_req(crypto_acomp_decompress(req), &wait);
3466 pr_err("alg: acomp: compression failed on test %d for %s: ret=%d\n",
3469 acomp_request_free(req);
3473 if (req->dlen != ctemplate[i].inlen) {
3474 pr_err("alg: acomp: Compression test %d failed for %s: output len = %d\n",
3475 i + 1, algo, req->dlen);
3478 acomp_request_free(req);
3482 if (memcmp(input_vec, decomp_out, req->dlen)) {
3483 pr_err("alg: acomp: Compression test %d failed for %s\n",
3485 hexdump(output, req->dlen);
3488 acomp_request_free(req);
3492 #ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
3493 crypto_init_wait(&wait);
3494 sg_init_one(&src, input_vec, ilen);
3495 acomp_request_set_params(req, &src, NULL, ilen, 0);
3497 ret = crypto_wait_req(crypto_acomp_compress(req), &wait);
3499 pr_err("alg: acomp: compression failed on NULL dst buffer test %d for %s: ret=%d\n",
3502 acomp_request_free(req);
3508 acomp_request_free(req);
3511 for (i = 0; i < dtcount; i++) {
3512 unsigned int dlen = COMP_BUF_SIZE;
3513 int ilen = dtemplate[i].inlen;
3516 input_vec = kmemdup(dtemplate[i].input, ilen, GFP_KERNEL);
3522 memset(output, 0, dlen);
3523 crypto_init_wait(&wait);
3524 sg_init_one(&src, input_vec, ilen);
3525 sg_init_one(&dst, output, dlen);
3527 req = acomp_request_alloc(tfm);
3529 pr_err("alg: acomp: request alloc failed for %s\n",
3536 acomp_request_set_params(req, &src, &dst, ilen, dlen);
3537 acomp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
3538 crypto_req_done, &wait);
3540 ret = crypto_wait_req(crypto_acomp_decompress(req), &wait);
3542 pr_err("alg: acomp: decompression failed on test %d for %s: ret=%d\n",
3545 acomp_request_free(req);
3549 if (req->dlen != dtemplate[i].outlen) {
3550 pr_err("alg: acomp: Decompression test %d failed for %s: output len = %d\n",
3551 i + 1, algo, req->dlen);
3554 acomp_request_free(req);
3558 if (memcmp(output, dtemplate[i].output, req->dlen)) {
3559 pr_err("alg: acomp: Decompression test %d failed for %s\n",
3561 hexdump(output, req->dlen);
3564 acomp_request_free(req);
3568 #ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
3569 crypto_init_wait(&wait);
3570 acomp_request_set_params(req, &src, NULL, ilen, 0);
3572 ret = crypto_wait_req(crypto_acomp_decompress(req), &wait);
3574 pr_err("alg: acomp: decompression failed on NULL dst buffer test %d for %s: ret=%d\n",
3577 acomp_request_free(req);
3583 acomp_request_free(req);
3594 static int test_cprng(struct crypto_rng *tfm,
3595 const struct cprng_testvec *template,
3596 unsigned int tcount)
3598 const char *algo = crypto_tfm_alg_driver_name(crypto_rng_tfm(tfm));
3599 int err = 0, i, j, seedsize;
3603 seedsize = crypto_rng_seedsize(tfm);
3605 seed = kmalloc(seedsize, GFP_KERNEL);
3607 printk(KERN_ERR "alg: cprng: Failed to allocate seed space "
3612 for (i = 0; i < tcount; i++) {
3613 memset(result, 0, 32);
3615 memcpy(seed, template[i].v, template[i].vlen);
3616 memcpy(seed + template[i].vlen, template[i].key,
3618 memcpy(seed + template[i].vlen + template[i].klen,
3619 template[i].dt, template[i].dtlen);
3621 err = crypto_rng_reset(tfm, seed, seedsize);
3623 printk(KERN_ERR "alg: cprng: Failed to reset rng "
3628 for (j = 0; j < template[i].loops; j++) {
3629 err = crypto_rng_get_bytes(tfm, result,
3632 printk(KERN_ERR "alg: cprng: Failed to obtain "
3633 "the correct amount of random data for "
3634 "%s (requested %d)\n", algo,
3640 err = memcmp(result, template[i].result,
3643 printk(KERN_ERR "alg: cprng: Test %d failed for %s\n",
3645 hexdump(result, template[i].rlen);
3656 static int alg_test_cipher(const struct alg_test_desc *desc,
3657 const char *driver, u32 type, u32 mask)
3659 const struct cipher_test_suite *suite = &desc->suite.cipher;
3660 struct crypto_cipher *tfm;
3663 tfm = crypto_alloc_cipher(driver, type, mask);
3665 printk(KERN_ERR "alg: cipher: Failed to load transform for "
3666 "%s: %ld\n", driver, PTR_ERR(tfm));
3667 return PTR_ERR(tfm);
3670 err = test_cipher(tfm, ENCRYPT, suite->vecs, suite->count);
3672 err = test_cipher(tfm, DECRYPT, suite->vecs, suite->count);
3674 crypto_free_cipher(tfm);
3678 static int alg_test_comp(const struct alg_test_desc *desc, const char *driver,
3681 struct crypto_comp *comp;
3682 struct crypto_acomp *acomp;
3684 u32 algo_type = type & CRYPTO_ALG_TYPE_ACOMPRESS_MASK;
3686 if (algo_type == CRYPTO_ALG_TYPE_ACOMPRESS) {
3687 acomp = crypto_alloc_acomp(driver, type, mask);
3688 if (IS_ERR(acomp)) {
3689 pr_err("alg: acomp: Failed to load transform for %s: %ld\n",
3690 driver, PTR_ERR(acomp));
3691 return PTR_ERR(acomp);
3693 err = test_acomp(acomp, desc->suite.comp.comp.vecs,
3694 desc->suite.comp.decomp.vecs,
3695 desc->suite.comp.comp.count,
3696 desc->suite.comp.decomp.count);
3697 crypto_free_acomp(acomp);
3699 comp = crypto_alloc_comp(driver, type, mask);
3701 pr_err("alg: comp: Failed to load transform for %s: %ld\n",
3702 driver, PTR_ERR(comp));
3703 return PTR_ERR(comp);
3706 err = test_comp(comp, desc->suite.comp.comp.vecs,
3707 desc->suite.comp.decomp.vecs,
3708 desc->suite.comp.comp.count,
3709 desc->suite.comp.decomp.count);
3711 crypto_free_comp(comp);
3716 static int alg_test_crc32c(const struct alg_test_desc *desc,
3717 const char *driver, u32 type, u32 mask)
3719 struct crypto_shash *tfm;
3723 err = alg_test_hash(desc, driver, type, mask);
3727 tfm = crypto_alloc_shash(driver, type, mask);
3729 if (PTR_ERR(tfm) == -ENOENT) {
3731 * This crc32c implementation is only available through
3732 * ahash API, not the shash API, so the remaining part
3733 * of the test is not applicable to it.
3737 printk(KERN_ERR "alg: crc32c: Failed to load transform for %s: "
3738 "%ld\n", driver, PTR_ERR(tfm));
3739 return PTR_ERR(tfm);
3741 driver = crypto_shash_driver_name(tfm);
3744 SHASH_DESC_ON_STACK(shash, tfm);
3745 u32 *ctx = (u32 *)shash_desc_ctx(shash);
3750 err = crypto_shash_final(shash, (u8 *)&val);
3752 printk(KERN_ERR "alg: crc32c: Operation failed for "
3753 "%s: %d\n", driver, err);
3757 if (val != cpu_to_le32(~420553207)) {
3758 pr_err("alg: crc32c: Test failed for %s: %u\n",
3759 driver, le32_to_cpu(val));
3764 crypto_free_shash(tfm);
3769 static int alg_test_cprng(const struct alg_test_desc *desc, const char *driver,
3772 struct crypto_rng *rng;
3775 rng = crypto_alloc_rng(driver, type, mask);
3777 printk(KERN_ERR "alg: cprng: Failed to load transform for %s: "
3778 "%ld\n", driver, PTR_ERR(rng));
3779 return PTR_ERR(rng);
3782 err = test_cprng(rng, desc->suite.cprng.vecs, desc->suite.cprng.count);
3784 crypto_free_rng(rng);
3790 static int drbg_cavs_test(const struct drbg_testvec *test, int pr,
3791 const char *driver, u32 type, u32 mask)
3794 struct crypto_rng *drng;
3795 struct drbg_test_data test_data;
3796 struct drbg_string addtl, pers, testentropy;
3797 unsigned char *buf = kzalloc(test->expectedlen, GFP_KERNEL);
3802 drng = crypto_alloc_rng(driver, type, mask);
3804 printk(KERN_ERR "alg: drbg: could not allocate DRNG handle for "
3806 kfree_sensitive(buf);
3810 test_data.testentropy = &testentropy;
3811 drbg_string_fill(&testentropy, test->entropy, test->entropylen);
3812 drbg_string_fill(&pers, test->pers, test->perslen);
3813 ret = crypto_drbg_reset_test(drng, &pers, &test_data);
3815 printk(KERN_ERR "alg: drbg: Failed to reset rng\n");
3819 drbg_string_fill(&addtl, test->addtla, test->addtllen);
3821 drbg_string_fill(&testentropy, test->entpra, test->entprlen);
3822 ret = crypto_drbg_get_bytes_addtl_test(drng,
3823 buf, test->expectedlen, &addtl, &test_data);
3825 ret = crypto_drbg_get_bytes_addtl(drng,
3826 buf, test->expectedlen, &addtl);
3829 printk(KERN_ERR "alg: drbg: could not obtain random data for "
3830 "driver %s\n", driver);
3834 drbg_string_fill(&addtl, test->addtlb, test->addtllen);
3836 drbg_string_fill(&testentropy, test->entprb, test->entprlen);
3837 ret = crypto_drbg_get_bytes_addtl_test(drng,
3838 buf, test->expectedlen, &addtl, &test_data);
3840 ret = crypto_drbg_get_bytes_addtl(drng,
3841 buf, test->expectedlen, &addtl);
3844 printk(KERN_ERR "alg: drbg: could not obtain random data for "
3845 "driver %s\n", driver);
3849 ret = memcmp(test->expected, buf, test->expectedlen);
3852 crypto_free_rng(drng);
3853 kfree_sensitive(buf);
3858 static int alg_test_drbg(const struct alg_test_desc *desc, const char *driver,
3864 const struct drbg_testvec *template = desc->suite.drbg.vecs;
3865 unsigned int tcount = desc->suite.drbg.count;
3867 if (0 == memcmp(driver, "drbg_pr_", 8))
3870 for (i = 0; i < tcount; i++) {
3871 err = drbg_cavs_test(&template[i], pr, driver, type, mask);
3873 printk(KERN_ERR "alg: drbg: Test %d failed for %s\n",
3883 static int do_test_kpp(struct crypto_kpp *tfm, const struct kpp_testvec *vec,
3886 struct kpp_request *req;
3887 void *input_buf = NULL;
3888 void *output_buf = NULL;
3889 void *a_public = NULL;
3891 void *shared_secret = NULL;
3892 struct crypto_wait wait;
3893 unsigned int out_len_max;
3895 struct scatterlist src, dst;
3897 req = kpp_request_alloc(tfm, GFP_KERNEL);
3901 crypto_init_wait(&wait);
3903 err = crypto_kpp_set_secret(tfm, vec->secret, vec->secret_size);
3907 out_len_max = crypto_kpp_maxsize(tfm);
3908 output_buf = kzalloc(out_len_max, GFP_KERNEL);
3914 /* Use appropriate parameter as base */
3915 kpp_request_set_input(req, NULL, 0);
3916 sg_init_one(&dst, output_buf, out_len_max);
3917 kpp_request_set_output(req, &dst, out_len_max);
3918 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
3919 crypto_req_done, &wait);
3921 /* Compute party A's public key */
3922 err = crypto_wait_req(crypto_kpp_generate_public_key(req), &wait);
3924 pr_err("alg: %s: Party A: generate public key test failed. err %d\n",
3930 /* Save party A's public key */
3931 a_public = kmemdup(sg_virt(req->dst), out_len_max, GFP_KERNEL);
3937 /* Verify calculated public key */
3938 if (memcmp(vec->expected_a_public, sg_virt(req->dst),
3939 vec->expected_a_public_size)) {
3940 pr_err("alg: %s: Party A: generate public key test failed. Invalid output\n",
3947 /* Calculate shared secret key by using counter part (b) public key. */
3948 input_buf = kmemdup(vec->b_public, vec->b_public_size, GFP_KERNEL);
3954 sg_init_one(&src, input_buf, vec->b_public_size);
3955 sg_init_one(&dst, output_buf, out_len_max);
3956 kpp_request_set_input(req, &src, vec->b_public_size);
3957 kpp_request_set_output(req, &dst, out_len_max);
3958 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
3959 crypto_req_done, &wait);
3960 err = crypto_wait_req(crypto_kpp_compute_shared_secret(req), &wait);
3962 pr_err("alg: %s: Party A: compute shared secret test failed. err %d\n",
3968 /* Save the shared secret obtained by party A */
3969 a_ss = kmemdup(sg_virt(req->dst), vec->expected_ss_size, GFP_KERNEL);
3976 * Calculate party B's shared secret by using party A's
3979 err = crypto_kpp_set_secret(tfm, vec->b_secret,
3980 vec->b_secret_size);
3984 sg_init_one(&src, a_public, vec->expected_a_public_size);
3985 sg_init_one(&dst, output_buf, out_len_max);
3986 kpp_request_set_input(req, &src, vec->expected_a_public_size);
3987 kpp_request_set_output(req, &dst, out_len_max);
3988 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
3989 crypto_req_done, &wait);
3990 err = crypto_wait_req(crypto_kpp_compute_shared_secret(req),
3993 pr_err("alg: %s: Party B: compute shared secret failed. err %d\n",
3998 shared_secret = a_ss;
4000 shared_secret = (void *)vec->expected_ss;
4004 * verify shared secret from which the user will derive
4005 * secret key by executing whatever hash it has chosen
4007 if (memcmp(shared_secret, sg_virt(req->dst),
4008 vec->expected_ss_size)) {
4009 pr_err("alg: %s: compute shared secret test failed. Invalid output\n",
4021 kpp_request_free(req);
4025 static int test_kpp(struct crypto_kpp *tfm, const char *alg,
4026 const struct kpp_testvec *vecs, unsigned int tcount)
4030 for (i = 0; i < tcount; i++) {
4031 ret = do_test_kpp(tfm, vecs++, alg);
4033 pr_err("alg: %s: test failed on vector %d, err=%d\n",
4041 static int alg_test_kpp(const struct alg_test_desc *desc, const char *driver,
4044 struct crypto_kpp *tfm;
4047 tfm = crypto_alloc_kpp(driver, type, mask);
4049 pr_err("alg: kpp: Failed to load tfm for %s: %ld\n",
4050 driver, PTR_ERR(tfm));
4051 return PTR_ERR(tfm);
4053 if (desc->suite.kpp.vecs)
4054 err = test_kpp(tfm, desc->alg, desc->suite.kpp.vecs,
4055 desc->suite.kpp.count);
4057 crypto_free_kpp(tfm);
4061 static u8 *test_pack_u32(u8 *dst, u32 val)
4063 memcpy(dst, &val, sizeof(val));
4064 return dst + sizeof(val);
4067 static int test_akcipher_one(struct crypto_akcipher *tfm,
4068 const struct akcipher_testvec *vecs)
4070 char *xbuf[XBUFSIZE];
4071 struct akcipher_request *req;
4072 void *outbuf_enc = NULL;
4073 void *outbuf_dec = NULL;
4074 struct crypto_wait wait;
4075 unsigned int out_len_max, out_len = 0;
4077 struct scatterlist src, dst, src_tab[3];
4079 unsigned int m_size, c_size;
4083 if (testmgr_alloc_buf(xbuf))
4086 req = akcipher_request_alloc(tfm, GFP_KERNEL);
4090 crypto_init_wait(&wait);
4092 key = kmalloc(vecs->key_len + sizeof(u32) * 2 + vecs->param_len,
4096 memcpy(key, vecs->key, vecs->key_len);
4097 ptr = key + vecs->key_len;
4098 ptr = test_pack_u32(ptr, vecs->algo);
4099 ptr = test_pack_u32(ptr, vecs->param_len);
4100 memcpy(ptr, vecs->params, vecs->param_len);
4102 if (vecs->public_key_vec)
4103 err = crypto_akcipher_set_pub_key(tfm, key, vecs->key_len);
4105 err = crypto_akcipher_set_priv_key(tfm, key, vecs->key_len);
4110 * First run test which do not require a private key, such as
4111 * encrypt or verify.
4114 out_len_max = crypto_akcipher_maxsize(tfm);
4115 outbuf_enc = kzalloc(out_len_max, GFP_KERNEL);
4119 if (!vecs->siggen_sigver_test) {
4121 m_size = vecs->m_size;
4123 c_size = vecs->c_size;
4126 /* Swap args so we could keep plaintext (digest)
4127 * in vecs->m, and cooked signature in vecs->c.
4129 m = vecs->c; /* signature */
4130 m_size = vecs->c_size;
4131 c = vecs->m; /* digest */
4132 c_size = vecs->m_size;
4137 if (WARN_ON(m_size > PAGE_SIZE))
4139 memcpy(xbuf[0], m, m_size);
4141 sg_init_table(src_tab, 3);
4142 sg_set_buf(&src_tab[0], xbuf[0], 8);
4143 sg_set_buf(&src_tab[1], xbuf[0] + 8, m_size - 8);
4144 if (vecs->siggen_sigver_test) {
4145 if (WARN_ON(c_size > PAGE_SIZE))
4147 memcpy(xbuf[1], c, c_size);
4148 sg_set_buf(&src_tab[2], xbuf[1], c_size);
4149 akcipher_request_set_crypt(req, src_tab, NULL, m_size, c_size);
4151 sg_init_one(&dst, outbuf_enc, out_len_max);
4152 akcipher_request_set_crypt(req, src_tab, &dst, m_size,
4155 akcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
4156 crypto_req_done, &wait);
4158 err = crypto_wait_req(vecs->siggen_sigver_test ?
4159 /* Run asymmetric signature verification */
4160 crypto_akcipher_verify(req) :
4161 /* Run asymmetric encrypt */
4162 crypto_akcipher_encrypt(req), &wait);
4164 pr_err("alg: akcipher: %s test failed. err %d\n", op, err);
4167 if (!vecs->siggen_sigver_test && c) {
4168 if (req->dst_len != c_size) {
4169 pr_err("alg: akcipher: %s test failed. Invalid output len\n",
4174 /* verify that encrypted message is equal to expected */
4175 if (memcmp(c, outbuf_enc, c_size) != 0) {
4176 pr_err("alg: akcipher: %s test failed. Invalid output\n",
4178 hexdump(outbuf_enc, c_size);
4185 * Don't invoke (decrypt or sign) test which require a private key
4186 * for vectors with only a public key.
4188 if (vecs->public_key_vec) {
4192 outbuf_dec = kzalloc(out_len_max, GFP_KERNEL);
4198 if (!vecs->siggen_sigver_test && !c) {
4200 c_size = req->dst_len;
4204 op = vecs->siggen_sigver_test ? "sign" : "decrypt";
4205 if (WARN_ON(c_size > PAGE_SIZE))
4207 memcpy(xbuf[0], c, c_size);
4209 sg_init_one(&src, xbuf[0], c_size);
4210 sg_init_one(&dst, outbuf_dec, out_len_max);
4211 crypto_init_wait(&wait);
4212 akcipher_request_set_crypt(req, &src, &dst, c_size, out_len_max);
4214 err = crypto_wait_req(vecs->siggen_sigver_test ?
4215 /* Run asymmetric signature generation */
4216 crypto_akcipher_sign(req) :
4217 /* Run asymmetric decrypt */
4218 crypto_akcipher_decrypt(req), &wait);
4220 pr_err("alg: akcipher: %s test failed. err %d\n", op, err);
4223 out_len = req->dst_len;
4224 if (out_len < m_size) {
4225 pr_err("alg: akcipher: %s test failed. Invalid output len %u\n",
4230 /* verify that decrypted message is equal to the original msg */
4231 if (memchr_inv(outbuf_dec, 0, out_len - m_size) ||
4232 memcmp(m, outbuf_dec + out_len - m_size, m_size)) {
4233 pr_err("alg: akcipher: %s test failed. Invalid output\n", op);
4234 hexdump(outbuf_dec, out_len);
4243 akcipher_request_free(req);
4245 testmgr_free_buf(xbuf);
4249 static int test_akcipher(struct crypto_akcipher *tfm, const char *alg,
4250 const struct akcipher_testvec *vecs,
4251 unsigned int tcount)
4254 crypto_tfm_alg_driver_name(crypto_akcipher_tfm(tfm));
4257 for (i = 0; i < tcount; i++) {
4258 ret = test_akcipher_one(tfm, vecs++);
4262 pr_err("alg: akcipher: test %d failed for %s, err=%d\n",
4269 static int alg_test_akcipher(const struct alg_test_desc *desc,
4270 const char *driver, u32 type, u32 mask)
4272 struct crypto_akcipher *tfm;
4275 tfm = crypto_alloc_akcipher(driver, type, mask);
4277 pr_err("alg: akcipher: Failed to load tfm for %s: %ld\n",
4278 driver, PTR_ERR(tfm));
4279 return PTR_ERR(tfm);
4281 if (desc->suite.akcipher.vecs)
4282 err = test_akcipher(tfm, desc->alg, desc->suite.akcipher.vecs,
4283 desc->suite.akcipher.count);
4285 crypto_free_akcipher(tfm);
4289 static int alg_test_null(const struct alg_test_desc *desc,
4290 const char *driver, u32 type, u32 mask)
4295 #define ____VECS(tv) .vecs = tv, .count = ARRAY_SIZE(tv)
4296 #define __VECS(tv) { ____VECS(tv) }
4298 /* Please keep this list sorted by algorithm name. */
4299 static const struct alg_test_desc alg_test_descs[] = {
4301 .alg = "adiantum(xchacha12,aes)",
4302 .generic_driver = "adiantum(xchacha12-generic,aes-generic,nhpoly1305-generic)",
4303 .test = alg_test_skcipher,
4305 .cipher = __VECS(adiantum_xchacha12_aes_tv_template)
4308 .alg = "adiantum(xchacha20,aes)",
4309 .generic_driver = "adiantum(xchacha20-generic,aes-generic,nhpoly1305-generic)",
4310 .test = alg_test_skcipher,
4312 .cipher = __VECS(adiantum_xchacha20_aes_tv_template)
4316 .test = alg_test_aead,
4318 .aead = __VECS(aegis128_tv_template)
4321 .alg = "ansi_cprng",
4322 .test = alg_test_cprng,
4324 .cprng = __VECS(ansi_cprng_aes_tv_template)
4327 .alg = "authenc(hmac(md5),ecb(cipher_null))",
4328 .test = alg_test_aead,
4330 .aead = __VECS(hmac_md5_ecb_cipher_null_tv_template)
4333 .alg = "authenc(hmac(sha1),cbc(aes))",
4334 .test = alg_test_aead,
4337 .aead = __VECS(hmac_sha1_aes_cbc_tv_temp)
4340 .alg = "authenc(hmac(sha1),cbc(des))",
4341 .test = alg_test_aead,
4343 .aead = __VECS(hmac_sha1_des_cbc_tv_temp)
4346 .alg = "authenc(hmac(sha1),cbc(des3_ede))",
4347 .test = alg_test_aead,
4349 .aead = __VECS(hmac_sha1_des3_ede_cbc_tv_temp)
4352 .alg = "authenc(hmac(sha1),ctr(aes))",
4353 .test = alg_test_null,
4356 .alg = "authenc(hmac(sha1),ecb(cipher_null))",
4357 .test = alg_test_aead,
4359 .aead = __VECS(hmac_sha1_ecb_cipher_null_tv_temp)
4362 .alg = "authenc(hmac(sha1),rfc3686(ctr(aes)))",
4363 .test = alg_test_null,
4366 .alg = "authenc(hmac(sha224),cbc(des))",
4367 .test = alg_test_aead,
4369 .aead = __VECS(hmac_sha224_des_cbc_tv_temp)
4372 .alg = "authenc(hmac(sha224),cbc(des3_ede))",
4373 .test = alg_test_aead,
4375 .aead = __VECS(hmac_sha224_des3_ede_cbc_tv_temp)
4378 .alg = "authenc(hmac(sha256),cbc(aes))",
4379 .test = alg_test_aead,
4382 .aead = __VECS(hmac_sha256_aes_cbc_tv_temp)
4385 .alg = "authenc(hmac(sha256),cbc(des))",
4386 .test = alg_test_aead,
4388 .aead = __VECS(hmac_sha256_des_cbc_tv_temp)
4391 .alg = "authenc(hmac(sha256),cbc(des3_ede))",
4392 .test = alg_test_aead,
4394 .aead = __VECS(hmac_sha256_des3_ede_cbc_tv_temp)
4397 .alg = "authenc(hmac(sha256),ctr(aes))",
4398 .test = alg_test_null,
4401 .alg = "authenc(hmac(sha256),rfc3686(ctr(aes)))",
4402 .test = alg_test_null,
4405 .alg = "authenc(hmac(sha384),cbc(des))",
4406 .test = alg_test_aead,
4408 .aead = __VECS(hmac_sha384_des_cbc_tv_temp)
4411 .alg = "authenc(hmac(sha384),cbc(des3_ede))",
4412 .test = alg_test_aead,
4414 .aead = __VECS(hmac_sha384_des3_ede_cbc_tv_temp)
4417 .alg = "authenc(hmac(sha384),ctr(aes))",
4418 .test = alg_test_null,
4421 .alg = "authenc(hmac(sha384),rfc3686(ctr(aes)))",
4422 .test = alg_test_null,
4425 .alg = "authenc(hmac(sha512),cbc(aes))",
4427 .test = alg_test_aead,
4429 .aead = __VECS(hmac_sha512_aes_cbc_tv_temp)
4432 .alg = "authenc(hmac(sha512),cbc(des))",
4433 .test = alg_test_aead,
4435 .aead = __VECS(hmac_sha512_des_cbc_tv_temp)
4438 .alg = "authenc(hmac(sha512),cbc(des3_ede))",
4439 .test = alg_test_aead,
4441 .aead = __VECS(hmac_sha512_des3_ede_cbc_tv_temp)
4444 .alg = "authenc(hmac(sha512),ctr(aes))",
4445 .test = alg_test_null,
4448 .alg = "authenc(hmac(sha512),rfc3686(ctr(aes)))",
4449 .test = alg_test_null,
4452 .alg = "blake2b-160",
4453 .test = alg_test_hash,
4456 .hash = __VECS(blake2b_160_tv_template)
4459 .alg = "blake2b-256",
4460 .test = alg_test_hash,
4463 .hash = __VECS(blake2b_256_tv_template)
4466 .alg = "blake2b-384",
4467 .test = alg_test_hash,
4470 .hash = __VECS(blake2b_384_tv_template)
4473 .alg = "blake2b-512",
4474 .test = alg_test_hash,
4477 .hash = __VECS(blake2b_512_tv_template)
4481 .test = alg_test_skcipher,
4484 .cipher = __VECS(aes_cbc_tv_template)
4487 .alg = "cbc(anubis)",
4488 .test = alg_test_skcipher,
4490 .cipher = __VECS(anubis_cbc_tv_template)
4494 .test = alg_test_skcipher,
4496 .cipher = __VECS(aria_cbc_tv_template)
4499 .alg = "cbc(blowfish)",
4500 .test = alg_test_skcipher,
4502 .cipher = __VECS(bf_cbc_tv_template)
4505 .alg = "cbc(camellia)",
4506 .test = alg_test_skcipher,
4508 .cipher = __VECS(camellia_cbc_tv_template)
4511 .alg = "cbc(cast5)",
4512 .test = alg_test_skcipher,
4514 .cipher = __VECS(cast5_cbc_tv_template)
4517 .alg = "cbc(cast6)",
4518 .test = alg_test_skcipher,
4520 .cipher = __VECS(cast6_cbc_tv_template)
4524 .test = alg_test_skcipher,
4526 .cipher = __VECS(des_cbc_tv_template)
4529 .alg = "cbc(des3_ede)",
4530 .test = alg_test_skcipher,
4532 .cipher = __VECS(des3_ede_cbc_tv_template)
4535 /* Same as cbc(aes) except the key is stored in
4536 * hardware secure memory which we reference by index
4539 .test = alg_test_null,
4542 /* Same as cbc(sm4) except the key is stored in
4543 * hardware secure memory which we reference by index
4546 .test = alg_test_null,
4548 .alg = "cbc(serpent)",
4549 .test = alg_test_skcipher,
4551 .cipher = __VECS(serpent_cbc_tv_template)
4555 .test = alg_test_skcipher,
4557 .cipher = __VECS(sm4_cbc_tv_template)
4560 .alg = "cbc(twofish)",
4561 .test = alg_test_skcipher,
4563 .cipher = __VECS(tf_cbc_tv_template)
4566 #if IS_ENABLED(CONFIG_CRYPTO_PAES_S390)
4567 .alg = "cbc-paes-s390",
4569 .test = alg_test_skcipher,
4571 .cipher = __VECS(aes_cbc_tv_template)
4575 .alg = "cbcmac(aes)",
4577 .test = alg_test_hash,
4579 .hash = __VECS(aes_cbcmac_tv_template)
4582 .alg = "cbcmac(sm4)",
4583 .test = alg_test_hash,
4585 .hash = __VECS(sm4_cbcmac_tv_template)
4589 .generic_driver = "ccm_base(ctr(aes-generic),cbcmac(aes-generic))",
4590 .test = alg_test_aead,
4594 ____VECS(aes_ccm_tv_template),
4595 .einval_allowed = 1,
4600 .generic_driver = "ccm_base(ctr(sm4-generic),cbcmac(sm4-generic))",
4601 .test = alg_test_aead,
4604 ____VECS(sm4_ccm_tv_template),
4605 .einval_allowed = 1,
4610 .test = alg_test_skcipher,
4613 .cipher = __VECS(aes_cfb_tv_template)
4617 .test = alg_test_skcipher,
4619 .cipher = __VECS(aria_cfb_tv_template)
4623 .test = alg_test_skcipher,
4625 .cipher = __VECS(sm4_cfb_tv_template)
4629 .test = alg_test_skcipher,
4631 .cipher = __VECS(chacha20_tv_template)
4636 .test = alg_test_hash,
4638 .hash = __VECS(aes_cmac128_tv_template)
4641 .alg = "cmac(des3_ede)",
4642 .test = alg_test_hash,
4644 .hash = __VECS(des3_ede_cmac64_tv_template)
4648 .test = alg_test_hash,
4650 .hash = __VECS(sm4_cmac128_tv_template)
4653 .alg = "compress_null",
4654 .test = alg_test_null,
4657 .test = alg_test_hash,
4660 .hash = __VECS(crc32_tv_template)
4664 .test = alg_test_crc32c,
4667 .hash = __VECS(crc32c_tv_template)
4670 .alg = "crc64-rocksoft",
4671 .test = alg_test_hash,
4674 .hash = __VECS(crc64_rocksoft_tv_template)
4678 .test = alg_test_hash,
4681 .hash = __VECS(crct10dif_tv_template)
4685 .test = alg_test_skcipher,
4688 .cipher = __VECS(aes_ctr_tv_template)
4692 .test = alg_test_skcipher,
4694 .cipher = __VECS(aria_ctr_tv_template)
4697 .alg = "ctr(blowfish)",
4698 .test = alg_test_skcipher,
4700 .cipher = __VECS(bf_ctr_tv_template)
4703 .alg = "ctr(camellia)",
4704 .test = alg_test_skcipher,
4706 .cipher = __VECS(camellia_ctr_tv_template)
4709 .alg = "ctr(cast5)",
4710 .test = alg_test_skcipher,
4712 .cipher = __VECS(cast5_ctr_tv_template)
4715 .alg = "ctr(cast6)",
4716 .test = alg_test_skcipher,
4718 .cipher = __VECS(cast6_ctr_tv_template)
4722 .test = alg_test_skcipher,
4724 .cipher = __VECS(des_ctr_tv_template)
4727 .alg = "ctr(des3_ede)",
4728 .test = alg_test_skcipher,
4730 .cipher = __VECS(des3_ede_ctr_tv_template)
4733 /* Same as ctr(aes) except the key is stored in
4734 * hardware secure memory which we reference by index
4737 .test = alg_test_null,
4741 /* Same as ctr(sm4) except the key is stored in
4742 * hardware secure memory which we reference by index
4745 .test = alg_test_null,
4747 .alg = "ctr(serpent)",
4748 .test = alg_test_skcipher,
4750 .cipher = __VECS(serpent_ctr_tv_template)
4754 .test = alg_test_skcipher,
4756 .cipher = __VECS(sm4_ctr_tv_template)
4759 .alg = "ctr(twofish)",
4760 .test = alg_test_skcipher,
4762 .cipher = __VECS(tf_ctr_tv_template)
4765 #if IS_ENABLED(CONFIG_CRYPTO_PAES_S390)
4766 .alg = "ctr-paes-s390",
4768 .test = alg_test_skcipher,
4770 .cipher = __VECS(aes_ctr_tv_template)
4774 .alg = "cts(cbc(aes))",
4775 .test = alg_test_skcipher,
4778 .cipher = __VECS(cts_mode_tv_template)
4781 /* Same as cts(cbc((aes)) except the key is stored in
4782 * hardware secure memory which we reference by index
4784 .alg = "cts(cbc(paes))",
4785 .test = alg_test_null,
4788 .alg = "curve25519",
4789 .test = alg_test_kpp,
4791 .kpp = __VECS(curve25519_tv_template)
4795 .test = alg_test_comp,
4799 .comp = __VECS(deflate_comp_tv_template),
4800 .decomp = __VECS(deflate_decomp_tv_template)
4805 .test = alg_test_kpp,
4807 .kpp = __VECS(dh_tv_template)
4810 .alg = "digest_null",
4811 .test = alg_test_null,
4813 .alg = "drbg_nopr_ctr_aes128",
4814 .test = alg_test_drbg,
4817 .drbg = __VECS(drbg_nopr_ctr_aes128_tv_template)
4820 .alg = "drbg_nopr_ctr_aes192",
4821 .test = alg_test_drbg,
4824 .drbg = __VECS(drbg_nopr_ctr_aes192_tv_template)
4827 .alg = "drbg_nopr_ctr_aes256",
4828 .test = alg_test_drbg,
4831 .drbg = __VECS(drbg_nopr_ctr_aes256_tv_template)
4835 * There is no need to specifically test the DRBG with every
4836 * backend cipher -- covered by drbg_nopr_hmac_sha256 test
4838 .alg = "drbg_nopr_hmac_sha1",
4840 .test = alg_test_null,
4842 .alg = "drbg_nopr_hmac_sha256",
4843 .test = alg_test_drbg,
4846 .drbg = __VECS(drbg_nopr_hmac_sha256_tv_template)
4849 /* covered by drbg_nopr_hmac_sha256 test */
4850 .alg = "drbg_nopr_hmac_sha384",
4852 .test = alg_test_null,
4854 .alg = "drbg_nopr_hmac_sha512",
4855 .test = alg_test_drbg,
4858 .drbg = __VECS(drbg_nopr_hmac_sha512_tv_template)
4861 .alg = "drbg_nopr_sha1",
4863 .test = alg_test_null,
4865 .alg = "drbg_nopr_sha256",
4866 .test = alg_test_drbg,
4869 .drbg = __VECS(drbg_nopr_sha256_tv_template)
4872 /* covered by drbg_nopr_sha256 test */
4873 .alg = "drbg_nopr_sha384",
4875 .test = alg_test_null,
4877 .alg = "drbg_nopr_sha512",
4879 .test = alg_test_null,
4881 .alg = "drbg_pr_ctr_aes128",
4882 .test = alg_test_drbg,
4885 .drbg = __VECS(drbg_pr_ctr_aes128_tv_template)
4888 /* covered by drbg_pr_ctr_aes128 test */
4889 .alg = "drbg_pr_ctr_aes192",
4891 .test = alg_test_null,
4893 .alg = "drbg_pr_ctr_aes256",
4895 .test = alg_test_null,
4897 .alg = "drbg_pr_hmac_sha1",
4899 .test = alg_test_null,
4901 .alg = "drbg_pr_hmac_sha256",
4902 .test = alg_test_drbg,
4905 .drbg = __VECS(drbg_pr_hmac_sha256_tv_template)
4908 /* covered by drbg_pr_hmac_sha256 test */
4909 .alg = "drbg_pr_hmac_sha384",
4911 .test = alg_test_null,
4913 .alg = "drbg_pr_hmac_sha512",
4914 .test = alg_test_null,
4917 .alg = "drbg_pr_sha1",
4919 .test = alg_test_null,
4921 .alg = "drbg_pr_sha256",
4922 .test = alg_test_drbg,
4925 .drbg = __VECS(drbg_pr_sha256_tv_template)
4928 /* covered by drbg_pr_sha256 test */
4929 .alg = "drbg_pr_sha384",
4931 .test = alg_test_null,
4933 .alg = "drbg_pr_sha512",
4935 .test = alg_test_null,
4938 .test = alg_test_skcipher,
4941 .cipher = __VECS(aes_tv_template)
4944 .alg = "ecb(anubis)",
4945 .test = alg_test_skcipher,
4947 .cipher = __VECS(anubis_tv_template)
4951 .generic_driver = "ecb(arc4)-generic",
4952 .test = alg_test_skcipher,
4954 .cipher = __VECS(arc4_tv_template)
4958 .test = alg_test_skcipher,
4960 .cipher = __VECS(aria_tv_template)
4963 .alg = "ecb(blowfish)",
4964 .test = alg_test_skcipher,
4966 .cipher = __VECS(bf_tv_template)
4969 .alg = "ecb(camellia)",
4970 .test = alg_test_skcipher,
4972 .cipher = __VECS(camellia_tv_template)
4975 .alg = "ecb(cast5)",
4976 .test = alg_test_skcipher,
4978 .cipher = __VECS(cast5_tv_template)
4981 .alg = "ecb(cast6)",
4982 .test = alg_test_skcipher,
4984 .cipher = __VECS(cast6_tv_template)
4987 .alg = "ecb(cipher_null)",
4988 .test = alg_test_null,
4992 .test = alg_test_skcipher,
4994 .cipher = __VECS(des_tv_template)
4997 .alg = "ecb(des3_ede)",
4998 .test = alg_test_skcipher,
5000 .cipher = __VECS(des3_ede_tv_template)
5003 .alg = "ecb(fcrypt)",
5004 .test = alg_test_skcipher,
5007 .vecs = fcrypt_pcbc_tv_template,
5012 .alg = "ecb(khazad)",
5013 .test = alg_test_skcipher,
5015 .cipher = __VECS(khazad_tv_template)
5018 /* Same as ecb(aes) except the key is stored in
5019 * hardware secure memory which we reference by index
5022 .test = alg_test_null,
5026 .test = alg_test_skcipher,
5028 .cipher = __VECS(seed_tv_template)
5031 .alg = "ecb(serpent)",
5032 .test = alg_test_skcipher,
5034 .cipher = __VECS(serpent_tv_template)
5038 .test = alg_test_skcipher,
5040 .cipher = __VECS(sm4_tv_template)
5044 .test = alg_test_skcipher,
5046 .cipher = __VECS(tea_tv_template)
5049 .alg = "ecb(twofish)",
5050 .test = alg_test_skcipher,
5052 .cipher = __VECS(tf_tv_template)
5056 .test = alg_test_skcipher,
5058 .cipher = __VECS(xeta_tv_template)
5062 .test = alg_test_skcipher,
5064 .cipher = __VECS(xtea_tv_template)
5067 #if IS_ENABLED(CONFIG_CRYPTO_PAES_S390)
5068 .alg = "ecb-paes-s390",
5070 .test = alg_test_skcipher,
5072 .cipher = __VECS(aes_tv_template)
5076 .alg = "ecdh-nist-p192",
5077 .test = alg_test_kpp,
5079 .kpp = __VECS(ecdh_p192_tv_template)
5082 .alg = "ecdh-nist-p256",
5083 .test = alg_test_kpp,
5086 .kpp = __VECS(ecdh_p256_tv_template)
5089 .alg = "ecdh-nist-p384",
5090 .test = alg_test_kpp,
5093 .kpp = __VECS(ecdh_p384_tv_template)
5096 .alg = "ecdsa-nist-p192",
5097 .test = alg_test_akcipher,
5099 .akcipher = __VECS(ecdsa_nist_p192_tv_template)
5102 .alg = "ecdsa-nist-p256",
5103 .test = alg_test_akcipher,
5105 .akcipher = __VECS(ecdsa_nist_p256_tv_template)
5108 .alg = "ecdsa-nist-p384",
5109 .test = alg_test_akcipher,
5111 .akcipher = __VECS(ecdsa_nist_p384_tv_template)
5115 .test = alg_test_akcipher,
5117 .akcipher = __VECS(ecrdsa_tv_template)
5120 .alg = "essiv(authenc(hmac(sha256),cbc(aes)),sha256)",
5121 .test = alg_test_aead,
5124 .aead = __VECS(essiv_hmac_sha256_aes_cbc_tv_temp)
5127 .alg = "essiv(cbc(aes),sha256)",
5128 .test = alg_test_skcipher,
5131 .cipher = __VECS(essiv_aes_cbc_tv_template)
5134 #if IS_ENABLED(CONFIG_CRYPTO_DH_RFC7919_GROUPS)
5135 .alg = "ffdhe2048(dh)",
5136 .test = alg_test_kpp,
5139 .kpp = __VECS(ffdhe2048_dh_tv_template)
5142 .alg = "ffdhe3072(dh)",
5143 .test = alg_test_kpp,
5146 .kpp = __VECS(ffdhe3072_dh_tv_template)
5149 .alg = "ffdhe4096(dh)",
5150 .test = alg_test_kpp,
5153 .kpp = __VECS(ffdhe4096_dh_tv_template)
5156 .alg = "ffdhe6144(dh)",
5157 .test = alg_test_kpp,
5160 .kpp = __VECS(ffdhe6144_dh_tv_template)
5163 .alg = "ffdhe8192(dh)",
5164 .test = alg_test_kpp,
5167 .kpp = __VECS(ffdhe8192_dh_tv_template)
5170 #endif /* CONFIG_CRYPTO_DH_RFC7919_GROUPS */
5172 .generic_driver = "gcm_base(ctr(aes-generic),ghash-generic)",
5173 .test = alg_test_aead,
5176 .aead = __VECS(aes_gcm_tv_template)
5180 .generic_driver = "gcm_base(ctr(aria-generic),ghash-generic)",
5181 .test = alg_test_aead,
5183 .aead = __VECS(aria_gcm_tv_template)
5187 .generic_driver = "gcm_base(ctr(sm4-generic),ghash-generic)",
5188 .test = alg_test_aead,
5190 .aead = __VECS(sm4_gcm_tv_template)
5194 .test = alg_test_hash,
5197 .hash = __VECS(ghash_tv_template)
5200 .alg = "hctr2(aes)",
5202 "hctr2_base(xctr(aes-generic),polyval-generic)",
5203 .test = alg_test_skcipher,
5205 .cipher = __VECS(aes_hctr2_tv_template)
5209 .test = alg_test_hash,
5211 .hash = __VECS(hmac_md5_tv_template)
5214 .alg = "hmac(rmd160)",
5215 .test = alg_test_hash,
5217 .hash = __VECS(hmac_rmd160_tv_template)
5220 .alg = "hmac(sha1)",
5221 .test = alg_test_hash,
5224 .hash = __VECS(hmac_sha1_tv_template)
5227 .alg = "hmac(sha224)",
5228 .test = alg_test_hash,
5231 .hash = __VECS(hmac_sha224_tv_template)
5234 .alg = "hmac(sha256)",
5235 .test = alg_test_hash,
5238 .hash = __VECS(hmac_sha256_tv_template)
5241 .alg = "hmac(sha3-224)",
5242 .test = alg_test_hash,
5245 .hash = __VECS(hmac_sha3_224_tv_template)
5248 .alg = "hmac(sha3-256)",
5249 .test = alg_test_hash,
5252 .hash = __VECS(hmac_sha3_256_tv_template)
5255 .alg = "hmac(sha3-384)",
5256 .test = alg_test_hash,
5259 .hash = __VECS(hmac_sha3_384_tv_template)
5262 .alg = "hmac(sha3-512)",
5263 .test = alg_test_hash,
5266 .hash = __VECS(hmac_sha3_512_tv_template)
5269 .alg = "hmac(sha384)",
5270 .test = alg_test_hash,
5273 .hash = __VECS(hmac_sha384_tv_template)
5276 .alg = "hmac(sha512)",
5277 .test = alg_test_hash,
5280 .hash = __VECS(hmac_sha512_tv_template)
5284 .test = alg_test_hash,
5286 .hash = __VECS(hmac_sm3_tv_template)
5289 .alg = "hmac(streebog256)",
5290 .test = alg_test_hash,
5292 .hash = __VECS(hmac_streebog256_tv_template)
5295 .alg = "hmac(streebog512)",
5296 .test = alg_test_hash,
5298 .hash = __VECS(hmac_streebog512_tv_template)
5301 .alg = "jitterentropy_rng",
5303 .test = alg_test_null,
5306 .test = alg_test_skcipher,
5309 .cipher = __VECS(aes_kw_tv_template)
5313 .generic_driver = "lrw(ecb(aes-generic))",
5314 .test = alg_test_skcipher,
5316 .cipher = __VECS(aes_lrw_tv_template)
5319 .alg = "lrw(camellia)",
5320 .generic_driver = "lrw(ecb(camellia-generic))",
5321 .test = alg_test_skcipher,
5323 .cipher = __VECS(camellia_lrw_tv_template)
5326 .alg = "lrw(cast6)",
5327 .generic_driver = "lrw(ecb(cast6-generic))",
5328 .test = alg_test_skcipher,
5330 .cipher = __VECS(cast6_lrw_tv_template)
5333 .alg = "lrw(serpent)",
5334 .generic_driver = "lrw(ecb(serpent-generic))",
5335 .test = alg_test_skcipher,
5337 .cipher = __VECS(serpent_lrw_tv_template)
5340 .alg = "lrw(twofish)",
5341 .generic_driver = "lrw(ecb(twofish-generic))",
5342 .test = alg_test_skcipher,
5344 .cipher = __VECS(tf_lrw_tv_template)
5348 .test = alg_test_comp,
5352 .comp = __VECS(lz4_comp_tv_template),
5353 .decomp = __VECS(lz4_decomp_tv_template)
5358 .test = alg_test_comp,
5362 .comp = __VECS(lz4hc_comp_tv_template),
5363 .decomp = __VECS(lz4hc_decomp_tv_template)
5368 .test = alg_test_comp,
5372 .comp = __VECS(lzo_comp_tv_template),
5373 .decomp = __VECS(lzo_decomp_tv_template)
5378 .test = alg_test_comp,
5382 .comp = __VECS(lzorle_comp_tv_template),
5383 .decomp = __VECS(lzorle_decomp_tv_template)
5388 .test = alg_test_hash,
5390 .hash = __VECS(md4_tv_template)
5394 .test = alg_test_hash,
5396 .hash = __VECS(md5_tv_template)
5399 .alg = "michael_mic",
5400 .test = alg_test_hash,
5402 .hash = __VECS(michael_mic_tv_template)
5405 .alg = "nhpoly1305",
5406 .test = alg_test_hash,
5408 .hash = __VECS(nhpoly1305_tv_template)
5412 .test = alg_test_skcipher,
5415 .cipher = __VECS(aes_ofb_tv_template)
5418 /* Same as ofb(aes) except the key is stored in
5419 * hardware secure memory which we reference by index
5422 .test = alg_test_null,
5426 .test = alg_test_skcipher,
5428 .cipher = __VECS(sm4_ofb_tv_template)
5431 .alg = "pcbc(fcrypt)",
5432 .test = alg_test_skcipher,
5434 .cipher = __VECS(fcrypt_pcbc_tv_template)
5437 .alg = "pkcs1pad(rsa,sha224)",
5438 .test = alg_test_null,
5441 .alg = "pkcs1pad(rsa,sha256)",
5442 .test = alg_test_akcipher,
5445 .akcipher = __VECS(pkcs1pad_rsa_tv_template)
5448 .alg = "pkcs1pad(rsa,sha384)",
5449 .test = alg_test_null,
5452 .alg = "pkcs1pad(rsa,sha512)",
5453 .test = alg_test_null,
5457 .test = alg_test_hash,
5459 .hash = __VECS(poly1305_tv_template)
5463 .test = alg_test_hash,
5465 .hash = __VECS(polyval_tv_template)
5468 .alg = "rfc3686(ctr(aes))",
5469 .test = alg_test_skcipher,
5472 .cipher = __VECS(aes_ctr_rfc3686_tv_template)
5475 .alg = "rfc3686(ctr(sm4))",
5476 .test = alg_test_skcipher,
5478 .cipher = __VECS(sm4_ctr_rfc3686_tv_template)
5481 .alg = "rfc4106(gcm(aes))",
5482 .generic_driver = "rfc4106(gcm_base(ctr(aes-generic),ghash-generic))",
5483 .test = alg_test_aead,
5487 ____VECS(aes_gcm_rfc4106_tv_template),
5488 .einval_allowed = 1,
5493 .alg = "rfc4309(ccm(aes))",
5494 .generic_driver = "rfc4309(ccm_base(ctr(aes-generic),cbcmac(aes-generic)))",
5495 .test = alg_test_aead,
5499 ____VECS(aes_ccm_rfc4309_tv_template),
5500 .einval_allowed = 1,
5505 .alg = "rfc4543(gcm(aes))",
5506 .generic_driver = "rfc4543(gcm_base(ctr(aes-generic),ghash-generic))",
5507 .test = alg_test_aead,
5510 ____VECS(aes_gcm_rfc4543_tv_template),
5511 .einval_allowed = 1,
5516 .alg = "rfc7539(chacha20,poly1305)",
5517 .test = alg_test_aead,
5519 .aead = __VECS(rfc7539_tv_template)
5522 .alg = "rfc7539esp(chacha20,poly1305)",
5523 .test = alg_test_aead,
5526 ____VECS(rfc7539esp_tv_template),
5527 .einval_allowed = 1,
5533 .test = alg_test_hash,
5535 .hash = __VECS(rmd160_tv_template)
5539 .test = alg_test_akcipher,
5542 .akcipher = __VECS(rsa_tv_template)
5546 .test = alg_test_hash,
5549 .hash = __VECS(sha1_tv_template)
5553 .test = alg_test_hash,
5556 .hash = __VECS(sha224_tv_template)
5560 .test = alg_test_hash,
5563 .hash = __VECS(sha256_tv_template)
5567 .test = alg_test_hash,
5570 .hash = __VECS(sha3_224_tv_template)
5574 .test = alg_test_hash,
5577 .hash = __VECS(sha3_256_tv_template)
5581 .test = alg_test_hash,
5584 .hash = __VECS(sha3_384_tv_template)
5588 .test = alg_test_hash,
5591 .hash = __VECS(sha3_512_tv_template)
5595 .test = alg_test_hash,
5598 .hash = __VECS(sha384_tv_template)
5602 .test = alg_test_hash,
5605 .hash = __VECS(sha512_tv_template)
5609 .test = alg_test_akcipher,
5611 .akcipher = __VECS(sm2_tv_template)
5615 .test = alg_test_hash,
5617 .hash = __VECS(sm3_tv_template)
5620 .alg = "streebog256",
5621 .test = alg_test_hash,
5623 .hash = __VECS(streebog256_tv_template)
5626 .alg = "streebog512",
5627 .test = alg_test_hash,
5629 .hash = __VECS(streebog512_tv_template)
5632 .alg = "vmac64(aes)",
5633 .test = alg_test_hash,
5635 .hash = __VECS(vmac64_aes_tv_template)
5639 .test = alg_test_hash,
5641 .hash = __VECS(wp256_tv_template)
5645 .test = alg_test_hash,
5647 .hash = __VECS(wp384_tv_template)
5651 .test = alg_test_hash,
5653 .hash = __VECS(wp512_tv_template)
5657 .test = alg_test_hash,
5659 .hash = __VECS(aes_xcbc128_tv_template)
5663 .test = alg_test_skcipher,
5665 .cipher = __VECS(xchacha12_tv_template)
5669 .test = alg_test_skcipher,
5671 .cipher = __VECS(xchacha20_tv_template)
5675 .test = alg_test_skcipher,
5677 .cipher = __VECS(aes_xctr_tv_template)
5681 .generic_driver = "xts(ecb(aes-generic))",
5682 .test = alg_test_skcipher,
5685 .cipher = __VECS(aes_xts_tv_template)
5688 .alg = "xts(camellia)",
5689 .generic_driver = "xts(ecb(camellia-generic))",
5690 .test = alg_test_skcipher,
5692 .cipher = __VECS(camellia_xts_tv_template)
5695 .alg = "xts(cast6)",
5696 .generic_driver = "xts(ecb(cast6-generic))",
5697 .test = alg_test_skcipher,
5699 .cipher = __VECS(cast6_xts_tv_template)
5702 /* Same as xts(aes) except the key is stored in
5703 * hardware secure memory which we reference by index
5706 .test = alg_test_null,
5709 .alg = "xts(serpent)",
5710 .generic_driver = "xts(ecb(serpent-generic))",
5711 .test = alg_test_skcipher,
5713 .cipher = __VECS(serpent_xts_tv_template)
5716 .alg = "xts(twofish)",
5717 .generic_driver = "xts(ecb(twofish-generic))",
5718 .test = alg_test_skcipher,
5720 .cipher = __VECS(tf_xts_tv_template)
5723 #if IS_ENABLED(CONFIG_CRYPTO_PAES_S390)
5724 .alg = "xts-paes-s390",
5726 .test = alg_test_skcipher,
5728 .cipher = __VECS(aes_xts_tv_template)
5732 .alg = "xts4096(paes)",
5733 .test = alg_test_null,
5736 .alg = "xts512(paes)",
5737 .test = alg_test_null,
5741 .test = alg_test_hash,
5744 .hash = __VECS(xxhash64_tv_template)
5747 .alg = "zlib-deflate",
5748 .test = alg_test_comp,
5752 .comp = __VECS(zlib_deflate_comp_tv_template),
5753 .decomp = __VECS(zlib_deflate_decomp_tv_template)
5758 .test = alg_test_comp,
5762 .comp = __VECS(zstd_comp_tv_template),
5763 .decomp = __VECS(zstd_decomp_tv_template)
5769 static void alg_check_test_descs_order(void)
5773 for (i = 1; i < ARRAY_SIZE(alg_test_descs); i++) {
5774 int diff = strcmp(alg_test_descs[i - 1].alg,
5775 alg_test_descs[i].alg);
5777 if (WARN_ON(diff > 0)) {
5778 pr_warn("testmgr: alg_test_descs entries in wrong order: '%s' before '%s'\n",
5779 alg_test_descs[i - 1].alg,
5780 alg_test_descs[i].alg);
5783 if (WARN_ON(diff == 0)) {
5784 pr_warn("testmgr: duplicate alg_test_descs entry: '%s'\n",
5785 alg_test_descs[i].alg);
5790 static void alg_check_testvec_configs(void)
5794 for (i = 0; i < ARRAY_SIZE(default_cipher_testvec_configs); i++)
5795 WARN_ON(!valid_testvec_config(
5796 &default_cipher_testvec_configs[i]));
5798 for (i = 0; i < ARRAY_SIZE(default_hash_testvec_configs); i++)
5799 WARN_ON(!valid_testvec_config(
5800 &default_hash_testvec_configs[i]));
5803 static void testmgr_onetime_init(void)
5805 alg_check_test_descs_order();
5806 alg_check_testvec_configs();
5808 #ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS
5809 pr_warn("alg: extra crypto tests enabled. This is intended for developer use only.\n");
5813 static int alg_find_test(const char *alg)
5816 int end = ARRAY_SIZE(alg_test_descs);
5818 while (start < end) {
5819 int i = (start + end) / 2;
5820 int diff = strcmp(alg_test_descs[i].alg, alg);
5838 static int alg_fips_disabled(const char *driver, const char *alg)
5840 pr_info("alg: %s (%s) is disabled due to FIPS\n", alg, driver);
5845 int alg_test(const char *driver, const char *alg, u32 type, u32 mask)
5851 if (!fips_enabled && notests) {
5852 printk_once(KERN_INFO "alg: self-tests disabled\n");
5856 DO_ONCE(testmgr_onetime_init);
5858 if ((type & CRYPTO_ALG_TYPE_MASK) == CRYPTO_ALG_TYPE_CIPHER) {
5859 char nalg[CRYPTO_MAX_ALG_NAME];
5861 if (snprintf(nalg, sizeof(nalg), "ecb(%s)", alg) >=
5863 return -ENAMETOOLONG;
5865 i = alg_find_test(nalg);
5869 if (fips_enabled && !alg_test_descs[i].fips_allowed)
5872 rc = alg_test_cipher(alg_test_descs + i, driver, type, mask);
5876 i = alg_find_test(alg);
5877 j = alg_find_test(driver);
5882 if (j >= 0 && !alg_test_descs[j].fips_allowed)
5885 if (i >= 0 && !alg_test_descs[i].fips_allowed)
5891 rc |= alg_test_descs[i].test(alg_test_descs + i, driver,
5893 if (j >= 0 && j != i)
5894 rc |= alg_test_descs[j].test(alg_test_descs + j, driver,
5899 if (fips_enabled || panic_on_fail) {
5901 panic("alg: self-tests for %s (%s) failed in %s mode!\n",
5903 fips_enabled ? "fips" : "panic_on_fail");
5905 pr_warn("alg: self-tests for %s using %s failed (rc=%d)",
5908 "alg: self-tests for %s using %s failed (rc=%d)",
5912 pr_info("alg: self-tests for %s (%s) passed\n",
5919 printk(KERN_INFO "alg: No test for %s (%s)\n", alg, driver);
5921 if (type & CRYPTO_ALG_FIPS_INTERNAL)
5922 return alg_fips_disabled(driver, alg);
5926 return alg_fips_disabled(driver, alg);
5929 #endif /* CONFIG_CRYPTO_MANAGER_DISABLE_TESTS */
5931 EXPORT_SYMBOL_GPL(alg_test);