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).
10 * Copyright (c) 2007 Nokia Siemens Networks
12 * Updated RFC4106 AES-GCM testing.
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/interrupt.h>
29 #include <linux/jiffies.h>
30 #include <linux/kernel.h>
31 #include <linux/module.h>
32 #include <linux/moduleparam.h>
33 #include <linux/scatterlist.h>
34 #include <linux/slab.h>
35 #include <linux/string.h>
36 #include <linux/timex.h>
42 * Need slab memory for testing (size in number of pages).
47 * Used by test_cipher_speed()
52 #define MAX_DIGEST_SIZE 64
55 * return a string with the driver name
57 #define get_driver_name(tfm_type, tfm) crypto_tfm_alg_driver_name(tfm_type ## _tfm(tfm))
60 * Used by test_cipher_speed()
62 static unsigned int sec;
68 static u32 num_mb = 8;
69 static unsigned int klen;
70 static char *tvmem[TVMEMSIZE];
72 static const int block_sizes[] = { 16, 64, 128, 256, 1024, 1420, 4096, 0 };
73 static const int aead_sizes[] = { 16, 64, 256, 512, 1024, 1420, 4096, 8192, 0 };
78 static int testmgr_alloc_buf(char *buf[XBUFSIZE])
82 for (i = 0; i < XBUFSIZE; i++) {
83 buf[i] = (void *)__get_free_page(GFP_KERNEL);
92 free_page((unsigned long)buf[i]);
97 static void testmgr_free_buf(char *buf[XBUFSIZE])
101 for (i = 0; i < XBUFSIZE; i++)
102 free_page((unsigned long)buf[i]);
105 static void sg_init_aead(struct scatterlist *sg, char *xbuf[XBUFSIZE],
106 unsigned int buflen, const void *assoc,
107 unsigned int aad_size)
109 int np = (buflen + PAGE_SIZE - 1)/PAGE_SIZE;
116 rem = buflen % PAGE_SIZE;
119 sg_init_table(sg, np + 1);
121 sg_set_buf(&sg[0], assoc, aad_size);
125 for (k = 0; k < np; k++)
126 sg_set_buf(&sg[k + 1], xbuf[k], PAGE_SIZE);
129 sg_set_buf(&sg[k + 1], xbuf[k], rem);
132 static inline int do_one_aead_op(struct aead_request *req, int ret)
134 struct crypto_wait *wait = req->base.data;
136 return crypto_wait_req(ret, wait);
139 struct test_mb_aead_data {
140 struct scatterlist sg[XBUFSIZE];
141 struct scatterlist sgout[XBUFSIZE];
142 struct aead_request *req;
143 struct crypto_wait wait;
144 char *xbuf[XBUFSIZE];
145 char *xoutbuf[XBUFSIZE];
146 char *axbuf[XBUFSIZE];
149 static int do_mult_aead_op(struct test_mb_aead_data *data, int enc,
154 /* Fire up a bunch of concurrent requests */
155 for (i = 0; i < num_mb; i++) {
157 rc[i] = crypto_aead_encrypt(data[i].req);
159 rc[i] = crypto_aead_decrypt(data[i].req);
162 /* Wait for all requests to finish */
163 for (i = 0; i < num_mb; i++) {
164 rc[i] = crypto_wait_req(rc[i], &data[i].wait);
167 pr_info("concurrent request %d error %d\n", i, rc[i]);
175 static int test_mb_aead_jiffies(struct test_mb_aead_data *data, int enc,
176 int blen, int secs, u32 num_mb)
178 unsigned long start, end;
183 rc = kcalloc(num_mb, sizeof(*rc), GFP_KERNEL);
187 for (start = jiffies, end = start + secs * HZ, bcount = 0;
188 time_before(jiffies, end); bcount++) {
189 ret = do_mult_aead_op(data, enc, num_mb, rc);
194 pr_cont("%d operations in %d seconds (%llu bytes)\n",
195 bcount * num_mb, secs, (u64)bcount * blen * num_mb);
202 static int test_mb_aead_cycles(struct test_mb_aead_data *data, int enc,
203 int blen, u32 num_mb)
205 unsigned long cycles = 0;
210 rc = kcalloc(num_mb, sizeof(*rc), GFP_KERNEL);
215 for (i = 0; i < 4; i++) {
216 ret = do_mult_aead_op(data, enc, num_mb, rc);
221 /* The real thing. */
222 for (i = 0; i < 8; i++) {
225 start = get_cycles();
226 ret = do_mult_aead_op(data, enc, num_mb, rc);
232 cycles += end - start;
235 pr_cont("1 operation in %lu cycles (%d bytes)\n",
236 (cycles + 4) / (8 * num_mb), blen);
243 static void test_mb_aead_speed(const char *algo, int enc, int secs,
244 struct aead_speed_template *template,
245 unsigned int tcount, u8 authsize,
246 unsigned int aad_size, u8 *keysize, u32 num_mb)
248 struct test_mb_aead_data *data;
249 struct crypto_aead *tfm;
250 unsigned int i, j, iv_len;
259 if (aad_size >= PAGE_SIZE) {
260 pr_err("associate data length (%u) too big\n", aad_size);
264 iv = kzalloc(MAX_IVLEN, GFP_KERNEL);
273 data = kcalloc(num_mb, sizeof(*data), GFP_KERNEL);
277 tfm = crypto_alloc_aead(algo, 0, 0);
279 pr_err("failed to load transform for %s: %ld\n",
284 ret = crypto_aead_setauthsize(tfm, authsize);
286 pr_err("alg: aead: Failed to setauthsize for %s: %d\n", algo,
291 for (i = 0; i < num_mb; ++i)
292 if (testmgr_alloc_buf(data[i].xbuf)) {
294 testmgr_free_buf(data[i].xbuf);
298 for (i = 0; i < num_mb; ++i)
299 if (testmgr_alloc_buf(data[i].axbuf)) {
301 testmgr_free_buf(data[i].axbuf);
305 for (i = 0; i < num_mb; ++i)
306 if (testmgr_alloc_buf(data[i].xoutbuf)) {
308 testmgr_free_buf(data[i].xoutbuf);
312 for (i = 0; i < num_mb; ++i) {
313 data[i].req = aead_request_alloc(tfm, GFP_KERNEL);
315 pr_err("alg: aead: Failed to allocate request for %s\n",
318 aead_request_free(data[i].req);
319 goto out_free_xoutbuf;
323 for (i = 0; i < num_mb; ++i) {
324 crypto_init_wait(&data[i].wait);
325 aead_request_set_callback(data[i].req,
326 CRYPTO_TFM_REQ_MAY_BACKLOG,
327 crypto_req_done, &data[i].wait);
330 pr_info("testing speed of multibuffer %s (%s) %s\n", algo,
331 get_driver_name(crypto_aead, tfm), e);
337 int bs = round_up(*b_size, crypto_aead_blocksize(tfm));
339 if (bs + authsize > XBUFSIZE * PAGE_SIZE) {
340 pr_err("template (%u) too big for buffer (%lu)\n",
342 XBUFSIZE * PAGE_SIZE);
346 pr_info("test %u (%d bit key, %d byte blocks): ", i,
349 /* Set up tfm global state, i.e. the key */
351 memset(tvmem[0], 0xff, PAGE_SIZE);
353 for (j = 0; j < tcount; j++) {
354 if (template[j].klen == *keysize) {
355 key = template[j].key;
360 crypto_aead_clear_flags(tfm, ~0);
362 ret = crypto_aead_setkey(tfm, key, *keysize);
364 pr_err("setkey() failed flags=%x\n",
365 crypto_aead_get_flags(tfm));
369 iv_len = crypto_aead_ivsize(tfm);
371 memset(iv, 0xff, iv_len);
373 /* Now setup per request stuff, i.e. buffers */
375 for (j = 0; j < num_mb; ++j) {
376 struct test_mb_aead_data *cur = &data[j];
378 assoc = cur->axbuf[0];
379 memset(assoc, 0xff, aad_size);
381 sg_init_aead(cur->sg, cur->xbuf,
382 bs + (enc ? 0 : authsize),
385 sg_init_aead(cur->sgout, cur->xoutbuf,
386 bs + (enc ? authsize : 0),
389 aead_request_set_ad(cur->req, aad_size);
393 aead_request_set_crypt(cur->req,
397 ret = crypto_aead_encrypt(cur->req);
398 ret = do_one_aead_op(cur->req, ret);
401 pr_err("calculating auth failed (%d)\n",
407 aead_request_set_crypt(cur->req, cur->sg,
409 (enc ? 0 : authsize),
415 ret = test_mb_aead_jiffies(data, enc, bs,
419 ret = test_mb_aead_cycles(data, enc, bs,
424 pr_err("%s() failed return code=%d\n", e, ret);
434 for (i = 0; i < num_mb; ++i)
435 aead_request_free(data[i].req);
437 for (i = 0; i < num_mb; ++i)
438 testmgr_free_buf(data[i].xoutbuf);
440 for (i = 0; i < num_mb; ++i)
441 testmgr_free_buf(data[i].axbuf);
443 for (i = 0; i < num_mb; ++i)
444 testmgr_free_buf(data[i].xbuf);
446 crypto_free_aead(tfm);
453 static int test_aead_jiffies(struct aead_request *req, int enc,
456 unsigned long start, end;
460 for (start = jiffies, end = start + secs * HZ, bcount = 0;
461 time_before(jiffies, end); bcount++) {
463 ret = do_one_aead_op(req, crypto_aead_encrypt(req));
465 ret = do_one_aead_op(req, crypto_aead_decrypt(req));
471 pr_cont("%d operations in %d seconds (%llu bytes)\n",
472 bcount, secs, (u64)bcount * blen);
476 static int test_aead_cycles(struct aead_request *req, int enc, int blen)
478 unsigned long cycles = 0;
483 for (i = 0; i < 4; i++) {
485 ret = do_one_aead_op(req, crypto_aead_encrypt(req));
487 ret = do_one_aead_op(req, crypto_aead_decrypt(req));
493 /* The real thing. */
494 for (i = 0; i < 8; i++) {
497 start = get_cycles();
499 ret = do_one_aead_op(req, crypto_aead_encrypt(req));
501 ret = do_one_aead_op(req, crypto_aead_decrypt(req));
507 cycles += end - start;
512 pr_cont("1 operation in %lu cycles (%d bytes)\n",
513 (cycles + 4) / 8, blen);
518 static void test_aead_speed(const char *algo, int enc, unsigned int secs,
519 struct aead_speed_template *template,
520 unsigned int tcount, u8 authsize,
521 unsigned int aad_size, u8 *keysize)
524 struct crypto_aead *tfm;
527 struct aead_request *req;
528 struct scatterlist *sg;
529 struct scatterlist *sgout;
533 char *xbuf[XBUFSIZE];
534 char *xoutbuf[XBUFSIZE];
535 char *axbuf[XBUFSIZE];
538 struct crypto_wait wait;
540 iv = kzalloc(MAX_IVLEN, GFP_KERNEL);
544 if (aad_size >= PAGE_SIZE) {
545 pr_err("associate data length (%u) too big\n", aad_size);
554 if (testmgr_alloc_buf(xbuf))
556 if (testmgr_alloc_buf(axbuf))
558 if (testmgr_alloc_buf(xoutbuf))
561 sg = kmalloc(sizeof(*sg) * 9 * 2, GFP_KERNEL);
566 tfm = crypto_alloc_aead(algo, 0, 0);
568 pr_err("alg: aead: Failed to load transform for %s: %ld\n", algo,
573 ret = crypto_aead_setauthsize(tfm, authsize);
575 pr_err("alg: aead: Failed to setauthsize for %s: %d\n", algo,
580 crypto_init_wait(&wait);
581 pr_info("testing speed of %s (%s) %s\n", algo,
582 get_driver_name(crypto_aead, tfm), e);
584 req = aead_request_alloc(tfm, GFP_KERNEL);
586 pr_err("alg: aead: Failed to allocate request for %s\n",
591 aead_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
592 crypto_req_done, &wait);
598 u32 bs = round_up(*b_size, crypto_aead_blocksize(tfm));
601 memset(assoc, 0xff, aad_size);
603 if ((*keysize + bs) > TVMEMSIZE * PAGE_SIZE) {
604 pr_err("template (%u) too big for tvmem (%lu)\n",
606 TVMEMSIZE * PAGE_SIZE);
611 for (j = 0; j < tcount; j++) {
612 if (template[j].klen == *keysize) {
613 key = template[j].key;
618 ret = crypto_aead_setkey(tfm, key, *keysize);
620 pr_err("setkey() failed flags=%x: %d\n",
621 crypto_aead_get_flags(tfm), ret);
625 iv_len = crypto_aead_ivsize(tfm);
627 memset(iv, 0xff, iv_len);
629 crypto_aead_clear_flags(tfm, ~0);
630 pr_info("test %u (%d bit key, %d byte blocks): ",
631 i, *keysize * 8, bs);
633 memset(tvmem[0], 0xff, PAGE_SIZE);
635 sg_init_aead(sg, xbuf, bs + (enc ? 0 : authsize),
638 sg_init_aead(sgout, xoutbuf,
639 bs + (enc ? authsize : 0), assoc,
642 aead_request_set_ad(req, aad_size);
647 * For decryption we need a proper auth so
648 * we do the encryption path once with buffers
649 * reversed (input <-> output) to calculate it
651 aead_request_set_crypt(req, sgout, sg,
653 ret = do_one_aead_op(req,
654 crypto_aead_encrypt(req));
657 pr_err("calculating auth failed (%d)\n",
663 aead_request_set_crypt(req, sg, sgout,
664 bs + (enc ? 0 : authsize),
668 ret = test_aead_jiffies(req, enc, bs,
672 ret = test_aead_cycles(req, enc, bs);
676 pr_err("%s() failed return code=%d\n", e, ret);
686 aead_request_free(req);
688 crypto_free_aead(tfm);
692 testmgr_free_buf(xoutbuf);
694 testmgr_free_buf(axbuf);
696 testmgr_free_buf(xbuf);
701 static void test_hash_sg_init(struct scatterlist *sg)
705 sg_init_table(sg, TVMEMSIZE);
706 for (i = 0; i < TVMEMSIZE; i++) {
707 sg_set_buf(sg + i, tvmem[i], PAGE_SIZE);
708 memset(tvmem[i], 0xff, PAGE_SIZE);
712 static inline int do_one_ahash_op(struct ahash_request *req, int ret)
714 struct crypto_wait *wait = req->base.data;
716 return crypto_wait_req(ret, wait);
719 static int test_ahash_jiffies_digest(struct ahash_request *req, int blen,
722 unsigned long start, end;
726 for (start = jiffies, end = start + secs * HZ, bcount = 0;
727 time_before(jiffies, end); bcount++) {
728 ret = do_one_ahash_op(req, crypto_ahash_digest(req));
733 pr_cont("%6u opers/sec, %9lu bytes/sec\n",
734 bcount / secs, ((long)bcount * blen) / secs);
739 static int test_ahash_jiffies(struct ahash_request *req, int blen,
740 int plen, char *out, int secs)
742 unsigned long start, end;
747 return test_ahash_jiffies_digest(req, blen, out, secs);
749 for (start = jiffies, end = start + secs * HZ, bcount = 0;
750 time_before(jiffies, end); bcount++) {
751 ret = do_one_ahash_op(req, crypto_ahash_init(req));
754 for (pcount = 0; pcount < blen; pcount += plen) {
755 ret = do_one_ahash_op(req, crypto_ahash_update(req));
759 /* we assume there is enough space in 'out' for the result */
760 ret = do_one_ahash_op(req, crypto_ahash_final(req));
765 pr_cont("%6u opers/sec, %9lu bytes/sec\n",
766 bcount / secs, ((long)bcount * blen) / secs);
771 static int test_ahash_cycles_digest(struct ahash_request *req, int blen,
774 unsigned long cycles = 0;
778 for (i = 0; i < 4; i++) {
779 ret = do_one_ahash_op(req, crypto_ahash_digest(req));
784 /* The real thing. */
785 for (i = 0; i < 8; i++) {
788 start = get_cycles();
790 ret = do_one_ahash_op(req, crypto_ahash_digest(req));
796 cycles += end - start;
803 pr_cont("%6lu cycles/operation, %4lu cycles/byte\n",
804 cycles / 8, cycles / (8 * blen));
809 static int test_ahash_cycles(struct ahash_request *req, int blen,
812 unsigned long cycles = 0;
816 return test_ahash_cycles_digest(req, blen, out);
819 for (i = 0; i < 4; i++) {
820 ret = do_one_ahash_op(req, crypto_ahash_init(req));
823 for (pcount = 0; pcount < blen; pcount += plen) {
824 ret = do_one_ahash_op(req, crypto_ahash_update(req));
828 ret = do_one_ahash_op(req, crypto_ahash_final(req));
833 /* The real thing. */
834 for (i = 0; i < 8; i++) {
837 start = get_cycles();
839 ret = do_one_ahash_op(req, crypto_ahash_init(req));
842 for (pcount = 0; pcount < blen; pcount += plen) {
843 ret = do_one_ahash_op(req, crypto_ahash_update(req));
847 ret = do_one_ahash_op(req, crypto_ahash_final(req));
853 cycles += end - start;
860 pr_cont("%6lu cycles/operation, %4lu cycles/byte\n",
861 cycles / 8, cycles / (8 * blen));
866 static void test_ahash_speed_common(const char *algo, unsigned int secs,
867 struct hash_speed *speed, unsigned mask)
869 struct scatterlist sg[TVMEMSIZE];
870 struct crypto_wait wait;
871 struct ahash_request *req;
872 struct crypto_ahash *tfm;
876 tfm = crypto_alloc_ahash(algo, 0, mask);
878 pr_err("failed to load transform for %s: %ld\n",
883 pr_info("testing speed of async %s (%s)\n", algo,
884 get_driver_name(crypto_ahash, tfm));
886 if (crypto_ahash_digestsize(tfm) > MAX_DIGEST_SIZE) {
887 pr_err("digestsize(%u) > %d\n", crypto_ahash_digestsize(tfm),
892 test_hash_sg_init(sg);
893 req = ahash_request_alloc(tfm, GFP_KERNEL);
895 pr_err("ahash request allocation failure\n");
899 crypto_init_wait(&wait);
900 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
901 crypto_req_done, &wait);
903 output = kmalloc(MAX_DIGEST_SIZE, GFP_KERNEL);
907 for (i = 0; speed[i].blen != 0; i++) {
908 if (speed[i].blen > TVMEMSIZE * PAGE_SIZE) {
909 pr_err("template (%u) too big for tvmem (%lu)\n",
910 speed[i].blen, TVMEMSIZE * PAGE_SIZE);
915 crypto_ahash_setkey(tfm, tvmem[0], klen);
918 "(%5u byte blocks,%5u bytes per update,%4u updates): ",
919 i, speed[i].blen, speed[i].plen, speed[i].blen / speed[i].plen);
921 ahash_request_set_crypt(req, sg, output, speed[i].plen);
924 ret = test_ahash_jiffies(req, speed[i].blen,
925 speed[i].plen, output, secs);
928 ret = test_ahash_cycles(req, speed[i].blen,
929 speed[i].plen, output);
933 pr_err("hashing failed ret=%d\n", ret);
941 ahash_request_free(req);
944 crypto_free_ahash(tfm);
947 static void test_ahash_speed(const char *algo, unsigned int secs,
948 struct hash_speed *speed)
950 return test_ahash_speed_common(algo, secs, speed, 0);
953 static void test_hash_speed(const char *algo, unsigned int secs,
954 struct hash_speed *speed)
956 return test_ahash_speed_common(algo, secs, speed, CRYPTO_ALG_ASYNC);
959 struct test_mb_skcipher_data {
960 struct scatterlist sg[XBUFSIZE];
961 struct skcipher_request *req;
962 struct crypto_wait wait;
963 char *xbuf[XBUFSIZE];
966 static int do_mult_acipher_op(struct test_mb_skcipher_data *data, int enc,
971 /* Fire up a bunch of concurrent requests */
972 for (i = 0; i < num_mb; i++) {
974 rc[i] = crypto_skcipher_encrypt(data[i].req);
976 rc[i] = crypto_skcipher_decrypt(data[i].req);
979 /* Wait for all requests to finish */
980 for (i = 0; i < num_mb; i++) {
981 rc[i] = crypto_wait_req(rc[i], &data[i].wait);
984 pr_info("concurrent request %d error %d\n", i, rc[i]);
992 static int test_mb_acipher_jiffies(struct test_mb_skcipher_data *data, int enc,
993 int blen, int secs, u32 num_mb)
995 unsigned long start, end;
1000 rc = kcalloc(num_mb, sizeof(*rc), GFP_KERNEL);
1004 for (start = jiffies, end = start + secs * HZ, bcount = 0;
1005 time_before(jiffies, end); bcount++) {
1006 ret = do_mult_acipher_op(data, enc, num_mb, rc);
1011 pr_cont("%d operations in %d seconds (%llu bytes)\n",
1012 bcount * num_mb, secs, (u64)bcount * blen * num_mb);
1019 static int test_mb_acipher_cycles(struct test_mb_skcipher_data *data, int enc,
1020 int blen, u32 num_mb)
1022 unsigned long cycles = 0;
1027 rc = kcalloc(num_mb, sizeof(*rc), GFP_KERNEL);
1032 for (i = 0; i < 4; i++) {
1033 ret = do_mult_acipher_op(data, enc, num_mb, rc);
1038 /* The real thing. */
1039 for (i = 0; i < 8; i++) {
1040 cycles_t start, end;
1042 start = get_cycles();
1043 ret = do_mult_acipher_op(data, enc, num_mb, rc);
1049 cycles += end - start;
1052 pr_cont("1 operation in %lu cycles (%d bytes)\n",
1053 (cycles + 4) / (8 * num_mb), blen);
1060 static void test_mb_skcipher_speed(const char *algo, int enc, int secs,
1061 struct cipher_speed_template *template,
1062 unsigned int tcount, u8 *keysize, u32 num_mb)
1064 struct test_mb_skcipher_data *data;
1065 struct crypto_skcipher *tfm;
1066 unsigned int i, j, iv_len;
1078 data = kcalloc(num_mb, sizeof(*data), GFP_KERNEL);
1082 tfm = crypto_alloc_skcipher(algo, 0, 0);
1084 pr_err("failed to load transform for %s: %ld\n",
1085 algo, PTR_ERR(tfm));
1089 for (i = 0; i < num_mb; ++i)
1090 if (testmgr_alloc_buf(data[i].xbuf)) {
1092 testmgr_free_buf(data[i].xbuf);
1096 for (i = 0; i < num_mb; ++i) {
1097 data[i].req = skcipher_request_alloc(tfm, GFP_KERNEL);
1099 pr_err("alg: skcipher: Failed to allocate request for %s\n",
1102 skcipher_request_free(data[i].req);
1107 for (i = 0; i < num_mb; ++i) {
1108 skcipher_request_set_callback(data[i].req,
1109 CRYPTO_TFM_REQ_MAY_BACKLOG,
1110 crypto_req_done, &data[i].wait);
1111 crypto_init_wait(&data[i].wait);
1114 pr_info("testing speed of multibuffer %s (%s) %s\n", algo,
1115 get_driver_name(crypto_skcipher, tfm), e);
1119 b_size = block_sizes;
1121 u32 bs = round_up(*b_size, crypto_skcipher_blocksize(tfm));
1123 if (bs > XBUFSIZE * PAGE_SIZE) {
1124 pr_err("template (%u) too big for buffer (%lu)\n",
1125 bs, XBUFSIZE * PAGE_SIZE);
1129 pr_info("test %u (%d bit key, %d byte blocks): ", i,
1132 /* Set up tfm global state, i.e. the key */
1134 memset(tvmem[0], 0xff, PAGE_SIZE);
1136 for (j = 0; j < tcount; j++) {
1137 if (template[j].klen == *keysize) {
1138 key = template[j].key;
1143 crypto_skcipher_clear_flags(tfm, ~0);
1145 ret = crypto_skcipher_setkey(tfm, key, *keysize);
1147 pr_err("setkey() failed flags=%x\n",
1148 crypto_skcipher_get_flags(tfm));
1152 iv_len = crypto_skcipher_ivsize(tfm);
1154 memset(&iv, 0xff, iv_len);
1156 /* Now setup per request stuff, i.e. buffers */
1158 for (j = 0; j < num_mb; ++j) {
1159 struct test_mb_skcipher_data *cur = &data[j];
1160 unsigned int k = bs;
1161 unsigned int pages = DIV_ROUND_UP(k, PAGE_SIZE);
1164 sg_init_table(cur->sg, pages);
1166 while (k > PAGE_SIZE) {
1167 sg_set_buf(cur->sg + p, cur->xbuf[p],
1169 memset(cur->xbuf[p], 0xff, PAGE_SIZE);
1174 sg_set_buf(cur->sg + p, cur->xbuf[p], k);
1175 memset(cur->xbuf[p], 0xff, k);
1177 skcipher_request_set_crypt(cur->req, cur->sg,
1182 ret = test_mb_acipher_jiffies(data, enc,
1187 ret = test_mb_acipher_cycles(data, enc,
1192 pr_err("%s() failed flags=%x\n", e,
1193 crypto_skcipher_get_flags(tfm));
1203 for (i = 0; i < num_mb; ++i)
1204 skcipher_request_free(data[i].req);
1206 for (i = 0; i < num_mb; ++i)
1207 testmgr_free_buf(data[i].xbuf);
1209 crypto_free_skcipher(tfm);
1214 static inline int do_one_acipher_op(struct skcipher_request *req, int ret)
1216 struct crypto_wait *wait = req->base.data;
1218 return crypto_wait_req(ret, wait);
1221 static int test_acipher_jiffies(struct skcipher_request *req, int enc,
1224 unsigned long start, end;
1228 for (start = jiffies, end = start + secs * HZ, bcount = 0;
1229 time_before(jiffies, end); bcount++) {
1231 ret = do_one_acipher_op(req,
1232 crypto_skcipher_encrypt(req));
1234 ret = do_one_acipher_op(req,
1235 crypto_skcipher_decrypt(req));
1241 pr_cont("%d operations in %d seconds (%llu bytes)\n",
1242 bcount, secs, (u64)bcount * blen);
1246 static int test_acipher_cycles(struct skcipher_request *req, int enc,
1249 unsigned long cycles = 0;
1254 for (i = 0; i < 4; i++) {
1256 ret = do_one_acipher_op(req,
1257 crypto_skcipher_encrypt(req));
1259 ret = do_one_acipher_op(req,
1260 crypto_skcipher_decrypt(req));
1266 /* The real thing. */
1267 for (i = 0; i < 8; i++) {
1268 cycles_t start, end;
1270 start = get_cycles();
1272 ret = do_one_acipher_op(req,
1273 crypto_skcipher_encrypt(req));
1275 ret = do_one_acipher_op(req,
1276 crypto_skcipher_decrypt(req));
1282 cycles += end - start;
1287 pr_cont("1 operation in %lu cycles (%d bytes)\n",
1288 (cycles + 4) / 8, blen);
1293 static void test_skcipher_speed(const char *algo, int enc, unsigned int secs,
1294 struct cipher_speed_template *template,
1295 unsigned int tcount, u8 *keysize, bool async)
1297 unsigned int ret, i, j, k, iv_len;
1298 struct crypto_wait wait;
1301 struct skcipher_request *req;
1302 struct crypto_skcipher *tfm;
1311 crypto_init_wait(&wait);
1313 tfm = crypto_alloc_skcipher(algo, 0, async ? 0 : CRYPTO_ALG_ASYNC);
1316 pr_err("failed to load transform for %s: %ld\n", algo,
1321 pr_info("testing speed of %s %s (%s) %s\n", async ? "async" : "sync",
1322 algo, get_driver_name(crypto_skcipher, tfm), e);
1324 req = skcipher_request_alloc(tfm, GFP_KERNEL);
1326 pr_err("skcipher: Failed to allocate request for %s\n", algo);
1330 skcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
1331 crypto_req_done, &wait);
1335 b_size = block_sizes;
1338 u32 bs = round_up(*b_size, crypto_skcipher_blocksize(tfm));
1339 struct scatterlist sg[TVMEMSIZE];
1341 if ((*keysize + bs) > TVMEMSIZE * PAGE_SIZE) {
1342 pr_err("template (%u) too big for "
1343 "tvmem (%lu)\n", *keysize + bs,
1344 TVMEMSIZE * PAGE_SIZE);
1348 pr_info("test %u (%d bit key, %d byte blocks): ", i,
1351 memset(tvmem[0], 0xff, PAGE_SIZE);
1353 /* set key, plain text and IV */
1355 for (j = 0; j < tcount; j++) {
1356 if (template[j].klen == *keysize) {
1357 key = template[j].key;
1362 crypto_skcipher_clear_flags(tfm, ~0);
1364 ret = crypto_skcipher_setkey(tfm, key, *keysize);
1366 pr_err("setkey() failed flags=%x\n",
1367 crypto_skcipher_get_flags(tfm));
1372 sg_init_table(sg, DIV_ROUND_UP(k, PAGE_SIZE));
1374 if (k > PAGE_SIZE) {
1375 sg_set_buf(sg, tvmem[0] + *keysize,
1376 PAGE_SIZE - *keysize);
1379 while (k > PAGE_SIZE) {
1380 sg_set_buf(sg + j, tvmem[j], PAGE_SIZE);
1381 memset(tvmem[j], 0xff, PAGE_SIZE);
1385 sg_set_buf(sg + j, tvmem[j], k);
1386 memset(tvmem[j], 0xff, k);
1388 sg_set_buf(sg, tvmem[0] + *keysize, bs);
1391 iv_len = crypto_skcipher_ivsize(tfm);
1393 memset(&iv, 0xff, iv_len);
1395 skcipher_request_set_crypt(req, sg, sg, bs, iv);
1398 ret = test_acipher_jiffies(req, enc,
1402 ret = test_acipher_cycles(req, enc,
1407 pr_err("%s() failed flags=%x\n", e,
1408 crypto_skcipher_get_flags(tfm));
1418 skcipher_request_free(req);
1420 crypto_free_skcipher(tfm);
1423 static void test_acipher_speed(const char *algo, int enc, unsigned int secs,
1424 struct cipher_speed_template *template,
1425 unsigned int tcount, u8 *keysize)
1427 return test_skcipher_speed(algo, enc, secs, template, tcount, keysize,
1431 static void test_cipher_speed(const char *algo, int enc, unsigned int secs,
1432 struct cipher_speed_template *template,
1433 unsigned int tcount, u8 *keysize)
1435 return test_skcipher_speed(algo, enc, secs, template, tcount, keysize,
1439 static inline int tcrypt_test(const char *alg)
1443 pr_debug("testing %s\n", alg);
1445 ret = alg_test(alg, alg, 0, 0);
1446 /* non-fips algs return -EINVAL or -ECANCELED in fips mode */
1447 if (fips_enabled && (ret == -EINVAL || ret == -ECANCELED))
1452 static int do_test(const char *alg, u32 type, u32 mask, int m, u32 num_mb)
1460 if (!crypto_has_alg(alg, type,
1461 mask ?: CRYPTO_ALG_TYPE_MASK))
1466 for (i = 1; i < 200; i++)
1467 ret = min(ret, do_test(NULL, 0, 0, i, num_mb));
1471 ret = min(ret, tcrypt_test("md5"));
1475 ret = min(ret, tcrypt_test("sha1"));
1479 ret = min(ret, tcrypt_test("ecb(des)"));
1480 ret = min(ret, tcrypt_test("cbc(des)"));
1481 ret = min(ret, tcrypt_test("ctr(des)"));
1485 ret = min(ret, tcrypt_test("ecb(des3_ede)"));
1486 ret = min(ret, tcrypt_test("cbc(des3_ede)"));
1487 ret = min(ret, tcrypt_test("ctr(des3_ede)"));
1491 ret = min(ret, tcrypt_test("md4"));
1495 ret = min(ret, tcrypt_test("sha256"));
1499 ret = min(ret, tcrypt_test("ecb(blowfish)"));
1500 ret = min(ret, tcrypt_test("cbc(blowfish)"));
1501 ret = min(ret, tcrypt_test("ctr(blowfish)"));
1505 ret = min(ret, tcrypt_test("ecb(twofish)"));
1506 ret = min(ret, tcrypt_test("cbc(twofish)"));
1507 ret = min(ret, tcrypt_test("ctr(twofish)"));
1508 ret = min(ret, tcrypt_test("lrw(twofish)"));
1509 ret = min(ret, tcrypt_test("xts(twofish)"));
1513 ret = min(ret, tcrypt_test("ecb(serpent)"));
1514 ret = min(ret, tcrypt_test("cbc(serpent)"));
1515 ret = min(ret, tcrypt_test("ctr(serpent)"));
1516 ret = min(ret, tcrypt_test("lrw(serpent)"));
1517 ret = min(ret, tcrypt_test("xts(serpent)"));
1521 ret = min(ret, tcrypt_test("ecb(aes)"));
1522 ret = min(ret, tcrypt_test("cbc(aes)"));
1523 ret = min(ret, tcrypt_test("lrw(aes)"));
1524 ret = min(ret, tcrypt_test("xts(aes)"));
1525 ret = min(ret, tcrypt_test("ctr(aes)"));
1526 ret = min(ret, tcrypt_test("rfc3686(ctr(aes))"));
1527 ret = min(ret, tcrypt_test("xctr(aes)"));
1531 ret = min(ret, tcrypt_test("sha384"));
1535 ret = min(ret, tcrypt_test("sha512"));
1539 ret = min(ret, tcrypt_test("deflate"));
1543 ret = min(ret, tcrypt_test("ecb(cast5)"));
1544 ret = min(ret, tcrypt_test("cbc(cast5)"));
1545 ret = min(ret, tcrypt_test("ctr(cast5)"));
1549 ret = min(ret, tcrypt_test("ecb(cast6)"));
1550 ret = min(ret, tcrypt_test("cbc(cast6)"));
1551 ret = min(ret, tcrypt_test("ctr(cast6)"));
1552 ret = min(ret, tcrypt_test("lrw(cast6)"));
1553 ret = min(ret, tcrypt_test("xts(cast6)"));
1557 ret = min(ret, tcrypt_test("ecb(arc4)"));
1561 ret = min(ret, tcrypt_test("michael_mic"));
1565 ret = min(ret, tcrypt_test("crc32c"));
1569 ret = min(ret, tcrypt_test("ecb(tea)"));
1573 ret = min(ret, tcrypt_test("ecb(xtea)"));
1577 ret = min(ret, tcrypt_test("ecb(khazad)"));
1581 ret = min(ret, tcrypt_test("wp512"));
1585 ret = min(ret, tcrypt_test("wp384"));
1589 ret = min(ret, tcrypt_test("wp256"));
1593 ret = min(ret, tcrypt_test("ecb(anubis)"));
1594 ret = min(ret, tcrypt_test("cbc(anubis)"));
1598 ret = min(ret, tcrypt_test("ecb(xeta)"));
1602 ret = min(ret, tcrypt_test("pcbc(fcrypt)"));
1606 ret = min(ret, tcrypt_test("ecb(camellia)"));
1607 ret = min(ret, tcrypt_test("cbc(camellia)"));
1608 ret = min(ret, tcrypt_test("ctr(camellia)"));
1609 ret = min(ret, tcrypt_test("lrw(camellia)"));
1610 ret = min(ret, tcrypt_test("xts(camellia)"));
1614 ret = min(ret, tcrypt_test("sha224"));
1618 ret = min(ret, tcrypt_test("gcm(aes)"));
1622 ret = min(ret, tcrypt_test("lzo"));
1626 ret = min(ret, tcrypt_test("ccm(aes)"));
1630 ret = min(ret, tcrypt_test("cts(cbc(aes))"));
1634 ret = min(ret, tcrypt_test("xxhash64"));
1638 ret = min(ret, tcrypt_test("rmd160"));
1642 ret = min(ret, tcrypt_test("blake2b-512"));
1646 ret = min(ret, tcrypt_test("ecb(seed)"));
1650 ret = min(ret, tcrypt_test("rfc4309(ccm(aes))"));
1654 ret = min(ret, tcrypt_test("ghash"));
1658 ret = min(ret, tcrypt_test("crct10dif"));
1662 ret = min(ret, tcrypt_test("sha3-224"));
1666 ret = min(ret, tcrypt_test("sha3-256"));
1670 ret = min(ret, tcrypt_test("sha3-384"));
1674 ret = min(ret, tcrypt_test("sha3-512"));
1678 ret = min(ret, tcrypt_test("sm3"));
1682 ret = min(ret, tcrypt_test("streebog256"));
1686 ret = min(ret, tcrypt_test("streebog512"));
1690 ret = min(ret, tcrypt_test("gcm(sm4)"));
1694 ret = min(ret, tcrypt_test("ccm(sm4)"));
1698 ret = min(ret, tcrypt_test("polyval"));
1702 ret = min(ret, tcrypt_test("gcm(aria)"));
1706 ret = min(ret, tcrypt_test("cts(cbc(sm4))"));
1710 ret = min(ret, tcrypt_test("hmac(md5)"));
1714 ret = min(ret, tcrypt_test("hmac(sha1)"));
1718 ret = min(ret, tcrypt_test("hmac(sha256)"));
1722 ret = min(ret, tcrypt_test("hmac(sha384)"));
1726 ret = min(ret, tcrypt_test("hmac(sha512)"));
1730 ret = min(ret, tcrypt_test("hmac(sha224)"));
1734 ret = min(ret, tcrypt_test("xcbc(aes)"));
1738 ret = min(ret, tcrypt_test("hmac(rmd160)"));
1742 ret = min(ret, tcrypt_test("vmac64(aes)"));
1746 ret = min(ret, tcrypt_test("hmac(sha3-224)"));
1750 ret = min(ret, tcrypt_test("hmac(sha3-256)"));
1754 ret = min(ret, tcrypt_test("hmac(sha3-384)"));
1758 ret = min(ret, tcrypt_test("hmac(sha3-512)"));
1762 ret = min(ret, tcrypt_test("hmac(streebog256)"));
1766 ret = min(ret, tcrypt_test("hmac(streebog512)"));
1770 ret = min(ret, tcrypt_test("ansi_cprng"));
1774 ret = min(ret, tcrypt_test("rfc4106(gcm(aes))"));
1778 ret = min(ret, tcrypt_test("rfc4543(gcm(aes))"));
1782 ret = min(ret, tcrypt_test("cmac(aes)"));
1786 ret = min(ret, tcrypt_test("cmac(des3_ede)"));
1790 ret = min(ret, tcrypt_test("authenc(hmac(sha1),cbc(aes))"));
1794 ret = min(ret, tcrypt_test("authenc(hmac(md5),ecb(cipher_null))"));
1798 ret = min(ret, tcrypt_test("authenc(hmac(sha1),ecb(cipher_null))"));
1802 ret = min(ret, tcrypt_test("cbcmac(sm4)"));
1806 ret = min(ret, tcrypt_test("cmac(sm4)"));
1810 ret = min(ret, tcrypt_test("xcbc(sm4)"));
1814 ret = min(ret, tcrypt_test("authenc(hmac(sha1),cbc(des))"));
1817 ret = min(ret, tcrypt_test("authenc(hmac(sha1),cbc(des3_ede))"));
1820 ret = min(ret, tcrypt_test("authenc(hmac(sha224),cbc(des))"));
1823 ret = min(ret, tcrypt_test("authenc(hmac(sha224),cbc(des3_ede))"));
1826 ret = min(ret, tcrypt_test("authenc(hmac(sha256),cbc(des))"));
1829 ret = min(ret, tcrypt_test("authenc(hmac(sha256),cbc(des3_ede))"));
1832 ret = min(ret, tcrypt_test("authenc(hmac(sha384),cbc(des))"));
1835 ret = min(ret, tcrypt_test("authenc(hmac(sha384),cbc(des3_ede))"));
1838 ret = min(ret, tcrypt_test("authenc(hmac(sha512),cbc(des))"));
1841 ret = min(ret, tcrypt_test("authenc(hmac(sha512),cbc(des3_ede))"));
1844 ret = min(ret, tcrypt_test("ecb(sm4)"));
1845 ret = min(ret, tcrypt_test("cbc(sm4)"));
1846 ret = min(ret, tcrypt_test("ctr(sm4)"));
1847 ret = min(ret, tcrypt_test("xts(sm4)"));
1850 ret = min(ret, tcrypt_test("ecb(aria)"));
1851 ret = min(ret, tcrypt_test("cbc(aria)"));
1852 ret = min(ret, tcrypt_test("ctr(aria)"));
1855 test_cipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
1856 speed_template_16_24_32);
1857 test_cipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0,
1858 speed_template_16_24_32);
1859 test_cipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0,
1860 speed_template_16_24_32);
1861 test_cipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0,
1862 speed_template_16_24_32);
1863 test_cipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0,
1864 speed_template_32_40_48);
1865 test_cipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0,
1866 speed_template_32_40_48);
1867 test_cipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0,
1868 speed_template_32_64);
1869 test_cipher_speed("xts(aes)", DECRYPT, sec, NULL, 0,
1870 speed_template_32_64);
1871 test_cipher_speed("cts(cbc(aes))", ENCRYPT, sec, NULL, 0,
1872 speed_template_16_24_32);
1873 test_cipher_speed("cts(cbc(aes))", DECRYPT, sec, NULL, 0,
1874 speed_template_16_24_32);
1875 test_cipher_speed("ctr(aes)", ENCRYPT, sec, NULL, 0,
1876 speed_template_16_24_32);
1877 test_cipher_speed("ctr(aes)", DECRYPT, sec, NULL, 0,
1878 speed_template_16_24_32);
1882 test_cipher_speed("ecb(des3_ede)", ENCRYPT, sec,
1883 des3_speed_template, DES3_SPEED_VECTORS,
1885 test_cipher_speed("ecb(des3_ede)", DECRYPT, sec,
1886 des3_speed_template, DES3_SPEED_VECTORS,
1888 test_cipher_speed("cbc(des3_ede)", ENCRYPT, sec,
1889 des3_speed_template, DES3_SPEED_VECTORS,
1891 test_cipher_speed("cbc(des3_ede)", DECRYPT, sec,
1892 des3_speed_template, DES3_SPEED_VECTORS,
1894 test_cipher_speed("ctr(des3_ede)", ENCRYPT, sec,
1895 des3_speed_template, DES3_SPEED_VECTORS,
1897 test_cipher_speed("ctr(des3_ede)", DECRYPT, sec,
1898 des3_speed_template, DES3_SPEED_VECTORS,
1903 test_cipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0,
1904 speed_template_16_24_32);
1905 test_cipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0,
1906 speed_template_16_24_32);
1907 test_cipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0,
1908 speed_template_16_24_32);
1909 test_cipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0,
1910 speed_template_16_24_32);
1911 test_cipher_speed("ctr(twofish)", ENCRYPT, sec, NULL, 0,
1912 speed_template_16_24_32);
1913 test_cipher_speed("ctr(twofish)", DECRYPT, sec, NULL, 0,
1914 speed_template_16_24_32);
1915 test_cipher_speed("lrw(twofish)", ENCRYPT, sec, NULL, 0,
1916 speed_template_32_40_48);
1917 test_cipher_speed("lrw(twofish)", DECRYPT, sec, NULL, 0,
1918 speed_template_32_40_48);
1919 test_cipher_speed("xts(twofish)", ENCRYPT, sec, NULL, 0,
1920 speed_template_32_48_64);
1921 test_cipher_speed("xts(twofish)", DECRYPT, sec, NULL, 0,
1922 speed_template_32_48_64);
1926 test_cipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0,
1927 speed_template_8_32);
1928 test_cipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0,
1929 speed_template_8_32);
1930 test_cipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0,
1931 speed_template_8_32);
1932 test_cipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0,
1933 speed_template_8_32);
1934 test_cipher_speed("ctr(blowfish)", ENCRYPT, sec, NULL, 0,
1935 speed_template_8_32);
1936 test_cipher_speed("ctr(blowfish)", DECRYPT, sec, NULL, 0,
1937 speed_template_8_32);
1941 test_cipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0,
1943 test_cipher_speed("ecb(des)", DECRYPT, sec, NULL, 0,
1945 test_cipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0,
1947 test_cipher_speed("cbc(des)", DECRYPT, sec, NULL, 0,
1952 test_cipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0,
1953 speed_template_16_24_32);
1954 test_cipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0,
1955 speed_template_16_24_32);
1956 test_cipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0,
1957 speed_template_16_24_32);
1958 test_cipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
1959 speed_template_16_24_32);
1960 test_cipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0,
1961 speed_template_16_24_32);
1962 test_cipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0,
1963 speed_template_16_24_32);
1964 test_cipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0,
1965 speed_template_32_40_48);
1966 test_cipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0,
1967 speed_template_32_40_48);
1968 test_cipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0,
1969 speed_template_32_48_64);
1970 test_cipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0,
1971 speed_template_32_48_64);
1975 test_cipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0,
1976 speed_template_16_32);
1977 test_cipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0,
1978 speed_template_16_32);
1979 test_cipher_speed("cbc(serpent)", ENCRYPT, sec, NULL, 0,
1980 speed_template_16_32);
1981 test_cipher_speed("cbc(serpent)", DECRYPT, sec, NULL, 0,
1982 speed_template_16_32);
1983 test_cipher_speed("ctr(serpent)", ENCRYPT, sec, NULL, 0,
1984 speed_template_16_32);
1985 test_cipher_speed("ctr(serpent)", DECRYPT, sec, NULL, 0,
1986 speed_template_16_32);
1987 test_cipher_speed("lrw(serpent)", ENCRYPT, sec, NULL, 0,
1988 speed_template_32_48);
1989 test_cipher_speed("lrw(serpent)", DECRYPT, sec, NULL, 0,
1990 speed_template_32_48);
1991 test_cipher_speed("xts(serpent)", ENCRYPT, sec, NULL, 0,
1992 speed_template_32_64);
1993 test_cipher_speed("xts(serpent)", DECRYPT, sec, NULL, 0,
1994 speed_template_32_64);
1998 test_cipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0,
2003 test_cipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0,
2004 speed_template_8_16);
2005 test_cipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0,
2006 speed_template_8_16);
2007 test_cipher_speed("cbc(cast5)", ENCRYPT, sec, NULL, 0,
2008 speed_template_8_16);
2009 test_cipher_speed("cbc(cast5)", DECRYPT, sec, NULL, 0,
2010 speed_template_8_16);
2011 test_cipher_speed("ctr(cast5)", ENCRYPT, sec, NULL, 0,
2012 speed_template_8_16);
2013 test_cipher_speed("ctr(cast5)", DECRYPT, sec, NULL, 0,
2014 speed_template_8_16);
2018 test_cipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0,
2019 speed_template_16_32);
2020 test_cipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0,
2021 speed_template_16_32);
2022 test_cipher_speed("cbc(cast6)", ENCRYPT, sec, NULL, 0,
2023 speed_template_16_32);
2024 test_cipher_speed("cbc(cast6)", DECRYPT, sec, NULL, 0,
2025 speed_template_16_32);
2026 test_cipher_speed("ctr(cast6)", ENCRYPT, sec, NULL, 0,
2027 speed_template_16_32);
2028 test_cipher_speed("ctr(cast6)", DECRYPT, sec, NULL, 0,
2029 speed_template_16_32);
2030 test_cipher_speed("lrw(cast6)", ENCRYPT, sec, NULL, 0,
2031 speed_template_32_48);
2032 test_cipher_speed("lrw(cast6)", DECRYPT, sec, NULL, 0,
2033 speed_template_32_48);
2034 test_cipher_speed("xts(cast6)", ENCRYPT, sec, NULL, 0,
2035 speed_template_32_64);
2036 test_cipher_speed("xts(cast6)", DECRYPT, sec, NULL, 0,
2037 speed_template_32_64);
2041 test_aead_speed("rfc4106(gcm(aes))", ENCRYPT, sec,
2042 NULL, 0, 16, 16, aead_speed_template_20_28_36);
2043 test_aead_speed("gcm(aes)", ENCRYPT, sec,
2044 NULL, 0, 16, 8, speed_template_16_24_32);
2045 test_aead_speed("rfc4106(gcm(aes))", DECRYPT, sec,
2046 NULL, 0, 16, 16, aead_speed_template_20_28_36);
2047 test_aead_speed("gcm(aes)", DECRYPT, sec,
2048 NULL, 0, 16, 8, speed_template_16_24_32);
2052 test_aead_speed("rfc4309(ccm(aes))", ENCRYPT, sec,
2053 NULL, 0, 16, 16, aead_speed_template_19);
2054 test_aead_speed("rfc4309(ccm(aes))", DECRYPT, sec,
2055 NULL, 0, 16, 16, aead_speed_template_19);
2059 test_aead_speed("rfc7539esp(chacha20,poly1305)", ENCRYPT, sec,
2060 NULL, 0, 16, 8, aead_speed_template_36);
2061 test_aead_speed("rfc7539esp(chacha20,poly1305)", DECRYPT, sec,
2062 NULL, 0, 16, 8, aead_speed_template_36);
2066 test_cipher_speed("chacha20", ENCRYPT, sec, NULL, 0,
2071 test_mb_aead_speed("rfc4106(gcm(aes))", ENCRYPT, sec, NULL,
2072 0, 16, 16, aead_speed_template_20_28_36, num_mb);
2073 test_mb_aead_speed("gcm(aes)", ENCRYPT, sec, NULL, 0, 16, 8,
2074 speed_template_16_24_32, num_mb);
2075 test_mb_aead_speed("rfc4106(gcm(aes))", DECRYPT, sec, NULL,
2076 0, 16, 16, aead_speed_template_20_28_36, num_mb);
2077 test_mb_aead_speed("gcm(aes)", DECRYPT, sec, NULL, 0, 16, 8,
2078 speed_template_16_24_32, num_mb);
2082 test_mb_aead_speed("rfc4309(ccm(aes))", ENCRYPT, sec, NULL, 0,
2083 16, 16, aead_speed_template_19, num_mb);
2084 test_mb_aead_speed("rfc4309(ccm(aes))", DECRYPT, sec, NULL, 0,
2085 16, 16, aead_speed_template_19, num_mb);
2089 test_mb_aead_speed("rfc7539esp(chacha20,poly1305)", ENCRYPT,
2090 sec, NULL, 0, 16, 8, aead_speed_template_36,
2092 test_mb_aead_speed("rfc7539esp(chacha20,poly1305)", DECRYPT,
2093 sec, NULL, 0, 16, 8, aead_speed_template_36,
2098 test_cipher_speed("ecb(sm4)", ENCRYPT, sec, NULL, 0,
2100 test_cipher_speed("ecb(sm4)", DECRYPT, sec, NULL, 0,
2102 test_cipher_speed("cbc(sm4)", ENCRYPT, sec, NULL, 0,
2104 test_cipher_speed("cbc(sm4)", DECRYPT, sec, NULL, 0,
2106 test_cipher_speed("cts(cbc(sm4))", ENCRYPT, sec, NULL, 0,
2108 test_cipher_speed("cts(cbc(sm4))", DECRYPT, sec, NULL, 0,
2110 test_cipher_speed("ctr(sm4)", ENCRYPT, sec, NULL, 0,
2112 test_cipher_speed("ctr(sm4)", DECRYPT, sec, NULL, 0,
2114 test_cipher_speed("xts(sm4)", ENCRYPT, sec, NULL, 0,
2116 test_cipher_speed("xts(sm4)", DECRYPT, sec, NULL, 0,
2121 test_cipher_speed("adiantum(xchacha12,aes)", ENCRYPT, sec, NULL,
2122 0, speed_template_32);
2123 test_cipher_speed("adiantum(xchacha12,aes)", DECRYPT, sec, NULL,
2124 0, speed_template_32);
2125 test_cipher_speed("adiantum(xchacha20,aes)", ENCRYPT, sec, NULL,
2126 0, speed_template_32);
2127 test_cipher_speed("adiantum(xchacha20,aes)", DECRYPT, sec, NULL,
2128 0, speed_template_32);
2132 test_acipher_speed("essiv(cbc(aes),sha256)",
2133 ENCRYPT, sec, NULL, 0,
2134 speed_template_16_24_32);
2135 test_acipher_speed("essiv(cbc(aes),sha256)",
2136 DECRYPT, sec, NULL, 0,
2137 speed_template_16_24_32);
2141 test_aead_speed("aegis128", ENCRYPT, sec,
2142 NULL, 0, 16, 8, speed_template_16);
2143 test_aead_speed("aegis128", DECRYPT, sec,
2144 NULL, 0, 16, 8, speed_template_16);
2148 test_aead_speed("gcm(sm4)", ENCRYPT, sec,
2149 NULL, 0, 16, 8, speed_template_16);
2150 test_aead_speed("gcm(sm4)", DECRYPT, sec,
2151 NULL, 0, 16, 8, speed_template_16);
2155 test_aead_speed("rfc4309(ccm(sm4))", ENCRYPT, sec,
2156 NULL, 0, 16, 16, aead_speed_template_19);
2157 test_aead_speed("rfc4309(ccm(sm4))", DECRYPT, sec,
2158 NULL, 0, 16, 16, aead_speed_template_19);
2162 test_mb_aead_speed("gcm(sm4)", ENCRYPT, sec, NULL, 0, 16, 8,
2163 speed_template_16, num_mb);
2164 test_mb_aead_speed("gcm(sm4)", DECRYPT, sec, NULL, 0, 16, 8,
2165 speed_template_16, num_mb);
2169 test_mb_aead_speed("rfc4309(ccm(sm4))", ENCRYPT, sec, NULL, 0,
2170 16, 16, aead_speed_template_19, num_mb);
2171 test_mb_aead_speed("rfc4309(ccm(sm4))", DECRYPT, sec, NULL, 0,
2172 16, 16, aead_speed_template_19, num_mb);
2176 test_cipher_speed("hctr2(aes)", ENCRYPT, sec, NULL,
2177 0, speed_template_32);
2181 test_cipher_speed("ecb(aria)", ENCRYPT, sec, NULL, 0,
2182 speed_template_16_24_32);
2183 test_cipher_speed("ecb(aria)", DECRYPT, sec, NULL, 0,
2184 speed_template_16_24_32);
2185 test_cipher_speed("cbc(aria)", ENCRYPT, sec, NULL, 0,
2186 speed_template_16_24_32);
2187 test_cipher_speed("cbc(aria)", DECRYPT, sec, NULL, 0,
2188 speed_template_16_24_32);
2189 test_cipher_speed("ctr(aria)", ENCRYPT, sec, NULL, 0,
2190 speed_template_16_24_32);
2191 test_cipher_speed("ctr(aria)", DECRYPT, sec, NULL, 0,
2192 speed_template_16_24_32);
2196 test_aead_speed("gcm(aria)", ENCRYPT, sec,
2197 NULL, 0, 16, 8, speed_template_16_24_32);
2198 test_aead_speed("gcm(aria)", DECRYPT, sec,
2199 NULL, 0, 16, 8, speed_template_16_24_32);
2203 test_mb_aead_speed("gcm(aria)", ENCRYPT, sec, NULL, 0, 16, 8,
2204 speed_template_16, num_mb);
2205 test_mb_aead_speed("gcm(aria)", DECRYPT, sec, NULL, 0, 16, 8,
2206 speed_template_16, num_mb);
2211 test_hash_speed(alg, sec, generic_hash_speed_template);
2216 test_hash_speed("md4", sec, generic_hash_speed_template);
2217 if (mode > 300 && mode < 400) break;
2220 test_hash_speed("md5", sec, generic_hash_speed_template);
2221 if (mode > 300 && mode < 400) break;
2224 test_hash_speed("sha1", sec, generic_hash_speed_template);
2225 if (mode > 300 && mode < 400) break;
2228 test_hash_speed("sha256", sec, generic_hash_speed_template);
2229 if (mode > 300 && mode < 400) break;
2232 test_hash_speed("sha384", sec, generic_hash_speed_template);
2233 if (mode > 300 && mode < 400) break;
2236 test_hash_speed("sha512", sec, generic_hash_speed_template);
2237 if (mode > 300 && mode < 400) break;
2240 test_hash_speed("wp256", sec, generic_hash_speed_template);
2241 if (mode > 300 && mode < 400) break;
2244 test_hash_speed("wp384", sec, generic_hash_speed_template);
2245 if (mode > 300 && mode < 400) break;
2248 test_hash_speed("wp512", sec, generic_hash_speed_template);
2249 if (mode > 300 && mode < 400) break;
2252 test_hash_speed("sha224", sec, generic_hash_speed_template);
2253 if (mode > 300 && mode < 400) break;
2256 test_hash_speed("xxhash64", sec, generic_hash_speed_template);
2257 if (mode > 300 && mode < 400) break;
2260 test_hash_speed("rmd160", sec, generic_hash_speed_template);
2261 if (mode > 300 && mode < 400) break;
2264 test_hash_speed("blake2b-512", sec, generic_hash_speed_template);
2265 if (mode > 300 && mode < 400) break;
2269 test_hash_speed("ghash", sec, generic_hash_speed_template);
2270 if (mode > 300 && mode < 400) break;
2273 test_hash_speed("crc32c", sec, generic_hash_speed_template);
2274 if (mode > 300 && mode < 400) break;
2277 test_hash_speed("crct10dif", sec, generic_hash_speed_template);
2278 if (mode > 300 && mode < 400) break;
2281 test_hash_speed("poly1305", sec, poly1305_speed_template);
2282 if (mode > 300 && mode < 400) break;
2285 test_hash_speed("sha3-224", sec, generic_hash_speed_template);
2286 if (mode > 300 && mode < 400) break;
2289 test_hash_speed("sha3-256", sec, generic_hash_speed_template);
2290 if (mode > 300 && mode < 400) break;
2293 test_hash_speed("sha3-384", sec, generic_hash_speed_template);
2294 if (mode > 300 && mode < 400) break;
2297 test_hash_speed("sha3-512", sec, generic_hash_speed_template);
2298 if (mode > 300 && mode < 400) break;
2301 test_hash_speed("sm3", sec, generic_hash_speed_template);
2302 if (mode > 300 && mode < 400) break;
2305 test_hash_speed("streebog256", sec,
2306 generic_hash_speed_template);
2307 if (mode > 300 && mode < 400) break;
2310 test_hash_speed("streebog512", sec,
2311 generic_hash_speed_template);
2312 if (mode > 300 && mode < 400) break;
2319 test_ahash_speed(alg, sec, generic_hash_speed_template);
2324 test_ahash_speed("md4", sec, generic_hash_speed_template);
2325 if (mode > 400 && mode < 500) break;
2328 test_ahash_speed("md5", sec, generic_hash_speed_template);
2329 if (mode > 400 && mode < 500) break;
2332 test_ahash_speed("sha1", sec, generic_hash_speed_template);
2333 if (mode > 400 && mode < 500) break;
2336 test_ahash_speed("sha256", sec, generic_hash_speed_template);
2337 if (mode > 400 && mode < 500) break;
2340 test_ahash_speed("sha384", sec, generic_hash_speed_template);
2341 if (mode > 400 && mode < 500) break;
2344 test_ahash_speed("sha512", sec, generic_hash_speed_template);
2345 if (mode > 400 && mode < 500) break;
2348 test_ahash_speed("wp256", sec, generic_hash_speed_template);
2349 if (mode > 400 && mode < 500) break;
2352 test_ahash_speed("wp384", sec, generic_hash_speed_template);
2353 if (mode > 400 && mode < 500) break;
2356 test_ahash_speed("wp512", sec, generic_hash_speed_template);
2357 if (mode > 400 && mode < 500) break;
2360 test_ahash_speed("sha224", sec, generic_hash_speed_template);
2361 if (mode > 400 && mode < 500) break;
2364 test_ahash_speed("xxhash64", sec, generic_hash_speed_template);
2365 if (mode > 400 && mode < 500) break;
2368 test_ahash_speed("rmd160", sec, generic_hash_speed_template);
2369 if (mode > 400 && mode < 500) break;
2372 test_ahash_speed("blake2b-512", sec, generic_hash_speed_template);
2373 if (mode > 400 && mode < 500) break;
2376 test_ahash_speed("sha3-224", sec, generic_hash_speed_template);
2377 if (mode > 400 && mode < 500) break;
2380 test_ahash_speed("sha3-256", sec, generic_hash_speed_template);
2381 if (mode > 400 && mode < 500) break;
2384 test_ahash_speed("sha3-384", sec, generic_hash_speed_template);
2385 if (mode > 400 && mode < 500) break;
2388 test_ahash_speed("sha3-512", sec, generic_hash_speed_template);
2389 if (mode > 400 && mode < 500) break;
2392 test_ahash_speed("sm3", sec, generic_hash_speed_template);
2393 if (mode > 400 && mode < 500) break;
2399 test_acipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
2400 speed_template_16_24_32);
2401 test_acipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0,
2402 speed_template_16_24_32);
2403 test_acipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0,
2404 speed_template_16_24_32);
2405 test_acipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0,
2406 speed_template_16_24_32);
2407 test_acipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0,
2408 speed_template_32_40_48);
2409 test_acipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0,
2410 speed_template_32_40_48);
2411 test_acipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0,
2412 speed_template_32_64);
2413 test_acipher_speed("xts(aes)", DECRYPT, sec, NULL, 0,
2414 speed_template_32_64);
2415 test_acipher_speed("cts(cbc(aes))", ENCRYPT, sec, NULL, 0,
2416 speed_template_16_24_32);
2417 test_acipher_speed("cts(cbc(aes))", DECRYPT, sec, NULL, 0,
2418 speed_template_16_24_32);
2419 test_acipher_speed("ctr(aes)", ENCRYPT, sec, NULL, 0,
2420 speed_template_16_24_32);
2421 test_acipher_speed("ctr(aes)", DECRYPT, sec, NULL, 0,
2422 speed_template_16_24_32);
2423 test_acipher_speed("rfc3686(ctr(aes))", ENCRYPT, sec, NULL, 0,
2424 speed_template_20_28_36);
2425 test_acipher_speed("rfc3686(ctr(aes))", DECRYPT, sec, NULL, 0,
2426 speed_template_20_28_36);
2430 test_acipher_speed("ecb(des3_ede)", ENCRYPT, sec,
2431 des3_speed_template, DES3_SPEED_VECTORS,
2433 test_acipher_speed("ecb(des3_ede)", DECRYPT, sec,
2434 des3_speed_template, DES3_SPEED_VECTORS,
2436 test_acipher_speed("cbc(des3_ede)", ENCRYPT, sec,
2437 des3_speed_template, DES3_SPEED_VECTORS,
2439 test_acipher_speed("cbc(des3_ede)", DECRYPT, sec,
2440 des3_speed_template, DES3_SPEED_VECTORS,
2445 test_acipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0,
2447 test_acipher_speed("ecb(des)", DECRYPT, sec, NULL, 0,
2449 test_acipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0,
2451 test_acipher_speed("cbc(des)", DECRYPT, sec, NULL, 0,
2456 test_acipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0,
2457 speed_template_16_32);
2458 test_acipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0,
2459 speed_template_16_32);
2460 test_acipher_speed("cbc(serpent)", ENCRYPT, sec, NULL, 0,
2461 speed_template_16_32);
2462 test_acipher_speed("cbc(serpent)", DECRYPT, sec, NULL, 0,
2463 speed_template_16_32);
2464 test_acipher_speed("ctr(serpent)", ENCRYPT, sec, NULL, 0,
2465 speed_template_16_32);
2466 test_acipher_speed("ctr(serpent)", DECRYPT, sec, NULL, 0,
2467 speed_template_16_32);
2468 test_acipher_speed("lrw(serpent)", ENCRYPT, sec, NULL, 0,
2469 speed_template_32_48);
2470 test_acipher_speed("lrw(serpent)", DECRYPT, sec, NULL, 0,
2471 speed_template_32_48);
2472 test_acipher_speed("xts(serpent)", ENCRYPT, sec, NULL, 0,
2473 speed_template_32_64);
2474 test_acipher_speed("xts(serpent)", DECRYPT, sec, NULL, 0,
2475 speed_template_32_64);
2479 test_acipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0,
2480 speed_template_16_24_32);
2481 test_acipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0,
2482 speed_template_16_24_32);
2483 test_acipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0,
2484 speed_template_16_24_32);
2485 test_acipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0,
2486 speed_template_16_24_32);
2487 test_acipher_speed("ctr(twofish)", ENCRYPT, sec, NULL, 0,
2488 speed_template_16_24_32);
2489 test_acipher_speed("ctr(twofish)", DECRYPT, sec, NULL, 0,
2490 speed_template_16_24_32);
2491 test_acipher_speed("lrw(twofish)", ENCRYPT, sec, NULL, 0,
2492 speed_template_32_40_48);
2493 test_acipher_speed("lrw(twofish)", DECRYPT, sec, NULL, 0,
2494 speed_template_32_40_48);
2495 test_acipher_speed("xts(twofish)", ENCRYPT, sec, NULL, 0,
2496 speed_template_32_48_64);
2497 test_acipher_speed("xts(twofish)", DECRYPT, sec, NULL, 0,
2498 speed_template_32_48_64);
2502 test_acipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0,
2507 test_acipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0,
2508 speed_template_8_16);
2509 test_acipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0,
2510 speed_template_8_16);
2511 test_acipher_speed("cbc(cast5)", ENCRYPT, sec, NULL, 0,
2512 speed_template_8_16);
2513 test_acipher_speed("cbc(cast5)", DECRYPT, sec, NULL, 0,
2514 speed_template_8_16);
2515 test_acipher_speed("ctr(cast5)", ENCRYPT, sec, NULL, 0,
2516 speed_template_8_16);
2517 test_acipher_speed("ctr(cast5)", DECRYPT, sec, NULL, 0,
2518 speed_template_8_16);
2522 test_acipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0,
2523 speed_template_16_32);
2524 test_acipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0,
2525 speed_template_16_32);
2526 test_acipher_speed("cbc(cast6)", ENCRYPT, sec, NULL, 0,
2527 speed_template_16_32);
2528 test_acipher_speed("cbc(cast6)", DECRYPT, sec, NULL, 0,
2529 speed_template_16_32);
2530 test_acipher_speed("ctr(cast6)", ENCRYPT, sec, NULL, 0,
2531 speed_template_16_32);
2532 test_acipher_speed("ctr(cast6)", DECRYPT, sec, NULL, 0,
2533 speed_template_16_32);
2534 test_acipher_speed("lrw(cast6)", ENCRYPT, sec, NULL, 0,
2535 speed_template_32_48);
2536 test_acipher_speed("lrw(cast6)", DECRYPT, sec, NULL, 0,
2537 speed_template_32_48);
2538 test_acipher_speed("xts(cast6)", ENCRYPT, sec, NULL, 0,
2539 speed_template_32_64);
2540 test_acipher_speed("xts(cast6)", DECRYPT, sec, NULL, 0,
2541 speed_template_32_64);
2545 test_acipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0,
2546 speed_template_16_32);
2547 test_acipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0,
2548 speed_template_16_32);
2549 test_acipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0,
2550 speed_template_16_32);
2551 test_acipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
2552 speed_template_16_32);
2553 test_acipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0,
2554 speed_template_16_32);
2555 test_acipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0,
2556 speed_template_16_32);
2557 test_acipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0,
2558 speed_template_32_48);
2559 test_acipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0,
2560 speed_template_32_48);
2561 test_acipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0,
2562 speed_template_32_64);
2563 test_acipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0,
2564 speed_template_32_64);
2568 test_acipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0,
2569 speed_template_8_32);
2570 test_acipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0,
2571 speed_template_8_32);
2572 test_acipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0,
2573 speed_template_8_32);
2574 test_acipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0,
2575 speed_template_8_32);
2576 test_acipher_speed("ctr(blowfish)", ENCRYPT, sec, NULL, 0,
2577 speed_template_8_32);
2578 test_acipher_speed("ctr(blowfish)", DECRYPT, sec, NULL, 0,
2579 speed_template_8_32);
2583 test_acipher_speed("ecb(sm4)", ENCRYPT, sec, NULL, 0,
2585 test_acipher_speed("ecb(sm4)", DECRYPT, sec, NULL, 0,
2587 test_acipher_speed("cbc(sm4)", ENCRYPT, sec, NULL, 0,
2589 test_acipher_speed("cbc(sm4)", DECRYPT, sec, NULL, 0,
2591 test_acipher_speed("ctr(sm4)", ENCRYPT, sec, NULL, 0,
2593 test_acipher_speed("ctr(sm4)", DECRYPT, sec, NULL, 0,
2595 test_acipher_speed("xts(sm4)", ENCRYPT, sec, NULL, 0,
2597 test_acipher_speed("xts(sm4)", DECRYPT, sec, NULL, 0,
2602 test_acipher_speed("ecb(aria)", ENCRYPT, sec, NULL, 0,
2603 speed_template_16_24_32);
2604 test_acipher_speed("ecb(aria)", DECRYPT, sec, NULL, 0,
2605 speed_template_16_24_32);
2606 test_acipher_speed("ctr(aria)", ENCRYPT, sec, NULL, 0,
2607 speed_template_16_24_32);
2608 test_acipher_speed("ctr(aria)", DECRYPT, sec, NULL, 0,
2609 speed_template_16_24_32);
2613 test_mb_skcipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
2614 speed_template_16_24_32, num_mb);
2615 test_mb_skcipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0,
2616 speed_template_16_24_32, num_mb);
2617 test_mb_skcipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0,
2618 speed_template_16_24_32, num_mb);
2619 test_mb_skcipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0,
2620 speed_template_16_24_32, num_mb);
2621 test_mb_skcipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0,
2622 speed_template_32_40_48, num_mb);
2623 test_mb_skcipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0,
2624 speed_template_32_40_48, num_mb);
2625 test_mb_skcipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0,
2626 speed_template_32_64, num_mb);
2627 test_mb_skcipher_speed("xts(aes)", DECRYPT, sec, NULL, 0,
2628 speed_template_32_64, num_mb);
2629 test_mb_skcipher_speed("cts(cbc(aes))", ENCRYPT, sec, NULL, 0,
2630 speed_template_16_24_32, num_mb);
2631 test_mb_skcipher_speed("cts(cbc(aes))", DECRYPT, sec, NULL, 0,
2632 speed_template_16_24_32, num_mb);
2633 test_mb_skcipher_speed("ctr(aes)", ENCRYPT, sec, NULL, 0,
2634 speed_template_16_24_32, num_mb);
2635 test_mb_skcipher_speed("ctr(aes)", DECRYPT, sec, NULL, 0,
2636 speed_template_16_24_32, num_mb);
2637 test_mb_skcipher_speed("rfc3686(ctr(aes))", ENCRYPT, sec, NULL,
2638 0, speed_template_20_28_36, num_mb);
2639 test_mb_skcipher_speed("rfc3686(ctr(aes))", DECRYPT, sec, NULL,
2640 0, speed_template_20_28_36, num_mb);
2644 test_mb_skcipher_speed("ecb(des3_ede)", ENCRYPT, sec,
2645 des3_speed_template, DES3_SPEED_VECTORS,
2646 speed_template_24, num_mb);
2647 test_mb_skcipher_speed("ecb(des3_ede)", DECRYPT, sec,
2648 des3_speed_template, DES3_SPEED_VECTORS,
2649 speed_template_24, num_mb);
2650 test_mb_skcipher_speed("cbc(des3_ede)", ENCRYPT, sec,
2651 des3_speed_template, DES3_SPEED_VECTORS,
2652 speed_template_24, num_mb);
2653 test_mb_skcipher_speed("cbc(des3_ede)", DECRYPT, sec,
2654 des3_speed_template, DES3_SPEED_VECTORS,
2655 speed_template_24, num_mb);
2659 test_mb_skcipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0,
2660 speed_template_8, num_mb);
2661 test_mb_skcipher_speed("ecb(des)", DECRYPT, sec, NULL, 0,
2662 speed_template_8, num_mb);
2663 test_mb_skcipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0,
2664 speed_template_8, num_mb);
2665 test_mb_skcipher_speed("cbc(des)", DECRYPT, sec, NULL, 0,
2666 speed_template_8, num_mb);
2670 test_mb_skcipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0,
2671 speed_template_16_32, num_mb);
2672 test_mb_skcipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0,
2673 speed_template_16_32, num_mb);
2674 test_mb_skcipher_speed("cbc(serpent)", ENCRYPT, sec, NULL, 0,
2675 speed_template_16_32, num_mb);
2676 test_mb_skcipher_speed("cbc(serpent)", DECRYPT, sec, NULL, 0,
2677 speed_template_16_32, num_mb);
2678 test_mb_skcipher_speed("ctr(serpent)", ENCRYPT, sec, NULL, 0,
2679 speed_template_16_32, num_mb);
2680 test_mb_skcipher_speed("ctr(serpent)", DECRYPT, sec, NULL, 0,
2681 speed_template_16_32, num_mb);
2682 test_mb_skcipher_speed("lrw(serpent)", ENCRYPT, sec, NULL, 0,
2683 speed_template_32_48, num_mb);
2684 test_mb_skcipher_speed("lrw(serpent)", DECRYPT, sec, NULL, 0,
2685 speed_template_32_48, num_mb);
2686 test_mb_skcipher_speed("xts(serpent)", ENCRYPT, sec, NULL, 0,
2687 speed_template_32_64, num_mb);
2688 test_mb_skcipher_speed("xts(serpent)", DECRYPT, sec, NULL, 0,
2689 speed_template_32_64, num_mb);
2693 test_mb_skcipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0,
2694 speed_template_16_24_32, num_mb);
2695 test_mb_skcipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0,
2696 speed_template_16_24_32, num_mb);
2697 test_mb_skcipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0,
2698 speed_template_16_24_32, num_mb);
2699 test_mb_skcipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0,
2700 speed_template_16_24_32, num_mb);
2701 test_mb_skcipher_speed("ctr(twofish)", ENCRYPT, sec, NULL, 0,
2702 speed_template_16_24_32, num_mb);
2703 test_mb_skcipher_speed("ctr(twofish)", DECRYPT, sec, NULL, 0,
2704 speed_template_16_24_32, num_mb);
2705 test_mb_skcipher_speed("lrw(twofish)", ENCRYPT, sec, NULL, 0,
2706 speed_template_32_40_48, num_mb);
2707 test_mb_skcipher_speed("lrw(twofish)", DECRYPT, sec, NULL, 0,
2708 speed_template_32_40_48, num_mb);
2709 test_mb_skcipher_speed("xts(twofish)", ENCRYPT, sec, NULL, 0,
2710 speed_template_32_48_64, num_mb);
2711 test_mb_skcipher_speed("xts(twofish)", DECRYPT, sec, NULL, 0,
2712 speed_template_32_48_64, num_mb);
2716 test_mb_skcipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0,
2717 speed_template_8, num_mb);
2721 test_mb_skcipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0,
2722 speed_template_8_16, num_mb);
2723 test_mb_skcipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0,
2724 speed_template_8_16, num_mb);
2725 test_mb_skcipher_speed("cbc(cast5)", ENCRYPT, sec, NULL, 0,
2726 speed_template_8_16, num_mb);
2727 test_mb_skcipher_speed("cbc(cast5)", DECRYPT, sec, NULL, 0,
2728 speed_template_8_16, num_mb);
2729 test_mb_skcipher_speed("ctr(cast5)", ENCRYPT, sec, NULL, 0,
2730 speed_template_8_16, num_mb);
2731 test_mb_skcipher_speed("ctr(cast5)", DECRYPT, sec, NULL, 0,
2732 speed_template_8_16, num_mb);
2736 test_mb_skcipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0,
2737 speed_template_16_32, num_mb);
2738 test_mb_skcipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0,
2739 speed_template_16_32, num_mb);
2740 test_mb_skcipher_speed("cbc(cast6)", ENCRYPT, sec, NULL, 0,
2741 speed_template_16_32, num_mb);
2742 test_mb_skcipher_speed("cbc(cast6)", DECRYPT, sec, NULL, 0,
2743 speed_template_16_32, num_mb);
2744 test_mb_skcipher_speed("ctr(cast6)", ENCRYPT, sec, NULL, 0,
2745 speed_template_16_32, num_mb);
2746 test_mb_skcipher_speed("ctr(cast6)", DECRYPT, sec, NULL, 0,
2747 speed_template_16_32, num_mb);
2748 test_mb_skcipher_speed("lrw(cast6)", ENCRYPT, sec, NULL, 0,
2749 speed_template_32_48, num_mb);
2750 test_mb_skcipher_speed("lrw(cast6)", DECRYPT, sec, NULL, 0,
2751 speed_template_32_48, num_mb);
2752 test_mb_skcipher_speed("xts(cast6)", ENCRYPT, sec, NULL, 0,
2753 speed_template_32_64, num_mb);
2754 test_mb_skcipher_speed("xts(cast6)", DECRYPT, sec, NULL, 0,
2755 speed_template_32_64, num_mb);
2759 test_mb_skcipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0,
2760 speed_template_16_32, num_mb);
2761 test_mb_skcipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0,
2762 speed_template_16_32, num_mb);
2763 test_mb_skcipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0,
2764 speed_template_16_32, num_mb);
2765 test_mb_skcipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
2766 speed_template_16_32, num_mb);
2767 test_mb_skcipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0,
2768 speed_template_16_32, num_mb);
2769 test_mb_skcipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0,
2770 speed_template_16_32, num_mb);
2771 test_mb_skcipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0,
2772 speed_template_32_48, num_mb);
2773 test_mb_skcipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0,
2774 speed_template_32_48, num_mb);
2775 test_mb_skcipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0,
2776 speed_template_32_64, num_mb);
2777 test_mb_skcipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0,
2778 speed_template_32_64, num_mb);
2782 test_mb_skcipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0,
2783 speed_template_8_32, num_mb);
2784 test_mb_skcipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0,
2785 speed_template_8_32, num_mb);
2786 test_mb_skcipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0,
2787 speed_template_8_32, num_mb);
2788 test_mb_skcipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0,
2789 speed_template_8_32, num_mb);
2790 test_mb_skcipher_speed("ctr(blowfish)", ENCRYPT, sec, NULL, 0,
2791 speed_template_8_32, num_mb);
2792 test_mb_skcipher_speed("ctr(blowfish)", DECRYPT, sec, NULL, 0,
2793 speed_template_8_32, num_mb);
2797 test_mb_skcipher_speed("ecb(aria)", ENCRYPT, sec, NULL, 0,
2798 speed_template_16_32, num_mb);
2799 test_mb_skcipher_speed("ecb(aria)", DECRYPT, sec, NULL, 0,
2800 speed_template_16_32, num_mb);
2801 test_mb_skcipher_speed("ctr(aria)", ENCRYPT, sec, NULL, 0,
2802 speed_template_16_32, num_mb);
2803 test_mb_skcipher_speed("ctr(aria)", DECRYPT, sec, NULL, 0,
2804 speed_template_16_32, num_mb);
2812 static int __init tcrypt_mod_init(void)
2817 for (i = 0; i < TVMEMSIZE; i++) {
2818 tvmem[i] = (void *)__get_free_page(GFP_KERNEL);
2823 err = do_test(alg, type, mask, mode, num_mb);
2826 pr_err("one or more tests failed!\n");
2829 pr_debug("all tests passed\n");
2832 /* We intentionaly return -EAGAIN to prevent keeping the module,
2833 * unless we're running in fips mode. It does all its work from
2834 * init() and doesn't offer any runtime functionality, but in
2835 * the fips case, checking for a successful load is helpful.
2836 * => we don't need it in the memory, do we?
2843 for (i = 0; i < TVMEMSIZE && tvmem[i]; i++)
2844 free_page((unsigned long)tvmem[i]);
2850 * If an init function is provided, an exit function must also be provided
2851 * to allow module unload.
2853 static void __exit tcrypt_mod_fini(void) { }
2855 late_initcall(tcrypt_mod_init);
2856 module_exit(tcrypt_mod_fini);
2858 module_param(alg, charp, 0);
2859 module_param(type, uint, 0);
2860 module_param(mask, uint, 0);
2861 module_param(mode, int, 0);
2862 module_param(sec, uint, 0);
2863 MODULE_PARM_DESC(sec, "Length in seconds of speed tests "
2864 "(defaults to zero which uses CPU cycles instead)");
2865 module_param(num_mb, uint, 0000);
2866 MODULE_PARM_DESC(num_mb, "Number of concurrent requests to be used in mb speed tests (defaults to 8)");
2867 module_param(klen, uint, 0);
2868 MODULE_PARM_DESC(klen, "Key length (defaults to 0)");
2870 MODULE_LICENSE("GPL");
2871 MODULE_DESCRIPTION("Quick & dirty crypto testing module");