blob: 28b4882f19445ee8d750a198299215bc70394d7e [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
Rabin Vincent76512f22017-01-18 14:54:05 +010025#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
26
Herbert Xu1ce5a042015-04-22 15:06:30 +080027#include <crypto/aead.h>
Herbert Xu18e33e62008-07-10 16:01:22 +080028#include <crypto/hash.h>
Herbert Xu7166e582016-06-29 18:03:50 +080029#include <crypto/skcipher.h>
Herbert Xucba83562006-08-13 08:26:09 +100030#include <linux/err.h>
Herbert Xudaf09442015-04-22 13:25:57 +080031#include <linux/fips.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/module.h>
David Hardeman378f0582005-09-17 17:55:31 +100035#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/moduleparam.h>
Harald Welteebfd9bc2005-06-22 13:27:23 -070038#include <linux/jiffies.h>
Herbert Xu6a179442005-06-22 13:29:03 -070039#include <linux/timex.h>
40#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "tcrypt.h"
42
43/*
Herbert Xuf139cfa2008-07-31 12:23:53 +080044 * Need slab memory for testing (size in number of pages).
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 */
Herbert Xuf139cfa2008-07-31 12:23:53 +080046#define TVMEMSIZE 4
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48/*
Herbert Xuda7f0332008-07-31 17:08:25 +080049* Used by test_cipher_speed()
Linus Torvalds1da177e2005-04-16 15:20:36 -070050*/
51#define ENCRYPT 1
52#define DECRYPT 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Horia Geant?f074f7b2015-08-27 18:38:36 +030054#define MAX_DIGEST_SIZE 64
55
Harald Welteebfd9bc2005-06-22 13:27:23 -070056/*
Luca Clementi263a8df2014-06-25 22:57:42 -070057 * return a string with the driver name
58 */
59#define get_driver_name(tfm_type, tfm) crypto_tfm_alg_driver_name(tfm_type ## _tfm(tfm))
60
61/*
Harald Welteebfd9bc2005-06-22 13:27:23 -070062 * Used by test_cipher_speed()
63 */
Herbert Xu6a179442005-06-22 13:29:03 -070064static unsigned int sec;
Harald Welteebfd9bc2005-06-22 13:27:23 -070065
Steffen Klasserta873a5f2009-06-19 19:46:53 +080066static char *alg = NULL;
67static u32 type;
Herbert Xu7be380f2009-07-14 16:06:54 +080068static u32 mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069static int mode;
Herbert Xuf139cfa2008-07-31 12:23:53 +080070static char *tvmem[TVMEMSIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72static char *check[] = {
Gilad Ben-Yossefb7e27532017-08-21 13:51:29 +030073 "des", "md5", "des3_ede", "rot13", "sha1", "sha224", "sha256", "sm3",
Jonathan Lynchcd12fb92007-11-10 20:08:25 +080074 "blowfish", "twofish", "serpent", "sha384", "sha512", "md4", "aes",
75 "cast6", "arc4", "michael_mic", "deflate", "crc32c", "tea", "xtea",
David Howells90831632006-12-16 12:13:14 +110076 "khazad", "wp512", "wp384", "wp256", "tnepres", "xeta", "fcrypt",
Adrian-Ken Rueegsegger2998db32008-05-09 21:29:35 +080077 "camellia", "seed", "salsa20", "rmd128", "rmd160", "rmd256", "rmd320",
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +053078 "lzo", "cts", "zlib", "sha3-224", "sha3-256", "sha3-384", "sha3-512",
79 NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -070080};
81
Vutla, Lokesh1425d2d2015-07-07 21:01:49 +053082static inline int do_one_aead_op(struct aead_request *req, int ret)
83{
Gilad Ben-Yossef64671042017-10-18 08:00:48 +010084 struct crypto_wait *wait = req->base.data;
Vutla, Lokesh1425d2d2015-07-07 21:01:49 +053085
Gilad Ben-Yossef64671042017-10-18 08:00:48 +010086 return crypto_wait_req(ret, wait);
Vutla, Lokesh1425d2d2015-07-07 21:01:49 +053087}
88
Tim Chen53f52d72013-12-11 14:28:47 -080089static int test_aead_jiffies(struct aead_request *req, int enc,
Mark Rustad3e3dc252014-07-25 02:53:38 -070090 int blen, int secs)
Tim Chen53f52d72013-12-11 14:28:47 -080091{
92 unsigned long start, end;
93 int bcount;
94 int ret;
95
Mark Rustad3e3dc252014-07-25 02:53:38 -070096 for (start = jiffies, end = start + secs * HZ, bcount = 0;
Tim Chen53f52d72013-12-11 14:28:47 -080097 time_before(jiffies, end); bcount++) {
98 if (enc)
Vutla, Lokesh1425d2d2015-07-07 21:01:49 +053099 ret = do_one_aead_op(req, crypto_aead_encrypt(req));
Tim Chen53f52d72013-12-11 14:28:47 -0800100 else
Vutla, Lokesh1425d2d2015-07-07 21:01:49 +0530101 ret = do_one_aead_op(req, crypto_aead_decrypt(req));
Tim Chen53f52d72013-12-11 14:28:47 -0800102
103 if (ret)
104 return ret;
105 }
106
107 printk("%d operations in %d seconds (%ld bytes)\n",
Mark Rustad3e3dc252014-07-25 02:53:38 -0700108 bcount, secs, (long)bcount * blen);
Tim Chen53f52d72013-12-11 14:28:47 -0800109 return 0;
110}
111
112static int test_aead_cycles(struct aead_request *req, int enc, int blen)
113{
114 unsigned long cycles = 0;
115 int ret = 0;
116 int i;
117
Tim Chen53f52d72013-12-11 14:28:47 -0800118 /* Warm-up run. */
119 for (i = 0; i < 4; i++) {
120 if (enc)
Vutla, Lokesh1425d2d2015-07-07 21:01:49 +0530121 ret = do_one_aead_op(req, crypto_aead_encrypt(req));
Tim Chen53f52d72013-12-11 14:28:47 -0800122 else
Vutla, Lokesh1425d2d2015-07-07 21:01:49 +0530123 ret = do_one_aead_op(req, crypto_aead_decrypt(req));
Tim Chen53f52d72013-12-11 14:28:47 -0800124
125 if (ret)
126 goto out;
127 }
128
129 /* The real thing. */
130 for (i = 0; i < 8; i++) {
131 cycles_t start, end;
132
133 start = get_cycles();
134 if (enc)
Vutla, Lokesh1425d2d2015-07-07 21:01:49 +0530135 ret = do_one_aead_op(req, crypto_aead_encrypt(req));
Tim Chen53f52d72013-12-11 14:28:47 -0800136 else
Vutla, Lokesh1425d2d2015-07-07 21:01:49 +0530137 ret = do_one_aead_op(req, crypto_aead_decrypt(req));
Tim Chen53f52d72013-12-11 14:28:47 -0800138 end = get_cycles();
139
140 if (ret)
141 goto out;
142
143 cycles += end - start;
144 }
145
146out:
Tim Chen53f52d72013-12-11 14:28:47 -0800147 if (ret == 0)
148 printk("1 operation in %lu cycles (%d bytes)\n",
149 (cycles + 4) / 8, blen);
150
151 return ret;
152}
153
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800154static u32 block_sizes[] = { 16, 64, 256, 1024, 8192, 0 };
Tim Chen53f52d72013-12-11 14:28:47 -0800155static u32 aead_sizes[] = { 16, 64, 256, 512, 1024, 2048, 4096, 8192, 0 };
156
157#define XBUFSIZE 8
158#define MAX_IVLEN 32
159
160static int testmgr_alloc_buf(char *buf[XBUFSIZE])
161{
162 int i;
163
164 for (i = 0; i < XBUFSIZE; i++) {
165 buf[i] = (void *)__get_free_page(GFP_KERNEL);
166 if (!buf[i])
167 goto err_free_buf;
168 }
169
170 return 0;
171
172err_free_buf:
173 while (i-- > 0)
174 free_page((unsigned long)buf[i]);
175
176 return -ENOMEM;
177}
178
179static void testmgr_free_buf(char *buf[XBUFSIZE])
180{
181 int i;
182
183 for (i = 0; i < XBUFSIZE; i++)
184 free_page((unsigned long)buf[i]);
185}
186
187static void sg_init_aead(struct scatterlist *sg, char *xbuf[XBUFSIZE],
Tudor-Dan Ambarus5601e012017-11-14 16:59:15 +0200188 unsigned int buflen, const void *assoc,
189 unsigned int aad_size)
Tim Chen53f52d72013-12-11 14:28:47 -0800190{
191 int np = (buflen + PAGE_SIZE - 1)/PAGE_SIZE;
192 int k, rem;
193
Tim Chen53f52d72013-12-11 14:28:47 -0800194 if (np > XBUFSIZE) {
195 rem = PAGE_SIZE;
196 np = XBUFSIZE;
Cristian Stoicac4768992015-01-27 11:54:27 +0200197 } else {
198 rem = buflen % PAGE_SIZE;
Tim Chen53f52d72013-12-11 14:28:47 -0800199 }
Cristian Stoicac4768992015-01-27 11:54:27 +0200200
Herbert Xu31267272015-06-17 14:05:26 +0800201 sg_init_table(sg, np + 1);
Tudor-Dan Ambarus5601e012017-11-14 16:59:15 +0200202
203 sg_set_buf(&sg[0], assoc, aad_size);
204
Robert Baronescu5c6ac1d2017-10-10 13:21:59 +0300205 if (rem)
206 np--;
Cristian Stoicac4768992015-01-27 11:54:27 +0200207 for (k = 0; k < np; k++)
Herbert Xu31267272015-06-17 14:05:26 +0800208 sg_set_buf(&sg[k + 1], xbuf[k], PAGE_SIZE);
Cristian Stoicac4768992015-01-27 11:54:27 +0200209
Robert Baronescu5c6ac1d2017-10-10 13:21:59 +0300210 if (rem)
211 sg_set_buf(&sg[k + 1], xbuf[k], rem);
Tim Chen53f52d72013-12-11 14:28:47 -0800212}
213
Mark Rustad3e3dc252014-07-25 02:53:38 -0700214static void test_aead_speed(const char *algo, int enc, unsigned int secs,
Tim Chen53f52d72013-12-11 14:28:47 -0800215 struct aead_speed_template *template,
216 unsigned int tcount, u8 authsize,
217 unsigned int aad_size, u8 *keysize)
218{
219 unsigned int i, j;
220 struct crypto_aead *tfm;
221 int ret = -ENOMEM;
222 const char *key;
223 struct aead_request *req;
224 struct scatterlist *sg;
Tim Chen53f52d72013-12-11 14:28:47 -0800225 struct scatterlist *sgout;
226 const char *e;
227 void *assoc;
Cristian Stoica96692a732015-01-28 13:07:32 +0200228 char *iv;
Tim Chen53f52d72013-12-11 14:28:47 -0800229 char *xbuf[XBUFSIZE];
230 char *xoutbuf[XBUFSIZE];
231 char *axbuf[XBUFSIZE];
232 unsigned int *b_size;
233 unsigned int iv_len;
Gilad Ben-Yossef64671042017-10-18 08:00:48 +0100234 struct crypto_wait wait;
Tim Chen53f52d72013-12-11 14:28:47 -0800235
Cristian Stoica96692a732015-01-28 13:07:32 +0200236 iv = kzalloc(MAX_IVLEN, GFP_KERNEL);
237 if (!iv)
238 return;
239
Christian Engelmayerac5f8632014-04-21 20:45:59 +0200240 if (aad_size >= PAGE_SIZE) {
241 pr_err("associate data length (%u) too big\n", aad_size);
Cristian Stoica96692a732015-01-28 13:07:32 +0200242 goto out_noxbuf;
Christian Engelmayerac5f8632014-04-21 20:45:59 +0200243 }
244
Tim Chen53f52d72013-12-11 14:28:47 -0800245 if (enc == ENCRYPT)
246 e = "encryption";
247 else
248 e = "decryption";
249
250 if (testmgr_alloc_buf(xbuf))
251 goto out_noxbuf;
252 if (testmgr_alloc_buf(axbuf))
253 goto out_noaxbuf;
254 if (testmgr_alloc_buf(xoutbuf))
255 goto out_nooutbuf;
256
Herbert Xua3f21852015-05-27 16:03:51 +0800257 sg = kmalloc(sizeof(*sg) * 9 * 2, GFP_KERNEL);
Tim Chen53f52d72013-12-11 14:28:47 -0800258 if (!sg)
259 goto out_nosg;
Herbert Xua3f21852015-05-27 16:03:51 +0800260 sgout = &sg[9];
Tim Chen53f52d72013-12-11 14:28:47 -0800261
Herbert Xu5e4b8c12015-08-13 17:29:06 +0800262 tfm = crypto_alloc_aead(algo, 0, 0);
Tim Chen53f52d72013-12-11 14:28:47 -0800263
264 if (IS_ERR(tfm)) {
265 pr_err("alg: aead: Failed to load transform for %s: %ld\n", algo,
266 PTR_ERR(tfm));
Christian Engelmayera2ea6ed2014-04-21 20:46:40 +0200267 goto out_notfm;
Tim Chen53f52d72013-12-11 14:28:47 -0800268 }
269
Gilad Ben-Yossef64671042017-10-18 08:00:48 +0100270 crypto_init_wait(&wait);
Luca Clementi263a8df2014-06-25 22:57:42 -0700271 printk(KERN_INFO "\ntesting speed of %s (%s) %s\n", algo,
272 get_driver_name(crypto_aead, tfm), e);
273
Tim Chen53f52d72013-12-11 14:28:47 -0800274 req = aead_request_alloc(tfm, GFP_KERNEL);
275 if (!req) {
276 pr_err("alg: aead: Failed to allocate request for %s\n",
277 algo);
Christian Engelmayer6af1f932014-04-21 20:47:05 +0200278 goto out_noreq;
Tim Chen53f52d72013-12-11 14:28:47 -0800279 }
280
Vutla, Lokesh1425d2d2015-07-07 21:01:49 +0530281 aead_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef64671042017-10-18 08:00:48 +0100282 crypto_req_done, &wait);
Vutla, Lokesh1425d2d2015-07-07 21:01:49 +0530283
Tim Chen53f52d72013-12-11 14:28:47 -0800284 i = 0;
285 do {
286 b_size = aead_sizes;
287 do {
288 assoc = axbuf[0];
Christian Engelmayerac5f8632014-04-21 20:45:59 +0200289 memset(assoc, 0xff, aad_size);
Tim Chen53f52d72013-12-11 14:28:47 -0800290
291 if ((*keysize + *b_size) > TVMEMSIZE * PAGE_SIZE) {
292 pr_err("template (%u) too big for tvmem (%lu)\n",
293 *keysize + *b_size,
294 TVMEMSIZE * PAGE_SIZE);
295 goto out;
296 }
297
298 key = tvmem[0];
299 for (j = 0; j < tcount; j++) {
300 if (template[j].klen == *keysize) {
301 key = template[j].key;
302 break;
303 }
304 }
305 ret = crypto_aead_setkey(tfm, key, *keysize);
306 ret = crypto_aead_setauthsize(tfm, authsize);
307
308 iv_len = crypto_aead_ivsize(tfm);
309 if (iv_len)
Cristian Stoica96692a732015-01-28 13:07:32 +0200310 memset(iv, 0xff, iv_len);
Tim Chen53f52d72013-12-11 14:28:47 -0800311
312 crypto_aead_clear_flags(tfm, ~0);
313 printk(KERN_INFO "test %u (%d bit key, %d byte blocks): ",
314 i, *keysize * 8, *b_size);
315
316
317 memset(tvmem[0], 0xff, PAGE_SIZE);
318
319 if (ret) {
320 pr_err("setkey() failed flags=%x\n",
321 crypto_aead_get_flags(tfm));
322 goto out;
323 }
324
Tudor-Dan Ambarus5601e012017-11-14 16:59:15 +0200325 sg_init_aead(sg, xbuf, *b_size + (enc ? 0 : authsize),
326 assoc, aad_size);
Tim Chen53f52d72013-12-11 14:28:47 -0800327
Herbert Xu31267272015-06-17 14:05:26 +0800328 sg_init_aead(sgout, xoutbuf,
Tudor-Dan Ambarus5601e012017-11-14 16:59:15 +0200329 *b_size + (enc ? authsize : 0), assoc,
330 aad_size);
Herbert Xu31267272015-06-17 14:05:26 +0800331
Robert Baronescu7aacbfc2017-10-10 13:22:00 +0300332 aead_request_set_crypt(req, sg, sgout,
333 *b_size + (enc ? 0 : authsize),
334 iv);
Herbert Xua3f21852015-05-27 16:03:51 +0800335 aead_request_set_ad(req, aad_size);
Tim Chen53f52d72013-12-11 14:28:47 -0800336
Mark Rustad3e3dc252014-07-25 02:53:38 -0700337 if (secs)
338 ret = test_aead_jiffies(req, enc, *b_size,
339 secs);
Tim Chen53f52d72013-12-11 14:28:47 -0800340 else
341 ret = test_aead_cycles(req, enc, *b_size);
342
343 if (ret) {
344 pr_err("%s() failed return code=%d\n", e, ret);
345 break;
346 }
347 b_size++;
348 i++;
349 } while (*b_size);
350 keysize++;
351 } while (*keysize);
352
353out:
Christian Engelmayer6af1f932014-04-21 20:47:05 +0200354 aead_request_free(req);
355out_noreq:
Tim Chen53f52d72013-12-11 14:28:47 -0800356 crypto_free_aead(tfm);
Christian Engelmayera2ea6ed2014-04-21 20:46:40 +0200357out_notfm:
Tim Chen53f52d72013-12-11 14:28:47 -0800358 kfree(sg);
359out_nosg:
360 testmgr_free_buf(xoutbuf);
361out_nooutbuf:
362 testmgr_free_buf(axbuf);
363out_noaxbuf:
364 testmgr_free_buf(xbuf);
365out_noxbuf:
Cristian Stoica96692a732015-01-28 13:07:32 +0200366 kfree(iv);
Tim Chen53f52d72013-12-11 14:28:47 -0800367}
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800368
David S. Millerbeb63da2010-05-19 14:11:21 +1000369static void test_hash_sg_init(struct scatterlist *sg)
370{
371 int i;
372
373 sg_init_table(sg, TVMEMSIZE);
374 for (i = 0; i < TVMEMSIZE; i++) {
375 sg_set_buf(sg + i, tvmem[i], PAGE_SIZE);
376 memset(tvmem[i], 0xff, PAGE_SIZE);
377 }
378}
379
David S. Millerbeb63da2010-05-19 14:11:21 +1000380static inline int do_one_ahash_op(struct ahash_request *req, int ret)
381{
Gilad Ben-Yossef64671042017-10-18 08:00:48 +0100382 struct crypto_wait *wait = req->base.data;
David S. Millerbeb63da2010-05-19 14:11:21 +1000383
Gilad Ben-Yossef64671042017-10-18 08:00:48 +0100384 return crypto_wait_req(ret, wait);
David S. Millerbeb63da2010-05-19 14:11:21 +1000385}
386
Herbert Xu72259de2016-06-28 20:33:52 +0800387struct test_mb_ahash_data {
388 struct scatterlist sg[TVMEMSIZE];
389 char result[64];
390 struct ahash_request *req;
Gilad Ben-Yossef64671042017-10-18 08:00:48 +0100391 struct crypto_wait wait;
Herbert Xu72259de2016-06-28 20:33:52 +0800392 char *xbuf[XBUFSIZE];
393};
Megha Dey087bcd22016-06-23 18:40:47 -0700394
395static void test_mb_ahash_speed(const char *algo, unsigned int sec,
Herbert Xu72259de2016-06-28 20:33:52 +0800396 struct hash_speed *speed)
Megha Dey087bcd22016-06-23 18:40:47 -0700397{
Herbert Xu72259de2016-06-28 20:33:52 +0800398 struct test_mb_ahash_data *data;
Megha Dey087bcd22016-06-23 18:40:47 -0700399 struct crypto_ahash *tfm;
Herbert Xu72259de2016-06-28 20:33:52 +0800400 unsigned long start, end;
Herbert Xuf8de55b2016-06-28 16:41:38 +0800401 unsigned long cycles;
Herbert Xu72259de2016-06-28 20:33:52 +0800402 unsigned int i, j, k;
403 int ret;
404
405 data = kzalloc(sizeof(*data) * 8, GFP_KERNEL);
406 if (!data)
407 return;
Megha Dey087bcd22016-06-23 18:40:47 -0700408
409 tfm = crypto_alloc_ahash(algo, 0, 0);
410 if (IS_ERR(tfm)) {
411 pr_err("failed to load transform for %s: %ld\n",
412 algo, PTR_ERR(tfm));
Herbert Xu72259de2016-06-28 20:33:52 +0800413 goto free_data;
Megha Dey087bcd22016-06-23 18:40:47 -0700414 }
Herbert Xu72259de2016-06-28 20:33:52 +0800415
Megha Dey087bcd22016-06-23 18:40:47 -0700416 for (i = 0; i < 8; ++i) {
Herbert Xu72259de2016-06-28 20:33:52 +0800417 if (testmgr_alloc_buf(data[i].xbuf))
418 goto out;
Megha Dey087bcd22016-06-23 18:40:47 -0700419
Gilad Ben-Yossef64671042017-10-18 08:00:48 +0100420 crypto_init_wait(&data[i].wait);
Megha Dey087bcd22016-06-23 18:40:47 -0700421
Herbert Xu72259de2016-06-28 20:33:52 +0800422 data[i].req = ahash_request_alloc(tfm, GFP_KERNEL);
423 if (!data[i].req) {
Krzysztof Kozlowskif83f5b12016-06-28 09:23:06 +0200424 pr_err("alg: hash: Failed to allocate request for %s\n",
425 algo);
Herbert Xu72259de2016-06-28 20:33:52 +0800426 goto out;
Megha Dey087bcd22016-06-23 18:40:47 -0700427 }
Megha Dey087bcd22016-06-23 18:40:47 -0700428
Gilad Ben-Yossef64671042017-10-18 08:00:48 +0100429 ahash_request_set_callback(data[i].req, 0, crypto_req_done,
430 &data[i].wait);
Herbert Xu72259de2016-06-28 20:33:52 +0800431 test_hash_sg_init(data[i].sg);
Megha Dey087bcd22016-06-23 18:40:47 -0700432 }
433
Herbert Xu72259de2016-06-28 20:33:52 +0800434 pr_info("\ntesting speed of multibuffer %s (%s)\n", algo,
435 get_driver_name(crypto_ahash, tfm));
Megha Dey087bcd22016-06-23 18:40:47 -0700436
437 for (i = 0; speed[i].blen != 0; i++) {
Herbert Xu72259de2016-06-28 20:33:52 +0800438 /* For some reason this only tests digests. */
439 if (speed[i].blen != speed[i].plen)
440 continue;
441
Megha Dey087bcd22016-06-23 18:40:47 -0700442 if (speed[i].blen > TVMEMSIZE * PAGE_SIZE) {
Krzysztof Kozlowskif83f5b12016-06-28 09:23:06 +0200443 pr_err("template (%u) too big for tvmem (%lu)\n",
444 speed[i].blen, TVMEMSIZE * PAGE_SIZE);
445 goto out;
Megha Dey087bcd22016-06-23 18:40:47 -0700446 }
447
448 if (speed[i].klen)
449 crypto_ahash_setkey(tfm, tvmem[0], speed[i].klen);
450
Herbert Xu72259de2016-06-28 20:33:52 +0800451 for (k = 0; k < 8; k++)
452 ahash_request_set_crypt(data[k].req, data[k].sg,
453 data[k].result, speed[i].blen);
Megha Dey087bcd22016-06-23 18:40:47 -0700454
Herbert Xu72259de2016-06-28 20:33:52 +0800455 pr_info("test%3u "
456 "(%5u byte blocks,%5u bytes per update,%4u updates): ",
Megha Dey087bcd22016-06-23 18:40:47 -0700457 i, speed[i].blen, speed[i].plen,
458 speed[i].blen / speed[i].plen);
459
Herbert Xu72259de2016-06-28 20:33:52 +0800460 start = get_cycles();
461
462 for (k = 0; k < 8; k++) {
463 ret = crypto_ahash_digest(data[k].req);
Herbert Xud13cd112016-06-30 11:00:13 +0800464 if (ret == -EINPROGRESS) {
465 ret = 0;
Megha Dey087bcd22016-06-23 18:40:47 -0700466 continue;
Herbert Xud13cd112016-06-30 11:00:13 +0800467 }
Megha Dey087bcd22016-06-23 18:40:47 -0700468
Megha Dey087bcd22016-06-23 18:40:47 -0700469 if (ret)
Herbert Xu72259de2016-06-28 20:33:52 +0800470 break;
471
Gilad Ben-Yossef64671042017-10-18 08:00:48 +0100472 crypto_req_done(&data[k].req->base, 0);
Megha Dey087bcd22016-06-23 18:40:47 -0700473 }
474
Herbert Xu72259de2016-06-28 20:33:52 +0800475 for (j = 0; j < k; j++) {
Gilad Ben-Yossef64671042017-10-18 08:00:48 +0100476 struct crypto_wait *wait = &data[j].wait;
477 int wait_ret;
Herbert Xu72259de2016-06-28 20:33:52 +0800478
Gilad Ben-Yossef64671042017-10-18 08:00:48 +0100479 wait_ret = crypto_wait_req(-EINPROGRESS, wait);
480 if (wait_ret)
481 ret = wait_ret;
Herbert Xu72259de2016-06-28 20:33:52 +0800482 }
483
484 end = get_cycles();
485 cycles = end - start;
486 pr_cont("%6lu cycles/operation, %4lu cycles/byte\n",
487 cycles, cycles / (8 * speed[i].blen));
488
489 if (ret) {
490 pr_err("At least one hashing failed ret=%d\n", ret);
491 break;
492 }
Megha Dey087bcd22016-06-23 18:40:47 -0700493 }
Megha Dey087bcd22016-06-23 18:40:47 -0700494
495out:
496 for (k = 0; k < 8; ++k)
Herbert Xu72259de2016-06-28 20:33:52 +0800497 ahash_request_free(data[k].req);
498
Megha Dey087bcd22016-06-23 18:40:47 -0700499 for (k = 0; k < 8; ++k)
Herbert Xu72259de2016-06-28 20:33:52 +0800500 testmgr_free_buf(data[k].xbuf);
501
502 crypto_free_ahash(tfm);
503
504free_data:
505 kfree(data);
Megha Dey087bcd22016-06-23 18:40:47 -0700506}
507
David S. Millerbeb63da2010-05-19 14:11:21 +1000508static int test_ahash_jiffies_digest(struct ahash_request *req, int blen,
Mark Rustad3e3dc252014-07-25 02:53:38 -0700509 char *out, int secs)
David S. Millerbeb63da2010-05-19 14:11:21 +1000510{
511 unsigned long start, end;
512 int bcount;
513 int ret;
514
Mark Rustad3e3dc252014-07-25 02:53:38 -0700515 for (start = jiffies, end = start + secs * HZ, bcount = 0;
David S. Millerbeb63da2010-05-19 14:11:21 +1000516 time_before(jiffies, end); bcount++) {
517 ret = do_one_ahash_op(req, crypto_ahash_digest(req));
518 if (ret)
519 return ret;
520 }
521
522 printk("%6u opers/sec, %9lu bytes/sec\n",
Mark Rustad3e3dc252014-07-25 02:53:38 -0700523 bcount / secs, ((long)bcount * blen) / secs);
David S. Millerbeb63da2010-05-19 14:11:21 +1000524
525 return 0;
526}
527
528static int test_ahash_jiffies(struct ahash_request *req, int blen,
Mark Rustad3e3dc252014-07-25 02:53:38 -0700529 int plen, char *out, int secs)
David S. Millerbeb63da2010-05-19 14:11:21 +1000530{
531 unsigned long start, end;
532 int bcount, pcount;
533 int ret;
534
535 if (plen == blen)
Mark Rustad3e3dc252014-07-25 02:53:38 -0700536 return test_ahash_jiffies_digest(req, blen, out, secs);
David S. Millerbeb63da2010-05-19 14:11:21 +1000537
Mark Rustad3e3dc252014-07-25 02:53:38 -0700538 for (start = jiffies, end = start + secs * HZ, bcount = 0;
David S. Millerbeb63da2010-05-19 14:11:21 +1000539 time_before(jiffies, end); bcount++) {
Herbert Xu43a96072015-04-22 11:02:27 +0800540 ret = do_one_ahash_op(req, crypto_ahash_init(req));
David S. Millerbeb63da2010-05-19 14:11:21 +1000541 if (ret)
542 return ret;
543 for (pcount = 0; pcount < blen; pcount += plen) {
544 ret = do_one_ahash_op(req, crypto_ahash_update(req));
545 if (ret)
546 return ret;
547 }
548 /* we assume there is enough space in 'out' for the result */
549 ret = do_one_ahash_op(req, crypto_ahash_final(req));
550 if (ret)
551 return ret;
552 }
553
554 pr_cont("%6u opers/sec, %9lu bytes/sec\n",
Mark Rustad3e3dc252014-07-25 02:53:38 -0700555 bcount / secs, ((long)bcount * blen) / secs);
David S. Millerbeb63da2010-05-19 14:11:21 +1000556
557 return 0;
558}
559
560static int test_ahash_cycles_digest(struct ahash_request *req, int blen,
561 char *out)
562{
563 unsigned long cycles = 0;
564 int ret, i;
565
566 /* Warm-up run. */
567 for (i = 0; i < 4; i++) {
568 ret = do_one_ahash_op(req, crypto_ahash_digest(req));
569 if (ret)
570 goto out;
571 }
572
573 /* The real thing. */
574 for (i = 0; i < 8; i++) {
575 cycles_t start, end;
576
577 start = get_cycles();
578
579 ret = do_one_ahash_op(req, crypto_ahash_digest(req));
580 if (ret)
581 goto out;
582
583 end = get_cycles();
584
585 cycles += end - start;
586 }
587
588out:
589 if (ret)
590 return ret;
591
592 pr_cont("%6lu cycles/operation, %4lu cycles/byte\n",
593 cycles / 8, cycles / (8 * blen));
594
595 return 0;
596}
597
598static int test_ahash_cycles(struct ahash_request *req, int blen,
599 int plen, char *out)
600{
601 unsigned long cycles = 0;
602 int i, pcount, ret;
603
604 if (plen == blen)
605 return test_ahash_cycles_digest(req, blen, out);
606
607 /* Warm-up run. */
608 for (i = 0; i < 4; i++) {
Herbert Xu43a96072015-04-22 11:02:27 +0800609 ret = do_one_ahash_op(req, crypto_ahash_init(req));
David S. Millerbeb63da2010-05-19 14:11:21 +1000610 if (ret)
611 goto out;
612 for (pcount = 0; pcount < blen; pcount += plen) {
613 ret = do_one_ahash_op(req, crypto_ahash_update(req));
614 if (ret)
615 goto out;
616 }
617 ret = do_one_ahash_op(req, crypto_ahash_final(req));
618 if (ret)
619 goto out;
620 }
621
622 /* The real thing. */
623 for (i = 0; i < 8; i++) {
624 cycles_t start, end;
625
626 start = get_cycles();
627
Herbert Xu43a96072015-04-22 11:02:27 +0800628 ret = do_one_ahash_op(req, crypto_ahash_init(req));
David S. Millerbeb63da2010-05-19 14:11:21 +1000629 if (ret)
630 goto out;
631 for (pcount = 0; pcount < blen; pcount += plen) {
632 ret = do_one_ahash_op(req, crypto_ahash_update(req));
633 if (ret)
634 goto out;
635 }
636 ret = do_one_ahash_op(req, crypto_ahash_final(req));
637 if (ret)
638 goto out;
639
640 end = get_cycles();
641
642 cycles += end - start;
643 }
644
645out:
646 if (ret)
647 return ret;
648
649 pr_cont("%6lu cycles/operation, %4lu cycles/byte\n",
650 cycles / 8, cycles / (8 * blen));
651
652 return 0;
653}
654
Herbert Xu06605112016-02-01 21:36:49 +0800655static void test_ahash_speed_common(const char *algo, unsigned int secs,
656 struct hash_speed *speed, unsigned mask)
David S. Millerbeb63da2010-05-19 14:11:21 +1000657{
658 struct scatterlist sg[TVMEMSIZE];
Gilad Ben-Yossef64671042017-10-18 08:00:48 +0100659 struct crypto_wait wait;
David S. Millerbeb63da2010-05-19 14:11:21 +1000660 struct ahash_request *req;
661 struct crypto_ahash *tfm;
Horia Geant?f074f7b2015-08-27 18:38:36 +0300662 char *output;
David S. Millerbeb63da2010-05-19 14:11:21 +1000663 int i, ret;
664
Herbert Xu06605112016-02-01 21:36:49 +0800665 tfm = crypto_alloc_ahash(algo, 0, mask);
David S. Millerbeb63da2010-05-19 14:11:21 +1000666 if (IS_ERR(tfm)) {
667 pr_err("failed to load transform for %s: %ld\n",
668 algo, PTR_ERR(tfm));
669 return;
670 }
671
Luca Clementi263a8df2014-06-25 22:57:42 -0700672 printk(KERN_INFO "\ntesting speed of async %s (%s)\n", algo,
673 get_driver_name(crypto_ahash, tfm));
674
Horia Geant?f074f7b2015-08-27 18:38:36 +0300675 if (crypto_ahash_digestsize(tfm) > MAX_DIGEST_SIZE) {
676 pr_err("digestsize(%u) > %d\n", crypto_ahash_digestsize(tfm),
677 MAX_DIGEST_SIZE);
David S. Millerbeb63da2010-05-19 14:11:21 +1000678 goto out;
679 }
680
681 test_hash_sg_init(sg);
682 req = ahash_request_alloc(tfm, GFP_KERNEL);
683 if (!req) {
684 pr_err("ahash request allocation failure\n");
685 goto out;
686 }
687
Gilad Ben-Yossef64671042017-10-18 08:00:48 +0100688 crypto_init_wait(&wait);
David S. Millerbeb63da2010-05-19 14:11:21 +1000689 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef64671042017-10-18 08:00:48 +0100690 crypto_req_done, &wait);
David S. Millerbeb63da2010-05-19 14:11:21 +1000691
Horia Geant?f074f7b2015-08-27 18:38:36 +0300692 output = kmalloc(MAX_DIGEST_SIZE, GFP_KERNEL);
693 if (!output)
694 goto out_nomem;
695
David S. Millerbeb63da2010-05-19 14:11:21 +1000696 for (i = 0; speed[i].blen != 0; i++) {
697 if (speed[i].blen > TVMEMSIZE * PAGE_SIZE) {
698 pr_err("template (%u) too big for tvmem (%lu)\n",
699 speed[i].blen, TVMEMSIZE * PAGE_SIZE);
700 break;
701 }
702
703 pr_info("test%3u "
704 "(%5u byte blocks,%5u bytes per update,%4u updates): ",
705 i, speed[i].blen, speed[i].plen, speed[i].blen / speed[i].plen);
706
707 ahash_request_set_crypt(req, sg, output, speed[i].plen);
708
Mark Rustad3e3dc252014-07-25 02:53:38 -0700709 if (secs)
David S. Millerbeb63da2010-05-19 14:11:21 +1000710 ret = test_ahash_jiffies(req, speed[i].blen,
Mark Rustad3e3dc252014-07-25 02:53:38 -0700711 speed[i].plen, output, secs);
David S. Millerbeb63da2010-05-19 14:11:21 +1000712 else
713 ret = test_ahash_cycles(req, speed[i].blen,
714 speed[i].plen, output);
715
716 if (ret) {
717 pr_err("hashing failed ret=%d\n", ret);
718 break;
719 }
720 }
721
Horia Geant?f074f7b2015-08-27 18:38:36 +0300722 kfree(output);
723
724out_nomem:
David S. Millerbeb63da2010-05-19 14:11:21 +1000725 ahash_request_free(req);
726
727out:
728 crypto_free_ahash(tfm);
729}
730
Herbert Xu06605112016-02-01 21:36:49 +0800731static void test_ahash_speed(const char *algo, unsigned int secs,
732 struct hash_speed *speed)
733{
734 return test_ahash_speed_common(algo, secs, speed, 0);
735}
736
737static void test_hash_speed(const char *algo, unsigned int secs,
738 struct hash_speed *speed)
739{
740 return test_ahash_speed_common(algo, secs, speed, CRYPTO_ALG_ASYNC);
741}
742
Herbert Xu7166e582016-06-29 18:03:50 +0800743static inline int do_one_acipher_op(struct skcipher_request *req, int ret)
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300744{
Gilad Ben-Yossef64671042017-10-18 08:00:48 +0100745 struct crypto_wait *wait = req->base.data;
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300746
Gilad Ben-Yossef64671042017-10-18 08:00:48 +0100747 return crypto_wait_req(ret, wait);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300748}
749
Herbert Xu7166e582016-06-29 18:03:50 +0800750static int test_acipher_jiffies(struct skcipher_request *req, int enc,
Mark Rustad3e3dc252014-07-25 02:53:38 -0700751 int blen, int secs)
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300752{
753 unsigned long start, end;
754 int bcount;
755 int ret;
756
Mark Rustad3e3dc252014-07-25 02:53:38 -0700757 for (start = jiffies, end = start + secs * HZ, bcount = 0;
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300758 time_before(jiffies, end); bcount++) {
759 if (enc)
760 ret = do_one_acipher_op(req,
Herbert Xu7166e582016-06-29 18:03:50 +0800761 crypto_skcipher_encrypt(req));
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300762 else
763 ret = do_one_acipher_op(req,
Herbert Xu7166e582016-06-29 18:03:50 +0800764 crypto_skcipher_decrypt(req));
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300765
766 if (ret)
767 return ret;
768 }
769
770 pr_cont("%d operations in %d seconds (%ld bytes)\n",
Mark Rustad3e3dc252014-07-25 02:53:38 -0700771 bcount, secs, (long)bcount * blen);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300772 return 0;
773}
774
Herbert Xu7166e582016-06-29 18:03:50 +0800775static int test_acipher_cycles(struct skcipher_request *req, int enc,
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300776 int blen)
777{
778 unsigned long cycles = 0;
779 int ret = 0;
780 int i;
781
782 /* Warm-up run. */
783 for (i = 0; i < 4; i++) {
784 if (enc)
785 ret = do_one_acipher_op(req,
Herbert Xu7166e582016-06-29 18:03:50 +0800786 crypto_skcipher_encrypt(req));
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300787 else
788 ret = do_one_acipher_op(req,
Herbert Xu7166e582016-06-29 18:03:50 +0800789 crypto_skcipher_decrypt(req));
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300790
791 if (ret)
792 goto out;
793 }
794
795 /* The real thing. */
796 for (i = 0; i < 8; i++) {
797 cycles_t start, end;
798
799 start = get_cycles();
800 if (enc)
801 ret = do_one_acipher_op(req,
Herbert Xu7166e582016-06-29 18:03:50 +0800802 crypto_skcipher_encrypt(req));
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300803 else
804 ret = do_one_acipher_op(req,
Herbert Xu7166e582016-06-29 18:03:50 +0800805 crypto_skcipher_decrypt(req));
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300806 end = get_cycles();
807
808 if (ret)
809 goto out;
810
811 cycles += end - start;
812 }
813
814out:
815 if (ret == 0)
816 pr_cont("1 operation in %lu cycles (%d bytes)\n",
817 (cycles + 4) / 8, blen);
818
819 return ret;
820}
821
Herbert Xu7166e582016-06-29 18:03:50 +0800822static void test_skcipher_speed(const char *algo, int enc, unsigned int secs,
823 struct cipher_speed_template *template,
824 unsigned int tcount, u8 *keysize, bool async)
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300825{
Nicolas Royerde1975332012-07-01 19:19:47 +0200826 unsigned int ret, i, j, k, iv_len;
Gilad Ben-Yossef64671042017-10-18 08:00:48 +0100827 struct crypto_wait wait;
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300828 const char *key;
829 char iv[128];
Herbert Xu7166e582016-06-29 18:03:50 +0800830 struct skcipher_request *req;
831 struct crypto_skcipher *tfm;
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300832 const char *e;
833 u32 *b_size;
834
835 if (enc == ENCRYPT)
836 e = "encryption";
837 else
838 e = "decryption";
839
Gilad Ben-Yossef64671042017-10-18 08:00:48 +0100840 crypto_init_wait(&wait);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300841
Herbert Xu7166e582016-06-29 18:03:50 +0800842 tfm = crypto_alloc_skcipher(algo, 0, async ? 0 : CRYPTO_ALG_ASYNC);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300843
844 if (IS_ERR(tfm)) {
845 pr_err("failed to load transform for %s: %ld\n", algo,
846 PTR_ERR(tfm));
847 return;
848 }
849
Luca Clementi263a8df2014-06-25 22:57:42 -0700850 pr_info("\ntesting speed of async %s (%s) %s\n", algo,
Herbert Xu7166e582016-06-29 18:03:50 +0800851 get_driver_name(crypto_skcipher, tfm), e);
Luca Clementi263a8df2014-06-25 22:57:42 -0700852
Herbert Xu7166e582016-06-29 18:03:50 +0800853 req = skcipher_request_alloc(tfm, GFP_KERNEL);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300854 if (!req) {
855 pr_err("tcrypt: skcipher: Failed to allocate request for %s\n",
856 algo);
857 goto out;
858 }
859
Herbert Xu7166e582016-06-29 18:03:50 +0800860 skcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef64671042017-10-18 08:00:48 +0100861 crypto_req_done, &wait);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300862
863 i = 0;
864 do {
865 b_size = block_sizes;
866
867 do {
868 struct scatterlist sg[TVMEMSIZE];
869
870 if ((*keysize + *b_size) > TVMEMSIZE * PAGE_SIZE) {
871 pr_err("template (%u) too big for "
872 "tvmem (%lu)\n", *keysize + *b_size,
873 TVMEMSIZE * PAGE_SIZE);
874 goto out_free_req;
875 }
876
877 pr_info("test %u (%d bit key, %d byte blocks): ", i,
878 *keysize * 8, *b_size);
879
880 memset(tvmem[0], 0xff, PAGE_SIZE);
881
882 /* set key, plain text and IV */
883 key = tvmem[0];
884 for (j = 0; j < tcount; j++) {
885 if (template[j].klen == *keysize) {
886 key = template[j].key;
887 break;
888 }
889 }
890
Herbert Xu7166e582016-06-29 18:03:50 +0800891 crypto_skcipher_clear_flags(tfm, ~0);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300892
Herbert Xu7166e582016-06-29 18:03:50 +0800893 ret = crypto_skcipher_setkey(tfm, key, *keysize);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300894 if (ret) {
895 pr_err("setkey() failed flags=%x\n",
Herbert Xu7166e582016-06-29 18:03:50 +0800896 crypto_skcipher_get_flags(tfm));
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300897 goto out_free_req;
898 }
899
Nicolas Royerde1975332012-07-01 19:19:47 +0200900 k = *keysize + *b_size;
Horia Geant?007ee8d2015-03-09 16:14:58 +0200901 sg_init_table(sg, DIV_ROUND_UP(k, PAGE_SIZE));
902
Nicolas Royerde1975332012-07-01 19:19:47 +0200903 if (k > PAGE_SIZE) {
904 sg_set_buf(sg, tvmem[0] + *keysize,
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300905 PAGE_SIZE - *keysize);
Nicolas Royerde1975332012-07-01 19:19:47 +0200906 k -= PAGE_SIZE;
907 j = 1;
908 while (k > PAGE_SIZE) {
909 sg_set_buf(sg + j, tvmem[j], PAGE_SIZE);
910 memset(tvmem[j], 0xff, PAGE_SIZE);
911 j++;
912 k -= PAGE_SIZE;
913 }
914 sg_set_buf(sg + j, tvmem[j], k);
915 memset(tvmem[j], 0xff, k);
916 } else {
917 sg_set_buf(sg, tvmem[0] + *keysize, *b_size);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300918 }
919
Herbert Xu7166e582016-06-29 18:03:50 +0800920 iv_len = crypto_skcipher_ivsize(tfm);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300921 if (iv_len)
922 memset(&iv, 0xff, iv_len);
923
Herbert Xu7166e582016-06-29 18:03:50 +0800924 skcipher_request_set_crypt(req, sg, sg, *b_size, iv);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300925
Mark Rustad3e3dc252014-07-25 02:53:38 -0700926 if (secs)
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300927 ret = test_acipher_jiffies(req, enc,
Mark Rustad3e3dc252014-07-25 02:53:38 -0700928 *b_size, secs);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300929 else
930 ret = test_acipher_cycles(req, enc,
931 *b_size);
932
933 if (ret) {
934 pr_err("%s() failed flags=%x\n", e,
Herbert Xu7166e582016-06-29 18:03:50 +0800935 crypto_skcipher_get_flags(tfm));
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300936 break;
937 }
938 b_size++;
939 i++;
940 } while (*b_size);
941 keysize++;
942 } while (*keysize);
943
944out_free_req:
Herbert Xu7166e582016-06-29 18:03:50 +0800945 skcipher_request_free(req);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300946out:
Herbert Xu7166e582016-06-29 18:03:50 +0800947 crypto_free_skcipher(tfm);
948}
949
950static void test_acipher_speed(const char *algo, int enc, unsigned int secs,
951 struct cipher_speed_template *template,
952 unsigned int tcount, u8 *keysize)
953{
954 return test_skcipher_speed(algo, enc, secs, template, tcount, keysize,
955 true);
956}
957
958static void test_cipher_speed(const char *algo, int enc, unsigned int secs,
959 struct cipher_speed_template *template,
960 unsigned int tcount, u8 *keysize)
961{
962 return test_skcipher_speed(algo, enc, secs, template, tcount, keysize,
963 false);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300964}
965
Herbert Xuef2736f2005-06-22 13:26:03 -0700966static void test_available(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967{
968 char **name = check;
Herbert Xuef2736f2005-06-22 13:26:03 -0700969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 while (*name) {
971 printk("alg %s ", *name);
Herbert Xu6158efc2007-04-04 17:41:07 +1000972 printk(crypto_has_alg(*name, 0, 0) ?
Herbert Xue4d5b792006-08-26 18:12:40 +1000973 "found\n" : "not found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 name++;
Herbert Xuef2736f2005-06-22 13:26:03 -0700975 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976}
977
Herbert Xu01b32322008-07-31 15:41:55 +0800978static inline int tcrypt_test(const char *alg)
979{
Jarod Wilson4e033a62009-05-27 15:10:21 +1000980 int ret;
981
Rabin Vincent76512f22017-01-18 14:54:05 +0100982 pr_debug("testing %s\n", alg);
983
Jarod Wilson4e033a62009-05-27 15:10:21 +1000984 ret = alg_test(alg, alg, 0, 0);
985 /* non-fips algs return -EINVAL in fips mode */
986 if (fips_enabled && ret == -EINVAL)
987 ret = 0;
988 return ret;
Herbert Xu01b32322008-07-31 15:41:55 +0800989}
990
Herbert Xu86068132014-12-04 16:43:29 +0800991static int do_test(const char *alg, u32 type, u32 mask, int m)
Herbert Xu01b32322008-07-31 15:41:55 +0800992{
993 int i;
Jarod Wilson4e033a62009-05-27 15:10:21 +1000994 int ret = 0;
Herbert Xu01b32322008-07-31 15:41:55 +0800995
996 switch (m) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 case 0:
Herbert Xu86068132014-12-04 16:43:29 +0800998 if (alg) {
999 if (!crypto_has_alg(alg, type,
1000 mask ?: CRYPTO_ALG_TYPE_MASK))
1001 ret = -ENOENT;
1002 break;
1003 }
1004
Herbert Xu01b32322008-07-31 15:41:55 +08001005 for (i = 1; i < 200; i++)
Herbert Xu86068132014-12-04 16:43:29 +08001006 ret += do_test(NULL, 0, 0, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 break;
1008
1009 case 1:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001010 ret += tcrypt_test("md5");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 break;
1012
1013 case 2:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001014 ret += tcrypt_test("sha1");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 break;
1016
1017 case 3:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001018 ret += tcrypt_test("ecb(des)");
1019 ret += tcrypt_test("cbc(des)");
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03001020 ret += tcrypt_test("ctr(des)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 break;
1022
1023 case 4:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001024 ret += tcrypt_test("ecb(des3_ede)");
1025 ret += tcrypt_test("cbc(des3_ede)");
Jussi Kivilinnae080b172012-10-20 14:53:12 +03001026 ret += tcrypt_test("ctr(des3_ede)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 break;
1028
1029 case 5:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001030 ret += tcrypt_test("md4");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 break;
Herbert Xuef2736f2005-06-22 13:26:03 -07001032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 case 6:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001034 ret += tcrypt_test("sha256");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 break;
Herbert Xuef2736f2005-06-22 13:26:03 -07001036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 case 7:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001038 ret += tcrypt_test("ecb(blowfish)");
1039 ret += tcrypt_test("cbc(blowfish)");
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03001040 ret += tcrypt_test("ctr(blowfish)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 break;
1042
1043 case 8:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001044 ret += tcrypt_test("ecb(twofish)");
1045 ret += tcrypt_test("cbc(twofish)");
Jussi Kivilinna573da622011-10-10 23:03:12 +03001046 ret += tcrypt_test("ctr(twofish)");
Jussi Kivilinnabee3a902011-10-18 13:32:56 +03001047 ret += tcrypt_test("lrw(twofish)");
Jussi Kivilinna131f7542011-10-18 13:33:38 +03001048 ret += tcrypt_test("xts(twofish)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 break;
Herbert Xuef2736f2005-06-22 13:26:03 -07001050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 case 9:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001052 ret += tcrypt_test("ecb(serpent)");
Jussi Kivilinna9d259172011-10-18 00:02:53 +03001053 ret += tcrypt_test("cbc(serpent)");
1054 ret += tcrypt_test("ctr(serpent)");
Jussi Kivilinna87aae4b2011-10-18 13:32:39 +03001055 ret += tcrypt_test("lrw(serpent)");
Jussi Kivilinna5209c072011-10-18 13:33:22 +03001056 ret += tcrypt_test("xts(serpent)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 break;
1058
1059 case 10:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001060 ret += tcrypt_test("ecb(aes)");
1061 ret += tcrypt_test("cbc(aes)");
1062 ret += tcrypt_test("lrw(aes)");
1063 ret += tcrypt_test("xts(aes)");
1064 ret += tcrypt_test("ctr(aes)");
1065 ret += tcrypt_test("rfc3686(ctr(aes))");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 break;
1067
1068 case 11:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001069 ret += tcrypt_test("sha384");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 break;
Herbert Xuef2736f2005-06-22 13:26:03 -07001071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 case 12:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001073 ret += tcrypt_test("sha512");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 break;
1075
1076 case 13:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001077 ret += tcrypt_test("deflate");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 break;
1079
1080 case 14:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001081 ret += tcrypt_test("ecb(cast5)");
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02001082 ret += tcrypt_test("cbc(cast5)");
1083 ret += tcrypt_test("ctr(cast5)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 break;
1085
1086 case 15:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001087 ret += tcrypt_test("ecb(cast6)");
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02001088 ret += tcrypt_test("cbc(cast6)");
1089 ret += tcrypt_test("ctr(cast6)");
1090 ret += tcrypt_test("lrw(cast6)");
1091 ret += tcrypt_test("xts(cast6)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 break;
1093
1094 case 16:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001095 ret += tcrypt_test("ecb(arc4)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 break;
1097
1098 case 17:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001099 ret += tcrypt_test("michael_mic");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 break;
1101
1102 case 18:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001103 ret += tcrypt_test("crc32c");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 break;
1105
1106 case 19:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001107 ret += tcrypt_test("ecb(tea)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 break;
1109
1110 case 20:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001111 ret += tcrypt_test("ecb(xtea)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 break;
1113
1114 case 21:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001115 ret += tcrypt_test("ecb(khazad)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 break;
1117
1118 case 22:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001119 ret += tcrypt_test("wp512");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 break;
1121
1122 case 23:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001123 ret += tcrypt_test("wp384");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 break;
1125
1126 case 24:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001127 ret += tcrypt_test("wp256");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 break;
1129
1130 case 25:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001131 ret += tcrypt_test("ecb(tnepres)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 break;
1133
1134 case 26:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001135 ret += tcrypt_test("ecb(anubis)");
1136 ret += tcrypt_test("cbc(anubis)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 break;
1138
1139 case 27:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001140 ret += tcrypt_test("tgr192");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 break;
1142
1143 case 28:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001144 ret += tcrypt_test("tgr160");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 break;
1146
1147 case 29:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001148 ret += tcrypt_test("tgr128");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 break;
Adrian-Ken Rueegsegger2998db32008-05-09 21:29:35 +08001150
Aaron Grothefb4f10e2005-09-01 17:42:46 -07001151 case 30:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001152 ret += tcrypt_test("ecb(xeta)");
Aaron Grothefb4f10e2005-09-01 17:42:46 -07001153 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
David Howells90831632006-12-16 12:13:14 +11001155 case 31:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001156 ret += tcrypt_test("pcbc(fcrypt)");
David Howells90831632006-12-16 12:13:14 +11001157 break;
1158
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001159 case 32:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001160 ret += tcrypt_test("ecb(camellia)");
1161 ret += tcrypt_test("cbc(camellia)");
Jussi Kivilinna54216bb2012-09-21 10:27:10 +03001162 ret += tcrypt_test("ctr(camellia)");
1163 ret += tcrypt_test("lrw(camellia)");
1164 ret += tcrypt_test("xts(camellia)");
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001165 break;
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03001166
Jonathan Lynchcd12fb92007-11-10 20:08:25 +08001167 case 33:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001168 ret += tcrypt_test("sha224");
Jonathan Lynchcd12fb92007-11-10 20:08:25 +08001169 break;
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001170
Tan Swee Heng2407d602007-11-23 19:45:00 +08001171 case 34:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001172 ret += tcrypt_test("salsa20");
Tan Swee Heng2407d602007-11-23 19:45:00 +08001173 break;
1174
Herbert Xu8df213d2007-12-02 14:55:47 +11001175 case 35:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001176 ret += tcrypt_test("gcm(aes)");
Herbert Xu8df213d2007-12-02 14:55:47 +11001177 break;
1178
Zoltan Sogor0b77abb2007-12-07 16:53:23 +08001179 case 36:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001180 ret += tcrypt_test("lzo");
Zoltan Sogor0b77abb2007-12-07 16:53:23 +08001181 break;
1182
Joy Latten93cc74e2007-12-12 20:24:22 +08001183 case 37:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001184 ret += tcrypt_test("ccm(aes)");
Joy Latten93cc74e2007-12-12 20:24:22 +08001185 break;
1186
Kevin Coffman76cb9522008-03-24 21:26:16 +08001187 case 38:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001188 ret += tcrypt_test("cts(cbc(aes))");
Kevin Coffman76cb9522008-03-24 21:26:16 +08001189 break;
1190
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001191 case 39:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001192 ret += tcrypt_test("rmd128");
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001193 break;
1194
1195 case 40:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001196 ret += tcrypt_test("rmd160");
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001197 break;
1198
Adrian-Ken Rueegsegger2998db32008-05-09 21:29:35 +08001199 case 41:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001200 ret += tcrypt_test("rmd256");
Adrian-Ken Rueegsegger2998db32008-05-09 21:29:35 +08001201 break;
1202
1203 case 42:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001204 ret += tcrypt_test("rmd320");
Herbert Xu01b32322008-07-31 15:41:55 +08001205 break;
1206
1207 case 43:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001208 ret += tcrypt_test("ecb(seed)");
Adrian-Ken Rueegsegger2998db32008-05-09 21:29:35 +08001209 break;
1210
Geert Uytterhoeven0c01aed2009-03-04 15:42:15 +08001211 case 44:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001212 ret += tcrypt_test("zlib");
Geert Uytterhoeven0c01aed2009-03-04 15:42:15 +08001213 break;
1214
Jarod Wilson5d667322009-05-04 19:23:40 +08001215 case 45:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001216 ret += tcrypt_test("rfc4309(ccm(aes))");
Jarod Wilson5d667322009-05-04 19:23:40 +08001217 break;
1218
Jussi Kivilinna54216bb2012-09-21 10:27:10 +03001219 case 46:
1220 ret += tcrypt_test("ghash");
1221 break;
1222
Herbert Xu684115212013-09-07 12:56:26 +10001223 case 47:
1224 ret += tcrypt_test("crct10dif");
1225 break;
1226
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05301227 case 48:
1228 ret += tcrypt_test("sha3-224");
1229 break;
1230
1231 case 49:
1232 ret += tcrypt_test("sha3-256");
1233 break;
1234
1235 case 50:
1236 ret += tcrypt_test("sha3-384");
1237 break;
1238
1239 case 51:
1240 ret += tcrypt_test("sha3-512");
1241 break;
1242
Gilad Ben-Yossefb7e27532017-08-21 13:51:29 +03001243 case 52:
1244 ret += tcrypt_test("sm3");
1245 break;
1246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 case 100:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001248 ret += tcrypt_test("hmac(md5)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 break;
Herbert Xuef2736f2005-06-22 13:26:03 -07001250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 case 101:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001252 ret += tcrypt_test("hmac(sha1)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 break;
Herbert Xuef2736f2005-06-22 13:26:03 -07001254
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 case 102:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001256 ret += tcrypt_test("hmac(sha256)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 break;
1258
Andrew Donofrioa28091a2006-12-10 12:10:20 +11001259 case 103:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001260 ret += tcrypt_test("hmac(sha384)");
Andrew Donofrioa28091a2006-12-10 12:10:20 +11001261 break;
1262
1263 case 104:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001264 ret += tcrypt_test("hmac(sha512)");
Andrew Donofrioa28091a2006-12-10 12:10:20 +11001265 break;
Herbert Xu38ed9ab2008-01-01 15:59:28 +11001266
Jonathan Lynchcd12fb92007-11-10 20:08:25 +08001267 case 105:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001268 ret += tcrypt_test("hmac(sha224)");
Jonathan Lynchcd12fb92007-11-10 20:08:25 +08001269 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Herbert Xu38ed9ab2008-01-01 15:59:28 +11001271 case 106:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001272 ret += tcrypt_test("xcbc(aes)");
Herbert Xu38ed9ab2008-01-01 15:59:28 +11001273 break;
1274
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001275 case 107:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001276 ret += tcrypt_test("hmac(rmd128)");
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001277 break;
1278
1279 case 108:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001280 ret += tcrypt_test("hmac(rmd160)");
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001281 break;
1282
Shane Wangf1939f72009-09-02 20:05:22 +10001283 case 109:
1284 ret += tcrypt_test("vmac(aes)");
1285 break;
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03001286
Sonic Zhanga482b082012-05-25 17:54:13 +08001287 case 110:
1288 ret += tcrypt_test("hmac(crc32)");
1289 break;
Shane Wangf1939f72009-09-02 20:05:22 +10001290
raveendra padasalagi98eca722016-07-01 11:16:54 +05301291 case 111:
1292 ret += tcrypt_test("hmac(sha3-224)");
1293 break;
1294
1295 case 112:
1296 ret += tcrypt_test("hmac(sha3-256)");
1297 break;
1298
1299 case 113:
1300 ret += tcrypt_test("hmac(sha3-384)");
1301 break;
1302
1303 case 114:
1304 ret += tcrypt_test("hmac(sha3-512)");
1305 break;
1306
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08001307 case 150:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001308 ret += tcrypt_test("ansi_cprng");
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08001309 break;
1310
Adrian Hoban69435b92010-11-04 15:02:04 -04001311 case 151:
1312 ret += tcrypt_test("rfc4106(gcm(aes))");
1313 break;
1314
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03001315 case 152:
1316 ret += tcrypt_test("rfc4543(gcm(aes))");
1317 break;
1318
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03001319 case 153:
1320 ret += tcrypt_test("cmac(aes)");
1321 break;
1322
1323 case 154:
1324 ret += tcrypt_test("cmac(des3_ede)");
1325 break;
1326
Horia Geantabbf9c892013-11-28 15:11:16 +02001327 case 155:
1328 ret += tcrypt_test("authenc(hmac(sha1),cbc(aes))");
1329 break;
1330
Horia Geantabca4feb2014-03-14 17:46:51 +02001331 case 156:
1332 ret += tcrypt_test("authenc(hmac(md5),ecb(cipher_null))");
1333 break;
1334
1335 case 157:
1336 ret += tcrypt_test("authenc(hmac(sha1),ecb(cipher_null))");
1337 break;
Nitesh Lal5208ed22014-05-21 17:09:08 +05301338 case 181:
1339 ret += tcrypt_test("authenc(hmac(sha1),cbc(des))");
1340 break;
1341 case 182:
1342 ret += tcrypt_test("authenc(hmac(sha1),cbc(des3_ede))");
1343 break;
1344 case 183:
1345 ret += tcrypt_test("authenc(hmac(sha224),cbc(des))");
1346 break;
1347 case 184:
1348 ret += tcrypt_test("authenc(hmac(sha224),cbc(des3_ede))");
1349 break;
1350 case 185:
1351 ret += tcrypt_test("authenc(hmac(sha256),cbc(des))");
1352 break;
1353 case 186:
1354 ret += tcrypt_test("authenc(hmac(sha256),cbc(des3_ede))");
1355 break;
1356 case 187:
1357 ret += tcrypt_test("authenc(hmac(sha384),cbc(des))");
1358 break;
1359 case 188:
1360 ret += tcrypt_test("authenc(hmac(sha384),cbc(des3_ede))");
1361 break;
1362 case 189:
1363 ret += tcrypt_test("authenc(hmac(sha512),cbc(des))");
1364 break;
1365 case 190:
1366 ret += tcrypt_test("authenc(hmac(sha512),cbc(des3_ede))");
1367 break;
Harald Welteebfd9bc2005-06-22 13:27:23 -07001368 case 200:
Herbert Xucba83562006-08-13 08:26:09 +10001369 test_cipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001370 speed_template_16_24_32);
Herbert Xucba83562006-08-13 08:26:09 +10001371 test_cipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001372 speed_template_16_24_32);
Herbert Xucba83562006-08-13 08:26:09 +10001373 test_cipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001374 speed_template_16_24_32);
Herbert Xucba83562006-08-13 08:26:09 +10001375 test_cipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001376 speed_template_16_24_32);
Rik Snelf3d10442006-11-29 19:01:41 +11001377 test_cipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001378 speed_template_32_40_48);
Rik Snelf3d10442006-11-29 19:01:41 +11001379 test_cipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001380 speed_template_32_40_48);
Rik Snelf19f5112007-09-19 20:23:13 +08001381 test_cipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0,
Horia Geantăb66ad0b2017-07-19 19:40:32 +03001382 speed_template_32_64);
Rik Snelf19f5112007-09-19 20:23:13 +08001383 test_cipher_speed("xts(aes)", DECRYPT, sec, NULL, 0,
Horia Geantăb66ad0b2017-07-19 19:40:32 +03001384 speed_template_32_64);
Herbert Xu1503a242016-06-29 18:04:14 +08001385 test_cipher_speed("cts(cbc(aes))", ENCRYPT, sec, NULL, 0,
1386 speed_template_16_24_32);
1387 test_cipher_speed("cts(cbc(aes))", DECRYPT, sec, NULL, 0,
1388 speed_template_16_24_32);
Jan Glauber9996e342011-04-26 16:34:01 +10001389 test_cipher_speed("ctr(aes)", ENCRYPT, sec, NULL, 0,
1390 speed_template_16_24_32);
1391 test_cipher_speed("ctr(aes)", DECRYPT, sec, NULL, 0,
1392 speed_template_16_24_32);
Harald Welteebfd9bc2005-06-22 13:27:23 -07001393 break;
1394
1395 case 201:
Herbert Xucba83562006-08-13 08:26:09 +10001396 test_cipher_speed("ecb(des3_ede)", ENCRYPT, sec,
Herbert Xuda7f0332008-07-31 17:08:25 +08001397 des3_speed_template, DES3_SPEED_VECTORS,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001398 speed_template_24);
Herbert Xucba83562006-08-13 08:26:09 +10001399 test_cipher_speed("ecb(des3_ede)", DECRYPT, sec,
Herbert Xuda7f0332008-07-31 17:08:25 +08001400 des3_speed_template, DES3_SPEED_VECTORS,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001401 speed_template_24);
Herbert Xucba83562006-08-13 08:26:09 +10001402 test_cipher_speed("cbc(des3_ede)", ENCRYPT, sec,
Herbert Xuda7f0332008-07-31 17:08:25 +08001403 des3_speed_template, DES3_SPEED_VECTORS,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001404 speed_template_24);
Herbert Xucba83562006-08-13 08:26:09 +10001405 test_cipher_speed("cbc(des3_ede)", DECRYPT, sec,
Herbert Xuda7f0332008-07-31 17:08:25 +08001406 des3_speed_template, DES3_SPEED_VECTORS,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001407 speed_template_24);
Jussi Kivilinna87131502014-06-09 20:59:49 +03001408 test_cipher_speed("ctr(des3_ede)", ENCRYPT, sec,
1409 des3_speed_template, DES3_SPEED_VECTORS,
1410 speed_template_24);
1411 test_cipher_speed("ctr(des3_ede)", DECRYPT, sec,
1412 des3_speed_template, DES3_SPEED_VECTORS,
1413 speed_template_24);
Harald Welteebfd9bc2005-06-22 13:27:23 -07001414 break;
1415
1416 case 202:
Herbert Xucba83562006-08-13 08:26:09 +10001417 test_cipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001418 speed_template_16_24_32);
Herbert Xucba83562006-08-13 08:26:09 +10001419 test_cipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001420 speed_template_16_24_32);
Herbert Xucba83562006-08-13 08:26:09 +10001421 test_cipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001422 speed_template_16_24_32);
Herbert Xucba83562006-08-13 08:26:09 +10001423 test_cipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001424 speed_template_16_24_32);
Jussi Kivilinnaee5002a2011-09-26 16:47:15 +03001425 test_cipher_speed("ctr(twofish)", ENCRYPT, sec, NULL, 0,
1426 speed_template_16_24_32);
1427 test_cipher_speed("ctr(twofish)", DECRYPT, sec, NULL, 0,
1428 speed_template_16_24_32);
Jussi Kivilinnabee3a902011-10-18 13:32:56 +03001429 test_cipher_speed("lrw(twofish)", ENCRYPT, sec, NULL, 0,
1430 speed_template_32_40_48);
1431 test_cipher_speed("lrw(twofish)", DECRYPT, sec, NULL, 0,
1432 speed_template_32_40_48);
Jussi Kivilinna131f7542011-10-18 13:33:38 +03001433 test_cipher_speed("xts(twofish)", ENCRYPT, sec, NULL, 0,
1434 speed_template_32_48_64);
1435 test_cipher_speed("xts(twofish)", DECRYPT, sec, NULL, 0,
1436 speed_template_32_48_64);
Harald Welteebfd9bc2005-06-22 13:27:23 -07001437 break;
1438
1439 case 203:
Herbert Xucba83562006-08-13 08:26:09 +10001440 test_cipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001441 speed_template_8_32);
Herbert Xucba83562006-08-13 08:26:09 +10001442 test_cipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001443 speed_template_8_32);
Herbert Xucba83562006-08-13 08:26:09 +10001444 test_cipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001445 speed_template_8_32);
Herbert Xucba83562006-08-13 08:26:09 +10001446 test_cipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001447 speed_template_8_32);
Jussi Kivilinna7d47b862011-09-02 01:45:17 +03001448 test_cipher_speed("ctr(blowfish)", ENCRYPT, sec, NULL, 0,
1449 speed_template_8_32);
1450 test_cipher_speed("ctr(blowfish)", DECRYPT, sec, NULL, 0,
1451 speed_template_8_32);
Harald Welteebfd9bc2005-06-22 13:27:23 -07001452 break;
1453
1454 case 204:
Herbert Xucba83562006-08-13 08:26:09 +10001455 test_cipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001456 speed_template_8);
Herbert Xucba83562006-08-13 08:26:09 +10001457 test_cipher_speed("ecb(des)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001458 speed_template_8);
Herbert Xucba83562006-08-13 08:26:09 +10001459 test_cipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001460 speed_template_8);
Herbert Xucba83562006-08-13 08:26:09 +10001461 test_cipher_speed("cbc(des)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001462 speed_template_8);
Harald Welteebfd9bc2005-06-22 13:27:23 -07001463 break;
1464
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001465 case 205:
1466 test_cipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001467 speed_template_16_24_32);
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001468 test_cipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001469 speed_template_16_24_32);
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001470 test_cipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001471 speed_template_16_24_32);
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001472 test_cipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001473 speed_template_16_24_32);
Jussi Kivilinna4de59332012-03-05 20:26:26 +02001474 test_cipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0,
1475 speed_template_16_24_32);
1476 test_cipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0,
1477 speed_template_16_24_32);
1478 test_cipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0,
1479 speed_template_32_40_48);
1480 test_cipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0,
1481 speed_template_32_40_48);
1482 test_cipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0,
1483 speed_template_32_48_64);
1484 test_cipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0,
1485 speed_template_32_48_64);
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001486 break;
1487
Tan Swee Heng5de8f1b2007-12-07 17:17:43 +08001488 case 206:
1489 test_cipher_speed("salsa20", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001490 speed_template_16_32);
Tan Swee Heng5de8f1b2007-12-07 17:17:43 +08001491 break;
1492
Jussi Kivilinna7fb7fe42011-10-18 00:03:03 +03001493 case 207:
1494 test_cipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0,
1495 speed_template_16_32);
1496 test_cipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0,
1497 speed_template_16_32);
1498 test_cipher_speed("cbc(serpent)", ENCRYPT, sec, NULL, 0,
1499 speed_template_16_32);
1500 test_cipher_speed("cbc(serpent)", DECRYPT, sec, NULL, 0,
1501 speed_template_16_32);
1502 test_cipher_speed("ctr(serpent)", ENCRYPT, sec, NULL, 0,
1503 speed_template_16_32);
1504 test_cipher_speed("ctr(serpent)", DECRYPT, sec, NULL, 0,
1505 speed_template_16_32);
Jussi Kivilinna87aae4b2011-10-18 13:32:39 +03001506 test_cipher_speed("lrw(serpent)", ENCRYPT, sec, NULL, 0,
1507 speed_template_32_48);
1508 test_cipher_speed("lrw(serpent)", DECRYPT, sec, NULL, 0,
1509 speed_template_32_48);
Jussi Kivilinna5209c072011-10-18 13:33:22 +03001510 test_cipher_speed("xts(serpent)", ENCRYPT, sec, NULL, 0,
1511 speed_template_32_64);
1512 test_cipher_speed("xts(serpent)", DECRYPT, sec, NULL, 0,
1513 speed_template_32_64);
Jussi Kivilinna7fb7fe42011-10-18 00:03:03 +03001514 break;
1515
Jussi Kivilinna31b4cd292012-06-12 16:52:04 +08001516 case 208:
1517 test_cipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0,
1518 speed_template_8);
1519 break;
1520
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02001521 case 209:
1522 test_cipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0,
1523 speed_template_8_16);
1524 test_cipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0,
1525 speed_template_8_16);
1526 test_cipher_speed("cbc(cast5)", ENCRYPT, sec, NULL, 0,
1527 speed_template_8_16);
1528 test_cipher_speed("cbc(cast5)", DECRYPT, sec, NULL, 0,
1529 speed_template_8_16);
1530 test_cipher_speed("ctr(cast5)", ENCRYPT, sec, NULL, 0,
1531 speed_template_8_16);
1532 test_cipher_speed("ctr(cast5)", DECRYPT, sec, NULL, 0,
1533 speed_template_8_16);
1534 break;
1535
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02001536 case 210:
1537 test_cipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0,
1538 speed_template_16_32);
1539 test_cipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0,
1540 speed_template_16_32);
1541 test_cipher_speed("cbc(cast6)", ENCRYPT, sec, NULL, 0,
1542 speed_template_16_32);
1543 test_cipher_speed("cbc(cast6)", DECRYPT, sec, NULL, 0,
1544 speed_template_16_32);
1545 test_cipher_speed("ctr(cast6)", ENCRYPT, sec, NULL, 0,
1546 speed_template_16_32);
1547 test_cipher_speed("ctr(cast6)", DECRYPT, sec, NULL, 0,
1548 speed_template_16_32);
1549 test_cipher_speed("lrw(cast6)", ENCRYPT, sec, NULL, 0,
1550 speed_template_32_48);
1551 test_cipher_speed("lrw(cast6)", DECRYPT, sec, NULL, 0,
1552 speed_template_32_48);
1553 test_cipher_speed("xts(cast6)", ENCRYPT, sec, NULL, 0,
1554 speed_template_32_64);
1555 test_cipher_speed("xts(cast6)", DECRYPT, sec, NULL, 0,
1556 speed_template_32_64);
1557 break;
1558
Tim Chen53f52d72013-12-11 14:28:47 -08001559 case 211:
1560 test_aead_speed("rfc4106(gcm(aes))", ENCRYPT, sec,
Herbert Xu34a1c742015-07-09 07:17:26 +08001561 NULL, 0, 16, 16, aead_speed_template_20);
Vutla, Lokesh1425d2d2015-07-07 21:01:49 +05301562 test_aead_speed("gcm(aes)", ENCRYPT, sec,
Cyrille Pitchenf18611d2015-11-17 13:37:10 +01001563 NULL, 0, 16, 8, speed_template_16_24_32);
Tim Chen53f52d72013-12-11 14:28:47 -08001564 break;
1565
Herbert Xu4e4aab62015-06-17 14:04:21 +08001566 case 212:
1567 test_aead_speed("rfc4309(ccm(aes))", ENCRYPT, sec,
Herbert Xu34a1c742015-07-09 07:17:26 +08001568 NULL, 0, 16, 16, aead_speed_template_19);
Herbert Xu4e4aab62015-06-17 14:04:21 +08001569 break;
1570
Martin Willi2dce0632015-07-16 19:13:59 +02001571 case 213:
1572 test_aead_speed("rfc7539esp(chacha20,poly1305)", ENCRYPT, sec,
1573 NULL, 0, 16, 8, aead_speed_template_36);
1574 break;
1575
1576 case 214:
1577 test_cipher_speed("chacha20", ENCRYPT, sec, NULL, 0,
1578 speed_template_32);
1579 break;
1580
Michal Ludvige8057922006-05-30 22:04:19 +10001581 case 300:
Herbert Xu86068132014-12-04 16:43:29 +08001582 if (alg) {
1583 test_hash_speed(alg, sec, generic_hash_speed_template);
1584 break;
1585 }
Michal Ludvige8057922006-05-30 22:04:19 +10001586 /* fall through */
Michal Ludvige8057922006-05-30 22:04:19 +10001587 case 301:
Herbert Xue9d41162006-08-19 21:38:49 +10001588 test_hash_speed("md4", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001589 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001590 /* fall through */
Michal Ludvige8057922006-05-30 22:04:19 +10001591 case 302:
Herbert Xue9d41162006-08-19 21:38:49 +10001592 test_hash_speed("md5", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001593 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001594 /* fall through */
Michal Ludvige8057922006-05-30 22:04:19 +10001595 case 303:
Herbert Xue9d41162006-08-19 21:38:49 +10001596 test_hash_speed("sha1", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001597 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001598 /* fall through */
Michal Ludvige8057922006-05-30 22:04:19 +10001599 case 304:
Herbert Xue9d41162006-08-19 21:38:49 +10001600 test_hash_speed("sha256", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001601 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001602 /* fall through */
Michal Ludvige8057922006-05-30 22:04:19 +10001603 case 305:
Herbert Xue9d41162006-08-19 21:38:49 +10001604 test_hash_speed("sha384", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001605 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001606 /* fall through */
Michal Ludvige8057922006-05-30 22:04:19 +10001607 case 306:
Herbert Xue9d41162006-08-19 21:38:49 +10001608 test_hash_speed("sha512", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001609 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001610 /* fall through */
Michal Ludvige8057922006-05-30 22:04:19 +10001611 case 307:
Herbert Xue9d41162006-08-19 21:38:49 +10001612 test_hash_speed("wp256", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001613 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001614 /* fall through */
Michal Ludvige8057922006-05-30 22:04:19 +10001615 case 308:
Herbert Xue9d41162006-08-19 21:38:49 +10001616 test_hash_speed("wp384", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001617 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001618 /* fall through */
Michal Ludvige8057922006-05-30 22:04:19 +10001619 case 309:
Herbert Xue9d41162006-08-19 21:38:49 +10001620 test_hash_speed("wp512", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001621 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001622 /* fall through */
Michal Ludvige8057922006-05-30 22:04:19 +10001623 case 310:
Herbert Xue9d41162006-08-19 21:38:49 +10001624 test_hash_speed("tgr128", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001625 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001626 /* fall through */
Michal Ludvige8057922006-05-30 22:04:19 +10001627 case 311:
Herbert Xue9d41162006-08-19 21:38:49 +10001628 test_hash_speed("tgr160", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001629 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001630 /* fall through */
Michal Ludvige8057922006-05-30 22:04:19 +10001631 case 312:
Herbert Xue9d41162006-08-19 21:38:49 +10001632 test_hash_speed("tgr192", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001633 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001634 /* fall through */
Jonathan Lynchcd12fb92007-11-10 20:08:25 +08001635 case 313:
1636 test_hash_speed("sha224", sec, generic_hash_speed_template);
1637 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001638 /* fall through */
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001639 case 314:
1640 test_hash_speed("rmd128", sec, generic_hash_speed_template);
1641 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001642 /* fall through */
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001643 case 315:
1644 test_hash_speed("rmd160", sec, generic_hash_speed_template);
1645 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001646 /* fall through */
Adrian-Ken Rueegsegger2998db32008-05-09 21:29:35 +08001647 case 316:
1648 test_hash_speed("rmd256", sec, generic_hash_speed_template);
1649 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001650 /* fall through */
Adrian-Ken Rueegsegger2998db32008-05-09 21:29:35 +08001651 case 317:
1652 test_hash_speed("rmd320", sec, generic_hash_speed_template);
1653 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001654 /* fall through */
Huang Ying18bcc912010-03-10 18:30:32 +08001655 case 318:
1656 test_hash_speed("ghash-generic", sec, hash_speed_template_16);
1657 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001658 /* fall through */
Tim Chene3899e42012-09-27 15:44:24 -07001659 case 319:
1660 test_hash_speed("crc32c", sec, generic_hash_speed_template);
1661 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001662 /* fall through */
Herbert Xu684115212013-09-07 12:56:26 +10001663 case 320:
1664 test_hash_speed("crct10dif", sec, generic_hash_speed_template);
1665 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001666 /* fall through */
Martin Willi2dce0632015-07-16 19:13:59 +02001667 case 321:
1668 test_hash_speed("poly1305", sec, poly1305_speed_template);
1669 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001670 /* fall through */
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05301671 case 322:
1672 test_hash_speed("sha3-224", sec, generic_hash_speed_template);
1673 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001674 /* fall through */
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05301675 case 323:
1676 test_hash_speed("sha3-256", sec, generic_hash_speed_template);
1677 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001678 /* fall through */
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05301679 case 324:
1680 test_hash_speed("sha3-384", sec, generic_hash_speed_template);
1681 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001682 /* fall through */
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05301683 case 325:
1684 test_hash_speed("sha3-512", sec, generic_hash_speed_template);
1685 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001686 /* fall through */
Gilad Ben-Yossefb7e27532017-08-21 13:51:29 +03001687 case 326:
1688 test_hash_speed("sm3", sec, generic_hash_speed_template);
1689 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001690 /* fall through */
Michal Ludvige8057922006-05-30 22:04:19 +10001691 case 399:
1692 break;
1693
David S. Millerbeb63da2010-05-19 14:11:21 +10001694 case 400:
Herbert Xu86068132014-12-04 16:43:29 +08001695 if (alg) {
1696 test_ahash_speed(alg, sec, generic_hash_speed_template);
1697 break;
1698 }
David S. Millerbeb63da2010-05-19 14:11:21 +10001699 /* fall through */
David S. Millerbeb63da2010-05-19 14:11:21 +10001700 case 401:
1701 test_ahash_speed("md4", sec, generic_hash_speed_template);
1702 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001703 /* fall through */
David S. Millerbeb63da2010-05-19 14:11:21 +10001704 case 402:
1705 test_ahash_speed("md5", sec, generic_hash_speed_template);
1706 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001707 /* fall through */
David S. Millerbeb63da2010-05-19 14:11:21 +10001708 case 403:
1709 test_ahash_speed("sha1", sec, generic_hash_speed_template);
1710 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001711 /* fall through */
David S. Millerbeb63da2010-05-19 14:11:21 +10001712 case 404:
1713 test_ahash_speed("sha256", sec, generic_hash_speed_template);
1714 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001715 /* fall through */
David S. Millerbeb63da2010-05-19 14:11:21 +10001716 case 405:
1717 test_ahash_speed("sha384", sec, generic_hash_speed_template);
1718 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001719 /* fall through */
David S. Millerbeb63da2010-05-19 14:11:21 +10001720 case 406:
1721 test_ahash_speed("sha512", sec, generic_hash_speed_template);
1722 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001723 /* fall through */
David S. Millerbeb63da2010-05-19 14:11:21 +10001724 case 407:
1725 test_ahash_speed("wp256", sec, generic_hash_speed_template);
1726 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001727 /* fall through */
David S. Millerbeb63da2010-05-19 14:11:21 +10001728 case 408:
1729 test_ahash_speed("wp384", sec, generic_hash_speed_template);
1730 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001731 /* fall through */
David S. Millerbeb63da2010-05-19 14:11:21 +10001732 case 409:
1733 test_ahash_speed("wp512", sec, generic_hash_speed_template);
1734 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001735 /* fall through */
David S. Millerbeb63da2010-05-19 14:11:21 +10001736 case 410:
1737 test_ahash_speed("tgr128", sec, generic_hash_speed_template);
1738 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001739 /* fall through */
David S. Millerbeb63da2010-05-19 14:11:21 +10001740 case 411:
1741 test_ahash_speed("tgr160", sec, generic_hash_speed_template);
1742 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001743 /* fall through */
David S. Millerbeb63da2010-05-19 14:11:21 +10001744 case 412:
1745 test_ahash_speed("tgr192", sec, generic_hash_speed_template);
1746 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001747 /* fall through */
David S. Millerbeb63da2010-05-19 14:11:21 +10001748 case 413:
1749 test_ahash_speed("sha224", sec, generic_hash_speed_template);
1750 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001751 /* fall through */
David S. Millerbeb63da2010-05-19 14:11:21 +10001752 case 414:
1753 test_ahash_speed("rmd128", sec, generic_hash_speed_template);
1754 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001755 /* fall through */
David S. Millerbeb63da2010-05-19 14:11:21 +10001756 case 415:
1757 test_ahash_speed("rmd160", sec, generic_hash_speed_template);
1758 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001759 /* fall through */
David S. Millerbeb63da2010-05-19 14:11:21 +10001760 case 416:
1761 test_ahash_speed("rmd256", sec, generic_hash_speed_template);
1762 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001763 /* fall through */
David S. Millerbeb63da2010-05-19 14:11:21 +10001764 case 417:
1765 test_ahash_speed("rmd320", sec, generic_hash_speed_template);
1766 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001767 /* fall through */
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05301768 case 418:
1769 test_ahash_speed("sha3-224", sec, generic_hash_speed_template);
1770 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001771 /* fall through */
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05301772 case 419:
1773 test_ahash_speed("sha3-256", sec, generic_hash_speed_template);
1774 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001775 /* fall through */
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05301776 case 420:
1777 test_ahash_speed("sha3-384", sec, generic_hash_speed_template);
1778 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001779 /* fall through */
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05301780 case 421:
1781 test_ahash_speed("sha3-512", sec, generic_hash_speed_template);
1782 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001783 /* fall through */
Megha Dey087bcd22016-06-23 18:40:47 -07001784 case 422:
1785 test_mb_ahash_speed("sha1", sec, generic_hash_speed_template);
1786 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001787 /* fall through */
Megha Dey087bcd22016-06-23 18:40:47 -07001788 case 423:
1789 test_mb_ahash_speed("sha256", sec, generic_hash_speed_template);
1790 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001791 /* fall through */
Megha Dey14009c42016-06-27 10:20:09 -07001792 case 424:
1793 test_mb_ahash_speed("sha512", sec, generic_hash_speed_template);
1794 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001795 /* fall through */
Gilad Ben-Yossefb7e27532017-08-21 13:51:29 +03001796 case 425:
1797 test_mb_ahash_speed("sm3", sec, generic_hash_speed_template);
1798 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001799 /* fall through */
David S. Millerbeb63da2010-05-19 14:11:21 +10001800 case 499:
1801 break;
1802
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +03001803 case 500:
1804 test_acipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
1805 speed_template_16_24_32);
1806 test_acipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0,
1807 speed_template_16_24_32);
1808 test_acipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0,
1809 speed_template_16_24_32);
1810 test_acipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0,
1811 speed_template_16_24_32);
1812 test_acipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0,
1813 speed_template_32_40_48);
1814 test_acipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0,
1815 speed_template_32_40_48);
1816 test_acipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0,
Horia Geantăb66ad0b2017-07-19 19:40:32 +03001817 speed_template_32_64);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +03001818 test_acipher_speed("xts(aes)", DECRYPT, sec, NULL, 0,
Horia Geantăb66ad0b2017-07-19 19:40:32 +03001819 speed_template_32_64);
Herbert Xu1503a242016-06-29 18:04:14 +08001820 test_acipher_speed("cts(cbc(aes))", ENCRYPT, sec, NULL, 0,
1821 speed_template_16_24_32);
1822 test_acipher_speed("cts(cbc(aes))", DECRYPT, sec, NULL, 0,
1823 speed_template_16_24_32);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +03001824 test_acipher_speed("ctr(aes)", ENCRYPT, sec, NULL, 0,
1825 speed_template_16_24_32);
1826 test_acipher_speed("ctr(aes)", DECRYPT, sec, NULL, 0,
1827 speed_template_16_24_32);
Nicolas Royerde1975332012-07-01 19:19:47 +02001828 test_acipher_speed("cfb(aes)", ENCRYPT, sec, NULL, 0,
1829 speed_template_16_24_32);
1830 test_acipher_speed("cfb(aes)", DECRYPT, sec, NULL, 0,
1831 speed_template_16_24_32);
1832 test_acipher_speed("ofb(aes)", ENCRYPT, sec, NULL, 0,
1833 speed_template_16_24_32);
1834 test_acipher_speed("ofb(aes)", DECRYPT, sec, NULL, 0,
1835 speed_template_16_24_32);
Jussi Kivilinna69d31502012-12-28 12:04:58 +02001836 test_acipher_speed("rfc3686(ctr(aes))", ENCRYPT, sec, NULL, 0,
1837 speed_template_20_28_36);
1838 test_acipher_speed("rfc3686(ctr(aes))", DECRYPT, sec, NULL, 0,
1839 speed_template_20_28_36);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +03001840 break;
1841
1842 case 501:
1843 test_acipher_speed("ecb(des3_ede)", ENCRYPT, sec,
1844 des3_speed_template, DES3_SPEED_VECTORS,
1845 speed_template_24);
1846 test_acipher_speed("ecb(des3_ede)", DECRYPT, sec,
1847 des3_speed_template, DES3_SPEED_VECTORS,
1848 speed_template_24);
1849 test_acipher_speed("cbc(des3_ede)", ENCRYPT, sec,
1850 des3_speed_template, DES3_SPEED_VECTORS,
1851 speed_template_24);
1852 test_acipher_speed("cbc(des3_ede)", DECRYPT, sec,
1853 des3_speed_template, DES3_SPEED_VECTORS,
1854 speed_template_24);
Nicolas Royerde1975332012-07-01 19:19:47 +02001855 test_acipher_speed("cfb(des3_ede)", ENCRYPT, sec,
1856 des3_speed_template, DES3_SPEED_VECTORS,
1857 speed_template_24);
1858 test_acipher_speed("cfb(des3_ede)", DECRYPT, sec,
1859 des3_speed_template, DES3_SPEED_VECTORS,
1860 speed_template_24);
1861 test_acipher_speed("ofb(des3_ede)", ENCRYPT, sec,
1862 des3_speed_template, DES3_SPEED_VECTORS,
1863 speed_template_24);
1864 test_acipher_speed("ofb(des3_ede)", DECRYPT, sec,
1865 des3_speed_template, DES3_SPEED_VECTORS,
1866 speed_template_24);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +03001867 break;
1868
1869 case 502:
1870 test_acipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0,
1871 speed_template_8);
1872 test_acipher_speed("ecb(des)", DECRYPT, sec, NULL, 0,
1873 speed_template_8);
1874 test_acipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0,
1875 speed_template_8);
1876 test_acipher_speed("cbc(des)", DECRYPT, sec, NULL, 0,
1877 speed_template_8);
Nicolas Royerde1975332012-07-01 19:19:47 +02001878 test_acipher_speed("cfb(des)", ENCRYPT, sec, NULL, 0,
1879 speed_template_8);
1880 test_acipher_speed("cfb(des)", DECRYPT, sec, NULL, 0,
1881 speed_template_8);
1882 test_acipher_speed("ofb(des)", ENCRYPT, sec, NULL, 0,
1883 speed_template_8);
1884 test_acipher_speed("ofb(des)", DECRYPT, sec, NULL, 0,
1885 speed_template_8);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +03001886 break;
1887
Jussi Kivilinna7fb7fe42011-10-18 00:03:03 +03001888 case 503:
1889 test_acipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0,
1890 speed_template_16_32);
1891 test_acipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0,
1892 speed_template_16_32);
1893 test_acipher_speed("cbc(serpent)", ENCRYPT, sec, NULL, 0,
1894 speed_template_16_32);
1895 test_acipher_speed("cbc(serpent)", DECRYPT, sec, NULL, 0,
1896 speed_template_16_32);
1897 test_acipher_speed("ctr(serpent)", ENCRYPT, sec, NULL, 0,
1898 speed_template_16_32);
1899 test_acipher_speed("ctr(serpent)", DECRYPT, sec, NULL, 0,
1900 speed_template_16_32);
Jussi Kivilinna87aae4b2011-10-18 13:32:39 +03001901 test_acipher_speed("lrw(serpent)", ENCRYPT, sec, NULL, 0,
1902 speed_template_32_48);
1903 test_acipher_speed("lrw(serpent)", DECRYPT, sec, NULL, 0,
1904 speed_template_32_48);
Jussi Kivilinna5209c072011-10-18 13:33:22 +03001905 test_acipher_speed("xts(serpent)", ENCRYPT, sec, NULL, 0,
1906 speed_template_32_64);
1907 test_acipher_speed("xts(serpent)", DECRYPT, sec, NULL, 0,
1908 speed_template_32_64);
Jussi Kivilinna7fb7fe42011-10-18 00:03:03 +03001909 break;
1910
Johannes Goetzfried107778b52012-05-28 15:54:24 +02001911 case 504:
1912 test_acipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0,
1913 speed_template_16_24_32);
1914 test_acipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0,
1915 speed_template_16_24_32);
1916 test_acipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0,
1917 speed_template_16_24_32);
1918 test_acipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0,
1919 speed_template_16_24_32);
1920 test_acipher_speed("ctr(twofish)", ENCRYPT, sec, NULL, 0,
1921 speed_template_16_24_32);
1922 test_acipher_speed("ctr(twofish)", DECRYPT, sec, NULL, 0,
1923 speed_template_16_24_32);
1924 test_acipher_speed("lrw(twofish)", ENCRYPT, sec, NULL, 0,
1925 speed_template_32_40_48);
1926 test_acipher_speed("lrw(twofish)", DECRYPT, sec, NULL, 0,
1927 speed_template_32_40_48);
1928 test_acipher_speed("xts(twofish)", ENCRYPT, sec, NULL, 0,
1929 speed_template_32_48_64);
1930 test_acipher_speed("xts(twofish)", DECRYPT, sec, NULL, 0,
1931 speed_template_32_48_64);
1932 break;
1933
Jussi Kivilinna31b4cd292012-06-12 16:52:04 +08001934 case 505:
1935 test_acipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0,
1936 speed_template_8);
1937 break;
1938
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02001939 case 506:
1940 test_acipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0,
1941 speed_template_8_16);
1942 test_acipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0,
1943 speed_template_8_16);
1944 test_acipher_speed("cbc(cast5)", ENCRYPT, sec, NULL, 0,
1945 speed_template_8_16);
1946 test_acipher_speed("cbc(cast5)", DECRYPT, sec, NULL, 0,
1947 speed_template_8_16);
1948 test_acipher_speed("ctr(cast5)", ENCRYPT, sec, NULL, 0,
1949 speed_template_8_16);
1950 test_acipher_speed("ctr(cast5)", DECRYPT, sec, NULL, 0,
1951 speed_template_8_16);
1952 break;
1953
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02001954 case 507:
1955 test_acipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0,
1956 speed_template_16_32);
1957 test_acipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0,
1958 speed_template_16_32);
1959 test_acipher_speed("cbc(cast6)", ENCRYPT, sec, NULL, 0,
1960 speed_template_16_32);
1961 test_acipher_speed("cbc(cast6)", DECRYPT, sec, NULL, 0,
1962 speed_template_16_32);
1963 test_acipher_speed("ctr(cast6)", ENCRYPT, sec, NULL, 0,
1964 speed_template_16_32);
1965 test_acipher_speed("ctr(cast6)", DECRYPT, sec, NULL, 0,
1966 speed_template_16_32);
1967 test_acipher_speed("lrw(cast6)", ENCRYPT, sec, NULL, 0,
1968 speed_template_32_48);
1969 test_acipher_speed("lrw(cast6)", DECRYPT, sec, NULL, 0,
1970 speed_template_32_48);
1971 test_acipher_speed("xts(cast6)", ENCRYPT, sec, NULL, 0,
1972 speed_template_32_64);
1973 test_acipher_speed("xts(cast6)", DECRYPT, sec, NULL, 0,
1974 speed_template_32_64);
1975 break;
1976
Jussi Kivilinnabf9c5182012-10-26 14:48:51 +03001977 case 508:
1978 test_acipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0,
1979 speed_template_16_32);
1980 test_acipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0,
1981 speed_template_16_32);
1982 test_acipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0,
1983 speed_template_16_32);
1984 test_acipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
1985 speed_template_16_32);
1986 test_acipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0,
1987 speed_template_16_32);
1988 test_acipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0,
1989 speed_template_16_32);
1990 test_acipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0,
1991 speed_template_32_48);
1992 test_acipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0,
1993 speed_template_32_48);
1994 test_acipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0,
1995 speed_template_32_64);
1996 test_acipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0,
1997 speed_template_32_64);
1998 break;
1999
Jussi Kivilinnaad8b7c32013-04-13 13:46:40 +03002000 case 509:
2001 test_acipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0,
2002 speed_template_8_32);
2003 test_acipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0,
2004 speed_template_8_32);
2005 test_acipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0,
2006 speed_template_8_32);
2007 test_acipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0,
2008 speed_template_8_32);
2009 test_acipher_speed("ctr(blowfish)", ENCRYPT, sec, NULL, 0,
2010 speed_template_8_32);
2011 test_acipher_speed("ctr(blowfish)", DECRYPT, sec, NULL, 0,
2012 speed_template_8_32);
2013 break;
2014
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 case 1000:
2016 test_available();
2017 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 }
Jarod Wilson4e033a62009-05-27 15:10:21 +10002019
2020 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021}
2022
Kamalesh Babulal3af5b902008-04-05 21:00:57 +08002023static int __init tcrypt_mod_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024{
Mikko Herranene3a4ea42007-11-26 22:12:07 +08002025 int err = -ENOMEM;
Herbert Xuf139cfa2008-07-31 12:23:53 +08002026 int i;
Mikko Herranene3a4ea42007-11-26 22:12:07 +08002027
Herbert Xuf139cfa2008-07-31 12:23:53 +08002028 for (i = 0; i < TVMEMSIZE; i++) {
2029 tvmem[i] = (void *)__get_free_page(GFP_KERNEL);
2030 if (!tvmem[i])
2031 goto err_free_tv;
2032 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
Herbert Xu86068132014-12-04 16:43:29 +08002034 err = do_test(alg, type, mask, mode);
Steffen Klasserta873a5f2009-06-19 19:46:53 +08002035
Jarod Wilson4e033a62009-05-27 15:10:21 +10002036 if (err) {
2037 printk(KERN_ERR "tcrypt: one or more tests failed!\n");
2038 goto err_free_tv;
Rabin Vincent76512f22017-01-18 14:54:05 +01002039 } else {
2040 pr_debug("all tests passed\n");
Jarod Wilson4e033a62009-05-27 15:10:21 +10002041 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
Jarod Wilson4e033a62009-05-27 15:10:21 +10002043 /* We intentionaly return -EAGAIN to prevent keeping the module,
2044 * unless we're running in fips mode. It does all its work from
2045 * init() and doesn't offer any runtime functionality, but in
2046 * the fips case, checking for a successful load is helpful.
Michal Ludvig14fdf472006-05-30 14:49:38 +10002047 * => we don't need it in the memory, do we?
2048 * -- mludvig
2049 */
Jarod Wilson4e033a62009-05-27 15:10:21 +10002050 if (!fips_enabled)
2051 err = -EAGAIN;
Mikko Herranene3a4ea42007-11-26 22:12:07 +08002052
Herbert Xuf139cfa2008-07-31 12:23:53 +08002053err_free_tv:
2054 for (i = 0; i < TVMEMSIZE && tvmem[i]; i++)
2055 free_page((unsigned long)tvmem[i]);
Mikko Herranene3a4ea42007-11-26 22:12:07 +08002056
2057 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058}
2059
2060/*
2061 * If an init function is provided, an exit function must also be provided
2062 * to allow module unload.
2063 */
Kamalesh Babulal3af5b902008-04-05 21:00:57 +08002064static void __exit tcrypt_mod_fini(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
Kamalesh Babulal3af5b902008-04-05 21:00:57 +08002066module_init(tcrypt_mod_init);
2067module_exit(tcrypt_mod_fini);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
Steffen Klasserta873a5f2009-06-19 19:46:53 +08002069module_param(alg, charp, 0);
2070module_param(type, uint, 0);
Herbert Xu7be380f2009-07-14 16:06:54 +08002071module_param(mask, uint, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072module_param(mode, int, 0);
Harald Welteebfd9bc2005-06-22 13:27:23 -07002073module_param(sec, uint, 0);
Herbert Xu6a179442005-06-22 13:29:03 -07002074MODULE_PARM_DESC(sec, "Length in seconds of speed tests "
2075 "(defaults to zero which uses CPU cycles instead)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
2077MODULE_LICENSE("GPL");
2078MODULE_DESCRIPTION("Quick & dirty crypto testing module");
2079MODULE_AUTHOR("James Morris <jmorris@intercode.com.au>");