1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Quick & dirty crypto testing module.
5 * This will only exist until we have a better testing mechanism
6 * (e.g. a char device).
8 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
9 * Copyright (c) 2002 Jean-Francois Dive <jef@linuxbe.org>
10 * Copyright (c) 2007 Nokia Siemens Networks
12 * Updated RFC4106 AES-GCM testing.
13 * Authors: Aidan O'Mahony (aidan.o.mahony@intel.com)
14 * Adrian Hoban <adrian.hoban@intel.com>
15 * Gabriele Paoloni <gabriele.paoloni@intel.com>
16 * Tadeusz Struk (tadeusz.struk@intel.com)
17 * Copyright (c) 2010, Intel Corporation.
20 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22 #include <crypto/aead.h>
23 #include <crypto/hash.h>
24 #include <crypto/skcipher.h>
25 #include <linux/err.h>
26 #include <linux/fips.h>
27 #include <linux/init.h>
28 #include <linux/gfp.h>
29 #include <linux/module.h>
30 #include <linux/scatterlist.h>
31 #include <linux/string.h>
32 #include <linux/moduleparam.h>
33 #include <linux/jiffies.h>
34 #include <linux/timex.h>
35 #include <linux/interrupt.h>
39 * Need slab memory for testing (size in number of pages).
44 * Used by test_cipher_speed()
49 #define MAX_DIGEST_SIZE 64
52 * return a string with the driver name
54 #define get_driver_name(tfm_type, tfm) crypto_tfm_alg_driver_name(tfm_type ## _tfm(tfm))
57 * Used by test_cipher_speed()
59 static unsigned int sec;
61 static char *alg = NULL;
65 static u32 num_mb = 8;
66 static unsigned int klen;
67 static char *tvmem[TVMEMSIZE];
69 static const char *check[] = {
70 "des", "md5", "des3_ede", "rot13", "sha1", "sha224", "sha256", "sm3",
71 "blowfish", "twofish", "serpent", "sha384", "sha512", "md4", "aes",
72 "cast6", "arc4", "michael_mic", "deflate", "crc32c", "tea", "xtea",
73 "khazad", "wp512", "wp384", "wp256", "xeta", "fcrypt",
74 "camellia", "seed", "rmd160",
75 "lzo", "lzo-rle", "cts", "sha3-224", "sha3-256", "sha3-384",
76 "sha3-512", "streebog256", "streebog512",
80 static const int block_sizes[] = { 16, 64, 128, 256, 1024, 1420, 4096, 0 };
81 static const int aead_sizes[] = { 16, 64, 256, 512, 1024, 1420, 4096, 8192, 0 };
86 static int testmgr_alloc_buf(char *buf[XBUFSIZE])
90 for (i = 0; i < XBUFSIZE; i++) {
91 buf[i] = (void *)__get_free_page(GFP_KERNEL);
100 free_page((unsigned long)buf[i]);
105 static void testmgr_free_buf(char *buf[XBUFSIZE])
109 for (i = 0; i < XBUFSIZE; i++)
110 free_page((unsigned long)buf[i]);
113 static void sg_init_aead(struct scatterlist *sg, char *xbuf[XBUFSIZE],
114 unsigned int buflen, const void *assoc,
115 unsigned int aad_size)
117 int np = (buflen + PAGE_SIZE - 1)/PAGE_SIZE;
124 rem = buflen % PAGE_SIZE;
127 sg_init_table(sg, np + 1);
129 sg_set_buf(&sg[0], assoc, aad_size);
133 for (k = 0; k < np; k++)
134 sg_set_buf(&sg[k + 1], xbuf[k], PAGE_SIZE);
137 sg_set_buf(&sg[k + 1], xbuf[k], rem);
140 static inline int do_one_aead_op(struct aead_request *req, int ret)
142 struct crypto_wait *wait = req->base.data;
144 return crypto_wait_req(ret, wait);
147 struct test_mb_aead_data {
148 struct scatterlist sg[XBUFSIZE];
149 struct scatterlist sgout[XBUFSIZE];
150 struct aead_request *req;
151 struct crypto_wait wait;
152 char *xbuf[XBUFSIZE];
153 char *xoutbuf[XBUFSIZE];
154 char *axbuf[XBUFSIZE];
157 static int do_mult_aead_op(struct test_mb_aead_data *data, int enc,
162 /* Fire up a bunch of concurrent requests */
163 for (i = 0; i < num_mb; i++) {
165 rc[i] = crypto_aead_encrypt(data[i].req);
167 rc[i] = crypto_aead_decrypt(data[i].req);
170 /* Wait for all requests to finish */
171 for (i = 0; i < num_mb; i++) {
172 rc[i] = crypto_wait_req(rc[i], &data[i].wait);
175 pr_info("concurrent request %d error %d\n", i, rc[i]);
183 static int test_mb_aead_jiffies(struct test_mb_aead_data *data, int enc,
184 int blen, int secs, u32 num_mb)
186 unsigned long start, end;
191 rc = kcalloc(num_mb, sizeof(*rc), GFP_KERNEL);
195 for (start = jiffies, end = start + secs * HZ, bcount = 0;
196 time_before(jiffies, end); bcount++) {
197 ret = do_mult_aead_op(data, enc, num_mb, rc);
202 pr_cont("%d operations in %d seconds (%llu bytes)\n",
203 bcount * num_mb, secs, (u64)bcount * blen * num_mb);
210 static int test_mb_aead_cycles(struct test_mb_aead_data *data, int enc,
211 int blen, u32 num_mb)
213 unsigned long cycles = 0;
218 rc = kcalloc(num_mb, sizeof(*rc), GFP_KERNEL);
223 for (i = 0; i < 4; i++) {
224 ret = do_mult_aead_op(data, enc, num_mb, rc);
229 /* The real thing. */
230 for (i = 0; i < 8; i++) {
233 start = get_cycles();
234 ret = do_mult_aead_op(data, enc, num_mb, rc);
240 cycles += end - start;
243 pr_cont("1 operation in %lu cycles (%d bytes)\n",
244 (cycles + 4) / (8 * num_mb), blen);
251 static void test_mb_aead_speed(const char *algo, int enc, int secs,
252 struct aead_speed_template *template,
253 unsigned int tcount, u8 authsize,
254 unsigned int aad_size, u8 *keysize, u32 num_mb)
256 struct test_mb_aead_data *data;
257 struct crypto_aead *tfm;
258 unsigned int i, j, iv_len;
267 if (aad_size >= PAGE_SIZE) {
268 pr_err("associate data length (%u) too big\n", aad_size);
272 iv = kzalloc(MAX_IVLEN, GFP_KERNEL);
281 data = kcalloc(num_mb, sizeof(*data), GFP_KERNEL);
285 tfm = crypto_alloc_aead(algo, 0, 0);
287 pr_err("failed to load transform for %s: %ld\n",
292 ret = crypto_aead_setauthsize(tfm, authsize);
294 pr_err("alg: aead: Failed to setauthsize for %s: %d\n", algo,
299 for (i = 0; i < num_mb; ++i)
300 if (testmgr_alloc_buf(data[i].xbuf)) {
302 testmgr_free_buf(data[i].xbuf);
306 for (i = 0; i < num_mb; ++i)
307 if (testmgr_alloc_buf(data[i].axbuf)) {
309 testmgr_free_buf(data[i].axbuf);
313 for (i = 0; i < num_mb; ++i)
314 if (testmgr_alloc_buf(data[i].xoutbuf)) {
316 testmgr_free_buf(data[i].xoutbuf);
320 for (i = 0; i < num_mb; ++i) {
321 data[i].req = aead_request_alloc(tfm, GFP_KERNEL);
323 pr_err("alg: aead: Failed to allocate request for %s\n",
326 aead_request_free(data[i].req);
327 goto out_free_xoutbuf;
331 for (i = 0; i < num_mb; ++i) {
332 crypto_init_wait(&data[i].wait);
333 aead_request_set_callback(data[i].req,
334 CRYPTO_TFM_REQ_MAY_BACKLOG,
335 crypto_req_done, &data[i].wait);
338 pr_info("\ntesting speed of multibuffer %s (%s) %s\n", algo,
339 get_driver_name(crypto_aead, tfm), e);
345 int bs = round_up(*b_size, crypto_aead_blocksize(tfm));
347 if (bs + authsize > XBUFSIZE * PAGE_SIZE) {
348 pr_err("template (%u) too big for buffer (%lu)\n",
350 XBUFSIZE * PAGE_SIZE);
354 pr_info("test %u (%d bit key, %d byte blocks): ", i,
357 /* Set up tfm global state, i.e. the key */
359 memset(tvmem[0], 0xff, PAGE_SIZE);
361 for (j = 0; j < tcount; j++) {
362 if (template[j].klen == *keysize) {
363 key = template[j].key;
368 crypto_aead_clear_flags(tfm, ~0);
370 ret = crypto_aead_setkey(tfm, key, *keysize);
372 pr_err("setkey() failed flags=%x\n",
373 crypto_aead_get_flags(tfm));
377 iv_len = crypto_aead_ivsize(tfm);
379 memset(iv, 0xff, iv_len);
381 /* Now setup per request stuff, i.e. buffers */
383 for (j = 0; j < num_mb; ++j) {
384 struct test_mb_aead_data *cur = &data[j];
386 assoc = cur->axbuf[0];
387 memset(assoc, 0xff, aad_size);
389 sg_init_aead(cur->sg, cur->xbuf,
390 bs + (enc ? 0 : authsize),
393 sg_init_aead(cur->sgout, cur->xoutbuf,
394 bs + (enc ? authsize : 0),
397 aead_request_set_ad(cur->req, aad_size);
401 aead_request_set_crypt(cur->req,
405 ret = crypto_aead_encrypt(cur->req);
406 ret = do_one_aead_op(cur->req, ret);
409 pr_err("calculating auth failed (%d)\n",
415 aead_request_set_crypt(cur->req, cur->sg,
417 (enc ? 0 : authsize),
423 ret = test_mb_aead_jiffies(data, enc, bs,
427 ret = test_mb_aead_cycles(data, enc, bs,
432 pr_err("%s() failed return code=%d\n", e, ret);
442 for (i = 0; i < num_mb; ++i)
443 aead_request_free(data[i].req);
445 for (i = 0; i < num_mb; ++i)
446 testmgr_free_buf(data[i].xoutbuf);
448 for (i = 0; i < num_mb; ++i)
449 testmgr_free_buf(data[i].axbuf);
451 for (i = 0; i < num_mb; ++i)
452 testmgr_free_buf(data[i].xbuf);
454 crypto_free_aead(tfm);
461 static int test_aead_jiffies(struct aead_request *req, int enc,
464 unsigned long start, end;
468 for (start = jiffies, end = start + secs * HZ, bcount = 0;
469 time_before(jiffies, end); bcount++) {
471 ret = do_one_aead_op(req, crypto_aead_encrypt(req));
473 ret = do_one_aead_op(req, crypto_aead_decrypt(req));
479 pr_cont("%d operations in %d seconds (%llu bytes)\n",
480 bcount, secs, (u64)bcount * blen);
484 static int test_aead_cycles(struct aead_request *req, int enc, int blen)
486 unsigned long cycles = 0;
491 for (i = 0; i < 4; i++) {
493 ret = do_one_aead_op(req, crypto_aead_encrypt(req));
495 ret = do_one_aead_op(req, crypto_aead_decrypt(req));
501 /* The real thing. */
502 for (i = 0; i < 8; i++) {
505 start = get_cycles();
507 ret = do_one_aead_op(req, crypto_aead_encrypt(req));
509 ret = do_one_aead_op(req, crypto_aead_decrypt(req));
515 cycles += end - start;
520 printk("1 operation in %lu cycles (%d bytes)\n",
521 (cycles + 4) / 8, blen);
526 static void test_aead_speed(const char *algo, int enc, unsigned int secs,
527 struct aead_speed_template *template,
528 unsigned int tcount, u8 authsize,
529 unsigned int aad_size, u8 *keysize)
532 struct crypto_aead *tfm;
535 struct aead_request *req;
536 struct scatterlist *sg;
537 struct scatterlist *sgout;
541 char *xbuf[XBUFSIZE];
542 char *xoutbuf[XBUFSIZE];
543 char *axbuf[XBUFSIZE];
546 struct crypto_wait wait;
548 iv = kzalloc(MAX_IVLEN, GFP_KERNEL);
552 if (aad_size >= PAGE_SIZE) {
553 pr_err("associate data length (%u) too big\n", aad_size);
562 if (testmgr_alloc_buf(xbuf))
564 if (testmgr_alloc_buf(axbuf))
566 if (testmgr_alloc_buf(xoutbuf))
569 sg = kmalloc(sizeof(*sg) * 9 * 2, GFP_KERNEL);
574 tfm = crypto_alloc_aead(algo, 0, 0);
576 pr_err("alg: aead: Failed to load transform for %s: %ld\n", algo,
581 ret = crypto_aead_setauthsize(tfm, authsize);
583 pr_err("alg: aead: Failed to setauthsize for %s: %d\n", algo,
588 crypto_init_wait(&wait);
589 printk(KERN_INFO "\ntesting speed of %s (%s) %s\n", algo,
590 get_driver_name(crypto_aead, tfm), e);
592 req = aead_request_alloc(tfm, GFP_KERNEL);
594 pr_err("alg: aead: Failed to allocate request for %s\n",
599 aead_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
600 crypto_req_done, &wait);
606 u32 bs = round_up(*b_size, crypto_aead_blocksize(tfm));
609 memset(assoc, 0xff, aad_size);
611 if ((*keysize + bs) > TVMEMSIZE * PAGE_SIZE) {
612 pr_err("template (%u) too big for tvmem (%lu)\n",
614 TVMEMSIZE * PAGE_SIZE);
619 for (j = 0; j < tcount; j++) {
620 if (template[j].klen == *keysize) {
621 key = template[j].key;
626 ret = crypto_aead_setkey(tfm, key, *keysize);
628 pr_err("setkey() failed flags=%x: %d\n",
629 crypto_aead_get_flags(tfm), ret);
633 iv_len = crypto_aead_ivsize(tfm);
635 memset(iv, 0xff, iv_len);
637 crypto_aead_clear_flags(tfm, ~0);
638 printk(KERN_INFO "test %u (%d bit key, %d byte blocks): ",
639 i, *keysize * 8, bs);
641 memset(tvmem[0], 0xff, PAGE_SIZE);
643 sg_init_aead(sg, xbuf, bs + (enc ? 0 : authsize),
646 sg_init_aead(sgout, xoutbuf,
647 bs + (enc ? authsize : 0), assoc,
650 aead_request_set_ad(req, aad_size);
655 * For decryption we need a proper auth so
656 * we do the encryption path once with buffers
657 * reversed (input <-> output) to calculate it
659 aead_request_set_crypt(req, sgout, sg,
661 ret = do_one_aead_op(req,
662 crypto_aead_encrypt(req));
665 pr_err("calculating auth failed (%d)\n",
671 aead_request_set_crypt(req, sg, sgout,
672 bs + (enc ? 0 : authsize),
676 ret = test_aead_jiffies(req, enc, bs,
680 ret = test_aead_cycles(req, enc, bs);
684 pr_err("%s() failed return code=%d\n", e, ret);
694 aead_request_free(req);
696 crypto_free_aead(tfm);
700 testmgr_free_buf(xoutbuf);
702 testmgr_free_buf(axbuf);
704 testmgr_free_buf(xbuf);
709 static void test_hash_sg_init(struct scatterlist *sg)
713 sg_init_table(sg, TVMEMSIZE);
714 for (i = 0; i < TVMEMSIZE; i++) {
715 sg_set_buf(sg + i, tvmem[i], PAGE_SIZE);
716 memset(tvmem[i], 0xff, PAGE_SIZE);
720 static inline int do_one_ahash_op(struct ahash_request *req, int ret)
722 struct crypto_wait *wait = req->base.data;
724 return crypto_wait_req(ret, wait);
727 struct test_mb_ahash_data {
728 struct scatterlist sg[XBUFSIZE];
730 struct ahash_request *req;
731 struct crypto_wait wait;
732 char *xbuf[XBUFSIZE];
735 static inline int do_mult_ahash_op(struct test_mb_ahash_data *data, u32 num_mb,
740 /* Fire up a bunch of concurrent requests */
741 for (i = 0; i < num_mb; i++)
742 rc[i] = crypto_ahash_digest(data[i].req);
744 /* Wait for all requests to finish */
745 for (i = 0; i < num_mb; i++) {
746 rc[i] = crypto_wait_req(rc[i], &data[i].wait);
749 pr_info("concurrent request %d error %d\n", i, rc[i]);
757 static int test_mb_ahash_jiffies(struct test_mb_ahash_data *data, int blen,
758 int secs, u32 num_mb)
760 unsigned long start, end;
765 rc = kcalloc(num_mb, sizeof(*rc), GFP_KERNEL);
769 for (start = jiffies, end = start + secs * HZ, bcount = 0;
770 time_before(jiffies, end); bcount++) {
771 ret = do_mult_ahash_op(data, num_mb, rc);
776 pr_cont("%d operations in %d seconds (%llu bytes)\n",
777 bcount * num_mb, secs, (u64)bcount * blen * num_mb);
784 static int test_mb_ahash_cycles(struct test_mb_ahash_data *data, int blen,
787 unsigned long cycles = 0;
792 rc = kcalloc(num_mb, sizeof(*rc), GFP_KERNEL);
797 for (i = 0; i < 4; i++) {
798 ret = do_mult_ahash_op(data, num_mb, rc);
803 /* The real thing. */
804 for (i = 0; i < 8; i++) {
807 start = get_cycles();
808 ret = do_mult_ahash_op(data, num_mb, rc);
814 cycles += end - start;
817 pr_cont("1 operation in %lu cycles (%d bytes)\n",
818 (cycles + 4) / (8 * num_mb), blen);
825 static void test_mb_ahash_speed(const char *algo, unsigned int secs,
826 struct hash_speed *speed, u32 num_mb)
828 struct test_mb_ahash_data *data;
829 struct crypto_ahash *tfm;
830 unsigned int i, j, k;
833 data = kcalloc(num_mb, sizeof(*data), GFP_KERNEL);
837 tfm = crypto_alloc_ahash(algo, 0, 0);
839 pr_err("failed to load transform for %s: %ld\n",
844 for (i = 0; i < num_mb; ++i) {
845 if (testmgr_alloc_buf(data[i].xbuf))
848 crypto_init_wait(&data[i].wait);
850 data[i].req = ahash_request_alloc(tfm, GFP_KERNEL);
852 pr_err("alg: hash: Failed to allocate request for %s\n",
857 ahash_request_set_callback(data[i].req, 0, crypto_req_done,
860 sg_init_table(data[i].sg, XBUFSIZE);
861 for (j = 0; j < XBUFSIZE; j++) {
862 sg_set_buf(data[i].sg + j, data[i].xbuf[j], PAGE_SIZE);
863 memset(data[i].xbuf[j], 0xff, PAGE_SIZE);
867 pr_info("\ntesting speed of multibuffer %s (%s)\n", algo,
868 get_driver_name(crypto_ahash, tfm));
870 for (i = 0; speed[i].blen != 0; i++) {
871 /* For some reason this only tests digests. */
872 if (speed[i].blen != speed[i].plen)
875 if (speed[i].blen > XBUFSIZE * PAGE_SIZE) {
876 pr_err("template (%u) too big for tvmem (%lu)\n",
877 speed[i].blen, XBUFSIZE * PAGE_SIZE);
882 crypto_ahash_setkey(tfm, tvmem[0], klen);
884 for (k = 0; k < num_mb; k++)
885 ahash_request_set_crypt(data[k].req, data[k].sg,
886 data[k].result, speed[i].blen);
889 "(%5u byte blocks,%5u bytes per update,%4u updates): ",
890 i, speed[i].blen, speed[i].plen,
891 speed[i].blen / speed[i].plen);
894 ret = test_mb_ahash_jiffies(data, speed[i].blen, secs,
898 ret = test_mb_ahash_cycles(data, speed[i].blen, num_mb);
903 pr_err("At least one hashing failed ret=%d\n", ret);
909 for (k = 0; k < num_mb; ++k)
910 ahash_request_free(data[k].req);
912 for (k = 0; k < num_mb; ++k)
913 testmgr_free_buf(data[k].xbuf);
915 crypto_free_ahash(tfm);
921 static int test_ahash_jiffies_digest(struct ahash_request *req, int blen,
924 unsigned long start, end;
928 for (start = jiffies, end = start + secs * HZ, bcount = 0;
929 time_before(jiffies, end); bcount++) {
930 ret = do_one_ahash_op(req, crypto_ahash_digest(req));
935 printk("%6u opers/sec, %9lu bytes/sec\n",
936 bcount / secs, ((long)bcount * blen) / secs);
941 static int test_ahash_jiffies(struct ahash_request *req, int blen,
942 int plen, char *out, int secs)
944 unsigned long start, end;
949 return test_ahash_jiffies_digest(req, blen, out, secs);
951 for (start = jiffies, end = start + secs * HZ, bcount = 0;
952 time_before(jiffies, end); bcount++) {
953 ret = do_one_ahash_op(req, crypto_ahash_init(req));
956 for (pcount = 0; pcount < blen; pcount += plen) {
957 ret = do_one_ahash_op(req, crypto_ahash_update(req));
961 /* we assume there is enough space in 'out' for the result */
962 ret = do_one_ahash_op(req, crypto_ahash_final(req));
967 pr_cont("%6u opers/sec, %9lu bytes/sec\n",
968 bcount / secs, ((long)bcount * blen) / secs);
973 static int test_ahash_cycles_digest(struct ahash_request *req, int blen,
976 unsigned long cycles = 0;
980 for (i = 0; i < 4; i++) {
981 ret = do_one_ahash_op(req, crypto_ahash_digest(req));
986 /* The real thing. */
987 for (i = 0; i < 8; i++) {
990 start = get_cycles();
992 ret = do_one_ahash_op(req, crypto_ahash_digest(req));
998 cycles += end - start;
1005 pr_cont("%6lu cycles/operation, %4lu cycles/byte\n",
1006 cycles / 8, cycles / (8 * blen));
1011 static int test_ahash_cycles(struct ahash_request *req, int blen,
1012 int plen, char *out)
1014 unsigned long cycles = 0;
1018 return test_ahash_cycles_digest(req, blen, out);
1021 for (i = 0; i < 4; i++) {
1022 ret = do_one_ahash_op(req, crypto_ahash_init(req));
1025 for (pcount = 0; pcount < blen; pcount += plen) {
1026 ret = do_one_ahash_op(req, crypto_ahash_update(req));
1030 ret = do_one_ahash_op(req, crypto_ahash_final(req));
1035 /* The real thing. */
1036 for (i = 0; i < 8; i++) {
1037 cycles_t start, end;
1039 start = get_cycles();
1041 ret = do_one_ahash_op(req, crypto_ahash_init(req));
1044 for (pcount = 0; pcount < blen; pcount += plen) {
1045 ret = do_one_ahash_op(req, crypto_ahash_update(req));
1049 ret = do_one_ahash_op(req, crypto_ahash_final(req));
1055 cycles += end - start;
1062 pr_cont("%6lu cycles/operation, %4lu cycles/byte\n",
1063 cycles / 8, cycles / (8 * blen));
1068 static void test_ahash_speed_common(const char *algo, unsigned int secs,
1069 struct hash_speed *speed, unsigned mask)
1071 struct scatterlist sg[TVMEMSIZE];
1072 struct crypto_wait wait;
1073 struct ahash_request *req;
1074 struct crypto_ahash *tfm;
1078 tfm = crypto_alloc_ahash(algo, 0, mask);
1080 pr_err("failed to load transform for %s: %ld\n",
1081 algo, PTR_ERR(tfm));
1085 printk(KERN_INFO "\ntesting speed of async %s (%s)\n", algo,
1086 get_driver_name(crypto_ahash, tfm));
1088 if (crypto_ahash_digestsize(tfm) > MAX_DIGEST_SIZE) {
1089 pr_err("digestsize(%u) > %d\n", crypto_ahash_digestsize(tfm),
1094 test_hash_sg_init(sg);
1095 req = ahash_request_alloc(tfm, GFP_KERNEL);
1097 pr_err("ahash request allocation failure\n");
1101 crypto_init_wait(&wait);
1102 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
1103 crypto_req_done, &wait);
1105 output = kmalloc(MAX_DIGEST_SIZE, GFP_KERNEL);
1109 for (i = 0; speed[i].blen != 0; i++) {
1110 if (speed[i].blen > TVMEMSIZE * PAGE_SIZE) {
1111 pr_err("template (%u) too big for tvmem (%lu)\n",
1112 speed[i].blen, TVMEMSIZE * PAGE_SIZE);
1117 crypto_ahash_setkey(tfm, tvmem[0], klen);
1120 "(%5u byte blocks,%5u bytes per update,%4u updates): ",
1121 i, speed[i].blen, speed[i].plen, speed[i].blen / speed[i].plen);
1123 ahash_request_set_crypt(req, sg, output, speed[i].plen);
1126 ret = test_ahash_jiffies(req, speed[i].blen,
1127 speed[i].plen, output, secs);
1130 ret = test_ahash_cycles(req, speed[i].blen,
1131 speed[i].plen, output);
1135 pr_err("hashing failed ret=%d\n", ret);
1143 ahash_request_free(req);
1146 crypto_free_ahash(tfm);
1149 static void test_ahash_speed(const char *algo, unsigned int secs,
1150 struct hash_speed *speed)
1152 return test_ahash_speed_common(algo, secs, speed, 0);
1155 static void test_hash_speed(const char *algo, unsigned int secs,
1156 struct hash_speed *speed)
1158 return test_ahash_speed_common(algo, secs, speed, CRYPTO_ALG_ASYNC);
1161 struct test_mb_skcipher_data {
1162 struct scatterlist sg[XBUFSIZE];
1163 struct skcipher_request *req;
1164 struct crypto_wait wait;
1165 char *xbuf[XBUFSIZE];
1168 static int do_mult_acipher_op(struct test_mb_skcipher_data *data, int enc,
1169 u32 num_mb, int *rc)
1173 /* Fire up a bunch of concurrent requests */
1174 for (i = 0; i < num_mb; i++) {
1176 rc[i] = crypto_skcipher_encrypt(data[i].req);
1178 rc[i] = crypto_skcipher_decrypt(data[i].req);
1181 /* Wait for all requests to finish */
1182 for (i = 0; i < num_mb; i++) {
1183 rc[i] = crypto_wait_req(rc[i], &data[i].wait);
1186 pr_info("concurrent request %d error %d\n", i, rc[i]);
1194 static int test_mb_acipher_jiffies(struct test_mb_skcipher_data *data, int enc,
1195 int blen, int secs, u32 num_mb)
1197 unsigned long start, end;
1202 rc = kcalloc(num_mb, sizeof(*rc), GFP_KERNEL);
1206 for (start = jiffies, end = start + secs * HZ, bcount = 0;
1207 time_before(jiffies, end); bcount++) {
1208 ret = do_mult_acipher_op(data, enc, num_mb, rc);
1213 pr_cont("%d operations in %d seconds (%llu bytes)\n",
1214 bcount * num_mb, secs, (u64)bcount * blen * num_mb);
1221 static int test_mb_acipher_cycles(struct test_mb_skcipher_data *data, int enc,
1222 int blen, u32 num_mb)
1224 unsigned long cycles = 0;
1229 rc = kcalloc(num_mb, sizeof(*rc), GFP_KERNEL);
1234 for (i = 0; i < 4; i++) {
1235 ret = do_mult_acipher_op(data, enc, num_mb, rc);
1240 /* The real thing. */
1241 for (i = 0; i < 8; i++) {
1242 cycles_t start, end;
1244 start = get_cycles();
1245 ret = do_mult_acipher_op(data, enc, num_mb, rc);
1251 cycles += end - start;
1254 pr_cont("1 operation in %lu cycles (%d bytes)\n",
1255 (cycles + 4) / (8 * num_mb), blen);
1262 static void test_mb_skcipher_speed(const char *algo, int enc, int secs,
1263 struct cipher_speed_template *template,
1264 unsigned int tcount, u8 *keysize, u32 num_mb)
1266 struct test_mb_skcipher_data *data;
1267 struct crypto_skcipher *tfm;
1268 unsigned int i, j, iv_len;
1280 data = kcalloc(num_mb, sizeof(*data), GFP_KERNEL);
1284 tfm = crypto_alloc_skcipher(algo, 0, 0);
1286 pr_err("failed to load transform for %s: %ld\n",
1287 algo, PTR_ERR(tfm));
1291 for (i = 0; i < num_mb; ++i)
1292 if (testmgr_alloc_buf(data[i].xbuf)) {
1294 testmgr_free_buf(data[i].xbuf);
1299 for (i = 0; i < num_mb; ++i)
1300 if (testmgr_alloc_buf(data[i].xbuf)) {
1302 testmgr_free_buf(data[i].xbuf);
1307 for (i = 0; i < num_mb; ++i) {
1308 data[i].req = skcipher_request_alloc(tfm, GFP_KERNEL);
1310 pr_err("alg: skcipher: Failed to allocate request for %s\n",
1313 skcipher_request_free(data[i].req);
1318 for (i = 0; i < num_mb; ++i) {
1319 skcipher_request_set_callback(data[i].req,
1320 CRYPTO_TFM_REQ_MAY_BACKLOG,
1321 crypto_req_done, &data[i].wait);
1322 crypto_init_wait(&data[i].wait);
1325 pr_info("\ntesting speed of multibuffer %s (%s) %s\n", algo,
1326 get_driver_name(crypto_skcipher, tfm), e);
1330 b_size = block_sizes;
1332 u32 bs = round_up(*b_size, crypto_skcipher_blocksize(tfm));
1334 if (bs > XBUFSIZE * PAGE_SIZE) {
1335 pr_err("template (%u) too big for buffer (%lu)\n",
1336 bs, XBUFSIZE * PAGE_SIZE);
1340 pr_info("test %u (%d bit key, %d byte blocks): ", i,
1343 /* Set up tfm global state, i.e. the key */
1345 memset(tvmem[0], 0xff, PAGE_SIZE);
1347 for (j = 0; j < tcount; j++) {
1348 if (template[j].klen == *keysize) {
1349 key = template[j].key;
1354 crypto_skcipher_clear_flags(tfm, ~0);
1356 ret = crypto_skcipher_setkey(tfm, key, *keysize);
1358 pr_err("setkey() failed flags=%x\n",
1359 crypto_skcipher_get_flags(tfm));
1363 iv_len = crypto_skcipher_ivsize(tfm);
1365 memset(&iv, 0xff, iv_len);
1367 /* Now setup per request stuff, i.e. buffers */
1369 for (j = 0; j < num_mb; ++j) {
1370 struct test_mb_skcipher_data *cur = &data[j];
1371 unsigned int k = bs;
1372 unsigned int pages = DIV_ROUND_UP(k, PAGE_SIZE);
1375 sg_init_table(cur->sg, pages);
1377 while (k > PAGE_SIZE) {
1378 sg_set_buf(cur->sg + p, cur->xbuf[p],
1380 memset(cur->xbuf[p], 0xff, PAGE_SIZE);
1385 sg_set_buf(cur->sg + p, cur->xbuf[p], k);
1386 memset(cur->xbuf[p], 0xff, k);
1388 skcipher_request_set_crypt(cur->req, cur->sg,
1393 ret = test_mb_acipher_jiffies(data, enc,
1398 ret = test_mb_acipher_cycles(data, enc,
1403 pr_err("%s() failed flags=%x\n", e,
1404 crypto_skcipher_get_flags(tfm));
1414 for (i = 0; i < num_mb; ++i)
1415 skcipher_request_free(data[i].req);
1417 for (i = 0; i < num_mb; ++i)
1418 testmgr_free_buf(data[i].xbuf);
1420 crypto_free_skcipher(tfm);
1425 static inline int do_one_acipher_op(struct skcipher_request *req, int ret)
1427 struct crypto_wait *wait = req->base.data;
1429 return crypto_wait_req(ret, wait);
1432 static int test_acipher_jiffies(struct skcipher_request *req, int enc,
1435 unsigned long start, end;
1439 for (start = jiffies, end = start + secs * HZ, bcount = 0;
1440 time_before(jiffies, end); bcount++) {
1442 ret = do_one_acipher_op(req,
1443 crypto_skcipher_encrypt(req));
1445 ret = do_one_acipher_op(req,
1446 crypto_skcipher_decrypt(req));
1452 pr_cont("%d operations in %d seconds (%llu bytes)\n",
1453 bcount, secs, (u64)bcount * blen);
1457 static int test_acipher_cycles(struct skcipher_request *req, int enc,
1460 unsigned long cycles = 0;
1465 for (i = 0; i < 4; i++) {
1467 ret = do_one_acipher_op(req,
1468 crypto_skcipher_encrypt(req));
1470 ret = do_one_acipher_op(req,
1471 crypto_skcipher_decrypt(req));
1477 /* The real thing. */
1478 for (i = 0; i < 8; i++) {
1479 cycles_t start, end;
1481 start = get_cycles();
1483 ret = do_one_acipher_op(req,
1484 crypto_skcipher_encrypt(req));
1486 ret = do_one_acipher_op(req,
1487 crypto_skcipher_decrypt(req));
1493 cycles += end - start;
1498 pr_cont("1 operation in %lu cycles (%d bytes)\n",
1499 (cycles + 4) / 8, blen);
1504 static void test_skcipher_speed(const char *algo, int enc, unsigned int secs,
1505 struct cipher_speed_template *template,
1506 unsigned int tcount, u8 *keysize, bool async)
1508 unsigned int ret, i, j, k, iv_len;
1509 struct crypto_wait wait;
1512 struct skcipher_request *req;
1513 struct crypto_skcipher *tfm;
1522 crypto_init_wait(&wait);
1524 tfm = crypto_alloc_skcipher(algo, 0, async ? 0 : CRYPTO_ALG_ASYNC);
1527 pr_err("failed to load transform for %s: %ld\n", algo,
1532 pr_info("\ntesting speed of %s %s (%s) %s\n", async ? "async" : "sync",
1533 algo, get_driver_name(crypto_skcipher, tfm), e);
1535 req = skcipher_request_alloc(tfm, GFP_KERNEL);
1537 pr_err("tcrypt: skcipher: Failed to allocate request for %s\n",
1542 skcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
1543 crypto_req_done, &wait);
1547 b_size = block_sizes;
1550 u32 bs = round_up(*b_size, crypto_skcipher_blocksize(tfm));
1551 struct scatterlist sg[TVMEMSIZE];
1553 if ((*keysize + bs) > TVMEMSIZE * PAGE_SIZE) {
1554 pr_err("template (%u) too big for "
1555 "tvmem (%lu)\n", *keysize + bs,
1556 TVMEMSIZE * PAGE_SIZE);
1560 pr_info("test %u (%d bit key, %d byte blocks): ", i,
1563 memset(tvmem[0], 0xff, PAGE_SIZE);
1565 /* set key, plain text and IV */
1567 for (j = 0; j < tcount; j++) {
1568 if (template[j].klen == *keysize) {
1569 key = template[j].key;
1574 crypto_skcipher_clear_flags(tfm, ~0);
1576 ret = crypto_skcipher_setkey(tfm, key, *keysize);
1578 pr_err("setkey() failed flags=%x\n",
1579 crypto_skcipher_get_flags(tfm));
1584 sg_init_table(sg, DIV_ROUND_UP(k, PAGE_SIZE));
1586 if (k > PAGE_SIZE) {
1587 sg_set_buf(sg, tvmem[0] + *keysize,
1588 PAGE_SIZE - *keysize);
1591 while (k > PAGE_SIZE) {
1592 sg_set_buf(sg + j, tvmem[j], PAGE_SIZE);
1593 memset(tvmem[j], 0xff, PAGE_SIZE);
1597 sg_set_buf(sg + j, tvmem[j], k);
1598 memset(tvmem[j], 0xff, k);
1600 sg_set_buf(sg, tvmem[0] + *keysize, bs);
1603 iv_len = crypto_skcipher_ivsize(tfm);
1605 memset(&iv, 0xff, iv_len);
1607 skcipher_request_set_crypt(req, sg, sg, bs, iv);
1610 ret = test_acipher_jiffies(req, enc,
1614 ret = test_acipher_cycles(req, enc,
1619 pr_err("%s() failed flags=%x\n", e,
1620 crypto_skcipher_get_flags(tfm));
1630 skcipher_request_free(req);
1632 crypto_free_skcipher(tfm);
1635 static void test_acipher_speed(const char *algo, int enc, unsigned int secs,
1636 struct cipher_speed_template *template,
1637 unsigned int tcount, u8 *keysize)
1639 return test_skcipher_speed(algo, enc, secs, template, tcount, keysize,
1643 static void test_cipher_speed(const char *algo, int enc, unsigned int secs,
1644 struct cipher_speed_template *template,
1645 unsigned int tcount, u8 *keysize)
1647 return test_skcipher_speed(algo, enc, secs, template, tcount, keysize,
1651 static void test_available(void)
1653 const char **name = check;
1656 printk("alg %s ", *name);
1657 printk(crypto_has_alg(*name, 0, 0) ?
1658 "found\n" : "not found\n");
1663 static inline int tcrypt_test(const char *alg)
1667 pr_debug("testing %s\n", alg);
1669 ret = alg_test(alg, alg, 0, 0);
1670 /* non-fips algs return -EINVAL in fips mode */
1671 if (fips_enabled && ret == -EINVAL)
1676 static int do_test(const char *alg, u32 type, u32 mask, int m, u32 num_mb)
1684 if (!crypto_has_alg(alg, type,
1685 mask ?: CRYPTO_ALG_TYPE_MASK))
1690 for (i = 1; i < 200; i++)
1691 ret += do_test(NULL, 0, 0, i, num_mb);
1695 ret += tcrypt_test("md5");
1699 ret += tcrypt_test("sha1");
1703 ret += tcrypt_test("ecb(des)");
1704 ret += tcrypt_test("cbc(des)");
1705 ret += tcrypt_test("ctr(des)");
1709 ret += tcrypt_test("ecb(des3_ede)");
1710 ret += tcrypt_test("cbc(des3_ede)");
1711 ret += tcrypt_test("ctr(des3_ede)");
1715 ret += tcrypt_test("md4");
1719 ret += tcrypt_test("sha256");
1723 ret += tcrypt_test("ecb(blowfish)");
1724 ret += tcrypt_test("cbc(blowfish)");
1725 ret += tcrypt_test("ctr(blowfish)");
1729 ret += tcrypt_test("ecb(twofish)");
1730 ret += tcrypt_test("cbc(twofish)");
1731 ret += tcrypt_test("ctr(twofish)");
1732 ret += tcrypt_test("lrw(twofish)");
1733 ret += tcrypt_test("xts(twofish)");
1737 ret += tcrypt_test("ecb(serpent)");
1738 ret += tcrypt_test("cbc(serpent)");
1739 ret += tcrypt_test("ctr(serpent)");
1740 ret += tcrypt_test("lrw(serpent)");
1741 ret += tcrypt_test("xts(serpent)");
1745 ret += tcrypt_test("ecb(aes)");
1746 ret += tcrypt_test("cbc(aes)");
1747 ret += tcrypt_test("lrw(aes)");
1748 ret += tcrypt_test("xts(aes)");
1749 ret += tcrypt_test("ctr(aes)");
1750 ret += tcrypt_test("rfc3686(ctr(aes))");
1751 ret += tcrypt_test("ofb(aes)");
1752 ret += tcrypt_test("cfb(aes)");
1756 ret += tcrypt_test("sha384");
1760 ret += tcrypt_test("sha512");
1764 ret += tcrypt_test("deflate");
1768 ret += tcrypt_test("ecb(cast5)");
1769 ret += tcrypt_test("cbc(cast5)");
1770 ret += tcrypt_test("ctr(cast5)");
1774 ret += tcrypt_test("ecb(cast6)");
1775 ret += tcrypt_test("cbc(cast6)");
1776 ret += tcrypt_test("ctr(cast6)");
1777 ret += tcrypt_test("lrw(cast6)");
1778 ret += tcrypt_test("xts(cast6)");
1782 ret += tcrypt_test("ecb(arc4)");
1786 ret += tcrypt_test("michael_mic");
1790 ret += tcrypt_test("crc32c");
1794 ret += tcrypt_test("ecb(tea)");
1798 ret += tcrypt_test("ecb(xtea)");
1802 ret += tcrypt_test("ecb(khazad)");
1806 ret += tcrypt_test("wp512");
1810 ret += tcrypt_test("wp384");
1814 ret += tcrypt_test("wp256");
1818 ret += tcrypt_test("ecb(anubis)");
1819 ret += tcrypt_test("cbc(anubis)");
1823 ret += tcrypt_test("ecb(xeta)");
1827 ret += tcrypt_test("pcbc(fcrypt)");
1831 ret += tcrypt_test("ecb(camellia)");
1832 ret += tcrypt_test("cbc(camellia)");
1833 ret += tcrypt_test("ctr(camellia)");
1834 ret += tcrypt_test("lrw(camellia)");
1835 ret += tcrypt_test("xts(camellia)");
1839 ret += tcrypt_test("sha224");
1843 ret += tcrypt_test("gcm(aes)");
1847 ret += tcrypt_test("lzo");
1851 ret += tcrypt_test("ccm(aes)");
1855 ret += tcrypt_test("cts(cbc(aes))");
1859 ret += tcrypt_test("xxhash64");
1863 ret += tcrypt_test("rmd160");
1867 ret += tcrypt_test("blake2b-512");
1871 ret += tcrypt_test("ecb(seed)");
1875 ret += tcrypt_test("rfc4309(ccm(aes))");
1879 ret += tcrypt_test("ghash");
1883 ret += tcrypt_test("crct10dif");
1887 ret += tcrypt_test("sha3-224");
1891 ret += tcrypt_test("sha3-256");
1895 ret += tcrypt_test("sha3-384");
1899 ret += tcrypt_test("sha3-512");
1903 ret += tcrypt_test("sm3");
1907 ret += tcrypt_test("streebog256");
1911 ret += tcrypt_test("streebog512");
1915 ret += tcrypt_test("gcm(sm4)");
1919 ret += tcrypt_test("ccm(sm4)");
1923 ret += tcrypt_test("hmac(md5)");
1927 ret += tcrypt_test("hmac(sha1)");
1931 ret += tcrypt_test("hmac(sha256)");
1935 ret += tcrypt_test("hmac(sha384)");
1939 ret += tcrypt_test("hmac(sha512)");
1943 ret += tcrypt_test("hmac(sha224)");
1947 ret += tcrypt_test("xcbc(aes)");
1951 ret += tcrypt_test("hmac(rmd160)");
1955 ret += tcrypt_test("vmac64(aes)");
1959 ret += tcrypt_test("hmac(sha3-224)");
1963 ret += tcrypt_test("hmac(sha3-256)");
1967 ret += tcrypt_test("hmac(sha3-384)");
1971 ret += tcrypt_test("hmac(sha3-512)");
1975 ret += tcrypt_test("hmac(streebog256)");
1979 ret += tcrypt_test("hmac(streebog512)");
1983 ret += tcrypt_test("ansi_cprng");
1987 ret += tcrypt_test("rfc4106(gcm(aes))");
1991 ret += tcrypt_test("rfc4543(gcm(aes))");
1995 ret += tcrypt_test("cmac(aes)");
1999 ret += tcrypt_test("cmac(des3_ede)");
2003 ret += tcrypt_test("authenc(hmac(sha1),cbc(aes))");
2007 ret += tcrypt_test("authenc(hmac(md5),ecb(cipher_null))");
2011 ret += tcrypt_test("authenc(hmac(sha1),ecb(cipher_null))");
2015 ret += tcrypt_test("cbcmac(sm4)");
2019 ret += tcrypt_test("cmac(sm4)");
2023 ret += tcrypt_test("authenc(hmac(sha1),cbc(des))");
2026 ret += tcrypt_test("authenc(hmac(sha1),cbc(des3_ede))");
2029 ret += tcrypt_test("authenc(hmac(sha224),cbc(des))");
2032 ret += tcrypt_test("authenc(hmac(sha224),cbc(des3_ede))");
2035 ret += tcrypt_test("authenc(hmac(sha256),cbc(des))");
2038 ret += tcrypt_test("authenc(hmac(sha256),cbc(des3_ede))");
2041 ret += tcrypt_test("authenc(hmac(sha384),cbc(des))");
2044 ret += tcrypt_test("authenc(hmac(sha384),cbc(des3_ede))");
2047 ret += tcrypt_test("authenc(hmac(sha512),cbc(des))");
2050 ret += tcrypt_test("authenc(hmac(sha512),cbc(des3_ede))");
2053 ret += tcrypt_test("ecb(sm4)");
2054 ret += tcrypt_test("cbc(sm4)");
2055 ret += tcrypt_test("cfb(sm4)");
2056 ret += tcrypt_test("ctr(sm4)");
2059 test_cipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
2060 speed_template_16_24_32);
2061 test_cipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0,
2062 speed_template_16_24_32);
2063 test_cipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0,
2064 speed_template_16_24_32);
2065 test_cipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0,
2066 speed_template_16_24_32);
2067 test_cipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0,
2068 speed_template_32_40_48);
2069 test_cipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0,
2070 speed_template_32_40_48);
2071 test_cipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0,
2072 speed_template_32_64);
2073 test_cipher_speed("xts(aes)", DECRYPT, sec, NULL, 0,
2074 speed_template_32_64);
2075 test_cipher_speed("cts(cbc(aes))", ENCRYPT, sec, NULL, 0,
2076 speed_template_16_24_32);
2077 test_cipher_speed("cts(cbc(aes))", DECRYPT, sec, NULL, 0,
2078 speed_template_16_24_32);
2079 test_cipher_speed("ctr(aes)", ENCRYPT, sec, NULL, 0,
2080 speed_template_16_24_32);
2081 test_cipher_speed("ctr(aes)", DECRYPT, sec, NULL, 0,
2082 speed_template_16_24_32);
2083 test_cipher_speed("cfb(aes)", ENCRYPT, sec, NULL, 0,
2084 speed_template_16_24_32);
2085 test_cipher_speed("cfb(aes)", DECRYPT, sec, NULL, 0,
2086 speed_template_16_24_32);
2090 test_cipher_speed("ecb(des3_ede)", ENCRYPT, sec,
2091 des3_speed_template, DES3_SPEED_VECTORS,
2093 test_cipher_speed("ecb(des3_ede)", DECRYPT, sec,
2094 des3_speed_template, DES3_SPEED_VECTORS,
2096 test_cipher_speed("cbc(des3_ede)", ENCRYPT, sec,
2097 des3_speed_template, DES3_SPEED_VECTORS,
2099 test_cipher_speed("cbc(des3_ede)", DECRYPT, sec,
2100 des3_speed_template, DES3_SPEED_VECTORS,
2102 test_cipher_speed("ctr(des3_ede)", ENCRYPT, sec,
2103 des3_speed_template, DES3_SPEED_VECTORS,
2105 test_cipher_speed("ctr(des3_ede)", DECRYPT, sec,
2106 des3_speed_template, DES3_SPEED_VECTORS,
2111 test_cipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0,
2112 speed_template_16_24_32);
2113 test_cipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0,
2114 speed_template_16_24_32);
2115 test_cipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0,
2116 speed_template_16_24_32);
2117 test_cipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0,
2118 speed_template_16_24_32);
2119 test_cipher_speed("ctr(twofish)", ENCRYPT, sec, NULL, 0,
2120 speed_template_16_24_32);
2121 test_cipher_speed("ctr(twofish)", DECRYPT, sec, NULL, 0,
2122 speed_template_16_24_32);
2123 test_cipher_speed("lrw(twofish)", ENCRYPT, sec, NULL, 0,
2124 speed_template_32_40_48);
2125 test_cipher_speed("lrw(twofish)", DECRYPT, sec, NULL, 0,
2126 speed_template_32_40_48);
2127 test_cipher_speed("xts(twofish)", ENCRYPT, sec, NULL, 0,
2128 speed_template_32_48_64);
2129 test_cipher_speed("xts(twofish)", DECRYPT, sec, NULL, 0,
2130 speed_template_32_48_64);
2134 test_cipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0,
2135 speed_template_8_32);
2136 test_cipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0,
2137 speed_template_8_32);
2138 test_cipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0,
2139 speed_template_8_32);
2140 test_cipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0,
2141 speed_template_8_32);
2142 test_cipher_speed("ctr(blowfish)", ENCRYPT, sec, NULL, 0,
2143 speed_template_8_32);
2144 test_cipher_speed("ctr(blowfish)", DECRYPT, sec, NULL, 0,
2145 speed_template_8_32);
2149 test_cipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0,
2151 test_cipher_speed("ecb(des)", DECRYPT, sec, NULL, 0,
2153 test_cipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0,
2155 test_cipher_speed("cbc(des)", DECRYPT, sec, NULL, 0,
2160 test_cipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0,
2161 speed_template_16_24_32);
2162 test_cipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0,
2163 speed_template_16_24_32);
2164 test_cipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0,
2165 speed_template_16_24_32);
2166 test_cipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
2167 speed_template_16_24_32);
2168 test_cipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0,
2169 speed_template_16_24_32);
2170 test_cipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0,
2171 speed_template_16_24_32);
2172 test_cipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0,
2173 speed_template_32_40_48);
2174 test_cipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0,
2175 speed_template_32_40_48);
2176 test_cipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0,
2177 speed_template_32_48_64);
2178 test_cipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0,
2179 speed_template_32_48_64);
2183 test_cipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0,
2184 speed_template_16_32);
2185 test_cipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0,
2186 speed_template_16_32);
2187 test_cipher_speed("cbc(serpent)", ENCRYPT, sec, NULL, 0,
2188 speed_template_16_32);
2189 test_cipher_speed("cbc(serpent)", DECRYPT, sec, NULL, 0,
2190 speed_template_16_32);
2191 test_cipher_speed("ctr(serpent)", ENCRYPT, sec, NULL, 0,
2192 speed_template_16_32);
2193 test_cipher_speed("ctr(serpent)", DECRYPT, sec, NULL, 0,
2194 speed_template_16_32);
2195 test_cipher_speed("lrw(serpent)", ENCRYPT, sec, NULL, 0,
2196 speed_template_32_48);
2197 test_cipher_speed("lrw(serpent)", DECRYPT, sec, NULL, 0,
2198 speed_template_32_48);
2199 test_cipher_speed("xts(serpent)", ENCRYPT, sec, NULL, 0,
2200 speed_template_32_64);
2201 test_cipher_speed("xts(serpent)", DECRYPT, sec, NULL, 0,
2202 speed_template_32_64);
2206 test_cipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0,
2211 test_cipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0,
2212 speed_template_8_16);
2213 test_cipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0,
2214 speed_template_8_16);
2215 test_cipher_speed("cbc(cast5)", ENCRYPT, sec, NULL, 0,
2216 speed_template_8_16);
2217 test_cipher_speed("cbc(cast5)", DECRYPT, sec, NULL, 0,
2218 speed_template_8_16);
2219 test_cipher_speed("ctr(cast5)", ENCRYPT, sec, NULL, 0,
2220 speed_template_8_16);
2221 test_cipher_speed("ctr(cast5)", DECRYPT, sec, NULL, 0,
2222 speed_template_8_16);
2226 test_cipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0,
2227 speed_template_16_32);
2228 test_cipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0,
2229 speed_template_16_32);
2230 test_cipher_speed("cbc(cast6)", ENCRYPT, sec, NULL, 0,
2231 speed_template_16_32);
2232 test_cipher_speed("cbc(cast6)", DECRYPT, sec, NULL, 0,
2233 speed_template_16_32);
2234 test_cipher_speed("ctr(cast6)", ENCRYPT, sec, NULL, 0,
2235 speed_template_16_32);
2236 test_cipher_speed("ctr(cast6)", DECRYPT, sec, NULL, 0,
2237 speed_template_16_32);
2238 test_cipher_speed("lrw(cast6)", ENCRYPT, sec, NULL, 0,
2239 speed_template_32_48);
2240 test_cipher_speed("lrw(cast6)", DECRYPT, sec, NULL, 0,
2241 speed_template_32_48);
2242 test_cipher_speed("xts(cast6)", ENCRYPT, sec, NULL, 0,
2243 speed_template_32_64);
2244 test_cipher_speed("xts(cast6)", DECRYPT, sec, NULL, 0,
2245 speed_template_32_64);
2249 test_aead_speed("rfc4106(gcm(aes))", ENCRYPT, sec,
2250 NULL, 0, 16, 16, aead_speed_template_20);
2251 test_aead_speed("gcm(aes)", ENCRYPT, sec,
2252 NULL, 0, 16, 8, speed_template_16_24_32);
2253 test_aead_speed("rfc4106(gcm(aes))", DECRYPT, sec,
2254 NULL, 0, 16, 16, aead_speed_template_20);
2255 test_aead_speed("gcm(aes)", DECRYPT, sec,
2256 NULL, 0, 16, 8, speed_template_16_24_32);
2260 test_aead_speed("rfc4309(ccm(aes))", ENCRYPT, sec,
2261 NULL, 0, 16, 16, aead_speed_template_19);
2262 test_aead_speed("rfc4309(ccm(aes))", DECRYPT, sec,
2263 NULL, 0, 16, 16, aead_speed_template_19);
2267 test_aead_speed("rfc7539esp(chacha20,poly1305)", ENCRYPT, sec,
2268 NULL, 0, 16, 8, aead_speed_template_36);
2269 test_aead_speed("rfc7539esp(chacha20,poly1305)", DECRYPT, sec,
2270 NULL, 0, 16, 8, aead_speed_template_36);
2274 test_cipher_speed("chacha20", ENCRYPT, sec, NULL, 0,
2279 test_mb_aead_speed("rfc4106(gcm(aes))", ENCRYPT, sec, NULL,
2280 0, 16, 16, aead_speed_template_20, num_mb);
2281 test_mb_aead_speed("gcm(aes)", ENCRYPT, sec, NULL, 0, 16, 8,
2282 speed_template_16_24_32, num_mb);
2283 test_mb_aead_speed("rfc4106(gcm(aes))", DECRYPT, sec, NULL,
2284 0, 16, 16, aead_speed_template_20, num_mb);
2285 test_mb_aead_speed("gcm(aes)", DECRYPT, sec, NULL, 0, 16, 8,
2286 speed_template_16_24_32, num_mb);
2290 test_mb_aead_speed("rfc4309(ccm(aes))", ENCRYPT, sec, NULL, 0,
2291 16, 16, aead_speed_template_19, num_mb);
2292 test_mb_aead_speed("rfc4309(ccm(aes))", DECRYPT, sec, NULL, 0,
2293 16, 16, aead_speed_template_19, num_mb);
2297 test_mb_aead_speed("rfc7539esp(chacha20,poly1305)", ENCRYPT,
2298 sec, NULL, 0, 16, 8, aead_speed_template_36,
2300 test_mb_aead_speed("rfc7539esp(chacha20,poly1305)", DECRYPT,
2301 sec, NULL, 0, 16, 8, aead_speed_template_36,
2306 test_cipher_speed("ecb(sm4)", ENCRYPT, sec, NULL, 0,
2308 test_cipher_speed("ecb(sm4)", DECRYPT, sec, NULL, 0,
2310 test_cipher_speed("cbc(sm4)", ENCRYPT, sec, NULL, 0,
2312 test_cipher_speed("cbc(sm4)", DECRYPT, sec, NULL, 0,
2314 test_cipher_speed("cfb(sm4)", ENCRYPT, sec, NULL, 0,
2316 test_cipher_speed("cfb(sm4)", DECRYPT, sec, NULL, 0,
2318 test_cipher_speed("ctr(sm4)", ENCRYPT, sec, NULL, 0,
2320 test_cipher_speed("ctr(sm4)", DECRYPT, sec, NULL, 0,
2325 test_cipher_speed("adiantum(xchacha12,aes)", ENCRYPT, sec, NULL,
2326 0, speed_template_32);
2327 test_cipher_speed("adiantum(xchacha12,aes)", DECRYPT, sec, NULL,
2328 0, speed_template_32);
2329 test_cipher_speed("adiantum(xchacha20,aes)", ENCRYPT, sec, NULL,
2330 0, speed_template_32);
2331 test_cipher_speed("adiantum(xchacha20,aes)", DECRYPT, sec, NULL,
2332 0, speed_template_32);
2336 test_acipher_speed("essiv(cbc(aes),sha256)",
2337 ENCRYPT, sec, NULL, 0,
2338 speed_template_16_24_32);
2339 test_acipher_speed("essiv(cbc(aes),sha256)",
2340 DECRYPT, sec, NULL, 0,
2341 speed_template_16_24_32);
2345 test_aead_speed("aegis128", ENCRYPT, sec,
2346 NULL, 0, 16, 8, speed_template_16);
2347 test_aead_speed("aegis128", DECRYPT, sec,
2348 NULL, 0, 16, 8, speed_template_16);
2352 test_aead_speed("gcm(sm4)", ENCRYPT, sec,
2353 NULL, 0, 16, 8, speed_template_16);
2354 test_aead_speed("gcm(sm4)", DECRYPT, sec,
2355 NULL, 0, 16, 8, speed_template_16);
2359 test_aead_speed("rfc4309(ccm(sm4))", ENCRYPT, sec,
2360 NULL, 0, 16, 16, aead_speed_template_19);
2361 test_aead_speed("rfc4309(ccm(sm4))", DECRYPT, sec,
2362 NULL, 0, 16, 16, aead_speed_template_19);
2366 test_mb_aead_speed("gcm(sm4)", ENCRYPT, sec, NULL, 0, 16, 8,
2367 speed_template_16, num_mb);
2368 test_mb_aead_speed("gcm(sm4)", DECRYPT, sec, NULL, 0, 16, 8,
2369 speed_template_16, num_mb);
2373 test_mb_aead_speed("rfc4309(ccm(sm4))", ENCRYPT, sec, NULL, 0,
2374 16, 16, aead_speed_template_19, num_mb);
2375 test_mb_aead_speed("rfc4309(ccm(sm4))", DECRYPT, sec, NULL, 0,
2376 16, 16, aead_speed_template_19, num_mb);
2381 test_hash_speed(alg, sec, generic_hash_speed_template);
2386 test_hash_speed("md4", sec, generic_hash_speed_template);
2387 if (mode > 300 && mode < 400) break;
2390 test_hash_speed("md5", sec, generic_hash_speed_template);
2391 if (mode > 300 && mode < 400) break;
2394 test_hash_speed("sha1", sec, generic_hash_speed_template);
2395 if (mode > 300 && mode < 400) break;
2398 test_hash_speed("sha256", sec, generic_hash_speed_template);
2399 if (mode > 300 && mode < 400) break;
2402 test_hash_speed("sha384", sec, generic_hash_speed_template);
2403 if (mode > 300 && mode < 400) break;
2406 test_hash_speed("sha512", sec, generic_hash_speed_template);
2407 if (mode > 300 && mode < 400) break;
2410 test_hash_speed("wp256", sec, generic_hash_speed_template);
2411 if (mode > 300 && mode < 400) break;
2414 test_hash_speed("wp384", sec, generic_hash_speed_template);
2415 if (mode > 300 && mode < 400) break;
2418 test_hash_speed("wp512", sec, generic_hash_speed_template);
2419 if (mode > 300 && mode < 400) break;
2422 test_hash_speed("sha224", sec, generic_hash_speed_template);
2423 if (mode > 300 && mode < 400) break;
2426 test_hash_speed("xxhash64", sec, generic_hash_speed_template);
2427 if (mode > 300 && mode < 400) break;
2430 test_hash_speed("rmd160", sec, generic_hash_speed_template);
2431 if (mode > 300 && mode < 400) break;
2434 test_hash_speed("blake2b-512", sec, generic_hash_speed_template);
2435 if (mode > 300 && mode < 400) break;
2439 test_hash_speed("ghash", sec, generic_hash_speed_template);
2440 if (mode > 300 && mode < 400) break;
2443 test_hash_speed("crc32c", sec, generic_hash_speed_template);
2444 if (mode > 300 && mode < 400) break;
2447 test_hash_speed("crct10dif", sec, generic_hash_speed_template);
2448 if (mode > 300 && mode < 400) break;
2451 test_hash_speed("poly1305", sec, poly1305_speed_template);
2452 if (mode > 300 && mode < 400) break;
2455 test_hash_speed("sha3-224", sec, generic_hash_speed_template);
2456 if (mode > 300 && mode < 400) break;
2459 test_hash_speed("sha3-256", sec, generic_hash_speed_template);
2460 if (mode > 300 && mode < 400) break;
2463 test_hash_speed("sha3-384", sec, generic_hash_speed_template);
2464 if (mode > 300 && mode < 400) break;
2467 test_hash_speed("sha3-512", sec, generic_hash_speed_template);
2468 if (mode > 300 && mode < 400) break;
2471 test_hash_speed("sm3", sec, generic_hash_speed_template);
2472 if (mode > 300 && mode < 400) break;
2475 test_hash_speed("streebog256", sec,
2476 generic_hash_speed_template);
2477 if (mode > 300 && mode < 400) break;
2480 test_hash_speed("streebog512", sec,
2481 generic_hash_speed_template);
2482 if (mode > 300 && mode < 400) break;
2489 test_ahash_speed(alg, sec, generic_hash_speed_template);
2494 test_ahash_speed("md4", sec, generic_hash_speed_template);
2495 if (mode > 400 && mode < 500) break;
2498 test_ahash_speed("md5", sec, generic_hash_speed_template);
2499 if (mode > 400 && mode < 500) break;
2502 test_ahash_speed("sha1", sec, generic_hash_speed_template);
2503 if (mode > 400 && mode < 500) break;
2506 test_ahash_speed("sha256", sec, generic_hash_speed_template);
2507 if (mode > 400 && mode < 500) break;
2510 test_ahash_speed("sha384", sec, generic_hash_speed_template);
2511 if (mode > 400 && mode < 500) break;
2514 test_ahash_speed("sha512", sec, generic_hash_speed_template);
2515 if (mode > 400 && mode < 500) break;
2518 test_ahash_speed("wp256", sec, generic_hash_speed_template);
2519 if (mode > 400 && mode < 500) break;
2522 test_ahash_speed("wp384", sec, generic_hash_speed_template);
2523 if (mode > 400 && mode < 500) break;
2526 test_ahash_speed("wp512", sec, generic_hash_speed_template);
2527 if (mode > 400 && mode < 500) break;
2530 test_ahash_speed("sha224", sec, generic_hash_speed_template);
2531 if (mode > 400 && mode < 500) break;
2534 test_ahash_speed("xxhash64", sec, generic_hash_speed_template);
2535 if (mode > 400 && mode < 500) break;
2538 test_ahash_speed("rmd160", sec, generic_hash_speed_template);
2539 if (mode > 400 && mode < 500) break;
2542 test_ahash_speed("blake2b-512", sec, generic_hash_speed_template);
2543 if (mode > 400 && mode < 500) break;
2546 test_ahash_speed("sha3-224", sec, generic_hash_speed_template);
2547 if (mode > 400 && mode < 500) break;
2550 test_ahash_speed("sha3-256", sec, generic_hash_speed_template);
2551 if (mode > 400 && mode < 500) break;
2554 test_ahash_speed("sha3-384", sec, generic_hash_speed_template);
2555 if (mode > 400 && mode < 500) break;
2558 test_ahash_speed("sha3-512", sec, generic_hash_speed_template);
2559 if (mode > 400 && mode < 500) break;
2562 test_mb_ahash_speed("sha1", sec, generic_hash_speed_template,
2564 if (mode > 400 && mode < 500) break;
2567 test_mb_ahash_speed("sha256", sec, generic_hash_speed_template,
2569 if (mode > 400 && mode < 500) break;
2572 test_mb_ahash_speed("sha512", sec, generic_hash_speed_template,
2574 if (mode > 400 && mode < 500) break;
2577 test_mb_ahash_speed("sm3", sec, generic_hash_speed_template,
2579 if (mode > 400 && mode < 500) break;
2582 test_mb_ahash_speed("streebog256", sec,
2583 generic_hash_speed_template, num_mb);
2584 if (mode > 400 && mode < 500) break;
2587 test_mb_ahash_speed("streebog512", sec,
2588 generic_hash_speed_template, num_mb);
2589 if (mode > 400 && mode < 500) break;
2595 test_acipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
2596 speed_template_16_24_32);
2597 test_acipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0,
2598 speed_template_16_24_32);
2599 test_acipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0,
2600 speed_template_16_24_32);
2601 test_acipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0,
2602 speed_template_16_24_32);
2603 test_acipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0,
2604 speed_template_32_40_48);
2605 test_acipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0,
2606 speed_template_32_40_48);
2607 test_acipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0,
2608 speed_template_32_64);
2609 test_acipher_speed("xts(aes)", DECRYPT, sec, NULL, 0,
2610 speed_template_32_64);
2611 test_acipher_speed("cts(cbc(aes))", ENCRYPT, sec, NULL, 0,
2612 speed_template_16_24_32);
2613 test_acipher_speed("cts(cbc(aes))", DECRYPT, sec, NULL, 0,
2614 speed_template_16_24_32);
2615 test_acipher_speed("ctr(aes)", ENCRYPT, sec, NULL, 0,
2616 speed_template_16_24_32);
2617 test_acipher_speed("ctr(aes)", DECRYPT, sec, NULL, 0,
2618 speed_template_16_24_32);
2619 test_acipher_speed("cfb(aes)", ENCRYPT, sec, NULL, 0,
2620 speed_template_16_24_32);
2621 test_acipher_speed("cfb(aes)", DECRYPT, sec, NULL, 0,
2622 speed_template_16_24_32);
2623 test_acipher_speed("ofb(aes)", ENCRYPT, sec, NULL, 0,
2624 speed_template_16_24_32);
2625 test_acipher_speed("ofb(aes)", DECRYPT, sec, NULL, 0,
2626 speed_template_16_24_32);
2627 test_acipher_speed("rfc3686(ctr(aes))", ENCRYPT, sec, NULL, 0,
2628 speed_template_20_28_36);
2629 test_acipher_speed("rfc3686(ctr(aes))", DECRYPT, sec, NULL, 0,
2630 speed_template_20_28_36);
2634 test_acipher_speed("ecb(des3_ede)", ENCRYPT, sec,
2635 des3_speed_template, DES3_SPEED_VECTORS,
2637 test_acipher_speed("ecb(des3_ede)", DECRYPT, sec,
2638 des3_speed_template, DES3_SPEED_VECTORS,
2640 test_acipher_speed("cbc(des3_ede)", ENCRYPT, sec,
2641 des3_speed_template, DES3_SPEED_VECTORS,
2643 test_acipher_speed("cbc(des3_ede)", DECRYPT, sec,
2644 des3_speed_template, DES3_SPEED_VECTORS,
2646 test_acipher_speed("cfb(des3_ede)", ENCRYPT, sec,
2647 des3_speed_template, DES3_SPEED_VECTORS,
2649 test_acipher_speed("cfb(des3_ede)", DECRYPT, sec,
2650 des3_speed_template, DES3_SPEED_VECTORS,
2652 test_acipher_speed("ofb(des3_ede)", ENCRYPT, sec,
2653 des3_speed_template, DES3_SPEED_VECTORS,
2655 test_acipher_speed("ofb(des3_ede)", DECRYPT, sec,
2656 des3_speed_template, DES3_SPEED_VECTORS,
2661 test_acipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0,
2663 test_acipher_speed("ecb(des)", DECRYPT, sec, NULL, 0,
2665 test_acipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0,
2667 test_acipher_speed("cbc(des)", DECRYPT, sec, NULL, 0,
2669 test_acipher_speed("cfb(des)", ENCRYPT, sec, NULL, 0,
2671 test_acipher_speed("cfb(des)", DECRYPT, sec, NULL, 0,
2673 test_acipher_speed("ofb(des)", ENCRYPT, sec, NULL, 0,
2675 test_acipher_speed("ofb(des)", DECRYPT, sec, NULL, 0,
2680 test_acipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0,
2681 speed_template_16_32);
2682 test_acipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0,
2683 speed_template_16_32);
2684 test_acipher_speed("cbc(serpent)", ENCRYPT, sec, NULL, 0,
2685 speed_template_16_32);
2686 test_acipher_speed("cbc(serpent)", DECRYPT, sec, NULL, 0,
2687 speed_template_16_32);
2688 test_acipher_speed("ctr(serpent)", ENCRYPT, sec, NULL, 0,
2689 speed_template_16_32);
2690 test_acipher_speed("ctr(serpent)", DECRYPT, sec, NULL, 0,
2691 speed_template_16_32);
2692 test_acipher_speed("lrw(serpent)", ENCRYPT, sec, NULL, 0,
2693 speed_template_32_48);
2694 test_acipher_speed("lrw(serpent)", DECRYPT, sec, NULL, 0,
2695 speed_template_32_48);
2696 test_acipher_speed("xts(serpent)", ENCRYPT, sec, NULL, 0,
2697 speed_template_32_64);
2698 test_acipher_speed("xts(serpent)", DECRYPT, sec, NULL, 0,
2699 speed_template_32_64);
2703 test_acipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0,
2704 speed_template_16_24_32);
2705 test_acipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0,
2706 speed_template_16_24_32);
2707 test_acipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0,
2708 speed_template_16_24_32);
2709 test_acipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0,
2710 speed_template_16_24_32);
2711 test_acipher_speed("ctr(twofish)", ENCRYPT, sec, NULL, 0,
2712 speed_template_16_24_32);
2713 test_acipher_speed("ctr(twofish)", DECRYPT, sec, NULL, 0,
2714 speed_template_16_24_32);
2715 test_acipher_speed("lrw(twofish)", ENCRYPT, sec, NULL, 0,
2716 speed_template_32_40_48);
2717 test_acipher_speed("lrw(twofish)", DECRYPT, sec, NULL, 0,
2718 speed_template_32_40_48);
2719 test_acipher_speed("xts(twofish)", ENCRYPT, sec, NULL, 0,
2720 speed_template_32_48_64);
2721 test_acipher_speed("xts(twofish)", DECRYPT, sec, NULL, 0,
2722 speed_template_32_48_64);
2726 test_acipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0,
2731 test_acipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0,
2732 speed_template_8_16);
2733 test_acipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0,
2734 speed_template_8_16);
2735 test_acipher_speed("cbc(cast5)", ENCRYPT, sec, NULL, 0,
2736 speed_template_8_16);
2737 test_acipher_speed("cbc(cast5)", DECRYPT, sec, NULL, 0,
2738 speed_template_8_16);
2739 test_acipher_speed("ctr(cast5)", ENCRYPT, sec, NULL, 0,
2740 speed_template_8_16);
2741 test_acipher_speed("ctr(cast5)", DECRYPT, sec, NULL, 0,
2742 speed_template_8_16);
2746 test_acipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0,
2747 speed_template_16_32);
2748 test_acipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0,
2749 speed_template_16_32);
2750 test_acipher_speed("cbc(cast6)", ENCRYPT, sec, NULL, 0,
2751 speed_template_16_32);
2752 test_acipher_speed("cbc(cast6)", DECRYPT, sec, NULL, 0,
2753 speed_template_16_32);
2754 test_acipher_speed("ctr(cast6)", ENCRYPT, sec, NULL, 0,
2755 speed_template_16_32);
2756 test_acipher_speed("ctr(cast6)", DECRYPT, sec, NULL, 0,
2757 speed_template_16_32);
2758 test_acipher_speed("lrw(cast6)", ENCRYPT, sec, NULL, 0,
2759 speed_template_32_48);
2760 test_acipher_speed("lrw(cast6)", DECRYPT, sec, NULL, 0,
2761 speed_template_32_48);
2762 test_acipher_speed("xts(cast6)", ENCRYPT, sec, NULL, 0,
2763 speed_template_32_64);
2764 test_acipher_speed("xts(cast6)", DECRYPT, sec, NULL, 0,
2765 speed_template_32_64);
2769 test_acipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0,
2770 speed_template_16_32);
2771 test_acipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0,
2772 speed_template_16_32);
2773 test_acipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0,
2774 speed_template_16_32);
2775 test_acipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
2776 speed_template_16_32);
2777 test_acipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0,
2778 speed_template_16_32);
2779 test_acipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0,
2780 speed_template_16_32);
2781 test_acipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0,
2782 speed_template_32_48);
2783 test_acipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0,
2784 speed_template_32_48);
2785 test_acipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0,
2786 speed_template_32_64);
2787 test_acipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0,
2788 speed_template_32_64);
2792 test_acipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0,
2793 speed_template_8_32);
2794 test_acipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0,
2795 speed_template_8_32);
2796 test_acipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0,
2797 speed_template_8_32);
2798 test_acipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0,
2799 speed_template_8_32);
2800 test_acipher_speed("ctr(blowfish)", ENCRYPT, sec, NULL, 0,
2801 speed_template_8_32);
2802 test_acipher_speed("ctr(blowfish)", DECRYPT, sec, NULL, 0,
2803 speed_template_8_32);
2807 test_acipher_speed("ecb(sm4)", ENCRYPT, sec, NULL, 0,
2809 test_acipher_speed("ecb(sm4)", DECRYPT, sec, NULL, 0,
2811 test_acipher_speed("cbc(sm4)", ENCRYPT, sec, NULL, 0,
2813 test_acipher_speed("cbc(sm4)", DECRYPT, sec, NULL, 0,
2815 test_acipher_speed("cfb(sm4)", ENCRYPT, sec, NULL, 0,
2817 test_acipher_speed("cfb(sm4)", DECRYPT, sec, NULL, 0,
2819 test_acipher_speed("ctr(sm4)", ENCRYPT, sec, NULL, 0,
2821 test_acipher_speed("ctr(sm4)", DECRYPT, sec, NULL, 0,
2826 test_mb_skcipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
2827 speed_template_16_24_32, num_mb);
2828 test_mb_skcipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0,
2829 speed_template_16_24_32, num_mb);
2830 test_mb_skcipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0,
2831 speed_template_16_24_32, num_mb);
2832 test_mb_skcipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0,
2833 speed_template_16_24_32, num_mb);
2834 test_mb_skcipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0,
2835 speed_template_32_40_48, num_mb);
2836 test_mb_skcipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0,
2837 speed_template_32_40_48, num_mb);
2838 test_mb_skcipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0,
2839 speed_template_32_64, num_mb);
2840 test_mb_skcipher_speed("xts(aes)", DECRYPT, sec, NULL, 0,
2841 speed_template_32_64, num_mb);
2842 test_mb_skcipher_speed("cts(cbc(aes))", ENCRYPT, sec, NULL, 0,
2843 speed_template_16_24_32, num_mb);
2844 test_mb_skcipher_speed("cts(cbc(aes))", DECRYPT, sec, NULL, 0,
2845 speed_template_16_24_32, num_mb);
2846 test_mb_skcipher_speed("ctr(aes)", ENCRYPT, sec, NULL, 0,
2847 speed_template_16_24_32, num_mb);
2848 test_mb_skcipher_speed("ctr(aes)", DECRYPT, sec, NULL, 0,
2849 speed_template_16_24_32, num_mb);
2850 test_mb_skcipher_speed("cfb(aes)", ENCRYPT, sec, NULL, 0,
2851 speed_template_16_24_32, num_mb);
2852 test_mb_skcipher_speed("cfb(aes)", DECRYPT, sec, NULL, 0,
2853 speed_template_16_24_32, num_mb);
2854 test_mb_skcipher_speed("ofb(aes)", ENCRYPT, sec, NULL, 0,
2855 speed_template_16_24_32, num_mb);
2856 test_mb_skcipher_speed("ofb(aes)", DECRYPT, sec, NULL, 0,
2857 speed_template_16_24_32, num_mb);
2858 test_mb_skcipher_speed("rfc3686(ctr(aes))", ENCRYPT, sec, NULL,
2859 0, speed_template_20_28_36, num_mb);
2860 test_mb_skcipher_speed("rfc3686(ctr(aes))", DECRYPT, sec, NULL,
2861 0, speed_template_20_28_36, num_mb);
2865 test_mb_skcipher_speed("ecb(des3_ede)", ENCRYPT, sec,
2866 des3_speed_template, DES3_SPEED_VECTORS,
2867 speed_template_24, num_mb);
2868 test_mb_skcipher_speed("ecb(des3_ede)", DECRYPT, sec,
2869 des3_speed_template, DES3_SPEED_VECTORS,
2870 speed_template_24, num_mb);
2871 test_mb_skcipher_speed("cbc(des3_ede)", ENCRYPT, sec,
2872 des3_speed_template, DES3_SPEED_VECTORS,
2873 speed_template_24, num_mb);
2874 test_mb_skcipher_speed("cbc(des3_ede)", DECRYPT, sec,
2875 des3_speed_template, DES3_SPEED_VECTORS,
2876 speed_template_24, num_mb);
2877 test_mb_skcipher_speed("cfb(des3_ede)", ENCRYPT, sec,
2878 des3_speed_template, DES3_SPEED_VECTORS,
2879 speed_template_24, num_mb);
2880 test_mb_skcipher_speed("cfb(des3_ede)", DECRYPT, sec,
2881 des3_speed_template, DES3_SPEED_VECTORS,
2882 speed_template_24, num_mb);
2883 test_mb_skcipher_speed("ofb(des3_ede)", ENCRYPT, sec,
2884 des3_speed_template, DES3_SPEED_VECTORS,
2885 speed_template_24, num_mb);
2886 test_mb_skcipher_speed("ofb(des3_ede)", DECRYPT, sec,
2887 des3_speed_template, DES3_SPEED_VECTORS,
2888 speed_template_24, num_mb);
2892 test_mb_skcipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0,
2893 speed_template_8, num_mb);
2894 test_mb_skcipher_speed("ecb(des)", DECRYPT, sec, NULL, 0,
2895 speed_template_8, num_mb);
2896 test_mb_skcipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0,
2897 speed_template_8, num_mb);
2898 test_mb_skcipher_speed("cbc(des)", DECRYPT, sec, NULL, 0,
2899 speed_template_8, num_mb);
2900 test_mb_skcipher_speed("cfb(des)", ENCRYPT, sec, NULL, 0,
2901 speed_template_8, num_mb);
2902 test_mb_skcipher_speed("cfb(des)", DECRYPT, sec, NULL, 0,
2903 speed_template_8, num_mb);
2904 test_mb_skcipher_speed("ofb(des)", ENCRYPT, sec, NULL, 0,
2905 speed_template_8, num_mb);
2906 test_mb_skcipher_speed("ofb(des)", DECRYPT, sec, NULL, 0,
2907 speed_template_8, num_mb);
2911 test_mb_skcipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0,
2912 speed_template_16_32, num_mb);
2913 test_mb_skcipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0,
2914 speed_template_16_32, num_mb);
2915 test_mb_skcipher_speed("cbc(serpent)", ENCRYPT, sec, NULL, 0,
2916 speed_template_16_32, num_mb);
2917 test_mb_skcipher_speed("cbc(serpent)", DECRYPT, sec, NULL, 0,
2918 speed_template_16_32, num_mb);
2919 test_mb_skcipher_speed("ctr(serpent)", ENCRYPT, sec, NULL, 0,
2920 speed_template_16_32, num_mb);
2921 test_mb_skcipher_speed("ctr(serpent)", DECRYPT, sec, NULL, 0,
2922 speed_template_16_32, num_mb);
2923 test_mb_skcipher_speed("lrw(serpent)", ENCRYPT, sec, NULL, 0,
2924 speed_template_32_48, num_mb);
2925 test_mb_skcipher_speed("lrw(serpent)", DECRYPT, sec, NULL, 0,
2926 speed_template_32_48, num_mb);
2927 test_mb_skcipher_speed("xts(serpent)", ENCRYPT, sec, NULL, 0,
2928 speed_template_32_64, num_mb);
2929 test_mb_skcipher_speed("xts(serpent)", DECRYPT, sec, NULL, 0,
2930 speed_template_32_64, num_mb);
2934 test_mb_skcipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0,
2935 speed_template_16_24_32, num_mb);
2936 test_mb_skcipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0,
2937 speed_template_16_24_32, num_mb);
2938 test_mb_skcipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0,
2939 speed_template_16_24_32, num_mb);
2940 test_mb_skcipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0,
2941 speed_template_16_24_32, num_mb);
2942 test_mb_skcipher_speed("ctr(twofish)", ENCRYPT, sec, NULL, 0,
2943 speed_template_16_24_32, num_mb);
2944 test_mb_skcipher_speed("ctr(twofish)", DECRYPT, sec, NULL, 0,
2945 speed_template_16_24_32, num_mb);
2946 test_mb_skcipher_speed("lrw(twofish)", ENCRYPT, sec, NULL, 0,
2947 speed_template_32_40_48, num_mb);
2948 test_mb_skcipher_speed("lrw(twofish)", DECRYPT, sec, NULL, 0,
2949 speed_template_32_40_48, num_mb);
2950 test_mb_skcipher_speed("xts(twofish)", ENCRYPT, sec, NULL, 0,
2951 speed_template_32_48_64, num_mb);
2952 test_mb_skcipher_speed("xts(twofish)", DECRYPT, sec, NULL, 0,
2953 speed_template_32_48_64, num_mb);
2957 test_mb_skcipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0,
2958 speed_template_8, num_mb);
2962 test_mb_skcipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0,
2963 speed_template_8_16, num_mb);
2964 test_mb_skcipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0,
2965 speed_template_8_16, num_mb);
2966 test_mb_skcipher_speed("cbc(cast5)", ENCRYPT, sec, NULL, 0,
2967 speed_template_8_16, num_mb);
2968 test_mb_skcipher_speed("cbc(cast5)", DECRYPT, sec, NULL, 0,
2969 speed_template_8_16, num_mb);
2970 test_mb_skcipher_speed("ctr(cast5)", ENCRYPT, sec, NULL, 0,
2971 speed_template_8_16, num_mb);
2972 test_mb_skcipher_speed("ctr(cast5)", DECRYPT, sec, NULL, 0,
2973 speed_template_8_16, num_mb);
2977 test_mb_skcipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0,
2978 speed_template_16_32, num_mb);
2979 test_mb_skcipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0,
2980 speed_template_16_32, num_mb);
2981 test_mb_skcipher_speed("cbc(cast6)", ENCRYPT, sec, NULL, 0,
2982 speed_template_16_32, num_mb);
2983 test_mb_skcipher_speed("cbc(cast6)", DECRYPT, sec, NULL, 0,
2984 speed_template_16_32, num_mb);
2985 test_mb_skcipher_speed("ctr(cast6)", ENCRYPT, sec, NULL, 0,
2986 speed_template_16_32, num_mb);
2987 test_mb_skcipher_speed("ctr(cast6)", DECRYPT, sec, NULL, 0,
2988 speed_template_16_32, num_mb);
2989 test_mb_skcipher_speed("lrw(cast6)", ENCRYPT, sec, NULL, 0,
2990 speed_template_32_48, num_mb);
2991 test_mb_skcipher_speed("lrw(cast6)", DECRYPT, sec, NULL, 0,
2992 speed_template_32_48, num_mb);
2993 test_mb_skcipher_speed("xts(cast6)", ENCRYPT, sec, NULL, 0,
2994 speed_template_32_64, num_mb);
2995 test_mb_skcipher_speed("xts(cast6)", DECRYPT, sec, NULL, 0,
2996 speed_template_32_64, num_mb);
3000 test_mb_skcipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0,
3001 speed_template_16_32, num_mb);
3002 test_mb_skcipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0,
3003 speed_template_16_32, num_mb);
3004 test_mb_skcipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0,
3005 speed_template_16_32, num_mb);
3006 test_mb_skcipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
3007 speed_template_16_32, num_mb);
3008 test_mb_skcipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0,
3009 speed_template_16_32, num_mb);
3010 test_mb_skcipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0,
3011 speed_template_16_32, num_mb);
3012 test_mb_skcipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0,
3013 speed_template_32_48, num_mb);
3014 test_mb_skcipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0,
3015 speed_template_32_48, num_mb);
3016 test_mb_skcipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0,
3017 speed_template_32_64, num_mb);
3018 test_mb_skcipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0,
3019 speed_template_32_64, num_mb);
3023 test_mb_skcipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0,
3024 speed_template_8_32, num_mb);
3025 test_mb_skcipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0,
3026 speed_template_8_32, num_mb);
3027 test_mb_skcipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0,
3028 speed_template_8_32, num_mb);
3029 test_mb_skcipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0,
3030 speed_template_8_32, num_mb);
3031 test_mb_skcipher_speed("ctr(blowfish)", ENCRYPT, sec, NULL, 0,
3032 speed_template_8_32, num_mb);
3033 test_mb_skcipher_speed("ctr(blowfish)", DECRYPT, sec, NULL, 0,
3034 speed_template_8_32, num_mb);
3045 static int __init tcrypt_mod_init(void)
3050 for (i = 0; i < TVMEMSIZE; i++) {
3051 tvmem[i] = (void *)__get_free_page(GFP_KERNEL);
3056 err = do_test(alg, type, mask, mode, num_mb);
3059 printk(KERN_ERR "tcrypt: one or more tests failed!\n");
3062 pr_debug("all tests passed\n");
3065 /* We intentionaly return -EAGAIN to prevent keeping the module,
3066 * unless we're running in fips mode. It does all its work from
3067 * init() and doesn't offer any runtime functionality, but in
3068 * the fips case, checking for a successful load is helpful.
3069 * => we don't need it in the memory, do we?
3076 for (i = 0; i < TVMEMSIZE && tvmem[i]; i++)
3077 free_page((unsigned long)tvmem[i]);
3083 * If an init function is provided, an exit function must also be provided
3084 * to allow module unload.
3086 static void __exit tcrypt_mod_fini(void) { }
3088 late_initcall(tcrypt_mod_init);
3089 module_exit(tcrypt_mod_fini);
3091 module_param(alg, charp, 0);
3092 module_param(type, uint, 0);
3093 module_param(mask, uint, 0);
3094 module_param(mode, int, 0);
3095 module_param(sec, uint, 0);
3096 MODULE_PARM_DESC(sec, "Length in seconds of speed tests "
3097 "(defaults to zero which uses CPU cycles instead)");
3098 module_param(num_mb, uint, 0000);
3099 MODULE_PARM_DESC(num_mb, "Number of concurrent requests to be used in mb speed tests (defaults to 8)");
3100 module_param(klen, uint, 0);
3101 MODULE_PARM_DESC(klen, "Key length (defaults to 0)");
3103 MODULE_LICENSE("GPL");
3104 MODULE_DESCRIPTION("Quick & dirty crypto testing module");
3105 MODULE_AUTHOR("James Morris <jmorris@intercode.com.au>");