blob: 32087a7acbfb7a5e586f0195b42802cb9de0324b [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) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300221 pr_err("alg: hash: Failed to alloc state for %s\n", algo);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800222 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) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300228 pr_err("alg: hash: Failed to export() for %s\n", algo);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800229 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) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300347 pr_err("alg: hash: init failed on test %d "
David S. Millera8f1a052010-05-19 14:12:03 +1000348 "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) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300353 pr_err("alg: hash: update failed on test %d "
David S. Millera8f1a052010-05-19 14:12:03 +1000354 "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) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300359 pr_err("alg: hash: final failed on test %d "
David S. Millera8f1a052010-05-19 14:12:03 +1000360 "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) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300491 pr_err("alg: hash: init failed on test %d for %s: ret=%d\n",
Wang, Rui Y018ba952016-02-03 18:26:57 +0800492 j, algo, -ret);
493 goto out;
494 }
495 ret = wait_async_op(&tresult, crypto_ahash_update(req));
496 if (ret) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300497 pr_err("alg: hash: update failed on test %d for %s: ret=%d\n",
Wang, Rui Y018ba952016-02-03 18:26:57 +0800498 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) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300508 pr_err("alg: hash: partial update failed on test %d for %s: ret=%d\n",
Wang, Rui Y018ba952016-02-03 18:26:57 +0800509 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) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300516 pr_err("alg: hash: final failed on test %d for %s: ret=%d\n",
Wang, Rui Y018ba952016-02-03 18:26:57 +0800517 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 Xu8a525fcd2015-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 Xu8a525fcd2015-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 Xu8a525fcd2015-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 Xu8a525fcd2015-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 Xu8a525fcd2015-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 Xu8a525fcd2015-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 Xu8a525fcd2015-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 Xu8a525fcd2015-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 Xu8a525fcd2015-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 Xu8a525fcd2015-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 Xu8a525fcd2015-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 Xu8a525fcd2015-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 Xu8a525fcd2015-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
Stephan Mueller12071072017-06-12 23:27:51 +02002225 err = wait_async_op(&result, vecs->siggen_sigver_test ?
2226 /* Run asymmetric signature generation */
2227 crypto_akcipher_sign(req) :
2228 /* Run asymmetric encrypt */
2229 crypto_akcipher_encrypt(req));
Tadeusz Struk946cc462015-06-16 10:31:06 -07002230 if (err) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002231 pr_err("alg: akcipher: encrypt test failed. err %d\n", err);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002232 goto free_all;
2233 }
Tadeusz Struk22287b02015-10-08 09:26:55 -07002234 if (req->dst_len != vecs->c_size) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002235 pr_err("alg: akcipher: encrypt test failed. Invalid output len\n");
Tadeusz Struk946cc462015-06-16 10:31:06 -07002236 err = -EINVAL;
2237 goto free_all;
2238 }
2239 /* verify that encrypted message is equal to expected */
Herbert Xudf27b262016-05-05 16:42:49 +08002240 if (memcmp(vecs->c, outbuf_enc, vecs->c_size)) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002241 pr_err("alg: akcipher: encrypt test failed. Invalid output\n");
2242 hexdump(outbuf_enc, vecs->c_size);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002243 err = -EINVAL;
2244 goto free_all;
2245 }
2246 /* Don't invoke decrypt for vectors with public key */
2247 if (vecs->public_key_vec) {
2248 err = 0;
2249 goto free_all;
2250 }
2251 outbuf_dec = kzalloc(out_len_max, GFP_KERNEL);
2252 if (!outbuf_dec) {
2253 err = -ENOMEM;
2254 goto free_all;
2255 }
Herbert Xudf27b262016-05-05 16:42:49 +08002256
2257 if (WARN_ON(vecs->c_size > PAGE_SIZE))
2258 goto free_all;
2259
2260 memcpy(xbuf[0], vecs->c, vecs->c_size);
2261
2262 sg_init_one(&src, xbuf[0], vecs->c_size);
Tadeusz Struk22287b02015-10-08 09:26:55 -07002263 sg_init_one(&dst, outbuf_dec, out_len_max);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002264 init_completion(&result.completion);
Tadeusz Struk22287b02015-10-08 09:26:55 -07002265 akcipher_request_set_crypt(req, &src, &dst, vecs->c_size, out_len_max);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002266
Stephan Mueller12071072017-06-12 23:27:51 +02002267 err = wait_async_op(&result, vecs->siggen_sigver_test ?
2268 /* Run asymmetric signature verification */
2269 crypto_akcipher_verify(req) :
2270 /* Run asymmetric decrypt */
2271 crypto_akcipher_decrypt(req));
Tadeusz Struk946cc462015-06-16 10:31:06 -07002272 if (err) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002273 pr_err("alg: akcipher: decrypt test failed. err %d\n", err);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002274 goto free_all;
2275 }
2276 out_len = req->dst_len;
Herbert Xu50d2b6432016-06-29 19:32:20 +08002277 if (out_len < vecs->m_size) {
2278 pr_err("alg: akcipher: decrypt test failed. "
2279 "Invalid output len %u\n", out_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002280 err = -EINVAL;
2281 goto free_all;
2282 }
2283 /* verify that decrypted message is equal to the original msg */
Herbert Xu50d2b6432016-06-29 19:32:20 +08002284 if (memchr_inv(outbuf_dec, 0, out_len - vecs->m_size) ||
2285 memcmp(vecs->m, outbuf_dec + out_len - vecs->m_size,
2286 vecs->m_size)) {
2287 pr_err("alg: akcipher: decrypt test failed. Invalid output\n");
2288 hexdump(outbuf_dec, out_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002289 err = -EINVAL;
2290 }
2291free_all:
2292 kfree(outbuf_dec);
2293 kfree(outbuf_enc);
2294free_req:
2295 akcipher_request_free(req);
Herbert Xudf27b262016-05-05 16:42:49 +08002296free_xbuf:
2297 testmgr_free_buf(xbuf);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002298 return err;
2299}
2300
Herbert Xu50d2b6432016-06-29 19:32:20 +08002301static int test_akcipher(struct crypto_akcipher *tfm, const char *alg,
Eric Biggersb13b1e02017-02-24 15:46:59 -08002302 const struct akcipher_testvec *vecs,
2303 unsigned int tcount)
Tadeusz Struk946cc462015-06-16 10:31:06 -07002304{
Herbert Xu15226e42016-07-18 18:20:10 +08002305 const char *algo =
2306 crypto_tfm_alg_driver_name(crypto_akcipher_tfm(tfm));
Tadeusz Struk946cc462015-06-16 10:31:06 -07002307 int ret, i;
2308
2309 for (i = 0; i < tcount; i++) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002310 ret = test_akcipher_one(tfm, vecs++);
2311 if (!ret)
2312 continue;
2313
Herbert Xu15226e42016-07-18 18:20:10 +08002314 pr_err("alg: akcipher: test %d failed for %s, err=%d\n",
2315 i + 1, algo, ret);
Herbert Xu50d2b6432016-06-29 19:32:20 +08002316 return ret;
Tadeusz Struk946cc462015-06-16 10:31:06 -07002317 }
2318 return 0;
2319}
2320
Tadeusz Struk946cc462015-06-16 10:31:06 -07002321static int alg_test_akcipher(const struct alg_test_desc *desc,
2322 const char *driver, u32 type, u32 mask)
2323{
2324 struct crypto_akcipher *tfm;
2325 int err = 0;
2326
Herbert Xueed93e02016-11-22 20:08:31 +08002327 tfm = crypto_alloc_akcipher(driver, type, mask);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002328 if (IS_ERR(tfm)) {
2329 pr_err("alg: akcipher: Failed to load tfm for %s: %ld\n",
2330 driver, PTR_ERR(tfm));
2331 return PTR_ERR(tfm);
2332 }
2333 if (desc->suite.akcipher.vecs)
2334 err = test_akcipher(tfm, desc->alg, desc->suite.akcipher.vecs,
2335 desc->suite.akcipher.count);
2336
2337 crypto_free_akcipher(tfm);
2338 return err;
2339}
2340
Youquan, Song863b5572009-12-23 19:45:20 +08002341static int alg_test_null(const struct alg_test_desc *desc,
2342 const char *driver, u32 type, u32 mask)
2343{
2344 return 0;
2345}
2346
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002347#define __VECS(tv) { .vecs = tv, .count = ARRAY_SIZE(tv) }
2348
Herbert Xuda7f0332008-07-31 17:08:25 +08002349/* Please keep this list sorted by algorithm name. */
2350static const struct alg_test_desc alg_test_descs[] = {
2351 {
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08002352 .alg = "ansi_cprng",
2353 .test = alg_test_cprng,
2354 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002355 .cprng = __VECS(ansi_cprng_aes_tv_template)
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08002356 }
2357 }, {
Horia Geantabca4feb2014-03-14 17:46:51 +02002358 .alg = "authenc(hmac(md5),ecb(cipher_null))",
2359 .test = alg_test_aead,
Horia Geantabca4feb2014-03-14 17:46:51 +02002360 .suite = {
2361 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002362 .enc = __VECS(hmac_md5_ecb_cipher_null_enc_tv_template),
2363 .dec = __VECS(hmac_md5_ecb_cipher_null_dec_tv_template)
Horia Geantabca4feb2014-03-14 17:46:51 +02002364 }
2365 }
2366 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002367 .alg = "authenc(hmac(sha1),cbc(aes))",
Horia Geantae46e9a42012-07-03 19:16:54 +03002368 .test = alg_test_aead,
Horia Geantae46e9a42012-07-03 19:16:54 +03002369 .suite = {
2370 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002371 .enc = __VECS(hmac_sha1_aes_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302372 }
2373 }
2374 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002375 .alg = "authenc(hmac(sha1),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302376 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302377 .suite = {
2378 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002379 .enc = __VECS(hmac_sha1_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302380 }
2381 }
2382 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002383 .alg = "authenc(hmac(sha1),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302384 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002385 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302386 .suite = {
2387 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002388 .enc = __VECS(hmac_sha1_des3_ede_cbc_enc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03002389 }
2390 }
2391 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002392 .alg = "authenc(hmac(sha1),ctr(aes))",
2393 .test = alg_test_null,
2394 .fips_allowed = 1,
2395 }, {
Horia Geantabca4feb2014-03-14 17:46:51 +02002396 .alg = "authenc(hmac(sha1),ecb(cipher_null))",
2397 .test = alg_test_aead,
Horia Geantabca4feb2014-03-14 17:46:51 +02002398 .suite = {
2399 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002400 .enc = __VECS(hmac_sha1_ecb_cipher_null_enc_tv_temp),
2401 .dec = __VECS(hmac_sha1_ecb_cipher_null_dec_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302402 }
2403 }
2404 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002405 .alg = "authenc(hmac(sha1),rfc3686(ctr(aes)))",
2406 .test = alg_test_null,
2407 .fips_allowed = 1,
2408 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002409 .alg = "authenc(hmac(sha224),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302410 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302411 .suite = {
2412 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002413 .enc = __VECS(hmac_sha224_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302414 }
2415 }
2416 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002417 .alg = "authenc(hmac(sha224),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302418 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002419 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302420 .suite = {
2421 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002422 .enc = __VECS(hmac_sha224_des3_ede_cbc_enc_tv_temp)
Horia Geantabca4feb2014-03-14 17:46:51 +02002423 }
2424 }
2425 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002426 .alg = "authenc(hmac(sha256),cbc(aes))",
Horia Geantae46e9a42012-07-03 19:16:54 +03002427 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002428 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03002429 .suite = {
2430 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002431 .enc = __VECS(hmac_sha256_aes_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302432 }
2433 }
2434 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002435 .alg = "authenc(hmac(sha256),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302436 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302437 .suite = {
2438 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002439 .enc = __VECS(hmac_sha256_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302440 }
2441 }
2442 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002443 .alg = "authenc(hmac(sha256),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302444 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002445 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302446 .suite = {
2447 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002448 .enc = __VECS(hmac_sha256_des3_ede_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302449 }
2450 }
2451 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002452 .alg = "authenc(hmac(sha256),ctr(aes))",
2453 .test = alg_test_null,
2454 .fips_allowed = 1,
2455 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002456 .alg = "authenc(hmac(sha256),rfc3686(ctr(aes)))",
2457 .test = alg_test_null,
2458 .fips_allowed = 1,
2459 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002460 .alg = "authenc(hmac(sha384),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302461 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302462 .suite = {
2463 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002464 .enc = __VECS(hmac_sha384_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302465 }
2466 }
2467 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002468 .alg = "authenc(hmac(sha384),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302469 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002470 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302471 .suite = {
2472 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002473 .enc = __VECS(hmac_sha384_des3_ede_cbc_enc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03002474 }
2475 }
2476 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002477 .alg = "authenc(hmac(sha384),ctr(aes))",
2478 .test = alg_test_null,
2479 .fips_allowed = 1,
2480 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002481 .alg = "authenc(hmac(sha384),rfc3686(ctr(aes)))",
2482 .test = alg_test_null,
2483 .fips_allowed = 1,
2484 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002485 .alg = "authenc(hmac(sha512),cbc(aes))",
Marcus Meissnered1afac2016-02-05 14:23:33 +01002486 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03002487 .test = alg_test_aead,
Horia Geantae46e9a42012-07-03 19:16:54 +03002488 .suite = {
2489 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002490 .enc = __VECS(hmac_sha512_aes_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302491 }
2492 }
2493 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002494 .alg = "authenc(hmac(sha512),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302495 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302496 .suite = {
2497 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002498 .enc = __VECS(hmac_sha512_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302499 }
2500 }
2501 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002502 .alg = "authenc(hmac(sha512),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302503 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002504 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302505 .suite = {
2506 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002507 .enc = __VECS(hmac_sha512_des3_ede_cbc_enc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03002508 }
2509 }
2510 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002511 .alg = "authenc(hmac(sha512),ctr(aes))",
2512 .test = alg_test_null,
2513 .fips_allowed = 1,
2514 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002515 .alg = "authenc(hmac(sha512),rfc3686(ctr(aes)))",
2516 .test = alg_test_null,
2517 .fips_allowed = 1,
2518 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002519 .alg = "cbc(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002520 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002521 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002522 .suite = {
2523 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002524 .enc = __VECS(aes_cbc_enc_tv_template),
2525 .dec = __VECS(aes_cbc_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002526 }
2527 }
2528 }, {
2529 .alg = "cbc(anubis)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002530 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002531 .suite = {
2532 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002533 .enc = __VECS(anubis_cbc_enc_tv_template),
2534 .dec = __VECS(anubis_cbc_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002535 }
2536 }
2537 }, {
2538 .alg = "cbc(blowfish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002539 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002540 .suite = {
2541 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002542 .enc = __VECS(bf_cbc_enc_tv_template),
2543 .dec = __VECS(bf_cbc_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002544 }
2545 }
2546 }, {
2547 .alg = "cbc(camellia)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002548 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002549 .suite = {
2550 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002551 .enc = __VECS(camellia_cbc_enc_tv_template),
2552 .dec = __VECS(camellia_cbc_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002553 }
2554 }
2555 }, {
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002556 .alg = "cbc(cast5)",
2557 .test = alg_test_skcipher,
2558 .suite = {
2559 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002560 .enc = __VECS(cast5_cbc_enc_tv_template),
2561 .dec = __VECS(cast5_cbc_dec_tv_template)
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002562 }
2563 }
2564 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002565 .alg = "cbc(cast6)",
2566 .test = alg_test_skcipher,
2567 .suite = {
2568 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002569 .enc = __VECS(cast6_cbc_enc_tv_template),
2570 .dec = __VECS(cast6_cbc_dec_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002571 }
2572 }
2573 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002574 .alg = "cbc(des)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002575 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002576 .suite = {
2577 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002578 .enc = __VECS(des_cbc_enc_tv_template),
2579 .dec = __VECS(des_cbc_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002580 }
2581 }
2582 }, {
2583 .alg = "cbc(des3_ede)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002584 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002585 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002586 .suite = {
2587 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002588 .enc = __VECS(des3_ede_cbc_enc_tv_template),
2589 .dec = __VECS(des3_ede_cbc_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002590 }
2591 }
2592 }, {
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002593 .alg = "cbc(serpent)",
2594 .test = alg_test_skcipher,
2595 .suite = {
2596 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002597 .enc = __VECS(serpent_cbc_enc_tv_template),
2598 .dec = __VECS(serpent_cbc_dec_tv_template)
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002599 }
2600 }
2601 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002602 .alg = "cbc(twofish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002603 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002604 .suite = {
2605 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002606 .enc = __VECS(tf_cbc_enc_tv_template),
2607 .dec = __VECS(tf_cbc_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002608 }
2609 }
2610 }, {
Ard Biesheuvel092acf02017-02-03 14:49:35 +00002611 .alg = "cbcmac(aes)",
2612 .fips_allowed = 1,
2613 .test = alg_test_hash,
2614 .suite = {
2615 .hash = __VECS(aes_cbcmac_tv_template)
2616 }
2617 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002618 .alg = "ccm(aes)",
2619 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002620 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002621 .suite = {
2622 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002623 .enc = __VECS(aes_ccm_enc_tv_template),
2624 .dec = __VECS(aes_ccm_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002625 }
2626 }
2627 }, {
Martin Willi3590ebf2015-06-01 13:43:57 +02002628 .alg = "chacha20",
2629 .test = alg_test_skcipher,
2630 .suite = {
2631 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002632 .enc = __VECS(chacha20_enc_tv_template),
2633 .dec = __VECS(chacha20_enc_tv_template),
Martin Willi3590ebf2015-06-01 13:43:57 +02002634 }
2635 }
2636 }, {
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002637 .alg = "cmac(aes)",
Stephan Mueller8f183752015-08-19 08:42:07 +02002638 .fips_allowed = 1,
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002639 .test = alg_test_hash,
2640 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002641 .hash = __VECS(aes_cmac128_tv_template)
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002642 }
2643 }, {
2644 .alg = "cmac(des3_ede)",
Stephan Mueller8f183752015-08-19 08:42:07 +02002645 .fips_allowed = 1,
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002646 .test = alg_test_hash,
2647 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002648 .hash = __VECS(des3_ede_cmac64_tv_template)
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002649 }
2650 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03002651 .alg = "compress_null",
2652 .test = alg_test_null,
2653 }, {
Ard Biesheuvelebb34722015-05-04 11:00:17 +02002654 .alg = "crc32",
2655 .test = alg_test_hash,
2656 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002657 .hash = __VECS(crc32_tv_template)
Ard Biesheuvelebb34722015-05-04 11:00:17 +02002658 }
2659 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002660 .alg = "crc32c",
Herbert Xu8e3ee852008-11-07 14:58:52 +08002661 .test = alg_test_crc32c,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002662 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002663 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002664 .hash = __VECS(crc32c_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002665 }
2666 }, {
Herbert Xu684115212013-09-07 12:56:26 +10002667 .alg = "crct10dif",
2668 .test = alg_test_hash,
2669 .fips_allowed = 1,
2670 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002671 .hash = __VECS(crct10dif_tv_template)
Herbert Xu684115212013-09-07 12:56:26 +10002672 }
2673 }, {
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08002674 .alg = "ctr(aes)",
2675 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002676 .fips_allowed = 1,
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08002677 .suite = {
2678 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002679 .enc = __VECS(aes_ctr_enc_tv_template),
2680 .dec = __VECS(aes_ctr_dec_tv_template)
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08002681 }
2682 }
2683 }, {
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03002684 .alg = "ctr(blowfish)",
2685 .test = alg_test_skcipher,
2686 .suite = {
2687 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002688 .enc = __VECS(bf_ctr_enc_tv_template),
2689 .dec = __VECS(bf_ctr_dec_tv_template)
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03002690 }
2691 }
2692 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02002693 .alg = "ctr(camellia)",
2694 .test = alg_test_skcipher,
2695 .suite = {
2696 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002697 .enc = __VECS(camellia_ctr_enc_tv_template),
2698 .dec = __VECS(camellia_ctr_dec_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02002699 }
2700 }
2701 }, {
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002702 .alg = "ctr(cast5)",
2703 .test = alg_test_skcipher,
2704 .suite = {
2705 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002706 .enc = __VECS(cast5_ctr_enc_tv_template),
2707 .dec = __VECS(cast5_ctr_dec_tv_template)
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002708 }
2709 }
2710 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002711 .alg = "ctr(cast6)",
2712 .test = alg_test_skcipher,
2713 .suite = {
2714 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002715 .enc = __VECS(cast6_ctr_enc_tv_template),
2716 .dec = __VECS(cast6_ctr_dec_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002717 }
2718 }
2719 }, {
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03002720 .alg = "ctr(des)",
2721 .test = alg_test_skcipher,
2722 .suite = {
2723 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002724 .enc = __VECS(des_ctr_enc_tv_template),
2725 .dec = __VECS(des_ctr_dec_tv_template)
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03002726 }
2727 }
2728 }, {
Jussi Kivilinnae080b172012-10-20 14:53:12 +03002729 .alg = "ctr(des3_ede)",
2730 .test = alg_test_skcipher,
Marcelo Cerri0d8da102017-03-20 17:28:05 -03002731 .fips_allowed = 1,
Jussi Kivilinnae080b172012-10-20 14:53:12 +03002732 .suite = {
2733 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002734 .enc = __VECS(des3_ede_ctr_enc_tv_template),
2735 .dec = __VECS(des3_ede_ctr_dec_tv_template)
Jussi Kivilinnae080b172012-10-20 14:53:12 +03002736 }
2737 }
2738 }, {
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002739 .alg = "ctr(serpent)",
2740 .test = alg_test_skcipher,
2741 .suite = {
2742 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002743 .enc = __VECS(serpent_ctr_enc_tv_template),
2744 .dec = __VECS(serpent_ctr_dec_tv_template)
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002745 }
2746 }
2747 }, {
Jussi Kivilinna573da622011-10-10 23:03:12 +03002748 .alg = "ctr(twofish)",
2749 .test = alg_test_skcipher,
2750 .suite = {
2751 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002752 .enc = __VECS(tf_ctr_enc_tv_template),
2753 .dec = __VECS(tf_ctr_dec_tv_template)
Jussi Kivilinna573da622011-10-10 23:03:12 +03002754 }
2755 }
2756 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002757 .alg = "cts(cbc(aes))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002758 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002759 .suite = {
2760 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002761 .enc = __VECS(cts_mode_enc_tv_template),
2762 .dec = __VECS(cts_mode_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002763 }
2764 }
2765 }, {
2766 .alg = "deflate",
2767 .test = alg_test_comp,
Milan Broz08189042012-12-06 17:16:28 +08002768 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002769 .suite = {
2770 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002771 .comp = __VECS(deflate_comp_tv_template),
2772 .decomp = __VECS(deflate_decomp_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002773 }
2774 }
2775 }, {
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002776 .alg = "dh",
2777 .test = alg_test_kpp,
2778 .fips_allowed = 1,
2779 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002780 .kpp = __VECS(dh_tv_template)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002781 }
2782 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03002783 .alg = "digest_null",
2784 .test = alg_test_null,
2785 }, {
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002786 .alg = "drbg_nopr_ctr_aes128",
2787 .test = alg_test_drbg,
2788 .fips_allowed = 1,
2789 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002790 .drbg = __VECS(drbg_nopr_ctr_aes128_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002791 }
2792 }, {
2793 .alg = "drbg_nopr_ctr_aes192",
2794 .test = alg_test_drbg,
2795 .fips_allowed = 1,
2796 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002797 .drbg = __VECS(drbg_nopr_ctr_aes192_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002798 }
2799 }, {
2800 .alg = "drbg_nopr_ctr_aes256",
2801 .test = alg_test_drbg,
2802 .fips_allowed = 1,
2803 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002804 .drbg = __VECS(drbg_nopr_ctr_aes256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002805 }
2806 }, {
2807 /*
2808 * There is no need to specifically test the DRBG with every
2809 * backend cipher -- covered by drbg_nopr_hmac_sha256 test
2810 */
2811 .alg = "drbg_nopr_hmac_sha1",
2812 .fips_allowed = 1,
2813 .test = alg_test_null,
2814 }, {
2815 .alg = "drbg_nopr_hmac_sha256",
2816 .test = alg_test_drbg,
2817 .fips_allowed = 1,
2818 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002819 .drbg = __VECS(drbg_nopr_hmac_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002820 }
2821 }, {
2822 /* covered by drbg_nopr_hmac_sha256 test */
2823 .alg = "drbg_nopr_hmac_sha384",
2824 .fips_allowed = 1,
2825 .test = alg_test_null,
2826 }, {
2827 .alg = "drbg_nopr_hmac_sha512",
2828 .test = alg_test_null,
2829 .fips_allowed = 1,
2830 }, {
2831 .alg = "drbg_nopr_sha1",
2832 .fips_allowed = 1,
2833 .test = alg_test_null,
2834 }, {
2835 .alg = "drbg_nopr_sha256",
2836 .test = alg_test_drbg,
2837 .fips_allowed = 1,
2838 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002839 .drbg = __VECS(drbg_nopr_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002840 }
2841 }, {
2842 /* covered by drbg_nopr_sha256 test */
2843 .alg = "drbg_nopr_sha384",
2844 .fips_allowed = 1,
2845 .test = alg_test_null,
2846 }, {
2847 .alg = "drbg_nopr_sha512",
2848 .fips_allowed = 1,
2849 .test = alg_test_null,
2850 }, {
2851 .alg = "drbg_pr_ctr_aes128",
2852 .test = alg_test_drbg,
2853 .fips_allowed = 1,
2854 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002855 .drbg = __VECS(drbg_pr_ctr_aes128_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002856 }
2857 }, {
2858 /* covered by drbg_pr_ctr_aes128 test */
2859 .alg = "drbg_pr_ctr_aes192",
2860 .fips_allowed = 1,
2861 .test = alg_test_null,
2862 }, {
2863 .alg = "drbg_pr_ctr_aes256",
2864 .fips_allowed = 1,
2865 .test = alg_test_null,
2866 }, {
2867 .alg = "drbg_pr_hmac_sha1",
2868 .fips_allowed = 1,
2869 .test = alg_test_null,
2870 }, {
2871 .alg = "drbg_pr_hmac_sha256",
2872 .test = alg_test_drbg,
2873 .fips_allowed = 1,
2874 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002875 .drbg = __VECS(drbg_pr_hmac_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002876 }
2877 }, {
2878 /* covered by drbg_pr_hmac_sha256 test */
2879 .alg = "drbg_pr_hmac_sha384",
2880 .fips_allowed = 1,
2881 .test = alg_test_null,
2882 }, {
2883 .alg = "drbg_pr_hmac_sha512",
2884 .test = alg_test_null,
2885 .fips_allowed = 1,
2886 }, {
2887 .alg = "drbg_pr_sha1",
2888 .fips_allowed = 1,
2889 .test = alg_test_null,
2890 }, {
2891 .alg = "drbg_pr_sha256",
2892 .test = alg_test_drbg,
2893 .fips_allowed = 1,
2894 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002895 .drbg = __VECS(drbg_pr_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002896 }
2897 }, {
2898 /* covered by drbg_pr_sha256 test */
2899 .alg = "drbg_pr_sha384",
2900 .fips_allowed = 1,
2901 .test = alg_test_null,
2902 }, {
2903 .alg = "drbg_pr_sha512",
2904 .fips_allowed = 1,
2905 .test = alg_test_null,
2906 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002907 .alg = "ecb(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002908 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002909 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002910 .suite = {
2911 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002912 .enc = __VECS(aes_enc_tv_template),
2913 .dec = __VECS(aes_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002914 }
2915 }
2916 }, {
2917 .alg = "ecb(anubis)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002918 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002919 .suite = {
2920 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002921 .enc = __VECS(anubis_enc_tv_template),
2922 .dec = __VECS(anubis_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002923 }
2924 }
2925 }, {
2926 .alg = "ecb(arc4)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002927 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002928 .suite = {
2929 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002930 .enc = __VECS(arc4_enc_tv_template),
2931 .dec = __VECS(arc4_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002932 }
2933 }
2934 }, {
2935 .alg = "ecb(blowfish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002936 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002937 .suite = {
2938 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002939 .enc = __VECS(bf_enc_tv_template),
2940 .dec = __VECS(bf_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002941 }
2942 }
2943 }, {
2944 .alg = "ecb(camellia)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002945 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002946 .suite = {
2947 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002948 .enc = __VECS(camellia_enc_tv_template),
2949 .dec = __VECS(camellia_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002950 }
2951 }
2952 }, {
2953 .alg = "ecb(cast5)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002954 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002955 .suite = {
2956 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002957 .enc = __VECS(cast5_enc_tv_template),
2958 .dec = __VECS(cast5_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002959 }
2960 }
2961 }, {
2962 .alg = "ecb(cast6)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002963 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002964 .suite = {
2965 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002966 .enc = __VECS(cast6_enc_tv_template),
2967 .dec = __VECS(cast6_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002968 }
2969 }
2970 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03002971 .alg = "ecb(cipher_null)",
2972 .test = alg_test_null,
Milan Broz6175ca22017-04-21 13:03:06 +02002973 .fips_allowed = 1,
Jussi Kivilinnae4483702013-04-07 16:43:56 +03002974 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002975 .alg = "ecb(des)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002976 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002977 .suite = {
2978 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002979 .enc = __VECS(des_enc_tv_template),
2980 .dec = __VECS(des_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002981 }
2982 }
2983 }, {
2984 .alg = "ecb(des3_ede)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002985 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002986 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002987 .suite = {
2988 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002989 .enc = __VECS(des3_ede_enc_tv_template),
2990 .dec = __VECS(des3_ede_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002991 }
2992 }
2993 }, {
Jussi Kivilinna66e5bd02013-01-19 13:31:36 +02002994 .alg = "ecb(fcrypt)",
2995 .test = alg_test_skcipher,
2996 .suite = {
2997 .cipher = {
2998 .enc = {
2999 .vecs = fcrypt_pcbc_enc_tv_template,
3000 .count = 1
3001 },
3002 .dec = {
3003 .vecs = fcrypt_pcbc_dec_tv_template,
3004 .count = 1
3005 }
3006 }
3007 }
3008 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003009 .alg = "ecb(khazad)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003010 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003011 .suite = {
3012 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003013 .enc = __VECS(khazad_enc_tv_template),
3014 .dec = __VECS(khazad_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003015 }
3016 }
3017 }, {
3018 .alg = "ecb(seed)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003019 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003020 .suite = {
3021 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003022 .enc = __VECS(seed_enc_tv_template),
3023 .dec = __VECS(seed_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003024 }
3025 }
3026 }, {
3027 .alg = "ecb(serpent)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003028 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003029 .suite = {
3030 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003031 .enc = __VECS(serpent_enc_tv_template),
3032 .dec = __VECS(serpent_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003033 }
3034 }
3035 }, {
3036 .alg = "ecb(tea)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003037 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003038 .suite = {
3039 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003040 .enc = __VECS(tea_enc_tv_template),
3041 .dec = __VECS(tea_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003042 }
3043 }
3044 }, {
3045 .alg = "ecb(tnepres)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003046 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003047 .suite = {
3048 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003049 .enc = __VECS(tnepres_enc_tv_template),
3050 .dec = __VECS(tnepres_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003051 }
3052 }
3053 }, {
3054 .alg = "ecb(twofish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003055 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003056 .suite = {
3057 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003058 .enc = __VECS(tf_enc_tv_template),
3059 .dec = __VECS(tf_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003060 }
3061 }
3062 }, {
3063 .alg = "ecb(xeta)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003064 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003065 .suite = {
3066 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003067 .enc = __VECS(xeta_enc_tv_template),
3068 .dec = __VECS(xeta_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003069 }
3070 }
3071 }, {
3072 .alg = "ecb(xtea)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003073 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003074 .suite = {
3075 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003076 .enc = __VECS(xtea_enc_tv_template),
3077 .dec = __VECS(xtea_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003078 }
3079 }
3080 }, {
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +01003081 .alg = "ecdh",
3082 .test = alg_test_kpp,
3083 .fips_allowed = 1,
3084 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003085 .kpp = __VECS(ecdh_tv_template)
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +01003086 }
3087 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003088 .alg = "gcm(aes)",
3089 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003090 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003091 .suite = {
3092 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003093 .enc = __VECS(aes_gcm_enc_tv_template),
3094 .dec = __VECS(aes_gcm_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003095 }
3096 }
3097 }, {
Youquan, Song507069c2009-11-23 20:23:04 +08003098 .alg = "ghash",
3099 .test = alg_test_hash,
Jarod Wilson18c0ebd2011-01-29 15:14:35 +11003100 .fips_allowed = 1,
Youquan, Song507069c2009-11-23 20:23:04 +08003101 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003102 .hash = __VECS(ghash_tv_template)
Youquan, Song507069c2009-11-23 20:23:04 +08003103 }
3104 }, {
Sonic Zhanga482b082012-05-25 17:54:13 +08003105 .alg = "hmac(crc32)",
3106 .test = alg_test_hash,
3107 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003108 .hash = __VECS(bfin_crc_tv_template)
Sonic Zhanga482b082012-05-25 17:54:13 +08003109 }
3110 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003111 .alg = "hmac(md5)",
3112 .test = alg_test_hash,
3113 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003114 .hash = __VECS(hmac_md5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003115 }
3116 }, {
3117 .alg = "hmac(rmd128)",
3118 .test = alg_test_hash,
3119 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003120 .hash = __VECS(hmac_rmd128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003121 }
3122 }, {
3123 .alg = "hmac(rmd160)",
3124 .test = alg_test_hash,
3125 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003126 .hash = __VECS(hmac_rmd160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003127 }
3128 }, {
3129 .alg = "hmac(sha1)",
3130 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003131 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003132 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003133 .hash = __VECS(hmac_sha1_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003134 }
3135 }, {
3136 .alg = "hmac(sha224)",
3137 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003138 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003139 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003140 .hash = __VECS(hmac_sha224_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003141 }
3142 }, {
3143 .alg = "hmac(sha256)",
3144 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003145 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003146 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003147 .hash = __VECS(hmac_sha256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003148 }
3149 }, {
raveendra padasalagi98eca722016-07-01 11:16:54 +05303150 .alg = "hmac(sha3-224)",
3151 .test = alg_test_hash,
3152 .fips_allowed = 1,
3153 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003154 .hash = __VECS(hmac_sha3_224_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303155 }
3156 }, {
3157 .alg = "hmac(sha3-256)",
3158 .test = alg_test_hash,
3159 .fips_allowed = 1,
3160 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003161 .hash = __VECS(hmac_sha3_256_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303162 }
3163 }, {
3164 .alg = "hmac(sha3-384)",
3165 .test = alg_test_hash,
3166 .fips_allowed = 1,
3167 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003168 .hash = __VECS(hmac_sha3_384_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303169 }
3170 }, {
3171 .alg = "hmac(sha3-512)",
3172 .test = alg_test_hash,
3173 .fips_allowed = 1,
3174 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003175 .hash = __VECS(hmac_sha3_512_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303176 }
3177 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003178 .alg = "hmac(sha384)",
3179 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003180 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003181 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003182 .hash = __VECS(hmac_sha384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003183 }
3184 }, {
3185 .alg = "hmac(sha512)",
3186 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003187 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003188 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003189 .hash = __VECS(hmac_sha512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003190 }
3191 }, {
Stephan Muellerbb5530e2015-05-25 15:10:20 +02003192 .alg = "jitterentropy_rng",
3193 .fips_allowed = 1,
3194 .test = alg_test_null,
3195 }, {
Stephan Mueller35351982015-09-21 20:59:56 +02003196 .alg = "kw(aes)",
3197 .test = alg_test_skcipher,
3198 .fips_allowed = 1,
3199 .suite = {
3200 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003201 .enc = __VECS(aes_kw_enc_tv_template),
3202 .dec = __VECS(aes_kw_dec_tv_template)
Stephan Mueller35351982015-09-21 20:59:56 +02003203 }
3204 }
3205 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003206 .alg = "lrw(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003207 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003208 .suite = {
3209 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003210 .enc = __VECS(aes_lrw_enc_tv_template),
3211 .dec = __VECS(aes_lrw_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003212 }
3213 }
3214 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02003215 .alg = "lrw(camellia)",
3216 .test = alg_test_skcipher,
3217 .suite = {
3218 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003219 .enc = __VECS(camellia_lrw_enc_tv_template),
3220 .dec = __VECS(camellia_lrw_dec_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02003221 }
3222 }
3223 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003224 .alg = "lrw(cast6)",
3225 .test = alg_test_skcipher,
3226 .suite = {
3227 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003228 .enc = __VECS(cast6_lrw_enc_tv_template),
3229 .dec = __VECS(cast6_lrw_dec_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003230 }
3231 }
3232 }, {
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03003233 .alg = "lrw(serpent)",
3234 .test = alg_test_skcipher,
3235 .suite = {
3236 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003237 .enc = __VECS(serpent_lrw_enc_tv_template),
3238 .dec = __VECS(serpent_lrw_dec_tv_template)
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03003239 }
3240 }
3241 }, {
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03003242 .alg = "lrw(twofish)",
3243 .test = alg_test_skcipher,
3244 .suite = {
3245 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003246 .enc = __VECS(tf_lrw_enc_tv_template),
3247 .dec = __VECS(tf_lrw_dec_tv_template)
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03003248 }
3249 }
3250 }, {
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02003251 .alg = "lz4",
3252 .test = alg_test_comp,
3253 .fips_allowed = 1,
3254 .suite = {
3255 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003256 .comp = __VECS(lz4_comp_tv_template),
3257 .decomp = __VECS(lz4_decomp_tv_template)
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02003258 }
3259 }
3260 }, {
3261 .alg = "lz4hc",
3262 .test = alg_test_comp,
3263 .fips_allowed = 1,
3264 .suite = {
3265 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003266 .comp = __VECS(lz4hc_comp_tv_template),
3267 .decomp = __VECS(lz4hc_decomp_tv_template)
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02003268 }
3269 }
3270 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003271 .alg = "lzo",
3272 .test = alg_test_comp,
Milan Broz08189042012-12-06 17:16:28 +08003273 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003274 .suite = {
3275 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003276 .comp = __VECS(lzo_comp_tv_template),
3277 .decomp = __VECS(lzo_decomp_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003278 }
3279 }
3280 }, {
3281 .alg = "md4",
3282 .test = alg_test_hash,
3283 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003284 .hash = __VECS(md4_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003285 }
3286 }, {
3287 .alg = "md5",
3288 .test = alg_test_hash,
3289 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003290 .hash = __VECS(md5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003291 }
3292 }, {
3293 .alg = "michael_mic",
3294 .test = alg_test_hash,
3295 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003296 .hash = __VECS(michael_mic_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003297 }
3298 }, {
Puneet Saxenaba0e14a2011-05-04 15:04:10 +10003299 .alg = "ofb(aes)",
3300 .test = alg_test_skcipher,
3301 .fips_allowed = 1,
3302 .suite = {
3303 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003304 .enc = __VECS(aes_ofb_enc_tv_template),
3305 .dec = __VECS(aes_ofb_dec_tv_template)
Puneet Saxenaba0e14a2011-05-04 15:04:10 +10003306 }
3307 }
3308 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003309 .alg = "pcbc(fcrypt)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003310 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003311 .suite = {
3312 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003313 .enc = __VECS(fcrypt_pcbc_enc_tv_template),
3314 .dec = __VECS(fcrypt_pcbc_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003315 }
3316 }
3317 }, {
Stephan Mueller12071072017-06-12 23:27:51 +02003318 .alg = "pkcs1pad(rsa,sha224)",
3319 .test = alg_test_null,
3320 .fips_allowed = 1,
3321 }, {
3322 .alg = "pkcs1pad(rsa,sha256)",
3323 .test = alg_test_akcipher,
3324 .fips_allowed = 1,
3325 .suite = {
3326 .akcipher = __VECS(pkcs1pad_rsa_tv_template)
3327 }
3328 }, {
3329 .alg = "pkcs1pad(rsa,sha384)",
3330 .test = alg_test_null,
3331 .fips_allowed = 1,
3332 }, {
3333 .alg = "pkcs1pad(rsa,sha512)",
3334 .test = alg_test_null,
3335 .fips_allowed = 1,
3336 }, {
Martin Willieee9dc62015-06-01 13:43:59 +02003337 .alg = "poly1305",
3338 .test = alg_test_hash,
3339 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003340 .hash = __VECS(poly1305_tv_template)
Martin Willieee9dc62015-06-01 13:43:59 +02003341 }
3342 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003343 .alg = "rfc3686(ctr(aes))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003344 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003345 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003346 .suite = {
3347 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003348 .enc = __VECS(aes_ctr_rfc3686_enc_tv_template),
3349 .dec = __VECS(aes_ctr_rfc3686_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003350 }
3351 }
3352 }, {
Herbert Xu3f31a742015-07-09 07:17:34 +08003353 .alg = "rfc4106(gcm(aes))",
Adrian Hoban69435b92010-11-04 15:02:04 -04003354 .test = alg_test_aead,
Jarod Wilsondb71f29a2015-01-23 12:42:15 -05003355 .fips_allowed = 1,
Adrian Hoban69435b92010-11-04 15:02:04 -04003356 .suite = {
3357 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003358 .enc = __VECS(aes_gcm_rfc4106_enc_tv_template),
3359 .dec = __VECS(aes_gcm_rfc4106_dec_tv_template)
Adrian Hoban69435b92010-11-04 15:02:04 -04003360 }
3361 }
3362 }, {
Herbert Xu544c4362015-07-14 16:53:22 +08003363 .alg = "rfc4309(ccm(aes))",
Jarod Wilson5d667322009-05-04 19:23:40 +08003364 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003365 .fips_allowed = 1,
Jarod Wilson5d667322009-05-04 19:23:40 +08003366 .suite = {
3367 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003368 .enc = __VECS(aes_ccm_rfc4309_enc_tv_template),
3369 .dec = __VECS(aes_ccm_rfc4309_dec_tv_template)
Jarod Wilson5d667322009-05-04 19:23:40 +08003370 }
3371 }
3372 }, {
Herbert Xubb687452015-06-16 13:54:24 +08003373 .alg = "rfc4543(gcm(aes))",
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03003374 .test = alg_test_aead,
3375 .suite = {
3376 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003377 .enc = __VECS(aes_gcm_rfc4543_enc_tv_template),
3378 .dec = __VECS(aes_gcm_rfc4543_dec_tv_template),
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03003379 }
3380 }
3381 }, {
Martin Williaf2b76b2015-06-01 13:44:01 +02003382 .alg = "rfc7539(chacha20,poly1305)",
3383 .test = alg_test_aead,
3384 .suite = {
3385 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003386 .enc = __VECS(rfc7539_enc_tv_template),
3387 .dec = __VECS(rfc7539_dec_tv_template),
Martin Williaf2b76b2015-06-01 13:44:01 +02003388 }
3389 }
3390 }, {
Martin Willi59007582015-06-01 13:44:03 +02003391 .alg = "rfc7539esp(chacha20,poly1305)",
3392 .test = alg_test_aead,
3393 .suite = {
3394 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003395 .enc = __VECS(rfc7539esp_enc_tv_template),
3396 .dec = __VECS(rfc7539esp_dec_tv_template),
Martin Willi59007582015-06-01 13:44:03 +02003397 }
3398 }
3399 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003400 .alg = "rmd128",
3401 .test = alg_test_hash,
3402 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003403 .hash = __VECS(rmd128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003404 }
3405 }, {
3406 .alg = "rmd160",
3407 .test = alg_test_hash,
3408 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003409 .hash = __VECS(rmd160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003410 }
3411 }, {
3412 .alg = "rmd256",
3413 .test = alg_test_hash,
3414 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003415 .hash = __VECS(rmd256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003416 }
3417 }, {
3418 .alg = "rmd320",
3419 .test = alg_test_hash,
3420 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003421 .hash = __VECS(rmd320_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003422 }
3423 }, {
Tadeusz Struk946cc462015-06-16 10:31:06 -07003424 .alg = "rsa",
3425 .test = alg_test_akcipher,
3426 .fips_allowed = 1,
3427 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003428 .akcipher = __VECS(rsa_tv_template)
Tadeusz Struk946cc462015-06-16 10:31:06 -07003429 }
3430 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003431 .alg = "salsa20",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003432 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003433 .suite = {
3434 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003435 .enc = __VECS(salsa20_stream_enc_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003436 }
3437 }
3438 }, {
3439 .alg = "sha1",
3440 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003441 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003442 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003443 .hash = __VECS(sha1_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003444 }
3445 }, {
3446 .alg = "sha224",
3447 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003448 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003449 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003450 .hash = __VECS(sha224_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003451 }
3452 }, {
3453 .alg = "sha256",
3454 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003455 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003456 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003457 .hash = __VECS(sha256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003458 }
3459 }, {
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303460 .alg = "sha3-224",
3461 .test = alg_test_hash,
3462 .fips_allowed = 1,
3463 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003464 .hash = __VECS(sha3_224_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303465 }
3466 }, {
3467 .alg = "sha3-256",
3468 .test = alg_test_hash,
3469 .fips_allowed = 1,
3470 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003471 .hash = __VECS(sha3_256_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303472 }
3473 }, {
3474 .alg = "sha3-384",
3475 .test = alg_test_hash,
3476 .fips_allowed = 1,
3477 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003478 .hash = __VECS(sha3_384_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303479 }
3480 }, {
3481 .alg = "sha3-512",
3482 .test = alg_test_hash,
3483 .fips_allowed = 1,
3484 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003485 .hash = __VECS(sha3_512_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303486 }
3487 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003488 .alg = "sha384",
3489 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003490 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003491 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003492 .hash = __VECS(sha384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003493 }
3494 }, {
3495 .alg = "sha512",
3496 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003497 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003498 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003499 .hash = __VECS(sha512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003500 }
3501 }, {
3502 .alg = "tgr128",
3503 .test = alg_test_hash,
3504 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003505 .hash = __VECS(tgr128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003506 }
3507 }, {
3508 .alg = "tgr160",
3509 .test = alg_test_hash,
3510 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003511 .hash = __VECS(tgr160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003512 }
3513 }, {
3514 .alg = "tgr192",
3515 .test = alg_test_hash,
3516 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003517 .hash = __VECS(tgr192_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003518 }
3519 }, {
Shane Wangf1939f72009-09-02 20:05:22 +10003520 .alg = "vmac(aes)",
3521 .test = alg_test_hash,
3522 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003523 .hash = __VECS(aes_vmac128_tv_template)
Shane Wangf1939f72009-09-02 20:05:22 +10003524 }
3525 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003526 .alg = "wp256",
3527 .test = alg_test_hash,
3528 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003529 .hash = __VECS(wp256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003530 }
3531 }, {
3532 .alg = "wp384",
3533 .test = alg_test_hash,
3534 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003535 .hash = __VECS(wp384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003536 }
3537 }, {
3538 .alg = "wp512",
3539 .test = alg_test_hash,
3540 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003541 .hash = __VECS(wp512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003542 }
3543 }, {
3544 .alg = "xcbc(aes)",
3545 .test = alg_test_hash,
3546 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003547 .hash = __VECS(aes_xcbc128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003548 }
3549 }, {
3550 .alg = "xts(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003551 .test = alg_test_skcipher,
Jarod Wilson2918aa82011-01-29 15:14:01 +11003552 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003553 .suite = {
3554 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003555 .enc = __VECS(aes_xts_enc_tv_template),
3556 .dec = __VECS(aes_xts_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003557 }
3558 }
Geert Uytterhoeven0c01aed2009-03-04 15:42:15 +08003559 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02003560 .alg = "xts(camellia)",
3561 .test = alg_test_skcipher,
3562 .suite = {
3563 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003564 .enc = __VECS(camellia_xts_enc_tv_template),
3565 .dec = __VECS(camellia_xts_dec_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02003566 }
3567 }
3568 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003569 .alg = "xts(cast6)",
3570 .test = alg_test_skcipher,
3571 .suite = {
3572 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003573 .enc = __VECS(cast6_xts_enc_tv_template),
3574 .dec = __VECS(cast6_xts_dec_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003575 }
3576 }
3577 }, {
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03003578 .alg = "xts(serpent)",
3579 .test = alg_test_skcipher,
3580 .suite = {
3581 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003582 .enc = __VECS(serpent_xts_enc_tv_template),
3583 .dec = __VECS(serpent_xts_dec_tv_template)
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03003584 }
3585 }
3586 }, {
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03003587 .alg = "xts(twofish)",
3588 .test = alg_test_skcipher,
3589 .suite = {
3590 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003591 .enc = __VECS(tf_xts_enc_tv_template),
3592 .dec = __VECS(tf_xts_dec_tv_template)
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03003593 }
3594 }
Giovanni Cabiddua368f432017-04-21 21:54:30 +01003595 }, {
3596 .alg = "zlib-deflate",
3597 .test = alg_test_comp,
3598 .fips_allowed = 1,
3599 .suite = {
3600 .comp = {
3601 .comp = __VECS(zlib_deflate_comp_tv_template),
3602 .decomp = __VECS(zlib_deflate_decomp_tv_template)
3603 }
3604 }
Herbert Xuda7f0332008-07-31 17:08:25 +08003605 }
3606};
3607
Jussi Kivilinna57147582013-06-13 17:37:40 +03003608static bool alg_test_descs_checked;
3609
3610static void alg_test_descs_check_order(void)
3611{
3612 int i;
3613
3614 /* only check once */
3615 if (alg_test_descs_checked)
3616 return;
3617
3618 alg_test_descs_checked = true;
3619
3620 for (i = 1; i < ARRAY_SIZE(alg_test_descs); i++) {
3621 int diff = strcmp(alg_test_descs[i - 1].alg,
3622 alg_test_descs[i].alg);
3623
3624 if (WARN_ON(diff > 0)) {
3625 pr_warn("testmgr: alg_test_descs entries in wrong order: '%s' before '%s'\n",
3626 alg_test_descs[i - 1].alg,
3627 alg_test_descs[i].alg);
3628 }
3629
3630 if (WARN_ON(diff == 0)) {
3631 pr_warn("testmgr: duplicate alg_test_descs entry: '%s'\n",
3632 alg_test_descs[i].alg);
3633 }
3634 }
3635}
3636
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003637static int alg_find_test(const char *alg)
Herbert Xuda7f0332008-07-31 17:08:25 +08003638{
3639 int start = 0;
3640 int end = ARRAY_SIZE(alg_test_descs);
3641
3642 while (start < end) {
3643 int i = (start + end) / 2;
3644 int diff = strcmp(alg_test_descs[i].alg, alg);
3645
3646 if (diff > 0) {
3647 end = i;
3648 continue;
3649 }
3650
3651 if (diff < 0) {
3652 start = i + 1;
3653 continue;
3654 }
3655
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003656 return i;
Herbert Xuda7f0332008-07-31 17:08:25 +08003657 }
3658
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003659 return -1;
3660}
3661
3662int alg_test(const char *driver, const char *alg, u32 type, u32 mask)
3663{
3664 int i;
Herbert Xua68f6612009-07-02 16:32:12 +08003665 int j;
Neil Hormand12d6b62008-10-12 20:36:51 +08003666 int rc;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003667
Richard W.M. Jones9e5c9fe2016-05-03 10:00:17 +01003668 if (!fips_enabled && notests) {
3669 printk_once(KERN_INFO "alg: self-tests disabled\n");
3670 return 0;
3671 }
3672
Jussi Kivilinna57147582013-06-13 17:37:40 +03003673 alg_test_descs_check_order();
3674
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003675 if ((type & CRYPTO_ALG_TYPE_MASK) == CRYPTO_ALG_TYPE_CIPHER) {
3676 char nalg[CRYPTO_MAX_ALG_NAME];
3677
3678 if (snprintf(nalg, sizeof(nalg), "ecb(%s)", alg) >=
3679 sizeof(nalg))
3680 return -ENAMETOOLONG;
3681
3682 i = alg_find_test(nalg);
3683 if (i < 0)
3684 goto notest;
3685
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10003686 if (fips_enabled && !alg_test_descs[i].fips_allowed)
3687 goto non_fips_alg;
3688
Jarod Wilson941fb322009-05-04 19:49:23 +08003689 rc = alg_test_cipher(alg_test_descs + i, driver, type, mask);
3690 goto test_done;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003691 }
3692
3693 i = alg_find_test(alg);
Herbert Xua68f6612009-07-02 16:32:12 +08003694 j = alg_find_test(driver);
3695 if (i < 0 && j < 0)
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003696 goto notest;
3697
Herbert Xua68f6612009-07-02 16:32:12 +08003698 if (fips_enabled && ((i >= 0 && !alg_test_descs[i].fips_allowed) ||
3699 (j >= 0 && !alg_test_descs[j].fips_allowed)))
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10003700 goto non_fips_alg;
3701
Herbert Xua68f6612009-07-02 16:32:12 +08003702 rc = 0;
3703 if (i >= 0)
3704 rc |= alg_test_descs[i].test(alg_test_descs + i, driver,
3705 type, mask);
Cristian Stoica032c8ca2013-07-18 18:57:07 +03003706 if (j >= 0 && j != i)
Herbert Xua68f6612009-07-02 16:32:12 +08003707 rc |= alg_test_descs[j].test(alg_test_descs + j, driver,
3708 type, mask);
3709
Jarod Wilson941fb322009-05-04 19:49:23 +08003710test_done:
Neil Hormand12d6b62008-10-12 20:36:51 +08003711 if (fips_enabled && rc)
3712 panic("%s: %s alg self test failed in fips mode!\n", driver, alg);
3713
Jarod Wilson29ecd4a2009-05-04 19:51:17 +08003714 if (fips_enabled && !rc)
Masanari Iida3e8cffd2014-10-07 00:37:54 +09003715 pr_info("alg: self-tests for %s (%s) passed\n", driver, alg);
Jarod Wilson29ecd4a2009-05-04 19:51:17 +08003716
Neil Hormand12d6b62008-10-12 20:36:51 +08003717 return rc;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003718
3719notest:
Herbert Xuda7f0332008-07-31 17:08:25 +08003720 printk(KERN_INFO "alg: No test for %s (%s)\n", alg, driver);
3721 return 0;
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10003722non_fips_alg:
3723 return -EINVAL;
Herbert Xuda7f0332008-07-31 17:08:25 +08003724}
Alexander Shishkin0b767f92010-06-03 20:53:43 +10003725
Herbert Xu326a6342010-08-06 09:40:28 +08003726#endif /* CONFIG_CRYPTO_MANAGER_DISABLE_TESTS */
Alexander Shishkin0b767f92010-06-03 20:53:43 +10003727
Herbert Xuda7f0332008-07-31 17:08:25 +08003728EXPORT_SYMBOL_GPL(alg_test);