2 * Quick & dirty crypto testing module.
4 * This will only exist until we have a better testing mechanism
5 * (e.g. a char device).
9 * Copyright (c) 2007 Nokia Siemens Networks
11 * Updated RFC4106 AES-GCM testing.
16 * Copyright (c) 2010, Intel Corporation.
18 * This program is free software; you can redistribute it and/or modify it
19 * under the terms of the GNU General Public License as published by the Free
20 * Software Foundation; either version 2 of the License, or (at your option)
25 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
27 #include <crypto/aead.h>
28 #include <crypto/hash.h>
29 #include <crypto/skcipher.h>
30 #include <linux/err.h>
31 #include <linux/fips.h>
32 #include <linux/init.h>
33 #include <linux/gfp.h>
34 #include <linux/module.h>
35 #include <linux/scatterlist.h>
36 #include <linux/string.h>
37 #include <linux/moduleparam.h>
38 #include <linux/jiffies.h>
39 #include <linux/timex.h>
40 #include <linux/interrupt.h>
44 * Need slab memory for testing (size in number of pages).
49 * Used by test_cipher_speed()
54 #define MAX_DIGEST_SIZE 64
57 * return a string with the driver name
59 #define get_driver_name(tfm_type, tfm) crypto_tfm_alg_driver_name(tfm_type ## _tfm(tfm))
62 * Used by test_cipher_speed()
64 static unsigned int sec;
66 static char *alg = NULL;
70 static u32 num_mb = 8;
71 static char *tvmem[TVMEMSIZE];
73 static char *check[] = {
74 "des", "md5", "des3_ede", "rot13", "sha1", "sha224", "sha256", "sm3",
75 "blowfish", "twofish", "serpent", "sha384", "sha512", "md4", "aes",
76 "cast6", "arc4", "michael_mic", "deflate", "crc32c", "tea", "xtea",
77 "khazad", "wp512", "wp384", "wp256", "tnepres", "xeta", "fcrypt",
78 "camellia", "seed", "salsa20", "rmd128", "rmd160", "rmd256", "rmd320",
79 "lzo", "cts", "zlib", "sha3-224", "sha3-256", "sha3-384", "sha3-512",
83 static u32 block_sizes[] = { 16, 64, 256, 1024, 8192, 0 };
84 static u32 aead_sizes[] = { 16, 64, 256, 512, 1024, 2048, 4096, 8192, 0 };
89 static int testmgr_alloc_buf(char *buf[XBUFSIZE])
93 for (i = 0; i < XBUFSIZE; i++) {
94 buf[i] = (void *)__get_free_page(GFP_KERNEL);
103 free_page((unsigned long)buf[i]);
108 static void testmgr_free_buf(char *buf[XBUFSIZE])
112 for (i = 0; i < XBUFSIZE; i++)
113 free_page((unsigned long)buf[i]);
116 static void sg_init_aead(struct scatterlist *sg, char *xbuf[XBUFSIZE],
117 unsigned int buflen, const void *assoc,
118 unsigned int aad_size)
120 int np = (buflen + PAGE_SIZE - 1)/PAGE_SIZE;
127 rem = buflen % PAGE_SIZE;
130 sg_init_table(sg, np + 1);
132 sg_set_buf(&sg[0], assoc, aad_size);
136 for (k = 0; k < np; k++)
137 sg_set_buf(&sg[k + 1], xbuf[k], PAGE_SIZE);
140 sg_set_buf(&sg[k + 1], xbuf[k], rem);
143 static inline int do_one_aead_op(struct aead_request *req, int ret)
145 struct crypto_wait *wait = req->base.data;
147 return crypto_wait_req(ret, wait);
150 struct test_mb_aead_data {
151 struct scatterlist sg[XBUFSIZE];
152 struct scatterlist sgout[XBUFSIZE];
153 struct aead_request *req;
154 struct crypto_wait wait;
155 char *xbuf[XBUFSIZE];
156 char *xoutbuf[XBUFSIZE];
157 char *axbuf[XBUFSIZE];
160 static int do_mult_aead_op(struct test_mb_aead_data *data, int enc,
163 int i, rc[num_mb], err = 0;
165 /* Fire up a bunch of concurrent requests */
166 for (i = 0; i < num_mb; i++) {
168 rc[i] = crypto_aead_encrypt(data[i].req);
170 rc[i] = crypto_aead_decrypt(data[i].req);
173 /* Wait for all requests to finish */
174 for (i = 0; i < num_mb; i++) {
175 rc[i] = crypto_wait_req(rc[i], &data[i].wait);
178 pr_info("concurrent request %d error %d\n", i, rc[i]);
186 static int test_mb_aead_jiffies(struct test_mb_aead_data *data, int enc,
187 int blen, int secs, u32 num_mb)
189 unsigned long start, end;
193 for (start = jiffies, end = start + secs * HZ, bcount = 0;
194 time_before(jiffies, end); bcount++) {
195 ret = do_mult_aead_op(data, enc, num_mb);
200 pr_cont("%d operations in %d seconds (%ld bytes)\n",
201 bcount * num_mb, secs, (long)bcount * blen * num_mb);
205 static int test_mb_aead_cycles(struct test_mb_aead_data *data, int enc,
206 int blen, u32 num_mb)
208 unsigned long cycles = 0;
213 for (i = 0; i < 4; i++) {
214 ret = do_mult_aead_op(data, enc, num_mb);
219 /* The real thing. */
220 for (i = 0; i < 8; i++) {
223 start = get_cycles();
224 ret = do_mult_aead_op(data, enc, num_mb);
230 cycles += end - start;
235 pr_cont("1 operation in %lu cycles (%d bytes)\n",
236 (cycles + 4) / (8 * num_mb), blen);
241 static void test_mb_aead_speed(const char *algo, int enc, int secs,
242 struct aead_speed_template *template,
243 unsigned int tcount, u8 authsize,
244 unsigned int aad_size, u8 *keysize, u32 num_mb)
246 struct test_mb_aead_data *data;
247 struct crypto_aead *tfm;
248 unsigned int i, j, iv_len;
257 if (aad_size >= PAGE_SIZE) {
258 pr_err("associate data length (%u) too big\n", aad_size);
262 iv = kzalloc(MAX_IVLEN, GFP_KERNEL);
271 data = kcalloc(num_mb, sizeof(*data), GFP_KERNEL);
275 tfm = crypto_alloc_aead(algo, 0, 0);
277 pr_err("failed to load transform for %s: %ld\n",
282 ret = crypto_aead_setauthsize(tfm, authsize);
284 for (i = 0; i < num_mb; ++i)
285 if (testmgr_alloc_buf(data[i].xbuf)) {
287 testmgr_free_buf(data[i].xbuf);
291 for (i = 0; i < num_mb; ++i)
292 if (testmgr_alloc_buf(data[i].axbuf)) {
294 testmgr_free_buf(data[i].axbuf);
298 for (i = 0; i < num_mb; ++i)
299 if (testmgr_alloc_buf(data[i].xoutbuf)) {
301 testmgr_free_buf(data[i].xoutbuf);
305 for (i = 0; i < num_mb; ++i) {
306 data[i].req = aead_request_alloc(tfm, GFP_KERNEL);
308 pr_err("alg: skcipher: Failed to allocate request for %s\n",
311 aead_request_free(data[i].req);
312 goto out_free_xoutbuf;
316 for (i = 0; i < num_mb; ++i) {
317 crypto_init_wait(&data[i].wait);
318 aead_request_set_callback(data[i].req,
319 CRYPTO_TFM_REQ_MAY_BACKLOG,
320 crypto_req_done, &data[i].wait);
323 pr_info("\ntesting speed of multibuffer %s (%s) %s\n", algo,
324 get_driver_name(crypto_aead, tfm), e);
330 if (*b_size + authsize > XBUFSIZE * PAGE_SIZE) {
331 pr_err("template (%u) too big for buffer (%lu)\n",
333 XBUFSIZE * PAGE_SIZE);
337 pr_info("test %u (%d bit key, %d byte blocks): ", i,
338 *keysize * 8, *b_size);
340 /* Set up tfm global state, i.e. the key */
342 memset(tvmem[0], 0xff, PAGE_SIZE);
344 for (j = 0; j < tcount; j++) {
345 if (template[j].klen == *keysize) {
346 key = template[j].key;
351 crypto_aead_clear_flags(tfm, ~0);
353 ret = crypto_aead_setkey(tfm, key, *keysize);
355 pr_err("setkey() failed flags=%x\n",
356 crypto_aead_get_flags(tfm));
360 iv_len = crypto_aead_ivsize(tfm);
362 memset(iv, 0xff, iv_len);
364 /* Now setup per request stuff, i.e. buffers */
366 for (j = 0; j < num_mb; ++j) {
367 struct test_mb_aead_data *cur = &data[j];
369 assoc = cur->axbuf[0];
370 memset(assoc, 0xff, aad_size);
372 sg_init_aead(cur->sg, cur->xbuf,
373 *b_size + (enc ? 0 : authsize),
376 sg_init_aead(cur->sgout, cur->xoutbuf,
377 *b_size + (enc ? authsize : 0),
380 aead_request_set_ad(cur->req, aad_size);
384 aead_request_set_crypt(cur->req,
388 ret = crypto_aead_encrypt(cur->req);
389 ret = do_one_aead_op(cur->req, ret);
392 pr_err("calculating auth failed failed (%d)\n",
398 aead_request_set_crypt(cur->req, cur->sg,
399 cur->sgout, *b_size +
400 (enc ? 0 : authsize),
406 ret = test_mb_aead_jiffies(data, enc, *b_size,
409 ret = test_mb_aead_cycles(data, enc, *b_size,
413 pr_err("%s() failed return code=%d\n", e, ret);
423 for (i = 0; i < num_mb; ++i)
424 aead_request_free(data[i].req);
426 for (i = 0; i < num_mb; ++i)
427 testmgr_free_buf(data[i].xoutbuf);
429 for (i = 0; i < num_mb; ++i)
430 testmgr_free_buf(data[i].axbuf);
432 for (i = 0; i < num_mb; ++i)
433 testmgr_free_buf(data[i].xbuf);
435 crypto_free_aead(tfm);
442 static int test_aead_jiffies(struct aead_request *req, int enc,
445 unsigned long start, end;
449 for (start = jiffies, end = start + secs * HZ, bcount = 0;
450 time_before(jiffies, end); bcount++) {
452 ret = do_one_aead_op(req, crypto_aead_encrypt(req));
454 ret = do_one_aead_op(req, crypto_aead_decrypt(req));
460 printk("%d operations in %d seconds (%ld bytes)\n",
461 bcount, secs, (long)bcount * blen);
465 static int test_aead_cycles(struct aead_request *req, int enc, int blen)
467 unsigned long cycles = 0;
472 for (i = 0; i < 4; i++) {
474 ret = do_one_aead_op(req, crypto_aead_encrypt(req));
476 ret = do_one_aead_op(req, crypto_aead_decrypt(req));
482 /* The real thing. */
483 for (i = 0; i < 8; i++) {
486 start = get_cycles();
488 ret = do_one_aead_op(req, crypto_aead_encrypt(req));
490 ret = do_one_aead_op(req, crypto_aead_decrypt(req));
496 cycles += end - start;
501 printk("1 operation in %lu cycles (%d bytes)\n",
502 (cycles + 4) / 8, blen);
507 static void test_aead_speed(const char *algo, int enc, unsigned int secs,
508 struct aead_speed_template *template,
509 unsigned int tcount, u8 authsize,
510 unsigned int aad_size, u8 *keysize)
513 struct crypto_aead *tfm;
516 struct aead_request *req;
517 struct scatterlist *sg;
518 struct scatterlist *sgout;
522 char *xbuf[XBUFSIZE];
523 char *xoutbuf[XBUFSIZE];
524 char *axbuf[XBUFSIZE];
525 unsigned int *b_size;
527 struct crypto_wait wait;
529 iv = kzalloc(MAX_IVLEN, GFP_KERNEL);
533 if (aad_size >= PAGE_SIZE) {
534 pr_err("associate data length (%u) too big\n", aad_size);
543 if (testmgr_alloc_buf(xbuf))
545 if (testmgr_alloc_buf(axbuf))
547 if (testmgr_alloc_buf(xoutbuf))
550 sg = kmalloc(sizeof(*sg) * 9 * 2, GFP_KERNEL);
555 tfm = crypto_alloc_aead(algo, 0, 0);
558 pr_err("alg: aead: Failed to load transform for %s: %ld\n", algo,
563 crypto_init_wait(&wait);
564 printk(KERN_INFO "\ntesting speed of %s (%s) %s\n", algo,
565 get_driver_name(crypto_aead, tfm), e);
567 req = aead_request_alloc(tfm, GFP_KERNEL);
569 pr_err("alg: aead: Failed to allocate request for %s\n",
574 aead_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
575 crypto_req_done, &wait);
582 memset(assoc, 0xff, aad_size);
584 if ((*keysize + *b_size) > TVMEMSIZE * PAGE_SIZE) {
585 pr_err("template (%u) too big for tvmem (%lu)\n",
587 TVMEMSIZE * PAGE_SIZE);
592 for (j = 0; j < tcount; j++) {
593 if (template[j].klen == *keysize) {
594 key = template[j].key;
598 ret = crypto_aead_setkey(tfm, key, *keysize);
599 ret = crypto_aead_setauthsize(tfm, authsize);
601 iv_len = crypto_aead_ivsize(tfm);
603 memset(iv, 0xff, iv_len);
605 crypto_aead_clear_flags(tfm, ~0);
606 printk(KERN_INFO "test %u (%d bit key, %d byte blocks): ",
607 i, *keysize * 8, *b_size);
610 memset(tvmem[0], 0xff, PAGE_SIZE);
613 pr_err("setkey() failed flags=%x\n",
614 crypto_aead_get_flags(tfm));
618 sg_init_aead(sg, xbuf, *b_size + (enc ? 0 : authsize),
621 sg_init_aead(sgout, xoutbuf,
622 *b_size + (enc ? authsize : 0), assoc,
625 aead_request_set_ad(req, aad_size);
630 * For decryption we need a proper auth so
631 * we do the encryption path once with buffers
632 * reversed (input <-> output) to calculate it
634 aead_request_set_crypt(req, sgout, sg,
636 ret = do_one_aead_op(req,
637 crypto_aead_encrypt(req));
640 pr_err("calculating auth failed failed (%d)\n",
646 aead_request_set_crypt(req, sg, sgout,
647 *b_size + (enc ? 0 : authsize),
651 ret = test_aead_jiffies(req, enc, *b_size,
654 ret = test_aead_cycles(req, enc, *b_size);
657 pr_err("%s() failed return code=%d\n", e, ret);
667 aead_request_free(req);
669 crypto_free_aead(tfm);
673 testmgr_free_buf(xoutbuf);
675 testmgr_free_buf(axbuf);
677 testmgr_free_buf(xbuf);
682 static void test_hash_sg_init(struct scatterlist *sg)
686 sg_init_table(sg, TVMEMSIZE);
687 for (i = 0; i < TVMEMSIZE; i++) {
688 sg_set_buf(sg + i, tvmem[i], PAGE_SIZE);
689 memset(tvmem[i], 0xff, PAGE_SIZE);
693 static inline int do_one_ahash_op(struct ahash_request *req, int ret)
695 struct crypto_wait *wait = req->base.data;
697 return crypto_wait_req(ret, wait);
700 struct test_mb_ahash_data {
701 struct scatterlist sg[XBUFSIZE];
703 struct ahash_request *req;
704 struct crypto_wait wait;
705 char *xbuf[XBUFSIZE];
708 static inline int do_mult_ahash_op(struct test_mb_ahash_data *data, u32 num_mb)
710 int i, rc[num_mb], err = 0;
712 /* Fire up a bunch of concurrent requests */
713 for (i = 0; i < num_mb; i++)
714 rc[i] = crypto_ahash_digest(data[i].req);
716 /* Wait for all requests to finish */
717 for (i = 0; i < num_mb; i++) {
718 rc[i] = crypto_wait_req(rc[i], &data[i].wait);
721 pr_info("concurrent request %d error %d\n", i, rc[i]);
729 static int test_mb_ahash_jiffies(struct test_mb_ahash_data *data, int blen,
730 int secs, u32 num_mb)
732 unsigned long start, end;
736 for (start = jiffies, end = start + secs * HZ, bcount = 0;
737 time_before(jiffies, end); bcount++) {
738 ret = do_mult_ahash_op(data, num_mb);
743 pr_cont("%d operations in %d seconds (%ld bytes)\n",
744 bcount * num_mb, secs, (long)bcount * blen * num_mb);
748 static int test_mb_ahash_cycles(struct test_mb_ahash_data *data, int blen,
751 unsigned long cycles = 0;
756 for (i = 0; i < 4; i++) {
757 ret = do_mult_ahash_op(data, num_mb);
762 /* The real thing. */
763 for (i = 0; i < 8; i++) {
766 start = get_cycles();
767 ret = do_mult_ahash_op(data, num_mb);
773 cycles += end - start;
778 pr_cont("1 operation in %lu cycles (%d bytes)\n",
779 (cycles + 4) / (8 * num_mb), blen);
784 static void test_mb_ahash_speed(const char *algo, unsigned int secs,
785 struct hash_speed *speed, u32 num_mb)
787 struct test_mb_ahash_data *data;
788 struct crypto_ahash *tfm;
789 unsigned int i, j, k;
792 data = kcalloc(num_mb, sizeof(*data), GFP_KERNEL);
796 tfm = crypto_alloc_ahash(algo, 0, 0);
798 pr_err("failed to load transform for %s: %ld\n",
803 for (i = 0; i < num_mb; ++i) {
804 if (testmgr_alloc_buf(data[i].xbuf))
807 crypto_init_wait(&data[i].wait);
809 data[i].req = ahash_request_alloc(tfm, GFP_KERNEL);
811 pr_err("alg: hash: Failed to allocate request for %s\n",
816 ahash_request_set_callback(data[i].req, 0, crypto_req_done,
819 sg_init_table(data[i].sg, XBUFSIZE);
820 for (j = 0; j < XBUFSIZE; j++) {
821 sg_set_buf(data[i].sg + j, data[i].xbuf[j], PAGE_SIZE);
822 memset(data[i].xbuf[j], 0xff, PAGE_SIZE);
826 pr_info("\ntesting speed of multibuffer %s (%s)\n", algo,
827 get_driver_name(crypto_ahash, tfm));
829 for (i = 0; speed[i].blen != 0; i++) {
830 /* For some reason this only tests digests. */
831 if (speed[i].blen != speed[i].plen)
834 if (speed[i].blen > XBUFSIZE * PAGE_SIZE) {
835 pr_err("template (%u) too big for tvmem (%lu)\n",
836 speed[i].blen, XBUFSIZE * PAGE_SIZE);
841 crypto_ahash_setkey(tfm, tvmem[0], speed[i].klen);
843 for (k = 0; k < num_mb; k++)
844 ahash_request_set_crypt(data[k].req, data[k].sg,
845 data[k].result, speed[i].blen);
848 "(%5u byte blocks,%5u bytes per update,%4u updates): ",
849 i, speed[i].blen, speed[i].plen,
850 speed[i].blen / speed[i].plen);
853 ret = test_mb_ahash_jiffies(data, speed[i].blen, secs,
856 ret = test_mb_ahash_cycles(data, speed[i].blen, num_mb);
860 pr_err("At least one hashing failed ret=%d\n", ret);
866 for (k = 0; k < num_mb; ++k)
867 ahash_request_free(data[k].req);
869 for (k = 0; k < num_mb; ++k)
870 testmgr_free_buf(data[k].xbuf);
872 crypto_free_ahash(tfm);
878 static int test_ahash_jiffies_digest(struct ahash_request *req, int blen,
881 unsigned long start, end;
885 for (start = jiffies, end = start + secs * HZ, bcount = 0;
886 time_before(jiffies, end); bcount++) {
887 ret = do_one_ahash_op(req, crypto_ahash_digest(req));
892 printk("%6u opers/sec, %9lu bytes/sec\n",
893 bcount / secs, ((long)bcount * blen) / secs);
898 static int test_ahash_jiffies(struct ahash_request *req, int blen,
899 int plen, char *out, int secs)
901 unsigned long start, end;
906 return test_ahash_jiffies_digest(req, blen, out, secs);
908 for (start = jiffies, end = start + secs * HZ, bcount = 0;
909 time_before(jiffies, end); bcount++) {
910 ret = do_one_ahash_op(req, crypto_ahash_init(req));
913 for (pcount = 0; pcount < blen; pcount += plen) {
914 ret = do_one_ahash_op(req, crypto_ahash_update(req));
918 /* we assume there is enough space in 'out' for the result */
919 ret = do_one_ahash_op(req, crypto_ahash_final(req));
924 pr_cont("%6u opers/sec, %9lu bytes/sec\n",
925 bcount / secs, ((long)bcount * blen) / secs);
930 static int test_ahash_cycles_digest(struct ahash_request *req, int blen,
933 unsigned long cycles = 0;
937 for (i = 0; i < 4; i++) {
938 ret = do_one_ahash_op(req, crypto_ahash_digest(req));
943 /* The real thing. */
944 for (i = 0; i < 8; i++) {
947 start = get_cycles();
949 ret = do_one_ahash_op(req, crypto_ahash_digest(req));
955 cycles += end - start;
962 pr_cont("%6lu cycles/operation, %4lu cycles/byte\n",
963 cycles / 8, cycles / (8 * blen));
968 static int test_ahash_cycles(struct ahash_request *req, int blen,
971 unsigned long cycles = 0;
975 return test_ahash_cycles_digest(req, blen, out);
978 for (i = 0; i < 4; i++) {
979 ret = do_one_ahash_op(req, crypto_ahash_init(req));
982 for (pcount = 0; pcount < blen; pcount += plen) {
983 ret = do_one_ahash_op(req, crypto_ahash_update(req));
987 ret = do_one_ahash_op(req, crypto_ahash_final(req));
992 /* The real thing. */
993 for (i = 0; i < 8; i++) {
996 start = get_cycles();
998 ret = do_one_ahash_op(req, crypto_ahash_init(req));
1001 for (pcount = 0; pcount < blen; pcount += plen) {
1002 ret = do_one_ahash_op(req, crypto_ahash_update(req));
1006 ret = do_one_ahash_op(req, crypto_ahash_final(req));
1012 cycles += end - start;
1019 pr_cont("%6lu cycles/operation, %4lu cycles/byte\n",
1020 cycles / 8, cycles / (8 * blen));
1025 static void test_ahash_speed_common(const char *algo, unsigned int secs,
1026 struct hash_speed *speed, unsigned mask)
1028 struct scatterlist sg[TVMEMSIZE];
1029 struct crypto_wait wait;
1030 struct ahash_request *req;
1031 struct crypto_ahash *tfm;
1035 tfm = crypto_alloc_ahash(algo, 0, mask);
1037 pr_err("failed to load transform for %s: %ld\n",
1038 algo, PTR_ERR(tfm));
1042 printk(KERN_INFO "\ntesting speed of async %s (%s)\n", algo,
1043 get_driver_name(crypto_ahash, tfm));
1045 if (crypto_ahash_digestsize(tfm) > MAX_DIGEST_SIZE) {
1046 pr_err("digestsize(%u) > %d\n", crypto_ahash_digestsize(tfm),
1051 test_hash_sg_init(sg);
1052 req = ahash_request_alloc(tfm, GFP_KERNEL);
1054 pr_err("ahash request allocation failure\n");
1058 crypto_init_wait(&wait);
1059 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
1060 crypto_req_done, &wait);
1062 output = kmalloc(MAX_DIGEST_SIZE, GFP_KERNEL);
1066 for (i = 0; speed[i].blen != 0; i++) {
1067 if (speed[i].blen > TVMEMSIZE * PAGE_SIZE) {
1068 pr_err("template (%u) too big for tvmem (%lu)\n",
1069 speed[i].blen, TVMEMSIZE * PAGE_SIZE);
1074 "(%5u byte blocks,%5u bytes per update,%4u updates): ",
1075 i, speed[i].blen, speed[i].plen, speed[i].blen / speed[i].plen);
1077 ahash_request_set_crypt(req, sg, output, speed[i].plen);
1080 ret = test_ahash_jiffies(req, speed[i].blen,
1081 speed[i].plen, output, secs);
1083 ret = test_ahash_cycles(req, speed[i].blen,
1084 speed[i].plen, output);
1087 pr_err("hashing failed ret=%d\n", ret);
1095 ahash_request_free(req);
1098 crypto_free_ahash(tfm);
1101 static void test_ahash_speed(const char *algo, unsigned int secs,
1102 struct hash_speed *speed)
1104 return test_ahash_speed_common(algo, secs, speed, 0);
1107 static void test_hash_speed(const char *algo, unsigned int secs,
1108 struct hash_speed *speed)
1110 return test_ahash_speed_common(algo, secs, speed, CRYPTO_ALG_ASYNC);
1113 struct test_mb_skcipher_data {
1114 struct scatterlist sg[XBUFSIZE];
1115 struct skcipher_request *req;
1116 struct crypto_wait wait;
1117 char *xbuf[XBUFSIZE];
1120 static int do_mult_acipher_op(struct test_mb_skcipher_data *data, int enc,
1123 int i, rc[num_mb], err = 0;
1125 /* Fire up a bunch of concurrent requests */
1126 for (i = 0; i < num_mb; i++) {
1128 rc[i] = crypto_skcipher_encrypt(data[i].req);
1130 rc[i] = crypto_skcipher_decrypt(data[i].req);
1133 /* Wait for all requests to finish */
1134 for (i = 0; i < num_mb; i++) {
1135 rc[i] = crypto_wait_req(rc[i], &data[i].wait);
1138 pr_info("concurrent request %d error %d\n", i, rc[i]);
1146 static int test_mb_acipher_jiffies(struct test_mb_skcipher_data *data, int enc,
1147 int blen, int secs, u32 num_mb)
1149 unsigned long start, end;
1153 for (start = jiffies, end = start + secs * HZ, bcount = 0;
1154 time_before(jiffies, end); bcount++) {
1155 ret = do_mult_acipher_op(data, enc, num_mb);
1160 pr_cont("%d operations in %d seconds (%ld bytes)\n",
1161 bcount * num_mb, secs, (long)bcount * blen * num_mb);
1165 static int test_mb_acipher_cycles(struct test_mb_skcipher_data *data, int enc,
1166 int blen, u32 num_mb)
1168 unsigned long cycles = 0;
1173 for (i = 0; i < 4; i++) {
1174 ret = do_mult_acipher_op(data, enc, num_mb);
1179 /* The real thing. */
1180 for (i = 0; i < 8; i++) {
1181 cycles_t start, end;
1183 start = get_cycles();
1184 ret = do_mult_acipher_op(data, enc, num_mb);
1190 cycles += end - start;
1195 pr_cont("1 operation in %lu cycles (%d bytes)\n",
1196 (cycles + 4) / (8 * num_mb), blen);
1201 static void test_mb_skcipher_speed(const char *algo, int enc, int secs,
1202 struct cipher_speed_template *template,
1203 unsigned int tcount, u8 *keysize, u32 num_mb)
1205 struct test_mb_skcipher_data *data;
1206 struct crypto_skcipher *tfm;
1207 unsigned int i, j, iv_len;
1219 data = kcalloc(num_mb, sizeof(*data), GFP_KERNEL);
1223 tfm = crypto_alloc_skcipher(algo, 0, 0);
1225 pr_err("failed to load transform for %s: %ld\n",
1226 algo, PTR_ERR(tfm));
1230 for (i = 0; i < num_mb; ++i)
1231 if (testmgr_alloc_buf(data[i].xbuf)) {
1233 testmgr_free_buf(data[i].xbuf);
1238 for (i = 0; i < num_mb; ++i)
1239 if (testmgr_alloc_buf(data[i].xbuf)) {
1241 testmgr_free_buf(data[i].xbuf);
1246 for (i = 0; i < num_mb; ++i) {
1247 data[i].req = skcipher_request_alloc(tfm, GFP_KERNEL);
1249 pr_err("alg: skcipher: Failed to allocate request for %s\n",
1252 skcipher_request_free(data[i].req);
1257 for (i = 0; i < num_mb; ++i) {
1258 skcipher_request_set_callback(data[i].req,
1259 CRYPTO_TFM_REQ_MAY_BACKLOG,
1260 crypto_req_done, &data[i].wait);
1261 crypto_init_wait(&data[i].wait);
1264 pr_info("\ntesting speed of multibuffer %s (%s) %s\n", algo,
1265 get_driver_name(crypto_skcipher, tfm), e);
1269 b_size = block_sizes;
1271 if (*b_size > XBUFSIZE * PAGE_SIZE) {
1272 pr_err("template (%u) too big for buffer (%lu)\n",
1273 *b_size, XBUFSIZE * PAGE_SIZE);
1277 pr_info("test %u (%d bit key, %d byte blocks): ", i,
1278 *keysize * 8, *b_size);
1280 /* Set up tfm global state, i.e. the key */
1282 memset(tvmem[0], 0xff, PAGE_SIZE);
1284 for (j = 0; j < tcount; j++) {
1285 if (template[j].klen == *keysize) {
1286 key = template[j].key;
1291 crypto_skcipher_clear_flags(tfm, ~0);
1293 ret = crypto_skcipher_setkey(tfm, key, *keysize);
1295 pr_err("setkey() failed flags=%x\n",
1296 crypto_skcipher_get_flags(tfm));
1300 iv_len = crypto_skcipher_ivsize(tfm);
1302 memset(&iv, 0xff, iv_len);
1304 /* Now setup per request stuff, i.e. buffers */
1306 for (j = 0; j < num_mb; ++j) {
1307 struct test_mb_skcipher_data *cur = &data[j];
1308 unsigned int k = *b_size;
1309 unsigned int pages = DIV_ROUND_UP(k, PAGE_SIZE);
1312 sg_init_table(cur->sg, pages);
1314 while (k > PAGE_SIZE) {
1315 sg_set_buf(cur->sg + p, cur->xbuf[p],
1317 memset(cur->xbuf[p], 0xff, PAGE_SIZE);
1322 sg_set_buf(cur->sg + p, cur->xbuf[p], k);
1323 memset(cur->xbuf[p], 0xff, k);
1325 skcipher_request_set_crypt(cur->req, cur->sg,
1331 ret = test_mb_acipher_jiffies(data, enc,
1335 ret = test_mb_acipher_cycles(data, enc,
1339 pr_err("%s() failed flags=%x\n", e,
1340 crypto_skcipher_get_flags(tfm));
1350 for (i = 0; i < num_mb; ++i)
1351 skcipher_request_free(data[i].req);
1353 for (i = 0; i < num_mb; ++i)
1354 testmgr_free_buf(data[i].xbuf);
1356 crypto_free_skcipher(tfm);
1361 static inline int do_one_acipher_op(struct skcipher_request *req, int ret)
1363 struct crypto_wait *wait = req->base.data;
1365 return crypto_wait_req(ret, wait);
1368 static int test_acipher_jiffies(struct skcipher_request *req, int enc,
1371 unsigned long start, end;
1375 for (start = jiffies, end = start + secs * HZ, bcount = 0;
1376 time_before(jiffies, end); bcount++) {
1378 ret = do_one_acipher_op(req,
1379 crypto_skcipher_encrypt(req));
1381 ret = do_one_acipher_op(req,
1382 crypto_skcipher_decrypt(req));
1388 pr_cont("%d operations in %d seconds (%ld bytes)\n",
1389 bcount, secs, (long)bcount * blen);
1393 static int test_acipher_cycles(struct skcipher_request *req, int enc,
1396 unsigned long cycles = 0;
1401 for (i = 0; i < 4; i++) {
1403 ret = do_one_acipher_op(req,
1404 crypto_skcipher_encrypt(req));
1406 ret = do_one_acipher_op(req,
1407 crypto_skcipher_decrypt(req));
1413 /* The real thing. */
1414 for (i = 0; i < 8; i++) {
1415 cycles_t start, end;
1417 start = get_cycles();
1419 ret = do_one_acipher_op(req,
1420 crypto_skcipher_encrypt(req));
1422 ret = do_one_acipher_op(req,
1423 crypto_skcipher_decrypt(req));
1429 cycles += end - start;
1434 pr_cont("1 operation in %lu cycles (%d bytes)\n",
1435 (cycles + 4) / 8, blen);
1440 static void test_skcipher_speed(const char *algo, int enc, unsigned int secs,
1441 struct cipher_speed_template *template,
1442 unsigned int tcount, u8 *keysize, bool async)
1444 unsigned int ret, i, j, k, iv_len;
1445 struct crypto_wait wait;
1448 struct skcipher_request *req;
1449 struct crypto_skcipher *tfm;
1458 crypto_init_wait(&wait);
1460 tfm = crypto_alloc_skcipher(algo, 0, async ? 0 : CRYPTO_ALG_ASYNC);
1463 pr_err("failed to load transform for %s: %ld\n", algo,
1468 pr_info("\ntesting speed of async %s (%s) %s\n", algo,
1469 get_driver_name(crypto_skcipher, tfm), e);
1471 req = skcipher_request_alloc(tfm, GFP_KERNEL);
1473 pr_err("tcrypt: skcipher: Failed to allocate request for %s\n",
1478 skcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
1479 crypto_req_done, &wait);
1483 b_size = block_sizes;
1486 struct scatterlist sg[TVMEMSIZE];
1488 if ((*keysize + *b_size) > TVMEMSIZE * PAGE_SIZE) {
1489 pr_err("template (%u) too big for "
1490 "tvmem (%lu)\n", *keysize + *b_size,
1491 TVMEMSIZE * PAGE_SIZE);
1495 pr_info("test %u (%d bit key, %d byte blocks): ", i,
1496 *keysize * 8, *b_size);
1498 memset(tvmem[0], 0xff, PAGE_SIZE);
1500 /* set key, plain text and IV */
1502 for (j = 0; j < tcount; j++) {
1503 if (template[j].klen == *keysize) {
1504 key = template[j].key;
1509 crypto_skcipher_clear_flags(tfm, ~0);
1511 ret = crypto_skcipher_setkey(tfm, key, *keysize);
1513 pr_err("setkey() failed flags=%x\n",
1514 crypto_skcipher_get_flags(tfm));
1518 k = *keysize + *b_size;
1519 sg_init_table(sg, DIV_ROUND_UP(k, PAGE_SIZE));
1521 if (k > PAGE_SIZE) {
1522 sg_set_buf(sg, tvmem[0] + *keysize,
1523 PAGE_SIZE - *keysize);
1526 while (k > PAGE_SIZE) {
1527 sg_set_buf(sg + j, tvmem[j], PAGE_SIZE);
1528 memset(tvmem[j], 0xff, PAGE_SIZE);
1532 sg_set_buf(sg + j, tvmem[j], k);
1533 memset(tvmem[j], 0xff, k);
1535 sg_set_buf(sg, tvmem[0] + *keysize, *b_size);
1538 iv_len = crypto_skcipher_ivsize(tfm);
1540 memset(&iv, 0xff, iv_len);
1542 skcipher_request_set_crypt(req, sg, sg, *b_size, iv);
1545 ret = test_acipher_jiffies(req, enc,
1548 ret = test_acipher_cycles(req, enc,
1552 pr_err("%s() failed flags=%x\n", e,
1553 crypto_skcipher_get_flags(tfm));
1563 skcipher_request_free(req);
1565 crypto_free_skcipher(tfm);
1568 static void test_acipher_speed(const char *algo, int enc, unsigned int secs,
1569 struct cipher_speed_template *template,
1570 unsigned int tcount, u8 *keysize)
1572 return test_skcipher_speed(algo, enc, secs, template, tcount, keysize,
1576 static void test_cipher_speed(const char *algo, int enc, unsigned int secs,
1577 struct cipher_speed_template *template,
1578 unsigned int tcount, u8 *keysize)
1580 return test_skcipher_speed(algo, enc, secs, template, tcount, keysize,
1584 static void test_available(void)
1586 char **name = check;
1589 printk("alg %s ", *name);
1590 printk(crypto_has_alg(*name, 0, 0) ?
1591 "found\n" : "not found\n");
1596 static inline int tcrypt_test(const char *alg)
1600 pr_debug("testing %s\n", alg);
1602 ret = alg_test(alg, alg, 0, 0);
1603 /* non-fips algs return -EINVAL in fips mode */
1604 if (fips_enabled && ret == -EINVAL)
1609 static int do_test(const char *alg, u32 type, u32 mask, int m)
1617 if (!crypto_has_alg(alg, type,
1618 mask ?: CRYPTO_ALG_TYPE_MASK))
1623 for (i = 1; i < 200; i++)
1624 ret += do_test(NULL, 0, 0, i);
1628 ret += tcrypt_test("md5");
1632 ret += tcrypt_test("sha1");
1636 ret += tcrypt_test("ecb(des)");
1637 ret += tcrypt_test("cbc(des)");
1638 ret += tcrypt_test("ctr(des)");
1642 ret += tcrypt_test("ecb(des3_ede)");
1643 ret += tcrypt_test("cbc(des3_ede)");
1644 ret += tcrypt_test("ctr(des3_ede)");
1648 ret += tcrypt_test("md4");
1652 ret += tcrypt_test("sha256");
1656 ret += tcrypt_test("ecb(blowfish)");
1657 ret += tcrypt_test("cbc(blowfish)");
1658 ret += tcrypt_test("ctr(blowfish)");
1662 ret += tcrypt_test("ecb(twofish)");
1663 ret += tcrypt_test("cbc(twofish)");
1664 ret += tcrypt_test("ctr(twofish)");
1665 ret += tcrypt_test("lrw(twofish)");
1666 ret += tcrypt_test("xts(twofish)");
1670 ret += tcrypt_test("ecb(serpent)");
1671 ret += tcrypt_test("cbc(serpent)");
1672 ret += tcrypt_test("ctr(serpent)");
1673 ret += tcrypt_test("lrw(serpent)");
1674 ret += tcrypt_test("xts(serpent)");
1678 ret += tcrypt_test("ecb(aes)");
1679 ret += tcrypt_test("cbc(aes)");
1680 ret += tcrypt_test("lrw(aes)");
1681 ret += tcrypt_test("xts(aes)");
1682 ret += tcrypt_test("ctr(aes)");
1683 ret += tcrypt_test("rfc3686(ctr(aes))");
1687 ret += tcrypt_test("sha384");
1691 ret += tcrypt_test("sha512");
1695 ret += tcrypt_test("deflate");
1699 ret += tcrypt_test("ecb(cast5)");
1700 ret += tcrypt_test("cbc(cast5)");
1701 ret += tcrypt_test("ctr(cast5)");
1705 ret += tcrypt_test("ecb(cast6)");
1706 ret += tcrypt_test("cbc(cast6)");
1707 ret += tcrypt_test("ctr(cast6)");
1708 ret += tcrypt_test("lrw(cast6)");
1709 ret += tcrypt_test("xts(cast6)");
1713 ret += tcrypt_test("ecb(arc4)");
1717 ret += tcrypt_test("michael_mic");
1721 ret += tcrypt_test("crc32c");
1725 ret += tcrypt_test("ecb(tea)");
1729 ret += tcrypt_test("ecb(xtea)");
1733 ret += tcrypt_test("ecb(khazad)");
1737 ret += tcrypt_test("wp512");
1741 ret += tcrypt_test("wp384");
1745 ret += tcrypt_test("wp256");
1749 ret += tcrypt_test("ecb(tnepres)");
1753 ret += tcrypt_test("ecb(anubis)");
1754 ret += tcrypt_test("cbc(anubis)");
1758 ret += tcrypt_test("tgr192");
1762 ret += tcrypt_test("tgr160");
1766 ret += tcrypt_test("tgr128");
1770 ret += tcrypt_test("ecb(xeta)");
1774 ret += tcrypt_test("pcbc(fcrypt)");
1778 ret += tcrypt_test("ecb(camellia)");
1779 ret += tcrypt_test("cbc(camellia)");
1780 ret += tcrypt_test("ctr(camellia)");
1781 ret += tcrypt_test("lrw(camellia)");
1782 ret += tcrypt_test("xts(camellia)");
1786 ret += tcrypt_test("sha224");
1790 ret += tcrypt_test("salsa20");
1794 ret += tcrypt_test("gcm(aes)");
1798 ret += tcrypt_test("lzo");
1802 ret += tcrypt_test("ccm(aes)");
1806 ret += tcrypt_test("cts(cbc(aes))");
1810 ret += tcrypt_test("rmd128");
1814 ret += tcrypt_test("rmd160");
1818 ret += tcrypt_test("rmd256");
1822 ret += tcrypt_test("rmd320");
1826 ret += tcrypt_test("ecb(seed)");
1830 ret += tcrypt_test("zlib");
1834 ret += tcrypt_test("rfc4309(ccm(aes))");
1838 ret += tcrypt_test("ghash");
1842 ret += tcrypt_test("crct10dif");
1846 ret += tcrypt_test("sha3-224");
1850 ret += tcrypt_test("sha3-256");
1854 ret += tcrypt_test("sha3-384");
1858 ret += tcrypt_test("sha3-512");
1862 ret += tcrypt_test("sm3");
1866 ret += tcrypt_test("hmac(md5)");
1870 ret += tcrypt_test("hmac(sha1)");
1874 ret += tcrypt_test("hmac(sha256)");
1878 ret += tcrypt_test("hmac(sha384)");
1882 ret += tcrypt_test("hmac(sha512)");
1886 ret += tcrypt_test("hmac(sha224)");
1890 ret += tcrypt_test("xcbc(aes)");
1894 ret += tcrypt_test("hmac(rmd128)");
1898 ret += tcrypt_test("hmac(rmd160)");
1902 ret += tcrypt_test("vmac(aes)");
1906 ret += tcrypt_test("hmac(crc32)");
1910 ret += tcrypt_test("hmac(sha3-224)");
1914 ret += tcrypt_test("hmac(sha3-256)");
1918 ret += tcrypt_test("hmac(sha3-384)");
1922 ret += tcrypt_test("hmac(sha3-512)");
1926 ret += tcrypt_test("ansi_cprng");
1930 ret += tcrypt_test("rfc4106(gcm(aes))");
1934 ret += tcrypt_test("rfc4543(gcm(aes))");
1938 ret += tcrypt_test("cmac(aes)");
1942 ret += tcrypt_test("cmac(des3_ede)");
1946 ret += tcrypt_test("authenc(hmac(sha1),cbc(aes))");
1950 ret += tcrypt_test("authenc(hmac(md5),ecb(cipher_null))");
1954 ret += tcrypt_test("authenc(hmac(sha1),ecb(cipher_null))");
1957 ret += tcrypt_test("authenc(hmac(sha1),cbc(des))");
1960 ret += tcrypt_test("authenc(hmac(sha1),cbc(des3_ede))");
1963 ret += tcrypt_test("authenc(hmac(sha224),cbc(des))");
1966 ret += tcrypt_test("authenc(hmac(sha224),cbc(des3_ede))");
1969 ret += tcrypt_test("authenc(hmac(sha256),cbc(des))");
1972 ret += tcrypt_test("authenc(hmac(sha256),cbc(des3_ede))");
1975 ret += tcrypt_test("authenc(hmac(sha384),cbc(des))");
1978 ret += tcrypt_test("authenc(hmac(sha384),cbc(des3_ede))");
1981 ret += tcrypt_test("authenc(hmac(sha512),cbc(des))");
1984 ret += tcrypt_test("authenc(hmac(sha512),cbc(des3_ede))");
1987 test_cipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
1988 speed_template_16_24_32);
1989 test_cipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0,
1990 speed_template_16_24_32);
1991 test_cipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0,
1992 speed_template_16_24_32);
1993 test_cipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0,
1994 speed_template_16_24_32);
1995 test_cipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0,
1996 speed_template_32_40_48);
1997 test_cipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0,
1998 speed_template_32_40_48);
1999 test_cipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0,
2000 speed_template_32_64);
2001 test_cipher_speed("xts(aes)", DECRYPT, sec, NULL, 0,
2002 speed_template_32_64);
2003 test_cipher_speed("cts(cbc(aes))", ENCRYPT, sec, NULL, 0,
2004 speed_template_16_24_32);
2005 test_cipher_speed("cts(cbc(aes))", DECRYPT, sec, NULL, 0,
2006 speed_template_16_24_32);
2007 test_cipher_speed("ctr(aes)", ENCRYPT, sec, NULL, 0,
2008 speed_template_16_24_32);
2009 test_cipher_speed("ctr(aes)", DECRYPT, sec, NULL, 0,
2010 speed_template_16_24_32);
2014 test_cipher_speed("ecb(des3_ede)", ENCRYPT, sec,
2015 des3_speed_template, DES3_SPEED_VECTORS,
2017 test_cipher_speed("ecb(des3_ede)", DECRYPT, sec,
2018 des3_speed_template, DES3_SPEED_VECTORS,
2020 test_cipher_speed("cbc(des3_ede)", ENCRYPT, sec,
2021 des3_speed_template, DES3_SPEED_VECTORS,
2023 test_cipher_speed("cbc(des3_ede)", DECRYPT, sec,
2024 des3_speed_template, DES3_SPEED_VECTORS,
2026 test_cipher_speed("ctr(des3_ede)", ENCRYPT, sec,
2027 des3_speed_template, DES3_SPEED_VECTORS,
2029 test_cipher_speed("ctr(des3_ede)", DECRYPT, sec,
2030 des3_speed_template, DES3_SPEED_VECTORS,
2035 test_cipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0,
2036 speed_template_16_24_32);
2037 test_cipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0,
2038 speed_template_16_24_32);
2039 test_cipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0,
2040 speed_template_16_24_32);
2041 test_cipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0,
2042 speed_template_16_24_32);
2043 test_cipher_speed("ctr(twofish)", ENCRYPT, sec, NULL, 0,
2044 speed_template_16_24_32);
2045 test_cipher_speed("ctr(twofish)", DECRYPT, sec, NULL, 0,
2046 speed_template_16_24_32);
2047 test_cipher_speed("lrw(twofish)", ENCRYPT, sec, NULL, 0,
2048 speed_template_32_40_48);
2049 test_cipher_speed("lrw(twofish)", DECRYPT, sec, NULL, 0,
2050 speed_template_32_40_48);
2051 test_cipher_speed("xts(twofish)", ENCRYPT, sec, NULL, 0,
2052 speed_template_32_48_64);
2053 test_cipher_speed("xts(twofish)", DECRYPT, sec, NULL, 0,
2054 speed_template_32_48_64);
2058 test_cipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0,
2059 speed_template_8_32);
2060 test_cipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0,
2061 speed_template_8_32);
2062 test_cipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0,
2063 speed_template_8_32);
2064 test_cipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0,
2065 speed_template_8_32);
2066 test_cipher_speed("ctr(blowfish)", ENCRYPT, sec, NULL, 0,
2067 speed_template_8_32);
2068 test_cipher_speed("ctr(blowfish)", DECRYPT, sec, NULL, 0,
2069 speed_template_8_32);
2073 test_cipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0,
2075 test_cipher_speed("ecb(des)", DECRYPT, sec, NULL, 0,
2077 test_cipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0,
2079 test_cipher_speed("cbc(des)", DECRYPT, sec, NULL, 0,
2084 test_cipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0,
2085 speed_template_16_24_32);
2086 test_cipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0,
2087 speed_template_16_24_32);
2088 test_cipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0,
2089 speed_template_16_24_32);
2090 test_cipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
2091 speed_template_16_24_32);
2092 test_cipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0,
2093 speed_template_16_24_32);
2094 test_cipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0,
2095 speed_template_16_24_32);
2096 test_cipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0,
2097 speed_template_32_40_48);
2098 test_cipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0,
2099 speed_template_32_40_48);
2100 test_cipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0,
2101 speed_template_32_48_64);
2102 test_cipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0,
2103 speed_template_32_48_64);
2107 test_cipher_speed("salsa20", ENCRYPT, sec, NULL, 0,
2108 speed_template_16_32);
2112 test_cipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0,
2113 speed_template_16_32);
2114 test_cipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0,
2115 speed_template_16_32);
2116 test_cipher_speed("cbc(serpent)", ENCRYPT, sec, NULL, 0,
2117 speed_template_16_32);
2118 test_cipher_speed("cbc(serpent)", DECRYPT, sec, NULL, 0,
2119 speed_template_16_32);
2120 test_cipher_speed("ctr(serpent)", ENCRYPT, sec, NULL, 0,
2121 speed_template_16_32);
2122 test_cipher_speed("ctr(serpent)", DECRYPT, sec, NULL, 0,
2123 speed_template_16_32);
2124 test_cipher_speed("lrw(serpent)", ENCRYPT, sec, NULL, 0,
2125 speed_template_32_48);
2126 test_cipher_speed("lrw(serpent)", DECRYPT, sec, NULL, 0,
2127 speed_template_32_48);
2128 test_cipher_speed("xts(serpent)", ENCRYPT, sec, NULL, 0,
2129 speed_template_32_64);
2130 test_cipher_speed("xts(serpent)", DECRYPT, sec, NULL, 0,
2131 speed_template_32_64);
2135 test_cipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0,
2140 test_cipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0,
2141 speed_template_8_16);
2142 test_cipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0,
2143 speed_template_8_16);
2144 test_cipher_speed("cbc(cast5)", ENCRYPT, sec, NULL, 0,
2145 speed_template_8_16);
2146 test_cipher_speed("cbc(cast5)", DECRYPT, sec, NULL, 0,
2147 speed_template_8_16);
2148 test_cipher_speed("ctr(cast5)", ENCRYPT, sec, NULL, 0,
2149 speed_template_8_16);
2150 test_cipher_speed("ctr(cast5)", DECRYPT, sec, NULL, 0,
2151 speed_template_8_16);
2155 test_cipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0,
2156 speed_template_16_32);
2157 test_cipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0,
2158 speed_template_16_32);
2159 test_cipher_speed("cbc(cast6)", ENCRYPT, sec, NULL, 0,
2160 speed_template_16_32);
2161 test_cipher_speed("cbc(cast6)", DECRYPT, sec, NULL, 0,
2162 speed_template_16_32);
2163 test_cipher_speed("ctr(cast6)", ENCRYPT, sec, NULL, 0,
2164 speed_template_16_32);
2165 test_cipher_speed("ctr(cast6)", DECRYPT, sec, NULL, 0,
2166 speed_template_16_32);
2167 test_cipher_speed("lrw(cast6)", ENCRYPT, sec, NULL, 0,
2168 speed_template_32_48);
2169 test_cipher_speed("lrw(cast6)", DECRYPT, sec, NULL, 0,
2170 speed_template_32_48);
2171 test_cipher_speed("xts(cast6)", ENCRYPT, sec, NULL, 0,
2172 speed_template_32_64);
2173 test_cipher_speed("xts(cast6)", DECRYPT, sec, NULL, 0,
2174 speed_template_32_64);
2178 test_aead_speed("rfc4106(gcm(aes))", ENCRYPT, sec,
2179 NULL, 0, 16, 16, aead_speed_template_20);
2180 test_aead_speed("gcm(aes)", ENCRYPT, sec,
2181 NULL, 0, 16, 8, speed_template_16_24_32);
2182 test_aead_speed("rfc4106(gcm(aes))", DECRYPT, sec,
2183 NULL, 0, 16, 16, aead_speed_template_20);
2184 test_aead_speed("gcm(aes)", DECRYPT, sec,
2185 NULL, 0, 16, 8, speed_template_16_24_32);
2189 test_aead_speed("rfc4309(ccm(aes))", ENCRYPT, sec,
2190 NULL, 0, 16, 16, aead_speed_template_19);
2191 test_aead_speed("rfc4309(ccm(aes))", DECRYPT, sec,
2192 NULL, 0, 16, 16, aead_speed_template_19);
2196 test_aead_speed("rfc7539esp(chacha20,poly1305)", ENCRYPT, sec,
2197 NULL, 0, 16, 8, aead_speed_template_36);
2198 test_aead_speed("rfc7539esp(chacha20,poly1305)", DECRYPT, sec,
2199 NULL, 0, 16, 8, aead_speed_template_36);
2203 test_cipher_speed("chacha20", ENCRYPT, sec, NULL, 0,
2208 test_mb_aead_speed("rfc4106(gcm(aes))", ENCRYPT, sec, NULL,
2209 0, 16, 16, aead_speed_template_20, num_mb);
2210 test_mb_aead_speed("gcm(aes)", ENCRYPT, sec, NULL, 0, 16, 8,
2211 speed_template_16_24_32, num_mb);
2212 test_mb_aead_speed("rfc4106(gcm(aes))", DECRYPT, sec, NULL,
2213 0, 16, 16, aead_speed_template_20, num_mb);
2214 test_mb_aead_speed("gcm(aes)", DECRYPT, sec, NULL, 0, 16, 8,
2215 speed_template_16_24_32, num_mb);
2219 test_mb_aead_speed("rfc4309(ccm(aes))", ENCRYPT, sec, NULL, 0,
2220 16, 16, aead_speed_template_19, num_mb);
2221 test_mb_aead_speed("rfc4309(ccm(aes))", DECRYPT, sec, NULL, 0,
2222 16, 16, aead_speed_template_19, num_mb);
2226 test_mb_aead_speed("rfc7539esp(chacha20,poly1305)", ENCRYPT,
2227 sec, NULL, 0, 16, 8, aead_speed_template_36,
2229 test_mb_aead_speed("rfc7539esp(chacha20,poly1305)", DECRYPT,
2230 sec, NULL, 0, 16, 8, aead_speed_template_36,
2236 test_hash_speed(alg, sec, generic_hash_speed_template);
2241 test_hash_speed("md4", sec, generic_hash_speed_template);
2242 if (mode > 300 && mode < 400) break;
2245 test_hash_speed("md5", sec, generic_hash_speed_template);
2246 if (mode > 300 && mode < 400) break;
2249 test_hash_speed("sha1", sec, generic_hash_speed_template);
2250 if (mode > 300 && mode < 400) break;
2253 test_hash_speed("sha256", sec, generic_hash_speed_template);
2254 if (mode > 300 && mode < 400) break;
2257 test_hash_speed("sha384", sec, generic_hash_speed_template);
2258 if (mode > 300 && mode < 400) break;
2261 test_hash_speed("sha512", sec, generic_hash_speed_template);
2262 if (mode > 300 && mode < 400) break;
2265 test_hash_speed("wp256", sec, generic_hash_speed_template);
2266 if (mode > 300 && mode < 400) break;
2269 test_hash_speed("wp384", sec, generic_hash_speed_template);
2270 if (mode > 300 && mode < 400) break;
2273 test_hash_speed("wp512", sec, generic_hash_speed_template);
2274 if (mode > 300 && mode < 400) break;
2277 test_hash_speed("tgr128", sec, generic_hash_speed_template);
2278 if (mode > 300 && mode < 400) break;
2281 test_hash_speed("tgr160", sec, generic_hash_speed_template);
2282 if (mode > 300 && mode < 400) break;
2285 test_hash_speed("tgr192", sec, generic_hash_speed_template);
2286 if (mode > 300 && mode < 400) break;
2289 test_hash_speed("sha224", sec, generic_hash_speed_template);
2290 if (mode > 300 && mode < 400) break;
2293 test_hash_speed("rmd128", sec, generic_hash_speed_template);
2294 if (mode > 300 && mode < 400) break;
2297 test_hash_speed("rmd160", sec, generic_hash_speed_template);
2298 if (mode > 300 && mode < 400) break;
2301 test_hash_speed("rmd256", sec, generic_hash_speed_template);
2302 if (mode > 300 && mode < 400) break;
2305 test_hash_speed("rmd320", sec, generic_hash_speed_template);
2306 if (mode > 300 && mode < 400) break;
2309 test_hash_speed("ghash-generic", sec, hash_speed_template_16);
2310 if (mode > 300 && mode < 400) break;
2313 test_hash_speed("crc32c", sec, generic_hash_speed_template);
2314 if (mode > 300 && mode < 400) break;
2317 test_hash_speed("crct10dif", sec, generic_hash_speed_template);
2318 if (mode > 300 && mode < 400) break;
2321 test_hash_speed("poly1305", sec, poly1305_speed_template);
2322 if (mode > 300 && mode < 400) break;
2325 test_hash_speed("sha3-224", sec, generic_hash_speed_template);
2326 if (mode > 300 && mode < 400) break;
2329 test_hash_speed("sha3-256", sec, generic_hash_speed_template);
2330 if (mode > 300 && mode < 400) break;
2333 test_hash_speed("sha3-384", sec, generic_hash_speed_template);
2334 if (mode > 300 && mode < 400) break;
2337 test_hash_speed("sha3-512", sec, generic_hash_speed_template);
2338 if (mode > 300 && mode < 400) break;
2341 test_hash_speed("sm3", sec, generic_hash_speed_template);
2342 if (mode > 300 && mode < 400) break;
2349 test_ahash_speed(alg, sec, generic_hash_speed_template);
2354 test_ahash_speed("md4", sec, generic_hash_speed_template);
2355 if (mode > 400 && mode < 500) break;
2358 test_ahash_speed("md5", sec, generic_hash_speed_template);
2359 if (mode > 400 && mode < 500) break;
2362 test_ahash_speed("sha1", sec, generic_hash_speed_template);
2363 if (mode > 400 && mode < 500) break;
2366 test_ahash_speed("sha256", sec, generic_hash_speed_template);
2367 if (mode > 400 && mode < 500) break;
2370 test_ahash_speed("sha384", sec, generic_hash_speed_template);
2371 if (mode > 400 && mode < 500) break;
2374 test_ahash_speed("sha512", sec, generic_hash_speed_template);
2375 if (mode > 400 && mode < 500) break;
2378 test_ahash_speed("wp256", sec, generic_hash_speed_template);
2379 if (mode > 400 && mode < 500) break;
2382 test_ahash_speed("wp384", sec, generic_hash_speed_template);
2383 if (mode > 400 && mode < 500) break;
2386 test_ahash_speed("wp512", sec, generic_hash_speed_template);
2387 if (mode > 400 && mode < 500) break;
2390 test_ahash_speed("tgr128", sec, generic_hash_speed_template);
2391 if (mode > 400 && mode < 500) break;
2394 test_ahash_speed("tgr160", sec, generic_hash_speed_template);
2395 if (mode > 400 && mode < 500) break;
2398 test_ahash_speed("tgr192", sec, generic_hash_speed_template);
2399 if (mode > 400 && mode < 500) break;
2402 test_ahash_speed("sha224", sec, generic_hash_speed_template);
2403 if (mode > 400 && mode < 500) break;
2406 test_ahash_speed("rmd128", sec, generic_hash_speed_template);
2407 if (mode > 400 && mode < 500) break;
2410 test_ahash_speed("rmd160", sec, generic_hash_speed_template);
2411 if (mode > 400 && mode < 500) break;
2414 test_ahash_speed("rmd256", sec, generic_hash_speed_template);
2415 if (mode > 400 && mode < 500) break;
2418 test_ahash_speed("rmd320", sec, generic_hash_speed_template);
2419 if (mode > 400 && mode < 500) break;
2422 test_ahash_speed("sha3-224", sec, generic_hash_speed_template);
2423 if (mode > 400 && mode < 500) break;
2426 test_ahash_speed("sha3-256", sec, generic_hash_speed_template);
2427 if (mode > 400 && mode < 500) break;
2430 test_ahash_speed("sha3-384", sec, generic_hash_speed_template);
2431 if (mode > 400 && mode < 500) break;
2434 test_ahash_speed("sha3-512", sec, generic_hash_speed_template);
2435 if (mode > 400 && mode < 500) break;
2438 test_mb_ahash_speed("sha1", sec, generic_hash_speed_template,
2440 if (mode > 400 && mode < 500) break;
2443 test_mb_ahash_speed("sha256", sec, generic_hash_speed_template,
2445 if (mode > 400 && mode < 500) break;
2448 test_mb_ahash_speed("sha512", sec, generic_hash_speed_template,
2450 if (mode > 400 && mode < 500) break;
2453 test_mb_ahash_speed("sm3", sec, generic_hash_speed_template,
2455 if (mode > 400 && mode < 500) break;
2461 test_acipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
2462 speed_template_16_24_32);
2463 test_acipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0,
2464 speed_template_16_24_32);
2465 test_acipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0,
2466 speed_template_16_24_32);
2467 test_acipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0,
2468 speed_template_16_24_32);
2469 test_acipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0,
2470 speed_template_32_40_48);
2471 test_acipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0,
2472 speed_template_32_40_48);
2473 test_acipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0,
2474 speed_template_32_64);
2475 test_acipher_speed("xts(aes)", DECRYPT, sec, NULL, 0,
2476 speed_template_32_64);
2477 test_acipher_speed("cts(cbc(aes))", ENCRYPT, sec, NULL, 0,
2478 speed_template_16_24_32);
2479 test_acipher_speed("cts(cbc(aes))", DECRYPT, sec, NULL, 0,
2480 speed_template_16_24_32);
2481 test_acipher_speed("ctr(aes)", ENCRYPT, sec, NULL, 0,
2482 speed_template_16_24_32);
2483 test_acipher_speed("ctr(aes)", DECRYPT, sec, NULL, 0,
2484 speed_template_16_24_32);
2485 test_acipher_speed("cfb(aes)", ENCRYPT, sec, NULL, 0,
2486 speed_template_16_24_32);
2487 test_acipher_speed("cfb(aes)", DECRYPT, sec, NULL, 0,
2488 speed_template_16_24_32);
2489 test_acipher_speed("ofb(aes)", ENCRYPT, sec, NULL, 0,
2490 speed_template_16_24_32);
2491 test_acipher_speed("ofb(aes)", DECRYPT, sec, NULL, 0,
2492 speed_template_16_24_32);
2493 test_acipher_speed("rfc3686(ctr(aes))", ENCRYPT, sec, NULL, 0,
2494 speed_template_20_28_36);
2495 test_acipher_speed("rfc3686(ctr(aes))", DECRYPT, sec, NULL, 0,
2496 speed_template_20_28_36);
2500 test_acipher_speed("ecb(des3_ede)", ENCRYPT, sec,
2501 des3_speed_template, DES3_SPEED_VECTORS,
2503 test_acipher_speed("ecb(des3_ede)", DECRYPT, sec,
2504 des3_speed_template, DES3_SPEED_VECTORS,
2506 test_acipher_speed("cbc(des3_ede)", ENCRYPT, sec,
2507 des3_speed_template, DES3_SPEED_VECTORS,
2509 test_acipher_speed("cbc(des3_ede)", DECRYPT, sec,
2510 des3_speed_template, DES3_SPEED_VECTORS,
2512 test_acipher_speed("cfb(des3_ede)", ENCRYPT, sec,
2513 des3_speed_template, DES3_SPEED_VECTORS,
2515 test_acipher_speed("cfb(des3_ede)", DECRYPT, sec,
2516 des3_speed_template, DES3_SPEED_VECTORS,
2518 test_acipher_speed("ofb(des3_ede)", ENCRYPT, sec,
2519 des3_speed_template, DES3_SPEED_VECTORS,
2521 test_acipher_speed("ofb(des3_ede)", DECRYPT, sec,
2522 des3_speed_template, DES3_SPEED_VECTORS,
2527 test_acipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0,
2529 test_acipher_speed("ecb(des)", DECRYPT, sec, NULL, 0,
2531 test_acipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0,
2533 test_acipher_speed("cbc(des)", DECRYPT, sec, NULL, 0,
2535 test_acipher_speed("cfb(des)", ENCRYPT, sec, NULL, 0,
2537 test_acipher_speed("cfb(des)", DECRYPT, sec, NULL, 0,
2539 test_acipher_speed("ofb(des)", ENCRYPT, sec, NULL, 0,
2541 test_acipher_speed("ofb(des)", DECRYPT, sec, NULL, 0,
2546 test_acipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0,
2547 speed_template_16_32);
2548 test_acipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0,
2549 speed_template_16_32);
2550 test_acipher_speed("cbc(serpent)", ENCRYPT, sec, NULL, 0,
2551 speed_template_16_32);
2552 test_acipher_speed("cbc(serpent)", DECRYPT, sec, NULL, 0,
2553 speed_template_16_32);
2554 test_acipher_speed("ctr(serpent)", ENCRYPT, sec, NULL, 0,
2555 speed_template_16_32);
2556 test_acipher_speed("ctr(serpent)", DECRYPT, sec, NULL, 0,
2557 speed_template_16_32);
2558 test_acipher_speed("lrw(serpent)", ENCRYPT, sec, NULL, 0,
2559 speed_template_32_48);
2560 test_acipher_speed("lrw(serpent)", DECRYPT, sec, NULL, 0,
2561 speed_template_32_48);
2562 test_acipher_speed("xts(serpent)", ENCRYPT, sec, NULL, 0,
2563 speed_template_32_64);
2564 test_acipher_speed("xts(serpent)", DECRYPT, sec, NULL, 0,
2565 speed_template_32_64);
2569 test_acipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0,
2570 speed_template_16_24_32);
2571 test_acipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0,
2572 speed_template_16_24_32);
2573 test_acipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0,
2574 speed_template_16_24_32);
2575 test_acipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0,
2576 speed_template_16_24_32);
2577 test_acipher_speed("ctr(twofish)", ENCRYPT, sec, NULL, 0,
2578 speed_template_16_24_32);
2579 test_acipher_speed("ctr(twofish)", DECRYPT, sec, NULL, 0,
2580 speed_template_16_24_32);
2581 test_acipher_speed("lrw(twofish)", ENCRYPT, sec, NULL, 0,
2582 speed_template_32_40_48);
2583 test_acipher_speed("lrw(twofish)", DECRYPT, sec, NULL, 0,
2584 speed_template_32_40_48);
2585 test_acipher_speed("xts(twofish)", ENCRYPT, sec, NULL, 0,
2586 speed_template_32_48_64);
2587 test_acipher_speed("xts(twofish)", DECRYPT, sec, NULL, 0,
2588 speed_template_32_48_64);
2592 test_acipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0,
2597 test_acipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0,
2598 speed_template_8_16);
2599 test_acipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0,
2600 speed_template_8_16);
2601 test_acipher_speed("cbc(cast5)", ENCRYPT, sec, NULL, 0,
2602 speed_template_8_16);
2603 test_acipher_speed("cbc(cast5)", DECRYPT, sec, NULL, 0,
2604 speed_template_8_16);
2605 test_acipher_speed("ctr(cast5)", ENCRYPT, sec, NULL, 0,
2606 speed_template_8_16);
2607 test_acipher_speed("ctr(cast5)", DECRYPT, sec, NULL, 0,
2608 speed_template_8_16);
2612 test_acipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0,
2613 speed_template_16_32);
2614 test_acipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0,
2615 speed_template_16_32);
2616 test_acipher_speed("cbc(cast6)", ENCRYPT, sec, NULL, 0,
2617 speed_template_16_32);
2618 test_acipher_speed("cbc(cast6)", DECRYPT, sec, NULL, 0,
2619 speed_template_16_32);
2620 test_acipher_speed("ctr(cast6)", ENCRYPT, sec, NULL, 0,
2621 speed_template_16_32);
2622 test_acipher_speed("ctr(cast6)", DECRYPT, sec, NULL, 0,
2623 speed_template_16_32);
2624 test_acipher_speed("lrw(cast6)", ENCRYPT, sec, NULL, 0,
2625 speed_template_32_48);
2626 test_acipher_speed("lrw(cast6)", DECRYPT, sec, NULL, 0,
2627 speed_template_32_48);
2628 test_acipher_speed("xts(cast6)", ENCRYPT, sec, NULL, 0,
2629 speed_template_32_64);
2630 test_acipher_speed("xts(cast6)", DECRYPT, sec, NULL, 0,
2631 speed_template_32_64);
2635 test_acipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0,
2636 speed_template_16_32);
2637 test_acipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0,
2638 speed_template_16_32);
2639 test_acipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0,
2640 speed_template_16_32);
2641 test_acipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
2642 speed_template_16_32);
2643 test_acipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0,
2644 speed_template_16_32);
2645 test_acipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0,
2646 speed_template_16_32);
2647 test_acipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0,
2648 speed_template_32_48);
2649 test_acipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0,
2650 speed_template_32_48);
2651 test_acipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0,
2652 speed_template_32_64);
2653 test_acipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0,
2654 speed_template_32_64);
2658 test_acipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0,
2659 speed_template_8_32);
2660 test_acipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0,
2661 speed_template_8_32);
2662 test_acipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0,
2663 speed_template_8_32);
2664 test_acipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0,
2665 speed_template_8_32);
2666 test_acipher_speed("ctr(blowfish)", ENCRYPT, sec, NULL, 0,
2667 speed_template_8_32);
2668 test_acipher_speed("ctr(blowfish)", DECRYPT, sec, NULL, 0,
2669 speed_template_8_32);
2673 test_mb_skcipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
2674 speed_template_16_24_32, num_mb);
2675 test_mb_skcipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0,
2676 speed_template_16_24_32, num_mb);
2677 test_mb_skcipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0,
2678 speed_template_16_24_32, num_mb);
2679 test_mb_skcipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0,
2680 speed_template_16_24_32, num_mb);
2681 test_mb_skcipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0,
2682 speed_template_32_40_48, num_mb);
2683 test_mb_skcipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0,
2684 speed_template_32_40_48, num_mb);
2685 test_mb_skcipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0,
2686 speed_template_32_64, num_mb);
2687 test_mb_skcipher_speed("xts(aes)", DECRYPT, sec, NULL, 0,
2688 speed_template_32_64, num_mb);
2689 test_mb_skcipher_speed("cts(cbc(aes))", ENCRYPT, sec, NULL, 0,
2690 speed_template_16_24_32, num_mb);
2691 test_mb_skcipher_speed("cts(cbc(aes))", DECRYPT, sec, NULL, 0,
2692 speed_template_16_24_32, num_mb);
2693 test_mb_skcipher_speed("ctr(aes)", ENCRYPT, sec, NULL, 0,
2694 speed_template_16_24_32, num_mb);
2695 test_mb_skcipher_speed("ctr(aes)", DECRYPT, sec, NULL, 0,
2696 speed_template_16_24_32, num_mb);
2697 test_mb_skcipher_speed("cfb(aes)", ENCRYPT, sec, NULL, 0,
2698 speed_template_16_24_32, num_mb);
2699 test_mb_skcipher_speed("cfb(aes)", DECRYPT, sec, NULL, 0,
2700 speed_template_16_24_32, num_mb);
2701 test_mb_skcipher_speed("ofb(aes)", ENCRYPT, sec, NULL, 0,
2702 speed_template_16_24_32, num_mb);
2703 test_mb_skcipher_speed("ofb(aes)", DECRYPT, sec, NULL, 0,
2704 speed_template_16_24_32, num_mb);
2705 test_mb_skcipher_speed("rfc3686(ctr(aes))", ENCRYPT, sec, NULL,
2706 0, speed_template_20_28_36, num_mb);
2707 test_mb_skcipher_speed("rfc3686(ctr(aes))", DECRYPT, sec, NULL,
2708 0, speed_template_20_28_36, num_mb);
2712 test_mb_skcipher_speed("ecb(des3_ede)", ENCRYPT, sec,
2713 des3_speed_template, DES3_SPEED_VECTORS,
2714 speed_template_24, num_mb);
2715 test_mb_skcipher_speed("ecb(des3_ede)", DECRYPT, sec,
2716 des3_speed_template, DES3_SPEED_VECTORS,
2717 speed_template_24, num_mb);
2718 test_mb_skcipher_speed("cbc(des3_ede)", ENCRYPT, sec,
2719 des3_speed_template, DES3_SPEED_VECTORS,
2720 speed_template_24, num_mb);
2721 test_mb_skcipher_speed("cbc(des3_ede)", DECRYPT, sec,
2722 des3_speed_template, DES3_SPEED_VECTORS,
2723 speed_template_24, num_mb);
2724 test_mb_skcipher_speed("cfb(des3_ede)", ENCRYPT, sec,
2725 des3_speed_template, DES3_SPEED_VECTORS,
2726 speed_template_24, num_mb);
2727 test_mb_skcipher_speed("cfb(des3_ede)", DECRYPT, sec,
2728 des3_speed_template, DES3_SPEED_VECTORS,
2729 speed_template_24, num_mb);
2730 test_mb_skcipher_speed("ofb(des3_ede)", ENCRYPT, sec,
2731 des3_speed_template, DES3_SPEED_VECTORS,
2732 speed_template_24, num_mb);
2733 test_mb_skcipher_speed("ofb(des3_ede)", DECRYPT, sec,
2734 des3_speed_template, DES3_SPEED_VECTORS,
2735 speed_template_24, num_mb);
2739 test_mb_skcipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0,
2740 speed_template_8, num_mb);
2741 test_mb_skcipher_speed("ecb(des)", DECRYPT, sec, NULL, 0,
2742 speed_template_8, num_mb);
2743 test_mb_skcipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0,
2744 speed_template_8, num_mb);
2745 test_mb_skcipher_speed("cbc(des)", DECRYPT, sec, NULL, 0,
2746 speed_template_8, num_mb);
2747 test_mb_skcipher_speed("cfb(des)", ENCRYPT, sec, NULL, 0,
2748 speed_template_8, num_mb);
2749 test_mb_skcipher_speed("cfb(des)", DECRYPT, sec, NULL, 0,
2750 speed_template_8, num_mb);
2751 test_mb_skcipher_speed("ofb(des)", ENCRYPT, sec, NULL, 0,
2752 speed_template_8, num_mb);
2753 test_mb_skcipher_speed("ofb(des)", DECRYPT, sec, NULL, 0,
2754 speed_template_8, num_mb);
2758 test_mb_skcipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0,
2759 speed_template_16_32, num_mb);
2760 test_mb_skcipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0,
2761 speed_template_16_32, num_mb);
2762 test_mb_skcipher_speed("cbc(serpent)", ENCRYPT, sec, NULL, 0,
2763 speed_template_16_32, num_mb);
2764 test_mb_skcipher_speed("cbc(serpent)", DECRYPT, sec, NULL, 0,
2765 speed_template_16_32, num_mb);
2766 test_mb_skcipher_speed("ctr(serpent)", ENCRYPT, sec, NULL, 0,
2767 speed_template_16_32, num_mb);
2768 test_mb_skcipher_speed("ctr(serpent)", DECRYPT, sec, NULL, 0,
2769 speed_template_16_32, num_mb);
2770 test_mb_skcipher_speed("lrw(serpent)", ENCRYPT, sec, NULL, 0,
2771 speed_template_32_48, num_mb);
2772 test_mb_skcipher_speed("lrw(serpent)", DECRYPT, sec, NULL, 0,
2773 speed_template_32_48, num_mb);
2774 test_mb_skcipher_speed("xts(serpent)", ENCRYPT, sec, NULL, 0,
2775 speed_template_32_64, num_mb);
2776 test_mb_skcipher_speed("xts(serpent)", DECRYPT, sec, NULL, 0,
2777 speed_template_32_64, num_mb);
2781 test_mb_skcipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0,
2782 speed_template_16_24_32, num_mb);
2783 test_mb_skcipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0,
2784 speed_template_16_24_32, num_mb);
2785 test_mb_skcipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0,
2786 speed_template_16_24_32, num_mb);
2787 test_mb_skcipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0,
2788 speed_template_16_24_32, num_mb);
2789 test_mb_skcipher_speed("ctr(twofish)", ENCRYPT, sec, NULL, 0,
2790 speed_template_16_24_32, num_mb);
2791 test_mb_skcipher_speed("ctr(twofish)", DECRYPT, sec, NULL, 0,
2792 speed_template_16_24_32, num_mb);
2793 test_mb_skcipher_speed("lrw(twofish)", ENCRYPT, sec, NULL, 0,
2794 speed_template_32_40_48, num_mb);
2795 test_mb_skcipher_speed("lrw(twofish)", DECRYPT, sec, NULL, 0,
2796 speed_template_32_40_48, num_mb);
2797 test_mb_skcipher_speed("xts(twofish)", ENCRYPT, sec, NULL, 0,
2798 speed_template_32_48_64, num_mb);
2799 test_mb_skcipher_speed("xts(twofish)", DECRYPT, sec, NULL, 0,
2800 speed_template_32_48_64, num_mb);
2804 test_mb_skcipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0,
2805 speed_template_8, num_mb);
2809 test_mb_skcipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0,
2810 speed_template_8_16, num_mb);
2811 test_mb_skcipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0,
2812 speed_template_8_16, num_mb);
2813 test_mb_skcipher_speed("cbc(cast5)", ENCRYPT, sec, NULL, 0,
2814 speed_template_8_16, num_mb);
2815 test_mb_skcipher_speed("cbc(cast5)", DECRYPT, sec, NULL, 0,
2816 speed_template_8_16, num_mb);
2817 test_mb_skcipher_speed("ctr(cast5)", ENCRYPT, sec, NULL, 0,
2818 speed_template_8_16, num_mb);
2819 test_mb_skcipher_speed("ctr(cast5)", DECRYPT, sec, NULL, 0,
2820 speed_template_8_16, num_mb);
2824 test_mb_skcipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0,
2825 speed_template_16_32, num_mb);
2826 test_mb_skcipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0,
2827 speed_template_16_32, num_mb);
2828 test_mb_skcipher_speed("cbc(cast6)", ENCRYPT, sec, NULL, 0,
2829 speed_template_16_32, num_mb);
2830 test_mb_skcipher_speed("cbc(cast6)", DECRYPT, sec, NULL, 0,
2831 speed_template_16_32, num_mb);
2832 test_mb_skcipher_speed("ctr(cast6)", ENCRYPT, sec, NULL, 0,
2833 speed_template_16_32, num_mb);
2834 test_mb_skcipher_speed("ctr(cast6)", DECRYPT, sec, NULL, 0,
2835 speed_template_16_32, num_mb);
2836 test_mb_skcipher_speed("lrw(cast6)", ENCRYPT, sec, NULL, 0,
2837 speed_template_32_48, num_mb);
2838 test_mb_skcipher_speed("lrw(cast6)", DECRYPT, sec, NULL, 0,
2839 speed_template_32_48, num_mb);
2840 test_mb_skcipher_speed("xts(cast6)", ENCRYPT, sec, NULL, 0,
2841 speed_template_32_64, num_mb);
2842 test_mb_skcipher_speed("xts(cast6)", DECRYPT, sec, NULL, 0,
2843 speed_template_32_64, num_mb);
2847 test_mb_skcipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0,
2848 speed_template_16_32, num_mb);
2849 test_mb_skcipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0,
2850 speed_template_16_32, num_mb);
2851 test_mb_skcipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0,
2852 speed_template_16_32, num_mb);
2853 test_mb_skcipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
2854 speed_template_16_32, num_mb);
2855 test_mb_skcipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0,
2856 speed_template_16_32, num_mb);
2857 test_mb_skcipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0,
2858 speed_template_16_32, num_mb);
2859 test_mb_skcipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0,
2860 speed_template_32_48, num_mb);
2861 test_mb_skcipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0,
2862 speed_template_32_48, num_mb);
2863 test_mb_skcipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0,
2864 speed_template_32_64, num_mb);
2865 test_mb_skcipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0,
2866 speed_template_32_64, num_mb);
2870 test_mb_skcipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0,
2871 speed_template_8_32, num_mb);
2872 test_mb_skcipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0,
2873 speed_template_8_32, num_mb);
2874 test_mb_skcipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0,
2875 speed_template_8_32, num_mb);
2876 test_mb_skcipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0,
2877 speed_template_8_32, num_mb);
2878 test_mb_skcipher_speed("ctr(blowfish)", ENCRYPT, sec, NULL, 0,
2879 speed_template_8_32, num_mb);
2880 test_mb_skcipher_speed("ctr(blowfish)", DECRYPT, sec, NULL, 0,
2881 speed_template_8_32, num_mb);
2892 static int __init tcrypt_mod_init(void)
2897 for (i = 0; i < TVMEMSIZE; i++) {
2898 tvmem[i] = (void *)__get_free_page(GFP_KERNEL);
2903 err = do_test(alg, type, mask, mode);
2906 printk(KERN_ERR "tcrypt: one or more tests failed!\n");
2909 pr_debug("all tests passed\n");
2912 /* We intentionaly return -EAGAIN to prevent keeping the module,
2913 * unless we're running in fips mode. It does all its work from
2914 * init() and doesn't offer any runtime functionality, but in
2915 * the fips case, checking for a successful load is helpful.
2916 * => we don't need it in the memory, do we?
2923 for (i = 0; i < TVMEMSIZE && tvmem[i]; i++)
2924 free_page((unsigned long)tvmem[i]);
2930 * If an init function is provided, an exit function must also be provided
2931 * to allow module unload.
2933 static void __exit tcrypt_mod_fini(void) { }
2935 module_init(tcrypt_mod_init);
2936 module_exit(tcrypt_mod_fini);
2938 module_param(alg, charp, 0);
2939 module_param(type, uint, 0);
2940 module_param(mask, uint, 0);
2941 module_param(mode, int, 0);
2942 module_param(sec, uint, 0);
2943 MODULE_PARM_DESC(sec, "Length in seconds of speed tests "
2944 "(defaults to zero which uses CPU cycles instead)");
2945 module_param(num_mb, uint, 0000);
2946 MODULE_PARM_DESC(num_mb, "Number of concurrent requests to be used in mb speed tests (defaults to 8)");
2948 MODULE_LICENSE("GPL");
2949 MODULE_DESCRIPTION("Quick & dirty crypto testing module");