blob: 28bffa6f029218f100f6f069ce5ea10b73f13978 [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 +053082struct tcrypt_result {
83 struct completion completion;
84 int err;
85};
86
87static void tcrypt_complete(struct crypto_async_request *req, int err)
88{
89 struct tcrypt_result *res = req->data;
90
91 if (err == -EINPROGRESS)
92 return;
93
94 res->err = err;
95 complete(&res->completion);
96}
97
Vutla, Lokesh1425d2d2015-07-07 21:01:49 +053098static inline int do_one_aead_op(struct aead_request *req, int ret)
99{
100 if (ret == -EINPROGRESS || ret == -EBUSY) {
101 struct tcrypt_result *tr = req->base.data;
102
103 ret = wait_for_completion_interruptible(&tr->completion);
104 if (!ret)
105 ret = tr->err;
106 reinit_completion(&tr->completion);
107 }
108
109 return ret;
110}
111
Tim Chen53f52d72013-12-11 14:28:47 -0800112static int test_aead_jiffies(struct aead_request *req, int enc,
Mark Rustad3e3dc252014-07-25 02:53:38 -0700113 int blen, int secs)
Tim Chen53f52d72013-12-11 14:28:47 -0800114{
115 unsigned long start, end;
116 int bcount;
117 int ret;
118
Mark Rustad3e3dc252014-07-25 02:53:38 -0700119 for (start = jiffies, end = start + secs * HZ, bcount = 0;
Tim Chen53f52d72013-12-11 14:28:47 -0800120 time_before(jiffies, end); bcount++) {
121 if (enc)
Vutla, Lokesh1425d2d2015-07-07 21:01:49 +0530122 ret = do_one_aead_op(req, crypto_aead_encrypt(req));
Tim Chen53f52d72013-12-11 14:28:47 -0800123 else
Vutla, Lokesh1425d2d2015-07-07 21:01:49 +0530124 ret = do_one_aead_op(req, crypto_aead_decrypt(req));
Tim Chen53f52d72013-12-11 14:28:47 -0800125
126 if (ret)
127 return ret;
128 }
129
130 printk("%d operations in %d seconds (%ld bytes)\n",
Mark Rustad3e3dc252014-07-25 02:53:38 -0700131 bcount, secs, (long)bcount * blen);
Tim Chen53f52d72013-12-11 14:28:47 -0800132 return 0;
133}
134
135static int test_aead_cycles(struct aead_request *req, int enc, int blen)
136{
137 unsigned long cycles = 0;
138 int ret = 0;
139 int i;
140
Tim Chen53f52d72013-12-11 14:28:47 -0800141 /* Warm-up run. */
142 for (i = 0; i < 4; i++) {
143 if (enc)
Vutla, Lokesh1425d2d2015-07-07 21:01:49 +0530144 ret = do_one_aead_op(req, crypto_aead_encrypt(req));
Tim Chen53f52d72013-12-11 14:28:47 -0800145 else
Vutla, Lokesh1425d2d2015-07-07 21:01:49 +0530146 ret = do_one_aead_op(req, crypto_aead_decrypt(req));
Tim Chen53f52d72013-12-11 14:28:47 -0800147
148 if (ret)
149 goto out;
150 }
151
152 /* The real thing. */
153 for (i = 0; i < 8; i++) {
154 cycles_t start, end;
155
156 start = get_cycles();
157 if (enc)
Vutla, Lokesh1425d2d2015-07-07 21:01:49 +0530158 ret = do_one_aead_op(req, crypto_aead_encrypt(req));
Tim Chen53f52d72013-12-11 14:28:47 -0800159 else
Vutla, Lokesh1425d2d2015-07-07 21:01:49 +0530160 ret = do_one_aead_op(req, crypto_aead_decrypt(req));
Tim Chen53f52d72013-12-11 14:28:47 -0800161 end = get_cycles();
162
163 if (ret)
164 goto out;
165
166 cycles += end - start;
167 }
168
169out:
Tim Chen53f52d72013-12-11 14:28:47 -0800170 if (ret == 0)
171 printk("1 operation in %lu cycles (%d bytes)\n",
172 (cycles + 4) / 8, blen);
173
174 return ret;
175}
176
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800177static u32 block_sizes[] = { 16, 64, 256, 1024, 8192, 0 };
Tim Chen53f52d72013-12-11 14:28:47 -0800178static u32 aead_sizes[] = { 16, 64, 256, 512, 1024, 2048, 4096, 8192, 0 };
179
180#define XBUFSIZE 8
181#define MAX_IVLEN 32
182
183static int testmgr_alloc_buf(char *buf[XBUFSIZE])
184{
185 int i;
186
187 for (i = 0; i < XBUFSIZE; i++) {
188 buf[i] = (void *)__get_free_page(GFP_KERNEL);
189 if (!buf[i])
190 goto err_free_buf;
191 }
192
193 return 0;
194
195err_free_buf:
196 while (i-- > 0)
197 free_page((unsigned long)buf[i]);
198
199 return -ENOMEM;
200}
201
202static void testmgr_free_buf(char *buf[XBUFSIZE])
203{
204 int i;
205
206 for (i = 0; i < XBUFSIZE; i++)
207 free_page((unsigned long)buf[i]);
208}
209
210static void sg_init_aead(struct scatterlist *sg, char *xbuf[XBUFSIZE],
211 unsigned int buflen)
212{
213 int np = (buflen + PAGE_SIZE - 1)/PAGE_SIZE;
214 int k, rem;
215
Tim Chen53f52d72013-12-11 14:28:47 -0800216 if (np > XBUFSIZE) {
217 rem = PAGE_SIZE;
218 np = XBUFSIZE;
Cristian Stoicac4768992015-01-27 11:54:27 +0200219 } else {
220 rem = buflen % PAGE_SIZE;
Tim Chen53f52d72013-12-11 14:28:47 -0800221 }
Cristian Stoicac4768992015-01-27 11:54:27 +0200222
Herbert Xu31267272015-06-17 14:05:26 +0800223 sg_init_table(sg, np + 1);
Cristian Stoicac4768992015-01-27 11:54:27 +0200224 np--;
225 for (k = 0; k < np; k++)
Herbert Xu31267272015-06-17 14:05:26 +0800226 sg_set_buf(&sg[k + 1], xbuf[k], PAGE_SIZE);
Cristian Stoicac4768992015-01-27 11:54:27 +0200227
Herbert Xu31267272015-06-17 14:05:26 +0800228 sg_set_buf(&sg[k + 1], xbuf[k], rem);
Tim Chen53f52d72013-12-11 14:28:47 -0800229}
230
Mark Rustad3e3dc252014-07-25 02:53:38 -0700231static void test_aead_speed(const char *algo, int enc, unsigned int secs,
Tim Chen53f52d72013-12-11 14:28:47 -0800232 struct aead_speed_template *template,
233 unsigned int tcount, u8 authsize,
234 unsigned int aad_size, u8 *keysize)
235{
236 unsigned int i, j;
237 struct crypto_aead *tfm;
238 int ret = -ENOMEM;
239 const char *key;
240 struct aead_request *req;
241 struct scatterlist *sg;
Tim Chen53f52d72013-12-11 14:28:47 -0800242 struct scatterlist *sgout;
243 const char *e;
244 void *assoc;
Cristian Stoica96692a732015-01-28 13:07:32 +0200245 char *iv;
Tim Chen53f52d72013-12-11 14:28:47 -0800246 char *xbuf[XBUFSIZE];
247 char *xoutbuf[XBUFSIZE];
248 char *axbuf[XBUFSIZE];
249 unsigned int *b_size;
250 unsigned int iv_len;
Vutla, Lokesh1425d2d2015-07-07 21:01:49 +0530251 struct tcrypt_result result;
Tim Chen53f52d72013-12-11 14:28:47 -0800252
Cristian Stoica96692a732015-01-28 13:07:32 +0200253 iv = kzalloc(MAX_IVLEN, GFP_KERNEL);
254 if (!iv)
255 return;
256
Christian Engelmayerac5f8632014-04-21 20:45:59 +0200257 if (aad_size >= PAGE_SIZE) {
258 pr_err("associate data length (%u) too big\n", aad_size);
Cristian Stoica96692a732015-01-28 13:07:32 +0200259 goto out_noxbuf;
Christian Engelmayerac5f8632014-04-21 20:45:59 +0200260 }
261
Tim Chen53f52d72013-12-11 14:28:47 -0800262 if (enc == ENCRYPT)
263 e = "encryption";
264 else
265 e = "decryption";
266
267 if (testmgr_alloc_buf(xbuf))
268 goto out_noxbuf;
269 if (testmgr_alloc_buf(axbuf))
270 goto out_noaxbuf;
271 if (testmgr_alloc_buf(xoutbuf))
272 goto out_nooutbuf;
273
Herbert Xua3f21852015-05-27 16:03:51 +0800274 sg = kmalloc(sizeof(*sg) * 9 * 2, GFP_KERNEL);
Tim Chen53f52d72013-12-11 14:28:47 -0800275 if (!sg)
276 goto out_nosg;
Herbert Xua3f21852015-05-27 16:03:51 +0800277 sgout = &sg[9];
Tim Chen53f52d72013-12-11 14:28:47 -0800278
Herbert Xu5e4b8c12015-08-13 17:29:06 +0800279 tfm = crypto_alloc_aead(algo, 0, 0);
Tim Chen53f52d72013-12-11 14:28:47 -0800280
281 if (IS_ERR(tfm)) {
282 pr_err("alg: aead: Failed to load transform for %s: %ld\n", algo,
283 PTR_ERR(tfm));
Christian Engelmayera2ea6ed2014-04-21 20:46:40 +0200284 goto out_notfm;
Tim Chen53f52d72013-12-11 14:28:47 -0800285 }
286
Vutla, Lokesh1425d2d2015-07-07 21:01:49 +0530287 init_completion(&result.completion);
Luca Clementi263a8df2014-06-25 22:57:42 -0700288 printk(KERN_INFO "\ntesting speed of %s (%s) %s\n", algo,
289 get_driver_name(crypto_aead, tfm), e);
290
Tim Chen53f52d72013-12-11 14:28:47 -0800291 req = aead_request_alloc(tfm, GFP_KERNEL);
292 if (!req) {
293 pr_err("alg: aead: Failed to allocate request for %s\n",
294 algo);
Christian Engelmayer6af1f932014-04-21 20:47:05 +0200295 goto out_noreq;
Tim Chen53f52d72013-12-11 14:28:47 -0800296 }
297
Vutla, Lokesh1425d2d2015-07-07 21:01:49 +0530298 aead_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
299 tcrypt_complete, &result);
300
Tim Chen53f52d72013-12-11 14:28:47 -0800301 i = 0;
302 do {
303 b_size = aead_sizes;
304 do {
305 assoc = axbuf[0];
Christian Engelmayerac5f8632014-04-21 20:45:59 +0200306 memset(assoc, 0xff, aad_size);
Tim Chen53f52d72013-12-11 14:28:47 -0800307
308 if ((*keysize + *b_size) > TVMEMSIZE * PAGE_SIZE) {
309 pr_err("template (%u) too big for tvmem (%lu)\n",
310 *keysize + *b_size,
311 TVMEMSIZE * PAGE_SIZE);
312 goto out;
313 }
314
315 key = tvmem[0];
316 for (j = 0; j < tcount; j++) {
317 if (template[j].klen == *keysize) {
318 key = template[j].key;
319 break;
320 }
321 }
322 ret = crypto_aead_setkey(tfm, key, *keysize);
323 ret = crypto_aead_setauthsize(tfm, authsize);
324
325 iv_len = crypto_aead_ivsize(tfm);
326 if (iv_len)
Cristian Stoica96692a732015-01-28 13:07:32 +0200327 memset(iv, 0xff, iv_len);
Tim Chen53f52d72013-12-11 14:28:47 -0800328
329 crypto_aead_clear_flags(tfm, ~0);
330 printk(KERN_INFO "test %u (%d bit key, %d byte blocks): ",
331 i, *keysize * 8, *b_size);
332
333
334 memset(tvmem[0], 0xff, PAGE_SIZE);
335
336 if (ret) {
337 pr_err("setkey() failed flags=%x\n",
338 crypto_aead_get_flags(tfm));
339 goto out;
340 }
341
Herbert Xu31267272015-06-17 14:05:26 +0800342 sg_init_aead(sg, xbuf,
Tim Chen53f52d72013-12-11 14:28:47 -0800343 *b_size + (enc ? authsize : 0));
344
Herbert Xu31267272015-06-17 14:05:26 +0800345 sg_init_aead(sgout, xoutbuf,
Tim Chen53f52d72013-12-11 14:28:47 -0800346 *b_size + (enc ? authsize : 0));
347
Herbert Xu31267272015-06-17 14:05:26 +0800348 sg_set_buf(&sg[0], assoc, aad_size);
349 sg_set_buf(&sgout[0], assoc, aad_size);
350
Tim Chen53f52d72013-12-11 14:28:47 -0800351 aead_request_set_crypt(req, sg, sgout, *b_size, iv);
Herbert Xua3f21852015-05-27 16:03:51 +0800352 aead_request_set_ad(req, aad_size);
Tim Chen53f52d72013-12-11 14:28:47 -0800353
Mark Rustad3e3dc252014-07-25 02:53:38 -0700354 if (secs)
355 ret = test_aead_jiffies(req, enc, *b_size,
356 secs);
Tim Chen53f52d72013-12-11 14:28:47 -0800357 else
358 ret = test_aead_cycles(req, enc, *b_size);
359
360 if (ret) {
361 pr_err("%s() failed return code=%d\n", e, ret);
362 break;
363 }
364 b_size++;
365 i++;
366 } while (*b_size);
367 keysize++;
368 } while (*keysize);
369
370out:
Christian Engelmayer6af1f932014-04-21 20:47:05 +0200371 aead_request_free(req);
372out_noreq:
Tim Chen53f52d72013-12-11 14:28:47 -0800373 crypto_free_aead(tfm);
Christian Engelmayera2ea6ed2014-04-21 20:46:40 +0200374out_notfm:
Tim Chen53f52d72013-12-11 14:28:47 -0800375 kfree(sg);
376out_nosg:
377 testmgr_free_buf(xoutbuf);
378out_nooutbuf:
379 testmgr_free_buf(axbuf);
380out_noaxbuf:
381 testmgr_free_buf(xbuf);
382out_noxbuf:
Cristian Stoica96692a732015-01-28 13:07:32 +0200383 kfree(iv);
Tim Chen53f52d72013-12-11 14:28:47 -0800384}
Sebastian Siewiord5dc3922008-03-11 21:27:11 +0800385
David S. Millerbeb63da72010-05-19 14:11:21 +1000386static void test_hash_sg_init(struct scatterlist *sg)
387{
388 int i;
389
390 sg_init_table(sg, TVMEMSIZE);
391 for (i = 0; i < TVMEMSIZE; i++) {
392 sg_set_buf(sg + i, tvmem[i], PAGE_SIZE);
393 memset(tvmem[i], 0xff, PAGE_SIZE);
394 }
395}
396
David S. Millerbeb63da72010-05-19 14:11:21 +1000397static inline int do_one_ahash_op(struct ahash_request *req, int ret)
398{
399 if (ret == -EINPROGRESS || ret == -EBUSY) {
400 struct tcrypt_result *tr = req->base.data;
401
Rabin Vincent8a45ac12015-01-09 16:25:28 +0100402 wait_for_completion(&tr->completion);
Wolfram Sang16735d02013-11-14 14:32:02 -0800403 reinit_completion(&tr->completion);
Rabin Vincent8a45ac12015-01-09 16:25:28 +0100404 ret = tr->err;
David S. Millerbeb63da72010-05-19 14:11:21 +1000405 }
406 return ret;
407}
408
Herbert Xu72259de2016-06-28 20:33:52 +0800409struct test_mb_ahash_data {
410 struct scatterlist sg[TVMEMSIZE];
411 char result[64];
412 struct ahash_request *req;
413 struct tcrypt_result tresult;
414 char *xbuf[XBUFSIZE];
415};
Megha Dey087bcd22016-06-23 18:40:47 -0700416
417static void test_mb_ahash_speed(const char *algo, unsigned int sec,
Herbert Xu72259de2016-06-28 20:33:52 +0800418 struct hash_speed *speed)
Megha Dey087bcd22016-06-23 18:40:47 -0700419{
Herbert Xu72259de2016-06-28 20:33:52 +0800420 struct test_mb_ahash_data *data;
Megha Dey087bcd22016-06-23 18:40:47 -0700421 struct crypto_ahash *tfm;
Herbert Xu72259de2016-06-28 20:33:52 +0800422 unsigned long start, end;
Herbert Xuf8de55b2016-06-28 16:41:38 +0800423 unsigned long cycles;
Herbert Xu72259de2016-06-28 20:33:52 +0800424 unsigned int i, j, k;
425 int ret;
426
427 data = kzalloc(sizeof(*data) * 8, GFP_KERNEL);
428 if (!data)
429 return;
Megha Dey087bcd22016-06-23 18:40:47 -0700430
431 tfm = crypto_alloc_ahash(algo, 0, 0);
432 if (IS_ERR(tfm)) {
433 pr_err("failed to load transform for %s: %ld\n",
434 algo, PTR_ERR(tfm));
Herbert Xu72259de2016-06-28 20:33:52 +0800435 goto free_data;
Megha Dey087bcd22016-06-23 18:40:47 -0700436 }
Herbert Xu72259de2016-06-28 20:33:52 +0800437
Megha Dey087bcd22016-06-23 18:40:47 -0700438 for (i = 0; i < 8; ++i) {
Herbert Xu72259de2016-06-28 20:33:52 +0800439 if (testmgr_alloc_buf(data[i].xbuf))
440 goto out;
Megha Dey087bcd22016-06-23 18:40:47 -0700441
Herbert Xu72259de2016-06-28 20:33:52 +0800442 init_completion(&data[i].tresult.completion);
Megha Dey087bcd22016-06-23 18:40:47 -0700443
Herbert Xu72259de2016-06-28 20:33:52 +0800444 data[i].req = ahash_request_alloc(tfm, GFP_KERNEL);
445 if (!data[i].req) {
Krzysztof Kozlowskif83f5b12016-06-28 09:23:06 +0200446 pr_err("alg: hash: Failed to allocate request for %s\n",
447 algo);
Herbert Xu72259de2016-06-28 20:33:52 +0800448 goto out;
Megha Dey087bcd22016-06-23 18:40:47 -0700449 }
Megha Dey087bcd22016-06-23 18:40:47 -0700450
Herbert Xu72259de2016-06-28 20:33:52 +0800451 ahash_request_set_callback(data[i].req, 0,
452 tcrypt_complete, &data[i].tresult);
453 test_hash_sg_init(data[i].sg);
Megha Dey087bcd22016-06-23 18:40:47 -0700454 }
455
Herbert Xu72259de2016-06-28 20:33:52 +0800456 pr_info("\ntesting speed of multibuffer %s (%s)\n", algo,
457 get_driver_name(crypto_ahash, tfm));
Megha Dey087bcd22016-06-23 18:40:47 -0700458
459 for (i = 0; speed[i].blen != 0; i++) {
Herbert Xu72259de2016-06-28 20:33:52 +0800460 /* For some reason this only tests digests. */
461 if (speed[i].blen != speed[i].plen)
462 continue;
463
Megha Dey087bcd22016-06-23 18:40:47 -0700464 if (speed[i].blen > TVMEMSIZE * PAGE_SIZE) {
Krzysztof Kozlowskif83f5b12016-06-28 09:23:06 +0200465 pr_err("template (%u) too big for tvmem (%lu)\n",
466 speed[i].blen, TVMEMSIZE * PAGE_SIZE);
467 goto out;
Megha Dey087bcd22016-06-23 18:40:47 -0700468 }
469
470 if (speed[i].klen)
471 crypto_ahash_setkey(tfm, tvmem[0], speed[i].klen);
472
Herbert Xu72259de2016-06-28 20:33:52 +0800473 for (k = 0; k < 8; k++)
474 ahash_request_set_crypt(data[k].req, data[k].sg,
475 data[k].result, speed[i].blen);
Megha Dey087bcd22016-06-23 18:40:47 -0700476
Herbert Xu72259de2016-06-28 20:33:52 +0800477 pr_info("test%3u "
478 "(%5u byte blocks,%5u bytes per update,%4u updates): ",
Megha Dey087bcd22016-06-23 18:40:47 -0700479 i, speed[i].blen, speed[i].plen,
480 speed[i].blen / speed[i].plen);
481
Herbert Xu72259de2016-06-28 20:33:52 +0800482 start = get_cycles();
483
484 for (k = 0; k < 8; k++) {
485 ret = crypto_ahash_digest(data[k].req);
Herbert Xud13cd112016-06-30 11:00:13 +0800486 if (ret == -EINPROGRESS) {
487 ret = 0;
Megha Dey087bcd22016-06-23 18:40:47 -0700488 continue;
Herbert Xud13cd112016-06-30 11:00:13 +0800489 }
Megha Dey087bcd22016-06-23 18:40:47 -0700490
Megha Dey087bcd22016-06-23 18:40:47 -0700491 if (ret)
Herbert Xu72259de2016-06-28 20:33:52 +0800492 break;
493
494 complete(&data[k].tresult.completion);
495 data[k].tresult.err = 0;
Megha Dey087bcd22016-06-23 18:40:47 -0700496 }
497
Herbert Xu72259de2016-06-28 20:33:52 +0800498 for (j = 0; j < k; j++) {
499 struct tcrypt_result *tr = &data[j].tresult;
500
501 wait_for_completion(&tr->completion);
502 if (tr->err)
503 ret = tr->err;
504 }
505
506 end = get_cycles();
507 cycles = end - start;
508 pr_cont("%6lu cycles/operation, %4lu cycles/byte\n",
509 cycles, cycles / (8 * speed[i].blen));
510
511 if (ret) {
512 pr_err("At least one hashing failed ret=%d\n", ret);
513 break;
514 }
Megha Dey087bcd22016-06-23 18:40:47 -0700515 }
Megha Dey087bcd22016-06-23 18:40:47 -0700516
517out:
518 for (k = 0; k < 8; ++k)
Herbert Xu72259de2016-06-28 20:33:52 +0800519 ahash_request_free(data[k].req);
520
Megha Dey087bcd22016-06-23 18:40:47 -0700521 for (k = 0; k < 8; ++k)
Herbert Xu72259de2016-06-28 20:33:52 +0800522 testmgr_free_buf(data[k].xbuf);
523
524 crypto_free_ahash(tfm);
525
526free_data:
527 kfree(data);
Megha Dey087bcd22016-06-23 18:40:47 -0700528}
529
David S. Millerbeb63da72010-05-19 14:11:21 +1000530static int test_ahash_jiffies_digest(struct ahash_request *req, int blen,
Mark Rustad3e3dc252014-07-25 02:53:38 -0700531 char *out, int secs)
David S. Millerbeb63da72010-05-19 14:11:21 +1000532{
533 unsigned long start, end;
534 int bcount;
535 int ret;
536
Mark Rustad3e3dc252014-07-25 02:53:38 -0700537 for (start = jiffies, end = start + secs * HZ, bcount = 0;
David S. Millerbeb63da72010-05-19 14:11:21 +1000538 time_before(jiffies, end); bcount++) {
539 ret = do_one_ahash_op(req, crypto_ahash_digest(req));
540 if (ret)
541 return ret;
542 }
543
544 printk("%6u opers/sec, %9lu bytes/sec\n",
Mark Rustad3e3dc252014-07-25 02:53:38 -0700545 bcount / secs, ((long)bcount * blen) / secs);
David S. Millerbeb63da72010-05-19 14:11:21 +1000546
547 return 0;
548}
549
550static int test_ahash_jiffies(struct ahash_request *req, int blen,
Mark Rustad3e3dc252014-07-25 02:53:38 -0700551 int plen, char *out, int secs)
David S. Millerbeb63da72010-05-19 14:11:21 +1000552{
553 unsigned long start, end;
554 int bcount, pcount;
555 int ret;
556
557 if (plen == blen)
Mark Rustad3e3dc252014-07-25 02:53:38 -0700558 return test_ahash_jiffies_digest(req, blen, out, secs);
David S. Millerbeb63da72010-05-19 14:11:21 +1000559
Mark Rustad3e3dc252014-07-25 02:53:38 -0700560 for (start = jiffies, end = start + secs * HZ, bcount = 0;
David S. Millerbeb63da72010-05-19 14:11:21 +1000561 time_before(jiffies, end); bcount++) {
Herbert Xu43a96072015-04-22 11:02:27 +0800562 ret = do_one_ahash_op(req, crypto_ahash_init(req));
David S. Millerbeb63da72010-05-19 14:11:21 +1000563 if (ret)
564 return ret;
565 for (pcount = 0; pcount < blen; pcount += plen) {
566 ret = do_one_ahash_op(req, crypto_ahash_update(req));
567 if (ret)
568 return ret;
569 }
570 /* we assume there is enough space in 'out' for the result */
571 ret = do_one_ahash_op(req, crypto_ahash_final(req));
572 if (ret)
573 return ret;
574 }
575
576 pr_cont("%6u opers/sec, %9lu bytes/sec\n",
Mark Rustad3e3dc252014-07-25 02:53:38 -0700577 bcount / secs, ((long)bcount * blen) / secs);
David S. Millerbeb63da72010-05-19 14:11:21 +1000578
579 return 0;
580}
581
582static int test_ahash_cycles_digest(struct ahash_request *req, int blen,
583 char *out)
584{
585 unsigned long cycles = 0;
586 int ret, i;
587
588 /* Warm-up run. */
589 for (i = 0; i < 4; i++) {
590 ret = do_one_ahash_op(req, crypto_ahash_digest(req));
591 if (ret)
592 goto out;
593 }
594
595 /* The real thing. */
596 for (i = 0; i < 8; i++) {
597 cycles_t start, end;
598
599 start = get_cycles();
600
601 ret = do_one_ahash_op(req, crypto_ahash_digest(req));
602 if (ret)
603 goto out;
604
605 end = get_cycles();
606
607 cycles += end - start;
608 }
609
610out:
611 if (ret)
612 return ret;
613
614 pr_cont("%6lu cycles/operation, %4lu cycles/byte\n",
615 cycles / 8, cycles / (8 * blen));
616
617 return 0;
618}
619
620static int test_ahash_cycles(struct ahash_request *req, int blen,
621 int plen, char *out)
622{
623 unsigned long cycles = 0;
624 int i, pcount, ret;
625
626 if (plen == blen)
627 return test_ahash_cycles_digest(req, blen, out);
628
629 /* Warm-up run. */
630 for (i = 0; i < 4; i++) {
Herbert Xu43a96072015-04-22 11:02:27 +0800631 ret = do_one_ahash_op(req, crypto_ahash_init(req));
David S. Millerbeb63da72010-05-19 14:11:21 +1000632 if (ret)
633 goto out;
634 for (pcount = 0; pcount < blen; pcount += plen) {
635 ret = do_one_ahash_op(req, crypto_ahash_update(req));
636 if (ret)
637 goto out;
638 }
639 ret = do_one_ahash_op(req, crypto_ahash_final(req));
640 if (ret)
641 goto out;
642 }
643
644 /* The real thing. */
645 for (i = 0; i < 8; i++) {
646 cycles_t start, end;
647
648 start = get_cycles();
649
Herbert Xu43a96072015-04-22 11:02:27 +0800650 ret = do_one_ahash_op(req, crypto_ahash_init(req));
David S. Millerbeb63da72010-05-19 14:11:21 +1000651 if (ret)
652 goto out;
653 for (pcount = 0; pcount < blen; pcount += plen) {
654 ret = do_one_ahash_op(req, crypto_ahash_update(req));
655 if (ret)
656 goto out;
657 }
658 ret = do_one_ahash_op(req, crypto_ahash_final(req));
659 if (ret)
660 goto out;
661
662 end = get_cycles();
663
664 cycles += end - start;
665 }
666
667out:
668 if (ret)
669 return ret;
670
671 pr_cont("%6lu cycles/operation, %4lu cycles/byte\n",
672 cycles / 8, cycles / (8 * blen));
673
674 return 0;
675}
676
Herbert Xu06605112016-02-01 21:36:49 +0800677static void test_ahash_speed_common(const char *algo, unsigned int secs,
678 struct hash_speed *speed, unsigned mask)
David S. Millerbeb63da72010-05-19 14:11:21 +1000679{
680 struct scatterlist sg[TVMEMSIZE];
681 struct tcrypt_result tresult;
682 struct ahash_request *req;
683 struct crypto_ahash *tfm;
Horia Geant?f074f7b2015-08-27 18:38:36 +0300684 char *output;
David S. Millerbeb63da72010-05-19 14:11:21 +1000685 int i, ret;
686
Herbert Xu06605112016-02-01 21:36:49 +0800687 tfm = crypto_alloc_ahash(algo, 0, mask);
David S. Millerbeb63da72010-05-19 14:11:21 +1000688 if (IS_ERR(tfm)) {
689 pr_err("failed to load transform for %s: %ld\n",
690 algo, PTR_ERR(tfm));
691 return;
692 }
693
Luca Clementi263a8df2014-06-25 22:57:42 -0700694 printk(KERN_INFO "\ntesting speed of async %s (%s)\n", algo,
695 get_driver_name(crypto_ahash, tfm));
696
Horia Geant?f074f7b2015-08-27 18:38:36 +0300697 if (crypto_ahash_digestsize(tfm) > MAX_DIGEST_SIZE) {
698 pr_err("digestsize(%u) > %d\n", crypto_ahash_digestsize(tfm),
699 MAX_DIGEST_SIZE);
David S. Millerbeb63da72010-05-19 14:11:21 +1000700 goto out;
701 }
702
703 test_hash_sg_init(sg);
704 req = ahash_request_alloc(tfm, GFP_KERNEL);
705 if (!req) {
706 pr_err("ahash request allocation failure\n");
707 goto out;
708 }
709
710 init_completion(&tresult.completion);
711 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
712 tcrypt_complete, &tresult);
713
Horia Geant?f074f7b2015-08-27 18:38:36 +0300714 output = kmalloc(MAX_DIGEST_SIZE, GFP_KERNEL);
715 if (!output)
716 goto out_nomem;
717
David S. Millerbeb63da72010-05-19 14:11:21 +1000718 for (i = 0; speed[i].blen != 0; i++) {
719 if (speed[i].blen > TVMEMSIZE * PAGE_SIZE) {
720 pr_err("template (%u) too big for tvmem (%lu)\n",
721 speed[i].blen, TVMEMSIZE * PAGE_SIZE);
722 break;
723 }
724
725 pr_info("test%3u "
726 "(%5u byte blocks,%5u bytes per update,%4u updates): ",
727 i, speed[i].blen, speed[i].plen, speed[i].blen / speed[i].plen);
728
729 ahash_request_set_crypt(req, sg, output, speed[i].plen);
730
Mark Rustad3e3dc252014-07-25 02:53:38 -0700731 if (secs)
David S. Millerbeb63da72010-05-19 14:11:21 +1000732 ret = test_ahash_jiffies(req, speed[i].blen,
Mark Rustad3e3dc252014-07-25 02:53:38 -0700733 speed[i].plen, output, secs);
David S. Millerbeb63da72010-05-19 14:11:21 +1000734 else
735 ret = test_ahash_cycles(req, speed[i].blen,
736 speed[i].plen, output);
737
738 if (ret) {
739 pr_err("hashing failed ret=%d\n", ret);
740 break;
741 }
742 }
743
Horia Geant?f074f7b2015-08-27 18:38:36 +0300744 kfree(output);
745
746out_nomem:
David S. Millerbeb63da72010-05-19 14:11:21 +1000747 ahash_request_free(req);
748
749out:
750 crypto_free_ahash(tfm);
751}
752
Herbert Xu06605112016-02-01 21:36:49 +0800753static void test_ahash_speed(const char *algo, unsigned int secs,
754 struct hash_speed *speed)
755{
756 return test_ahash_speed_common(algo, secs, speed, 0);
757}
758
759static void test_hash_speed(const char *algo, unsigned int secs,
760 struct hash_speed *speed)
761{
762 return test_ahash_speed_common(algo, secs, speed, CRYPTO_ALG_ASYNC);
763}
764
Herbert Xu7166e582016-06-29 18:03:50 +0800765static inline int do_one_acipher_op(struct skcipher_request *req, int ret)
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300766{
767 if (ret == -EINPROGRESS || ret == -EBUSY) {
768 struct tcrypt_result *tr = req->base.data;
769
Rabin Vincent8a45ac12015-01-09 16:25:28 +0100770 wait_for_completion(&tr->completion);
Wolfram Sang16735d02013-11-14 14:32:02 -0800771 reinit_completion(&tr->completion);
Rabin Vincent8a45ac12015-01-09 16:25:28 +0100772 ret = tr->err;
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300773 }
774
775 return ret;
776}
777
Herbert Xu7166e582016-06-29 18:03:50 +0800778static int test_acipher_jiffies(struct skcipher_request *req, int enc,
Mark Rustad3e3dc252014-07-25 02:53:38 -0700779 int blen, int secs)
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300780{
781 unsigned long start, end;
782 int bcount;
783 int ret;
784
Mark Rustad3e3dc252014-07-25 02:53:38 -0700785 for (start = jiffies, end = start + secs * HZ, bcount = 0;
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300786 time_before(jiffies, end); bcount++) {
787 if (enc)
788 ret = do_one_acipher_op(req,
Herbert Xu7166e582016-06-29 18:03:50 +0800789 crypto_skcipher_encrypt(req));
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300790 else
791 ret = do_one_acipher_op(req,
Herbert Xu7166e582016-06-29 18:03:50 +0800792 crypto_skcipher_decrypt(req));
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300793
794 if (ret)
795 return ret;
796 }
797
798 pr_cont("%d operations in %d seconds (%ld bytes)\n",
Mark Rustad3e3dc252014-07-25 02:53:38 -0700799 bcount, secs, (long)bcount * blen);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300800 return 0;
801}
802
Herbert Xu7166e582016-06-29 18:03:50 +0800803static int test_acipher_cycles(struct skcipher_request *req, int enc,
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300804 int blen)
805{
806 unsigned long cycles = 0;
807 int ret = 0;
808 int i;
809
810 /* Warm-up run. */
811 for (i = 0; i < 4; i++) {
812 if (enc)
813 ret = do_one_acipher_op(req,
Herbert Xu7166e582016-06-29 18:03:50 +0800814 crypto_skcipher_encrypt(req));
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300815 else
816 ret = do_one_acipher_op(req,
Herbert Xu7166e582016-06-29 18:03:50 +0800817 crypto_skcipher_decrypt(req));
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300818
819 if (ret)
820 goto out;
821 }
822
823 /* The real thing. */
824 for (i = 0; i < 8; i++) {
825 cycles_t start, end;
826
827 start = get_cycles();
828 if (enc)
829 ret = do_one_acipher_op(req,
Herbert Xu7166e582016-06-29 18:03:50 +0800830 crypto_skcipher_encrypt(req));
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300831 else
832 ret = do_one_acipher_op(req,
Herbert Xu7166e582016-06-29 18:03:50 +0800833 crypto_skcipher_decrypt(req));
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300834 end = get_cycles();
835
836 if (ret)
837 goto out;
838
839 cycles += end - start;
840 }
841
842out:
843 if (ret == 0)
844 pr_cont("1 operation in %lu cycles (%d bytes)\n",
845 (cycles + 4) / 8, blen);
846
847 return ret;
848}
849
Herbert Xu7166e582016-06-29 18:03:50 +0800850static void test_skcipher_speed(const char *algo, int enc, unsigned int secs,
851 struct cipher_speed_template *template,
852 unsigned int tcount, u8 *keysize, bool async)
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300853{
Nicolas Royerde1975332012-07-01 19:19:47 +0200854 unsigned int ret, i, j, k, iv_len;
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300855 struct tcrypt_result tresult;
856 const char *key;
857 char iv[128];
Herbert Xu7166e582016-06-29 18:03:50 +0800858 struct skcipher_request *req;
859 struct crypto_skcipher *tfm;
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300860 const char *e;
861 u32 *b_size;
862
863 if (enc == ENCRYPT)
864 e = "encryption";
865 else
866 e = "decryption";
867
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300868 init_completion(&tresult.completion);
869
Herbert Xu7166e582016-06-29 18:03:50 +0800870 tfm = crypto_alloc_skcipher(algo, 0, async ? 0 : CRYPTO_ALG_ASYNC);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300871
872 if (IS_ERR(tfm)) {
873 pr_err("failed to load transform for %s: %ld\n", algo,
874 PTR_ERR(tfm));
875 return;
876 }
877
Luca Clementi263a8df2014-06-25 22:57:42 -0700878 pr_info("\ntesting speed of async %s (%s) %s\n", algo,
Herbert Xu7166e582016-06-29 18:03:50 +0800879 get_driver_name(crypto_skcipher, tfm), e);
Luca Clementi263a8df2014-06-25 22:57:42 -0700880
Herbert Xu7166e582016-06-29 18:03:50 +0800881 req = skcipher_request_alloc(tfm, GFP_KERNEL);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300882 if (!req) {
883 pr_err("tcrypt: skcipher: Failed to allocate request for %s\n",
884 algo);
885 goto out;
886 }
887
Herbert Xu7166e582016-06-29 18:03:50 +0800888 skcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
889 tcrypt_complete, &tresult);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300890
891 i = 0;
892 do {
893 b_size = block_sizes;
894
895 do {
896 struct scatterlist sg[TVMEMSIZE];
897
898 if ((*keysize + *b_size) > TVMEMSIZE * PAGE_SIZE) {
899 pr_err("template (%u) too big for "
900 "tvmem (%lu)\n", *keysize + *b_size,
901 TVMEMSIZE * PAGE_SIZE);
902 goto out_free_req;
903 }
904
905 pr_info("test %u (%d bit key, %d byte blocks): ", i,
906 *keysize * 8, *b_size);
907
908 memset(tvmem[0], 0xff, PAGE_SIZE);
909
910 /* set key, plain text and IV */
911 key = tvmem[0];
912 for (j = 0; j < tcount; j++) {
913 if (template[j].klen == *keysize) {
914 key = template[j].key;
915 break;
916 }
917 }
918
Herbert Xu7166e582016-06-29 18:03:50 +0800919 crypto_skcipher_clear_flags(tfm, ~0);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300920
Herbert Xu7166e582016-06-29 18:03:50 +0800921 ret = crypto_skcipher_setkey(tfm, key, *keysize);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300922 if (ret) {
923 pr_err("setkey() failed flags=%x\n",
Herbert Xu7166e582016-06-29 18:03:50 +0800924 crypto_skcipher_get_flags(tfm));
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300925 goto out_free_req;
926 }
927
Nicolas Royerde1975332012-07-01 19:19:47 +0200928 k = *keysize + *b_size;
Horia Geant?007ee8d2015-03-09 16:14:58 +0200929 sg_init_table(sg, DIV_ROUND_UP(k, PAGE_SIZE));
930
Nicolas Royerde1975332012-07-01 19:19:47 +0200931 if (k > PAGE_SIZE) {
932 sg_set_buf(sg, tvmem[0] + *keysize,
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300933 PAGE_SIZE - *keysize);
Nicolas Royerde1975332012-07-01 19:19:47 +0200934 k -= PAGE_SIZE;
935 j = 1;
936 while (k > PAGE_SIZE) {
937 sg_set_buf(sg + j, tvmem[j], PAGE_SIZE);
938 memset(tvmem[j], 0xff, PAGE_SIZE);
939 j++;
940 k -= PAGE_SIZE;
941 }
942 sg_set_buf(sg + j, tvmem[j], k);
943 memset(tvmem[j], 0xff, k);
944 } else {
945 sg_set_buf(sg, tvmem[0] + *keysize, *b_size);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300946 }
947
Herbert Xu7166e582016-06-29 18:03:50 +0800948 iv_len = crypto_skcipher_ivsize(tfm);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300949 if (iv_len)
950 memset(&iv, 0xff, iv_len);
951
Herbert Xu7166e582016-06-29 18:03:50 +0800952 skcipher_request_set_crypt(req, sg, sg, *b_size, iv);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300953
Mark Rustad3e3dc252014-07-25 02:53:38 -0700954 if (secs)
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300955 ret = test_acipher_jiffies(req, enc,
Mark Rustad3e3dc252014-07-25 02:53:38 -0700956 *b_size, secs);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300957 else
958 ret = test_acipher_cycles(req, enc,
959 *b_size);
960
961 if (ret) {
962 pr_err("%s() failed flags=%x\n", e,
Herbert Xu7166e582016-06-29 18:03:50 +0800963 crypto_skcipher_get_flags(tfm));
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300964 break;
965 }
966 b_size++;
967 i++;
968 } while (*b_size);
969 keysize++;
970 } while (*keysize);
971
972out_free_req:
Herbert Xu7166e582016-06-29 18:03:50 +0800973 skcipher_request_free(req);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300974out:
Herbert Xu7166e582016-06-29 18:03:50 +0800975 crypto_free_skcipher(tfm);
976}
977
978static void test_acipher_speed(const char *algo, int enc, unsigned int secs,
979 struct cipher_speed_template *template,
980 unsigned int tcount, u8 *keysize)
981{
982 return test_skcipher_speed(algo, enc, secs, template, tcount, keysize,
983 true);
984}
985
986static void test_cipher_speed(const char *algo, int enc, unsigned int secs,
987 struct cipher_speed_template *template,
988 unsigned int tcount, u8 *keysize)
989{
990 return test_skcipher_speed(algo, enc, secs, template, tcount, keysize,
991 false);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +0300992}
993
Herbert Xuef2736f2005-06-22 13:26:03 -0700994static void test_available(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995{
996 char **name = check;
Herbert Xuef2736f2005-06-22 13:26:03 -0700997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 while (*name) {
999 printk("alg %s ", *name);
Herbert Xu6158efc2007-04-04 17:41:07 +10001000 printk(crypto_has_alg(*name, 0, 0) ?
Herbert Xue4d5b792006-08-26 18:12:40 +10001001 "found\n" : "not found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 name++;
Herbert Xuef2736f2005-06-22 13:26:03 -07001003 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004}
1005
Herbert Xu01b32322008-07-31 15:41:55 +08001006static inline int tcrypt_test(const char *alg)
1007{
Jarod Wilson4e033a62009-05-27 15:10:21 +10001008 int ret;
1009
Rabin Vincent76512f22017-01-18 14:54:05 +01001010 pr_debug("testing %s\n", alg);
1011
Jarod Wilson4e033a62009-05-27 15:10:21 +10001012 ret = alg_test(alg, alg, 0, 0);
1013 /* non-fips algs return -EINVAL in fips mode */
1014 if (fips_enabled && ret == -EINVAL)
1015 ret = 0;
1016 return ret;
Herbert Xu01b32322008-07-31 15:41:55 +08001017}
1018
Herbert Xu86068132014-12-04 16:43:29 +08001019static int do_test(const char *alg, u32 type, u32 mask, int m)
Herbert Xu01b32322008-07-31 15:41:55 +08001020{
1021 int i;
Jarod Wilson4e033a62009-05-27 15:10:21 +10001022 int ret = 0;
Herbert Xu01b32322008-07-31 15:41:55 +08001023
1024 switch (m) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 case 0:
Herbert Xu86068132014-12-04 16:43:29 +08001026 if (alg) {
1027 if (!crypto_has_alg(alg, type,
1028 mask ?: CRYPTO_ALG_TYPE_MASK))
1029 ret = -ENOENT;
1030 break;
1031 }
1032
Herbert Xu01b32322008-07-31 15:41:55 +08001033 for (i = 1; i < 200; i++)
Herbert Xu86068132014-12-04 16:43:29 +08001034 ret += do_test(NULL, 0, 0, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 break;
1036
1037 case 1:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001038 ret += tcrypt_test("md5");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 break;
1040
1041 case 2:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001042 ret += tcrypt_test("sha1");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 break;
1044
1045 case 3:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001046 ret += tcrypt_test("ecb(des)");
1047 ret += tcrypt_test("cbc(des)");
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03001048 ret += tcrypt_test("ctr(des)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 break;
1050
1051 case 4:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001052 ret += tcrypt_test("ecb(des3_ede)");
1053 ret += tcrypt_test("cbc(des3_ede)");
Jussi Kivilinnae080b172012-10-20 14:53:12 +03001054 ret += tcrypt_test("ctr(des3_ede)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 break;
1056
1057 case 5:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001058 ret += tcrypt_test("md4");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 break;
Herbert Xuef2736f2005-06-22 13:26:03 -07001060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 case 6:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001062 ret += tcrypt_test("sha256");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 break;
Herbert Xuef2736f2005-06-22 13:26:03 -07001064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 case 7:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001066 ret += tcrypt_test("ecb(blowfish)");
1067 ret += tcrypt_test("cbc(blowfish)");
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03001068 ret += tcrypt_test("ctr(blowfish)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 break;
1070
1071 case 8:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001072 ret += tcrypt_test("ecb(twofish)");
1073 ret += tcrypt_test("cbc(twofish)");
Jussi Kivilinna573da622011-10-10 23:03:12 +03001074 ret += tcrypt_test("ctr(twofish)");
Jussi Kivilinnabee3a902011-10-18 13:32:56 +03001075 ret += tcrypt_test("lrw(twofish)");
Jussi Kivilinna131f7542011-10-18 13:33:38 +03001076 ret += tcrypt_test("xts(twofish)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 break;
Herbert Xuef2736f2005-06-22 13:26:03 -07001078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 case 9:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001080 ret += tcrypt_test("ecb(serpent)");
Jussi Kivilinna9d259172011-10-18 00:02:53 +03001081 ret += tcrypt_test("cbc(serpent)");
1082 ret += tcrypt_test("ctr(serpent)");
Jussi Kivilinna87aae4b2011-10-18 13:32:39 +03001083 ret += tcrypt_test("lrw(serpent)");
Jussi Kivilinna5209c072011-10-18 13:33:22 +03001084 ret += tcrypt_test("xts(serpent)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 break;
1086
1087 case 10:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001088 ret += tcrypt_test("ecb(aes)");
1089 ret += tcrypt_test("cbc(aes)");
1090 ret += tcrypt_test("lrw(aes)");
1091 ret += tcrypt_test("xts(aes)");
1092 ret += tcrypt_test("ctr(aes)");
1093 ret += tcrypt_test("rfc3686(ctr(aes))");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 break;
1095
1096 case 11:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001097 ret += tcrypt_test("sha384");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 break;
Herbert Xuef2736f2005-06-22 13:26:03 -07001099
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 case 12:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001101 ret += tcrypt_test("sha512");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 break;
1103
1104 case 13:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001105 ret += tcrypt_test("deflate");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 break;
1107
1108 case 14:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001109 ret += tcrypt_test("ecb(cast5)");
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02001110 ret += tcrypt_test("cbc(cast5)");
1111 ret += tcrypt_test("ctr(cast5)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 break;
1113
1114 case 15:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001115 ret += tcrypt_test("ecb(cast6)");
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02001116 ret += tcrypt_test("cbc(cast6)");
1117 ret += tcrypt_test("ctr(cast6)");
1118 ret += tcrypt_test("lrw(cast6)");
1119 ret += tcrypt_test("xts(cast6)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 break;
1121
1122 case 16:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001123 ret += tcrypt_test("ecb(arc4)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 break;
1125
1126 case 17:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001127 ret += tcrypt_test("michael_mic");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 break;
1129
1130 case 18:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001131 ret += tcrypt_test("crc32c");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 break;
1133
1134 case 19:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001135 ret += tcrypt_test("ecb(tea)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 break;
1137
1138 case 20:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001139 ret += tcrypt_test("ecb(xtea)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 break;
1141
1142 case 21:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001143 ret += tcrypt_test("ecb(khazad)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 break;
1145
1146 case 22:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001147 ret += tcrypt_test("wp512");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 break;
1149
1150 case 23:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001151 ret += tcrypt_test("wp384");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 break;
1153
1154 case 24:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001155 ret += tcrypt_test("wp256");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 break;
1157
1158 case 25:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001159 ret += tcrypt_test("ecb(tnepres)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 break;
1161
1162 case 26:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001163 ret += tcrypt_test("ecb(anubis)");
1164 ret += tcrypt_test("cbc(anubis)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 break;
1166
1167 case 27:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001168 ret += tcrypt_test("tgr192");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 break;
1170
1171 case 28:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001172 ret += tcrypt_test("tgr160");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 break;
1174
1175 case 29:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001176 ret += tcrypt_test("tgr128");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 break;
Adrian-Ken Rueegsegger2998db32008-05-09 21:29:35 +08001178
Aaron Grothefb4f10e2005-09-01 17:42:46 -07001179 case 30:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001180 ret += tcrypt_test("ecb(xeta)");
Aaron Grothefb4f10e2005-09-01 17:42:46 -07001181 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
David Howells90831632006-12-16 12:13:14 +11001183 case 31:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001184 ret += tcrypt_test("pcbc(fcrypt)");
David Howells90831632006-12-16 12:13:14 +11001185 break;
1186
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001187 case 32:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001188 ret += tcrypt_test("ecb(camellia)");
1189 ret += tcrypt_test("cbc(camellia)");
Jussi Kivilinna54216bb2012-09-21 10:27:10 +03001190 ret += tcrypt_test("ctr(camellia)");
1191 ret += tcrypt_test("lrw(camellia)");
1192 ret += tcrypt_test("xts(camellia)");
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001193 break;
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03001194
Jonathan Lynchcd12fb92007-11-10 20:08:25 +08001195 case 33:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001196 ret += tcrypt_test("sha224");
Jonathan Lynchcd12fb92007-11-10 20:08:25 +08001197 break;
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001198
Tan Swee Heng2407d602007-11-23 19:45:00 +08001199 case 34:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001200 ret += tcrypt_test("salsa20");
Tan Swee Heng2407d602007-11-23 19:45:00 +08001201 break;
1202
Herbert Xu8df213d2007-12-02 14:55:47 +11001203 case 35:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001204 ret += tcrypt_test("gcm(aes)");
Herbert Xu8df213d2007-12-02 14:55:47 +11001205 break;
1206
Zoltan Sogor0b77abb2007-12-07 16:53:23 +08001207 case 36:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001208 ret += tcrypt_test("lzo");
Zoltan Sogor0b77abb2007-12-07 16:53:23 +08001209 break;
1210
Joy Latten93cc74e2007-12-12 20:24:22 +08001211 case 37:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001212 ret += tcrypt_test("ccm(aes)");
Joy Latten93cc74e2007-12-12 20:24:22 +08001213 break;
1214
Kevin Coffman76cb9522008-03-24 21:26:16 +08001215 case 38:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001216 ret += tcrypt_test("cts(cbc(aes))");
Kevin Coffman76cb9522008-03-24 21:26:16 +08001217 break;
1218
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001219 case 39:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001220 ret += tcrypt_test("rmd128");
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001221 break;
1222
1223 case 40:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001224 ret += tcrypt_test("rmd160");
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001225 break;
1226
Adrian-Ken Rueegsegger2998db32008-05-09 21:29:35 +08001227 case 41:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001228 ret += tcrypt_test("rmd256");
Adrian-Ken Rueegsegger2998db32008-05-09 21:29:35 +08001229 break;
1230
1231 case 42:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001232 ret += tcrypt_test("rmd320");
Herbert Xu01b32322008-07-31 15:41:55 +08001233 break;
1234
1235 case 43:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001236 ret += tcrypt_test("ecb(seed)");
Adrian-Ken Rueegsegger2998db32008-05-09 21:29:35 +08001237 break;
1238
Geert Uytterhoeven0c01aed2009-03-04 15:42:15 +08001239 case 44:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001240 ret += tcrypt_test("zlib");
Geert Uytterhoeven0c01aed2009-03-04 15:42:15 +08001241 break;
1242
Jarod Wilson5d667322009-05-04 19:23:40 +08001243 case 45:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001244 ret += tcrypt_test("rfc4309(ccm(aes))");
Jarod Wilson5d667322009-05-04 19:23:40 +08001245 break;
1246
Jussi Kivilinna54216bb2012-09-21 10:27:10 +03001247 case 46:
1248 ret += tcrypt_test("ghash");
1249 break;
1250
Herbert Xu684115212013-09-07 12:56:26 +10001251 case 47:
1252 ret += tcrypt_test("crct10dif");
1253 break;
1254
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05301255 case 48:
1256 ret += tcrypt_test("sha3-224");
1257 break;
1258
1259 case 49:
1260 ret += tcrypt_test("sha3-256");
1261 break;
1262
1263 case 50:
1264 ret += tcrypt_test("sha3-384");
1265 break;
1266
1267 case 51:
1268 ret += tcrypt_test("sha3-512");
1269 break;
1270
Gilad Ben-Yossefb7e27532017-08-21 13:51:29 +03001271 case 52:
1272 ret += tcrypt_test("sm3");
1273 break;
1274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 case 100:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001276 ret += tcrypt_test("hmac(md5)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 break;
Herbert Xuef2736f2005-06-22 13:26:03 -07001278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 case 101:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001280 ret += tcrypt_test("hmac(sha1)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 break;
Herbert Xuef2736f2005-06-22 13:26:03 -07001282
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 case 102:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001284 ret += tcrypt_test("hmac(sha256)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 break;
1286
Andrew Donofrioa28091a2006-12-10 12:10:20 +11001287 case 103:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001288 ret += tcrypt_test("hmac(sha384)");
Andrew Donofrioa28091a2006-12-10 12:10:20 +11001289 break;
1290
1291 case 104:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001292 ret += tcrypt_test("hmac(sha512)");
Andrew Donofrioa28091a2006-12-10 12:10:20 +11001293 break;
Herbert Xu38ed9ab2008-01-01 15:59:28 +11001294
Jonathan Lynchcd12fb92007-11-10 20:08:25 +08001295 case 105:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001296 ret += tcrypt_test("hmac(sha224)");
Jonathan Lynchcd12fb92007-11-10 20:08:25 +08001297 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Herbert Xu38ed9ab2008-01-01 15:59:28 +11001299 case 106:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001300 ret += tcrypt_test("xcbc(aes)");
Herbert Xu38ed9ab2008-01-01 15:59:28 +11001301 break;
1302
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001303 case 107:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001304 ret += tcrypt_test("hmac(rmd128)");
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001305 break;
1306
1307 case 108:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001308 ret += tcrypt_test("hmac(rmd160)");
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001309 break;
1310
Shane Wangf1939f72009-09-02 20:05:22 +10001311 case 109:
1312 ret += tcrypt_test("vmac(aes)");
1313 break;
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03001314
Sonic Zhanga482b082012-05-25 17:54:13 +08001315 case 110:
1316 ret += tcrypt_test("hmac(crc32)");
1317 break;
Shane Wangf1939f72009-09-02 20:05:22 +10001318
raveendra padasalagi98eca722016-07-01 11:16:54 +05301319 case 111:
1320 ret += tcrypt_test("hmac(sha3-224)");
1321 break;
1322
1323 case 112:
1324 ret += tcrypt_test("hmac(sha3-256)");
1325 break;
1326
1327 case 113:
1328 ret += tcrypt_test("hmac(sha3-384)");
1329 break;
1330
1331 case 114:
1332 ret += tcrypt_test("hmac(sha3-512)");
1333 break;
1334
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08001335 case 150:
Jarod Wilson4e033a62009-05-27 15:10:21 +10001336 ret += tcrypt_test("ansi_cprng");
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08001337 break;
1338
Adrian Hoban69435b92010-11-04 15:02:04 -04001339 case 151:
1340 ret += tcrypt_test("rfc4106(gcm(aes))");
1341 break;
1342
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03001343 case 152:
1344 ret += tcrypt_test("rfc4543(gcm(aes))");
1345 break;
1346
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03001347 case 153:
1348 ret += tcrypt_test("cmac(aes)");
1349 break;
1350
1351 case 154:
1352 ret += tcrypt_test("cmac(des3_ede)");
1353 break;
1354
Horia Geantabbf9c892013-11-28 15:11:16 +02001355 case 155:
1356 ret += tcrypt_test("authenc(hmac(sha1),cbc(aes))");
1357 break;
1358
Horia Geantabca4feb2014-03-14 17:46:51 +02001359 case 156:
1360 ret += tcrypt_test("authenc(hmac(md5),ecb(cipher_null))");
1361 break;
1362
1363 case 157:
1364 ret += tcrypt_test("authenc(hmac(sha1),ecb(cipher_null))");
1365 break;
Nitesh Lal5208ed22014-05-21 17:09:08 +05301366 case 181:
1367 ret += tcrypt_test("authenc(hmac(sha1),cbc(des))");
1368 break;
1369 case 182:
1370 ret += tcrypt_test("authenc(hmac(sha1),cbc(des3_ede))");
1371 break;
1372 case 183:
1373 ret += tcrypt_test("authenc(hmac(sha224),cbc(des))");
1374 break;
1375 case 184:
1376 ret += tcrypt_test("authenc(hmac(sha224),cbc(des3_ede))");
1377 break;
1378 case 185:
1379 ret += tcrypt_test("authenc(hmac(sha256),cbc(des))");
1380 break;
1381 case 186:
1382 ret += tcrypt_test("authenc(hmac(sha256),cbc(des3_ede))");
1383 break;
1384 case 187:
1385 ret += tcrypt_test("authenc(hmac(sha384),cbc(des))");
1386 break;
1387 case 188:
1388 ret += tcrypt_test("authenc(hmac(sha384),cbc(des3_ede))");
1389 break;
1390 case 189:
1391 ret += tcrypt_test("authenc(hmac(sha512),cbc(des))");
1392 break;
1393 case 190:
1394 ret += tcrypt_test("authenc(hmac(sha512),cbc(des3_ede))");
1395 break;
Harald Welteebfd9bc2005-06-22 13:27:23 -07001396 case 200:
Herbert Xucba83562006-08-13 08:26:09 +10001397 test_cipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001398 speed_template_16_24_32);
Herbert Xucba83562006-08-13 08:26:09 +10001399 test_cipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001400 speed_template_16_24_32);
Herbert Xucba83562006-08-13 08:26:09 +10001401 test_cipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001402 speed_template_16_24_32);
Herbert Xucba83562006-08-13 08:26:09 +10001403 test_cipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001404 speed_template_16_24_32);
Rik Snelf3d10442006-11-29 19:01:41 +11001405 test_cipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001406 speed_template_32_40_48);
Rik Snelf3d10442006-11-29 19:01:41 +11001407 test_cipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001408 speed_template_32_40_48);
Rik Snelf19f5112007-09-19 20:23:13 +08001409 test_cipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0,
Horia Geantăb66ad0b2017-07-19 19:40:32 +03001410 speed_template_32_64);
Rik Snelf19f5112007-09-19 20:23:13 +08001411 test_cipher_speed("xts(aes)", DECRYPT, sec, NULL, 0,
Horia Geantăb66ad0b2017-07-19 19:40:32 +03001412 speed_template_32_64);
Herbert Xu1503a242016-06-29 18:04:14 +08001413 test_cipher_speed("cts(cbc(aes))", ENCRYPT, sec, NULL, 0,
1414 speed_template_16_24_32);
1415 test_cipher_speed("cts(cbc(aes))", DECRYPT, sec, NULL, 0,
1416 speed_template_16_24_32);
Jan Glauber9996e342011-04-26 16:34:01 +10001417 test_cipher_speed("ctr(aes)", ENCRYPT, sec, NULL, 0,
1418 speed_template_16_24_32);
1419 test_cipher_speed("ctr(aes)", DECRYPT, sec, NULL, 0,
1420 speed_template_16_24_32);
Harald Welteebfd9bc2005-06-22 13:27:23 -07001421 break;
1422
1423 case 201:
Herbert Xucba83562006-08-13 08:26:09 +10001424 test_cipher_speed("ecb(des3_ede)", ENCRYPT, sec,
Herbert Xuda7f0332008-07-31 17:08:25 +08001425 des3_speed_template, DES3_SPEED_VECTORS,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001426 speed_template_24);
Herbert Xucba83562006-08-13 08:26:09 +10001427 test_cipher_speed("ecb(des3_ede)", DECRYPT, sec,
Herbert Xuda7f0332008-07-31 17:08:25 +08001428 des3_speed_template, DES3_SPEED_VECTORS,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001429 speed_template_24);
Herbert Xucba83562006-08-13 08:26:09 +10001430 test_cipher_speed("cbc(des3_ede)", ENCRYPT, sec,
Herbert Xuda7f0332008-07-31 17:08:25 +08001431 des3_speed_template, DES3_SPEED_VECTORS,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001432 speed_template_24);
Herbert Xucba83562006-08-13 08:26:09 +10001433 test_cipher_speed("cbc(des3_ede)", DECRYPT, sec,
Herbert Xuda7f0332008-07-31 17:08:25 +08001434 des3_speed_template, DES3_SPEED_VECTORS,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001435 speed_template_24);
Jussi Kivilinna87131502014-06-09 20:59:49 +03001436 test_cipher_speed("ctr(des3_ede)", ENCRYPT, sec,
1437 des3_speed_template, DES3_SPEED_VECTORS,
1438 speed_template_24);
1439 test_cipher_speed("ctr(des3_ede)", DECRYPT, sec,
1440 des3_speed_template, DES3_SPEED_VECTORS,
1441 speed_template_24);
Harald Welteebfd9bc2005-06-22 13:27:23 -07001442 break;
1443
1444 case 202:
Herbert Xucba83562006-08-13 08:26:09 +10001445 test_cipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001446 speed_template_16_24_32);
Herbert Xucba83562006-08-13 08:26:09 +10001447 test_cipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001448 speed_template_16_24_32);
Herbert Xucba83562006-08-13 08:26:09 +10001449 test_cipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001450 speed_template_16_24_32);
Herbert Xucba83562006-08-13 08:26:09 +10001451 test_cipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001452 speed_template_16_24_32);
Jussi Kivilinnaee5002a2011-09-26 16:47:15 +03001453 test_cipher_speed("ctr(twofish)", ENCRYPT, sec, NULL, 0,
1454 speed_template_16_24_32);
1455 test_cipher_speed("ctr(twofish)", DECRYPT, sec, NULL, 0,
1456 speed_template_16_24_32);
Jussi Kivilinnabee3a902011-10-18 13:32:56 +03001457 test_cipher_speed("lrw(twofish)", ENCRYPT, sec, NULL, 0,
1458 speed_template_32_40_48);
1459 test_cipher_speed("lrw(twofish)", DECRYPT, sec, NULL, 0,
1460 speed_template_32_40_48);
Jussi Kivilinna131f7542011-10-18 13:33:38 +03001461 test_cipher_speed("xts(twofish)", ENCRYPT, sec, NULL, 0,
1462 speed_template_32_48_64);
1463 test_cipher_speed("xts(twofish)", DECRYPT, sec, NULL, 0,
1464 speed_template_32_48_64);
Harald Welteebfd9bc2005-06-22 13:27:23 -07001465 break;
1466
1467 case 203:
Herbert Xucba83562006-08-13 08:26:09 +10001468 test_cipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001469 speed_template_8_32);
Herbert Xucba83562006-08-13 08:26:09 +10001470 test_cipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001471 speed_template_8_32);
Herbert Xucba83562006-08-13 08:26:09 +10001472 test_cipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001473 speed_template_8_32);
Herbert Xucba83562006-08-13 08:26:09 +10001474 test_cipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001475 speed_template_8_32);
Jussi Kivilinna7d47b862011-09-02 01:45:17 +03001476 test_cipher_speed("ctr(blowfish)", ENCRYPT, sec, NULL, 0,
1477 speed_template_8_32);
1478 test_cipher_speed("ctr(blowfish)", DECRYPT, sec, NULL, 0,
1479 speed_template_8_32);
Harald Welteebfd9bc2005-06-22 13:27:23 -07001480 break;
1481
1482 case 204:
Herbert Xucba83562006-08-13 08:26:09 +10001483 test_cipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001484 speed_template_8);
Herbert Xucba83562006-08-13 08:26:09 +10001485 test_cipher_speed("ecb(des)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001486 speed_template_8);
Herbert Xucba83562006-08-13 08:26:09 +10001487 test_cipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001488 speed_template_8);
Herbert Xucba83562006-08-13 08:26:09 +10001489 test_cipher_speed("cbc(des)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001490 speed_template_8);
Harald Welteebfd9bc2005-06-22 13:27:23 -07001491 break;
1492
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001493 case 205:
1494 test_cipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001495 speed_template_16_24_32);
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001496 test_cipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001497 speed_template_16_24_32);
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001498 test_cipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001499 speed_template_16_24_32);
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001500 test_cipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001501 speed_template_16_24_32);
Jussi Kivilinna4de59332012-03-05 20:26:26 +02001502 test_cipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0,
1503 speed_template_16_24_32);
1504 test_cipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0,
1505 speed_template_16_24_32);
1506 test_cipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0,
1507 speed_template_32_40_48);
1508 test_cipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0,
1509 speed_template_32_40_48);
1510 test_cipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0,
1511 speed_template_32_48_64);
1512 test_cipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0,
1513 speed_template_32_48_64);
Noriaki TAKAMIYA02ab5a72007-01-24 21:48:19 +11001514 break;
1515
Tan Swee Heng5de8f1b2007-12-07 17:17:43 +08001516 case 206:
1517 test_cipher_speed("salsa20", ENCRYPT, sec, NULL, 0,
Sebastian Siewior477035c2008-03-11 21:24:26 +08001518 speed_template_16_32);
Tan Swee Heng5de8f1b2007-12-07 17:17:43 +08001519 break;
1520
Jussi Kivilinna7fb7fe42011-10-18 00:03:03 +03001521 case 207:
1522 test_cipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0,
1523 speed_template_16_32);
1524 test_cipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0,
1525 speed_template_16_32);
1526 test_cipher_speed("cbc(serpent)", ENCRYPT, sec, NULL, 0,
1527 speed_template_16_32);
1528 test_cipher_speed("cbc(serpent)", DECRYPT, sec, NULL, 0,
1529 speed_template_16_32);
1530 test_cipher_speed("ctr(serpent)", ENCRYPT, sec, NULL, 0,
1531 speed_template_16_32);
1532 test_cipher_speed("ctr(serpent)", DECRYPT, sec, NULL, 0,
1533 speed_template_16_32);
Jussi Kivilinna87aae4b2011-10-18 13:32:39 +03001534 test_cipher_speed("lrw(serpent)", ENCRYPT, sec, NULL, 0,
1535 speed_template_32_48);
1536 test_cipher_speed("lrw(serpent)", DECRYPT, sec, NULL, 0,
1537 speed_template_32_48);
Jussi Kivilinna5209c072011-10-18 13:33:22 +03001538 test_cipher_speed("xts(serpent)", ENCRYPT, sec, NULL, 0,
1539 speed_template_32_64);
1540 test_cipher_speed("xts(serpent)", DECRYPT, sec, NULL, 0,
1541 speed_template_32_64);
Jussi Kivilinna7fb7fe42011-10-18 00:03:03 +03001542 break;
1543
Jussi Kivilinna31b4cd292012-06-12 16:52:04 +08001544 case 208:
1545 test_cipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0,
1546 speed_template_8);
1547 break;
1548
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02001549 case 209:
1550 test_cipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0,
1551 speed_template_8_16);
1552 test_cipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0,
1553 speed_template_8_16);
1554 test_cipher_speed("cbc(cast5)", ENCRYPT, sec, NULL, 0,
1555 speed_template_8_16);
1556 test_cipher_speed("cbc(cast5)", DECRYPT, sec, NULL, 0,
1557 speed_template_8_16);
1558 test_cipher_speed("ctr(cast5)", ENCRYPT, sec, NULL, 0,
1559 speed_template_8_16);
1560 test_cipher_speed("ctr(cast5)", DECRYPT, sec, NULL, 0,
1561 speed_template_8_16);
1562 break;
1563
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02001564 case 210:
1565 test_cipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0,
1566 speed_template_16_32);
1567 test_cipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0,
1568 speed_template_16_32);
1569 test_cipher_speed("cbc(cast6)", ENCRYPT, sec, NULL, 0,
1570 speed_template_16_32);
1571 test_cipher_speed("cbc(cast6)", DECRYPT, sec, NULL, 0,
1572 speed_template_16_32);
1573 test_cipher_speed("ctr(cast6)", ENCRYPT, sec, NULL, 0,
1574 speed_template_16_32);
1575 test_cipher_speed("ctr(cast6)", DECRYPT, sec, NULL, 0,
1576 speed_template_16_32);
1577 test_cipher_speed("lrw(cast6)", ENCRYPT, sec, NULL, 0,
1578 speed_template_32_48);
1579 test_cipher_speed("lrw(cast6)", DECRYPT, sec, NULL, 0,
1580 speed_template_32_48);
1581 test_cipher_speed("xts(cast6)", ENCRYPT, sec, NULL, 0,
1582 speed_template_32_64);
1583 test_cipher_speed("xts(cast6)", DECRYPT, sec, NULL, 0,
1584 speed_template_32_64);
1585 break;
1586
Tim Chen53f52d72013-12-11 14:28:47 -08001587 case 211:
1588 test_aead_speed("rfc4106(gcm(aes))", ENCRYPT, sec,
Herbert Xu34a1c742015-07-09 07:17:26 +08001589 NULL, 0, 16, 16, aead_speed_template_20);
Vutla, Lokesh1425d2d2015-07-07 21:01:49 +05301590 test_aead_speed("gcm(aes)", ENCRYPT, sec,
Cyrille Pitchenf18611d2015-11-17 13:37:10 +01001591 NULL, 0, 16, 8, speed_template_16_24_32);
Tim Chen53f52d72013-12-11 14:28:47 -08001592 break;
1593
Herbert Xu4e4aab62015-06-17 14:04:21 +08001594 case 212:
1595 test_aead_speed("rfc4309(ccm(aes))", ENCRYPT, sec,
Herbert Xu34a1c742015-07-09 07:17:26 +08001596 NULL, 0, 16, 16, aead_speed_template_19);
Herbert Xu4e4aab62015-06-17 14:04:21 +08001597 break;
1598
Martin Willi2dce0632015-07-16 19:13:59 +02001599 case 213:
1600 test_aead_speed("rfc7539esp(chacha20,poly1305)", ENCRYPT, sec,
1601 NULL, 0, 16, 8, aead_speed_template_36);
1602 break;
1603
1604 case 214:
1605 test_cipher_speed("chacha20", ENCRYPT, sec, NULL, 0,
1606 speed_template_32);
1607 break;
1608
Michal Ludvige8057922006-05-30 22:04:19 +10001609 case 300:
Herbert Xu86068132014-12-04 16:43:29 +08001610 if (alg) {
1611 test_hash_speed(alg, sec, generic_hash_speed_template);
1612 break;
1613 }
Michal Ludvige8057922006-05-30 22:04:19 +10001614 /* fall through */
Michal Ludvige8057922006-05-30 22:04:19 +10001615 case 301:
Herbert Xue9d41162006-08-19 21:38:49 +10001616 test_hash_speed("md4", 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 302:
Herbert Xue9d41162006-08-19 21:38:49 +10001620 test_hash_speed("md5", 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 303:
Herbert Xue9d41162006-08-19 21:38:49 +10001624 test_hash_speed("sha1", 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 304:
Herbert Xue9d41162006-08-19 21:38:49 +10001628 test_hash_speed("sha256", 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 305:
Herbert Xue9d41162006-08-19 21:38:49 +10001632 test_hash_speed("sha384", 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 */
Michal Ludvige8057922006-05-30 22:04:19 +10001635 case 306:
Herbert Xue9d41162006-08-19 21:38:49 +10001636 test_hash_speed("sha512", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001637 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001638 /* fall through */
Michal Ludvige8057922006-05-30 22:04:19 +10001639 case 307:
Herbert Xue9d41162006-08-19 21:38:49 +10001640 test_hash_speed("wp256", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001641 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001642 /* fall through */
Michal Ludvige8057922006-05-30 22:04:19 +10001643 case 308:
Herbert Xue9d41162006-08-19 21:38:49 +10001644 test_hash_speed("wp384", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001645 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001646 /* fall through */
Michal Ludvige8057922006-05-30 22:04:19 +10001647 case 309:
Herbert Xue9d41162006-08-19 21:38:49 +10001648 test_hash_speed("wp512", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001649 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001650 /* fall through */
Michal Ludvige8057922006-05-30 22:04:19 +10001651 case 310:
Herbert Xue9d41162006-08-19 21:38:49 +10001652 test_hash_speed("tgr128", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001653 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001654 /* fall through */
Michal Ludvige8057922006-05-30 22:04:19 +10001655 case 311:
Herbert Xue9d41162006-08-19 21:38:49 +10001656 test_hash_speed("tgr160", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001657 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001658 /* fall through */
Michal Ludvige8057922006-05-30 22:04:19 +10001659 case 312:
Herbert Xue9d41162006-08-19 21:38:49 +10001660 test_hash_speed("tgr192", sec, generic_hash_speed_template);
Michal Ludvige8057922006-05-30 22:04:19 +10001661 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001662 /* fall through */
Jonathan Lynchcd12fb92007-11-10 20:08:25 +08001663 case 313:
1664 test_hash_speed("sha224", sec, generic_hash_speed_template);
1665 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001666 /* fall through */
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001667 case 314:
1668 test_hash_speed("rmd128", sec, generic_hash_speed_template);
1669 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001670 /* fall through */
Adrian-Ken Rueegseggerfd4adf12008-05-07 22:16:36 +08001671 case 315:
1672 test_hash_speed("rmd160", sec, generic_hash_speed_template);
1673 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001674 /* fall through */
Adrian-Ken Rueegsegger2998db32008-05-09 21:29:35 +08001675 case 316:
1676 test_hash_speed("rmd256", sec, generic_hash_speed_template);
1677 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001678 /* fall through */
Adrian-Ken Rueegsegger2998db32008-05-09 21:29:35 +08001679 case 317:
1680 test_hash_speed("rmd320", sec, generic_hash_speed_template);
1681 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001682 /* fall through */
Huang Ying18bcc912010-03-10 18:30:32 +08001683 case 318:
1684 test_hash_speed("ghash-generic", sec, hash_speed_template_16);
1685 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001686 /* fall through */
Tim Chene3899e42012-09-27 15:44:24 -07001687 case 319:
1688 test_hash_speed("crc32c", sec, generic_hash_speed_template);
1689 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001690 /* fall through */
Herbert Xu684115212013-09-07 12:56:26 +10001691 case 320:
1692 test_hash_speed("crct10dif", sec, generic_hash_speed_template);
1693 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001694 /* fall through */
Martin Willi2dce0632015-07-16 19:13:59 +02001695 case 321:
1696 test_hash_speed("poly1305", sec, poly1305_speed_template);
1697 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001698 /* fall through */
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05301699 case 322:
1700 test_hash_speed("sha3-224", sec, generic_hash_speed_template);
1701 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001702 /* fall through */
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05301703 case 323:
1704 test_hash_speed("sha3-256", sec, generic_hash_speed_template);
1705 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001706 /* fall through */
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05301707 case 324:
1708 test_hash_speed("sha3-384", sec, generic_hash_speed_template);
1709 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001710 /* fall through */
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05301711 case 325:
1712 test_hash_speed("sha3-512", sec, generic_hash_speed_template);
1713 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001714 /* fall through */
Gilad Ben-Yossefb7e27532017-08-21 13:51:29 +03001715 case 326:
1716 test_hash_speed("sm3", sec, generic_hash_speed_template);
1717 if (mode > 300 && mode < 400) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001718 /* fall through */
Michal Ludvige8057922006-05-30 22:04:19 +10001719 case 399:
1720 break;
1721
David S. Millerbeb63da72010-05-19 14:11:21 +10001722 case 400:
Herbert Xu86068132014-12-04 16:43:29 +08001723 if (alg) {
1724 test_ahash_speed(alg, sec, generic_hash_speed_template);
1725 break;
1726 }
David S. Millerbeb63da72010-05-19 14:11:21 +10001727 /* fall through */
David S. Millerbeb63da72010-05-19 14:11:21 +10001728 case 401:
1729 test_ahash_speed("md4", 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. Millerbeb63da72010-05-19 14:11:21 +10001732 case 402:
1733 test_ahash_speed("md5", 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. Millerbeb63da72010-05-19 14:11:21 +10001736 case 403:
1737 test_ahash_speed("sha1", 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. Millerbeb63da72010-05-19 14:11:21 +10001740 case 404:
1741 test_ahash_speed("sha256", 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. Millerbeb63da72010-05-19 14:11:21 +10001744 case 405:
1745 test_ahash_speed("sha384", 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. Millerbeb63da72010-05-19 14:11:21 +10001748 case 406:
1749 test_ahash_speed("sha512", 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. Millerbeb63da72010-05-19 14:11:21 +10001752 case 407:
1753 test_ahash_speed("wp256", 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. Millerbeb63da72010-05-19 14:11:21 +10001756 case 408:
1757 test_ahash_speed("wp384", 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. Millerbeb63da72010-05-19 14:11:21 +10001760 case 409:
1761 test_ahash_speed("wp512", 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. Millerbeb63da72010-05-19 14:11:21 +10001764 case 410:
1765 test_ahash_speed("tgr128", sec, generic_hash_speed_template);
1766 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001767 /* fall through */
David S. Millerbeb63da72010-05-19 14:11:21 +10001768 case 411:
1769 test_ahash_speed("tgr160", sec, generic_hash_speed_template);
1770 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001771 /* fall through */
David S. Millerbeb63da72010-05-19 14:11:21 +10001772 case 412:
1773 test_ahash_speed("tgr192", sec, generic_hash_speed_template);
1774 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001775 /* fall through */
David S. Millerbeb63da72010-05-19 14:11:21 +10001776 case 413:
1777 test_ahash_speed("sha224", sec, generic_hash_speed_template);
1778 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001779 /* fall through */
David S. Millerbeb63da72010-05-19 14:11:21 +10001780 case 414:
1781 test_ahash_speed("rmd128", sec, generic_hash_speed_template);
1782 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001783 /* fall through */
David S. Millerbeb63da72010-05-19 14:11:21 +10001784 case 415:
1785 test_ahash_speed("rmd160", sec, generic_hash_speed_template);
1786 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001787 /* fall through */
David S. Millerbeb63da72010-05-19 14:11:21 +10001788 case 416:
1789 test_ahash_speed("rmd256", sec, generic_hash_speed_template);
1790 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001791 /* fall through */
David S. Millerbeb63da72010-05-19 14:11:21 +10001792 case 417:
1793 test_ahash_speed("rmd320", sec, generic_hash_speed_template);
1794 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001795 /* fall through */
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05301796 case 418:
1797 test_ahash_speed("sha3-224", sec, generic_hash_speed_template);
1798 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001799 /* fall through */
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05301800 case 419:
1801 test_ahash_speed("sha3-256", sec, generic_hash_speed_template);
1802 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001803 /* fall through */
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05301804 case 420:
1805 test_ahash_speed("sha3-384", sec, generic_hash_speed_template);
1806 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001807 /* fall through */
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05301808 case 421:
1809 test_ahash_speed("sha3-512", sec, generic_hash_speed_template);
1810 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001811 /* fall through */
Megha Dey087bcd22016-06-23 18:40:47 -07001812 case 422:
1813 test_mb_ahash_speed("sha1", sec, generic_hash_speed_template);
1814 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001815 /* fall through */
Megha Dey087bcd22016-06-23 18:40:47 -07001816 case 423:
1817 test_mb_ahash_speed("sha256", sec, generic_hash_speed_template);
1818 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001819 /* fall through */
Megha Dey14009c42016-06-27 10:20:09 -07001820 case 424:
1821 test_mb_ahash_speed("sha512", sec, generic_hash_speed_template);
1822 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001823 /* fall through */
Gilad Ben-Yossefb7e27532017-08-21 13:51:29 +03001824 case 425:
1825 test_mb_ahash_speed("sm3", sec, generic_hash_speed_template);
1826 if (mode > 400 && mode < 500) break;
Gustavo A. R. Silva59517222017-10-09 14:43:21 -05001827 /* fall through */
David S. Millerbeb63da72010-05-19 14:11:21 +10001828 case 499:
1829 break;
1830
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +03001831 case 500:
1832 test_acipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0,
1833 speed_template_16_24_32);
1834 test_acipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0,
1835 speed_template_16_24_32);
1836 test_acipher_speed("cbc(aes)", ENCRYPT, sec, NULL, 0,
1837 speed_template_16_24_32);
1838 test_acipher_speed("cbc(aes)", DECRYPT, sec, NULL, 0,
1839 speed_template_16_24_32);
1840 test_acipher_speed("lrw(aes)", ENCRYPT, sec, NULL, 0,
1841 speed_template_32_40_48);
1842 test_acipher_speed("lrw(aes)", DECRYPT, sec, NULL, 0,
1843 speed_template_32_40_48);
1844 test_acipher_speed("xts(aes)", ENCRYPT, sec, NULL, 0,
Horia Geantăb66ad0b2017-07-19 19:40:32 +03001845 speed_template_32_64);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +03001846 test_acipher_speed("xts(aes)", DECRYPT, sec, NULL, 0,
Horia Geantăb66ad0b2017-07-19 19:40:32 +03001847 speed_template_32_64);
Herbert Xu1503a242016-06-29 18:04:14 +08001848 test_acipher_speed("cts(cbc(aes))", ENCRYPT, sec, NULL, 0,
1849 speed_template_16_24_32);
1850 test_acipher_speed("cts(cbc(aes))", DECRYPT, sec, NULL, 0,
1851 speed_template_16_24_32);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +03001852 test_acipher_speed("ctr(aes)", ENCRYPT, sec, NULL, 0,
1853 speed_template_16_24_32);
1854 test_acipher_speed("ctr(aes)", DECRYPT, sec, NULL, 0,
1855 speed_template_16_24_32);
Nicolas Royerde1975332012-07-01 19:19:47 +02001856 test_acipher_speed("cfb(aes)", ENCRYPT, sec, NULL, 0,
1857 speed_template_16_24_32);
1858 test_acipher_speed("cfb(aes)", DECRYPT, sec, NULL, 0,
1859 speed_template_16_24_32);
1860 test_acipher_speed("ofb(aes)", ENCRYPT, sec, NULL, 0,
1861 speed_template_16_24_32);
1862 test_acipher_speed("ofb(aes)", DECRYPT, sec, NULL, 0,
1863 speed_template_16_24_32);
Jussi Kivilinna69d31502012-12-28 12:04:58 +02001864 test_acipher_speed("rfc3686(ctr(aes))", ENCRYPT, sec, NULL, 0,
1865 speed_template_20_28_36);
1866 test_acipher_speed("rfc3686(ctr(aes))", DECRYPT, sec, NULL, 0,
1867 speed_template_20_28_36);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +03001868 break;
1869
1870 case 501:
1871 test_acipher_speed("ecb(des3_ede)", ENCRYPT, sec,
1872 des3_speed_template, DES3_SPEED_VECTORS,
1873 speed_template_24);
1874 test_acipher_speed("ecb(des3_ede)", DECRYPT, sec,
1875 des3_speed_template, DES3_SPEED_VECTORS,
1876 speed_template_24);
1877 test_acipher_speed("cbc(des3_ede)", ENCRYPT, sec,
1878 des3_speed_template, DES3_SPEED_VECTORS,
1879 speed_template_24);
1880 test_acipher_speed("cbc(des3_ede)", DECRYPT, sec,
1881 des3_speed_template, DES3_SPEED_VECTORS,
1882 speed_template_24);
Nicolas Royerde1975332012-07-01 19:19:47 +02001883 test_acipher_speed("cfb(des3_ede)", ENCRYPT, sec,
1884 des3_speed_template, DES3_SPEED_VECTORS,
1885 speed_template_24);
1886 test_acipher_speed("cfb(des3_ede)", DECRYPT, sec,
1887 des3_speed_template, DES3_SPEED_VECTORS,
1888 speed_template_24);
1889 test_acipher_speed("ofb(des3_ede)", ENCRYPT, sec,
1890 des3_speed_template, DES3_SPEED_VECTORS,
1891 speed_template_24);
1892 test_acipher_speed("ofb(des3_ede)", DECRYPT, sec,
1893 des3_speed_template, DES3_SPEED_VECTORS,
1894 speed_template_24);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +03001895 break;
1896
1897 case 502:
1898 test_acipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0,
1899 speed_template_8);
1900 test_acipher_speed("ecb(des)", DECRYPT, sec, NULL, 0,
1901 speed_template_8);
1902 test_acipher_speed("cbc(des)", ENCRYPT, sec, NULL, 0,
1903 speed_template_8);
1904 test_acipher_speed("cbc(des)", DECRYPT, sec, NULL, 0,
1905 speed_template_8);
Nicolas Royerde1975332012-07-01 19:19:47 +02001906 test_acipher_speed("cfb(des)", ENCRYPT, sec, NULL, 0,
1907 speed_template_8);
1908 test_acipher_speed("cfb(des)", DECRYPT, sec, NULL, 0,
1909 speed_template_8);
1910 test_acipher_speed("ofb(des)", ENCRYPT, sec, NULL, 0,
1911 speed_template_8);
1912 test_acipher_speed("ofb(des)", DECRYPT, sec, NULL, 0,
1913 speed_template_8);
Jussi Kivilinna3f3baf32011-10-18 00:02:58 +03001914 break;
1915
Jussi Kivilinna7fb7fe42011-10-18 00:03:03 +03001916 case 503:
1917 test_acipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0,
1918 speed_template_16_32);
1919 test_acipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0,
1920 speed_template_16_32);
1921 test_acipher_speed("cbc(serpent)", ENCRYPT, sec, NULL, 0,
1922 speed_template_16_32);
1923 test_acipher_speed("cbc(serpent)", DECRYPT, sec, NULL, 0,
1924 speed_template_16_32);
1925 test_acipher_speed("ctr(serpent)", ENCRYPT, sec, NULL, 0,
1926 speed_template_16_32);
1927 test_acipher_speed("ctr(serpent)", DECRYPT, sec, NULL, 0,
1928 speed_template_16_32);
Jussi Kivilinna87aae4b2011-10-18 13:32:39 +03001929 test_acipher_speed("lrw(serpent)", ENCRYPT, sec, NULL, 0,
1930 speed_template_32_48);
1931 test_acipher_speed("lrw(serpent)", DECRYPT, sec, NULL, 0,
1932 speed_template_32_48);
Jussi Kivilinna5209c072011-10-18 13:33:22 +03001933 test_acipher_speed("xts(serpent)", ENCRYPT, sec, NULL, 0,
1934 speed_template_32_64);
1935 test_acipher_speed("xts(serpent)", DECRYPT, sec, NULL, 0,
1936 speed_template_32_64);
Jussi Kivilinna7fb7fe42011-10-18 00:03:03 +03001937 break;
1938
Johannes Goetzfried107778b52012-05-28 15:54:24 +02001939 case 504:
1940 test_acipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0,
1941 speed_template_16_24_32);
1942 test_acipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0,
1943 speed_template_16_24_32);
1944 test_acipher_speed("cbc(twofish)", ENCRYPT, sec, NULL, 0,
1945 speed_template_16_24_32);
1946 test_acipher_speed("cbc(twofish)", DECRYPT, sec, NULL, 0,
1947 speed_template_16_24_32);
1948 test_acipher_speed("ctr(twofish)", ENCRYPT, sec, NULL, 0,
1949 speed_template_16_24_32);
1950 test_acipher_speed("ctr(twofish)", DECRYPT, sec, NULL, 0,
1951 speed_template_16_24_32);
1952 test_acipher_speed("lrw(twofish)", ENCRYPT, sec, NULL, 0,
1953 speed_template_32_40_48);
1954 test_acipher_speed("lrw(twofish)", DECRYPT, sec, NULL, 0,
1955 speed_template_32_40_48);
1956 test_acipher_speed("xts(twofish)", ENCRYPT, sec, NULL, 0,
1957 speed_template_32_48_64);
1958 test_acipher_speed("xts(twofish)", DECRYPT, sec, NULL, 0,
1959 speed_template_32_48_64);
1960 break;
1961
Jussi Kivilinna31b4cd292012-06-12 16:52:04 +08001962 case 505:
1963 test_acipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0,
1964 speed_template_8);
1965 break;
1966
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02001967 case 506:
1968 test_acipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0,
1969 speed_template_8_16);
1970 test_acipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0,
1971 speed_template_8_16);
1972 test_acipher_speed("cbc(cast5)", ENCRYPT, sec, NULL, 0,
1973 speed_template_8_16);
1974 test_acipher_speed("cbc(cast5)", DECRYPT, sec, NULL, 0,
1975 speed_template_8_16);
1976 test_acipher_speed("ctr(cast5)", ENCRYPT, sec, NULL, 0,
1977 speed_template_8_16);
1978 test_acipher_speed("ctr(cast5)", DECRYPT, sec, NULL, 0,
1979 speed_template_8_16);
1980 break;
1981
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02001982 case 507:
1983 test_acipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0,
1984 speed_template_16_32);
1985 test_acipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0,
1986 speed_template_16_32);
1987 test_acipher_speed("cbc(cast6)", ENCRYPT, sec, NULL, 0,
1988 speed_template_16_32);
1989 test_acipher_speed("cbc(cast6)", DECRYPT, sec, NULL, 0,
1990 speed_template_16_32);
1991 test_acipher_speed("ctr(cast6)", ENCRYPT, sec, NULL, 0,
1992 speed_template_16_32);
1993 test_acipher_speed("ctr(cast6)", DECRYPT, sec, NULL, 0,
1994 speed_template_16_32);
1995 test_acipher_speed("lrw(cast6)", ENCRYPT, sec, NULL, 0,
1996 speed_template_32_48);
1997 test_acipher_speed("lrw(cast6)", DECRYPT, sec, NULL, 0,
1998 speed_template_32_48);
1999 test_acipher_speed("xts(cast6)", ENCRYPT, sec, NULL, 0,
2000 speed_template_32_64);
2001 test_acipher_speed("xts(cast6)", DECRYPT, sec, NULL, 0,
2002 speed_template_32_64);
2003 break;
2004
Jussi Kivilinnabf9c5182012-10-26 14:48:51 +03002005 case 508:
2006 test_acipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0,
2007 speed_template_16_32);
2008 test_acipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0,
2009 speed_template_16_32);
2010 test_acipher_speed("cbc(camellia)", ENCRYPT, sec, NULL, 0,
2011 speed_template_16_32);
2012 test_acipher_speed("cbc(camellia)", DECRYPT, sec, NULL, 0,
2013 speed_template_16_32);
2014 test_acipher_speed("ctr(camellia)", ENCRYPT, sec, NULL, 0,
2015 speed_template_16_32);
2016 test_acipher_speed("ctr(camellia)", DECRYPT, sec, NULL, 0,
2017 speed_template_16_32);
2018 test_acipher_speed("lrw(camellia)", ENCRYPT, sec, NULL, 0,
2019 speed_template_32_48);
2020 test_acipher_speed("lrw(camellia)", DECRYPT, sec, NULL, 0,
2021 speed_template_32_48);
2022 test_acipher_speed("xts(camellia)", ENCRYPT, sec, NULL, 0,
2023 speed_template_32_64);
2024 test_acipher_speed("xts(camellia)", DECRYPT, sec, NULL, 0,
2025 speed_template_32_64);
2026 break;
2027
Jussi Kivilinnaad8b7c32013-04-13 13:46:40 +03002028 case 509:
2029 test_acipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0,
2030 speed_template_8_32);
2031 test_acipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0,
2032 speed_template_8_32);
2033 test_acipher_speed("cbc(blowfish)", ENCRYPT, sec, NULL, 0,
2034 speed_template_8_32);
2035 test_acipher_speed("cbc(blowfish)", DECRYPT, sec, NULL, 0,
2036 speed_template_8_32);
2037 test_acipher_speed("ctr(blowfish)", ENCRYPT, sec, NULL, 0,
2038 speed_template_8_32);
2039 test_acipher_speed("ctr(blowfish)", DECRYPT, sec, NULL, 0,
2040 speed_template_8_32);
2041 break;
2042
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 case 1000:
2044 test_available();
2045 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 }
Jarod Wilson4e033a62009-05-27 15:10:21 +10002047
2048 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049}
2050
Kamalesh Babulal3af5b902008-04-05 21:00:57 +08002051static int __init tcrypt_mod_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052{
Mikko Herranene3a4ea42007-11-26 22:12:07 +08002053 int err = -ENOMEM;
Herbert Xuf139cfa2008-07-31 12:23:53 +08002054 int i;
Mikko Herranene3a4ea42007-11-26 22:12:07 +08002055
Herbert Xuf139cfa2008-07-31 12:23:53 +08002056 for (i = 0; i < TVMEMSIZE; i++) {
2057 tvmem[i] = (void *)__get_free_page(GFP_KERNEL);
2058 if (!tvmem[i])
2059 goto err_free_tv;
2060 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
Herbert Xu86068132014-12-04 16:43:29 +08002062 err = do_test(alg, type, mask, mode);
Steffen Klasserta873a5f2009-06-19 19:46:53 +08002063
Jarod Wilson4e033a62009-05-27 15:10:21 +10002064 if (err) {
2065 printk(KERN_ERR "tcrypt: one or more tests failed!\n");
2066 goto err_free_tv;
Rabin Vincent76512f22017-01-18 14:54:05 +01002067 } else {
2068 pr_debug("all tests passed\n");
Jarod Wilson4e033a62009-05-27 15:10:21 +10002069 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
Jarod Wilson4e033a62009-05-27 15:10:21 +10002071 /* We intentionaly return -EAGAIN to prevent keeping the module,
2072 * unless we're running in fips mode. It does all its work from
2073 * init() and doesn't offer any runtime functionality, but in
2074 * the fips case, checking for a successful load is helpful.
Michal Ludvig14fdf472006-05-30 14:49:38 +10002075 * => we don't need it in the memory, do we?
2076 * -- mludvig
2077 */
Jarod Wilson4e033a62009-05-27 15:10:21 +10002078 if (!fips_enabled)
2079 err = -EAGAIN;
Mikko Herranene3a4ea42007-11-26 22:12:07 +08002080
Herbert Xuf139cfa2008-07-31 12:23:53 +08002081err_free_tv:
2082 for (i = 0; i < TVMEMSIZE && tvmem[i]; i++)
2083 free_page((unsigned long)tvmem[i]);
Mikko Herranene3a4ea42007-11-26 22:12:07 +08002084
2085 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086}
2087
2088/*
2089 * If an init function is provided, an exit function must also be provided
2090 * to allow module unload.
2091 */
Kamalesh Babulal3af5b902008-04-05 21:00:57 +08002092static void __exit tcrypt_mod_fini(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093
Kamalesh Babulal3af5b902008-04-05 21:00:57 +08002094module_init(tcrypt_mod_init);
2095module_exit(tcrypt_mod_fini);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
Steffen Klasserta873a5f2009-06-19 19:46:53 +08002097module_param(alg, charp, 0);
2098module_param(type, uint, 0);
Herbert Xu7be380f2009-07-14 16:06:54 +08002099module_param(mask, uint, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100module_param(mode, int, 0);
Harald Welteebfd9bc2005-06-22 13:27:23 -07002101module_param(sec, uint, 0);
Herbert Xu6a179442005-06-22 13:29:03 -07002102MODULE_PARM_DESC(sec, "Length in seconds of speed tests "
2103 "(defaults to zero which uses CPU cycles instead)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
2105MODULE_LICENSE("GPL");
2106MODULE_DESCRIPTION("Quick & dirty crypto testing module");
2107MODULE_AUTHOR("James Morris <jmorris@intercode.com.au>");