blob: 5f8e6838e5a86a461e7f9273eacac74e021c880b [file] [log] [blame]
Herbert Xuda7f0332008-07-31 17:08:25 +08001/*
2 * Algorithm testing framework and tests.
3 *
4 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
5 * Copyright (c) 2002 Jean-Francois Dive <jef@linuxbe.org>
6 * Copyright (c) 2007 Nokia Siemens Networks
7 * Copyright (c) 2008 Herbert Xu <herbert@gondor.apana.org.au>
8 *
Adrian Hoban69435b92010-11-04 15:02:04 -04009 * Updated RFC4106 AES-GCM testing.
10 * Authors: Aidan O'Mahony (aidan.o.mahony@intel.com)
11 * Adrian Hoban <adrian.hoban@intel.com>
12 * Gabriele Paoloni <gabriele.paoloni@intel.com>
13 * Tadeusz Struk (tadeusz.struk@intel.com)
14 * Copyright (c) 2010, Intel Corporation.
15 *
Herbert Xuda7f0332008-07-31 17:08:25 +080016 * This program is free software; you can redistribute it and/or modify it
17 * under the terms of the GNU General Public License as published by the Free
18 * Software Foundation; either version 2 of the License, or (at your option)
19 * any later version.
20 *
21 */
22
Herbert Xu1ce33112015-04-22 15:06:31 +080023#include <crypto/aead.h>
Herbert Xuda7f0332008-07-31 17:08:25 +080024#include <crypto/hash.h>
Herbert Xu12773d92015-08-20 15:21:46 +080025#include <crypto/skcipher.h>
Herbert Xuda7f0332008-07-31 17:08:25 +080026#include <linux/err.h>
Herbert Xu1c41b882015-04-22 13:25:58 +080027#include <linux/fips.h>
Herbert Xuda7f0332008-07-31 17:08:25 +080028#include <linux/module.h>
29#include <linux/scatterlist.h>
30#include <linux/slab.h>
31#include <linux/string.h>
Jarod Wilson7647d6c2009-05-04 19:44:50 +080032#include <crypto/rng.h>
Stephan Mueller64d1cdf2014-05-31 17:25:36 +020033#include <crypto/drbg.h>
Tadeusz Struk946cc462015-06-16 10:31:06 -070034#include <crypto/akcipher.h>
Salvatore Benedetto802c7f12016-06-22 17:49:14 +010035#include <crypto/kpp.h>
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +010036#include <crypto/acompress.h>
Herbert Xuda7f0332008-07-31 17:08:25 +080037
38#include "internal.h"
Alexander Shishkin0b767f92010-06-03 20:53:43 +100039
Richard W.M. Jones9e5c9fe2016-05-03 10:00:17 +010040static bool notests;
41module_param(notests, bool, 0644);
42MODULE_PARM_DESC(notests, "disable crypto self-tests");
43
Herbert Xu326a6342010-08-06 09:40:28 +080044#ifdef CONFIG_CRYPTO_MANAGER_DISABLE_TESTS
Alexander Shishkin0b767f92010-06-03 20:53:43 +100045
46/* a perfect nop */
47int alg_test(const char *driver, const char *alg, u32 type, u32 mask)
48{
49 return 0;
50}
51
52#else
53
Herbert Xuda7f0332008-07-31 17:08:25 +080054#include "testmgr.h"
55
56/*
57 * Need slab memory for testing (size in number of pages).
58 */
59#define XBUFSIZE 8
60
61/*
62 * Indexes into the xbuf to simulate cross-page access.
63 */
64#define IDX1 32
65#define IDX2 32400
Ard Biesheuvel04b46fb2016-12-08 08:23:52 +000066#define IDX3 1511
Herbert Xuda7f0332008-07-31 17:08:25 +080067#define IDX4 8193
68#define IDX5 22222
69#define IDX6 17101
70#define IDX7 27333
71#define IDX8 3000
72
73/*
74* Used by test_cipher()
75*/
76#define ENCRYPT 1
77#define DECRYPT 0
78
79struct tcrypt_result {
80 struct completion completion;
81 int err;
82};
83
84struct aead_test_suite {
85 struct {
Eric Biggersb13b1e02017-02-24 15:46:59 -080086 const struct aead_testvec *vecs;
Herbert Xuda7f0332008-07-31 17:08:25 +080087 unsigned int count;
88 } enc, dec;
89};
90
91struct cipher_test_suite {
92 struct {
Eric Biggersb13b1e02017-02-24 15:46:59 -080093 const struct cipher_testvec *vecs;
Herbert Xuda7f0332008-07-31 17:08:25 +080094 unsigned int count;
95 } enc, dec;
96};
97
98struct comp_test_suite {
99 struct {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800100 const struct comp_testvec *vecs;
Herbert Xuda7f0332008-07-31 17:08:25 +0800101 unsigned int count;
102 } comp, decomp;
103};
104
105struct hash_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800106 const struct hash_testvec *vecs;
Herbert Xuda7f0332008-07-31 17:08:25 +0800107 unsigned int count;
108};
109
Jarod Wilson7647d6c2009-05-04 19:44:50 +0800110struct cprng_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800111 const struct cprng_testvec *vecs;
Jarod Wilson7647d6c2009-05-04 19:44:50 +0800112 unsigned int count;
113};
114
Stephan Mueller64d1cdf2014-05-31 17:25:36 +0200115struct drbg_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800116 const struct drbg_testvec *vecs;
Stephan Mueller64d1cdf2014-05-31 17:25:36 +0200117 unsigned int count;
118};
119
Tadeusz Struk946cc462015-06-16 10:31:06 -0700120struct akcipher_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800121 const struct akcipher_testvec *vecs;
Tadeusz Struk946cc462015-06-16 10:31:06 -0700122 unsigned int count;
123};
124
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100125struct kpp_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800126 const struct kpp_testvec *vecs;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100127 unsigned int count;
128};
129
Herbert Xuda7f0332008-07-31 17:08:25 +0800130struct alg_test_desc {
131 const char *alg;
132 int (*test)(const struct alg_test_desc *desc, const char *driver,
133 u32 type, u32 mask);
Jarod Wilsona1915d52009-05-15 15:16:03 +1000134 int fips_allowed; /* set if alg is allowed in fips mode */
Herbert Xuda7f0332008-07-31 17:08:25 +0800135
136 union {
137 struct aead_test_suite aead;
138 struct cipher_test_suite cipher;
139 struct comp_test_suite comp;
140 struct hash_test_suite hash;
Jarod Wilson7647d6c2009-05-04 19:44:50 +0800141 struct cprng_test_suite cprng;
Stephan Mueller64d1cdf2014-05-31 17:25:36 +0200142 struct drbg_test_suite drbg;
Tadeusz Struk946cc462015-06-16 10:31:06 -0700143 struct akcipher_test_suite akcipher;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100144 struct kpp_test_suite kpp;
Herbert Xuda7f0332008-07-31 17:08:25 +0800145 } suite;
146};
147
Eric Biggersb13b1e02017-02-24 15:46:59 -0800148static const unsigned int IDX[8] = {
149 IDX1, IDX2, IDX3, IDX4, IDX5, IDX6, IDX7, IDX8 };
Herbert Xuda7f0332008-07-31 17:08:25 +0800150
Herbert Xuda7f0332008-07-31 17:08:25 +0800151static void hexdump(unsigned char *buf, unsigned int len)
152{
153 print_hex_dump(KERN_CONT, "", DUMP_PREFIX_OFFSET,
154 16, 1,
155 buf, len, false);
156}
157
158static void tcrypt_complete(struct crypto_async_request *req, int err)
159{
160 struct tcrypt_result *res = req->data;
161
162 if (err == -EINPROGRESS)
163 return;
164
165 res->err = err;
166 complete(&res->completion);
167}
168
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800169static int testmgr_alloc_buf(char *buf[XBUFSIZE])
170{
171 int i;
172
173 for (i = 0; i < XBUFSIZE; i++) {
174 buf[i] = (void *)__get_free_page(GFP_KERNEL);
175 if (!buf[i])
176 goto err_free_buf;
177 }
178
179 return 0;
180
181err_free_buf:
182 while (i-- > 0)
183 free_page((unsigned long)buf[i]);
184
185 return -ENOMEM;
186}
187
188static void testmgr_free_buf(char *buf[XBUFSIZE])
189{
190 int i;
191
192 for (i = 0; i < XBUFSIZE; i++)
193 free_page((unsigned long)buf[i]);
194}
195
Cristian Stoicad4c85f92014-08-08 12:30:04 +0300196static int wait_async_op(struct tcrypt_result *tr, int ret)
David S. Millera8f1a052010-05-19 14:12:03 +1000197{
198 if (ret == -EINPROGRESS || ret == -EBUSY) {
Rabin Vincent8a45ac12015-01-09 16:25:28 +0100199 wait_for_completion(&tr->completion);
Wolfram Sang16735d02013-11-14 14:32:02 -0800200 reinit_completion(&tr->completion);
Rabin Vincent8a45ac12015-01-09 16:25:28 +0100201 ret = tr->err;
David S. Millera8f1a052010-05-19 14:12:03 +1000202 }
203 return ret;
204}
205
Wang, Rui Y018ba952016-02-03 18:26:57 +0800206static int ahash_partial_update(struct ahash_request **preq,
Eric Biggersb13b1e02017-02-24 15:46:59 -0800207 struct crypto_ahash *tfm, const struct hash_testvec *template,
Wang, Rui Y018ba952016-02-03 18:26:57 +0800208 void *hash_buff, int k, int temp, struct scatterlist *sg,
209 const char *algo, char *result, struct tcrypt_result *tresult)
210{
211 char *state;
212 struct ahash_request *req;
213 int statesize, ret = -EINVAL;
Jan Stancek7bcb87b2016-09-28 16:38:37 +0200214 const char guard[] = { 0x00, 0xba, 0xad, 0x00 };
Wang, Rui Y018ba952016-02-03 18:26:57 +0800215
216 req = *preq;
217 statesize = crypto_ahash_statesize(
218 crypto_ahash_reqtfm(req));
Jan Stancek7bcb87b2016-09-28 16:38:37 +0200219 state = kmalloc(statesize + sizeof(guard), GFP_KERNEL);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800220 if (!state) {
221 pr_err("alt: hash: Failed to alloc state for %s\n", algo);
222 goto out_nostate;
223 }
Jan Stancek7bcb87b2016-09-28 16:38:37 +0200224 memcpy(state + statesize, guard, sizeof(guard));
Wang, Rui Y018ba952016-02-03 18:26:57 +0800225 ret = crypto_ahash_export(req, state);
Jan Stancek7bcb87b2016-09-28 16:38:37 +0200226 WARN_ON(memcmp(state + statesize, guard, sizeof(guard)));
Wang, Rui Y018ba952016-02-03 18:26:57 +0800227 if (ret) {
228 pr_err("alt: hash: Failed to export() for %s\n", algo);
229 goto out;
230 }
231 ahash_request_free(req);
232 req = ahash_request_alloc(tfm, GFP_KERNEL);
233 if (!req) {
234 pr_err("alg: hash: Failed to alloc request for %s\n", algo);
235 goto out_noreq;
236 }
237 ahash_request_set_callback(req,
238 CRYPTO_TFM_REQ_MAY_BACKLOG,
239 tcrypt_complete, tresult);
240
241 memcpy(hash_buff, template->plaintext + temp,
242 template->tap[k]);
243 sg_init_one(&sg[0], hash_buff, template->tap[k]);
244 ahash_request_set_crypt(req, sg, result, template->tap[k]);
245 ret = crypto_ahash_import(req, state);
246 if (ret) {
247 pr_err("alg: hash: Failed to import() for %s\n", algo);
248 goto out;
249 }
250 ret = wait_async_op(tresult, crypto_ahash_update(req));
251 if (ret)
252 goto out;
253 *preq = req;
254 ret = 0;
255 goto out_noreq;
256out:
257 ahash_request_free(req);
258out_noreq:
259 kfree(state);
260out_nostate:
261 return ret;
262}
263
Eric Biggersb13b1e02017-02-24 15:46:59 -0800264static int __test_hash(struct crypto_ahash *tfm,
265 const struct hash_testvec *template, unsigned int tcount,
266 bool use_digest, const int align_offset)
Herbert Xuda7f0332008-07-31 17:08:25 +0800267{
268 const char *algo = crypto_tfm_alg_driver_name(crypto_ahash_tfm(tfm));
Andrew Lutomirskie93acd62017-01-10 15:24:46 -0800269 size_t digest_size = crypto_ahash_digestsize(tfm);
Herbert Xuda7f0332008-07-31 17:08:25 +0800270 unsigned int i, j, k, temp;
271 struct scatterlist sg[8];
Horia Geanta29b77e52014-07-23 11:59:38 +0300272 char *result;
273 char *key;
Herbert Xuda7f0332008-07-31 17:08:25 +0800274 struct ahash_request *req;
275 struct tcrypt_result tresult;
Herbert Xuda7f0332008-07-31 17:08:25 +0800276 void *hash_buff;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800277 char *xbuf[XBUFSIZE];
278 int ret = -ENOMEM;
279
Andrew Lutomirskie93acd62017-01-10 15:24:46 -0800280 result = kmalloc(digest_size, GFP_KERNEL);
Horia Geanta29b77e52014-07-23 11:59:38 +0300281 if (!result)
282 return ret;
283 key = kmalloc(MAX_KEYLEN, GFP_KERNEL);
284 if (!key)
285 goto out_nobuf;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800286 if (testmgr_alloc_buf(xbuf))
287 goto out_nobuf;
Herbert Xuda7f0332008-07-31 17:08:25 +0800288
289 init_completion(&tresult.completion);
290
291 req = ahash_request_alloc(tfm, GFP_KERNEL);
292 if (!req) {
293 printk(KERN_ERR "alg: hash: Failed to allocate request for "
294 "%s\n", algo);
Herbert Xuda7f0332008-07-31 17:08:25 +0800295 goto out_noreq;
296 }
297 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
298 tcrypt_complete, &tresult);
299
Herbert Xua0cfae52009-05-29 16:23:12 +1000300 j = 0;
Herbert Xuda7f0332008-07-31 17:08:25 +0800301 for (i = 0; i < tcount; i++) {
Herbert Xua0cfae52009-05-29 16:23:12 +1000302 if (template[i].np)
303 continue;
304
Jussi Kivilinnada5ffe12013-06-13 17:37:55 +0300305 ret = -EINVAL;
306 if (WARN_ON(align_offset + template[i].psize > PAGE_SIZE))
307 goto out;
308
Herbert Xua0cfae52009-05-29 16:23:12 +1000309 j++;
Andrew Lutomirskie93acd62017-01-10 15:24:46 -0800310 memset(result, 0, digest_size);
Herbert Xuda7f0332008-07-31 17:08:25 +0800311
312 hash_buff = xbuf[0];
Jussi Kivilinnada5ffe12013-06-13 17:37:55 +0300313 hash_buff += align_offset;
Herbert Xuda7f0332008-07-31 17:08:25 +0800314
315 memcpy(hash_buff, template[i].plaintext, template[i].psize);
316 sg_init_one(&sg[0], hash_buff, template[i].psize);
317
318 if (template[i].ksize) {
319 crypto_ahash_clear_flags(tfm, ~0);
Horia Geanta29b77e52014-07-23 11:59:38 +0300320 if (template[i].ksize > MAX_KEYLEN) {
321 pr_err("alg: hash: setkey failed on test %d for %s: key size %d > %d\n",
322 j, algo, template[i].ksize, MAX_KEYLEN);
323 ret = -EINVAL;
324 goto out;
325 }
326 memcpy(key, template[i].key, template[i].ksize);
327 ret = crypto_ahash_setkey(tfm, key, template[i].ksize);
Herbert Xuda7f0332008-07-31 17:08:25 +0800328 if (ret) {
329 printk(KERN_ERR "alg: hash: setkey failed on "
Herbert Xua0cfae52009-05-29 16:23:12 +1000330 "test %d for %s: ret=%d\n", j, algo,
Herbert Xuda7f0332008-07-31 17:08:25 +0800331 -ret);
332 goto out;
333 }
334 }
335
336 ahash_request_set_crypt(req, sg, result, template[i].psize);
David S. Millera8f1a052010-05-19 14:12:03 +1000337 if (use_digest) {
Cristian Stoicad4c85f92014-08-08 12:30:04 +0300338 ret = wait_async_op(&tresult, crypto_ahash_digest(req));
David S. Millera8f1a052010-05-19 14:12:03 +1000339 if (ret) {
340 pr_err("alg: hash: digest failed on test %d "
341 "for %s: ret=%d\n", j, algo, -ret);
342 goto out;
Herbert Xuda7f0332008-07-31 17:08:25 +0800343 }
David S. Millera8f1a052010-05-19 14:12:03 +1000344 } else {
Cristian Stoicad4c85f92014-08-08 12:30:04 +0300345 ret = wait_async_op(&tresult, crypto_ahash_init(req));
David S. Millera8f1a052010-05-19 14:12:03 +1000346 if (ret) {
347 pr_err("alt: hash: init failed on test %d "
348 "for %s: ret=%d\n", j, algo, -ret);
349 goto out;
350 }
Cristian Stoicad4c85f92014-08-08 12:30:04 +0300351 ret = wait_async_op(&tresult, crypto_ahash_update(req));
David S. Millera8f1a052010-05-19 14:12:03 +1000352 if (ret) {
353 pr_err("alt: hash: update failed on test %d "
354 "for %s: ret=%d\n", j, algo, -ret);
355 goto out;
356 }
Cristian Stoicad4c85f92014-08-08 12:30:04 +0300357 ret = wait_async_op(&tresult, crypto_ahash_final(req));
David S. Millera8f1a052010-05-19 14:12:03 +1000358 if (ret) {
359 pr_err("alt: hash: final failed on test %d "
360 "for %s: ret=%d\n", j, algo, -ret);
361 goto out;
362 }
Herbert Xuda7f0332008-07-31 17:08:25 +0800363 }
364
365 if (memcmp(result, template[i].digest,
366 crypto_ahash_digestsize(tfm))) {
367 printk(KERN_ERR "alg: hash: Test %d failed for %s\n",
Herbert Xua0cfae52009-05-29 16:23:12 +1000368 j, algo);
Herbert Xuda7f0332008-07-31 17:08:25 +0800369 hexdump(result, crypto_ahash_digestsize(tfm));
370 ret = -EINVAL;
371 goto out;
372 }
373 }
374
375 j = 0;
376 for (i = 0; i < tcount; i++) {
Jussi Kivilinnada5ffe12013-06-13 17:37:55 +0300377 /* alignment tests are only done with continuous buffers */
378 if (align_offset != 0)
379 break;
380
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300381 if (!template[i].np)
382 continue;
Herbert Xuda7f0332008-07-31 17:08:25 +0800383
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300384 j++;
Andrew Lutomirskie93acd62017-01-10 15:24:46 -0800385 memset(result, 0, digest_size);
Herbert Xuda7f0332008-07-31 17:08:25 +0800386
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300387 temp = 0;
388 sg_init_table(sg, template[i].np);
389 ret = -EINVAL;
390 for (k = 0; k < template[i].np; k++) {
391 if (WARN_ON(offset_in_page(IDX[k]) +
392 template[i].tap[k] > PAGE_SIZE))
Herbert Xuda7f0332008-07-31 17:08:25 +0800393 goto out;
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300394 sg_set_buf(&sg[k],
395 memcpy(xbuf[IDX[k] >> PAGE_SHIFT] +
396 offset_in_page(IDX[k]),
397 template[i].plaintext + temp,
398 template[i].tap[k]),
399 template[i].tap[k]);
400 temp += template[i].tap[k];
401 }
Herbert Xuda7f0332008-07-31 17:08:25 +0800402
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300403 if (template[i].ksize) {
404 if (template[i].ksize > MAX_KEYLEN) {
405 pr_err("alg: hash: setkey failed on test %d for %s: key size %d > %d\n",
406 j, algo, template[i].ksize, MAX_KEYLEN);
Herbert Xuda7f0332008-07-31 17:08:25 +0800407 ret = -EINVAL;
408 goto out;
409 }
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300410 crypto_ahash_clear_flags(tfm, ~0);
411 memcpy(key, template[i].key, template[i].ksize);
412 ret = crypto_ahash_setkey(tfm, key, template[i].ksize);
413
414 if (ret) {
415 printk(KERN_ERR "alg: hash: setkey "
416 "failed on chunking test %d "
417 "for %s: ret=%d\n", j, algo, -ret);
418 goto out;
419 }
420 }
421
422 ahash_request_set_crypt(req, sg, result, template[i].psize);
423 ret = crypto_ahash_digest(req);
424 switch (ret) {
425 case 0:
426 break;
427 case -EINPROGRESS:
428 case -EBUSY:
Rabin Vincent8a45ac12015-01-09 16:25:28 +0100429 wait_for_completion(&tresult.completion);
430 reinit_completion(&tresult.completion);
431 ret = tresult.err;
432 if (!ret)
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300433 break;
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300434 /* fall through */
435 default:
436 printk(KERN_ERR "alg: hash: digest failed "
437 "on chunking test %d for %s: "
438 "ret=%d\n", j, algo, -ret);
439 goto out;
440 }
441
442 if (memcmp(result, template[i].digest,
443 crypto_ahash_digestsize(tfm))) {
444 printk(KERN_ERR "alg: hash: Chunking test %d "
445 "failed for %s\n", j, algo);
446 hexdump(result, crypto_ahash_digestsize(tfm));
447 ret = -EINVAL;
448 goto out;
Herbert Xuda7f0332008-07-31 17:08:25 +0800449 }
450 }
451
Wang, Rui Y018ba952016-02-03 18:26:57 +0800452 /* partial update exercise */
453 j = 0;
454 for (i = 0; i < tcount; i++) {
455 /* alignment tests are only done with continuous buffers */
456 if (align_offset != 0)
457 break;
458
459 if (template[i].np < 2)
460 continue;
461
462 j++;
Andrew Lutomirskie93acd62017-01-10 15:24:46 -0800463 memset(result, 0, digest_size);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800464
465 ret = -EINVAL;
466 hash_buff = xbuf[0];
467 memcpy(hash_buff, template[i].plaintext,
468 template[i].tap[0]);
469 sg_init_one(&sg[0], hash_buff, template[i].tap[0]);
470
471 if (template[i].ksize) {
472 crypto_ahash_clear_flags(tfm, ~0);
473 if (template[i].ksize > MAX_KEYLEN) {
474 pr_err("alg: hash: setkey failed on test %d for %s: key size %d > %d\n",
475 j, algo, template[i].ksize, MAX_KEYLEN);
476 ret = -EINVAL;
477 goto out;
478 }
479 memcpy(key, template[i].key, template[i].ksize);
480 ret = crypto_ahash_setkey(tfm, key, template[i].ksize);
481 if (ret) {
482 pr_err("alg: hash: setkey failed on test %d for %s: ret=%d\n",
483 j, algo, -ret);
484 goto out;
485 }
486 }
487
488 ahash_request_set_crypt(req, sg, result, template[i].tap[0]);
489 ret = wait_async_op(&tresult, crypto_ahash_init(req));
490 if (ret) {
491 pr_err("alt: hash: init failed on test %d for %s: ret=%d\n",
492 j, algo, -ret);
493 goto out;
494 }
495 ret = wait_async_op(&tresult, crypto_ahash_update(req));
496 if (ret) {
497 pr_err("alt: hash: update failed on test %d for %s: ret=%d\n",
498 j, algo, -ret);
499 goto out;
500 }
501
502 temp = template[i].tap[0];
503 for (k = 1; k < template[i].np; k++) {
504 ret = ahash_partial_update(&req, tfm, &template[i],
505 hash_buff, k, temp, &sg[0], algo, result,
506 &tresult);
507 if (ret) {
508 pr_err("hash: partial update failed on test %d for %s: ret=%d\n",
509 j, algo, -ret);
510 goto out_noreq;
511 }
512 temp += template[i].tap[k];
513 }
514 ret = wait_async_op(&tresult, crypto_ahash_final(req));
515 if (ret) {
516 pr_err("alt: hash: final failed on test %d for %s: ret=%d\n",
517 j, algo, -ret);
518 goto out;
519 }
520 if (memcmp(result, template[i].digest,
521 crypto_ahash_digestsize(tfm))) {
522 pr_err("alg: hash: Partial Test %d failed for %s\n",
523 j, algo);
524 hexdump(result, crypto_ahash_digestsize(tfm));
525 ret = -EINVAL;
526 goto out;
527 }
528 }
529
Herbert Xuda7f0332008-07-31 17:08:25 +0800530 ret = 0;
531
532out:
533 ahash_request_free(req);
534out_noreq:
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800535 testmgr_free_buf(xbuf);
536out_nobuf:
Horia Geanta29b77e52014-07-23 11:59:38 +0300537 kfree(key);
538 kfree(result);
Herbert Xuda7f0332008-07-31 17:08:25 +0800539 return ret;
540}
541
Eric Biggersb13b1e02017-02-24 15:46:59 -0800542static int test_hash(struct crypto_ahash *tfm,
543 const struct hash_testvec *template,
Jussi Kivilinnada5ffe12013-06-13 17:37:55 +0300544 unsigned int tcount, bool use_digest)
545{
546 unsigned int alignmask;
547 int ret;
548
549 ret = __test_hash(tfm, template, tcount, use_digest, 0);
550 if (ret)
551 return ret;
552
553 /* test unaligned buffers, check with one byte offset */
554 ret = __test_hash(tfm, template, tcount, use_digest, 1);
555 if (ret)
556 return ret;
557
558 alignmask = crypto_tfm_alg_alignmask(&tfm->base);
559 if (alignmask) {
560 /* Check if alignment mask for tfm is correctly set. */
561 ret = __test_hash(tfm, template, tcount, use_digest,
562 alignmask + 1);
563 if (ret)
564 return ret;
565 }
566
567 return 0;
568}
569
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300570static int __test_aead(struct crypto_aead *tfm, int enc,
Eric Biggersb13b1e02017-02-24 15:46:59 -0800571 const struct aead_testvec *template, unsigned int tcount,
Jussi Kivilinna58dcf542013-06-13 17:37:50 +0300572 const bool diff_dst, const int align_offset)
Herbert Xuda7f0332008-07-31 17:08:25 +0800573{
574 const char *algo = crypto_tfm_alg_driver_name(crypto_aead_tfm(tfm));
575 unsigned int i, j, k, n, temp;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800576 int ret = -ENOMEM;
Herbert Xuda7f0332008-07-31 17:08:25 +0800577 char *q;
578 char *key;
579 struct aead_request *req;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300580 struct scatterlist *sg;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300581 struct scatterlist *sgout;
582 const char *e, *d;
Herbert Xuda7f0332008-07-31 17:08:25 +0800583 struct tcrypt_result result;
Cristian Stoica424a5da2015-01-28 11:03:05 +0200584 unsigned int authsize, iv_len;
Herbert Xuda7f0332008-07-31 17:08:25 +0800585 void *input;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300586 void *output;
Herbert Xuda7f0332008-07-31 17:08:25 +0800587 void *assoc;
Tadeusz Struk9bac0192014-05-19 09:51:33 -0700588 char *iv;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800589 char *xbuf[XBUFSIZE];
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300590 char *xoutbuf[XBUFSIZE];
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800591 char *axbuf[XBUFSIZE];
592
Tadeusz Struk9bac0192014-05-19 09:51:33 -0700593 iv = kzalloc(MAX_IVLEN, GFP_KERNEL);
594 if (!iv)
595 return ret;
Horia Geanta29b77e52014-07-23 11:59:38 +0300596 key = kmalloc(MAX_KEYLEN, GFP_KERNEL);
597 if (!key)
598 goto out_noxbuf;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800599 if (testmgr_alloc_buf(xbuf))
600 goto out_noxbuf;
601 if (testmgr_alloc_buf(axbuf))
602 goto out_noaxbuf;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300603 if (diff_dst && testmgr_alloc_buf(xoutbuf))
604 goto out_nooutbuf;
605
606 /* avoid "the frame size is larger than 1024 bytes" compiler warning */
Herbert Xu8a525fc2015-05-27 16:03:43 +0800607 sg = kmalloc(sizeof(*sg) * 8 * (diff_dst ? 4 : 2), GFP_KERNEL);
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300608 if (!sg)
609 goto out_nosg;
Herbert Xu8a525fc2015-05-27 16:03:43 +0800610 sgout = &sg[16];
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300611
612 if (diff_dst)
613 d = "-ddst";
614 else
615 d = "";
616
Herbert Xuda7f0332008-07-31 17:08:25 +0800617 if (enc == ENCRYPT)
618 e = "encryption";
619 else
620 e = "decryption";
621
622 init_completion(&result.completion);
623
624 req = aead_request_alloc(tfm, GFP_KERNEL);
625 if (!req) {
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300626 pr_err("alg: aead%s: Failed to allocate request for %s\n",
627 d, algo);
Herbert Xuda7f0332008-07-31 17:08:25 +0800628 goto out;
629 }
630
631 aead_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
632 tcrypt_complete, &result);
633
Jerome Marchandabfa7f42016-02-03 13:58:12 +0100634 iv_len = crypto_aead_ivsize(tfm);
635
Herbert Xuda7f0332008-07-31 17:08:25 +0800636 for (i = 0, j = 0; i < tcount; i++) {
Cristian Stoica05b1d332014-07-28 13:11:23 +0300637 if (template[i].np)
638 continue;
Herbert Xuda7f0332008-07-31 17:08:25 +0800639
Cristian Stoica05b1d332014-07-28 13:11:23 +0300640 j++;
Herbert Xuda7f0332008-07-31 17:08:25 +0800641
Cristian Stoica05b1d332014-07-28 13:11:23 +0300642 /* some templates have no input data but they will
643 * touch input
644 */
645 input = xbuf[0];
646 input += align_offset;
647 assoc = axbuf[0];
648
649 ret = -EINVAL;
650 if (WARN_ON(align_offset + template[i].ilen >
651 PAGE_SIZE || template[i].alen > PAGE_SIZE))
652 goto out;
653
654 memcpy(input, template[i].input, template[i].ilen);
655 memcpy(assoc, template[i].assoc, template[i].alen);
656 if (template[i].iv)
Cristian Stoica424a5da2015-01-28 11:03:05 +0200657 memcpy(iv, template[i].iv, iv_len);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300658 else
Cristian Stoica424a5da2015-01-28 11:03:05 +0200659 memset(iv, 0, iv_len);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300660
661 crypto_aead_clear_flags(tfm, ~0);
662 if (template[i].wk)
663 crypto_aead_set_flags(tfm, CRYPTO_TFM_REQ_WEAK_KEY);
664
665 if (template[i].klen > MAX_KEYLEN) {
666 pr_err("alg: aead%s: setkey failed on test %d for %s: key size %d > %d\n",
667 d, j, algo, template[i].klen,
668 MAX_KEYLEN);
Herbert Xufd57f222009-05-29 16:05:42 +1000669 ret = -EINVAL;
Cristian Stoica05b1d332014-07-28 13:11:23 +0300670 goto out;
671 }
672 memcpy(key, template[i].key, template[i].klen);
Herbert Xufd57f222009-05-29 16:05:42 +1000673
Cristian Stoica05b1d332014-07-28 13:11:23 +0300674 ret = crypto_aead_setkey(tfm, key, template[i].klen);
Yanjiang Jin0fae0c12016-07-29 16:32:09 +0800675 if (template[i].fail == !ret) {
Cristian Stoica05b1d332014-07-28 13:11:23 +0300676 pr_err("alg: aead%s: setkey failed on test %d for %s: flags=%x\n",
677 d, j, algo, crypto_aead_get_flags(tfm));
678 goto out;
679 } else if (ret)
680 continue;
Herbert Xuda7f0332008-07-31 17:08:25 +0800681
Cristian Stoica05b1d332014-07-28 13:11:23 +0300682 authsize = abs(template[i].rlen - template[i].ilen);
683 ret = crypto_aead_setauthsize(tfm, authsize);
684 if (ret) {
685 pr_err("alg: aead%s: Failed to set authsize to %u on test %d for %s\n",
686 d, authsize, j, algo);
687 goto out;
688 }
Herbert Xuda7f0332008-07-31 17:08:25 +0800689
Herbert Xu8a525fc2015-05-27 16:03:43 +0800690 k = !!template[i].alen;
691 sg_init_table(sg, k + 1);
692 sg_set_buf(&sg[0], assoc, template[i].alen);
693 sg_set_buf(&sg[k], input,
694 template[i].ilen + (enc ? authsize : 0));
695 output = input;
696
Cristian Stoica05b1d332014-07-28 13:11:23 +0300697 if (diff_dst) {
Herbert Xu8a525fc2015-05-27 16:03:43 +0800698 sg_init_table(sgout, k + 1);
699 sg_set_buf(&sgout[0], assoc, template[i].alen);
700
Cristian Stoica05b1d332014-07-28 13:11:23 +0300701 output = xoutbuf[0];
702 output += align_offset;
Herbert Xu8a525fc2015-05-27 16:03:43 +0800703 sg_set_buf(&sgout[k], output,
704 template[i].rlen + (enc ? 0 : authsize));
Cristian Stoica05b1d332014-07-28 13:11:23 +0300705 }
706
Cristian Stoica05b1d332014-07-28 13:11:23 +0300707 aead_request_set_crypt(req, sg, (diff_dst) ? sgout : sg,
708 template[i].ilen, iv);
709
Herbert Xu8a525fc2015-05-27 16:03:43 +0800710 aead_request_set_ad(req, template[i].alen);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300711
712 ret = enc ? crypto_aead_encrypt(req) : crypto_aead_decrypt(req);
713
714 switch (ret) {
715 case 0:
716 if (template[i].novrfy) {
717 /* verification was supposed to fail */
718 pr_err("alg: aead%s: %s failed on test %d for %s: ret was 0, expected -EBADMSG\n",
719 d, e, j, algo);
720 /* so really, we got a bad message */
721 ret = -EBADMSG;
Horia Geanta29b77e52014-07-23 11:59:38 +0300722 goto out;
723 }
Cristian Stoica05b1d332014-07-28 13:11:23 +0300724 break;
725 case -EINPROGRESS:
726 case -EBUSY:
Rabin Vincent8a45ac12015-01-09 16:25:28 +0100727 wait_for_completion(&result.completion);
728 reinit_completion(&result.completion);
729 ret = result.err;
730 if (!ret)
Herbert Xuda7f0332008-07-31 17:08:25 +0800731 break;
Cristian Stoica05b1d332014-07-28 13:11:23 +0300732 case -EBADMSG:
733 if (template[i].novrfy)
734 /* verification failure was expected */
735 continue;
736 /* fall through */
737 default:
738 pr_err("alg: aead%s: %s failed on test %d for %s: ret=%d\n",
739 d, e, j, algo, -ret);
740 goto out;
741 }
Herbert Xuda7f0332008-07-31 17:08:25 +0800742
Cristian Stoica05b1d332014-07-28 13:11:23 +0300743 q = output;
744 if (memcmp(q, template[i].result, template[i].rlen)) {
745 pr_err("alg: aead%s: Test %d failed on %s for %s\n",
746 d, j, e, algo);
747 hexdump(q, template[i].rlen);
748 ret = -EINVAL;
749 goto out;
Herbert Xuda7f0332008-07-31 17:08:25 +0800750 }
751 }
752
753 for (i = 0, j = 0; i < tcount; i++) {
Jussi Kivilinna58dcf542013-06-13 17:37:50 +0300754 /* alignment tests are only done with continuous buffers */
755 if (align_offset != 0)
756 break;
757
Cristian Stoica05b1d332014-07-28 13:11:23 +0300758 if (!template[i].np)
759 continue;
Herbert Xuda7f0332008-07-31 17:08:25 +0800760
Cristian Stoica05b1d332014-07-28 13:11:23 +0300761 j++;
Herbert Xuda7f0332008-07-31 17:08:25 +0800762
Cristian Stoica05b1d332014-07-28 13:11:23 +0300763 if (template[i].iv)
Jerome Marchandabfa7f42016-02-03 13:58:12 +0100764 memcpy(iv, template[i].iv, iv_len);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300765 else
766 memset(iv, 0, MAX_IVLEN);
767
768 crypto_aead_clear_flags(tfm, ~0);
769 if (template[i].wk)
770 crypto_aead_set_flags(tfm, CRYPTO_TFM_REQ_WEAK_KEY);
771 if (template[i].klen > MAX_KEYLEN) {
772 pr_err("alg: aead%s: setkey failed on test %d for %s: key size %d > %d\n",
773 d, j, algo, template[i].klen, MAX_KEYLEN);
774 ret = -EINVAL;
775 goto out;
776 }
777 memcpy(key, template[i].key, template[i].klen);
778
779 ret = crypto_aead_setkey(tfm, key, template[i].klen);
Yanjiang Jin0fae0c12016-07-29 16:32:09 +0800780 if (template[i].fail == !ret) {
Cristian Stoica05b1d332014-07-28 13:11:23 +0300781 pr_err("alg: aead%s: setkey failed on chunk test %d for %s: flags=%x\n",
782 d, j, algo, crypto_aead_get_flags(tfm));
783 goto out;
784 } else if (ret)
785 continue;
786
787 authsize = abs(template[i].rlen - template[i].ilen);
788
789 ret = -EINVAL;
Herbert Xu8a525fc2015-05-27 16:03:43 +0800790 sg_init_table(sg, template[i].anp + template[i].np);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300791 if (diff_dst)
Herbert Xu8a525fc2015-05-27 16:03:43 +0800792 sg_init_table(sgout, template[i].anp + template[i].np);
793
794 ret = -EINVAL;
795 for (k = 0, temp = 0; k < template[i].anp; k++) {
796 if (WARN_ON(offset_in_page(IDX[k]) +
797 template[i].atap[k] > PAGE_SIZE))
798 goto out;
799 sg_set_buf(&sg[k],
800 memcpy(axbuf[IDX[k] >> PAGE_SHIFT] +
801 offset_in_page(IDX[k]),
802 template[i].assoc + temp,
803 template[i].atap[k]),
804 template[i].atap[k]);
805 if (diff_dst)
806 sg_set_buf(&sgout[k],
807 axbuf[IDX[k] >> PAGE_SHIFT] +
808 offset_in_page(IDX[k]),
809 template[i].atap[k]);
810 temp += template[i].atap[k];
811 }
812
Cristian Stoica05b1d332014-07-28 13:11:23 +0300813 for (k = 0, temp = 0; k < template[i].np; k++) {
814 if (WARN_ON(offset_in_page(IDX[k]) +
815 template[i].tap[k] > PAGE_SIZE))
816 goto out;
817
818 q = xbuf[IDX[k] >> PAGE_SHIFT] + offset_in_page(IDX[k]);
819 memcpy(q, template[i].input + temp, template[i].tap[k]);
Herbert Xu8a525fc2015-05-27 16:03:43 +0800820 sg_set_buf(&sg[template[i].anp + k],
821 q, template[i].tap[k]);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300822
823 if (diff_dst) {
824 q = xoutbuf[IDX[k] >> PAGE_SHIFT] +
825 offset_in_page(IDX[k]);
826
827 memset(q, 0, template[i].tap[k]);
828
Herbert Xu8a525fc2015-05-27 16:03:43 +0800829 sg_set_buf(&sgout[template[i].anp + k],
830 q, template[i].tap[k]);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300831 }
832
833 n = template[i].tap[k];
834 if (k == template[i].np - 1 && enc)
835 n += authsize;
836 if (offset_in_page(q) + n < PAGE_SIZE)
837 q[n] = 0;
838
839 temp += template[i].tap[k];
840 }
841
842 ret = crypto_aead_setauthsize(tfm, authsize);
843 if (ret) {
844 pr_err("alg: aead%s: Failed to set authsize to %u on chunk test %d for %s\n",
845 d, authsize, j, algo);
846 goto out;
847 }
848
849 if (enc) {
Herbert Xu8a525fc2015-05-27 16:03:43 +0800850 if (WARN_ON(sg[template[i].anp + k - 1].offset +
851 sg[template[i].anp + k - 1].length +
852 authsize > PAGE_SIZE)) {
Horia Geanta29b77e52014-07-23 11:59:38 +0300853 ret = -EINVAL;
854 goto out;
855 }
Herbert Xuda7f0332008-07-31 17:08:25 +0800856
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300857 if (diff_dst)
Herbert Xu8a525fc2015-05-27 16:03:43 +0800858 sgout[template[i].anp + k - 1].length +=
859 authsize;
860 sg[template[i].anp + k - 1].length += authsize;
Cristian Stoica05b1d332014-07-28 13:11:23 +0300861 }
862
863 aead_request_set_crypt(req, sg, (diff_dst) ? sgout : sg,
864 template[i].ilen,
865 iv);
866
Herbert Xu8a525fc2015-05-27 16:03:43 +0800867 aead_request_set_ad(req, template[i].alen);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300868
869 ret = enc ? crypto_aead_encrypt(req) : crypto_aead_decrypt(req);
870
871 switch (ret) {
872 case 0:
873 if (template[i].novrfy) {
874 /* verification was supposed to fail */
875 pr_err("alg: aead%s: %s failed on chunk test %d for %s: ret was 0, expected -EBADMSG\n",
876 d, e, j, algo);
877 /* so really, we got a bad message */
878 ret = -EBADMSG;
879 goto out;
880 }
881 break;
882 case -EINPROGRESS:
883 case -EBUSY:
Rabin Vincent8a45ac12015-01-09 16:25:28 +0100884 wait_for_completion(&result.completion);
885 reinit_completion(&result.completion);
886 ret = result.err;
887 if (!ret)
Cristian Stoica05b1d332014-07-28 13:11:23 +0300888 break;
Cristian Stoica05b1d332014-07-28 13:11:23 +0300889 case -EBADMSG:
890 if (template[i].novrfy)
891 /* verification failure was expected */
892 continue;
893 /* fall through */
894 default:
895 pr_err("alg: aead%s: %s failed on chunk test %d for %s: ret=%d\n",
896 d, e, j, algo, -ret);
897 goto out;
898 }
899
900 ret = -EINVAL;
901 for (k = 0, temp = 0; k < template[i].np; k++) {
902 if (diff_dst)
903 q = xoutbuf[IDX[k] >> PAGE_SHIFT] +
904 offset_in_page(IDX[k]);
905 else
Herbert Xuda7f0332008-07-31 17:08:25 +0800906 q = xbuf[IDX[k] >> PAGE_SHIFT] +
907 offset_in_page(IDX[k]);
908
Cristian Stoica05b1d332014-07-28 13:11:23 +0300909 n = template[i].tap[k];
910 if (k == template[i].np - 1)
911 n += enc ? authsize : -authsize;
Herbert Xuda7f0332008-07-31 17:08:25 +0800912
Cristian Stoica05b1d332014-07-28 13:11:23 +0300913 if (memcmp(q, template[i].result + temp, n)) {
914 pr_err("alg: aead%s: Chunk test %d failed on %s at page %u for %s\n",
915 d, j, e, k, algo);
916 hexdump(q, n);
Herbert Xuda7f0332008-07-31 17:08:25 +0800917 goto out;
918 }
919
Cristian Stoica05b1d332014-07-28 13:11:23 +0300920 q += n;
921 if (k == template[i].np - 1 && !enc) {
922 if (!diff_dst &&
923 memcmp(q, template[i].input +
924 temp + n, authsize))
925 n = authsize;
Horia Geanta8ec25c52013-11-28 15:11:18 +0200926 else
Cristian Stoica05b1d332014-07-28 13:11:23 +0300927 n = 0;
928 } else {
929 for (n = 0; offset_in_page(q + n) && q[n]; n++)
930 ;
Herbert Xuda7f0332008-07-31 17:08:25 +0800931 }
Cristian Stoica05b1d332014-07-28 13:11:23 +0300932 if (n) {
933 pr_err("alg: aead%s: Result buffer corruption in chunk test %d on %s at page %u for %s: %u bytes:\n",
934 d, j, e, k, algo, n);
935 hexdump(q, n);
Herbert Xuda7f0332008-07-31 17:08:25 +0800936 goto out;
937 }
938
Cristian Stoica05b1d332014-07-28 13:11:23 +0300939 temp += template[i].tap[k];
Herbert Xuda7f0332008-07-31 17:08:25 +0800940 }
941 }
942
943 ret = 0;
944
945out:
946 aead_request_free(req);
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300947 kfree(sg);
948out_nosg:
949 if (diff_dst)
950 testmgr_free_buf(xoutbuf);
951out_nooutbuf:
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800952 testmgr_free_buf(axbuf);
953out_noaxbuf:
954 testmgr_free_buf(xbuf);
955out_noxbuf:
Horia Geanta29b77e52014-07-23 11:59:38 +0300956 kfree(key);
Tadeusz Struk9bac0192014-05-19 09:51:33 -0700957 kfree(iv);
Herbert Xuda7f0332008-07-31 17:08:25 +0800958 return ret;
959}
960
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300961static int test_aead(struct crypto_aead *tfm, int enc,
Eric Biggersb13b1e02017-02-24 15:46:59 -0800962 const struct aead_testvec *template, unsigned int tcount)
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300963{
Jussi Kivilinna58dcf542013-06-13 17:37:50 +0300964 unsigned int alignmask;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300965 int ret;
966
967 /* test 'dst == src' case */
Jussi Kivilinna58dcf542013-06-13 17:37:50 +0300968 ret = __test_aead(tfm, enc, template, tcount, false, 0);
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300969 if (ret)
970 return ret;
971
972 /* test 'dst != src' case */
Jussi Kivilinna58dcf542013-06-13 17:37:50 +0300973 ret = __test_aead(tfm, enc, template, tcount, true, 0);
974 if (ret)
975 return ret;
976
977 /* test unaligned buffers, check with one byte offset */
978 ret = __test_aead(tfm, enc, template, tcount, true, 1);
979 if (ret)
980 return ret;
981
982 alignmask = crypto_tfm_alg_alignmask(&tfm->base);
983 if (alignmask) {
984 /* Check if alignment mask for tfm is correctly set. */
985 ret = __test_aead(tfm, enc, template, tcount, true,
986 alignmask + 1);
987 if (ret)
988 return ret;
989 }
990
991 return 0;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300992}
993
Herbert Xu1aa4ecd2008-08-17 17:01:56 +1000994static int test_cipher(struct crypto_cipher *tfm, int enc,
Eric Biggersb13b1e02017-02-24 15:46:59 -0800995 const struct cipher_testvec *template,
996 unsigned int tcount)
Herbert Xuda7f0332008-07-31 17:08:25 +0800997{
Herbert Xu1aa4ecd2008-08-17 17:01:56 +1000998 const char *algo = crypto_tfm_alg_driver_name(crypto_cipher_tfm(tfm));
999 unsigned int i, j, k;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001000 char *q;
1001 const char *e;
1002 void *data;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08001003 char *xbuf[XBUFSIZE];
1004 int ret = -ENOMEM;
1005
1006 if (testmgr_alloc_buf(xbuf))
1007 goto out_nobuf;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001008
1009 if (enc == ENCRYPT)
1010 e = "encryption";
1011 else
1012 e = "decryption";
1013
1014 j = 0;
1015 for (i = 0; i < tcount; i++) {
1016 if (template[i].np)
1017 continue;
1018
Stephan Mueller10faa8c2016-08-25 15:15:01 +02001019 if (fips_enabled && template[i].fips_skip)
1020 continue;
1021
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001022 j++;
1023
Herbert Xufd57f222009-05-29 16:05:42 +10001024 ret = -EINVAL;
1025 if (WARN_ON(template[i].ilen > PAGE_SIZE))
1026 goto out;
1027
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001028 data = xbuf[0];
1029 memcpy(data, template[i].input, template[i].ilen);
1030
1031 crypto_cipher_clear_flags(tfm, ~0);
1032 if (template[i].wk)
1033 crypto_cipher_set_flags(tfm, CRYPTO_TFM_REQ_WEAK_KEY);
1034
1035 ret = crypto_cipher_setkey(tfm, template[i].key,
1036 template[i].klen);
Yanjiang Jin0fae0c12016-07-29 16:32:09 +08001037 if (template[i].fail == !ret) {
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001038 printk(KERN_ERR "alg: cipher: setkey failed "
1039 "on test %d for %s: flags=%x\n", j,
1040 algo, crypto_cipher_get_flags(tfm));
1041 goto out;
1042 } else if (ret)
1043 continue;
1044
1045 for (k = 0; k < template[i].ilen;
1046 k += crypto_cipher_blocksize(tfm)) {
1047 if (enc)
1048 crypto_cipher_encrypt_one(tfm, data + k,
1049 data + k);
1050 else
1051 crypto_cipher_decrypt_one(tfm, data + k,
1052 data + k);
1053 }
1054
1055 q = data;
1056 if (memcmp(q, template[i].result, template[i].rlen)) {
1057 printk(KERN_ERR "alg: cipher: Test %d failed "
1058 "on %s for %s\n", j, e, algo);
1059 hexdump(q, template[i].rlen);
1060 ret = -EINVAL;
1061 goto out;
1062 }
1063 }
1064
1065 ret = 0;
1066
1067out:
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08001068 testmgr_free_buf(xbuf);
1069out_nobuf:
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001070 return ret;
1071}
1072
Herbert Xu12773d92015-08-20 15:21:46 +08001073static int __test_skcipher(struct crypto_skcipher *tfm, int enc,
Eric Biggersb13b1e02017-02-24 15:46:59 -08001074 const struct cipher_testvec *template,
1075 unsigned int tcount,
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03001076 const bool diff_dst, const int align_offset)
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001077{
Herbert Xuda7f0332008-07-31 17:08:25 +08001078 const char *algo =
Herbert Xu12773d92015-08-20 15:21:46 +08001079 crypto_tfm_alg_driver_name(crypto_skcipher_tfm(tfm));
Herbert Xuda7f0332008-07-31 17:08:25 +08001080 unsigned int i, j, k, n, temp;
Herbert Xuda7f0332008-07-31 17:08:25 +08001081 char *q;
Herbert Xu12773d92015-08-20 15:21:46 +08001082 struct skcipher_request *req;
Herbert Xuda7f0332008-07-31 17:08:25 +08001083 struct scatterlist sg[8];
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001084 struct scatterlist sgout[8];
1085 const char *e, *d;
Herbert Xuda7f0332008-07-31 17:08:25 +08001086 struct tcrypt_result result;
1087 void *data;
1088 char iv[MAX_IVLEN];
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08001089 char *xbuf[XBUFSIZE];
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001090 char *xoutbuf[XBUFSIZE];
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08001091 int ret = -ENOMEM;
Andrey Ryabinin84cba172015-09-10 13:11:55 +03001092 unsigned int ivsize = crypto_skcipher_ivsize(tfm);
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08001093
1094 if (testmgr_alloc_buf(xbuf))
1095 goto out_nobuf;
Herbert Xuda7f0332008-07-31 17:08:25 +08001096
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001097 if (diff_dst && testmgr_alloc_buf(xoutbuf))
1098 goto out_nooutbuf;
1099
1100 if (diff_dst)
1101 d = "-ddst";
1102 else
1103 d = "";
1104
Herbert Xuda7f0332008-07-31 17:08:25 +08001105 if (enc == ENCRYPT)
1106 e = "encryption";
1107 else
1108 e = "decryption";
1109
1110 init_completion(&result.completion);
1111
Herbert Xu12773d92015-08-20 15:21:46 +08001112 req = skcipher_request_alloc(tfm, GFP_KERNEL);
Herbert Xuda7f0332008-07-31 17:08:25 +08001113 if (!req) {
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001114 pr_err("alg: skcipher%s: Failed to allocate request for %s\n",
1115 d, algo);
Herbert Xuda7f0332008-07-31 17:08:25 +08001116 goto out;
1117 }
1118
Herbert Xu12773d92015-08-20 15:21:46 +08001119 skcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
1120 tcrypt_complete, &result);
Herbert Xuda7f0332008-07-31 17:08:25 +08001121
1122 j = 0;
1123 for (i = 0; i < tcount; i++) {
Cristian Stoicabbb9a7d2014-08-08 14:27:52 +03001124 if (template[i].np && !template[i].also_non_np)
1125 continue;
1126
Stephan Mueller10faa8c2016-08-25 15:15:01 +02001127 if (fips_enabled && template[i].fips_skip)
1128 continue;
1129
Herbert Xuda7f0332008-07-31 17:08:25 +08001130 if (template[i].iv)
Andrey Ryabinin84cba172015-09-10 13:11:55 +03001131 memcpy(iv, template[i].iv, ivsize);
Herbert Xuda7f0332008-07-31 17:08:25 +08001132 else
1133 memset(iv, 0, MAX_IVLEN);
1134
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001135 j++;
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001136 ret = -EINVAL;
1137 if (WARN_ON(align_offset + template[i].ilen > PAGE_SIZE))
1138 goto out;
1139
1140 data = xbuf[0];
1141 data += align_offset;
1142 memcpy(data, template[i].input, template[i].ilen);
1143
Herbert Xu12773d92015-08-20 15:21:46 +08001144 crypto_skcipher_clear_flags(tfm, ~0);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001145 if (template[i].wk)
Herbert Xu12773d92015-08-20 15:21:46 +08001146 crypto_skcipher_set_flags(tfm,
1147 CRYPTO_TFM_REQ_WEAK_KEY);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001148
Herbert Xu12773d92015-08-20 15:21:46 +08001149 ret = crypto_skcipher_setkey(tfm, template[i].key,
1150 template[i].klen);
Yanjiang Jin0fae0c12016-07-29 16:32:09 +08001151 if (template[i].fail == !ret) {
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001152 pr_err("alg: skcipher%s: setkey failed on test %d for %s: flags=%x\n",
Herbert Xu12773d92015-08-20 15:21:46 +08001153 d, j, algo, crypto_skcipher_get_flags(tfm));
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001154 goto out;
1155 } else if (ret)
1156 continue;
1157
1158 sg_init_one(&sg[0], data, template[i].ilen);
1159 if (diff_dst) {
1160 data = xoutbuf[0];
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03001161 data += align_offset;
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001162 sg_init_one(&sgout[0], data, template[i].ilen);
1163 }
Herbert Xuda7f0332008-07-31 17:08:25 +08001164
Herbert Xu12773d92015-08-20 15:21:46 +08001165 skcipher_request_set_crypt(req, sg, (diff_dst) ? sgout : sg,
1166 template[i].ilen, iv);
1167 ret = enc ? crypto_skcipher_encrypt(req) :
1168 crypto_skcipher_decrypt(req);
Herbert Xuda7f0332008-07-31 17:08:25 +08001169
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001170 switch (ret) {
1171 case 0:
1172 break;
1173 case -EINPROGRESS:
1174 case -EBUSY:
Rabin Vincent8a45ac12015-01-09 16:25:28 +01001175 wait_for_completion(&result.completion);
1176 reinit_completion(&result.completion);
1177 ret = result.err;
1178 if (!ret)
Herbert Xuda7f0332008-07-31 17:08:25 +08001179 break;
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001180 /* fall through */
1181 default:
1182 pr_err("alg: skcipher%s: %s failed on test %d for %s: ret=%d\n",
1183 d, e, j, algo, -ret);
1184 goto out;
1185 }
Herbert Xuda7f0332008-07-31 17:08:25 +08001186
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001187 q = data;
1188 if (memcmp(q, template[i].result, template[i].rlen)) {
Boris BREZILLON8a826a32015-06-16 11:46:46 +02001189 pr_err("alg: skcipher%s: Test %d failed (invalid result) on %s for %s\n",
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001190 d, j, e, algo);
1191 hexdump(q, template[i].rlen);
1192 ret = -EINVAL;
1193 goto out;
Herbert Xuda7f0332008-07-31 17:08:25 +08001194 }
Boris BREZILLON8a826a32015-06-16 11:46:46 +02001195
1196 if (template[i].iv_out &&
1197 memcmp(iv, template[i].iv_out,
1198 crypto_skcipher_ivsize(tfm))) {
1199 pr_err("alg: skcipher%s: Test %d failed (invalid output IV) on %s for %s\n",
1200 d, j, e, algo);
1201 hexdump(iv, crypto_skcipher_ivsize(tfm));
1202 ret = -EINVAL;
1203 goto out;
1204 }
Herbert Xuda7f0332008-07-31 17:08:25 +08001205 }
1206
1207 j = 0;
1208 for (i = 0; i < tcount; i++) {
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03001209 /* alignment tests are only done with continuous buffers */
1210 if (align_offset != 0)
1211 break;
Herbert Xuda7f0332008-07-31 17:08:25 +08001212
Cristian Stoicabbb9a7d2014-08-08 14:27:52 +03001213 if (!template[i].np)
1214 continue;
1215
Stephan Mueller10faa8c2016-08-25 15:15:01 +02001216 if (fips_enabled && template[i].fips_skip)
1217 continue;
1218
Herbert Xuda7f0332008-07-31 17:08:25 +08001219 if (template[i].iv)
Andrey Ryabinin84cba172015-09-10 13:11:55 +03001220 memcpy(iv, template[i].iv, ivsize);
Herbert Xuda7f0332008-07-31 17:08:25 +08001221 else
1222 memset(iv, 0, MAX_IVLEN);
1223
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001224 j++;
Herbert Xu12773d92015-08-20 15:21:46 +08001225 crypto_skcipher_clear_flags(tfm, ~0);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001226 if (template[i].wk)
Herbert Xu12773d92015-08-20 15:21:46 +08001227 crypto_skcipher_set_flags(tfm,
1228 CRYPTO_TFM_REQ_WEAK_KEY);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001229
Herbert Xu12773d92015-08-20 15:21:46 +08001230 ret = crypto_skcipher_setkey(tfm, template[i].key,
1231 template[i].klen);
Yanjiang Jin0fae0c12016-07-29 16:32:09 +08001232 if (template[i].fail == !ret) {
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001233 pr_err("alg: skcipher%s: setkey failed on chunk test %d for %s: flags=%x\n",
Herbert Xu12773d92015-08-20 15:21:46 +08001234 d, j, algo, crypto_skcipher_get_flags(tfm));
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001235 goto out;
1236 } else if (ret)
1237 continue;
1238
1239 temp = 0;
1240 ret = -EINVAL;
1241 sg_init_table(sg, template[i].np);
1242 if (diff_dst)
1243 sg_init_table(sgout, template[i].np);
1244 for (k = 0; k < template[i].np; k++) {
1245 if (WARN_ON(offset_in_page(IDX[k]) +
1246 template[i].tap[k] > PAGE_SIZE))
Herbert Xuda7f0332008-07-31 17:08:25 +08001247 goto out;
Herbert Xuda7f0332008-07-31 17:08:25 +08001248
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001249 q = xbuf[IDX[k] >> PAGE_SHIFT] + offset_in_page(IDX[k]);
1250
1251 memcpy(q, template[i].input + temp, template[i].tap[k]);
1252
1253 if (offset_in_page(q) + template[i].tap[k] < PAGE_SIZE)
1254 q[template[i].tap[k]] = 0;
1255
1256 sg_set_buf(&sg[k], q, template[i].tap[k]);
1257 if (diff_dst) {
1258 q = xoutbuf[IDX[k] >> PAGE_SHIFT] +
1259 offset_in_page(IDX[k]);
1260
1261 sg_set_buf(&sgout[k], q, template[i].tap[k]);
1262
1263 memset(q, 0, template[i].tap[k]);
1264 if (offset_in_page(q) +
1265 template[i].tap[k] < PAGE_SIZE)
1266 q[template[i].tap[k]] = 0;
1267 }
1268
1269 temp += template[i].tap[k];
1270 }
1271
Herbert Xu12773d92015-08-20 15:21:46 +08001272 skcipher_request_set_crypt(req, sg, (diff_dst) ? sgout : sg,
1273 template[i].ilen, iv);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001274
Herbert Xu12773d92015-08-20 15:21:46 +08001275 ret = enc ? crypto_skcipher_encrypt(req) :
1276 crypto_skcipher_decrypt(req);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001277
1278 switch (ret) {
1279 case 0:
1280 break;
1281 case -EINPROGRESS:
1282 case -EBUSY:
Rabin Vincent8a45ac12015-01-09 16:25:28 +01001283 wait_for_completion(&result.completion);
1284 reinit_completion(&result.completion);
1285 ret = result.err;
1286 if (!ret)
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001287 break;
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001288 /* fall through */
1289 default:
1290 pr_err("alg: skcipher%s: %s failed on chunk test %d for %s: ret=%d\n",
1291 d, e, j, algo, -ret);
1292 goto out;
1293 }
1294
1295 temp = 0;
1296 ret = -EINVAL;
1297 for (k = 0; k < template[i].np; k++) {
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001298 if (diff_dst)
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001299 q = xoutbuf[IDX[k] >> PAGE_SHIFT] +
1300 offset_in_page(IDX[k]);
1301 else
Herbert Xuda7f0332008-07-31 17:08:25 +08001302 q = xbuf[IDX[k] >> PAGE_SHIFT] +
1303 offset_in_page(IDX[k]);
1304
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001305 if (memcmp(q, template[i].result + temp,
1306 template[i].tap[k])) {
1307 pr_err("alg: skcipher%s: Chunk test %d failed on %s at page %u for %s\n",
1308 d, j, e, k, algo);
1309 hexdump(q, template[i].tap[k]);
Herbert Xuda7f0332008-07-31 17:08:25 +08001310 goto out;
1311 }
1312
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001313 q += template[i].tap[k];
1314 for (n = 0; offset_in_page(q + n) && q[n]; n++)
1315 ;
1316 if (n) {
1317 pr_err("alg: skcipher%s: Result buffer corruption in chunk test %d on %s at page %u for %s: %u bytes:\n",
1318 d, j, e, k, algo, n);
1319 hexdump(q, n);
1320 goto out;
Herbert Xuda7f0332008-07-31 17:08:25 +08001321 }
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001322 temp += template[i].tap[k];
Herbert Xuda7f0332008-07-31 17:08:25 +08001323 }
1324 }
1325
1326 ret = 0;
1327
1328out:
Herbert Xu12773d92015-08-20 15:21:46 +08001329 skcipher_request_free(req);
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001330 if (diff_dst)
1331 testmgr_free_buf(xoutbuf);
1332out_nooutbuf:
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08001333 testmgr_free_buf(xbuf);
1334out_nobuf:
Herbert Xuda7f0332008-07-31 17:08:25 +08001335 return ret;
1336}
1337
Herbert Xu12773d92015-08-20 15:21:46 +08001338static int test_skcipher(struct crypto_skcipher *tfm, int enc,
Eric Biggersb13b1e02017-02-24 15:46:59 -08001339 const struct cipher_testvec *template,
1340 unsigned int tcount)
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001341{
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03001342 unsigned int alignmask;
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001343 int ret;
1344
1345 /* test 'dst == src' case */
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03001346 ret = __test_skcipher(tfm, enc, template, tcount, false, 0);
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001347 if (ret)
1348 return ret;
1349
1350 /* test 'dst != src' case */
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03001351 ret = __test_skcipher(tfm, enc, template, tcount, true, 0);
1352 if (ret)
1353 return ret;
1354
1355 /* test unaligned buffers, check with one byte offset */
1356 ret = __test_skcipher(tfm, enc, template, tcount, true, 1);
1357 if (ret)
1358 return ret;
1359
1360 alignmask = crypto_tfm_alg_alignmask(&tfm->base);
1361 if (alignmask) {
1362 /* Check if alignment mask for tfm is correctly set. */
1363 ret = __test_skcipher(tfm, enc, template, tcount, true,
1364 alignmask + 1);
1365 if (ret)
1366 return ret;
1367 }
1368
1369 return 0;
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001370}
1371
Eric Biggersb13b1e02017-02-24 15:46:59 -08001372static int test_comp(struct crypto_comp *tfm,
1373 const struct comp_testvec *ctemplate,
1374 const struct comp_testvec *dtemplate,
1375 int ctcount, int dtcount)
Herbert Xuda7f0332008-07-31 17:08:25 +08001376{
1377 const char *algo = crypto_tfm_alg_driver_name(crypto_comp_tfm(tfm));
1378 unsigned int i;
1379 char result[COMP_BUF_SIZE];
1380 int ret;
1381
1382 for (i = 0; i < ctcount; i++) {
Geert Uytterhoevenc79cf912009-03-29 15:44:19 +08001383 int ilen;
1384 unsigned int dlen = COMP_BUF_SIZE;
Herbert Xuda7f0332008-07-31 17:08:25 +08001385
1386 memset(result, 0, sizeof (result));
1387
1388 ilen = ctemplate[i].inlen;
1389 ret = crypto_comp_compress(tfm, ctemplate[i].input,
1390 ilen, result, &dlen);
1391 if (ret) {
1392 printk(KERN_ERR "alg: comp: compression failed "
1393 "on test %d for %s: ret=%d\n", i + 1, algo,
1394 -ret);
1395 goto out;
1396 }
1397
Geert Uytterhoevenb812eb02008-11-28 20:51:28 +08001398 if (dlen != ctemplate[i].outlen) {
1399 printk(KERN_ERR "alg: comp: Compression test %d "
1400 "failed for %s: output len = %d\n", i + 1, algo,
1401 dlen);
1402 ret = -EINVAL;
1403 goto out;
1404 }
1405
Herbert Xuda7f0332008-07-31 17:08:25 +08001406 if (memcmp(result, ctemplate[i].output, dlen)) {
1407 printk(KERN_ERR "alg: comp: Compression test %d "
1408 "failed for %s\n", i + 1, algo);
1409 hexdump(result, dlen);
1410 ret = -EINVAL;
1411 goto out;
1412 }
1413 }
1414
1415 for (i = 0; i < dtcount; i++) {
Geert Uytterhoevenc79cf912009-03-29 15:44:19 +08001416 int ilen;
1417 unsigned int dlen = COMP_BUF_SIZE;
Herbert Xuda7f0332008-07-31 17:08:25 +08001418
1419 memset(result, 0, sizeof (result));
1420
1421 ilen = dtemplate[i].inlen;
1422 ret = crypto_comp_decompress(tfm, dtemplate[i].input,
1423 ilen, result, &dlen);
1424 if (ret) {
1425 printk(KERN_ERR "alg: comp: decompression failed "
1426 "on test %d for %s: ret=%d\n", i + 1, algo,
1427 -ret);
1428 goto out;
1429 }
1430
Geert Uytterhoevenb812eb02008-11-28 20:51:28 +08001431 if (dlen != dtemplate[i].outlen) {
1432 printk(KERN_ERR "alg: comp: Decompression test %d "
1433 "failed for %s: output len = %d\n", i + 1, algo,
1434 dlen);
1435 ret = -EINVAL;
1436 goto out;
1437 }
1438
Herbert Xuda7f0332008-07-31 17:08:25 +08001439 if (memcmp(result, dtemplate[i].output, dlen)) {
1440 printk(KERN_ERR "alg: comp: Decompression test %d "
1441 "failed for %s\n", i + 1, algo);
1442 hexdump(result, dlen);
1443 ret = -EINVAL;
1444 goto out;
1445 }
1446 }
1447
1448 ret = 0;
1449
1450out:
1451 return ret;
1452}
1453
Eric Biggersb13b1e02017-02-24 15:46:59 -08001454static int test_acomp(struct crypto_acomp *tfm,
1455 const struct comp_testvec *ctemplate,
1456 const struct comp_testvec *dtemplate,
1457 int ctcount, int dtcount)
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001458{
1459 const char *algo = crypto_tfm_alg_driver_name(crypto_acomp_tfm(tfm));
1460 unsigned int i;
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01001461 char *output, *decomp_out;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001462 int ret;
1463 struct scatterlist src, dst;
1464 struct acomp_req *req;
1465 struct tcrypt_result result;
1466
Eric Biggerseb095592016-11-23 10:24:35 -08001467 output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
1468 if (!output)
1469 return -ENOMEM;
1470
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01001471 decomp_out = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
1472 if (!decomp_out) {
1473 kfree(output);
1474 return -ENOMEM;
1475 }
1476
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001477 for (i = 0; i < ctcount; i++) {
1478 unsigned int dlen = COMP_BUF_SIZE;
1479 int ilen = ctemplate[i].inlen;
Laura Abbott02608e02016-12-21 12:32:54 -08001480 void *input_vec;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001481
Eric Biggersd2110222016-12-30 14:12:00 -06001482 input_vec = kmemdup(ctemplate[i].input, ilen, GFP_KERNEL);
Laura Abbott02608e02016-12-21 12:32:54 -08001483 if (!input_vec) {
1484 ret = -ENOMEM;
1485 goto out;
1486 }
1487
Eric Biggerseb095592016-11-23 10:24:35 -08001488 memset(output, 0, dlen);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001489 init_completion(&result.completion);
Laura Abbott02608e02016-12-21 12:32:54 -08001490 sg_init_one(&src, input_vec, ilen);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001491 sg_init_one(&dst, output, dlen);
1492
1493 req = acomp_request_alloc(tfm);
1494 if (!req) {
1495 pr_err("alg: acomp: request alloc failed for %s\n",
1496 algo);
Laura Abbott02608e02016-12-21 12:32:54 -08001497 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001498 ret = -ENOMEM;
1499 goto out;
1500 }
1501
1502 acomp_request_set_params(req, &src, &dst, ilen, dlen);
1503 acomp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
1504 tcrypt_complete, &result);
1505
1506 ret = wait_async_op(&result, crypto_acomp_compress(req));
1507 if (ret) {
1508 pr_err("alg: acomp: compression failed on test %d for %s: ret=%d\n",
1509 i + 1, algo, -ret);
Laura Abbott02608e02016-12-21 12:32:54 -08001510 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001511 acomp_request_free(req);
1512 goto out;
1513 }
1514
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01001515 ilen = req->dlen;
1516 dlen = COMP_BUF_SIZE;
1517 sg_init_one(&src, output, ilen);
1518 sg_init_one(&dst, decomp_out, dlen);
1519 init_completion(&result.completion);
1520 acomp_request_set_params(req, &src, &dst, ilen, dlen);
1521
1522 ret = wait_async_op(&result, crypto_acomp_decompress(req));
1523 if (ret) {
1524 pr_err("alg: acomp: compression failed on test %d for %s: ret=%d\n",
1525 i + 1, algo, -ret);
1526 kfree(input_vec);
1527 acomp_request_free(req);
1528 goto out;
1529 }
1530
1531 if (req->dlen != ctemplate[i].inlen) {
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001532 pr_err("alg: acomp: Compression test %d failed for %s: output len = %d\n",
1533 i + 1, algo, req->dlen);
1534 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08001535 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001536 acomp_request_free(req);
1537 goto out;
1538 }
1539
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01001540 if (memcmp(input_vec, decomp_out, req->dlen)) {
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001541 pr_err("alg: acomp: Compression test %d failed for %s\n",
1542 i + 1, algo);
1543 hexdump(output, req->dlen);
1544 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08001545 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001546 acomp_request_free(req);
1547 goto out;
1548 }
1549
Laura Abbott02608e02016-12-21 12:32:54 -08001550 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001551 acomp_request_free(req);
1552 }
1553
1554 for (i = 0; i < dtcount; i++) {
1555 unsigned int dlen = COMP_BUF_SIZE;
1556 int ilen = dtemplate[i].inlen;
Laura Abbott02608e02016-12-21 12:32:54 -08001557 void *input_vec;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001558
Eric Biggersd2110222016-12-30 14:12:00 -06001559 input_vec = kmemdup(dtemplate[i].input, ilen, GFP_KERNEL);
Laura Abbott02608e02016-12-21 12:32:54 -08001560 if (!input_vec) {
1561 ret = -ENOMEM;
1562 goto out;
1563 }
1564
Eric Biggerseb095592016-11-23 10:24:35 -08001565 memset(output, 0, dlen);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001566 init_completion(&result.completion);
Laura Abbott02608e02016-12-21 12:32:54 -08001567 sg_init_one(&src, input_vec, ilen);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001568 sg_init_one(&dst, output, dlen);
1569
1570 req = acomp_request_alloc(tfm);
1571 if (!req) {
1572 pr_err("alg: acomp: request alloc failed for %s\n",
1573 algo);
Laura Abbott02608e02016-12-21 12:32:54 -08001574 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001575 ret = -ENOMEM;
1576 goto out;
1577 }
1578
1579 acomp_request_set_params(req, &src, &dst, ilen, dlen);
1580 acomp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
1581 tcrypt_complete, &result);
1582
1583 ret = wait_async_op(&result, crypto_acomp_decompress(req));
1584 if (ret) {
1585 pr_err("alg: acomp: decompression failed on test %d for %s: ret=%d\n",
1586 i + 1, algo, -ret);
Laura Abbott02608e02016-12-21 12:32:54 -08001587 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001588 acomp_request_free(req);
1589 goto out;
1590 }
1591
1592 if (req->dlen != dtemplate[i].outlen) {
1593 pr_err("alg: acomp: Decompression test %d failed for %s: output len = %d\n",
1594 i + 1, algo, req->dlen);
1595 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08001596 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001597 acomp_request_free(req);
1598 goto out;
1599 }
1600
1601 if (memcmp(output, dtemplate[i].output, req->dlen)) {
1602 pr_err("alg: acomp: Decompression test %d failed for %s\n",
1603 i + 1, algo);
1604 hexdump(output, req->dlen);
1605 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08001606 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001607 acomp_request_free(req);
1608 goto out;
1609 }
1610
Laura Abbott02608e02016-12-21 12:32:54 -08001611 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001612 acomp_request_free(req);
1613 }
1614
1615 ret = 0;
1616
1617out:
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01001618 kfree(decomp_out);
Eric Biggerseb095592016-11-23 10:24:35 -08001619 kfree(output);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001620 return ret;
1621}
1622
Eric Biggersb13b1e02017-02-24 15:46:59 -08001623static int test_cprng(struct crypto_rng *tfm,
1624 const struct cprng_testvec *template,
Jarod Wilson7647d6c2009-05-04 19:44:50 +08001625 unsigned int tcount)
1626{
1627 const char *algo = crypto_tfm_alg_driver_name(crypto_rng_tfm(tfm));
Felipe Contrerasfa4ef8a2009-10-27 19:04:42 +08001628 int err = 0, i, j, seedsize;
Jarod Wilson7647d6c2009-05-04 19:44:50 +08001629 u8 *seed;
1630 char result[32];
1631
1632 seedsize = crypto_rng_seedsize(tfm);
1633
1634 seed = kmalloc(seedsize, GFP_KERNEL);
1635 if (!seed) {
1636 printk(KERN_ERR "alg: cprng: Failed to allocate seed space "
1637 "for %s\n", algo);
1638 return -ENOMEM;
1639 }
1640
1641 for (i = 0; i < tcount; i++) {
1642 memset(result, 0, 32);
1643
1644 memcpy(seed, template[i].v, template[i].vlen);
1645 memcpy(seed + template[i].vlen, template[i].key,
1646 template[i].klen);
1647 memcpy(seed + template[i].vlen + template[i].klen,
1648 template[i].dt, template[i].dtlen);
1649
1650 err = crypto_rng_reset(tfm, seed, seedsize);
1651 if (err) {
1652 printk(KERN_ERR "alg: cprng: Failed to reset rng "
1653 "for %s\n", algo);
1654 goto out;
1655 }
1656
1657 for (j = 0; j < template[i].loops; j++) {
1658 err = crypto_rng_get_bytes(tfm, result,
1659 template[i].rlen);
Stephan Mueller19e60e12015-03-10 17:00:36 +01001660 if (err < 0) {
Jarod Wilson7647d6c2009-05-04 19:44:50 +08001661 printk(KERN_ERR "alg: cprng: Failed to obtain "
1662 "the correct amount of random data for "
Stephan Mueller19e60e12015-03-10 17:00:36 +01001663 "%s (requested %d)\n", algo,
1664 template[i].rlen);
Jarod Wilson7647d6c2009-05-04 19:44:50 +08001665 goto out;
1666 }
1667 }
1668
1669 err = memcmp(result, template[i].result,
1670 template[i].rlen);
1671 if (err) {
1672 printk(KERN_ERR "alg: cprng: Test %d failed for %s\n",
1673 i, algo);
1674 hexdump(result, template[i].rlen);
1675 err = -EINVAL;
1676 goto out;
1677 }
1678 }
1679
1680out:
1681 kfree(seed);
1682 return err;
1683}
1684
Herbert Xuda7f0332008-07-31 17:08:25 +08001685static int alg_test_aead(const struct alg_test_desc *desc, const char *driver,
1686 u32 type, u32 mask)
1687{
1688 struct crypto_aead *tfm;
1689 int err = 0;
1690
Herbert Xueed93e02016-11-22 20:08:31 +08001691 tfm = crypto_alloc_aead(driver, type, mask);
Herbert Xuda7f0332008-07-31 17:08:25 +08001692 if (IS_ERR(tfm)) {
1693 printk(KERN_ERR "alg: aead: Failed to load transform for %s: "
1694 "%ld\n", driver, PTR_ERR(tfm));
1695 return PTR_ERR(tfm);
1696 }
1697
1698 if (desc->suite.aead.enc.vecs) {
1699 err = test_aead(tfm, ENCRYPT, desc->suite.aead.enc.vecs,
1700 desc->suite.aead.enc.count);
1701 if (err)
1702 goto out;
1703 }
1704
1705 if (!err && desc->suite.aead.dec.vecs)
1706 err = test_aead(tfm, DECRYPT, desc->suite.aead.dec.vecs,
1707 desc->suite.aead.dec.count);
1708
1709out:
1710 crypto_free_aead(tfm);
1711 return err;
1712}
1713
1714static int alg_test_cipher(const struct alg_test_desc *desc,
1715 const char *driver, u32 type, u32 mask)
1716{
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001717 struct crypto_cipher *tfm;
Herbert Xuda7f0332008-07-31 17:08:25 +08001718 int err = 0;
1719
Herbert Xueed93e02016-11-22 20:08:31 +08001720 tfm = crypto_alloc_cipher(driver, type, mask);
Herbert Xuda7f0332008-07-31 17:08:25 +08001721 if (IS_ERR(tfm)) {
1722 printk(KERN_ERR "alg: cipher: Failed to load transform for "
1723 "%s: %ld\n", driver, PTR_ERR(tfm));
1724 return PTR_ERR(tfm);
1725 }
1726
1727 if (desc->suite.cipher.enc.vecs) {
1728 err = test_cipher(tfm, ENCRYPT, desc->suite.cipher.enc.vecs,
1729 desc->suite.cipher.enc.count);
1730 if (err)
1731 goto out;
1732 }
1733
1734 if (desc->suite.cipher.dec.vecs)
1735 err = test_cipher(tfm, DECRYPT, desc->suite.cipher.dec.vecs,
1736 desc->suite.cipher.dec.count);
1737
1738out:
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001739 crypto_free_cipher(tfm);
1740 return err;
1741}
1742
1743static int alg_test_skcipher(const struct alg_test_desc *desc,
1744 const char *driver, u32 type, u32 mask)
1745{
Herbert Xu12773d92015-08-20 15:21:46 +08001746 struct crypto_skcipher *tfm;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001747 int err = 0;
1748
Herbert Xueed93e02016-11-22 20:08:31 +08001749 tfm = crypto_alloc_skcipher(driver, type, mask);
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001750 if (IS_ERR(tfm)) {
1751 printk(KERN_ERR "alg: skcipher: Failed to load transform for "
1752 "%s: %ld\n", driver, PTR_ERR(tfm));
1753 return PTR_ERR(tfm);
1754 }
1755
1756 if (desc->suite.cipher.enc.vecs) {
1757 err = test_skcipher(tfm, ENCRYPT, desc->suite.cipher.enc.vecs,
1758 desc->suite.cipher.enc.count);
1759 if (err)
1760 goto out;
1761 }
1762
1763 if (desc->suite.cipher.dec.vecs)
1764 err = test_skcipher(tfm, DECRYPT, desc->suite.cipher.dec.vecs,
1765 desc->suite.cipher.dec.count);
1766
1767out:
Herbert Xu12773d92015-08-20 15:21:46 +08001768 crypto_free_skcipher(tfm);
Herbert Xuda7f0332008-07-31 17:08:25 +08001769 return err;
1770}
1771
1772static int alg_test_comp(const struct alg_test_desc *desc, const char *driver,
1773 u32 type, u32 mask)
1774{
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001775 struct crypto_comp *comp;
1776 struct crypto_acomp *acomp;
Herbert Xuda7f0332008-07-31 17:08:25 +08001777 int err;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001778 u32 algo_type = type & CRYPTO_ALG_TYPE_ACOMPRESS_MASK;
Herbert Xuda7f0332008-07-31 17:08:25 +08001779
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001780 if (algo_type == CRYPTO_ALG_TYPE_ACOMPRESS) {
1781 acomp = crypto_alloc_acomp(driver, type, mask);
1782 if (IS_ERR(acomp)) {
1783 pr_err("alg: acomp: Failed to load transform for %s: %ld\n",
1784 driver, PTR_ERR(acomp));
1785 return PTR_ERR(acomp);
1786 }
1787 err = test_acomp(acomp, desc->suite.comp.comp.vecs,
1788 desc->suite.comp.decomp.vecs,
1789 desc->suite.comp.comp.count,
1790 desc->suite.comp.decomp.count);
1791 crypto_free_acomp(acomp);
1792 } else {
1793 comp = crypto_alloc_comp(driver, type, mask);
1794 if (IS_ERR(comp)) {
1795 pr_err("alg: comp: Failed to load transform for %s: %ld\n",
1796 driver, PTR_ERR(comp));
1797 return PTR_ERR(comp);
1798 }
1799
1800 err = test_comp(comp, desc->suite.comp.comp.vecs,
1801 desc->suite.comp.decomp.vecs,
1802 desc->suite.comp.comp.count,
1803 desc->suite.comp.decomp.count);
1804
1805 crypto_free_comp(comp);
Herbert Xuda7f0332008-07-31 17:08:25 +08001806 }
Herbert Xuda7f0332008-07-31 17:08:25 +08001807 return err;
1808}
1809
1810static int alg_test_hash(const struct alg_test_desc *desc, const char *driver,
1811 u32 type, u32 mask)
1812{
1813 struct crypto_ahash *tfm;
1814 int err;
1815
Herbert Xueed93e02016-11-22 20:08:31 +08001816 tfm = crypto_alloc_ahash(driver, type, mask);
Herbert Xuda7f0332008-07-31 17:08:25 +08001817 if (IS_ERR(tfm)) {
1818 printk(KERN_ERR "alg: hash: Failed to load transform for %s: "
1819 "%ld\n", driver, PTR_ERR(tfm));
1820 return PTR_ERR(tfm);
1821 }
1822
David S. Millera8f1a052010-05-19 14:12:03 +10001823 err = test_hash(tfm, desc->suite.hash.vecs,
1824 desc->suite.hash.count, true);
1825 if (!err)
1826 err = test_hash(tfm, desc->suite.hash.vecs,
1827 desc->suite.hash.count, false);
Herbert Xuda7f0332008-07-31 17:08:25 +08001828
1829 crypto_free_ahash(tfm);
1830 return err;
1831}
1832
Herbert Xu8e3ee852008-11-07 14:58:52 +08001833static int alg_test_crc32c(const struct alg_test_desc *desc,
1834 const char *driver, u32 type, u32 mask)
1835{
1836 struct crypto_shash *tfm;
1837 u32 val;
1838 int err;
1839
1840 err = alg_test_hash(desc, driver, type, mask);
1841 if (err)
1842 goto out;
1843
Herbert Xueed93e02016-11-22 20:08:31 +08001844 tfm = crypto_alloc_shash(driver, type, mask);
Herbert Xu8e3ee852008-11-07 14:58:52 +08001845 if (IS_ERR(tfm)) {
1846 printk(KERN_ERR "alg: crc32c: Failed to load transform for %s: "
1847 "%ld\n", driver, PTR_ERR(tfm));
1848 err = PTR_ERR(tfm);
1849 goto out;
1850 }
1851
1852 do {
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02001853 SHASH_DESC_ON_STACK(shash, tfm);
1854 u32 *ctx = (u32 *)shash_desc_ctx(shash);
Herbert Xu8e3ee852008-11-07 14:58:52 +08001855
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02001856 shash->tfm = tfm;
1857 shash->flags = 0;
Herbert Xu8e3ee852008-11-07 14:58:52 +08001858
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02001859 *ctx = le32_to_cpu(420553207);
1860 err = crypto_shash_final(shash, (u8 *)&val);
Herbert Xu8e3ee852008-11-07 14:58:52 +08001861 if (err) {
1862 printk(KERN_ERR "alg: crc32c: Operation failed for "
1863 "%s: %d\n", driver, err);
1864 break;
1865 }
1866
1867 if (val != ~420553207) {
1868 printk(KERN_ERR "alg: crc32c: Test failed for %s: "
1869 "%d\n", driver, val);
1870 err = -EINVAL;
1871 }
1872 } while (0);
1873
1874 crypto_free_shash(tfm);
1875
1876out:
1877 return err;
1878}
1879
Jarod Wilson7647d6c2009-05-04 19:44:50 +08001880static int alg_test_cprng(const struct alg_test_desc *desc, const char *driver,
1881 u32 type, u32 mask)
1882{
1883 struct crypto_rng *rng;
1884 int err;
1885
Herbert Xueed93e02016-11-22 20:08:31 +08001886 rng = crypto_alloc_rng(driver, type, mask);
Jarod Wilson7647d6c2009-05-04 19:44:50 +08001887 if (IS_ERR(rng)) {
1888 printk(KERN_ERR "alg: cprng: Failed to load transform for %s: "
1889 "%ld\n", driver, PTR_ERR(rng));
1890 return PTR_ERR(rng);
1891 }
1892
1893 err = test_cprng(rng, desc->suite.cprng.vecs, desc->suite.cprng.count);
1894
1895 crypto_free_rng(rng);
1896
1897 return err;
1898}
1899
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001900
Eric Biggersb13b1e02017-02-24 15:46:59 -08001901static int drbg_cavs_test(const struct drbg_testvec *test, int pr,
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001902 const char *driver, u32 type, u32 mask)
1903{
1904 int ret = -EAGAIN;
1905 struct crypto_rng *drng;
1906 struct drbg_test_data test_data;
1907 struct drbg_string addtl, pers, testentropy;
1908 unsigned char *buf = kzalloc(test->expectedlen, GFP_KERNEL);
1909
1910 if (!buf)
1911 return -ENOMEM;
1912
Herbert Xueed93e02016-11-22 20:08:31 +08001913 drng = crypto_alloc_rng(driver, type, mask);
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001914 if (IS_ERR(drng)) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04001915 printk(KERN_ERR "alg: drbg: could not allocate DRNG handle for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001916 "%s\n", driver);
1917 kzfree(buf);
1918 return -ENOMEM;
1919 }
1920
1921 test_data.testentropy = &testentropy;
1922 drbg_string_fill(&testentropy, test->entropy, test->entropylen);
1923 drbg_string_fill(&pers, test->pers, test->perslen);
1924 ret = crypto_drbg_reset_test(drng, &pers, &test_data);
1925 if (ret) {
1926 printk(KERN_ERR "alg: drbg: Failed to reset rng\n");
1927 goto outbuf;
1928 }
1929
1930 drbg_string_fill(&addtl, test->addtla, test->addtllen);
1931 if (pr) {
1932 drbg_string_fill(&testentropy, test->entpra, test->entprlen);
1933 ret = crypto_drbg_get_bytes_addtl_test(drng,
1934 buf, test->expectedlen, &addtl, &test_data);
1935 } else {
1936 ret = crypto_drbg_get_bytes_addtl(drng,
1937 buf, test->expectedlen, &addtl);
1938 }
Stephan Mueller19e60e12015-03-10 17:00:36 +01001939 if (ret < 0) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04001940 printk(KERN_ERR "alg: drbg: could not obtain random data for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001941 "driver %s\n", driver);
1942 goto outbuf;
1943 }
1944
1945 drbg_string_fill(&addtl, test->addtlb, test->addtllen);
1946 if (pr) {
1947 drbg_string_fill(&testentropy, test->entprb, test->entprlen);
1948 ret = crypto_drbg_get_bytes_addtl_test(drng,
1949 buf, test->expectedlen, &addtl, &test_data);
1950 } else {
1951 ret = crypto_drbg_get_bytes_addtl(drng,
1952 buf, test->expectedlen, &addtl);
1953 }
Stephan Mueller19e60e12015-03-10 17:00:36 +01001954 if (ret < 0) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04001955 printk(KERN_ERR "alg: drbg: could not obtain random data for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001956 "driver %s\n", driver);
1957 goto outbuf;
1958 }
1959
1960 ret = memcmp(test->expected, buf, test->expectedlen);
1961
1962outbuf:
1963 crypto_free_rng(drng);
1964 kzfree(buf);
1965 return ret;
1966}
1967
1968
1969static int alg_test_drbg(const struct alg_test_desc *desc, const char *driver,
1970 u32 type, u32 mask)
1971{
1972 int err = 0;
1973 int pr = 0;
1974 int i = 0;
Eric Biggersb13b1e02017-02-24 15:46:59 -08001975 const struct drbg_testvec *template = desc->suite.drbg.vecs;
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001976 unsigned int tcount = desc->suite.drbg.count;
1977
1978 if (0 == memcmp(driver, "drbg_pr_", 8))
1979 pr = 1;
1980
1981 for (i = 0; i < tcount; i++) {
1982 err = drbg_cavs_test(&template[i], pr, driver, type, mask);
1983 if (err) {
1984 printk(KERN_ERR "alg: drbg: Test %d failed for %s\n",
1985 i, driver);
1986 err = -EINVAL;
1987 break;
1988 }
1989 }
1990 return err;
1991
1992}
1993
Eric Biggersb13b1e02017-02-24 15:46:59 -08001994static int do_test_kpp(struct crypto_kpp *tfm, const struct kpp_testvec *vec,
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01001995 const char *alg)
1996{
1997 struct kpp_request *req;
1998 void *input_buf = NULL;
1999 void *output_buf = NULL;
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002000 void *a_public = NULL;
2001 void *a_ss = NULL;
2002 void *shared_secret = NULL;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002003 struct tcrypt_result result;
2004 unsigned int out_len_max;
2005 int err = -ENOMEM;
2006 struct scatterlist src, dst;
2007
2008 req = kpp_request_alloc(tfm, GFP_KERNEL);
2009 if (!req)
2010 return err;
2011
2012 init_completion(&result.completion);
2013
2014 err = crypto_kpp_set_secret(tfm, vec->secret, vec->secret_size);
2015 if (err < 0)
2016 goto free_req;
2017
2018 out_len_max = crypto_kpp_maxsize(tfm);
2019 output_buf = kzalloc(out_len_max, GFP_KERNEL);
2020 if (!output_buf) {
2021 err = -ENOMEM;
2022 goto free_req;
2023 }
2024
2025 /* Use appropriate parameter as base */
2026 kpp_request_set_input(req, NULL, 0);
2027 sg_init_one(&dst, output_buf, out_len_max);
2028 kpp_request_set_output(req, &dst, out_len_max);
2029 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
2030 tcrypt_complete, &result);
2031
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002032 /* Compute party A's public key */
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002033 err = wait_async_op(&result, crypto_kpp_generate_public_key(req));
2034 if (err) {
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002035 pr_err("alg: %s: Party A: generate public key test failed. err %d\n",
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002036 alg, err);
2037 goto free_output;
2038 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002039
2040 if (vec->genkey) {
2041 /* Save party A's public key */
2042 a_public = kzalloc(out_len_max, GFP_KERNEL);
2043 if (!a_public) {
2044 err = -ENOMEM;
2045 goto free_output;
2046 }
2047 memcpy(a_public, sg_virt(req->dst), out_len_max);
2048 } else {
2049 /* Verify calculated public key */
2050 if (memcmp(vec->expected_a_public, sg_virt(req->dst),
2051 vec->expected_a_public_size)) {
2052 pr_err("alg: %s: Party A: generate public key test failed. Invalid output\n",
2053 alg);
2054 err = -EINVAL;
2055 goto free_output;
2056 }
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002057 }
2058
2059 /* Calculate shared secret key by using counter part (b) public key. */
2060 input_buf = kzalloc(vec->b_public_size, GFP_KERNEL);
2061 if (!input_buf) {
2062 err = -ENOMEM;
2063 goto free_output;
2064 }
2065
2066 memcpy(input_buf, vec->b_public, vec->b_public_size);
2067 sg_init_one(&src, input_buf, vec->b_public_size);
2068 sg_init_one(&dst, output_buf, out_len_max);
2069 kpp_request_set_input(req, &src, vec->b_public_size);
2070 kpp_request_set_output(req, &dst, out_len_max);
2071 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
2072 tcrypt_complete, &result);
2073 err = wait_async_op(&result, crypto_kpp_compute_shared_secret(req));
2074 if (err) {
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002075 pr_err("alg: %s: Party A: compute shared secret test failed. err %d\n",
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002076 alg, err);
2077 goto free_all;
2078 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002079
2080 if (vec->genkey) {
2081 /* Save the shared secret obtained by party A */
2082 a_ss = kzalloc(vec->expected_ss_size, GFP_KERNEL);
2083 if (!a_ss) {
2084 err = -ENOMEM;
2085 goto free_all;
2086 }
2087 memcpy(a_ss, sg_virt(req->dst), vec->expected_ss_size);
2088
2089 /*
2090 * Calculate party B's shared secret by using party A's
2091 * public key.
2092 */
2093 err = crypto_kpp_set_secret(tfm, vec->b_secret,
2094 vec->b_secret_size);
2095 if (err < 0)
2096 goto free_all;
2097
2098 sg_init_one(&src, a_public, vec->expected_a_public_size);
2099 sg_init_one(&dst, output_buf, out_len_max);
2100 kpp_request_set_input(req, &src, vec->expected_a_public_size);
2101 kpp_request_set_output(req, &dst, out_len_max);
2102 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
2103 tcrypt_complete, &result);
2104 err = wait_async_op(&result,
2105 crypto_kpp_compute_shared_secret(req));
2106 if (err) {
2107 pr_err("alg: %s: Party B: compute shared secret failed. err %d\n",
2108 alg, err);
2109 goto free_all;
2110 }
2111
2112 shared_secret = a_ss;
2113 } else {
2114 shared_secret = (void *)vec->expected_ss;
2115 }
2116
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002117 /*
2118 * verify shared secret from which the user will derive
2119 * secret key by executing whatever hash it has chosen
2120 */
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002121 if (memcmp(shared_secret, sg_virt(req->dst),
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002122 vec->expected_ss_size)) {
2123 pr_err("alg: %s: compute shared secret test failed. Invalid output\n",
2124 alg);
2125 err = -EINVAL;
2126 }
2127
2128free_all:
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002129 kfree(a_ss);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002130 kfree(input_buf);
2131free_output:
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002132 kfree(a_public);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002133 kfree(output_buf);
2134free_req:
2135 kpp_request_free(req);
2136 return err;
2137}
2138
2139static int test_kpp(struct crypto_kpp *tfm, const char *alg,
Eric Biggersb13b1e02017-02-24 15:46:59 -08002140 const struct kpp_testvec *vecs, unsigned int tcount)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002141{
2142 int ret, i;
2143
2144 for (i = 0; i < tcount; i++) {
2145 ret = do_test_kpp(tfm, vecs++, alg);
2146 if (ret) {
2147 pr_err("alg: %s: test failed on vector %d, err=%d\n",
2148 alg, i + 1, ret);
2149 return ret;
2150 }
2151 }
2152 return 0;
2153}
2154
2155static int alg_test_kpp(const struct alg_test_desc *desc, const char *driver,
2156 u32 type, u32 mask)
2157{
2158 struct crypto_kpp *tfm;
2159 int err = 0;
2160
Herbert Xueed93e02016-11-22 20:08:31 +08002161 tfm = crypto_alloc_kpp(driver, type, mask);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002162 if (IS_ERR(tfm)) {
2163 pr_err("alg: kpp: Failed to load tfm for %s: %ld\n",
2164 driver, PTR_ERR(tfm));
2165 return PTR_ERR(tfm);
2166 }
2167 if (desc->suite.kpp.vecs)
2168 err = test_kpp(tfm, desc->alg, desc->suite.kpp.vecs,
2169 desc->suite.kpp.count);
2170
2171 crypto_free_kpp(tfm);
2172 return err;
2173}
2174
Herbert Xu50d2b6432016-06-29 19:32:20 +08002175static int test_akcipher_one(struct crypto_akcipher *tfm,
Eric Biggersb13b1e02017-02-24 15:46:59 -08002176 const struct akcipher_testvec *vecs)
Tadeusz Struk946cc462015-06-16 10:31:06 -07002177{
Herbert Xudf27b262016-05-05 16:42:49 +08002178 char *xbuf[XBUFSIZE];
Tadeusz Struk946cc462015-06-16 10:31:06 -07002179 struct akcipher_request *req;
2180 void *outbuf_enc = NULL;
2181 void *outbuf_dec = NULL;
2182 struct tcrypt_result result;
2183 unsigned int out_len_max, out_len = 0;
2184 int err = -ENOMEM;
Tadeusz Struk22287b02015-10-08 09:26:55 -07002185 struct scatterlist src, dst, src_tab[2];
Tadeusz Struk946cc462015-06-16 10:31:06 -07002186
Herbert Xudf27b262016-05-05 16:42:49 +08002187 if (testmgr_alloc_buf(xbuf))
2188 return err;
2189
Tadeusz Struk946cc462015-06-16 10:31:06 -07002190 req = akcipher_request_alloc(tfm, GFP_KERNEL);
2191 if (!req)
Herbert Xudf27b262016-05-05 16:42:49 +08002192 goto free_xbuf;
Tadeusz Struk946cc462015-06-16 10:31:06 -07002193
2194 init_completion(&result.completion);
Tadeusz Struk22287b02015-10-08 09:26:55 -07002195
2196 if (vecs->public_key_vec)
2197 err = crypto_akcipher_set_pub_key(tfm, vecs->key,
2198 vecs->key_len);
2199 else
2200 err = crypto_akcipher_set_priv_key(tfm, vecs->key,
2201 vecs->key_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002202 if (err)
2203 goto free_req;
2204
Salvatore Benedetto57763f52016-07-04 10:52:34 +01002205 err = -ENOMEM;
Tadeusz Struk22287b02015-10-08 09:26:55 -07002206 out_len_max = crypto_akcipher_maxsize(tfm);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002207 outbuf_enc = kzalloc(out_len_max, GFP_KERNEL);
2208 if (!outbuf_enc)
2209 goto free_req;
2210
Herbert Xudf27b262016-05-05 16:42:49 +08002211 if (WARN_ON(vecs->m_size > PAGE_SIZE))
2212 goto free_all;
2213
2214 memcpy(xbuf[0], vecs->m, vecs->m_size);
2215
Tadeusz Struk22287b02015-10-08 09:26:55 -07002216 sg_init_table(src_tab, 2);
Herbert Xudf27b262016-05-05 16:42:49 +08002217 sg_set_buf(&src_tab[0], xbuf[0], 8);
2218 sg_set_buf(&src_tab[1], xbuf[0] + 8, vecs->m_size - 8);
Tadeusz Struk22287b02015-10-08 09:26:55 -07002219 sg_init_one(&dst, outbuf_enc, out_len_max);
2220 akcipher_request_set_crypt(req, src_tab, &dst, vecs->m_size,
2221 out_len_max);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002222 akcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
2223 tcrypt_complete, &result);
2224
2225 /* Run RSA encrypt - c = m^e mod n;*/
2226 err = wait_async_op(&result, crypto_akcipher_encrypt(req));
2227 if (err) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002228 pr_err("alg: akcipher: encrypt test failed. err %d\n", err);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002229 goto free_all;
2230 }
Tadeusz Struk22287b02015-10-08 09:26:55 -07002231 if (req->dst_len != vecs->c_size) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002232 pr_err("alg: akcipher: encrypt test failed. Invalid output len\n");
Tadeusz Struk946cc462015-06-16 10:31:06 -07002233 err = -EINVAL;
2234 goto free_all;
2235 }
2236 /* verify that encrypted message is equal to expected */
Herbert Xudf27b262016-05-05 16:42:49 +08002237 if (memcmp(vecs->c, outbuf_enc, vecs->c_size)) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002238 pr_err("alg: akcipher: encrypt test failed. Invalid output\n");
2239 hexdump(outbuf_enc, vecs->c_size);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002240 err = -EINVAL;
2241 goto free_all;
2242 }
2243 /* Don't invoke decrypt for vectors with public key */
2244 if (vecs->public_key_vec) {
2245 err = 0;
2246 goto free_all;
2247 }
2248 outbuf_dec = kzalloc(out_len_max, GFP_KERNEL);
2249 if (!outbuf_dec) {
2250 err = -ENOMEM;
2251 goto free_all;
2252 }
Herbert Xudf27b262016-05-05 16:42:49 +08002253
2254 if (WARN_ON(vecs->c_size > PAGE_SIZE))
2255 goto free_all;
2256
2257 memcpy(xbuf[0], vecs->c, vecs->c_size);
2258
2259 sg_init_one(&src, xbuf[0], vecs->c_size);
Tadeusz Struk22287b02015-10-08 09:26:55 -07002260 sg_init_one(&dst, outbuf_dec, out_len_max);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002261 init_completion(&result.completion);
Tadeusz Struk22287b02015-10-08 09:26:55 -07002262 akcipher_request_set_crypt(req, &src, &dst, vecs->c_size, out_len_max);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002263
2264 /* Run RSA decrypt - m = c^d mod n;*/
2265 err = wait_async_op(&result, crypto_akcipher_decrypt(req));
2266 if (err) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002267 pr_err("alg: akcipher: decrypt test failed. err %d\n", err);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002268 goto free_all;
2269 }
2270 out_len = req->dst_len;
Herbert Xu50d2b6432016-06-29 19:32:20 +08002271 if (out_len < vecs->m_size) {
2272 pr_err("alg: akcipher: decrypt test failed. "
2273 "Invalid output len %u\n", out_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002274 err = -EINVAL;
2275 goto free_all;
2276 }
2277 /* verify that decrypted message is equal to the original msg */
Herbert Xu50d2b6432016-06-29 19:32:20 +08002278 if (memchr_inv(outbuf_dec, 0, out_len - vecs->m_size) ||
2279 memcmp(vecs->m, outbuf_dec + out_len - vecs->m_size,
2280 vecs->m_size)) {
2281 pr_err("alg: akcipher: decrypt test failed. Invalid output\n");
2282 hexdump(outbuf_dec, out_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002283 err = -EINVAL;
2284 }
2285free_all:
2286 kfree(outbuf_dec);
2287 kfree(outbuf_enc);
2288free_req:
2289 akcipher_request_free(req);
Herbert Xudf27b262016-05-05 16:42:49 +08002290free_xbuf:
2291 testmgr_free_buf(xbuf);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002292 return err;
2293}
2294
Herbert Xu50d2b6432016-06-29 19:32:20 +08002295static int test_akcipher(struct crypto_akcipher *tfm, const char *alg,
Eric Biggersb13b1e02017-02-24 15:46:59 -08002296 const struct akcipher_testvec *vecs,
2297 unsigned int tcount)
Tadeusz Struk946cc462015-06-16 10:31:06 -07002298{
Herbert Xu15226e42016-07-18 18:20:10 +08002299 const char *algo =
2300 crypto_tfm_alg_driver_name(crypto_akcipher_tfm(tfm));
Tadeusz Struk946cc462015-06-16 10:31:06 -07002301 int ret, i;
2302
2303 for (i = 0; i < tcount; i++) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002304 ret = test_akcipher_one(tfm, vecs++);
2305 if (!ret)
2306 continue;
2307
Herbert Xu15226e42016-07-18 18:20:10 +08002308 pr_err("alg: akcipher: test %d failed for %s, err=%d\n",
2309 i + 1, algo, ret);
Herbert Xu50d2b6432016-06-29 19:32:20 +08002310 return ret;
Tadeusz Struk946cc462015-06-16 10:31:06 -07002311 }
2312 return 0;
2313}
2314
Tadeusz Struk946cc462015-06-16 10:31:06 -07002315static int alg_test_akcipher(const struct alg_test_desc *desc,
2316 const char *driver, u32 type, u32 mask)
2317{
2318 struct crypto_akcipher *tfm;
2319 int err = 0;
2320
Herbert Xueed93e02016-11-22 20:08:31 +08002321 tfm = crypto_alloc_akcipher(driver, type, mask);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002322 if (IS_ERR(tfm)) {
2323 pr_err("alg: akcipher: Failed to load tfm for %s: %ld\n",
2324 driver, PTR_ERR(tfm));
2325 return PTR_ERR(tfm);
2326 }
2327 if (desc->suite.akcipher.vecs)
2328 err = test_akcipher(tfm, desc->alg, desc->suite.akcipher.vecs,
2329 desc->suite.akcipher.count);
2330
2331 crypto_free_akcipher(tfm);
2332 return err;
2333}
2334
Youquan, Song863b5572009-12-23 19:45:20 +08002335static int alg_test_null(const struct alg_test_desc *desc,
2336 const char *driver, u32 type, u32 mask)
2337{
2338 return 0;
2339}
2340
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002341#define __VECS(tv) { .vecs = tv, .count = ARRAY_SIZE(tv) }
2342
Herbert Xuda7f0332008-07-31 17:08:25 +08002343/* Please keep this list sorted by algorithm name. */
2344static const struct alg_test_desc alg_test_descs[] = {
2345 {
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08002346 .alg = "ansi_cprng",
2347 .test = alg_test_cprng,
2348 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002349 .cprng = __VECS(ansi_cprng_aes_tv_template)
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08002350 }
2351 }, {
Horia Geantabca4feb2014-03-14 17:46:51 +02002352 .alg = "authenc(hmac(md5),ecb(cipher_null))",
2353 .test = alg_test_aead,
Horia Geantabca4feb2014-03-14 17:46:51 +02002354 .suite = {
2355 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002356 .enc = __VECS(hmac_md5_ecb_cipher_null_enc_tv_template),
2357 .dec = __VECS(hmac_md5_ecb_cipher_null_dec_tv_template)
Horia Geantabca4feb2014-03-14 17:46:51 +02002358 }
2359 }
2360 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002361 .alg = "authenc(hmac(sha1),cbc(aes))",
Horia Geantae46e9a42012-07-03 19:16:54 +03002362 .test = alg_test_aead,
Horia Geantae46e9a42012-07-03 19:16:54 +03002363 .suite = {
2364 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002365 .enc = __VECS(hmac_sha1_aes_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302366 }
2367 }
2368 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002369 .alg = "authenc(hmac(sha1),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302370 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302371 .suite = {
2372 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002373 .enc = __VECS(hmac_sha1_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302374 }
2375 }
2376 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002377 .alg = "authenc(hmac(sha1),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302378 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002379 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302380 .suite = {
2381 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002382 .enc = __VECS(hmac_sha1_des3_ede_cbc_enc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03002383 }
2384 }
2385 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002386 .alg = "authenc(hmac(sha1),ctr(aes))",
2387 .test = alg_test_null,
2388 .fips_allowed = 1,
2389 }, {
Horia Geantabca4feb2014-03-14 17:46:51 +02002390 .alg = "authenc(hmac(sha1),ecb(cipher_null))",
2391 .test = alg_test_aead,
Horia Geantabca4feb2014-03-14 17:46:51 +02002392 .suite = {
2393 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002394 .enc = __VECS(hmac_sha1_ecb_cipher_null_enc_tv_temp),
2395 .dec = __VECS(hmac_sha1_ecb_cipher_null_dec_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302396 }
2397 }
2398 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002399 .alg = "authenc(hmac(sha1),rfc3686(ctr(aes)))",
2400 .test = alg_test_null,
2401 .fips_allowed = 1,
2402 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002403 .alg = "authenc(hmac(sha224),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302404 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302405 .suite = {
2406 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002407 .enc = __VECS(hmac_sha224_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302408 }
2409 }
2410 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002411 .alg = "authenc(hmac(sha224),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302412 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002413 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302414 .suite = {
2415 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002416 .enc = __VECS(hmac_sha224_des3_ede_cbc_enc_tv_temp)
Horia Geantabca4feb2014-03-14 17:46:51 +02002417 }
2418 }
2419 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002420 .alg = "authenc(hmac(sha256),cbc(aes))",
Horia Geantae46e9a42012-07-03 19:16:54 +03002421 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002422 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03002423 .suite = {
2424 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002425 .enc = __VECS(hmac_sha256_aes_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302426 }
2427 }
2428 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002429 .alg = "authenc(hmac(sha256),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302430 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302431 .suite = {
2432 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002433 .enc = __VECS(hmac_sha256_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302434 }
2435 }
2436 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002437 .alg = "authenc(hmac(sha256),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302438 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002439 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302440 .suite = {
2441 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002442 .enc = __VECS(hmac_sha256_des3_ede_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302443 }
2444 }
2445 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002446 .alg = "authenc(hmac(sha256),ctr(aes))",
2447 .test = alg_test_null,
2448 .fips_allowed = 1,
2449 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002450 .alg = "authenc(hmac(sha256),rfc3686(ctr(aes)))",
2451 .test = alg_test_null,
2452 .fips_allowed = 1,
2453 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002454 .alg = "authenc(hmac(sha384),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302455 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302456 .suite = {
2457 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002458 .enc = __VECS(hmac_sha384_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302459 }
2460 }
2461 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002462 .alg = "authenc(hmac(sha384),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302463 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002464 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302465 .suite = {
2466 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002467 .enc = __VECS(hmac_sha384_des3_ede_cbc_enc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03002468 }
2469 }
2470 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002471 .alg = "authenc(hmac(sha384),ctr(aes))",
2472 .test = alg_test_null,
2473 .fips_allowed = 1,
2474 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002475 .alg = "authenc(hmac(sha384),rfc3686(ctr(aes)))",
2476 .test = alg_test_null,
2477 .fips_allowed = 1,
2478 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002479 .alg = "authenc(hmac(sha512),cbc(aes))",
Marcus Meissnered1afac2016-02-05 14:23:33 +01002480 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03002481 .test = alg_test_aead,
Horia Geantae46e9a42012-07-03 19:16:54 +03002482 .suite = {
2483 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002484 .enc = __VECS(hmac_sha512_aes_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302485 }
2486 }
2487 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002488 .alg = "authenc(hmac(sha512),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302489 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302490 .suite = {
2491 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002492 .enc = __VECS(hmac_sha512_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302493 }
2494 }
2495 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002496 .alg = "authenc(hmac(sha512),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302497 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002498 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302499 .suite = {
2500 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002501 .enc = __VECS(hmac_sha512_des3_ede_cbc_enc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03002502 }
2503 }
2504 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002505 .alg = "authenc(hmac(sha512),ctr(aes))",
2506 .test = alg_test_null,
2507 .fips_allowed = 1,
2508 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002509 .alg = "authenc(hmac(sha512),rfc3686(ctr(aes)))",
2510 .test = alg_test_null,
2511 .fips_allowed = 1,
2512 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002513 .alg = "cbc(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002514 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002515 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002516 .suite = {
2517 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002518 .enc = __VECS(aes_cbc_enc_tv_template),
2519 .dec = __VECS(aes_cbc_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002520 }
2521 }
2522 }, {
2523 .alg = "cbc(anubis)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002524 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002525 .suite = {
2526 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002527 .enc = __VECS(anubis_cbc_enc_tv_template),
2528 .dec = __VECS(anubis_cbc_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002529 }
2530 }
2531 }, {
2532 .alg = "cbc(blowfish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002533 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002534 .suite = {
2535 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002536 .enc = __VECS(bf_cbc_enc_tv_template),
2537 .dec = __VECS(bf_cbc_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002538 }
2539 }
2540 }, {
2541 .alg = "cbc(camellia)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002542 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002543 .suite = {
2544 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002545 .enc = __VECS(camellia_cbc_enc_tv_template),
2546 .dec = __VECS(camellia_cbc_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002547 }
2548 }
2549 }, {
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002550 .alg = "cbc(cast5)",
2551 .test = alg_test_skcipher,
2552 .suite = {
2553 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002554 .enc = __VECS(cast5_cbc_enc_tv_template),
2555 .dec = __VECS(cast5_cbc_dec_tv_template)
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002556 }
2557 }
2558 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002559 .alg = "cbc(cast6)",
2560 .test = alg_test_skcipher,
2561 .suite = {
2562 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002563 .enc = __VECS(cast6_cbc_enc_tv_template),
2564 .dec = __VECS(cast6_cbc_dec_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002565 }
2566 }
2567 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002568 .alg = "cbc(des)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002569 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002570 .suite = {
2571 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002572 .enc = __VECS(des_cbc_enc_tv_template),
2573 .dec = __VECS(des_cbc_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002574 }
2575 }
2576 }, {
2577 .alg = "cbc(des3_ede)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002578 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002579 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002580 .suite = {
2581 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002582 .enc = __VECS(des3_ede_cbc_enc_tv_template),
2583 .dec = __VECS(des3_ede_cbc_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002584 }
2585 }
2586 }, {
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002587 .alg = "cbc(serpent)",
2588 .test = alg_test_skcipher,
2589 .suite = {
2590 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002591 .enc = __VECS(serpent_cbc_enc_tv_template),
2592 .dec = __VECS(serpent_cbc_dec_tv_template)
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002593 }
2594 }
2595 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002596 .alg = "cbc(twofish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002597 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002598 .suite = {
2599 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002600 .enc = __VECS(tf_cbc_enc_tv_template),
2601 .dec = __VECS(tf_cbc_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002602 }
2603 }
2604 }, {
Ard Biesheuvel092acf02017-02-03 14:49:35 +00002605 .alg = "cbcmac(aes)",
2606 .fips_allowed = 1,
2607 .test = alg_test_hash,
2608 .suite = {
2609 .hash = __VECS(aes_cbcmac_tv_template)
2610 }
2611 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002612 .alg = "ccm(aes)",
2613 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002614 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002615 .suite = {
2616 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002617 .enc = __VECS(aes_ccm_enc_tv_template),
2618 .dec = __VECS(aes_ccm_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002619 }
2620 }
2621 }, {
Martin Willi3590ebf2015-06-01 13:43:57 +02002622 .alg = "chacha20",
2623 .test = alg_test_skcipher,
2624 .suite = {
2625 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002626 .enc = __VECS(chacha20_enc_tv_template),
2627 .dec = __VECS(chacha20_enc_tv_template),
Martin Willi3590ebf2015-06-01 13:43:57 +02002628 }
2629 }
2630 }, {
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002631 .alg = "cmac(aes)",
Stephan Mueller8f183752015-08-19 08:42:07 +02002632 .fips_allowed = 1,
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002633 .test = alg_test_hash,
2634 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002635 .hash = __VECS(aes_cmac128_tv_template)
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002636 }
2637 }, {
2638 .alg = "cmac(des3_ede)",
Stephan Mueller8f183752015-08-19 08:42:07 +02002639 .fips_allowed = 1,
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002640 .test = alg_test_hash,
2641 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002642 .hash = __VECS(des3_ede_cmac64_tv_template)
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002643 }
2644 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03002645 .alg = "compress_null",
2646 .test = alg_test_null,
2647 }, {
Ard Biesheuvelebb34722015-05-04 11:00:17 +02002648 .alg = "crc32",
2649 .test = alg_test_hash,
2650 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002651 .hash = __VECS(crc32_tv_template)
Ard Biesheuvelebb34722015-05-04 11:00:17 +02002652 }
2653 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002654 .alg = "crc32c",
Herbert Xu8e3ee852008-11-07 14:58:52 +08002655 .test = alg_test_crc32c,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002656 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002657 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002658 .hash = __VECS(crc32c_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002659 }
2660 }, {
Herbert Xu684115212013-09-07 12:56:26 +10002661 .alg = "crct10dif",
2662 .test = alg_test_hash,
2663 .fips_allowed = 1,
2664 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002665 .hash = __VECS(crct10dif_tv_template)
Herbert Xu684115212013-09-07 12:56:26 +10002666 }
2667 }, {
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08002668 .alg = "ctr(aes)",
2669 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002670 .fips_allowed = 1,
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08002671 .suite = {
2672 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002673 .enc = __VECS(aes_ctr_enc_tv_template),
2674 .dec = __VECS(aes_ctr_dec_tv_template)
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08002675 }
2676 }
2677 }, {
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03002678 .alg = "ctr(blowfish)",
2679 .test = alg_test_skcipher,
2680 .suite = {
2681 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002682 .enc = __VECS(bf_ctr_enc_tv_template),
2683 .dec = __VECS(bf_ctr_dec_tv_template)
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03002684 }
2685 }
2686 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02002687 .alg = "ctr(camellia)",
2688 .test = alg_test_skcipher,
2689 .suite = {
2690 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002691 .enc = __VECS(camellia_ctr_enc_tv_template),
2692 .dec = __VECS(camellia_ctr_dec_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02002693 }
2694 }
2695 }, {
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002696 .alg = "ctr(cast5)",
2697 .test = alg_test_skcipher,
2698 .suite = {
2699 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002700 .enc = __VECS(cast5_ctr_enc_tv_template),
2701 .dec = __VECS(cast5_ctr_dec_tv_template)
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002702 }
2703 }
2704 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002705 .alg = "ctr(cast6)",
2706 .test = alg_test_skcipher,
2707 .suite = {
2708 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002709 .enc = __VECS(cast6_ctr_enc_tv_template),
2710 .dec = __VECS(cast6_ctr_dec_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002711 }
2712 }
2713 }, {
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03002714 .alg = "ctr(des)",
2715 .test = alg_test_skcipher,
2716 .suite = {
2717 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002718 .enc = __VECS(des_ctr_enc_tv_template),
2719 .dec = __VECS(des_ctr_dec_tv_template)
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03002720 }
2721 }
2722 }, {
Jussi Kivilinnae080b172012-10-20 14:53:12 +03002723 .alg = "ctr(des3_ede)",
2724 .test = alg_test_skcipher,
Marcelo Cerri0d8da102017-03-20 17:28:05 -03002725 .fips_allowed = 1,
Jussi Kivilinnae080b172012-10-20 14:53:12 +03002726 .suite = {
2727 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002728 .enc = __VECS(des3_ede_ctr_enc_tv_template),
2729 .dec = __VECS(des3_ede_ctr_dec_tv_template)
Jussi Kivilinnae080b172012-10-20 14:53:12 +03002730 }
2731 }
2732 }, {
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002733 .alg = "ctr(serpent)",
2734 .test = alg_test_skcipher,
2735 .suite = {
2736 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002737 .enc = __VECS(serpent_ctr_enc_tv_template),
2738 .dec = __VECS(serpent_ctr_dec_tv_template)
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002739 }
2740 }
2741 }, {
Jussi Kivilinna573da622011-10-10 23:03:12 +03002742 .alg = "ctr(twofish)",
2743 .test = alg_test_skcipher,
2744 .suite = {
2745 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002746 .enc = __VECS(tf_ctr_enc_tv_template),
2747 .dec = __VECS(tf_ctr_dec_tv_template)
Jussi Kivilinna573da622011-10-10 23:03:12 +03002748 }
2749 }
2750 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002751 .alg = "cts(cbc(aes))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002752 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002753 .suite = {
2754 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002755 .enc = __VECS(cts_mode_enc_tv_template),
2756 .dec = __VECS(cts_mode_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002757 }
2758 }
2759 }, {
2760 .alg = "deflate",
2761 .test = alg_test_comp,
Milan Broz08189042012-12-06 17:16:28 +08002762 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002763 .suite = {
2764 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002765 .comp = __VECS(deflate_comp_tv_template),
2766 .decomp = __VECS(deflate_decomp_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002767 }
2768 }
2769 }, {
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002770 .alg = "dh",
2771 .test = alg_test_kpp,
2772 .fips_allowed = 1,
2773 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002774 .kpp = __VECS(dh_tv_template)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002775 }
2776 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03002777 .alg = "digest_null",
2778 .test = alg_test_null,
2779 }, {
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002780 .alg = "drbg_nopr_ctr_aes128",
2781 .test = alg_test_drbg,
2782 .fips_allowed = 1,
2783 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002784 .drbg = __VECS(drbg_nopr_ctr_aes128_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002785 }
2786 }, {
2787 .alg = "drbg_nopr_ctr_aes192",
2788 .test = alg_test_drbg,
2789 .fips_allowed = 1,
2790 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002791 .drbg = __VECS(drbg_nopr_ctr_aes192_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002792 }
2793 }, {
2794 .alg = "drbg_nopr_ctr_aes256",
2795 .test = alg_test_drbg,
2796 .fips_allowed = 1,
2797 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002798 .drbg = __VECS(drbg_nopr_ctr_aes256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002799 }
2800 }, {
2801 /*
2802 * There is no need to specifically test the DRBG with every
2803 * backend cipher -- covered by drbg_nopr_hmac_sha256 test
2804 */
2805 .alg = "drbg_nopr_hmac_sha1",
2806 .fips_allowed = 1,
2807 .test = alg_test_null,
2808 }, {
2809 .alg = "drbg_nopr_hmac_sha256",
2810 .test = alg_test_drbg,
2811 .fips_allowed = 1,
2812 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002813 .drbg = __VECS(drbg_nopr_hmac_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002814 }
2815 }, {
2816 /* covered by drbg_nopr_hmac_sha256 test */
2817 .alg = "drbg_nopr_hmac_sha384",
2818 .fips_allowed = 1,
2819 .test = alg_test_null,
2820 }, {
2821 .alg = "drbg_nopr_hmac_sha512",
2822 .test = alg_test_null,
2823 .fips_allowed = 1,
2824 }, {
2825 .alg = "drbg_nopr_sha1",
2826 .fips_allowed = 1,
2827 .test = alg_test_null,
2828 }, {
2829 .alg = "drbg_nopr_sha256",
2830 .test = alg_test_drbg,
2831 .fips_allowed = 1,
2832 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002833 .drbg = __VECS(drbg_nopr_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002834 }
2835 }, {
2836 /* covered by drbg_nopr_sha256 test */
2837 .alg = "drbg_nopr_sha384",
2838 .fips_allowed = 1,
2839 .test = alg_test_null,
2840 }, {
2841 .alg = "drbg_nopr_sha512",
2842 .fips_allowed = 1,
2843 .test = alg_test_null,
2844 }, {
2845 .alg = "drbg_pr_ctr_aes128",
2846 .test = alg_test_drbg,
2847 .fips_allowed = 1,
2848 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002849 .drbg = __VECS(drbg_pr_ctr_aes128_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002850 }
2851 }, {
2852 /* covered by drbg_pr_ctr_aes128 test */
2853 .alg = "drbg_pr_ctr_aes192",
2854 .fips_allowed = 1,
2855 .test = alg_test_null,
2856 }, {
2857 .alg = "drbg_pr_ctr_aes256",
2858 .fips_allowed = 1,
2859 .test = alg_test_null,
2860 }, {
2861 .alg = "drbg_pr_hmac_sha1",
2862 .fips_allowed = 1,
2863 .test = alg_test_null,
2864 }, {
2865 .alg = "drbg_pr_hmac_sha256",
2866 .test = alg_test_drbg,
2867 .fips_allowed = 1,
2868 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002869 .drbg = __VECS(drbg_pr_hmac_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002870 }
2871 }, {
2872 /* covered by drbg_pr_hmac_sha256 test */
2873 .alg = "drbg_pr_hmac_sha384",
2874 .fips_allowed = 1,
2875 .test = alg_test_null,
2876 }, {
2877 .alg = "drbg_pr_hmac_sha512",
2878 .test = alg_test_null,
2879 .fips_allowed = 1,
2880 }, {
2881 .alg = "drbg_pr_sha1",
2882 .fips_allowed = 1,
2883 .test = alg_test_null,
2884 }, {
2885 .alg = "drbg_pr_sha256",
2886 .test = alg_test_drbg,
2887 .fips_allowed = 1,
2888 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002889 .drbg = __VECS(drbg_pr_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002890 }
2891 }, {
2892 /* covered by drbg_pr_sha256 test */
2893 .alg = "drbg_pr_sha384",
2894 .fips_allowed = 1,
2895 .test = alg_test_null,
2896 }, {
2897 .alg = "drbg_pr_sha512",
2898 .fips_allowed = 1,
2899 .test = alg_test_null,
2900 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002901 .alg = "ecb(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002902 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002903 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002904 .suite = {
2905 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002906 .enc = __VECS(aes_enc_tv_template),
2907 .dec = __VECS(aes_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002908 }
2909 }
2910 }, {
2911 .alg = "ecb(anubis)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002912 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002913 .suite = {
2914 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002915 .enc = __VECS(anubis_enc_tv_template),
2916 .dec = __VECS(anubis_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002917 }
2918 }
2919 }, {
2920 .alg = "ecb(arc4)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002921 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002922 .suite = {
2923 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002924 .enc = __VECS(arc4_enc_tv_template),
2925 .dec = __VECS(arc4_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002926 }
2927 }
2928 }, {
2929 .alg = "ecb(blowfish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002930 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002931 .suite = {
2932 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002933 .enc = __VECS(bf_enc_tv_template),
2934 .dec = __VECS(bf_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002935 }
2936 }
2937 }, {
2938 .alg = "ecb(camellia)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002939 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002940 .suite = {
2941 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002942 .enc = __VECS(camellia_enc_tv_template),
2943 .dec = __VECS(camellia_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002944 }
2945 }
2946 }, {
2947 .alg = "ecb(cast5)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002948 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002949 .suite = {
2950 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002951 .enc = __VECS(cast5_enc_tv_template),
2952 .dec = __VECS(cast5_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002953 }
2954 }
2955 }, {
2956 .alg = "ecb(cast6)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002957 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002958 .suite = {
2959 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002960 .enc = __VECS(cast6_enc_tv_template),
2961 .dec = __VECS(cast6_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002962 }
2963 }
2964 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03002965 .alg = "ecb(cipher_null)",
2966 .test = alg_test_null,
Milan Broz6175ca22017-04-21 13:03:06 +02002967 .fips_allowed = 1,
Jussi Kivilinnae4483702013-04-07 16:43:56 +03002968 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002969 .alg = "ecb(des)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002970 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002971 .suite = {
2972 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002973 .enc = __VECS(des_enc_tv_template),
2974 .dec = __VECS(des_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002975 }
2976 }
2977 }, {
2978 .alg = "ecb(des3_ede)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002979 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002980 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002981 .suite = {
2982 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002983 .enc = __VECS(des3_ede_enc_tv_template),
2984 .dec = __VECS(des3_ede_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002985 }
2986 }
2987 }, {
Jussi Kivilinna66e5bd02013-01-19 13:31:36 +02002988 .alg = "ecb(fcrypt)",
2989 .test = alg_test_skcipher,
2990 .suite = {
2991 .cipher = {
2992 .enc = {
2993 .vecs = fcrypt_pcbc_enc_tv_template,
2994 .count = 1
2995 },
2996 .dec = {
2997 .vecs = fcrypt_pcbc_dec_tv_template,
2998 .count = 1
2999 }
3000 }
3001 }
3002 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003003 .alg = "ecb(khazad)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003004 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003005 .suite = {
3006 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003007 .enc = __VECS(khazad_enc_tv_template),
3008 .dec = __VECS(khazad_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003009 }
3010 }
3011 }, {
3012 .alg = "ecb(seed)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003013 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003014 .suite = {
3015 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003016 .enc = __VECS(seed_enc_tv_template),
3017 .dec = __VECS(seed_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003018 }
3019 }
3020 }, {
3021 .alg = "ecb(serpent)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003022 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003023 .suite = {
3024 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003025 .enc = __VECS(serpent_enc_tv_template),
3026 .dec = __VECS(serpent_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003027 }
3028 }
3029 }, {
3030 .alg = "ecb(tea)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003031 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003032 .suite = {
3033 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003034 .enc = __VECS(tea_enc_tv_template),
3035 .dec = __VECS(tea_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003036 }
3037 }
3038 }, {
3039 .alg = "ecb(tnepres)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003040 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003041 .suite = {
3042 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003043 .enc = __VECS(tnepres_enc_tv_template),
3044 .dec = __VECS(tnepres_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003045 }
3046 }
3047 }, {
3048 .alg = "ecb(twofish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003049 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003050 .suite = {
3051 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003052 .enc = __VECS(tf_enc_tv_template),
3053 .dec = __VECS(tf_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003054 }
3055 }
3056 }, {
3057 .alg = "ecb(xeta)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003058 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003059 .suite = {
3060 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003061 .enc = __VECS(xeta_enc_tv_template),
3062 .dec = __VECS(xeta_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003063 }
3064 }
3065 }, {
3066 .alg = "ecb(xtea)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003067 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003068 .suite = {
3069 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003070 .enc = __VECS(xtea_enc_tv_template),
3071 .dec = __VECS(xtea_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003072 }
3073 }
3074 }, {
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +01003075 .alg = "ecdh",
3076 .test = alg_test_kpp,
3077 .fips_allowed = 1,
3078 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003079 .kpp = __VECS(ecdh_tv_template)
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +01003080 }
3081 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003082 .alg = "gcm(aes)",
3083 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003084 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003085 .suite = {
3086 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003087 .enc = __VECS(aes_gcm_enc_tv_template),
3088 .dec = __VECS(aes_gcm_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003089 }
3090 }
3091 }, {
Youquan, Song507069c2009-11-23 20:23:04 +08003092 .alg = "ghash",
3093 .test = alg_test_hash,
Jarod Wilson18c0ebd2011-01-29 15:14:35 +11003094 .fips_allowed = 1,
Youquan, Song507069c2009-11-23 20:23:04 +08003095 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003096 .hash = __VECS(ghash_tv_template)
Youquan, Song507069c2009-11-23 20:23:04 +08003097 }
3098 }, {
Sonic Zhanga482b082012-05-25 17:54:13 +08003099 .alg = "hmac(crc32)",
3100 .test = alg_test_hash,
3101 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003102 .hash = __VECS(bfin_crc_tv_template)
Sonic Zhanga482b082012-05-25 17:54:13 +08003103 }
3104 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003105 .alg = "hmac(md5)",
3106 .test = alg_test_hash,
3107 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003108 .hash = __VECS(hmac_md5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003109 }
3110 }, {
3111 .alg = "hmac(rmd128)",
3112 .test = alg_test_hash,
3113 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003114 .hash = __VECS(hmac_rmd128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003115 }
3116 }, {
3117 .alg = "hmac(rmd160)",
3118 .test = alg_test_hash,
3119 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003120 .hash = __VECS(hmac_rmd160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003121 }
3122 }, {
3123 .alg = "hmac(sha1)",
3124 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003125 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003126 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003127 .hash = __VECS(hmac_sha1_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003128 }
3129 }, {
3130 .alg = "hmac(sha224)",
3131 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003132 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003133 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003134 .hash = __VECS(hmac_sha224_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003135 }
3136 }, {
3137 .alg = "hmac(sha256)",
3138 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003139 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003140 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003141 .hash = __VECS(hmac_sha256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003142 }
3143 }, {
raveendra padasalagi98eca722016-07-01 11:16:54 +05303144 .alg = "hmac(sha3-224)",
3145 .test = alg_test_hash,
3146 .fips_allowed = 1,
3147 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003148 .hash = __VECS(hmac_sha3_224_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303149 }
3150 }, {
3151 .alg = "hmac(sha3-256)",
3152 .test = alg_test_hash,
3153 .fips_allowed = 1,
3154 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003155 .hash = __VECS(hmac_sha3_256_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303156 }
3157 }, {
3158 .alg = "hmac(sha3-384)",
3159 .test = alg_test_hash,
3160 .fips_allowed = 1,
3161 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003162 .hash = __VECS(hmac_sha3_384_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303163 }
3164 }, {
3165 .alg = "hmac(sha3-512)",
3166 .test = alg_test_hash,
3167 .fips_allowed = 1,
3168 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003169 .hash = __VECS(hmac_sha3_512_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303170 }
3171 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003172 .alg = "hmac(sha384)",
3173 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003174 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003175 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003176 .hash = __VECS(hmac_sha384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003177 }
3178 }, {
3179 .alg = "hmac(sha512)",
3180 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003181 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003182 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003183 .hash = __VECS(hmac_sha512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003184 }
3185 }, {
Stephan Muellerbb5530e2015-05-25 15:10:20 +02003186 .alg = "jitterentropy_rng",
3187 .fips_allowed = 1,
3188 .test = alg_test_null,
3189 }, {
Stephan Mueller35351982015-09-21 20:59:56 +02003190 .alg = "kw(aes)",
3191 .test = alg_test_skcipher,
3192 .fips_allowed = 1,
3193 .suite = {
3194 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003195 .enc = __VECS(aes_kw_enc_tv_template),
3196 .dec = __VECS(aes_kw_dec_tv_template)
Stephan Mueller35351982015-09-21 20:59:56 +02003197 }
3198 }
3199 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003200 .alg = "lrw(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003201 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003202 .suite = {
3203 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003204 .enc = __VECS(aes_lrw_enc_tv_template),
3205 .dec = __VECS(aes_lrw_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003206 }
3207 }
3208 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02003209 .alg = "lrw(camellia)",
3210 .test = alg_test_skcipher,
3211 .suite = {
3212 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003213 .enc = __VECS(camellia_lrw_enc_tv_template),
3214 .dec = __VECS(camellia_lrw_dec_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02003215 }
3216 }
3217 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003218 .alg = "lrw(cast6)",
3219 .test = alg_test_skcipher,
3220 .suite = {
3221 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003222 .enc = __VECS(cast6_lrw_enc_tv_template),
3223 .dec = __VECS(cast6_lrw_dec_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003224 }
3225 }
3226 }, {
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03003227 .alg = "lrw(serpent)",
3228 .test = alg_test_skcipher,
3229 .suite = {
3230 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003231 .enc = __VECS(serpent_lrw_enc_tv_template),
3232 .dec = __VECS(serpent_lrw_dec_tv_template)
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03003233 }
3234 }
3235 }, {
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03003236 .alg = "lrw(twofish)",
3237 .test = alg_test_skcipher,
3238 .suite = {
3239 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003240 .enc = __VECS(tf_lrw_enc_tv_template),
3241 .dec = __VECS(tf_lrw_dec_tv_template)
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03003242 }
3243 }
3244 }, {
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02003245 .alg = "lz4",
3246 .test = alg_test_comp,
3247 .fips_allowed = 1,
3248 .suite = {
3249 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003250 .comp = __VECS(lz4_comp_tv_template),
3251 .decomp = __VECS(lz4_decomp_tv_template)
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02003252 }
3253 }
3254 }, {
3255 .alg = "lz4hc",
3256 .test = alg_test_comp,
3257 .fips_allowed = 1,
3258 .suite = {
3259 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003260 .comp = __VECS(lz4hc_comp_tv_template),
3261 .decomp = __VECS(lz4hc_decomp_tv_template)
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02003262 }
3263 }
3264 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003265 .alg = "lzo",
3266 .test = alg_test_comp,
Milan Broz08189042012-12-06 17:16:28 +08003267 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003268 .suite = {
3269 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003270 .comp = __VECS(lzo_comp_tv_template),
3271 .decomp = __VECS(lzo_decomp_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003272 }
3273 }
3274 }, {
3275 .alg = "md4",
3276 .test = alg_test_hash,
3277 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003278 .hash = __VECS(md4_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003279 }
3280 }, {
3281 .alg = "md5",
3282 .test = alg_test_hash,
3283 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003284 .hash = __VECS(md5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003285 }
3286 }, {
3287 .alg = "michael_mic",
3288 .test = alg_test_hash,
3289 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003290 .hash = __VECS(michael_mic_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003291 }
3292 }, {
Puneet Saxenaba0e14a2011-05-04 15:04:10 +10003293 .alg = "ofb(aes)",
3294 .test = alg_test_skcipher,
3295 .fips_allowed = 1,
3296 .suite = {
3297 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003298 .enc = __VECS(aes_ofb_enc_tv_template),
3299 .dec = __VECS(aes_ofb_dec_tv_template)
Puneet Saxenaba0e14a2011-05-04 15:04:10 +10003300 }
3301 }
3302 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003303 .alg = "pcbc(fcrypt)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003304 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003305 .suite = {
3306 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003307 .enc = __VECS(fcrypt_pcbc_enc_tv_template),
3308 .dec = __VECS(fcrypt_pcbc_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003309 }
3310 }
3311 }, {
Martin Willieee9dc62015-06-01 13:43:59 +02003312 .alg = "poly1305",
3313 .test = alg_test_hash,
3314 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003315 .hash = __VECS(poly1305_tv_template)
Martin Willieee9dc62015-06-01 13:43:59 +02003316 }
3317 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003318 .alg = "rfc3686(ctr(aes))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003319 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003320 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003321 .suite = {
3322 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003323 .enc = __VECS(aes_ctr_rfc3686_enc_tv_template),
3324 .dec = __VECS(aes_ctr_rfc3686_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003325 }
3326 }
3327 }, {
Herbert Xu3f31a742015-07-09 07:17:34 +08003328 .alg = "rfc4106(gcm(aes))",
Adrian Hoban69435b92010-11-04 15:02:04 -04003329 .test = alg_test_aead,
Jarod Wilsondb71f292015-01-23 12:42:15 -05003330 .fips_allowed = 1,
Adrian Hoban69435b92010-11-04 15:02:04 -04003331 .suite = {
3332 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003333 .enc = __VECS(aes_gcm_rfc4106_enc_tv_template),
3334 .dec = __VECS(aes_gcm_rfc4106_dec_tv_template)
Adrian Hoban69435b92010-11-04 15:02:04 -04003335 }
3336 }
3337 }, {
Herbert Xu544c4362015-07-14 16:53:22 +08003338 .alg = "rfc4309(ccm(aes))",
Jarod Wilson5d667322009-05-04 19:23:40 +08003339 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003340 .fips_allowed = 1,
Jarod Wilson5d667322009-05-04 19:23:40 +08003341 .suite = {
3342 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003343 .enc = __VECS(aes_ccm_rfc4309_enc_tv_template),
3344 .dec = __VECS(aes_ccm_rfc4309_dec_tv_template)
Jarod Wilson5d667322009-05-04 19:23:40 +08003345 }
3346 }
3347 }, {
Herbert Xubb687452015-06-16 13:54:24 +08003348 .alg = "rfc4543(gcm(aes))",
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03003349 .test = alg_test_aead,
3350 .suite = {
3351 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003352 .enc = __VECS(aes_gcm_rfc4543_enc_tv_template),
3353 .dec = __VECS(aes_gcm_rfc4543_dec_tv_template),
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03003354 }
3355 }
3356 }, {
Martin Williaf2b76b2015-06-01 13:44:01 +02003357 .alg = "rfc7539(chacha20,poly1305)",
3358 .test = alg_test_aead,
3359 .suite = {
3360 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003361 .enc = __VECS(rfc7539_enc_tv_template),
3362 .dec = __VECS(rfc7539_dec_tv_template),
Martin Williaf2b76b2015-06-01 13:44:01 +02003363 }
3364 }
3365 }, {
Martin Willi59007582015-06-01 13:44:03 +02003366 .alg = "rfc7539esp(chacha20,poly1305)",
3367 .test = alg_test_aead,
3368 .suite = {
3369 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003370 .enc = __VECS(rfc7539esp_enc_tv_template),
3371 .dec = __VECS(rfc7539esp_dec_tv_template),
Martin Willi59007582015-06-01 13:44:03 +02003372 }
3373 }
3374 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003375 .alg = "rmd128",
3376 .test = alg_test_hash,
3377 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003378 .hash = __VECS(rmd128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003379 }
3380 }, {
3381 .alg = "rmd160",
3382 .test = alg_test_hash,
3383 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003384 .hash = __VECS(rmd160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003385 }
3386 }, {
3387 .alg = "rmd256",
3388 .test = alg_test_hash,
3389 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003390 .hash = __VECS(rmd256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003391 }
3392 }, {
3393 .alg = "rmd320",
3394 .test = alg_test_hash,
3395 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003396 .hash = __VECS(rmd320_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003397 }
3398 }, {
Tadeusz Struk946cc462015-06-16 10:31:06 -07003399 .alg = "rsa",
3400 .test = alg_test_akcipher,
3401 .fips_allowed = 1,
3402 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003403 .akcipher = __VECS(rsa_tv_template)
Tadeusz Struk946cc462015-06-16 10:31:06 -07003404 }
3405 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003406 .alg = "salsa20",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003407 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003408 .suite = {
3409 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003410 .enc = __VECS(salsa20_stream_enc_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003411 }
3412 }
3413 }, {
3414 .alg = "sha1",
3415 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003416 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003417 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003418 .hash = __VECS(sha1_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003419 }
3420 }, {
3421 .alg = "sha224",
3422 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003423 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003424 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003425 .hash = __VECS(sha224_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003426 }
3427 }, {
3428 .alg = "sha256",
3429 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003430 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003431 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003432 .hash = __VECS(sha256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003433 }
3434 }, {
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303435 .alg = "sha3-224",
3436 .test = alg_test_hash,
3437 .fips_allowed = 1,
3438 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003439 .hash = __VECS(sha3_224_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303440 }
3441 }, {
3442 .alg = "sha3-256",
3443 .test = alg_test_hash,
3444 .fips_allowed = 1,
3445 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003446 .hash = __VECS(sha3_256_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303447 }
3448 }, {
3449 .alg = "sha3-384",
3450 .test = alg_test_hash,
3451 .fips_allowed = 1,
3452 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003453 .hash = __VECS(sha3_384_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303454 }
3455 }, {
3456 .alg = "sha3-512",
3457 .test = alg_test_hash,
3458 .fips_allowed = 1,
3459 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003460 .hash = __VECS(sha3_512_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303461 }
3462 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003463 .alg = "sha384",
3464 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003465 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003466 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003467 .hash = __VECS(sha384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003468 }
3469 }, {
3470 .alg = "sha512",
3471 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003472 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003473 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003474 .hash = __VECS(sha512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003475 }
3476 }, {
3477 .alg = "tgr128",
3478 .test = alg_test_hash,
3479 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003480 .hash = __VECS(tgr128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003481 }
3482 }, {
3483 .alg = "tgr160",
3484 .test = alg_test_hash,
3485 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003486 .hash = __VECS(tgr160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003487 }
3488 }, {
3489 .alg = "tgr192",
3490 .test = alg_test_hash,
3491 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003492 .hash = __VECS(tgr192_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003493 }
3494 }, {
Shane Wangf1939f72009-09-02 20:05:22 +10003495 .alg = "vmac(aes)",
3496 .test = alg_test_hash,
3497 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003498 .hash = __VECS(aes_vmac128_tv_template)
Shane Wangf1939f72009-09-02 20:05:22 +10003499 }
3500 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003501 .alg = "wp256",
3502 .test = alg_test_hash,
3503 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003504 .hash = __VECS(wp256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003505 }
3506 }, {
3507 .alg = "wp384",
3508 .test = alg_test_hash,
3509 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003510 .hash = __VECS(wp384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003511 }
3512 }, {
3513 .alg = "wp512",
3514 .test = alg_test_hash,
3515 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003516 .hash = __VECS(wp512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003517 }
3518 }, {
3519 .alg = "xcbc(aes)",
3520 .test = alg_test_hash,
3521 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003522 .hash = __VECS(aes_xcbc128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003523 }
3524 }, {
3525 .alg = "xts(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003526 .test = alg_test_skcipher,
Jarod Wilson2918aa82011-01-29 15:14:01 +11003527 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003528 .suite = {
3529 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003530 .enc = __VECS(aes_xts_enc_tv_template),
3531 .dec = __VECS(aes_xts_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003532 }
3533 }
Geert Uytterhoeven0c01aed2009-03-04 15:42:15 +08003534 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02003535 .alg = "xts(camellia)",
3536 .test = alg_test_skcipher,
3537 .suite = {
3538 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003539 .enc = __VECS(camellia_xts_enc_tv_template),
3540 .dec = __VECS(camellia_xts_dec_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02003541 }
3542 }
3543 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003544 .alg = "xts(cast6)",
3545 .test = alg_test_skcipher,
3546 .suite = {
3547 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003548 .enc = __VECS(cast6_xts_enc_tv_template),
3549 .dec = __VECS(cast6_xts_dec_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003550 }
3551 }
3552 }, {
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03003553 .alg = "xts(serpent)",
3554 .test = alg_test_skcipher,
3555 .suite = {
3556 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003557 .enc = __VECS(serpent_xts_enc_tv_template),
3558 .dec = __VECS(serpent_xts_dec_tv_template)
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03003559 }
3560 }
3561 }, {
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03003562 .alg = "xts(twofish)",
3563 .test = alg_test_skcipher,
3564 .suite = {
3565 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003566 .enc = __VECS(tf_xts_enc_tv_template),
3567 .dec = __VECS(tf_xts_dec_tv_template)
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03003568 }
3569 }
Giovanni Cabiddua368f432017-04-21 21:54:30 +01003570 }, {
3571 .alg = "zlib-deflate",
3572 .test = alg_test_comp,
3573 .fips_allowed = 1,
3574 .suite = {
3575 .comp = {
3576 .comp = __VECS(zlib_deflate_comp_tv_template),
3577 .decomp = __VECS(zlib_deflate_decomp_tv_template)
3578 }
3579 }
Herbert Xuda7f0332008-07-31 17:08:25 +08003580 }
3581};
3582
Jussi Kivilinna57147582013-06-13 17:37:40 +03003583static bool alg_test_descs_checked;
3584
3585static void alg_test_descs_check_order(void)
3586{
3587 int i;
3588
3589 /* only check once */
3590 if (alg_test_descs_checked)
3591 return;
3592
3593 alg_test_descs_checked = true;
3594
3595 for (i = 1; i < ARRAY_SIZE(alg_test_descs); i++) {
3596 int diff = strcmp(alg_test_descs[i - 1].alg,
3597 alg_test_descs[i].alg);
3598
3599 if (WARN_ON(diff > 0)) {
3600 pr_warn("testmgr: alg_test_descs entries in wrong order: '%s' before '%s'\n",
3601 alg_test_descs[i - 1].alg,
3602 alg_test_descs[i].alg);
3603 }
3604
3605 if (WARN_ON(diff == 0)) {
3606 pr_warn("testmgr: duplicate alg_test_descs entry: '%s'\n",
3607 alg_test_descs[i].alg);
3608 }
3609 }
3610}
3611
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003612static int alg_find_test(const char *alg)
Herbert Xuda7f0332008-07-31 17:08:25 +08003613{
3614 int start = 0;
3615 int end = ARRAY_SIZE(alg_test_descs);
3616
3617 while (start < end) {
3618 int i = (start + end) / 2;
3619 int diff = strcmp(alg_test_descs[i].alg, alg);
3620
3621 if (diff > 0) {
3622 end = i;
3623 continue;
3624 }
3625
3626 if (diff < 0) {
3627 start = i + 1;
3628 continue;
3629 }
3630
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003631 return i;
Herbert Xuda7f0332008-07-31 17:08:25 +08003632 }
3633
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003634 return -1;
3635}
3636
3637int alg_test(const char *driver, const char *alg, u32 type, u32 mask)
3638{
3639 int i;
Herbert Xua68f6612009-07-02 16:32:12 +08003640 int j;
Neil Hormand12d6b62008-10-12 20:36:51 +08003641 int rc;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003642
Richard W.M. Jones9e5c9fe2016-05-03 10:00:17 +01003643 if (!fips_enabled && notests) {
3644 printk_once(KERN_INFO "alg: self-tests disabled\n");
3645 return 0;
3646 }
3647
Jussi Kivilinna57147582013-06-13 17:37:40 +03003648 alg_test_descs_check_order();
3649
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003650 if ((type & CRYPTO_ALG_TYPE_MASK) == CRYPTO_ALG_TYPE_CIPHER) {
3651 char nalg[CRYPTO_MAX_ALG_NAME];
3652
3653 if (snprintf(nalg, sizeof(nalg), "ecb(%s)", alg) >=
3654 sizeof(nalg))
3655 return -ENAMETOOLONG;
3656
3657 i = alg_find_test(nalg);
3658 if (i < 0)
3659 goto notest;
3660
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10003661 if (fips_enabled && !alg_test_descs[i].fips_allowed)
3662 goto non_fips_alg;
3663
Jarod Wilson941fb322009-05-04 19:49:23 +08003664 rc = alg_test_cipher(alg_test_descs + i, driver, type, mask);
3665 goto test_done;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003666 }
3667
3668 i = alg_find_test(alg);
Herbert Xua68f6612009-07-02 16:32:12 +08003669 j = alg_find_test(driver);
3670 if (i < 0 && j < 0)
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003671 goto notest;
3672
Herbert Xua68f6612009-07-02 16:32:12 +08003673 if (fips_enabled && ((i >= 0 && !alg_test_descs[i].fips_allowed) ||
3674 (j >= 0 && !alg_test_descs[j].fips_allowed)))
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10003675 goto non_fips_alg;
3676
Herbert Xua68f6612009-07-02 16:32:12 +08003677 rc = 0;
3678 if (i >= 0)
3679 rc |= alg_test_descs[i].test(alg_test_descs + i, driver,
3680 type, mask);
Cristian Stoica032c8ca2013-07-18 18:57:07 +03003681 if (j >= 0 && j != i)
Herbert Xua68f6612009-07-02 16:32:12 +08003682 rc |= alg_test_descs[j].test(alg_test_descs + j, driver,
3683 type, mask);
3684
Jarod Wilson941fb322009-05-04 19:49:23 +08003685test_done:
Neil Hormand12d6b62008-10-12 20:36:51 +08003686 if (fips_enabled && rc)
3687 panic("%s: %s alg self test failed in fips mode!\n", driver, alg);
3688
Jarod Wilson29ecd4a2009-05-04 19:51:17 +08003689 if (fips_enabled && !rc)
Masanari Iida3e8cffd2014-10-07 00:37:54 +09003690 pr_info("alg: self-tests for %s (%s) passed\n", driver, alg);
Jarod Wilson29ecd4a2009-05-04 19:51:17 +08003691
Neil Hormand12d6b62008-10-12 20:36:51 +08003692 return rc;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003693
3694notest:
Herbert Xuda7f0332008-07-31 17:08:25 +08003695 printk(KERN_INFO "alg: No test for %s (%s)\n", alg, driver);
3696 return 0;
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10003697non_fips_alg:
3698 return -EINVAL;
Herbert Xuda7f0332008-07-31 17:08:25 +08003699}
Alexander Shishkin0b767f92010-06-03 20:53:43 +10003700
Herbert Xu326a6342010-08-06 09:40:28 +08003701#endif /* CONFIG_CRYPTO_MANAGER_DISABLE_TESTS */
Alexander Shishkin0b767f92010-06-03 20:53:43 +10003702
Herbert Xuda7f0332008-07-31 17:08:25 +08003703EXPORT_SYMBOL_GPL(alg_test);