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 ret += tcrypt_test("ecb(sm4)");
1990 test_cipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
1991 speed_template_16_24_32);
1992 test_cipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0,
1993 speed_template_16_24_32);
1994 test_cipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0,
1995 speed_template_16_24_32);
1996 test_cipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0,
1997 speed_template_16_24_32);
1998 test_cipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0,
1999 speed_template_32_40_48);
2000 test_cipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0,
2001 speed_template_32_40_48);
2002 test_cipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0,
2003 speed_template_32_64);
2004 test_cipher_speed("xts(aes)", DECRYPT, sec, NULL, 0,
2005 speed_template_32_64);
2006 test_cipher_speed("cts(cbc(aes))", ENCRYPT, sec, NULL, 0,
2007 speed_template_16_24_32);
2008 test_cipher_speed("cts(cbc(aes))", DECRYPT, sec, NULL, 0,
2009 speed_template_16_24_32);
2010 test_cipher_speed("ctr(aes)", ENCRYPT, sec, NULL, 0,
2011 speed_template_16_24_32);
2012 test_cipher_speed("ctr(aes)", DECRYPT, sec, NULL, 0,
2013 speed_template_16_24_32);
2017 test_cipher_speed("ecb(des3_ede)", ENCRYPT, sec,
2018 des3_speed_template, DES3_SPEED_VECTORS,
2020 test_cipher_speed("ecb(des3_ede)", DECRYPT, sec,
2021 des3_speed_template, DES3_SPEED_VECTORS,
2023 test_cipher_speed("cbc(des3_ede)", ENCRYPT, sec,
2024 des3_speed_template, DES3_SPEED_VECTORS,
2026 test_cipher_speed("cbc(des3_ede)", DECRYPT, sec,
2027 des3_speed_template, DES3_SPEED_VECTORS,
2029 test_cipher_speed("ctr(des3_ede)", ENCRYPT, sec,
2030 des3_speed_template, DES3_SPEED_VECTORS,
2032 test_cipher_speed("ctr(des3_ede)", DECRYPT, sec,
2033 des3_speed_template, DES3_SPEED_VECTORS,
2038 test_cipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0,
2039 speed_template_16_24_32);
2040 test_cipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0,
2041 speed_template_16_24_32);
2042 test_cipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0,
2043 speed_template_16_24_32);
2044 test_cipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0,
2045 speed_template_16_24_32);
2046 test_cipher_speed("ctr(twofish)", ENCRYPT, sec, NULL, 0,
2047 speed_template_16_24_32);
2048 test_cipher_speed("ctr(twofish)", DECRYPT, sec, NULL, 0,
2049 speed_template_16_24_32);
2050 test_cipher_speed("lrw(twofish)", ENCRYPT, sec, NULL, 0,
2051 speed_template_32_40_48);
2052 test_cipher_speed("lrw(twofish)", DECRYPT, sec, NULL, 0,
2053 speed_template_32_40_48);
2054 test_cipher_speed("xts(twofish)", ENCRYPT, sec, NULL, 0,
2055 speed_template_32_48_64);
2056 test_cipher_speed("xts(twofish)", DECRYPT, sec, NULL, 0,
2057 speed_template_32_48_64);
2061 test_cipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0,
2062 speed_template_8_32);
2063 test_cipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0,
2064 speed_template_8_32);
2065 test_cipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0,
2066 speed_template_8_32);
2067 test_cipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0,
2068 speed_template_8_32);
2069 test_cipher_speed("ctr(blowfish)", ENCRYPT, sec, NULL, 0,
2070 speed_template_8_32);
2071 test_cipher_speed("ctr(blowfish)", DECRYPT, sec, NULL, 0,
2072 speed_template_8_32);
2076 test_cipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0,
2078 test_cipher_speed("ecb(des)", DECRYPT, sec, NULL, 0,
2080 test_cipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0,
2082 test_cipher_speed("cbc(des)", DECRYPT, sec, NULL, 0,
2087 test_cipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0,
2088 speed_template_16_24_32);
2089 test_cipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0,
2090 speed_template_16_24_32);
2091 test_cipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0,
2092 speed_template_16_24_32);
2093 test_cipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
2094 speed_template_16_24_32);
2095 test_cipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0,
2096 speed_template_16_24_32);
2097 test_cipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0,
2098 speed_template_16_24_32);
2099 test_cipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0,
2100 speed_template_32_40_48);
2101 test_cipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0,
2102 speed_template_32_40_48);
2103 test_cipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0,
2104 speed_template_32_48_64);
2105 test_cipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0,
2106 speed_template_32_48_64);
2110 test_cipher_speed("salsa20", ENCRYPT, sec, NULL, 0,
2111 speed_template_16_32);
2115 test_cipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0,
2116 speed_template_16_32);
2117 test_cipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0,
2118 speed_template_16_32);
2119 test_cipher_speed("cbc(serpent)", ENCRYPT, sec, NULL, 0,
2120 speed_template_16_32);
2121 test_cipher_speed("cbc(serpent)", DECRYPT, sec, NULL, 0,
2122 speed_template_16_32);
2123 test_cipher_speed("ctr(serpent)", ENCRYPT, sec, NULL, 0,
2124 speed_template_16_32);
2125 test_cipher_speed("ctr(serpent)", DECRYPT, sec, NULL, 0,
2126 speed_template_16_32);
2127 test_cipher_speed("lrw(serpent)", ENCRYPT, sec, NULL, 0,
2128 speed_template_32_48);
2129 test_cipher_speed("lrw(serpent)", DECRYPT, sec, NULL, 0,
2130 speed_template_32_48);
2131 test_cipher_speed("xts(serpent)", ENCRYPT, sec, NULL, 0,
2132 speed_template_32_64);
2133 test_cipher_speed("xts(serpent)", DECRYPT, sec, NULL, 0,
2134 speed_template_32_64);
2138 test_cipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0,
2143 test_cipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0,
2144 speed_template_8_16);
2145 test_cipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0,
2146 speed_template_8_16);
2147 test_cipher_speed("cbc(cast5)", ENCRYPT, sec, NULL, 0,
2148 speed_template_8_16);
2149 test_cipher_speed("cbc(cast5)", DECRYPT, sec, NULL, 0,
2150 speed_template_8_16);
2151 test_cipher_speed("ctr(cast5)", ENCRYPT, sec, NULL, 0,
2152 speed_template_8_16);
2153 test_cipher_speed("ctr(cast5)", DECRYPT, sec, NULL, 0,
2154 speed_template_8_16);
2158 test_cipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0,
2159 speed_template_16_32);
2160 test_cipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0,
2161 speed_template_16_32);
2162 test_cipher_speed("cbc(cast6)", ENCRYPT, sec, NULL, 0,
2163 speed_template_16_32);
2164 test_cipher_speed("cbc(cast6)", DECRYPT, sec, NULL, 0,
2165 speed_template_16_32);
2166 test_cipher_speed("ctr(cast6)", ENCRYPT, sec, NULL, 0,
2167 speed_template_16_32);
2168 test_cipher_speed("ctr(cast6)", DECRYPT, sec, NULL, 0,
2169 speed_template_16_32);
2170 test_cipher_speed("lrw(cast6)", ENCRYPT, sec, NULL, 0,
2171 speed_template_32_48);
2172 test_cipher_speed("lrw(cast6)", DECRYPT, sec, NULL, 0,
2173 speed_template_32_48);
2174 test_cipher_speed("xts(cast6)", ENCRYPT, sec, NULL, 0,
2175 speed_template_32_64);
2176 test_cipher_speed("xts(cast6)", DECRYPT, sec, NULL, 0,
2177 speed_template_32_64);
2181 test_aead_speed("rfc4106(gcm(aes))", ENCRYPT, sec,
2182 NULL, 0, 16, 16, aead_speed_template_20);
2183 test_aead_speed("gcm(aes)", ENCRYPT, sec,
2184 NULL, 0, 16, 8, speed_template_16_24_32);
2185 test_aead_speed("rfc4106(gcm(aes))", DECRYPT, sec,
2186 NULL, 0, 16, 16, aead_speed_template_20);
2187 test_aead_speed("gcm(aes)", DECRYPT, sec,
2188 NULL, 0, 16, 8, speed_template_16_24_32);
2192 test_aead_speed("rfc4309(ccm(aes))", ENCRYPT, sec,
2193 NULL, 0, 16, 16, aead_speed_template_19);
2194 test_aead_speed("rfc4309(ccm(aes))", DECRYPT, sec,
2195 NULL, 0, 16, 16, aead_speed_template_19);
2199 test_aead_speed("rfc7539esp(chacha20,poly1305)", ENCRYPT, sec,
2200 NULL, 0, 16, 8, aead_speed_template_36);
2201 test_aead_speed("rfc7539esp(chacha20,poly1305)", DECRYPT, sec,
2202 NULL, 0, 16, 8, aead_speed_template_36);
2206 test_cipher_speed("chacha20", ENCRYPT, sec, NULL, 0,
2211 test_mb_aead_speed("rfc4106(gcm(aes))", ENCRYPT, sec, NULL,
2212 0, 16, 16, aead_speed_template_20, num_mb);
2213 test_mb_aead_speed("gcm(aes)", ENCRYPT, sec, NULL, 0, 16, 8,
2214 speed_template_16_24_32, num_mb);
2215 test_mb_aead_speed("rfc4106(gcm(aes))", DECRYPT, sec, NULL,
2216 0, 16, 16, aead_speed_template_20, num_mb);
2217 test_mb_aead_speed("gcm(aes)", DECRYPT, sec, NULL, 0, 16, 8,
2218 speed_template_16_24_32, num_mb);
2222 test_mb_aead_speed("rfc4309(ccm(aes))", ENCRYPT, sec, NULL, 0,
2223 16, 16, aead_speed_template_19, num_mb);
2224 test_mb_aead_speed("rfc4309(ccm(aes))", DECRYPT, sec, NULL, 0,
2225 16, 16, aead_speed_template_19, num_mb);
2229 test_mb_aead_speed("rfc7539esp(chacha20,poly1305)", ENCRYPT,
2230 sec, NULL, 0, 16, 8, aead_speed_template_36,
2232 test_mb_aead_speed("rfc7539esp(chacha20,poly1305)", DECRYPT,
2233 sec, NULL, 0, 16, 8, aead_speed_template_36,
2239 test_hash_speed(alg, sec, generic_hash_speed_template);
2244 test_hash_speed("md4", sec, generic_hash_speed_template);
2245 if (mode > 300 && mode < 400) break;
2248 test_hash_speed("md5", sec, generic_hash_speed_template);
2249 if (mode > 300 && mode < 400) break;
2252 test_hash_speed("sha1", sec, generic_hash_speed_template);
2253 if (mode > 300 && mode < 400) break;
2256 test_hash_speed("sha256", sec, generic_hash_speed_template);
2257 if (mode > 300 && mode < 400) break;
2260 test_hash_speed("sha384", sec, generic_hash_speed_template);
2261 if (mode > 300 && mode < 400) break;
2264 test_hash_speed("sha512", sec, generic_hash_speed_template);
2265 if (mode > 300 && mode < 400) break;
2268 test_hash_speed("wp256", sec, generic_hash_speed_template);
2269 if (mode > 300 && mode < 400) break;
2272 test_hash_speed("wp384", sec, generic_hash_speed_template);
2273 if (mode > 300 && mode < 400) break;
2276 test_hash_speed("wp512", sec, generic_hash_speed_template);
2277 if (mode > 300 && mode < 400) break;
2280 test_hash_speed("tgr128", sec, generic_hash_speed_template);
2281 if (mode > 300 && mode < 400) break;
2284 test_hash_speed("tgr160", sec, generic_hash_speed_template);
2285 if (mode > 300 && mode < 400) break;
2288 test_hash_speed("tgr192", sec, generic_hash_speed_template);
2289 if (mode > 300 && mode < 400) break;
2292 test_hash_speed("sha224", sec, generic_hash_speed_template);
2293 if (mode > 300 && mode < 400) break;
2296 test_hash_speed("rmd128", sec, generic_hash_speed_template);
2297 if (mode > 300 && mode < 400) break;
2300 test_hash_speed("rmd160", sec, generic_hash_speed_template);
2301 if (mode > 300 && mode < 400) break;
2304 test_hash_speed("rmd256", sec, generic_hash_speed_template);
2305 if (mode > 300 && mode < 400) break;
2308 test_hash_speed("rmd320", sec, generic_hash_speed_template);
2309 if (mode > 300 && mode < 400) break;
2312 test_hash_speed("ghash-generic", sec, hash_speed_template_16);
2313 if (mode > 300 && mode < 400) break;
2316 test_hash_speed("crc32c", sec, generic_hash_speed_template);
2317 if (mode > 300 && mode < 400) break;
2320 test_hash_speed("crct10dif", sec, generic_hash_speed_template);
2321 if (mode > 300 && mode < 400) break;
2324 test_hash_speed("poly1305", sec, poly1305_speed_template);
2325 if (mode > 300 && mode < 400) break;
2328 test_hash_speed("sha3-224", sec, generic_hash_speed_template);
2329 if (mode > 300 && mode < 400) break;
2332 test_hash_speed("sha3-256", sec, generic_hash_speed_template);
2333 if (mode > 300 && mode < 400) break;
2336 test_hash_speed("sha3-384", sec, generic_hash_speed_template);
2337 if (mode > 300 && mode < 400) break;
2340 test_hash_speed("sha3-512", sec, generic_hash_speed_template);
2341 if (mode > 300 && mode < 400) break;
2344 test_hash_speed("sm3", sec, generic_hash_speed_template);
2345 if (mode > 300 && mode < 400) break;
2352 test_ahash_speed(alg, sec, generic_hash_speed_template);
2357 test_ahash_speed("md4", sec, generic_hash_speed_template);
2358 if (mode > 400 && mode < 500) break;
2361 test_ahash_speed("md5", sec, generic_hash_speed_template);
2362 if (mode > 400 && mode < 500) break;
2365 test_ahash_speed("sha1", sec, generic_hash_speed_template);
2366 if (mode > 400 && mode < 500) break;
2369 test_ahash_speed("sha256", sec, generic_hash_speed_template);
2370 if (mode > 400 && mode < 500) break;
2373 test_ahash_speed("sha384", sec, generic_hash_speed_template);
2374 if (mode > 400 && mode < 500) break;
2377 test_ahash_speed("sha512", sec, generic_hash_speed_template);
2378 if (mode > 400 && mode < 500) break;
2381 test_ahash_speed("wp256", sec, generic_hash_speed_template);
2382 if (mode > 400 && mode < 500) break;
2385 test_ahash_speed("wp384", sec, generic_hash_speed_template);
2386 if (mode > 400 && mode < 500) break;
2389 test_ahash_speed("wp512", sec, generic_hash_speed_template);
2390 if (mode > 400 && mode < 500) break;
2393 test_ahash_speed("tgr128", sec, generic_hash_speed_template);
2394 if (mode > 400 && mode < 500) break;
2397 test_ahash_speed("tgr160", sec, generic_hash_speed_template);
2398 if (mode > 400 && mode < 500) break;
2401 test_ahash_speed("tgr192", sec, generic_hash_speed_template);
2402 if (mode > 400 && mode < 500) break;
2405 test_ahash_speed("sha224", sec, generic_hash_speed_template);
2406 if (mode > 400 && mode < 500) break;
2409 test_ahash_speed("rmd128", sec, generic_hash_speed_template);
2410 if (mode > 400 && mode < 500) break;
2413 test_ahash_speed("rmd160", sec, generic_hash_speed_template);
2414 if (mode > 400 && mode < 500) break;
2417 test_ahash_speed("rmd256", sec, generic_hash_speed_template);
2418 if (mode > 400 && mode < 500) break;
2421 test_ahash_speed("rmd320", sec, generic_hash_speed_template);
2422 if (mode > 400 && mode < 500) break;
2425 test_ahash_speed("sha3-224", sec, generic_hash_speed_template);
2426 if (mode > 400 && mode < 500) break;
2429 test_ahash_speed("sha3-256", sec, generic_hash_speed_template);
2430 if (mode > 400 && mode < 500) break;
2433 test_ahash_speed("sha3-384", sec, generic_hash_speed_template);
2434 if (mode > 400 && mode < 500) break;
2437 test_ahash_speed("sha3-512", sec, generic_hash_speed_template);
2438 if (mode > 400 && mode < 500) break;
2441 test_mb_ahash_speed("sha1", sec, generic_hash_speed_template,
2443 if (mode > 400 && mode < 500) break;
2446 test_mb_ahash_speed("sha256", sec, generic_hash_speed_template,
2448 if (mode > 400 && mode < 500) break;
2451 test_mb_ahash_speed("sha512", sec, generic_hash_speed_template,
2453 if (mode > 400 && mode < 500) break;
2456 test_mb_ahash_speed("sm3", sec, generic_hash_speed_template,
2458 if (mode > 400 && mode < 500) break;
2464 test_acipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
2465 speed_template_16_24_32);
2466 test_acipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0,
2467 speed_template_16_24_32);
2468 test_acipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0,
2469 speed_template_16_24_32);
2470 test_acipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0,
2471 speed_template_16_24_32);
2472 test_acipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0,
2473 speed_template_32_40_48);
2474 test_acipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0,
2475 speed_template_32_40_48);
2476 test_acipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0,
2477 speed_template_32_64);
2478 test_acipher_speed("xts(aes)", DECRYPT, sec, NULL, 0,
2479 speed_template_32_64);
2480 test_acipher_speed("cts(cbc(aes))", ENCRYPT, sec, NULL, 0,
2481 speed_template_16_24_32);
2482 test_acipher_speed("cts(cbc(aes))", DECRYPT, sec, NULL, 0,
2483 speed_template_16_24_32);
2484 test_acipher_speed("ctr(aes)", ENCRYPT, sec, NULL, 0,
2485 speed_template_16_24_32);
2486 test_acipher_speed("ctr(aes)", DECRYPT, sec, NULL, 0,
2487 speed_template_16_24_32);
2488 test_acipher_speed("cfb(aes)", ENCRYPT, sec, NULL, 0,
2489 speed_template_16_24_32);
2490 test_acipher_speed("cfb(aes)", DECRYPT, sec, NULL, 0,
2491 speed_template_16_24_32);
2492 test_acipher_speed("ofb(aes)", ENCRYPT, sec, NULL, 0,
2493 speed_template_16_24_32);
2494 test_acipher_speed("ofb(aes)", DECRYPT, sec, NULL, 0,
2495 speed_template_16_24_32);
2496 test_acipher_speed("rfc3686(ctr(aes))", ENCRYPT, sec, NULL, 0,
2497 speed_template_20_28_36);
2498 test_acipher_speed("rfc3686(ctr(aes))", DECRYPT, sec, NULL, 0,
2499 speed_template_20_28_36);
2503 test_acipher_speed("ecb(des3_ede)", ENCRYPT, sec,
2504 des3_speed_template, DES3_SPEED_VECTORS,
2506 test_acipher_speed("ecb(des3_ede)", DECRYPT, sec,
2507 des3_speed_template, DES3_SPEED_VECTORS,
2509 test_acipher_speed("cbc(des3_ede)", ENCRYPT, sec,
2510 des3_speed_template, DES3_SPEED_VECTORS,
2512 test_acipher_speed("cbc(des3_ede)", DECRYPT, sec,
2513 des3_speed_template, DES3_SPEED_VECTORS,
2515 test_acipher_speed("cfb(des3_ede)", ENCRYPT, sec,
2516 des3_speed_template, DES3_SPEED_VECTORS,
2518 test_acipher_speed("cfb(des3_ede)", DECRYPT, sec,
2519 des3_speed_template, DES3_SPEED_VECTORS,
2521 test_acipher_speed("ofb(des3_ede)", ENCRYPT, sec,
2522 des3_speed_template, DES3_SPEED_VECTORS,
2524 test_acipher_speed("ofb(des3_ede)", DECRYPT, sec,
2525 des3_speed_template, DES3_SPEED_VECTORS,
2530 test_acipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0,
2532 test_acipher_speed("ecb(des)", DECRYPT, sec, NULL, 0,
2534 test_acipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0,
2536 test_acipher_speed("cbc(des)", DECRYPT, sec, NULL, 0,
2538 test_acipher_speed("cfb(des)", ENCRYPT, sec, NULL, 0,
2540 test_acipher_speed("cfb(des)", DECRYPT, sec, NULL, 0,
2542 test_acipher_speed("ofb(des)", ENCRYPT, sec, NULL, 0,
2544 test_acipher_speed("ofb(des)", DECRYPT, sec, NULL, 0,
2549 test_acipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0,
2550 speed_template_16_32);
2551 test_acipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0,
2552 speed_template_16_32);
2553 test_acipher_speed("cbc(serpent)", ENCRYPT, sec, NULL, 0,
2554 speed_template_16_32);
2555 test_acipher_speed("cbc(serpent)", DECRYPT, sec, NULL, 0,
2556 speed_template_16_32);
2557 test_acipher_speed("ctr(serpent)", ENCRYPT, sec, NULL, 0,
2558 speed_template_16_32);
2559 test_acipher_speed("ctr(serpent)", DECRYPT, sec, NULL, 0,
2560 speed_template_16_32);
2561 test_acipher_speed("lrw(serpent)", ENCRYPT, sec, NULL, 0,
2562 speed_template_32_48);
2563 test_acipher_speed("lrw(serpent)", DECRYPT, sec, NULL, 0,
2564 speed_template_32_48);
2565 test_acipher_speed("xts(serpent)", ENCRYPT, sec, NULL, 0,
2566 speed_template_32_64);
2567 test_acipher_speed("xts(serpent)", DECRYPT, sec, NULL, 0,
2568 speed_template_32_64);
2572 test_acipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0,
2573 speed_template_16_24_32);
2574 test_acipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0,
2575 speed_template_16_24_32);
2576 test_acipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0,
2577 speed_template_16_24_32);
2578 test_acipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0,
2579 speed_template_16_24_32);
2580 test_acipher_speed("ctr(twofish)", ENCRYPT, sec, NULL, 0,
2581 speed_template_16_24_32);
2582 test_acipher_speed("ctr(twofish)", DECRYPT, sec, NULL, 0,
2583 speed_template_16_24_32);
2584 test_acipher_speed("lrw(twofish)", ENCRYPT, sec, NULL, 0,
2585 speed_template_32_40_48);
2586 test_acipher_speed("lrw(twofish)", DECRYPT, sec, NULL, 0,
2587 speed_template_32_40_48);
2588 test_acipher_speed("xts(twofish)", ENCRYPT, sec, NULL, 0,
2589 speed_template_32_48_64);
2590 test_acipher_speed("xts(twofish)", DECRYPT, sec, NULL, 0,
2591 speed_template_32_48_64);
2595 test_acipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0,
2600 test_acipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0,
2601 speed_template_8_16);
2602 test_acipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0,
2603 speed_template_8_16);
2604 test_acipher_speed("cbc(cast5)", ENCRYPT, sec, NULL, 0,
2605 speed_template_8_16);
2606 test_acipher_speed("cbc(cast5)", DECRYPT, sec, NULL, 0,
2607 speed_template_8_16);
2608 test_acipher_speed("ctr(cast5)", ENCRYPT, sec, NULL, 0,
2609 speed_template_8_16);
2610 test_acipher_speed("ctr(cast5)", DECRYPT, sec, NULL, 0,
2611 speed_template_8_16);
2615 test_acipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0,
2616 speed_template_16_32);
2617 test_acipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0,
2618 speed_template_16_32);
2619 test_acipher_speed("cbc(cast6)", ENCRYPT, sec, NULL, 0,
2620 speed_template_16_32);
2621 test_acipher_speed("cbc(cast6)", DECRYPT, sec, NULL, 0,
2622 speed_template_16_32);
2623 test_acipher_speed("ctr(cast6)", ENCRYPT, sec, NULL, 0,
2624 speed_template_16_32);
2625 test_acipher_speed("ctr(cast6)", DECRYPT, sec, NULL, 0,
2626 speed_template_16_32);
2627 test_acipher_speed("lrw(cast6)", ENCRYPT, sec, NULL, 0,
2628 speed_template_32_48);
2629 test_acipher_speed("lrw(cast6)", DECRYPT, sec, NULL, 0,
2630 speed_template_32_48);
2631 test_acipher_speed("xts(cast6)", ENCRYPT, sec, NULL, 0,
2632 speed_template_32_64);
2633 test_acipher_speed("xts(cast6)", DECRYPT, sec, NULL, 0,
2634 speed_template_32_64);
2638 test_acipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0,
2639 speed_template_16_32);
2640 test_acipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0,
2641 speed_template_16_32);
2642 test_acipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0,
2643 speed_template_16_32);
2644 test_acipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
2645 speed_template_16_32);
2646 test_acipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0,
2647 speed_template_16_32);
2648 test_acipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0,
2649 speed_template_16_32);
2650 test_acipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0,
2651 speed_template_32_48);
2652 test_acipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0,
2653 speed_template_32_48);
2654 test_acipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0,
2655 speed_template_32_64);
2656 test_acipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0,
2657 speed_template_32_64);
2661 test_acipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0,
2662 speed_template_8_32);
2663 test_acipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0,
2664 speed_template_8_32);
2665 test_acipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0,
2666 speed_template_8_32);
2667 test_acipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0,
2668 speed_template_8_32);
2669 test_acipher_speed("ctr(blowfish)", ENCRYPT, sec, NULL, 0,
2670 speed_template_8_32);
2671 test_acipher_speed("ctr(blowfish)", DECRYPT, sec, NULL, 0,
2672 speed_template_8_32);
2676 test_mb_skcipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
2677 speed_template_16_24_32, num_mb);
2678 test_mb_skcipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0,
2679 speed_template_16_24_32, num_mb);
2680 test_mb_skcipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0,
2681 speed_template_16_24_32, num_mb);
2682 test_mb_skcipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0,
2683 speed_template_16_24_32, num_mb);
2684 test_mb_skcipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0,
2685 speed_template_32_40_48, num_mb);
2686 test_mb_skcipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0,
2687 speed_template_32_40_48, num_mb);
2688 test_mb_skcipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0,
2689 speed_template_32_64, num_mb);
2690 test_mb_skcipher_speed("xts(aes)", DECRYPT, sec, NULL, 0,
2691 speed_template_32_64, num_mb);
2692 test_mb_skcipher_speed("cts(cbc(aes))", ENCRYPT, sec, NULL, 0,
2693 speed_template_16_24_32, num_mb);
2694 test_mb_skcipher_speed("cts(cbc(aes))", DECRYPT, sec, NULL, 0,
2695 speed_template_16_24_32, num_mb);
2696 test_mb_skcipher_speed("ctr(aes)", ENCRYPT, sec, NULL, 0,
2697 speed_template_16_24_32, num_mb);
2698 test_mb_skcipher_speed("ctr(aes)", DECRYPT, sec, NULL, 0,
2699 speed_template_16_24_32, num_mb);
2700 test_mb_skcipher_speed("cfb(aes)", ENCRYPT, sec, NULL, 0,
2701 speed_template_16_24_32, num_mb);
2702 test_mb_skcipher_speed("cfb(aes)", DECRYPT, sec, NULL, 0,
2703 speed_template_16_24_32, num_mb);
2704 test_mb_skcipher_speed("ofb(aes)", ENCRYPT, sec, NULL, 0,
2705 speed_template_16_24_32, num_mb);
2706 test_mb_skcipher_speed("ofb(aes)", DECRYPT, sec, NULL, 0,
2707 speed_template_16_24_32, num_mb);
2708 test_mb_skcipher_speed("rfc3686(ctr(aes))", ENCRYPT, sec, NULL,
2709 0, speed_template_20_28_36, num_mb);
2710 test_mb_skcipher_speed("rfc3686(ctr(aes))", DECRYPT, sec, NULL,
2711 0, speed_template_20_28_36, num_mb);
2715 test_mb_skcipher_speed("ecb(des3_ede)", ENCRYPT, sec,
2716 des3_speed_template, DES3_SPEED_VECTORS,
2717 speed_template_24, num_mb);
2718 test_mb_skcipher_speed("ecb(des3_ede)", DECRYPT, sec,
2719 des3_speed_template, DES3_SPEED_VECTORS,
2720 speed_template_24, num_mb);
2721 test_mb_skcipher_speed("cbc(des3_ede)", ENCRYPT, sec,
2722 des3_speed_template, DES3_SPEED_VECTORS,
2723 speed_template_24, num_mb);
2724 test_mb_skcipher_speed("cbc(des3_ede)", DECRYPT, sec,
2725 des3_speed_template, DES3_SPEED_VECTORS,
2726 speed_template_24, num_mb);
2727 test_mb_skcipher_speed("cfb(des3_ede)", ENCRYPT, sec,
2728 des3_speed_template, DES3_SPEED_VECTORS,
2729 speed_template_24, num_mb);
2730 test_mb_skcipher_speed("cfb(des3_ede)", DECRYPT, sec,
2731 des3_speed_template, DES3_SPEED_VECTORS,
2732 speed_template_24, num_mb);
2733 test_mb_skcipher_speed("ofb(des3_ede)", ENCRYPT, sec,
2734 des3_speed_template, DES3_SPEED_VECTORS,
2735 speed_template_24, num_mb);
2736 test_mb_skcipher_speed("ofb(des3_ede)", DECRYPT, sec,
2737 des3_speed_template, DES3_SPEED_VECTORS,
2738 speed_template_24, num_mb);
2742 test_mb_skcipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0,
2743 speed_template_8, num_mb);
2744 test_mb_skcipher_speed("ecb(des)", DECRYPT, sec, NULL, 0,
2745 speed_template_8, num_mb);
2746 test_mb_skcipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0,
2747 speed_template_8, num_mb);
2748 test_mb_skcipher_speed("cbc(des)", DECRYPT, sec, NULL, 0,
2749 speed_template_8, num_mb);
2750 test_mb_skcipher_speed("cfb(des)", ENCRYPT, sec, NULL, 0,
2751 speed_template_8, num_mb);
2752 test_mb_skcipher_speed("cfb(des)", DECRYPT, sec, NULL, 0,
2753 speed_template_8, num_mb);
2754 test_mb_skcipher_speed("ofb(des)", ENCRYPT, sec, NULL, 0,
2755 speed_template_8, num_mb);
2756 test_mb_skcipher_speed("ofb(des)", DECRYPT, sec, NULL, 0,
2757 speed_template_8, num_mb);
2761 test_mb_skcipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0,
2762 speed_template_16_32, num_mb);
2763 test_mb_skcipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0,
2764 speed_template_16_32, num_mb);
2765 test_mb_skcipher_speed("cbc(serpent)", ENCRYPT, sec, NULL, 0,
2766 speed_template_16_32, num_mb);
2767 test_mb_skcipher_speed("cbc(serpent)", DECRYPT, sec, NULL, 0,
2768 speed_template_16_32, num_mb);
2769 test_mb_skcipher_speed("ctr(serpent)", ENCRYPT, sec, NULL, 0,
2770 speed_template_16_32, num_mb);
2771 test_mb_skcipher_speed("ctr(serpent)", DECRYPT, sec, NULL, 0,
2772 speed_template_16_32, num_mb);
2773 test_mb_skcipher_speed("lrw(serpent)", ENCRYPT, sec, NULL, 0,
2774 speed_template_32_48, num_mb);
2775 test_mb_skcipher_speed("lrw(serpent)", DECRYPT, sec, NULL, 0,
2776 speed_template_32_48, num_mb);
2777 test_mb_skcipher_speed("xts(serpent)", ENCRYPT, sec, NULL, 0,
2778 speed_template_32_64, num_mb);
2779 test_mb_skcipher_speed("xts(serpent)", DECRYPT, sec, NULL, 0,
2780 speed_template_32_64, num_mb);
2784 test_mb_skcipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0,
2785 speed_template_16_24_32, num_mb);
2786 test_mb_skcipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0,
2787 speed_template_16_24_32, num_mb);
2788 test_mb_skcipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0,
2789 speed_template_16_24_32, num_mb);
2790 test_mb_skcipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0,
2791 speed_template_16_24_32, num_mb);
2792 test_mb_skcipher_speed("ctr(twofish)", ENCRYPT, sec, NULL, 0,
2793 speed_template_16_24_32, num_mb);
2794 test_mb_skcipher_speed("ctr(twofish)", DECRYPT, sec, NULL, 0,
2795 speed_template_16_24_32, num_mb);
2796 test_mb_skcipher_speed("lrw(twofish)", ENCRYPT, sec, NULL, 0,
2797 speed_template_32_40_48, num_mb);
2798 test_mb_skcipher_speed("lrw(twofish)", DECRYPT, sec, NULL, 0,
2799 speed_template_32_40_48, num_mb);
2800 test_mb_skcipher_speed("xts(twofish)", ENCRYPT, sec, NULL, 0,
2801 speed_template_32_48_64, num_mb);
2802 test_mb_skcipher_speed("xts(twofish)", DECRYPT, sec, NULL, 0,
2803 speed_template_32_48_64, num_mb);
2807 test_mb_skcipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0,
2808 speed_template_8, num_mb);
2812 test_mb_skcipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0,
2813 speed_template_8_16, num_mb);
2814 test_mb_skcipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0,
2815 speed_template_8_16, num_mb);
2816 test_mb_skcipher_speed("cbc(cast5)", ENCRYPT, sec, NULL, 0,
2817 speed_template_8_16, num_mb);
2818 test_mb_skcipher_speed("cbc(cast5)", DECRYPT, sec, NULL, 0,
2819 speed_template_8_16, num_mb);
2820 test_mb_skcipher_speed("ctr(cast5)", ENCRYPT, sec, NULL, 0,
2821 speed_template_8_16, num_mb);
2822 test_mb_skcipher_speed("ctr(cast5)", DECRYPT, sec, NULL, 0,
2823 speed_template_8_16, num_mb);
2827 test_mb_skcipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0,
2828 speed_template_16_32, num_mb);
2829 test_mb_skcipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0,
2830 speed_template_16_32, num_mb);
2831 test_mb_skcipher_speed("cbc(cast6)", ENCRYPT, sec, NULL, 0,
2832 speed_template_16_32, num_mb);
2833 test_mb_skcipher_speed("cbc(cast6)", DECRYPT, sec, NULL, 0,
2834 speed_template_16_32, num_mb);
2835 test_mb_skcipher_speed("ctr(cast6)", ENCRYPT, sec, NULL, 0,
2836 speed_template_16_32, num_mb);
2837 test_mb_skcipher_speed("ctr(cast6)", DECRYPT, sec, NULL, 0,
2838 speed_template_16_32, num_mb);
2839 test_mb_skcipher_speed("lrw(cast6)", ENCRYPT, sec, NULL, 0,
2840 speed_template_32_48, num_mb);
2841 test_mb_skcipher_speed("lrw(cast6)", DECRYPT, sec, NULL, 0,
2842 speed_template_32_48, num_mb);
2843 test_mb_skcipher_speed("xts(cast6)", ENCRYPT, sec, NULL, 0,
2844 speed_template_32_64, num_mb);
2845 test_mb_skcipher_speed("xts(cast6)", DECRYPT, sec, NULL, 0,
2846 speed_template_32_64, num_mb);
2850 test_mb_skcipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0,
2851 speed_template_16_32, num_mb);
2852 test_mb_skcipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0,
2853 speed_template_16_32, num_mb);
2854 test_mb_skcipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0,
2855 speed_template_16_32, num_mb);
2856 test_mb_skcipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
2857 speed_template_16_32, num_mb);
2858 test_mb_skcipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0,
2859 speed_template_16_32, num_mb);
2860 test_mb_skcipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0,
2861 speed_template_16_32, num_mb);
2862 test_mb_skcipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0,
2863 speed_template_32_48, num_mb);
2864 test_mb_skcipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0,
2865 speed_template_32_48, num_mb);
2866 test_mb_skcipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0,
2867 speed_template_32_64, num_mb);
2868 test_mb_skcipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0,
2869 speed_template_32_64, num_mb);
2873 test_mb_skcipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0,
2874 speed_template_8_32, num_mb);
2875 test_mb_skcipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0,
2876 speed_template_8_32, num_mb);
2877 test_mb_skcipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0,
2878 speed_template_8_32, num_mb);
2879 test_mb_skcipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0,
2880 speed_template_8_32, num_mb);
2881 test_mb_skcipher_speed("ctr(blowfish)", ENCRYPT, sec, NULL, 0,
2882 speed_template_8_32, num_mb);
2883 test_mb_skcipher_speed("ctr(blowfish)", DECRYPT, sec, NULL, 0,
2884 speed_template_8_32, num_mb);
2895 static int __init tcrypt_mod_init(void)
2900 for (i = 0; i < TVMEMSIZE; i++) {
2901 tvmem[i] = (void *)__get_free_page(GFP_KERNEL);
2906 err = do_test(alg, type, mask, mode);
2909 printk(KERN_ERR "tcrypt: one or more tests failed!\n");
2912 pr_debug("all tests passed\n");
2915 /* We intentionaly return -EAGAIN to prevent keeping the module,
2916 * unless we're running in fips mode. It does all its work from
2917 * init() and doesn't offer any runtime functionality, but in
2918 * the fips case, checking for a successful load is helpful.
2919 * => we don't need it in the memory, do we?
2926 for (i = 0; i < TVMEMSIZE && tvmem[i]; i++)
2927 free_page((unsigned long)tvmem[i]);
2933 * If an init function is provided, an exit function must also be provided
2934 * to allow module unload.
2936 static void __exit tcrypt_mod_fini(void) { }
2938 module_init(tcrypt_mod_init);
2939 module_exit(tcrypt_mod_fini);
2941 module_param(alg, charp, 0);
2942 module_param(type, uint, 0);
2943 module_param(mask, uint, 0);
2944 module_param(mode, int, 0);
2945 module_param(sec, uint, 0);
2946 MODULE_PARM_DESC(sec, "Length in seconds of speed tests "
2947 "(defaults to zero which uses CPU cycles instead)");
2948 module_param(num_mb, uint, 0000);
2949 MODULE_PARM_DESC(num_mb, "Number of concurrent requests to be used in mb speed tests (defaults to 8)");
2951 MODULE_LICENSE("GPL");
2952 MODULE_DESCRIPTION("Quick & dirty crypto testing module");