blob: 164ec0e16756032801b32022f013aaadc06b94fb [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
Christian Engelmayerac5f8632014-04-21 20:45:59 +0200285 if (aad_size >= PAGE_SIZE) {
286 pr_err("associate data length (%u) too big\n", aad_size);
287 return;
288 }
289
Tim Chen53f52d72013-12-11 14:28:47 -0800290 if (enc == ENCRYPT)
291 e = "encryption";
292 else
293 e = "decryption";
294
295 if (testmgr_alloc_buf(xbuf))
296 goto out_noxbuf;
297 if (testmgr_alloc_buf(axbuf))
298 goto out_noaxbuf;
299 if (testmgr_alloc_buf(xoutbuf))
300 goto out_nooutbuf;
301
302 sg = kmalloc(sizeof(*sg) * 8 * 3, GFP_KERNEL);
303 if (!sg)
304 goto out_nosg;
305 asg = &sg[8];
306 sgout = &asg[8];
307
308
309 printk(KERN_INFO "\ntesting speed of %s %s\n", algo, e);
310
311 tfm = crypto_alloc_aead(algo, 0, 0);
312
313 if (IS_ERR(tfm)) {
314 pr_err("alg: aead: Failed to load transform for %s: %ld\n", algo,
315 PTR_ERR(tfm));
Christian Engelmayera2ea6ed2014-04-21 20:46:40 +0200316 goto out_notfm;
Tim Chen53f52d72013-12-11 14:28:47 -0800317 }
318
319 req = aead_request_alloc(tfm, GFP_KERNEL);
320 if (!req) {
321 pr_err("alg: aead: Failed to allocate request for %s\n",
322 algo);
Christian Engelmayer6af1f932014-04-21 20:47:05 +0200323 goto out_noreq;
Tim Chen53f52d72013-12-11 14:28:47 -0800324 }
325
326 i = 0;
327 do {
328 b_size = aead_sizes;
329 do {
330 assoc = axbuf[0];
Christian Engelmayerac5f8632014-04-21 20:45:59 +0200331 memset(assoc, 0xff, aad_size);
Tim Chen53f52d72013-12-11 14:28:47 -0800332 sg_init_one(&asg[0], assoc, aad_size);
333
334 if ((*keysize + *b_size) > TVMEMSIZE * PAGE_SIZE) {
335 pr_err("template (%u) too big for tvmem (%lu)\n",
336 *keysize + *b_size,
337 TVMEMSIZE * PAGE_SIZE);
338 goto out;
339 }
340
341 key = tvmem[0];
342 for (j = 0; j < tcount; j++) {
343 if (template[j].klen == *keysize) {
344 key = template[j].key;
345 break;
346 }
347 }
348 ret = crypto_aead_setkey(tfm, key, *keysize);
349 ret = crypto_aead_setauthsize(tfm, authsize);
350
351 iv_len = crypto_aead_ivsize(tfm);
352 if (iv_len)
353 memset(&iv, 0xff, iv_len);
354
355 crypto_aead_clear_flags(tfm, ~0);
356 printk(KERN_INFO "test %u (%d bit key, %d byte blocks): ",
357 i, *keysize * 8, *b_size);
358
359
360 memset(tvmem[0], 0xff, PAGE_SIZE);
361
362 if (ret) {
363 pr_err("setkey() failed flags=%x\n",
364 crypto_aead_get_flags(tfm));
365 goto out;
366 }
367
368 sg_init_aead(&sg[0], xbuf,
369 *b_size + (enc ? authsize : 0));
370
371 sg_init_aead(&sgout[0], xoutbuf,
372 *b_size + (enc ? authsize : 0));
373
374 aead_request_set_crypt(req, sg, sgout, *b_size, iv);
375 aead_request_set_assoc(req, asg, aad_size);
376
377 if (sec)
378 ret = test_aead_jiffies(req, enc, *b_size, sec);
379 else
380 ret = test_aead_cycles(req, enc, *b_size);
381
382 if (ret) {
383 pr_err("%s() failed return code=%d\n", e, ret);
384 break;
385 }
386 b_size++;
387 i++;
388 } while (*b_size);
389 keysize++;
390 } while (*keysize);
391
392out:
Christian Engelmayer6af1f932014-04-21 20:47:05 +0200393 aead_request_free(req);
394out_noreq:
Tim Chen53f52d72013-12-11 14:28:47 -0800395 crypto_free_aead(tfm);
Christian Engelmayera2ea6ed2014-04-21 20:46:40 +0200396out_notfm:
Tim Chen53f52d72013-12-11 14:28:47 -0800397 kfree(sg);
398out_nosg:
399 testmgr_free_buf(xoutbuf);
400out_nooutbuf:
401 testmgr_free_buf(axbuf);
402out_noaxbuf:
403 testmgr_free_buf(xbuf);
404out_noxbuf:
405 return;
406}
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800407
Herbert Xu01b32322008-07-31 15:41:55 +0800408static void test_cipher_speed(const char *algo, int enc, unsigned int sec,
Herbert Xuda7f0332008-07-31 17:08:25 +0800409 struct cipher_speed_template *template,
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800410 unsigned int tcount, u8 *keysize)
Harald Welteebfd9bc2005-06-22 13:27:23 -0700411{
Herbert Xudce907c2005-06-22 13:27:51 -0700412 unsigned int ret, i, j, iv_len;
David Sterbaf07ef1d2011-03-04 15:28:52 +0800413 const char *key;
414 char iv[128];
Herbert Xucba83562006-08-13 08:26:09 +1000415 struct crypto_blkcipher *tfm;
416 struct blkcipher_desc desc;
417 const char *e;
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800418 u32 *b_size;
Harald Welteebfd9bc2005-06-22 13:27:23 -0700419
420 if (enc == ENCRYPT)
421 e = "encryption";
422 else
423 e = "decryption";
Harald Welteebfd9bc2005-06-22 13:27:23 -0700424
Herbert Xucba83562006-08-13 08:26:09 +1000425 printk("\ntesting speed of %s %s\n", algo, e);
Harald Welteebfd9bc2005-06-22 13:27:23 -0700426
Herbert Xucba83562006-08-13 08:26:09 +1000427 tfm = crypto_alloc_blkcipher(algo, 0, CRYPTO_ALG_ASYNC);
Harald Welteebfd9bc2005-06-22 13:27:23 -0700428
Herbert Xucba83562006-08-13 08:26:09 +1000429 if (IS_ERR(tfm)) {
430 printk("failed to load transform for %s: %ld\n", algo,
431 PTR_ERR(tfm));
Harald Welteebfd9bc2005-06-22 13:27:23 -0700432 return;
433 }
Herbert Xucba83562006-08-13 08:26:09 +1000434 desc.tfm = tfm;
435 desc.flags = 0;
Harald Welteebfd9bc2005-06-22 13:27:23 -0700436
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800437 i = 0;
438 do {
Harald Welteebfd9bc2005-06-22 13:27:23 -0700439
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800440 b_size = block_sizes;
441 do {
Herbert Xuf139cfa2008-07-31 12:23:53 +0800442 struct scatterlist sg[TVMEMSIZE];
Harald Welteebfd9bc2005-06-22 13:27:23 -0700443
Herbert Xuf139cfa2008-07-31 12:23:53 +0800444 if ((*keysize + *b_size) > TVMEMSIZE * PAGE_SIZE) {
445 printk("template (%u) too big for "
446 "tvmem (%lu)\n", *keysize + *b_size,
447 TVMEMSIZE * PAGE_SIZE);
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800448 goto out;
449 }
Harald Welteebfd9bc2005-06-22 13:27:23 -0700450
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800451 printk("test %u (%d bit key, %d byte blocks): ", i,
452 *keysize * 8, *b_size);
453
Herbert Xuf139cfa2008-07-31 12:23:53 +0800454 memset(tvmem[0], 0xff, PAGE_SIZE);
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800455
456 /* set key, plain text and IV */
Herbert Xuda7f0332008-07-31 17:08:25 +0800457 key = tvmem[0];
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800458 for (j = 0; j < tcount; j++) {
459 if (template[j].klen == *keysize) {
460 key = template[j].key;
461 break;
462 }
463 }
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800464
465 ret = crypto_blkcipher_setkey(tfm, key, *keysize);
466 if (ret) {
467 printk("setkey() failed flags=%x\n",
468 crypto_blkcipher_get_flags(tfm));
469 goto out;
470 }
471
Herbert Xuf139cfa2008-07-31 12:23:53 +0800472 sg_init_table(sg, TVMEMSIZE);
473 sg_set_buf(sg, tvmem[0] + *keysize,
474 PAGE_SIZE - *keysize);
475 for (j = 1; j < TVMEMSIZE; j++) {
476 sg_set_buf(sg + j, tvmem[j], PAGE_SIZE);
477 memset (tvmem[j], 0xff, PAGE_SIZE);
478 }
479
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800480 iv_len = crypto_blkcipher_ivsize(tfm);
481 if (iv_len) {
482 memset(&iv, 0xff, iv_len);
483 crypto_blkcipher_set_iv(tfm, iv, iv_len);
484 }
485
486 if (sec)
Herbert Xuf139cfa2008-07-31 12:23:53 +0800487 ret = test_cipher_jiffies(&desc, enc, sg,
488 *b_size, sec);
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800489 else
Herbert Xuf139cfa2008-07-31 12:23:53 +0800490 ret = test_cipher_cycles(&desc, enc, sg,
491 *b_size);
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800492
493 if (ret) {
494 printk("%s() failed flags=%x\n", e, desc.flags);
Herbert Xudce907c2005-06-22 13:27:51 -0700495 break;
496 }
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800497 b_size++;
498 i++;
499 } while (*b_size);
500 keysize++;
501 } while (*keysize);
Harald Welteebfd9bc2005-06-22 13:27:23 -0700502
503out:
Herbert Xucba83562006-08-13 08:26:09 +1000504 crypto_free_blkcipher(tfm);
Harald Welteebfd9bc2005-06-22 13:27:23 -0700505}
506
Herbert Xuf139cfa2008-07-31 12:23:53 +0800507static int test_hash_jiffies_digest(struct hash_desc *desc,
508 struct scatterlist *sg, int blen,
Herbert Xue9d41162006-08-19 21:38:49 +1000509 char *out, int sec)
Michal Ludvige8057922006-05-30 22:04:19 +1000510{
Michal Ludvige8057922006-05-30 22:04:19 +1000511 unsigned long start, end;
Herbert Xue9d41162006-08-19 21:38:49 +1000512 int bcount;
513 int ret;
Michal Ludvige8057922006-05-30 22:04:19 +1000514
515 for (start = jiffies, end = start + sec * HZ, bcount = 0;
516 time_before(jiffies, end); bcount++) {
Herbert Xue9d41162006-08-19 21:38:49 +1000517 ret = crypto_hash_digest(desc, sg, blen, out);
518 if (ret)
519 return ret;
Michal Ludvige8057922006-05-30 22:04:19 +1000520 }
521
522 printk("%6u opers/sec, %9lu bytes/sec\n",
523 bcount / sec, ((long)bcount * blen) / sec);
524
Herbert Xue9d41162006-08-19 21:38:49 +1000525 return 0;
Michal Ludvige8057922006-05-30 22:04:19 +1000526}
527
Herbert Xuf139cfa2008-07-31 12:23:53 +0800528static int test_hash_jiffies(struct hash_desc *desc, struct scatterlist *sg,
529 int blen, int plen, char *out, int sec)
Herbert Xue9d41162006-08-19 21:38:49 +1000530{
Herbert Xue9d41162006-08-19 21:38:49 +1000531 unsigned long start, end;
532 int bcount, pcount;
533 int ret;
534
535 if (plen == blen)
Herbert Xuf139cfa2008-07-31 12:23:53 +0800536 return test_hash_jiffies_digest(desc, sg, blen, out, sec);
Herbert Xua5a613a2007-10-27 00:51:21 -0700537
Herbert Xue9d41162006-08-19 21:38:49 +1000538 for (start = jiffies, end = start + sec * HZ, bcount = 0;
539 time_before(jiffies, end); bcount++) {
540 ret = crypto_hash_init(desc);
541 if (ret)
542 return ret;
543 for (pcount = 0; pcount < blen; pcount += plen) {
Herbert Xue9d41162006-08-19 21:38:49 +1000544 ret = crypto_hash_update(desc, sg, plen);
545 if (ret)
546 return ret;
547 }
548 /* we assume there is enough space in 'out' for the result */
549 ret = crypto_hash_final(desc, out);
550 if (ret)
551 return ret;
552 }
553
554 printk("%6u opers/sec, %9lu bytes/sec\n",
555 bcount / sec, ((long)bcount * blen) / sec);
556
557 return 0;
558}
559
Herbert Xuf139cfa2008-07-31 12:23:53 +0800560static int test_hash_cycles_digest(struct hash_desc *desc,
561 struct scatterlist *sg, int blen, char *out)
Michal Ludvige8057922006-05-30 22:04:19 +1000562{
Michal Ludvige8057922006-05-30 22:04:19 +1000563 unsigned long cycles = 0;
Herbert Xue9d41162006-08-19 21:38:49 +1000564 int i;
565 int ret;
Michal Ludvige8057922006-05-30 22:04:19 +1000566
Michal Ludvige8057922006-05-30 22:04:19 +1000567 local_irq_disable();
568
569 /* Warm-up run. */
570 for (i = 0; i < 4; i++) {
Herbert Xue9d41162006-08-19 21:38:49 +1000571 ret = crypto_hash_digest(desc, sg, blen, out);
572 if (ret)
573 goto out;
Michal Ludvige8057922006-05-30 22:04:19 +1000574 }
575
576 /* The real thing. */
577 for (i = 0; i < 8; i++) {
578 cycles_t start, end;
579
Michal Ludvige8057922006-05-30 22:04:19 +1000580 start = get_cycles();
581
Herbert Xue9d41162006-08-19 21:38:49 +1000582 ret = crypto_hash_digest(desc, sg, blen, out);
583 if (ret)
584 goto out;
Michal Ludvige8057922006-05-30 22:04:19 +1000585
586 end = get_cycles();
587
588 cycles += end - start;
589 }
590
Herbert Xue9d41162006-08-19 21:38:49 +1000591out:
Michal Ludvige8057922006-05-30 22:04:19 +1000592 local_irq_enable();
Michal Ludvige8057922006-05-30 22:04:19 +1000593
Herbert Xue9d41162006-08-19 21:38:49 +1000594 if (ret)
595 return ret;
596
Michal Ludvige8057922006-05-30 22:04:19 +1000597 printk("%6lu cycles/operation, %4lu cycles/byte\n",
598 cycles / 8, cycles / (8 * blen));
599
Herbert Xue9d41162006-08-19 21:38:49 +1000600 return 0;
Michal Ludvige8057922006-05-30 22:04:19 +1000601}
602
Herbert Xuf139cfa2008-07-31 12:23:53 +0800603static int test_hash_cycles(struct hash_desc *desc, struct scatterlist *sg,
604 int blen, int plen, char *out)
Michal Ludvige8057922006-05-30 22:04:19 +1000605{
Herbert Xue9d41162006-08-19 21:38:49 +1000606 unsigned long cycles = 0;
607 int i, pcount;
608 int ret;
609
610 if (plen == blen)
Herbert Xuf139cfa2008-07-31 12:23:53 +0800611 return test_hash_cycles_digest(desc, sg, blen, out);
Herbert Xua5a613a2007-10-27 00:51:21 -0700612
Herbert Xue9d41162006-08-19 21:38:49 +1000613 local_irq_disable();
614
615 /* Warm-up run. */
616 for (i = 0; i < 4; i++) {
617 ret = crypto_hash_init(desc);
618 if (ret)
619 goto out;
620 for (pcount = 0; pcount < blen; pcount += plen) {
Herbert Xue9d41162006-08-19 21:38:49 +1000621 ret = crypto_hash_update(desc, sg, plen);
622 if (ret)
623 goto out;
624 }
Herbert Xu29059d12007-05-18 16:25:19 +1000625 ret = crypto_hash_final(desc, out);
Herbert Xue9d41162006-08-19 21:38:49 +1000626 if (ret)
627 goto out;
628 }
629
630 /* The real thing. */
631 for (i = 0; i < 8; i++) {
632 cycles_t start, end;
633
634 start = get_cycles();
635
636 ret = crypto_hash_init(desc);
637 if (ret)
638 goto out;
639 for (pcount = 0; pcount < blen; pcount += plen) {
Herbert Xue9d41162006-08-19 21:38:49 +1000640 ret = crypto_hash_update(desc, sg, plen);
641 if (ret)
642 goto out;
643 }
644 ret = crypto_hash_final(desc, out);
645 if (ret)
646 goto out;
647
648 end = get_cycles();
649
650 cycles += end - start;
651 }
652
653out:
654 local_irq_enable();
Herbert Xue9d41162006-08-19 21:38:49 +1000655
656 if (ret)
657 return ret;
658
659 printk("%6lu cycles/operation, %4lu cycles/byte\n",
660 cycles / 8, cycles / (8 * blen));
661
662 return 0;
663}
664
David S. Millerbeb63da72010-05-19 14:11:21 +1000665static void test_hash_sg_init(struct scatterlist *sg)
666{
667 int i;
668
669 sg_init_table(sg, TVMEMSIZE);
670 for (i = 0; i < TVMEMSIZE; i++) {
671 sg_set_buf(sg + i, tvmem[i], PAGE_SIZE);
672 memset(tvmem[i], 0xff, PAGE_SIZE);
673 }
674}
675
Herbert Xu01b32322008-07-31 15:41:55 +0800676static void test_hash_speed(const char *algo, unsigned int sec,
677 struct hash_speed *speed)
Herbert Xue9d41162006-08-19 21:38:49 +1000678{
Herbert Xuf139cfa2008-07-31 12:23:53 +0800679 struct scatterlist sg[TVMEMSIZE];
Herbert Xue9d41162006-08-19 21:38:49 +1000680 struct crypto_hash *tfm;
681 struct hash_desc desc;
Frank Seidel376bacb2009-03-29 15:18:39 +0800682 static char output[1024];
Michal Ludvige8057922006-05-30 22:04:19 +1000683 int i;
Herbert Xue9d41162006-08-19 21:38:49 +1000684 int ret;
Michal Ludvige8057922006-05-30 22:04:19 +1000685
Frank Seidel376bacb2009-03-29 15:18:39 +0800686 printk(KERN_INFO "\ntesting speed of %s\n", algo);
Michal Ludvige8057922006-05-30 22:04:19 +1000687
Herbert Xue9d41162006-08-19 21:38:49 +1000688 tfm = crypto_alloc_hash(algo, 0, CRYPTO_ALG_ASYNC);
Michal Ludvige8057922006-05-30 22:04:19 +1000689
Herbert Xue9d41162006-08-19 21:38:49 +1000690 if (IS_ERR(tfm)) {
Frank Seidel376bacb2009-03-29 15:18:39 +0800691 printk(KERN_ERR "failed to load transform for %s: %ld\n", algo,
Herbert Xue9d41162006-08-19 21:38:49 +1000692 PTR_ERR(tfm));
Michal Ludvige8057922006-05-30 22:04:19 +1000693 return;
694 }
695
Herbert Xue9d41162006-08-19 21:38:49 +1000696 desc.tfm = tfm;
697 desc.flags = 0;
698
699 if (crypto_hash_digestsize(tfm) > sizeof(output)) {
Frank Seidel376bacb2009-03-29 15:18:39 +0800700 printk(KERN_ERR "digestsize(%u) > outputbuffer(%zu)\n",
Herbert Xue9d41162006-08-19 21:38:49 +1000701 crypto_hash_digestsize(tfm), sizeof(output));
Michal Ludvige8057922006-05-30 22:04:19 +1000702 goto out;
703 }
704
David S. Millerbeb63da72010-05-19 14:11:21 +1000705 test_hash_sg_init(sg);
Michal Ludvige8057922006-05-30 22:04:19 +1000706 for (i = 0; speed[i].blen != 0; i++) {
Herbert Xuf139cfa2008-07-31 12:23:53 +0800707 if (speed[i].blen > TVMEMSIZE * PAGE_SIZE) {
Frank Seidel376bacb2009-03-29 15:18:39 +0800708 printk(KERN_ERR
709 "template (%u) too big for tvmem (%lu)\n",
Herbert Xuf139cfa2008-07-31 12:23:53 +0800710 speed[i].blen, TVMEMSIZE * PAGE_SIZE);
Michal Ludvige8057922006-05-30 22:04:19 +1000711 goto out;
712 }
713
Huang Ying18bcc912010-03-10 18:30:32 +0800714 if (speed[i].klen)
715 crypto_hash_setkey(tfm, tvmem[0], speed[i].klen);
716
Frank Seidel376bacb2009-03-29 15:18:39 +0800717 printk(KERN_INFO "test%3u "
718 "(%5u byte blocks,%5u bytes per update,%4u updates): ",
Michal Ludvige8057922006-05-30 22:04:19 +1000719 i, speed[i].blen, speed[i].plen, speed[i].blen / speed[i].plen);
720
Michal Ludvige8057922006-05-30 22:04:19 +1000721 if (sec)
Herbert Xuf139cfa2008-07-31 12:23:53 +0800722 ret = test_hash_jiffies(&desc, sg, speed[i].blen,
Herbert Xue9d41162006-08-19 21:38:49 +1000723 speed[i].plen, output, sec);
Michal Ludvige8057922006-05-30 22:04:19 +1000724 else
Herbert Xuf139cfa2008-07-31 12:23:53 +0800725 ret = test_hash_cycles(&desc, sg, speed[i].blen,
Herbert Xue9d41162006-08-19 21:38:49 +1000726 speed[i].plen, output);
727
728 if (ret) {
Frank Seidel376bacb2009-03-29 15:18:39 +0800729 printk(KERN_ERR "hashing failed ret=%d\n", ret);
Herbert Xue9d41162006-08-19 21:38:49 +1000730 break;
731 }
Michal Ludvige8057922006-05-30 22:04:19 +1000732 }
733
734out:
Herbert Xue9d41162006-08-19 21:38:49 +1000735 crypto_free_hash(tfm);
Michal Ludvige8057922006-05-30 22:04:19 +1000736}
737
David S. Millerbeb63da72010-05-19 14:11:21 +1000738struct tcrypt_result {
739 struct completion completion;
740 int err;
741};
742
743static void tcrypt_complete(struct crypto_async_request *req, int err)
744{
745 struct tcrypt_result *res = req->data;
746
747 if (err == -EINPROGRESS)
748 return;
749
750 res->err = err;
751 complete(&res->completion);
752}
753
754static inline int do_one_ahash_op(struct ahash_request *req, int ret)
755{
756 if (ret == -EINPROGRESS || ret == -EBUSY) {
757 struct tcrypt_result *tr = req->base.data;
758
759 ret = wait_for_completion_interruptible(&tr->completion);
760 if (!ret)
761 ret = tr->err;
Wolfram Sang16735d02013-11-14 14:32:02 -0800762 reinit_completion(&tr->completion);
David S. Millerbeb63da72010-05-19 14:11:21 +1000763 }
764 return ret;
765}
766
767static int test_ahash_jiffies_digest(struct ahash_request *req, int blen,
768 char *out, int sec)
769{
770 unsigned long start, end;
771 int bcount;
772 int ret;
773
774 for (start = jiffies, end = start + sec * HZ, bcount = 0;
775 time_before(jiffies, end); bcount++) {
776 ret = do_one_ahash_op(req, crypto_ahash_digest(req));
777 if (ret)
778 return ret;
779 }
780
781 printk("%6u opers/sec, %9lu bytes/sec\n",
782 bcount / sec, ((long)bcount * blen) / sec);
783
784 return 0;
785}
786
787static int test_ahash_jiffies(struct ahash_request *req, int blen,
788 int plen, char *out, int sec)
789{
790 unsigned long start, end;
791 int bcount, pcount;
792 int ret;
793
794 if (plen == blen)
795 return test_ahash_jiffies_digest(req, blen, out, sec);
796
797 for (start = jiffies, end = start + sec * HZ, bcount = 0;
798 time_before(jiffies, end); bcount++) {
799 ret = crypto_ahash_init(req);
800 if (ret)
801 return ret;
802 for (pcount = 0; pcount < blen; pcount += plen) {
803 ret = do_one_ahash_op(req, crypto_ahash_update(req));
804 if (ret)
805 return ret;
806 }
807 /* we assume there is enough space in 'out' for the result */
808 ret = do_one_ahash_op(req, crypto_ahash_final(req));
809 if (ret)
810 return ret;
811 }
812
813 pr_cont("%6u opers/sec, %9lu bytes/sec\n",
814 bcount / sec, ((long)bcount * blen) / sec);
815
816 return 0;
817}
818
819static int test_ahash_cycles_digest(struct ahash_request *req, int blen,
820 char *out)
821{
822 unsigned long cycles = 0;
823 int ret, i;
824
825 /* Warm-up run. */
826 for (i = 0; i < 4; i++) {
827 ret = do_one_ahash_op(req, crypto_ahash_digest(req));
828 if (ret)
829 goto out;
830 }
831
832 /* The real thing. */
833 for (i = 0; i < 8; i++) {
834 cycles_t start, end;
835
836 start = get_cycles();
837
838 ret = do_one_ahash_op(req, crypto_ahash_digest(req));
839 if (ret)
840 goto out;
841
842 end = get_cycles();
843
844 cycles += end - start;
845 }
846
847out:
848 if (ret)
849 return ret;
850
851 pr_cont("%6lu cycles/operation, %4lu cycles/byte\n",
852 cycles / 8, cycles / (8 * blen));
853
854 return 0;
855}
856
857static int test_ahash_cycles(struct ahash_request *req, int blen,
858 int plen, char *out)
859{
860 unsigned long cycles = 0;
861 int i, pcount, ret;
862
863 if (plen == blen)
864 return test_ahash_cycles_digest(req, blen, out);
865
866 /* Warm-up run. */
867 for (i = 0; i < 4; i++) {
868 ret = crypto_ahash_init(req);
869 if (ret)
870 goto out;
871 for (pcount = 0; pcount < blen; pcount += plen) {
872 ret = do_one_ahash_op(req, crypto_ahash_update(req));
873 if (ret)
874 goto out;
875 }
876 ret = do_one_ahash_op(req, crypto_ahash_final(req));
877 if (ret)
878 goto out;
879 }
880
881 /* The real thing. */
882 for (i = 0; i < 8; i++) {
883 cycles_t start, end;
884
885 start = get_cycles();
886
887 ret = crypto_ahash_init(req);
888 if (ret)
889 goto out;
890 for (pcount = 0; pcount < blen; pcount += plen) {
891 ret = do_one_ahash_op(req, crypto_ahash_update(req));
892 if (ret)
893 goto out;
894 }
895 ret = do_one_ahash_op(req, crypto_ahash_final(req));
896 if (ret)
897 goto out;
898
899 end = get_cycles();
900
901 cycles += end - start;
902 }
903
904out:
905 if (ret)
906 return ret;
907
908 pr_cont("%6lu cycles/operation, %4lu cycles/byte\n",
909 cycles / 8, cycles / (8 * blen));
910
911 return 0;
912}
913
914static void test_ahash_speed(const char *algo, unsigned int sec,
915 struct hash_speed *speed)
916{
917 struct scatterlist sg[TVMEMSIZE];
918 struct tcrypt_result tresult;
919 struct ahash_request *req;
920 struct crypto_ahash *tfm;
921 static char output[1024];
922 int i, ret;
923
924 printk(KERN_INFO "\ntesting speed of async %s\n", algo);
925
926 tfm = crypto_alloc_ahash(algo, 0, 0);
927 if (IS_ERR(tfm)) {
928 pr_err("failed to load transform for %s: %ld\n",
929 algo, PTR_ERR(tfm));
930 return;
931 }
932
933 if (crypto_ahash_digestsize(tfm) > sizeof(output)) {
934 pr_err("digestsize(%u) > outputbuffer(%zu)\n",
935 crypto_ahash_digestsize(tfm), sizeof(output));
936 goto out;
937 }
938
939 test_hash_sg_init(sg);
940 req = ahash_request_alloc(tfm, GFP_KERNEL);
941 if (!req) {
942 pr_err("ahash request allocation failure\n");
943 goto out;
944 }
945
946 init_completion(&tresult.completion);
947 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
948 tcrypt_complete, &tresult);
949
950 for (i = 0; speed[i].blen != 0; i++) {
951 if (speed[i].blen > TVMEMSIZE * PAGE_SIZE) {
952 pr_err("template (%u) too big for tvmem (%lu)\n",
953 speed[i].blen, TVMEMSIZE * PAGE_SIZE);
954 break;
955 }
956
957 pr_info("test%3u "
958 "(%5u byte blocks,%5u bytes per update,%4u updates): ",
959 i, speed[i].blen, speed[i].plen, speed[i].blen / speed[i].plen);
960
961 ahash_request_set_crypt(req, sg, output, speed[i].plen);
962
963 if (sec)
964 ret = test_ahash_jiffies(req, speed[i].blen,
965 speed[i].plen, output, sec);
966 else
967 ret = test_ahash_cycles(req, speed[i].blen,
968 speed[i].plen, output);
969
970 if (ret) {
971 pr_err("hashing failed ret=%d\n", ret);
972 break;
973 }
974 }
975
976 ahash_request_free(req);
977
978out:
979 crypto_free_ahash(tfm);
980}
981
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300982static inline int do_one_acipher_op(struct ablkcipher_request *req, int ret)
983{
984 if (ret == -EINPROGRESS || ret == -EBUSY) {
985 struct tcrypt_result *tr = req->base.data;
986
987 ret = wait_for_completion_interruptible(&tr->completion);
988 if (!ret)
989 ret = tr->err;
Wolfram Sang16735d02013-11-14 14:32:02 -0800990 reinit_completion(&tr->completion);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300991 }
992
993 return ret;
994}
995
996static int test_acipher_jiffies(struct ablkcipher_request *req, int enc,
997 int blen, int sec)
998{
999 unsigned long start, end;
1000 int bcount;
1001 int ret;
1002
1003 for (start = jiffies, end = start + sec * HZ, bcount = 0;
1004 time_before(jiffies, end); bcount++) {
1005 if (enc)
1006 ret = do_one_acipher_op(req,
1007 crypto_ablkcipher_encrypt(req));
1008 else
1009 ret = do_one_acipher_op(req,
1010 crypto_ablkcipher_decrypt(req));
1011
1012 if (ret)
1013 return ret;
1014 }
1015
1016 pr_cont("%d operations in %d seconds (%ld bytes)\n",
1017 bcount, sec, (long)bcount * blen);
1018 return 0;
1019}
1020
1021static int test_acipher_cycles(struct ablkcipher_request *req, int enc,
1022 int blen)
1023{
1024 unsigned long cycles = 0;
1025 int ret = 0;
1026 int i;
1027
1028 /* Warm-up run. */
1029 for (i = 0; i < 4; i++) {
1030 if (enc)
1031 ret = do_one_acipher_op(req,
1032 crypto_ablkcipher_encrypt(req));
1033 else
1034 ret = do_one_acipher_op(req,
1035 crypto_ablkcipher_decrypt(req));
1036
1037 if (ret)
1038 goto out;
1039 }
1040
1041 /* The real thing. */
1042 for (i = 0; i < 8; i++) {
1043 cycles_t start, end;
1044
1045 start = get_cycles();
1046 if (enc)
1047 ret = do_one_acipher_op(req,
1048 crypto_ablkcipher_encrypt(req));
1049 else
1050 ret = do_one_acipher_op(req,
1051 crypto_ablkcipher_decrypt(req));
1052 end = get_cycles();
1053
1054 if (ret)
1055 goto out;
1056
1057 cycles += end - start;
1058 }
1059
1060out:
1061 if (ret == 0)
1062 pr_cont("1 operation in %lu cycles (%d bytes)\n",
1063 (cycles + 4) / 8, blen);
1064
1065 return ret;
1066}
1067
1068static void test_acipher_speed(const char *algo, int enc, unsigned int sec,
1069 struct cipher_speed_template *template,
1070 unsigned int tcount, u8 *keysize)
1071{
Nicolas Royerde1975332012-07-01 19:19:47 +02001072 unsigned int ret, i, j, k, iv_len;
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +03001073 struct tcrypt_result tresult;
1074 const char *key;
1075 char iv[128];
1076 struct ablkcipher_request *req;
1077 struct crypto_ablkcipher *tfm;
1078 const char *e;
1079 u32 *b_size;
1080
1081 if (enc == ENCRYPT)
1082 e = "encryption";
1083 else
1084 e = "decryption";
1085
1086 pr_info("\ntesting speed of async %s %s\n", algo, e);
1087
1088 init_completion(&tresult.completion);
1089
1090 tfm = crypto_alloc_ablkcipher(algo, 0, 0);
1091
1092 if (IS_ERR(tfm)) {
1093 pr_err("failed to load transform for %s: %ld\n", algo,
1094 PTR_ERR(tfm));
1095 return;
1096 }
1097
1098 req = ablkcipher_request_alloc(tfm, GFP_KERNEL);
1099 if (!req) {
1100 pr_err("tcrypt: skcipher: Failed to allocate request for %s\n",
1101 algo);
1102 goto out;
1103 }
1104
1105 ablkcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
1106 tcrypt_complete, &tresult);
1107
1108 i = 0;
1109 do {
1110 b_size = block_sizes;
1111
1112 do {
1113 struct scatterlist sg[TVMEMSIZE];
1114
1115 if ((*keysize + *b_size) > TVMEMSIZE * PAGE_SIZE) {
1116 pr_err("template (%u) too big for "
1117 "tvmem (%lu)\n", *keysize + *b_size,
1118 TVMEMSIZE * PAGE_SIZE);
1119 goto out_free_req;
1120 }
1121
1122 pr_info("test %u (%d bit key, %d byte blocks): ", i,
1123 *keysize * 8, *b_size);
1124
1125 memset(tvmem[0], 0xff, PAGE_SIZE);
1126
1127 /* set key, plain text and IV */
1128 key = tvmem[0];
1129 for (j = 0; j < tcount; j++) {
1130 if (template[j].klen == *keysize) {
1131 key = template[j].key;
1132 break;
1133 }
1134 }
1135
1136 crypto_ablkcipher_clear_flags(tfm, ~0);
1137
1138 ret = crypto_ablkcipher_setkey(tfm, key, *keysize);
1139 if (ret) {
1140 pr_err("setkey() failed flags=%x\n",
1141 crypto_ablkcipher_get_flags(tfm));
1142 goto out_free_req;
1143 }
1144
1145 sg_init_table(sg, TVMEMSIZE);
Nicolas Royerde1975332012-07-01 19:19:47 +02001146
1147 k = *keysize + *b_size;
1148 if (k > PAGE_SIZE) {
1149 sg_set_buf(sg, tvmem[0] + *keysize,
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +03001150 PAGE_SIZE - *keysize);
Nicolas Royerde1975332012-07-01 19:19:47 +02001151 k -= PAGE_SIZE;
1152 j = 1;
1153 while (k > PAGE_SIZE) {
1154 sg_set_buf(sg + j, tvmem[j], PAGE_SIZE);
1155 memset(tvmem[j], 0xff, PAGE_SIZE);
1156 j++;
1157 k -= PAGE_SIZE;
1158 }
1159 sg_set_buf(sg + j, tvmem[j], k);
1160 memset(tvmem[j], 0xff, k);
1161 } else {
1162 sg_set_buf(sg, tvmem[0] + *keysize, *b_size);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +03001163 }
1164
1165 iv_len = crypto_ablkcipher_ivsize(tfm);
1166 if (iv_len)
1167 memset(&iv, 0xff, iv_len);
1168
1169 ablkcipher_request_set_crypt(req, sg, sg, *b_size, iv);
1170
1171 if (sec)
1172 ret = test_acipher_jiffies(req, enc,
1173 *b_size, sec);
1174 else
1175 ret = test_acipher_cycles(req, enc,
1176 *b_size);
1177
1178 if (ret) {
1179 pr_err("%s() failed flags=%x\n", e,
1180 crypto_ablkcipher_get_flags(tfm));
1181 break;
1182 }
1183 b_size++;
1184 i++;
1185 } while (*b_size);
1186 keysize++;
1187 } while (*keysize);
1188
1189out_free_req:
1190 ablkcipher_request_free(req);
1191out:
1192 crypto_free_ablkcipher(tfm);
1193}
1194
Herbert Xuef2736f2005-06-22 13:26:03 -07001195static void test_available(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
1197 char **name = check;
Herbert Xuef2736f2005-06-22 13:26:03 -07001198
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 while (*name) {
1200 printk("alg %s ", *name);
Herbert Xu6158efc2007-04-04 17:41:07 +10001201 printk(crypto_has_alg(*name, 0, 0) ?
Herbert Xue4d5b792006-08-26 18:12:40 +10001202 "found\n" : "not found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 name++;
Herbert Xuef2736f2005-06-22 13:26:03 -07001204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205}
1206
Herbert Xu01b32322008-07-31 15:41:55 +08001207static inline int tcrypt_test(const char *alg)
1208{
Jarod Wilson4e033a62009-05-27 15:10:21 +10001209 int ret;
1210
1211 ret = alg_test(alg, alg, 0, 0);
1212 /* non-fips algs return -EINVAL in fips mode */
1213 if (fips_enabled && ret == -EINVAL)
1214 ret = 0;
1215 return ret;
Herbert Xu01b32322008-07-31 15:41:55 +08001216}
1217
Jarod Wilson4e033a62009-05-27 15:10:21 +10001218static int do_test(int m)
Herbert Xu01b32322008-07-31 15:41:55 +08001219{
1220 int i;
Jarod Wilson4e033a62009-05-27 15:10:21 +10001221 int ret = 0;
Herbert Xu01b32322008-07-31 15:41:55 +08001222
1223 switch (m) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 case 0:
Herbert Xu01b32322008-07-31 15:41:55 +08001225 for (i = 1; i < 200; i++)
Jarod Wilson4e033a62009-05-27 15:10:21 +10001226 ret += do_test(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 break;
1228
1229 case 1:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001230 ret += tcrypt_test("md5");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 break;
1232
1233 case 2:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001234 ret += tcrypt_test("sha1");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 break;
1236
1237 case 3:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001238 ret += tcrypt_test("ecb(des)");
1239 ret += tcrypt_test("cbc(des)");
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03001240 ret += tcrypt_test("ctr(des)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 break;
1242
1243 case 4:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001244 ret += tcrypt_test("ecb(des3_ede)");
1245 ret += tcrypt_test("cbc(des3_ede)");
Jussi Kivilinnae080b172012-10-20 14:53:12 +03001246 ret += tcrypt_test("ctr(des3_ede)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 break;
1248
1249 case 5:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001250 ret += tcrypt_test("md4");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 break;
Herbert Xuef2736f2005-06-22 13:26:03 -07001252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 case 6:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001254 ret += tcrypt_test("sha256");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 break;
Herbert Xuef2736f2005-06-22 13:26:03 -07001256
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 case 7:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001258 ret += tcrypt_test("ecb(blowfish)");
1259 ret += tcrypt_test("cbc(blowfish)");
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03001260 ret += tcrypt_test("ctr(blowfish)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 break;
1262
1263 case 8:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001264 ret += tcrypt_test("ecb(twofish)");
1265 ret += tcrypt_test("cbc(twofish)");
Jussi Kivilinna573da622011-10-10 23:03:12 +03001266 ret += tcrypt_test("ctr(twofish)");
Jussi Kivilinnabee3a902011-10-18 13:32:56 +03001267 ret += tcrypt_test("lrw(twofish)");
Jussi Kivilinna131f7542011-10-18 13:33:38 +03001268 ret += tcrypt_test("xts(twofish)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 break;
Herbert Xuef2736f2005-06-22 13:26:03 -07001270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 case 9:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001272 ret += tcrypt_test("ecb(serpent)");
Jussi Kivilinna9d259172011-10-18 00:02:53 +03001273 ret += tcrypt_test("cbc(serpent)");
1274 ret += tcrypt_test("ctr(serpent)");
Jussi Kivilinna87aae4b2011-10-18 13:32:39 +03001275 ret += tcrypt_test("lrw(serpent)");
Jussi Kivilinna5209c072011-10-18 13:33:22 +03001276 ret += tcrypt_test("xts(serpent)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 break;
1278
1279 case 10:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001280 ret += tcrypt_test("ecb(aes)");
1281 ret += tcrypt_test("cbc(aes)");
1282 ret += tcrypt_test("lrw(aes)");
1283 ret += tcrypt_test("xts(aes)");
1284 ret += tcrypt_test("ctr(aes)");
1285 ret += tcrypt_test("rfc3686(ctr(aes))");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 break;
1287
1288 case 11:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001289 ret += tcrypt_test("sha384");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 break;
Herbert Xuef2736f2005-06-22 13:26:03 -07001291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 case 12:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001293 ret += tcrypt_test("sha512");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 break;
1295
1296 case 13:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001297 ret += tcrypt_test("deflate");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 break;
1299
1300 case 14:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001301 ret += tcrypt_test("ecb(cast5)");
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02001302 ret += tcrypt_test("cbc(cast5)");
1303 ret += tcrypt_test("ctr(cast5)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 break;
1305
1306 case 15:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001307 ret += tcrypt_test("ecb(cast6)");
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02001308 ret += tcrypt_test("cbc(cast6)");
1309 ret += tcrypt_test("ctr(cast6)");
1310 ret += tcrypt_test("lrw(cast6)");
1311 ret += tcrypt_test("xts(cast6)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 break;
1313
1314 case 16:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001315 ret += tcrypt_test("ecb(arc4)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 break;
1317
1318 case 17:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001319 ret += tcrypt_test("michael_mic");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 break;
1321
1322 case 18:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001323 ret += tcrypt_test("crc32c");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 break;
1325
1326 case 19:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001327 ret += tcrypt_test("ecb(tea)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 break;
1329
1330 case 20:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001331 ret += tcrypt_test("ecb(xtea)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 break;
1333
1334 case 21:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001335 ret += tcrypt_test("ecb(khazad)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 break;
1337
1338 case 22:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001339 ret += tcrypt_test("wp512");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 break;
1341
1342 case 23:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001343 ret += tcrypt_test("wp384");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 break;
1345
1346 case 24:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001347 ret += tcrypt_test("wp256");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 break;
1349
1350 case 25:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001351 ret += tcrypt_test("ecb(tnepres)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 break;
1353
1354 case 26:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001355 ret += tcrypt_test("ecb(anubis)");
1356 ret += tcrypt_test("cbc(anubis)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 break;
1358
1359 case 27:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001360 ret += tcrypt_test("tgr192");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 break;
1362
1363 case 28:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001364 ret += tcrypt_test("tgr160");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 break;
1366
1367 case 29:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001368 ret += tcrypt_test("tgr128");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 break;
Adrian-Ken Rueegsegger2998db32008-05-09 21:29:35 +08001370
Aaron Grothefb4f10e2005-09-01 17:42:46 -07001371 case 30:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001372 ret += tcrypt_test("ecb(xeta)");
Aaron Grothefb4f10e2005-09-01 17:42:46 -07001373 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
David Howells90831632006-12-16 12:13:14 +11001375 case 31:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001376 ret += tcrypt_test("pcbc(fcrypt)");
David Howells90831632006-12-16 12:13:14 +11001377 break;
1378
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001379 case 32:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001380 ret += tcrypt_test("ecb(camellia)");
1381 ret += tcrypt_test("cbc(camellia)");
Jussi Kivilinna54216bb2012-09-21 10:27:10 +03001382 ret += tcrypt_test("ctr(camellia)");
1383 ret += tcrypt_test("lrw(camellia)");
1384 ret += tcrypt_test("xts(camellia)");
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001385 break;
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03001386
Jonathan Lynchcd12fb902007-11-10 20:08:25 +08001387 case 33:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001388 ret += tcrypt_test("sha224");
Jonathan Lynchcd12fb902007-11-10 20:08:25 +08001389 break;
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001390
Tan Swee Heng2407d602007-11-23 19:45:00 +08001391 case 34:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001392 ret += tcrypt_test("salsa20");
Tan Swee Heng2407d602007-11-23 19:45:00 +08001393 break;
1394
Herbert Xu8df213d2007-12-02 14:55:47 +11001395 case 35:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001396 ret += tcrypt_test("gcm(aes)");
Herbert Xu8df213d2007-12-02 14:55:47 +11001397 break;
1398
Zoltan Sogor0b77abb2007-12-07 16:53:23 +08001399 case 36:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001400 ret += tcrypt_test("lzo");
Zoltan Sogor0b77abb2007-12-07 16:53:23 +08001401 break;
1402
Joy Latten93cc74e2007-12-12 20:24:22 +08001403 case 37:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001404 ret += tcrypt_test("ccm(aes)");
Joy Latten93cc74e2007-12-12 20:24:22 +08001405 break;
1406
Kevin Coffman76cb9522008-03-24 21:26:16 +08001407 case 38:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001408 ret += tcrypt_test("cts(cbc(aes))");
Kevin Coffman76cb9522008-03-24 21:26:16 +08001409 break;
1410
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001411 case 39:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001412 ret += tcrypt_test("rmd128");
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001413 break;
1414
1415 case 40:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001416 ret += tcrypt_test("rmd160");
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001417 break;
1418
Adrian-Ken Rueegsegger2998db32008-05-09 21:29:35 +08001419 case 41:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001420 ret += tcrypt_test("rmd256");
Adrian-Ken Rueegsegger2998db32008-05-09 21:29:35 +08001421 break;
1422
1423 case 42:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001424 ret += tcrypt_test("rmd320");
Herbert Xu01b32322008-07-31 15:41:55 +08001425 break;
1426
1427 case 43:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001428 ret += tcrypt_test("ecb(seed)");
Adrian-Ken Rueegsegger2998db32008-05-09 21:29:35 +08001429 break;
1430
Geert Uytterhoeven0c01aed2009-03-04 15:42:15 +08001431 case 44:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001432 ret += tcrypt_test("zlib");
Geert Uytterhoeven0c01aed2009-03-04 15:42:15 +08001433 break;
1434
Jarod Wilson5d667322009-05-04 19:23:40 +08001435 case 45:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001436 ret += tcrypt_test("rfc4309(ccm(aes))");
Jarod Wilson5d667322009-05-04 19:23:40 +08001437 break;
1438
Jussi Kivilinna54216bb2012-09-21 10:27:10 +03001439 case 46:
1440 ret += tcrypt_test("ghash");
1441 break;
1442
Herbert Xu684115212013-09-07 12:56:26 +10001443 case 47:
1444 ret += tcrypt_test("crct10dif");
1445 break;
1446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 case 100:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001448 ret += tcrypt_test("hmac(md5)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 break;
Herbert Xuef2736f2005-06-22 13:26:03 -07001450
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 case 101:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001452 ret += tcrypt_test("hmac(sha1)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 break;
Herbert Xuef2736f2005-06-22 13:26:03 -07001454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 case 102:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001456 ret += tcrypt_test("hmac(sha256)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 break;
1458
Andrew Donofrioa28091a2006-12-10 12:10:20 +11001459 case 103:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001460 ret += tcrypt_test("hmac(sha384)");
Andrew Donofrioa28091a2006-12-10 12:10:20 +11001461 break;
1462
1463 case 104:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001464 ret += tcrypt_test("hmac(sha512)");
Andrew Donofrioa28091a2006-12-10 12:10:20 +11001465 break;
Herbert Xu38ed9ab2008-01-01 15:59:28 +11001466
Jonathan Lynchcd12fb902007-11-10 20:08:25 +08001467 case 105:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001468 ret += tcrypt_test("hmac(sha224)");
Jonathan Lynchcd12fb902007-11-10 20:08:25 +08001469 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Herbert Xu38ed9ab2008-01-01 15:59:28 +11001471 case 106:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001472 ret += tcrypt_test("xcbc(aes)");
Herbert Xu38ed9ab2008-01-01 15:59:28 +11001473 break;
1474
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001475 case 107:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001476 ret += tcrypt_test("hmac(rmd128)");
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001477 break;
1478
1479 case 108:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001480 ret += tcrypt_test("hmac(rmd160)");
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001481 break;
1482
Shane Wangf1939f72009-09-02 20:05:22 +10001483 case 109:
1484 ret += tcrypt_test("vmac(aes)");
1485 break;
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03001486
Sonic Zhanga482b082012-05-25 17:54:13 +08001487 case 110:
1488 ret += tcrypt_test("hmac(crc32)");
1489 break;
Shane Wangf1939f72009-09-02 20:05:22 +10001490
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08001491 case 150:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001492 ret += tcrypt_test("ansi_cprng");
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08001493 break;
1494
Adrian Hoban69435b92010-11-04 15:02:04 -04001495 case 151:
1496 ret += tcrypt_test("rfc4106(gcm(aes))");
1497 break;
1498
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03001499 case 152:
1500 ret += tcrypt_test("rfc4543(gcm(aes))");
1501 break;
1502
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03001503 case 153:
1504 ret += tcrypt_test("cmac(aes)");
1505 break;
1506
1507 case 154:
1508 ret += tcrypt_test("cmac(des3_ede)");
1509 break;
1510
Horia Geantabbf9c892013-11-28 15:11:16 +02001511 case 155:
1512 ret += tcrypt_test("authenc(hmac(sha1),cbc(aes))");
1513 break;
1514
Horia Geantabca4feb2014-03-14 17:46:51 +02001515 case 156:
1516 ret += tcrypt_test("authenc(hmac(md5),ecb(cipher_null))");
1517 break;
1518
1519 case 157:
1520 ret += tcrypt_test("authenc(hmac(sha1),ecb(cipher_null))");
1521 break;
Nitesh Lal5208ed22014-05-21 17:09:08 +05301522 case 181:
1523 ret += tcrypt_test("authenc(hmac(sha1),cbc(des))");
1524 break;
1525 case 182:
1526 ret += tcrypt_test("authenc(hmac(sha1),cbc(des3_ede))");
1527 break;
1528 case 183:
1529 ret += tcrypt_test("authenc(hmac(sha224),cbc(des))");
1530 break;
1531 case 184:
1532 ret += tcrypt_test("authenc(hmac(sha224),cbc(des3_ede))");
1533 break;
1534 case 185:
1535 ret += tcrypt_test("authenc(hmac(sha256),cbc(des))");
1536 break;
1537 case 186:
1538 ret += tcrypt_test("authenc(hmac(sha256),cbc(des3_ede))");
1539 break;
1540 case 187:
1541 ret += tcrypt_test("authenc(hmac(sha384),cbc(des))");
1542 break;
1543 case 188:
1544 ret += tcrypt_test("authenc(hmac(sha384),cbc(des3_ede))");
1545 break;
1546 case 189:
1547 ret += tcrypt_test("authenc(hmac(sha512),cbc(des))");
1548 break;
1549 case 190:
1550 ret += tcrypt_test("authenc(hmac(sha512),cbc(des3_ede))");
1551 break;
Harald Welteebfd9bc2005-06-22 13:27:23 -07001552 case 200:
Herbert Xucba83562006-08-13 08:26:09 +10001553 test_cipher_speed("ecb(aes)", 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(aes)", 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(aes)", 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(aes)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001560 speed_template_16_24_32);
Rik Snelf3d10442006-11-29 19:01:41 +11001561 test_cipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001562 speed_template_32_40_48);
Rik Snelf3d10442006-11-29 19:01:41 +11001563 test_cipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001564 speed_template_32_40_48);
Rik Snelf19f5112007-09-19 20:23:13 +08001565 test_cipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001566 speed_template_32_48_64);
Rik Snelf19f5112007-09-19 20:23:13 +08001567 test_cipher_speed("xts(aes)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001568 speed_template_32_48_64);
Jan Glauber9996e342011-04-26 16:34:01 +10001569 test_cipher_speed("ctr(aes)", ENCRYPT, sec, NULL, 0,
1570 speed_template_16_24_32);
1571 test_cipher_speed("ctr(aes)", DECRYPT, sec, NULL, 0,
1572 speed_template_16_24_32);
Harald Welteebfd9bc2005-06-22 13:27:23 -07001573 break;
1574
1575 case 201:
Herbert Xucba83562006-08-13 08:26:09 +10001576 test_cipher_speed("ecb(des3_ede)", ENCRYPT, sec,
Herbert Xuda7f0332008-07-31 17:08:25 +08001577 des3_speed_template, DES3_SPEED_VECTORS,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001578 speed_template_24);
Herbert Xucba83562006-08-13 08:26:09 +10001579 test_cipher_speed("ecb(des3_ede)", DECRYPT, sec,
Herbert Xuda7f0332008-07-31 17:08:25 +08001580 des3_speed_template, DES3_SPEED_VECTORS,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001581 speed_template_24);
Herbert Xucba83562006-08-13 08:26:09 +10001582 test_cipher_speed("cbc(des3_ede)", ENCRYPT, sec,
Herbert Xuda7f0332008-07-31 17:08:25 +08001583 des3_speed_template, DES3_SPEED_VECTORS,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001584 speed_template_24);
Herbert Xucba83562006-08-13 08:26:09 +10001585 test_cipher_speed("cbc(des3_ede)", DECRYPT, sec,
Herbert Xuda7f0332008-07-31 17:08:25 +08001586 des3_speed_template, DES3_SPEED_VECTORS,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001587 speed_template_24);
Jussi Kivilinna87131502014-06-09 20:59:49 +03001588 test_cipher_speed("ctr(des3_ede)", ENCRYPT, sec,
1589 des3_speed_template, DES3_SPEED_VECTORS,
1590 speed_template_24);
1591 test_cipher_speed("ctr(des3_ede)", DECRYPT, sec,
1592 des3_speed_template, DES3_SPEED_VECTORS,
1593 speed_template_24);
Harald Welteebfd9bc2005-06-22 13:27:23 -07001594 break;
1595
1596 case 202:
Herbert Xucba83562006-08-13 08:26:09 +10001597 test_cipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001598 speed_template_16_24_32);
Herbert Xucba83562006-08-13 08:26:09 +10001599 test_cipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001600 speed_template_16_24_32);
Herbert Xucba83562006-08-13 08:26:09 +10001601 test_cipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001602 speed_template_16_24_32);
Herbert Xucba83562006-08-13 08:26:09 +10001603 test_cipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001604 speed_template_16_24_32);
Jussi Kivilinnaee5002a2011-09-26 16:47:15 +03001605 test_cipher_speed("ctr(twofish)", ENCRYPT, sec, NULL, 0,
1606 speed_template_16_24_32);
1607 test_cipher_speed("ctr(twofish)", DECRYPT, sec, NULL, 0,
1608 speed_template_16_24_32);
Jussi Kivilinnabee3a902011-10-18 13:32:56 +03001609 test_cipher_speed("lrw(twofish)", ENCRYPT, sec, NULL, 0,
1610 speed_template_32_40_48);
1611 test_cipher_speed("lrw(twofish)", DECRYPT, sec, NULL, 0,
1612 speed_template_32_40_48);
Jussi Kivilinna131f7542011-10-18 13:33:38 +03001613 test_cipher_speed("xts(twofish)", ENCRYPT, sec, NULL, 0,
1614 speed_template_32_48_64);
1615 test_cipher_speed("xts(twofish)", DECRYPT, sec, NULL, 0,
1616 speed_template_32_48_64);
Harald Welteebfd9bc2005-06-22 13:27:23 -07001617 break;
1618
1619 case 203:
Herbert Xucba83562006-08-13 08:26:09 +10001620 test_cipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001621 speed_template_8_32);
Herbert Xucba83562006-08-13 08:26:09 +10001622 test_cipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001623 speed_template_8_32);
Herbert Xucba83562006-08-13 08:26:09 +10001624 test_cipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001625 speed_template_8_32);
Herbert Xucba83562006-08-13 08:26:09 +10001626 test_cipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001627 speed_template_8_32);
Jussi Kivilinna7d47b862011-09-02 01:45:17 +03001628 test_cipher_speed("ctr(blowfish)", ENCRYPT, sec, NULL, 0,
1629 speed_template_8_32);
1630 test_cipher_speed("ctr(blowfish)", DECRYPT, sec, NULL, 0,
1631 speed_template_8_32);
Harald Welteebfd9bc2005-06-22 13:27:23 -07001632 break;
1633
1634 case 204:
Herbert Xucba83562006-08-13 08:26:09 +10001635 test_cipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001636 speed_template_8);
Herbert Xucba83562006-08-13 08:26:09 +10001637 test_cipher_speed("ecb(des)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001638 speed_template_8);
Herbert Xucba83562006-08-13 08:26:09 +10001639 test_cipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001640 speed_template_8);
Herbert Xucba83562006-08-13 08:26:09 +10001641 test_cipher_speed("cbc(des)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001642 speed_template_8);
Harald Welteebfd9bc2005-06-22 13:27:23 -07001643 break;
1644
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001645 case 205:
1646 test_cipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001647 speed_template_16_24_32);
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001648 test_cipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001649 speed_template_16_24_32);
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001650 test_cipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001651 speed_template_16_24_32);
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001652 test_cipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001653 speed_template_16_24_32);
Jussi Kivilinna4de59332012-03-05 20:26:26 +02001654 test_cipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0,
1655 speed_template_16_24_32);
1656 test_cipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0,
1657 speed_template_16_24_32);
1658 test_cipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0,
1659 speed_template_32_40_48);
1660 test_cipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0,
1661 speed_template_32_40_48);
1662 test_cipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0,
1663 speed_template_32_48_64);
1664 test_cipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0,
1665 speed_template_32_48_64);
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001666 break;
1667
Tan Swee Heng5de8f1b2007-12-07 17:17:43 +08001668 case 206:
1669 test_cipher_speed("salsa20", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001670 speed_template_16_32);
Tan Swee Heng5de8f1b2007-12-07 17:17:43 +08001671 break;
1672
Jussi Kivilinna7fb7fe42011-10-18 00:03:03 +03001673 case 207:
1674 test_cipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0,
1675 speed_template_16_32);
1676 test_cipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0,
1677 speed_template_16_32);
1678 test_cipher_speed("cbc(serpent)", ENCRYPT, sec, NULL, 0,
1679 speed_template_16_32);
1680 test_cipher_speed("cbc(serpent)", DECRYPT, sec, NULL, 0,
1681 speed_template_16_32);
1682 test_cipher_speed("ctr(serpent)", ENCRYPT, sec, NULL, 0,
1683 speed_template_16_32);
1684 test_cipher_speed("ctr(serpent)", DECRYPT, sec, NULL, 0,
1685 speed_template_16_32);
Jussi Kivilinna87aae4b2011-10-18 13:32:39 +03001686 test_cipher_speed("lrw(serpent)", ENCRYPT, sec, NULL, 0,
1687 speed_template_32_48);
1688 test_cipher_speed("lrw(serpent)", DECRYPT, sec, NULL, 0,
1689 speed_template_32_48);
Jussi Kivilinna5209c072011-10-18 13:33:22 +03001690 test_cipher_speed("xts(serpent)", ENCRYPT, sec, NULL, 0,
1691 speed_template_32_64);
1692 test_cipher_speed("xts(serpent)", DECRYPT, sec, NULL, 0,
1693 speed_template_32_64);
Jussi Kivilinna7fb7fe42011-10-18 00:03:03 +03001694 break;
1695
Jussi Kivilinna31b4cd292012-06-12 16:52:04 +08001696 case 208:
1697 test_cipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0,
1698 speed_template_8);
1699 break;
1700
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02001701 case 209:
1702 test_cipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0,
1703 speed_template_8_16);
1704 test_cipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0,
1705 speed_template_8_16);
1706 test_cipher_speed("cbc(cast5)", ENCRYPT, sec, NULL, 0,
1707 speed_template_8_16);
1708 test_cipher_speed("cbc(cast5)", DECRYPT, sec, NULL, 0,
1709 speed_template_8_16);
1710 test_cipher_speed("ctr(cast5)", ENCRYPT, sec, NULL, 0,
1711 speed_template_8_16);
1712 test_cipher_speed("ctr(cast5)", DECRYPT, sec, NULL, 0,
1713 speed_template_8_16);
1714 break;
1715
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02001716 case 210:
1717 test_cipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0,
1718 speed_template_16_32);
1719 test_cipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0,
1720 speed_template_16_32);
1721 test_cipher_speed("cbc(cast6)", ENCRYPT, sec, NULL, 0,
1722 speed_template_16_32);
1723 test_cipher_speed("cbc(cast6)", DECRYPT, sec, NULL, 0,
1724 speed_template_16_32);
1725 test_cipher_speed("ctr(cast6)", ENCRYPT, sec, NULL, 0,
1726 speed_template_16_32);
1727 test_cipher_speed("ctr(cast6)", DECRYPT, sec, NULL, 0,
1728 speed_template_16_32);
1729 test_cipher_speed("lrw(cast6)", ENCRYPT, sec, NULL, 0,
1730 speed_template_32_48);
1731 test_cipher_speed("lrw(cast6)", DECRYPT, sec, NULL, 0,
1732 speed_template_32_48);
1733 test_cipher_speed("xts(cast6)", ENCRYPT, sec, NULL, 0,
1734 speed_template_32_64);
1735 test_cipher_speed("xts(cast6)", DECRYPT, sec, NULL, 0,
1736 speed_template_32_64);
1737 break;
1738
Tim Chen53f52d72013-12-11 14:28:47 -08001739 case 211:
1740 test_aead_speed("rfc4106(gcm(aes))", ENCRYPT, sec,
1741 NULL, 0, 16, 8, aead_speed_template_20);
1742 break;
1743
Michal Ludvige8057922006-05-30 22:04:19 +10001744 case 300:
1745 /* fall through */
1746
1747 case 301:
Herbert Xue9d41162006-08-19 21:38:49 +10001748 test_hash_speed("md4", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001749 if (mode > 300 && mode < 400) break;
1750
1751 case 302:
Herbert Xue9d41162006-08-19 21:38:49 +10001752 test_hash_speed("md5", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001753 if (mode > 300 && mode < 400) break;
1754
1755 case 303:
Herbert Xue9d41162006-08-19 21:38:49 +10001756 test_hash_speed("sha1", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001757 if (mode > 300 && mode < 400) break;
1758
1759 case 304:
Herbert Xue9d41162006-08-19 21:38:49 +10001760 test_hash_speed("sha256", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001761 if (mode > 300 && mode < 400) break;
1762
1763 case 305:
Herbert Xue9d41162006-08-19 21:38:49 +10001764 test_hash_speed("sha384", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001765 if (mode > 300 && mode < 400) break;
1766
1767 case 306:
Herbert Xue9d41162006-08-19 21:38:49 +10001768 test_hash_speed("sha512", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001769 if (mode > 300 && mode < 400) break;
1770
1771 case 307:
Herbert Xue9d41162006-08-19 21:38:49 +10001772 test_hash_speed("wp256", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001773 if (mode > 300 && mode < 400) break;
1774
1775 case 308:
Herbert Xue9d41162006-08-19 21:38:49 +10001776 test_hash_speed("wp384", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001777 if (mode > 300 && mode < 400) break;
1778
1779 case 309:
Herbert Xue9d41162006-08-19 21:38:49 +10001780 test_hash_speed("wp512", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001781 if (mode > 300 && mode < 400) break;
1782
1783 case 310:
Herbert Xue9d41162006-08-19 21:38:49 +10001784 test_hash_speed("tgr128", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001785 if (mode > 300 && mode < 400) break;
1786
1787 case 311:
Herbert Xue9d41162006-08-19 21:38:49 +10001788 test_hash_speed("tgr160", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001789 if (mode > 300 && mode < 400) break;
1790
1791 case 312:
Herbert Xue9d41162006-08-19 21:38:49 +10001792 test_hash_speed("tgr192", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001793 if (mode > 300 && mode < 400) break;
1794
Jonathan Lynchcd12fb902007-11-10 20:08:25 +08001795 case 313:
1796 test_hash_speed("sha224", sec, generic_hash_speed_template);
1797 if (mode > 300 && mode < 400) break;
1798
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001799 case 314:
1800 test_hash_speed("rmd128", sec, generic_hash_speed_template);
1801 if (mode > 300 && mode < 400) break;
1802
1803 case 315:
1804 test_hash_speed("rmd160", sec, generic_hash_speed_template);
1805 if (mode > 300 && mode < 400) break;
1806
Adrian-Ken Rueegsegger2998db32008-05-09 21:29:35 +08001807 case 316:
1808 test_hash_speed("rmd256", sec, generic_hash_speed_template);
1809 if (mode > 300 && mode < 400) break;
1810
1811 case 317:
1812 test_hash_speed("rmd320", sec, generic_hash_speed_template);
1813 if (mode > 300 && mode < 400) break;
1814
Huang Ying18bcc912010-03-10 18:30:32 +08001815 case 318:
1816 test_hash_speed("ghash-generic", sec, hash_speed_template_16);
1817 if (mode > 300 && mode < 400) break;
1818
Tim Chene3899e42012-09-27 15:44:24 -07001819 case 319:
1820 test_hash_speed("crc32c", sec, generic_hash_speed_template);
1821 if (mode > 300 && mode < 400) break;
1822
Herbert Xu684115212013-09-07 12:56:26 +10001823 case 320:
1824 test_hash_speed("crct10dif", sec, generic_hash_speed_template);
1825 if (mode > 300 && mode < 400) break;
1826
Michal Ludvige8057922006-05-30 22:04:19 +10001827 case 399:
1828 break;
1829
David S. Millerbeb63da72010-05-19 14:11:21 +10001830 case 400:
1831 /* fall through */
1832
1833 case 401:
1834 test_ahash_speed("md4", sec, generic_hash_speed_template);
1835 if (mode > 400 && mode < 500) break;
1836
1837 case 402:
1838 test_ahash_speed("md5", sec, generic_hash_speed_template);
1839 if (mode > 400 && mode < 500) break;
1840
1841 case 403:
1842 test_ahash_speed("sha1", sec, generic_hash_speed_template);
1843 if (mode > 400 && mode < 500) break;
1844
1845 case 404:
1846 test_ahash_speed("sha256", sec, generic_hash_speed_template);
1847 if (mode > 400 && mode < 500) break;
1848
1849 case 405:
1850 test_ahash_speed("sha384", sec, generic_hash_speed_template);
1851 if (mode > 400 && mode < 500) break;
1852
1853 case 406:
1854 test_ahash_speed("sha512", sec, generic_hash_speed_template);
1855 if (mode > 400 && mode < 500) break;
1856
1857 case 407:
1858 test_ahash_speed("wp256", sec, generic_hash_speed_template);
1859 if (mode > 400 && mode < 500) break;
1860
1861 case 408:
1862 test_ahash_speed("wp384", sec, generic_hash_speed_template);
1863 if (mode > 400 && mode < 500) break;
1864
1865 case 409:
1866 test_ahash_speed("wp512", sec, generic_hash_speed_template);
1867 if (mode > 400 && mode < 500) break;
1868
1869 case 410:
1870 test_ahash_speed("tgr128", sec, generic_hash_speed_template);
1871 if (mode > 400 && mode < 500) break;
1872
1873 case 411:
1874 test_ahash_speed("tgr160", sec, generic_hash_speed_template);
1875 if (mode > 400 && mode < 500) break;
1876
1877 case 412:
1878 test_ahash_speed("tgr192", sec, generic_hash_speed_template);
1879 if (mode > 400 && mode < 500) break;
1880
1881 case 413:
1882 test_ahash_speed("sha224", sec, generic_hash_speed_template);
1883 if (mode > 400 && mode < 500) break;
1884
1885 case 414:
1886 test_ahash_speed("rmd128", sec, generic_hash_speed_template);
1887 if (mode > 400 && mode < 500) break;
1888
1889 case 415:
1890 test_ahash_speed("rmd160", sec, generic_hash_speed_template);
1891 if (mode > 400 && mode < 500) break;
1892
1893 case 416:
1894 test_ahash_speed("rmd256", sec, generic_hash_speed_template);
1895 if (mode > 400 && mode < 500) break;
1896
1897 case 417:
1898 test_ahash_speed("rmd320", sec, generic_hash_speed_template);
1899 if (mode > 400 && mode < 500) break;
1900
1901 case 499:
1902 break;
1903
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +03001904 case 500:
1905 test_acipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
1906 speed_template_16_24_32);
1907 test_acipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0,
1908 speed_template_16_24_32);
1909 test_acipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0,
1910 speed_template_16_24_32);
1911 test_acipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0,
1912 speed_template_16_24_32);
1913 test_acipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0,
1914 speed_template_32_40_48);
1915 test_acipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0,
1916 speed_template_32_40_48);
1917 test_acipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0,
1918 speed_template_32_48_64);
1919 test_acipher_speed("xts(aes)", DECRYPT, sec, NULL, 0,
1920 speed_template_32_48_64);
1921 test_acipher_speed("ctr(aes)", ENCRYPT, sec, NULL, 0,
1922 speed_template_16_24_32);
1923 test_acipher_speed("ctr(aes)", DECRYPT, sec, NULL, 0,
1924 speed_template_16_24_32);
Nicolas Royerde1975332012-07-01 19:19:47 +02001925 test_acipher_speed("cfb(aes)", ENCRYPT, sec, NULL, 0,
1926 speed_template_16_24_32);
1927 test_acipher_speed("cfb(aes)", DECRYPT, sec, NULL, 0,
1928 speed_template_16_24_32);
1929 test_acipher_speed("ofb(aes)", ENCRYPT, sec, NULL, 0,
1930 speed_template_16_24_32);
1931 test_acipher_speed("ofb(aes)", DECRYPT, sec, NULL, 0,
1932 speed_template_16_24_32);
Jussi Kivilinna69d31502012-12-28 12:04:58 +02001933 test_acipher_speed("rfc3686(ctr(aes))", ENCRYPT, sec, NULL, 0,
1934 speed_template_20_28_36);
1935 test_acipher_speed("rfc3686(ctr(aes))", DECRYPT, sec, NULL, 0,
1936 speed_template_20_28_36);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +03001937 break;
1938
1939 case 501:
1940 test_acipher_speed("ecb(des3_ede)", ENCRYPT, sec,
1941 des3_speed_template, DES3_SPEED_VECTORS,
1942 speed_template_24);
1943 test_acipher_speed("ecb(des3_ede)", DECRYPT, sec,
1944 des3_speed_template, DES3_SPEED_VECTORS,
1945 speed_template_24);
1946 test_acipher_speed("cbc(des3_ede)", ENCRYPT, sec,
1947 des3_speed_template, DES3_SPEED_VECTORS,
1948 speed_template_24);
1949 test_acipher_speed("cbc(des3_ede)", DECRYPT, sec,
1950 des3_speed_template, DES3_SPEED_VECTORS,
1951 speed_template_24);
Nicolas Royerde1975332012-07-01 19:19:47 +02001952 test_acipher_speed("cfb(des3_ede)", ENCRYPT, sec,
1953 des3_speed_template, DES3_SPEED_VECTORS,
1954 speed_template_24);
1955 test_acipher_speed("cfb(des3_ede)", DECRYPT, sec,
1956 des3_speed_template, DES3_SPEED_VECTORS,
1957 speed_template_24);
1958 test_acipher_speed("ofb(des3_ede)", ENCRYPT, sec,
1959 des3_speed_template, DES3_SPEED_VECTORS,
1960 speed_template_24);
1961 test_acipher_speed("ofb(des3_ede)", DECRYPT, sec,
1962 des3_speed_template, DES3_SPEED_VECTORS,
1963 speed_template_24);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +03001964 break;
1965
1966 case 502:
1967 test_acipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0,
1968 speed_template_8);
1969 test_acipher_speed("ecb(des)", DECRYPT, sec, NULL, 0,
1970 speed_template_8);
1971 test_acipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0,
1972 speed_template_8);
1973 test_acipher_speed("cbc(des)", DECRYPT, sec, NULL, 0,
1974 speed_template_8);
Nicolas Royerde1975332012-07-01 19:19:47 +02001975 test_acipher_speed("cfb(des)", ENCRYPT, sec, NULL, 0,
1976 speed_template_8);
1977 test_acipher_speed("cfb(des)", DECRYPT, sec, NULL, 0,
1978 speed_template_8);
1979 test_acipher_speed("ofb(des)", ENCRYPT, sec, NULL, 0,
1980 speed_template_8);
1981 test_acipher_speed("ofb(des)", DECRYPT, sec, NULL, 0,
1982 speed_template_8);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +03001983 break;
1984
Jussi Kivilinna7fb7fe42011-10-18 00:03:03 +03001985 case 503:
1986 test_acipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0,
1987 speed_template_16_32);
1988 test_acipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0,
1989 speed_template_16_32);
1990 test_acipher_speed("cbc(serpent)", ENCRYPT, sec, NULL, 0,
1991 speed_template_16_32);
1992 test_acipher_speed("cbc(serpent)", DECRYPT, sec, NULL, 0,
1993 speed_template_16_32);
1994 test_acipher_speed("ctr(serpent)", ENCRYPT, sec, NULL, 0,
1995 speed_template_16_32);
1996 test_acipher_speed("ctr(serpent)", DECRYPT, sec, NULL, 0,
1997 speed_template_16_32);
Jussi Kivilinna87aae4b2011-10-18 13:32:39 +03001998 test_acipher_speed("lrw(serpent)", ENCRYPT, sec, NULL, 0,
1999 speed_template_32_48);
2000 test_acipher_speed("lrw(serpent)", DECRYPT, sec, NULL, 0,
2001 speed_template_32_48);
Jussi Kivilinna5209c072011-10-18 13:33:22 +03002002 test_acipher_speed("xts(serpent)", ENCRYPT, sec, NULL, 0,
2003 speed_template_32_64);
2004 test_acipher_speed("xts(serpent)", DECRYPT, sec, NULL, 0,
2005 speed_template_32_64);
Jussi Kivilinna7fb7fe42011-10-18 00:03:03 +03002006 break;
2007
Johannes Goetzfried107778b52012-05-28 15:54:24 +02002008 case 504:
2009 test_acipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0,
2010 speed_template_16_24_32);
2011 test_acipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0,
2012 speed_template_16_24_32);
2013 test_acipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0,
2014 speed_template_16_24_32);
2015 test_acipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0,
2016 speed_template_16_24_32);
2017 test_acipher_speed("ctr(twofish)", ENCRYPT, sec, NULL, 0,
2018 speed_template_16_24_32);
2019 test_acipher_speed("ctr(twofish)", DECRYPT, sec, NULL, 0,
2020 speed_template_16_24_32);
2021 test_acipher_speed("lrw(twofish)", ENCRYPT, sec, NULL, 0,
2022 speed_template_32_40_48);
2023 test_acipher_speed("lrw(twofish)", DECRYPT, sec, NULL, 0,
2024 speed_template_32_40_48);
2025 test_acipher_speed("xts(twofish)", ENCRYPT, sec, NULL, 0,
2026 speed_template_32_48_64);
2027 test_acipher_speed("xts(twofish)", DECRYPT, sec, NULL, 0,
2028 speed_template_32_48_64);
2029 break;
2030
Jussi Kivilinna31b4cd292012-06-12 16:52:04 +08002031 case 505:
2032 test_acipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0,
2033 speed_template_8);
2034 break;
2035
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002036 case 506:
2037 test_acipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0,
2038 speed_template_8_16);
2039 test_acipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0,
2040 speed_template_8_16);
2041 test_acipher_speed("cbc(cast5)", ENCRYPT, sec, NULL, 0,
2042 speed_template_8_16);
2043 test_acipher_speed("cbc(cast5)", DECRYPT, sec, NULL, 0,
2044 speed_template_8_16);
2045 test_acipher_speed("ctr(cast5)", ENCRYPT, sec, NULL, 0,
2046 speed_template_8_16);
2047 test_acipher_speed("ctr(cast5)", DECRYPT, sec, NULL, 0,
2048 speed_template_8_16);
2049 break;
2050
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002051 case 507:
2052 test_acipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0,
2053 speed_template_16_32);
2054 test_acipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0,
2055 speed_template_16_32);
2056 test_acipher_speed("cbc(cast6)", ENCRYPT, sec, NULL, 0,
2057 speed_template_16_32);
2058 test_acipher_speed("cbc(cast6)", DECRYPT, sec, NULL, 0,
2059 speed_template_16_32);
2060 test_acipher_speed("ctr(cast6)", ENCRYPT, sec, NULL, 0,
2061 speed_template_16_32);
2062 test_acipher_speed("ctr(cast6)", DECRYPT, sec, NULL, 0,
2063 speed_template_16_32);
2064 test_acipher_speed("lrw(cast6)", ENCRYPT, sec, NULL, 0,
2065 speed_template_32_48);
2066 test_acipher_speed("lrw(cast6)", DECRYPT, sec, NULL, 0,
2067 speed_template_32_48);
2068 test_acipher_speed("xts(cast6)", ENCRYPT, sec, NULL, 0,
2069 speed_template_32_64);
2070 test_acipher_speed("xts(cast6)", DECRYPT, sec, NULL, 0,
2071 speed_template_32_64);
2072 break;
2073
Jussi Kivilinnabf9c5182012-10-26 14:48:51 +03002074 case 508:
2075 test_acipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0,
2076 speed_template_16_32);
2077 test_acipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0,
2078 speed_template_16_32);
2079 test_acipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0,
2080 speed_template_16_32);
2081 test_acipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
2082 speed_template_16_32);
2083 test_acipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0,
2084 speed_template_16_32);
2085 test_acipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0,
2086 speed_template_16_32);
2087 test_acipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0,
2088 speed_template_32_48);
2089 test_acipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0,
2090 speed_template_32_48);
2091 test_acipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0,
2092 speed_template_32_64);
2093 test_acipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0,
2094 speed_template_32_64);
2095 break;
2096
Jussi Kivilinnaad8b7c32013-04-13 13:46:40 +03002097 case 509:
2098 test_acipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0,
2099 speed_template_8_32);
2100 test_acipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0,
2101 speed_template_8_32);
2102 test_acipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0,
2103 speed_template_8_32);
2104 test_acipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0,
2105 speed_template_8_32);
2106 test_acipher_speed("ctr(blowfish)", ENCRYPT, sec, NULL, 0,
2107 speed_template_8_32);
2108 test_acipher_speed("ctr(blowfish)", DECRYPT, sec, NULL, 0,
2109 speed_template_8_32);
2110 break;
2111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 case 1000:
2113 test_available();
2114 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 }
Jarod Wilson4e033a62009-05-27 15:10:21 +10002116
2117 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118}
2119
Herbert Xu7be380f2009-07-14 16:06:54 +08002120static int do_alg_test(const char *alg, u32 type, u32 mask)
Steffen Klasserta873a5f2009-06-19 19:46:53 +08002121{
Herbert Xu7be380f2009-07-14 16:06:54 +08002122 return crypto_has_alg(alg, type, mask ?: CRYPTO_ALG_TYPE_MASK) ?
2123 0 : -ENOENT;
Steffen Klasserta873a5f2009-06-19 19:46:53 +08002124}
2125
Kamalesh Babulal3af5b902008-04-05 21:00:57 +08002126static int __init tcrypt_mod_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127{
Mikko Herranene3a4ea42007-11-26 22:12:07 +08002128 int err = -ENOMEM;
Herbert Xuf139cfa2008-07-31 12:23:53 +08002129 int i;
Mikko Herranene3a4ea42007-11-26 22:12:07 +08002130
Herbert Xuf139cfa2008-07-31 12:23:53 +08002131 for (i = 0; i < TVMEMSIZE; i++) {
2132 tvmem[i] = (void *)__get_free_page(GFP_KERNEL);
2133 if (!tvmem[i])
2134 goto err_free_tv;
2135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Steffen Klasserta873a5f2009-06-19 19:46:53 +08002137 if (alg)
Herbert Xu7be380f2009-07-14 16:06:54 +08002138 err = do_alg_test(alg, type, mask);
Steffen Klasserta873a5f2009-06-19 19:46:53 +08002139 else
2140 err = do_test(mode);
2141
Jarod Wilson4e033a62009-05-27 15:10:21 +10002142 if (err) {
2143 printk(KERN_ERR "tcrypt: one or more tests failed!\n");
2144 goto err_free_tv;
2145 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
Jarod Wilson4e033a62009-05-27 15:10:21 +10002147 /* We intentionaly return -EAGAIN to prevent keeping the module,
2148 * unless we're running in fips mode. It does all its work from
2149 * init() and doesn't offer any runtime functionality, but in
2150 * the fips case, checking for a successful load is helpful.
Michal Ludvig14fdf472006-05-30 14:49:38 +10002151 * => we don't need it in the memory, do we?
2152 * -- mludvig
2153 */
Jarod Wilson4e033a62009-05-27 15:10:21 +10002154 if (!fips_enabled)
2155 err = -EAGAIN;
Mikko Herranene3a4ea42007-11-26 22:12:07 +08002156
Herbert Xuf139cfa2008-07-31 12:23:53 +08002157err_free_tv:
2158 for (i = 0; i < TVMEMSIZE && tvmem[i]; i++)
2159 free_page((unsigned long)tvmem[i]);
Mikko Herranene3a4ea42007-11-26 22:12:07 +08002160
2161 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162}
2163
2164/*
2165 * If an init function is provided, an exit function must also be provided
2166 * to allow module unload.
2167 */
Kamalesh Babulal3af5b902008-04-05 21:00:57 +08002168static void __exit tcrypt_mod_fini(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
Kamalesh Babulal3af5b902008-04-05 21:00:57 +08002170module_init(tcrypt_mod_init);
2171module_exit(tcrypt_mod_fini);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
Steffen Klasserta873a5f2009-06-19 19:46:53 +08002173module_param(alg, charp, 0);
2174module_param(type, uint, 0);
Herbert Xu7be380f2009-07-14 16:06:54 +08002175module_param(mask, uint, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176module_param(mode, int, 0);
Harald Welteebfd9bc2005-06-22 13:27:23 -07002177module_param(sec, uint, 0);
Herbert Xu6a179442005-06-22 13:29:03 -07002178MODULE_PARM_DESC(sec, "Length in seconds of speed tests "
2179 "(defaults to zero which uses CPU cycles instead)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
2181MODULE_LICENSE("GPL");
2182MODULE_DESCRIPTION("Quick & dirty crypto testing module");
2183MODULE_AUTHOR("James Morris <jmorris@intercode.com.au>");