2 * Algorithm testing framework and tests.
4 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
5 * Copyright (c) 2002 Jean-Francois Dive <jef@linuxbe.org>
6 * Copyright (c) 2007 Nokia Siemens Networks
7 * Copyright (c) 2008 Herbert Xu <herbert@gondor.apana.org.au>
9 * Updated RFC4106 AES-GCM testing.
10 * Authors: Aidan O'Mahony (aidan.o.mahony@intel.com)
11 * Adrian Hoban <adrian.hoban@intel.com>
12 * Gabriele Paoloni <gabriele.paoloni@intel.com>
13 * Tadeusz Struk (tadeusz.struk@intel.com)
14 * Copyright (c) 2010, Intel Corporation.
16 * This program is free software; you can redistribute it and/or modify it
17 * under the terms of the GNU General Public License as published by the Free
18 * Software Foundation; either version 2 of the License, or (at your option)
23 #include <crypto/hash.h>
24 #include <linux/err.h>
25 #include <linux/module.h>
26 #include <linux/scatterlist.h>
27 #include <linux/slab.h>
28 #include <linux/string.h>
29 #include <crypto/rng.h>
33 #ifdef CONFIG_CRYPTO_MANAGER_DISABLE_TESTS
36 int alg_test(const char *driver, const char *alg, u32 type, u32 mask)
46 * Need slab memory for testing (size in number of pages).
51 * Indexes into the xbuf to simulate cross-page access.
63 * Used by test_cipher()
68 struct tcrypt_result {
69 struct completion completion;
73 struct aead_test_suite {
75 struct aead_testvec *vecs;
80 struct cipher_test_suite {
82 struct cipher_testvec *vecs;
87 struct comp_test_suite {
89 struct comp_testvec *vecs;
94 struct pcomp_test_suite {
96 struct pcomp_testvec *vecs;
101 struct hash_test_suite {
102 struct hash_testvec *vecs;
106 struct cprng_test_suite {
107 struct cprng_testvec *vecs;
111 struct alg_test_desc {
113 int (*test)(const struct alg_test_desc *desc, const char *driver,
115 int fips_allowed; /* set if alg is allowed in fips mode */
118 struct aead_test_suite aead;
119 struct cipher_test_suite cipher;
120 struct comp_test_suite comp;
121 struct pcomp_test_suite pcomp;
122 struct hash_test_suite hash;
123 struct cprng_test_suite cprng;
127 static unsigned int IDX[8] = { IDX1, IDX2, IDX3, IDX4, IDX5, IDX6, IDX7, IDX8 };
129 static void hexdump(unsigned char *buf, unsigned int len)
131 print_hex_dump(KERN_CONT, "", DUMP_PREFIX_OFFSET,
136 static void tcrypt_complete(struct crypto_async_request *req, int err)
138 struct tcrypt_result *res = req->data;
140 if (err == -EINPROGRESS)
144 complete(&res->completion);
147 static int testmgr_alloc_buf(char *buf[XBUFSIZE])
151 for (i = 0; i < XBUFSIZE; i++) {
152 buf[i] = (void *)__get_free_page(GFP_KERNEL);
161 free_page((unsigned long)buf[i]);
166 static void testmgr_free_buf(char *buf[XBUFSIZE])
170 for (i = 0; i < XBUFSIZE; i++)
171 free_page((unsigned long)buf[i]);
174 static int do_one_async_hash_op(struct ahash_request *req,
175 struct tcrypt_result *tr,
178 if (ret == -EINPROGRESS || ret == -EBUSY) {
179 ret = wait_for_completion_interruptible(&tr->completion);
182 reinit_completion(&tr->completion);
187 static int __test_hash(struct crypto_ahash *tfm, struct hash_testvec *template,
188 unsigned int tcount, bool use_digest,
189 const int align_offset)
191 const char *algo = crypto_tfm_alg_driver_name(crypto_ahash_tfm(tfm));
192 unsigned int i, j, k, temp;
193 struct scatterlist sg[8];
195 struct ahash_request *req;
196 struct tcrypt_result tresult;
198 char *xbuf[XBUFSIZE];
201 if (testmgr_alloc_buf(xbuf))
204 init_completion(&tresult.completion);
206 req = ahash_request_alloc(tfm, GFP_KERNEL);
208 printk(KERN_ERR "alg: hash: Failed to allocate request for "
212 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
213 tcrypt_complete, &tresult);
216 for (i = 0; i < tcount; i++) {
221 if (WARN_ON(align_offset + template[i].psize > PAGE_SIZE))
225 memset(result, 0, 64);
228 hash_buff += align_offset;
230 memcpy(hash_buff, template[i].plaintext, template[i].psize);
231 sg_init_one(&sg[0], hash_buff, template[i].psize);
233 if (template[i].ksize) {
234 crypto_ahash_clear_flags(tfm, ~0);
235 ret = crypto_ahash_setkey(tfm, template[i].key,
238 printk(KERN_ERR "alg: hash: setkey failed on "
239 "test %d for %s: ret=%d\n", j, algo,
245 ahash_request_set_crypt(req, sg, result, template[i].psize);
247 ret = do_one_async_hash_op(req, &tresult,
248 crypto_ahash_digest(req));
250 pr_err("alg: hash: digest failed on test %d "
251 "for %s: ret=%d\n", j, algo, -ret);
255 ret = do_one_async_hash_op(req, &tresult,
256 crypto_ahash_init(req));
258 pr_err("alt: hash: init failed on test %d "
259 "for %s: ret=%d\n", j, algo, -ret);
262 ret = do_one_async_hash_op(req, &tresult,
263 crypto_ahash_update(req));
265 pr_err("alt: hash: update failed on test %d "
266 "for %s: ret=%d\n", j, algo, -ret);
269 ret = do_one_async_hash_op(req, &tresult,
270 crypto_ahash_final(req));
272 pr_err("alt: hash: final failed on test %d "
273 "for %s: ret=%d\n", j, algo, -ret);
278 if (memcmp(result, template[i].digest,
279 crypto_ahash_digestsize(tfm))) {
280 printk(KERN_ERR "alg: hash: Test %d failed for %s\n",
282 hexdump(result, crypto_ahash_digestsize(tfm));
289 for (i = 0; i < tcount; i++) {
290 /* alignment tests are only done with continuous buffers */
291 if (align_offset != 0)
294 if (template[i].np) {
296 memset(result, 0, 64);
299 sg_init_table(sg, template[i].np);
301 for (k = 0; k < template[i].np; k++) {
302 if (WARN_ON(offset_in_page(IDX[k]) +
303 template[i].tap[k] > PAGE_SIZE))
306 memcpy(xbuf[IDX[k] >> PAGE_SHIFT] +
307 offset_in_page(IDX[k]),
308 template[i].plaintext + temp,
311 temp += template[i].tap[k];
314 if (template[i].ksize) {
315 crypto_ahash_clear_flags(tfm, ~0);
316 ret = crypto_ahash_setkey(tfm, template[i].key,
320 printk(KERN_ERR "alg: hash: setkey "
321 "failed on chunking test %d "
322 "for %s: ret=%d\n", j, algo,
328 ahash_request_set_crypt(req, sg, result,
330 ret = crypto_ahash_digest(req);
336 ret = wait_for_completion_interruptible(
337 &tresult.completion);
338 if (!ret && !(ret = tresult.err)) {
339 reinit_completion(&tresult.completion);
344 printk(KERN_ERR "alg: hash: digest failed "
345 "on chunking test %d for %s: "
346 "ret=%d\n", j, algo, -ret);
350 if (memcmp(result, template[i].digest,
351 crypto_ahash_digestsize(tfm))) {
352 printk(KERN_ERR "alg: hash: Chunking test %d "
353 "failed for %s\n", j, algo);
354 hexdump(result, crypto_ahash_digestsize(tfm));
364 ahash_request_free(req);
366 testmgr_free_buf(xbuf);
371 static int test_hash(struct crypto_ahash *tfm, struct hash_testvec *template,
372 unsigned int tcount, bool use_digest)
374 unsigned int alignmask;
377 ret = __test_hash(tfm, template, tcount, use_digest, 0);
381 /* test unaligned buffers, check with one byte offset */
382 ret = __test_hash(tfm, template, tcount, use_digest, 1);
386 alignmask = crypto_tfm_alg_alignmask(&tfm->base);
388 /* Check if alignment mask for tfm is correctly set. */
389 ret = __test_hash(tfm, template, tcount, use_digest,
398 static int __test_aead(struct crypto_aead *tfm, int enc,
399 struct aead_testvec *template, unsigned int tcount,
400 const bool diff_dst, const int align_offset)
402 const char *algo = crypto_tfm_alg_driver_name(crypto_aead_tfm(tfm));
403 unsigned int i, j, k, n, temp;
407 struct aead_request *req;
408 struct scatterlist *sg;
409 struct scatterlist *asg;
410 struct scatterlist *sgout;
412 struct tcrypt_result result;
413 unsigned int authsize;
418 char *xbuf[XBUFSIZE];
419 char *xoutbuf[XBUFSIZE];
420 char *axbuf[XBUFSIZE];
422 if (testmgr_alloc_buf(xbuf))
424 if (testmgr_alloc_buf(axbuf))
427 if (diff_dst && testmgr_alloc_buf(xoutbuf))
430 /* avoid "the frame size is larger than 1024 bytes" compiler warning */
431 sg = kmalloc(sizeof(*sg) * 8 * (diff_dst ? 3 : 2), GFP_KERNEL);
447 init_completion(&result.completion);
449 req = aead_request_alloc(tfm, GFP_KERNEL);
451 pr_err("alg: aead%s: Failed to allocate request for %s\n",
456 aead_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
457 tcrypt_complete, &result);
459 for (i = 0, j = 0; i < tcount; i++) {
460 if (!template[i].np) {
463 /* some templates have no input data but they will
467 input += align_offset;
471 if (WARN_ON(align_offset + template[i].ilen >
472 PAGE_SIZE || template[i].alen > PAGE_SIZE))
475 memcpy(input, template[i].input, template[i].ilen);
476 memcpy(assoc, template[i].assoc, template[i].alen);
478 memcpy(iv, template[i].iv, MAX_IVLEN);
480 memset(iv, 0, MAX_IVLEN);
482 crypto_aead_clear_flags(tfm, ~0);
484 crypto_aead_set_flags(
485 tfm, CRYPTO_TFM_REQ_WEAK_KEY);
487 key = template[i].key;
489 ret = crypto_aead_setkey(tfm, key,
491 if (!ret == template[i].fail) {
492 pr_err("alg: aead%s: setkey failed on test %d for %s: flags=%x\n",
493 d, j, algo, crypto_aead_get_flags(tfm));
498 authsize = abs(template[i].rlen - template[i].ilen);
499 ret = crypto_aead_setauthsize(tfm, authsize);
501 pr_err("alg: aead%s: Failed to set authsize to %u on test %d for %s\n",
502 d, authsize, j, algo);
508 output += align_offset;
509 sg_init_one(&sg[0], input, template[i].ilen);
510 sg_init_one(&sgout[0], output,
513 sg_init_one(&sg[0], input,
515 (enc ? authsize : 0));
519 sg_init_one(&asg[0], assoc, template[i].alen);
521 aead_request_set_crypt(req, sg, (diff_dst) ? sgout : sg,
522 template[i].ilen, iv);
524 aead_request_set_assoc(req, asg, template[i].alen);
527 crypto_aead_encrypt(req) :
528 crypto_aead_decrypt(req);
532 if (template[i].novrfy) {
533 /* verification was supposed to fail */
534 pr_err("alg: aead%s: %s failed on test %d for %s: ret was 0, expected -EBADMSG\n",
536 /* so really, we got a bad message */
543 ret = wait_for_completion_interruptible(
545 if (!ret && !(ret = result.err)) {
546 reinit_completion(&result.completion);
550 if (template[i].novrfy)
551 /* verification failure was expected */
555 pr_err("alg: aead%s: %s failed on test %d for %s: ret=%d\n",
556 d, e, j, algo, -ret);
561 if (memcmp(q, template[i].result, template[i].rlen)) {
562 pr_err("alg: aead%s: Test %d failed on %s for %s\n",
564 hexdump(q, template[i].rlen);
571 for (i = 0, j = 0; i < tcount; i++) {
572 /* alignment tests are only done with continuous buffers */
573 if (align_offset != 0)
576 if (template[i].np) {
580 memcpy(iv, template[i].iv, MAX_IVLEN);
582 memset(iv, 0, MAX_IVLEN);
584 crypto_aead_clear_flags(tfm, ~0);
586 crypto_aead_set_flags(
587 tfm, CRYPTO_TFM_REQ_WEAK_KEY);
588 key = template[i].key;
590 ret = crypto_aead_setkey(tfm, key, template[i].klen);
591 if (!ret == template[i].fail) {
592 pr_err("alg: aead%s: setkey failed on chunk test %d for %s: flags=%x\n",
593 d, j, algo, crypto_aead_get_flags(tfm));
598 authsize = abs(template[i].rlen - template[i].ilen);
601 sg_init_table(sg, template[i].np);
603 sg_init_table(sgout, template[i].np);
604 for (k = 0, temp = 0; k < template[i].np; k++) {
605 if (WARN_ON(offset_in_page(IDX[k]) +
606 template[i].tap[k] > PAGE_SIZE))
609 q = xbuf[IDX[k] >> PAGE_SHIFT] +
610 offset_in_page(IDX[k]);
612 memcpy(q, template[i].input + temp,
615 sg_set_buf(&sg[k], q, template[i].tap[k]);
618 q = xoutbuf[IDX[k] >> PAGE_SHIFT] +
619 offset_in_page(IDX[k]);
621 memset(q, 0, template[i].tap[k]);
623 sg_set_buf(&sgout[k], q,
627 n = template[i].tap[k];
628 if (k == template[i].np - 1 && enc)
630 if (offset_in_page(q) + n < PAGE_SIZE)
633 temp += template[i].tap[k];
636 ret = crypto_aead_setauthsize(tfm, authsize);
638 pr_err("alg: aead%s: Failed to set authsize to %u on chunk test %d for %s\n",
639 d, authsize, j, algo);
644 if (WARN_ON(sg[k - 1].offset +
645 sg[k - 1].length + authsize >
652 sgout[k - 1].length += authsize;
654 sg[k - 1].length += authsize;
657 sg_init_table(asg, template[i].anp);
659 for (k = 0, temp = 0; k < template[i].anp; k++) {
660 if (WARN_ON(offset_in_page(IDX[k]) +
661 template[i].atap[k] > PAGE_SIZE))
664 memcpy(axbuf[IDX[k] >> PAGE_SHIFT] +
665 offset_in_page(IDX[k]),
666 template[i].assoc + temp,
667 template[i].atap[k]),
668 template[i].atap[k]);
669 temp += template[i].atap[k];
672 aead_request_set_crypt(req, sg, (diff_dst) ? sgout : sg,
676 aead_request_set_assoc(req, asg, template[i].alen);
679 crypto_aead_encrypt(req) :
680 crypto_aead_decrypt(req);
684 if (template[i].novrfy) {
685 /* verification was supposed to fail */
686 pr_err("alg: aead%s: %s failed on chunk test %d for %s: ret was 0, expected -EBADMSG\n",
688 /* so really, we got a bad message */
695 ret = wait_for_completion_interruptible(
697 if (!ret && !(ret = result.err)) {
698 reinit_completion(&result.completion);
702 if (template[i].novrfy)
703 /* verification failure was expected */
707 pr_err("alg: aead%s: %s failed on chunk test %d for %s: ret=%d\n",
708 d, e, j, algo, -ret);
713 for (k = 0, temp = 0; k < template[i].np; k++) {
715 q = xoutbuf[IDX[k] >> PAGE_SHIFT] +
716 offset_in_page(IDX[k]);
718 q = xbuf[IDX[k] >> PAGE_SHIFT] +
719 offset_in_page(IDX[k]);
721 n = template[i].tap[k];
722 if (k == template[i].np - 1)
723 n += enc ? authsize : -authsize;
725 if (memcmp(q, template[i].result + temp, n)) {
726 pr_err("alg: aead%s: Chunk test %d failed on %s at page %u for %s\n",
733 if (k == template[i].np - 1 && !enc) {
735 memcmp(q, template[i].input +
741 for (n = 0; offset_in_page(q + n) &&
746 pr_err("alg: aead%s: Result buffer corruption in chunk test %d on %s at page %u for %s: %u bytes:\n",
747 d, j, e, k, algo, n);
752 temp += template[i].tap[k];
760 aead_request_free(req);
764 testmgr_free_buf(xoutbuf);
766 testmgr_free_buf(axbuf);
768 testmgr_free_buf(xbuf);
773 static int test_aead(struct crypto_aead *tfm, int enc,
774 struct aead_testvec *template, unsigned int tcount)
776 unsigned int alignmask;
779 /* test 'dst == src' case */
780 ret = __test_aead(tfm, enc, template, tcount, false, 0);
784 /* test 'dst != src' case */
785 ret = __test_aead(tfm, enc, template, tcount, true, 0);
789 /* test unaligned buffers, check with one byte offset */
790 ret = __test_aead(tfm, enc, template, tcount, true, 1);
794 alignmask = crypto_tfm_alg_alignmask(&tfm->base);
796 /* Check if alignment mask for tfm is correctly set. */
797 ret = __test_aead(tfm, enc, template, tcount, true,
806 static int test_cipher(struct crypto_cipher *tfm, int enc,
807 struct cipher_testvec *template, unsigned int tcount)
809 const char *algo = crypto_tfm_alg_driver_name(crypto_cipher_tfm(tfm));
810 unsigned int i, j, k;
814 char *xbuf[XBUFSIZE];
817 if (testmgr_alloc_buf(xbuf))
826 for (i = 0; i < tcount; i++) {
833 if (WARN_ON(template[i].ilen > PAGE_SIZE))
837 memcpy(data, template[i].input, template[i].ilen);
839 crypto_cipher_clear_flags(tfm, ~0);
841 crypto_cipher_set_flags(tfm, CRYPTO_TFM_REQ_WEAK_KEY);
843 ret = crypto_cipher_setkey(tfm, template[i].key,
845 if (!ret == template[i].fail) {
846 printk(KERN_ERR "alg: cipher: setkey failed "
847 "on test %d for %s: flags=%x\n", j,
848 algo, crypto_cipher_get_flags(tfm));
853 for (k = 0; k < template[i].ilen;
854 k += crypto_cipher_blocksize(tfm)) {
856 crypto_cipher_encrypt_one(tfm, data + k,
859 crypto_cipher_decrypt_one(tfm, data + k,
864 if (memcmp(q, template[i].result, template[i].rlen)) {
865 printk(KERN_ERR "alg: cipher: Test %d failed "
866 "on %s for %s\n", j, e, algo);
867 hexdump(q, template[i].rlen);
876 testmgr_free_buf(xbuf);
881 static int __test_skcipher(struct crypto_ablkcipher *tfm, int enc,
882 struct cipher_testvec *template, unsigned int tcount,
883 const bool diff_dst, const int align_offset)
886 crypto_tfm_alg_driver_name(crypto_ablkcipher_tfm(tfm));
887 unsigned int i, j, k, n, temp;
889 struct ablkcipher_request *req;
890 struct scatterlist sg[8];
891 struct scatterlist sgout[8];
893 struct tcrypt_result result;
896 char *xbuf[XBUFSIZE];
897 char *xoutbuf[XBUFSIZE];
900 if (testmgr_alloc_buf(xbuf))
903 if (diff_dst && testmgr_alloc_buf(xoutbuf))
916 init_completion(&result.completion);
918 req = ablkcipher_request_alloc(tfm, GFP_KERNEL);
920 pr_err("alg: skcipher%s: Failed to allocate request for %s\n",
925 ablkcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
926 tcrypt_complete, &result);
929 for (i = 0; i < tcount; i++) {
931 memcpy(iv, template[i].iv, MAX_IVLEN);
933 memset(iv, 0, MAX_IVLEN);
935 if (!(template[i].np) || (template[i].also_non_np)) {
939 if (WARN_ON(align_offset + template[i].ilen >
944 data += align_offset;
945 memcpy(data, template[i].input, template[i].ilen);
947 crypto_ablkcipher_clear_flags(tfm, ~0);
949 crypto_ablkcipher_set_flags(
950 tfm, CRYPTO_TFM_REQ_WEAK_KEY);
952 ret = crypto_ablkcipher_setkey(tfm, template[i].key,
954 if (!ret == template[i].fail) {
955 pr_err("alg: skcipher%s: setkey failed on test %d for %s: flags=%x\n",
957 crypto_ablkcipher_get_flags(tfm));
962 sg_init_one(&sg[0], data, template[i].ilen);
965 data += align_offset;
966 sg_init_one(&sgout[0], data, template[i].ilen);
969 ablkcipher_request_set_crypt(req, sg,
970 (diff_dst) ? sgout : sg,
971 template[i].ilen, iv);
973 crypto_ablkcipher_encrypt(req) :
974 crypto_ablkcipher_decrypt(req);
981 ret = wait_for_completion_interruptible(
983 if (!ret && !((ret = result.err))) {
984 reinit_completion(&result.completion);
989 pr_err("alg: skcipher%s: %s failed on test %d for %s: ret=%d\n",
990 d, e, j, algo, -ret);
995 if (memcmp(q, template[i].result, template[i].rlen)) {
996 pr_err("alg: skcipher%s: Test %d failed on %s for %s\n",
998 hexdump(q, template[i].rlen);
1006 for (i = 0; i < tcount; i++) {
1007 /* alignment tests are only done with continuous buffers */
1008 if (align_offset != 0)
1012 memcpy(iv, template[i].iv, MAX_IVLEN);
1014 memset(iv, 0, MAX_IVLEN);
1016 if (template[i].np) {
1019 crypto_ablkcipher_clear_flags(tfm, ~0);
1021 crypto_ablkcipher_set_flags(
1022 tfm, CRYPTO_TFM_REQ_WEAK_KEY);
1024 ret = crypto_ablkcipher_setkey(tfm, template[i].key,
1026 if (!ret == template[i].fail) {
1027 pr_err("alg: skcipher%s: setkey failed on chunk test %d for %s: flags=%x\n",
1029 crypto_ablkcipher_get_flags(tfm));
1036 sg_init_table(sg, template[i].np);
1038 sg_init_table(sgout, template[i].np);
1039 for (k = 0; k < template[i].np; k++) {
1040 if (WARN_ON(offset_in_page(IDX[k]) +
1041 template[i].tap[k] > PAGE_SIZE))
1044 q = xbuf[IDX[k] >> PAGE_SHIFT] +
1045 offset_in_page(IDX[k]);
1047 memcpy(q, template[i].input + temp,
1048 template[i].tap[k]);
1050 if (offset_in_page(q) + template[i].tap[k] <
1052 q[template[i].tap[k]] = 0;
1054 sg_set_buf(&sg[k], q, template[i].tap[k]);
1056 q = xoutbuf[IDX[k] >> PAGE_SHIFT] +
1057 offset_in_page(IDX[k]);
1059 sg_set_buf(&sgout[k], q,
1060 template[i].tap[k]);
1062 memset(q, 0, template[i].tap[k]);
1063 if (offset_in_page(q) +
1064 template[i].tap[k] < PAGE_SIZE)
1065 q[template[i].tap[k]] = 0;
1068 temp += template[i].tap[k];
1071 ablkcipher_request_set_crypt(req, sg,
1072 (diff_dst) ? sgout : sg,
1073 template[i].ilen, iv);
1076 crypto_ablkcipher_encrypt(req) :
1077 crypto_ablkcipher_decrypt(req);
1084 ret = wait_for_completion_interruptible(
1085 &result.completion);
1086 if (!ret && !((ret = result.err))) {
1087 reinit_completion(&result.completion);
1092 pr_err("alg: skcipher%s: %s failed on chunk test %d for %s: ret=%d\n",
1093 d, e, j, algo, -ret);
1099 for (k = 0; k < template[i].np; k++) {
1101 q = xoutbuf[IDX[k] >> PAGE_SHIFT] +
1102 offset_in_page(IDX[k]);
1104 q = xbuf[IDX[k] >> PAGE_SHIFT] +
1105 offset_in_page(IDX[k]);
1107 if (memcmp(q, template[i].result + temp,
1108 template[i].tap[k])) {
1109 pr_err("alg: skcipher%s: Chunk test %d failed on %s at page %u for %s\n",
1111 hexdump(q, template[i].tap[k]);
1115 q += template[i].tap[k];
1116 for (n = 0; offset_in_page(q + n) && q[n]; n++)
1119 pr_err("alg: skcipher%s: Result buffer corruption in chunk test %d on %s at page %u for %s: %u bytes:\n",
1120 d, j, e, k, algo, n);
1124 temp += template[i].tap[k];
1132 ablkcipher_request_free(req);
1134 testmgr_free_buf(xoutbuf);
1136 testmgr_free_buf(xbuf);
1141 static int test_skcipher(struct crypto_ablkcipher *tfm, int enc,
1142 struct cipher_testvec *template, unsigned int tcount)
1144 unsigned int alignmask;
1147 /* test 'dst == src' case */
1148 ret = __test_skcipher(tfm, enc, template, tcount, false, 0);
1152 /* test 'dst != src' case */
1153 ret = __test_skcipher(tfm, enc, template, tcount, true, 0);
1157 /* test unaligned buffers, check with one byte offset */
1158 ret = __test_skcipher(tfm, enc, template, tcount, true, 1);
1162 alignmask = crypto_tfm_alg_alignmask(&tfm->base);
1164 /* Check if alignment mask for tfm is correctly set. */
1165 ret = __test_skcipher(tfm, enc, template, tcount, true,
1174 static int test_comp(struct crypto_comp *tfm, struct comp_testvec *ctemplate,
1175 struct comp_testvec *dtemplate, int ctcount, int dtcount)
1177 const char *algo = crypto_tfm_alg_driver_name(crypto_comp_tfm(tfm));
1179 char result[COMP_BUF_SIZE];
1182 for (i = 0; i < ctcount; i++) {
1184 unsigned int dlen = COMP_BUF_SIZE;
1186 memset(result, 0, sizeof (result));
1188 ilen = ctemplate[i].inlen;
1189 ret = crypto_comp_compress(tfm, ctemplate[i].input,
1190 ilen, result, &dlen);
1192 printk(KERN_ERR "alg: comp: compression failed "
1193 "on test %d for %s: ret=%d\n", i + 1, algo,
1198 if (dlen != ctemplate[i].outlen) {
1199 printk(KERN_ERR "alg: comp: Compression test %d "
1200 "failed for %s: output len = %d\n", i + 1, algo,
1206 if (memcmp(result, ctemplate[i].output, dlen)) {
1207 printk(KERN_ERR "alg: comp: Compression test %d "
1208 "failed for %s\n", i + 1, algo);
1209 hexdump(result, dlen);
1215 for (i = 0; i < dtcount; i++) {
1217 unsigned int dlen = COMP_BUF_SIZE;
1219 memset(result, 0, sizeof (result));
1221 ilen = dtemplate[i].inlen;
1222 ret = crypto_comp_decompress(tfm, dtemplate[i].input,
1223 ilen, result, &dlen);
1225 printk(KERN_ERR "alg: comp: decompression failed "
1226 "on test %d for %s: ret=%d\n", i + 1, algo,
1231 if (dlen != dtemplate[i].outlen) {
1232 printk(KERN_ERR "alg: comp: Decompression test %d "
1233 "failed for %s: output len = %d\n", i + 1, algo,
1239 if (memcmp(result, dtemplate[i].output, dlen)) {
1240 printk(KERN_ERR "alg: comp: Decompression test %d "
1241 "failed for %s\n", i + 1, algo);
1242 hexdump(result, dlen);
1254 static int test_pcomp(struct crypto_pcomp *tfm,
1255 struct pcomp_testvec *ctemplate,
1256 struct pcomp_testvec *dtemplate, int ctcount,
1259 const char *algo = crypto_tfm_alg_driver_name(crypto_pcomp_tfm(tfm));
1261 char result[COMP_BUF_SIZE];
1264 for (i = 0; i < ctcount; i++) {
1265 struct comp_request req;
1266 unsigned int produced = 0;
1268 res = crypto_compress_setup(tfm, ctemplate[i].params,
1269 ctemplate[i].paramsize);
1271 pr_err("alg: pcomp: compression setup failed on test "
1272 "%d for %s: error=%d\n", i + 1, algo, res);
1276 res = crypto_compress_init(tfm);
1278 pr_err("alg: pcomp: compression init failed on test "
1279 "%d for %s: error=%d\n", i + 1, algo, res);
1283 memset(result, 0, sizeof(result));
1285 req.next_in = ctemplate[i].input;
1286 req.avail_in = ctemplate[i].inlen / 2;
1287 req.next_out = result;
1288 req.avail_out = ctemplate[i].outlen / 2;
1290 res = crypto_compress_update(tfm, &req);
1291 if (res < 0 && (res != -EAGAIN || req.avail_in)) {
1292 pr_err("alg: pcomp: compression update failed on test "
1293 "%d for %s: error=%d\n", i + 1, algo, res);
1299 /* Add remaining input data */
1300 req.avail_in += (ctemplate[i].inlen + 1) / 2;
1302 res = crypto_compress_update(tfm, &req);
1303 if (res < 0 && (res != -EAGAIN || req.avail_in)) {
1304 pr_err("alg: pcomp: compression update failed on test "
1305 "%d for %s: error=%d\n", i + 1, algo, res);
1311 /* Provide remaining output space */
1312 req.avail_out += COMP_BUF_SIZE - ctemplate[i].outlen / 2;
1314 res = crypto_compress_final(tfm, &req);
1316 pr_err("alg: pcomp: compression final failed on test "
1317 "%d for %s: error=%d\n", i + 1, algo, res);
1322 if (COMP_BUF_SIZE - req.avail_out != ctemplate[i].outlen) {
1323 pr_err("alg: comp: Compression test %d failed for %s: "
1324 "output len = %d (expected %d)\n", i + 1, algo,
1325 COMP_BUF_SIZE - req.avail_out,
1326 ctemplate[i].outlen);
1330 if (produced != ctemplate[i].outlen) {
1331 pr_err("alg: comp: Compression test %d failed for %s: "
1332 "returned len = %u (expected %d)\n", i + 1,
1333 algo, produced, ctemplate[i].outlen);
1337 if (memcmp(result, ctemplate[i].output, ctemplate[i].outlen)) {
1338 pr_err("alg: pcomp: Compression test %d failed for "
1339 "%s\n", i + 1, algo);
1340 hexdump(result, ctemplate[i].outlen);
1345 for (i = 0; i < dtcount; i++) {
1346 struct comp_request req;
1347 unsigned int produced = 0;
1349 res = crypto_decompress_setup(tfm, dtemplate[i].params,
1350 dtemplate[i].paramsize);
1352 pr_err("alg: pcomp: decompression setup failed on "
1353 "test %d for %s: error=%d\n", i + 1, algo, res);
1357 res = crypto_decompress_init(tfm);
1359 pr_err("alg: pcomp: decompression init failed on test "
1360 "%d for %s: error=%d\n", i + 1, algo, res);
1364 memset(result, 0, sizeof(result));
1366 req.next_in = dtemplate[i].input;
1367 req.avail_in = dtemplate[i].inlen / 2;
1368 req.next_out = result;
1369 req.avail_out = dtemplate[i].outlen / 2;
1371 res = crypto_decompress_update(tfm, &req);
1372 if (res < 0 && (res != -EAGAIN || req.avail_in)) {
1373 pr_err("alg: pcomp: decompression update failed on "
1374 "test %d for %s: error=%d\n", i + 1, algo, res);
1380 /* Add remaining input data */
1381 req.avail_in += (dtemplate[i].inlen + 1) / 2;
1383 res = crypto_decompress_update(tfm, &req);
1384 if (res < 0 && (res != -EAGAIN || req.avail_in)) {
1385 pr_err("alg: pcomp: decompression update failed on "
1386 "test %d for %s: error=%d\n", i + 1, algo, res);
1392 /* Provide remaining output space */
1393 req.avail_out += COMP_BUF_SIZE - dtemplate[i].outlen / 2;
1395 res = crypto_decompress_final(tfm, &req);
1396 if (res < 0 && (res != -EAGAIN || req.avail_in)) {
1397 pr_err("alg: pcomp: decompression final failed on "
1398 "test %d for %s: error=%d\n", i + 1, algo, res);
1404 if (COMP_BUF_SIZE - req.avail_out != dtemplate[i].outlen) {
1405 pr_err("alg: comp: Decompression test %d failed for "
1406 "%s: output len = %d (expected %d)\n", i + 1,
1407 algo, COMP_BUF_SIZE - req.avail_out,
1408 dtemplate[i].outlen);
1412 if (produced != dtemplate[i].outlen) {
1413 pr_err("alg: comp: Decompression test %d failed for "
1414 "%s: returned len = %u (expected %d)\n", i + 1,
1415 algo, produced, dtemplate[i].outlen);
1419 if (memcmp(result, dtemplate[i].output, dtemplate[i].outlen)) {
1420 pr_err("alg: pcomp: Decompression test %d failed for "
1421 "%s\n", i + 1, algo);
1422 hexdump(result, dtemplate[i].outlen);
1431 static int test_cprng(struct crypto_rng *tfm, struct cprng_testvec *template,
1432 unsigned int tcount)
1434 const char *algo = crypto_tfm_alg_driver_name(crypto_rng_tfm(tfm));
1435 int err = 0, i, j, seedsize;
1439 seedsize = crypto_rng_seedsize(tfm);
1441 seed = kmalloc(seedsize, GFP_KERNEL);
1443 printk(KERN_ERR "alg: cprng: Failed to allocate seed space "
1448 for (i = 0; i < tcount; i++) {
1449 memset(result, 0, 32);
1451 memcpy(seed, template[i].v, template[i].vlen);
1452 memcpy(seed + template[i].vlen, template[i].key,
1454 memcpy(seed + template[i].vlen + template[i].klen,
1455 template[i].dt, template[i].dtlen);
1457 err = crypto_rng_reset(tfm, seed, seedsize);
1459 printk(KERN_ERR "alg: cprng: Failed to reset rng "
1464 for (j = 0; j < template[i].loops; j++) {
1465 err = crypto_rng_get_bytes(tfm, result,
1467 if (err != template[i].rlen) {
1468 printk(KERN_ERR "alg: cprng: Failed to obtain "
1469 "the correct amount of random data for "
1470 "%s (requested %d, got %d)\n", algo,
1471 template[i].rlen, err);
1476 err = memcmp(result, template[i].result,
1479 printk(KERN_ERR "alg: cprng: Test %d failed for %s\n",
1481 hexdump(result, template[i].rlen);
1492 static int alg_test_aead(const struct alg_test_desc *desc, const char *driver,
1495 struct crypto_aead *tfm;
1498 tfm = crypto_alloc_aead(driver, type, mask);
1500 printk(KERN_ERR "alg: aead: Failed to load transform for %s: "
1501 "%ld\n", driver, PTR_ERR(tfm));
1502 return PTR_ERR(tfm);
1505 if (desc->suite.aead.enc.vecs) {
1506 err = test_aead(tfm, ENCRYPT, desc->suite.aead.enc.vecs,
1507 desc->suite.aead.enc.count);
1512 if (!err && desc->suite.aead.dec.vecs)
1513 err = test_aead(tfm, DECRYPT, desc->suite.aead.dec.vecs,
1514 desc->suite.aead.dec.count);
1517 crypto_free_aead(tfm);
1521 static int alg_test_cipher(const struct alg_test_desc *desc,
1522 const char *driver, u32 type, u32 mask)
1524 struct crypto_cipher *tfm;
1527 tfm = crypto_alloc_cipher(driver, type, mask);
1529 printk(KERN_ERR "alg: cipher: Failed to load transform for "
1530 "%s: %ld\n", driver, PTR_ERR(tfm));
1531 return PTR_ERR(tfm);
1534 if (desc->suite.cipher.enc.vecs) {
1535 err = test_cipher(tfm, ENCRYPT, desc->suite.cipher.enc.vecs,
1536 desc->suite.cipher.enc.count);
1541 if (desc->suite.cipher.dec.vecs)
1542 err = test_cipher(tfm, DECRYPT, desc->suite.cipher.dec.vecs,
1543 desc->suite.cipher.dec.count);
1546 crypto_free_cipher(tfm);
1550 static int alg_test_skcipher(const struct alg_test_desc *desc,
1551 const char *driver, u32 type, u32 mask)
1553 struct crypto_ablkcipher *tfm;
1556 tfm = crypto_alloc_ablkcipher(driver, type, mask);
1558 printk(KERN_ERR "alg: skcipher: Failed to load transform for "
1559 "%s: %ld\n", driver, PTR_ERR(tfm));
1560 return PTR_ERR(tfm);
1563 if (desc->suite.cipher.enc.vecs) {
1564 err = test_skcipher(tfm, ENCRYPT, desc->suite.cipher.enc.vecs,
1565 desc->suite.cipher.enc.count);
1570 if (desc->suite.cipher.dec.vecs)
1571 err = test_skcipher(tfm, DECRYPT, desc->suite.cipher.dec.vecs,
1572 desc->suite.cipher.dec.count);
1575 crypto_free_ablkcipher(tfm);
1579 static int alg_test_comp(const struct alg_test_desc *desc, const char *driver,
1582 struct crypto_comp *tfm;
1585 tfm = crypto_alloc_comp(driver, type, mask);
1587 printk(KERN_ERR "alg: comp: Failed to load transform for %s: "
1588 "%ld\n", driver, PTR_ERR(tfm));
1589 return PTR_ERR(tfm);
1592 err = test_comp(tfm, desc->suite.comp.comp.vecs,
1593 desc->suite.comp.decomp.vecs,
1594 desc->suite.comp.comp.count,
1595 desc->suite.comp.decomp.count);
1597 crypto_free_comp(tfm);
1601 static int alg_test_pcomp(const struct alg_test_desc *desc, const char *driver,
1604 struct crypto_pcomp *tfm;
1607 tfm = crypto_alloc_pcomp(driver, type, mask);
1609 pr_err("alg: pcomp: Failed to load transform for %s: %ld\n",
1610 driver, PTR_ERR(tfm));
1611 return PTR_ERR(tfm);
1614 err = test_pcomp(tfm, desc->suite.pcomp.comp.vecs,
1615 desc->suite.pcomp.decomp.vecs,
1616 desc->suite.pcomp.comp.count,
1617 desc->suite.pcomp.decomp.count);
1619 crypto_free_pcomp(tfm);
1623 static int alg_test_hash(const struct alg_test_desc *desc, const char *driver,
1626 struct crypto_ahash *tfm;
1629 tfm = crypto_alloc_ahash(driver, type, mask);
1631 printk(KERN_ERR "alg: hash: Failed to load transform for %s: "
1632 "%ld\n", driver, PTR_ERR(tfm));
1633 return PTR_ERR(tfm);
1636 err = test_hash(tfm, desc->suite.hash.vecs,
1637 desc->suite.hash.count, true);
1639 err = test_hash(tfm, desc->suite.hash.vecs,
1640 desc->suite.hash.count, false);
1642 crypto_free_ahash(tfm);
1646 static int alg_test_crc32c(const struct alg_test_desc *desc,
1647 const char *driver, u32 type, u32 mask)
1649 struct crypto_shash *tfm;
1653 err = alg_test_hash(desc, driver, type, mask);
1657 tfm = crypto_alloc_shash(driver, type, mask);
1659 printk(KERN_ERR "alg: crc32c: Failed to load transform for %s: "
1660 "%ld\n", driver, PTR_ERR(tfm));
1667 struct shash_desc shash;
1668 char ctx[crypto_shash_descsize(tfm)];
1671 sdesc.shash.tfm = tfm;
1672 sdesc.shash.flags = 0;
1674 *(u32 *)sdesc.ctx = le32_to_cpu(420553207);
1675 err = crypto_shash_final(&sdesc.shash, (u8 *)&val);
1677 printk(KERN_ERR "alg: crc32c: Operation failed for "
1678 "%s: %d\n", driver, err);
1682 if (val != ~420553207) {
1683 printk(KERN_ERR "alg: crc32c: Test failed for %s: "
1684 "%d\n", driver, val);
1689 crypto_free_shash(tfm);
1695 static int alg_test_cprng(const struct alg_test_desc *desc, const char *driver,
1698 struct crypto_rng *rng;
1701 rng = crypto_alloc_rng(driver, type, mask);
1703 printk(KERN_ERR "alg: cprng: Failed to load transform for %s: "
1704 "%ld\n", driver, PTR_ERR(rng));
1705 return PTR_ERR(rng);
1708 err = test_cprng(rng, desc->suite.cprng.vecs, desc->suite.cprng.count);
1710 crypto_free_rng(rng);
1715 static int alg_test_null(const struct alg_test_desc *desc,
1716 const char *driver, u32 type, u32 mask)
1721 /* Please keep this list sorted by algorithm name. */
1722 static const struct alg_test_desc alg_test_descs[] = {
1724 .alg = "__cbc-cast5-avx",
1725 .test = alg_test_null,
1727 .alg = "__cbc-cast6-avx",
1728 .test = alg_test_null,
1730 .alg = "__cbc-serpent-avx",
1731 .test = alg_test_null,
1733 .alg = "__cbc-serpent-avx2",
1734 .test = alg_test_null,
1736 .alg = "__cbc-serpent-sse2",
1737 .test = alg_test_null,
1739 .alg = "__cbc-twofish-avx",
1740 .test = alg_test_null,
1742 .alg = "__driver-cbc-aes-aesni",
1743 .test = alg_test_null,
1746 .alg = "__driver-cbc-camellia-aesni",
1747 .test = alg_test_null,
1749 .alg = "__driver-cbc-camellia-aesni-avx2",
1750 .test = alg_test_null,
1752 .alg = "__driver-cbc-cast5-avx",
1753 .test = alg_test_null,
1755 .alg = "__driver-cbc-cast6-avx",
1756 .test = alg_test_null,
1758 .alg = "__driver-cbc-serpent-avx",
1759 .test = alg_test_null,
1761 .alg = "__driver-cbc-serpent-avx2",
1762 .test = alg_test_null,
1764 .alg = "__driver-cbc-serpent-sse2",
1765 .test = alg_test_null,
1767 .alg = "__driver-cbc-twofish-avx",
1768 .test = alg_test_null,
1770 .alg = "__driver-ecb-aes-aesni",
1771 .test = alg_test_null,
1774 .alg = "__driver-ecb-camellia-aesni",
1775 .test = alg_test_null,
1777 .alg = "__driver-ecb-camellia-aesni-avx2",
1778 .test = alg_test_null,
1780 .alg = "__driver-ecb-cast5-avx",
1781 .test = alg_test_null,
1783 .alg = "__driver-ecb-cast6-avx",
1784 .test = alg_test_null,
1786 .alg = "__driver-ecb-serpent-avx",
1787 .test = alg_test_null,
1789 .alg = "__driver-ecb-serpent-avx2",
1790 .test = alg_test_null,
1792 .alg = "__driver-ecb-serpent-sse2",
1793 .test = alg_test_null,
1795 .alg = "__driver-ecb-twofish-avx",
1796 .test = alg_test_null,
1798 .alg = "__ghash-pclmulqdqni",
1799 .test = alg_test_null,
1802 .alg = "ansi_cprng",
1803 .test = alg_test_cprng,
1807 .vecs = ansi_cprng_aes_tv_template,
1808 .count = ANSI_CPRNG_AES_TEST_VECTORS
1812 .alg = "authenc(hmac(sha1),cbc(aes))",
1813 .test = alg_test_aead,
1818 .vecs = hmac_sha1_aes_cbc_enc_tv_template,
1819 .count = HMAC_SHA1_AES_CBC_ENC_TEST_VECTORS
1824 .alg = "authenc(hmac(sha256),cbc(aes))",
1825 .test = alg_test_aead,
1830 .vecs = hmac_sha256_aes_cbc_enc_tv_template,
1831 .count = HMAC_SHA256_AES_CBC_ENC_TEST_VECTORS
1836 .alg = "authenc(hmac(sha512),cbc(aes))",
1837 .test = alg_test_aead,
1842 .vecs = hmac_sha512_aes_cbc_enc_tv_template,
1843 .count = HMAC_SHA512_AES_CBC_ENC_TEST_VECTORS
1849 .test = alg_test_skcipher,
1854 .vecs = aes_cbc_enc_tv_template,
1855 .count = AES_CBC_ENC_TEST_VECTORS
1858 .vecs = aes_cbc_dec_tv_template,
1859 .count = AES_CBC_DEC_TEST_VECTORS
1864 .alg = "cbc(anubis)",
1865 .test = alg_test_skcipher,
1869 .vecs = anubis_cbc_enc_tv_template,
1870 .count = ANUBIS_CBC_ENC_TEST_VECTORS
1873 .vecs = anubis_cbc_dec_tv_template,
1874 .count = ANUBIS_CBC_DEC_TEST_VECTORS
1879 .alg = "cbc(blowfish)",
1880 .test = alg_test_skcipher,
1884 .vecs = bf_cbc_enc_tv_template,
1885 .count = BF_CBC_ENC_TEST_VECTORS
1888 .vecs = bf_cbc_dec_tv_template,
1889 .count = BF_CBC_DEC_TEST_VECTORS
1894 .alg = "cbc(camellia)",
1895 .test = alg_test_skcipher,
1899 .vecs = camellia_cbc_enc_tv_template,
1900 .count = CAMELLIA_CBC_ENC_TEST_VECTORS
1903 .vecs = camellia_cbc_dec_tv_template,
1904 .count = CAMELLIA_CBC_DEC_TEST_VECTORS
1909 .alg = "cbc(cast5)",
1910 .test = alg_test_skcipher,
1914 .vecs = cast5_cbc_enc_tv_template,
1915 .count = CAST5_CBC_ENC_TEST_VECTORS
1918 .vecs = cast5_cbc_dec_tv_template,
1919 .count = CAST5_CBC_DEC_TEST_VECTORS
1924 .alg = "cbc(cast6)",
1925 .test = alg_test_skcipher,
1929 .vecs = cast6_cbc_enc_tv_template,
1930 .count = CAST6_CBC_ENC_TEST_VECTORS
1933 .vecs = cast6_cbc_dec_tv_template,
1934 .count = CAST6_CBC_DEC_TEST_VECTORS
1940 .test = alg_test_skcipher,
1944 .vecs = des_cbc_enc_tv_template,
1945 .count = DES_CBC_ENC_TEST_VECTORS
1948 .vecs = des_cbc_dec_tv_template,
1949 .count = DES_CBC_DEC_TEST_VECTORS
1954 .alg = "cbc(des3_ede)",
1955 .test = alg_test_skcipher,
1960 .vecs = des3_ede_cbc_enc_tv_template,
1961 .count = DES3_EDE_CBC_ENC_TEST_VECTORS
1964 .vecs = des3_ede_cbc_dec_tv_template,
1965 .count = DES3_EDE_CBC_DEC_TEST_VECTORS
1970 .alg = "cbc(serpent)",
1971 .test = alg_test_skcipher,
1975 .vecs = serpent_cbc_enc_tv_template,
1976 .count = SERPENT_CBC_ENC_TEST_VECTORS
1979 .vecs = serpent_cbc_dec_tv_template,
1980 .count = SERPENT_CBC_DEC_TEST_VECTORS
1985 .alg = "cbc(twofish)",
1986 .test = alg_test_skcipher,
1990 .vecs = tf_cbc_enc_tv_template,
1991 .count = TF_CBC_ENC_TEST_VECTORS
1994 .vecs = tf_cbc_dec_tv_template,
1995 .count = TF_CBC_DEC_TEST_VECTORS
2001 .test = alg_test_aead,
2006 .vecs = aes_ccm_enc_tv_template,
2007 .count = AES_CCM_ENC_TEST_VECTORS
2010 .vecs = aes_ccm_dec_tv_template,
2011 .count = AES_CCM_DEC_TEST_VECTORS
2017 .test = alg_test_hash,
2020 .vecs = aes_cmac128_tv_template,
2021 .count = CMAC_AES_TEST_VECTORS
2025 .alg = "cmac(des3_ede)",
2026 .test = alg_test_hash,
2029 .vecs = des3_ede_cmac64_tv_template,
2030 .count = CMAC_DES3_EDE_TEST_VECTORS
2034 .alg = "compress_null",
2035 .test = alg_test_null,
2038 .test = alg_test_crc32c,
2042 .vecs = crc32c_tv_template,
2043 .count = CRC32C_TEST_VECTORS
2048 .test = alg_test_hash,
2052 .vecs = crct10dif_tv_template,
2053 .count = CRCT10DIF_TEST_VECTORS
2057 .alg = "cryptd(__driver-cbc-aes-aesni)",
2058 .test = alg_test_null,
2061 .alg = "cryptd(__driver-cbc-camellia-aesni)",
2062 .test = alg_test_null,
2064 .alg = "cryptd(__driver-cbc-camellia-aesni-avx2)",
2065 .test = alg_test_null,
2067 .alg = "cryptd(__driver-cbc-serpent-avx2)",
2068 .test = alg_test_null,
2070 .alg = "cryptd(__driver-ecb-aes-aesni)",
2071 .test = alg_test_null,
2074 .alg = "cryptd(__driver-ecb-camellia-aesni)",
2075 .test = alg_test_null,
2077 .alg = "cryptd(__driver-ecb-camellia-aesni-avx2)",
2078 .test = alg_test_null,
2080 .alg = "cryptd(__driver-ecb-cast5-avx)",
2081 .test = alg_test_null,
2083 .alg = "cryptd(__driver-ecb-cast6-avx)",
2084 .test = alg_test_null,
2086 .alg = "cryptd(__driver-ecb-serpent-avx)",
2087 .test = alg_test_null,
2089 .alg = "cryptd(__driver-ecb-serpent-avx2)",
2090 .test = alg_test_null,
2092 .alg = "cryptd(__driver-ecb-serpent-sse2)",
2093 .test = alg_test_null,
2095 .alg = "cryptd(__driver-ecb-twofish-avx)",
2096 .test = alg_test_null,
2098 .alg = "cryptd(__driver-gcm-aes-aesni)",
2099 .test = alg_test_null,
2102 .alg = "cryptd(__ghash-pclmulqdqni)",
2103 .test = alg_test_null,
2107 .test = alg_test_skcipher,
2112 .vecs = aes_ctr_enc_tv_template,
2113 .count = AES_CTR_ENC_TEST_VECTORS
2116 .vecs = aes_ctr_dec_tv_template,
2117 .count = AES_CTR_DEC_TEST_VECTORS
2122 .alg = "ctr(blowfish)",
2123 .test = alg_test_skcipher,
2127 .vecs = bf_ctr_enc_tv_template,
2128 .count = BF_CTR_ENC_TEST_VECTORS
2131 .vecs = bf_ctr_dec_tv_template,
2132 .count = BF_CTR_DEC_TEST_VECTORS
2137 .alg = "ctr(camellia)",
2138 .test = alg_test_skcipher,
2142 .vecs = camellia_ctr_enc_tv_template,
2143 .count = CAMELLIA_CTR_ENC_TEST_VECTORS
2146 .vecs = camellia_ctr_dec_tv_template,
2147 .count = CAMELLIA_CTR_DEC_TEST_VECTORS
2152 .alg = "ctr(cast5)",
2153 .test = alg_test_skcipher,
2157 .vecs = cast5_ctr_enc_tv_template,
2158 .count = CAST5_CTR_ENC_TEST_VECTORS
2161 .vecs = cast5_ctr_dec_tv_template,
2162 .count = CAST5_CTR_DEC_TEST_VECTORS
2167 .alg = "ctr(cast6)",
2168 .test = alg_test_skcipher,
2172 .vecs = cast6_ctr_enc_tv_template,
2173 .count = CAST6_CTR_ENC_TEST_VECTORS
2176 .vecs = cast6_ctr_dec_tv_template,
2177 .count = CAST6_CTR_DEC_TEST_VECTORS
2183 .test = alg_test_skcipher,
2187 .vecs = des_ctr_enc_tv_template,
2188 .count = DES_CTR_ENC_TEST_VECTORS
2191 .vecs = des_ctr_dec_tv_template,
2192 .count = DES_CTR_DEC_TEST_VECTORS
2197 .alg = "ctr(des3_ede)",
2198 .test = alg_test_skcipher,
2202 .vecs = des3_ede_ctr_enc_tv_template,
2203 .count = DES3_EDE_CTR_ENC_TEST_VECTORS
2206 .vecs = des3_ede_ctr_dec_tv_template,
2207 .count = DES3_EDE_CTR_DEC_TEST_VECTORS
2212 .alg = "ctr(serpent)",
2213 .test = alg_test_skcipher,
2217 .vecs = serpent_ctr_enc_tv_template,
2218 .count = SERPENT_CTR_ENC_TEST_VECTORS
2221 .vecs = serpent_ctr_dec_tv_template,
2222 .count = SERPENT_CTR_DEC_TEST_VECTORS
2227 .alg = "ctr(twofish)",
2228 .test = alg_test_skcipher,
2232 .vecs = tf_ctr_enc_tv_template,
2233 .count = TF_CTR_ENC_TEST_VECTORS
2236 .vecs = tf_ctr_dec_tv_template,
2237 .count = TF_CTR_DEC_TEST_VECTORS
2242 .alg = "cts(cbc(aes))",
2243 .test = alg_test_skcipher,
2247 .vecs = cts_mode_enc_tv_template,
2248 .count = CTS_MODE_ENC_TEST_VECTORS
2251 .vecs = cts_mode_dec_tv_template,
2252 .count = CTS_MODE_DEC_TEST_VECTORS
2258 .test = alg_test_comp,
2263 .vecs = deflate_comp_tv_template,
2264 .count = DEFLATE_COMP_TEST_VECTORS
2267 .vecs = deflate_decomp_tv_template,
2268 .count = DEFLATE_DECOMP_TEST_VECTORS
2273 .alg = "digest_null",
2274 .test = alg_test_null,
2276 .alg = "ecb(__aes-aesni)",
2277 .test = alg_test_null,
2281 .test = alg_test_skcipher,
2286 .vecs = aes_enc_tv_template,
2287 .count = AES_ENC_TEST_VECTORS
2290 .vecs = aes_dec_tv_template,
2291 .count = AES_DEC_TEST_VECTORS
2296 .alg = "ecb(anubis)",
2297 .test = alg_test_skcipher,
2301 .vecs = anubis_enc_tv_template,
2302 .count = ANUBIS_ENC_TEST_VECTORS
2305 .vecs = anubis_dec_tv_template,
2306 .count = ANUBIS_DEC_TEST_VECTORS
2312 .test = alg_test_skcipher,
2316 .vecs = arc4_enc_tv_template,
2317 .count = ARC4_ENC_TEST_VECTORS
2320 .vecs = arc4_dec_tv_template,
2321 .count = ARC4_DEC_TEST_VECTORS
2326 .alg = "ecb(blowfish)",
2327 .test = alg_test_skcipher,
2331 .vecs = bf_enc_tv_template,
2332 .count = BF_ENC_TEST_VECTORS
2335 .vecs = bf_dec_tv_template,
2336 .count = BF_DEC_TEST_VECTORS
2341 .alg = "ecb(camellia)",
2342 .test = alg_test_skcipher,
2346 .vecs = camellia_enc_tv_template,
2347 .count = CAMELLIA_ENC_TEST_VECTORS
2350 .vecs = camellia_dec_tv_template,
2351 .count = CAMELLIA_DEC_TEST_VECTORS
2356 .alg = "ecb(cast5)",
2357 .test = alg_test_skcipher,
2361 .vecs = cast5_enc_tv_template,
2362 .count = CAST5_ENC_TEST_VECTORS
2365 .vecs = cast5_dec_tv_template,
2366 .count = CAST5_DEC_TEST_VECTORS
2371 .alg = "ecb(cast6)",
2372 .test = alg_test_skcipher,
2376 .vecs = cast6_enc_tv_template,
2377 .count = CAST6_ENC_TEST_VECTORS
2380 .vecs = cast6_dec_tv_template,
2381 .count = CAST6_DEC_TEST_VECTORS
2386 .alg = "ecb(cipher_null)",
2387 .test = alg_test_null,
2390 .test = alg_test_skcipher,
2395 .vecs = des_enc_tv_template,
2396 .count = DES_ENC_TEST_VECTORS
2399 .vecs = des_dec_tv_template,
2400 .count = DES_DEC_TEST_VECTORS
2405 .alg = "ecb(des3_ede)",
2406 .test = alg_test_skcipher,
2411 .vecs = des3_ede_enc_tv_template,
2412 .count = DES3_EDE_ENC_TEST_VECTORS
2415 .vecs = des3_ede_dec_tv_template,
2416 .count = DES3_EDE_DEC_TEST_VECTORS
2421 .alg = "ecb(fcrypt)",
2422 .test = alg_test_skcipher,
2426 .vecs = fcrypt_pcbc_enc_tv_template,
2430 .vecs = fcrypt_pcbc_dec_tv_template,
2436 .alg = "ecb(khazad)",
2437 .test = alg_test_skcipher,
2441 .vecs = khazad_enc_tv_template,
2442 .count = KHAZAD_ENC_TEST_VECTORS
2445 .vecs = khazad_dec_tv_template,
2446 .count = KHAZAD_DEC_TEST_VECTORS
2452 .test = alg_test_skcipher,
2456 .vecs = seed_enc_tv_template,
2457 .count = SEED_ENC_TEST_VECTORS
2460 .vecs = seed_dec_tv_template,
2461 .count = SEED_DEC_TEST_VECTORS
2466 .alg = "ecb(serpent)",
2467 .test = alg_test_skcipher,
2471 .vecs = serpent_enc_tv_template,
2472 .count = SERPENT_ENC_TEST_VECTORS
2475 .vecs = serpent_dec_tv_template,
2476 .count = SERPENT_DEC_TEST_VECTORS
2482 .test = alg_test_skcipher,
2486 .vecs = tea_enc_tv_template,
2487 .count = TEA_ENC_TEST_VECTORS
2490 .vecs = tea_dec_tv_template,
2491 .count = TEA_DEC_TEST_VECTORS
2496 .alg = "ecb(tnepres)",
2497 .test = alg_test_skcipher,
2501 .vecs = tnepres_enc_tv_template,
2502 .count = TNEPRES_ENC_TEST_VECTORS
2505 .vecs = tnepres_dec_tv_template,
2506 .count = TNEPRES_DEC_TEST_VECTORS
2511 .alg = "ecb(twofish)",
2512 .test = alg_test_skcipher,
2516 .vecs = tf_enc_tv_template,
2517 .count = TF_ENC_TEST_VECTORS
2520 .vecs = tf_dec_tv_template,
2521 .count = TF_DEC_TEST_VECTORS
2527 .test = alg_test_skcipher,
2531 .vecs = xeta_enc_tv_template,
2532 .count = XETA_ENC_TEST_VECTORS
2535 .vecs = xeta_dec_tv_template,
2536 .count = XETA_DEC_TEST_VECTORS
2542 .test = alg_test_skcipher,
2546 .vecs = xtea_enc_tv_template,
2547 .count = XTEA_ENC_TEST_VECTORS
2550 .vecs = xtea_dec_tv_template,
2551 .count = XTEA_DEC_TEST_VECTORS
2557 .test = alg_test_aead,
2562 .vecs = aes_gcm_enc_tv_template,
2563 .count = AES_GCM_ENC_TEST_VECTORS
2566 .vecs = aes_gcm_dec_tv_template,
2567 .count = AES_GCM_DEC_TEST_VECTORS
2573 .test = alg_test_hash,
2577 .vecs = ghash_tv_template,
2578 .count = GHASH_TEST_VECTORS
2582 .alg = "hmac(crc32)",
2583 .test = alg_test_hash,
2586 .vecs = bfin_crc_tv_template,
2587 .count = BFIN_CRC_TEST_VECTORS
2592 .test = alg_test_hash,
2595 .vecs = hmac_md5_tv_template,
2596 .count = HMAC_MD5_TEST_VECTORS
2600 .alg = "hmac(rmd128)",
2601 .test = alg_test_hash,
2604 .vecs = hmac_rmd128_tv_template,
2605 .count = HMAC_RMD128_TEST_VECTORS
2609 .alg = "hmac(rmd160)",
2610 .test = alg_test_hash,
2613 .vecs = hmac_rmd160_tv_template,
2614 .count = HMAC_RMD160_TEST_VECTORS
2618 .alg = "hmac(sha1)",
2619 .test = alg_test_hash,
2623 .vecs = hmac_sha1_tv_template,
2624 .count = HMAC_SHA1_TEST_VECTORS
2628 .alg = "hmac(sha224)",
2629 .test = alg_test_hash,
2633 .vecs = hmac_sha224_tv_template,
2634 .count = HMAC_SHA224_TEST_VECTORS
2638 .alg = "hmac(sha256)",
2639 .test = alg_test_hash,
2643 .vecs = hmac_sha256_tv_template,
2644 .count = HMAC_SHA256_TEST_VECTORS
2648 .alg = "hmac(sha384)",
2649 .test = alg_test_hash,
2653 .vecs = hmac_sha384_tv_template,
2654 .count = HMAC_SHA384_TEST_VECTORS
2658 .alg = "hmac(sha512)",
2659 .test = alg_test_hash,
2663 .vecs = hmac_sha512_tv_template,
2664 .count = HMAC_SHA512_TEST_VECTORS
2669 .test = alg_test_skcipher,
2673 .vecs = aes_lrw_enc_tv_template,
2674 .count = AES_LRW_ENC_TEST_VECTORS
2677 .vecs = aes_lrw_dec_tv_template,
2678 .count = AES_LRW_DEC_TEST_VECTORS
2683 .alg = "lrw(camellia)",
2684 .test = alg_test_skcipher,
2688 .vecs = camellia_lrw_enc_tv_template,
2689 .count = CAMELLIA_LRW_ENC_TEST_VECTORS
2692 .vecs = camellia_lrw_dec_tv_template,
2693 .count = CAMELLIA_LRW_DEC_TEST_VECTORS
2698 .alg = "lrw(cast6)",
2699 .test = alg_test_skcipher,
2703 .vecs = cast6_lrw_enc_tv_template,
2704 .count = CAST6_LRW_ENC_TEST_VECTORS
2707 .vecs = cast6_lrw_dec_tv_template,
2708 .count = CAST6_LRW_DEC_TEST_VECTORS
2713 .alg = "lrw(serpent)",
2714 .test = alg_test_skcipher,
2718 .vecs = serpent_lrw_enc_tv_template,
2719 .count = SERPENT_LRW_ENC_TEST_VECTORS
2722 .vecs = serpent_lrw_dec_tv_template,
2723 .count = SERPENT_LRW_DEC_TEST_VECTORS
2728 .alg = "lrw(twofish)",
2729 .test = alg_test_skcipher,
2733 .vecs = tf_lrw_enc_tv_template,
2734 .count = TF_LRW_ENC_TEST_VECTORS
2737 .vecs = tf_lrw_dec_tv_template,
2738 .count = TF_LRW_DEC_TEST_VECTORS
2744 .test = alg_test_comp,
2749 .vecs = lzo_comp_tv_template,
2750 .count = LZO_COMP_TEST_VECTORS
2753 .vecs = lzo_decomp_tv_template,
2754 .count = LZO_DECOMP_TEST_VECTORS
2760 .test = alg_test_hash,
2763 .vecs = md4_tv_template,
2764 .count = MD4_TEST_VECTORS
2769 .test = alg_test_hash,
2772 .vecs = md5_tv_template,
2773 .count = MD5_TEST_VECTORS
2777 .alg = "michael_mic",
2778 .test = alg_test_hash,
2781 .vecs = michael_mic_tv_template,
2782 .count = MICHAEL_MIC_TEST_VECTORS
2787 .test = alg_test_skcipher,
2792 .vecs = aes_ofb_enc_tv_template,
2793 .count = AES_OFB_ENC_TEST_VECTORS
2796 .vecs = aes_ofb_dec_tv_template,
2797 .count = AES_OFB_DEC_TEST_VECTORS
2802 .alg = "pcbc(fcrypt)",
2803 .test = alg_test_skcipher,
2807 .vecs = fcrypt_pcbc_enc_tv_template,
2808 .count = FCRYPT_ENC_TEST_VECTORS
2811 .vecs = fcrypt_pcbc_dec_tv_template,
2812 .count = FCRYPT_DEC_TEST_VECTORS
2817 .alg = "rfc3686(ctr(aes))",
2818 .test = alg_test_skcipher,
2823 .vecs = aes_ctr_rfc3686_enc_tv_template,
2824 .count = AES_CTR_3686_ENC_TEST_VECTORS
2827 .vecs = aes_ctr_rfc3686_dec_tv_template,
2828 .count = AES_CTR_3686_DEC_TEST_VECTORS
2833 .alg = "rfc4106(gcm(aes))",
2834 .test = alg_test_aead,
2838 .vecs = aes_gcm_rfc4106_enc_tv_template,
2839 .count = AES_GCM_4106_ENC_TEST_VECTORS
2842 .vecs = aes_gcm_rfc4106_dec_tv_template,
2843 .count = AES_GCM_4106_DEC_TEST_VECTORS
2848 .alg = "rfc4309(ccm(aes))",
2849 .test = alg_test_aead,
2854 .vecs = aes_ccm_rfc4309_enc_tv_template,
2855 .count = AES_CCM_4309_ENC_TEST_VECTORS
2858 .vecs = aes_ccm_rfc4309_dec_tv_template,
2859 .count = AES_CCM_4309_DEC_TEST_VECTORS
2864 .alg = "rfc4543(gcm(aes))",
2865 .test = alg_test_aead,
2869 .vecs = aes_gcm_rfc4543_enc_tv_template,
2870 .count = AES_GCM_4543_ENC_TEST_VECTORS
2873 .vecs = aes_gcm_rfc4543_dec_tv_template,
2874 .count = AES_GCM_4543_DEC_TEST_VECTORS
2880 .test = alg_test_hash,
2883 .vecs = rmd128_tv_template,
2884 .count = RMD128_TEST_VECTORS
2889 .test = alg_test_hash,
2892 .vecs = rmd160_tv_template,
2893 .count = RMD160_TEST_VECTORS
2898 .test = alg_test_hash,
2901 .vecs = rmd256_tv_template,
2902 .count = RMD256_TEST_VECTORS
2907 .test = alg_test_hash,
2910 .vecs = rmd320_tv_template,
2911 .count = RMD320_TEST_VECTORS
2916 .test = alg_test_skcipher,
2920 .vecs = salsa20_stream_enc_tv_template,
2921 .count = SALSA20_STREAM_ENC_TEST_VECTORS
2927 .test = alg_test_hash,
2931 .vecs = sha1_tv_template,
2932 .count = SHA1_TEST_VECTORS
2937 .test = alg_test_hash,
2941 .vecs = sha224_tv_template,
2942 .count = SHA224_TEST_VECTORS
2947 .test = alg_test_hash,
2951 .vecs = sha256_tv_template,
2952 .count = SHA256_TEST_VECTORS
2957 .test = alg_test_hash,
2961 .vecs = sha384_tv_template,
2962 .count = SHA384_TEST_VECTORS
2967 .test = alg_test_hash,
2971 .vecs = sha512_tv_template,
2972 .count = SHA512_TEST_VECTORS
2977 .test = alg_test_hash,
2980 .vecs = tgr128_tv_template,
2981 .count = TGR128_TEST_VECTORS
2986 .test = alg_test_hash,
2989 .vecs = tgr160_tv_template,
2990 .count = TGR160_TEST_VECTORS
2995 .test = alg_test_hash,
2998 .vecs = tgr192_tv_template,
2999 .count = TGR192_TEST_VECTORS
3004 .test = alg_test_hash,
3007 .vecs = aes_vmac128_tv_template,
3008 .count = VMAC_AES_TEST_VECTORS
3013 .test = alg_test_hash,
3016 .vecs = wp256_tv_template,
3017 .count = WP256_TEST_VECTORS
3022 .test = alg_test_hash,
3025 .vecs = wp384_tv_template,
3026 .count = WP384_TEST_VECTORS
3031 .test = alg_test_hash,
3034 .vecs = wp512_tv_template,
3035 .count = WP512_TEST_VECTORS
3040 .test = alg_test_hash,
3043 .vecs = aes_xcbc128_tv_template,
3044 .count = XCBC_AES_TEST_VECTORS
3049 .test = alg_test_skcipher,
3054 .vecs = aes_xts_enc_tv_template,
3055 .count = AES_XTS_ENC_TEST_VECTORS
3058 .vecs = aes_xts_dec_tv_template,
3059 .count = AES_XTS_DEC_TEST_VECTORS
3064 .alg = "xts(camellia)",
3065 .test = alg_test_skcipher,
3069 .vecs = camellia_xts_enc_tv_template,
3070 .count = CAMELLIA_XTS_ENC_TEST_VECTORS
3073 .vecs = camellia_xts_dec_tv_template,
3074 .count = CAMELLIA_XTS_DEC_TEST_VECTORS
3079 .alg = "xts(cast6)",
3080 .test = alg_test_skcipher,
3084 .vecs = cast6_xts_enc_tv_template,
3085 .count = CAST6_XTS_ENC_TEST_VECTORS
3088 .vecs = cast6_xts_dec_tv_template,
3089 .count = CAST6_XTS_DEC_TEST_VECTORS
3094 .alg = "xts(serpent)",
3095 .test = alg_test_skcipher,
3099 .vecs = serpent_xts_enc_tv_template,
3100 .count = SERPENT_XTS_ENC_TEST_VECTORS
3103 .vecs = serpent_xts_dec_tv_template,
3104 .count = SERPENT_XTS_DEC_TEST_VECTORS
3109 .alg = "xts(twofish)",
3110 .test = alg_test_skcipher,
3114 .vecs = tf_xts_enc_tv_template,
3115 .count = TF_XTS_ENC_TEST_VECTORS
3118 .vecs = tf_xts_dec_tv_template,
3119 .count = TF_XTS_DEC_TEST_VECTORS
3125 .test = alg_test_pcomp,
3130 .vecs = zlib_comp_tv_template,
3131 .count = ZLIB_COMP_TEST_VECTORS
3134 .vecs = zlib_decomp_tv_template,
3135 .count = ZLIB_DECOMP_TEST_VECTORS
3142 static bool alg_test_descs_checked;
3144 static void alg_test_descs_check_order(void)
3148 /* only check once */
3149 if (alg_test_descs_checked)
3152 alg_test_descs_checked = true;
3154 for (i = 1; i < ARRAY_SIZE(alg_test_descs); i++) {
3155 int diff = strcmp(alg_test_descs[i - 1].alg,
3156 alg_test_descs[i].alg);
3158 if (WARN_ON(diff > 0)) {
3159 pr_warn("testmgr: alg_test_descs entries in wrong order: '%s' before '%s'\n",
3160 alg_test_descs[i - 1].alg,
3161 alg_test_descs[i].alg);
3164 if (WARN_ON(diff == 0)) {
3165 pr_warn("testmgr: duplicate alg_test_descs entry: '%s'\n",
3166 alg_test_descs[i].alg);
3171 static int alg_find_test(const char *alg)
3174 int end = ARRAY_SIZE(alg_test_descs);
3176 while (start < end) {
3177 int i = (start + end) / 2;
3178 int diff = strcmp(alg_test_descs[i].alg, alg);
3196 int alg_test(const char *driver, const char *alg, u32 type, u32 mask)
3202 alg_test_descs_check_order();
3204 if ((type & CRYPTO_ALG_TYPE_MASK) == CRYPTO_ALG_TYPE_CIPHER) {
3205 char nalg[CRYPTO_MAX_ALG_NAME];
3207 if (snprintf(nalg, sizeof(nalg), "ecb(%s)", alg) >=
3209 return -ENAMETOOLONG;
3211 i = alg_find_test(nalg);
3215 if (fips_enabled && !alg_test_descs[i].fips_allowed)
3218 rc = alg_test_cipher(alg_test_descs + i, driver, type, mask);
3222 i = alg_find_test(alg);
3223 j = alg_find_test(driver);
3227 if (fips_enabled && ((i >= 0 && !alg_test_descs[i].fips_allowed) ||
3228 (j >= 0 && !alg_test_descs[j].fips_allowed)))
3233 rc |= alg_test_descs[i].test(alg_test_descs + i, driver,
3235 if (j >= 0 && j != i)
3236 rc |= alg_test_descs[j].test(alg_test_descs + j, driver,
3240 if (fips_enabled && rc)
3241 panic("%s: %s alg self test failed in fips mode!\n", driver, alg);
3243 if (fips_enabled && !rc)
3244 printk(KERN_INFO "alg: self-tests for %s (%s) passed\n",
3250 printk(KERN_INFO "alg: No test for %s (%s)\n", alg, driver);
3256 #endif /* CONFIG_CRYPTO_MANAGER_DISABLE_TESTS */
3258 EXPORT_SYMBOL_GPL(alg_test);