2 * Quick & dirty crypto testing module.
4 * This will only exist until we have a better testing mechanism
5 * (e.g. a char device).
7 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
8 * Copyright (c) 2002 Jean-Francois Dive <jef@linuxbe.org>
9 * Copyright (c) 2007 Nokia Siemens Networks
11 * Updated RFC4106 AES-GCM testing.
12 * Authors: Aidan O'Mahony (aidan.o.mahony@intel.com)
13 * Adrian Hoban <adrian.hoban@intel.com>
14 * Gabriele Paoloni <gabriele.paoloni@intel.com>
15 * Tadeusz Struk (tadeusz.struk@intel.com)
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,
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;
194 rc = kcalloc(num_mb, sizeof(*rc), GFP_KERNEL);
198 for (start = jiffies, end = start + secs * HZ, bcount = 0;
199 time_before(jiffies, end); bcount++) {
200 ret = do_mult_aead_op(data, enc, num_mb, rc);
205 pr_cont("%d operations in %d seconds (%llu bytes)\n",
206 bcount * num_mb, secs, (u64)bcount * blen * num_mb);
213 static int test_mb_aead_cycles(struct test_mb_aead_data *data, int enc,
214 int blen, u32 num_mb)
216 unsigned long cycles = 0;
221 rc = kcalloc(num_mb, sizeof(*rc), GFP_KERNEL);
226 for (i = 0; i < 4; i++) {
227 ret = do_mult_aead_op(data, enc, num_mb, rc);
232 /* The real thing. */
233 for (i = 0; i < 8; i++) {
236 start = get_cycles();
237 ret = do_mult_aead_op(data, enc, num_mb, rc);
243 cycles += end - start;
246 pr_cont("1 operation in %lu cycles (%d bytes)\n",
247 (cycles + 4) / (8 * num_mb), blen);
254 static void test_mb_aead_speed(const char *algo, int enc, int secs,
255 struct aead_speed_template *template,
256 unsigned int tcount, u8 authsize,
257 unsigned int aad_size, u8 *keysize, u32 num_mb)
259 struct test_mb_aead_data *data;
260 struct crypto_aead *tfm;
261 unsigned int i, j, iv_len;
270 if (aad_size >= PAGE_SIZE) {
271 pr_err("associate data length (%u) too big\n", aad_size);
275 iv = kzalloc(MAX_IVLEN, GFP_KERNEL);
284 data = kcalloc(num_mb, sizeof(*data), GFP_KERNEL);
288 tfm = crypto_alloc_aead(algo, 0, 0);
290 pr_err("failed to load transform for %s: %ld\n",
295 ret = crypto_aead_setauthsize(tfm, authsize);
297 for (i = 0; i < num_mb; ++i)
298 if (testmgr_alloc_buf(data[i].xbuf)) {
300 testmgr_free_buf(data[i].xbuf);
304 for (i = 0; i < num_mb; ++i)
305 if (testmgr_alloc_buf(data[i].axbuf)) {
307 testmgr_free_buf(data[i].axbuf);
311 for (i = 0; i < num_mb; ++i)
312 if (testmgr_alloc_buf(data[i].xoutbuf)) {
314 testmgr_free_buf(data[i].xoutbuf);
318 for (i = 0; i < num_mb; ++i) {
319 data[i].req = aead_request_alloc(tfm, GFP_KERNEL);
321 pr_err("alg: skcipher: Failed to allocate request for %s\n",
324 aead_request_free(data[i].req);
325 goto out_free_xoutbuf;
329 for (i = 0; i < num_mb; ++i) {
330 crypto_init_wait(&data[i].wait);
331 aead_request_set_callback(data[i].req,
332 CRYPTO_TFM_REQ_MAY_BACKLOG,
333 crypto_req_done, &data[i].wait);
336 pr_info("\ntesting speed of multibuffer %s (%s) %s\n", algo,
337 get_driver_name(crypto_aead, tfm), e);
343 if (*b_size + authsize > XBUFSIZE * PAGE_SIZE) {
344 pr_err("template (%u) too big for buffer (%lu)\n",
346 XBUFSIZE * PAGE_SIZE);
350 pr_info("test %u (%d bit key, %d byte blocks): ", i,
351 *keysize * 8, *b_size);
353 /* Set up tfm global state, i.e. the key */
355 memset(tvmem[0], 0xff, PAGE_SIZE);
357 for (j = 0; j < tcount; j++) {
358 if (template[j].klen == *keysize) {
359 key = template[j].key;
364 crypto_aead_clear_flags(tfm, ~0);
366 ret = crypto_aead_setkey(tfm, key, *keysize);
368 pr_err("setkey() failed flags=%x\n",
369 crypto_aead_get_flags(tfm));
373 iv_len = crypto_aead_ivsize(tfm);
375 memset(iv, 0xff, iv_len);
377 /* Now setup per request stuff, i.e. buffers */
379 for (j = 0; j < num_mb; ++j) {
380 struct test_mb_aead_data *cur = &data[j];
382 assoc = cur->axbuf[0];
383 memset(assoc, 0xff, aad_size);
385 sg_init_aead(cur->sg, cur->xbuf,
386 *b_size + (enc ? 0 : authsize),
389 sg_init_aead(cur->sgout, cur->xoutbuf,
390 *b_size + (enc ? authsize : 0),
393 aead_request_set_ad(cur->req, aad_size);
397 aead_request_set_crypt(cur->req,
401 ret = crypto_aead_encrypt(cur->req);
402 ret = do_one_aead_op(cur->req, ret);
405 pr_err("calculating auth failed failed (%d)\n",
411 aead_request_set_crypt(cur->req, cur->sg,
412 cur->sgout, *b_size +
413 (enc ? 0 : authsize),
419 ret = test_mb_aead_jiffies(data, enc, *b_size,
423 ret = test_mb_aead_cycles(data, enc, *b_size,
428 pr_err("%s() failed return code=%d\n", e, ret);
438 for (i = 0; i < num_mb; ++i)
439 aead_request_free(data[i].req);
441 for (i = 0; i < num_mb; ++i)
442 testmgr_free_buf(data[i].xoutbuf);
444 for (i = 0; i < num_mb; ++i)
445 testmgr_free_buf(data[i].axbuf);
447 for (i = 0; i < num_mb; ++i)
448 testmgr_free_buf(data[i].xbuf);
450 crypto_free_aead(tfm);
457 static int test_aead_jiffies(struct aead_request *req, int enc,
460 unsigned long start, end;
464 for (start = jiffies, end = start + secs * HZ, bcount = 0;
465 time_before(jiffies, end); bcount++) {
467 ret = do_one_aead_op(req, crypto_aead_encrypt(req));
469 ret = do_one_aead_op(req, crypto_aead_decrypt(req));
475 pr_cont("%d operations in %d seconds (%llu bytes)\n",
476 bcount, secs, (u64)bcount * blen);
480 static int test_aead_cycles(struct aead_request *req, int enc, int blen)
482 unsigned long cycles = 0;
487 for (i = 0; i < 4; i++) {
489 ret = do_one_aead_op(req, crypto_aead_encrypt(req));
491 ret = do_one_aead_op(req, crypto_aead_decrypt(req));
497 /* The real thing. */
498 for (i = 0; i < 8; i++) {
501 start = get_cycles();
503 ret = do_one_aead_op(req, crypto_aead_encrypt(req));
505 ret = do_one_aead_op(req, crypto_aead_decrypt(req));
511 cycles += end - start;
516 printk("1 operation in %lu cycles (%d bytes)\n",
517 (cycles + 4) / 8, blen);
522 static void test_aead_speed(const char *algo, int enc, unsigned int secs,
523 struct aead_speed_template *template,
524 unsigned int tcount, u8 authsize,
525 unsigned int aad_size, u8 *keysize)
528 struct crypto_aead *tfm;
531 struct aead_request *req;
532 struct scatterlist *sg;
533 struct scatterlist *sgout;
537 char *xbuf[XBUFSIZE];
538 char *xoutbuf[XBUFSIZE];
539 char *axbuf[XBUFSIZE];
540 unsigned int *b_size;
542 struct crypto_wait wait;
544 iv = kzalloc(MAX_IVLEN, GFP_KERNEL);
548 if (aad_size >= PAGE_SIZE) {
549 pr_err("associate data length (%u) too big\n", aad_size);
558 if (testmgr_alloc_buf(xbuf))
560 if (testmgr_alloc_buf(axbuf))
562 if (testmgr_alloc_buf(xoutbuf))
565 sg = kmalloc(sizeof(*sg) * 9 * 2, GFP_KERNEL);
570 tfm = crypto_alloc_aead(algo, 0, 0);
573 pr_err("alg: aead: Failed to load transform for %s: %ld\n", algo,
578 crypto_init_wait(&wait);
579 printk(KERN_INFO "\ntesting speed of %s (%s) %s\n", algo,
580 get_driver_name(crypto_aead, tfm), e);
582 req = aead_request_alloc(tfm, GFP_KERNEL);
584 pr_err("alg: aead: Failed to allocate request for %s\n",
589 aead_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
590 crypto_req_done, &wait);
597 memset(assoc, 0xff, aad_size);
599 if ((*keysize + *b_size) > TVMEMSIZE * PAGE_SIZE) {
600 pr_err("template (%u) too big for tvmem (%lu)\n",
602 TVMEMSIZE * PAGE_SIZE);
607 for (j = 0; j < tcount; j++) {
608 if (template[j].klen == *keysize) {
609 key = template[j].key;
613 ret = crypto_aead_setkey(tfm, key, *keysize);
614 ret = crypto_aead_setauthsize(tfm, authsize);
616 iv_len = crypto_aead_ivsize(tfm);
618 memset(iv, 0xff, iv_len);
620 crypto_aead_clear_flags(tfm, ~0);
621 printk(KERN_INFO "test %u (%d bit key, %d byte blocks): ",
622 i, *keysize * 8, *b_size);
625 memset(tvmem[0], 0xff, PAGE_SIZE);
628 pr_err("setkey() failed flags=%x\n",
629 crypto_aead_get_flags(tfm));
633 sg_init_aead(sg, xbuf, *b_size + (enc ? 0 : authsize),
636 sg_init_aead(sgout, xoutbuf,
637 *b_size + (enc ? authsize : 0), assoc,
640 aead_request_set_ad(req, aad_size);
645 * For decryption we need a proper auth so
646 * we do the encryption path once with buffers
647 * reversed (input <-> output) to calculate it
649 aead_request_set_crypt(req, sgout, sg,
651 ret = do_one_aead_op(req,
652 crypto_aead_encrypt(req));
655 pr_err("calculating auth failed failed (%d)\n",
661 aead_request_set_crypt(req, sg, sgout,
662 *b_size + (enc ? 0 : authsize),
666 ret = test_aead_jiffies(req, enc, *b_size,
670 ret = test_aead_cycles(req, enc, *b_size);
674 pr_err("%s() failed return code=%d\n", e, ret);
684 aead_request_free(req);
686 crypto_free_aead(tfm);
690 testmgr_free_buf(xoutbuf);
692 testmgr_free_buf(axbuf);
694 testmgr_free_buf(xbuf);
699 static void test_hash_sg_init(struct scatterlist *sg)
703 sg_init_table(sg, TVMEMSIZE);
704 for (i = 0; i < TVMEMSIZE; i++) {
705 sg_set_buf(sg + i, tvmem[i], PAGE_SIZE);
706 memset(tvmem[i], 0xff, PAGE_SIZE);
710 static inline int do_one_ahash_op(struct ahash_request *req, int ret)
712 struct crypto_wait *wait = req->base.data;
714 return crypto_wait_req(ret, wait);
717 struct test_mb_ahash_data {
718 struct scatterlist sg[XBUFSIZE];
720 struct ahash_request *req;
721 struct crypto_wait wait;
722 char *xbuf[XBUFSIZE];
725 static inline int do_mult_ahash_op(struct test_mb_ahash_data *data, u32 num_mb,
730 /* Fire up a bunch of concurrent requests */
731 for (i = 0; i < num_mb; i++)
732 rc[i] = crypto_ahash_digest(data[i].req);
734 /* Wait for all requests to finish */
735 for (i = 0; i < num_mb; i++) {
736 rc[i] = crypto_wait_req(rc[i], &data[i].wait);
739 pr_info("concurrent request %d error %d\n", i, rc[i]);
747 static int test_mb_ahash_jiffies(struct test_mb_ahash_data *data, int blen,
748 int secs, u32 num_mb)
750 unsigned long start, end;
755 rc = kcalloc(num_mb, sizeof(*rc), GFP_KERNEL);
759 for (start = jiffies, end = start + secs * HZ, bcount = 0;
760 time_before(jiffies, end); bcount++) {
761 ret = do_mult_ahash_op(data, num_mb, rc);
766 pr_cont("%d operations in %d seconds (%llu bytes)\n",
767 bcount * num_mb, secs, (u64)bcount * blen * num_mb);
774 static int test_mb_ahash_cycles(struct test_mb_ahash_data *data, int blen,
777 unsigned long cycles = 0;
782 rc = kcalloc(num_mb, sizeof(*rc), GFP_KERNEL);
787 for (i = 0; i < 4; i++) {
788 ret = do_mult_ahash_op(data, num_mb, rc);
793 /* The real thing. */
794 for (i = 0; i < 8; i++) {
797 start = get_cycles();
798 ret = do_mult_ahash_op(data, num_mb, rc);
804 cycles += end - start;
807 pr_cont("1 operation in %lu cycles (%d bytes)\n",
808 (cycles + 4) / (8 * num_mb), blen);
815 static void test_mb_ahash_speed(const char *algo, unsigned int secs,
816 struct hash_speed *speed, u32 num_mb)
818 struct test_mb_ahash_data *data;
819 struct crypto_ahash *tfm;
820 unsigned int i, j, k;
823 data = kcalloc(num_mb, sizeof(*data), GFP_KERNEL);
827 tfm = crypto_alloc_ahash(algo, 0, 0);
829 pr_err("failed to load transform for %s: %ld\n",
834 for (i = 0; i < num_mb; ++i) {
835 if (testmgr_alloc_buf(data[i].xbuf))
838 crypto_init_wait(&data[i].wait);
840 data[i].req = ahash_request_alloc(tfm, GFP_KERNEL);
842 pr_err("alg: hash: Failed to allocate request for %s\n",
847 ahash_request_set_callback(data[i].req, 0, crypto_req_done,
850 sg_init_table(data[i].sg, XBUFSIZE);
851 for (j = 0; j < XBUFSIZE; j++) {
852 sg_set_buf(data[i].sg + j, data[i].xbuf[j], PAGE_SIZE);
853 memset(data[i].xbuf[j], 0xff, PAGE_SIZE);
857 pr_info("\ntesting speed of multibuffer %s (%s)\n", algo,
858 get_driver_name(crypto_ahash, tfm));
860 for (i = 0; speed[i].blen != 0; i++) {
861 /* For some reason this only tests digests. */
862 if (speed[i].blen != speed[i].plen)
865 if (speed[i].blen > XBUFSIZE * PAGE_SIZE) {
866 pr_err("template (%u) too big for tvmem (%lu)\n",
867 speed[i].blen, XBUFSIZE * PAGE_SIZE);
872 crypto_ahash_setkey(tfm, tvmem[0], speed[i].klen);
874 for (k = 0; k < num_mb; k++)
875 ahash_request_set_crypt(data[k].req, data[k].sg,
876 data[k].result, speed[i].blen);
879 "(%5u byte blocks,%5u bytes per update,%4u updates): ",
880 i, speed[i].blen, speed[i].plen,
881 speed[i].blen / speed[i].plen);
884 ret = test_mb_ahash_jiffies(data, speed[i].blen, secs,
888 ret = test_mb_ahash_cycles(data, speed[i].blen, num_mb);
893 pr_err("At least one hashing failed ret=%d\n", ret);
899 for (k = 0; k < num_mb; ++k)
900 ahash_request_free(data[k].req);
902 for (k = 0; k < num_mb; ++k)
903 testmgr_free_buf(data[k].xbuf);
905 crypto_free_ahash(tfm);
911 static int test_ahash_jiffies_digest(struct ahash_request *req, int blen,
914 unsigned long start, end;
918 for (start = jiffies, end = start + secs * HZ, bcount = 0;
919 time_before(jiffies, end); bcount++) {
920 ret = do_one_ahash_op(req, crypto_ahash_digest(req));
925 printk("%6u opers/sec, %9lu bytes/sec\n",
926 bcount / secs, ((long)bcount * blen) / secs);
931 static int test_ahash_jiffies(struct ahash_request *req, int blen,
932 int plen, char *out, int secs)
934 unsigned long start, end;
939 return test_ahash_jiffies_digest(req, blen, out, secs);
941 for (start = jiffies, end = start + secs * HZ, bcount = 0;
942 time_before(jiffies, end); bcount++) {
943 ret = do_one_ahash_op(req, crypto_ahash_init(req));
946 for (pcount = 0; pcount < blen; pcount += plen) {
947 ret = do_one_ahash_op(req, crypto_ahash_update(req));
951 /* we assume there is enough space in 'out' for the result */
952 ret = do_one_ahash_op(req, crypto_ahash_final(req));
957 pr_cont("%6u opers/sec, %9lu bytes/sec\n",
958 bcount / secs, ((long)bcount * blen) / secs);
963 static int test_ahash_cycles_digest(struct ahash_request *req, int blen,
966 unsigned long cycles = 0;
970 for (i = 0; i < 4; i++) {
971 ret = do_one_ahash_op(req, crypto_ahash_digest(req));
976 /* The real thing. */
977 for (i = 0; i < 8; i++) {
980 start = get_cycles();
982 ret = do_one_ahash_op(req, crypto_ahash_digest(req));
988 cycles += end - start;
995 pr_cont("%6lu cycles/operation, %4lu cycles/byte\n",
996 cycles / 8, cycles / (8 * blen));
1001 static int test_ahash_cycles(struct ahash_request *req, int blen,
1002 int plen, char *out)
1004 unsigned long cycles = 0;
1008 return test_ahash_cycles_digest(req, blen, out);
1011 for (i = 0; i < 4; i++) {
1012 ret = do_one_ahash_op(req, crypto_ahash_init(req));
1015 for (pcount = 0; pcount < blen; pcount += plen) {
1016 ret = do_one_ahash_op(req, crypto_ahash_update(req));
1020 ret = do_one_ahash_op(req, crypto_ahash_final(req));
1025 /* The real thing. */
1026 for (i = 0; i < 8; i++) {
1027 cycles_t start, end;
1029 start = get_cycles();
1031 ret = do_one_ahash_op(req, crypto_ahash_init(req));
1034 for (pcount = 0; pcount < blen; pcount += plen) {
1035 ret = do_one_ahash_op(req, crypto_ahash_update(req));
1039 ret = do_one_ahash_op(req, crypto_ahash_final(req));
1045 cycles += end - start;
1052 pr_cont("%6lu cycles/operation, %4lu cycles/byte\n",
1053 cycles / 8, cycles / (8 * blen));
1058 static void test_ahash_speed_common(const char *algo, unsigned int secs,
1059 struct hash_speed *speed, unsigned mask)
1061 struct scatterlist sg[TVMEMSIZE];
1062 struct crypto_wait wait;
1063 struct ahash_request *req;
1064 struct crypto_ahash *tfm;
1068 tfm = crypto_alloc_ahash(algo, 0, mask);
1070 pr_err("failed to load transform for %s: %ld\n",
1071 algo, PTR_ERR(tfm));
1075 printk(KERN_INFO "\ntesting speed of async %s (%s)\n", algo,
1076 get_driver_name(crypto_ahash, tfm));
1078 if (crypto_ahash_digestsize(tfm) > MAX_DIGEST_SIZE) {
1079 pr_err("digestsize(%u) > %d\n", crypto_ahash_digestsize(tfm),
1084 test_hash_sg_init(sg);
1085 req = ahash_request_alloc(tfm, GFP_KERNEL);
1087 pr_err("ahash request allocation failure\n");
1091 crypto_init_wait(&wait);
1092 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
1093 crypto_req_done, &wait);
1095 output = kmalloc(MAX_DIGEST_SIZE, GFP_KERNEL);
1099 for (i = 0; speed[i].blen != 0; i++) {
1100 if (speed[i].blen > TVMEMSIZE * PAGE_SIZE) {
1101 pr_err("template (%u) too big for tvmem (%lu)\n",
1102 speed[i].blen, TVMEMSIZE * PAGE_SIZE);
1107 crypto_ahash_setkey(tfm, tvmem[0], speed[i].klen);
1110 "(%5u byte blocks,%5u bytes per update,%4u updates): ",
1111 i, speed[i].blen, speed[i].plen, speed[i].blen / speed[i].plen);
1113 ahash_request_set_crypt(req, sg, output, speed[i].plen);
1116 ret = test_ahash_jiffies(req, speed[i].blen,
1117 speed[i].plen, output, secs);
1120 ret = test_ahash_cycles(req, speed[i].blen,
1121 speed[i].plen, output);
1125 pr_err("hashing failed ret=%d\n", ret);
1133 ahash_request_free(req);
1136 crypto_free_ahash(tfm);
1139 static void test_ahash_speed(const char *algo, unsigned int secs,
1140 struct hash_speed *speed)
1142 return test_ahash_speed_common(algo, secs, speed, 0);
1145 static void test_hash_speed(const char *algo, unsigned int secs,
1146 struct hash_speed *speed)
1148 return test_ahash_speed_common(algo, secs, speed, CRYPTO_ALG_ASYNC);
1151 struct test_mb_skcipher_data {
1152 struct scatterlist sg[XBUFSIZE];
1153 struct skcipher_request *req;
1154 struct crypto_wait wait;
1155 char *xbuf[XBUFSIZE];
1158 static int do_mult_acipher_op(struct test_mb_skcipher_data *data, int enc,
1159 u32 num_mb, int *rc)
1163 /* Fire up a bunch of concurrent requests */
1164 for (i = 0; i < num_mb; i++) {
1166 rc[i] = crypto_skcipher_encrypt(data[i].req);
1168 rc[i] = crypto_skcipher_decrypt(data[i].req);
1171 /* Wait for all requests to finish */
1172 for (i = 0; i < num_mb; i++) {
1173 rc[i] = crypto_wait_req(rc[i], &data[i].wait);
1176 pr_info("concurrent request %d error %d\n", i, rc[i]);
1184 static int test_mb_acipher_jiffies(struct test_mb_skcipher_data *data, int enc,
1185 int blen, int secs, u32 num_mb)
1187 unsigned long start, end;
1192 rc = kcalloc(num_mb, sizeof(*rc), GFP_KERNEL);
1196 for (start = jiffies, end = start + secs * HZ, bcount = 0;
1197 time_before(jiffies, end); bcount++) {
1198 ret = do_mult_acipher_op(data, enc, num_mb, rc);
1203 pr_cont("%d operations in %d seconds (%llu bytes)\n",
1204 bcount * num_mb, secs, (u64)bcount * blen * num_mb);
1211 static int test_mb_acipher_cycles(struct test_mb_skcipher_data *data, int enc,
1212 int blen, u32 num_mb)
1214 unsigned long cycles = 0;
1219 rc = kcalloc(num_mb, sizeof(*rc), GFP_KERNEL);
1224 for (i = 0; i < 4; i++) {
1225 ret = do_mult_acipher_op(data, enc, num_mb, rc);
1230 /* The real thing. */
1231 for (i = 0; i < 8; i++) {
1232 cycles_t start, end;
1234 start = get_cycles();
1235 ret = do_mult_acipher_op(data, enc, num_mb, rc);
1241 cycles += end - start;
1244 pr_cont("1 operation in %lu cycles (%d bytes)\n",
1245 (cycles + 4) / (8 * num_mb), blen);
1252 static void test_mb_skcipher_speed(const char *algo, int enc, int secs,
1253 struct cipher_speed_template *template,
1254 unsigned int tcount, u8 *keysize, u32 num_mb)
1256 struct test_mb_skcipher_data *data;
1257 struct crypto_skcipher *tfm;
1258 unsigned int i, j, iv_len;
1270 data = kcalloc(num_mb, sizeof(*data), GFP_KERNEL);
1274 tfm = crypto_alloc_skcipher(algo, 0, 0);
1276 pr_err("failed to load transform for %s: %ld\n",
1277 algo, PTR_ERR(tfm));
1281 for (i = 0; i < num_mb; ++i)
1282 if (testmgr_alloc_buf(data[i].xbuf)) {
1284 testmgr_free_buf(data[i].xbuf);
1288 for (i = 0; i < num_mb; ++i) {
1289 data[i].req = skcipher_request_alloc(tfm, GFP_KERNEL);
1291 pr_err("alg: skcipher: Failed to allocate request for %s\n",
1294 skcipher_request_free(data[i].req);
1299 for (i = 0; i < num_mb; ++i) {
1300 skcipher_request_set_callback(data[i].req,
1301 CRYPTO_TFM_REQ_MAY_BACKLOG,
1302 crypto_req_done, &data[i].wait);
1303 crypto_init_wait(&data[i].wait);
1306 pr_info("\ntesting speed of multibuffer %s (%s) %s\n", algo,
1307 get_driver_name(crypto_skcipher, tfm), e);
1311 b_size = block_sizes;
1313 if (*b_size > XBUFSIZE * PAGE_SIZE) {
1314 pr_err("template (%u) too big for buffer (%lu)\n",
1315 *b_size, XBUFSIZE * PAGE_SIZE);
1319 pr_info("test %u (%d bit key, %d byte blocks): ", i,
1320 *keysize * 8, *b_size);
1322 /* Set up tfm global state, i.e. the key */
1324 memset(tvmem[0], 0xff, PAGE_SIZE);
1326 for (j = 0; j < tcount; j++) {
1327 if (template[j].klen == *keysize) {
1328 key = template[j].key;
1333 crypto_skcipher_clear_flags(tfm, ~0);
1335 ret = crypto_skcipher_setkey(tfm, key, *keysize);
1337 pr_err("setkey() failed flags=%x\n",
1338 crypto_skcipher_get_flags(tfm));
1342 iv_len = crypto_skcipher_ivsize(tfm);
1344 memset(&iv, 0xff, iv_len);
1346 /* Now setup per request stuff, i.e. buffers */
1348 for (j = 0; j < num_mb; ++j) {
1349 struct test_mb_skcipher_data *cur = &data[j];
1350 unsigned int k = *b_size;
1351 unsigned int pages = DIV_ROUND_UP(k, PAGE_SIZE);
1354 sg_init_table(cur->sg, pages);
1356 while (k > PAGE_SIZE) {
1357 sg_set_buf(cur->sg + p, cur->xbuf[p],
1359 memset(cur->xbuf[p], 0xff, PAGE_SIZE);
1364 sg_set_buf(cur->sg + p, cur->xbuf[p], k);
1365 memset(cur->xbuf[p], 0xff, k);
1367 skcipher_request_set_crypt(cur->req, cur->sg,
1373 ret = test_mb_acipher_jiffies(data, enc,
1378 ret = test_mb_acipher_cycles(data, enc,
1383 pr_err("%s() failed flags=%x\n", e,
1384 crypto_skcipher_get_flags(tfm));
1394 for (i = 0; i < num_mb; ++i)
1395 skcipher_request_free(data[i].req);
1397 for (i = 0; i < num_mb; ++i)
1398 testmgr_free_buf(data[i].xbuf);
1400 crypto_free_skcipher(tfm);
1405 static inline int do_one_acipher_op(struct skcipher_request *req, int ret)
1407 struct crypto_wait *wait = req->base.data;
1409 return crypto_wait_req(ret, wait);
1412 static int test_acipher_jiffies(struct skcipher_request *req, int enc,
1415 unsigned long start, end;
1419 for (start = jiffies, end = start + secs * HZ, bcount = 0;
1420 time_before(jiffies, end); bcount++) {
1422 ret = do_one_acipher_op(req,
1423 crypto_skcipher_encrypt(req));
1425 ret = do_one_acipher_op(req,
1426 crypto_skcipher_decrypt(req));
1432 pr_cont("%d operations in %d seconds (%llu bytes)\n",
1433 bcount, secs, (u64)bcount * blen);
1437 static int test_acipher_cycles(struct skcipher_request *req, int enc,
1440 unsigned long cycles = 0;
1445 for (i = 0; i < 4; i++) {
1447 ret = do_one_acipher_op(req,
1448 crypto_skcipher_encrypt(req));
1450 ret = do_one_acipher_op(req,
1451 crypto_skcipher_decrypt(req));
1457 /* The real thing. */
1458 for (i = 0; i < 8; i++) {
1459 cycles_t start, end;
1461 start = get_cycles();
1463 ret = do_one_acipher_op(req,
1464 crypto_skcipher_encrypt(req));
1466 ret = do_one_acipher_op(req,
1467 crypto_skcipher_decrypt(req));
1473 cycles += end - start;
1478 pr_cont("1 operation in %lu cycles (%d bytes)\n",
1479 (cycles + 4) / 8, blen);
1484 static void test_skcipher_speed(const char *algo, int enc, unsigned int secs,
1485 struct cipher_speed_template *template,
1486 unsigned int tcount, u8 *keysize, bool async)
1488 unsigned int ret, i, j, k, iv_len;
1489 struct crypto_wait wait;
1492 struct skcipher_request *req;
1493 struct crypto_skcipher *tfm;
1502 crypto_init_wait(&wait);
1504 tfm = crypto_alloc_skcipher(algo, 0, async ? 0 : CRYPTO_ALG_ASYNC);
1507 pr_err("failed to load transform for %s: %ld\n", algo,
1512 pr_info("\ntesting speed of async %s (%s) %s\n", algo,
1513 get_driver_name(crypto_skcipher, tfm), e);
1515 req = skcipher_request_alloc(tfm, GFP_KERNEL);
1517 pr_err("tcrypt: skcipher: Failed to allocate request for %s\n",
1522 skcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
1523 crypto_req_done, &wait);
1527 b_size = block_sizes;
1530 struct scatterlist sg[TVMEMSIZE];
1532 if ((*keysize + *b_size) > TVMEMSIZE * PAGE_SIZE) {
1533 pr_err("template (%u) too big for "
1534 "tvmem (%lu)\n", *keysize + *b_size,
1535 TVMEMSIZE * PAGE_SIZE);
1539 pr_info("test %u (%d bit key, %d byte blocks): ", i,
1540 *keysize * 8, *b_size);
1542 memset(tvmem[0], 0xff, PAGE_SIZE);
1544 /* set key, plain text and IV */
1546 for (j = 0; j < tcount; j++) {
1547 if (template[j].klen == *keysize) {
1548 key = template[j].key;
1553 crypto_skcipher_clear_flags(tfm, ~0);
1555 ret = crypto_skcipher_setkey(tfm, key, *keysize);
1557 pr_err("setkey() failed flags=%x\n",
1558 crypto_skcipher_get_flags(tfm));
1562 k = *keysize + *b_size;
1563 sg_init_table(sg, DIV_ROUND_UP(k, PAGE_SIZE));
1565 if (k > PAGE_SIZE) {
1566 sg_set_buf(sg, tvmem[0] + *keysize,
1567 PAGE_SIZE - *keysize);
1570 while (k > PAGE_SIZE) {
1571 sg_set_buf(sg + j, tvmem[j], PAGE_SIZE);
1572 memset(tvmem[j], 0xff, PAGE_SIZE);
1576 sg_set_buf(sg + j, tvmem[j], k);
1577 memset(tvmem[j], 0xff, k);
1579 sg_set_buf(sg, tvmem[0] + *keysize, *b_size);
1582 iv_len = crypto_skcipher_ivsize(tfm);
1584 memset(&iv, 0xff, iv_len);
1586 skcipher_request_set_crypt(req, sg, sg, *b_size, iv);
1589 ret = test_acipher_jiffies(req, enc,
1593 ret = test_acipher_cycles(req, enc,
1598 pr_err("%s() failed flags=%x\n", e,
1599 crypto_skcipher_get_flags(tfm));
1609 skcipher_request_free(req);
1611 crypto_free_skcipher(tfm);
1614 static void test_acipher_speed(const char *algo, int enc, unsigned int secs,
1615 struct cipher_speed_template *template,
1616 unsigned int tcount, u8 *keysize)
1618 return test_skcipher_speed(algo, enc, secs, template, tcount, keysize,
1622 static void test_cipher_speed(const char *algo, int enc, unsigned int secs,
1623 struct cipher_speed_template *template,
1624 unsigned int tcount, u8 *keysize)
1626 return test_skcipher_speed(algo, enc, secs, template, tcount, keysize,
1630 static void test_available(void)
1632 char **name = check;
1635 printk("alg %s ", *name);
1636 printk(crypto_has_alg(*name, 0, 0) ?
1637 "found\n" : "not found\n");
1642 static inline int tcrypt_test(const char *alg)
1646 pr_debug("testing %s\n", alg);
1648 ret = alg_test(alg, alg, 0, 0);
1649 /* non-fips algs return -EINVAL in fips mode */
1650 if (fips_enabled && ret == -EINVAL)
1655 static int do_test(const char *alg, u32 type, u32 mask, int m, u32 num_mb)
1663 if (!crypto_has_alg(alg, type,
1664 mask ?: CRYPTO_ALG_TYPE_MASK))
1669 for (i = 1; i < 200; i++)
1670 ret += do_test(NULL, 0, 0, i, num_mb);
1674 ret += tcrypt_test("md5");
1678 ret += tcrypt_test("sha1");
1682 ret += tcrypt_test("ecb(des)");
1683 ret += tcrypt_test("cbc(des)");
1684 ret += tcrypt_test("ctr(des)");
1688 ret += tcrypt_test("ecb(des3_ede)");
1689 ret += tcrypt_test("cbc(des3_ede)");
1690 ret += tcrypt_test("ctr(des3_ede)");
1694 ret += tcrypt_test("md4");
1698 ret += tcrypt_test("sha256");
1702 ret += tcrypt_test("ecb(blowfish)");
1703 ret += tcrypt_test("cbc(blowfish)");
1704 ret += tcrypt_test("ctr(blowfish)");
1708 ret += tcrypt_test("ecb(twofish)");
1709 ret += tcrypt_test("cbc(twofish)");
1710 ret += tcrypt_test("ctr(twofish)");
1711 ret += tcrypt_test("lrw(twofish)");
1712 ret += tcrypt_test("xts(twofish)");
1716 ret += tcrypt_test("ecb(serpent)");
1717 ret += tcrypt_test("cbc(serpent)");
1718 ret += tcrypt_test("ctr(serpent)");
1719 ret += tcrypt_test("lrw(serpent)");
1720 ret += tcrypt_test("xts(serpent)");
1724 ret += tcrypt_test("ecb(aes)");
1725 ret += tcrypt_test("cbc(aes)");
1726 ret += tcrypt_test("lrw(aes)");
1727 ret += tcrypt_test("xts(aes)");
1728 ret += tcrypt_test("ctr(aes)");
1729 ret += tcrypt_test("rfc3686(ctr(aes))");
1730 ret += tcrypt_test("cfb(aes)");
1734 ret += tcrypt_test("sha384");
1738 ret += tcrypt_test("sha512");
1742 ret += tcrypt_test("deflate");
1746 ret += tcrypt_test("ecb(cast5)");
1747 ret += tcrypt_test("cbc(cast5)");
1748 ret += tcrypt_test("ctr(cast5)");
1752 ret += tcrypt_test("ecb(cast6)");
1753 ret += tcrypt_test("cbc(cast6)");
1754 ret += tcrypt_test("ctr(cast6)");
1755 ret += tcrypt_test("lrw(cast6)");
1756 ret += tcrypt_test("xts(cast6)");
1760 ret += tcrypt_test("ecb(arc4)");
1764 ret += tcrypt_test("michael_mic");
1768 ret += tcrypt_test("crc32c");
1772 ret += tcrypt_test("ecb(tea)");
1776 ret += tcrypt_test("ecb(xtea)");
1780 ret += tcrypt_test("ecb(khazad)");
1784 ret += tcrypt_test("wp512");
1788 ret += tcrypt_test("wp384");
1792 ret += tcrypt_test("wp256");
1796 ret += tcrypt_test("ecb(tnepres)");
1800 ret += tcrypt_test("ecb(anubis)");
1801 ret += tcrypt_test("cbc(anubis)");
1805 ret += tcrypt_test("tgr192");
1809 ret += tcrypt_test("tgr160");
1813 ret += tcrypt_test("tgr128");
1817 ret += tcrypt_test("ecb(xeta)");
1821 ret += tcrypt_test("pcbc(fcrypt)");
1825 ret += tcrypt_test("ecb(camellia)");
1826 ret += tcrypt_test("cbc(camellia)");
1827 ret += tcrypt_test("ctr(camellia)");
1828 ret += tcrypt_test("lrw(camellia)");
1829 ret += tcrypt_test("xts(camellia)");
1833 ret += tcrypt_test("sha224");
1837 ret += tcrypt_test("salsa20");
1841 ret += tcrypt_test("gcm(aes)");
1845 ret += tcrypt_test("lzo");
1849 ret += tcrypt_test("ccm(aes)");
1853 ret += tcrypt_test("cts(cbc(aes))");
1857 ret += tcrypt_test("rmd128");
1861 ret += tcrypt_test("rmd160");
1865 ret += tcrypt_test("rmd256");
1869 ret += tcrypt_test("rmd320");
1873 ret += tcrypt_test("ecb(seed)");
1877 ret += tcrypt_test("zlib");
1881 ret += tcrypt_test("rfc4309(ccm(aes))");
1885 ret += tcrypt_test("ghash");
1889 ret += tcrypt_test("crct10dif");
1893 ret += tcrypt_test("sha3-224");
1897 ret += tcrypt_test("sha3-256");
1901 ret += tcrypt_test("sha3-384");
1905 ret += tcrypt_test("sha3-512");
1909 ret += tcrypt_test("sm3");
1913 ret += tcrypt_test("hmac(md5)");
1917 ret += tcrypt_test("hmac(sha1)");
1921 ret += tcrypt_test("hmac(sha256)");
1925 ret += tcrypt_test("hmac(sha384)");
1929 ret += tcrypt_test("hmac(sha512)");
1933 ret += tcrypt_test("hmac(sha224)");
1937 ret += tcrypt_test("xcbc(aes)");
1941 ret += tcrypt_test("hmac(rmd128)");
1945 ret += tcrypt_test("hmac(rmd160)");
1949 ret += tcrypt_test("vmac64(aes)");
1953 ret += tcrypt_test("hmac(sha3-224)");
1957 ret += tcrypt_test("hmac(sha3-256)");
1961 ret += tcrypt_test("hmac(sha3-384)");
1965 ret += tcrypt_test("hmac(sha3-512)");
1969 ret += tcrypt_test("ansi_cprng");
1973 ret += tcrypt_test("rfc4106(gcm(aes))");
1977 ret += tcrypt_test("rfc4543(gcm(aes))");
1981 ret += tcrypt_test("cmac(aes)");
1985 ret += tcrypt_test("cmac(des3_ede)");
1989 ret += tcrypt_test("authenc(hmac(sha1),cbc(aes))");
1993 ret += tcrypt_test("authenc(hmac(md5),ecb(cipher_null))");
1997 ret += tcrypt_test("authenc(hmac(sha1),ecb(cipher_null))");
2000 ret += tcrypt_test("authenc(hmac(sha1),cbc(des))");
2003 ret += tcrypt_test("authenc(hmac(sha1),cbc(des3_ede))");
2006 ret += tcrypt_test("authenc(hmac(sha224),cbc(des))");
2009 ret += tcrypt_test("authenc(hmac(sha224),cbc(des3_ede))");
2012 ret += tcrypt_test("authenc(hmac(sha256),cbc(des))");
2015 ret += tcrypt_test("authenc(hmac(sha256),cbc(des3_ede))");
2018 ret += tcrypt_test("authenc(hmac(sha384),cbc(des))");
2021 ret += tcrypt_test("authenc(hmac(sha384),cbc(des3_ede))");
2024 ret += tcrypt_test("authenc(hmac(sha512),cbc(des))");
2027 ret += tcrypt_test("authenc(hmac(sha512),cbc(des3_ede))");
2030 ret += tcrypt_test("ecb(sm4)");
2033 test_cipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
2034 speed_template_16_24_32);
2035 test_cipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0,
2036 speed_template_16_24_32);
2037 test_cipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0,
2038 speed_template_16_24_32);
2039 test_cipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0,
2040 speed_template_16_24_32);
2041 test_cipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0,
2042 speed_template_32_40_48);
2043 test_cipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0,
2044 speed_template_32_40_48);
2045 test_cipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0,
2046 speed_template_32_64);
2047 test_cipher_speed("xts(aes)", DECRYPT, sec, NULL, 0,
2048 speed_template_32_64);
2049 test_cipher_speed("cts(cbc(aes))", ENCRYPT, sec, NULL, 0,
2050 speed_template_16_24_32);
2051 test_cipher_speed("cts(cbc(aes))", DECRYPT, sec, NULL, 0,
2052 speed_template_16_24_32);
2053 test_cipher_speed("ctr(aes)", ENCRYPT, sec, NULL, 0,
2054 speed_template_16_24_32);
2055 test_cipher_speed("ctr(aes)", DECRYPT, sec, NULL, 0,
2056 speed_template_16_24_32);
2057 test_cipher_speed("cfb(aes)", ENCRYPT, sec, NULL, 0,
2058 speed_template_16_24_32);
2059 test_cipher_speed("cfb(aes)", DECRYPT, sec, NULL, 0,
2060 speed_template_16_24_32);
2064 test_cipher_speed("ecb(des3_ede)", ENCRYPT, sec,
2065 des3_speed_template, DES3_SPEED_VECTORS,
2067 test_cipher_speed("ecb(des3_ede)", DECRYPT, sec,
2068 des3_speed_template, DES3_SPEED_VECTORS,
2070 test_cipher_speed("cbc(des3_ede)", ENCRYPT, sec,
2071 des3_speed_template, DES3_SPEED_VECTORS,
2073 test_cipher_speed("cbc(des3_ede)", DECRYPT, sec,
2074 des3_speed_template, DES3_SPEED_VECTORS,
2076 test_cipher_speed("ctr(des3_ede)", ENCRYPT, sec,
2077 des3_speed_template, DES3_SPEED_VECTORS,
2079 test_cipher_speed("ctr(des3_ede)", DECRYPT, sec,
2080 des3_speed_template, DES3_SPEED_VECTORS,
2085 test_cipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0,
2086 speed_template_16_24_32);
2087 test_cipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0,
2088 speed_template_16_24_32);
2089 test_cipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0,
2090 speed_template_16_24_32);
2091 test_cipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0,
2092 speed_template_16_24_32);
2093 test_cipher_speed("ctr(twofish)", ENCRYPT, sec, NULL, 0,
2094 speed_template_16_24_32);
2095 test_cipher_speed("ctr(twofish)", DECRYPT, sec, NULL, 0,
2096 speed_template_16_24_32);
2097 test_cipher_speed("lrw(twofish)", ENCRYPT, sec, NULL, 0,
2098 speed_template_32_40_48);
2099 test_cipher_speed("lrw(twofish)", DECRYPT, sec, NULL, 0,
2100 speed_template_32_40_48);
2101 test_cipher_speed("xts(twofish)", ENCRYPT, sec, NULL, 0,
2102 speed_template_32_48_64);
2103 test_cipher_speed("xts(twofish)", DECRYPT, sec, NULL, 0,
2104 speed_template_32_48_64);
2108 test_cipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0,
2109 speed_template_8_32);
2110 test_cipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0,
2111 speed_template_8_32);
2112 test_cipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0,
2113 speed_template_8_32);
2114 test_cipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0,
2115 speed_template_8_32);
2116 test_cipher_speed("ctr(blowfish)", ENCRYPT, sec, NULL, 0,
2117 speed_template_8_32);
2118 test_cipher_speed("ctr(blowfish)", DECRYPT, sec, NULL, 0,
2119 speed_template_8_32);
2123 test_cipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0,
2125 test_cipher_speed("ecb(des)", DECRYPT, sec, NULL, 0,
2127 test_cipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0,
2129 test_cipher_speed("cbc(des)", DECRYPT, sec, NULL, 0,
2134 test_cipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0,
2135 speed_template_16_24_32);
2136 test_cipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0,
2137 speed_template_16_24_32);
2138 test_cipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0,
2139 speed_template_16_24_32);
2140 test_cipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
2141 speed_template_16_24_32);
2142 test_cipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0,
2143 speed_template_16_24_32);
2144 test_cipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0,
2145 speed_template_16_24_32);
2146 test_cipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0,
2147 speed_template_32_40_48);
2148 test_cipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0,
2149 speed_template_32_40_48);
2150 test_cipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0,
2151 speed_template_32_48_64);
2152 test_cipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0,
2153 speed_template_32_48_64);
2157 test_cipher_speed("salsa20", ENCRYPT, sec, NULL, 0,
2158 speed_template_16_32);
2162 test_cipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0,
2163 speed_template_16_32);
2164 test_cipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0,
2165 speed_template_16_32);
2166 test_cipher_speed("cbc(serpent)", ENCRYPT, sec, NULL, 0,
2167 speed_template_16_32);
2168 test_cipher_speed("cbc(serpent)", DECRYPT, sec, NULL, 0,
2169 speed_template_16_32);
2170 test_cipher_speed("ctr(serpent)", ENCRYPT, sec, NULL, 0,
2171 speed_template_16_32);
2172 test_cipher_speed("ctr(serpent)", DECRYPT, sec, NULL, 0,
2173 speed_template_16_32);
2174 test_cipher_speed("lrw(serpent)", ENCRYPT, sec, NULL, 0,
2175 speed_template_32_48);
2176 test_cipher_speed("lrw(serpent)", DECRYPT, sec, NULL, 0,
2177 speed_template_32_48);
2178 test_cipher_speed("xts(serpent)", ENCRYPT, sec, NULL, 0,
2179 speed_template_32_64);
2180 test_cipher_speed("xts(serpent)", DECRYPT, sec, NULL, 0,
2181 speed_template_32_64);
2185 test_cipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0,
2190 test_cipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0,
2191 speed_template_8_16);
2192 test_cipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0,
2193 speed_template_8_16);
2194 test_cipher_speed("cbc(cast5)", ENCRYPT, sec, NULL, 0,
2195 speed_template_8_16);
2196 test_cipher_speed("cbc(cast5)", DECRYPT, sec, NULL, 0,
2197 speed_template_8_16);
2198 test_cipher_speed("ctr(cast5)", ENCRYPT, sec, NULL, 0,
2199 speed_template_8_16);
2200 test_cipher_speed("ctr(cast5)", DECRYPT, sec, NULL, 0,
2201 speed_template_8_16);
2205 test_cipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0,
2206 speed_template_16_32);
2207 test_cipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0,
2208 speed_template_16_32);
2209 test_cipher_speed("cbc(cast6)", ENCRYPT, sec, NULL, 0,
2210 speed_template_16_32);
2211 test_cipher_speed("cbc(cast6)", DECRYPT, sec, NULL, 0,
2212 speed_template_16_32);
2213 test_cipher_speed("ctr(cast6)", ENCRYPT, sec, NULL, 0,
2214 speed_template_16_32);
2215 test_cipher_speed("ctr(cast6)", DECRYPT, sec, NULL, 0,
2216 speed_template_16_32);
2217 test_cipher_speed("lrw(cast6)", ENCRYPT, sec, NULL, 0,
2218 speed_template_32_48);
2219 test_cipher_speed("lrw(cast6)", DECRYPT, sec, NULL, 0,
2220 speed_template_32_48);
2221 test_cipher_speed("xts(cast6)", ENCRYPT, sec, NULL, 0,
2222 speed_template_32_64);
2223 test_cipher_speed("xts(cast6)", DECRYPT, sec, NULL, 0,
2224 speed_template_32_64);
2228 test_aead_speed("rfc4106(gcm(aes))", ENCRYPT, sec,
2229 NULL, 0, 16, 16, aead_speed_template_20);
2230 test_aead_speed("gcm(aes)", ENCRYPT, sec,
2231 NULL, 0, 16, 8, speed_template_16_24_32);
2232 test_aead_speed("rfc4106(gcm(aes))", DECRYPT, sec,
2233 NULL, 0, 16, 16, aead_speed_template_20);
2234 test_aead_speed("gcm(aes)", DECRYPT, sec,
2235 NULL, 0, 16, 8, speed_template_16_24_32);
2239 test_aead_speed("rfc4309(ccm(aes))", ENCRYPT, sec,
2240 NULL, 0, 16, 16, aead_speed_template_19);
2241 test_aead_speed("rfc4309(ccm(aes))", DECRYPT, sec,
2242 NULL, 0, 16, 16, aead_speed_template_19);
2246 test_aead_speed("rfc7539esp(chacha20,poly1305)", ENCRYPT, sec,
2247 NULL, 0, 16, 8, aead_speed_template_36);
2248 test_aead_speed("rfc7539esp(chacha20,poly1305)", DECRYPT, sec,
2249 NULL, 0, 16, 8, aead_speed_template_36);
2253 test_cipher_speed("chacha20", ENCRYPT, sec, NULL, 0,
2258 test_mb_aead_speed("rfc4106(gcm(aes))", ENCRYPT, sec, NULL,
2259 0, 16, 16, aead_speed_template_20, num_mb);
2260 test_mb_aead_speed("gcm(aes)", ENCRYPT, sec, NULL, 0, 16, 8,
2261 speed_template_16_24_32, num_mb);
2262 test_mb_aead_speed("rfc4106(gcm(aes))", DECRYPT, sec, NULL,
2263 0, 16, 16, aead_speed_template_20, num_mb);
2264 test_mb_aead_speed("gcm(aes)", DECRYPT, sec, NULL, 0, 16, 8,
2265 speed_template_16_24_32, num_mb);
2269 test_mb_aead_speed("rfc4309(ccm(aes))", ENCRYPT, sec, NULL, 0,
2270 16, 16, aead_speed_template_19, num_mb);
2271 test_mb_aead_speed("rfc4309(ccm(aes))", DECRYPT, sec, NULL, 0,
2272 16, 16, aead_speed_template_19, num_mb);
2276 test_mb_aead_speed("rfc7539esp(chacha20,poly1305)", ENCRYPT,
2277 sec, NULL, 0, 16, 8, aead_speed_template_36,
2279 test_mb_aead_speed("rfc7539esp(chacha20,poly1305)", DECRYPT,
2280 sec, NULL, 0, 16, 8, aead_speed_template_36,
2286 test_hash_speed(alg, sec, generic_hash_speed_template);
2291 test_hash_speed("md4", sec, generic_hash_speed_template);
2292 if (mode > 300 && mode < 400) break;
2295 test_hash_speed("md5", sec, generic_hash_speed_template);
2296 if (mode > 300 && mode < 400) break;
2299 test_hash_speed("sha1", sec, generic_hash_speed_template);
2300 if (mode > 300 && mode < 400) break;
2303 test_hash_speed("sha256", sec, generic_hash_speed_template);
2304 if (mode > 300 && mode < 400) break;
2307 test_hash_speed("sha384", sec, generic_hash_speed_template);
2308 if (mode > 300 && mode < 400) break;
2311 test_hash_speed("sha512", sec, generic_hash_speed_template);
2312 if (mode > 300 && mode < 400) break;
2315 test_hash_speed("wp256", sec, generic_hash_speed_template);
2316 if (mode > 300 && mode < 400) break;
2319 test_hash_speed("wp384", sec, generic_hash_speed_template);
2320 if (mode > 300 && mode < 400) break;
2323 test_hash_speed("wp512", sec, generic_hash_speed_template);
2324 if (mode > 300 && mode < 400) break;
2327 test_hash_speed("tgr128", sec, generic_hash_speed_template);
2328 if (mode > 300 && mode < 400) break;
2331 test_hash_speed("tgr160", sec, generic_hash_speed_template);
2332 if (mode > 300 && mode < 400) break;
2335 test_hash_speed("tgr192", sec, generic_hash_speed_template);
2336 if (mode > 300 && mode < 400) break;
2339 test_hash_speed("sha224", sec, generic_hash_speed_template);
2340 if (mode > 300 && mode < 400) break;
2343 test_hash_speed("rmd128", sec, generic_hash_speed_template);
2344 if (mode > 300 && mode < 400) break;
2347 test_hash_speed("rmd160", sec, generic_hash_speed_template);
2348 if (mode > 300 && mode < 400) break;
2351 test_hash_speed("rmd256", sec, generic_hash_speed_template);
2352 if (mode > 300 && mode < 400) break;
2355 test_hash_speed("rmd320", sec, generic_hash_speed_template);
2356 if (mode > 300 && mode < 400) break;
2359 test_hash_speed("ghash-generic", sec, hash_speed_template_16);
2360 if (mode > 300 && mode < 400) break;
2363 test_hash_speed("crc32c", sec, generic_hash_speed_template);
2364 if (mode > 300 && mode < 400) break;
2367 test_hash_speed("crct10dif", sec, generic_hash_speed_template);
2368 if (mode > 300 && mode < 400) break;
2371 test_hash_speed("poly1305", sec, poly1305_speed_template);
2372 if (mode > 300 && mode < 400) break;
2375 test_hash_speed("sha3-224", sec, generic_hash_speed_template);
2376 if (mode > 300 && mode < 400) break;
2379 test_hash_speed("sha3-256", sec, generic_hash_speed_template);
2380 if (mode > 300 && mode < 400) break;
2383 test_hash_speed("sha3-384", sec, generic_hash_speed_template);
2384 if (mode > 300 && mode < 400) break;
2387 test_hash_speed("sha3-512", sec, generic_hash_speed_template);
2388 if (mode > 300 && mode < 400) break;
2391 test_hash_speed("sm3", sec, generic_hash_speed_template);
2392 if (mode > 300 && mode < 400) break;
2399 test_ahash_speed(alg, sec, generic_hash_speed_template);
2404 test_ahash_speed("md4", sec, generic_hash_speed_template);
2405 if (mode > 400 && mode < 500) break;
2408 test_ahash_speed("md5", sec, generic_hash_speed_template);
2409 if (mode > 400 && mode < 500) break;
2412 test_ahash_speed("sha1", sec, generic_hash_speed_template);
2413 if (mode > 400 && mode < 500) break;
2416 test_ahash_speed("sha256", sec, generic_hash_speed_template);
2417 if (mode > 400 && mode < 500) break;
2420 test_ahash_speed("sha384", sec, generic_hash_speed_template);
2421 if (mode > 400 && mode < 500) break;
2424 test_ahash_speed("sha512", sec, generic_hash_speed_template);
2425 if (mode > 400 && mode < 500) break;
2428 test_ahash_speed("wp256", sec, generic_hash_speed_template);
2429 if (mode > 400 && mode < 500) break;
2432 test_ahash_speed("wp384", sec, generic_hash_speed_template);
2433 if (mode > 400 && mode < 500) break;
2436 test_ahash_speed("wp512", sec, generic_hash_speed_template);
2437 if (mode > 400 && mode < 500) break;
2440 test_ahash_speed("tgr128", sec, generic_hash_speed_template);
2441 if (mode > 400 && mode < 500) break;
2444 test_ahash_speed("tgr160", sec, generic_hash_speed_template);
2445 if (mode > 400 && mode < 500) break;
2448 test_ahash_speed("tgr192", sec, generic_hash_speed_template);
2449 if (mode > 400 && mode < 500) break;
2452 test_ahash_speed("sha224", sec, generic_hash_speed_template);
2453 if (mode > 400 && mode < 500) break;
2456 test_ahash_speed("rmd128", sec, generic_hash_speed_template);
2457 if (mode > 400 && mode < 500) break;
2460 test_ahash_speed("rmd160", sec, generic_hash_speed_template);
2461 if (mode > 400 && mode < 500) break;
2464 test_ahash_speed("rmd256", sec, generic_hash_speed_template);
2465 if (mode > 400 && mode < 500) break;
2468 test_ahash_speed("rmd320", sec, generic_hash_speed_template);
2469 if (mode > 400 && mode < 500) break;
2472 test_ahash_speed("sha3-224", sec, generic_hash_speed_template);
2473 if (mode > 400 && mode < 500) break;
2476 test_ahash_speed("sha3-256", sec, generic_hash_speed_template);
2477 if (mode > 400 && mode < 500) break;
2480 test_ahash_speed("sha3-384", sec, generic_hash_speed_template);
2481 if (mode > 400 && mode < 500) break;
2484 test_ahash_speed("sha3-512", sec, generic_hash_speed_template);
2485 if (mode > 400 && mode < 500) break;
2488 test_mb_ahash_speed("sha1", sec, generic_hash_speed_template,
2490 if (mode > 400 && mode < 500) break;
2493 test_mb_ahash_speed("sha256", sec, generic_hash_speed_template,
2495 if (mode > 400 && mode < 500) break;
2498 test_mb_ahash_speed("sha512", sec, generic_hash_speed_template,
2500 if (mode > 400 && mode < 500) break;
2503 test_mb_ahash_speed("sm3", sec, generic_hash_speed_template,
2505 if (mode > 400 && mode < 500) break;
2511 test_acipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
2512 speed_template_16_24_32);
2513 test_acipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0,
2514 speed_template_16_24_32);
2515 test_acipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0,
2516 speed_template_16_24_32);
2517 test_acipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0,
2518 speed_template_16_24_32);
2519 test_acipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0,
2520 speed_template_32_40_48);
2521 test_acipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0,
2522 speed_template_32_40_48);
2523 test_acipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0,
2524 speed_template_32_64);
2525 test_acipher_speed("xts(aes)", DECRYPT, sec, NULL, 0,
2526 speed_template_32_64);
2527 test_acipher_speed("cts(cbc(aes))", ENCRYPT, sec, NULL, 0,
2528 speed_template_16_24_32);
2529 test_acipher_speed("cts(cbc(aes))", DECRYPT, sec, NULL, 0,
2530 speed_template_16_24_32);
2531 test_acipher_speed("ctr(aes)", ENCRYPT, sec, NULL, 0,
2532 speed_template_16_24_32);
2533 test_acipher_speed("ctr(aes)", DECRYPT, sec, NULL, 0,
2534 speed_template_16_24_32);
2535 test_acipher_speed("cfb(aes)", ENCRYPT, sec, NULL, 0,
2536 speed_template_16_24_32);
2537 test_acipher_speed("cfb(aes)", DECRYPT, sec, NULL, 0,
2538 speed_template_16_24_32);
2539 test_acipher_speed("ofb(aes)", ENCRYPT, sec, NULL, 0,
2540 speed_template_16_24_32);
2541 test_acipher_speed("ofb(aes)", DECRYPT, sec, NULL, 0,
2542 speed_template_16_24_32);
2543 test_acipher_speed("rfc3686(ctr(aes))", ENCRYPT, sec, NULL, 0,
2544 speed_template_20_28_36);
2545 test_acipher_speed("rfc3686(ctr(aes))", DECRYPT, sec, NULL, 0,
2546 speed_template_20_28_36);
2550 test_acipher_speed("ecb(des3_ede)", ENCRYPT, sec,
2551 des3_speed_template, DES3_SPEED_VECTORS,
2553 test_acipher_speed("ecb(des3_ede)", DECRYPT, sec,
2554 des3_speed_template, DES3_SPEED_VECTORS,
2556 test_acipher_speed("cbc(des3_ede)", ENCRYPT, sec,
2557 des3_speed_template, DES3_SPEED_VECTORS,
2559 test_acipher_speed("cbc(des3_ede)", DECRYPT, sec,
2560 des3_speed_template, DES3_SPEED_VECTORS,
2562 test_acipher_speed("cfb(des3_ede)", ENCRYPT, sec,
2563 des3_speed_template, DES3_SPEED_VECTORS,
2565 test_acipher_speed("cfb(des3_ede)", DECRYPT, sec,
2566 des3_speed_template, DES3_SPEED_VECTORS,
2568 test_acipher_speed("ofb(des3_ede)", ENCRYPT, sec,
2569 des3_speed_template, DES3_SPEED_VECTORS,
2571 test_acipher_speed("ofb(des3_ede)", DECRYPT, sec,
2572 des3_speed_template, DES3_SPEED_VECTORS,
2577 test_acipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0,
2579 test_acipher_speed("ecb(des)", DECRYPT, sec, NULL, 0,
2581 test_acipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0,
2583 test_acipher_speed("cbc(des)", DECRYPT, sec, NULL, 0,
2585 test_acipher_speed("cfb(des)", ENCRYPT, sec, NULL, 0,
2587 test_acipher_speed("cfb(des)", DECRYPT, sec, NULL, 0,
2589 test_acipher_speed("ofb(des)", ENCRYPT, sec, NULL, 0,
2591 test_acipher_speed("ofb(des)", DECRYPT, sec, NULL, 0,
2596 test_acipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0,
2597 speed_template_16_32);
2598 test_acipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0,
2599 speed_template_16_32);
2600 test_acipher_speed("cbc(serpent)", ENCRYPT, sec, NULL, 0,
2601 speed_template_16_32);
2602 test_acipher_speed("cbc(serpent)", DECRYPT, sec, NULL, 0,
2603 speed_template_16_32);
2604 test_acipher_speed("ctr(serpent)", ENCRYPT, sec, NULL, 0,
2605 speed_template_16_32);
2606 test_acipher_speed("ctr(serpent)", DECRYPT, sec, NULL, 0,
2607 speed_template_16_32);
2608 test_acipher_speed("lrw(serpent)", ENCRYPT, sec, NULL, 0,
2609 speed_template_32_48);
2610 test_acipher_speed("lrw(serpent)", DECRYPT, sec, NULL, 0,
2611 speed_template_32_48);
2612 test_acipher_speed("xts(serpent)", ENCRYPT, sec, NULL, 0,
2613 speed_template_32_64);
2614 test_acipher_speed("xts(serpent)", DECRYPT, sec, NULL, 0,
2615 speed_template_32_64);
2619 test_acipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0,
2620 speed_template_16_24_32);
2621 test_acipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0,
2622 speed_template_16_24_32);
2623 test_acipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0,
2624 speed_template_16_24_32);
2625 test_acipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0,
2626 speed_template_16_24_32);
2627 test_acipher_speed("ctr(twofish)", ENCRYPT, sec, NULL, 0,
2628 speed_template_16_24_32);
2629 test_acipher_speed("ctr(twofish)", DECRYPT, sec, NULL, 0,
2630 speed_template_16_24_32);
2631 test_acipher_speed("lrw(twofish)", ENCRYPT, sec, NULL, 0,
2632 speed_template_32_40_48);
2633 test_acipher_speed("lrw(twofish)", DECRYPT, sec, NULL, 0,
2634 speed_template_32_40_48);
2635 test_acipher_speed("xts(twofish)", ENCRYPT, sec, NULL, 0,
2636 speed_template_32_48_64);
2637 test_acipher_speed("xts(twofish)", DECRYPT, sec, NULL, 0,
2638 speed_template_32_48_64);
2642 test_acipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0,
2647 test_acipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0,
2648 speed_template_8_16);
2649 test_acipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0,
2650 speed_template_8_16);
2651 test_acipher_speed("cbc(cast5)", ENCRYPT, sec, NULL, 0,
2652 speed_template_8_16);
2653 test_acipher_speed("cbc(cast5)", DECRYPT, sec, NULL, 0,
2654 speed_template_8_16);
2655 test_acipher_speed("ctr(cast5)", ENCRYPT, sec, NULL, 0,
2656 speed_template_8_16);
2657 test_acipher_speed("ctr(cast5)", DECRYPT, sec, NULL, 0,
2658 speed_template_8_16);
2662 test_acipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0,
2663 speed_template_16_32);
2664 test_acipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0,
2665 speed_template_16_32);
2666 test_acipher_speed("cbc(cast6)", ENCRYPT, sec, NULL, 0,
2667 speed_template_16_32);
2668 test_acipher_speed("cbc(cast6)", DECRYPT, sec, NULL, 0,
2669 speed_template_16_32);
2670 test_acipher_speed("ctr(cast6)", ENCRYPT, sec, NULL, 0,
2671 speed_template_16_32);
2672 test_acipher_speed("ctr(cast6)", DECRYPT, sec, NULL, 0,
2673 speed_template_16_32);
2674 test_acipher_speed("lrw(cast6)", ENCRYPT, sec, NULL, 0,
2675 speed_template_32_48);
2676 test_acipher_speed("lrw(cast6)", DECRYPT, sec, NULL, 0,
2677 speed_template_32_48);
2678 test_acipher_speed("xts(cast6)", ENCRYPT, sec, NULL, 0,
2679 speed_template_32_64);
2680 test_acipher_speed("xts(cast6)", DECRYPT, sec, NULL, 0,
2681 speed_template_32_64);
2685 test_acipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0,
2686 speed_template_16_32);
2687 test_acipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0,
2688 speed_template_16_32);
2689 test_acipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0,
2690 speed_template_16_32);
2691 test_acipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
2692 speed_template_16_32);
2693 test_acipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0,
2694 speed_template_16_32);
2695 test_acipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0,
2696 speed_template_16_32);
2697 test_acipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0,
2698 speed_template_32_48);
2699 test_acipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0,
2700 speed_template_32_48);
2701 test_acipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0,
2702 speed_template_32_64);
2703 test_acipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0,
2704 speed_template_32_64);
2708 test_acipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0,
2709 speed_template_8_32);
2710 test_acipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0,
2711 speed_template_8_32);
2712 test_acipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0,
2713 speed_template_8_32);
2714 test_acipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0,
2715 speed_template_8_32);
2716 test_acipher_speed("ctr(blowfish)", ENCRYPT, sec, NULL, 0,
2717 speed_template_8_32);
2718 test_acipher_speed("ctr(blowfish)", DECRYPT, sec, NULL, 0,
2719 speed_template_8_32);
2723 test_mb_skcipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
2724 speed_template_16_24_32, num_mb);
2725 test_mb_skcipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0,
2726 speed_template_16_24_32, num_mb);
2727 test_mb_skcipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0,
2728 speed_template_16_24_32, num_mb);
2729 test_mb_skcipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0,
2730 speed_template_16_24_32, num_mb);
2731 test_mb_skcipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0,
2732 speed_template_32_40_48, num_mb);
2733 test_mb_skcipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0,
2734 speed_template_32_40_48, num_mb);
2735 test_mb_skcipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0,
2736 speed_template_32_64, num_mb);
2737 test_mb_skcipher_speed("xts(aes)", DECRYPT, sec, NULL, 0,
2738 speed_template_32_64, num_mb);
2739 test_mb_skcipher_speed("cts(cbc(aes))", ENCRYPT, sec, NULL, 0,
2740 speed_template_16_24_32, num_mb);
2741 test_mb_skcipher_speed("cts(cbc(aes))", DECRYPT, sec, NULL, 0,
2742 speed_template_16_24_32, num_mb);
2743 test_mb_skcipher_speed("ctr(aes)", ENCRYPT, sec, NULL, 0,
2744 speed_template_16_24_32, num_mb);
2745 test_mb_skcipher_speed("ctr(aes)", DECRYPT, sec, NULL, 0,
2746 speed_template_16_24_32, num_mb);
2747 test_mb_skcipher_speed("cfb(aes)", ENCRYPT, sec, NULL, 0,
2748 speed_template_16_24_32, num_mb);
2749 test_mb_skcipher_speed("cfb(aes)", DECRYPT, sec, NULL, 0,
2750 speed_template_16_24_32, num_mb);
2751 test_mb_skcipher_speed("ofb(aes)", ENCRYPT, sec, NULL, 0,
2752 speed_template_16_24_32, num_mb);
2753 test_mb_skcipher_speed("ofb(aes)", DECRYPT, sec, NULL, 0,
2754 speed_template_16_24_32, num_mb);
2755 test_mb_skcipher_speed("rfc3686(ctr(aes))", ENCRYPT, sec, NULL,
2756 0, speed_template_20_28_36, num_mb);
2757 test_mb_skcipher_speed("rfc3686(ctr(aes))", DECRYPT, sec, NULL,
2758 0, speed_template_20_28_36, num_mb);
2762 test_mb_skcipher_speed("ecb(des3_ede)", ENCRYPT, sec,
2763 des3_speed_template, DES3_SPEED_VECTORS,
2764 speed_template_24, num_mb);
2765 test_mb_skcipher_speed("ecb(des3_ede)", DECRYPT, sec,
2766 des3_speed_template, DES3_SPEED_VECTORS,
2767 speed_template_24, num_mb);
2768 test_mb_skcipher_speed("cbc(des3_ede)", ENCRYPT, sec,
2769 des3_speed_template, DES3_SPEED_VECTORS,
2770 speed_template_24, num_mb);
2771 test_mb_skcipher_speed("cbc(des3_ede)", DECRYPT, sec,
2772 des3_speed_template, DES3_SPEED_VECTORS,
2773 speed_template_24, num_mb);
2774 test_mb_skcipher_speed("cfb(des3_ede)", ENCRYPT, sec,
2775 des3_speed_template, DES3_SPEED_VECTORS,
2776 speed_template_24, num_mb);
2777 test_mb_skcipher_speed("cfb(des3_ede)", DECRYPT, sec,
2778 des3_speed_template, DES3_SPEED_VECTORS,
2779 speed_template_24, num_mb);
2780 test_mb_skcipher_speed("ofb(des3_ede)", ENCRYPT, sec,
2781 des3_speed_template, DES3_SPEED_VECTORS,
2782 speed_template_24, num_mb);
2783 test_mb_skcipher_speed("ofb(des3_ede)", DECRYPT, sec,
2784 des3_speed_template, DES3_SPEED_VECTORS,
2785 speed_template_24, num_mb);
2789 test_mb_skcipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0,
2790 speed_template_8, num_mb);
2791 test_mb_skcipher_speed("ecb(des)", DECRYPT, sec, NULL, 0,
2792 speed_template_8, num_mb);
2793 test_mb_skcipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0,
2794 speed_template_8, num_mb);
2795 test_mb_skcipher_speed("cbc(des)", DECRYPT, sec, NULL, 0,
2796 speed_template_8, num_mb);
2797 test_mb_skcipher_speed("cfb(des)", ENCRYPT, sec, NULL, 0,
2798 speed_template_8, num_mb);
2799 test_mb_skcipher_speed("cfb(des)", DECRYPT, sec, NULL, 0,
2800 speed_template_8, num_mb);
2801 test_mb_skcipher_speed("ofb(des)", ENCRYPT, sec, NULL, 0,
2802 speed_template_8, num_mb);
2803 test_mb_skcipher_speed("ofb(des)", DECRYPT, sec, NULL, 0,
2804 speed_template_8, num_mb);
2808 test_mb_skcipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0,
2809 speed_template_16_32, num_mb);
2810 test_mb_skcipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0,
2811 speed_template_16_32, num_mb);
2812 test_mb_skcipher_speed("cbc(serpent)", ENCRYPT, sec, NULL, 0,
2813 speed_template_16_32, num_mb);
2814 test_mb_skcipher_speed("cbc(serpent)", DECRYPT, sec, NULL, 0,
2815 speed_template_16_32, num_mb);
2816 test_mb_skcipher_speed("ctr(serpent)", ENCRYPT, sec, NULL, 0,
2817 speed_template_16_32, num_mb);
2818 test_mb_skcipher_speed("ctr(serpent)", DECRYPT, sec, NULL, 0,
2819 speed_template_16_32, num_mb);
2820 test_mb_skcipher_speed("lrw(serpent)", ENCRYPT, sec, NULL, 0,
2821 speed_template_32_48, num_mb);
2822 test_mb_skcipher_speed("lrw(serpent)", DECRYPT, sec, NULL, 0,
2823 speed_template_32_48, num_mb);
2824 test_mb_skcipher_speed("xts(serpent)", ENCRYPT, sec, NULL, 0,
2825 speed_template_32_64, num_mb);
2826 test_mb_skcipher_speed("xts(serpent)", DECRYPT, sec, NULL, 0,
2827 speed_template_32_64, num_mb);
2831 test_mb_skcipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0,
2832 speed_template_16_24_32, num_mb);
2833 test_mb_skcipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0,
2834 speed_template_16_24_32, num_mb);
2835 test_mb_skcipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0,
2836 speed_template_16_24_32, num_mb);
2837 test_mb_skcipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0,
2838 speed_template_16_24_32, num_mb);
2839 test_mb_skcipher_speed("ctr(twofish)", ENCRYPT, sec, NULL, 0,
2840 speed_template_16_24_32, num_mb);
2841 test_mb_skcipher_speed("ctr(twofish)", DECRYPT, sec, NULL, 0,
2842 speed_template_16_24_32, num_mb);
2843 test_mb_skcipher_speed("lrw(twofish)", ENCRYPT, sec, NULL, 0,
2844 speed_template_32_40_48, num_mb);
2845 test_mb_skcipher_speed("lrw(twofish)", DECRYPT, sec, NULL, 0,
2846 speed_template_32_40_48, num_mb);
2847 test_mb_skcipher_speed("xts(twofish)", ENCRYPT, sec, NULL, 0,
2848 speed_template_32_48_64, num_mb);
2849 test_mb_skcipher_speed("xts(twofish)", DECRYPT, sec, NULL, 0,
2850 speed_template_32_48_64, num_mb);
2854 test_mb_skcipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0,
2855 speed_template_8, num_mb);
2859 test_mb_skcipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0,
2860 speed_template_8_16, num_mb);
2861 test_mb_skcipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0,
2862 speed_template_8_16, num_mb);
2863 test_mb_skcipher_speed("cbc(cast5)", ENCRYPT, sec, NULL, 0,
2864 speed_template_8_16, num_mb);
2865 test_mb_skcipher_speed("cbc(cast5)", DECRYPT, sec, NULL, 0,
2866 speed_template_8_16, num_mb);
2867 test_mb_skcipher_speed("ctr(cast5)", ENCRYPT, sec, NULL, 0,
2868 speed_template_8_16, num_mb);
2869 test_mb_skcipher_speed("ctr(cast5)", DECRYPT, sec, NULL, 0,
2870 speed_template_8_16, num_mb);
2874 test_mb_skcipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0,
2875 speed_template_16_32, num_mb);
2876 test_mb_skcipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0,
2877 speed_template_16_32, num_mb);
2878 test_mb_skcipher_speed("cbc(cast6)", ENCRYPT, sec, NULL, 0,
2879 speed_template_16_32, num_mb);
2880 test_mb_skcipher_speed("cbc(cast6)", DECRYPT, sec, NULL, 0,
2881 speed_template_16_32, num_mb);
2882 test_mb_skcipher_speed("ctr(cast6)", ENCRYPT, sec, NULL, 0,
2883 speed_template_16_32, num_mb);
2884 test_mb_skcipher_speed("ctr(cast6)", DECRYPT, sec, NULL, 0,
2885 speed_template_16_32, num_mb);
2886 test_mb_skcipher_speed("lrw(cast6)", ENCRYPT, sec, NULL, 0,
2887 speed_template_32_48, num_mb);
2888 test_mb_skcipher_speed("lrw(cast6)", DECRYPT, sec, NULL, 0,
2889 speed_template_32_48, num_mb);
2890 test_mb_skcipher_speed("xts(cast6)", ENCRYPT, sec, NULL, 0,
2891 speed_template_32_64, num_mb);
2892 test_mb_skcipher_speed("xts(cast6)", DECRYPT, sec, NULL, 0,
2893 speed_template_32_64, num_mb);
2897 test_mb_skcipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0,
2898 speed_template_16_32, num_mb);
2899 test_mb_skcipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0,
2900 speed_template_16_32, num_mb);
2901 test_mb_skcipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0,
2902 speed_template_16_32, num_mb);
2903 test_mb_skcipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
2904 speed_template_16_32, num_mb);
2905 test_mb_skcipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0,
2906 speed_template_16_32, num_mb);
2907 test_mb_skcipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0,
2908 speed_template_16_32, num_mb);
2909 test_mb_skcipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0,
2910 speed_template_32_48, num_mb);
2911 test_mb_skcipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0,
2912 speed_template_32_48, num_mb);
2913 test_mb_skcipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0,
2914 speed_template_32_64, num_mb);
2915 test_mb_skcipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0,
2916 speed_template_32_64, num_mb);
2920 test_mb_skcipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0,
2921 speed_template_8_32, num_mb);
2922 test_mb_skcipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0,
2923 speed_template_8_32, num_mb);
2924 test_mb_skcipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0,
2925 speed_template_8_32, num_mb);
2926 test_mb_skcipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0,
2927 speed_template_8_32, num_mb);
2928 test_mb_skcipher_speed("ctr(blowfish)", ENCRYPT, sec, NULL, 0,
2929 speed_template_8_32, num_mb);
2930 test_mb_skcipher_speed("ctr(blowfish)", DECRYPT, sec, NULL, 0,
2931 speed_template_8_32, num_mb);
2942 static int __init tcrypt_mod_init(void)
2947 for (i = 0; i < TVMEMSIZE; i++) {
2948 tvmem[i] = (void *)__get_free_page(GFP_KERNEL);
2953 err = do_test(alg, type, mask, mode, num_mb);
2956 printk(KERN_ERR "tcrypt: one or more tests failed!\n");
2959 pr_debug("all tests passed\n");
2962 /* We intentionaly return -EAGAIN to prevent keeping the module,
2963 * unless we're running in fips mode. It does all its work from
2964 * init() and doesn't offer any runtime functionality, but in
2965 * the fips case, checking for a successful load is helpful.
2966 * => we don't need it in the memory, do we?
2973 for (i = 0; i < TVMEMSIZE && tvmem[i]; i++)
2974 free_page((unsigned long)tvmem[i]);
2980 * If an init function is provided, an exit function must also be provided
2981 * to allow module unload.
2983 static void __exit tcrypt_mod_fini(void) { }
2985 module_init(tcrypt_mod_init);
2986 module_exit(tcrypt_mod_fini);
2988 module_param(alg, charp, 0);
2989 module_param(type, uint, 0);
2990 module_param(mask, uint, 0);
2991 module_param(mode, int, 0);
2992 module_param(sec, uint, 0);
2993 MODULE_PARM_DESC(sec, "Length in seconds of speed tests "
2994 "(defaults to zero which uses CPU cycles instead)");
2995 module_param(num_mb, uint, 0000);
2996 MODULE_PARM_DESC(num_mb, "Number of concurrent requests to be used in mb speed tests (defaults to 8)");
2998 MODULE_LICENSE("GPL");
2999 MODULE_DESCRIPTION("Quick & dirty crypto testing module");
3000 MODULE_AUTHOR("James Morris <jmorris@intercode.com.au>");