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, 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 for (i = 0; i < num_mb; ++i)
295 if (testmgr_alloc_buf(data[i].xbuf)) {
297 testmgr_free_buf(data[i].xbuf);
301 for (i = 0; i < num_mb; ++i)
302 if (testmgr_alloc_buf(data[i].axbuf)) {
304 testmgr_free_buf(data[i].axbuf);
308 for (i = 0; i < num_mb; ++i)
309 if (testmgr_alloc_buf(data[i].xoutbuf)) {
311 testmgr_free_buf(data[i].xoutbuf);
315 for (i = 0; i < num_mb; ++i) {
316 data[i].req = aead_request_alloc(tfm, GFP_KERNEL);
318 pr_err("alg: skcipher: Failed to allocate request for %s\n",
321 aead_request_free(data[i].req);
322 goto out_free_xoutbuf;
326 for (i = 0; i < num_mb; ++i) {
327 crypto_init_wait(&data[i].wait);
328 aead_request_set_callback(data[i].req,
329 CRYPTO_TFM_REQ_MAY_BACKLOG,
330 crypto_req_done, &data[i].wait);
333 pr_info("\ntesting speed of multibuffer %s (%s) %s\n", algo,
334 get_driver_name(crypto_aead, tfm), e);
340 int bs = round_up(*b_size, crypto_aead_blocksize(tfm));
342 if (bs + authsize > XBUFSIZE * PAGE_SIZE) {
343 pr_err("template (%u) too big for buffer (%lu)\n",
345 XBUFSIZE * PAGE_SIZE);
349 pr_info("test %u (%d bit key, %d byte blocks): ", i,
352 /* Set up tfm global state, i.e. the key */
354 memset(tvmem[0], 0xff, PAGE_SIZE);
356 for (j = 0; j < tcount; j++) {
357 if (template[j].klen == *keysize) {
358 key = template[j].key;
363 crypto_aead_clear_flags(tfm, ~0);
365 ret = crypto_aead_setkey(tfm, key, *keysize);
367 pr_err("setkey() failed flags=%x\n",
368 crypto_aead_get_flags(tfm));
372 iv_len = crypto_aead_ivsize(tfm);
374 memset(iv, 0xff, iv_len);
376 /* Now setup per request stuff, i.e. buffers */
378 for (j = 0; j < num_mb; ++j) {
379 struct test_mb_aead_data *cur = &data[j];
381 assoc = cur->axbuf[0];
382 memset(assoc, 0xff, aad_size);
384 sg_init_aead(cur->sg, cur->xbuf,
385 bs + (enc ? 0 : authsize),
388 sg_init_aead(cur->sgout, cur->xoutbuf,
389 bs + (enc ? authsize : 0),
392 aead_request_set_ad(cur->req, aad_size);
396 aead_request_set_crypt(cur->req,
400 ret = crypto_aead_encrypt(cur->req);
401 ret = do_one_aead_op(cur->req, ret);
404 pr_err("calculating auth failed (%d)\n",
410 aead_request_set_crypt(cur->req, cur->sg,
412 (enc ? 0 : authsize),
418 ret = test_mb_aead_jiffies(data, enc, bs,
422 ret = test_mb_aead_cycles(data, enc, bs,
427 pr_err("%s() failed return code=%d\n", e, ret);
437 for (i = 0; i < num_mb; ++i)
438 aead_request_free(data[i].req);
440 for (i = 0; i < num_mb; ++i)
441 testmgr_free_buf(data[i].xoutbuf);
443 for (i = 0; i < num_mb; ++i)
444 testmgr_free_buf(data[i].axbuf);
446 for (i = 0; i < num_mb; ++i)
447 testmgr_free_buf(data[i].xbuf);
449 crypto_free_aead(tfm);
456 static int test_aead_jiffies(struct aead_request *req, int enc,
459 unsigned long start, end;
463 for (start = jiffies, end = start + secs * HZ, bcount = 0;
464 time_before(jiffies, end); bcount++) {
466 ret = do_one_aead_op(req, crypto_aead_encrypt(req));
468 ret = do_one_aead_op(req, crypto_aead_decrypt(req));
474 pr_cont("%d operations in %d seconds (%llu bytes)\n",
475 bcount, secs, (u64)bcount * blen);
479 static int test_aead_cycles(struct aead_request *req, int enc, int blen)
481 unsigned long cycles = 0;
486 for (i = 0; i < 4; i++) {
488 ret = do_one_aead_op(req, crypto_aead_encrypt(req));
490 ret = do_one_aead_op(req, crypto_aead_decrypt(req));
496 /* The real thing. */
497 for (i = 0; i < 8; i++) {
500 start = get_cycles();
502 ret = do_one_aead_op(req, crypto_aead_encrypt(req));
504 ret = do_one_aead_op(req, crypto_aead_decrypt(req));
510 cycles += end - start;
515 printk("1 operation in %lu cycles (%d bytes)\n",
516 (cycles + 4) / 8, blen);
521 static void test_aead_speed(const char *algo, int enc, unsigned int secs,
522 struct aead_speed_template *template,
523 unsigned int tcount, u8 authsize,
524 unsigned int aad_size, u8 *keysize)
527 struct crypto_aead *tfm;
530 struct aead_request *req;
531 struct scatterlist *sg;
532 struct scatterlist *sgout;
536 char *xbuf[XBUFSIZE];
537 char *xoutbuf[XBUFSIZE];
538 char *axbuf[XBUFSIZE];
541 struct crypto_wait wait;
543 iv = kzalloc(MAX_IVLEN, GFP_KERNEL);
547 if (aad_size >= PAGE_SIZE) {
548 pr_err("associate data length (%u) too big\n", aad_size);
557 if (testmgr_alloc_buf(xbuf))
559 if (testmgr_alloc_buf(axbuf))
561 if (testmgr_alloc_buf(xoutbuf))
564 sg = kmalloc(sizeof(*sg) * 9 * 2, GFP_KERNEL);
569 tfm = crypto_alloc_aead(algo, 0, 0);
572 pr_err("alg: aead: Failed to load transform for %s: %ld\n", algo,
577 crypto_init_wait(&wait);
578 printk(KERN_INFO "\ntesting speed of %s (%s) %s\n", algo,
579 get_driver_name(crypto_aead, tfm), e);
581 req = aead_request_alloc(tfm, GFP_KERNEL);
583 pr_err("alg: aead: Failed to allocate request for %s\n",
588 aead_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
589 crypto_req_done, &wait);
595 u32 bs = round_up(*b_size, crypto_aead_blocksize(tfm));
598 memset(assoc, 0xff, aad_size);
600 if ((*keysize + bs) > TVMEMSIZE * PAGE_SIZE) {
601 pr_err("template (%u) too big for tvmem (%lu)\n",
603 TVMEMSIZE * PAGE_SIZE);
608 for (j = 0; j < tcount; j++) {
609 if (template[j].klen == *keysize) {
610 key = template[j].key;
614 ret = crypto_aead_setkey(tfm, key, *keysize);
615 ret = crypto_aead_setauthsize(tfm, authsize);
617 iv_len = crypto_aead_ivsize(tfm);
619 memset(iv, 0xff, iv_len);
621 crypto_aead_clear_flags(tfm, ~0);
622 printk(KERN_INFO "test %u (%d bit key, %d byte blocks): ",
623 i, *keysize * 8, bs);
626 memset(tvmem[0], 0xff, PAGE_SIZE);
629 pr_err("setkey() failed flags=%x\n",
630 crypto_aead_get_flags(tfm));
634 sg_init_aead(sg, xbuf, bs + (enc ? 0 : authsize),
637 sg_init_aead(sgout, xoutbuf,
638 bs + (enc ? authsize : 0), assoc,
641 aead_request_set_ad(req, aad_size);
646 * For decryption we need a proper auth so
647 * we do the encryption path once with buffers
648 * reversed (input <-> output) to calculate it
650 aead_request_set_crypt(req, sgout, sg,
652 ret = do_one_aead_op(req,
653 crypto_aead_encrypt(req));
656 pr_err("calculating auth failed (%d)\n",
662 aead_request_set_crypt(req, sg, sgout,
663 bs + (enc ? 0 : authsize),
667 ret = test_aead_jiffies(req, enc, bs,
671 ret = test_aead_cycles(req, enc, bs);
675 pr_err("%s() failed return code=%d\n", e, ret);
685 aead_request_free(req);
687 crypto_free_aead(tfm);
691 testmgr_free_buf(xoutbuf);
693 testmgr_free_buf(axbuf);
695 testmgr_free_buf(xbuf);
700 static void test_hash_sg_init(struct scatterlist *sg)
704 sg_init_table(sg, TVMEMSIZE);
705 for (i = 0; i < TVMEMSIZE; i++) {
706 sg_set_buf(sg + i, tvmem[i], PAGE_SIZE);
707 memset(tvmem[i], 0xff, PAGE_SIZE);
711 static inline int do_one_ahash_op(struct ahash_request *req, int ret)
713 struct crypto_wait *wait = req->base.data;
715 return crypto_wait_req(ret, wait);
718 struct test_mb_ahash_data {
719 struct scatterlist sg[XBUFSIZE];
721 struct ahash_request *req;
722 struct crypto_wait wait;
723 char *xbuf[XBUFSIZE];
726 static inline int do_mult_ahash_op(struct test_mb_ahash_data *data, u32 num_mb,
731 /* Fire up a bunch of concurrent requests */
732 for (i = 0; i < num_mb; i++)
733 rc[i] = crypto_ahash_digest(data[i].req);
735 /* Wait for all requests to finish */
736 for (i = 0; i < num_mb; i++) {
737 rc[i] = crypto_wait_req(rc[i], &data[i].wait);
740 pr_info("concurrent request %d error %d\n", i, rc[i]);
748 static int test_mb_ahash_jiffies(struct test_mb_ahash_data *data, int blen,
749 int secs, u32 num_mb)
751 unsigned long start, end;
756 rc = kcalloc(num_mb, sizeof(*rc), GFP_KERNEL);
760 for (start = jiffies, end = start + secs * HZ, bcount = 0;
761 time_before(jiffies, end); bcount++) {
762 ret = do_mult_ahash_op(data, num_mb, rc);
767 pr_cont("%d operations in %d seconds (%llu bytes)\n",
768 bcount * num_mb, secs, (u64)bcount * blen * num_mb);
775 static int test_mb_ahash_cycles(struct test_mb_ahash_data *data, int blen,
778 unsigned long cycles = 0;
783 rc = kcalloc(num_mb, sizeof(*rc), GFP_KERNEL);
788 for (i = 0; i < 4; i++) {
789 ret = do_mult_ahash_op(data, num_mb, rc);
794 /* The real thing. */
795 for (i = 0; i < 8; i++) {
798 start = get_cycles();
799 ret = do_mult_ahash_op(data, num_mb, rc);
805 cycles += end - start;
808 pr_cont("1 operation in %lu cycles (%d bytes)\n",
809 (cycles + 4) / (8 * num_mb), blen);
816 static void test_mb_ahash_speed(const char *algo, unsigned int secs,
817 struct hash_speed *speed, u32 num_mb)
819 struct test_mb_ahash_data *data;
820 struct crypto_ahash *tfm;
821 unsigned int i, j, k;
824 data = kcalloc(num_mb, sizeof(*data), GFP_KERNEL);
828 tfm = crypto_alloc_ahash(algo, 0, 0);
830 pr_err("failed to load transform for %s: %ld\n",
835 for (i = 0; i < num_mb; ++i) {
836 if (testmgr_alloc_buf(data[i].xbuf))
839 crypto_init_wait(&data[i].wait);
841 data[i].req = ahash_request_alloc(tfm, GFP_KERNEL);
843 pr_err("alg: hash: Failed to allocate request for %s\n",
848 ahash_request_set_callback(data[i].req, 0, crypto_req_done,
851 sg_init_table(data[i].sg, XBUFSIZE);
852 for (j = 0; j < XBUFSIZE; j++) {
853 sg_set_buf(data[i].sg + j, data[i].xbuf[j], PAGE_SIZE);
854 memset(data[i].xbuf[j], 0xff, PAGE_SIZE);
858 pr_info("\ntesting speed of multibuffer %s (%s)\n", algo,
859 get_driver_name(crypto_ahash, tfm));
861 for (i = 0; speed[i].blen != 0; i++) {
862 /* For some reason this only tests digests. */
863 if (speed[i].blen != speed[i].plen)
866 if (speed[i].blen > XBUFSIZE * PAGE_SIZE) {
867 pr_err("template (%u) too big for tvmem (%lu)\n",
868 speed[i].blen, XBUFSIZE * PAGE_SIZE);
873 crypto_ahash_setkey(tfm, tvmem[0], klen);
875 for (k = 0; k < num_mb; k++)
876 ahash_request_set_crypt(data[k].req, data[k].sg,
877 data[k].result, speed[i].blen);
880 "(%5u byte blocks,%5u bytes per update,%4u updates): ",
881 i, speed[i].blen, speed[i].plen,
882 speed[i].blen / speed[i].plen);
885 ret = test_mb_ahash_jiffies(data, speed[i].blen, secs,
889 ret = test_mb_ahash_cycles(data, speed[i].blen, num_mb);
894 pr_err("At least one hashing failed ret=%d\n", ret);
900 for (k = 0; k < num_mb; ++k)
901 ahash_request_free(data[k].req);
903 for (k = 0; k < num_mb; ++k)
904 testmgr_free_buf(data[k].xbuf);
906 crypto_free_ahash(tfm);
912 static int test_ahash_jiffies_digest(struct ahash_request *req, int blen,
915 unsigned long start, end;
919 for (start = jiffies, end = start + secs * HZ, bcount = 0;
920 time_before(jiffies, end); bcount++) {
921 ret = do_one_ahash_op(req, crypto_ahash_digest(req));
926 printk("%6u opers/sec, %9lu bytes/sec\n",
927 bcount / secs, ((long)bcount * blen) / secs);
932 static int test_ahash_jiffies(struct ahash_request *req, int blen,
933 int plen, char *out, int secs)
935 unsigned long start, end;
940 return test_ahash_jiffies_digest(req, blen, out, secs);
942 for (start = jiffies, end = start + secs * HZ, bcount = 0;
943 time_before(jiffies, end); bcount++) {
944 ret = do_one_ahash_op(req, crypto_ahash_init(req));
947 for (pcount = 0; pcount < blen; pcount += plen) {
948 ret = do_one_ahash_op(req, crypto_ahash_update(req));
952 /* we assume there is enough space in 'out' for the result */
953 ret = do_one_ahash_op(req, crypto_ahash_final(req));
958 pr_cont("%6u opers/sec, %9lu bytes/sec\n",
959 bcount / secs, ((long)bcount * blen) / secs);
964 static int test_ahash_cycles_digest(struct ahash_request *req, int blen,
967 unsigned long cycles = 0;
971 for (i = 0; i < 4; i++) {
972 ret = do_one_ahash_op(req, crypto_ahash_digest(req));
977 /* The real thing. */
978 for (i = 0; i < 8; i++) {
981 start = get_cycles();
983 ret = do_one_ahash_op(req, crypto_ahash_digest(req));
989 cycles += end - start;
996 pr_cont("%6lu cycles/operation, %4lu cycles/byte\n",
997 cycles / 8, cycles / (8 * blen));
1002 static int test_ahash_cycles(struct ahash_request *req, int blen,
1003 int plen, char *out)
1005 unsigned long cycles = 0;
1009 return test_ahash_cycles_digest(req, blen, out);
1012 for (i = 0; i < 4; i++) {
1013 ret = do_one_ahash_op(req, crypto_ahash_init(req));
1016 for (pcount = 0; pcount < blen; pcount += plen) {
1017 ret = do_one_ahash_op(req, crypto_ahash_update(req));
1021 ret = do_one_ahash_op(req, crypto_ahash_final(req));
1026 /* The real thing. */
1027 for (i = 0; i < 8; i++) {
1028 cycles_t start, end;
1030 start = get_cycles();
1032 ret = do_one_ahash_op(req, crypto_ahash_init(req));
1035 for (pcount = 0; pcount < blen; pcount += plen) {
1036 ret = do_one_ahash_op(req, crypto_ahash_update(req));
1040 ret = do_one_ahash_op(req, crypto_ahash_final(req));
1046 cycles += end - start;
1053 pr_cont("%6lu cycles/operation, %4lu cycles/byte\n",
1054 cycles / 8, cycles / (8 * blen));
1059 static void test_ahash_speed_common(const char *algo, unsigned int secs,
1060 struct hash_speed *speed, unsigned mask)
1062 struct scatterlist sg[TVMEMSIZE];
1063 struct crypto_wait wait;
1064 struct ahash_request *req;
1065 struct crypto_ahash *tfm;
1069 tfm = crypto_alloc_ahash(algo, 0, mask);
1071 pr_err("failed to load transform for %s: %ld\n",
1072 algo, PTR_ERR(tfm));
1076 printk(KERN_INFO "\ntesting speed of async %s (%s)\n", algo,
1077 get_driver_name(crypto_ahash, tfm));
1079 if (crypto_ahash_digestsize(tfm) > MAX_DIGEST_SIZE) {
1080 pr_err("digestsize(%u) > %d\n", crypto_ahash_digestsize(tfm),
1085 test_hash_sg_init(sg);
1086 req = ahash_request_alloc(tfm, GFP_KERNEL);
1088 pr_err("ahash request allocation failure\n");
1092 crypto_init_wait(&wait);
1093 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
1094 crypto_req_done, &wait);
1096 output = kmalloc(MAX_DIGEST_SIZE, GFP_KERNEL);
1100 for (i = 0; speed[i].blen != 0; i++) {
1101 if (speed[i].blen > TVMEMSIZE * PAGE_SIZE) {
1102 pr_err("template (%u) too big for tvmem (%lu)\n",
1103 speed[i].blen, TVMEMSIZE * PAGE_SIZE);
1108 crypto_ahash_setkey(tfm, tvmem[0], klen);
1111 "(%5u byte blocks,%5u bytes per update,%4u updates): ",
1112 i, speed[i].blen, speed[i].plen, speed[i].blen / speed[i].plen);
1114 ahash_request_set_crypt(req, sg, output, speed[i].plen);
1117 ret = test_ahash_jiffies(req, speed[i].blen,
1118 speed[i].plen, output, secs);
1121 ret = test_ahash_cycles(req, speed[i].blen,
1122 speed[i].plen, output);
1126 pr_err("hashing failed ret=%d\n", ret);
1134 ahash_request_free(req);
1137 crypto_free_ahash(tfm);
1140 static void test_ahash_speed(const char *algo, unsigned int secs,
1141 struct hash_speed *speed)
1143 return test_ahash_speed_common(algo, secs, speed, 0);
1146 static void test_hash_speed(const char *algo, unsigned int secs,
1147 struct hash_speed *speed)
1149 return test_ahash_speed_common(algo, secs, speed, CRYPTO_ALG_ASYNC);
1152 struct test_mb_skcipher_data {
1153 struct scatterlist sg[XBUFSIZE];
1154 struct skcipher_request *req;
1155 struct crypto_wait wait;
1156 char *xbuf[XBUFSIZE];
1159 static int do_mult_acipher_op(struct test_mb_skcipher_data *data, int enc,
1160 u32 num_mb, int *rc)
1164 /* Fire up a bunch of concurrent requests */
1165 for (i = 0; i < num_mb; i++) {
1167 rc[i] = crypto_skcipher_encrypt(data[i].req);
1169 rc[i] = crypto_skcipher_decrypt(data[i].req);
1172 /* Wait for all requests to finish */
1173 for (i = 0; i < num_mb; i++) {
1174 rc[i] = crypto_wait_req(rc[i], &data[i].wait);
1177 pr_info("concurrent request %d error %d\n", i, rc[i]);
1185 static int test_mb_acipher_jiffies(struct test_mb_skcipher_data *data, int enc,
1186 int blen, int secs, u32 num_mb)
1188 unsigned long start, end;
1193 rc = kcalloc(num_mb, sizeof(*rc), GFP_KERNEL);
1197 for (start = jiffies, end = start + secs * HZ, bcount = 0;
1198 time_before(jiffies, end); bcount++) {
1199 ret = do_mult_acipher_op(data, enc, num_mb, rc);
1204 pr_cont("%d operations in %d seconds (%llu bytes)\n",
1205 bcount * num_mb, secs, (u64)bcount * blen * num_mb);
1212 static int test_mb_acipher_cycles(struct test_mb_skcipher_data *data, int enc,
1213 int blen, u32 num_mb)
1215 unsigned long cycles = 0;
1220 rc = kcalloc(num_mb, sizeof(*rc), GFP_KERNEL);
1225 for (i = 0; i < 4; i++) {
1226 ret = do_mult_acipher_op(data, enc, num_mb, rc);
1231 /* The real thing. */
1232 for (i = 0; i < 8; i++) {
1233 cycles_t start, end;
1235 start = get_cycles();
1236 ret = do_mult_acipher_op(data, enc, num_mb, rc);
1242 cycles += end - start;
1245 pr_cont("1 operation in %lu cycles (%d bytes)\n",
1246 (cycles + 4) / (8 * num_mb), blen);
1253 static void test_mb_skcipher_speed(const char *algo, int enc, int secs,
1254 struct cipher_speed_template *template,
1255 unsigned int tcount, u8 *keysize, u32 num_mb)
1257 struct test_mb_skcipher_data *data;
1258 struct crypto_skcipher *tfm;
1259 unsigned int i, j, iv_len;
1271 data = kcalloc(num_mb, sizeof(*data), GFP_KERNEL);
1275 tfm = crypto_alloc_skcipher(algo, 0, 0);
1277 pr_err("failed to load transform for %s: %ld\n",
1278 algo, PTR_ERR(tfm));
1282 for (i = 0; i < num_mb; ++i)
1283 if (testmgr_alloc_buf(data[i].xbuf)) {
1285 testmgr_free_buf(data[i].xbuf);
1290 for (i = 0; i < num_mb; ++i)
1291 if (testmgr_alloc_buf(data[i].xbuf)) {
1293 testmgr_free_buf(data[i].xbuf);
1298 for (i = 0; i < num_mb; ++i) {
1299 data[i].req = skcipher_request_alloc(tfm, GFP_KERNEL);
1301 pr_err("alg: skcipher: Failed to allocate request for %s\n",
1304 skcipher_request_free(data[i].req);
1309 for (i = 0; i < num_mb; ++i) {
1310 skcipher_request_set_callback(data[i].req,
1311 CRYPTO_TFM_REQ_MAY_BACKLOG,
1312 crypto_req_done, &data[i].wait);
1313 crypto_init_wait(&data[i].wait);
1316 pr_info("\ntesting speed of multibuffer %s (%s) %s\n", algo,
1317 get_driver_name(crypto_skcipher, tfm), e);
1321 b_size = block_sizes;
1323 u32 bs = round_up(*b_size, crypto_skcipher_blocksize(tfm));
1325 if (bs > XBUFSIZE * PAGE_SIZE) {
1326 pr_err("template (%u) too big for buffer (%lu)\n",
1327 *b_size, XBUFSIZE * PAGE_SIZE);
1331 pr_info("test %u (%d bit key, %d byte blocks): ", i,
1334 /* Set up tfm global state, i.e. the key */
1336 memset(tvmem[0], 0xff, PAGE_SIZE);
1338 for (j = 0; j < tcount; j++) {
1339 if (template[j].klen == *keysize) {
1340 key = template[j].key;
1345 crypto_skcipher_clear_flags(tfm, ~0);
1347 ret = crypto_skcipher_setkey(tfm, key, *keysize);
1349 pr_err("setkey() failed flags=%x\n",
1350 crypto_skcipher_get_flags(tfm));
1354 iv_len = crypto_skcipher_ivsize(tfm);
1356 memset(&iv, 0xff, iv_len);
1358 /* Now setup per request stuff, i.e. buffers */
1360 for (j = 0; j < num_mb; ++j) {
1361 struct test_mb_skcipher_data *cur = &data[j];
1362 unsigned int k = bs;
1363 unsigned int pages = DIV_ROUND_UP(k, PAGE_SIZE);
1366 sg_init_table(cur->sg, pages);
1368 while (k > PAGE_SIZE) {
1369 sg_set_buf(cur->sg + p, cur->xbuf[p],
1371 memset(cur->xbuf[p], 0xff, PAGE_SIZE);
1376 sg_set_buf(cur->sg + p, cur->xbuf[p], k);
1377 memset(cur->xbuf[p], 0xff, k);
1379 skcipher_request_set_crypt(cur->req, cur->sg,
1385 ret = test_mb_acipher_jiffies(data, enc,
1390 ret = test_mb_acipher_cycles(data, enc,
1395 pr_err("%s() failed flags=%x\n", e,
1396 crypto_skcipher_get_flags(tfm));
1406 for (i = 0; i < num_mb; ++i)
1407 skcipher_request_free(data[i].req);
1409 for (i = 0; i < num_mb; ++i)
1410 testmgr_free_buf(data[i].xbuf);
1412 crypto_free_skcipher(tfm);
1417 static inline int do_one_acipher_op(struct skcipher_request *req, int ret)
1419 struct crypto_wait *wait = req->base.data;
1421 return crypto_wait_req(ret, wait);
1424 static int test_acipher_jiffies(struct skcipher_request *req, int enc,
1427 unsigned long start, end;
1431 for (start = jiffies, end = start + secs * HZ, bcount = 0;
1432 time_before(jiffies, end); bcount++) {
1434 ret = do_one_acipher_op(req,
1435 crypto_skcipher_encrypt(req));
1437 ret = do_one_acipher_op(req,
1438 crypto_skcipher_decrypt(req));
1444 pr_cont("%d operations in %d seconds (%llu bytes)\n",
1445 bcount, secs, (u64)bcount * blen);
1449 static int test_acipher_cycles(struct skcipher_request *req, int enc,
1452 unsigned long cycles = 0;
1457 for (i = 0; i < 4; i++) {
1459 ret = do_one_acipher_op(req,
1460 crypto_skcipher_encrypt(req));
1462 ret = do_one_acipher_op(req,
1463 crypto_skcipher_decrypt(req));
1469 /* The real thing. */
1470 for (i = 0; i < 8; i++) {
1471 cycles_t start, end;
1473 start = get_cycles();
1475 ret = do_one_acipher_op(req,
1476 crypto_skcipher_encrypt(req));
1478 ret = do_one_acipher_op(req,
1479 crypto_skcipher_decrypt(req));
1485 cycles += end - start;
1490 pr_cont("1 operation in %lu cycles (%d bytes)\n",
1491 (cycles + 4) / 8, blen);
1496 static void test_skcipher_speed(const char *algo, int enc, unsigned int secs,
1497 struct cipher_speed_template *template,
1498 unsigned int tcount, u8 *keysize, bool async)
1500 unsigned int ret, i, j, k, iv_len;
1501 struct crypto_wait wait;
1504 struct skcipher_request *req;
1505 struct crypto_skcipher *tfm;
1514 crypto_init_wait(&wait);
1516 tfm = crypto_alloc_skcipher(algo, 0, async ? 0 : CRYPTO_ALG_ASYNC);
1519 pr_err("failed to load transform for %s: %ld\n", algo,
1524 pr_info("\ntesting speed of %s %s (%s) %s\n", async ? "async" : "sync",
1525 algo, get_driver_name(crypto_skcipher, tfm), e);
1527 req = skcipher_request_alloc(tfm, GFP_KERNEL);
1529 pr_err("tcrypt: skcipher: Failed to allocate request for %s\n",
1534 skcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
1535 crypto_req_done, &wait);
1539 b_size = block_sizes;
1542 u32 bs = round_up(*b_size, crypto_skcipher_blocksize(tfm));
1543 struct scatterlist sg[TVMEMSIZE];
1545 if ((*keysize + bs) > TVMEMSIZE * PAGE_SIZE) {
1546 pr_err("template (%u) too big for "
1547 "tvmem (%lu)\n", *keysize + bs,
1548 TVMEMSIZE * PAGE_SIZE);
1552 pr_info("test %u (%d bit key, %d byte blocks): ", i,
1555 memset(tvmem[0], 0xff, PAGE_SIZE);
1557 /* set key, plain text and IV */
1559 for (j = 0; j < tcount; j++) {
1560 if (template[j].klen == *keysize) {
1561 key = template[j].key;
1566 crypto_skcipher_clear_flags(tfm, ~0);
1568 ret = crypto_skcipher_setkey(tfm, key, *keysize);
1570 pr_err("setkey() failed flags=%x\n",
1571 crypto_skcipher_get_flags(tfm));
1576 sg_init_table(sg, DIV_ROUND_UP(k, PAGE_SIZE));
1578 if (k > PAGE_SIZE) {
1579 sg_set_buf(sg, tvmem[0] + *keysize,
1580 PAGE_SIZE - *keysize);
1583 while (k > PAGE_SIZE) {
1584 sg_set_buf(sg + j, tvmem[j], PAGE_SIZE);
1585 memset(tvmem[j], 0xff, PAGE_SIZE);
1589 sg_set_buf(sg + j, tvmem[j], k);
1590 memset(tvmem[j], 0xff, k);
1592 sg_set_buf(sg, tvmem[0] + *keysize, bs);
1595 iv_len = crypto_skcipher_ivsize(tfm);
1597 memset(&iv, 0xff, iv_len);
1599 skcipher_request_set_crypt(req, sg, sg, bs, iv);
1602 ret = test_acipher_jiffies(req, enc,
1606 ret = test_acipher_cycles(req, enc,
1611 pr_err("%s() failed flags=%x\n", e,
1612 crypto_skcipher_get_flags(tfm));
1622 skcipher_request_free(req);
1624 crypto_free_skcipher(tfm);
1627 static void test_acipher_speed(const char *algo, int enc, unsigned int secs,
1628 struct cipher_speed_template *template,
1629 unsigned int tcount, u8 *keysize)
1631 return test_skcipher_speed(algo, enc, secs, template, tcount, keysize,
1635 static void test_cipher_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_available(void)
1645 const char **name = check;
1648 printk("alg %s ", *name);
1649 printk(crypto_has_alg(*name, 0, 0) ?
1650 "found\n" : "not found\n");
1655 static inline int tcrypt_test(const char *alg)
1659 pr_debug("testing %s\n", alg);
1661 ret = alg_test(alg, alg, 0, 0);
1662 /* non-fips algs return -EINVAL in fips mode */
1663 if (fips_enabled && ret == -EINVAL)
1668 static int do_test(const char *alg, u32 type, u32 mask, int m, u32 num_mb)
1676 if (!crypto_has_alg(alg, type,
1677 mask ?: CRYPTO_ALG_TYPE_MASK))
1682 for (i = 1; i < 200; i++)
1683 ret += do_test(NULL, 0, 0, i, num_mb);
1687 ret += tcrypt_test("md5");
1691 ret += tcrypt_test("sha1");
1695 ret += tcrypt_test("ecb(des)");
1696 ret += tcrypt_test("cbc(des)");
1697 ret += tcrypt_test("ctr(des)");
1701 ret += tcrypt_test("ecb(des3_ede)");
1702 ret += tcrypt_test("cbc(des3_ede)");
1703 ret += tcrypt_test("ctr(des3_ede)");
1707 ret += tcrypt_test("md4");
1711 ret += tcrypt_test("sha256");
1715 ret += tcrypt_test("ecb(blowfish)");
1716 ret += tcrypt_test("cbc(blowfish)");
1717 ret += tcrypt_test("ctr(blowfish)");
1721 ret += tcrypt_test("ecb(twofish)");
1722 ret += tcrypt_test("cbc(twofish)");
1723 ret += tcrypt_test("ctr(twofish)");
1724 ret += tcrypt_test("lrw(twofish)");
1725 ret += tcrypt_test("xts(twofish)");
1729 ret += tcrypt_test("ecb(serpent)");
1730 ret += tcrypt_test("cbc(serpent)");
1731 ret += tcrypt_test("ctr(serpent)");
1732 ret += tcrypt_test("lrw(serpent)");
1733 ret += tcrypt_test("xts(serpent)");
1737 ret += tcrypt_test("ecb(aes)");
1738 ret += tcrypt_test("cbc(aes)");
1739 ret += tcrypt_test("lrw(aes)");
1740 ret += tcrypt_test("xts(aes)");
1741 ret += tcrypt_test("ctr(aes)");
1742 ret += tcrypt_test("rfc3686(ctr(aes))");
1743 ret += tcrypt_test("ofb(aes)");
1744 ret += tcrypt_test("cfb(aes)");
1748 ret += tcrypt_test("sha384");
1752 ret += tcrypt_test("sha512");
1756 ret += tcrypt_test("deflate");
1760 ret += tcrypt_test("ecb(cast5)");
1761 ret += tcrypt_test("cbc(cast5)");
1762 ret += tcrypt_test("ctr(cast5)");
1766 ret += tcrypt_test("ecb(cast6)");
1767 ret += tcrypt_test("cbc(cast6)");
1768 ret += tcrypt_test("ctr(cast6)");
1769 ret += tcrypt_test("lrw(cast6)");
1770 ret += tcrypt_test("xts(cast6)");
1774 ret += tcrypt_test("ecb(arc4)");
1778 ret += tcrypt_test("michael_mic");
1782 ret += tcrypt_test("crc32c");
1786 ret += tcrypt_test("ecb(tea)");
1790 ret += tcrypt_test("ecb(xtea)");
1794 ret += tcrypt_test("ecb(khazad)");
1798 ret += tcrypt_test("wp512");
1802 ret += tcrypt_test("wp384");
1806 ret += tcrypt_test("wp256");
1810 ret += tcrypt_test("ecb(anubis)");
1811 ret += tcrypt_test("cbc(anubis)");
1815 ret += tcrypt_test("ecb(xeta)");
1819 ret += tcrypt_test("pcbc(fcrypt)");
1823 ret += tcrypt_test("ecb(camellia)");
1824 ret += tcrypt_test("cbc(camellia)");
1825 ret += tcrypt_test("ctr(camellia)");
1826 ret += tcrypt_test("lrw(camellia)");
1827 ret += tcrypt_test("xts(camellia)");
1831 ret += tcrypt_test("sha224");
1835 ret += tcrypt_test("gcm(aes)");
1839 ret += tcrypt_test("lzo");
1843 ret += tcrypt_test("ccm(aes)");
1847 ret += tcrypt_test("cts(cbc(aes))");
1851 ret += tcrypt_test("xxhash64");
1855 ret += tcrypt_test("rmd160");
1859 ret += tcrypt_test("blake2s-256");
1863 ret += tcrypt_test("blake2b-512");
1867 ret += tcrypt_test("ecb(seed)");
1871 ret += tcrypt_test("rfc4309(ccm(aes))");
1875 ret += tcrypt_test("ghash");
1879 ret += tcrypt_test("crct10dif");
1883 ret += tcrypt_test("sha3-224");
1887 ret += tcrypt_test("sha3-256");
1891 ret += tcrypt_test("sha3-384");
1895 ret += tcrypt_test("sha3-512");
1899 ret += tcrypt_test("sm3");
1903 ret += tcrypt_test("streebog256");
1907 ret += tcrypt_test("streebog512");
1911 ret += tcrypt_test("hmac(md5)");
1915 ret += tcrypt_test("hmac(sha1)");
1919 ret += tcrypt_test("hmac(sha256)");
1923 ret += tcrypt_test("hmac(sha384)");
1927 ret += tcrypt_test("hmac(sha512)");
1931 ret += tcrypt_test("hmac(sha224)");
1935 ret += tcrypt_test("xcbc(aes)");
1939 ret += tcrypt_test("hmac(rmd160)");
1943 ret += tcrypt_test("vmac64(aes)");
1947 ret += tcrypt_test("hmac(sha3-224)");
1951 ret += tcrypt_test("hmac(sha3-256)");
1955 ret += tcrypt_test("hmac(sha3-384)");
1959 ret += tcrypt_test("hmac(sha3-512)");
1963 ret += tcrypt_test("hmac(streebog256)");
1967 ret += tcrypt_test("hmac(streebog512)");
1971 ret += tcrypt_test("ansi_cprng");
1975 ret += tcrypt_test("rfc4106(gcm(aes))");
1979 ret += tcrypt_test("rfc4543(gcm(aes))");
1983 ret += tcrypt_test("cmac(aes)");
1987 ret += tcrypt_test("cmac(des3_ede)");
1991 ret += tcrypt_test("authenc(hmac(sha1),cbc(aes))");
1995 ret += tcrypt_test("authenc(hmac(md5),ecb(cipher_null))");
1999 ret += tcrypt_test("authenc(hmac(sha1),ecb(cipher_null))");
2002 ret += tcrypt_test("authenc(hmac(sha1),cbc(des))");
2005 ret += tcrypt_test("authenc(hmac(sha1),cbc(des3_ede))");
2008 ret += tcrypt_test("authenc(hmac(sha224),cbc(des))");
2011 ret += tcrypt_test("authenc(hmac(sha224),cbc(des3_ede))");
2014 ret += tcrypt_test("authenc(hmac(sha256),cbc(des))");
2017 ret += tcrypt_test("authenc(hmac(sha256),cbc(des3_ede))");
2020 ret += tcrypt_test("authenc(hmac(sha384),cbc(des))");
2023 ret += tcrypt_test("authenc(hmac(sha384),cbc(des3_ede))");
2026 ret += tcrypt_test("authenc(hmac(sha512),cbc(des))");
2029 ret += tcrypt_test("authenc(hmac(sha512),cbc(des3_ede))");
2032 ret += tcrypt_test("ecb(sm4)");
2033 ret += tcrypt_test("cbc(sm4)");
2034 ret += tcrypt_test("ctr(sm4)");
2037 test_cipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
2038 speed_template_16_24_32);
2039 test_cipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0,
2040 speed_template_16_24_32);
2041 test_cipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0,
2042 speed_template_16_24_32);
2043 test_cipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0,
2044 speed_template_16_24_32);
2045 test_cipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0,
2046 speed_template_32_40_48);
2047 test_cipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0,
2048 speed_template_32_40_48);
2049 test_cipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0,
2050 speed_template_32_64);
2051 test_cipher_speed("xts(aes)", DECRYPT, sec, NULL, 0,
2052 speed_template_32_64);
2053 test_cipher_speed("cts(cbc(aes))", ENCRYPT, sec, NULL, 0,
2054 speed_template_16_24_32);
2055 test_cipher_speed("cts(cbc(aes))", DECRYPT, sec, NULL, 0,
2056 speed_template_16_24_32);
2057 test_cipher_speed("ctr(aes)", ENCRYPT, sec, NULL, 0,
2058 speed_template_16_24_32);
2059 test_cipher_speed("ctr(aes)", DECRYPT, sec, NULL, 0,
2060 speed_template_16_24_32);
2061 test_cipher_speed("cfb(aes)", ENCRYPT, sec, NULL, 0,
2062 speed_template_16_24_32);
2063 test_cipher_speed("cfb(aes)", DECRYPT, sec, NULL, 0,
2064 speed_template_16_24_32);
2068 test_cipher_speed("ecb(des3_ede)", ENCRYPT, sec,
2069 des3_speed_template, DES3_SPEED_VECTORS,
2071 test_cipher_speed("ecb(des3_ede)", DECRYPT, sec,
2072 des3_speed_template, DES3_SPEED_VECTORS,
2074 test_cipher_speed("cbc(des3_ede)", ENCRYPT, sec,
2075 des3_speed_template, DES3_SPEED_VECTORS,
2077 test_cipher_speed("cbc(des3_ede)", DECRYPT, sec,
2078 des3_speed_template, DES3_SPEED_VECTORS,
2080 test_cipher_speed("ctr(des3_ede)", ENCRYPT, sec,
2081 des3_speed_template, DES3_SPEED_VECTORS,
2083 test_cipher_speed("ctr(des3_ede)", DECRYPT, sec,
2084 des3_speed_template, DES3_SPEED_VECTORS,
2089 test_cipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0,
2090 speed_template_16_24_32);
2091 test_cipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0,
2092 speed_template_16_24_32);
2093 test_cipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0,
2094 speed_template_16_24_32);
2095 test_cipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0,
2096 speed_template_16_24_32);
2097 test_cipher_speed("ctr(twofish)", ENCRYPT, sec, NULL, 0,
2098 speed_template_16_24_32);
2099 test_cipher_speed("ctr(twofish)", DECRYPT, sec, NULL, 0,
2100 speed_template_16_24_32);
2101 test_cipher_speed("lrw(twofish)", ENCRYPT, sec, NULL, 0,
2102 speed_template_32_40_48);
2103 test_cipher_speed("lrw(twofish)", DECRYPT, sec, NULL, 0,
2104 speed_template_32_40_48);
2105 test_cipher_speed("xts(twofish)", ENCRYPT, sec, NULL, 0,
2106 speed_template_32_48_64);
2107 test_cipher_speed("xts(twofish)", DECRYPT, sec, NULL, 0,
2108 speed_template_32_48_64);
2112 test_cipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0,
2113 speed_template_8_32);
2114 test_cipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0,
2115 speed_template_8_32);
2116 test_cipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0,
2117 speed_template_8_32);
2118 test_cipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0,
2119 speed_template_8_32);
2120 test_cipher_speed("ctr(blowfish)", ENCRYPT, sec, NULL, 0,
2121 speed_template_8_32);
2122 test_cipher_speed("ctr(blowfish)", DECRYPT, sec, NULL, 0,
2123 speed_template_8_32);
2127 test_cipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0,
2129 test_cipher_speed("ecb(des)", DECRYPT, sec, NULL, 0,
2131 test_cipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0,
2133 test_cipher_speed("cbc(des)", DECRYPT, sec, NULL, 0,
2138 test_cipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0,
2139 speed_template_16_24_32);
2140 test_cipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0,
2141 speed_template_16_24_32);
2142 test_cipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0,
2143 speed_template_16_24_32);
2144 test_cipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
2145 speed_template_16_24_32);
2146 test_cipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0,
2147 speed_template_16_24_32);
2148 test_cipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0,
2149 speed_template_16_24_32);
2150 test_cipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0,
2151 speed_template_32_40_48);
2152 test_cipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0,
2153 speed_template_32_40_48);
2154 test_cipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0,
2155 speed_template_32_48_64);
2156 test_cipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0,
2157 speed_template_32_48_64);
2161 test_cipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0,
2162 speed_template_16_32);
2163 test_cipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0,
2164 speed_template_16_32);
2165 test_cipher_speed("cbc(serpent)", ENCRYPT, sec, NULL, 0,
2166 speed_template_16_32);
2167 test_cipher_speed("cbc(serpent)", DECRYPT, sec, NULL, 0,
2168 speed_template_16_32);
2169 test_cipher_speed("ctr(serpent)", ENCRYPT, sec, NULL, 0,
2170 speed_template_16_32);
2171 test_cipher_speed("ctr(serpent)", DECRYPT, sec, NULL, 0,
2172 speed_template_16_32);
2173 test_cipher_speed("lrw(serpent)", ENCRYPT, sec, NULL, 0,
2174 speed_template_32_48);
2175 test_cipher_speed("lrw(serpent)", DECRYPT, sec, NULL, 0,
2176 speed_template_32_48);
2177 test_cipher_speed("xts(serpent)", ENCRYPT, sec, NULL, 0,
2178 speed_template_32_64);
2179 test_cipher_speed("xts(serpent)", DECRYPT, sec, NULL, 0,
2180 speed_template_32_64);
2184 test_cipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0,
2189 test_cipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0,
2190 speed_template_8_16);
2191 test_cipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0,
2192 speed_template_8_16);
2193 test_cipher_speed("cbc(cast5)", ENCRYPT, sec, NULL, 0,
2194 speed_template_8_16);
2195 test_cipher_speed("cbc(cast5)", DECRYPT, sec, NULL, 0,
2196 speed_template_8_16);
2197 test_cipher_speed("ctr(cast5)", ENCRYPT, sec, NULL, 0,
2198 speed_template_8_16);
2199 test_cipher_speed("ctr(cast5)", DECRYPT, sec, NULL, 0,
2200 speed_template_8_16);
2204 test_cipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0,
2205 speed_template_16_32);
2206 test_cipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0,
2207 speed_template_16_32);
2208 test_cipher_speed("cbc(cast6)", ENCRYPT, sec, NULL, 0,
2209 speed_template_16_32);
2210 test_cipher_speed("cbc(cast6)", DECRYPT, sec, NULL, 0,
2211 speed_template_16_32);
2212 test_cipher_speed("ctr(cast6)", ENCRYPT, sec, NULL, 0,
2213 speed_template_16_32);
2214 test_cipher_speed("ctr(cast6)", DECRYPT, sec, NULL, 0,
2215 speed_template_16_32);
2216 test_cipher_speed("lrw(cast6)", ENCRYPT, sec, NULL, 0,
2217 speed_template_32_48);
2218 test_cipher_speed("lrw(cast6)", DECRYPT, sec, NULL, 0,
2219 speed_template_32_48);
2220 test_cipher_speed("xts(cast6)", ENCRYPT, sec, NULL, 0,
2221 speed_template_32_64);
2222 test_cipher_speed("xts(cast6)", DECRYPT, sec, NULL, 0,
2223 speed_template_32_64);
2227 test_aead_speed("rfc4106(gcm(aes))", ENCRYPT, sec,
2228 NULL, 0, 16, 16, aead_speed_template_20);
2229 test_aead_speed("gcm(aes)", ENCRYPT, sec,
2230 NULL, 0, 16, 8, speed_template_16_24_32);
2231 test_aead_speed("rfc4106(gcm(aes))", DECRYPT, sec,
2232 NULL, 0, 16, 16, aead_speed_template_20);
2233 test_aead_speed("gcm(aes)", DECRYPT, sec,
2234 NULL, 0, 16, 8, speed_template_16_24_32);
2238 test_aead_speed("rfc4309(ccm(aes))", ENCRYPT, sec,
2239 NULL, 0, 16, 16, aead_speed_template_19);
2240 test_aead_speed("rfc4309(ccm(aes))", DECRYPT, sec,
2241 NULL, 0, 16, 16, aead_speed_template_19);
2245 test_aead_speed("rfc7539esp(chacha20,poly1305)", ENCRYPT, sec,
2246 NULL, 0, 16, 8, aead_speed_template_36);
2247 test_aead_speed("rfc7539esp(chacha20,poly1305)", DECRYPT, sec,
2248 NULL, 0, 16, 8, aead_speed_template_36);
2252 test_cipher_speed("chacha20", ENCRYPT, sec, NULL, 0,
2257 test_mb_aead_speed("rfc4106(gcm(aes))", ENCRYPT, sec, NULL,
2258 0, 16, 16, aead_speed_template_20, num_mb);
2259 test_mb_aead_speed("gcm(aes)", ENCRYPT, sec, NULL, 0, 16, 8,
2260 speed_template_16_24_32, num_mb);
2261 test_mb_aead_speed("rfc4106(gcm(aes))", DECRYPT, sec, NULL,
2262 0, 16, 16, aead_speed_template_20, num_mb);
2263 test_mb_aead_speed("gcm(aes)", DECRYPT, sec, NULL, 0, 16, 8,
2264 speed_template_16_24_32, num_mb);
2268 test_mb_aead_speed("rfc4309(ccm(aes))", ENCRYPT, sec, NULL, 0,
2269 16, 16, aead_speed_template_19, num_mb);
2270 test_mb_aead_speed("rfc4309(ccm(aes))", DECRYPT, sec, NULL, 0,
2271 16, 16, aead_speed_template_19, num_mb);
2275 test_mb_aead_speed("rfc7539esp(chacha20,poly1305)", ENCRYPT,
2276 sec, NULL, 0, 16, 8, aead_speed_template_36,
2278 test_mb_aead_speed("rfc7539esp(chacha20,poly1305)", DECRYPT,
2279 sec, NULL, 0, 16, 8, aead_speed_template_36,
2284 test_cipher_speed("ecb(sm4)", ENCRYPT, sec, NULL, 0,
2286 test_cipher_speed("ecb(sm4)", DECRYPT, sec, NULL, 0,
2288 test_cipher_speed("cbc(sm4)", ENCRYPT, sec, NULL, 0,
2290 test_cipher_speed("cbc(sm4)", DECRYPT, sec, NULL, 0,
2292 test_cipher_speed("ctr(sm4)", ENCRYPT, sec, NULL, 0,
2294 test_cipher_speed("ctr(sm4)", DECRYPT, sec, NULL, 0,
2299 test_cipher_speed("adiantum(xchacha12,aes)", ENCRYPT, sec, NULL,
2300 0, speed_template_32);
2301 test_cipher_speed("adiantum(xchacha12,aes)", DECRYPT, sec, NULL,
2302 0, speed_template_32);
2303 test_cipher_speed("adiantum(xchacha20,aes)", ENCRYPT, sec, NULL,
2304 0, speed_template_32);
2305 test_cipher_speed("adiantum(xchacha20,aes)", DECRYPT, sec, NULL,
2306 0, speed_template_32);
2310 test_acipher_speed("essiv(cbc(aes),sha256)",
2311 ENCRYPT, sec, NULL, 0,
2312 speed_template_16_24_32);
2313 test_acipher_speed("essiv(cbc(aes),sha256)",
2314 DECRYPT, sec, NULL, 0,
2315 speed_template_16_24_32);
2319 test_aead_speed("aegis128", ENCRYPT, sec,
2320 NULL, 0, 16, 8, speed_template_16);
2321 test_aead_speed("aegis128", DECRYPT, sec,
2322 NULL, 0, 16, 8, speed_template_16);
2327 test_hash_speed(alg, sec, generic_hash_speed_template);
2332 test_hash_speed("md4", sec, generic_hash_speed_template);
2333 if (mode > 300 && mode < 400) break;
2336 test_hash_speed("md5", sec, generic_hash_speed_template);
2337 if (mode > 300 && mode < 400) break;
2340 test_hash_speed("sha1", sec, generic_hash_speed_template);
2341 if (mode > 300 && mode < 400) break;
2344 test_hash_speed("sha256", sec, generic_hash_speed_template);
2345 if (mode > 300 && mode < 400) break;
2348 test_hash_speed("sha384", sec, generic_hash_speed_template);
2349 if (mode > 300 && mode < 400) break;
2352 test_hash_speed("sha512", sec, generic_hash_speed_template);
2353 if (mode > 300 && mode < 400) break;
2356 test_hash_speed("wp256", sec, generic_hash_speed_template);
2357 if (mode > 300 && mode < 400) break;
2360 test_hash_speed("wp384", sec, generic_hash_speed_template);
2361 if (mode > 300 && mode < 400) break;
2364 test_hash_speed("wp512", sec, generic_hash_speed_template);
2365 if (mode > 300 && mode < 400) break;
2368 test_hash_speed("sha224", sec, generic_hash_speed_template);
2369 if (mode > 300 && mode < 400) break;
2372 test_hash_speed("xxhash64", sec, generic_hash_speed_template);
2373 if (mode > 300 && mode < 400) break;
2376 test_hash_speed("rmd160", sec, generic_hash_speed_template);
2377 if (mode > 300 && mode < 400) break;
2380 test_hash_speed("blake2s-256", sec, generic_hash_speed_template);
2381 if (mode > 300 && mode < 400) break;
2384 test_hash_speed("blake2b-512", sec, generic_hash_speed_template);
2385 if (mode > 300 && mode < 400) break;
2389 test_hash_speed("ghash", sec, generic_hash_speed_template);
2390 if (mode > 300 && mode < 400) break;
2393 test_hash_speed("crc32c", sec, generic_hash_speed_template);
2394 if (mode > 300 && mode < 400) break;
2397 test_hash_speed("crct10dif", sec, generic_hash_speed_template);
2398 if (mode > 300 && mode < 400) break;
2401 test_hash_speed("poly1305", sec, poly1305_speed_template);
2402 if (mode > 300 && mode < 400) break;
2405 test_hash_speed("sha3-224", sec, generic_hash_speed_template);
2406 if (mode > 300 && mode < 400) break;
2409 test_hash_speed("sha3-256", sec, generic_hash_speed_template);
2410 if (mode > 300 && mode < 400) break;
2413 test_hash_speed("sha3-384", sec, generic_hash_speed_template);
2414 if (mode > 300 && mode < 400) break;
2417 test_hash_speed("sha3-512", sec, generic_hash_speed_template);
2418 if (mode > 300 && mode < 400) break;
2421 test_hash_speed("sm3", sec, generic_hash_speed_template);
2422 if (mode > 300 && mode < 400) break;
2425 test_hash_speed("streebog256", sec,
2426 generic_hash_speed_template);
2427 if (mode > 300 && mode < 400) break;
2430 test_hash_speed("streebog512", sec,
2431 generic_hash_speed_template);
2432 if (mode > 300 && mode < 400) break;
2439 test_ahash_speed(alg, sec, generic_hash_speed_template);
2444 test_ahash_speed("md4", sec, generic_hash_speed_template);
2445 if (mode > 400 && mode < 500) break;
2448 test_ahash_speed("md5", sec, generic_hash_speed_template);
2449 if (mode > 400 && mode < 500) break;
2452 test_ahash_speed("sha1", sec, generic_hash_speed_template);
2453 if (mode > 400 && mode < 500) break;
2456 test_ahash_speed("sha256", sec, generic_hash_speed_template);
2457 if (mode > 400 && mode < 500) break;
2460 test_ahash_speed("sha384", sec, generic_hash_speed_template);
2461 if (mode > 400 && mode < 500) break;
2464 test_ahash_speed("sha512", sec, generic_hash_speed_template);
2465 if (mode > 400 && mode < 500) break;
2468 test_ahash_speed("wp256", sec, generic_hash_speed_template);
2469 if (mode > 400 && mode < 500) break;
2472 test_ahash_speed("wp384", sec, generic_hash_speed_template);
2473 if (mode > 400 && mode < 500) break;
2476 test_ahash_speed("wp512", sec, generic_hash_speed_template);
2477 if (mode > 400 && mode < 500) break;
2480 test_ahash_speed("sha224", sec, generic_hash_speed_template);
2481 if (mode > 400 && mode < 500) break;
2484 test_ahash_speed("xxhash64", sec, generic_hash_speed_template);
2485 if (mode > 400 && mode < 500) break;
2488 test_ahash_speed("rmd160", sec, generic_hash_speed_template);
2489 if (mode > 400 && mode < 500) break;
2492 test_ahash_speed("blake2s-256", sec, generic_hash_speed_template);
2493 if (mode > 400 && mode < 500) break;
2496 test_ahash_speed("blake2b-512", sec, generic_hash_speed_template);
2497 if (mode > 400 && mode < 500) break;
2500 test_ahash_speed("sha3-224", sec, generic_hash_speed_template);
2501 if (mode > 400 && mode < 500) break;
2504 test_ahash_speed("sha3-256", sec, generic_hash_speed_template);
2505 if (mode > 400 && mode < 500) break;
2508 test_ahash_speed("sha3-384", sec, generic_hash_speed_template);
2509 if (mode > 400 && mode < 500) break;
2512 test_ahash_speed("sha3-512", sec, generic_hash_speed_template);
2513 if (mode > 400 && mode < 500) break;
2516 test_mb_ahash_speed("sha1", sec, generic_hash_speed_template,
2518 if (mode > 400 && mode < 500) break;
2521 test_mb_ahash_speed("sha256", sec, generic_hash_speed_template,
2523 if (mode > 400 && mode < 500) break;
2526 test_mb_ahash_speed("sha512", sec, generic_hash_speed_template,
2528 if (mode > 400 && mode < 500) break;
2531 test_mb_ahash_speed("sm3", sec, generic_hash_speed_template,
2533 if (mode > 400 && mode < 500) break;
2536 test_mb_ahash_speed("streebog256", sec,
2537 generic_hash_speed_template, num_mb);
2538 if (mode > 400 && mode < 500) break;
2541 test_mb_ahash_speed("streebog512", sec,
2542 generic_hash_speed_template, num_mb);
2543 if (mode > 400 && mode < 500) break;
2549 test_acipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
2550 speed_template_16_24_32);
2551 test_acipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0,
2552 speed_template_16_24_32);
2553 test_acipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0,
2554 speed_template_16_24_32);
2555 test_acipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0,
2556 speed_template_16_24_32);
2557 test_acipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0,
2558 speed_template_32_40_48);
2559 test_acipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0,
2560 speed_template_32_40_48);
2561 test_acipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0,
2562 speed_template_32_64);
2563 test_acipher_speed("xts(aes)", DECRYPT, sec, NULL, 0,
2564 speed_template_32_64);
2565 test_acipher_speed("cts(cbc(aes))", ENCRYPT, sec, NULL, 0,
2566 speed_template_16_24_32);
2567 test_acipher_speed("cts(cbc(aes))", DECRYPT, sec, NULL, 0,
2568 speed_template_16_24_32);
2569 test_acipher_speed("ctr(aes)", ENCRYPT, sec, NULL, 0,
2570 speed_template_16_24_32);
2571 test_acipher_speed("ctr(aes)", DECRYPT, sec, NULL, 0,
2572 speed_template_16_24_32);
2573 test_acipher_speed("cfb(aes)", ENCRYPT, sec, NULL, 0,
2574 speed_template_16_24_32);
2575 test_acipher_speed("cfb(aes)", DECRYPT, sec, NULL, 0,
2576 speed_template_16_24_32);
2577 test_acipher_speed("ofb(aes)", ENCRYPT, sec, NULL, 0,
2578 speed_template_16_24_32);
2579 test_acipher_speed("ofb(aes)", DECRYPT, sec, NULL, 0,
2580 speed_template_16_24_32);
2581 test_acipher_speed("rfc3686(ctr(aes))", ENCRYPT, sec, NULL, 0,
2582 speed_template_20_28_36);
2583 test_acipher_speed("rfc3686(ctr(aes))", DECRYPT, sec, NULL, 0,
2584 speed_template_20_28_36);
2588 test_acipher_speed("ecb(des3_ede)", ENCRYPT, sec,
2589 des3_speed_template, DES3_SPEED_VECTORS,
2591 test_acipher_speed("ecb(des3_ede)", DECRYPT, sec,
2592 des3_speed_template, DES3_SPEED_VECTORS,
2594 test_acipher_speed("cbc(des3_ede)", ENCRYPT, sec,
2595 des3_speed_template, DES3_SPEED_VECTORS,
2597 test_acipher_speed("cbc(des3_ede)", DECRYPT, sec,
2598 des3_speed_template, DES3_SPEED_VECTORS,
2600 test_acipher_speed("cfb(des3_ede)", ENCRYPT, sec,
2601 des3_speed_template, DES3_SPEED_VECTORS,
2603 test_acipher_speed("cfb(des3_ede)", DECRYPT, sec,
2604 des3_speed_template, DES3_SPEED_VECTORS,
2606 test_acipher_speed("ofb(des3_ede)", ENCRYPT, sec,
2607 des3_speed_template, DES3_SPEED_VECTORS,
2609 test_acipher_speed("ofb(des3_ede)", DECRYPT, sec,
2610 des3_speed_template, DES3_SPEED_VECTORS,
2615 test_acipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0,
2617 test_acipher_speed("ecb(des)", DECRYPT, sec, NULL, 0,
2619 test_acipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0,
2621 test_acipher_speed("cbc(des)", DECRYPT, sec, NULL, 0,
2623 test_acipher_speed("cfb(des)", ENCRYPT, sec, NULL, 0,
2625 test_acipher_speed("cfb(des)", DECRYPT, sec, NULL, 0,
2627 test_acipher_speed("ofb(des)", ENCRYPT, sec, NULL, 0,
2629 test_acipher_speed("ofb(des)", DECRYPT, sec, NULL, 0,
2634 test_acipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0,
2635 speed_template_16_32);
2636 test_acipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0,
2637 speed_template_16_32);
2638 test_acipher_speed("cbc(serpent)", ENCRYPT, sec, NULL, 0,
2639 speed_template_16_32);
2640 test_acipher_speed("cbc(serpent)", DECRYPT, sec, NULL, 0,
2641 speed_template_16_32);
2642 test_acipher_speed("ctr(serpent)", ENCRYPT, sec, NULL, 0,
2643 speed_template_16_32);
2644 test_acipher_speed("ctr(serpent)", DECRYPT, sec, NULL, 0,
2645 speed_template_16_32);
2646 test_acipher_speed("lrw(serpent)", ENCRYPT, sec, NULL, 0,
2647 speed_template_32_48);
2648 test_acipher_speed("lrw(serpent)", DECRYPT, sec, NULL, 0,
2649 speed_template_32_48);
2650 test_acipher_speed("xts(serpent)", ENCRYPT, sec, NULL, 0,
2651 speed_template_32_64);
2652 test_acipher_speed("xts(serpent)", DECRYPT, sec, NULL, 0,
2653 speed_template_32_64);
2657 test_acipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0,
2658 speed_template_16_24_32);
2659 test_acipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0,
2660 speed_template_16_24_32);
2661 test_acipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0,
2662 speed_template_16_24_32);
2663 test_acipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0,
2664 speed_template_16_24_32);
2665 test_acipher_speed("ctr(twofish)", ENCRYPT, sec, NULL, 0,
2666 speed_template_16_24_32);
2667 test_acipher_speed("ctr(twofish)", DECRYPT, sec, NULL, 0,
2668 speed_template_16_24_32);
2669 test_acipher_speed("lrw(twofish)", ENCRYPT, sec, NULL, 0,
2670 speed_template_32_40_48);
2671 test_acipher_speed("lrw(twofish)", DECRYPT, sec, NULL, 0,
2672 speed_template_32_40_48);
2673 test_acipher_speed("xts(twofish)", ENCRYPT, sec, NULL, 0,
2674 speed_template_32_48_64);
2675 test_acipher_speed("xts(twofish)", DECRYPT, sec, NULL, 0,
2676 speed_template_32_48_64);
2680 test_acipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0,
2685 test_acipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0,
2686 speed_template_8_16);
2687 test_acipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0,
2688 speed_template_8_16);
2689 test_acipher_speed("cbc(cast5)", ENCRYPT, sec, NULL, 0,
2690 speed_template_8_16);
2691 test_acipher_speed("cbc(cast5)", DECRYPT, sec, NULL, 0,
2692 speed_template_8_16);
2693 test_acipher_speed("ctr(cast5)", ENCRYPT, sec, NULL, 0,
2694 speed_template_8_16);
2695 test_acipher_speed("ctr(cast5)", DECRYPT, sec, NULL, 0,
2696 speed_template_8_16);
2700 test_acipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0,
2701 speed_template_16_32);
2702 test_acipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0,
2703 speed_template_16_32);
2704 test_acipher_speed("cbc(cast6)", ENCRYPT, sec, NULL, 0,
2705 speed_template_16_32);
2706 test_acipher_speed("cbc(cast6)", DECRYPT, sec, NULL, 0,
2707 speed_template_16_32);
2708 test_acipher_speed("ctr(cast6)", ENCRYPT, sec, NULL, 0,
2709 speed_template_16_32);
2710 test_acipher_speed("ctr(cast6)", DECRYPT, sec, NULL, 0,
2711 speed_template_16_32);
2712 test_acipher_speed("lrw(cast6)", ENCRYPT, sec, NULL, 0,
2713 speed_template_32_48);
2714 test_acipher_speed("lrw(cast6)", DECRYPT, sec, NULL, 0,
2715 speed_template_32_48);
2716 test_acipher_speed("xts(cast6)", ENCRYPT, sec, NULL, 0,
2717 speed_template_32_64);
2718 test_acipher_speed("xts(cast6)", DECRYPT, sec, NULL, 0,
2719 speed_template_32_64);
2723 test_acipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0,
2724 speed_template_16_32);
2725 test_acipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0,
2726 speed_template_16_32);
2727 test_acipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0,
2728 speed_template_16_32);
2729 test_acipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
2730 speed_template_16_32);
2731 test_acipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0,
2732 speed_template_16_32);
2733 test_acipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0,
2734 speed_template_16_32);
2735 test_acipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0,
2736 speed_template_32_48);
2737 test_acipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0,
2738 speed_template_32_48);
2739 test_acipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0,
2740 speed_template_32_64);
2741 test_acipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0,
2742 speed_template_32_64);
2746 test_acipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0,
2747 speed_template_8_32);
2748 test_acipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0,
2749 speed_template_8_32);
2750 test_acipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0,
2751 speed_template_8_32);
2752 test_acipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0,
2753 speed_template_8_32);
2754 test_acipher_speed("ctr(blowfish)", ENCRYPT, sec, NULL, 0,
2755 speed_template_8_32);
2756 test_acipher_speed("ctr(blowfish)", DECRYPT, sec, NULL, 0,
2757 speed_template_8_32);
2761 test_mb_skcipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
2762 speed_template_16_24_32, num_mb);
2763 test_mb_skcipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0,
2764 speed_template_16_24_32, num_mb);
2765 test_mb_skcipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0,
2766 speed_template_16_24_32, num_mb);
2767 test_mb_skcipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0,
2768 speed_template_16_24_32, num_mb);
2769 test_mb_skcipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0,
2770 speed_template_32_40_48, num_mb);
2771 test_mb_skcipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0,
2772 speed_template_32_40_48, num_mb);
2773 test_mb_skcipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0,
2774 speed_template_32_64, num_mb);
2775 test_mb_skcipher_speed("xts(aes)", DECRYPT, sec, NULL, 0,
2776 speed_template_32_64, num_mb);
2777 test_mb_skcipher_speed("cts(cbc(aes))", ENCRYPT, sec, NULL, 0,
2778 speed_template_16_24_32, num_mb);
2779 test_mb_skcipher_speed("cts(cbc(aes))", DECRYPT, sec, NULL, 0,
2780 speed_template_16_24_32, num_mb);
2781 test_mb_skcipher_speed("ctr(aes)", ENCRYPT, sec, NULL, 0,
2782 speed_template_16_24_32, num_mb);
2783 test_mb_skcipher_speed("ctr(aes)", DECRYPT, sec, NULL, 0,
2784 speed_template_16_24_32, num_mb);
2785 test_mb_skcipher_speed("cfb(aes)", ENCRYPT, sec, NULL, 0,
2786 speed_template_16_24_32, num_mb);
2787 test_mb_skcipher_speed("cfb(aes)", DECRYPT, sec, NULL, 0,
2788 speed_template_16_24_32, num_mb);
2789 test_mb_skcipher_speed("ofb(aes)", ENCRYPT, sec, NULL, 0,
2790 speed_template_16_24_32, num_mb);
2791 test_mb_skcipher_speed("ofb(aes)", DECRYPT, sec, NULL, 0,
2792 speed_template_16_24_32, num_mb);
2793 test_mb_skcipher_speed("rfc3686(ctr(aes))", ENCRYPT, sec, NULL,
2794 0, speed_template_20_28_36, num_mb);
2795 test_mb_skcipher_speed("rfc3686(ctr(aes))", DECRYPT, sec, NULL,
2796 0, speed_template_20_28_36, num_mb);
2800 test_mb_skcipher_speed("ecb(des3_ede)", ENCRYPT, sec,
2801 des3_speed_template, DES3_SPEED_VECTORS,
2802 speed_template_24, num_mb);
2803 test_mb_skcipher_speed("ecb(des3_ede)", DECRYPT, sec,
2804 des3_speed_template, DES3_SPEED_VECTORS,
2805 speed_template_24, num_mb);
2806 test_mb_skcipher_speed("cbc(des3_ede)", ENCRYPT, sec,
2807 des3_speed_template, DES3_SPEED_VECTORS,
2808 speed_template_24, num_mb);
2809 test_mb_skcipher_speed("cbc(des3_ede)", DECRYPT, sec,
2810 des3_speed_template, DES3_SPEED_VECTORS,
2811 speed_template_24, num_mb);
2812 test_mb_skcipher_speed("cfb(des3_ede)", ENCRYPT, sec,
2813 des3_speed_template, DES3_SPEED_VECTORS,
2814 speed_template_24, num_mb);
2815 test_mb_skcipher_speed("cfb(des3_ede)", DECRYPT, sec,
2816 des3_speed_template, DES3_SPEED_VECTORS,
2817 speed_template_24, num_mb);
2818 test_mb_skcipher_speed("ofb(des3_ede)", ENCRYPT, sec,
2819 des3_speed_template, DES3_SPEED_VECTORS,
2820 speed_template_24, num_mb);
2821 test_mb_skcipher_speed("ofb(des3_ede)", DECRYPT, sec,
2822 des3_speed_template, DES3_SPEED_VECTORS,
2823 speed_template_24, num_mb);
2827 test_mb_skcipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0,
2828 speed_template_8, num_mb);
2829 test_mb_skcipher_speed("ecb(des)", DECRYPT, sec, NULL, 0,
2830 speed_template_8, num_mb);
2831 test_mb_skcipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0,
2832 speed_template_8, num_mb);
2833 test_mb_skcipher_speed("cbc(des)", DECRYPT, sec, NULL, 0,
2834 speed_template_8, num_mb);
2835 test_mb_skcipher_speed("cfb(des)", ENCRYPT, sec, NULL, 0,
2836 speed_template_8, num_mb);
2837 test_mb_skcipher_speed("cfb(des)", DECRYPT, sec, NULL, 0,
2838 speed_template_8, num_mb);
2839 test_mb_skcipher_speed("ofb(des)", ENCRYPT, sec, NULL, 0,
2840 speed_template_8, num_mb);
2841 test_mb_skcipher_speed("ofb(des)", DECRYPT, sec, NULL, 0,
2842 speed_template_8, num_mb);
2846 test_mb_skcipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0,
2847 speed_template_16_32, num_mb);
2848 test_mb_skcipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0,
2849 speed_template_16_32, num_mb);
2850 test_mb_skcipher_speed("cbc(serpent)", ENCRYPT, sec, NULL, 0,
2851 speed_template_16_32, num_mb);
2852 test_mb_skcipher_speed("cbc(serpent)", DECRYPT, sec, NULL, 0,
2853 speed_template_16_32, num_mb);
2854 test_mb_skcipher_speed("ctr(serpent)", ENCRYPT, sec, NULL, 0,
2855 speed_template_16_32, num_mb);
2856 test_mb_skcipher_speed("ctr(serpent)", DECRYPT, sec, NULL, 0,
2857 speed_template_16_32, num_mb);
2858 test_mb_skcipher_speed("lrw(serpent)", ENCRYPT, sec, NULL, 0,
2859 speed_template_32_48, num_mb);
2860 test_mb_skcipher_speed("lrw(serpent)", DECRYPT, sec, NULL, 0,
2861 speed_template_32_48, num_mb);
2862 test_mb_skcipher_speed("xts(serpent)", ENCRYPT, sec, NULL, 0,
2863 speed_template_32_64, num_mb);
2864 test_mb_skcipher_speed("xts(serpent)", DECRYPT, sec, NULL, 0,
2865 speed_template_32_64, num_mb);
2869 test_mb_skcipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0,
2870 speed_template_16_24_32, num_mb);
2871 test_mb_skcipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0,
2872 speed_template_16_24_32, num_mb);
2873 test_mb_skcipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0,
2874 speed_template_16_24_32, num_mb);
2875 test_mb_skcipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0,
2876 speed_template_16_24_32, num_mb);
2877 test_mb_skcipher_speed("ctr(twofish)", ENCRYPT, sec, NULL, 0,
2878 speed_template_16_24_32, num_mb);
2879 test_mb_skcipher_speed("ctr(twofish)", DECRYPT, sec, NULL, 0,
2880 speed_template_16_24_32, num_mb);
2881 test_mb_skcipher_speed("lrw(twofish)", ENCRYPT, sec, NULL, 0,
2882 speed_template_32_40_48, num_mb);
2883 test_mb_skcipher_speed("lrw(twofish)", DECRYPT, sec, NULL, 0,
2884 speed_template_32_40_48, num_mb);
2885 test_mb_skcipher_speed("xts(twofish)", ENCRYPT, sec, NULL, 0,
2886 speed_template_32_48_64, num_mb);
2887 test_mb_skcipher_speed("xts(twofish)", DECRYPT, sec, NULL, 0,
2888 speed_template_32_48_64, num_mb);
2892 test_mb_skcipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0,
2893 speed_template_8, num_mb);
2897 test_mb_skcipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0,
2898 speed_template_8_16, num_mb);
2899 test_mb_skcipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0,
2900 speed_template_8_16, num_mb);
2901 test_mb_skcipher_speed("cbc(cast5)", ENCRYPT, sec, NULL, 0,
2902 speed_template_8_16, num_mb);
2903 test_mb_skcipher_speed("cbc(cast5)", DECRYPT, sec, NULL, 0,
2904 speed_template_8_16, num_mb);
2905 test_mb_skcipher_speed("ctr(cast5)", ENCRYPT, sec, NULL, 0,
2906 speed_template_8_16, num_mb);
2907 test_mb_skcipher_speed("ctr(cast5)", DECRYPT, sec, NULL, 0,
2908 speed_template_8_16, num_mb);
2912 test_mb_skcipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0,
2913 speed_template_16_32, num_mb);
2914 test_mb_skcipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0,
2915 speed_template_16_32, num_mb);
2916 test_mb_skcipher_speed("cbc(cast6)", ENCRYPT, sec, NULL, 0,
2917 speed_template_16_32, num_mb);
2918 test_mb_skcipher_speed("cbc(cast6)", DECRYPT, sec, NULL, 0,
2919 speed_template_16_32, num_mb);
2920 test_mb_skcipher_speed("ctr(cast6)", ENCRYPT, sec, NULL, 0,
2921 speed_template_16_32, num_mb);
2922 test_mb_skcipher_speed("ctr(cast6)", DECRYPT, sec, NULL, 0,
2923 speed_template_16_32, num_mb);
2924 test_mb_skcipher_speed("lrw(cast6)", ENCRYPT, sec, NULL, 0,
2925 speed_template_32_48, num_mb);
2926 test_mb_skcipher_speed("lrw(cast6)", DECRYPT, sec, NULL, 0,
2927 speed_template_32_48, num_mb);
2928 test_mb_skcipher_speed("xts(cast6)", ENCRYPT, sec, NULL, 0,
2929 speed_template_32_64, num_mb);
2930 test_mb_skcipher_speed("xts(cast6)", DECRYPT, sec, NULL, 0,
2931 speed_template_32_64, num_mb);
2935 test_mb_skcipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0,
2936 speed_template_16_32, num_mb);
2937 test_mb_skcipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0,
2938 speed_template_16_32, num_mb);
2939 test_mb_skcipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0,
2940 speed_template_16_32, num_mb);
2941 test_mb_skcipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
2942 speed_template_16_32, num_mb);
2943 test_mb_skcipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0,
2944 speed_template_16_32, num_mb);
2945 test_mb_skcipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0,
2946 speed_template_16_32, num_mb);
2947 test_mb_skcipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0,
2948 speed_template_32_48, num_mb);
2949 test_mb_skcipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0,
2950 speed_template_32_48, num_mb);
2951 test_mb_skcipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0,
2952 speed_template_32_64, num_mb);
2953 test_mb_skcipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0,
2954 speed_template_32_64, num_mb);
2958 test_mb_skcipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0,
2959 speed_template_8_32, num_mb);
2960 test_mb_skcipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0,
2961 speed_template_8_32, num_mb);
2962 test_mb_skcipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0,
2963 speed_template_8_32, num_mb);
2964 test_mb_skcipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0,
2965 speed_template_8_32, num_mb);
2966 test_mb_skcipher_speed("ctr(blowfish)", ENCRYPT, sec, NULL, 0,
2967 speed_template_8_32, num_mb);
2968 test_mb_skcipher_speed("ctr(blowfish)", DECRYPT, sec, NULL, 0,
2969 speed_template_8_32, num_mb);
2980 static int __init tcrypt_mod_init(void)
2985 for (i = 0; i < TVMEMSIZE; i++) {
2986 tvmem[i] = (void *)__get_free_page(GFP_KERNEL);
2991 err = do_test(alg, type, mask, mode, num_mb);
2994 printk(KERN_ERR "tcrypt: one or more tests failed!\n");
2997 pr_debug("all tests passed\n");
3000 /* We intentionaly return -EAGAIN to prevent keeping the module,
3001 * unless we're running in fips mode. It does all its work from
3002 * init() and doesn't offer any runtime functionality, but in
3003 * the fips case, checking for a successful load is helpful.
3004 * => we don't need it in the memory, do we?
3011 for (i = 0; i < TVMEMSIZE && tvmem[i]; i++)
3012 free_page((unsigned long)tvmem[i]);
3018 * If an init function is provided, an exit function must also be provided
3019 * to allow module unload.
3021 static void __exit tcrypt_mod_fini(void) { }
3023 late_initcall(tcrypt_mod_init);
3024 module_exit(tcrypt_mod_fini);
3026 module_param(alg, charp, 0);
3027 module_param(type, uint, 0);
3028 module_param(mask, uint, 0);
3029 module_param(mode, int, 0);
3030 module_param(sec, uint, 0);
3031 MODULE_PARM_DESC(sec, "Length in seconds of speed tests "
3032 "(defaults to zero which uses CPU cycles instead)");
3033 module_param(num_mb, uint, 0000);
3034 MODULE_PARM_DESC(num_mb, "Number of concurrent requests to be used in mb speed tests (defaults to 8)");
3035 module_param(klen, uint, 0);
3036 MODULE_PARM_DESC(klen, "Key length (defaults to 0)");
3038 MODULE_LICENSE("GPL");
3039 MODULE_DESCRIPTION("Quick & dirty crypto testing module");
3040 MODULE_AUTHOR("James Morris <jmorris@intercode.com.au>");