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 INIT_COMPLETION(tr->completion);
187 static int test_hash(struct crypto_ahash *tfm, struct hash_testvec *template,
188 unsigned int tcount, bool use_digest)
190 const char *algo = crypto_tfm_alg_driver_name(crypto_ahash_tfm(tfm));
191 unsigned int i, j, k, temp;
192 struct scatterlist sg[8];
194 struct ahash_request *req;
195 struct tcrypt_result tresult;
197 char *xbuf[XBUFSIZE];
200 if (testmgr_alloc_buf(xbuf))
203 init_completion(&tresult.completion);
205 req = ahash_request_alloc(tfm, GFP_KERNEL);
207 printk(KERN_ERR "alg: hash: Failed to allocate request for "
211 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
212 tcrypt_complete, &tresult);
215 for (i = 0; i < tcount; i++) {
220 memset(result, 0, 64);
224 memcpy(hash_buff, template[i].plaintext, template[i].psize);
225 sg_init_one(&sg[0], hash_buff, template[i].psize);
227 if (template[i].ksize) {
228 crypto_ahash_clear_flags(tfm, ~0);
229 ret = crypto_ahash_setkey(tfm, template[i].key,
232 printk(KERN_ERR "alg: hash: setkey failed on "
233 "test %d for %s: ret=%d\n", j, algo,
239 ahash_request_set_crypt(req, sg, result, template[i].psize);
241 ret = do_one_async_hash_op(req, &tresult,
242 crypto_ahash_digest(req));
244 pr_err("alg: hash: digest failed on test %d "
245 "for %s: ret=%d\n", j, algo, -ret);
249 ret = do_one_async_hash_op(req, &tresult,
250 crypto_ahash_init(req));
252 pr_err("alt: hash: init failed on test %d "
253 "for %s: ret=%d\n", j, algo, -ret);
256 ret = do_one_async_hash_op(req, &tresult,
257 crypto_ahash_update(req));
259 pr_err("alt: hash: update failed on test %d "
260 "for %s: ret=%d\n", j, algo, -ret);
263 ret = do_one_async_hash_op(req, &tresult,
264 crypto_ahash_final(req));
266 pr_err("alt: hash: final failed on test %d "
267 "for %s: ret=%d\n", j, algo, -ret);
272 if (memcmp(result, template[i].digest,
273 crypto_ahash_digestsize(tfm))) {
274 printk(KERN_ERR "alg: hash: Test %d failed for %s\n",
276 hexdump(result, crypto_ahash_digestsize(tfm));
283 for (i = 0; i < tcount; i++) {
284 if (template[i].np) {
286 memset(result, 0, 64);
289 sg_init_table(sg, template[i].np);
291 for (k = 0; k < template[i].np; k++) {
292 if (WARN_ON(offset_in_page(IDX[k]) +
293 template[i].tap[k] > PAGE_SIZE))
296 memcpy(xbuf[IDX[k] >> PAGE_SHIFT] +
297 offset_in_page(IDX[k]),
298 template[i].plaintext + temp,
301 temp += template[i].tap[k];
304 if (template[i].ksize) {
305 crypto_ahash_clear_flags(tfm, ~0);
306 ret = crypto_ahash_setkey(tfm, template[i].key,
310 printk(KERN_ERR "alg: hash: setkey "
311 "failed on chunking test %d "
312 "for %s: ret=%d\n", j, algo,
318 ahash_request_set_crypt(req, sg, result,
320 ret = crypto_ahash_digest(req);
326 ret = wait_for_completion_interruptible(
327 &tresult.completion);
328 if (!ret && !(ret = tresult.err)) {
329 INIT_COMPLETION(tresult.completion);
334 printk(KERN_ERR "alg: hash: digest failed "
335 "on chunking test %d for %s: "
336 "ret=%d\n", j, algo, -ret);
340 if (memcmp(result, template[i].digest,
341 crypto_ahash_digestsize(tfm))) {
342 printk(KERN_ERR "alg: hash: Chunking test %d "
343 "failed for %s\n", j, algo);
344 hexdump(result, crypto_ahash_digestsize(tfm));
354 ahash_request_free(req);
356 testmgr_free_buf(xbuf);
361 static int __test_aead(struct crypto_aead *tfm, int enc,
362 struct aead_testvec *template, unsigned int tcount,
365 const char *algo = crypto_tfm_alg_driver_name(crypto_aead_tfm(tfm));
366 unsigned int i, j, k, n, temp;
370 struct aead_request *req;
371 struct scatterlist *sg;
372 struct scatterlist *asg;
373 struct scatterlist *sgout;
375 struct tcrypt_result result;
376 unsigned int authsize;
381 char *xbuf[XBUFSIZE];
382 char *xoutbuf[XBUFSIZE];
383 char *axbuf[XBUFSIZE];
385 if (testmgr_alloc_buf(xbuf))
387 if (testmgr_alloc_buf(axbuf))
390 if (diff_dst && testmgr_alloc_buf(xoutbuf))
393 /* avoid "the frame size is larger than 1024 bytes" compiler warning */
394 sg = kmalloc(sizeof(*sg) * 8 * (diff_dst ? 3 : 2), GFP_KERNEL);
410 init_completion(&result.completion);
412 req = aead_request_alloc(tfm, GFP_KERNEL);
414 pr_err("alg: aead%s: Failed to allocate request for %s\n",
419 aead_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
420 tcrypt_complete, &result);
422 for (i = 0, j = 0; i < tcount; i++) {
423 if (!template[i].np) {
426 /* some tepmplates have no input data but they will
433 if (WARN_ON(template[i].ilen > PAGE_SIZE ||
434 template[i].alen > PAGE_SIZE))
437 memcpy(input, template[i].input, template[i].ilen);
438 memcpy(assoc, template[i].assoc, template[i].alen);
440 memcpy(iv, template[i].iv, MAX_IVLEN);
442 memset(iv, 0, MAX_IVLEN);
444 crypto_aead_clear_flags(tfm, ~0);
446 crypto_aead_set_flags(
447 tfm, CRYPTO_TFM_REQ_WEAK_KEY);
449 key = template[i].key;
451 ret = crypto_aead_setkey(tfm, key,
453 if (!ret == template[i].fail) {
454 pr_err("alg: aead%s: setkey failed on test %d for %s: flags=%x\n",
455 d, j, algo, crypto_aead_get_flags(tfm));
460 authsize = abs(template[i].rlen - template[i].ilen);
461 ret = crypto_aead_setauthsize(tfm, authsize);
463 pr_err("alg: aead%s: Failed to set authsize to %u on test %d for %s\n",
464 d, authsize, j, algo);
468 sg_init_one(&sg[0], input,
469 template[i].ilen + (enc ? authsize : 0));
473 sg_init_one(&sgout[0], output,
475 (enc ? authsize : 0));
480 sg_init_one(&asg[0], assoc, template[i].alen);
482 aead_request_set_crypt(req, sg, (diff_dst) ? sgout : sg,
483 template[i].ilen, iv);
485 aead_request_set_assoc(req, asg, template[i].alen);
488 crypto_aead_encrypt(req) :
489 crypto_aead_decrypt(req);
493 if (template[i].novrfy) {
494 /* verification was supposed to fail */
495 pr_err("alg: aead%s: %s failed on test %d for %s: ret was 0, expected -EBADMSG\n",
497 /* so really, we got a bad message */
504 ret = wait_for_completion_interruptible(
506 if (!ret && !(ret = result.err)) {
507 INIT_COMPLETION(result.completion);
511 if (template[i].novrfy)
512 /* verification failure was expected */
516 pr_err("alg: aead%s: %s failed on test %d for %s: ret=%d\n",
517 d, e, j, algo, -ret);
522 if (memcmp(q, template[i].result, template[i].rlen)) {
523 pr_err("alg: aead%s: Test %d failed on %s for %s\n",
525 hexdump(q, template[i].rlen);
532 for (i = 0, j = 0; i < tcount; i++) {
533 if (template[i].np) {
537 memcpy(iv, template[i].iv, MAX_IVLEN);
539 memset(iv, 0, MAX_IVLEN);
541 crypto_aead_clear_flags(tfm, ~0);
543 crypto_aead_set_flags(
544 tfm, CRYPTO_TFM_REQ_WEAK_KEY);
545 key = template[i].key;
547 ret = crypto_aead_setkey(tfm, key, template[i].klen);
548 if (!ret == template[i].fail) {
549 pr_err("alg: aead%s: setkey failed on chunk test %d for %s: flags=%x\n",
550 d, j, algo, crypto_aead_get_flags(tfm));
555 authsize = abs(template[i].rlen - template[i].ilen);
558 sg_init_table(sg, template[i].np);
560 sg_init_table(sgout, template[i].np);
561 for (k = 0, temp = 0; k < template[i].np; k++) {
562 if (WARN_ON(offset_in_page(IDX[k]) +
563 template[i].tap[k] > PAGE_SIZE))
566 q = xbuf[IDX[k] >> PAGE_SHIFT] +
567 offset_in_page(IDX[k]);
569 memcpy(q, template[i].input + temp,
572 n = template[i].tap[k];
573 if (k == template[i].np - 1 && enc)
575 if (offset_in_page(q) + n < PAGE_SIZE)
578 sg_set_buf(&sg[k], q, template[i].tap[k]);
581 q = xoutbuf[IDX[k] >> PAGE_SHIFT] +
582 offset_in_page(IDX[k]);
584 memset(q, 0, template[i].tap[k]);
585 if (offset_in_page(q) + n < PAGE_SIZE)
588 sg_set_buf(&sgout[k], q,
592 temp += template[i].tap[k];
595 ret = crypto_aead_setauthsize(tfm, authsize);
597 pr_err("alg: aead%s: Failed to set authsize to %u on chunk test %d for %s\n",
598 d, authsize, j, algo);
603 if (WARN_ON(sg[k - 1].offset +
604 sg[k - 1].length + authsize >
610 sg[k - 1].length += authsize;
613 sgout[k - 1].length += authsize;
616 sg_init_table(asg, template[i].anp);
618 for (k = 0, temp = 0; k < template[i].anp; k++) {
619 if (WARN_ON(offset_in_page(IDX[k]) +
620 template[i].atap[k] > PAGE_SIZE))
623 memcpy(axbuf[IDX[k] >> PAGE_SHIFT] +
624 offset_in_page(IDX[k]),
625 template[i].assoc + temp,
626 template[i].atap[k]),
627 template[i].atap[k]);
628 temp += template[i].atap[k];
631 aead_request_set_crypt(req, sg, (diff_dst) ? sgout : sg,
635 aead_request_set_assoc(req, asg, template[i].alen);
638 crypto_aead_encrypt(req) :
639 crypto_aead_decrypt(req);
643 if (template[i].novrfy) {
644 /* verification was supposed to fail */
645 pr_err("alg: aead%s: %s failed on chunk test %d for %s: ret was 0, expected -EBADMSG\n",
647 /* so really, we got a bad message */
654 ret = wait_for_completion_interruptible(
656 if (!ret && !(ret = result.err)) {
657 INIT_COMPLETION(result.completion);
661 if (template[i].novrfy)
662 /* verification failure was expected */
666 pr_err("alg: aead%s: %s failed on chunk test %d for %s: ret=%d\n",
667 d, e, j, algo, -ret);
672 for (k = 0, temp = 0; k < template[i].np; k++) {
674 q = xoutbuf[IDX[k] >> PAGE_SHIFT] +
675 offset_in_page(IDX[k]);
677 q = xbuf[IDX[k] >> PAGE_SHIFT] +
678 offset_in_page(IDX[k]);
680 n = template[i].tap[k];
681 if (k == template[i].np - 1)
682 n += enc ? authsize : -authsize;
684 if (memcmp(q, template[i].result + temp, n)) {
685 pr_err("alg: aead%s: Chunk test %d failed on %s at page %u for %s\n",
692 if (k == template[i].np - 1 && !enc) {
694 memcmp(q, template[i].input +
700 for (n = 0; offset_in_page(q + n) &&
705 pr_err("alg: aead%s: Result buffer corruption in chunk test %d on %s at page %u for %s: %u bytes:\n",
706 d, j, e, k, algo, n);
711 temp += template[i].tap[k];
719 aead_request_free(req);
723 testmgr_free_buf(xoutbuf);
725 testmgr_free_buf(axbuf);
727 testmgr_free_buf(xbuf);
732 static int test_aead(struct crypto_aead *tfm, int enc,
733 struct aead_testvec *template, unsigned int tcount)
737 /* test 'dst == src' case */
738 ret = __test_aead(tfm, enc, template, tcount, false);
742 /* test 'dst != src' case */
743 return __test_aead(tfm, enc, template, tcount, true);
746 static int test_cipher(struct crypto_cipher *tfm, int enc,
747 struct cipher_testvec *template, unsigned int tcount)
749 const char *algo = crypto_tfm_alg_driver_name(crypto_cipher_tfm(tfm));
750 unsigned int i, j, k;
754 char *xbuf[XBUFSIZE];
757 if (testmgr_alloc_buf(xbuf))
766 for (i = 0; i < tcount; i++) {
773 if (WARN_ON(template[i].ilen > PAGE_SIZE))
777 memcpy(data, template[i].input, template[i].ilen);
779 crypto_cipher_clear_flags(tfm, ~0);
781 crypto_cipher_set_flags(tfm, CRYPTO_TFM_REQ_WEAK_KEY);
783 ret = crypto_cipher_setkey(tfm, template[i].key,
785 if (!ret == template[i].fail) {
786 printk(KERN_ERR "alg: cipher: setkey failed "
787 "on test %d for %s: flags=%x\n", j,
788 algo, crypto_cipher_get_flags(tfm));
793 for (k = 0; k < template[i].ilen;
794 k += crypto_cipher_blocksize(tfm)) {
796 crypto_cipher_encrypt_one(tfm, data + k,
799 crypto_cipher_decrypt_one(tfm, data + k,
804 if (memcmp(q, template[i].result, template[i].rlen)) {
805 printk(KERN_ERR "alg: cipher: Test %d failed "
806 "on %s for %s\n", j, e, algo);
807 hexdump(q, template[i].rlen);
816 testmgr_free_buf(xbuf);
821 static int __test_skcipher(struct crypto_ablkcipher *tfm, int enc,
822 struct cipher_testvec *template, unsigned int tcount,
826 crypto_tfm_alg_driver_name(crypto_ablkcipher_tfm(tfm));
827 unsigned int i, j, k, n, temp;
829 struct ablkcipher_request *req;
830 struct scatterlist sg[8];
831 struct scatterlist sgout[8];
833 struct tcrypt_result result;
836 char *xbuf[XBUFSIZE];
837 char *xoutbuf[XBUFSIZE];
840 if (testmgr_alloc_buf(xbuf))
843 if (diff_dst && testmgr_alloc_buf(xoutbuf))
856 init_completion(&result.completion);
858 req = ablkcipher_request_alloc(tfm, GFP_KERNEL);
860 pr_err("alg: skcipher%s: Failed to allocate request for %s\n",
865 ablkcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
866 tcrypt_complete, &result);
869 for (i = 0; i < tcount; i++) {
871 memcpy(iv, template[i].iv, MAX_IVLEN);
873 memset(iv, 0, MAX_IVLEN);
875 if (!(template[i].np) || (template[i].also_non_np)) {
879 if (WARN_ON(template[i].ilen > PAGE_SIZE))
883 memcpy(data, template[i].input, template[i].ilen);
885 crypto_ablkcipher_clear_flags(tfm, ~0);
887 crypto_ablkcipher_set_flags(
888 tfm, CRYPTO_TFM_REQ_WEAK_KEY);
890 ret = crypto_ablkcipher_setkey(tfm, template[i].key,
892 if (!ret == template[i].fail) {
893 pr_err("alg: skcipher%s: setkey failed on test %d for %s: flags=%x\n",
895 crypto_ablkcipher_get_flags(tfm));
900 sg_init_one(&sg[0], data, template[i].ilen);
903 sg_init_one(&sgout[0], data, template[i].ilen);
906 ablkcipher_request_set_crypt(req, sg,
907 (diff_dst) ? sgout : sg,
908 template[i].ilen, iv);
910 crypto_ablkcipher_encrypt(req) :
911 crypto_ablkcipher_decrypt(req);
918 ret = wait_for_completion_interruptible(
920 if (!ret && !((ret = result.err))) {
921 INIT_COMPLETION(result.completion);
926 pr_err("alg: skcipher%s: %s failed on test %d for %s: ret=%d\n",
927 d, e, j, algo, -ret);
932 if (memcmp(q, template[i].result, template[i].rlen)) {
933 pr_err("alg: skcipher%s: Test %d failed on %s for %s\n",
935 hexdump(q, template[i].rlen);
943 for (i = 0; i < tcount; i++) {
946 memcpy(iv, template[i].iv, MAX_IVLEN);
948 memset(iv, 0, MAX_IVLEN);
950 if (template[i].np) {
953 crypto_ablkcipher_clear_flags(tfm, ~0);
955 crypto_ablkcipher_set_flags(
956 tfm, CRYPTO_TFM_REQ_WEAK_KEY);
958 ret = crypto_ablkcipher_setkey(tfm, template[i].key,
960 if (!ret == template[i].fail) {
961 pr_err("alg: skcipher%s: setkey failed on chunk test %d for %s: flags=%x\n",
963 crypto_ablkcipher_get_flags(tfm));
970 sg_init_table(sg, template[i].np);
972 sg_init_table(sgout, template[i].np);
973 for (k = 0; k < template[i].np; k++) {
974 if (WARN_ON(offset_in_page(IDX[k]) +
975 template[i].tap[k] > PAGE_SIZE))
978 q = xbuf[IDX[k] >> PAGE_SHIFT] +
979 offset_in_page(IDX[k]);
981 memcpy(q, template[i].input + temp,
984 if (offset_in_page(q) + template[i].tap[k] <
986 q[template[i].tap[k]] = 0;
988 sg_set_buf(&sg[k], q, template[i].tap[k]);
990 q = xoutbuf[IDX[k] >> PAGE_SHIFT] +
991 offset_in_page(IDX[k]);
993 sg_set_buf(&sgout[k], q,
996 memset(q, 0, template[i].tap[k]);
997 if (offset_in_page(q) +
998 template[i].tap[k] < PAGE_SIZE)
999 q[template[i].tap[k]] = 0;
1002 temp += template[i].tap[k];
1005 ablkcipher_request_set_crypt(req, sg,
1006 (diff_dst) ? sgout : sg,
1007 template[i].ilen, iv);
1010 crypto_ablkcipher_encrypt(req) :
1011 crypto_ablkcipher_decrypt(req);
1018 ret = wait_for_completion_interruptible(
1019 &result.completion);
1020 if (!ret && !((ret = result.err))) {
1021 INIT_COMPLETION(result.completion);
1026 pr_err("alg: skcipher%s: %s failed on chunk test %d for %s: ret=%d\n",
1027 d, e, j, algo, -ret);
1033 for (k = 0; k < template[i].np; k++) {
1035 q = xoutbuf[IDX[k] >> PAGE_SHIFT] +
1036 offset_in_page(IDX[k]);
1038 q = xbuf[IDX[k] >> PAGE_SHIFT] +
1039 offset_in_page(IDX[k]);
1041 if (memcmp(q, template[i].result + temp,
1042 template[i].tap[k])) {
1043 pr_err("alg: skcipher%s: Chunk test %d failed on %s at page %u for %s\n",
1045 hexdump(q, template[i].tap[k]);
1049 q += template[i].tap[k];
1050 for (n = 0; offset_in_page(q + n) && q[n]; n++)
1053 pr_err("alg: skcipher%s: Result buffer corruption in chunk test %d on %s at page %u for %s: %u bytes:\n",
1054 d, j, e, k, algo, n);
1058 temp += template[i].tap[k];
1066 ablkcipher_request_free(req);
1068 testmgr_free_buf(xoutbuf);
1070 testmgr_free_buf(xbuf);
1075 static int test_skcipher(struct crypto_ablkcipher *tfm, int enc,
1076 struct cipher_testvec *template, unsigned int tcount)
1080 /* test 'dst == src' case */
1081 ret = __test_skcipher(tfm, enc, template, tcount, false);
1085 /* test 'dst != src' case */
1086 return __test_skcipher(tfm, enc, template, tcount, true);
1089 static int test_comp(struct crypto_comp *tfm, struct comp_testvec *ctemplate,
1090 struct comp_testvec *dtemplate, int ctcount, int dtcount)
1092 const char *algo = crypto_tfm_alg_driver_name(crypto_comp_tfm(tfm));
1094 char result[COMP_BUF_SIZE];
1097 for (i = 0; i < ctcount; i++) {
1099 unsigned int dlen = COMP_BUF_SIZE;
1101 memset(result, 0, sizeof (result));
1103 ilen = ctemplate[i].inlen;
1104 ret = crypto_comp_compress(tfm, ctemplate[i].input,
1105 ilen, result, &dlen);
1107 printk(KERN_ERR "alg: comp: compression failed "
1108 "on test %d for %s: ret=%d\n", i + 1, algo,
1113 if (dlen != ctemplate[i].outlen) {
1114 printk(KERN_ERR "alg: comp: Compression test %d "
1115 "failed for %s: output len = %d\n", i + 1, algo,
1121 if (memcmp(result, ctemplate[i].output, dlen)) {
1122 printk(KERN_ERR "alg: comp: Compression test %d "
1123 "failed for %s\n", i + 1, algo);
1124 hexdump(result, dlen);
1130 for (i = 0; i < dtcount; i++) {
1132 unsigned int dlen = COMP_BUF_SIZE;
1134 memset(result, 0, sizeof (result));
1136 ilen = dtemplate[i].inlen;
1137 ret = crypto_comp_decompress(tfm, dtemplate[i].input,
1138 ilen, result, &dlen);
1140 printk(KERN_ERR "alg: comp: decompression failed "
1141 "on test %d for %s: ret=%d\n", i + 1, algo,
1146 if (dlen != dtemplate[i].outlen) {
1147 printk(KERN_ERR "alg: comp: Decompression test %d "
1148 "failed for %s: output len = %d\n", i + 1, algo,
1154 if (memcmp(result, dtemplate[i].output, dlen)) {
1155 printk(KERN_ERR "alg: comp: Decompression test %d "
1156 "failed for %s\n", i + 1, algo);
1157 hexdump(result, dlen);
1169 static int test_pcomp(struct crypto_pcomp *tfm,
1170 struct pcomp_testvec *ctemplate,
1171 struct pcomp_testvec *dtemplate, int ctcount,
1174 const char *algo = crypto_tfm_alg_driver_name(crypto_pcomp_tfm(tfm));
1176 char result[COMP_BUF_SIZE];
1179 for (i = 0; i < ctcount; i++) {
1180 struct comp_request req;
1181 unsigned int produced = 0;
1183 res = crypto_compress_setup(tfm, ctemplate[i].params,
1184 ctemplate[i].paramsize);
1186 pr_err("alg: pcomp: compression setup failed on test "
1187 "%d for %s: error=%d\n", i + 1, algo, res);
1191 res = crypto_compress_init(tfm);
1193 pr_err("alg: pcomp: compression init failed on test "
1194 "%d for %s: error=%d\n", i + 1, algo, res);
1198 memset(result, 0, sizeof(result));
1200 req.next_in = ctemplate[i].input;
1201 req.avail_in = ctemplate[i].inlen / 2;
1202 req.next_out = result;
1203 req.avail_out = ctemplate[i].outlen / 2;
1205 res = crypto_compress_update(tfm, &req);
1206 if (res < 0 && (res != -EAGAIN || req.avail_in)) {
1207 pr_err("alg: pcomp: compression update failed on test "
1208 "%d for %s: error=%d\n", i + 1, algo, res);
1214 /* Add remaining input data */
1215 req.avail_in += (ctemplate[i].inlen + 1) / 2;
1217 res = crypto_compress_update(tfm, &req);
1218 if (res < 0 && (res != -EAGAIN || req.avail_in)) {
1219 pr_err("alg: pcomp: compression update failed on test "
1220 "%d for %s: error=%d\n", i + 1, algo, res);
1226 /* Provide remaining output space */
1227 req.avail_out += COMP_BUF_SIZE - ctemplate[i].outlen / 2;
1229 res = crypto_compress_final(tfm, &req);
1231 pr_err("alg: pcomp: compression final failed on test "
1232 "%d for %s: error=%d\n", i + 1, algo, res);
1237 if (COMP_BUF_SIZE - req.avail_out != ctemplate[i].outlen) {
1238 pr_err("alg: comp: Compression test %d failed for %s: "
1239 "output len = %d (expected %d)\n", i + 1, algo,
1240 COMP_BUF_SIZE - req.avail_out,
1241 ctemplate[i].outlen);
1245 if (produced != ctemplate[i].outlen) {
1246 pr_err("alg: comp: Compression test %d failed for %s: "
1247 "returned len = %u (expected %d)\n", i + 1,
1248 algo, produced, ctemplate[i].outlen);
1252 if (memcmp(result, ctemplate[i].output, ctemplate[i].outlen)) {
1253 pr_err("alg: pcomp: Compression test %d failed for "
1254 "%s\n", i + 1, algo);
1255 hexdump(result, ctemplate[i].outlen);
1260 for (i = 0; i < dtcount; i++) {
1261 struct comp_request req;
1262 unsigned int produced = 0;
1264 res = crypto_decompress_setup(tfm, dtemplate[i].params,
1265 dtemplate[i].paramsize);
1267 pr_err("alg: pcomp: decompression setup failed on "
1268 "test %d for %s: error=%d\n", i + 1, algo, res);
1272 res = crypto_decompress_init(tfm);
1274 pr_err("alg: pcomp: decompression init failed on test "
1275 "%d for %s: error=%d\n", i + 1, algo, res);
1279 memset(result, 0, sizeof(result));
1281 req.next_in = dtemplate[i].input;
1282 req.avail_in = dtemplate[i].inlen / 2;
1283 req.next_out = result;
1284 req.avail_out = dtemplate[i].outlen / 2;
1286 res = crypto_decompress_update(tfm, &req);
1287 if (res < 0 && (res != -EAGAIN || req.avail_in)) {
1288 pr_err("alg: pcomp: decompression update failed on "
1289 "test %d for %s: error=%d\n", i + 1, algo, res);
1295 /* Add remaining input data */
1296 req.avail_in += (dtemplate[i].inlen + 1) / 2;
1298 res = crypto_decompress_update(tfm, &req);
1299 if (res < 0 && (res != -EAGAIN || req.avail_in)) {
1300 pr_err("alg: pcomp: decompression update failed on "
1301 "test %d for %s: error=%d\n", i + 1, algo, res);
1307 /* Provide remaining output space */
1308 req.avail_out += COMP_BUF_SIZE - dtemplate[i].outlen / 2;
1310 res = crypto_decompress_final(tfm, &req);
1311 if (res < 0 && (res != -EAGAIN || req.avail_in)) {
1312 pr_err("alg: pcomp: decompression final failed on "
1313 "test %d for %s: error=%d\n", i + 1, algo, res);
1319 if (COMP_BUF_SIZE - req.avail_out != dtemplate[i].outlen) {
1320 pr_err("alg: comp: Decompression test %d failed for "
1321 "%s: output len = %d (expected %d)\n", i + 1,
1322 algo, COMP_BUF_SIZE - req.avail_out,
1323 dtemplate[i].outlen);
1327 if (produced != dtemplate[i].outlen) {
1328 pr_err("alg: comp: Decompression test %d failed for "
1329 "%s: returned len = %u (expected %d)\n", i + 1,
1330 algo, produced, dtemplate[i].outlen);
1334 if (memcmp(result, dtemplate[i].output, dtemplate[i].outlen)) {
1335 pr_err("alg: pcomp: Decompression test %d failed for "
1336 "%s\n", i + 1, algo);
1337 hexdump(result, dtemplate[i].outlen);
1346 static int test_cprng(struct crypto_rng *tfm, struct cprng_testvec *template,
1347 unsigned int tcount)
1349 const char *algo = crypto_tfm_alg_driver_name(crypto_rng_tfm(tfm));
1350 int err = 0, i, j, seedsize;
1354 seedsize = crypto_rng_seedsize(tfm);
1356 seed = kmalloc(seedsize, GFP_KERNEL);
1358 printk(KERN_ERR "alg: cprng: Failed to allocate seed space "
1363 for (i = 0; i < tcount; i++) {
1364 memset(result, 0, 32);
1366 memcpy(seed, template[i].v, template[i].vlen);
1367 memcpy(seed + template[i].vlen, template[i].key,
1369 memcpy(seed + template[i].vlen + template[i].klen,
1370 template[i].dt, template[i].dtlen);
1372 err = crypto_rng_reset(tfm, seed, seedsize);
1374 printk(KERN_ERR "alg: cprng: Failed to reset rng "
1379 for (j = 0; j < template[i].loops; j++) {
1380 err = crypto_rng_get_bytes(tfm, result,
1382 if (err != template[i].rlen) {
1383 printk(KERN_ERR "alg: cprng: Failed to obtain "
1384 "the correct amount of random data for "
1385 "%s (requested %d, got %d)\n", algo,
1386 template[i].rlen, err);
1391 err = memcmp(result, template[i].result,
1394 printk(KERN_ERR "alg: cprng: Test %d failed for %s\n",
1396 hexdump(result, template[i].rlen);
1407 static int alg_test_aead(const struct alg_test_desc *desc, const char *driver,
1410 struct crypto_aead *tfm;
1413 tfm = crypto_alloc_aead(driver, type, mask);
1415 printk(KERN_ERR "alg: aead: Failed to load transform for %s: "
1416 "%ld\n", driver, PTR_ERR(tfm));
1417 return PTR_ERR(tfm);
1420 if (desc->suite.aead.enc.vecs) {
1421 err = test_aead(tfm, ENCRYPT, desc->suite.aead.enc.vecs,
1422 desc->suite.aead.enc.count);
1427 if (!err && desc->suite.aead.dec.vecs)
1428 err = test_aead(tfm, DECRYPT, desc->suite.aead.dec.vecs,
1429 desc->suite.aead.dec.count);
1432 crypto_free_aead(tfm);
1436 static int alg_test_cipher(const struct alg_test_desc *desc,
1437 const char *driver, u32 type, u32 mask)
1439 struct crypto_cipher *tfm;
1442 tfm = crypto_alloc_cipher(driver, type, mask);
1444 printk(KERN_ERR "alg: cipher: Failed to load transform for "
1445 "%s: %ld\n", driver, PTR_ERR(tfm));
1446 return PTR_ERR(tfm);
1449 if (desc->suite.cipher.enc.vecs) {
1450 err = test_cipher(tfm, ENCRYPT, desc->suite.cipher.enc.vecs,
1451 desc->suite.cipher.enc.count);
1456 if (desc->suite.cipher.dec.vecs)
1457 err = test_cipher(tfm, DECRYPT, desc->suite.cipher.dec.vecs,
1458 desc->suite.cipher.dec.count);
1461 crypto_free_cipher(tfm);
1465 static int alg_test_skcipher(const struct alg_test_desc *desc,
1466 const char *driver, u32 type, u32 mask)
1468 struct crypto_ablkcipher *tfm;
1471 tfm = crypto_alloc_ablkcipher(driver, type, mask);
1473 printk(KERN_ERR "alg: skcipher: Failed to load transform for "
1474 "%s: %ld\n", driver, PTR_ERR(tfm));
1475 return PTR_ERR(tfm);
1478 if (desc->suite.cipher.enc.vecs) {
1479 err = test_skcipher(tfm, ENCRYPT, desc->suite.cipher.enc.vecs,
1480 desc->suite.cipher.enc.count);
1485 if (desc->suite.cipher.dec.vecs)
1486 err = test_skcipher(tfm, DECRYPT, desc->suite.cipher.dec.vecs,
1487 desc->suite.cipher.dec.count);
1490 crypto_free_ablkcipher(tfm);
1494 static int alg_test_comp(const struct alg_test_desc *desc, const char *driver,
1497 struct crypto_comp *tfm;
1500 tfm = crypto_alloc_comp(driver, type, mask);
1502 printk(KERN_ERR "alg: comp: Failed to load transform for %s: "
1503 "%ld\n", driver, PTR_ERR(tfm));
1504 return PTR_ERR(tfm);
1507 err = test_comp(tfm, desc->suite.comp.comp.vecs,
1508 desc->suite.comp.decomp.vecs,
1509 desc->suite.comp.comp.count,
1510 desc->suite.comp.decomp.count);
1512 crypto_free_comp(tfm);
1516 static int alg_test_pcomp(const struct alg_test_desc *desc, const char *driver,
1519 struct crypto_pcomp *tfm;
1522 tfm = crypto_alloc_pcomp(driver, type, mask);
1524 pr_err("alg: pcomp: Failed to load transform for %s: %ld\n",
1525 driver, PTR_ERR(tfm));
1526 return PTR_ERR(tfm);
1529 err = test_pcomp(tfm, desc->suite.pcomp.comp.vecs,
1530 desc->suite.pcomp.decomp.vecs,
1531 desc->suite.pcomp.comp.count,
1532 desc->suite.pcomp.decomp.count);
1534 crypto_free_pcomp(tfm);
1538 static int alg_test_hash(const struct alg_test_desc *desc, const char *driver,
1541 struct crypto_ahash *tfm;
1544 tfm = crypto_alloc_ahash(driver, type, mask);
1546 printk(KERN_ERR "alg: hash: Failed to load transform for %s: "
1547 "%ld\n", driver, PTR_ERR(tfm));
1548 return PTR_ERR(tfm);
1551 err = test_hash(tfm, desc->suite.hash.vecs,
1552 desc->suite.hash.count, true);
1554 err = test_hash(tfm, desc->suite.hash.vecs,
1555 desc->suite.hash.count, false);
1557 crypto_free_ahash(tfm);
1561 static int alg_test_crc32c(const struct alg_test_desc *desc,
1562 const char *driver, u32 type, u32 mask)
1564 struct crypto_shash *tfm;
1568 err = alg_test_hash(desc, driver, type, mask);
1572 tfm = crypto_alloc_shash(driver, type, mask);
1574 printk(KERN_ERR "alg: crc32c: Failed to load transform for %s: "
1575 "%ld\n", driver, PTR_ERR(tfm));
1582 struct shash_desc shash;
1583 char ctx[crypto_shash_descsize(tfm)];
1586 sdesc.shash.tfm = tfm;
1587 sdesc.shash.flags = 0;
1589 *(u32 *)sdesc.ctx = le32_to_cpu(420553207);
1590 err = crypto_shash_final(&sdesc.shash, (u8 *)&val);
1592 printk(KERN_ERR "alg: crc32c: Operation failed for "
1593 "%s: %d\n", driver, err);
1597 if (val != ~420553207) {
1598 printk(KERN_ERR "alg: crc32c: Test failed for %s: "
1599 "%d\n", driver, val);
1604 crypto_free_shash(tfm);
1610 static int alg_test_cprng(const struct alg_test_desc *desc, const char *driver,
1613 struct crypto_rng *rng;
1616 rng = crypto_alloc_rng(driver, type, mask);
1618 printk(KERN_ERR "alg: cprng: Failed to load transform for %s: "
1619 "%ld\n", driver, PTR_ERR(rng));
1620 return PTR_ERR(rng);
1623 err = test_cprng(rng, desc->suite.cprng.vecs, desc->suite.cprng.count);
1625 crypto_free_rng(rng);
1630 static int alg_test_null(const struct alg_test_desc *desc,
1631 const char *driver, u32 type, u32 mask)
1636 /* Please keep this list sorted by algorithm name. */
1637 static const struct alg_test_desc alg_test_descs[] = {
1639 .alg = "__cbc-cast5-avx",
1640 .test = alg_test_null,
1642 .alg = "__cbc-cast6-avx",
1643 .test = alg_test_null,
1645 .alg = "__cbc-serpent-avx",
1646 .test = alg_test_null,
1648 .alg = "__cbc-serpent-avx2",
1649 .test = alg_test_null,
1651 .alg = "__cbc-serpent-sse2",
1652 .test = alg_test_null,
1654 .alg = "__cbc-twofish-avx",
1655 .test = alg_test_null,
1657 .alg = "__cbc-twofish-avx2",
1658 .test = alg_test_null,
1660 .alg = "__driver-cbc-aes-aesni",
1661 .test = alg_test_null,
1664 .alg = "__driver-cbc-blowfish-avx2",
1665 .test = alg_test_null,
1667 .alg = "__driver-cbc-camellia-aesni",
1668 .test = alg_test_null,
1670 .alg = "__driver-cbc-camellia-aesni-avx2",
1671 .test = alg_test_null,
1673 .alg = "__driver-cbc-cast5-avx",
1674 .test = alg_test_null,
1676 .alg = "__driver-cbc-cast6-avx",
1677 .test = alg_test_null,
1679 .alg = "__driver-cbc-serpent-avx",
1680 .test = alg_test_null,
1682 .alg = "__driver-cbc-serpent-avx2",
1683 .test = alg_test_null,
1685 .alg = "__driver-cbc-serpent-sse2",
1686 .test = alg_test_null,
1688 .alg = "__driver-cbc-twofish-avx",
1689 .test = alg_test_null,
1691 .alg = "__driver-cbc-twofish-avx2",
1692 .test = alg_test_null,
1694 .alg = "__driver-ecb-aes-aesni",
1695 .test = alg_test_null,
1698 .alg = "__driver-ecb-blowfish-avx2",
1699 .test = alg_test_null,
1701 .alg = "__driver-ecb-camellia-aesni",
1702 .test = alg_test_null,
1704 .alg = "__driver-ecb-camellia-aesni-avx2",
1705 .test = alg_test_null,
1707 .alg = "__driver-ecb-cast5-avx",
1708 .test = alg_test_null,
1710 .alg = "__driver-ecb-cast6-avx",
1711 .test = alg_test_null,
1713 .alg = "__driver-ecb-serpent-avx",
1714 .test = alg_test_null,
1716 .alg = "__driver-ecb-serpent-avx2",
1717 .test = alg_test_null,
1719 .alg = "__driver-ecb-serpent-sse2",
1720 .test = alg_test_null,
1722 .alg = "__driver-ecb-twofish-avx",
1723 .test = alg_test_null,
1725 .alg = "__driver-ecb-twofish-avx2",
1726 .test = alg_test_null,
1728 .alg = "__ghash-pclmulqdqni",
1729 .test = alg_test_null,
1732 .alg = "ansi_cprng",
1733 .test = alg_test_cprng,
1737 .vecs = ansi_cprng_aes_tv_template,
1738 .count = ANSI_CPRNG_AES_TEST_VECTORS
1742 .alg = "authenc(hmac(sha1),cbc(aes))",
1743 .test = alg_test_aead,
1748 .vecs = hmac_sha1_aes_cbc_enc_tv_template,
1749 .count = HMAC_SHA1_AES_CBC_ENC_TEST_VECTORS
1754 .alg = "authenc(hmac(sha256),cbc(aes))",
1755 .test = alg_test_aead,
1760 .vecs = hmac_sha256_aes_cbc_enc_tv_template,
1761 .count = HMAC_SHA256_AES_CBC_ENC_TEST_VECTORS
1766 .alg = "authenc(hmac(sha512),cbc(aes))",
1767 .test = alg_test_aead,
1772 .vecs = hmac_sha512_aes_cbc_enc_tv_template,
1773 .count = HMAC_SHA512_AES_CBC_ENC_TEST_VECTORS
1779 .test = alg_test_skcipher,
1784 .vecs = aes_cbc_enc_tv_template,
1785 .count = AES_CBC_ENC_TEST_VECTORS
1788 .vecs = aes_cbc_dec_tv_template,
1789 .count = AES_CBC_DEC_TEST_VECTORS
1794 .alg = "cbc(anubis)",
1795 .test = alg_test_skcipher,
1799 .vecs = anubis_cbc_enc_tv_template,
1800 .count = ANUBIS_CBC_ENC_TEST_VECTORS
1803 .vecs = anubis_cbc_dec_tv_template,
1804 .count = ANUBIS_CBC_DEC_TEST_VECTORS
1809 .alg = "cbc(blowfish)",
1810 .test = alg_test_skcipher,
1814 .vecs = bf_cbc_enc_tv_template,
1815 .count = BF_CBC_ENC_TEST_VECTORS
1818 .vecs = bf_cbc_dec_tv_template,
1819 .count = BF_CBC_DEC_TEST_VECTORS
1824 .alg = "cbc(camellia)",
1825 .test = alg_test_skcipher,
1829 .vecs = camellia_cbc_enc_tv_template,
1830 .count = CAMELLIA_CBC_ENC_TEST_VECTORS
1833 .vecs = camellia_cbc_dec_tv_template,
1834 .count = CAMELLIA_CBC_DEC_TEST_VECTORS
1839 .alg = "cbc(cast5)",
1840 .test = alg_test_skcipher,
1844 .vecs = cast5_cbc_enc_tv_template,
1845 .count = CAST5_CBC_ENC_TEST_VECTORS
1848 .vecs = cast5_cbc_dec_tv_template,
1849 .count = CAST5_CBC_DEC_TEST_VECTORS
1854 .alg = "cbc(cast6)",
1855 .test = alg_test_skcipher,
1859 .vecs = cast6_cbc_enc_tv_template,
1860 .count = CAST6_CBC_ENC_TEST_VECTORS
1863 .vecs = cast6_cbc_dec_tv_template,
1864 .count = CAST6_CBC_DEC_TEST_VECTORS
1870 .test = alg_test_skcipher,
1874 .vecs = des_cbc_enc_tv_template,
1875 .count = DES_CBC_ENC_TEST_VECTORS
1878 .vecs = des_cbc_dec_tv_template,
1879 .count = DES_CBC_DEC_TEST_VECTORS
1884 .alg = "cbc(des3_ede)",
1885 .test = alg_test_skcipher,
1890 .vecs = des3_ede_cbc_enc_tv_template,
1891 .count = DES3_EDE_CBC_ENC_TEST_VECTORS
1894 .vecs = des3_ede_cbc_dec_tv_template,
1895 .count = DES3_EDE_CBC_DEC_TEST_VECTORS
1900 .alg = "cbc(serpent)",
1901 .test = alg_test_skcipher,
1905 .vecs = serpent_cbc_enc_tv_template,
1906 .count = SERPENT_CBC_ENC_TEST_VECTORS
1909 .vecs = serpent_cbc_dec_tv_template,
1910 .count = SERPENT_CBC_DEC_TEST_VECTORS
1915 .alg = "cbc(twofish)",
1916 .test = alg_test_skcipher,
1920 .vecs = tf_cbc_enc_tv_template,
1921 .count = TF_CBC_ENC_TEST_VECTORS
1924 .vecs = tf_cbc_dec_tv_template,
1925 .count = TF_CBC_DEC_TEST_VECTORS
1931 .test = alg_test_aead,
1936 .vecs = aes_ccm_enc_tv_template,
1937 .count = AES_CCM_ENC_TEST_VECTORS
1940 .vecs = aes_ccm_dec_tv_template,
1941 .count = AES_CCM_DEC_TEST_VECTORS
1947 .test = alg_test_hash,
1950 .vecs = aes_cmac128_tv_template,
1951 .count = CMAC_AES_TEST_VECTORS
1955 .alg = "cmac(des3_ede)",
1956 .test = alg_test_hash,
1959 .vecs = des3_ede_cmac64_tv_template,
1960 .count = CMAC_DES3_EDE_TEST_VECTORS
1964 .alg = "compress_null",
1965 .test = alg_test_null,
1968 .test = alg_test_crc32c,
1972 .vecs = crc32c_tv_template,
1973 .count = CRC32C_TEST_VECTORS
1978 .test = alg_test_hash,
1982 .vecs = crct10dif_tv_template,
1983 .count = CRCT10DIF_TEST_VECTORS
1987 .alg = "cryptd(__driver-cbc-aes-aesni)",
1988 .test = alg_test_null,
1991 .alg = "cryptd(__driver-cbc-blowfish-avx2)",
1992 .test = alg_test_null,
1994 .alg = "cryptd(__driver-cbc-camellia-aesni)",
1995 .test = alg_test_null,
1997 .alg = "cryptd(__driver-cbc-camellia-aesni-avx2)",
1998 .test = alg_test_null,
2000 .alg = "cryptd(__driver-cbc-serpent-avx2)",
2001 .test = alg_test_null,
2003 .alg = "cryptd(__driver-ecb-aes-aesni)",
2004 .test = alg_test_null,
2007 .alg = "cryptd(__driver-ecb-blowfish-avx2)",
2008 .test = alg_test_null,
2010 .alg = "cryptd(__driver-ecb-camellia-aesni)",
2011 .test = alg_test_null,
2013 .alg = "cryptd(__driver-ecb-camellia-aesni-avx2)",
2014 .test = alg_test_null,
2016 .alg = "cryptd(__driver-ecb-cast5-avx)",
2017 .test = alg_test_null,
2019 .alg = "cryptd(__driver-ecb-cast6-avx)",
2020 .test = alg_test_null,
2022 .alg = "cryptd(__driver-ecb-serpent-avx)",
2023 .test = alg_test_null,
2025 .alg = "cryptd(__driver-ecb-serpent-avx2)",
2026 .test = alg_test_null,
2028 .alg = "cryptd(__driver-ecb-serpent-sse2)",
2029 .test = alg_test_null,
2031 .alg = "cryptd(__driver-ecb-twofish-avx)",
2032 .test = alg_test_null,
2034 .alg = "cryptd(__driver-ecb-twofish-avx2)",
2035 .test = alg_test_null,
2037 .alg = "cryptd(__driver-gcm-aes-aesni)",
2038 .test = alg_test_null,
2041 .alg = "cryptd(__ghash-pclmulqdqni)",
2042 .test = alg_test_null,
2046 .test = alg_test_skcipher,
2051 .vecs = aes_ctr_enc_tv_template,
2052 .count = AES_CTR_ENC_TEST_VECTORS
2055 .vecs = aes_ctr_dec_tv_template,
2056 .count = AES_CTR_DEC_TEST_VECTORS
2061 .alg = "ctr(blowfish)",
2062 .test = alg_test_skcipher,
2066 .vecs = bf_ctr_enc_tv_template,
2067 .count = BF_CTR_ENC_TEST_VECTORS
2070 .vecs = bf_ctr_dec_tv_template,
2071 .count = BF_CTR_DEC_TEST_VECTORS
2076 .alg = "ctr(camellia)",
2077 .test = alg_test_skcipher,
2081 .vecs = camellia_ctr_enc_tv_template,
2082 .count = CAMELLIA_CTR_ENC_TEST_VECTORS
2085 .vecs = camellia_ctr_dec_tv_template,
2086 .count = CAMELLIA_CTR_DEC_TEST_VECTORS
2091 .alg = "ctr(cast5)",
2092 .test = alg_test_skcipher,
2096 .vecs = cast5_ctr_enc_tv_template,
2097 .count = CAST5_CTR_ENC_TEST_VECTORS
2100 .vecs = cast5_ctr_dec_tv_template,
2101 .count = CAST5_CTR_DEC_TEST_VECTORS
2106 .alg = "ctr(cast6)",
2107 .test = alg_test_skcipher,
2111 .vecs = cast6_ctr_enc_tv_template,
2112 .count = CAST6_CTR_ENC_TEST_VECTORS
2115 .vecs = cast6_ctr_dec_tv_template,
2116 .count = CAST6_CTR_DEC_TEST_VECTORS
2122 .test = alg_test_skcipher,
2126 .vecs = des_ctr_enc_tv_template,
2127 .count = DES_CTR_ENC_TEST_VECTORS
2130 .vecs = des_ctr_dec_tv_template,
2131 .count = DES_CTR_DEC_TEST_VECTORS
2136 .alg = "ctr(des3_ede)",
2137 .test = alg_test_skcipher,
2141 .vecs = des3_ede_ctr_enc_tv_template,
2142 .count = DES3_EDE_CTR_ENC_TEST_VECTORS
2145 .vecs = des3_ede_ctr_dec_tv_template,
2146 .count = DES3_EDE_CTR_DEC_TEST_VECTORS
2151 .alg = "ctr(serpent)",
2152 .test = alg_test_skcipher,
2156 .vecs = serpent_ctr_enc_tv_template,
2157 .count = SERPENT_CTR_ENC_TEST_VECTORS
2160 .vecs = serpent_ctr_dec_tv_template,
2161 .count = SERPENT_CTR_DEC_TEST_VECTORS
2166 .alg = "ctr(twofish)",
2167 .test = alg_test_skcipher,
2171 .vecs = tf_ctr_enc_tv_template,
2172 .count = TF_CTR_ENC_TEST_VECTORS
2175 .vecs = tf_ctr_dec_tv_template,
2176 .count = TF_CTR_DEC_TEST_VECTORS
2181 .alg = "cts(cbc(aes))",
2182 .test = alg_test_skcipher,
2186 .vecs = cts_mode_enc_tv_template,
2187 .count = CTS_MODE_ENC_TEST_VECTORS
2190 .vecs = cts_mode_dec_tv_template,
2191 .count = CTS_MODE_DEC_TEST_VECTORS
2197 .test = alg_test_comp,
2202 .vecs = deflate_comp_tv_template,
2203 .count = DEFLATE_COMP_TEST_VECTORS
2206 .vecs = deflate_decomp_tv_template,
2207 .count = DEFLATE_DECOMP_TEST_VECTORS
2212 .alg = "digest_null",
2213 .test = alg_test_null,
2215 .alg = "ecb(__aes-aesni)",
2216 .test = alg_test_null,
2220 .test = alg_test_skcipher,
2225 .vecs = aes_enc_tv_template,
2226 .count = AES_ENC_TEST_VECTORS
2229 .vecs = aes_dec_tv_template,
2230 .count = AES_DEC_TEST_VECTORS
2235 .alg = "ecb(anubis)",
2236 .test = alg_test_skcipher,
2240 .vecs = anubis_enc_tv_template,
2241 .count = ANUBIS_ENC_TEST_VECTORS
2244 .vecs = anubis_dec_tv_template,
2245 .count = ANUBIS_DEC_TEST_VECTORS
2251 .test = alg_test_skcipher,
2255 .vecs = arc4_enc_tv_template,
2256 .count = ARC4_ENC_TEST_VECTORS
2259 .vecs = arc4_dec_tv_template,
2260 .count = ARC4_DEC_TEST_VECTORS
2265 .alg = "ecb(blowfish)",
2266 .test = alg_test_skcipher,
2270 .vecs = bf_enc_tv_template,
2271 .count = BF_ENC_TEST_VECTORS
2274 .vecs = bf_dec_tv_template,
2275 .count = BF_DEC_TEST_VECTORS
2280 .alg = "ecb(camellia)",
2281 .test = alg_test_skcipher,
2285 .vecs = camellia_enc_tv_template,
2286 .count = CAMELLIA_ENC_TEST_VECTORS
2289 .vecs = camellia_dec_tv_template,
2290 .count = CAMELLIA_DEC_TEST_VECTORS
2295 .alg = "ecb(cast5)",
2296 .test = alg_test_skcipher,
2300 .vecs = cast5_enc_tv_template,
2301 .count = CAST5_ENC_TEST_VECTORS
2304 .vecs = cast5_dec_tv_template,
2305 .count = CAST5_DEC_TEST_VECTORS
2310 .alg = "ecb(cast6)",
2311 .test = alg_test_skcipher,
2315 .vecs = cast6_enc_tv_template,
2316 .count = CAST6_ENC_TEST_VECTORS
2319 .vecs = cast6_dec_tv_template,
2320 .count = CAST6_DEC_TEST_VECTORS
2325 .alg = "ecb(cipher_null)",
2326 .test = alg_test_null,
2329 .test = alg_test_skcipher,
2334 .vecs = des_enc_tv_template,
2335 .count = DES_ENC_TEST_VECTORS
2338 .vecs = des_dec_tv_template,
2339 .count = DES_DEC_TEST_VECTORS
2344 .alg = "ecb(des3_ede)",
2345 .test = alg_test_skcipher,
2350 .vecs = des3_ede_enc_tv_template,
2351 .count = DES3_EDE_ENC_TEST_VECTORS
2354 .vecs = des3_ede_dec_tv_template,
2355 .count = DES3_EDE_DEC_TEST_VECTORS
2360 .alg = "ecb(fcrypt)",
2361 .test = alg_test_skcipher,
2365 .vecs = fcrypt_pcbc_enc_tv_template,
2369 .vecs = fcrypt_pcbc_dec_tv_template,
2375 .alg = "ecb(khazad)",
2376 .test = alg_test_skcipher,
2380 .vecs = khazad_enc_tv_template,
2381 .count = KHAZAD_ENC_TEST_VECTORS
2384 .vecs = khazad_dec_tv_template,
2385 .count = KHAZAD_DEC_TEST_VECTORS
2391 .test = alg_test_skcipher,
2395 .vecs = seed_enc_tv_template,
2396 .count = SEED_ENC_TEST_VECTORS
2399 .vecs = seed_dec_tv_template,
2400 .count = SEED_DEC_TEST_VECTORS
2405 .alg = "ecb(serpent)",
2406 .test = alg_test_skcipher,
2410 .vecs = serpent_enc_tv_template,
2411 .count = SERPENT_ENC_TEST_VECTORS
2414 .vecs = serpent_dec_tv_template,
2415 .count = SERPENT_DEC_TEST_VECTORS
2421 .test = alg_test_skcipher,
2425 .vecs = tea_enc_tv_template,
2426 .count = TEA_ENC_TEST_VECTORS
2429 .vecs = tea_dec_tv_template,
2430 .count = TEA_DEC_TEST_VECTORS
2435 .alg = "ecb(tnepres)",
2436 .test = alg_test_skcipher,
2440 .vecs = tnepres_enc_tv_template,
2441 .count = TNEPRES_ENC_TEST_VECTORS
2444 .vecs = tnepres_dec_tv_template,
2445 .count = TNEPRES_DEC_TEST_VECTORS
2450 .alg = "ecb(twofish)",
2451 .test = alg_test_skcipher,
2455 .vecs = tf_enc_tv_template,
2456 .count = TF_ENC_TEST_VECTORS
2459 .vecs = tf_dec_tv_template,
2460 .count = TF_DEC_TEST_VECTORS
2466 .test = alg_test_skcipher,
2470 .vecs = xeta_enc_tv_template,
2471 .count = XETA_ENC_TEST_VECTORS
2474 .vecs = xeta_dec_tv_template,
2475 .count = XETA_DEC_TEST_VECTORS
2481 .test = alg_test_skcipher,
2485 .vecs = xtea_enc_tv_template,
2486 .count = XTEA_ENC_TEST_VECTORS
2489 .vecs = xtea_dec_tv_template,
2490 .count = XTEA_DEC_TEST_VECTORS
2496 .test = alg_test_aead,
2501 .vecs = aes_gcm_enc_tv_template,
2502 .count = AES_GCM_ENC_TEST_VECTORS
2505 .vecs = aes_gcm_dec_tv_template,
2506 .count = AES_GCM_DEC_TEST_VECTORS
2512 .test = alg_test_hash,
2516 .vecs = ghash_tv_template,
2517 .count = GHASH_TEST_VECTORS
2521 .alg = "hmac(crc32)",
2522 .test = alg_test_hash,
2525 .vecs = bfin_crc_tv_template,
2526 .count = BFIN_CRC_TEST_VECTORS
2531 .test = alg_test_hash,
2534 .vecs = hmac_md5_tv_template,
2535 .count = HMAC_MD5_TEST_VECTORS
2539 .alg = "hmac(rmd128)",
2540 .test = alg_test_hash,
2543 .vecs = hmac_rmd128_tv_template,
2544 .count = HMAC_RMD128_TEST_VECTORS
2548 .alg = "hmac(rmd160)",
2549 .test = alg_test_hash,
2552 .vecs = hmac_rmd160_tv_template,
2553 .count = HMAC_RMD160_TEST_VECTORS
2557 .alg = "hmac(sha1)",
2558 .test = alg_test_hash,
2562 .vecs = hmac_sha1_tv_template,
2563 .count = HMAC_SHA1_TEST_VECTORS
2567 .alg = "hmac(sha224)",
2568 .test = alg_test_hash,
2572 .vecs = hmac_sha224_tv_template,
2573 .count = HMAC_SHA224_TEST_VECTORS
2577 .alg = "hmac(sha256)",
2578 .test = alg_test_hash,
2582 .vecs = hmac_sha256_tv_template,
2583 .count = HMAC_SHA256_TEST_VECTORS
2587 .alg = "hmac(sha384)",
2588 .test = alg_test_hash,
2592 .vecs = hmac_sha384_tv_template,
2593 .count = HMAC_SHA384_TEST_VECTORS
2597 .alg = "hmac(sha512)",
2598 .test = alg_test_hash,
2602 .vecs = hmac_sha512_tv_template,
2603 .count = HMAC_SHA512_TEST_VECTORS
2608 .test = alg_test_skcipher,
2612 .vecs = aes_lrw_enc_tv_template,
2613 .count = AES_LRW_ENC_TEST_VECTORS
2616 .vecs = aes_lrw_dec_tv_template,
2617 .count = AES_LRW_DEC_TEST_VECTORS
2622 .alg = "lrw(camellia)",
2623 .test = alg_test_skcipher,
2627 .vecs = camellia_lrw_enc_tv_template,
2628 .count = CAMELLIA_LRW_ENC_TEST_VECTORS
2631 .vecs = camellia_lrw_dec_tv_template,
2632 .count = CAMELLIA_LRW_DEC_TEST_VECTORS
2637 .alg = "lrw(cast6)",
2638 .test = alg_test_skcipher,
2642 .vecs = cast6_lrw_enc_tv_template,
2643 .count = CAST6_LRW_ENC_TEST_VECTORS
2646 .vecs = cast6_lrw_dec_tv_template,
2647 .count = CAST6_LRW_DEC_TEST_VECTORS
2652 .alg = "lrw(serpent)",
2653 .test = alg_test_skcipher,
2657 .vecs = serpent_lrw_enc_tv_template,
2658 .count = SERPENT_LRW_ENC_TEST_VECTORS
2661 .vecs = serpent_lrw_dec_tv_template,
2662 .count = SERPENT_LRW_DEC_TEST_VECTORS
2667 .alg = "lrw(twofish)",
2668 .test = alg_test_skcipher,
2672 .vecs = tf_lrw_enc_tv_template,
2673 .count = TF_LRW_ENC_TEST_VECTORS
2676 .vecs = tf_lrw_dec_tv_template,
2677 .count = TF_LRW_DEC_TEST_VECTORS
2683 .test = alg_test_comp,
2688 .vecs = lzo_comp_tv_template,
2689 .count = LZO_COMP_TEST_VECTORS
2692 .vecs = lzo_decomp_tv_template,
2693 .count = LZO_DECOMP_TEST_VECTORS
2699 .test = alg_test_hash,
2702 .vecs = md4_tv_template,
2703 .count = MD4_TEST_VECTORS
2708 .test = alg_test_hash,
2711 .vecs = md5_tv_template,
2712 .count = MD5_TEST_VECTORS
2716 .alg = "michael_mic",
2717 .test = alg_test_hash,
2720 .vecs = michael_mic_tv_template,
2721 .count = MICHAEL_MIC_TEST_VECTORS
2726 .test = alg_test_skcipher,
2731 .vecs = aes_ofb_enc_tv_template,
2732 .count = AES_OFB_ENC_TEST_VECTORS
2735 .vecs = aes_ofb_dec_tv_template,
2736 .count = AES_OFB_DEC_TEST_VECTORS
2741 .alg = "pcbc(fcrypt)",
2742 .test = alg_test_skcipher,
2746 .vecs = fcrypt_pcbc_enc_tv_template,
2747 .count = FCRYPT_ENC_TEST_VECTORS
2750 .vecs = fcrypt_pcbc_dec_tv_template,
2751 .count = FCRYPT_DEC_TEST_VECTORS
2756 .alg = "rfc3686(ctr(aes))",
2757 .test = alg_test_skcipher,
2762 .vecs = aes_ctr_rfc3686_enc_tv_template,
2763 .count = AES_CTR_3686_ENC_TEST_VECTORS
2766 .vecs = aes_ctr_rfc3686_dec_tv_template,
2767 .count = AES_CTR_3686_DEC_TEST_VECTORS
2772 .alg = "rfc4106(gcm(aes))",
2773 .test = alg_test_aead,
2777 .vecs = aes_gcm_rfc4106_enc_tv_template,
2778 .count = AES_GCM_4106_ENC_TEST_VECTORS
2781 .vecs = aes_gcm_rfc4106_dec_tv_template,
2782 .count = AES_GCM_4106_DEC_TEST_VECTORS
2787 .alg = "rfc4309(ccm(aes))",
2788 .test = alg_test_aead,
2793 .vecs = aes_ccm_rfc4309_enc_tv_template,
2794 .count = AES_CCM_4309_ENC_TEST_VECTORS
2797 .vecs = aes_ccm_rfc4309_dec_tv_template,
2798 .count = AES_CCM_4309_DEC_TEST_VECTORS
2803 .alg = "rfc4543(gcm(aes))",
2804 .test = alg_test_aead,
2808 .vecs = aes_gcm_rfc4543_enc_tv_template,
2809 .count = AES_GCM_4543_ENC_TEST_VECTORS
2812 .vecs = aes_gcm_rfc4543_dec_tv_template,
2813 .count = AES_GCM_4543_DEC_TEST_VECTORS
2819 .test = alg_test_hash,
2822 .vecs = rmd128_tv_template,
2823 .count = RMD128_TEST_VECTORS
2828 .test = alg_test_hash,
2831 .vecs = rmd160_tv_template,
2832 .count = RMD160_TEST_VECTORS
2837 .test = alg_test_hash,
2840 .vecs = rmd256_tv_template,
2841 .count = RMD256_TEST_VECTORS
2846 .test = alg_test_hash,
2849 .vecs = rmd320_tv_template,
2850 .count = RMD320_TEST_VECTORS
2855 .test = alg_test_skcipher,
2859 .vecs = salsa20_stream_enc_tv_template,
2860 .count = SALSA20_STREAM_ENC_TEST_VECTORS
2866 .test = alg_test_hash,
2870 .vecs = sha1_tv_template,
2871 .count = SHA1_TEST_VECTORS
2876 .test = alg_test_hash,
2880 .vecs = sha224_tv_template,
2881 .count = SHA224_TEST_VECTORS
2886 .test = alg_test_hash,
2890 .vecs = sha256_tv_template,
2891 .count = SHA256_TEST_VECTORS
2896 .test = alg_test_hash,
2900 .vecs = sha384_tv_template,
2901 .count = SHA384_TEST_VECTORS
2906 .test = alg_test_hash,
2910 .vecs = sha512_tv_template,
2911 .count = SHA512_TEST_VECTORS
2916 .test = alg_test_hash,
2919 .vecs = tgr128_tv_template,
2920 .count = TGR128_TEST_VECTORS
2925 .test = alg_test_hash,
2928 .vecs = tgr160_tv_template,
2929 .count = TGR160_TEST_VECTORS
2934 .test = alg_test_hash,
2937 .vecs = tgr192_tv_template,
2938 .count = TGR192_TEST_VECTORS
2943 .test = alg_test_hash,
2946 .vecs = aes_vmac128_tv_template,
2947 .count = VMAC_AES_TEST_VECTORS
2952 .test = alg_test_hash,
2955 .vecs = wp256_tv_template,
2956 .count = WP256_TEST_VECTORS
2961 .test = alg_test_hash,
2964 .vecs = wp384_tv_template,
2965 .count = WP384_TEST_VECTORS
2970 .test = alg_test_hash,
2973 .vecs = wp512_tv_template,
2974 .count = WP512_TEST_VECTORS
2979 .test = alg_test_hash,
2982 .vecs = aes_xcbc128_tv_template,
2983 .count = XCBC_AES_TEST_VECTORS
2988 .test = alg_test_skcipher,
2993 .vecs = aes_xts_enc_tv_template,
2994 .count = AES_XTS_ENC_TEST_VECTORS
2997 .vecs = aes_xts_dec_tv_template,
2998 .count = AES_XTS_DEC_TEST_VECTORS
3003 .alg = "xts(camellia)",
3004 .test = alg_test_skcipher,
3008 .vecs = camellia_xts_enc_tv_template,
3009 .count = CAMELLIA_XTS_ENC_TEST_VECTORS
3012 .vecs = camellia_xts_dec_tv_template,
3013 .count = CAMELLIA_XTS_DEC_TEST_VECTORS
3018 .alg = "xts(cast6)",
3019 .test = alg_test_skcipher,
3023 .vecs = cast6_xts_enc_tv_template,
3024 .count = CAST6_XTS_ENC_TEST_VECTORS
3027 .vecs = cast6_xts_dec_tv_template,
3028 .count = CAST6_XTS_DEC_TEST_VECTORS
3033 .alg = "xts(serpent)",
3034 .test = alg_test_skcipher,
3038 .vecs = serpent_xts_enc_tv_template,
3039 .count = SERPENT_XTS_ENC_TEST_VECTORS
3042 .vecs = serpent_xts_dec_tv_template,
3043 .count = SERPENT_XTS_DEC_TEST_VECTORS
3048 .alg = "xts(twofish)",
3049 .test = alg_test_skcipher,
3053 .vecs = tf_xts_enc_tv_template,
3054 .count = TF_XTS_ENC_TEST_VECTORS
3057 .vecs = tf_xts_dec_tv_template,
3058 .count = TF_XTS_DEC_TEST_VECTORS
3064 .test = alg_test_pcomp,
3069 .vecs = zlib_comp_tv_template,
3070 .count = ZLIB_COMP_TEST_VECTORS
3073 .vecs = zlib_decomp_tv_template,
3074 .count = ZLIB_DECOMP_TEST_VECTORS
3081 static int alg_find_test(const char *alg)
3084 int end = ARRAY_SIZE(alg_test_descs);
3086 while (start < end) {
3087 int i = (start + end) / 2;
3088 int diff = strcmp(alg_test_descs[i].alg, alg);
3106 int alg_test(const char *driver, const char *alg, u32 type, u32 mask)
3112 if ((type & CRYPTO_ALG_TYPE_MASK) == CRYPTO_ALG_TYPE_CIPHER) {
3113 char nalg[CRYPTO_MAX_ALG_NAME];
3115 if (snprintf(nalg, sizeof(nalg), "ecb(%s)", alg) >=
3117 return -ENAMETOOLONG;
3119 i = alg_find_test(nalg);
3123 if (fips_enabled && !alg_test_descs[i].fips_allowed)
3126 rc = alg_test_cipher(alg_test_descs + i, driver, type, mask);
3130 i = alg_find_test(alg);
3131 j = alg_find_test(driver);
3135 if (fips_enabled && ((i >= 0 && !alg_test_descs[i].fips_allowed) ||
3136 (j >= 0 && !alg_test_descs[j].fips_allowed)))
3141 rc |= alg_test_descs[i].test(alg_test_descs + i, driver,
3144 rc |= alg_test_descs[j].test(alg_test_descs + j, driver,
3148 if (fips_enabled && rc)
3149 panic("%s: %s alg self test failed in fips mode!\n", driver, alg);
3151 if (fips_enabled && !rc)
3152 printk(KERN_INFO "alg: self-tests for %s (%s) passed\n",
3158 printk(KERN_INFO "alg: No test for %s (%s)\n", alg, driver);
3164 #endif /* CONFIG_CRYPTO_MANAGER_DISABLE_TESTS */
3166 EXPORT_SYMBOL_GPL(alg_test);