blob: 0d9003ae8c61402e027ab4b5bfc933442478b966 [file] [log] [blame]
Herbert Xuef2736f2005-06-22 13:26:03 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Quick & dirty crypto testing module.
3 *
4 * This will only exist until we have a better testing mechanism
5 * (e.g. a char device).
6 *
7 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
8 * Copyright (c) 2002 Jean-Francois Dive <jef@linuxbe.org>
Mikko Herranene3a4ea42007-11-26 22:12:07 +08009 * Copyright (c) 2007 Nokia Siemens Networks
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
Adrian Hoban69435b92010-11-04 15:02:04 -040011 * 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.
17 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * 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
Herbert Xuef2736f2005-06-22 13:26:03 -070020 * Software Foundation; either version 2 of the License, or (at your option)
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 * any later version.
22 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 */
24
Herbert Xu18e33e62008-07-10 16:01:22 +080025#include <crypto/hash.h>
Herbert Xucba83562006-08-13 08:26:09 +100026#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/module.h>
David Hardeman378f0582005-09-17 17:55:31 +100030#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/moduleparam.h>
Harald Welteebfd9bc2005-06-22 13:27:23 -070033#include <linux/jiffies.h>
Herbert Xu6a179442005-06-22 13:29:03 -070034#include <linux/timex.h>
35#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "tcrypt.h"
Jarod Wilson4e033a62009-05-27 15:10:21 +100037#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39/*
Herbert Xuf139cfa2008-07-31 12:23:53 +080040 * Need slab memory for testing (size in number of pages).
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 */
Herbert Xuf139cfa2008-07-31 12:23:53 +080042#define TVMEMSIZE 4
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44/*
Herbert Xuda7f0332008-07-31 17:08:25 +080045* Used by test_cipher_speed()
Linus Torvalds1da177e2005-04-16 15:20:36 -070046*/
47#define ENCRYPT 1
48#define DECRYPT 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Harald Welteebfd9bc2005-06-22 13:27:23 -070050/*
51 * Used by test_cipher_speed()
52 */
Herbert Xu6a179442005-06-22 13:29:03 -070053static unsigned int sec;
Harald Welteebfd9bc2005-06-22 13:27:23 -070054
Steffen Klasserta873a5f2009-06-19 19:46:53 +080055static char *alg = NULL;
56static u32 type;
Herbert Xu7be380f2009-07-14 16:06:54 +080057static u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058static int mode;
Herbert Xuf139cfa2008-07-31 12:23:53 +080059static char *tvmem[TVMEMSIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61static char *check[] = {
Jonathan Lynchcd12fb902007-11-10 20:08:25 +080062 "des", "md5", "des3_ede", "rot13", "sha1", "sha224", "sha256",
63 "blowfish", "twofish", "serpent", "sha384", "sha512", "md4", "aes",
64 "cast6", "arc4", "michael_mic", "deflate", "crc32c", "tea", "xtea",
David Howells90831632006-12-16 12:13:14 +110065 "khazad", "wp512", "wp384", "wp256", "tnepres", "xeta", "fcrypt",
Adrian-Ken Rueegsegger2998db32008-05-09 21:29:35 +080066 "camellia", "seed", "salsa20", "rmd128", "rmd160", "rmd256", "rmd320",
Geert Uytterhoeven0c01aed2009-03-04 15:42:15 +080067 "lzo", "cts", "zlib", NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -070068};
69
Herbert Xuf139cfa2008-07-31 12:23:53 +080070static int test_cipher_jiffies(struct blkcipher_desc *desc, int enc,
71 struct scatterlist *sg, int blen, int sec)
Herbert Xu6a179442005-06-22 13:29:03 -070072{
Herbert Xu6a179442005-06-22 13:29:03 -070073 unsigned long start, end;
74 int bcount;
75 int ret;
76
Herbert Xu6a179442005-06-22 13:29:03 -070077 for (start = jiffies, end = start + sec * HZ, bcount = 0;
78 time_before(jiffies, end); bcount++) {
79 if (enc)
Herbert Xucba83562006-08-13 08:26:09 +100080 ret = crypto_blkcipher_encrypt(desc, sg, sg, blen);
Herbert Xu6a179442005-06-22 13:29:03 -070081 else
Herbert Xucba83562006-08-13 08:26:09 +100082 ret = crypto_blkcipher_decrypt(desc, sg, sg, blen);
Herbert Xu6a179442005-06-22 13:29:03 -070083
84 if (ret)
85 return ret;
86 }
87
88 printk("%d operations in %d seconds (%ld bytes)\n",
89 bcount, sec, (long)bcount * blen);
90 return 0;
91}
92
Herbert Xuf139cfa2008-07-31 12:23:53 +080093static int test_cipher_cycles(struct blkcipher_desc *desc, int enc,
94 struct scatterlist *sg, int blen)
Herbert Xu6a179442005-06-22 13:29:03 -070095{
Herbert Xu6a179442005-06-22 13:29:03 -070096 unsigned long cycles = 0;
97 int ret = 0;
98 int i;
99
Herbert Xu6a179442005-06-22 13:29:03 -0700100 local_irq_disable();
101
102 /* Warm-up run. */
103 for (i = 0; i < 4; i++) {
104 if (enc)
Herbert Xucba83562006-08-13 08:26:09 +1000105 ret = crypto_blkcipher_encrypt(desc, sg, sg, blen);
Herbert Xu6a179442005-06-22 13:29:03 -0700106 else
Herbert Xucba83562006-08-13 08:26:09 +1000107 ret = crypto_blkcipher_decrypt(desc, sg, sg, blen);
Herbert Xu6a179442005-06-22 13:29:03 -0700108
109 if (ret)
110 goto out;
111 }
112
113 /* The real thing. */
114 for (i = 0; i < 8; i++) {
115 cycles_t start, end;
116
117 start = get_cycles();
118 if (enc)
Herbert Xucba83562006-08-13 08:26:09 +1000119 ret = crypto_blkcipher_encrypt(desc, sg, sg, blen);
Herbert Xu6a179442005-06-22 13:29:03 -0700120 else
Herbert Xucba83562006-08-13 08:26:09 +1000121 ret = crypto_blkcipher_decrypt(desc, sg, sg, blen);
Herbert Xu6a179442005-06-22 13:29:03 -0700122 end = get_cycles();
123
124 if (ret)
125 goto out;
126
127 cycles += end - start;
128 }
129
130out:
131 local_irq_enable();
Herbert Xu6a179442005-06-22 13:29:03 -0700132
133 if (ret == 0)
134 printk("1 operation in %lu cycles (%d bytes)\n",
135 (cycles + 4) / 8, blen);
136
137 return ret;
138}
139
Tim Chen53f52d72013-12-11 14:28:47 -0800140static int test_aead_jiffies(struct aead_request *req, int enc,
141 int blen, int sec)
142{
143 unsigned long start, end;
144 int bcount;
145 int ret;
146
147 for (start = jiffies, end = start + sec * HZ, bcount = 0;
148 time_before(jiffies, end); bcount++) {
149 if (enc)
150 ret = crypto_aead_encrypt(req);
151 else
152 ret = crypto_aead_decrypt(req);
153
154 if (ret)
155 return ret;
156 }
157
158 printk("%d operations in %d seconds (%ld bytes)\n",
159 bcount, sec, (long)bcount * blen);
160 return 0;
161}
162
163static int test_aead_cycles(struct aead_request *req, int enc, int blen)
164{
165 unsigned long cycles = 0;
166 int ret = 0;
167 int i;
168
169 local_irq_disable();
170
171 /* Warm-up run. */
172 for (i = 0; i < 4; i++) {
173 if (enc)
174 ret = crypto_aead_encrypt(req);
175 else
176 ret = crypto_aead_decrypt(req);
177
178 if (ret)
179 goto out;
180 }
181
182 /* The real thing. */
183 for (i = 0; i < 8; i++) {
184 cycles_t start, end;
185
186 start = get_cycles();
187 if (enc)
188 ret = crypto_aead_encrypt(req);
189 else
190 ret = crypto_aead_decrypt(req);
191 end = get_cycles();
192
193 if (ret)
194 goto out;
195
196 cycles += end - start;
197 }
198
199out:
200 local_irq_enable();
201
202 if (ret == 0)
203 printk("1 operation in %lu cycles (%d bytes)\n",
204 (cycles + 4) / 8, blen);
205
206 return ret;
207}
208
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800209static u32 block_sizes[] = { 16, 64, 256, 1024, 8192, 0 };
Tim Chen53f52d72013-12-11 14:28:47 -0800210static u32 aead_sizes[] = { 16, 64, 256, 512, 1024, 2048, 4096, 8192, 0 };
211
212#define XBUFSIZE 8
213#define MAX_IVLEN 32
214
215static int testmgr_alloc_buf(char *buf[XBUFSIZE])
216{
217 int i;
218
219 for (i = 0; i < XBUFSIZE; i++) {
220 buf[i] = (void *)__get_free_page(GFP_KERNEL);
221 if (!buf[i])
222 goto err_free_buf;
223 }
224
225 return 0;
226
227err_free_buf:
228 while (i-- > 0)
229 free_page((unsigned long)buf[i]);
230
231 return -ENOMEM;
232}
233
234static void testmgr_free_buf(char *buf[XBUFSIZE])
235{
236 int i;
237
238 for (i = 0; i < XBUFSIZE; i++)
239 free_page((unsigned long)buf[i]);
240}
241
242static void sg_init_aead(struct scatterlist *sg, char *xbuf[XBUFSIZE],
243 unsigned int buflen)
244{
245 int np = (buflen + PAGE_SIZE - 1)/PAGE_SIZE;
246 int k, rem;
247
248 np = (np > XBUFSIZE) ? XBUFSIZE : np;
249 rem = buflen % PAGE_SIZE;
250 if (np > XBUFSIZE) {
251 rem = PAGE_SIZE;
252 np = XBUFSIZE;
253 }
254 sg_init_table(sg, np);
255 for (k = 0; k < np; ++k) {
256 if (k == (np-1))
257 sg_set_buf(&sg[k], xbuf[k], rem);
258 else
259 sg_set_buf(&sg[k], xbuf[k], PAGE_SIZE);
260 }
261}
262
263static void test_aead_speed(const char *algo, int enc, unsigned int sec,
264 struct aead_speed_template *template,
265 unsigned int tcount, u8 authsize,
266 unsigned int aad_size, u8 *keysize)
267{
268 unsigned int i, j;
269 struct crypto_aead *tfm;
270 int ret = -ENOMEM;
271 const char *key;
272 struct aead_request *req;
273 struct scatterlist *sg;
274 struct scatterlist *asg;
275 struct scatterlist *sgout;
276 const char *e;
277 void *assoc;
278 char iv[MAX_IVLEN];
279 char *xbuf[XBUFSIZE];
280 char *xoutbuf[XBUFSIZE];
281 char *axbuf[XBUFSIZE];
282 unsigned int *b_size;
283 unsigned int iv_len;
284
285 if (enc == ENCRYPT)
286 e = "encryption";
287 else
288 e = "decryption";
289
290 if (testmgr_alloc_buf(xbuf))
291 goto out_noxbuf;
292 if (testmgr_alloc_buf(axbuf))
293 goto out_noaxbuf;
294 if (testmgr_alloc_buf(xoutbuf))
295 goto out_nooutbuf;
296
297 sg = kmalloc(sizeof(*sg) * 8 * 3, GFP_KERNEL);
298 if (!sg)
299 goto out_nosg;
300 asg = &sg[8];
301 sgout = &asg[8];
302
303
304 printk(KERN_INFO "\ntesting speed of %s %s\n", algo, e);
305
306 tfm = crypto_alloc_aead(algo, 0, 0);
307
308 if (IS_ERR(tfm)) {
309 pr_err("alg: aead: Failed to load transform for %s: %ld\n", algo,
310 PTR_ERR(tfm));
311 return;
312 }
313
314 req = aead_request_alloc(tfm, GFP_KERNEL);
315 if (!req) {
316 pr_err("alg: aead: Failed to allocate request for %s\n",
317 algo);
318 goto out;
319 }
320
321 i = 0;
322 do {
323 b_size = aead_sizes;
324 do {
325 assoc = axbuf[0];
326
327 if (aad_size < PAGE_SIZE)
328 memset(assoc, 0xff, aad_size);
329 else {
330 pr_err("associate data length (%u) too big\n",
331 aad_size);
332 goto out_nosg;
333 }
334 sg_init_one(&asg[0], assoc, aad_size);
335
336 if ((*keysize + *b_size) > TVMEMSIZE * PAGE_SIZE) {
337 pr_err("template (%u) too big for tvmem (%lu)\n",
338 *keysize + *b_size,
339 TVMEMSIZE * PAGE_SIZE);
340 goto out;
341 }
342
343 key = tvmem[0];
344 for (j = 0; j < tcount; j++) {
345 if (template[j].klen == *keysize) {
346 key = template[j].key;
347 break;
348 }
349 }
350 ret = crypto_aead_setkey(tfm, key, *keysize);
351 ret = crypto_aead_setauthsize(tfm, authsize);
352
353 iv_len = crypto_aead_ivsize(tfm);
354 if (iv_len)
355 memset(&iv, 0xff, iv_len);
356
357 crypto_aead_clear_flags(tfm, ~0);
358 printk(KERN_INFO "test %u (%d bit key, %d byte blocks): ",
359 i, *keysize * 8, *b_size);
360
361
362 memset(tvmem[0], 0xff, PAGE_SIZE);
363
364 if (ret) {
365 pr_err("setkey() failed flags=%x\n",
366 crypto_aead_get_flags(tfm));
367 goto out;
368 }
369
370 sg_init_aead(&sg[0], xbuf,
371 *b_size + (enc ? authsize : 0));
372
373 sg_init_aead(&sgout[0], xoutbuf,
374 *b_size + (enc ? authsize : 0));
375
376 aead_request_set_crypt(req, sg, sgout, *b_size, iv);
377 aead_request_set_assoc(req, asg, aad_size);
378
379 if (sec)
380 ret = test_aead_jiffies(req, enc, *b_size, sec);
381 else
382 ret = test_aead_cycles(req, enc, *b_size);
383
384 if (ret) {
385 pr_err("%s() failed return code=%d\n", e, ret);
386 break;
387 }
388 b_size++;
389 i++;
390 } while (*b_size);
391 keysize++;
392 } while (*keysize);
393
394out:
395 crypto_free_aead(tfm);
396 kfree(sg);
397out_nosg:
398 testmgr_free_buf(xoutbuf);
399out_nooutbuf:
400 testmgr_free_buf(axbuf);
401out_noaxbuf:
402 testmgr_free_buf(xbuf);
403out_noxbuf:
404 return;
405}
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800406
Herbert Xu01b32322008-07-31 15:41:55 +0800407static void test_cipher_speed(const char *algo, int enc, unsigned int sec,
Herbert Xuda7f0332008-07-31 17:08:25 +0800408 struct cipher_speed_template *template,
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800409 unsigned int tcount, u8 *keysize)
Harald Welteebfd9bc2005-06-22 13:27:23 -0700410{
Herbert Xudce907c2005-06-22 13:27:51 -0700411 unsigned int ret, i, j, iv_len;
David Sterbaf07ef1d2011-03-04 15:28:52 +0800412 const char *key;
413 char iv[128];
Herbert Xucba83562006-08-13 08:26:09 +1000414 struct crypto_blkcipher *tfm;
415 struct blkcipher_desc desc;
416 const char *e;
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800417 u32 *b_size;
Harald Welteebfd9bc2005-06-22 13:27:23 -0700418
419 if (enc == ENCRYPT)
420 e = "encryption";
421 else
422 e = "decryption";
Harald Welteebfd9bc2005-06-22 13:27:23 -0700423
Herbert Xucba83562006-08-13 08:26:09 +1000424 printk("\ntesting speed of %s %s\n", algo, e);
Harald Welteebfd9bc2005-06-22 13:27:23 -0700425
Herbert Xucba83562006-08-13 08:26:09 +1000426 tfm = crypto_alloc_blkcipher(algo, 0, CRYPTO_ALG_ASYNC);
Harald Welteebfd9bc2005-06-22 13:27:23 -0700427
Herbert Xucba83562006-08-13 08:26:09 +1000428 if (IS_ERR(tfm)) {
429 printk("failed to load transform for %s: %ld\n", algo,
430 PTR_ERR(tfm));
Harald Welteebfd9bc2005-06-22 13:27:23 -0700431 return;
432 }
Herbert Xucba83562006-08-13 08:26:09 +1000433 desc.tfm = tfm;
434 desc.flags = 0;
Harald Welteebfd9bc2005-06-22 13:27:23 -0700435
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800436 i = 0;
437 do {
Harald Welteebfd9bc2005-06-22 13:27:23 -0700438
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800439 b_size = block_sizes;
440 do {
Herbert Xuf139cfa2008-07-31 12:23:53 +0800441 struct scatterlist sg[TVMEMSIZE];
Harald Welteebfd9bc2005-06-22 13:27:23 -0700442
Herbert Xuf139cfa2008-07-31 12:23:53 +0800443 if ((*keysize + *b_size) > TVMEMSIZE * PAGE_SIZE) {
444 printk("template (%u) too big for "
445 "tvmem (%lu)\n", *keysize + *b_size,
446 TVMEMSIZE * PAGE_SIZE);
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800447 goto out;
448 }
Harald Welteebfd9bc2005-06-22 13:27:23 -0700449
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800450 printk("test %u (%d bit key, %d byte blocks): ", i,
451 *keysize * 8, *b_size);
452
Herbert Xuf139cfa2008-07-31 12:23:53 +0800453 memset(tvmem[0], 0xff, PAGE_SIZE);
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800454
455 /* set key, plain text and IV */
Herbert Xuda7f0332008-07-31 17:08:25 +0800456 key = tvmem[0];
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800457 for (j = 0; j < tcount; j++) {
458 if (template[j].klen == *keysize) {
459 key = template[j].key;
460 break;
461 }
462 }
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800463
464 ret = crypto_blkcipher_setkey(tfm, key, *keysize);
465 if (ret) {
466 printk("setkey() failed flags=%x\n",
467 crypto_blkcipher_get_flags(tfm));
468 goto out;
469 }
470
Herbert Xuf139cfa2008-07-31 12:23:53 +0800471 sg_init_table(sg, TVMEMSIZE);
472 sg_set_buf(sg, tvmem[0] + *keysize,
473 PAGE_SIZE - *keysize);
474 for (j = 1; j < TVMEMSIZE; j++) {
475 sg_set_buf(sg + j, tvmem[j], PAGE_SIZE);
476 memset (tvmem[j], 0xff, PAGE_SIZE);
477 }
478
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800479 iv_len = crypto_blkcipher_ivsize(tfm);
480 if (iv_len) {
481 memset(&iv, 0xff, iv_len);
482 crypto_blkcipher_set_iv(tfm, iv, iv_len);
483 }
484
485 if (sec)
Herbert Xuf139cfa2008-07-31 12:23:53 +0800486 ret = test_cipher_jiffies(&desc, enc, sg,
487 *b_size, sec);
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800488 else
Herbert Xuf139cfa2008-07-31 12:23:53 +0800489 ret = test_cipher_cycles(&desc, enc, sg,
490 *b_size);
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800491
492 if (ret) {
493 printk("%s() failed flags=%x\n", e, desc.flags);
Herbert Xudce907c2005-06-22 13:27:51 -0700494 break;
495 }
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800496 b_size++;
497 i++;
498 } while (*b_size);
499 keysize++;
500 } while (*keysize);
Harald Welteebfd9bc2005-06-22 13:27:23 -0700501
502out:
Herbert Xucba83562006-08-13 08:26:09 +1000503 crypto_free_blkcipher(tfm);
Harald Welteebfd9bc2005-06-22 13:27:23 -0700504}
505
Herbert Xuf139cfa2008-07-31 12:23:53 +0800506static int test_hash_jiffies_digest(struct hash_desc *desc,
507 struct scatterlist *sg, int blen,
Herbert Xue9d41162006-08-19 21:38:49 +1000508 char *out, int sec)
Michal Ludvige8057922006-05-30 22:04:19 +1000509{
Michal Ludvige8057922006-05-30 22:04:19 +1000510 unsigned long start, end;
Herbert Xue9d41162006-08-19 21:38:49 +1000511 int bcount;
512 int ret;
Michal Ludvige8057922006-05-30 22:04:19 +1000513
514 for (start = jiffies, end = start + sec * HZ, bcount = 0;
515 time_before(jiffies, end); bcount++) {
Herbert Xue9d41162006-08-19 21:38:49 +1000516 ret = crypto_hash_digest(desc, sg, blen, out);
517 if (ret)
518 return ret;
Michal Ludvige8057922006-05-30 22:04:19 +1000519 }
520
521 printk("%6u opers/sec, %9lu bytes/sec\n",
522 bcount / sec, ((long)bcount * blen) / sec);
523
Herbert Xue9d41162006-08-19 21:38:49 +1000524 return 0;
Michal Ludvige8057922006-05-30 22:04:19 +1000525}
526
Herbert Xuf139cfa2008-07-31 12:23:53 +0800527static int test_hash_jiffies(struct hash_desc *desc, struct scatterlist *sg,
528 int blen, int plen, char *out, int sec)
Herbert Xue9d41162006-08-19 21:38:49 +1000529{
Herbert Xue9d41162006-08-19 21:38:49 +1000530 unsigned long start, end;
531 int bcount, pcount;
532 int ret;
533
534 if (plen == blen)
Herbert Xuf139cfa2008-07-31 12:23:53 +0800535 return test_hash_jiffies_digest(desc, sg, blen, out, sec);
Herbert Xua5a613a2007-10-27 00:51:21 -0700536
Herbert Xue9d41162006-08-19 21:38:49 +1000537 for (start = jiffies, end = start + sec * HZ, bcount = 0;
538 time_before(jiffies, end); bcount++) {
539 ret = crypto_hash_init(desc);
540 if (ret)
541 return ret;
542 for (pcount = 0; pcount < blen; pcount += plen) {
Herbert Xue9d41162006-08-19 21:38:49 +1000543 ret = crypto_hash_update(desc, sg, plen);
544 if (ret)
545 return ret;
546 }
547 /* we assume there is enough space in 'out' for the result */
548 ret = crypto_hash_final(desc, out);
549 if (ret)
550 return ret;
551 }
552
553 printk("%6u opers/sec, %9lu bytes/sec\n",
554 bcount / sec, ((long)bcount * blen) / sec);
555
556 return 0;
557}
558
Herbert Xuf139cfa2008-07-31 12:23:53 +0800559static int test_hash_cycles_digest(struct hash_desc *desc,
560 struct scatterlist *sg, int blen, char *out)
Michal Ludvige8057922006-05-30 22:04:19 +1000561{
Michal Ludvige8057922006-05-30 22:04:19 +1000562 unsigned long cycles = 0;
Herbert Xue9d41162006-08-19 21:38:49 +1000563 int i;
564 int ret;
Michal Ludvige8057922006-05-30 22:04:19 +1000565
Michal Ludvige8057922006-05-30 22:04:19 +1000566 local_irq_disable();
567
568 /* Warm-up run. */
569 for (i = 0; i < 4; i++) {
Herbert Xue9d41162006-08-19 21:38:49 +1000570 ret = crypto_hash_digest(desc, sg, blen, out);
571 if (ret)
572 goto out;
Michal Ludvige8057922006-05-30 22:04:19 +1000573 }
574
575 /* The real thing. */
576 for (i = 0; i < 8; i++) {
577 cycles_t start, end;
578
Michal Ludvige8057922006-05-30 22:04:19 +1000579 start = get_cycles();
580
Herbert Xue9d41162006-08-19 21:38:49 +1000581 ret = crypto_hash_digest(desc, sg, blen, out);
582 if (ret)
583 goto out;
Michal Ludvige8057922006-05-30 22:04:19 +1000584
585 end = get_cycles();
586
587 cycles += end - start;
588 }
589
Herbert Xue9d41162006-08-19 21:38:49 +1000590out:
Michal Ludvige8057922006-05-30 22:04:19 +1000591 local_irq_enable();
Michal Ludvige8057922006-05-30 22:04:19 +1000592
Herbert Xue9d41162006-08-19 21:38:49 +1000593 if (ret)
594 return ret;
595
Michal Ludvige8057922006-05-30 22:04:19 +1000596 printk("%6lu cycles/operation, %4lu cycles/byte\n",
597 cycles / 8, cycles / (8 * blen));
598
Herbert Xue9d41162006-08-19 21:38:49 +1000599 return 0;
Michal Ludvige8057922006-05-30 22:04:19 +1000600}
601
Herbert Xuf139cfa2008-07-31 12:23:53 +0800602static int test_hash_cycles(struct hash_desc *desc, struct scatterlist *sg,
603 int blen, int plen, char *out)
Michal Ludvige8057922006-05-30 22:04:19 +1000604{
Herbert Xue9d41162006-08-19 21:38:49 +1000605 unsigned long cycles = 0;
606 int i, pcount;
607 int ret;
608
609 if (plen == blen)
Herbert Xuf139cfa2008-07-31 12:23:53 +0800610 return test_hash_cycles_digest(desc, sg, blen, out);
Herbert Xua5a613a2007-10-27 00:51:21 -0700611
Herbert Xue9d41162006-08-19 21:38:49 +1000612 local_irq_disable();
613
614 /* Warm-up run. */
615 for (i = 0; i < 4; i++) {
616 ret = crypto_hash_init(desc);
617 if (ret)
618 goto out;
619 for (pcount = 0; pcount < blen; pcount += plen) {
Herbert Xue9d41162006-08-19 21:38:49 +1000620 ret = crypto_hash_update(desc, sg, plen);
621 if (ret)
622 goto out;
623 }
Herbert Xu29059d12007-05-18 16:25:19 +1000624 ret = crypto_hash_final(desc, out);
Herbert Xue9d41162006-08-19 21:38:49 +1000625 if (ret)
626 goto out;
627 }
628
629 /* The real thing. */
630 for (i = 0; i < 8; i++) {
631 cycles_t start, end;
632
633 start = get_cycles();
634
635 ret = crypto_hash_init(desc);
636 if (ret)
637 goto out;
638 for (pcount = 0; pcount < blen; pcount += plen) {
Herbert Xue9d41162006-08-19 21:38:49 +1000639 ret = crypto_hash_update(desc, sg, plen);
640 if (ret)
641 goto out;
642 }
643 ret = crypto_hash_final(desc, out);
644 if (ret)
645 goto out;
646
647 end = get_cycles();
648
649 cycles += end - start;
650 }
651
652out:
653 local_irq_enable();
Herbert Xue9d41162006-08-19 21:38:49 +1000654
655 if (ret)
656 return ret;
657
658 printk("%6lu cycles/operation, %4lu cycles/byte\n",
659 cycles / 8, cycles / (8 * blen));
660
661 return 0;
662}
663
David S. Millerbeb63da72010-05-19 14:11:21 +1000664static void test_hash_sg_init(struct scatterlist *sg)
665{
666 int i;
667
668 sg_init_table(sg, TVMEMSIZE);
669 for (i = 0; i < TVMEMSIZE; i++) {
670 sg_set_buf(sg + i, tvmem[i], PAGE_SIZE);
671 memset(tvmem[i], 0xff, PAGE_SIZE);
672 }
673}
674
Herbert Xu01b32322008-07-31 15:41:55 +0800675static void test_hash_speed(const char *algo, unsigned int sec,
676 struct hash_speed *speed)
Herbert Xue9d41162006-08-19 21:38:49 +1000677{
Herbert Xuf139cfa2008-07-31 12:23:53 +0800678 struct scatterlist sg[TVMEMSIZE];
Herbert Xue9d41162006-08-19 21:38:49 +1000679 struct crypto_hash *tfm;
680 struct hash_desc desc;
Frank Seidel376bacb2009-03-29 15:18:39 +0800681 static char output[1024];
Michal Ludvige8057922006-05-30 22:04:19 +1000682 int i;
Herbert Xue9d41162006-08-19 21:38:49 +1000683 int ret;
Michal Ludvige8057922006-05-30 22:04:19 +1000684
Frank Seidel376bacb2009-03-29 15:18:39 +0800685 printk(KERN_INFO "\ntesting speed of %s\n", algo);
Michal Ludvige8057922006-05-30 22:04:19 +1000686
Herbert Xue9d41162006-08-19 21:38:49 +1000687 tfm = crypto_alloc_hash(algo, 0, CRYPTO_ALG_ASYNC);
Michal Ludvige8057922006-05-30 22:04:19 +1000688
Herbert Xue9d41162006-08-19 21:38:49 +1000689 if (IS_ERR(tfm)) {
Frank Seidel376bacb2009-03-29 15:18:39 +0800690 printk(KERN_ERR "failed to load transform for %s: %ld\n", algo,
Herbert Xue9d41162006-08-19 21:38:49 +1000691 PTR_ERR(tfm));
Michal Ludvige8057922006-05-30 22:04:19 +1000692 return;
693 }
694
Herbert Xue9d41162006-08-19 21:38:49 +1000695 desc.tfm = tfm;
696 desc.flags = 0;
697
698 if (crypto_hash_digestsize(tfm) > sizeof(output)) {
Frank Seidel376bacb2009-03-29 15:18:39 +0800699 printk(KERN_ERR "digestsize(%u) > outputbuffer(%zu)\n",
Herbert Xue9d41162006-08-19 21:38:49 +1000700 crypto_hash_digestsize(tfm), sizeof(output));
Michal Ludvige8057922006-05-30 22:04:19 +1000701 goto out;
702 }
703
David S. Millerbeb63da72010-05-19 14:11:21 +1000704 test_hash_sg_init(sg);
Michal Ludvige8057922006-05-30 22:04:19 +1000705 for (i = 0; speed[i].blen != 0; i++) {
Herbert Xuf139cfa2008-07-31 12:23:53 +0800706 if (speed[i].blen > TVMEMSIZE * PAGE_SIZE) {
Frank Seidel376bacb2009-03-29 15:18:39 +0800707 printk(KERN_ERR
708 "template (%u) too big for tvmem (%lu)\n",
Herbert Xuf139cfa2008-07-31 12:23:53 +0800709 speed[i].blen, TVMEMSIZE * PAGE_SIZE);
Michal Ludvige8057922006-05-30 22:04:19 +1000710 goto out;
711 }
712
Huang Ying18bcc912010-03-10 18:30:32 +0800713 if (speed[i].klen)
714 crypto_hash_setkey(tfm, tvmem[0], speed[i].klen);
715
Frank Seidel376bacb2009-03-29 15:18:39 +0800716 printk(KERN_INFO "test%3u "
717 "(%5u byte blocks,%5u bytes per update,%4u updates): ",
Michal Ludvige8057922006-05-30 22:04:19 +1000718 i, speed[i].blen, speed[i].plen, speed[i].blen / speed[i].plen);
719
Michal Ludvige8057922006-05-30 22:04:19 +1000720 if (sec)
Herbert Xuf139cfa2008-07-31 12:23:53 +0800721 ret = test_hash_jiffies(&desc, sg, speed[i].blen,
Herbert Xue9d41162006-08-19 21:38:49 +1000722 speed[i].plen, output, sec);
Michal Ludvige8057922006-05-30 22:04:19 +1000723 else
Herbert Xuf139cfa2008-07-31 12:23:53 +0800724 ret = test_hash_cycles(&desc, sg, speed[i].blen,
Herbert Xue9d41162006-08-19 21:38:49 +1000725 speed[i].plen, output);
726
727 if (ret) {
Frank Seidel376bacb2009-03-29 15:18:39 +0800728 printk(KERN_ERR "hashing failed ret=%d\n", ret);
Herbert Xue9d41162006-08-19 21:38:49 +1000729 break;
730 }
Michal Ludvige8057922006-05-30 22:04:19 +1000731 }
732
733out:
Herbert Xue9d41162006-08-19 21:38:49 +1000734 crypto_free_hash(tfm);
Michal Ludvige8057922006-05-30 22:04:19 +1000735}
736
David S. Millerbeb63da72010-05-19 14:11:21 +1000737struct tcrypt_result {
738 struct completion completion;
739 int err;
740};
741
742static void tcrypt_complete(struct crypto_async_request *req, int err)
743{
744 struct tcrypt_result *res = req->data;
745
746 if (err == -EINPROGRESS)
747 return;
748
749 res->err = err;
750 complete(&res->completion);
751}
752
753static inline int do_one_ahash_op(struct ahash_request *req, int ret)
754{
755 if (ret == -EINPROGRESS || ret == -EBUSY) {
756 struct tcrypt_result *tr = req->base.data;
757
758 ret = wait_for_completion_interruptible(&tr->completion);
759 if (!ret)
760 ret = tr->err;
Wolfram Sang16735d02013-11-14 14:32:02 -0800761 reinit_completion(&tr->completion);
David S. Millerbeb63da72010-05-19 14:11:21 +1000762 }
763 return ret;
764}
765
766static int test_ahash_jiffies_digest(struct ahash_request *req, int blen,
767 char *out, int sec)
768{
769 unsigned long start, end;
770 int bcount;
771 int ret;
772
773 for (start = jiffies, end = start + sec * HZ, bcount = 0;
774 time_before(jiffies, end); bcount++) {
775 ret = do_one_ahash_op(req, crypto_ahash_digest(req));
776 if (ret)
777 return ret;
778 }
779
780 printk("%6u opers/sec, %9lu bytes/sec\n",
781 bcount / sec, ((long)bcount * blen) / sec);
782
783 return 0;
784}
785
786static int test_ahash_jiffies(struct ahash_request *req, int blen,
787 int plen, char *out, int sec)
788{
789 unsigned long start, end;
790 int bcount, pcount;
791 int ret;
792
793 if (plen == blen)
794 return test_ahash_jiffies_digest(req, blen, out, sec);
795
796 for (start = jiffies, end = start + sec * HZ, bcount = 0;
797 time_before(jiffies, end); bcount++) {
798 ret = crypto_ahash_init(req);
799 if (ret)
800 return ret;
801 for (pcount = 0; pcount < blen; pcount += plen) {
802 ret = do_one_ahash_op(req, crypto_ahash_update(req));
803 if (ret)
804 return ret;
805 }
806 /* we assume there is enough space in 'out' for the result */
807 ret = do_one_ahash_op(req, crypto_ahash_final(req));
808 if (ret)
809 return ret;
810 }
811
812 pr_cont("%6u opers/sec, %9lu bytes/sec\n",
813 bcount / sec, ((long)bcount * blen) / sec);
814
815 return 0;
816}
817
818static int test_ahash_cycles_digest(struct ahash_request *req, int blen,
819 char *out)
820{
821 unsigned long cycles = 0;
822 int ret, i;
823
824 /* Warm-up run. */
825 for (i = 0; i < 4; i++) {
826 ret = do_one_ahash_op(req, crypto_ahash_digest(req));
827 if (ret)
828 goto out;
829 }
830
831 /* The real thing. */
832 for (i = 0; i < 8; i++) {
833 cycles_t start, end;
834
835 start = get_cycles();
836
837 ret = do_one_ahash_op(req, crypto_ahash_digest(req));
838 if (ret)
839 goto out;
840
841 end = get_cycles();
842
843 cycles += end - start;
844 }
845
846out:
847 if (ret)
848 return ret;
849
850 pr_cont("%6lu cycles/operation, %4lu cycles/byte\n",
851 cycles / 8, cycles / (8 * blen));
852
853 return 0;
854}
855
856static int test_ahash_cycles(struct ahash_request *req, int blen,
857 int plen, char *out)
858{
859 unsigned long cycles = 0;
860 int i, pcount, ret;
861
862 if (plen == blen)
863 return test_ahash_cycles_digest(req, blen, out);
864
865 /* Warm-up run. */
866 for (i = 0; i < 4; i++) {
867 ret = crypto_ahash_init(req);
868 if (ret)
869 goto out;
870 for (pcount = 0; pcount < blen; pcount += plen) {
871 ret = do_one_ahash_op(req, crypto_ahash_update(req));
872 if (ret)
873 goto out;
874 }
875 ret = do_one_ahash_op(req, crypto_ahash_final(req));
876 if (ret)
877 goto out;
878 }
879
880 /* The real thing. */
881 for (i = 0; i < 8; i++) {
882 cycles_t start, end;
883
884 start = get_cycles();
885
886 ret = crypto_ahash_init(req);
887 if (ret)
888 goto out;
889 for (pcount = 0; pcount < blen; pcount += plen) {
890 ret = do_one_ahash_op(req, crypto_ahash_update(req));
891 if (ret)
892 goto out;
893 }
894 ret = do_one_ahash_op(req, crypto_ahash_final(req));
895 if (ret)
896 goto out;
897
898 end = get_cycles();
899
900 cycles += end - start;
901 }
902
903out:
904 if (ret)
905 return ret;
906
907 pr_cont("%6lu cycles/operation, %4lu cycles/byte\n",
908 cycles / 8, cycles / (8 * blen));
909
910 return 0;
911}
912
913static void test_ahash_speed(const char *algo, unsigned int sec,
914 struct hash_speed *speed)
915{
916 struct scatterlist sg[TVMEMSIZE];
917 struct tcrypt_result tresult;
918 struct ahash_request *req;
919 struct crypto_ahash *tfm;
920 static char output[1024];
921 int i, ret;
922
923 printk(KERN_INFO "\ntesting speed of async %s\n", algo);
924
925 tfm = crypto_alloc_ahash(algo, 0, 0);
926 if (IS_ERR(tfm)) {
927 pr_err("failed to load transform for %s: %ld\n",
928 algo, PTR_ERR(tfm));
929 return;
930 }
931
932 if (crypto_ahash_digestsize(tfm) > sizeof(output)) {
933 pr_err("digestsize(%u) > outputbuffer(%zu)\n",
934 crypto_ahash_digestsize(tfm), sizeof(output));
935 goto out;
936 }
937
938 test_hash_sg_init(sg);
939 req = ahash_request_alloc(tfm, GFP_KERNEL);
940 if (!req) {
941 pr_err("ahash request allocation failure\n");
942 goto out;
943 }
944
945 init_completion(&tresult.completion);
946 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
947 tcrypt_complete, &tresult);
948
949 for (i = 0; speed[i].blen != 0; i++) {
950 if (speed[i].blen > TVMEMSIZE * PAGE_SIZE) {
951 pr_err("template (%u) too big for tvmem (%lu)\n",
952 speed[i].blen, TVMEMSIZE * PAGE_SIZE);
953 break;
954 }
955
956 pr_info("test%3u "
957 "(%5u byte blocks,%5u bytes per update,%4u updates): ",
958 i, speed[i].blen, speed[i].plen, speed[i].blen / speed[i].plen);
959
960 ahash_request_set_crypt(req, sg, output, speed[i].plen);
961
962 if (sec)
963 ret = test_ahash_jiffies(req, speed[i].blen,
964 speed[i].plen, output, sec);
965 else
966 ret = test_ahash_cycles(req, speed[i].blen,
967 speed[i].plen, output);
968
969 if (ret) {
970 pr_err("hashing failed ret=%d\n", ret);
971 break;
972 }
973 }
974
975 ahash_request_free(req);
976
977out:
978 crypto_free_ahash(tfm);
979}
980
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300981static inline int do_one_acipher_op(struct ablkcipher_request *req, int ret)
982{
983 if (ret == -EINPROGRESS || ret == -EBUSY) {
984 struct tcrypt_result *tr = req->base.data;
985
986 ret = wait_for_completion_interruptible(&tr->completion);
987 if (!ret)
988 ret = tr->err;
Wolfram Sang16735d02013-11-14 14:32:02 -0800989 reinit_completion(&tr->completion);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300990 }
991
992 return ret;
993}
994
995static int test_acipher_jiffies(struct ablkcipher_request *req, int enc,
996 int blen, int sec)
997{
998 unsigned long start, end;
999 int bcount;
1000 int ret;
1001
1002 for (start = jiffies, end = start + sec * HZ, bcount = 0;
1003 time_before(jiffies, end); bcount++) {
1004 if (enc)
1005 ret = do_one_acipher_op(req,
1006 crypto_ablkcipher_encrypt(req));
1007 else
1008 ret = do_one_acipher_op(req,
1009 crypto_ablkcipher_decrypt(req));
1010
1011 if (ret)
1012 return ret;
1013 }
1014
1015 pr_cont("%d operations in %d seconds (%ld bytes)\n",
1016 bcount, sec, (long)bcount * blen);
1017 return 0;
1018}
1019
1020static int test_acipher_cycles(struct ablkcipher_request *req, int enc,
1021 int blen)
1022{
1023 unsigned long cycles = 0;
1024 int ret = 0;
1025 int i;
1026
1027 /* Warm-up run. */
1028 for (i = 0; i < 4; i++) {
1029 if (enc)
1030 ret = do_one_acipher_op(req,
1031 crypto_ablkcipher_encrypt(req));
1032 else
1033 ret = do_one_acipher_op(req,
1034 crypto_ablkcipher_decrypt(req));
1035
1036 if (ret)
1037 goto out;
1038 }
1039
1040 /* The real thing. */
1041 for (i = 0; i < 8; i++) {
1042 cycles_t start, end;
1043
1044 start = get_cycles();
1045 if (enc)
1046 ret = do_one_acipher_op(req,
1047 crypto_ablkcipher_encrypt(req));
1048 else
1049 ret = do_one_acipher_op(req,
1050 crypto_ablkcipher_decrypt(req));
1051 end = get_cycles();
1052
1053 if (ret)
1054 goto out;
1055
1056 cycles += end - start;
1057 }
1058
1059out:
1060 if (ret == 0)
1061 pr_cont("1 operation in %lu cycles (%d bytes)\n",
1062 (cycles + 4) / 8, blen);
1063
1064 return ret;
1065}
1066
1067static void test_acipher_speed(const char *algo, int enc, unsigned int sec,
1068 struct cipher_speed_template *template,
1069 unsigned int tcount, u8 *keysize)
1070{
Nicolas Royerde1975332012-07-01 19:19:47 +02001071 unsigned int ret, i, j, k, iv_len;
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +03001072 struct tcrypt_result tresult;
1073 const char *key;
1074 char iv[128];
1075 struct ablkcipher_request *req;
1076 struct crypto_ablkcipher *tfm;
1077 const char *e;
1078 u32 *b_size;
1079
1080 if (enc == ENCRYPT)
1081 e = "encryption";
1082 else
1083 e = "decryption";
1084
1085 pr_info("\ntesting speed of async %s %s\n", algo, e);
1086
1087 init_completion(&tresult.completion);
1088
1089 tfm = crypto_alloc_ablkcipher(algo, 0, 0);
1090
1091 if (IS_ERR(tfm)) {
1092 pr_err("failed to load transform for %s: %ld\n", algo,
1093 PTR_ERR(tfm));
1094 return;
1095 }
1096
1097 req = ablkcipher_request_alloc(tfm, GFP_KERNEL);
1098 if (!req) {
1099 pr_err("tcrypt: skcipher: Failed to allocate request for %s\n",
1100 algo);
1101 goto out;
1102 }
1103
1104 ablkcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
1105 tcrypt_complete, &tresult);
1106
1107 i = 0;
1108 do {
1109 b_size = block_sizes;
1110
1111 do {
1112 struct scatterlist sg[TVMEMSIZE];
1113
1114 if ((*keysize + *b_size) > TVMEMSIZE * PAGE_SIZE) {
1115 pr_err("template (%u) too big for "
1116 "tvmem (%lu)\n", *keysize + *b_size,
1117 TVMEMSIZE * PAGE_SIZE);
1118 goto out_free_req;
1119 }
1120
1121 pr_info("test %u (%d bit key, %d byte blocks): ", i,
1122 *keysize * 8, *b_size);
1123
1124 memset(tvmem[0], 0xff, PAGE_SIZE);
1125
1126 /* set key, plain text and IV */
1127 key = tvmem[0];
1128 for (j = 0; j < tcount; j++) {
1129 if (template[j].klen == *keysize) {
1130 key = template[j].key;
1131 break;
1132 }
1133 }
1134
1135 crypto_ablkcipher_clear_flags(tfm, ~0);
1136
1137 ret = crypto_ablkcipher_setkey(tfm, key, *keysize);
1138 if (ret) {
1139 pr_err("setkey() failed flags=%x\n",
1140 crypto_ablkcipher_get_flags(tfm));
1141 goto out_free_req;
1142 }
1143
1144 sg_init_table(sg, TVMEMSIZE);
Nicolas Royerde1975332012-07-01 19:19:47 +02001145
1146 k = *keysize + *b_size;
1147 if (k > PAGE_SIZE) {
1148 sg_set_buf(sg, tvmem[0] + *keysize,
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +03001149 PAGE_SIZE - *keysize);
Nicolas Royerde1975332012-07-01 19:19:47 +02001150 k -= PAGE_SIZE;
1151 j = 1;
1152 while (k > PAGE_SIZE) {
1153 sg_set_buf(sg + j, tvmem[j], PAGE_SIZE);
1154 memset(tvmem[j], 0xff, PAGE_SIZE);
1155 j++;
1156 k -= PAGE_SIZE;
1157 }
1158 sg_set_buf(sg + j, tvmem[j], k);
1159 memset(tvmem[j], 0xff, k);
1160 } else {
1161 sg_set_buf(sg, tvmem[0] + *keysize, *b_size);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +03001162 }
1163
1164 iv_len = crypto_ablkcipher_ivsize(tfm);
1165 if (iv_len)
1166 memset(&iv, 0xff, iv_len);
1167
1168 ablkcipher_request_set_crypt(req, sg, sg, *b_size, iv);
1169
1170 if (sec)
1171 ret = test_acipher_jiffies(req, enc,
1172 *b_size, sec);
1173 else
1174 ret = test_acipher_cycles(req, enc,
1175 *b_size);
1176
1177 if (ret) {
1178 pr_err("%s() failed flags=%x\n", e,
1179 crypto_ablkcipher_get_flags(tfm));
1180 break;
1181 }
1182 b_size++;
1183 i++;
1184 } while (*b_size);
1185 keysize++;
1186 } while (*keysize);
1187
1188out_free_req:
1189 ablkcipher_request_free(req);
1190out:
1191 crypto_free_ablkcipher(tfm);
1192}
1193
Herbert Xuef2736f2005-06-22 13:26:03 -07001194static void test_available(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195{
1196 char **name = check;
Herbert Xuef2736f2005-06-22 13:26:03 -07001197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 while (*name) {
1199 printk("alg %s ", *name);
Herbert Xu6158efc2007-04-04 17:41:07 +10001200 printk(crypto_has_alg(*name, 0, 0) ?
Herbert Xue4d5b792006-08-26 18:12:40 +10001201 "found\n" : "not found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 name++;
Herbert Xuef2736f2005-06-22 13:26:03 -07001203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204}
1205
Herbert Xu01b32322008-07-31 15:41:55 +08001206static inline int tcrypt_test(const char *alg)
1207{
Jarod Wilson4e033a62009-05-27 15:10:21 +10001208 int ret;
1209
1210 ret = alg_test(alg, alg, 0, 0);
1211 /* non-fips algs return -EINVAL in fips mode */
1212 if (fips_enabled && ret == -EINVAL)
1213 ret = 0;
1214 return ret;
Herbert Xu01b32322008-07-31 15:41:55 +08001215}
1216
Jarod Wilson4e033a62009-05-27 15:10:21 +10001217static int do_test(int m)
Herbert Xu01b32322008-07-31 15:41:55 +08001218{
1219 int i;
Jarod Wilson4e033a62009-05-27 15:10:21 +10001220 int ret = 0;
Herbert Xu01b32322008-07-31 15:41:55 +08001221
1222 switch (m) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 case 0:
Herbert Xu01b32322008-07-31 15:41:55 +08001224 for (i = 1; i < 200; i++)
Jarod Wilson4e033a62009-05-27 15:10:21 +10001225 ret += do_test(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 break;
1227
1228 case 1:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001229 ret += tcrypt_test("md5");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 break;
1231
1232 case 2:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001233 ret += tcrypt_test("sha1");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 break;
1235
1236 case 3:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001237 ret += tcrypt_test("ecb(des)");
1238 ret += tcrypt_test("cbc(des)");
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03001239 ret += tcrypt_test("ctr(des)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 break;
1241
1242 case 4:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001243 ret += tcrypt_test("ecb(des3_ede)");
1244 ret += tcrypt_test("cbc(des3_ede)");
Jussi Kivilinnae080b172012-10-20 14:53:12 +03001245 ret += tcrypt_test("ctr(des3_ede)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 break;
1247
1248 case 5:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001249 ret += tcrypt_test("md4");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 break;
Herbert Xuef2736f2005-06-22 13:26:03 -07001251
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 case 6:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001253 ret += tcrypt_test("sha256");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 break;
Herbert Xuef2736f2005-06-22 13:26:03 -07001255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 case 7:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001257 ret += tcrypt_test("ecb(blowfish)");
1258 ret += tcrypt_test("cbc(blowfish)");
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03001259 ret += tcrypt_test("ctr(blowfish)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 break;
1261
1262 case 8:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001263 ret += tcrypt_test("ecb(twofish)");
1264 ret += tcrypt_test("cbc(twofish)");
Jussi Kivilinna573da622011-10-10 23:03:12 +03001265 ret += tcrypt_test("ctr(twofish)");
Jussi Kivilinnabee3a902011-10-18 13:32:56 +03001266 ret += tcrypt_test("lrw(twofish)");
Jussi Kivilinna131f7542011-10-18 13:33:38 +03001267 ret += tcrypt_test("xts(twofish)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 break;
Herbert Xuef2736f2005-06-22 13:26:03 -07001269
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 case 9:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001271 ret += tcrypt_test("ecb(serpent)");
Jussi Kivilinna9d259172011-10-18 00:02:53 +03001272 ret += tcrypt_test("cbc(serpent)");
1273 ret += tcrypt_test("ctr(serpent)");
Jussi Kivilinna87aae4b2011-10-18 13:32:39 +03001274 ret += tcrypt_test("lrw(serpent)");
Jussi Kivilinna5209c072011-10-18 13:33:22 +03001275 ret += tcrypt_test("xts(serpent)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 break;
1277
1278 case 10:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001279 ret += tcrypt_test("ecb(aes)");
1280 ret += tcrypt_test("cbc(aes)");
1281 ret += tcrypt_test("lrw(aes)");
1282 ret += tcrypt_test("xts(aes)");
1283 ret += tcrypt_test("ctr(aes)");
1284 ret += tcrypt_test("rfc3686(ctr(aes))");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 break;
1286
1287 case 11:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001288 ret += tcrypt_test("sha384");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 break;
Herbert Xuef2736f2005-06-22 13:26:03 -07001290
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 case 12:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001292 ret += tcrypt_test("sha512");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 break;
1294
1295 case 13:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001296 ret += tcrypt_test("deflate");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 break;
1298
1299 case 14:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001300 ret += tcrypt_test("ecb(cast5)");
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02001301 ret += tcrypt_test("cbc(cast5)");
1302 ret += tcrypt_test("ctr(cast5)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 break;
1304
1305 case 15:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001306 ret += tcrypt_test("ecb(cast6)");
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02001307 ret += tcrypt_test("cbc(cast6)");
1308 ret += tcrypt_test("ctr(cast6)");
1309 ret += tcrypt_test("lrw(cast6)");
1310 ret += tcrypt_test("xts(cast6)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 break;
1312
1313 case 16:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001314 ret += tcrypt_test("ecb(arc4)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 break;
1316
1317 case 17:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001318 ret += tcrypt_test("michael_mic");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 break;
1320
1321 case 18:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001322 ret += tcrypt_test("crc32c");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 break;
1324
1325 case 19:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001326 ret += tcrypt_test("ecb(tea)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 break;
1328
1329 case 20:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001330 ret += tcrypt_test("ecb(xtea)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 break;
1332
1333 case 21:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001334 ret += tcrypt_test("ecb(khazad)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 break;
1336
1337 case 22:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001338 ret += tcrypt_test("wp512");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 break;
1340
1341 case 23:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001342 ret += tcrypt_test("wp384");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 break;
1344
1345 case 24:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001346 ret += tcrypt_test("wp256");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 break;
1348
1349 case 25:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001350 ret += tcrypt_test("ecb(tnepres)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 break;
1352
1353 case 26:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001354 ret += tcrypt_test("ecb(anubis)");
1355 ret += tcrypt_test("cbc(anubis)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 break;
1357
1358 case 27:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001359 ret += tcrypt_test("tgr192");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 break;
1361
1362 case 28:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001363 ret += tcrypt_test("tgr160");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 break;
1365
1366 case 29:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001367 ret += tcrypt_test("tgr128");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 break;
Adrian-Ken Rueegsegger2998db32008-05-09 21:29:35 +08001369
Aaron Grothefb4f10e2005-09-01 17:42:46 -07001370 case 30:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001371 ret += tcrypt_test("ecb(xeta)");
Aaron Grothefb4f10e2005-09-01 17:42:46 -07001372 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
David Howells90831632006-12-16 12:13:14 +11001374 case 31:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001375 ret += tcrypt_test("pcbc(fcrypt)");
David Howells90831632006-12-16 12:13:14 +11001376 break;
1377
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001378 case 32:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001379 ret += tcrypt_test("ecb(camellia)");
1380 ret += tcrypt_test("cbc(camellia)");
Jussi Kivilinna54216bb2012-09-21 10:27:10 +03001381 ret += tcrypt_test("ctr(camellia)");
1382 ret += tcrypt_test("lrw(camellia)");
1383 ret += tcrypt_test("xts(camellia)");
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001384 break;
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03001385
Jonathan Lynchcd12fb902007-11-10 20:08:25 +08001386 case 33:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001387 ret += tcrypt_test("sha224");
Jonathan Lynchcd12fb902007-11-10 20:08:25 +08001388 break;
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001389
Tan Swee Heng2407d602007-11-23 19:45:00 +08001390 case 34:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001391 ret += tcrypt_test("salsa20");
Tan Swee Heng2407d602007-11-23 19:45:00 +08001392 break;
1393
Herbert Xu8df213d2007-12-02 14:55:47 +11001394 case 35:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001395 ret += tcrypt_test("gcm(aes)");
Herbert Xu8df213d2007-12-02 14:55:47 +11001396 break;
1397
Zoltan Sogor0b77abb2007-12-07 16:53:23 +08001398 case 36:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001399 ret += tcrypt_test("lzo");
Zoltan Sogor0b77abb2007-12-07 16:53:23 +08001400 break;
1401
Joy Latten93cc74e2007-12-12 20:24:22 +08001402 case 37:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001403 ret += tcrypt_test("ccm(aes)");
Joy Latten93cc74e2007-12-12 20:24:22 +08001404 break;
1405
Kevin Coffman76cb9522008-03-24 21:26:16 +08001406 case 38:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001407 ret += tcrypt_test("cts(cbc(aes))");
Kevin Coffman76cb9522008-03-24 21:26:16 +08001408 break;
1409
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001410 case 39:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001411 ret += tcrypt_test("rmd128");
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001412 break;
1413
1414 case 40:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001415 ret += tcrypt_test("rmd160");
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001416 break;
1417
Adrian-Ken Rueegsegger2998db32008-05-09 21:29:35 +08001418 case 41:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001419 ret += tcrypt_test("rmd256");
Adrian-Ken Rueegsegger2998db32008-05-09 21:29:35 +08001420 break;
1421
1422 case 42:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001423 ret += tcrypt_test("rmd320");
Herbert Xu01b32322008-07-31 15:41:55 +08001424 break;
1425
1426 case 43:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001427 ret += tcrypt_test("ecb(seed)");
Adrian-Ken Rueegsegger2998db32008-05-09 21:29:35 +08001428 break;
1429
Geert Uytterhoeven0c01aed2009-03-04 15:42:15 +08001430 case 44:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001431 ret += tcrypt_test("zlib");
Geert Uytterhoeven0c01aed2009-03-04 15:42:15 +08001432 break;
1433
Jarod Wilson5d667322009-05-04 19:23:40 +08001434 case 45:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001435 ret += tcrypt_test("rfc4309(ccm(aes))");
Jarod Wilson5d667322009-05-04 19:23:40 +08001436 break;
1437
Jussi Kivilinna54216bb2012-09-21 10:27:10 +03001438 case 46:
1439 ret += tcrypt_test("ghash");
1440 break;
1441
Herbert Xu684115212013-09-07 12:56:26 +10001442 case 47:
1443 ret += tcrypt_test("crct10dif");
1444 break;
1445
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 case 100:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001447 ret += tcrypt_test("hmac(md5)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 break;
Herbert Xuef2736f2005-06-22 13:26:03 -07001449
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 case 101:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001451 ret += tcrypt_test("hmac(sha1)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 break;
Herbert Xuef2736f2005-06-22 13:26:03 -07001453
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 case 102:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001455 ret += tcrypt_test("hmac(sha256)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 break;
1457
Andrew Donofrioa28091a2006-12-10 12:10:20 +11001458 case 103:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001459 ret += tcrypt_test("hmac(sha384)");
Andrew Donofrioa28091a2006-12-10 12:10:20 +11001460 break;
1461
1462 case 104:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001463 ret += tcrypt_test("hmac(sha512)");
Andrew Donofrioa28091a2006-12-10 12:10:20 +11001464 break;
Herbert Xu38ed9ab2008-01-01 15:59:28 +11001465
Jonathan Lynchcd12fb902007-11-10 20:08:25 +08001466 case 105:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001467 ret += tcrypt_test("hmac(sha224)");
Jonathan Lynchcd12fb902007-11-10 20:08:25 +08001468 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
Herbert Xu38ed9ab2008-01-01 15:59:28 +11001470 case 106:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001471 ret += tcrypt_test("xcbc(aes)");
Herbert Xu38ed9ab2008-01-01 15:59:28 +11001472 break;
1473
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001474 case 107:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001475 ret += tcrypt_test("hmac(rmd128)");
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001476 break;
1477
1478 case 108:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001479 ret += tcrypt_test("hmac(rmd160)");
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001480 break;
1481
Shane Wangf1939f72009-09-02 20:05:22 +10001482 case 109:
1483 ret += tcrypt_test("vmac(aes)");
1484 break;
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03001485
Sonic Zhanga482b082012-05-25 17:54:13 +08001486 case 110:
1487 ret += tcrypt_test("hmac(crc32)");
1488 break;
Shane Wangf1939f72009-09-02 20:05:22 +10001489
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08001490 case 150:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001491 ret += tcrypt_test("ansi_cprng");
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08001492 break;
1493
Adrian Hoban69435b92010-11-04 15:02:04 -04001494 case 151:
1495 ret += tcrypt_test("rfc4106(gcm(aes))");
1496 break;
1497
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03001498 case 152:
1499 ret += tcrypt_test("rfc4543(gcm(aes))");
1500 break;
1501
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03001502 case 153:
1503 ret += tcrypt_test("cmac(aes)");
1504 break;
1505
1506 case 154:
1507 ret += tcrypt_test("cmac(des3_ede)");
1508 break;
1509
Horia Geantabbf9c892013-11-28 15:11:16 +02001510 case 155:
1511 ret += tcrypt_test("authenc(hmac(sha1),cbc(aes))");
1512 break;
1513
Harald Welteebfd9bc2005-06-22 13:27:23 -07001514 case 200:
Herbert Xucba83562006-08-13 08:26:09 +10001515 test_cipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001516 speed_template_16_24_32);
Herbert Xucba83562006-08-13 08:26:09 +10001517 test_cipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001518 speed_template_16_24_32);
Herbert Xucba83562006-08-13 08:26:09 +10001519 test_cipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001520 speed_template_16_24_32);
Herbert Xucba83562006-08-13 08:26:09 +10001521 test_cipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001522 speed_template_16_24_32);
Rik Snelf3d10442006-11-29 19:01:41 +11001523 test_cipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001524 speed_template_32_40_48);
Rik Snelf3d10442006-11-29 19:01:41 +11001525 test_cipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001526 speed_template_32_40_48);
Rik Snelf19f5112007-09-19 20:23:13 +08001527 test_cipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001528 speed_template_32_48_64);
Rik Snelf19f5112007-09-19 20:23:13 +08001529 test_cipher_speed("xts(aes)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001530 speed_template_32_48_64);
Jan Glauber9996e342011-04-26 16:34:01 +10001531 test_cipher_speed("ctr(aes)", ENCRYPT, sec, NULL, 0,
1532 speed_template_16_24_32);
1533 test_cipher_speed("ctr(aes)", DECRYPT, sec, NULL, 0,
1534 speed_template_16_24_32);
Harald Welteebfd9bc2005-06-22 13:27:23 -07001535 break;
1536
1537 case 201:
Herbert Xucba83562006-08-13 08:26:09 +10001538 test_cipher_speed("ecb(des3_ede)", ENCRYPT, sec,
Herbert Xuda7f0332008-07-31 17:08:25 +08001539 des3_speed_template, DES3_SPEED_VECTORS,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001540 speed_template_24);
Herbert Xucba83562006-08-13 08:26:09 +10001541 test_cipher_speed("ecb(des3_ede)", DECRYPT, sec,
Herbert Xuda7f0332008-07-31 17:08:25 +08001542 des3_speed_template, DES3_SPEED_VECTORS,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001543 speed_template_24);
Herbert Xucba83562006-08-13 08:26:09 +10001544 test_cipher_speed("cbc(des3_ede)", ENCRYPT, sec,
Herbert Xuda7f0332008-07-31 17:08:25 +08001545 des3_speed_template, DES3_SPEED_VECTORS,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001546 speed_template_24);
Herbert Xucba83562006-08-13 08:26:09 +10001547 test_cipher_speed("cbc(des3_ede)", DECRYPT, sec,
Herbert Xuda7f0332008-07-31 17:08:25 +08001548 des3_speed_template, DES3_SPEED_VECTORS,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001549 speed_template_24);
Harald Welteebfd9bc2005-06-22 13:27:23 -07001550 break;
1551
1552 case 202:
Herbert Xucba83562006-08-13 08:26:09 +10001553 test_cipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001554 speed_template_16_24_32);
Herbert Xucba83562006-08-13 08:26:09 +10001555 test_cipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001556 speed_template_16_24_32);
Herbert Xucba83562006-08-13 08:26:09 +10001557 test_cipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001558 speed_template_16_24_32);
Herbert Xucba83562006-08-13 08:26:09 +10001559 test_cipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001560 speed_template_16_24_32);
Jussi Kivilinnaee5002a2011-09-26 16:47:15 +03001561 test_cipher_speed("ctr(twofish)", ENCRYPT, sec, NULL, 0,
1562 speed_template_16_24_32);
1563 test_cipher_speed("ctr(twofish)", DECRYPT, sec, NULL, 0,
1564 speed_template_16_24_32);
Jussi Kivilinnabee3a902011-10-18 13:32:56 +03001565 test_cipher_speed("lrw(twofish)", ENCRYPT, sec, NULL, 0,
1566 speed_template_32_40_48);
1567 test_cipher_speed("lrw(twofish)", DECRYPT, sec, NULL, 0,
1568 speed_template_32_40_48);
Jussi Kivilinna131f7542011-10-18 13:33:38 +03001569 test_cipher_speed("xts(twofish)", ENCRYPT, sec, NULL, 0,
1570 speed_template_32_48_64);
1571 test_cipher_speed("xts(twofish)", DECRYPT, sec, NULL, 0,
1572 speed_template_32_48_64);
Harald Welteebfd9bc2005-06-22 13:27:23 -07001573 break;
1574
1575 case 203:
Herbert Xucba83562006-08-13 08:26:09 +10001576 test_cipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001577 speed_template_8_32);
Herbert Xucba83562006-08-13 08:26:09 +10001578 test_cipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001579 speed_template_8_32);
Herbert Xucba83562006-08-13 08:26:09 +10001580 test_cipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001581 speed_template_8_32);
Herbert Xucba83562006-08-13 08:26:09 +10001582 test_cipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001583 speed_template_8_32);
Jussi Kivilinna7d47b862011-09-02 01:45:17 +03001584 test_cipher_speed("ctr(blowfish)", ENCRYPT, sec, NULL, 0,
1585 speed_template_8_32);
1586 test_cipher_speed("ctr(blowfish)", DECRYPT, sec, NULL, 0,
1587 speed_template_8_32);
Harald Welteebfd9bc2005-06-22 13:27:23 -07001588 break;
1589
1590 case 204:
Herbert Xucba83562006-08-13 08:26:09 +10001591 test_cipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001592 speed_template_8);
Herbert Xucba83562006-08-13 08:26:09 +10001593 test_cipher_speed("ecb(des)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001594 speed_template_8);
Herbert Xucba83562006-08-13 08:26:09 +10001595 test_cipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001596 speed_template_8);
Herbert Xucba83562006-08-13 08:26:09 +10001597 test_cipher_speed("cbc(des)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001598 speed_template_8);
Harald Welteebfd9bc2005-06-22 13:27:23 -07001599 break;
1600
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001601 case 205:
1602 test_cipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001603 speed_template_16_24_32);
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001604 test_cipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001605 speed_template_16_24_32);
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001606 test_cipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001607 speed_template_16_24_32);
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001608 test_cipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001609 speed_template_16_24_32);
Jussi Kivilinna4de59332012-03-05 20:26:26 +02001610 test_cipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0,
1611 speed_template_16_24_32);
1612 test_cipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0,
1613 speed_template_16_24_32);
1614 test_cipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0,
1615 speed_template_32_40_48);
1616 test_cipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0,
1617 speed_template_32_40_48);
1618 test_cipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0,
1619 speed_template_32_48_64);
1620 test_cipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0,
1621 speed_template_32_48_64);
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001622 break;
1623
Tan Swee Heng5de8f1b2007-12-07 17:17:43 +08001624 case 206:
1625 test_cipher_speed("salsa20", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001626 speed_template_16_32);
Tan Swee Heng5de8f1b2007-12-07 17:17:43 +08001627 break;
1628
Jussi Kivilinna7fb7fe42011-10-18 00:03:03 +03001629 case 207:
1630 test_cipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0,
1631 speed_template_16_32);
1632 test_cipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0,
1633 speed_template_16_32);
1634 test_cipher_speed("cbc(serpent)", ENCRYPT, sec, NULL, 0,
1635 speed_template_16_32);
1636 test_cipher_speed("cbc(serpent)", DECRYPT, sec, NULL, 0,
1637 speed_template_16_32);
1638 test_cipher_speed("ctr(serpent)", ENCRYPT, sec, NULL, 0,
1639 speed_template_16_32);
1640 test_cipher_speed("ctr(serpent)", DECRYPT, sec, NULL, 0,
1641 speed_template_16_32);
Jussi Kivilinna87aae4b2011-10-18 13:32:39 +03001642 test_cipher_speed("lrw(serpent)", ENCRYPT, sec, NULL, 0,
1643 speed_template_32_48);
1644 test_cipher_speed("lrw(serpent)", DECRYPT, sec, NULL, 0,
1645 speed_template_32_48);
Jussi Kivilinna5209c072011-10-18 13:33:22 +03001646 test_cipher_speed("xts(serpent)", ENCRYPT, sec, NULL, 0,
1647 speed_template_32_64);
1648 test_cipher_speed("xts(serpent)", DECRYPT, sec, NULL, 0,
1649 speed_template_32_64);
Jussi Kivilinna7fb7fe42011-10-18 00:03:03 +03001650 break;
1651
Jussi Kivilinna31b4cd292012-06-12 16:52:04 +08001652 case 208:
1653 test_cipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0,
1654 speed_template_8);
1655 break;
1656
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02001657 case 209:
1658 test_cipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0,
1659 speed_template_8_16);
1660 test_cipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0,
1661 speed_template_8_16);
1662 test_cipher_speed("cbc(cast5)", ENCRYPT, sec, NULL, 0,
1663 speed_template_8_16);
1664 test_cipher_speed("cbc(cast5)", DECRYPT, sec, NULL, 0,
1665 speed_template_8_16);
1666 test_cipher_speed("ctr(cast5)", ENCRYPT, sec, NULL, 0,
1667 speed_template_8_16);
1668 test_cipher_speed("ctr(cast5)", DECRYPT, sec, NULL, 0,
1669 speed_template_8_16);
1670 break;
1671
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02001672 case 210:
1673 test_cipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0,
1674 speed_template_16_32);
1675 test_cipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0,
1676 speed_template_16_32);
1677 test_cipher_speed("cbc(cast6)", ENCRYPT, sec, NULL, 0,
1678 speed_template_16_32);
1679 test_cipher_speed("cbc(cast6)", DECRYPT, sec, NULL, 0,
1680 speed_template_16_32);
1681 test_cipher_speed("ctr(cast6)", ENCRYPT, sec, NULL, 0,
1682 speed_template_16_32);
1683 test_cipher_speed("ctr(cast6)", DECRYPT, sec, NULL, 0,
1684 speed_template_16_32);
1685 test_cipher_speed("lrw(cast6)", ENCRYPT, sec, NULL, 0,
1686 speed_template_32_48);
1687 test_cipher_speed("lrw(cast6)", DECRYPT, sec, NULL, 0,
1688 speed_template_32_48);
1689 test_cipher_speed("xts(cast6)", ENCRYPT, sec, NULL, 0,
1690 speed_template_32_64);
1691 test_cipher_speed("xts(cast6)", DECRYPT, sec, NULL, 0,
1692 speed_template_32_64);
1693 break;
1694
Tim Chen53f52d72013-12-11 14:28:47 -08001695 case 211:
1696 test_aead_speed("rfc4106(gcm(aes))", ENCRYPT, sec,
1697 NULL, 0, 16, 8, aead_speed_template_20);
1698 break;
1699
Michal Ludvige8057922006-05-30 22:04:19 +10001700 case 300:
1701 /* fall through */
1702
1703 case 301:
Herbert Xue9d41162006-08-19 21:38:49 +10001704 test_hash_speed("md4", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001705 if (mode > 300 && mode < 400) break;
1706
1707 case 302:
Herbert Xue9d41162006-08-19 21:38:49 +10001708 test_hash_speed("md5", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001709 if (mode > 300 && mode < 400) break;
1710
1711 case 303:
Herbert Xue9d41162006-08-19 21:38:49 +10001712 test_hash_speed("sha1", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001713 if (mode > 300 && mode < 400) break;
1714
1715 case 304:
Herbert Xue9d41162006-08-19 21:38:49 +10001716 test_hash_speed("sha256", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001717 if (mode > 300 && mode < 400) break;
1718
1719 case 305:
Herbert Xue9d41162006-08-19 21:38:49 +10001720 test_hash_speed("sha384", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001721 if (mode > 300 && mode < 400) break;
1722
1723 case 306:
Herbert Xue9d41162006-08-19 21:38:49 +10001724 test_hash_speed("sha512", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001725 if (mode > 300 && mode < 400) break;
1726
1727 case 307:
Herbert Xue9d41162006-08-19 21:38:49 +10001728 test_hash_speed("wp256", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001729 if (mode > 300 && mode < 400) break;
1730
1731 case 308:
Herbert Xue9d41162006-08-19 21:38:49 +10001732 test_hash_speed("wp384", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001733 if (mode > 300 && mode < 400) break;
1734
1735 case 309:
Herbert Xue9d41162006-08-19 21:38:49 +10001736 test_hash_speed("wp512", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001737 if (mode > 300 && mode < 400) break;
1738
1739 case 310:
Herbert Xue9d41162006-08-19 21:38:49 +10001740 test_hash_speed("tgr128", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001741 if (mode > 300 && mode < 400) break;
1742
1743 case 311:
Herbert Xue9d41162006-08-19 21:38:49 +10001744 test_hash_speed("tgr160", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001745 if (mode > 300 && mode < 400) break;
1746
1747 case 312:
Herbert Xue9d41162006-08-19 21:38:49 +10001748 test_hash_speed("tgr192", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001749 if (mode > 300 && mode < 400) break;
1750
Jonathan Lynchcd12fb902007-11-10 20:08:25 +08001751 case 313:
1752 test_hash_speed("sha224", sec, generic_hash_speed_template);
1753 if (mode > 300 && mode < 400) break;
1754
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001755 case 314:
1756 test_hash_speed("rmd128", sec, generic_hash_speed_template);
1757 if (mode > 300 && mode < 400) break;
1758
1759 case 315:
1760 test_hash_speed("rmd160", sec, generic_hash_speed_template);
1761 if (mode > 300 && mode < 400) break;
1762
Adrian-Ken Rueegsegger2998db32008-05-09 21:29:35 +08001763 case 316:
1764 test_hash_speed("rmd256", sec, generic_hash_speed_template);
1765 if (mode > 300 && mode < 400) break;
1766
1767 case 317:
1768 test_hash_speed("rmd320", sec, generic_hash_speed_template);
1769 if (mode > 300 && mode < 400) break;
1770
Huang Ying18bcc912010-03-10 18:30:32 +08001771 case 318:
1772 test_hash_speed("ghash-generic", sec, hash_speed_template_16);
1773 if (mode > 300 && mode < 400) break;
1774
Tim Chene3899e42012-09-27 15:44:24 -07001775 case 319:
1776 test_hash_speed("crc32c", sec, generic_hash_speed_template);
1777 if (mode > 300 && mode < 400) break;
1778
Herbert Xu684115212013-09-07 12:56:26 +10001779 case 320:
1780 test_hash_speed("crct10dif", sec, generic_hash_speed_template);
1781 if (mode > 300 && mode < 400) break;
1782
Michal Ludvige8057922006-05-30 22:04:19 +10001783 case 399:
1784 break;
1785
David S. Millerbeb63da72010-05-19 14:11:21 +10001786 case 400:
1787 /* fall through */
1788
1789 case 401:
1790 test_ahash_speed("md4", sec, generic_hash_speed_template);
1791 if (mode > 400 && mode < 500) break;
1792
1793 case 402:
1794 test_ahash_speed("md5", sec, generic_hash_speed_template);
1795 if (mode > 400 && mode < 500) break;
1796
1797 case 403:
1798 test_ahash_speed("sha1", sec, generic_hash_speed_template);
1799 if (mode > 400 && mode < 500) break;
1800
1801 case 404:
1802 test_ahash_speed("sha256", sec, generic_hash_speed_template);
1803 if (mode > 400 && mode < 500) break;
1804
1805 case 405:
1806 test_ahash_speed("sha384", sec, generic_hash_speed_template);
1807 if (mode > 400 && mode < 500) break;
1808
1809 case 406:
1810 test_ahash_speed("sha512", sec, generic_hash_speed_template);
1811 if (mode > 400 && mode < 500) break;
1812
1813 case 407:
1814 test_ahash_speed("wp256", sec, generic_hash_speed_template);
1815 if (mode > 400 && mode < 500) break;
1816
1817 case 408:
1818 test_ahash_speed("wp384", sec, generic_hash_speed_template);
1819 if (mode > 400 && mode < 500) break;
1820
1821 case 409:
1822 test_ahash_speed("wp512", sec, generic_hash_speed_template);
1823 if (mode > 400 && mode < 500) break;
1824
1825 case 410:
1826 test_ahash_speed("tgr128", sec, generic_hash_speed_template);
1827 if (mode > 400 && mode < 500) break;
1828
1829 case 411:
1830 test_ahash_speed("tgr160", sec, generic_hash_speed_template);
1831 if (mode > 400 && mode < 500) break;
1832
1833 case 412:
1834 test_ahash_speed("tgr192", sec, generic_hash_speed_template);
1835 if (mode > 400 && mode < 500) break;
1836
1837 case 413:
1838 test_ahash_speed("sha224", sec, generic_hash_speed_template);
1839 if (mode > 400 && mode < 500) break;
1840
1841 case 414:
1842 test_ahash_speed("rmd128", sec, generic_hash_speed_template);
1843 if (mode > 400 && mode < 500) break;
1844
1845 case 415:
1846 test_ahash_speed("rmd160", sec, generic_hash_speed_template);
1847 if (mode > 400 && mode < 500) break;
1848
1849 case 416:
1850 test_ahash_speed("rmd256", sec, generic_hash_speed_template);
1851 if (mode > 400 && mode < 500) break;
1852
1853 case 417:
1854 test_ahash_speed("rmd320", sec, generic_hash_speed_template);
1855 if (mode > 400 && mode < 500) break;
1856
1857 case 499:
1858 break;
1859
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +03001860 case 500:
1861 test_acipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
1862 speed_template_16_24_32);
1863 test_acipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0,
1864 speed_template_16_24_32);
1865 test_acipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0,
1866 speed_template_16_24_32);
1867 test_acipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0,
1868 speed_template_16_24_32);
1869 test_acipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0,
1870 speed_template_32_40_48);
1871 test_acipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0,
1872 speed_template_32_40_48);
1873 test_acipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0,
1874 speed_template_32_48_64);
1875 test_acipher_speed("xts(aes)", DECRYPT, sec, NULL, 0,
1876 speed_template_32_48_64);
1877 test_acipher_speed("ctr(aes)", ENCRYPT, sec, NULL, 0,
1878 speed_template_16_24_32);
1879 test_acipher_speed("ctr(aes)", DECRYPT, sec, NULL, 0,
1880 speed_template_16_24_32);
Nicolas Royerde1975332012-07-01 19:19:47 +02001881 test_acipher_speed("cfb(aes)", ENCRYPT, sec, NULL, 0,
1882 speed_template_16_24_32);
1883 test_acipher_speed("cfb(aes)", DECRYPT, sec, NULL, 0,
1884 speed_template_16_24_32);
1885 test_acipher_speed("ofb(aes)", ENCRYPT, sec, NULL, 0,
1886 speed_template_16_24_32);
1887 test_acipher_speed("ofb(aes)", DECRYPT, sec, NULL, 0,
1888 speed_template_16_24_32);
Jussi Kivilinna69d31502012-12-28 12:04:58 +02001889 test_acipher_speed("rfc3686(ctr(aes))", ENCRYPT, sec, NULL, 0,
1890 speed_template_20_28_36);
1891 test_acipher_speed("rfc3686(ctr(aes))", DECRYPT, sec, NULL, 0,
1892 speed_template_20_28_36);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +03001893 break;
1894
1895 case 501:
1896 test_acipher_speed("ecb(des3_ede)", ENCRYPT, sec,
1897 des3_speed_template, DES3_SPEED_VECTORS,
1898 speed_template_24);
1899 test_acipher_speed("ecb(des3_ede)", DECRYPT, sec,
1900 des3_speed_template, DES3_SPEED_VECTORS,
1901 speed_template_24);
1902 test_acipher_speed("cbc(des3_ede)", ENCRYPT, sec,
1903 des3_speed_template, DES3_SPEED_VECTORS,
1904 speed_template_24);
1905 test_acipher_speed("cbc(des3_ede)", DECRYPT, sec,
1906 des3_speed_template, DES3_SPEED_VECTORS,
1907 speed_template_24);
Nicolas Royerde1975332012-07-01 19:19:47 +02001908 test_acipher_speed("cfb(des3_ede)", ENCRYPT, sec,
1909 des3_speed_template, DES3_SPEED_VECTORS,
1910 speed_template_24);
1911 test_acipher_speed("cfb(des3_ede)", DECRYPT, sec,
1912 des3_speed_template, DES3_SPEED_VECTORS,
1913 speed_template_24);
1914 test_acipher_speed("ofb(des3_ede)", ENCRYPT, sec,
1915 des3_speed_template, DES3_SPEED_VECTORS,
1916 speed_template_24);
1917 test_acipher_speed("ofb(des3_ede)", DECRYPT, sec,
1918 des3_speed_template, DES3_SPEED_VECTORS,
1919 speed_template_24);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +03001920 break;
1921
1922 case 502:
1923 test_acipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0,
1924 speed_template_8);
1925 test_acipher_speed("ecb(des)", DECRYPT, sec, NULL, 0,
1926 speed_template_8);
1927 test_acipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0,
1928 speed_template_8);
1929 test_acipher_speed("cbc(des)", DECRYPT, sec, NULL, 0,
1930 speed_template_8);
Nicolas Royerde1975332012-07-01 19:19:47 +02001931 test_acipher_speed("cfb(des)", ENCRYPT, sec, NULL, 0,
1932 speed_template_8);
1933 test_acipher_speed("cfb(des)", DECRYPT, sec, NULL, 0,
1934 speed_template_8);
1935 test_acipher_speed("ofb(des)", ENCRYPT, sec, NULL, 0,
1936 speed_template_8);
1937 test_acipher_speed("ofb(des)", DECRYPT, sec, NULL, 0,
1938 speed_template_8);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +03001939 break;
1940
Jussi Kivilinna7fb7fe42011-10-18 00:03:03 +03001941 case 503:
1942 test_acipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0,
1943 speed_template_16_32);
1944 test_acipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0,
1945 speed_template_16_32);
1946 test_acipher_speed("cbc(serpent)", ENCRYPT, sec, NULL, 0,
1947 speed_template_16_32);
1948 test_acipher_speed("cbc(serpent)", DECRYPT, sec, NULL, 0,
1949 speed_template_16_32);
1950 test_acipher_speed("ctr(serpent)", ENCRYPT, sec, NULL, 0,
1951 speed_template_16_32);
1952 test_acipher_speed("ctr(serpent)", DECRYPT, sec, NULL, 0,
1953 speed_template_16_32);
Jussi Kivilinna87aae4b2011-10-18 13:32:39 +03001954 test_acipher_speed("lrw(serpent)", ENCRYPT, sec, NULL, 0,
1955 speed_template_32_48);
1956 test_acipher_speed("lrw(serpent)", DECRYPT, sec, NULL, 0,
1957 speed_template_32_48);
Jussi Kivilinna5209c072011-10-18 13:33:22 +03001958 test_acipher_speed("xts(serpent)", ENCRYPT, sec, NULL, 0,
1959 speed_template_32_64);
1960 test_acipher_speed("xts(serpent)", DECRYPT, sec, NULL, 0,
1961 speed_template_32_64);
Jussi Kivilinna7fb7fe42011-10-18 00:03:03 +03001962 break;
1963
Johannes Goetzfried107778b52012-05-28 15:54:24 +02001964 case 504:
1965 test_acipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0,
1966 speed_template_16_24_32);
1967 test_acipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0,
1968 speed_template_16_24_32);
1969 test_acipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0,
1970 speed_template_16_24_32);
1971 test_acipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0,
1972 speed_template_16_24_32);
1973 test_acipher_speed("ctr(twofish)", ENCRYPT, sec, NULL, 0,
1974 speed_template_16_24_32);
1975 test_acipher_speed("ctr(twofish)", DECRYPT, sec, NULL, 0,
1976 speed_template_16_24_32);
1977 test_acipher_speed("lrw(twofish)", ENCRYPT, sec, NULL, 0,
1978 speed_template_32_40_48);
1979 test_acipher_speed("lrw(twofish)", DECRYPT, sec, NULL, 0,
1980 speed_template_32_40_48);
1981 test_acipher_speed("xts(twofish)", ENCRYPT, sec, NULL, 0,
1982 speed_template_32_48_64);
1983 test_acipher_speed("xts(twofish)", DECRYPT, sec, NULL, 0,
1984 speed_template_32_48_64);
1985 break;
1986
Jussi Kivilinna31b4cd292012-06-12 16:52:04 +08001987 case 505:
1988 test_acipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0,
1989 speed_template_8);
1990 break;
1991
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02001992 case 506:
1993 test_acipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0,
1994 speed_template_8_16);
1995 test_acipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0,
1996 speed_template_8_16);
1997 test_acipher_speed("cbc(cast5)", ENCRYPT, sec, NULL, 0,
1998 speed_template_8_16);
1999 test_acipher_speed("cbc(cast5)", DECRYPT, sec, NULL, 0,
2000 speed_template_8_16);
2001 test_acipher_speed("ctr(cast5)", ENCRYPT, sec, NULL, 0,
2002 speed_template_8_16);
2003 test_acipher_speed("ctr(cast5)", DECRYPT, sec, NULL, 0,
2004 speed_template_8_16);
2005 break;
2006
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002007 case 507:
2008 test_acipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0,
2009 speed_template_16_32);
2010 test_acipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0,
2011 speed_template_16_32);
2012 test_acipher_speed("cbc(cast6)", ENCRYPT, sec, NULL, 0,
2013 speed_template_16_32);
2014 test_acipher_speed("cbc(cast6)", DECRYPT, sec, NULL, 0,
2015 speed_template_16_32);
2016 test_acipher_speed("ctr(cast6)", ENCRYPT, sec, NULL, 0,
2017 speed_template_16_32);
2018 test_acipher_speed("ctr(cast6)", DECRYPT, sec, NULL, 0,
2019 speed_template_16_32);
2020 test_acipher_speed("lrw(cast6)", ENCRYPT, sec, NULL, 0,
2021 speed_template_32_48);
2022 test_acipher_speed("lrw(cast6)", DECRYPT, sec, NULL, 0,
2023 speed_template_32_48);
2024 test_acipher_speed("xts(cast6)", ENCRYPT, sec, NULL, 0,
2025 speed_template_32_64);
2026 test_acipher_speed("xts(cast6)", DECRYPT, sec, NULL, 0,
2027 speed_template_32_64);
2028 break;
2029
Jussi Kivilinnabf9c5182012-10-26 14:48:51 +03002030 case 508:
2031 test_acipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0,
2032 speed_template_16_32);
2033 test_acipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0,
2034 speed_template_16_32);
2035 test_acipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0,
2036 speed_template_16_32);
2037 test_acipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
2038 speed_template_16_32);
2039 test_acipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0,
2040 speed_template_16_32);
2041 test_acipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0,
2042 speed_template_16_32);
2043 test_acipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0,
2044 speed_template_32_48);
2045 test_acipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0,
2046 speed_template_32_48);
2047 test_acipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0,
2048 speed_template_32_64);
2049 test_acipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0,
2050 speed_template_32_64);
2051 break;
2052
Jussi Kivilinnaad8b7c32013-04-13 13:46:40 +03002053 case 509:
2054 test_acipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0,
2055 speed_template_8_32);
2056 test_acipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0,
2057 speed_template_8_32);
2058 test_acipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0,
2059 speed_template_8_32);
2060 test_acipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0,
2061 speed_template_8_32);
2062 test_acipher_speed("ctr(blowfish)", ENCRYPT, sec, NULL, 0,
2063 speed_template_8_32);
2064 test_acipher_speed("ctr(blowfish)", DECRYPT, sec, NULL, 0,
2065 speed_template_8_32);
2066 break;
2067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 case 1000:
2069 test_available();
2070 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 }
Jarod Wilson4e033a62009-05-27 15:10:21 +10002072
2073 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074}
2075
Herbert Xu7be380f2009-07-14 16:06:54 +08002076static int do_alg_test(const char *alg, u32 type, u32 mask)
Steffen Klasserta873a5f2009-06-19 19:46:53 +08002077{
Herbert Xu7be380f2009-07-14 16:06:54 +08002078 return crypto_has_alg(alg, type, mask ?: CRYPTO_ALG_TYPE_MASK) ?
2079 0 : -ENOENT;
Steffen Klasserta873a5f2009-06-19 19:46:53 +08002080}
2081
Kamalesh Babulal3af5b902008-04-05 21:00:57 +08002082static int __init tcrypt_mod_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083{
Mikko Herranene3a4ea42007-11-26 22:12:07 +08002084 int err = -ENOMEM;
Herbert Xuf139cfa2008-07-31 12:23:53 +08002085 int i;
Mikko Herranene3a4ea42007-11-26 22:12:07 +08002086
Herbert Xuf139cfa2008-07-31 12:23:53 +08002087 for (i = 0; i < TVMEMSIZE; i++) {
2088 tvmem[i] = (void *)__get_free_page(GFP_KERNEL);
2089 if (!tvmem[i])
2090 goto err_free_tv;
2091 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
Steffen Klasserta873a5f2009-06-19 19:46:53 +08002093 if (alg)
Herbert Xu7be380f2009-07-14 16:06:54 +08002094 err = do_alg_test(alg, type, mask);
Steffen Klasserta873a5f2009-06-19 19:46:53 +08002095 else
2096 err = do_test(mode);
2097
Jarod Wilson4e033a62009-05-27 15:10:21 +10002098 if (err) {
2099 printk(KERN_ERR "tcrypt: one or more tests failed!\n");
2100 goto err_free_tv;
2101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
Jarod Wilson4e033a62009-05-27 15:10:21 +10002103 /* We intentionaly return -EAGAIN to prevent keeping the module,
2104 * unless we're running in fips mode. It does all its work from
2105 * init() and doesn't offer any runtime functionality, but in
2106 * the fips case, checking for a successful load is helpful.
Michal Ludvig14fdf472006-05-30 14:49:38 +10002107 * => we don't need it in the memory, do we?
2108 * -- mludvig
2109 */
Jarod Wilson4e033a62009-05-27 15:10:21 +10002110 if (!fips_enabled)
2111 err = -EAGAIN;
Mikko Herranene3a4ea42007-11-26 22:12:07 +08002112
Herbert Xuf139cfa2008-07-31 12:23:53 +08002113err_free_tv:
2114 for (i = 0; i < TVMEMSIZE && tvmem[i]; i++)
2115 free_page((unsigned long)tvmem[i]);
Mikko Herranene3a4ea42007-11-26 22:12:07 +08002116
2117 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118}
2119
2120/*
2121 * If an init function is provided, an exit function must also be provided
2122 * to allow module unload.
2123 */
Kamalesh Babulal3af5b902008-04-05 21:00:57 +08002124static void __exit tcrypt_mod_fini(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
Kamalesh Babulal3af5b902008-04-05 21:00:57 +08002126module_init(tcrypt_mod_init);
2127module_exit(tcrypt_mod_fini);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
Steffen Klasserta873a5f2009-06-19 19:46:53 +08002129module_param(alg, charp, 0);
2130module_param(type, uint, 0);
Herbert Xu7be380f2009-07-14 16:06:54 +08002131module_param(mask, uint, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132module_param(mode, int, 0);
Harald Welteebfd9bc2005-06-22 13:27:23 -07002133module_param(sec, uint, 0);
Herbert Xu6a179442005-06-22 13:29:03 -07002134MODULE_PARM_DESC(sec, "Length in seconds of speed tests "
2135 "(defaults to zero which uses CPU cycles instead)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
2137MODULE_LICENSE("GPL");
2138MODULE_DESCRIPTION("Quick & dirty crypto testing module");
2139MODULE_AUTHOR("James Morris <jmorris@intercode.com.au>");