AHCI: Remove an unnecessary flush from ahci_qc_issue
[linux-2.6/mini2440.git] / crypto / tcrypt.c
blobe47f6e02133c155622d477567d88f890489f151f
1 /*
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 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the Free
13 * Software Foundation; either version 2 of the License, or (at your option)
14 * any later version.
16 * 2007-11-13 Added GCM tests
17 * 2007-11-13 Added AEAD support
18 * 2007-11-06 Added SHA-224 and SHA-224-HMAC tests
19 * 2006-12-07 Added SHA384 HMAC and SHA512 HMAC tests
20 * 2004-08-09 Added cipher speed tests (Reyk Floeter <reyk@vantronix.net>)
21 * 2003-09-14 Rewritten by Kartikey Mahendra Bhatt
25 #include <linux/err.h>
26 #include <linux/init.h>
27 #include <linux/module.h>
28 #include <linux/mm.h>
29 #include <linux/slab.h>
30 #include <linux/scatterlist.h>
31 #include <linux/string.h>
32 #include <linux/crypto.h>
33 #include <linux/highmem.h>
34 #include <linux/moduleparam.h>
35 #include <linux/jiffies.h>
36 #include <linux/timex.h>
37 #include <linux/interrupt.h>
38 #include "tcrypt.h"
41 * Need to kmalloc() memory for testing kmap().
43 #define TVMEMSIZE 16384
44 #define XBUFSIZE 32768
47 * Indexes into the xbuf to simulate cross-page access.
49 #define IDX1 37
50 #define IDX2 32400
51 #define IDX3 1
52 #define IDX4 8193
53 #define IDX5 22222
54 #define IDX6 17101
55 #define IDX7 27333
56 #define IDX8 3000
59 * Used by test_cipher()
61 #define ENCRYPT 1
62 #define DECRYPT 0
64 struct tcrypt_result {
65 struct completion completion;
66 int err;
69 static unsigned int IDX[8] = { IDX1, IDX2, IDX3, IDX4, IDX5, IDX6, IDX7, IDX8 };
72 * Used by test_cipher_speed()
74 static unsigned int sec;
76 static int mode;
77 static char *xbuf;
78 static char *axbuf;
79 static char *tvmem;
81 static char *check[] = {
82 "des", "md5", "des3_ede", "rot13", "sha1", "sha224", "sha256",
83 "blowfish", "twofish", "serpent", "sha384", "sha512", "md4", "aes",
84 "cast6", "arc4", "michael_mic", "deflate", "crc32c", "tea", "xtea",
85 "khazad", "wp512", "wp384", "wp256", "tnepres", "xeta", "fcrypt",
86 "camellia", "seed", "salsa20", "lzo", "cts", NULL
89 static void hexdump(unsigned char *buf, unsigned int len)
91 print_hex_dump(KERN_CONT, "", DUMP_PREFIX_OFFSET,
92 16, 1,
93 buf, len, false);
96 static void tcrypt_complete(struct crypto_async_request *req, int err)
98 struct tcrypt_result *res = req->data;
100 if (err == -EINPROGRESS)
101 return;
103 res->err = err;
104 complete(&res->completion);
107 static void test_hash(char *algo, struct hash_testvec *template,
108 unsigned int tcount)
110 unsigned int i, j, k, temp;
111 struct scatterlist sg[8];
112 char result[64];
113 struct crypto_hash *tfm;
114 struct hash_desc desc;
115 int ret;
116 void *hash_buff;
118 printk("\ntesting %s\n", algo);
120 tfm = crypto_alloc_hash(algo, 0, CRYPTO_ALG_ASYNC);
121 if (IS_ERR(tfm)) {
122 printk("failed to load transform for %s: %ld\n", algo,
123 PTR_ERR(tfm));
124 return;
127 desc.tfm = tfm;
128 desc.flags = 0;
130 for (i = 0; i < tcount; i++) {
131 printk("test %u:\n", i + 1);
132 memset(result, 0, 64);
134 hash_buff = kzalloc(template[i].psize, GFP_KERNEL);
135 if (!hash_buff)
136 continue;
138 memcpy(hash_buff, template[i].plaintext, template[i].psize);
139 sg_init_one(&sg[0], hash_buff, template[i].psize);
141 if (template[i].ksize) {
142 ret = crypto_hash_setkey(tfm, template[i].key,
143 template[i].ksize);
144 if (ret) {
145 printk("setkey() failed ret=%d\n", ret);
146 kfree(hash_buff);
147 goto out;
151 ret = crypto_hash_digest(&desc, sg, template[i].psize, result);
152 if (ret) {
153 printk("digest () failed ret=%d\n", ret);
154 kfree(hash_buff);
155 goto out;
158 hexdump(result, crypto_hash_digestsize(tfm));
159 printk("%s\n",
160 memcmp(result, template[i].digest,
161 crypto_hash_digestsize(tfm)) ?
162 "fail" : "pass");
163 kfree(hash_buff);
166 printk("testing %s across pages\n", algo);
168 /* setup the dummy buffer first */
169 memset(xbuf, 0, XBUFSIZE);
171 j = 0;
172 for (i = 0; i < tcount; i++) {
173 if (template[i].np) {
174 j++;
175 printk("test %u:\n", j);
176 memset(result, 0, 64);
178 temp = 0;
179 sg_init_table(sg, template[i].np);
180 for (k = 0; k < template[i].np; k++) {
181 memcpy(&xbuf[IDX[k]],
182 template[i].plaintext + temp,
183 template[i].tap[k]);
184 temp += template[i].tap[k];
185 sg_set_buf(&sg[k], &xbuf[IDX[k]],
186 template[i].tap[k]);
189 if (template[i].ksize) {
190 ret = crypto_hash_setkey(tfm, template[i].key,
191 template[i].ksize);
193 if (ret) {
194 printk("setkey() failed ret=%d\n", ret);
195 goto out;
199 ret = crypto_hash_digest(&desc, sg, template[i].psize,
200 result);
201 if (ret) {
202 printk("digest () failed ret=%d\n", ret);
203 goto out;
206 hexdump(result, crypto_hash_digestsize(tfm));
207 printk("%s\n",
208 memcmp(result, template[i].digest,
209 crypto_hash_digestsize(tfm)) ?
210 "fail" : "pass");
214 out:
215 crypto_free_hash(tfm);
218 static void test_aead(char *algo, int enc, struct aead_testvec *template,
219 unsigned int tcount)
221 unsigned int ret, i, j, k, temp;
222 char *q;
223 struct crypto_aead *tfm;
224 char *key;
225 struct aead_request *req;
226 struct scatterlist sg[8];
227 struct scatterlist asg[8];
228 const char *e;
229 struct tcrypt_result result;
230 unsigned int authsize;
231 void *input;
232 void *assoc;
233 char iv[MAX_IVLEN];
235 if (enc == ENCRYPT)
236 e = "encryption";
237 else
238 e = "decryption";
240 printk(KERN_INFO "\ntesting %s %s\n", algo, e);
242 init_completion(&result.completion);
244 tfm = crypto_alloc_aead(algo, 0, 0);
246 if (IS_ERR(tfm)) {
247 printk(KERN_INFO "failed to load transform for %s: %ld\n",
248 algo, PTR_ERR(tfm));
249 return;
252 req = aead_request_alloc(tfm, GFP_KERNEL);
253 if (!req) {
254 printk(KERN_INFO "failed to allocate request for %s\n", algo);
255 goto out;
258 aead_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
259 tcrypt_complete, &result);
261 for (i = 0, j = 0; i < tcount; i++) {
262 if (!template[i].np) {
263 printk(KERN_INFO "test %u (%d bit key):\n",
264 ++j, template[i].klen * 8);
266 /* some tepmplates have no input data but they will
267 * touch input
269 input = kzalloc(template[i].ilen + template[i].rlen, GFP_KERNEL);
270 if (!input)
271 continue;
273 assoc = kzalloc(template[i].alen, GFP_KERNEL);
274 if (!assoc) {
275 kfree(input);
276 continue;
279 memcpy(input, template[i].input, template[i].ilen);
280 memcpy(assoc, template[i].assoc, template[i].alen);
281 if (template[i].iv)
282 memcpy(iv, template[i].iv, MAX_IVLEN);
283 else
284 memset(iv, 0, MAX_IVLEN);
286 crypto_aead_clear_flags(tfm, ~0);
287 if (template[i].wk)
288 crypto_aead_set_flags(
289 tfm, CRYPTO_TFM_REQ_WEAK_KEY);
291 if (template[i].key)
292 key = template[i].key;
293 else
294 key = kzalloc(template[i].klen, GFP_KERNEL);
296 ret = crypto_aead_setkey(tfm, key,
297 template[i].klen);
298 if (ret) {
299 printk(KERN_INFO "setkey() failed flags=%x\n",
300 crypto_aead_get_flags(tfm));
302 if (!template[i].fail)
303 goto next_one;
306 authsize = abs(template[i].rlen - template[i].ilen);
307 ret = crypto_aead_setauthsize(tfm, authsize);
308 if (ret) {
309 printk(KERN_INFO
310 "failed to set authsize = %u\n",
311 authsize);
312 goto next_one;
315 sg_init_one(&sg[0], input,
316 template[i].ilen + (enc ? authsize : 0));
318 sg_init_one(&asg[0], assoc, template[i].alen);
320 aead_request_set_crypt(req, sg, sg,
321 template[i].ilen, iv);
323 aead_request_set_assoc(req, asg, template[i].alen);
325 ret = enc ?
326 crypto_aead_encrypt(req) :
327 crypto_aead_decrypt(req);
329 switch (ret) {
330 case 0:
331 break;
332 case -EINPROGRESS:
333 case -EBUSY:
334 ret = wait_for_completion_interruptible(
335 &result.completion);
336 if (!ret && !(ret = result.err)) {
337 INIT_COMPLETION(result.completion);
338 break;
340 /* fall through */
341 default:
342 printk(KERN_INFO "%s () failed err=%d\n",
343 e, -ret);
344 goto next_one;
347 q = kmap(sg_page(&sg[0])) + sg[0].offset;
348 hexdump(q, template[i].rlen);
350 printk(KERN_INFO "enc/dec: %s\n",
351 memcmp(q, template[i].result,
352 template[i].rlen) ? "fail" : "pass");
353 kunmap(sg_page(&sg[0]));
354 next_one:
355 if (!template[i].key)
356 kfree(key);
357 kfree(assoc);
358 kfree(input);
362 printk(KERN_INFO "\ntesting %s %s across pages (chunking)\n", algo, e);
363 memset(xbuf, 0, XBUFSIZE);
364 memset(axbuf, 0, XBUFSIZE);
366 for (i = 0, j = 0; i < tcount; i++) {
367 if (template[i].np) {
368 printk(KERN_INFO "test %u (%d bit key):\n",
369 ++j, template[i].klen * 8);
371 if (template[i].iv)
372 memcpy(iv, template[i].iv, MAX_IVLEN);
373 else
374 memset(iv, 0, MAX_IVLEN);
376 crypto_aead_clear_flags(tfm, ~0);
377 if (template[i].wk)
378 crypto_aead_set_flags(
379 tfm, CRYPTO_TFM_REQ_WEAK_KEY);
380 key = template[i].key;
382 ret = crypto_aead_setkey(tfm, key, template[i].klen);
383 if (ret) {
384 printk(KERN_INFO "setkey() failed flags=%x\n",
385 crypto_aead_get_flags(tfm));
387 if (!template[i].fail)
388 goto out;
391 sg_init_table(sg, template[i].np);
392 for (k = 0, temp = 0; k < template[i].np; k++) {
393 memcpy(&xbuf[IDX[k]],
394 template[i].input + temp,
395 template[i].tap[k]);
396 temp += template[i].tap[k];
397 sg_set_buf(&sg[k], &xbuf[IDX[k]],
398 template[i].tap[k]);
401 authsize = abs(template[i].rlen - template[i].ilen);
402 ret = crypto_aead_setauthsize(tfm, authsize);
403 if (ret) {
404 printk(KERN_INFO
405 "failed to set authsize = %u\n",
406 authsize);
407 goto out;
410 if (enc)
411 sg[k - 1].length += authsize;
413 sg_init_table(asg, template[i].anp);
414 for (k = 0, temp = 0; k < template[i].anp; k++) {
415 memcpy(&axbuf[IDX[k]],
416 template[i].assoc + temp,
417 template[i].atap[k]);
418 temp += template[i].atap[k];
419 sg_set_buf(&asg[k], &axbuf[IDX[k]],
420 template[i].atap[k]);
423 aead_request_set_crypt(req, sg, sg,
424 template[i].ilen,
425 iv);
427 aead_request_set_assoc(req, asg, template[i].alen);
429 ret = enc ?
430 crypto_aead_encrypt(req) :
431 crypto_aead_decrypt(req);
433 switch (ret) {
434 case 0:
435 break;
436 case -EINPROGRESS:
437 case -EBUSY:
438 ret = wait_for_completion_interruptible(
439 &result.completion);
440 if (!ret && !(ret = result.err)) {
441 INIT_COMPLETION(result.completion);
442 break;
444 /* fall through */
445 default:
446 printk(KERN_INFO "%s () failed err=%d\n",
447 e, -ret);
448 goto out;
451 for (k = 0, temp = 0; k < template[i].np; k++) {
452 printk(KERN_INFO "page %u\n", k);
453 q = kmap(sg_page(&sg[k])) + sg[k].offset;
454 hexdump(q, template[i].tap[k]);
455 printk(KERN_INFO "%s\n",
456 memcmp(q, template[i].result + temp,
457 template[i].tap[k] -
458 (k < template[i].np - 1 || enc ?
459 0 : authsize)) ?
460 "fail" : "pass");
462 temp += template[i].tap[k];
463 kunmap(sg_page(&sg[k]));
468 out:
469 crypto_free_aead(tfm);
470 aead_request_free(req);
473 static void test_cipher(char *algo, int enc,
474 struct cipher_testvec *template, unsigned int tcount)
476 unsigned int ret, i, j, k, temp;
477 char *q;
478 struct crypto_ablkcipher *tfm;
479 struct ablkcipher_request *req;
480 struct scatterlist sg[8];
481 const char *e;
482 struct tcrypt_result result;
483 void *data;
484 char iv[MAX_IVLEN];
486 if (enc == ENCRYPT)
487 e = "encryption";
488 else
489 e = "decryption";
491 printk("\ntesting %s %s\n", algo, e);
493 init_completion(&result.completion);
494 tfm = crypto_alloc_ablkcipher(algo, 0, 0);
496 if (IS_ERR(tfm)) {
497 printk("failed to load transform for %s: %ld\n", algo,
498 PTR_ERR(tfm));
499 return;
502 req = ablkcipher_request_alloc(tfm, GFP_KERNEL);
503 if (!req) {
504 printk("failed to allocate request for %s\n", algo);
505 goto out;
508 ablkcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
509 tcrypt_complete, &result);
511 j = 0;
512 for (i = 0; i < tcount; i++) {
514 data = kzalloc(template[i].ilen, GFP_KERNEL);
515 if (!data)
516 continue;
518 memcpy(data, template[i].input, template[i].ilen);
519 if (template[i].iv)
520 memcpy(iv, template[i].iv, MAX_IVLEN);
521 else
522 memset(iv, 0, MAX_IVLEN);
524 if (!(template[i].np)) {
525 j++;
526 printk("test %u (%d bit key):\n",
527 j, template[i].klen * 8);
529 crypto_ablkcipher_clear_flags(tfm, ~0);
530 if (template[i].wk)
531 crypto_ablkcipher_set_flags(
532 tfm, CRYPTO_TFM_REQ_WEAK_KEY);
534 ret = crypto_ablkcipher_setkey(tfm, template[i].key,
535 template[i].klen);
536 if (ret) {
537 printk("setkey() failed flags=%x\n",
538 crypto_ablkcipher_get_flags(tfm));
540 if (!template[i].fail) {
541 kfree(data);
542 goto out;
546 sg_init_one(&sg[0], data, template[i].ilen);
548 ablkcipher_request_set_crypt(req, sg, sg,
549 template[i].ilen, iv);
550 ret = enc ?
551 crypto_ablkcipher_encrypt(req) :
552 crypto_ablkcipher_decrypt(req);
554 switch (ret) {
555 case 0:
556 break;
557 case -EINPROGRESS:
558 case -EBUSY:
559 ret = wait_for_completion_interruptible(
560 &result.completion);
561 if (!ret && !((ret = result.err))) {
562 INIT_COMPLETION(result.completion);
563 break;
565 /* fall through */
566 default:
567 printk("%s () failed err=%d\n", e, -ret);
568 kfree(data);
569 goto out;
572 q = kmap(sg_page(&sg[0])) + sg[0].offset;
573 hexdump(q, template[i].rlen);
575 printk("%s\n",
576 memcmp(q, template[i].result,
577 template[i].rlen) ? "fail" : "pass");
578 kunmap(sg_page(&sg[0]));
580 kfree(data);
583 printk("\ntesting %s %s across pages (chunking)\n", algo, e);
584 memset(xbuf, 0, XBUFSIZE);
586 j = 0;
587 for (i = 0; i < tcount; i++) {
589 if (template[i].iv)
590 memcpy(iv, template[i].iv, MAX_IVLEN);
591 else
592 memset(iv, 0, MAX_IVLEN);
594 if (template[i].np) {
595 j++;
596 printk("test %u (%d bit key):\n",
597 j, template[i].klen * 8);
599 crypto_ablkcipher_clear_flags(tfm, ~0);
600 if (template[i].wk)
601 crypto_ablkcipher_set_flags(
602 tfm, CRYPTO_TFM_REQ_WEAK_KEY);
604 ret = crypto_ablkcipher_setkey(tfm, template[i].key,
605 template[i].klen);
606 if (ret) {
607 printk("setkey() failed flags=%x\n",
608 crypto_ablkcipher_get_flags(tfm));
610 if (!template[i].fail)
611 goto out;
614 temp = 0;
615 sg_init_table(sg, template[i].np);
616 for (k = 0; k < template[i].np; k++) {
617 memcpy(&xbuf[IDX[k]],
618 template[i].input + temp,
619 template[i].tap[k]);
620 temp += template[i].tap[k];
621 sg_set_buf(&sg[k], &xbuf[IDX[k]],
622 template[i].tap[k]);
625 ablkcipher_request_set_crypt(req, sg, sg,
626 template[i].ilen, iv);
628 ret = enc ?
629 crypto_ablkcipher_encrypt(req) :
630 crypto_ablkcipher_decrypt(req);
632 switch (ret) {
633 case 0:
634 break;
635 case -EINPROGRESS:
636 case -EBUSY:
637 ret = wait_for_completion_interruptible(
638 &result.completion);
639 if (!ret && !((ret = result.err))) {
640 INIT_COMPLETION(result.completion);
641 break;
643 /* fall through */
644 default:
645 printk("%s () failed err=%d\n", e, -ret);
646 goto out;
649 temp = 0;
650 for (k = 0; k < template[i].np; k++) {
651 printk("page %u\n", k);
652 q = kmap(sg_page(&sg[k])) + sg[k].offset;
653 hexdump(q, template[i].tap[k]);
654 printk("%s\n",
655 memcmp(q, template[i].result + temp,
656 template[i].tap[k]) ? "fail" :
657 "pass");
658 temp += template[i].tap[k];
659 kunmap(sg_page(&sg[k]));
663 out:
664 crypto_free_ablkcipher(tfm);
665 ablkcipher_request_free(req);
668 static int test_cipher_jiffies(struct blkcipher_desc *desc, int enc, char *p,
669 int blen, int sec)
671 struct scatterlist sg[1];
672 unsigned long start, end;
673 int bcount;
674 int ret;
676 sg_init_one(sg, p, blen);
678 for (start = jiffies, end = start + sec * HZ, bcount = 0;
679 time_before(jiffies, end); bcount++) {
680 if (enc)
681 ret = crypto_blkcipher_encrypt(desc, sg, sg, blen);
682 else
683 ret = crypto_blkcipher_decrypt(desc, sg, sg, blen);
685 if (ret)
686 return ret;
689 printk("%d operations in %d seconds (%ld bytes)\n",
690 bcount, sec, (long)bcount * blen);
691 return 0;
694 static int test_cipher_cycles(struct blkcipher_desc *desc, int enc, char *p,
695 int blen)
697 struct scatterlist sg[1];
698 unsigned long cycles = 0;
699 int ret = 0;
700 int i;
702 sg_init_one(sg, p, blen);
704 local_bh_disable();
705 local_irq_disable();
707 /* Warm-up run. */
708 for (i = 0; i < 4; i++) {
709 if (enc)
710 ret = crypto_blkcipher_encrypt(desc, sg, sg, blen);
711 else
712 ret = crypto_blkcipher_decrypt(desc, sg, sg, blen);
714 if (ret)
715 goto out;
718 /* The real thing. */
719 for (i = 0; i < 8; i++) {
720 cycles_t start, end;
722 start = get_cycles();
723 if (enc)
724 ret = crypto_blkcipher_encrypt(desc, sg, sg, blen);
725 else
726 ret = crypto_blkcipher_decrypt(desc, sg, sg, blen);
727 end = get_cycles();
729 if (ret)
730 goto out;
732 cycles += end - start;
735 out:
736 local_irq_enable();
737 local_bh_enable();
739 if (ret == 0)
740 printk("1 operation in %lu cycles (%d bytes)\n",
741 (cycles + 4) / 8, blen);
743 return ret;
746 static u32 block_sizes[] = { 16, 64, 256, 1024, 8192, 0 };
748 static void test_cipher_speed(char *algo, int enc, unsigned int sec,
749 struct cipher_testvec *template,
750 unsigned int tcount, u8 *keysize)
752 unsigned int ret, i, j, iv_len;
753 unsigned char *key, *p, iv[128];
754 struct crypto_blkcipher *tfm;
755 struct blkcipher_desc desc;
756 const char *e;
757 u32 *b_size;
759 if (enc == ENCRYPT)
760 e = "encryption";
761 else
762 e = "decryption";
764 printk("\ntesting speed of %s %s\n", algo, e);
766 tfm = crypto_alloc_blkcipher(algo, 0, CRYPTO_ALG_ASYNC);
768 if (IS_ERR(tfm)) {
769 printk("failed to load transform for %s: %ld\n", algo,
770 PTR_ERR(tfm));
771 return;
773 desc.tfm = tfm;
774 desc.flags = 0;
776 i = 0;
777 do {
779 b_size = block_sizes;
780 do {
782 if ((*keysize + *b_size) > TVMEMSIZE) {
783 printk("template (%u) too big for tvmem (%u)\n",
784 *keysize + *b_size, TVMEMSIZE);
785 goto out;
788 printk("test %u (%d bit key, %d byte blocks): ", i,
789 *keysize * 8, *b_size);
791 memset(tvmem, 0xff, *keysize + *b_size);
793 /* set key, plain text and IV */
794 key = (unsigned char *)tvmem;
795 for (j = 0; j < tcount; j++) {
796 if (template[j].klen == *keysize) {
797 key = template[j].key;
798 break;
801 p = (unsigned char *)tvmem + *keysize;
803 ret = crypto_blkcipher_setkey(tfm, key, *keysize);
804 if (ret) {
805 printk("setkey() failed flags=%x\n",
806 crypto_blkcipher_get_flags(tfm));
807 goto out;
810 iv_len = crypto_blkcipher_ivsize(tfm);
811 if (iv_len) {
812 memset(&iv, 0xff, iv_len);
813 crypto_blkcipher_set_iv(tfm, iv, iv_len);
816 if (sec)
817 ret = test_cipher_jiffies(&desc, enc, p, *b_size, sec);
818 else
819 ret = test_cipher_cycles(&desc, enc, p, *b_size);
821 if (ret) {
822 printk("%s() failed flags=%x\n", e, desc.flags);
823 break;
825 b_size++;
826 i++;
827 } while (*b_size);
828 keysize++;
829 } while (*keysize);
831 out:
832 crypto_free_blkcipher(tfm);
835 static int test_hash_jiffies_digest(struct hash_desc *desc, char *p, int blen,
836 char *out, int sec)
838 struct scatterlist sg[1];
839 unsigned long start, end;
840 int bcount;
841 int ret;
843 sg_init_table(sg, 1);
845 for (start = jiffies, end = start + sec * HZ, bcount = 0;
846 time_before(jiffies, end); bcount++) {
847 sg_set_buf(sg, p, blen);
848 ret = crypto_hash_digest(desc, sg, blen, out);
849 if (ret)
850 return ret;
853 printk("%6u opers/sec, %9lu bytes/sec\n",
854 bcount / sec, ((long)bcount * blen) / sec);
856 return 0;
859 static int test_hash_jiffies(struct hash_desc *desc, char *p, int blen,
860 int plen, char *out, int sec)
862 struct scatterlist sg[1];
863 unsigned long start, end;
864 int bcount, pcount;
865 int ret;
867 if (plen == blen)
868 return test_hash_jiffies_digest(desc, p, blen, out, sec);
870 sg_init_table(sg, 1);
872 for (start = jiffies, end = start + sec * HZ, bcount = 0;
873 time_before(jiffies, end); bcount++) {
874 ret = crypto_hash_init(desc);
875 if (ret)
876 return ret;
877 for (pcount = 0; pcount < blen; pcount += plen) {
878 sg_set_buf(sg, p + pcount, plen);
879 ret = crypto_hash_update(desc, sg, plen);
880 if (ret)
881 return ret;
883 /* we assume there is enough space in 'out' for the result */
884 ret = crypto_hash_final(desc, out);
885 if (ret)
886 return ret;
889 printk("%6u opers/sec, %9lu bytes/sec\n",
890 bcount / sec, ((long)bcount * blen) / sec);
892 return 0;
895 static int test_hash_cycles_digest(struct hash_desc *desc, char *p, int blen,
896 char *out)
898 struct scatterlist sg[1];
899 unsigned long cycles = 0;
900 int i;
901 int ret;
903 sg_init_table(sg, 1);
905 local_bh_disable();
906 local_irq_disable();
908 /* Warm-up run. */
909 for (i = 0; i < 4; i++) {
910 sg_set_buf(sg, p, blen);
911 ret = crypto_hash_digest(desc, sg, blen, out);
912 if (ret)
913 goto out;
916 /* The real thing. */
917 for (i = 0; i < 8; i++) {
918 cycles_t start, end;
920 start = get_cycles();
922 sg_set_buf(sg, p, blen);
923 ret = crypto_hash_digest(desc, sg, blen, out);
924 if (ret)
925 goto out;
927 end = get_cycles();
929 cycles += end - start;
932 out:
933 local_irq_enable();
934 local_bh_enable();
936 if (ret)
937 return ret;
939 printk("%6lu cycles/operation, %4lu cycles/byte\n",
940 cycles / 8, cycles / (8 * blen));
942 return 0;
945 static int test_hash_cycles(struct hash_desc *desc, char *p, int blen,
946 int plen, char *out)
948 struct scatterlist sg[1];
949 unsigned long cycles = 0;
950 int i, pcount;
951 int ret;
953 if (plen == blen)
954 return test_hash_cycles_digest(desc, p, blen, out);
956 sg_init_table(sg, 1);
958 local_bh_disable();
959 local_irq_disable();
961 /* Warm-up run. */
962 for (i = 0; i < 4; i++) {
963 ret = crypto_hash_init(desc);
964 if (ret)
965 goto out;
966 for (pcount = 0; pcount < blen; pcount += plen) {
967 sg_set_buf(sg, p + pcount, plen);
968 ret = crypto_hash_update(desc, sg, plen);
969 if (ret)
970 goto out;
972 ret = crypto_hash_final(desc, out);
973 if (ret)
974 goto out;
977 /* The real thing. */
978 for (i = 0; i < 8; i++) {
979 cycles_t start, end;
981 start = get_cycles();
983 ret = crypto_hash_init(desc);
984 if (ret)
985 goto out;
986 for (pcount = 0; pcount < blen; pcount += plen) {
987 sg_set_buf(sg, p + pcount, plen);
988 ret = crypto_hash_update(desc, sg, plen);
989 if (ret)
990 goto out;
992 ret = crypto_hash_final(desc, out);
993 if (ret)
994 goto out;
996 end = get_cycles();
998 cycles += end - start;
1001 out:
1002 local_irq_enable();
1003 local_bh_enable();
1005 if (ret)
1006 return ret;
1008 printk("%6lu cycles/operation, %4lu cycles/byte\n",
1009 cycles / 8, cycles / (8 * blen));
1011 return 0;
1014 static void test_hash_speed(char *algo, unsigned int sec,
1015 struct hash_speed *speed)
1017 struct crypto_hash *tfm;
1018 struct hash_desc desc;
1019 char output[1024];
1020 int i;
1021 int ret;
1023 printk("\ntesting speed of %s\n", algo);
1025 tfm = crypto_alloc_hash(algo, 0, CRYPTO_ALG_ASYNC);
1027 if (IS_ERR(tfm)) {
1028 printk("failed to load transform for %s: %ld\n", algo,
1029 PTR_ERR(tfm));
1030 return;
1033 desc.tfm = tfm;
1034 desc.flags = 0;
1036 if (crypto_hash_digestsize(tfm) > sizeof(output)) {
1037 printk("digestsize(%u) > outputbuffer(%zu)\n",
1038 crypto_hash_digestsize(tfm), sizeof(output));
1039 goto out;
1042 for (i = 0; speed[i].blen != 0; i++) {
1043 if (speed[i].blen > TVMEMSIZE) {
1044 printk("template (%u) too big for tvmem (%u)\n",
1045 speed[i].blen, TVMEMSIZE);
1046 goto out;
1049 printk("test%3u (%5u byte blocks,%5u bytes per update,%4u updates): ",
1050 i, speed[i].blen, speed[i].plen, speed[i].blen / speed[i].plen);
1052 memset(tvmem, 0xff, speed[i].blen);
1054 if (sec)
1055 ret = test_hash_jiffies(&desc, tvmem, speed[i].blen,
1056 speed[i].plen, output, sec);
1057 else
1058 ret = test_hash_cycles(&desc, tvmem, speed[i].blen,
1059 speed[i].plen, output);
1061 if (ret) {
1062 printk("hashing failed ret=%d\n", ret);
1063 break;
1067 out:
1068 crypto_free_hash(tfm);
1071 static void test_comp(char *algo, struct comp_testvec *ctemplate,
1072 struct comp_testvec *dtemplate, int ctcount, int dtcount)
1074 unsigned int i;
1075 char result[COMP_BUF_SIZE];
1076 struct crypto_comp *tfm;
1077 unsigned int tsize;
1079 printk("\ntesting %s compression\n", algo);
1081 tfm = crypto_alloc_comp(algo, 0, CRYPTO_ALG_ASYNC);
1082 if (IS_ERR(tfm)) {
1083 printk("failed to load transform for %s\n", algo);
1084 return;
1087 for (i = 0; i < ctcount; i++) {
1088 int ilen, ret, dlen = COMP_BUF_SIZE;
1090 printk("test %u:\n", i + 1);
1091 memset(result, 0, sizeof (result));
1093 ilen = ctemplate[i].inlen;
1094 ret = crypto_comp_compress(tfm, ctemplate[i].input,
1095 ilen, result, &dlen);
1096 if (ret) {
1097 printk("fail: ret=%d\n", ret);
1098 continue;
1100 hexdump(result, dlen);
1101 printk("%s (ratio %d:%d)\n",
1102 memcmp(result, ctemplate[i].output, dlen) ? "fail" : "pass",
1103 ilen, dlen);
1106 printk("\ntesting %s decompression\n", algo);
1108 tsize = sizeof(struct comp_testvec);
1109 tsize *= dtcount;
1110 if (tsize > TVMEMSIZE) {
1111 printk("template (%u) too big for tvmem (%u)\n", tsize,
1112 TVMEMSIZE);
1113 goto out;
1116 for (i = 0; i < dtcount; i++) {
1117 int ilen, ret, dlen = COMP_BUF_SIZE;
1119 printk("test %u:\n", i + 1);
1120 memset(result, 0, sizeof (result));
1122 ilen = dtemplate[i].inlen;
1123 ret = crypto_comp_decompress(tfm, dtemplate[i].input,
1124 ilen, result, &dlen);
1125 if (ret) {
1126 printk("fail: ret=%d\n", ret);
1127 continue;
1129 hexdump(result, dlen);
1130 printk("%s (ratio %d:%d)\n",
1131 memcmp(result, dtemplate[i].output, dlen) ? "fail" : "pass",
1132 ilen, dlen);
1134 out:
1135 crypto_free_comp(tfm);
1138 static void test_available(void)
1140 char **name = check;
1142 while (*name) {
1143 printk("alg %s ", *name);
1144 printk(crypto_has_alg(*name, 0, 0) ?
1145 "found\n" : "not found\n");
1146 name++;
1150 static void do_test(void)
1152 switch (mode) {
1154 case 0:
1155 test_hash("md5", md5_tv_template, MD5_TEST_VECTORS);
1157 test_hash("sha1", sha1_tv_template, SHA1_TEST_VECTORS);
1159 //DES
1160 test_cipher("ecb(des)", ENCRYPT, des_enc_tv_template,
1161 DES_ENC_TEST_VECTORS);
1162 test_cipher("ecb(des)", DECRYPT, des_dec_tv_template,
1163 DES_DEC_TEST_VECTORS);
1164 test_cipher("cbc(des)", ENCRYPT, des_cbc_enc_tv_template,
1165 DES_CBC_ENC_TEST_VECTORS);
1166 test_cipher("cbc(des)", DECRYPT, des_cbc_dec_tv_template,
1167 DES_CBC_DEC_TEST_VECTORS);
1169 //DES3_EDE
1170 test_cipher("ecb(des3_ede)", ENCRYPT, des3_ede_enc_tv_template,
1171 DES3_EDE_ENC_TEST_VECTORS);
1172 test_cipher("ecb(des3_ede)", DECRYPT, des3_ede_dec_tv_template,
1173 DES3_EDE_DEC_TEST_VECTORS);
1175 test_hash("md4", md4_tv_template, MD4_TEST_VECTORS);
1177 test_hash("sha224", sha224_tv_template, SHA224_TEST_VECTORS);
1179 test_hash("sha256", sha256_tv_template, SHA256_TEST_VECTORS);
1181 //BLOWFISH
1182 test_cipher("ecb(blowfish)", ENCRYPT, bf_enc_tv_template,
1183 BF_ENC_TEST_VECTORS);
1184 test_cipher("ecb(blowfish)", DECRYPT, bf_dec_tv_template,
1185 BF_DEC_TEST_VECTORS);
1186 test_cipher("cbc(blowfish)", ENCRYPT, bf_cbc_enc_tv_template,
1187 BF_CBC_ENC_TEST_VECTORS);
1188 test_cipher("cbc(blowfish)", DECRYPT, bf_cbc_dec_tv_template,
1189 BF_CBC_DEC_TEST_VECTORS);
1191 //TWOFISH
1192 test_cipher("ecb(twofish)", ENCRYPT, tf_enc_tv_template,
1193 TF_ENC_TEST_VECTORS);
1194 test_cipher("ecb(twofish)", DECRYPT, tf_dec_tv_template,
1195 TF_DEC_TEST_VECTORS);
1196 test_cipher("cbc(twofish)", ENCRYPT, tf_cbc_enc_tv_template,
1197 TF_CBC_ENC_TEST_VECTORS);
1198 test_cipher("cbc(twofish)", DECRYPT, tf_cbc_dec_tv_template,
1199 TF_CBC_DEC_TEST_VECTORS);
1201 //SERPENT
1202 test_cipher("ecb(serpent)", ENCRYPT, serpent_enc_tv_template,
1203 SERPENT_ENC_TEST_VECTORS);
1204 test_cipher("ecb(serpent)", DECRYPT, serpent_dec_tv_template,
1205 SERPENT_DEC_TEST_VECTORS);
1207 //TNEPRES
1208 test_cipher("ecb(tnepres)", ENCRYPT, tnepres_enc_tv_template,
1209 TNEPRES_ENC_TEST_VECTORS);
1210 test_cipher("ecb(tnepres)", DECRYPT, tnepres_dec_tv_template,
1211 TNEPRES_DEC_TEST_VECTORS);
1213 //AES
1214 test_cipher("ecb(aes)", ENCRYPT, aes_enc_tv_template,
1215 AES_ENC_TEST_VECTORS);
1216 test_cipher("ecb(aes)", DECRYPT, aes_dec_tv_template,
1217 AES_DEC_TEST_VECTORS);
1218 test_cipher("cbc(aes)", ENCRYPT, aes_cbc_enc_tv_template,
1219 AES_CBC_ENC_TEST_VECTORS);
1220 test_cipher("cbc(aes)", DECRYPT, aes_cbc_dec_tv_template,
1221 AES_CBC_DEC_TEST_VECTORS);
1222 test_cipher("lrw(aes)", ENCRYPT, aes_lrw_enc_tv_template,
1223 AES_LRW_ENC_TEST_VECTORS);
1224 test_cipher("lrw(aes)", DECRYPT, aes_lrw_dec_tv_template,
1225 AES_LRW_DEC_TEST_VECTORS);
1226 test_cipher("xts(aes)", ENCRYPT, aes_xts_enc_tv_template,
1227 AES_XTS_ENC_TEST_VECTORS);
1228 test_cipher("xts(aes)", DECRYPT, aes_xts_dec_tv_template,
1229 AES_XTS_DEC_TEST_VECTORS);
1230 test_cipher("rfc3686(ctr(aes))", ENCRYPT, aes_ctr_enc_tv_template,
1231 AES_CTR_ENC_TEST_VECTORS);
1232 test_cipher("rfc3686(ctr(aes))", DECRYPT, aes_ctr_dec_tv_template,
1233 AES_CTR_DEC_TEST_VECTORS);
1234 test_aead("gcm(aes)", ENCRYPT, aes_gcm_enc_tv_template,
1235 AES_GCM_ENC_TEST_VECTORS);
1236 test_aead("gcm(aes)", DECRYPT, aes_gcm_dec_tv_template,
1237 AES_GCM_DEC_TEST_VECTORS);
1238 test_aead("ccm(aes)", ENCRYPT, aes_ccm_enc_tv_template,
1239 AES_CCM_ENC_TEST_VECTORS);
1240 test_aead("ccm(aes)", DECRYPT, aes_ccm_dec_tv_template,
1241 AES_CCM_DEC_TEST_VECTORS);
1243 //CAST5
1244 test_cipher("ecb(cast5)", ENCRYPT, cast5_enc_tv_template,
1245 CAST5_ENC_TEST_VECTORS);
1246 test_cipher("ecb(cast5)", DECRYPT, cast5_dec_tv_template,
1247 CAST5_DEC_TEST_VECTORS);
1249 //CAST6
1250 test_cipher("ecb(cast6)", ENCRYPT, cast6_enc_tv_template,
1251 CAST6_ENC_TEST_VECTORS);
1252 test_cipher("ecb(cast6)", DECRYPT, cast6_dec_tv_template,
1253 CAST6_DEC_TEST_VECTORS);
1255 //ARC4
1256 test_cipher("ecb(arc4)", ENCRYPT, arc4_enc_tv_template,
1257 ARC4_ENC_TEST_VECTORS);
1258 test_cipher("ecb(arc4)", DECRYPT, arc4_dec_tv_template,
1259 ARC4_DEC_TEST_VECTORS);
1261 //TEA
1262 test_cipher("ecb(tea)", ENCRYPT, tea_enc_tv_template,
1263 TEA_ENC_TEST_VECTORS);
1264 test_cipher("ecb(tea)", DECRYPT, tea_dec_tv_template,
1265 TEA_DEC_TEST_VECTORS);
1268 //XTEA
1269 test_cipher("ecb(xtea)", ENCRYPT, xtea_enc_tv_template,
1270 XTEA_ENC_TEST_VECTORS);
1271 test_cipher("ecb(xtea)", DECRYPT, xtea_dec_tv_template,
1272 XTEA_DEC_TEST_VECTORS);
1274 //KHAZAD
1275 test_cipher("ecb(khazad)", ENCRYPT, khazad_enc_tv_template,
1276 KHAZAD_ENC_TEST_VECTORS);
1277 test_cipher("ecb(khazad)", DECRYPT, khazad_dec_tv_template,
1278 KHAZAD_DEC_TEST_VECTORS);
1280 //ANUBIS
1281 test_cipher("ecb(anubis)", ENCRYPT, anubis_enc_tv_template,
1282 ANUBIS_ENC_TEST_VECTORS);
1283 test_cipher("ecb(anubis)", DECRYPT, anubis_dec_tv_template,
1284 ANUBIS_DEC_TEST_VECTORS);
1285 test_cipher("cbc(anubis)", ENCRYPT, anubis_cbc_enc_tv_template,
1286 ANUBIS_CBC_ENC_TEST_VECTORS);
1287 test_cipher("cbc(anubis)", DECRYPT, anubis_cbc_dec_tv_template,
1288 ANUBIS_CBC_ENC_TEST_VECTORS);
1290 //XETA
1291 test_cipher("ecb(xeta)", ENCRYPT, xeta_enc_tv_template,
1292 XETA_ENC_TEST_VECTORS);
1293 test_cipher("ecb(xeta)", DECRYPT, xeta_dec_tv_template,
1294 XETA_DEC_TEST_VECTORS);
1296 //FCrypt
1297 test_cipher("pcbc(fcrypt)", ENCRYPT, fcrypt_pcbc_enc_tv_template,
1298 FCRYPT_ENC_TEST_VECTORS);
1299 test_cipher("pcbc(fcrypt)", DECRYPT, fcrypt_pcbc_dec_tv_template,
1300 FCRYPT_DEC_TEST_VECTORS);
1302 //CAMELLIA
1303 test_cipher("ecb(camellia)", ENCRYPT,
1304 camellia_enc_tv_template,
1305 CAMELLIA_ENC_TEST_VECTORS);
1306 test_cipher("ecb(camellia)", DECRYPT,
1307 camellia_dec_tv_template,
1308 CAMELLIA_DEC_TEST_VECTORS);
1309 test_cipher("cbc(camellia)", ENCRYPT,
1310 camellia_cbc_enc_tv_template,
1311 CAMELLIA_CBC_ENC_TEST_VECTORS);
1312 test_cipher("cbc(camellia)", DECRYPT,
1313 camellia_cbc_dec_tv_template,
1314 CAMELLIA_CBC_DEC_TEST_VECTORS);
1316 //SEED
1317 test_cipher("ecb(seed)", ENCRYPT, seed_enc_tv_template,
1318 SEED_ENC_TEST_VECTORS);
1319 test_cipher("ecb(seed)", DECRYPT, seed_dec_tv_template,
1320 SEED_DEC_TEST_VECTORS);
1322 //CTS
1323 test_cipher("cts(cbc(aes))", ENCRYPT, cts_mode_enc_tv_template,
1324 CTS_MODE_ENC_TEST_VECTORS);
1325 test_cipher("cts(cbc(aes))", DECRYPT, cts_mode_dec_tv_template,
1326 CTS_MODE_DEC_TEST_VECTORS);
1328 test_hash("sha384", sha384_tv_template, SHA384_TEST_VECTORS);
1329 test_hash("sha512", sha512_tv_template, SHA512_TEST_VECTORS);
1330 test_hash("wp512", wp512_tv_template, WP512_TEST_VECTORS);
1331 test_hash("wp384", wp384_tv_template, WP384_TEST_VECTORS);
1332 test_hash("wp256", wp256_tv_template, WP256_TEST_VECTORS);
1333 test_hash("tgr192", tgr192_tv_template, TGR192_TEST_VECTORS);
1334 test_hash("tgr160", tgr160_tv_template, TGR160_TEST_VECTORS);
1335 test_hash("tgr128", tgr128_tv_template, TGR128_TEST_VECTORS);
1336 test_comp("deflate", deflate_comp_tv_template,
1337 deflate_decomp_tv_template, DEFLATE_COMP_TEST_VECTORS,
1338 DEFLATE_DECOMP_TEST_VECTORS);
1339 test_comp("lzo", lzo_comp_tv_template, lzo_decomp_tv_template,
1340 LZO_COMP_TEST_VECTORS, LZO_DECOMP_TEST_VECTORS);
1341 test_hash("crc32c", crc32c_tv_template, CRC32C_TEST_VECTORS);
1342 test_hash("hmac(md5)", hmac_md5_tv_template,
1343 HMAC_MD5_TEST_VECTORS);
1344 test_hash("hmac(sha1)", hmac_sha1_tv_template,
1345 HMAC_SHA1_TEST_VECTORS);
1346 test_hash("hmac(sha224)", hmac_sha224_tv_template,
1347 HMAC_SHA224_TEST_VECTORS);
1348 test_hash("hmac(sha256)", hmac_sha256_tv_template,
1349 HMAC_SHA256_TEST_VECTORS);
1350 test_hash("hmac(sha384)", hmac_sha384_tv_template,
1351 HMAC_SHA384_TEST_VECTORS);
1352 test_hash("hmac(sha512)", hmac_sha512_tv_template,
1353 HMAC_SHA512_TEST_VECTORS);
1355 test_hash("xcbc(aes)", aes_xcbc128_tv_template,
1356 XCBC_AES_TEST_VECTORS);
1358 test_hash("michael_mic", michael_mic_tv_template, MICHAEL_MIC_TEST_VECTORS);
1359 break;
1361 case 1:
1362 test_hash("md5", md5_tv_template, MD5_TEST_VECTORS);
1363 break;
1365 case 2:
1366 test_hash("sha1", sha1_tv_template, SHA1_TEST_VECTORS);
1367 break;
1369 case 3:
1370 test_cipher("ecb(des)", ENCRYPT, des_enc_tv_template,
1371 DES_ENC_TEST_VECTORS);
1372 test_cipher("ecb(des)", DECRYPT, des_dec_tv_template,
1373 DES_DEC_TEST_VECTORS);
1374 test_cipher("cbc(des)", ENCRYPT, des_cbc_enc_tv_template,
1375 DES_CBC_ENC_TEST_VECTORS);
1376 test_cipher("cbc(des)", DECRYPT, des_cbc_dec_tv_template,
1377 DES_CBC_DEC_TEST_VECTORS);
1378 break;
1380 case 4:
1381 test_cipher("ecb(des3_ede)", ENCRYPT, des3_ede_enc_tv_template,
1382 DES3_EDE_ENC_TEST_VECTORS);
1383 test_cipher("ecb(des3_ede)", DECRYPT, des3_ede_dec_tv_template,
1384 DES3_EDE_DEC_TEST_VECTORS);
1385 break;
1387 case 5:
1388 test_hash("md4", md4_tv_template, MD4_TEST_VECTORS);
1389 break;
1391 case 6:
1392 test_hash("sha256", sha256_tv_template, SHA256_TEST_VECTORS);
1393 break;
1395 case 7:
1396 test_cipher("ecb(blowfish)", ENCRYPT, bf_enc_tv_template,
1397 BF_ENC_TEST_VECTORS);
1398 test_cipher("ecb(blowfish)", DECRYPT, bf_dec_tv_template,
1399 BF_DEC_TEST_VECTORS);
1400 test_cipher("cbc(blowfish)", ENCRYPT, bf_cbc_enc_tv_template,
1401 BF_CBC_ENC_TEST_VECTORS);
1402 test_cipher("cbc(blowfish)", DECRYPT, bf_cbc_dec_tv_template,
1403 BF_CBC_DEC_TEST_VECTORS);
1404 break;
1406 case 8:
1407 test_cipher("ecb(twofish)", ENCRYPT, tf_enc_tv_template,
1408 TF_ENC_TEST_VECTORS);
1409 test_cipher("ecb(twofish)", DECRYPT, tf_dec_tv_template,
1410 TF_DEC_TEST_VECTORS);
1411 test_cipher("cbc(twofish)", ENCRYPT, tf_cbc_enc_tv_template,
1412 TF_CBC_ENC_TEST_VECTORS);
1413 test_cipher("cbc(twofish)", DECRYPT, tf_cbc_dec_tv_template,
1414 TF_CBC_DEC_TEST_VECTORS);
1415 break;
1417 case 9:
1418 test_cipher("ecb(serpent)", ENCRYPT, serpent_enc_tv_template,
1419 SERPENT_ENC_TEST_VECTORS);
1420 test_cipher("ecb(serpent)", DECRYPT, serpent_dec_tv_template,
1421 SERPENT_DEC_TEST_VECTORS);
1422 break;
1424 case 10:
1425 test_cipher("ecb(aes)", ENCRYPT, aes_enc_tv_template,
1426 AES_ENC_TEST_VECTORS);
1427 test_cipher("ecb(aes)", DECRYPT, aes_dec_tv_template,
1428 AES_DEC_TEST_VECTORS);
1429 test_cipher("cbc(aes)", ENCRYPT, aes_cbc_enc_tv_template,
1430 AES_CBC_ENC_TEST_VECTORS);
1431 test_cipher("cbc(aes)", DECRYPT, aes_cbc_dec_tv_template,
1432 AES_CBC_DEC_TEST_VECTORS);
1433 test_cipher("lrw(aes)", ENCRYPT, aes_lrw_enc_tv_template,
1434 AES_LRW_ENC_TEST_VECTORS);
1435 test_cipher("lrw(aes)", DECRYPT, aes_lrw_dec_tv_template,
1436 AES_LRW_DEC_TEST_VECTORS);
1437 test_cipher("xts(aes)", ENCRYPT, aes_xts_enc_tv_template,
1438 AES_XTS_ENC_TEST_VECTORS);
1439 test_cipher("xts(aes)", DECRYPT, aes_xts_dec_tv_template,
1440 AES_XTS_DEC_TEST_VECTORS);
1441 test_cipher("rfc3686(ctr(aes))", ENCRYPT, aes_ctr_enc_tv_template,
1442 AES_CTR_ENC_TEST_VECTORS);
1443 test_cipher("rfc3686(ctr(aes))", DECRYPT, aes_ctr_dec_tv_template,
1444 AES_CTR_DEC_TEST_VECTORS);
1445 break;
1447 case 11:
1448 test_hash("sha384", sha384_tv_template, SHA384_TEST_VECTORS);
1449 break;
1451 case 12:
1452 test_hash("sha512", sha512_tv_template, SHA512_TEST_VECTORS);
1453 break;
1455 case 13:
1456 test_comp("deflate", deflate_comp_tv_template,
1457 deflate_decomp_tv_template, DEFLATE_COMP_TEST_VECTORS,
1458 DEFLATE_DECOMP_TEST_VECTORS);
1459 break;
1461 case 14:
1462 test_cipher("ecb(cast5)", ENCRYPT, cast5_enc_tv_template,
1463 CAST5_ENC_TEST_VECTORS);
1464 test_cipher("ecb(cast5)", DECRYPT, cast5_dec_tv_template,
1465 CAST5_DEC_TEST_VECTORS);
1466 break;
1468 case 15:
1469 test_cipher("ecb(cast6)", ENCRYPT, cast6_enc_tv_template,
1470 CAST6_ENC_TEST_VECTORS);
1471 test_cipher("ecb(cast6)", DECRYPT, cast6_dec_tv_template,
1472 CAST6_DEC_TEST_VECTORS);
1473 break;
1475 case 16:
1476 test_cipher("ecb(arc4)", ENCRYPT, arc4_enc_tv_template,
1477 ARC4_ENC_TEST_VECTORS);
1478 test_cipher("ecb(arc4)", DECRYPT, arc4_dec_tv_template,
1479 ARC4_DEC_TEST_VECTORS);
1480 break;
1482 case 17:
1483 test_hash("michael_mic", michael_mic_tv_template, MICHAEL_MIC_TEST_VECTORS);
1484 break;
1486 case 18:
1487 test_hash("crc32c", crc32c_tv_template, CRC32C_TEST_VECTORS);
1488 break;
1490 case 19:
1491 test_cipher("ecb(tea)", ENCRYPT, tea_enc_tv_template,
1492 TEA_ENC_TEST_VECTORS);
1493 test_cipher("ecb(tea)", DECRYPT, tea_dec_tv_template,
1494 TEA_DEC_TEST_VECTORS);
1495 break;
1497 case 20:
1498 test_cipher("ecb(xtea)", ENCRYPT, xtea_enc_tv_template,
1499 XTEA_ENC_TEST_VECTORS);
1500 test_cipher("ecb(xtea)", DECRYPT, xtea_dec_tv_template,
1501 XTEA_DEC_TEST_VECTORS);
1502 break;
1504 case 21:
1505 test_cipher("ecb(khazad)", ENCRYPT, khazad_enc_tv_template,
1506 KHAZAD_ENC_TEST_VECTORS);
1507 test_cipher("ecb(khazad)", DECRYPT, khazad_dec_tv_template,
1508 KHAZAD_DEC_TEST_VECTORS);
1509 break;
1511 case 22:
1512 test_hash("wp512", wp512_tv_template, WP512_TEST_VECTORS);
1513 break;
1515 case 23:
1516 test_hash("wp384", wp384_tv_template, WP384_TEST_VECTORS);
1517 break;
1519 case 24:
1520 test_hash("wp256", wp256_tv_template, WP256_TEST_VECTORS);
1521 break;
1523 case 25:
1524 test_cipher("ecb(tnepres)", ENCRYPT, tnepres_enc_tv_template,
1525 TNEPRES_ENC_TEST_VECTORS);
1526 test_cipher("ecb(tnepres)", DECRYPT, tnepres_dec_tv_template,
1527 TNEPRES_DEC_TEST_VECTORS);
1528 break;
1530 case 26:
1531 test_cipher("ecb(anubis)", ENCRYPT, anubis_enc_tv_template,
1532 ANUBIS_ENC_TEST_VECTORS);
1533 test_cipher("ecb(anubis)", DECRYPT, anubis_dec_tv_template,
1534 ANUBIS_DEC_TEST_VECTORS);
1535 test_cipher("cbc(anubis)", ENCRYPT, anubis_cbc_enc_tv_template,
1536 ANUBIS_CBC_ENC_TEST_VECTORS);
1537 test_cipher("cbc(anubis)", DECRYPT, anubis_cbc_dec_tv_template,
1538 ANUBIS_CBC_ENC_TEST_VECTORS);
1539 break;
1541 case 27:
1542 test_hash("tgr192", tgr192_tv_template, TGR192_TEST_VECTORS);
1543 break;
1545 case 28:
1547 test_hash("tgr160", tgr160_tv_template, TGR160_TEST_VECTORS);
1548 break;
1550 case 29:
1551 test_hash("tgr128", tgr128_tv_template, TGR128_TEST_VECTORS);
1552 break;
1554 case 30:
1555 test_cipher("ecb(xeta)", ENCRYPT, xeta_enc_tv_template,
1556 XETA_ENC_TEST_VECTORS);
1557 test_cipher("ecb(xeta)", DECRYPT, xeta_dec_tv_template,
1558 XETA_DEC_TEST_VECTORS);
1559 break;
1561 case 31:
1562 test_cipher("pcbc(fcrypt)", ENCRYPT, fcrypt_pcbc_enc_tv_template,
1563 FCRYPT_ENC_TEST_VECTORS);
1564 test_cipher("pcbc(fcrypt)", DECRYPT, fcrypt_pcbc_dec_tv_template,
1565 FCRYPT_DEC_TEST_VECTORS);
1566 break;
1568 case 32:
1569 test_cipher("ecb(camellia)", ENCRYPT,
1570 camellia_enc_tv_template,
1571 CAMELLIA_ENC_TEST_VECTORS);
1572 test_cipher("ecb(camellia)", DECRYPT,
1573 camellia_dec_tv_template,
1574 CAMELLIA_DEC_TEST_VECTORS);
1575 test_cipher("cbc(camellia)", ENCRYPT,
1576 camellia_cbc_enc_tv_template,
1577 CAMELLIA_CBC_ENC_TEST_VECTORS);
1578 test_cipher("cbc(camellia)", DECRYPT,
1579 camellia_cbc_dec_tv_template,
1580 CAMELLIA_CBC_DEC_TEST_VECTORS);
1581 break;
1582 case 33:
1583 test_hash("sha224", sha224_tv_template, SHA224_TEST_VECTORS);
1584 break;
1586 case 34:
1587 test_cipher("salsa20", ENCRYPT,
1588 salsa20_stream_enc_tv_template,
1589 SALSA20_STREAM_ENC_TEST_VECTORS);
1590 break;
1592 case 35:
1593 test_aead("gcm(aes)", ENCRYPT, aes_gcm_enc_tv_template,
1594 AES_GCM_ENC_TEST_VECTORS);
1595 test_aead("gcm(aes)", DECRYPT, aes_gcm_dec_tv_template,
1596 AES_GCM_DEC_TEST_VECTORS);
1597 break;
1599 case 36:
1600 test_comp("lzo", lzo_comp_tv_template, lzo_decomp_tv_template,
1601 LZO_COMP_TEST_VECTORS, LZO_DECOMP_TEST_VECTORS);
1602 break;
1604 case 37:
1605 test_aead("ccm(aes)", ENCRYPT, aes_ccm_enc_tv_template,
1606 AES_CCM_ENC_TEST_VECTORS);
1607 test_aead("ccm(aes)", DECRYPT, aes_ccm_dec_tv_template,
1608 AES_CCM_DEC_TEST_VECTORS);
1609 break;
1611 case 38:
1612 test_cipher("cts(cbc(aes))", ENCRYPT, cts_mode_enc_tv_template,
1613 CTS_MODE_ENC_TEST_VECTORS);
1614 test_cipher("cts(cbc(aes))", DECRYPT, cts_mode_dec_tv_template,
1615 CTS_MODE_DEC_TEST_VECTORS);
1616 break;
1618 case 100:
1619 test_hash("hmac(md5)", hmac_md5_tv_template,
1620 HMAC_MD5_TEST_VECTORS);
1621 break;
1623 case 101:
1624 test_hash("hmac(sha1)", hmac_sha1_tv_template,
1625 HMAC_SHA1_TEST_VECTORS);
1626 break;
1628 case 102:
1629 test_hash("hmac(sha256)", hmac_sha256_tv_template,
1630 HMAC_SHA256_TEST_VECTORS);
1631 break;
1633 case 103:
1634 test_hash("hmac(sha384)", hmac_sha384_tv_template,
1635 HMAC_SHA384_TEST_VECTORS);
1636 break;
1638 case 104:
1639 test_hash("hmac(sha512)", hmac_sha512_tv_template,
1640 HMAC_SHA512_TEST_VECTORS);
1641 break;
1643 case 105:
1644 test_hash("hmac(sha224)", hmac_sha224_tv_template,
1645 HMAC_SHA224_TEST_VECTORS);
1646 break;
1648 case 106:
1649 test_hash("xcbc(aes)", aes_xcbc128_tv_template,
1650 XCBC_AES_TEST_VECTORS);
1651 break;
1653 case 200:
1654 test_cipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
1655 speed_template_16_24_32);
1656 test_cipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0,
1657 speed_template_16_24_32);
1658 test_cipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0,
1659 speed_template_16_24_32);
1660 test_cipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0,
1661 speed_template_16_24_32);
1662 test_cipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0,
1663 speed_template_32_40_48);
1664 test_cipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0,
1665 speed_template_32_40_48);
1666 test_cipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0,
1667 speed_template_32_48_64);
1668 test_cipher_speed("xts(aes)", DECRYPT, sec, NULL, 0,
1669 speed_template_32_48_64);
1670 break;
1672 case 201:
1673 test_cipher_speed("ecb(des3_ede)", ENCRYPT, sec,
1674 des3_ede_enc_tv_template, DES3_EDE_ENC_TEST_VECTORS,
1675 speed_template_24);
1676 test_cipher_speed("ecb(des3_ede)", DECRYPT, sec,
1677 des3_ede_enc_tv_template, DES3_EDE_ENC_TEST_VECTORS,
1678 speed_template_24);
1679 test_cipher_speed("cbc(des3_ede)", ENCRYPT, sec,
1680 des3_ede_enc_tv_template, DES3_EDE_ENC_TEST_VECTORS,
1681 speed_template_24);
1682 test_cipher_speed("cbc(des3_ede)", DECRYPT, sec,
1683 des3_ede_enc_tv_template, DES3_EDE_ENC_TEST_VECTORS,
1684 speed_template_24);
1685 break;
1687 case 202:
1688 test_cipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0,
1689 speed_template_16_24_32);
1690 test_cipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0,
1691 speed_template_16_24_32);
1692 test_cipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0,
1693 speed_template_16_24_32);
1694 test_cipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0,
1695 speed_template_16_24_32);
1696 break;
1698 case 203:
1699 test_cipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0,
1700 speed_template_8_32);
1701 test_cipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0,
1702 speed_template_8_32);
1703 test_cipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0,
1704 speed_template_8_32);
1705 test_cipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0,
1706 speed_template_8_32);
1707 break;
1709 case 204:
1710 test_cipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0,
1711 speed_template_8);
1712 test_cipher_speed("ecb(des)", DECRYPT, sec, NULL, 0,
1713 speed_template_8);
1714 test_cipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0,
1715 speed_template_8);
1716 test_cipher_speed("cbc(des)", DECRYPT, sec, NULL, 0,
1717 speed_template_8);
1718 break;
1720 case 205:
1721 test_cipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0,
1722 speed_template_16_24_32);
1723 test_cipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0,
1724 speed_template_16_24_32);
1725 test_cipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0,
1726 speed_template_16_24_32);
1727 test_cipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
1728 speed_template_16_24_32);
1729 break;
1731 case 206:
1732 test_cipher_speed("salsa20", ENCRYPT, sec, NULL, 0,
1733 speed_template_16_32);
1734 break;
1736 case 300:
1737 /* fall through */
1739 case 301:
1740 test_hash_speed("md4", sec, generic_hash_speed_template);
1741 if (mode > 300 && mode < 400) break;
1743 case 302:
1744 test_hash_speed("md5", sec, generic_hash_speed_template);
1745 if (mode > 300 && mode < 400) break;
1747 case 303:
1748 test_hash_speed("sha1", sec, generic_hash_speed_template);
1749 if (mode > 300 && mode < 400) break;
1751 case 304:
1752 test_hash_speed("sha256", sec, generic_hash_speed_template);
1753 if (mode > 300 && mode < 400) break;
1755 case 305:
1756 test_hash_speed("sha384", sec, generic_hash_speed_template);
1757 if (mode > 300 && mode < 400) break;
1759 case 306:
1760 test_hash_speed("sha512", sec, generic_hash_speed_template);
1761 if (mode > 300 && mode < 400) break;
1763 case 307:
1764 test_hash_speed("wp256", sec, generic_hash_speed_template);
1765 if (mode > 300 && mode < 400) break;
1767 case 308:
1768 test_hash_speed("wp384", sec, generic_hash_speed_template);
1769 if (mode > 300 && mode < 400) break;
1771 case 309:
1772 test_hash_speed("wp512", sec, generic_hash_speed_template);
1773 if (mode > 300 && mode < 400) break;
1775 case 310:
1776 test_hash_speed("tgr128", sec, generic_hash_speed_template);
1777 if (mode > 300 && mode < 400) break;
1779 case 311:
1780 test_hash_speed("tgr160", sec, generic_hash_speed_template);
1781 if (mode > 300 && mode < 400) break;
1783 case 312:
1784 test_hash_speed("tgr192", sec, generic_hash_speed_template);
1785 if (mode > 300 && mode < 400) break;
1787 case 313:
1788 test_hash_speed("sha224", sec, generic_hash_speed_template);
1789 if (mode > 300 && mode < 400) break;
1791 case 399:
1792 break;
1794 case 1000:
1795 test_available();
1796 break;
1798 default:
1799 /* useful for debugging */
1800 printk("not testing anything\n");
1801 break;
1805 static int __init tcrypt_mod_init(void)
1807 int err = -ENOMEM;
1809 tvmem = kmalloc(TVMEMSIZE, GFP_KERNEL);
1810 if (tvmem == NULL)
1811 return err;
1813 xbuf = kmalloc(XBUFSIZE, GFP_KERNEL);
1814 if (xbuf == NULL)
1815 goto err_free_tv;
1817 axbuf = kmalloc(XBUFSIZE, GFP_KERNEL);
1818 if (axbuf == NULL)
1819 goto err_free_xbuf;
1821 do_test();
1823 /* We intentionaly return -EAGAIN to prevent keeping
1824 * the module. It does all its work from init()
1825 * and doesn't offer any runtime functionality
1826 * => we don't need it in the memory, do we?
1827 * -- mludvig
1829 err = -EAGAIN;
1831 kfree(axbuf);
1832 err_free_xbuf:
1833 kfree(xbuf);
1834 err_free_tv:
1835 kfree(tvmem);
1837 return err;
1841 * If an init function is provided, an exit function must also be provided
1842 * to allow module unload.
1844 static void __exit tcrypt_mod_fini(void) { }
1846 module_init(tcrypt_mod_init);
1847 module_exit(tcrypt_mod_fini);
1849 module_param(mode, int, 0);
1850 module_param(sec, uint, 0);
1851 MODULE_PARM_DESC(sec, "Length in seconds of speed tests "
1852 "(defaults to zero which uses CPU cycles instead)");
1854 MODULE_LICENSE("GPL");
1855 MODULE_DESCRIPTION("Quick & dirty crypto testing module");
1856 MODULE_AUTHOR("James Morris <jmorris@intercode.com.au>");