]>
Commit | Line | Data |
---|---|---|
ef2736fc | 1 | /* |
1da177e4 LT |
2 | * 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 <[email protected]> | |
8 | * Copyright (c) 2002 Jean-Francois Dive <[email protected]> | |
e3a4ea4f | 9 | * Copyright (c) 2007 Nokia Siemens Networks |
1da177e4 | 10 | * |
69435b94 AH |
11 | * Updated RFC4106 AES-GCM testing. |
12 | * Authors: Aidan O'Mahony ([email protected]) | |
13 | * Adrian Hoban <[email protected]> | |
14 | * Gabriele Paoloni <[email protected]> | |
15 | * Tadeusz Struk ([email protected]) | |
16 | * Copyright (c) 2010, Intel Corporation. | |
17 | * | |
1da177e4 LT |
18 | * This program is free software; you can redistribute it and/or modify it |
19 | * under the terms of the GNU General Public License as published by the Free | |
ef2736fc | 20 | * Software Foundation; either version 2 of the License, or (at your option) |
1da177e4 LT |
21 | * any later version. |
22 | * | |
1da177e4 LT |
23 | */ |
24 | ||
18e33e6d | 25 | #include <crypto/hash.h> |
cba83564 | 26 | #include <linux/err.h> |
1da177e4 | 27 | #include <linux/init.h> |
5a0e3ad6 | 28 | #include <linux/gfp.h> |
1da177e4 | 29 | #include <linux/module.h> |
378f058c | 30 | #include <linux/scatterlist.h> |
1da177e4 | 31 | #include <linux/string.h> |
1da177e4 | 32 | #include <linux/moduleparam.h> |
ebfd9bcf | 33 | #include <linux/jiffies.h> |
6a17944c HX |
34 | #include <linux/timex.h> |
35 | #include <linux/interrupt.h> | |
1da177e4 | 36 | #include "tcrypt.h" |
4e033a6b | 37 | #include "internal.h" |
1da177e4 LT |
38 | |
39 | /* | |
f139cfa7 | 40 | * Need slab memory for testing (size in number of pages). |
1da177e4 | 41 | */ |
f139cfa7 | 42 | #define TVMEMSIZE 4 |
1da177e4 LT |
43 | |
44 | /* | |
da7f033d | 45 | * Used by test_cipher_speed() |
1da177e4 LT |
46 | */ |
47 | #define ENCRYPT 1 | |
48 | #define DECRYPT 0 | |
1da177e4 | 49 | |
ebfd9bcf HW |
50 | /* |
51 | * Used by test_cipher_speed() | |
52 | */ | |
6a17944c | 53 | static unsigned int sec; |
ebfd9bcf | 54 | |
a873a5f1 SK |
55 | static char *alg = NULL; |
56 | static u32 type; | |
7be380f7 | 57 | static u32 mask; |
1da177e4 | 58 | static int mode; |
f139cfa7 | 59 | static char *tvmem[TVMEMSIZE]; |
1da177e4 LT |
60 | |
61 | static char *check[] = { | |
cd12fb90 JL |
62 | "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", | |
90831639 | 65 | "khazad", "wp512", "wp384", "wp256", "tnepres", "xeta", "fcrypt", |
2998db37 | 66 | "camellia", "seed", "salsa20", "rmd128", "rmd160", "rmd256", "rmd320", |
0c01aed5 | 67 | "lzo", "cts", "zlib", NULL |
1da177e4 LT |
68 | }; |
69 | ||
f139cfa7 HX |
70 | static int test_cipher_jiffies(struct blkcipher_desc *desc, int enc, |
71 | struct scatterlist *sg, int blen, int sec) | |
6a17944c | 72 | { |
6a17944c HX |
73 | unsigned long start, end; |
74 | int bcount; | |
75 | int ret; | |
76 | ||
6a17944c HX |
77 | for (start = jiffies, end = start + sec * HZ, bcount = 0; |
78 | time_before(jiffies, end); bcount++) { | |
79 | if (enc) | |
cba83564 | 80 | ret = crypto_blkcipher_encrypt(desc, sg, sg, blen); |
6a17944c | 81 | else |
cba83564 | 82 | ret = crypto_blkcipher_decrypt(desc, sg, sg, blen); |
6a17944c HX |
83 | |
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 | ||
f139cfa7 HX |
93 | static int test_cipher_cycles(struct blkcipher_desc *desc, int enc, |
94 | struct scatterlist *sg, int blen) | |
6a17944c | 95 | { |
6a17944c HX |
96 | unsigned long cycles = 0; |
97 | int ret = 0; | |
98 | int i; | |
99 | ||
6a17944c HX |
100 | local_irq_disable(); |
101 | ||
102 | /* Warm-up run. */ | |
103 | for (i = 0; i < 4; i++) { | |
104 | if (enc) | |
cba83564 | 105 | ret = crypto_blkcipher_encrypt(desc, sg, sg, blen); |
6a17944c | 106 | else |
cba83564 | 107 | ret = crypto_blkcipher_decrypt(desc, sg, sg, blen); |
6a17944c HX |
108 | |
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) | |
cba83564 | 119 | ret = crypto_blkcipher_encrypt(desc, sg, sg, blen); |
6a17944c | 120 | else |
cba83564 | 121 | ret = crypto_blkcipher_decrypt(desc, sg, sg, blen); |
6a17944c HX |
122 | end = get_cycles(); |
123 | ||
124 | if (ret) | |
125 | goto out; | |
126 | ||
127 | cycles += end - start; | |
128 | } | |
129 | ||
130 | out: | |
131 | local_irq_enable(); | |
6a17944c HX |
132 | |
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 | ||
53f52d7a TC |
140 | static 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 | ||
163 | static 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 | ||
199 | out: | |
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 | ||
d5dc3927 | 209 | static u32 block_sizes[] = { 16, 64, 256, 1024, 8192, 0 }; |
53f52d7a TC |
210 | static u32 aead_sizes[] = { 16, 64, 256, 512, 1024, 2048, 4096, 8192, 0 }; |
211 | ||
212 | #define XBUFSIZE 8 | |
213 | #define MAX_IVLEN 32 | |
214 | ||
215 | static 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 | ||
227 | err_free_buf: | |
228 | while (i-- > 0) | |
229 | free_page((unsigned long)buf[i]); | |
230 | ||
231 | return -ENOMEM; | |
232 | } | |
233 | ||
234 | static 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 | ||
242 | static 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 | ||
263 | static 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 | ||
394 | out: | |
395 | crypto_free_aead(tfm); | |
396 | kfree(sg); | |
397 | out_nosg: | |
398 | testmgr_free_buf(xoutbuf); | |
399 | out_nooutbuf: | |
400 | testmgr_free_buf(axbuf); | |
401 | out_noaxbuf: | |
402 | testmgr_free_buf(xbuf); | |
403 | out_noxbuf: | |
404 | return; | |
405 | } | |
d5dc3927 | 406 | |
01b32324 | 407 | static void test_cipher_speed(const char *algo, int enc, unsigned int sec, |
da7f033d | 408 | struct cipher_speed_template *template, |
d5dc3927 | 409 | unsigned int tcount, u8 *keysize) |
ebfd9bcf | 410 | { |
dce907c0 | 411 | unsigned int ret, i, j, iv_len; |
f07ef1de DS |
412 | const char *key; |
413 | char iv[128]; | |
cba83564 HX |
414 | struct crypto_blkcipher *tfm; |
415 | struct blkcipher_desc desc; | |
416 | const char *e; | |
d5dc3927 | 417 | u32 *b_size; |
ebfd9bcf HW |
418 | |
419 | if (enc == ENCRYPT) | |
420 | e = "encryption"; | |
421 | else | |
422 | e = "decryption"; | |
ebfd9bcf | 423 | |
cba83564 | 424 | printk("\ntesting speed of %s %s\n", algo, e); |
ebfd9bcf | 425 | |
cba83564 | 426 | tfm = crypto_alloc_blkcipher(algo, 0, CRYPTO_ALG_ASYNC); |
ebfd9bcf | 427 | |
cba83564 HX |
428 | if (IS_ERR(tfm)) { |
429 | printk("failed to load transform for %s: %ld\n", algo, | |
430 | PTR_ERR(tfm)); | |
ebfd9bcf HW |
431 | return; |
432 | } | |
cba83564 HX |
433 | desc.tfm = tfm; |
434 | desc.flags = 0; | |
ebfd9bcf | 435 | |
d5dc3927 SS |
436 | i = 0; |
437 | do { | |
ebfd9bcf | 438 | |
d5dc3927 SS |
439 | b_size = block_sizes; |
440 | do { | |
f139cfa7 | 441 | struct scatterlist sg[TVMEMSIZE]; |
ebfd9bcf | 442 | |
f139cfa7 HX |
443 | 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); | |
d5dc3927 SS |
447 | goto out; |
448 | } | |
ebfd9bcf | 449 | |
d5dc3927 SS |
450 | printk("test %u (%d bit key, %d byte blocks): ", i, |
451 | *keysize * 8, *b_size); | |
452 | ||
f139cfa7 | 453 | memset(tvmem[0], 0xff, PAGE_SIZE); |
d5dc3927 SS |
454 | |
455 | /* set key, plain text and IV */ | |
da7f033d | 456 | key = tvmem[0]; |
d5dc3927 SS |
457 | for (j = 0; j < tcount; j++) { |
458 | if (template[j].klen == *keysize) { | |
459 | key = template[j].key; | |
460 | break; | |
461 | } | |
dce907c0 | 462 | } |
ebfd9bcf | 463 | |
d5dc3927 SS |
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 | } | |
ebfd9bcf | 470 | |
f139cfa7 HX |
471 | 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 | ||
d5dc3927 SS |
479 | 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 | } | |
ebfd9bcf | 484 | |
d5dc3927 | 485 | if (sec) |
f139cfa7 HX |
486 | ret = test_cipher_jiffies(&desc, enc, sg, |
487 | *b_size, sec); | |
d5dc3927 | 488 | else |
f139cfa7 HX |
489 | ret = test_cipher_cycles(&desc, enc, sg, |
490 | *b_size); | |
ebfd9bcf | 491 | |
d5dc3927 SS |
492 | if (ret) { |
493 | printk("%s() failed flags=%x\n", e, desc.flags); | |
494 | break; | |
495 | } | |
496 | b_size++; | |
497 | i++; | |
498 | } while (*b_size); | |
499 | keysize++; | |
500 | } while (*keysize); | |
ebfd9bcf HW |
501 | |
502 | out: | |
cba83564 | 503 | crypto_free_blkcipher(tfm); |
ebfd9bcf HW |
504 | } |
505 | ||
f139cfa7 HX |
506 | static int test_hash_jiffies_digest(struct hash_desc *desc, |
507 | struct scatterlist *sg, int blen, | |
e9d41164 HX |
508 | char *out, int sec) |
509 | { | |
e9d41164 HX |
510 | unsigned long start, end; |
511 | int bcount; | |
512 | int ret; | |
513 | ||
514 | for (start = jiffies, end = start + sec * HZ, bcount = 0; | |
515 | time_before(jiffies, end); bcount++) { | |
e9d41164 HX |
516 | ret = crypto_hash_digest(desc, sg, blen, out); |
517 | if (ret) | |
518 | return ret; | |
519 | } | |
520 | ||
521 | printk("%6u opers/sec, %9lu bytes/sec\n", | |
522 | bcount / sec, ((long)bcount * blen) / sec); | |
523 | ||
524 | return 0; | |
525 | } | |
526 | ||
f139cfa7 HX |
527 | static int test_hash_jiffies(struct hash_desc *desc, struct scatterlist *sg, |
528 | int blen, int plen, char *out, int sec) | |
e8057928 | 529 | { |
e8057928 ML |
530 | unsigned long start, end; |
531 | int bcount, pcount; | |
e9d41164 HX |
532 | int ret; |
533 | ||
534 | if (plen == blen) | |
f139cfa7 | 535 | return test_hash_jiffies_digest(desc, sg, blen, out, sec); |
a5a613a4 | 536 | |
e8057928 ML |
537 | for (start = jiffies, end = start + sec * HZ, bcount = 0; |
538 | time_before(jiffies, end); bcount++) { | |
e9d41164 HX |
539 | ret = crypto_hash_init(desc); |
540 | if (ret) | |
541 | return ret; | |
e8057928 | 542 | for (pcount = 0; pcount < blen; pcount += plen) { |
e9d41164 HX |
543 | ret = crypto_hash_update(desc, sg, plen); |
544 | if (ret) | |
545 | return ret; | |
e8057928 ML |
546 | } |
547 | /* we assume there is enough space in 'out' for the result */ | |
e9d41164 HX |
548 | ret = crypto_hash_final(desc, out); |
549 | if (ret) | |
550 | return ret; | |
e8057928 ML |
551 | } |
552 | ||
553 | printk("%6u opers/sec, %9lu bytes/sec\n", | |
554 | bcount / sec, ((long)bcount * blen) / sec); | |
555 | ||
e9d41164 HX |
556 | return 0; |
557 | } | |
558 | ||
f139cfa7 HX |
559 | static int test_hash_cycles_digest(struct hash_desc *desc, |
560 | struct scatterlist *sg, int blen, char *out) | |
e9d41164 | 561 | { |
e9d41164 HX |
562 | unsigned long cycles = 0; |
563 | int i; | |
564 | int ret; | |
565 | ||
e9d41164 HX |
566 | local_irq_disable(); |
567 | ||
568 | /* Warm-up run. */ | |
569 | for (i = 0; i < 4; i++) { | |
e9d41164 HX |
570 | ret = crypto_hash_digest(desc, sg, blen, out); |
571 | if (ret) | |
572 | goto out; | |
573 | } | |
574 | ||
575 | /* The real thing. */ | |
576 | for (i = 0; i < 8; i++) { | |
577 | cycles_t start, end; | |
578 | ||
579 | start = get_cycles(); | |
580 | ||
e9d41164 HX |
581 | ret = crypto_hash_digest(desc, sg, blen, out); |
582 | if (ret) | |
583 | goto out; | |
584 | ||
585 | end = get_cycles(); | |
586 | ||
587 | cycles += end - start; | |
588 | } | |
589 | ||
590 | out: | |
591 | local_irq_enable(); | |
e9d41164 HX |
592 | |
593 | if (ret) | |
594 | return ret; | |
595 | ||
596 | printk("%6lu cycles/operation, %4lu cycles/byte\n", | |
597 | cycles / 8, cycles / (8 * blen)); | |
598 | ||
599 | return 0; | |
e8057928 ML |
600 | } |
601 | ||
f139cfa7 HX |
602 | static int test_hash_cycles(struct hash_desc *desc, struct scatterlist *sg, |
603 | int blen, int plen, char *out) | |
e8057928 | 604 | { |
e8057928 ML |
605 | unsigned long cycles = 0; |
606 | int i, pcount; | |
e9d41164 HX |
607 | int ret; |
608 | ||
609 | if (plen == blen) | |
f139cfa7 | 610 | return test_hash_cycles_digest(desc, sg, blen, out); |
a5a613a4 | 611 | |
e8057928 ML |
612 | local_irq_disable(); |
613 | ||
614 | /* Warm-up run. */ | |
615 | for (i = 0; i < 4; i++) { | |
e9d41164 HX |
616 | ret = crypto_hash_init(desc); |
617 | if (ret) | |
618 | goto out; | |
e8057928 | 619 | for (pcount = 0; pcount < blen; pcount += plen) { |
e9d41164 HX |
620 | ret = crypto_hash_update(desc, sg, plen); |
621 | if (ret) | |
622 | goto out; | |
e8057928 | 623 | } |
29059d12 | 624 | ret = crypto_hash_final(desc, out); |
e9d41164 HX |
625 | if (ret) |
626 | goto out; | |
e8057928 ML |
627 | } |
628 | ||
629 | /* The real thing. */ | |
630 | for (i = 0; i < 8; i++) { | |
631 | cycles_t start, end; | |
632 | ||
e8057928 ML |
633 | start = get_cycles(); |
634 | ||
e9d41164 HX |
635 | ret = crypto_hash_init(desc); |
636 | if (ret) | |
637 | goto out; | |
e8057928 | 638 | for (pcount = 0; pcount < blen; pcount += plen) { |
e9d41164 HX |
639 | ret = crypto_hash_update(desc, sg, plen); |
640 | if (ret) | |
641 | goto out; | |
e8057928 | 642 | } |
e9d41164 HX |
643 | ret = crypto_hash_final(desc, out); |
644 | if (ret) | |
645 | goto out; | |
e8057928 ML |
646 | |
647 | end = get_cycles(); | |
648 | ||
649 | cycles += end - start; | |
650 | } | |
651 | ||
e9d41164 | 652 | out: |
e8057928 | 653 | local_irq_enable(); |
e8057928 | 654 | |
e9d41164 HX |
655 | if (ret) |
656 | return ret; | |
657 | ||
e8057928 ML |
658 | printk("%6lu cycles/operation, %4lu cycles/byte\n", |
659 | cycles / 8, cycles / (8 * blen)); | |
660 | ||
e9d41164 | 661 | return 0; |
e8057928 ML |
662 | } |
663 | ||
beb63da7 DM |
664 | static 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 | ||
01b32324 HX |
675 | static void test_hash_speed(const char *algo, unsigned int sec, |
676 | struct hash_speed *speed) | |
e8057928 | 677 | { |
f139cfa7 | 678 | struct scatterlist sg[TVMEMSIZE]; |
e9d41164 HX |
679 | struct crypto_hash *tfm; |
680 | struct hash_desc desc; | |
376bacb0 | 681 | static char output[1024]; |
e8057928 | 682 | int i; |
e9d41164 | 683 | int ret; |
e8057928 | 684 | |
376bacb0 | 685 | printk(KERN_INFO "\ntesting speed of %s\n", algo); |
e8057928 | 686 | |
e9d41164 | 687 | tfm = crypto_alloc_hash(algo, 0, CRYPTO_ALG_ASYNC); |
e8057928 | 688 | |
e9d41164 | 689 | if (IS_ERR(tfm)) { |
376bacb0 | 690 | printk(KERN_ERR "failed to load transform for %s: %ld\n", algo, |
e9d41164 | 691 | PTR_ERR(tfm)); |
e8057928 ML |
692 | return; |
693 | } | |
694 | ||
e9d41164 HX |
695 | desc.tfm = tfm; |
696 | desc.flags = 0; | |
697 | ||
698 | if (crypto_hash_digestsize(tfm) > sizeof(output)) { | |
376bacb0 | 699 | printk(KERN_ERR "digestsize(%u) > outputbuffer(%zu)\n", |
e9d41164 | 700 | crypto_hash_digestsize(tfm), sizeof(output)); |
e8057928 ML |
701 | goto out; |
702 | } | |
703 | ||
beb63da7 | 704 | test_hash_sg_init(sg); |
e8057928 | 705 | for (i = 0; speed[i].blen != 0; i++) { |
f139cfa7 | 706 | if (speed[i].blen > TVMEMSIZE * PAGE_SIZE) { |
376bacb0 FS |
707 | printk(KERN_ERR |
708 | "template (%u) too big for tvmem (%lu)\n", | |
f139cfa7 | 709 | speed[i].blen, TVMEMSIZE * PAGE_SIZE); |
e8057928 ML |
710 | goto out; |
711 | } | |
712 | ||
18bcc919 YH |
713 | if (speed[i].klen) |
714 | crypto_hash_setkey(tfm, tvmem[0], speed[i].klen); | |
715 | ||
376bacb0 FS |
716 | printk(KERN_INFO "test%3u " |
717 | "(%5u byte blocks,%5u bytes per update,%4u updates): ", | |
e8057928 ML |
718 | i, speed[i].blen, speed[i].plen, speed[i].blen / speed[i].plen); |
719 | ||
e8057928 | 720 | if (sec) |
f139cfa7 | 721 | ret = test_hash_jiffies(&desc, sg, speed[i].blen, |
e9d41164 | 722 | speed[i].plen, output, sec); |
e8057928 | 723 | else |
f139cfa7 | 724 | ret = test_hash_cycles(&desc, sg, speed[i].blen, |
e9d41164 HX |
725 | speed[i].plen, output); |
726 | ||
727 | if (ret) { | |
376bacb0 | 728 | printk(KERN_ERR "hashing failed ret=%d\n", ret); |
e9d41164 HX |
729 | break; |
730 | } | |
e8057928 ML |
731 | } |
732 | ||
733 | out: | |
e9d41164 | 734 | crypto_free_hash(tfm); |
e8057928 ML |
735 | } |
736 | ||
beb63da7 DM |
737 | struct tcrypt_result { |
738 | struct completion completion; | |
739 | int err; | |
740 | }; | |
741 | ||
742 | static 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 | ||
753 | static 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; | |
16735d02 | 761 | reinit_completion(&tr->completion); |
beb63da7 DM |
762 | } |
763 | return ret; | |
764 | } | |
765 | ||
766 | static 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 | ||
786 | static 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 | ||
818 | static 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 | ||
846 | out: | |
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 | ||
856 | static 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 | ||
903 | out: | |
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 | ||
913 | static 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 | ||
977 | out: | |
978 | crypto_free_ahash(tfm); | |
979 | } | |
980 | ||
3f3baf35 JK |
981 | static 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; | |
16735d02 | 989 | reinit_completion(&tr->completion); |
3f3baf35 JK |
990 | } |
991 | ||
992 | return ret; | |
993 | } | |
994 | ||
995 | static 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 | ||
1020 | static 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 | ||
1059 | out: | |
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 | ||
1067 | static 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 | { | |
de197533 | 1071 | unsigned int ret, i, j, k, iv_len; |
3f3baf35 JK |
1072 | 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); | |
de197533 NR |
1145 | |
1146 | k = *keysize + *b_size; | |
1147 | if (k > PAGE_SIZE) { | |
1148 | sg_set_buf(sg, tvmem[0] + *keysize, | |
3f3baf35 | 1149 | PAGE_SIZE - *keysize); |
de197533 NR |
1150 | 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); | |
3f3baf35 JK |
1162 | } |
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 | ||
1188 | out_free_req: | |
1189 | ablkcipher_request_free(req); | |
1190 | out: | |
1191 | crypto_free_ablkcipher(tfm); | |
1192 | } | |
1193 | ||
ef2736fc | 1194 | static void test_available(void) |
1da177e4 LT |
1195 | { |
1196 | char **name = check; | |
ef2736fc | 1197 | |
1da177e4 LT |
1198 | while (*name) { |
1199 | printk("alg %s ", *name); | |
6158efc0 | 1200 | printk(crypto_has_alg(*name, 0, 0) ? |
e4d5b79c | 1201 | "found\n" : "not found\n"); |
1da177e4 | 1202 | name++; |
ef2736fc | 1203 | } |
1da177e4 LT |
1204 | } |
1205 | ||
01b32324 HX |
1206 | static inline int tcrypt_test(const char *alg) |
1207 | { | |
4e033a6b JW |
1208 | 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; | |
01b32324 HX |
1215 | } |
1216 | ||
4e033a6b | 1217 | static int do_test(int m) |
01b32324 HX |
1218 | { |
1219 | int i; | |
4e033a6b | 1220 | int ret = 0; |
01b32324 HX |
1221 | |
1222 | switch (m) { | |
1da177e4 | 1223 | case 0: |
01b32324 | 1224 | for (i = 1; i < 200; i++) |
4e033a6b | 1225 | ret += do_test(i); |
1da177e4 LT |
1226 | break; |
1227 | ||
1228 | case 1: | |
4e033a6b | 1229 | ret += tcrypt_test("md5"); |
1da177e4 LT |
1230 | break; |
1231 | ||
1232 | case 2: | |
4e033a6b | 1233 | ret += tcrypt_test("sha1"); |
1da177e4 LT |
1234 | break; |
1235 | ||
1236 | case 3: | |
4e033a6b JW |
1237 | ret += tcrypt_test("ecb(des)"); |
1238 | ret += tcrypt_test("cbc(des)"); | |
8163fc30 | 1239 | ret += tcrypt_test("ctr(des)"); |
1da177e4 LT |
1240 | break; |
1241 | ||
1242 | case 4: | |
4e033a6b JW |
1243 | ret += tcrypt_test("ecb(des3_ede)"); |
1244 | ret += tcrypt_test("cbc(des3_ede)"); | |
e080b17a | 1245 | ret += tcrypt_test("ctr(des3_ede)"); |
1da177e4 LT |
1246 | break; |
1247 | ||
1248 | case 5: | |
4e033a6b | 1249 | ret += tcrypt_test("md4"); |
1da177e4 | 1250 | break; |
ef2736fc | 1251 | |
1da177e4 | 1252 | case 6: |
4e033a6b | 1253 | ret += tcrypt_test("sha256"); |
1da177e4 | 1254 | break; |
ef2736fc | 1255 | |
1da177e4 | 1256 | case 7: |
4e033a6b JW |
1257 | ret += tcrypt_test("ecb(blowfish)"); |
1258 | ret += tcrypt_test("cbc(blowfish)"); | |
85b63e34 | 1259 | ret += tcrypt_test("ctr(blowfish)"); |
1da177e4 LT |
1260 | break; |
1261 | ||
1262 | case 8: | |
4e033a6b JW |
1263 | ret += tcrypt_test("ecb(twofish)"); |
1264 | ret += tcrypt_test("cbc(twofish)"); | |
573da620 | 1265 | ret += tcrypt_test("ctr(twofish)"); |
bee3a90e | 1266 | ret += tcrypt_test("lrw(twofish)"); |
131f7541 | 1267 | ret += tcrypt_test("xts(twofish)"); |
1da177e4 | 1268 | break; |
ef2736fc | 1269 | |
1da177e4 | 1270 | case 9: |
4e033a6b | 1271 | ret += tcrypt_test("ecb(serpent)"); |
9d25917d JK |
1272 | ret += tcrypt_test("cbc(serpent)"); |
1273 | ret += tcrypt_test("ctr(serpent)"); | |
87aae4bf | 1274 | ret += tcrypt_test("lrw(serpent)"); |
5209c07a | 1275 | ret += tcrypt_test("xts(serpent)"); |
1da177e4 LT |
1276 | break; |
1277 | ||
1278 | case 10: | |
4e033a6b JW |
1279 | 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))"); | |
1da177e4 LT |
1285 | break; |
1286 | ||
1287 | case 11: | |
4e033a6b | 1288 | ret += tcrypt_test("sha384"); |
1da177e4 | 1289 | break; |
ef2736fc | 1290 | |
1da177e4 | 1291 | case 12: |
4e033a6b | 1292 | ret += tcrypt_test("sha512"); |
1da177e4 LT |
1293 | break; |
1294 | ||
1295 | case 13: | |
4e033a6b | 1296 | ret += tcrypt_test("deflate"); |
1da177e4 LT |
1297 | break; |
1298 | ||
1299 | case 14: | |
4e033a6b | 1300 | ret += tcrypt_test("ecb(cast5)"); |
a2c58260 JG |
1301 | ret += tcrypt_test("cbc(cast5)"); |
1302 | ret += tcrypt_test("ctr(cast5)"); | |
1da177e4 LT |
1303 | break; |
1304 | ||
1305 | case 15: | |
4e033a6b | 1306 | ret += tcrypt_test("ecb(cast6)"); |
9b8b0405 JG |
1307 | ret += tcrypt_test("cbc(cast6)"); |
1308 | ret += tcrypt_test("ctr(cast6)"); | |
1309 | ret += tcrypt_test("lrw(cast6)"); | |
1310 | ret += tcrypt_test("xts(cast6)"); | |
1da177e4 LT |
1311 | break; |
1312 | ||
1313 | case 16: | |
4e033a6b | 1314 | ret += tcrypt_test("ecb(arc4)"); |
1da177e4 LT |
1315 | break; |
1316 | ||
1317 | case 17: | |
4e033a6b | 1318 | ret += tcrypt_test("michael_mic"); |
1da177e4 LT |
1319 | break; |
1320 | ||
1321 | case 18: | |
4e033a6b | 1322 | ret += tcrypt_test("crc32c"); |
1da177e4 LT |
1323 | break; |
1324 | ||
1325 | case 19: | |
4e033a6b | 1326 | ret += tcrypt_test("ecb(tea)"); |
1da177e4 LT |
1327 | break; |
1328 | ||
1329 | case 20: | |
4e033a6b | 1330 | ret += tcrypt_test("ecb(xtea)"); |
1da177e4 LT |
1331 | break; |
1332 | ||
1333 | case 21: | |
4e033a6b | 1334 | ret += tcrypt_test("ecb(khazad)"); |
1da177e4 LT |
1335 | break; |
1336 | ||
1337 | case 22: | |
4e033a6b | 1338 | ret += tcrypt_test("wp512"); |
1da177e4 LT |
1339 | break; |
1340 | ||
1341 | case 23: | |
4e033a6b | 1342 | ret += tcrypt_test("wp384"); |
1da177e4 LT |
1343 | break; |
1344 | ||
1345 | case 24: | |
4e033a6b | 1346 | ret += tcrypt_test("wp256"); |
1da177e4 LT |
1347 | break; |
1348 | ||
1349 | case 25: | |
4e033a6b | 1350 | ret += tcrypt_test("ecb(tnepres)"); |
1da177e4 LT |
1351 | break; |
1352 | ||
1353 | case 26: | |
4e033a6b JW |
1354 | ret += tcrypt_test("ecb(anubis)"); |
1355 | ret += tcrypt_test("cbc(anubis)"); | |
1da177e4 LT |
1356 | break; |
1357 | ||
1358 | case 27: | |
4e033a6b | 1359 | ret += tcrypt_test("tgr192"); |
1da177e4 LT |
1360 | break; |
1361 | ||
1362 | case 28: | |
4e033a6b | 1363 | ret += tcrypt_test("tgr160"); |
1da177e4 LT |
1364 | break; |
1365 | ||
1366 | case 29: | |
4e033a6b | 1367 | ret += tcrypt_test("tgr128"); |
1da177e4 | 1368 | break; |
2998db37 | 1369 | |
fb4f10ed | 1370 | case 30: |
4e033a6b | 1371 | ret += tcrypt_test("ecb(xeta)"); |
fb4f10ed | 1372 | break; |
1da177e4 | 1373 | |
90831639 | 1374 | case 31: |
4e033a6b | 1375 | ret += tcrypt_test("pcbc(fcrypt)"); |
90831639 DH |
1376 | break; |
1377 | ||
02ab5a70 | 1378 | case 32: |
4e033a6b JW |
1379 | ret += tcrypt_test("ecb(camellia)"); |
1380 | ret += tcrypt_test("cbc(camellia)"); | |
54216bbd JK |
1381 | ret += tcrypt_test("ctr(camellia)"); |
1382 | ret += tcrypt_test("lrw(camellia)"); | |
1383 | ret += tcrypt_test("xts(camellia)"); | |
02ab5a70 | 1384 | break; |
93b5e86a | 1385 | |
cd12fb90 | 1386 | case 33: |
4e033a6b | 1387 | ret += tcrypt_test("sha224"); |
cd12fb90 | 1388 | break; |
02ab5a70 | 1389 | |
2407d608 | 1390 | case 34: |
4e033a6b | 1391 | ret += tcrypt_test("salsa20"); |
2407d608 TSH |
1392 | break; |
1393 | ||
8df213d9 | 1394 | case 35: |
4e033a6b | 1395 | ret += tcrypt_test("gcm(aes)"); |
8df213d9 HX |
1396 | break; |
1397 | ||
0b77abb3 | 1398 | case 36: |
4e033a6b | 1399 | ret += tcrypt_test("lzo"); |
0b77abb3 ZS |
1400 | break; |
1401 | ||
93cc74e0 | 1402 | case 37: |
4e033a6b | 1403 | ret += tcrypt_test("ccm(aes)"); |
93cc74e0 JL |
1404 | break; |
1405 | ||
76cb9521 | 1406 | case 38: |
4e033a6b | 1407 | ret += tcrypt_test("cts(cbc(aes))"); |
76cb9521 KC |
1408 | break; |
1409 | ||
fd4adf1a | 1410 | case 39: |
4e033a6b | 1411 | ret += tcrypt_test("rmd128"); |
fd4adf1a AKR |
1412 | break; |
1413 | ||
1414 | case 40: | |
4e033a6b | 1415 | ret += tcrypt_test("rmd160"); |
fd4adf1a AKR |
1416 | break; |
1417 | ||
2998db37 | 1418 | case 41: |
4e033a6b | 1419 | ret += tcrypt_test("rmd256"); |
2998db37 AKR |
1420 | break; |
1421 | ||
1422 | case 42: | |
4e033a6b | 1423 | ret += tcrypt_test("rmd320"); |
01b32324 HX |
1424 | break; |
1425 | ||
1426 | case 43: | |
4e033a6b | 1427 | ret += tcrypt_test("ecb(seed)"); |
2998db37 AKR |
1428 | break; |
1429 | ||
0c01aed5 | 1430 | case 44: |
4e033a6b | 1431 | ret += tcrypt_test("zlib"); |
0c01aed5 GU |
1432 | break; |
1433 | ||
5d667322 | 1434 | case 45: |
4e033a6b | 1435 | ret += tcrypt_test("rfc4309(ccm(aes))"); |
5d667322 JW |
1436 | break; |
1437 | ||
54216bbd JK |
1438 | case 46: |
1439 | ret += tcrypt_test("ghash"); | |
1440 | break; | |
1441 | ||
68411521 HX |
1442 | case 47: |
1443 | ret += tcrypt_test("crct10dif"); | |
1444 | break; | |
1445 | ||
1da177e4 | 1446 | case 100: |
4e033a6b | 1447 | ret += tcrypt_test("hmac(md5)"); |
1da177e4 | 1448 | break; |
ef2736fc | 1449 | |
1da177e4 | 1450 | case 101: |
4e033a6b | 1451 | ret += tcrypt_test("hmac(sha1)"); |
1da177e4 | 1452 | break; |
ef2736fc | 1453 | |
1da177e4 | 1454 | case 102: |
4e033a6b | 1455 | ret += tcrypt_test("hmac(sha256)"); |
1da177e4 LT |
1456 | break; |
1457 | ||
a28091ae | 1458 | case 103: |
4e033a6b | 1459 | ret += tcrypt_test("hmac(sha384)"); |
a28091ae AD |
1460 | break; |
1461 | ||
1462 | case 104: | |
4e033a6b | 1463 | ret += tcrypt_test("hmac(sha512)"); |
a28091ae | 1464 | break; |
38ed9ab2 | 1465 | |
cd12fb90 | 1466 | case 105: |
4e033a6b | 1467 | ret += tcrypt_test("hmac(sha224)"); |
cd12fb90 | 1468 | break; |
1da177e4 | 1469 | |
38ed9ab2 | 1470 | case 106: |
4e033a6b | 1471 | ret += tcrypt_test("xcbc(aes)"); |
38ed9ab2 HX |
1472 | break; |
1473 | ||
fd4adf1a | 1474 | case 107: |
4e033a6b | 1475 | ret += tcrypt_test("hmac(rmd128)"); |
fd4adf1a AKR |
1476 | break; |
1477 | ||
1478 | case 108: | |
4e033a6b | 1479 | ret += tcrypt_test("hmac(rmd160)"); |
fd4adf1a AKR |
1480 | break; |
1481 | ||
f1939f7c SW |
1482 | case 109: |
1483 | ret += tcrypt_test("vmac(aes)"); | |
1484 | break; | |
93b5e86a | 1485 | |
a482b081 SZ |
1486 | case 110: |
1487 | ret += tcrypt_test("hmac(crc32)"); | |
1488 | break; | |
f1939f7c | 1489 | |
e08ca2da | 1490 | case 150: |
4e033a6b | 1491 | ret += tcrypt_test("ansi_cprng"); |
e08ca2da JW |
1492 | break; |
1493 | ||
69435b94 AH |
1494 | case 151: |
1495 | ret += tcrypt_test("rfc4106(gcm(aes))"); | |
1496 | break; | |
1497 | ||
e9b7441a JK |
1498 | case 152: |
1499 | ret += tcrypt_test("rfc4543(gcm(aes))"); | |
1500 | break; | |
1501 | ||
93b5e86a JK |
1502 | case 153: |
1503 | ret += tcrypt_test("cmac(aes)"); | |
1504 | break; | |
1505 | ||
1506 | case 154: | |
1507 | ret += tcrypt_test("cmac(des3_ede)"); | |
1508 | break; | |
1509 | ||
bbf9c893 HG |
1510 | case 155: |
1511 | ret += tcrypt_test("authenc(hmac(sha1),cbc(aes))"); | |
1512 | break; | |
1513 | ||
ebfd9bcf | 1514 | case 200: |
cba83564 | 1515 | test_cipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0, |
477035c2 | 1516 | speed_template_16_24_32); |
cba83564 | 1517 | test_cipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0, |
477035c2 | 1518 | speed_template_16_24_32); |
cba83564 | 1519 | test_cipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0, |
477035c2 | 1520 | speed_template_16_24_32); |
cba83564 | 1521 | test_cipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0, |
477035c2 | 1522 | speed_template_16_24_32); |
f3d1044c | 1523 | test_cipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0, |
477035c2 | 1524 | speed_template_32_40_48); |
f3d1044c | 1525 | test_cipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0, |
477035c2 | 1526 | speed_template_32_40_48); |
f19f5111 | 1527 | test_cipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0, |
477035c2 | 1528 | speed_template_32_48_64); |
f19f5111 | 1529 | test_cipher_speed("xts(aes)", DECRYPT, sec, NULL, 0, |
477035c2 | 1530 | speed_template_32_48_64); |
9996e342 JG |
1531 | 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); | |
ebfd9bcf HW |
1535 | break; |
1536 | ||
1537 | case 201: | |
cba83564 | 1538 | test_cipher_speed("ecb(des3_ede)", ENCRYPT, sec, |
da7f033d | 1539 | des3_speed_template, DES3_SPEED_VECTORS, |
477035c2 | 1540 | speed_template_24); |
cba83564 | 1541 | test_cipher_speed("ecb(des3_ede)", DECRYPT, sec, |
da7f033d | 1542 | des3_speed_template, DES3_SPEED_VECTORS, |
477035c2 | 1543 | speed_template_24); |
cba83564 | 1544 | test_cipher_speed("cbc(des3_ede)", ENCRYPT, sec, |
da7f033d | 1545 | des3_speed_template, DES3_SPEED_VECTORS, |
477035c2 | 1546 | speed_template_24); |
cba83564 | 1547 | test_cipher_speed("cbc(des3_ede)", DECRYPT, sec, |
da7f033d | 1548 | des3_speed_template, DES3_SPEED_VECTORS, |
477035c2 | 1549 | speed_template_24); |
ebfd9bcf HW |
1550 | break; |
1551 | ||
1552 | case 202: | |
cba83564 | 1553 | test_cipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0, |
477035c2 | 1554 | speed_template_16_24_32); |
cba83564 | 1555 | test_cipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0, |
477035c2 | 1556 | speed_template_16_24_32); |
cba83564 | 1557 | test_cipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0, |
477035c2 | 1558 | speed_template_16_24_32); |
cba83564 | 1559 | test_cipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0, |
477035c2 | 1560 | speed_template_16_24_32); |
ee5002a5 JK |
1561 | 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); | |
bee3a90e JK |
1565 | 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); | |
131f7541 JK |
1569 | 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); | |
ebfd9bcf HW |
1573 | break; |
1574 | ||
1575 | case 203: | |
cba83564 | 1576 | test_cipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0, |
477035c2 | 1577 | speed_template_8_32); |
cba83564 | 1578 | test_cipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0, |
477035c2 | 1579 | speed_template_8_32); |
cba83564 | 1580 | test_cipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0, |
477035c2 | 1581 | speed_template_8_32); |
cba83564 | 1582 | test_cipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0, |
477035c2 | 1583 | speed_template_8_32); |
7d47b86c JK |
1584 | 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); | |
ebfd9bcf HW |
1588 | break; |
1589 | ||
1590 | case 204: | |
cba83564 | 1591 | test_cipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0, |
477035c2 | 1592 | speed_template_8); |
cba83564 | 1593 | test_cipher_speed("ecb(des)", DECRYPT, sec, NULL, 0, |
477035c2 | 1594 | speed_template_8); |
cba83564 | 1595 | test_cipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0, |
477035c2 | 1596 | speed_template_8); |
cba83564 | 1597 | test_cipher_speed("cbc(des)", DECRYPT, sec, NULL, 0, |
477035c2 | 1598 | speed_template_8); |
ebfd9bcf HW |
1599 | break; |
1600 | ||
02ab5a70 NT |
1601 | case 205: |
1602 | test_cipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0, | |
477035c2 | 1603 | speed_template_16_24_32); |
02ab5a70 | 1604 | test_cipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0, |
477035c2 | 1605 | speed_template_16_24_32); |
02ab5a70 | 1606 | test_cipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0, |
477035c2 | 1607 | speed_template_16_24_32); |
02ab5a70 | 1608 | test_cipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0, |
477035c2 | 1609 | speed_template_16_24_32); |
4de59337 JK |
1610 | 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); | |
02ab5a70 NT |
1622 | break; |
1623 | ||
5de8f1b5 TSH |
1624 | case 206: |
1625 | test_cipher_speed("salsa20", ENCRYPT, sec, NULL, 0, | |
477035c2 | 1626 | speed_template_16_32); |
5de8f1b5 TSH |
1627 | break; |
1628 | ||
7fb7fe44 JK |
1629 | 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); | |
87aae4bf JK |
1642 | 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); | |
5209c07a JK |
1646 | 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); | |
7fb7fe44 JK |
1650 | break; |
1651 | ||
31b4cd29 JK |
1652 | case 208: |
1653 | test_cipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0, | |
1654 | speed_template_8); | |
1655 | break; | |
1656 | ||
a2c58260 JG |
1657 | 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 | ||
9b8b0405 JG |
1672 | 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 | ||
53f52d7a TC |
1695 | case 211: |
1696 | test_aead_speed("rfc4106(gcm(aes))", ENCRYPT, sec, | |
1697 | NULL, 0, 16, 8, aead_speed_template_20); | |
1698 | break; | |
1699 | ||
e8057928 ML |
1700 | case 300: |
1701 | /* fall through */ | |
1702 | ||
1703 | case 301: | |
e9d41164 | 1704 | test_hash_speed("md4", sec, generic_hash_speed_template); |
e8057928 ML |
1705 | if (mode > 300 && mode < 400) break; |
1706 | ||
1707 | case 302: | |
e9d41164 | 1708 | test_hash_speed("md5", sec, generic_hash_speed_template); |
e8057928 ML |
1709 | if (mode > 300 && mode < 400) break; |
1710 | ||
1711 | case 303: | |
e9d41164 | 1712 | test_hash_speed("sha1", sec, generic_hash_speed_template); |
e8057928 ML |
1713 | if (mode > 300 && mode < 400) break; |
1714 | ||
1715 | case 304: | |
e9d41164 | 1716 | test_hash_speed("sha256", sec, generic_hash_speed_template); |
e8057928 ML |
1717 | if (mode > 300 && mode < 400) break; |
1718 | ||
1719 | case 305: | |
e9d41164 | 1720 | test_hash_speed("sha384", sec, generic_hash_speed_template); |
e8057928 ML |
1721 | if (mode > 300 && mode < 400) break; |
1722 | ||
1723 | case 306: | |
e9d41164 | 1724 | test_hash_speed("sha512", sec, generic_hash_speed_template); |
e8057928 ML |
1725 | if (mode > 300 && mode < 400) break; |
1726 | ||
1727 | case 307: | |
e9d41164 | 1728 | test_hash_speed("wp256", sec, generic_hash_speed_template); |
e8057928 ML |
1729 | if (mode > 300 && mode < 400) break; |
1730 | ||
1731 | case 308: | |
e9d41164 | 1732 | test_hash_speed("wp384", sec, generic_hash_speed_template); |
e8057928 ML |
1733 | if (mode > 300 && mode < 400) break; |
1734 | ||
1735 | case 309: | |
e9d41164 | 1736 | test_hash_speed("wp512", sec, generic_hash_speed_template); |
e8057928 ML |
1737 | if (mode > 300 && mode < 400) break; |
1738 | ||
1739 | case 310: | |
e9d41164 | 1740 | test_hash_speed("tgr128", sec, generic_hash_speed_template); |
e8057928 ML |
1741 | if (mode > 300 && mode < 400) break; |
1742 | ||
1743 | case 311: | |
e9d41164 | 1744 | test_hash_speed("tgr160", sec, generic_hash_speed_template); |
e8057928 ML |
1745 | if (mode > 300 && mode < 400) break; |
1746 | ||
1747 | case 312: | |
e9d41164 | 1748 | test_hash_speed("tgr192", sec, generic_hash_speed_template); |
e8057928 ML |
1749 | if (mode > 300 && mode < 400) break; |
1750 | ||
cd12fb90 JL |
1751 | case 313: |
1752 | test_hash_speed("sha224", sec, generic_hash_speed_template); | |
1753 | if (mode > 300 && mode < 400) break; | |
1754 | ||
fd4adf1a AKR |
1755 | 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 | ||
2998db37 AKR |
1763 | 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 | ||
18bcc919 YH |
1771 | case 318: |
1772 | test_hash_speed("ghash-generic", sec, hash_speed_template_16); | |
1773 | if (mode > 300 && mode < 400) break; | |
1774 | ||
e3899e4d TC |
1775 | case 319: |
1776 | test_hash_speed("crc32c", sec, generic_hash_speed_template); | |
1777 | if (mode > 300 && mode < 400) break; | |
1778 | ||
68411521 HX |
1779 | case 320: |
1780 | test_hash_speed("crct10dif", sec, generic_hash_speed_template); | |
1781 | if (mode > 300 && mode < 400) break; | |
1782 | ||
e8057928 ML |
1783 | case 399: |
1784 | break; | |
1785 | ||
beb63da7 DM |
1786 | 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 | ||
3f3baf35 JK |
1860 | 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); | |
de197533 NR |
1881 | 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); | |
69d3150c JK |
1889 | 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); | |
3f3baf35 JK |
1893 | 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); | |
de197533 NR |
1908 | 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); | |
3f3baf35 JK |
1920 | 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); | |
de197533 NR |
1931 | 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); | |
3f3baf35 JK |
1939 | break; |
1940 | ||
7fb7fe44 JK |
1941 | 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); | |
87aae4bf JK |
1954 | 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); | |
5209c07a JK |
1958 | 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); | |
7fb7fe44 JK |
1962 | break; |
1963 | ||
107778b5 JG |
1964 | 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 | ||
31b4cd29 JK |
1987 | case 505: |
1988 | test_acipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0, | |
1989 | speed_template_8); | |
1990 | break; | |
1991 | ||
a2c58260 JG |
1992 | 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 | ||
9b8b0405 JG |
2007 | 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 | ||
bf9c5181 JK |
2030 | 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 | ||
ad8b7c3e JK |
2053 | 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 | ||
1da177e4 LT |
2068 | case 1000: |
2069 | test_available(); | |
2070 | break; | |
1da177e4 | 2071 | } |
4e033a6b JW |
2072 | |
2073 | return ret; | |
1da177e4 LT |
2074 | } |
2075 | ||
7be380f7 | 2076 | static int do_alg_test(const char *alg, u32 type, u32 mask) |
a873a5f1 | 2077 | { |
7be380f7 HX |
2078 | return crypto_has_alg(alg, type, mask ?: CRYPTO_ALG_TYPE_MASK) ? |
2079 | 0 : -ENOENT; | |
a873a5f1 SK |
2080 | } |
2081 | ||
3af5b90b | 2082 | static int __init tcrypt_mod_init(void) |
1da177e4 | 2083 | { |
e3a4ea4f | 2084 | int err = -ENOMEM; |
f139cfa7 | 2085 | int i; |
e3a4ea4f | 2086 | |
f139cfa7 HX |
2087 | 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 | } | |
1da177e4 | 2092 | |
a873a5f1 | 2093 | if (alg) |
7be380f7 | 2094 | err = do_alg_test(alg, type, mask); |
a873a5f1 SK |
2095 | else |
2096 | err = do_test(mode); | |
2097 | ||
4e033a6b JW |
2098 | if (err) { |
2099 | printk(KERN_ERR "tcrypt: one or more tests failed!\n"); | |
2100 | goto err_free_tv; | |
2101 | } | |
14fdf477 | 2102 | |
4e033a6b JW |
2103 | /* 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. | |
14fdf477 ML |
2107 | * => we don't need it in the memory, do we? |
2108 | * -- mludvig | |
2109 | */ | |
4e033a6b JW |
2110 | if (!fips_enabled) |
2111 | err = -EAGAIN; | |
e3a4ea4f | 2112 | |
f139cfa7 HX |
2113 | err_free_tv: |
2114 | for (i = 0; i < TVMEMSIZE && tvmem[i]; i++) | |
2115 | free_page((unsigned long)tvmem[i]); | |
e3a4ea4f MH |
2116 | |
2117 | return err; | |
1da177e4 LT |
2118 | } |
2119 | ||
2120 | /* | |
2121 | * If an init function is provided, an exit function must also be provided | |
2122 | * to allow module unload. | |
2123 | */ | |
3af5b90b | 2124 | static void __exit tcrypt_mod_fini(void) { } |
1da177e4 | 2125 | |
3af5b90b KB |
2126 | module_init(tcrypt_mod_init); |
2127 | module_exit(tcrypt_mod_fini); | |
1da177e4 | 2128 | |
a873a5f1 SK |
2129 | module_param(alg, charp, 0); |
2130 | module_param(type, uint, 0); | |
7be380f7 | 2131 | module_param(mask, uint, 0); |
1da177e4 | 2132 | module_param(mode, int, 0); |
ebfd9bcf | 2133 | module_param(sec, uint, 0); |
6a17944c HX |
2134 | MODULE_PARM_DESC(sec, "Length in seconds of speed tests " |
2135 | "(defaults to zero which uses CPU cycles instead)"); | |
1da177e4 LT |
2136 | |
2137 | MODULE_LICENSE("GPL"); | |
2138 | MODULE_DESCRIPTION("Quick & dirty crypto testing module"); | |
2139 | MODULE_AUTHOR("James Morris <[email protected]>"); |