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 char *tvmem
[TVMEMSIZE
];
72 static char *check
[] = {
73 "des", "md5", "des3_ede", "rot13", "sha1", "sha224", "sha256",
74 "blowfish", "twofish", "serpent", "sha384", "sha512", "md4", "aes",
75 "cast6", "arc4", "michael_mic", "deflate", "crc32c", "tea", "xtea",
76 "khazad", "wp512", "wp384", "wp256", "tnepres", "xeta", "fcrypt",
77 "camellia", "seed", "salsa20", "rmd128", "rmd160", "rmd256", "rmd320",
78 "lzo", "cts", "zlib", "sha3-224", "sha3-256", "sha3-384", "sha3-512",
82 struct tcrypt_result
{
83 struct completion completion
;
87 static void tcrypt_complete(struct crypto_async_request
*req
, int err
)
89 struct tcrypt_result
*res
= req
->data
;
91 if (err
== -EINPROGRESS
)
95 complete(&res
->completion
);
98 static inline int do_one_aead_op(struct aead_request
*req
, int ret
)
100 if (ret
== -EINPROGRESS
|| ret
== -EBUSY
) {
101 struct tcrypt_result
*tr
= req
->base
.data
;
103 ret
= wait_for_completion_interruptible(&tr
->completion
);
106 reinit_completion(&tr
->completion
);
112 static int test_aead_jiffies(struct aead_request
*req
, int enc
,
115 unsigned long start
, end
;
119 for (start
= jiffies
, end
= start
+ secs
* HZ
, bcount
= 0;
120 time_before(jiffies
, end
); bcount
++) {
122 ret
= do_one_aead_op(req
, crypto_aead_encrypt(req
));
124 ret
= do_one_aead_op(req
, crypto_aead_decrypt(req
));
130 printk("%d operations in %d seconds (%ld bytes)\n",
131 bcount
, secs
, (long)bcount
* blen
);
135 static int test_aead_cycles(struct aead_request
*req
, int enc
, int blen
)
137 unsigned long cycles
= 0;
144 for (i
= 0; i
< 4; i
++) {
146 ret
= do_one_aead_op(req
, crypto_aead_encrypt(req
));
148 ret
= do_one_aead_op(req
, crypto_aead_decrypt(req
));
154 /* The real thing. */
155 for (i
= 0; i
< 8; i
++) {
158 start
= get_cycles();
160 ret
= do_one_aead_op(req
, crypto_aead_encrypt(req
));
162 ret
= do_one_aead_op(req
, crypto_aead_decrypt(req
));
168 cycles
+= end
- start
;
175 printk("1 operation in %lu cycles (%d bytes)\n",
176 (cycles
+ 4) / 8, blen
);
181 static u32 block_sizes
[] = { 16, 64, 256, 1024, 8192, 0 };
182 static u32 aead_sizes
[] = { 16, 64, 256, 512, 1024, 2048, 4096, 8192, 0 };
187 static int testmgr_alloc_buf(char *buf
[XBUFSIZE
])
191 for (i
= 0; i
< XBUFSIZE
; i
++) {
192 buf
[i
] = (void *)__get_free_page(GFP_KERNEL
);
201 free_page((unsigned long)buf
[i
]);
206 static void testmgr_free_buf(char *buf
[XBUFSIZE
])
210 for (i
= 0; i
< XBUFSIZE
; i
++)
211 free_page((unsigned long)buf
[i
]);
214 static void sg_init_aead(struct scatterlist
*sg
, char *xbuf
[XBUFSIZE
],
217 int np
= (buflen
+ PAGE_SIZE
- 1)/PAGE_SIZE
;
224 rem
= buflen
% PAGE_SIZE
;
227 sg_init_table(sg
, np
+ 1);
229 for (k
= 0; k
< np
; k
++)
230 sg_set_buf(&sg
[k
+ 1], xbuf
[k
], PAGE_SIZE
);
232 sg_set_buf(&sg
[k
+ 1], xbuf
[k
], rem
);
235 static void test_aead_speed(const char *algo
, int enc
, unsigned int secs
,
236 struct aead_speed_template
*template,
237 unsigned int tcount
, u8 authsize
,
238 unsigned int aad_size
, u8
*keysize
)
241 struct crypto_aead
*tfm
;
244 struct aead_request
*req
;
245 struct scatterlist
*sg
;
246 struct scatterlist
*sgout
;
250 char *xbuf
[XBUFSIZE
];
251 char *xoutbuf
[XBUFSIZE
];
252 char *axbuf
[XBUFSIZE
];
253 unsigned int *b_size
;
255 struct tcrypt_result result
;
257 iv
= kzalloc(MAX_IVLEN
, GFP_KERNEL
);
261 if (aad_size
>= PAGE_SIZE
) {
262 pr_err("associate data length (%u) too big\n", aad_size
);
271 if (testmgr_alloc_buf(xbuf
))
273 if (testmgr_alloc_buf(axbuf
))
275 if (testmgr_alloc_buf(xoutbuf
))
278 sg
= kmalloc(sizeof(*sg
) * 9 * 2, GFP_KERNEL
);
283 tfm
= crypto_alloc_aead(algo
, 0, 0);
286 pr_err("alg: aead: Failed to load transform for %s: %ld\n", algo
,
291 init_completion(&result
.completion
);
292 printk(KERN_INFO
"\ntesting speed of %s (%s) %s\n", algo
,
293 get_driver_name(crypto_aead
, tfm
), e
);
295 req
= aead_request_alloc(tfm
, GFP_KERNEL
);
297 pr_err("alg: aead: Failed to allocate request for %s\n",
302 aead_request_set_callback(req
, CRYPTO_TFM_REQ_MAY_BACKLOG
,
303 tcrypt_complete
, &result
);
310 memset(assoc
, 0xff, aad_size
);
312 if ((*keysize
+ *b_size
) > TVMEMSIZE
* PAGE_SIZE
) {
313 pr_err("template (%u) too big for tvmem (%lu)\n",
315 TVMEMSIZE
* PAGE_SIZE
);
320 for (j
= 0; j
< tcount
; j
++) {
321 if (template[j
].klen
== *keysize
) {
322 key
= template[j
].key
;
326 ret
= crypto_aead_setkey(tfm
, key
, *keysize
);
327 ret
= crypto_aead_setauthsize(tfm
, authsize
);
329 iv_len
= crypto_aead_ivsize(tfm
);
331 memset(iv
, 0xff, iv_len
);
333 crypto_aead_clear_flags(tfm
, ~0);
334 printk(KERN_INFO
"test %u (%d bit key, %d byte blocks): ",
335 i
, *keysize
* 8, *b_size
);
338 memset(tvmem
[0], 0xff, PAGE_SIZE
);
341 pr_err("setkey() failed flags=%x\n",
342 crypto_aead_get_flags(tfm
));
346 sg_init_aead(sg
, xbuf
,
347 *b_size
+ (enc
? authsize
: 0));
349 sg_init_aead(sgout
, xoutbuf
,
350 *b_size
+ (enc
? authsize
: 0));
352 sg_set_buf(&sg
[0], assoc
, aad_size
);
353 sg_set_buf(&sgout
[0], assoc
, aad_size
);
355 aead_request_set_crypt(req
, sg
, sgout
, *b_size
, iv
);
356 aead_request_set_ad(req
, aad_size
);
359 ret
= test_aead_jiffies(req
, enc
, *b_size
,
362 ret
= test_aead_cycles(req
, enc
, *b_size
);
365 pr_err("%s() failed return code=%d\n", e
, ret
);
375 aead_request_free(req
);
377 crypto_free_aead(tfm
);
381 testmgr_free_buf(xoutbuf
);
383 testmgr_free_buf(axbuf
);
385 testmgr_free_buf(xbuf
);
391 static void test_hash_sg_init(struct scatterlist
*sg
)
395 sg_init_table(sg
, TVMEMSIZE
);
396 for (i
= 0; i
< TVMEMSIZE
; i
++) {
397 sg_set_buf(sg
+ i
, tvmem
[i
], PAGE_SIZE
);
398 memset(tvmem
[i
], 0xff, PAGE_SIZE
);
402 static inline int do_one_ahash_op(struct ahash_request
*req
, int ret
)
404 if (ret
== -EINPROGRESS
|| ret
== -EBUSY
) {
405 struct tcrypt_result
*tr
= req
->base
.data
;
407 wait_for_completion(&tr
->completion
);
408 reinit_completion(&tr
->completion
);
414 struct test_mb_ahash_data
{
415 struct scatterlist sg
[TVMEMSIZE
];
417 struct ahash_request
*req
;
418 struct tcrypt_result tresult
;
419 char *xbuf
[XBUFSIZE
];
422 static void test_mb_ahash_speed(const char *algo
, unsigned int sec
,
423 struct hash_speed
*speed
)
425 struct test_mb_ahash_data
*data
;
426 struct crypto_ahash
*tfm
;
427 unsigned long start
, end
;
428 unsigned long cycles
;
429 unsigned int i
, j
, k
;
432 data
= kzalloc(sizeof(*data
) * 8, GFP_KERNEL
);
436 tfm
= crypto_alloc_ahash(algo
, 0, 0);
438 pr_err("failed to load transform for %s: %ld\n",
443 for (i
= 0; i
< 8; ++i
) {
444 if (testmgr_alloc_buf(data
[i
].xbuf
))
447 init_completion(&data
[i
].tresult
.completion
);
449 data
[i
].req
= ahash_request_alloc(tfm
, GFP_KERNEL
);
451 pr_err("alg: hash: Failed to allocate request for %s\n",
456 ahash_request_set_callback(data
[i
].req
, 0,
457 tcrypt_complete
, &data
[i
].tresult
);
458 test_hash_sg_init(data
[i
].sg
);
461 pr_info("\ntesting speed of multibuffer %s (%s)\n", algo
,
462 get_driver_name(crypto_ahash
, tfm
));
464 for (i
= 0; speed
[i
].blen
!= 0; i
++) {
465 /* For some reason this only tests digests. */
466 if (speed
[i
].blen
!= speed
[i
].plen
)
469 if (speed
[i
].blen
> TVMEMSIZE
* PAGE_SIZE
) {
470 pr_err("template (%u) too big for tvmem (%lu)\n",
471 speed
[i
].blen
, TVMEMSIZE
* PAGE_SIZE
);
476 crypto_ahash_setkey(tfm
, tvmem
[0], speed
[i
].klen
);
478 for (k
= 0; k
< 8; k
++)
479 ahash_request_set_crypt(data
[k
].req
, data
[k
].sg
,
480 data
[k
].result
, speed
[i
].blen
);
483 "(%5u byte blocks,%5u bytes per update,%4u updates): ",
484 i
, speed
[i
].blen
, speed
[i
].plen
,
485 speed
[i
].blen
/ speed
[i
].plen
);
487 start
= get_cycles();
489 for (k
= 0; k
< 8; k
++) {
490 ret
= crypto_ahash_digest(data
[k
].req
);
491 if (ret
== -EINPROGRESS
) {
499 complete(&data
[k
].tresult
.completion
);
500 data
[k
].tresult
.err
= 0;
503 for (j
= 0; j
< k
; j
++) {
504 struct tcrypt_result
*tr
= &data
[j
].tresult
;
506 wait_for_completion(&tr
->completion
);
512 cycles
= end
- start
;
513 pr_cont("%6lu cycles/operation, %4lu cycles/byte\n",
514 cycles
, cycles
/ (8 * speed
[i
].blen
));
517 pr_err("At least one hashing failed ret=%d\n", ret
);
523 for (k
= 0; k
< 8; ++k
)
524 ahash_request_free(data
[k
].req
);
526 for (k
= 0; k
< 8; ++k
)
527 testmgr_free_buf(data
[k
].xbuf
);
529 crypto_free_ahash(tfm
);
535 static int test_ahash_jiffies_digest(struct ahash_request
*req
, int blen
,
538 unsigned long start
, end
;
542 for (start
= jiffies
, end
= start
+ secs
* HZ
, bcount
= 0;
543 time_before(jiffies
, end
); bcount
++) {
544 ret
= do_one_ahash_op(req
, crypto_ahash_digest(req
));
549 printk("%6u opers/sec, %9lu bytes/sec\n",
550 bcount
/ secs
, ((long)bcount
* blen
) / secs
);
555 static int test_ahash_jiffies(struct ahash_request
*req
, int blen
,
556 int plen
, char *out
, int secs
)
558 unsigned long start
, end
;
563 return test_ahash_jiffies_digest(req
, blen
, out
, secs
);
565 for (start
= jiffies
, end
= start
+ secs
* HZ
, bcount
= 0;
566 time_before(jiffies
, end
); bcount
++) {
567 ret
= do_one_ahash_op(req
, crypto_ahash_init(req
));
570 for (pcount
= 0; pcount
< blen
; pcount
+= plen
) {
571 ret
= do_one_ahash_op(req
, crypto_ahash_update(req
));
575 /* we assume there is enough space in 'out' for the result */
576 ret
= do_one_ahash_op(req
, crypto_ahash_final(req
));
581 pr_cont("%6u opers/sec, %9lu bytes/sec\n",
582 bcount
/ secs
, ((long)bcount
* blen
) / secs
);
587 static int test_ahash_cycles_digest(struct ahash_request
*req
, int blen
,
590 unsigned long cycles
= 0;
594 for (i
= 0; i
< 4; i
++) {
595 ret
= do_one_ahash_op(req
, crypto_ahash_digest(req
));
600 /* The real thing. */
601 for (i
= 0; i
< 8; i
++) {
604 start
= get_cycles();
606 ret
= do_one_ahash_op(req
, crypto_ahash_digest(req
));
612 cycles
+= end
- start
;
619 pr_cont("%6lu cycles/operation, %4lu cycles/byte\n",
620 cycles
/ 8, cycles
/ (8 * blen
));
625 static int test_ahash_cycles(struct ahash_request
*req
, int blen
,
628 unsigned long cycles
= 0;
632 return test_ahash_cycles_digest(req
, blen
, out
);
635 for (i
= 0; i
< 4; i
++) {
636 ret
= do_one_ahash_op(req
, crypto_ahash_init(req
));
639 for (pcount
= 0; pcount
< blen
; pcount
+= plen
) {
640 ret
= do_one_ahash_op(req
, crypto_ahash_update(req
));
644 ret
= do_one_ahash_op(req
, crypto_ahash_final(req
));
649 /* The real thing. */
650 for (i
= 0; i
< 8; i
++) {
653 start
= get_cycles();
655 ret
= do_one_ahash_op(req
, crypto_ahash_init(req
));
658 for (pcount
= 0; pcount
< blen
; pcount
+= plen
) {
659 ret
= do_one_ahash_op(req
, crypto_ahash_update(req
));
663 ret
= do_one_ahash_op(req
, crypto_ahash_final(req
));
669 cycles
+= end
- start
;
676 pr_cont("%6lu cycles/operation, %4lu cycles/byte\n",
677 cycles
/ 8, cycles
/ (8 * blen
));
682 static void test_ahash_speed_common(const char *algo
, unsigned int secs
,
683 struct hash_speed
*speed
, unsigned mask
)
685 struct scatterlist sg
[TVMEMSIZE
];
686 struct tcrypt_result tresult
;
687 struct ahash_request
*req
;
688 struct crypto_ahash
*tfm
;
692 tfm
= crypto_alloc_ahash(algo
, 0, mask
);
694 pr_err("failed to load transform for %s: %ld\n",
699 printk(KERN_INFO
"\ntesting speed of async %s (%s)\n", algo
,
700 get_driver_name(crypto_ahash
, tfm
));
702 if (crypto_ahash_digestsize(tfm
) > MAX_DIGEST_SIZE
) {
703 pr_err("digestsize(%u) > %d\n", crypto_ahash_digestsize(tfm
),
708 test_hash_sg_init(sg
);
709 req
= ahash_request_alloc(tfm
, GFP_KERNEL
);
711 pr_err("ahash request allocation failure\n");
715 init_completion(&tresult
.completion
);
716 ahash_request_set_callback(req
, CRYPTO_TFM_REQ_MAY_BACKLOG
,
717 tcrypt_complete
, &tresult
);
719 output
= kmalloc(MAX_DIGEST_SIZE
, GFP_KERNEL
);
723 for (i
= 0; speed
[i
].blen
!= 0; i
++) {
724 if (speed
[i
].blen
> TVMEMSIZE
* PAGE_SIZE
) {
725 pr_err("template (%u) too big for tvmem (%lu)\n",
726 speed
[i
].blen
, TVMEMSIZE
* PAGE_SIZE
);
731 "(%5u byte blocks,%5u bytes per update,%4u updates): ",
732 i
, speed
[i
].blen
, speed
[i
].plen
, speed
[i
].blen
/ speed
[i
].plen
);
734 ahash_request_set_crypt(req
, sg
, output
, speed
[i
].plen
);
737 ret
= test_ahash_jiffies(req
, speed
[i
].blen
,
738 speed
[i
].plen
, output
, secs
);
740 ret
= test_ahash_cycles(req
, speed
[i
].blen
,
741 speed
[i
].plen
, output
);
744 pr_err("hashing failed ret=%d\n", ret
);
752 ahash_request_free(req
);
755 crypto_free_ahash(tfm
);
758 static void test_ahash_speed(const char *algo
, unsigned int secs
,
759 struct hash_speed
*speed
)
761 return test_ahash_speed_common(algo
, secs
, speed
, 0);
764 static void test_hash_speed(const char *algo
, unsigned int secs
,
765 struct hash_speed
*speed
)
767 return test_ahash_speed_common(algo
, secs
, speed
, CRYPTO_ALG_ASYNC
);
770 static inline int do_one_acipher_op(struct skcipher_request
*req
, int ret
)
772 if (ret
== -EINPROGRESS
|| ret
== -EBUSY
) {
773 struct tcrypt_result
*tr
= req
->base
.data
;
775 wait_for_completion(&tr
->completion
);
776 reinit_completion(&tr
->completion
);
783 static int test_acipher_jiffies(struct skcipher_request
*req
, int enc
,
786 unsigned long start
, end
;
790 for (start
= jiffies
, end
= start
+ secs
* HZ
, bcount
= 0;
791 time_before(jiffies
, end
); bcount
++) {
793 ret
= do_one_acipher_op(req
,
794 crypto_skcipher_encrypt(req
));
796 ret
= do_one_acipher_op(req
,
797 crypto_skcipher_decrypt(req
));
803 pr_cont("%d operations in %d seconds (%ld bytes)\n",
804 bcount
, secs
, (long)bcount
* blen
);
808 static int test_acipher_cycles(struct skcipher_request
*req
, int enc
,
811 unsigned long cycles
= 0;
816 for (i
= 0; i
< 4; i
++) {
818 ret
= do_one_acipher_op(req
,
819 crypto_skcipher_encrypt(req
));
821 ret
= do_one_acipher_op(req
,
822 crypto_skcipher_decrypt(req
));
828 /* The real thing. */
829 for (i
= 0; i
< 8; i
++) {
832 start
= get_cycles();
834 ret
= do_one_acipher_op(req
,
835 crypto_skcipher_encrypt(req
));
837 ret
= do_one_acipher_op(req
,
838 crypto_skcipher_decrypt(req
));
844 cycles
+= end
- start
;
849 pr_cont("1 operation in %lu cycles (%d bytes)\n",
850 (cycles
+ 4) / 8, blen
);
855 static void test_skcipher_speed(const char *algo
, int enc
, unsigned int secs
,
856 struct cipher_speed_template
*template,
857 unsigned int tcount
, u8
*keysize
, bool async
)
859 unsigned int ret
, i
, j
, k
, iv_len
;
860 struct tcrypt_result tresult
;
863 struct skcipher_request
*req
;
864 struct crypto_skcipher
*tfm
;
873 init_completion(&tresult
.completion
);
875 tfm
= crypto_alloc_skcipher(algo
, 0, async
? 0 : CRYPTO_ALG_ASYNC
);
878 pr_err("failed to load transform for %s: %ld\n", algo
,
883 pr_info("\ntesting speed of async %s (%s) %s\n", algo
,
884 get_driver_name(crypto_skcipher
, tfm
), e
);
886 req
= skcipher_request_alloc(tfm
, GFP_KERNEL
);
888 pr_err("tcrypt: skcipher: Failed to allocate request for %s\n",
893 skcipher_request_set_callback(req
, CRYPTO_TFM_REQ_MAY_BACKLOG
,
894 tcrypt_complete
, &tresult
);
898 b_size
= block_sizes
;
901 struct scatterlist sg
[TVMEMSIZE
];
903 if ((*keysize
+ *b_size
) > TVMEMSIZE
* PAGE_SIZE
) {
904 pr_err("template (%u) too big for "
905 "tvmem (%lu)\n", *keysize
+ *b_size
,
906 TVMEMSIZE
* PAGE_SIZE
);
910 pr_info("test %u (%d bit key, %d byte blocks): ", i
,
911 *keysize
* 8, *b_size
);
913 memset(tvmem
[0], 0xff, PAGE_SIZE
);
915 /* set key, plain text and IV */
917 for (j
= 0; j
< tcount
; j
++) {
918 if (template[j
].klen
== *keysize
) {
919 key
= template[j
].key
;
924 crypto_skcipher_clear_flags(tfm
, ~0);
926 ret
= crypto_skcipher_setkey(tfm
, key
, *keysize
);
928 pr_err("setkey() failed flags=%x\n",
929 crypto_skcipher_get_flags(tfm
));
933 k
= *keysize
+ *b_size
;
934 sg_init_table(sg
, DIV_ROUND_UP(k
, PAGE_SIZE
));
937 sg_set_buf(sg
, tvmem
[0] + *keysize
,
938 PAGE_SIZE
- *keysize
);
941 while (k
> PAGE_SIZE
) {
942 sg_set_buf(sg
+ j
, tvmem
[j
], PAGE_SIZE
);
943 memset(tvmem
[j
], 0xff, PAGE_SIZE
);
947 sg_set_buf(sg
+ j
, tvmem
[j
], k
);
948 memset(tvmem
[j
], 0xff, k
);
950 sg_set_buf(sg
, tvmem
[0] + *keysize
, *b_size
);
953 iv_len
= crypto_skcipher_ivsize(tfm
);
955 memset(&iv
, 0xff, iv_len
);
957 skcipher_request_set_crypt(req
, sg
, sg
, *b_size
, iv
);
960 ret
= test_acipher_jiffies(req
, enc
,
963 ret
= test_acipher_cycles(req
, enc
,
967 pr_err("%s() failed flags=%x\n", e
,
968 crypto_skcipher_get_flags(tfm
));
978 skcipher_request_free(req
);
980 crypto_free_skcipher(tfm
);
983 static void test_acipher_speed(const char *algo
, int enc
, unsigned int secs
,
984 struct cipher_speed_template
*template,
985 unsigned int tcount
, u8
*keysize
)
987 return test_skcipher_speed(algo
, enc
, secs
, template, tcount
, keysize
,
991 static void test_cipher_speed(const char *algo
, int enc
, unsigned int secs
,
992 struct cipher_speed_template
*template,
993 unsigned int tcount
, u8
*keysize
)
995 return test_skcipher_speed(algo
, enc
, secs
, template, tcount
, keysize
,
999 static void test_available(void)
1001 char **name
= check
;
1004 printk("alg %s ", *name
);
1005 printk(crypto_has_alg(*name
, 0, 0) ?
1006 "found\n" : "not found\n");
1011 static inline int tcrypt_test(const char *alg
)
1015 pr_debug("testing %s\n", alg
);
1017 ret
= alg_test(alg
, alg
, 0, 0);
1018 /* non-fips algs return -EINVAL in fips mode */
1019 if (fips_enabled
&& ret
== -EINVAL
)
1024 static int do_test(const char *alg
, u32 type
, u32 mask
, int m
)
1032 if (!crypto_has_alg(alg
, type
,
1033 mask
?: CRYPTO_ALG_TYPE_MASK
))
1038 for (i
= 1; i
< 200; i
++)
1039 ret
+= do_test(NULL
, 0, 0, i
);
1043 ret
+= tcrypt_test("md5");
1047 ret
+= tcrypt_test("sha1");
1051 ret
+= tcrypt_test("ecb(des)");
1052 ret
+= tcrypt_test("cbc(des)");
1053 ret
+= tcrypt_test("ctr(des)");
1057 ret
+= tcrypt_test("ecb(des3_ede)");
1058 ret
+= tcrypt_test("cbc(des3_ede)");
1059 ret
+= tcrypt_test("ctr(des3_ede)");
1063 ret
+= tcrypt_test("md4");
1067 ret
+= tcrypt_test("sha256");
1071 ret
+= tcrypt_test("ecb(blowfish)");
1072 ret
+= tcrypt_test("cbc(blowfish)");
1073 ret
+= tcrypt_test("ctr(blowfish)");
1077 ret
+= tcrypt_test("ecb(twofish)");
1078 ret
+= tcrypt_test("cbc(twofish)");
1079 ret
+= tcrypt_test("ctr(twofish)");
1080 ret
+= tcrypt_test("lrw(twofish)");
1081 ret
+= tcrypt_test("xts(twofish)");
1085 ret
+= tcrypt_test("ecb(serpent)");
1086 ret
+= tcrypt_test("cbc(serpent)");
1087 ret
+= tcrypt_test("ctr(serpent)");
1088 ret
+= tcrypt_test("lrw(serpent)");
1089 ret
+= tcrypt_test("xts(serpent)");
1093 ret
+= tcrypt_test("ecb(aes)");
1094 ret
+= tcrypt_test("cbc(aes)");
1095 ret
+= tcrypt_test("lrw(aes)");
1096 ret
+= tcrypt_test("xts(aes)");
1097 ret
+= tcrypt_test("ctr(aes)");
1098 ret
+= tcrypt_test("rfc3686(ctr(aes))");
1102 ret
+= tcrypt_test("sha384");
1106 ret
+= tcrypt_test("sha512");
1110 ret
+= tcrypt_test("deflate");
1114 ret
+= tcrypt_test("ecb(cast5)");
1115 ret
+= tcrypt_test("cbc(cast5)");
1116 ret
+= tcrypt_test("ctr(cast5)");
1120 ret
+= tcrypt_test("ecb(cast6)");
1121 ret
+= tcrypt_test("cbc(cast6)");
1122 ret
+= tcrypt_test("ctr(cast6)");
1123 ret
+= tcrypt_test("lrw(cast6)");
1124 ret
+= tcrypt_test("xts(cast6)");
1128 ret
+= tcrypt_test("ecb(arc4)");
1132 ret
+= tcrypt_test("michael_mic");
1136 ret
+= tcrypt_test("crc32c");
1140 ret
+= tcrypt_test("ecb(tea)");
1144 ret
+= tcrypt_test("ecb(xtea)");
1148 ret
+= tcrypt_test("ecb(khazad)");
1152 ret
+= tcrypt_test("wp512");
1156 ret
+= tcrypt_test("wp384");
1160 ret
+= tcrypt_test("wp256");
1164 ret
+= tcrypt_test("ecb(tnepres)");
1168 ret
+= tcrypt_test("ecb(anubis)");
1169 ret
+= tcrypt_test("cbc(anubis)");
1173 ret
+= tcrypt_test("tgr192");
1177 ret
+= tcrypt_test("tgr160");
1181 ret
+= tcrypt_test("tgr128");
1185 ret
+= tcrypt_test("ecb(xeta)");
1189 ret
+= tcrypt_test("pcbc(fcrypt)");
1193 ret
+= tcrypt_test("ecb(camellia)");
1194 ret
+= tcrypt_test("cbc(camellia)");
1195 ret
+= tcrypt_test("ctr(camellia)");
1196 ret
+= tcrypt_test("lrw(camellia)");
1197 ret
+= tcrypt_test("xts(camellia)");
1201 ret
+= tcrypt_test("sha224");
1205 ret
+= tcrypt_test("salsa20");
1209 ret
+= tcrypt_test("gcm(aes)");
1213 ret
+= tcrypt_test("lzo");
1217 ret
+= tcrypt_test("ccm(aes)");
1221 ret
+= tcrypt_test("cts(cbc(aes))");
1225 ret
+= tcrypt_test("rmd128");
1229 ret
+= tcrypt_test("rmd160");
1233 ret
+= tcrypt_test("rmd256");
1237 ret
+= tcrypt_test("rmd320");
1241 ret
+= tcrypt_test("ecb(seed)");
1245 ret
+= tcrypt_test("zlib");
1249 ret
+= tcrypt_test("rfc4309(ccm(aes))");
1253 ret
+= tcrypt_test("ghash");
1257 ret
+= tcrypt_test("crct10dif");
1261 ret
+= tcrypt_test("sha3-224");
1265 ret
+= tcrypt_test("sha3-256");
1269 ret
+= tcrypt_test("sha3-384");
1273 ret
+= tcrypt_test("sha3-512");
1277 ret
+= tcrypt_test("hmac(md5)");
1281 ret
+= tcrypt_test("hmac(sha1)");
1285 ret
+= tcrypt_test("hmac(sha256)");
1289 ret
+= tcrypt_test("hmac(sha384)");
1293 ret
+= tcrypt_test("hmac(sha512)");
1297 ret
+= tcrypt_test("hmac(sha224)");
1301 ret
+= tcrypt_test("xcbc(aes)");
1305 ret
+= tcrypt_test("hmac(rmd128)");
1309 ret
+= tcrypt_test("hmac(rmd160)");
1313 ret
+= tcrypt_test("vmac(aes)");
1317 ret
+= tcrypt_test("hmac(crc32)");
1321 ret
+= tcrypt_test("hmac(sha3-224)");
1325 ret
+= tcrypt_test("hmac(sha3-256)");
1329 ret
+= tcrypt_test("hmac(sha3-384)");
1333 ret
+= tcrypt_test("hmac(sha3-512)");
1337 ret
+= tcrypt_test("ansi_cprng");
1341 ret
+= tcrypt_test("rfc4106(gcm(aes))");
1345 ret
+= tcrypt_test("rfc4543(gcm(aes))");
1349 ret
+= tcrypt_test("cmac(aes)");
1353 ret
+= tcrypt_test("cmac(des3_ede)");
1357 ret
+= tcrypt_test("authenc(hmac(sha1),cbc(aes))");
1361 ret
+= tcrypt_test("authenc(hmac(md5),ecb(cipher_null))");
1365 ret
+= tcrypt_test("authenc(hmac(sha1),ecb(cipher_null))");
1368 ret
+= tcrypt_test("authenc(hmac(sha1),cbc(des))");
1371 ret
+= tcrypt_test("authenc(hmac(sha1),cbc(des3_ede))");
1374 ret
+= tcrypt_test("authenc(hmac(sha224),cbc(des))");
1377 ret
+= tcrypt_test("authenc(hmac(sha224),cbc(des3_ede))");
1380 ret
+= tcrypt_test("authenc(hmac(sha256),cbc(des))");
1383 ret
+= tcrypt_test("authenc(hmac(sha256),cbc(des3_ede))");
1386 ret
+= tcrypt_test("authenc(hmac(sha384),cbc(des))");
1389 ret
+= tcrypt_test("authenc(hmac(sha384),cbc(des3_ede))");
1392 ret
+= tcrypt_test("authenc(hmac(sha512),cbc(des))");
1395 ret
+= tcrypt_test("authenc(hmac(sha512),cbc(des3_ede))");
1398 test_cipher_speed("ecb(aes)", ENCRYPT
, sec
, NULL
, 0,
1399 speed_template_16_24_32
);
1400 test_cipher_speed("ecb(aes)", DECRYPT
, sec
, NULL
, 0,
1401 speed_template_16_24_32
);
1402 test_cipher_speed("cbc(aes)", ENCRYPT
, sec
, NULL
, 0,
1403 speed_template_16_24_32
);
1404 test_cipher_speed("cbc(aes)", DECRYPT
, sec
, NULL
, 0,
1405 speed_template_16_24_32
);
1406 test_cipher_speed("lrw(aes)", ENCRYPT
, sec
, NULL
, 0,
1407 speed_template_32_40_48
);
1408 test_cipher_speed("lrw(aes)", DECRYPT
, sec
, NULL
, 0,
1409 speed_template_32_40_48
);
1410 test_cipher_speed("xts(aes)", ENCRYPT
, sec
, NULL
, 0,
1411 speed_template_32_48_64
);
1412 test_cipher_speed("xts(aes)", DECRYPT
, sec
, NULL
, 0,
1413 speed_template_32_48_64
);
1414 test_cipher_speed("cts(cbc(aes))", ENCRYPT
, sec
, NULL
, 0,
1415 speed_template_16_24_32
);
1416 test_cipher_speed("cts(cbc(aes))", DECRYPT
, sec
, NULL
, 0,
1417 speed_template_16_24_32
);
1418 test_cipher_speed("ctr(aes)", ENCRYPT
, sec
, NULL
, 0,
1419 speed_template_16_24_32
);
1420 test_cipher_speed("ctr(aes)", DECRYPT
, sec
, NULL
, 0,
1421 speed_template_16_24_32
);
1425 test_cipher_speed("ecb(des3_ede)", ENCRYPT
, sec
,
1426 des3_speed_template
, DES3_SPEED_VECTORS
,
1428 test_cipher_speed("ecb(des3_ede)", DECRYPT
, sec
,
1429 des3_speed_template
, DES3_SPEED_VECTORS
,
1431 test_cipher_speed("cbc(des3_ede)", ENCRYPT
, sec
,
1432 des3_speed_template
, DES3_SPEED_VECTORS
,
1434 test_cipher_speed("cbc(des3_ede)", DECRYPT
, sec
,
1435 des3_speed_template
, DES3_SPEED_VECTORS
,
1437 test_cipher_speed("ctr(des3_ede)", ENCRYPT
, sec
,
1438 des3_speed_template
, DES3_SPEED_VECTORS
,
1440 test_cipher_speed("ctr(des3_ede)", DECRYPT
, sec
,
1441 des3_speed_template
, DES3_SPEED_VECTORS
,
1446 test_cipher_speed("ecb(twofish)", ENCRYPT
, sec
, NULL
, 0,
1447 speed_template_16_24_32
);
1448 test_cipher_speed("ecb(twofish)", DECRYPT
, sec
, NULL
, 0,
1449 speed_template_16_24_32
);
1450 test_cipher_speed("cbc(twofish)", ENCRYPT
, sec
, NULL
, 0,
1451 speed_template_16_24_32
);
1452 test_cipher_speed("cbc(twofish)", DECRYPT
, sec
, NULL
, 0,
1453 speed_template_16_24_32
);
1454 test_cipher_speed("ctr(twofish)", ENCRYPT
, sec
, NULL
, 0,
1455 speed_template_16_24_32
);
1456 test_cipher_speed("ctr(twofish)", DECRYPT
, sec
, NULL
, 0,
1457 speed_template_16_24_32
);
1458 test_cipher_speed("lrw(twofish)", ENCRYPT
, sec
, NULL
, 0,
1459 speed_template_32_40_48
);
1460 test_cipher_speed("lrw(twofish)", DECRYPT
, sec
, NULL
, 0,
1461 speed_template_32_40_48
);
1462 test_cipher_speed("xts(twofish)", ENCRYPT
, sec
, NULL
, 0,
1463 speed_template_32_48_64
);
1464 test_cipher_speed("xts(twofish)", DECRYPT
, sec
, NULL
, 0,
1465 speed_template_32_48_64
);
1469 test_cipher_speed("ecb(blowfish)", ENCRYPT
, sec
, NULL
, 0,
1470 speed_template_8_32
);
1471 test_cipher_speed("ecb(blowfish)", DECRYPT
, sec
, NULL
, 0,
1472 speed_template_8_32
);
1473 test_cipher_speed("cbc(blowfish)", ENCRYPT
, sec
, NULL
, 0,
1474 speed_template_8_32
);
1475 test_cipher_speed("cbc(blowfish)", DECRYPT
, sec
, NULL
, 0,
1476 speed_template_8_32
);
1477 test_cipher_speed("ctr(blowfish)", ENCRYPT
, sec
, NULL
, 0,
1478 speed_template_8_32
);
1479 test_cipher_speed("ctr(blowfish)", DECRYPT
, sec
, NULL
, 0,
1480 speed_template_8_32
);
1484 test_cipher_speed("ecb(des)", ENCRYPT
, sec
, NULL
, 0,
1486 test_cipher_speed("ecb(des)", DECRYPT
, sec
, NULL
, 0,
1488 test_cipher_speed("cbc(des)", ENCRYPT
, sec
, NULL
, 0,
1490 test_cipher_speed("cbc(des)", DECRYPT
, sec
, NULL
, 0,
1495 test_cipher_speed("ecb(camellia)", ENCRYPT
, sec
, NULL
, 0,
1496 speed_template_16_24_32
);
1497 test_cipher_speed("ecb(camellia)", DECRYPT
, sec
, NULL
, 0,
1498 speed_template_16_24_32
);
1499 test_cipher_speed("cbc(camellia)", ENCRYPT
, sec
, NULL
, 0,
1500 speed_template_16_24_32
);
1501 test_cipher_speed("cbc(camellia)", DECRYPT
, sec
, NULL
, 0,
1502 speed_template_16_24_32
);
1503 test_cipher_speed("ctr(camellia)", ENCRYPT
, sec
, NULL
, 0,
1504 speed_template_16_24_32
);
1505 test_cipher_speed("ctr(camellia)", DECRYPT
, sec
, NULL
, 0,
1506 speed_template_16_24_32
);
1507 test_cipher_speed("lrw(camellia)", ENCRYPT
, sec
, NULL
, 0,
1508 speed_template_32_40_48
);
1509 test_cipher_speed("lrw(camellia)", DECRYPT
, sec
, NULL
, 0,
1510 speed_template_32_40_48
);
1511 test_cipher_speed("xts(camellia)", ENCRYPT
, sec
, NULL
, 0,
1512 speed_template_32_48_64
);
1513 test_cipher_speed("xts(camellia)", DECRYPT
, sec
, NULL
, 0,
1514 speed_template_32_48_64
);
1518 test_cipher_speed("salsa20", ENCRYPT
, sec
, NULL
, 0,
1519 speed_template_16_32
);
1523 test_cipher_speed("ecb(serpent)", ENCRYPT
, sec
, NULL
, 0,
1524 speed_template_16_32
);
1525 test_cipher_speed("ecb(serpent)", DECRYPT
, sec
, NULL
, 0,
1526 speed_template_16_32
);
1527 test_cipher_speed("cbc(serpent)", ENCRYPT
, sec
, NULL
, 0,
1528 speed_template_16_32
);
1529 test_cipher_speed("cbc(serpent)", DECRYPT
, sec
, NULL
, 0,
1530 speed_template_16_32
);
1531 test_cipher_speed("ctr(serpent)", ENCRYPT
, sec
, NULL
, 0,
1532 speed_template_16_32
);
1533 test_cipher_speed("ctr(serpent)", DECRYPT
, sec
, NULL
, 0,
1534 speed_template_16_32
);
1535 test_cipher_speed("lrw(serpent)", ENCRYPT
, sec
, NULL
, 0,
1536 speed_template_32_48
);
1537 test_cipher_speed("lrw(serpent)", DECRYPT
, sec
, NULL
, 0,
1538 speed_template_32_48
);
1539 test_cipher_speed("xts(serpent)", ENCRYPT
, sec
, NULL
, 0,
1540 speed_template_32_64
);
1541 test_cipher_speed("xts(serpent)", DECRYPT
, sec
, NULL
, 0,
1542 speed_template_32_64
);
1546 test_cipher_speed("ecb(arc4)", ENCRYPT
, sec
, NULL
, 0,
1551 test_cipher_speed("ecb(cast5)", ENCRYPT
, sec
, NULL
, 0,
1552 speed_template_8_16
);
1553 test_cipher_speed("ecb(cast5)", DECRYPT
, sec
, NULL
, 0,
1554 speed_template_8_16
);
1555 test_cipher_speed("cbc(cast5)", ENCRYPT
, sec
, NULL
, 0,
1556 speed_template_8_16
);
1557 test_cipher_speed("cbc(cast5)", DECRYPT
, sec
, NULL
, 0,
1558 speed_template_8_16
);
1559 test_cipher_speed("ctr(cast5)", ENCRYPT
, sec
, NULL
, 0,
1560 speed_template_8_16
);
1561 test_cipher_speed("ctr(cast5)", DECRYPT
, sec
, NULL
, 0,
1562 speed_template_8_16
);
1566 test_cipher_speed("ecb(cast6)", ENCRYPT
, sec
, NULL
, 0,
1567 speed_template_16_32
);
1568 test_cipher_speed("ecb(cast6)", DECRYPT
, sec
, NULL
, 0,
1569 speed_template_16_32
);
1570 test_cipher_speed("cbc(cast6)", ENCRYPT
, sec
, NULL
, 0,
1571 speed_template_16_32
);
1572 test_cipher_speed("cbc(cast6)", DECRYPT
, sec
, NULL
, 0,
1573 speed_template_16_32
);
1574 test_cipher_speed("ctr(cast6)", ENCRYPT
, sec
, NULL
, 0,
1575 speed_template_16_32
);
1576 test_cipher_speed("ctr(cast6)", DECRYPT
, sec
, NULL
, 0,
1577 speed_template_16_32
);
1578 test_cipher_speed("lrw(cast6)", ENCRYPT
, sec
, NULL
, 0,
1579 speed_template_32_48
);
1580 test_cipher_speed("lrw(cast6)", DECRYPT
, sec
, NULL
, 0,
1581 speed_template_32_48
);
1582 test_cipher_speed("xts(cast6)", ENCRYPT
, sec
, NULL
, 0,
1583 speed_template_32_64
);
1584 test_cipher_speed("xts(cast6)", DECRYPT
, sec
, NULL
, 0,
1585 speed_template_32_64
);
1589 test_aead_speed("rfc4106(gcm(aes))", ENCRYPT
, sec
,
1590 NULL
, 0, 16, 16, aead_speed_template_20
);
1591 test_aead_speed("gcm(aes)", ENCRYPT
, sec
,
1592 NULL
, 0, 16, 8, speed_template_16_24_32
);
1596 test_aead_speed("rfc4309(ccm(aes))", ENCRYPT
, sec
,
1597 NULL
, 0, 16, 16, aead_speed_template_19
);
1601 test_aead_speed("rfc7539esp(chacha20,poly1305)", ENCRYPT
, sec
,
1602 NULL
, 0, 16, 8, aead_speed_template_36
);
1606 test_cipher_speed("chacha20", ENCRYPT
, sec
, NULL
, 0,
1613 test_hash_speed(alg
, sec
, generic_hash_speed_template
);
1620 test_hash_speed("md4", sec
, generic_hash_speed_template
);
1621 if (mode
> 300 && mode
< 400) break;
1624 test_hash_speed("md5", sec
, generic_hash_speed_template
);
1625 if (mode
> 300 && mode
< 400) break;
1628 test_hash_speed("sha1", sec
, generic_hash_speed_template
);
1629 if (mode
> 300 && mode
< 400) break;
1632 test_hash_speed("sha256", sec
, generic_hash_speed_template
);
1633 if (mode
> 300 && mode
< 400) break;
1636 test_hash_speed("sha384", sec
, generic_hash_speed_template
);
1637 if (mode
> 300 && mode
< 400) break;
1640 test_hash_speed("sha512", sec
, generic_hash_speed_template
);
1641 if (mode
> 300 && mode
< 400) break;
1644 test_hash_speed("wp256", sec
, generic_hash_speed_template
);
1645 if (mode
> 300 && mode
< 400) break;
1648 test_hash_speed("wp384", sec
, generic_hash_speed_template
);
1649 if (mode
> 300 && mode
< 400) break;
1652 test_hash_speed("wp512", sec
, generic_hash_speed_template
);
1653 if (mode
> 300 && mode
< 400) break;
1656 test_hash_speed("tgr128", sec
, generic_hash_speed_template
);
1657 if (mode
> 300 && mode
< 400) break;
1660 test_hash_speed("tgr160", sec
, generic_hash_speed_template
);
1661 if (mode
> 300 && mode
< 400) break;
1664 test_hash_speed("tgr192", sec
, generic_hash_speed_template
);
1665 if (mode
> 300 && mode
< 400) break;
1668 test_hash_speed("sha224", sec
, generic_hash_speed_template
);
1669 if (mode
> 300 && mode
< 400) break;
1672 test_hash_speed("rmd128", sec
, generic_hash_speed_template
);
1673 if (mode
> 300 && mode
< 400) break;
1676 test_hash_speed("rmd160", sec
, generic_hash_speed_template
);
1677 if (mode
> 300 && mode
< 400) break;
1680 test_hash_speed("rmd256", sec
, generic_hash_speed_template
);
1681 if (mode
> 300 && mode
< 400) break;
1684 test_hash_speed("rmd320", sec
, generic_hash_speed_template
);
1685 if (mode
> 300 && mode
< 400) break;
1688 test_hash_speed("ghash-generic", sec
, hash_speed_template_16
);
1689 if (mode
> 300 && mode
< 400) break;
1692 test_hash_speed("crc32c", sec
, generic_hash_speed_template
);
1693 if (mode
> 300 && mode
< 400) break;
1696 test_hash_speed("crct10dif", sec
, generic_hash_speed_template
);
1697 if (mode
> 300 && mode
< 400) break;
1700 test_hash_speed("poly1305", sec
, poly1305_speed_template
);
1701 if (mode
> 300 && mode
< 400) break;
1704 test_hash_speed("sha3-224", sec
, generic_hash_speed_template
);
1705 if (mode
> 300 && mode
< 400) break;
1708 test_hash_speed("sha3-256", sec
, generic_hash_speed_template
);
1709 if (mode
> 300 && mode
< 400) break;
1712 test_hash_speed("sha3-384", sec
, generic_hash_speed_template
);
1713 if (mode
> 300 && mode
< 400) break;
1716 test_hash_speed("sha3-512", sec
, generic_hash_speed_template
);
1717 if (mode
> 300 && mode
< 400) break;
1724 test_ahash_speed(alg
, sec
, generic_hash_speed_template
);
1731 test_ahash_speed("md4", sec
, generic_hash_speed_template
);
1732 if (mode
> 400 && mode
< 500) break;
1735 test_ahash_speed("md5", sec
, generic_hash_speed_template
);
1736 if (mode
> 400 && mode
< 500) break;
1739 test_ahash_speed("sha1", sec
, generic_hash_speed_template
);
1740 if (mode
> 400 && mode
< 500) break;
1743 test_ahash_speed("sha256", sec
, generic_hash_speed_template
);
1744 if (mode
> 400 && mode
< 500) break;
1747 test_ahash_speed("sha384", sec
, generic_hash_speed_template
);
1748 if (mode
> 400 && mode
< 500) break;
1751 test_ahash_speed("sha512", sec
, generic_hash_speed_template
);
1752 if (mode
> 400 && mode
< 500) break;
1755 test_ahash_speed("wp256", sec
, generic_hash_speed_template
);
1756 if (mode
> 400 && mode
< 500) break;
1759 test_ahash_speed("wp384", sec
, generic_hash_speed_template
);
1760 if (mode
> 400 && mode
< 500) break;
1763 test_ahash_speed("wp512", sec
, generic_hash_speed_template
);
1764 if (mode
> 400 && mode
< 500) break;
1767 test_ahash_speed("tgr128", sec
, generic_hash_speed_template
);
1768 if (mode
> 400 && mode
< 500) break;
1771 test_ahash_speed("tgr160", sec
, generic_hash_speed_template
);
1772 if (mode
> 400 && mode
< 500) break;
1775 test_ahash_speed("tgr192", sec
, generic_hash_speed_template
);
1776 if (mode
> 400 && mode
< 500) break;
1779 test_ahash_speed("sha224", sec
, generic_hash_speed_template
);
1780 if (mode
> 400 && mode
< 500) break;
1783 test_ahash_speed("rmd128", sec
, generic_hash_speed_template
);
1784 if (mode
> 400 && mode
< 500) break;
1787 test_ahash_speed("rmd160", sec
, generic_hash_speed_template
);
1788 if (mode
> 400 && mode
< 500) break;
1791 test_ahash_speed("rmd256", sec
, generic_hash_speed_template
);
1792 if (mode
> 400 && mode
< 500) break;
1795 test_ahash_speed("rmd320", sec
, generic_hash_speed_template
);
1796 if (mode
> 400 && mode
< 500) break;
1799 test_ahash_speed("sha3-224", sec
, generic_hash_speed_template
);
1800 if (mode
> 400 && mode
< 500) break;
1803 test_ahash_speed("sha3-256", sec
, generic_hash_speed_template
);
1804 if (mode
> 400 && mode
< 500) break;
1807 test_ahash_speed("sha3-384", sec
, generic_hash_speed_template
);
1808 if (mode
> 400 && mode
< 500) break;
1812 test_ahash_speed("sha3-512", sec
, generic_hash_speed_template
);
1813 if (mode
> 400 && mode
< 500) break;
1816 test_mb_ahash_speed("sha1", sec
, generic_hash_speed_template
);
1817 if (mode
> 400 && mode
< 500) break;
1820 test_mb_ahash_speed("sha256", sec
, generic_hash_speed_template
);
1821 if (mode
> 400 && mode
< 500) break;
1824 test_mb_ahash_speed("sha512", sec
, generic_hash_speed_template
);
1825 if (mode
> 400 && mode
< 500) break;
1831 test_acipher_speed("ecb(aes)", ENCRYPT
, sec
, NULL
, 0,
1832 speed_template_16_24_32
);
1833 test_acipher_speed("ecb(aes)", DECRYPT
, sec
, NULL
, 0,
1834 speed_template_16_24_32
);
1835 test_acipher_speed("cbc(aes)", ENCRYPT
, sec
, NULL
, 0,
1836 speed_template_16_24_32
);
1837 test_acipher_speed("cbc(aes)", DECRYPT
, sec
, NULL
, 0,
1838 speed_template_16_24_32
);
1839 test_acipher_speed("lrw(aes)", ENCRYPT
, sec
, NULL
, 0,
1840 speed_template_32_40_48
);
1841 test_acipher_speed("lrw(aes)", DECRYPT
, sec
, NULL
, 0,
1842 speed_template_32_40_48
);
1843 test_acipher_speed("xts(aes)", ENCRYPT
, sec
, NULL
, 0,
1844 speed_template_32_48_64
);
1845 test_acipher_speed("xts(aes)", DECRYPT
, sec
, NULL
, 0,
1846 speed_template_32_48_64
);
1847 test_acipher_speed("cts(cbc(aes))", ENCRYPT
, sec
, NULL
, 0,
1848 speed_template_16_24_32
);
1849 test_acipher_speed("cts(cbc(aes))", DECRYPT
, sec
, NULL
, 0,
1850 speed_template_16_24_32
);
1851 test_acipher_speed("ctr(aes)", ENCRYPT
, sec
, NULL
, 0,
1852 speed_template_16_24_32
);
1853 test_acipher_speed("ctr(aes)", DECRYPT
, sec
, NULL
, 0,
1854 speed_template_16_24_32
);
1855 test_acipher_speed("cfb(aes)", ENCRYPT
, sec
, NULL
, 0,
1856 speed_template_16_24_32
);
1857 test_acipher_speed("cfb(aes)", DECRYPT
, sec
, NULL
, 0,
1858 speed_template_16_24_32
);
1859 test_acipher_speed("ofb(aes)", ENCRYPT
, sec
, NULL
, 0,
1860 speed_template_16_24_32
);
1861 test_acipher_speed("ofb(aes)", DECRYPT
, sec
, NULL
, 0,
1862 speed_template_16_24_32
);
1863 test_acipher_speed("rfc3686(ctr(aes))", ENCRYPT
, sec
, NULL
, 0,
1864 speed_template_20_28_36
);
1865 test_acipher_speed("rfc3686(ctr(aes))", DECRYPT
, sec
, NULL
, 0,
1866 speed_template_20_28_36
);
1870 test_acipher_speed("ecb(des3_ede)", ENCRYPT
, sec
,
1871 des3_speed_template
, DES3_SPEED_VECTORS
,
1873 test_acipher_speed("ecb(des3_ede)", DECRYPT
, sec
,
1874 des3_speed_template
, DES3_SPEED_VECTORS
,
1876 test_acipher_speed("cbc(des3_ede)", ENCRYPT
, sec
,
1877 des3_speed_template
, DES3_SPEED_VECTORS
,
1879 test_acipher_speed("cbc(des3_ede)", DECRYPT
, sec
,
1880 des3_speed_template
, DES3_SPEED_VECTORS
,
1882 test_acipher_speed("cfb(des3_ede)", ENCRYPT
, sec
,
1883 des3_speed_template
, DES3_SPEED_VECTORS
,
1885 test_acipher_speed("cfb(des3_ede)", DECRYPT
, sec
,
1886 des3_speed_template
, DES3_SPEED_VECTORS
,
1888 test_acipher_speed("ofb(des3_ede)", ENCRYPT
, sec
,
1889 des3_speed_template
, DES3_SPEED_VECTORS
,
1891 test_acipher_speed("ofb(des3_ede)", DECRYPT
, sec
,
1892 des3_speed_template
, DES3_SPEED_VECTORS
,
1897 test_acipher_speed("ecb(des)", ENCRYPT
, sec
, NULL
, 0,
1899 test_acipher_speed("ecb(des)", DECRYPT
, sec
, NULL
, 0,
1901 test_acipher_speed("cbc(des)", ENCRYPT
, sec
, NULL
, 0,
1903 test_acipher_speed("cbc(des)", DECRYPT
, sec
, NULL
, 0,
1905 test_acipher_speed("cfb(des)", ENCRYPT
, sec
, NULL
, 0,
1907 test_acipher_speed("cfb(des)", DECRYPT
, sec
, NULL
, 0,
1909 test_acipher_speed("ofb(des)", ENCRYPT
, sec
, NULL
, 0,
1911 test_acipher_speed("ofb(des)", DECRYPT
, sec
, NULL
, 0,
1916 test_acipher_speed("ecb(serpent)", ENCRYPT
, sec
, NULL
, 0,
1917 speed_template_16_32
);
1918 test_acipher_speed("ecb(serpent)", DECRYPT
, sec
, NULL
, 0,
1919 speed_template_16_32
);
1920 test_acipher_speed("cbc(serpent)", ENCRYPT
, sec
, NULL
, 0,
1921 speed_template_16_32
);
1922 test_acipher_speed("cbc(serpent)", DECRYPT
, sec
, NULL
, 0,
1923 speed_template_16_32
);
1924 test_acipher_speed("ctr(serpent)", ENCRYPT
, sec
, NULL
, 0,
1925 speed_template_16_32
);
1926 test_acipher_speed("ctr(serpent)", DECRYPT
, sec
, NULL
, 0,
1927 speed_template_16_32
);
1928 test_acipher_speed("lrw(serpent)", ENCRYPT
, sec
, NULL
, 0,
1929 speed_template_32_48
);
1930 test_acipher_speed("lrw(serpent)", DECRYPT
, sec
, NULL
, 0,
1931 speed_template_32_48
);
1932 test_acipher_speed("xts(serpent)", ENCRYPT
, sec
, NULL
, 0,
1933 speed_template_32_64
);
1934 test_acipher_speed("xts(serpent)", DECRYPT
, sec
, NULL
, 0,
1935 speed_template_32_64
);
1939 test_acipher_speed("ecb(twofish)", ENCRYPT
, sec
, NULL
, 0,
1940 speed_template_16_24_32
);
1941 test_acipher_speed("ecb(twofish)", DECRYPT
, sec
, NULL
, 0,
1942 speed_template_16_24_32
);
1943 test_acipher_speed("cbc(twofish)", ENCRYPT
, sec
, NULL
, 0,
1944 speed_template_16_24_32
);
1945 test_acipher_speed("cbc(twofish)", DECRYPT
, sec
, NULL
, 0,
1946 speed_template_16_24_32
);
1947 test_acipher_speed("ctr(twofish)", ENCRYPT
, sec
, NULL
, 0,
1948 speed_template_16_24_32
);
1949 test_acipher_speed("ctr(twofish)", DECRYPT
, sec
, NULL
, 0,
1950 speed_template_16_24_32
);
1951 test_acipher_speed("lrw(twofish)", ENCRYPT
, sec
, NULL
, 0,
1952 speed_template_32_40_48
);
1953 test_acipher_speed("lrw(twofish)", DECRYPT
, sec
, NULL
, 0,
1954 speed_template_32_40_48
);
1955 test_acipher_speed("xts(twofish)", ENCRYPT
, sec
, NULL
, 0,
1956 speed_template_32_48_64
);
1957 test_acipher_speed("xts(twofish)", DECRYPT
, sec
, NULL
, 0,
1958 speed_template_32_48_64
);
1962 test_acipher_speed("ecb(arc4)", ENCRYPT
, sec
, NULL
, 0,
1967 test_acipher_speed("ecb(cast5)", ENCRYPT
, sec
, NULL
, 0,
1968 speed_template_8_16
);
1969 test_acipher_speed("ecb(cast5)", DECRYPT
, sec
, NULL
, 0,
1970 speed_template_8_16
);
1971 test_acipher_speed("cbc(cast5)", ENCRYPT
, sec
, NULL
, 0,
1972 speed_template_8_16
);
1973 test_acipher_speed("cbc(cast5)", DECRYPT
, sec
, NULL
, 0,
1974 speed_template_8_16
);
1975 test_acipher_speed("ctr(cast5)", ENCRYPT
, sec
, NULL
, 0,
1976 speed_template_8_16
);
1977 test_acipher_speed("ctr(cast5)", DECRYPT
, sec
, NULL
, 0,
1978 speed_template_8_16
);
1982 test_acipher_speed("ecb(cast6)", ENCRYPT
, sec
, NULL
, 0,
1983 speed_template_16_32
);
1984 test_acipher_speed("ecb(cast6)", DECRYPT
, sec
, NULL
, 0,
1985 speed_template_16_32
);
1986 test_acipher_speed("cbc(cast6)", ENCRYPT
, sec
, NULL
, 0,
1987 speed_template_16_32
);
1988 test_acipher_speed("cbc(cast6)", DECRYPT
, sec
, NULL
, 0,
1989 speed_template_16_32
);
1990 test_acipher_speed("ctr(cast6)", ENCRYPT
, sec
, NULL
, 0,
1991 speed_template_16_32
);
1992 test_acipher_speed("ctr(cast6)", DECRYPT
, sec
, NULL
, 0,
1993 speed_template_16_32
);
1994 test_acipher_speed("lrw(cast6)", ENCRYPT
, sec
, NULL
, 0,
1995 speed_template_32_48
);
1996 test_acipher_speed("lrw(cast6)", DECRYPT
, sec
, NULL
, 0,
1997 speed_template_32_48
);
1998 test_acipher_speed("xts(cast6)", ENCRYPT
, sec
, NULL
, 0,
1999 speed_template_32_64
);
2000 test_acipher_speed("xts(cast6)", DECRYPT
, sec
, NULL
, 0,
2001 speed_template_32_64
);
2005 test_acipher_speed("ecb(camellia)", ENCRYPT
, sec
, NULL
, 0,
2006 speed_template_16_32
);
2007 test_acipher_speed("ecb(camellia)", DECRYPT
, sec
, NULL
, 0,
2008 speed_template_16_32
);
2009 test_acipher_speed("cbc(camellia)", ENCRYPT
, sec
, NULL
, 0,
2010 speed_template_16_32
);
2011 test_acipher_speed("cbc(camellia)", DECRYPT
, sec
, NULL
, 0,
2012 speed_template_16_32
);
2013 test_acipher_speed("ctr(camellia)", ENCRYPT
, sec
, NULL
, 0,
2014 speed_template_16_32
);
2015 test_acipher_speed("ctr(camellia)", DECRYPT
, sec
, NULL
, 0,
2016 speed_template_16_32
);
2017 test_acipher_speed("lrw(camellia)", ENCRYPT
, sec
, NULL
, 0,
2018 speed_template_32_48
);
2019 test_acipher_speed("lrw(camellia)", DECRYPT
, sec
, NULL
, 0,
2020 speed_template_32_48
);
2021 test_acipher_speed("xts(camellia)", ENCRYPT
, sec
, NULL
, 0,
2022 speed_template_32_64
);
2023 test_acipher_speed("xts(camellia)", DECRYPT
, sec
, NULL
, 0,
2024 speed_template_32_64
);
2028 test_acipher_speed("ecb(blowfish)", ENCRYPT
, sec
, NULL
, 0,
2029 speed_template_8_32
);
2030 test_acipher_speed("ecb(blowfish)", DECRYPT
, sec
, NULL
, 0,
2031 speed_template_8_32
);
2032 test_acipher_speed("cbc(blowfish)", ENCRYPT
, sec
, NULL
, 0,
2033 speed_template_8_32
);
2034 test_acipher_speed("cbc(blowfish)", DECRYPT
, sec
, NULL
, 0,
2035 speed_template_8_32
);
2036 test_acipher_speed("ctr(blowfish)", ENCRYPT
, sec
, NULL
, 0,
2037 speed_template_8_32
);
2038 test_acipher_speed("ctr(blowfish)", DECRYPT
, sec
, NULL
, 0,
2039 speed_template_8_32
);
2050 static int __init
tcrypt_mod_init(void)
2055 for (i
= 0; i
< TVMEMSIZE
; i
++) {
2056 tvmem
[i
] = (void *)__get_free_page(GFP_KERNEL
);
2061 err
= do_test(alg
, type
, mask
, mode
);
2064 printk(KERN_ERR
"tcrypt: one or more tests failed!\n");
2067 pr_debug("all tests passed\n");
2070 /* We intentionaly return -EAGAIN to prevent keeping the module,
2071 * unless we're running in fips mode. It does all its work from
2072 * init() and doesn't offer any runtime functionality, but in
2073 * the fips case, checking for a successful load is helpful.
2074 * => we don't need it in the memory, do we?
2081 for (i
= 0; i
< TVMEMSIZE
&& tvmem
[i
]; i
++)
2082 free_page((unsigned long)tvmem
[i
]);
2088 * If an init function is provided, an exit function must also be provided
2089 * to allow module unload.
2091 static void __exit
tcrypt_mod_fini(void) { }
2093 module_init(tcrypt_mod_init
);
2094 module_exit(tcrypt_mod_fini
);
2096 module_param(alg
, charp
, 0);
2097 module_param(type
, uint
, 0);
2098 module_param(mask
, uint
, 0);
2099 module_param(mode
, int, 0);
2100 module_param(sec
, uint
, 0);
2101 MODULE_PARM_DESC(sec
, "Length in seconds of speed tests "
2102 "(defaults to zero which uses CPU cycles instead)");
2104 MODULE_LICENSE("GPL");
2105 MODULE_DESCRIPTION("Quick & dirty crypto testing module");
2106 MODULE_AUTHOR("James Morris <jmorris@intercode.com.au>");