blob: 29d7020b8826faa3f0b58897e4d30cd5d9de9d49 [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
Herbert Xuda7f0332008-07-31 17:08:25 +080079struct aead_test_suite {
80 struct {
Eric Biggersb13b1e02017-02-24 15:46:59 -080081 const struct aead_testvec *vecs;
Herbert Xuda7f0332008-07-31 17:08:25 +080082 unsigned int count;
83 } enc, dec;
84};
85
86struct cipher_test_suite {
87 struct {
Eric Biggersb13b1e02017-02-24 15:46:59 -080088 const struct cipher_testvec *vecs;
Herbert Xuda7f0332008-07-31 17:08:25 +080089 unsigned int count;
90 } enc, dec;
91};
92
93struct comp_test_suite {
94 struct {
Eric Biggersb13b1e02017-02-24 15:46:59 -080095 const struct comp_testvec *vecs;
Herbert Xuda7f0332008-07-31 17:08:25 +080096 unsigned int count;
97 } comp, decomp;
98};
99
100struct hash_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800101 const struct hash_testvec *vecs;
Herbert Xuda7f0332008-07-31 17:08:25 +0800102 unsigned int count;
103};
104
Jarod Wilson7647d6c2009-05-04 19:44:50 +0800105struct cprng_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800106 const struct cprng_testvec *vecs;
Jarod Wilson7647d6c2009-05-04 19:44:50 +0800107 unsigned int count;
108};
109
Stephan Mueller64d1cdf2014-05-31 17:25:36 +0200110struct drbg_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800111 const struct drbg_testvec *vecs;
Stephan Mueller64d1cdf2014-05-31 17:25:36 +0200112 unsigned int count;
113};
114
Tadeusz Struk946cc462015-06-16 10:31:06 -0700115struct akcipher_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800116 const struct akcipher_testvec *vecs;
Tadeusz Struk946cc462015-06-16 10:31:06 -0700117 unsigned int count;
118};
119
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100120struct kpp_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800121 const struct kpp_testvec *vecs;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100122 unsigned int count;
123};
124
Herbert Xuda7f0332008-07-31 17:08:25 +0800125struct alg_test_desc {
126 const char *alg;
127 int (*test)(const struct alg_test_desc *desc, const char *driver,
128 u32 type, u32 mask);
Jarod Wilsona1915d52009-05-15 15:16:03 +1000129 int fips_allowed; /* set if alg is allowed in fips mode */
Herbert Xuda7f0332008-07-31 17:08:25 +0800130
131 union {
132 struct aead_test_suite aead;
133 struct cipher_test_suite cipher;
134 struct comp_test_suite comp;
135 struct hash_test_suite hash;
Jarod Wilson7647d6c2009-05-04 19:44:50 +0800136 struct cprng_test_suite cprng;
Stephan Mueller64d1cdf2014-05-31 17:25:36 +0200137 struct drbg_test_suite drbg;
Tadeusz Struk946cc462015-06-16 10:31:06 -0700138 struct akcipher_test_suite akcipher;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100139 struct kpp_test_suite kpp;
Herbert Xuda7f0332008-07-31 17:08:25 +0800140 } suite;
141};
142
Eric Biggersb13b1e02017-02-24 15:46:59 -0800143static const unsigned int IDX[8] = {
144 IDX1, IDX2, IDX3, IDX4, IDX5, IDX6, IDX7, IDX8 };
Herbert Xuda7f0332008-07-31 17:08:25 +0800145
Herbert Xuda7f0332008-07-31 17:08:25 +0800146static void hexdump(unsigned char *buf, unsigned int len)
147{
148 print_hex_dump(KERN_CONT, "", DUMP_PREFIX_OFFSET,
149 16, 1,
150 buf, len, false);
151}
152
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800153static int testmgr_alloc_buf(char *buf[XBUFSIZE])
154{
155 int i;
156
157 for (i = 0; i < XBUFSIZE; i++) {
158 buf[i] = (void *)__get_free_page(GFP_KERNEL);
159 if (!buf[i])
160 goto err_free_buf;
161 }
162
163 return 0;
164
165err_free_buf:
166 while (i-- > 0)
167 free_page((unsigned long)buf[i]);
168
169 return -ENOMEM;
170}
171
172static void testmgr_free_buf(char *buf[XBUFSIZE])
173{
174 int i;
175
176 for (i = 0; i < XBUFSIZE; i++)
177 free_page((unsigned long)buf[i]);
178}
179
Wang, Rui Y018ba952016-02-03 18:26:57 +0800180static int ahash_partial_update(struct ahash_request **preq,
Eric Biggersb13b1e02017-02-24 15:46:59 -0800181 struct crypto_ahash *tfm, const struct hash_testvec *template,
Wang, Rui Y018ba952016-02-03 18:26:57 +0800182 void *hash_buff, int k, int temp, struct scatterlist *sg,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100183 const char *algo, char *result, struct crypto_wait *wait)
Wang, Rui Y018ba952016-02-03 18:26:57 +0800184{
185 char *state;
186 struct ahash_request *req;
187 int statesize, ret = -EINVAL;
Jan Stancek7bcb87b2016-09-28 16:38:37 +0200188 const char guard[] = { 0x00, 0xba, 0xad, 0x00 };
Wang, Rui Y018ba952016-02-03 18:26:57 +0800189
190 req = *preq;
191 statesize = crypto_ahash_statesize(
192 crypto_ahash_reqtfm(req));
Jan Stancek7bcb87b2016-09-28 16:38:37 +0200193 state = kmalloc(statesize + sizeof(guard), GFP_KERNEL);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800194 if (!state) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300195 pr_err("alg: hash: Failed to alloc state for %s\n", algo);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800196 goto out_nostate;
197 }
Jan Stancek7bcb87b2016-09-28 16:38:37 +0200198 memcpy(state + statesize, guard, sizeof(guard));
Wang, Rui Y018ba952016-02-03 18:26:57 +0800199 ret = crypto_ahash_export(req, state);
Jan Stancek7bcb87b2016-09-28 16:38:37 +0200200 WARN_ON(memcmp(state + statesize, guard, sizeof(guard)));
Wang, Rui Y018ba952016-02-03 18:26:57 +0800201 if (ret) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300202 pr_err("alg: hash: Failed to export() for %s\n", algo);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800203 goto out;
204 }
205 ahash_request_free(req);
206 req = ahash_request_alloc(tfm, GFP_KERNEL);
207 if (!req) {
208 pr_err("alg: hash: Failed to alloc request for %s\n", algo);
209 goto out_noreq;
210 }
211 ahash_request_set_callback(req,
212 CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100213 crypto_req_done, wait);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800214
215 memcpy(hash_buff, template->plaintext + temp,
216 template->tap[k]);
217 sg_init_one(&sg[0], hash_buff, template->tap[k]);
218 ahash_request_set_crypt(req, sg, result, template->tap[k]);
219 ret = crypto_ahash_import(req, state);
220 if (ret) {
221 pr_err("alg: hash: Failed to import() for %s\n", algo);
222 goto out;
223 }
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100224 ret = crypto_wait_req(crypto_ahash_update(req), wait);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800225 if (ret)
226 goto out;
227 *preq = req;
228 ret = 0;
229 goto out_noreq;
230out:
231 ahash_request_free(req);
232out_noreq:
233 kfree(state);
234out_nostate:
235 return ret;
236}
237
Eric Biggersb13b1e02017-02-24 15:46:59 -0800238static int __test_hash(struct crypto_ahash *tfm,
239 const struct hash_testvec *template, unsigned int tcount,
240 bool use_digest, const int align_offset)
Herbert Xuda7f0332008-07-31 17:08:25 +0800241{
242 const char *algo = crypto_tfm_alg_driver_name(crypto_ahash_tfm(tfm));
Andrew Lutomirskie93acd62017-01-10 15:24:46 -0800243 size_t digest_size = crypto_ahash_digestsize(tfm);
Herbert Xuda7f0332008-07-31 17:08:25 +0800244 unsigned int i, j, k, temp;
245 struct scatterlist sg[8];
Horia Geanta29b77e52014-07-23 11:59:38 +0300246 char *result;
247 char *key;
Herbert Xuda7f0332008-07-31 17:08:25 +0800248 struct ahash_request *req;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100249 struct crypto_wait wait;
Herbert Xuda7f0332008-07-31 17:08:25 +0800250 void *hash_buff;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800251 char *xbuf[XBUFSIZE];
252 int ret = -ENOMEM;
253
Andrew Lutomirskie93acd62017-01-10 15:24:46 -0800254 result = kmalloc(digest_size, GFP_KERNEL);
Horia Geanta29b77e52014-07-23 11:59:38 +0300255 if (!result)
256 return ret;
257 key = kmalloc(MAX_KEYLEN, GFP_KERNEL);
258 if (!key)
259 goto out_nobuf;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800260 if (testmgr_alloc_buf(xbuf))
261 goto out_nobuf;
Herbert Xuda7f0332008-07-31 17:08:25 +0800262
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100263 crypto_init_wait(&wait);
Herbert Xuda7f0332008-07-31 17:08:25 +0800264
265 req = ahash_request_alloc(tfm, GFP_KERNEL);
266 if (!req) {
267 printk(KERN_ERR "alg: hash: Failed to allocate request for "
268 "%s\n", algo);
Herbert Xuda7f0332008-07-31 17:08:25 +0800269 goto out_noreq;
270 }
271 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100272 crypto_req_done, &wait);
Herbert Xuda7f0332008-07-31 17:08:25 +0800273
Herbert Xua0cfae52009-05-29 16:23:12 +1000274 j = 0;
Herbert Xuda7f0332008-07-31 17:08:25 +0800275 for (i = 0; i < tcount; i++) {
Herbert Xua0cfae52009-05-29 16:23:12 +1000276 if (template[i].np)
277 continue;
278
Jussi Kivilinnada5ffe12013-06-13 17:37:55 +0300279 ret = -EINVAL;
280 if (WARN_ON(align_offset + template[i].psize > PAGE_SIZE))
281 goto out;
282
Herbert Xua0cfae52009-05-29 16:23:12 +1000283 j++;
Andrew Lutomirskie93acd62017-01-10 15:24:46 -0800284 memset(result, 0, digest_size);
Herbert Xuda7f0332008-07-31 17:08:25 +0800285
286 hash_buff = xbuf[0];
Jussi Kivilinnada5ffe12013-06-13 17:37:55 +0300287 hash_buff += align_offset;
Herbert Xuda7f0332008-07-31 17:08:25 +0800288
289 memcpy(hash_buff, template[i].plaintext, template[i].psize);
290 sg_init_one(&sg[0], hash_buff, template[i].psize);
291
292 if (template[i].ksize) {
293 crypto_ahash_clear_flags(tfm, ~0);
Horia Geanta29b77e52014-07-23 11:59:38 +0300294 if (template[i].ksize > MAX_KEYLEN) {
295 pr_err("alg: hash: setkey failed on test %d for %s: key size %d > %d\n",
296 j, algo, template[i].ksize, MAX_KEYLEN);
297 ret = -EINVAL;
298 goto out;
299 }
300 memcpy(key, template[i].key, template[i].ksize);
301 ret = crypto_ahash_setkey(tfm, key, template[i].ksize);
Herbert Xuda7f0332008-07-31 17:08:25 +0800302 if (ret) {
303 printk(KERN_ERR "alg: hash: setkey failed on "
Herbert Xua0cfae52009-05-29 16:23:12 +1000304 "test %d for %s: ret=%d\n", j, algo,
Herbert Xuda7f0332008-07-31 17:08:25 +0800305 -ret);
306 goto out;
307 }
308 }
309
310 ahash_request_set_crypt(req, sg, result, template[i].psize);
David S. Millera8f1a052010-05-19 14:12:03 +1000311 if (use_digest) {
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100312 ret = crypto_wait_req(crypto_ahash_digest(req), &wait);
David S. Millera8f1a052010-05-19 14:12:03 +1000313 if (ret) {
314 pr_err("alg: hash: digest failed on test %d "
315 "for %s: ret=%d\n", j, algo, -ret);
316 goto out;
Herbert Xuda7f0332008-07-31 17:08:25 +0800317 }
David S. Millera8f1a052010-05-19 14:12:03 +1000318 } else {
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100319 ret = crypto_wait_req(crypto_ahash_init(req), &wait);
David S. Millera8f1a052010-05-19 14:12:03 +1000320 if (ret) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300321 pr_err("alg: hash: init failed on test %d "
David S. Millera8f1a052010-05-19 14:12:03 +1000322 "for %s: ret=%d\n", j, algo, -ret);
323 goto out;
324 }
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100325 ret = crypto_wait_req(crypto_ahash_update(req), &wait);
David S. Millera8f1a052010-05-19 14:12:03 +1000326 if (ret) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300327 pr_err("alg: hash: update failed on test %d "
David S. Millera8f1a052010-05-19 14:12:03 +1000328 "for %s: ret=%d\n", j, algo, -ret);
329 goto out;
330 }
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100331 ret = crypto_wait_req(crypto_ahash_final(req), &wait);
David S. Millera8f1a052010-05-19 14:12:03 +1000332 if (ret) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300333 pr_err("alg: hash: final failed on test %d "
David S. Millera8f1a052010-05-19 14:12:03 +1000334 "for %s: ret=%d\n", j, algo, -ret);
335 goto out;
336 }
Herbert Xuda7f0332008-07-31 17:08:25 +0800337 }
338
339 if (memcmp(result, template[i].digest,
340 crypto_ahash_digestsize(tfm))) {
341 printk(KERN_ERR "alg: hash: Test %d failed for %s\n",
Herbert Xua0cfae52009-05-29 16:23:12 +1000342 j, algo);
Herbert Xuda7f0332008-07-31 17:08:25 +0800343 hexdump(result, crypto_ahash_digestsize(tfm));
344 ret = -EINVAL;
345 goto out;
346 }
347 }
348
349 j = 0;
350 for (i = 0; i < tcount; i++) {
Jussi Kivilinnada5ffe12013-06-13 17:37:55 +0300351 /* alignment tests are only done with continuous buffers */
352 if (align_offset != 0)
353 break;
354
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300355 if (!template[i].np)
356 continue;
Herbert Xuda7f0332008-07-31 17:08:25 +0800357
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300358 j++;
Andrew Lutomirskie93acd62017-01-10 15:24:46 -0800359 memset(result, 0, digest_size);
Herbert Xuda7f0332008-07-31 17:08:25 +0800360
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300361 temp = 0;
362 sg_init_table(sg, template[i].np);
363 ret = -EINVAL;
364 for (k = 0; k < template[i].np; k++) {
365 if (WARN_ON(offset_in_page(IDX[k]) +
366 template[i].tap[k] > PAGE_SIZE))
Herbert Xuda7f0332008-07-31 17:08:25 +0800367 goto out;
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300368 sg_set_buf(&sg[k],
369 memcpy(xbuf[IDX[k] >> PAGE_SHIFT] +
370 offset_in_page(IDX[k]),
371 template[i].plaintext + temp,
372 template[i].tap[k]),
373 template[i].tap[k]);
374 temp += template[i].tap[k];
375 }
Herbert Xuda7f0332008-07-31 17:08:25 +0800376
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300377 if (template[i].ksize) {
378 if (template[i].ksize > MAX_KEYLEN) {
379 pr_err("alg: hash: setkey failed on test %d for %s: key size %d > %d\n",
380 j, algo, template[i].ksize, MAX_KEYLEN);
Herbert Xuda7f0332008-07-31 17:08:25 +0800381 ret = -EINVAL;
382 goto out;
383 }
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300384 crypto_ahash_clear_flags(tfm, ~0);
385 memcpy(key, template[i].key, template[i].ksize);
386 ret = crypto_ahash_setkey(tfm, key, template[i].ksize);
387
388 if (ret) {
389 printk(KERN_ERR "alg: hash: setkey "
390 "failed on chunking test %d "
391 "for %s: ret=%d\n", j, algo, -ret);
392 goto out;
393 }
394 }
395
396 ahash_request_set_crypt(req, sg, result, template[i].psize);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100397 ret = crypto_wait_req(crypto_ahash_digest(req), &wait);
398 if (ret) {
399 pr_err("alg: hash: digest failed on chunking test %d for %s: ret=%d\n",
400 j, algo, -ret);
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300401 goto out;
402 }
403
404 if (memcmp(result, template[i].digest,
405 crypto_ahash_digestsize(tfm))) {
406 printk(KERN_ERR "alg: hash: Chunking test %d "
407 "failed for %s\n", j, algo);
408 hexdump(result, crypto_ahash_digestsize(tfm));
409 ret = -EINVAL;
410 goto out;
Herbert Xuda7f0332008-07-31 17:08:25 +0800411 }
412 }
413
Wang, Rui Y018ba952016-02-03 18:26:57 +0800414 /* partial update exercise */
415 j = 0;
416 for (i = 0; i < tcount; i++) {
417 /* alignment tests are only done with continuous buffers */
418 if (align_offset != 0)
419 break;
420
421 if (template[i].np < 2)
422 continue;
423
424 j++;
Andrew Lutomirskie93acd62017-01-10 15:24:46 -0800425 memset(result, 0, digest_size);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800426
427 ret = -EINVAL;
428 hash_buff = xbuf[0];
429 memcpy(hash_buff, template[i].plaintext,
430 template[i].tap[0]);
431 sg_init_one(&sg[0], hash_buff, template[i].tap[0]);
432
433 if (template[i].ksize) {
434 crypto_ahash_clear_flags(tfm, ~0);
435 if (template[i].ksize > MAX_KEYLEN) {
436 pr_err("alg: hash: setkey failed on test %d for %s: key size %d > %d\n",
437 j, algo, template[i].ksize, MAX_KEYLEN);
438 ret = -EINVAL;
439 goto out;
440 }
441 memcpy(key, template[i].key, template[i].ksize);
442 ret = crypto_ahash_setkey(tfm, key, template[i].ksize);
443 if (ret) {
444 pr_err("alg: hash: setkey failed on test %d for %s: ret=%d\n",
445 j, algo, -ret);
446 goto out;
447 }
448 }
449
450 ahash_request_set_crypt(req, sg, result, template[i].tap[0]);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100451 ret = crypto_wait_req(crypto_ahash_init(req), &wait);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800452 if (ret) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300453 pr_err("alg: hash: init failed on test %d for %s: ret=%d\n",
Wang, Rui Y018ba952016-02-03 18:26:57 +0800454 j, algo, -ret);
455 goto out;
456 }
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100457 ret = crypto_wait_req(crypto_ahash_update(req), &wait);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800458 if (ret) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300459 pr_err("alg: hash: update failed on test %d for %s: ret=%d\n",
Wang, Rui Y018ba952016-02-03 18:26:57 +0800460 j, algo, -ret);
461 goto out;
462 }
463
464 temp = template[i].tap[0];
465 for (k = 1; k < template[i].np; k++) {
466 ret = ahash_partial_update(&req, tfm, &template[i],
467 hash_buff, k, temp, &sg[0], algo, result,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100468 &wait);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800469 if (ret) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300470 pr_err("alg: hash: partial update failed on test %d for %s: ret=%d\n",
Wang, Rui Y018ba952016-02-03 18:26:57 +0800471 j, algo, -ret);
472 goto out_noreq;
473 }
474 temp += template[i].tap[k];
475 }
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100476 ret = crypto_wait_req(crypto_ahash_final(req), &wait);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800477 if (ret) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300478 pr_err("alg: hash: final failed on test %d for %s: ret=%d\n",
Wang, Rui Y018ba952016-02-03 18:26:57 +0800479 j, algo, -ret);
480 goto out;
481 }
482 if (memcmp(result, template[i].digest,
483 crypto_ahash_digestsize(tfm))) {
484 pr_err("alg: hash: Partial Test %d failed for %s\n",
485 j, algo);
486 hexdump(result, crypto_ahash_digestsize(tfm));
487 ret = -EINVAL;
488 goto out;
489 }
490 }
491
Herbert Xuda7f0332008-07-31 17:08:25 +0800492 ret = 0;
493
494out:
495 ahash_request_free(req);
496out_noreq:
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800497 testmgr_free_buf(xbuf);
498out_nobuf:
Horia Geanta29b77e52014-07-23 11:59:38 +0300499 kfree(key);
500 kfree(result);
Herbert Xuda7f0332008-07-31 17:08:25 +0800501 return ret;
502}
503
Eric Biggersb13b1e02017-02-24 15:46:59 -0800504static int test_hash(struct crypto_ahash *tfm,
505 const struct hash_testvec *template,
Jussi Kivilinnada5ffe12013-06-13 17:37:55 +0300506 unsigned int tcount, bool use_digest)
507{
508 unsigned int alignmask;
509 int ret;
510
511 ret = __test_hash(tfm, template, tcount, use_digest, 0);
512 if (ret)
513 return ret;
514
515 /* test unaligned buffers, check with one byte offset */
516 ret = __test_hash(tfm, template, tcount, use_digest, 1);
517 if (ret)
518 return ret;
519
520 alignmask = crypto_tfm_alg_alignmask(&tfm->base);
521 if (alignmask) {
522 /* Check if alignment mask for tfm is correctly set. */
523 ret = __test_hash(tfm, template, tcount, use_digest,
524 alignmask + 1);
525 if (ret)
526 return ret;
527 }
528
529 return 0;
530}
531
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300532static int __test_aead(struct crypto_aead *tfm, int enc,
Eric Biggersb13b1e02017-02-24 15:46:59 -0800533 const struct aead_testvec *template, unsigned int tcount,
Jussi Kivilinna58dcf542013-06-13 17:37:50 +0300534 const bool diff_dst, const int align_offset)
Herbert Xuda7f0332008-07-31 17:08:25 +0800535{
536 const char *algo = crypto_tfm_alg_driver_name(crypto_aead_tfm(tfm));
537 unsigned int i, j, k, n, temp;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800538 int ret = -ENOMEM;
Herbert Xuda7f0332008-07-31 17:08:25 +0800539 char *q;
540 char *key;
541 struct aead_request *req;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300542 struct scatterlist *sg;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300543 struct scatterlist *sgout;
544 const char *e, *d;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100545 struct crypto_wait wait;
Cristian Stoica424a5da2015-01-28 11:03:05 +0200546 unsigned int authsize, iv_len;
Herbert Xuda7f0332008-07-31 17:08:25 +0800547 void *input;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300548 void *output;
Herbert Xuda7f0332008-07-31 17:08:25 +0800549 void *assoc;
Tadeusz Struk9bac0192014-05-19 09:51:33 -0700550 char *iv;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800551 char *xbuf[XBUFSIZE];
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300552 char *xoutbuf[XBUFSIZE];
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800553 char *axbuf[XBUFSIZE];
554
Tadeusz Struk9bac0192014-05-19 09:51:33 -0700555 iv = kzalloc(MAX_IVLEN, GFP_KERNEL);
556 if (!iv)
557 return ret;
Horia Geanta29b77e52014-07-23 11:59:38 +0300558 key = kmalloc(MAX_KEYLEN, GFP_KERNEL);
559 if (!key)
560 goto out_noxbuf;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800561 if (testmgr_alloc_buf(xbuf))
562 goto out_noxbuf;
563 if (testmgr_alloc_buf(axbuf))
564 goto out_noaxbuf;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300565 if (diff_dst && testmgr_alloc_buf(xoutbuf))
566 goto out_nooutbuf;
567
568 /* avoid "the frame size is larger than 1024 bytes" compiler warning */
Herbert Xu8a525fc2015-05-27 16:03:43 +0800569 sg = kmalloc(sizeof(*sg) * 8 * (diff_dst ? 4 : 2), GFP_KERNEL);
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300570 if (!sg)
571 goto out_nosg;
Herbert Xu8a525fc2015-05-27 16:03:43 +0800572 sgout = &sg[16];
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300573
574 if (diff_dst)
575 d = "-ddst";
576 else
577 d = "";
578
Herbert Xuda7f0332008-07-31 17:08:25 +0800579 if (enc == ENCRYPT)
580 e = "encryption";
581 else
582 e = "decryption";
583
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100584 crypto_init_wait(&wait);
Herbert Xuda7f0332008-07-31 17:08:25 +0800585
586 req = aead_request_alloc(tfm, GFP_KERNEL);
587 if (!req) {
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300588 pr_err("alg: aead%s: Failed to allocate request for %s\n",
589 d, algo);
Herbert Xuda7f0332008-07-31 17:08:25 +0800590 goto out;
591 }
592
593 aead_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100594 crypto_req_done, &wait);
Herbert Xuda7f0332008-07-31 17:08:25 +0800595
Jerome Marchandabfa7f42016-02-03 13:58:12 +0100596 iv_len = crypto_aead_ivsize(tfm);
597
Herbert Xuda7f0332008-07-31 17:08:25 +0800598 for (i = 0, j = 0; i < tcount; i++) {
Cristian Stoica05b1d332014-07-28 13:11:23 +0300599 if (template[i].np)
600 continue;
Herbert Xuda7f0332008-07-31 17:08:25 +0800601
Cristian Stoica05b1d332014-07-28 13:11:23 +0300602 j++;
Herbert Xuda7f0332008-07-31 17:08:25 +0800603
Cristian Stoica05b1d332014-07-28 13:11:23 +0300604 /* some templates have no input data but they will
605 * touch input
606 */
607 input = xbuf[0];
608 input += align_offset;
609 assoc = axbuf[0];
610
611 ret = -EINVAL;
612 if (WARN_ON(align_offset + template[i].ilen >
613 PAGE_SIZE || template[i].alen > PAGE_SIZE))
614 goto out;
615
616 memcpy(input, template[i].input, template[i].ilen);
617 memcpy(assoc, template[i].assoc, template[i].alen);
618 if (template[i].iv)
Cristian Stoica424a5da2015-01-28 11:03:05 +0200619 memcpy(iv, template[i].iv, iv_len);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300620 else
Cristian Stoica424a5da2015-01-28 11:03:05 +0200621 memset(iv, 0, iv_len);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300622
623 crypto_aead_clear_flags(tfm, ~0);
624 if (template[i].wk)
625 crypto_aead_set_flags(tfm, CRYPTO_TFM_REQ_WEAK_KEY);
626
627 if (template[i].klen > MAX_KEYLEN) {
628 pr_err("alg: aead%s: setkey failed on test %d for %s: key size %d > %d\n",
629 d, j, algo, template[i].klen,
630 MAX_KEYLEN);
Herbert Xufd57f222009-05-29 16:05:42 +1000631 ret = -EINVAL;
Cristian Stoica05b1d332014-07-28 13:11:23 +0300632 goto out;
633 }
634 memcpy(key, template[i].key, template[i].klen);
Herbert Xufd57f222009-05-29 16:05:42 +1000635
Cristian Stoica05b1d332014-07-28 13:11:23 +0300636 ret = crypto_aead_setkey(tfm, key, template[i].klen);
Yanjiang Jin0fae0c12016-07-29 16:32:09 +0800637 if (template[i].fail == !ret) {
Cristian Stoica05b1d332014-07-28 13:11:23 +0300638 pr_err("alg: aead%s: setkey failed on test %d for %s: flags=%x\n",
639 d, j, algo, crypto_aead_get_flags(tfm));
640 goto out;
641 } else if (ret)
642 continue;
Herbert Xuda7f0332008-07-31 17:08:25 +0800643
Cristian Stoica05b1d332014-07-28 13:11:23 +0300644 authsize = abs(template[i].rlen - template[i].ilen);
645 ret = crypto_aead_setauthsize(tfm, authsize);
646 if (ret) {
647 pr_err("alg: aead%s: Failed to set authsize to %u on test %d for %s\n",
648 d, authsize, j, algo);
649 goto out;
650 }
Herbert Xuda7f0332008-07-31 17:08:25 +0800651
Herbert Xu8a525fc2015-05-27 16:03:43 +0800652 k = !!template[i].alen;
653 sg_init_table(sg, k + 1);
654 sg_set_buf(&sg[0], assoc, template[i].alen);
655 sg_set_buf(&sg[k], input,
656 template[i].ilen + (enc ? authsize : 0));
657 output = input;
658
Cristian Stoica05b1d332014-07-28 13:11:23 +0300659 if (diff_dst) {
Herbert Xu8a525fc2015-05-27 16:03:43 +0800660 sg_init_table(sgout, k + 1);
661 sg_set_buf(&sgout[0], assoc, template[i].alen);
662
Cristian Stoica05b1d332014-07-28 13:11:23 +0300663 output = xoutbuf[0];
664 output += align_offset;
Herbert Xu8a525fc2015-05-27 16:03:43 +0800665 sg_set_buf(&sgout[k], output,
666 template[i].rlen + (enc ? 0 : authsize));
Cristian Stoica05b1d332014-07-28 13:11:23 +0300667 }
668
Cristian Stoica05b1d332014-07-28 13:11:23 +0300669 aead_request_set_crypt(req, sg, (diff_dst) ? sgout : sg,
670 template[i].ilen, iv);
671
Herbert Xu8a525fc2015-05-27 16:03:43 +0800672 aead_request_set_ad(req, template[i].alen);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300673
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100674 ret = crypto_wait_req(enc ? crypto_aead_encrypt(req)
675 : crypto_aead_decrypt(req), &wait);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300676
677 switch (ret) {
678 case 0:
679 if (template[i].novrfy) {
680 /* verification was supposed to fail */
681 pr_err("alg: aead%s: %s failed on test %d for %s: ret was 0, expected -EBADMSG\n",
682 d, e, j, algo);
683 /* so really, we got a bad message */
684 ret = -EBADMSG;
Horia Geanta29b77e52014-07-23 11:59:38 +0300685 goto out;
686 }
Cristian Stoica05b1d332014-07-28 13:11:23 +0300687 break;
Cristian Stoica05b1d332014-07-28 13:11:23 +0300688 case -EBADMSG:
689 if (template[i].novrfy)
690 /* verification failure was expected */
691 continue;
692 /* fall through */
693 default:
694 pr_err("alg: aead%s: %s failed on test %d for %s: ret=%d\n",
695 d, e, j, algo, -ret);
696 goto out;
697 }
Herbert Xuda7f0332008-07-31 17:08:25 +0800698
Cristian Stoica05b1d332014-07-28 13:11:23 +0300699 q = output;
700 if (memcmp(q, template[i].result, template[i].rlen)) {
701 pr_err("alg: aead%s: Test %d failed on %s for %s\n",
702 d, j, e, algo);
703 hexdump(q, template[i].rlen);
704 ret = -EINVAL;
705 goto out;
Herbert Xuda7f0332008-07-31 17:08:25 +0800706 }
707 }
708
709 for (i = 0, j = 0; i < tcount; i++) {
Jussi Kivilinna58dcf542013-06-13 17:37:50 +0300710 /* alignment tests are only done with continuous buffers */
711 if (align_offset != 0)
712 break;
713
Cristian Stoica05b1d332014-07-28 13:11:23 +0300714 if (!template[i].np)
715 continue;
Herbert Xuda7f0332008-07-31 17:08:25 +0800716
Cristian Stoica05b1d332014-07-28 13:11:23 +0300717 j++;
Herbert Xuda7f0332008-07-31 17:08:25 +0800718
Cristian Stoica05b1d332014-07-28 13:11:23 +0300719 if (template[i].iv)
Jerome Marchandabfa7f42016-02-03 13:58:12 +0100720 memcpy(iv, template[i].iv, iv_len);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300721 else
722 memset(iv, 0, MAX_IVLEN);
723
724 crypto_aead_clear_flags(tfm, ~0);
725 if (template[i].wk)
726 crypto_aead_set_flags(tfm, CRYPTO_TFM_REQ_WEAK_KEY);
727 if (template[i].klen > MAX_KEYLEN) {
728 pr_err("alg: aead%s: setkey failed on test %d for %s: key size %d > %d\n",
729 d, j, algo, template[i].klen, MAX_KEYLEN);
730 ret = -EINVAL;
731 goto out;
732 }
733 memcpy(key, template[i].key, template[i].klen);
734
735 ret = crypto_aead_setkey(tfm, key, template[i].klen);
Yanjiang Jin0fae0c12016-07-29 16:32:09 +0800736 if (template[i].fail == !ret) {
Cristian Stoica05b1d332014-07-28 13:11:23 +0300737 pr_err("alg: aead%s: setkey failed on chunk test %d for %s: flags=%x\n",
738 d, j, algo, crypto_aead_get_flags(tfm));
739 goto out;
740 } else if (ret)
741 continue;
742
743 authsize = abs(template[i].rlen - template[i].ilen);
744
745 ret = -EINVAL;
Herbert Xu8a525fc2015-05-27 16:03:43 +0800746 sg_init_table(sg, template[i].anp + template[i].np);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300747 if (diff_dst)
Herbert Xu8a525fc2015-05-27 16:03:43 +0800748 sg_init_table(sgout, template[i].anp + template[i].np);
749
750 ret = -EINVAL;
751 for (k = 0, temp = 0; k < template[i].anp; k++) {
752 if (WARN_ON(offset_in_page(IDX[k]) +
753 template[i].atap[k] > PAGE_SIZE))
754 goto out;
755 sg_set_buf(&sg[k],
756 memcpy(axbuf[IDX[k] >> PAGE_SHIFT] +
757 offset_in_page(IDX[k]),
758 template[i].assoc + temp,
759 template[i].atap[k]),
760 template[i].atap[k]);
761 if (diff_dst)
762 sg_set_buf(&sgout[k],
763 axbuf[IDX[k] >> PAGE_SHIFT] +
764 offset_in_page(IDX[k]),
765 template[i].atap[k]);
766 temp += template[i].atap[k];
767 }
768
Cristian Stoica05b1d332014-07-28 13:11:23 +0300769 for (k = 0, temp = 0; k < template[i].np; k++) {
770 if (WARN_ON(offset_in_page(IDX[k]) +
771 template[i].tap[k] > PAGE_SIZE))
772 goto out;
773
774 q = xbuf[IDX[k] >> PAGE_SHIFT] + offset_in_page(IDX[k]);
775 memcpy(q, template[i].input + temp, template[i].tap[k]);
Herbert Xu8a525fc2015-05-27 16:03:43 +0800776 sg_set_buf(&sg[template[i].anp + k],
777 q, template[i].tap[k]);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300778
779 if (diff_dst) {
780 q = xoutbuf[IDX[k] >> PAGE_SHIFT] +
781 offset_in_page(IDX[k]);
782
783 memset(q, 0, template[i].tap[k]);
784
Herbert Xu8a525fc2015-05-27 16:03:43 +0800785 sg_set_buf(&sgout[template[i].anp + k],
786 q, template[i].tap[k]);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300787 }
788
789 n = template[i].tap[k];
790 if (k == template[i].np - 1 && enc)
791 n += authsize;
792 if (offset_in_page(q) + n < PAGE_SIZE)
793 q[n] = 0;
794
795 temp += template[i].tap[k];
796 }
797
798 ret = crypto_aead_setauthsize(tfm, authsize);
799 if (ret) {
800 pr_err("alg: aead%s: Failed to set authsize to %u on chunk test %d for %s\n",
801 d, authsize, j, algo);
802 goto out;
803 }
804
805 if (enc) {
Herbert Xu8a525fc2015-05-27 16:03:43 +0800806 if (WARN_ON(sg[template[i].anp + k - 1].offset +
807 sg[template[i].anp + k - 1].length +
808 authsize > PAGE_SIZE)) {
Horia Geanta29b77e52014-07-23 11:59:38 +0300809 ret = -EINVAL;
810 goto out;
811 }
Herbert Xuda7f0332008-07-31 17:08:25 +0800812
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300813 if (diff_dst)
Herbert Xu8a525fc2015-05-27 16:03:43 +0800814 sgout[template[i].anp + k - 1].length +=
815 authsize;
816 sg[template[i].anp + k - 1].length += authsize;
Cristian Stoica05b1d332014-07-28 13:11:23 +0300817 }
818
819 aead_request_set_crypt(req, sg, (diff_dst) ? sgout : sg,
820 template[i].ilen,
821 iv);
822
Herbert Xu8a525fc2015-05-27 16:03:43 +0800823 aead_request_set_ad(req, template[i].alen);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300824
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100825 ret = crypto_wait_req(enc ? crypto_aead_encrypt(req)
826 : crypto_aead_decrypt(req), &wait);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300827
828 switch (ret) {
829 case 0:
830 if (template[i].novrfy) {
831 /* verification was supposed to fail */
832 pr_err("alg: aead%s: %s failed on chunk test %d for %s: ret was 0, expected -EBADMSG\n",
833 d, e, j, algo);
834 /* so really, we got a bad message */
835 ret = -EBADMSG;
836 goto out;
837 }
838 break;
Cristian Stoica05b1d332014-07-28 13:11:23 +0300839 case -EBADMSG:
840 if (template[i].novrfy)
841 /* verification failure was expected */
842 continue;
843 /* fall through */
844 default:
845 pr_err("alg: aead%s: %s failed on chunk test %d for %s: ret=%d\n",
846 d, e, j, algo, -ret);
847 goto out;
848 }
849
850 ret = -EINVAL;
851 for (k = 0, temp = 0; k < template[i].np; k++) {
852 if (diff_dst)
853 q = xoutbuf[IDX[k] >> PAGE_SHIFT] +
854 offset_in_page(IDX[k]);
855 else
Herbert Xuda7f0332008-07-31 17:08:25 +0800856 q = xbuf[IDX[k] >> PAGE_SHIFT] +
857 offset_in_page(IDX[k]);
858
Cristian Stoica05b1d332014-07-28 13:11:23 +0300859 n = template[i].tap[k];
860 if (k == template[i].np - 1)
861 n += enc ? authsize : -authsize;
Herbert Xuda7f0332008-07-31 17:08:25 +0800862
Cristian Stoica05b1d332014-07-28 13:11:23 +0300863 if (memcmp(q, template[i].result + temp, n)) {
864 pr_err("alg: aead%s: Chunk test %d failed on %s at page %u for %s\n",
865 d, j, e, k, algo);
866 hexdump(q, n);
Herbert Xuda7f0332008-07-31 17:08:25 +0800867 goto out;
868 }
869
Cristian Stoica05b1d332014-07-28 13:11:23 +0300870 q += n;
871 if (k == template[i].np - 1 && !enc) {
872 if (!diff_dst &&
873 memcmp(q, template[i].input +
874 temp + n, authsize))
875 n = authsize;
Horia Geanta8ec25c52013-11-28 15:11:18 +0200876 else
Cristian Stoica05b1d332014-07-28 13:11:23 +0300877 n = 0;
878 } else {
879 for (n = 0; offset_in_page(q + n) && q[n]; n++)
880 ;
Herbert Xuda7f0332008-07-31 17:08:25 +0800881 }
Cristian Stoica05b1d332014-07-28 13:11:23 +0300882 if (n) {
883 pr_err("alg: aead%s: Result buffer corruption in chunk test %d on %s at page %u for %s: %u bytes:\n",
884 d, j, e, k, algo, n);
885 hexdump(q, n);
Herbert Xuda7f0332008-07-31 17:08:25 +0800886 goto out;
887 }
888
Cristian Stoica05b1d332014-07-28 13:11:23 +0300889 temp += template[i].tap[k];
Herbert Xuda7f0332008-07-31 17:08:25 +0800890 }
891 }
892
893 ret = 0;
894
895out:
896 aead_request_free(req);
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300897 kfree(sg);
898out_nosg:
899 if (diff_dst)
900 testmgr_free_buf(xoutbuf);
901out_nooutbuf:
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800902 testmgr_free_buf(axbuf);
903out_noaxbuf:
904 testmgr_free_buf(xbuf);
905out_noxbuf:
Horia Geanta29b77e52014-07-23 11:59:38 +0300906 kfree(key);
Tadeusz Struk9bac0192014-05-19 09:51:33 -0700907 kfree(iv);
Herbert Xuda7f0332008-07-31 17:08:25 +0800908 return ret;
909}
910
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300911static int test_aead(struct crypto_aead *tfm, int enc,
Eric Biggersb13b1e02017-02-24 15:46:59 -0800912 const struct aead_testvec *template, unsigned int tcount)
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300913{
Jussi Kivilinna58dcf542013-06-13 17:37:50 +0300914 unsigned int alignmask;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300915 int ret;
916
917 /* test 'dst == src' case */
Jussi Kivilinna58dcf542013-06-13 17:37:50 +0300918 ret = __test_aead(tfm, enc, template, tcount, false, 0);
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300919 if (ret)
920 return ret;
921
922 /* test 'dst != src' case */
Jussi Kivilinna58dcf542013-06-13 17:37:50 +0300923 ret = __test_aead(tfm, enc, template, tcount, true, 0);
924 if (ret)
925 return ret;
926
927 /* test unaligned buffers, check with one byte offset */
928 ret = __test_aead(tfm, enc, template, tcount, true, 1);
929 if (ret)
930 return ret;
931
932 alignmask = crypto_tfm_alg_alignmask(&tfm->base);
933 if (alignmask) {
934 /* Check if alignment mask for tfm is correctly set. */
935 ret = __test_aead(tfm, enc, template, tcount, true,
936 alignmask + 1);
937 if (ret)
938 return ret;
939 }
940
941 return 0;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300942}
943
Herbert Xu1aa4ecd2008-08-17 17:01:56 +1000944static int test_cipher(struct crypto_cipher *tfm, int enc,
Eric Biggersb13b1e02017-02-24 15:46:59 -0800945 const struct cipher_testvec *template,
946 unsigned int tcount)
Herbert Xuda7f0332008-07-31 17:08:25 +0800947{
Herbert Xu1aa4ecd2008-08-17 17:01:56 +1000948 const char *algo = crypto_tfm_alg_driver_name(crypto_cipher_tfm(tfm));
949 unsigned int i, j, k;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +1000950 char *q;
951 const char *e;
952 void *data;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800953 char *xbuf[XBUFSIZE];
954 int ret = -ENOMEM;
955
956 if (testmgr_alloc_buf(xbuf))
957 goto out_nobuf;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +1000958
959 if (enc == ENCRYPT)
960 e = "encryption";
961 else
962 e = "decryption";
963
964 j = 0;
965 for (i = 0; i < tcount; i++) {
966 if (template[i].np)
967 continue;
968
Stephan Mueller10faa8c2016-08-25 15:15:01 +0200969 if (fips_enabled && template[i].fips_skip)
970 continue;
971
Herbert Xu1aa4ecd2008-08-17 17:01:56 +1000972 j++;
973
Herbert Xufd57f222009-05-29 16:05:42 +1000974 ret = -EINVAL;
975 if (WARN_ON(template[i].ilen > PAGE_SIZE))
976 goto out;
977
Herbert Xu1aa4ecd2008-08-17 17:01:56 +1000978 data = xbuf[0];
979 memcpy(data, template[i].input, template[i].ilen);
980
981 crypto_cipher_clear_flags(tfm, ~0);
982 if (template[i].wk)
983 crypto_cipher_set_flags(tfm, CRYPTO_TFM_REQ_WEAK_KEY);
984
985 ret = crypto_cipher_setkey(tfm, template[i].key,
986 template[i].klen);
Yanjiang Jin0fae0c12016-07-29 16:32:09 +0800987 if (template[i].fail == !ret) {
Herbert Xu1aa4ecd2008-08-17 17:01:56 +1000988 printk(KERN_ERR "alg: cipher: setkey failed "
989 "on test %d for %s: flags=%x\n", j,
990 algo, crypto_cipher_get_flags(tfm));
991 goto out;
992 } else if (ret)
993 continue;
994
995 for (k = 0; k < template[i].ilen;
996 k += crypto_cipher_blocksize(tfm)) {
997 if (enc)
998 crypto_cipher_encrypt_one(tfm, data + k,
999 data + k);
1000 else
1001 crypto_cipher_decrypt_one(tfm, data + k,
1002 data + k);
1003 }
1004
1005 q = data;
1006 if (memcmp(q, template[i].result, template[i].rlen)) {
1007 printk(KERN_ERR "alg: cipher: Test %d failed "
1008 "on %s for %s\n", j, e, algo);
1009 hexdump(q, template[i].rlen);
1010 ret = -EINVAL;
1011 goto out;
1012 }
1013 }
1014
1015 ret = 0;
1016
1017out:
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08001018 testmgr_free_buf(xbuf);
1019out_nobuf:
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001020 return ret;
1021}
1022
Herbert Xu12773d92015-08-20 15:21:46 +08001023static int __test_skcipher(struct crypto_skcipher *tfm, int enc,
Eric Biggersb13b1e02017-02-24 15:46:59 -08001024 const struct cipher_testvec *template,
1025 unsigned int tcount,
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03001026 const bool diff_dst, const int align_offset)
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001027{
Herbert Xuda7f0332008-07-31 17:08:25 +08001028 const char *algo =
Herbert Xu12773d92015-08-20 15:21:46 +08001029 crypto_tfm_alg_driver_name(crypto_skcipher_tfm(tfm));
Herbert Xuda7f0332008-07-31 17:08:25 +08001030 unsigned int i, j, k, n, temp;
Herbert Xuda7f0332008-07-31 17:08:25 +08001031 char *q;
Herbert Xu12773d92015-08-20 15:21:46 +08001032 struct skcipher_request *req;
Herbert Xuda7f0332008-07-31 17:08:25 +08001033 struct scatterlist sg[8];
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001034 struct scatterlist sgout[8];
1035 const char *e, *d;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001036 struct crypto_wait wait;
Herbert Xuda7f0332008-07-31 17:08:25 +08001037 void *data;
1038 char iv[MAX_IVLEN];
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08001039 char *xbuf[XBUFSIZE];
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001040 char *xoutbuf[XBUFSIZE];
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08001041 int ret = -ENOMEM;
Andrey Ryabinin84cba172015-09-10 13:11:55 +03001042 unsigned int ivsize = crypto_skcipher_ivsize(tfm);
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08001043
1044 if (testmgr_alloc_buf(xbuf))
1045 goto out_nobuf;
Herbert Xuda7f0332008-07-31 17:08:25 +08001046
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001047 if (diff_dst && testmgr_alloc_buf(xoutbuf))
1048 goto out_nooutbuf;
1049
1050 if (diff_dst)
1051 d = "-ddst";
1052 else
1053 d = "";
1054
Herbert Xuda7f0332008-07-31 17:08:25 +08001055 if (enc == ENCRYPT)
1056 e = "encryption";
1057 else
1058 e = "decryption";
1059
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001060 crypto_init_wait(&wait);
Herbert Xuda7f0332008-07-31 17:08:25 +08001061
Herbert Xu12773d92015-08-20 15:21:46 +08001062 req = skcipher_request_alloc(tfm, GFP_KERNEL);
Herbert Xuda7f0332008-07-31 17:08:25 +08001063 if (!req) {
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001064 pr_err("alg: skcipher%s: Failed to allocate request for %s\n",
1065 d, algo);
Herbert Xuda7f0332008-07-31 17:08:25 +08001066 goto out;
1067 }
1068
Herbert Xu12773d92015-08-20 15:21:46 +08001069 skcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001070 crypto_req_done, &wait);
Herbert Xuda7f0332008-07-31 17:08:25 +08001071
1072 j = 0;
1073 for (i = 0; i < tcount; i++) {
Cristian Stoicabbb9a7d2014-08-08 14:27:52 +03001074 if (template[i].np && !template[i].also_non_np)
1075 continue;
1076
Stephan Mueller10faa8c2016-08-25 15:15:01 +02001077 if (fips_enabled && template[i].fips_skip)
1078 continue;
1079
Herbert Xuda7f0332008-07-31 17:08:25 +08001080 if (template[i].iv)
Andrey Ryabinin84cba172015-09-10 13:11:55 +03001081 memcpy(iv, template[i].iv, ivsize);
Herbert Xuda7f0332008-07-31 17:08:25 +08001082 else
1083 memset(iv, 0, MAX_IVLEN);
1084
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001085 j++;
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001086 ret = -EINVAL;
1087 if (WARN_ON(align_offset + template[i].ilen > PAGE_SIZE))
1088 goto out;
1089
1090 data = xbuf[0];
1091 data += align_offset;
1092 memcpy(data, template[i].input, template[i].ilen);
1093
Herbert Xu12773d92015-08-20 15:21:46 +08001094 crypto_skcipher_clear_flags(tfm, ~0);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001095 if (template[i].wk)
Herbert Xu12773d92015-08-20 15:21:46 +08001096 crypto_skcipher_set_flags(tfm,
1097 CRYPTO_TFM_REQ_WEAK_KEY);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001098
Herbert Xu12773d92015-08-20 15:21:46 +08001099 ret = crypto_skcipher_setkey(tfm, template[i].key,
1100 template[i].klen);
Yanjiang Jin0fae0c12016-07-29 16:32:09 +08001101 if (template[i].fail == !ret) {
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001102 pr_err("alg: skcipher%s: setkey failed on test %d for %s: flags=%x\n",
Herbert Xu12773d92015-08-20 15:21:46 +08001103 d, j, algo, crypto_skcipher_get_flags(tfm));
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001104 goto out;
1105 } else if (ret)
1106 continue;
1107
1108 sg_init_one(&sg[0], data, template[i].ilen);
1109 if (diff_dst) {
1110 data = xoutbuf[0];
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03001111 data += align_offset;
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001112 sg_init_one(&sgout[0], data, template[i].ilen);
1113 }
Herbert Xuda7f0332008-07-31 17:08:25 +08001114
Herbert Xu12773d92015-08-20 15:21:46 +08001115 skcipher_request_set_crypt(req, sg, (diff_dst) ? sgout : sg,
1116 template[i].ilen, iv);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001117 ret = crypto_wait_req(enc ? crypto_skcipher_encrypt(req) :
1118 crypto_skcipher_decrypt(req), &wait);
Herbert Xuda7f0332008-07-31 17:08:25 +08001119
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001120 if (ret) {
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001121 pr_err("alg: skcipher%s: %s failed on test %d for %s: ret=%d\n",
1122 d, e, j, algo, -ret);
1123 goto out;
1124 }
Herbert Xuda7f0332008-07-31 17:08:25 +08001125
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001126 q = data;
1127 if (memcmp(q, template[i].result, template[i].rlen)) {
Boris BREZILLON8a826a32015-06-16 11:46:46 +02001128 pr_err("alg: skcipher%s: Test %d failed (invalid result) on %s for %s\n",
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001129 d, j, e, algo);
1130 hexdump(q, template[i].rlen);
1131 ret = -EINVAL;
1132 goto out;
Herbert Xuda7f0332008-07-31 17:08:25 +08001133 }
Boris BREZILLON8a826a32015-06-16 11:46:46 +02001134
1135 if (template[i].iv_out &&
1136 memcmp(iv, template[i].iv_out,
1137 crypto_skcipher_ivsize(tfm))) {
1138 pr_err("alg: skcipher%s: Test %d failed (invalid output IV) on %s for %s\n",
1139 d, j, e, algo);
1140 hexdump(iv, crypto_skcipher_ivsize(tfm));
1141 ret = -EINVAL;
1142 goto out;
1143 }
Herbert Xuda7f0332008-07-31 17:08:25 +08001144 }
1145
1146 j = 0;
1147 for (i = 0; i < tcount; i++) {
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03001148 /* alignment tests are only done with continuous buffers */
1149 if (align_offset != 0)
1150 break;
Herbert Xuda7f0332008-07-31 17:08:25 +08001151
Cristian Stoicabbb9a7d2014-08-08 14:27:52 +03001152 if (!template[i].np)
1153 continue;
1154
Stephan Mueller10faa8c2016-08-25 15:15:01 +02001155 if (fips_enabled && template[i].fips_skip)
1156 continue;
1157
Herbert Xuda7f0332008-07-31 17:08:25 +08001158 if (template[i].iv)
Andrey Ryabinin84cba172015-09-10 13:11:55 +03001159 memcpy(iv, template[i].iv, ivsize);
Herbert Xuda7f0332008-07-31 17:08:25 +08001160 else
1161 memset(iv, 0, MAX_IVLEN);
1162
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001163 j++;
Herbert Xu12773d92015-08-20 15:21:46 +08001164 crypto_skcipher_clear_flags(tfm, ~0);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001165 if (template[i].wk)
Herbert Xu12773d92015-08-20 15:21:46 +08001166 crypto_skcipher_set_flags(tfm,
1167 CRYPTO_TFM_REQ_WEAK_KEY);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001168
Herbert Xu12773d92015-08-20 15:21:46 +08001169 ret = crypto_skcipher_setkey(tfm, template[i].key,
1170 template[i].klen);
Yanjiang Jin0fae0c12016-07-29 16:32:09 +08001171 if (template[i].fail == !ret) {
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001172 pr_err("alg: skcipher%s: setkey failed on chunk test %d for %s: flags=%x\n",
Herbert Xu12773d92015-08-20 15:21:46 +08001173 d, j, algo, crypto_skcipher_get_flags(tfm));
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001174 goto out;
1175 } else if (ret)
1176 continue;
1177
1178 temp = 0;
1179 ret = -EINVAL;
1180 sg_init_table(sg, template[i].np);
1181 if (diff_dst)
1182 sg_init_table(sgout, template[i].np);
1183 for (k = 0; k < template[i].np; k++) {
1184 if (WARN_ON(offset_in_page(IDX[k]) +
1185 template[i].tap[k] > PAGE_SIZE))
Herbert Xuda7f0332008-07-31 17:08:25 +08001186 goto out;
Herbert Xuda7f0332008-07-31 17:08:25 +08001187
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001188 q = xbuf[IDX[k] >> PAGE_SHIFT] + offset_in_page(IDX[k]);
1189
1190 memcpy(q, template[i].input + temp, template[i].tap[k]);
1191
1192 if (offset_in_page(q) + template[i].tap[k] < PAGE_SIZE)
1193 q[template[i].tap[k]] = 0;
1194
1195 sg_set_buf(&sg[k], q, template[i].tap[k]);
1196 if (diff_dst) {
1197 q = xoutbuf[IDX[k] >> PAGE_SHIFT] +
1198 offset_in_page(IDX[k]);
1199
1200 sg_set_buf(&sgout[k], q, template[i].tap[k]);
1201
1202 memset(q, 0, template[i].tap[k]);
1203 if (offset_in_page(q) +
1204 template[i].tap[k] < PAGE_SIZE)
1205 q[template[i].tap[k]] = 0;
1206 }
1207
1208 temp += template[i].tap[k];
1209 }
1210
Herbert Xu12773d92015-08-20 15:21:46 +08001211 skcipher_request_set_crypt(req, sg, (diff_dst) ? sgout : sg,
1212 template[i].ilen, iv);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001213
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001214 ret = crypto_wait_req(enc ? crypto_skcipher_encrypt(req) :
1215 crypto_skcipher_decrypt(req), &wait);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001216
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001217 if (ret) {
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001218 pr_err("alg: skcipher%s: %s failed on chunk test %d for %s: ret=%d\n",
1219 d, e, j, algo, -ret);
1220 goto out;
1221 }
1222
1223 temp = 0;
1224 ret = -EINVAL;
1225 for (k = 0; k < template[i].np; k++) {
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001226 if (diff_dst)
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001227 q = xoutbuf[IDX[k] >> PAGE_SHIFT] +
1228 offset_in_page(IDX[k]);
1229 else
Herbert Xuda7f0332008-07-31 17:08:25 +08001230 q = xbuf[IDX[k] >> PAGE_SHIFT] +
1231 offset_in_page(IDX[k]);
1232
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001233 if (memcmp(q, template[i].result + temp,
1234 template[i].tap[k])) {
1235 pr_err("alg: skcipher%s: Chunk test %d failed on %s at page %u for %s\n",
1236 d, j, e, k, algo);
1237 hexdump(q, template[i].tap[k]);
Herbert Xuda7f0332008-07-31 17:08:25 +08001238 goto out;
1239 }
1240
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001241 q += template[i].tap[k];
1242 for (n = 0; offset_in_page(q + n) && q[n]; n++)
1243 ;
1244 if (n) {
1245 pr_err("alg: skcipher%s: Result buffer corruption in chunk test %d on %s at page %u for %s: %u bytes:\n",
1246 d, j, e, k, algo, n);
1247 hexdump(q, n);
1248 goto out;
Herbert Xuda7f0332008-07-31 17:08:25 +08001249 }
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001250 temp += template[i].tap[k];
Herbert Xuda7f0332008-07-31 17:08:25 +08001251 }
1252 }
1253
1254 ret = 0;
1255
1256out:
Herbert Xu12773d92015-08-20 15:21:46 +08001257 skcipher_request_free(req);
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001258 if (diff_dst)
1259 testmgr_free_buf(xoutbuf);
1260out_nooutbuf:
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08001261 testmgr_free_buf(xbuf);
1262out_nobuf:
Herbert Xuda7f0332008-07-31 17:08:25 +08001263 return ret;
1264}
1265
Herbert Xu12773d92015-08-20 15:21:46 +08001266static int test_skcipher(struct crypto_skcipher *tfm, int enc,
Eric Biggersb13b1e02017-02-24 15:46:59 -08001267 const struct cipher_testvec *template,
1268 unsigned int tcount)
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001269{
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03001270 unsigned int alignmask;
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001271 int ret;
1272
1273 /* test 'dst == src' case */
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03001274 ret = __test_skcipher(tfm, enc, template, tcount, false, 0);
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001275 if (ret)
1276 return ret;
1277
1278 /* test 'dst != src' case */
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03001279 ret = __test_skcipher(tfm, enc, template, tcount, true, 0);
1280 if (ret)
1281 return ret;
1282
1283 /* test unaligned buffers, check with one byte offset */
1284 ret = __test_skcipher(tfm, enc, template, tcount, true, 1);
1285 if (ret)
1286 return ret;
1287
1288 alignmask = crypto_tfm_alg_alignmask(&tfm->base);
1289 if (alignmask) {
1290 /* Check if alignment mask for tfm is correctly set. */
1291 ret = __test_skcipher(tfm, enc, template, tcount, true,
1292 alignmask + 1);
1293 if (ret)
1294 return ret;
1295 }
1296
1297 return 0;
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001298}
1299
Eric Biggersb13b1e02017-02-24 15:46:59 -08001300static int test_comp(struct crypto_comp *tfm,
1301 const struct comp_testvec *ctemplate,
1302 const struct comp_testvec *dtemplate,
1303 int ctcount, int dtcount)
Herbert Xuda7f0332008-07-31 17:08:25 +08001304{
1305 const char *algo = crypto_tfm_alg_driver_name(crypto_comp_tfm(tfm));
1306 unsigned int i;
1307 char result[COMP_BUF_SIZE];
1308 int ret;
1309
1310 for (i = 0; i < ctcount; i++) {
Geert Uytterhoevenc79cf912009-03-29 15:44:19 +08001311 int ilen;
1312 unsigned int dlen = COMP_BUF_SIZE;
Herbert Xuda7f0332008-07-31 17:08:25 +08001313
1314 memset(result, 0, sizeof (result));
1315
1316 ilen = ctemplate[i].inlen;
1317 ret = crypto_comp_compress(tfm, ctemplate[i].input,
1318 ilen, result, &dlen);
1319 if (ret) {
1320 printk(KERN_ERR "alg: comp: compression failed "
1321 "on test %d for %s: ret=%d\n", i + 1, algo,
1322 -ret);
1323 goto out;
1324 }
1325
Geert Uytterhoevenb812eb02008-11-28 20:51:28 +08001326 if (dlen != ctemplate[i].outlen) {
1327 printk(KERN_ERR "alg: comp: Compression test %d "
1328 "failed for %s: output len = %d\n", i + 1, algo,
1329 dlen);
1330 ret = -EINVAL;
1331 goto out;
1332 }
1333
Herbert Xuda7f0332008-07-31 17:08:25 +08001334 if (memcmp(result, ctemplate[i].output, dlen)) {
1335 printk(KERN_ERR "alg: comp: Compression test %d "
1336 "failed for %s\n", i + 1, algo);
1337 hexdump(result, dlen);
1338 ret = -EINVAL;
1339 goto out;
1340 }
1341 }
1342
1343 for (i = 0; i < dtcount; i++) {
Geert Uytterhoevenc79cf912009-03-29 15:44:19 +08001344 int ilen;
1345 unsigned int dlen = COMP_BUF_SIZE;
Herbert Xuda7f0332008-07-31 17:08:25 +08001346
1347 memset(result, 0, sizeof (result));
1348
1349 ilen = dtemplate[i].inlen;
1350 ret = crypto_comp_decompress(tfm, dtemplate[i].input,
1351 ilen, result, &dlen);
1352 if (ret) {
1353 printk(KERN_ERR "alg: comp: decompression failed "
1354 "on test %d for %s: ret=%d\n", i + 1, algo,
1355 -ret);
1356 goto out;
1357 }
1358
Geert Uytterhoevenb812eb02008-11-28 20:51:28 +08001359 if (dlen != dtemplate[i].outlen) {
1360 printk(KERN_ERR "alg: comp: Decompression test %d "
1361 "failed for %s: output len = %d\n", i + 1, algo,
1362 dlen);
1363 ret = -EINVAL;
1364 goto out;
1365 }
1366
Herbert Xuda7f0332008-07-31 17:08:25 +08001367 if (memcmp(result, dtemplate[i].output, dlen)) {
1368 printk(KERN_ERR "alg: comp: Decompression test %d "
1369 "failed for %s\n", i + 1, algo);
1370 hexdump(result, dlen);
1371 ret = -EINVAL;
1372 goto out;
1373 }
1374 }
1375
1376 ret = 0;
1377
1378out:
1379 return ret;
1380}
1381
Eric Biggersb13b1e02017-02-24 15:46:59 -08001382static int test_acomp(struct crypto_acomp *tfm,
1383 const struct comp_testvec *ctemplate,
1384 const struct comp_testvec *dtemplate,
1385 int ctcount, int dtcount)
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001386{
1387 const char *algo = crypto_tfm_alg_driver_name(crypto_acomp_tfm(tfm));
1388 unsigned int i;
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01001389 char *output, *decomp_out;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001390 int ret;
1391 struct scatterlist src, dst;
1392 struct acomp_req *req;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001393 struct crypto_wait wait;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001394
Eric Biggerseb095592016-11-23 10:24:35 -08001395 output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
1396 if (!output)
1397 return -ENOMEM;
1398
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01001399 decomp_out = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
1400 if (!decomp_out) {
1401 kfree(output);
1402 return -ENOMEM;
1403 }
1404
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001405 for (i = 0; i < ctcount; i++) {
1406 unsigned int dlen = COMP_BUF_SIZE;
1407 int ilen = ctemplate[i].inlen;
Laura Abbott02608e02016-12-21 12:32:54 -08001408 void *input_vec;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001409
Eric Biggersd2110222016-12-30 14:12:00 -06001410 input_vec = kmemdup(ctemplate[i].input, ilen, GFP_KERNEL);
Laura Abbott02608e02016-12-21 12:32:54 -08001411 if (!input_vec) {
1412 ret = -ENOMEM;
1413 goto out;
1414 }
1415
Eric Biggerseb095592016-11-23 10:24:35 -08001416 memset(output, 0, dlen);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001417 crypto_init_wait(&wait);
Laura Abbott02608e02016-12-21 12:32:54 -08001418 sg_init_one(&src, input_vec, ilen);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001419 sg_init_one(&dst, output, dlen);
1420
1421 req = acomp_request_alloc(tfm);
1422 if (!req) {
1423 pr_err("alg: acomp: request alloc failed for %s\n",
1424 algo);
Laura Abbott02608e02016-12-21 12:32:54 -08001425 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001426 ret = -ENOMEM;
1427 goto out;
1428 }
1429
1430 acomp_request_set_params(req, &src, &dst, ilen, dlen);
1431 acomp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001432 crypto_req_done, &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001433
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001434 ret = crypto_wait_req(crypto_acomp_compress(req), &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001435 if (ret) {
1436 pr_err("alg: acomp: compression failed on test %d for %s: ret=%d\n",
1437 i + 1, algo, -ret);
Laura Abbott02608e02016-12-21 12:32:54 -08001438 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001439 acomp_request_free(req);
1440 goto out;
1441 }
1442
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01001443 ilen = req->dlen;
1444 dlen = COMP_BUF_SIZE;
1445 sg_init_one(&src, output, ilen);
1446 sg_init_one(&dst, decomp_out, dlen);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001447 crypto_init_wait(&wait);
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01001448 acomp_request_set_params(req, &src, &dst, ilen, dlen);
1449
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001450 ret = crypto_wait_req(crypto_acomp_decompress(req), &wait);
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01001451 if (ret) {
1452 pr_err("alg: acomp: compression failed on test %d for %s: ret=%d\n",
1453 i + 1, algo, -ret);
1454 kfree(input_vec);
1455 acomp_request_free(req);
1456 goto out;
1457 }
1458
1459 if (req->dlen != ctemplate[i].inlen) {
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001460 pr_err("alg: acomp: Compression test %d failed for %s: output len = %d\n",
1461 i + 1, algo, req->dlen);
1462 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08001463 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001464 acomp_request_free(req);
1465 goto out;
1466 }
1467
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01001468 if (memcmp(input_vec, decomp_out, req->dlen)) {
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001469 pr_err("alg: acomp: Compression test %d failed for %s\n",
1470 i + 1, algo);
1471 hexdump(output, req->dlen);
1472 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08001473 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001474 acomp_request_free(req);
1475 goto out;
1476 }
1477
Laura Abbott02608e02016-12-21 12:32:54 -08001478 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001479 acomp_request_free(req);
1480 }
1481
1482 for (i = 0; i < dtcount; i++) {
1483 unsigned int dlen = COMP_BUF_SIZE;
1484 int ilen = dtemplate[i].inlen;
Laura Abbott02608e02016-12-21 12:32:54 -08001485 void *input_vec;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001486
Eric Biggersd2110222016-12-30 14:12:00 -06001487 input_vec = kmemdup(dtemplate[i].input, ilen, GFP_KERNEL);
Laura Abbott02608e02016-12-21 12:32:54 -08001488 if (!input_vec) {
1489 ret = -ENOMEM;
1490 goto out;
1491 }
1492
Eric Biggerseb095592016-11-23 10:24:35 -08001493 memset(output, 0, dlen);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001494 crypto_init_wait(&wait);
Laura Abbott02608e02016-12-21 12:32:54 -08001495 sg_init_one(&src, input_vec, ilen);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001496 sg_init_one(&dst, output, dlen);
1497
1498 req = acomp_request_alloc(tfm);
1499 if (!req) {
1500 pr_err("alg: acomp: request alloc failed for %s\n",
1501 algo);
Laura Abbott02608e02016-12-21 12:32:54 -08001502 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001503 ret = -ENOMEM;
1504 goto out;
1505 }
1506
1507 acomp_request_set_params(req, &src, &dst, ilen, dlen);
1508 acomp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001509 crypto_req_done, &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001510
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001511 ret = crypto_wait_req(crypto_acomp_decompress(req), &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001512 if (ret) {
1513 pr_err("alg: acomp: decompression failed on test %d for %s: ret=%d\n",
1514 i + 1, algo, -ret);
Laura Abbott02608e02016-12-21 12:32:54 -08001515 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001516 acomp_request_free(req);
1517 goto out;
1518 }
1519
1520 if (req->dlen != dtemplate[i].outlen) {
1521 pr_err("alg: acomp: Decompression test %d failed for %s: output len = %d\n",
1522 i + 1, algo, req->dlen);
1523 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08001524 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001525 acomp_request_free(req);
1526 goto out;
1527 }
1528
1529 if (memcmp(output, dtemplate[i].output, req->dlen)) {
1530 pr_err("alg: acomp: Decompression test %d failed for %s\n",
1531 i + 1, algo);
1532 hexdump(output, req->dlen);
1533 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08001534 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001535 acomp_request_free(req);
1536 goto out;
1537 }
1538
Laura Abbott02608e02016-12-21 12:32:54 -08001539 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001540 acomp_request_free(req);
1541 }
1542
1543 ret = 0;
1544
1545out:
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01001546 kfree(decomp_out);
Eric Biggerseb095592016-11-23 10:24:35 -08001547 kfree(output);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001548 return ret;
1549}
1550
Eric Biggersb13b1e02017-02-24 15:46:59 -08001551static int test_cprng(struct crypto_rng *tfm,
1552 const struct cprng_testvec *template,
Jarod Wilson7647d6c2009-05-04 19:44:50 +08001553 unsigned int tcount)
1554{
1555 const char *algo = crypto_tfm_alg_driver_name(crypto_rng_tfm(tfm));
Felipe Contrerasfa4ef8a2009-10-27 19:04:42 +08001556 int err = 0, i, j, seedsize;
Jarod Wilson7647d6c2009-05-04 19:44:50 +08001557 u8 *seed;
1558 char result[32];
1559
1560 seedsize = crypto_rng_seedsize(tfm);
1561
1562 seed = kmalloc(seedsize, GFP_KERNEL);
1563 if (!seed) {
1564 printk(KERN_ERR "alg: cprng: Failed to allocate seed space "
1565 "for %s\n", algo);
1566 return -ENOMEM;
1567 }
1568
1569 for (i = 0; i < tcount; i++) {
1570 memset(result, 0, 32);
1571
1572 memcpy(seed, template[i].v, template[i].vlen);
1573 memcpy(seed + template[i].vlen, template[i].key,
1574 template[i].klen);
1575 memcpy(seed + template[i].vlen + template[i].klen,
1576 template[i].dt, template[i].dtlen);
1577
1578 err = crypto_rng_reset(tfm, seed, seedsize);
1579 if (err) {
1580 printk(KERN_ERR "alg: cprng: Failed to reset rng "
1581 "for %s\n", algo);
1582 goto out;
1583 }
1584
1585 for (j = 0; j < template[i].loops; j++) {
1586 err = crypto_rng_get_bytes(tfm, result,
1587 template[i].rlen);
Stephan Mueller19e60e12015-03-10 17:00:36 +01001588 if (err < 0) {
Jarod Wilson7647d6c2009-05-04 19:44:50 +08001589 printk(KERN_ERR "alg: cprng: Failed to obtain "
1590 "the correct amount of random data for "
Stephan Mueller19e60e12015-03-10 17:00:36 +01001591 "%s (requested %d)\n", algo,
1592 template[i].rlen);
Jarod Wilson7647d6c2009-05-04 19:44:50 +08001593 goto out;
1594 }
1595 }
1596
1597 err = memcmp(result, template[i].result,
1598 template[i].rlen);
1599 if (err) {
1600 printk(KERN_ERR "alg: cprng: Test %d failed for %s\n",
1601 i, algo);
1602 hexdump(result, template[i].rlen);
1603 err = -EINVAL;
1604 goto out;
1605 }
1606 }
1607
1608out:
1609 kfree(seed);
1610 return err;
1611}
1612
Herbert Xuda7f0332008-07-31 17:08:25 +08001613static int alg_test_aead(const struct alg_test_desc *desc, const char *driver,
1614 u32 type, u32 mask)
1615{
1616 struct crypto_aead *tfm;
1617 int err = 0;
1618
Herbert Xueed93e02016-11-22 20:08:31 +08001619 tfm = crypto_alloc_aead(driver, type, mask);
Herbert Xuda7f0332008-07-31 17:08:25 +08001620 if (IS_ERR(tfm)) {
1621 printk(KERN_ERR "alg: aead: Failed to load transform for %s: "
1622 "%ld\n", driver, PTR_ERR(tfm));
1623 return PTR_ERR(tfm);
1624 }
1625
1626 if (desc->suite.aead.enc.vecs) {
1627 err = test_aead(tfm, ENCRYPT, desc->suite.aead.enc.vecs,
1628 desc->suite.aead.enc.count);
1629 if (err)
1630 goto out;
1631 }
1632
1633 if (!err && desc->suite.aead.dec.vecs)
1634 err = test_aead(tfm, DECRYPT, desc->suite.aead.dec.vecs,
1635 desc->suite.aead.dec.count);
1636
1637out:
1638 crypto_free_aead(tfm);
1639 return err;
1640}
1641
1642static int alg_test_cipher(const struct alg_test_desc *desc,
1643 const char *driver, u32 type, u32 mask)
1644{
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001645 struct crypto_cipher *tfm;
Herbert Xuda7f0332008-07-31 17:08:25 +08001646 int err = 0;
1647
Herbert Xueed93e02016-11-22 20:08:31 +08001648 tfm = crypto_alloc_cipher(driver, type, mask);
Herbert Xuda7f0332008-07-31 17:08:25 +08001649 if (IS_ERR(tfm)) {
1650 printk(KERN_ERR "alg: cipher: Failed to load transform for "
1651 "%s: %ld\n", driver, PTR_ERR(tfm));
1652 return PTR_ERR(tfm);
1653 }
1654
1655 if (desc->suite.cipher.enc.vecs) {
1656 err = test_cipher(tfm, ENCRYPT, desc->suite.cipher.enc.vecs,
1657 desc->suite.cipher.enc.count);
1658 if (err)
1659 goto out;
1660 }
1661
1662 if (desc->suite.cipher.dec.vecs)
1663 err = test_cipher(tfm, DECRYPT, desc->suite.cipher.dec.vecs,
1664 desc->suite.cipher.dec.count);
1665
1666out:
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001667 crypto_free_cipher(tfm);
1668 return err;
1669}
1670
1671static int alg_test_skcipher(const struct alg_test_desc *desc,
1672 const char *driver, u32 type, u32 mask)
1673{
Herbert Xu12773d92015-08-20 15:21:46 +08001674 struct crypto_skcipher *tfm;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001675 int err = 0;
1676
Herbert Xueed93e02016-11-22 20:08:31 +08001677 tfm = crypto_alloc_skcipher(driver, type, mask);
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001678 if (IS_ERR(tfm)) {
1679 printk(KERN_ERR "alg: skcipher: Failed to load transform for "
1680 "%s: %ld\n", driver, PTR_ERR(tfm));
1681 return PTR_ERR(tfm);
1682 }
1683
1684 if (desc->suite.cipher.enc.vecs) {
1685 err = test_skcipher(tfm, ENCRYPT, desc->suite.cipher.enc.vecs,
1686 desc->suite.cipher.enc.count);
1687 if (err)
1688 goto out;
1689 }
1690
1691 if (desc->suite.cipher.dec.vecs)
1692 err = test_skcipher(tfm, DECRYPT, desc->suite.cipher.dec.vecs,
1693 desc->suite.cipher.dec.count);
1694
1695out:
Herbert Xu12773d92015-08-20 15:21:46 +08001696 crypto_free_skcipher(tfm);
Herbert Xuda7f0332008-07-31 17:08:25 +08001697 return err;
1698}
1699
1700static int alg_test_comp(const struct alg_test_desc *desc, const char *driver,
1701 u32 type, u32 mask)
1702{
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001703 struct crypto_comp *comp;
1704 struct crypto_acomp *acomp;
Herbert Xuda7f0332008-07-31 17:08:25 +08001705 int err;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001706 u32 algo_type = type & CRYPTO_ALG_TYPE_ACOMPRESS_MASK;
Herbert Xuda7f0332008-07-31 17:08:25 +08001707
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001708 if (algo_type == CRYPTO_ALG_TYPE_ACOMPRESS) {
1709 acomp = crypto_alloc_acomp(driver, type, mask);
1710 if (IS_ERR(acomp)) {
1711 pr_err("alg: acomp: Failed to load transform for %s: %ld\n",
1712 driver, PTR_ERR(acomp));
1713 return PTR_ERR(acomp);
1714 }
1715 err = test_acomp(acomp, desc->suite.comp.comp.vecs,
1716 desc->suite.comp.decomp.vecs,
1717 desc->suite.comp.comp.count,
1718 desc->suite.comp.decomp.count);
1719 crypto_free_acomp(acomp);
1720 } else {
1721 comp = crypto_alloc_comp(driver, type, mask);
1722 if (IS_ERR(comp)) {
1723 pr_err("alg: comp: Failed to load transform for %s: %ld\n",
1724 driver, PTR_ERR(comp));
1725 return PTR_ERR(comp);
1726 }
1727
1728 err = test_comp(comp, desc->suite.comp.comp.vecs,
1729 desc->suite.comp.decomp.vecs,
1730 desc->suite.comp.comp.count,
1731 desc->suite.comp.decomp.count);
1732
1733 crypto_free_comp(comp);
Herbert Xuda7f0332008-07-31 17:08:25 +08001734 }
Herbert Xuda7f0332008-07-31 17:08:25 +08001735 return err;
1736}
1737
1738static int alg_test_hash(const struct alg_test_desc *desc, const char *driver,
1739 u32 type, u32 mask)
1740{
1741 struct crypto_ahash *tfm;
1742 int err;
1743
Herbert Xueed93e02016-11-22 20:08:31 +08001744 tfm = crypto_alloc_ahash(driver, type, mask);
Herbert Xuda7f0332008-07-31 17:08:25 +08001745 if (IS_ERR(tfm)) {
1746 printk(KERN_ERR "alg: hash: Failed to load transform for %s: "
1747 "%ld\n", driver, PTR_ERR(tfm));
1748 return PTR_ERR(tfm);
1749 }
1750
David S. Millera8f1a052010-05-19 14:12:03 +10001751 err = test_hash(tfm, desc->suite.hash.vecs,
1752 desc->suite.hash.count, true);
1753 if (!err)
1754 err = test_hash(tfm, desc->suite.hash.vecs,
1755 desc->suite.hash.count, false);
Herbert Xuda7f0332008-07-31 17:08:25 +08001756
1757 crypto_free_ahash(tfm);
1758 return err;
1759}
1760
Herbert Xu8e3ee852008-11-07 14:58:52 +08001761static int alg_test_crc32c(const struct alg_test_desc *desc,
1762 const char *driver, u32 type, u32 mask)
1763{
1764 struct crypto_shash *tfm;
1765 u32 val;
1766 int err;
1767
1768 err = alg_test_hash(desc, driver, type, mask);
1769 if (err)
1770 goto out;
1771
Herbert Xueed93e02016-11-22 20:08:31 +08001772 tfm = crypto_alloc_shash(driver, type, mask);
Herbert Xu8e3ee852008-11-07 14:58:52 +08001773 if (IS_ERR(tfm)) {
1774 printk(KERN_ERR "alg: crc32c: Failed to load transform for %s: "
1775 "%ld\n", driver, PTR_ERR(tfm));
1776 err = PTR_ERR(tfm);
1777 goto out;
1778 }
1779
1780 do {
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02001781 SHASH_DESC_ON_STACK(shash, tfm);
1782 u32 *ctx = (u32 *)shash_desc_ctx(shash);
Herbert Xu8e3ee852008-11-07 14:58:52 +08001783
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02001784 shash->tfm = tfm;
1785 shash->flags = 0;
Herbert Xu8e3ee852008-11-07 14:58:52 +08001786
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02001787 *ctx = le32_to_cpu(420553207);
1788 err = crypto_shash_final(shash, (u8 *)&val);
Herbert Xu8e3ee852008-11-07 14:58:52 +08001789 if (err) {
1790 printk(KERN_ERR "alg: crc32c: Operation failed for "
1791 "%s: %d\n", driver, err);
1792 break;
1793 }
1794
1795 if (val != ~420553207) {
1796 printk(KERN_ERR "alg: crc32c: Test failed for %s: "
1797 "%d\n", driver, val);
1798 err = -EINVAL;
1799 }
1800 } while (0);
1801
1802 crypto_free_shash(tfm);
1803
1804out:
1805 return err;
1806}
1807
Jarod Wilson7647d6c2009-05-04 19:44:50 +08001808static int alg_test_cprng(const struct alg_test_desc *desc, const char *driver,
1809 u32 type, u32 mask)
1810{
1811 struct crypto_rng *rng;
1812 int err;
1813
Herbert Xueed93e02016-11-22 20:08:31 +08001814 rng = crypto_alloc_rng(driver, type, mask);
Jarod Wilson7647d6c2009-05-04 19:44:50 +08001815 if (IS_ERR(rng)) {
1816 printk(KERN_ERR "alg: cprng: Failed to load transform for %s: "
1817 "%ld\n", driver, PTR_ERR(rng));
1818 return PTR_ERR(rng);
1819 }
1820
1821 err = test_cprng(rng, desc->suite.cprng.vecs, desc->suite.cprng.count);
1822
1823 crypto_free_rng(rng);
1824
1825 return err;
1826}
1827
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001828
Eric Biggersb13b1e02017-02-24 15:46:59 -08001829static int drbg_cavs_test(const struct drbg_testvec *test, int pr,
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001830 const char *driver, u32 type, u32 mask)
1831{
1832 int ret = -EAGAIN;
1833 struct crypto_rng *drng;
1834 struct drbg_test_data test_data;
1835 struct drbg_string addtl, pers, testentropy;
1836 unsigned char *buf = kzalloc(test->expectedlen, GFP_KERNEL);
1837
1838 if (!buf)
1839 return -ENOMEM;
1840
Herbert Xueed93e02016-11-22 20:08:31 +08001841 drng = crypto_alloc_rng(driver, type, mask);
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001842 if (IS_ERR(drng)) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04001843 printk(KERN_ERR "alg: drbg: could not allocate DRNG handle for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001844 "%s\n", driver);
1845 kzfree(buf);
1846 return -ENOMEM;
1847 }
1848
1849 test_data.testentropy = &testentropy;
1850 drbg_string_fill(&testentropy, test->entropy, test->entropylen);
1851 drbg_string_fill(&pers, test->pers, test->perslen);
1852 ret = crypto_drbg_reset_test(drng, &pers, &test_data);
1853 if (ret) {
1854 printk(KERN_ERR "alg: drbg: Failed to reset rng\n");
1855 goto outbuf;
1856 }
1857
1858 drbg_string_fill(&addtl, test->addtla, test->addtllen);
1859 if (pr) {
1860 drbg_string_fill(&testentropy, test->entpra, test->entprlen);
1861 ret = crypto_drbg_get_bytes_addtl_test(drng,
1862 buf, test->expectedlen, &addtl, &test_data);
1863 } else {
1864 ret = crypto_drbg_get_bytes_addtl(drng,
1865 buf, test->expectedlen, &addtl);
1866 }
Stephan Mueller19e60e12015-03-10 17:00:36 +01001867 if (ret < 0) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04001868 printk(KERN_ERR "alg: drbg: could not obtain random data for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001869 "driver %s\n", driver);
1870 goto outbuf;
1871 }
1872
1873 drbg_string_fill(&addtl, test->addtlb, test->addtllen);
1874 if (pr) {
1875 drbg_string_fill(&testentropy, test->entprb, test->entprlen);
1876 ret = crypto_drbg_get_bytes_addtl_test(drng,
1877 buf, test->expectedlen, &addtl, &test_data);
1878 } else {
1879 ret = crypto_drbg_get_bytes_addtl(drng,
1880 buf, test->expectedlen, &addtl);
1881 }
Stephan Mueller19e60e12015-03-10 17:00:36 +01001882 if (ret < 0) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04001883 printk(KERN_ERR "alg: drbg: could not obtain random data for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001884 "driver %s\n", driver);
1885 goto outbuf;
1886 }
1887
1888 ret = memcmp(test->expected, buf, test->expectedlen);
1889
1890outbuf:
1891 crypto_free_rng(drng);
1892 kzfree(buf);
1893 return ret;
1894}
1895
1896
1897static int alg_test_drbg(const struct alg_test_desc *desc, const char *driver,
1898 u32 type, u32 mask)
1899{
1900 int err = 0;
1901 int pr = 0;
1902 int i = 0;
Eric Biggersb13b1e02017-02-24 15:46:59 -08001903 const struct drbg_testvec *template = desc->suite.drbg.vecs;
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001904 unsigned int tcount = desc->suite.drbg.count;
1905
1906 if (0 == memcmp(driver, "drbg_pr_", 8))
1907 pr = 1;
1908
1909 for (i = 0; i < tcount; i++) {
1910 err = drbg_cavs_test(&template[i], pr, driver, type, mask);
1911 if (err) {
1912 printk(KERN_ERR "alg: drbg: Test %d failed for %s\n",
1913 i, driver);
1914 err = -EINVAL;
1915 break;
1916 }
1917 }
1918 return err;
1919
1920}
1921
Eric Biggersb13b1e02017-02-24 15:46:59 -08001922static int do_test_kpp(struct crypto_kpp *tfm, const struct kpp_testvec *vec,
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01001923 const char *alg)
1924{
1925 struct kpp_request *req;
1926 void *input_buf = NULL;
1927 void *output_buf = NULL;
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03001928 void *a_public = NULL;
1929 void *a_ss = NULL;
1930 void *shared_secret = NULL;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001931 struct crypto_wait wait;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01001932 unsigned int out_len_max;
1933 int err = -ENOMEM;
1934 struct scatterlist src, dst;
1935
1936 req = kpp_request_alloc(tfm, GFP_KERNEL);
1937 if (!req)
1938 return err;
1939
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001940 crypto_init_wait(&wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01001941
1942 err = crypto_kpp_set_secret(tfm, vec->secret, vec->secret_size);
1943 if (err < 0)
1944 goto free_req;
1945
1946 out_len_max = crypto_kpp_maxsize(tfm);
1947 output_buf = kzalloc(out_len_max, GFP_KERNEL);
1948 if (!output_buf) {
1949 err = -ENOMEM;
1950 goto free_req;
1951 }
1952
1953 /* Use appropriate parameter as base */
1954 kpp_request_set_input(req, NULL, 0);
1955 sg_init_one(&dst, output_buf, out_len_max);
1956 kpp_request_set_output(req, &dst, out_len_max);
1957 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001958 crypto_req_done, &wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01001959
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03001960 /* Compute party A's public key */
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001961 err = crypto_wait_req(crypto_kpp_generate_public_key(req), &wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01001962 if (err) {
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03001963 pr_err("alg: %s: Party A: generate public key test failed. err %d\n",
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01001964 alg, err);
1965 goto free_output;
1966 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03001967
1968 if (vec->genkey) {
1969 /* Save party A's public key */
1970 a_public = kzalloc(out_len_max, GFP_KERNEL);
1971 if (!a_public) {
1972 err = -ENOMEM;
1973 goto free_output;
1974 }
1975 memcpy(a_public, sg_virt(req->dst), out_len_max);
1976 } else {
1977 /* Verify calculated public key */
1978 if (memcmp(vec->expected_a_public, sg_virt(req->dst),
1979 vec->expected_a_public_size)) {
1980 pr_err("alg: %s: Party A: generate public key test failed. Invalid output\n",
1981 alg);
1982 err = -EINVAL;
1983 goto free_output;
1984 }
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01001985 }
1986
1987 /* Calculate shared secret key by using counter part (b) public key. */
1988 input_buf = kzalloc(vec->b_public_size, GFP_KERNEL);
1989 if (!input_buf) {
1990 err = -ENOMEM;
1991 goto free_output;
1992 }
1993
1994 memcpy(input_buf, vec->b_public, vec->b_public_size);
1995 sg_init_one(&src, input_buf, vec->b_public_size);
1996 sg_init_one(&dst, output_buf, out_len_max);
1997 kpp_request_set_input(req, &src, vec->b_public_size);
1998 kpp_request_set_output(req, &dst, out_len_max);
1999 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002000 crypto_req_done, &wait);
2001 err = crypto_wait_req(crypto_kpp_compute_shared_secret(req), &wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002002 if (err) {
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002003 pr_err("alg: %s: Party A: compute shared secret test failed. err %d\n",
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002004 alg, err);
2005 goto free_all;
2006 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002007
2008 if (vec->genkey) {
2009 /* Save the shared secret obtained by party A */
2010 a_ss = kzalloc(vec->expected_ss_size, GFP_KERNEL);
2011 if (!a_ss) {
2012 err = -ENOMEM;
2013 goto free_all;
2014 }
2015 memcpy(a_ss, sg_virt(req->dst), vec->expected_ss_size);
2016
2017 /*
2018 * Calculate party B's shared secret by using party A's
2019 * public key.
2020 */
2021 err = crypto_kpp_set_secret(tfm, vec->b_secret,
2022 vec->b_secret_size);
2023 if (err < 0)
2024 goto free_all;
2025
2026 sg_init_one(&src, a_public, vec->expected_a_public_size);
2027 sg_init_one(&dst, output_buf, out_len_max);
2028 kpp_request_set_input(req, &src, vec->expected_a_public_size);
2029 kpp_request_set_output(req, &dst, out_len_max);
2030 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002031 crypto_req_done, &wait);
2032 err = crypto_wait_req(crypto_kpp_compute_shared_secret(req),
2033 &wait);
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002034 if (err) {
2035 pr_err("alg: %s: Party B: compute shared secret failed. err %d\n",
2036 alg, err);
2037 goto free_all;
2038 }
2039
2040 shared_secret = a_ss;
2041 } else {
2042 shared_secret = (void *)vec->expected_ss;
2043 }
2044
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002045 /*
2046 * verify shared secret from which the user will derive
2047 * secret key by executing whatever hash it has chosen
2048 */
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002049 if (memcmp(shared_secret, sg_virt(req->dst),
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002050 vec->expected_ss_size)) {
2051 pr_err("alg: %s: compute shared secret test failed. Invalid output\n",
2052 alg);
2053 err = -EINVAL;
2054 }
2055
2056free_all:
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002057 kfree(a_ss);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002058 kfree(input_buf);
2059free_output:
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002060 kfree(a_public);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002061 kfree(output_buf);
2062free_req:
2063 kpp_request_free(req);
2064 return err;
2065}
2066
2067static int test_kpp(struct crypto_kpp *tfm, const char *alg,
Eric Biggersb13b1e02017-02-24 15:46:59 -08002068 const struct kpp_testvec *vecs, unsigned int tcount)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002069{
2070 int ret, i;
2071
2072 for (i = 0; i < tcount; i++) {
2073 ret = do_test_kpp(tfm, vecs++, alg);
2074 if (ret) {
2075 pr_err("alg: %s: test failed on vector %d, err=%d\n",
2076 alg, i + 1, ret);
2077 return ret;
2078 }
2079 }
2080 return 0;
2081}
2082
2083static int alg_test_kpp(const struct alg_test_desc *desc, const char *driver,
2084 u32 type, u32 mask)
2085{
2086 struct crypto_kpp *tfm;
2087 int err = 0;
2088
Herbert Xueed93e02016-11-22 20:08:31 +08002089 tfm = crypto_alloc_kpp(driver, type, mask);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002090 if (IS_ERR(tfm)) {
2091 pr_err("alg: kpp: Failed to load tfm for %s: %ld\n",
2092 driver, PTR_ERR(tfm));
2093 return PTR_ERR(tfm);
2094 }
2095 if (desc->suite.kpp.vecs)
2096 err = test_kpp(tfm, desc->alg, desc->suite.kpp.vecs,
2097 desc->suite.kpp.count);
2098
2099 crypto_free_kpp(tfm);
2100 return err;
2101}
2102
Herbert Xu50d2b6432016-06-29 19:32:20 +08002103static int test_akcipher_one(struct crypto_akcipher *tfm,
Eric Biggersb13b1e02017-02-24 15:46:59 -08002104 const struct akcipher_testvec *vecs)
Tadeusz Struk946cc462015-06-16 10:31:06 -07002105{
Herbert Xudf27b262016-05-05 16:42:49 +08002106 char *xbuf[XBUFSIZE];
Tadeusz Struk946cc462015-06-16 10:31:06 -07002107 struct akcipher_request *req;
2108 void *outbuf_enc = NULL;
2109 void *outbuf_dec = NULL;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002110 struct crypto_wait wait;
Tadeusz Struk946cc462015-06-16 10:31:06 -07002111 unsigned int out_len_max, out_len = 0;
2112 int err = -ENOMEM;
Tadeusz Struk22287b02015-10-08 09:26:55 -07002113 struct scatterlist src, dst, src_tab[2];
Tadeusz Struk946cc462015-06-16 10:31:06 -07002114
Herbert Xudf27b262016-05-05 16:42:49 +08002115 if (testmgr_alloc_buf(xbuf))
2116 return err;
2117
Tadeusz Struk946cc462015-06-16 10:31:06 -07002118 req = akcipher_request_alloc(tfm, GFP_KERNEL);
2119 if (!req)
Herbert Xudf27b262016-05-05 16:42:49 +08002120 goto free_xbuf;
Tadeusz Struk946cc462015-06-16 10:31:06 -07002121
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002122 crypto_init_wait(&wait);
Tadeusz Struk22287b02015-10-08 09:26:55 -07002123
2124 if (vecs->public_key_vec)
2125 err = crypto_akcipher_set_pub_key(tfm, vecs->key,
2126 vecs->key_len);
2127 else
2128 err = crypto_akcipher_set_priv_key(tfm, vecs->key,
2129 vecs->key_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002130 if (err)
2131 goto free_req;
2132
Salvatore Benedetto57763f52016-07-04 10:52:34 +01002133 err = -ENOMEM;
Tadeusz Struk22287b02015-10-08 09:26:55 -07002134 out_len_max = crypto_akcipher_maxsize(tfm);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002135 outbuf_enc = kzalloc(out_len_max, GFP_KERNEL);
2136 if (!outbuf_enc)
2137 goto free_req;
2138
Herbert Xudf27b262016-05-05 16:42:49 +08002139 if (WARN_ON(vecs->m_size > PAGE_SIZE))
2140 goto free_all;
2141
2142 memcpy(xbuf[0], vecs->m, vecs->m_size);
2143
Tadeusz Struk22287b02015-10-08 09:26:55 -07002144 sg_init_table(src_tab, 2);
Herbert Xudf27b262016-05-05 16:42:49 +08002145 sg_set_buf(&src_tab[0], xbuf[0], 8);
2146 sg_set_buf(&src_tab[1], xbuf[0] + 8, vecs->m_size - 8);
Tadeusz Struk22287b02015-10-08 09:26:55 -07002147 sg_init_one(&dst, outbuf_enc, out_len_max);
2148 akcipher_request_set_crypt(req, src_tab, &dst, vecs->m_size,
2149 out_len_max);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002150 akcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002151 crypto_req_done, &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002152
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002153 err = crypto_wait_req(vecs->siggen_sigver_test ?
2154 /* Run asymmetric signature generation */
2155 crypto_akcipher_sign(req) :
2156 /* Run asymmetric encrypt */
2157 crypto_akcipher_encrypt(req), &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002158 if (err) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002159 pr_err("alg: akcipher: encrypt test failed. err %d\n", err);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002160 goto free_all;
2161 }
Tadeusz Struk22287b02015-10-08 09:26:55 -07002162 if (req->dst_len != vecs->c_size) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002163 pr_err("alg: akcipher: encrypt test failed. Invalid output len\n");
Tadeusz Struk946cc462015-06-16 10:31:06 -07002164 err = -EINVAL;
2165 goto free_all;
2166 }
2167 /* verify that encrypted message is equal to expected */
Herbert Xudf27b262016-05-05 16:42:49 +08002168 if (memcmp(vecs->c, outbuf_enc, vecs->c_size)) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002169 pr_err("alg: akcipher: encrypt test failed. Invalid output\n");
2170 hexdump(outbuf_enc, vecs->c_size);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002171 err = -EINVAL;
2172 goto free_all;
2173 }
2174 /* Don't invoke decrypt for vectors with public key */
2175 if (vecs->public_key_vec) {
2176 err = 0;
2177 goto free_all;
2178 }
2179 outbuf_dec = kzalloc(out_len_max, GFP_KERNEL);
2180 if (!outbuf_dec) {
2181 err = -ENOMEM;
2182 goto free_all;
2183 }
Herbert Xudf27b262016-05-05 16:42:49 +08002184
2185 if (WARN_ON(vecs->c_size > PAGE_SIZE))
2186 goto free_all;
2187
2188 memcpy(xbuf[0], vecs->c, vecs->c_size);
2189
2190 sg_init_one(&src, xbuf[0], vecs->c_size);
Tadeusz Struk22287b02015-10-08 09:26:55 -07002191 sg_init_one(&dst, outbuf_dec, out_len_max);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002192 crypto_init_wait(&wait);
Tadeusz Struk22287b02015-10-08 09:26:55 -07002193 akcipher_request_set_crypt(req, &src, &dst, vecs->c_size, out_len_max);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002194
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002195 err = crypto_wait_req(vecs->siggen_sigver_test ?
2196 /* Run asymmetric signature verification */
2197 crypto_akcipher_verify(req) :
2198 /* Run asymmetric decrypt */
2199 crypto_akcipher_decrypt(req), &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002200 if (err) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002201 pr_err("alg: akcipher: decrypt test failed. err %d\n", err);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002202 goto free_all;
2203 }
2204 out_len = req->dst_len;
Herbert Xu50d2b6432016-06-29 19:32:20 +08002205 if (out_len < vecs->m_size) {
2206 pr_err("alg: akcipher: decrypt test failed. "
2207 "Invalid output len %u\n", out_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002208 err = -EINVAL;
2209 goto free_all;
2210 }
2211 /* verify that decrypted message is equal to the original msg */
Herbert Xu50d2b6432016-06-29 19:32:20 +08002212 if (memchr_inv(outbuf_dec, 0, out_len - vecs->m_size) ||
2213 memcmp(vecs->m, outbuf_dec + out_len - vecs->m_size,
2214 vecs->m_size)) {
2215 pr_err("alg: akcipher: decrypt test failed. Invalid output\n");
2216 hexdump(outbuf_dec, out_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002217 err = -EINVAL;
2218 }
2219free_all:
2220 kfree(outbuf_dec);
2221 kfree(outbuf_enc);
2222free_req:
2223 akcipher_request_free(req);
Herbert Xudf27b262016-05-05 16:42:49 +08002224free_xbuf:
2225 testmgr_free_buf(xbuf);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002226 return err;
2227}
2228
Herbert Xu50d2b6432016-06-29 19:32:20 +08002229static int test_akcipher(struct crypto_akcipher *tfm, const char *alg,
Eric Biggersb13b1e02017-02-24 15:46:59 -08002230 const struct akcipher_testvec *vecs,
2231 unsigned int tcount)
Tadeusz Struk946cc462015-06-16 10:31:06 -07002232{
Herbert Xu15226e42016-07-18 18:20:10 +08002233 const char *algo =
2234 crypto_tfm_alg_driver_name(crypto_akcipher_tfm(tfm));
Tadeusz Struk946cc462015-06-16 10:31:06 -07002235 int ret, i;
2236
2237 for (i = 0; i < tcount; i++) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002238 ret = test_akcipher_one(tfm, vecs++);
2239 if (!ret)
2240 continue;
2241
Herbert Xu15226e42016-07-18 18:20:10 +08002242 pr_err("alg: akcipher: test %d failed for %s, err=%d\n",
2243 i + 1, algo, ret);
Herbert Xu50d2b6432016-06-29 19:32:20 +08002244 return ret;
Tadeusz Struk946cc462015-06-16 10:31:06 -07002245 }
2246 return 0;
2247}
2248
Tadeusz Struk946cc462015-06-16 10:31:06 -07002249static int alg_test_akcipher(const struct alg_test_desc *desc,
2250 const char *driver, u32 type, u32 mask)
2251{
2252 struct crypto_akcipher *tfm;
2253 int err = 0;
2254
Herbert Xueed93e02016-11-22 20:08:31 +08002255 tfm = crypto_alloc_akcipher(driver, type, mask);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002256 if (IS_ERR(tfm)) {
2257 pr_err("alg: akcipher: Failed to load tfm for %s: %ld\n",
2258 driver, PTR_ERR(tfm));
2259 return PTR_ERR(tfm);
2260 }
2261 if (desc->suite.akcipher.vecs)
2262 err = test_akcipher(tfm, desc->alg, desc->suite.akcipher.vecs,
2263 desc->suite.akcipher.count);
2264
2265 crypto_free_akcipher(tfm);
2266 return err;
2267}
2268
Youquan, Song863b5572009-12-23 19:45:20 +08002269static int alg_test_null(const struct alg_test_desc *desc,
2270 const char *driver, u32 type, u32 mask)
2271{
2272 return 0;
2273}
2274
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002275#define __VECS(tv) { .vecs = tv, .count = ARRAY_SIZE(tv) }
2276
Herbert Xuda7f0332008-07-31 17:08:25 +08002277/* Please keep this list sorted by algorithm name. */
2278static const struct alg_test_desc alg_test_descs[] = {
2279 {
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08002280 .alg = "ansi_cprng",
2281 .test = alg_test_cprng,
2282 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002283 .cprng = __VECS(ansi_cprng_aes_tv_template)
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08002284 }
2285 }, {
Horia Geantabca4feb2014-03-14 17:46:51 +02002286 .alg = "authenc(hmac(md5),ecb(cipher_null))",
2287 .test = alg_test_aead,
Horia Geantabca4feb2014-03-14 17:46:51 +02002288 .suite = {
2289 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002290 .enc = __VECS(hmac_md5_ecb_cipher_null_enc_tv_template),
2291 .dec = __VECS(hmac_md5_ecb_cipher_null_dec_tv_template)
Horia Geantabca4feb2014-03-14 17:46:51 +02002292 }
2293 }
2294 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002295 .alg = "authenc(hmac(sha1),cbc(aes))",
Horia Geantae46e9a42012-07-03 19:16:54 +03002296 .test = alg_test_aead,
Herbert Xubcf741c2017-06-28 19:09:07 +08002297 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03002298 .suite = {
2299 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002300 .enc = __VECS(hmac_sha1_aes_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302301 }
2302 }
2303 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002304 .alg = "authenc(hmac(sha1),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302305 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302306 .suite = {
2307 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002308 .enc = __VECS(hmac_sha1_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302309 }
2310 }
2311 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002312 .alg = "authenc(hmac(sha1),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302313 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002314 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302315 .suite = {
2316 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002317 .enc = __VECS(hmac_sha1_des3_ede_cbc_enc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03002318 }
2319 }
2320 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002321 .alg = "authenc(hmac(sha1),ctr(aes))",
2322 .test = alg_test_null,
2323 .fips_allowed = 1,
2324 }, {
Horia Geantabca4feb2014-03-14 17:46:51 +02002325 .alg = "authenc(hmac(sha1),ecb(cipher_null))",
2326 .test = alg_test_aead,
Horia Geantabca4feb2014-03-14 17:46:51 +02002327 .suite = {
2328 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002329 .enc = __VECS(hmac_sha1_ecb_cipher_null_enc_tv_temp),
2330 .dec = __VECS(hmac_sha1_ecb_cipher_null_dec_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302331 }
2332 }
2333 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002334 .alg = "authenc(hmac(sha1),rfc3686(ctr(aes)))",
2335 .test = alg_test_null,
2336 .fips_allowed = 1,
2337 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002338 .alg = "authenc(hmac(sha224),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302339 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302340 .suite = {
2341 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002342 .enc = __VECS(hmac_sha224_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302343 }
2344 }
2345 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002346 .alg = "authenc(hmac(sha224),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302347 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002348 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302349 .suite = {
2350 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002351 .enc = __VECS(hmac_sha224_des3_ede_cbc_enc_tv_temp)
Horia Geantabca4feb2014-03-14 17:46:51 +02002352 }
2353 }
2354 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002355 .alg = "authenc(hmac(sha256),cbc(aes))",
Horia Geantae46e9a42012-07-03 19:16:54 +03002356 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002357 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03002358 .suite = {
2359 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002360 .enc = __VECS(hmac_sha256_aes_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302361 }
2362 }
2363 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002364 .alg = "authenc(hmac(sha256),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302365 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302366 .suite = {
2367 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002368 .enc = __VECS(hmac_sha256_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302369 }
2370 }
2371 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002372 .alg = "authenc(hmac(sha256),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302373 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002374 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302375 .suite = {
2376 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002377 .enc = __VECS(hmac_sha256_des3_ede_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302378 }
2379 }
2380 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002381 .alg = "authenc(hmac(sha256),ctr(aes))",
2382 .test = alg_test_null,
2383 .fips_allowed = 1,
2384 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002385 .alg = "authenc(hmac(sha256),rfc3686(ctr(aes)))",
2386 .test = alg_test_null,
2387 .fips_allowed = 1,
2388 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002389 .alg = "authenc(hmac(sha384),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302390 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302391 .suite = {
2392 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002393 .enc = __VECS(hmac_sha384_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302394 }
2395 }
2396 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002397 .alg = "authenc(hmac(sha384),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302398 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002399 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302400 .suite = {
2401 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002402 .enc = __VECS(hmac_sha384_des3_ede_cbc_enc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03002403 }
2404 }
2405 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002406 .alg = "authenc(hmac(sha384),ctr(aes))",
2407 .test = alg_test_null,
2408 .fips_allowed = 1,
2409 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002410 .alg = "authenc(hmac(sha384),rfc3686(ctr(aes)))",
2411 .test = alg_test_null,
2412 .fips_allowed = 1,
2413 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002414 .alg = "authenc(hmac(sha512),cbc(aes))",
Marcus Meissnered1afac2016-02-05 14:23:33 +01002415 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03002416 .test = alg_test_aead,
Horia Geantae46e9a42012-07-03 19:16:54 +03002417 .suite = {
2418 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002419 .enc = __VECS(hmac_sha512_aes_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302420 }
2421 }
2422 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002423 .alg = "authenc(hmac(sha512),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302424 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302425 .suite = {
2426 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002427 .enc = __VECS(hmac_sha512_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302428 }
2429 }
2430 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002431 .alg = "authenc(hmac(sha512),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302432 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002433 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302434 .suite = {
2435 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002436 .enc = __VECS(hmac_sha512_des3_ede_cbc_enc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03002437 }
2438 }
2439 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002440 .alg = "authenc(hmac(sha512),ctr(aes))",
2441 .test = alg_test_null,
2442 .fips_allowed = 1,
2443 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002444 .alg = "authenc(hmac(sha512),rfc3686(ctr(aes)))",
2445 .test = alg_test_null,
2446 .fips_allowed = 1,
2447 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002448 .alg = "cbc(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002449 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002450 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002451 .suite = {
2452 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002453 .enc = __VECS(aes_cbc_enc_tv_template),
2454 .dec = __VECS(aes_cbc_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002455 }
2456 }
2457 }, {
2458 .alg = "cbc(anubis)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002459 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002460 .suite = {
2461 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002462 .enc = __VECS(anubis_cbc_enc_tv_template),
2463 .dec = __VECS(anubis_cbc_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002464 }
2465 }
2466 }, {
2467 .alg = "cbc(blowfish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002468 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002469 .suite = {
2470 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002471 .enc = __VECS(bf_cbc_enc_tv_template),
2472 .dec = __VECS(bf_cbc_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002473 }
2474 }
2475 }, {
2476 .alg = "cbc(camellia)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002477 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002478 .suite = {
2479 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002480 .enc = __VECS(camellia_cbc_enc_tv_template),
2481 .dec = __VECS(camellia_cbc_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002482 }
2483 }
2484 }, {
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002485 .alg = "cbc(cast5)",
2486 .test = alg_test_skcipher,
2487 .suite = {
2488 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002489 .enc = __VECS(cast5_cbc_enc_tv_template),
2490 .dec = __VECS(cast5_cbc_dec_tv_template)
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002491 }
2492 }
2493 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002494 .alg = "cbc(cast6)",
2495 .test = alg_test_skcipher,
2496 .suite = {
2497 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002498 .enc = __VECS(cast6_cbc_enc_tv_template),
2499 .dec = __VECS(cast6_cbc_dec_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002500 }
2501 }
2502 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002503 .alg = "cbc(des)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002504 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002505 .suite = {
2506 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002507 .enc = __VECS(des_cbc_enc_tv_template),
2508 .dec = __VECS(des_cbc_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002509 }
2510 }
2511 }, {
2512 .alg = "cbc(des3_ede)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002513 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002514 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002515 .suite = {
2516 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002517 .enc = __VECS(des3_ede_cbc_enc_tv_template),
2518 .dec = __VECS(des3_ede_cbc_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002519 }
2520 }
2521 }, {
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002522 .alg = "cbc(serpent)",
2523 .test = alg_test_skcipher,
2524 .suite = {
2525 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002526 .enc = __VECS(serpent_cbc_enc_tv_template),
2527 .dec = __VECS(serpent_cbc_dec_tv_template)
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002528 }
2529 }
2530 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002531 .alg = "cbc(twofish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002532 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002533 .suite = {
2534 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002535 .enc = __VECS(tf_cbc_enc_tv_template),
2536 .dec = __VECS(tf_cbc_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002537 }
2538 }
2539 }, {
Ard Biesheuvel092acf02017-02-03 14:49:35 +00002540 .alg = "cbcmac(aes)",
2541 .fips_allowed = 1,
2542 .test = alg_test_hash,
2543 .suite = {
2544 .hash = __VECS(aes_cbcmac_tv_template)
2545 }
2546 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002547 .alg = "ccm(aes)",
2548 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002549 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002550 .suite = {
2551 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002552 .enc = __VECS(aes_ccm_enc_tv_template),
2553 .dec = __VECS(aes_ccm_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002554 }
2555 }
2556 }, {
Martin Willi3590ebf2015-06-01 13:43:57 +02002557 .alg = "chacha20",
2558 .test = alg_test_skcipher,
2559 .suite = {
2560 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002561 .enc = __VECS(chacha20_enc_tv_template),
2562 .dec = __VECS(chacha20_enc_tv_template),
Martin Willi3590ebf2015-06-01 13:43:57 +02002563 }
2564 }
2565 }, {
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002566 .alg = "cmac(aes)",
Stephan Mueller8f183752015-08-19 08:42:07 +02002567 .fips_allowed = 1,
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002568 .test = alg_test_hash,
2569 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002570 .hash = __VECS(aes_cmac128_tv_template)
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002571 }
2572 }, {
2573 .alg = "cmac(des3_ede)",
Stephan Mueller8f183752015-08-19 08:42:07 +02002574 .fips_allowed = 1,
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002575 .test = alg_test_hash,
2576 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002577 .hash = __VECS(des3_ede_cmac64_tv_template)
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002578 }
2579 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03002580 .alg = "compress_null",
2581 .test = alg_test_null,
2582 }, {
Ard Biesheuvelebb34722015-05-04 11:00:17 +02002583 .alg = "crc32",
2584 .test = alg_test_hash,
2585 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002586 .hash = __VECS(crc32_tv_template)
Ard Biesheuvelebb34722015-05-04 11:00:17 +02002587 }
2588 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002589 .alg = "crc32c",
Herbert Xu8e3ee852008-11-07 14:58:52 +08002590 .test = alg_test_crc32c,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002591 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002592 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002593 .hash = __VECS(crc32c_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002594 }
2595 }, {
Herbert Xu684115212013-09-07 12:56:26 +10002596 .alg = "crct10dif",
2597 .test = alg_test_hash,
2598 .fips_allowed = 1,
2599 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002600 .hash = __VECS(crct10dif_tv_template)
Herbert Xu684115212013-09-07 12:56:26 +10002601 }
2602 }, {
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08002603 .alg = "ctr(aes)",
2604 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002605 .fips_allowed = 1,
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08002606 .suite = {
2607 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002608 .enc = __VECS(aes_ctr_enc_tv_template),
2609 .dec = __VECS(aes_ctr_dec_tv_template)
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08002610 }
2611 }
2612 }, {
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03002613 .alg = "ctr(blowfish)",
2614 .test = alg_test_skcipher,
2615 .suite = {
2616 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002617 .enc = __VECS(bf_ctr_enc_tv_template),
2618 .dec = __VECS(bf_ctr_dec_tv_template)
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03002619 }
2620 }
2621 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02002622 .alg = "ctr(camellia)",
2623 .test = alg_test_skcipher,
2624 .suite = {
2625 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002626 .enc = __VECS(camellia_ctr_enc_tv_template),
2627 .dec = __VECS(camellia_ctr_dec_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02002628 }
2629 }
2630 }, {
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002631 .alg = "ctr(cast5)",
2632 .test = alg_test_skcipher,
2633 .suite = {
2634 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002635 .enc = __VECS(cast5_ctr_enc_tv_template),
2636 .dec = __VECS(cast5_ctr_dec_tv_template)
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002637 }
2638 }
2639 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002640 .alg = "ctr(cast6)",
2641 .test = alg_test_skcipher,
2642 .suite = {
2643 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002644 .enc = __VECS(cast6_ctr_enc_tv_template),
2645 .dec = __VECS(cast6_ctr_dec_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002646 }
2647 }
2648 }, {
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03002649 .alg = "ctr(des)",
2650 .test = alg_test_skcipher,
2651 .suite = {
2652 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002653 .enc = __VECS(des_ctr_enc_tv_template),
2654 .dec = __VECS(des_ctr_dec_tv_template)
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03002655 }
2656 }
2657 }, {
Jussi Kivilinnae080b172012-10-20 14:53:12 +03002658 .alg = "ctr(des3_ede)",
2659 .test = alg_test_skcipher,
Marcelo Cerri0d8da102017-03-20 17:28:05 -03002660 .fips_allowed = 1,
Jussi Kivilinnae080b172012-10-20 14:53:12 +03002661 .suite = {
2662 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002663 .enc = __VECS(des3_ede_ctr_enc_tv_template),
2664 .dec = __VECS(des3_ede_ctr_dec_tv_template)
Jussi Kivilinnae080b172012-10-20 14:53:12 +03002665 }
2666 }
2667 }, {
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002668 .alg = "ctr(serpent)",
2669 .test = alg_test_skcipher,
2670 .suite = {
2671 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002672 .enc = __VECS(serpent_ctr_enc_tv_template),
2673 .dec = __VECS(serpent_ctr_dec_tv_template)
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002674 }
2675 }
2676 }, {
Jussi Kivilinna573da622011-10-10 23:03:12 +03002677 .alg = "ctr(twofish)",
2678 .test = alg_test_skcipher,
2679 .suite = {
2680 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002681 .enc = __VECS(tf_ctr_enc_tv_template),
2682 .dec = __VECS(tf_ctr_dec_tv_template)
Jussi Kivilinna573da622011-10-10 23:03:12 +03002683 }
2684 }
2685 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002686 .alg = "cts(cbc(aes))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002687 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002688 .suite = {
2689 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002690 .enc = __VECS(cts_mode_enc_tv_template),
2691 .dec = __VECS(cts_mode_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002692 }
2693 }
2694 }, {
2695 .alg = "deflate",
2696 .test = alg_test_comp,
Milan Broz08189042012-12-06 17:16:28 +08002697 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002698 .suite = {
2699 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002700 .comp = __VECS(deflate_comp_tv_template),
2701 .decomp = __VECS(deflate_decomp_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002702 }
2703 }
2704 }, {
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002705 .alg = "dh",
2706 .test = alg_test_kpp,
2707 .fips_allowed = 1,
2708 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002709 .kpp = __VECS(dh_tv_template)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002710 }
2711 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03002712 .alg = "digest_null",
2713 .test = alg_test_null,
2714 }, {
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002715 .alg = "drbg_nopr_ctr_aes128",
2716 .test = alg_test_drbg,
2717 .fips_allowed = 1,
2718 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002719 .drbg = __VECS(drbg_nopr_ctr_aes128_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002720 }
2721 }, {
2722 .alg = "drbg_nopr_ctr_aes192",
2723 .test = alg_test_drbg,
2724 .fips_allowed = 1,
2725 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002726 .drbg = __VECS(drbg_nopr_ctr_aes192_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002727 }
2728 }, {
2729 .alg = "drbg_nopr_ctr_aes256",
2730 .test = alg_test_drbg,
2731 .fips_allowed = 1,
2732 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002733 .drbg = __VECS(drbg_nopr_ctr_aes256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002734 }
2735 }, {
2736 /*
2737 * There is no need to specifically test the DRBG with every
2738 * backend cipher -- covered by drbg_nopr_hmac_sha256 test
2739 */
2740 .alg = "drbg_nopr_hmac_sha1",
2741 .fips_allowed = 1,
2742 .test = alg_test_null,
2743 }, {
2744 .alg = "drbg_nopr_hmac_sha256",
2745 .test = alg_test_drbg,
2746 .fips_allowed = 1,
2747 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002748 .drbg = __VECS(drbg_nopr_hmac_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002749 }
2750 }, {
2751 /* covered by drbg_nopr_hmac_sha256 test */
2752 .alg = "drbg_nopr_hmac_sha384",
2753 .fips_allowed = 1,
2754 .test = alg_test_null,
2755 }, {
2756 .alg = "drbg_nopr_hmac_sha512",
2757 .test = alg_test_null,
2758 .fips_allowed = 1,
2759 }, {
2760 .alg = "drbg_nopr_sha1",
2761 .fips_allowed = 1,
2762 .test = alg_test_null,
2763 }, {
2764 .alg = "drbg_nopr_sha256",
2765 .test = alg_test_drbg,
2766 .fips_allowed = 1,
2767 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002768 .drbg = __VECS(drbg_nopr_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002769 }
2770 }, {
2771 /* covered by drbg_nopr_sha256 test */
2772 .alg = "drbg_nopr_sha384",
2773 .fips_allowed = 1,
2774 .test = alg_test_null,
2775 }, {
2776 .alg = "drbg_nopr_sha512",
2777 .fips_allowed = 1,
2778 .test = alg_test_null,
2779 }, {
2780 .alg = "drbg_pr_ctr_aes128",
2781 .test = alg_test_drbg,
2782 .fips_allowed = 1,
2783 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002784 .drbg = __VECS(drbg_pr_ctr_aes128_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002785 }
2786 }, {
2787 /* covered by drbg_pr_ctr_aes128 test */
2788 .alg = "drbg_pr_ctr_aes192",
2789 .fips_allowed = 1,
2790 .test = alg_test_null,
2791 }, {
2792 .alg = "drbg_pr_ctr_aes256",
2793 .fips_allowed = 1,
2794 .test = alg_test_null,
2795 }, {
2796 .alg = "drbg_pr_hmac_sha1",
2797 .fips_allowed = 1,
2798 .test = alg_test_null,
2799 }, {
2800 .alg = "drbg_pr_hmac_sha256",
2801 .test = alg_test_drbg,
2802 .fips_allowed = 1,
2803 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002804 .drbg = __VECS(drbg_pr_hmac_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002805 }
2806 }, {
2807 /* covered by drbg_pr_hmac_sha256 test */
2808 .alg = "drbg_pr_hmac_sha384",
2809 .fips_allowed = 1,
2810 .test = alg_test_null,
2811 }, {
2812 .alg = "drbg_pr_hmac_sha512",
2813 .test = alg_test_null,
2814 .fips_allowed = 1,
2815 }, {
2816 .alg = "drbg_pr_sha1",
2817 .fips_allowed = 1,
2818 .test = alg_test_null,
2819 }, {
2820 .alg = "drbg_pr_sha256",
2821 .test = alg_test_drbg,
2822 .fips_allowed = 1,
2823 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002824 .drbg = __VECS(drbg_pr_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002825 }
2826 }, {
2827 /* covered by drbg_pr_sha256 test */
2828 .alg = "drbg_pr_sha384",
2829 .fips_allowed = 1,
2830 .test = alg_test_null,
2831 }, {
2832 .alg = "drbg_pr_sha512",
2833 .fips_allowed = 1,
2834 .test = alg_test_null,
2835 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002836 .alg = "ecb(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002837 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002838 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002839 .suite = {
2840 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002841 .enc = __VECS(aes_enc_tv_template),
2842 .dec = __VECS(aes_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002843 }
2844 }
2845 }, {
2846 .alg = "ecb(anubis)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002847 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002848 .suite = {
2849 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002850 .enc = __VECS(anubis_enc_tv_template),
2851 .dec = __VECS(anubis_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002852 }
2853 }
2854 }, {
2855 .alg = "ecb(arc4)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002856 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002857 .suite = {
2858 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002859 .enc = __VECS(arc4_enc_tv_template),
2860 .dec = __VECS(arc4_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002861 }
2862 }
2863 }, {
2864 .alg = "ecb(blowfish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002865 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002866 .suite = {
2867 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002868 .enc = __VECS(bf_enc_tv_template),
2869 .dec = __VECS(bf_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002870 }
2871 }
2872 }, {
2873 .alg = "ecb(camellia)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002874 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002875 .suite = {
2876 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002877 .enc = __VECS(camellia_enc_tv_template),
2878 .dec = __VECS(camellia_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002879 }
2880 }
2881 }, {
2882 .alg = "ecb(cast5)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002883 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002884 .suite = {
2885 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002886 .enc = __VECS(cast5_enc_tv_template),
2887 .dec = __VECS(cast5_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002888 }
2889 }
2890 }, {
2891 .alg = "ecb(cast6)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002892 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002893 .suite = {
2894 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002895 .enc = __VECS(cast6_enc_tv_template),
2896 .dec = __VECS(cast6_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002897 }
2898 }
2899 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03002900 .alg = "ecb(cipher_null)",
2901 .test = alg_test_null,
Milan Broz6175ca22017-04-21 13:03:06 +02002902 .fips_allowed = 1,
Jussi Kivilinnae4483702013-04-07 16:43:56 +03002903 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002904 .alg = "ecb(des)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002905 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002906 .suite = {
2907 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002908 .enc = __VECS(des_enc_tv_template),
2909 .dec = __VECS(des_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002910 }
2911 }
2912 }, {
2913 .alg = "ecb(des3_ede)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002914 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002915 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002916 .suite = {
2917 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002918 .enc = __VECS(des3_ede_enc_tv_template),
2919 .dec = __VECS(des3_ede_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002920 }
2921 }
2922 }, {
Jussi Kivilinna66e5bd02013-01-19 13:31:36 +02002923 .alg = "ecb(fcrypt)",
2924 .test = alg_test_skcipher,
2925 .suite = {
2926 .cipher = {
2927 .enc = {
2928 .vecs = fcrypt_pcbc_enc_tv_template,
2929 .count = 1
2930 },
2931 .dec = {
2932 .vecs = fcrypt_pcbc_dec_tv_template,
2933 .count = 1
2934 }
2935 }
2936 }
2937 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002938 .alg = "ecb(khazad)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002939 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002940 .suite = {
2941 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002942 .enc = __VECS(khazad_enc_tv_template),
2943 .dec = __VECS(khazad_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002944 }
2945 }
2946 }, {
2947 .alg = "ecb(seed)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002948 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002949 .suite = {
2950 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002951 .enc = __VECS(seed_enc_tv_template),
2952 .dec = __VECS(seed_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002953 }
2954 }
2955 }, {
2956 .alg = "ecb(serpent)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002957 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002958 .suite = {
2959 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002960 .enc = __VECS(serpent_enc_tv_template),
2961 .dec = __VECS(serpent_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002962 }
2963 }
2964 }, {
2965 .alg = "ecb(tea)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002966 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002967 .suite = {
2968 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002969 .enc = __VECS(tea_enc_tv_template),
2970 .dec = __VECS(tea_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002971 }
2972 }
2973 }, {
2974 .alg = "ecb(tnepres)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002975 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002976 .suite = {
2977 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002978 .enc = __VECS(tnepres_enc_tv_template),
2979 .dec = __VECS(tnepres_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002980 }
2981 }
2982 }, {
2983 .alg = "ecb(twofish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002984 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002985 .suite = {
2986 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002987 .enc = __VECS(tf_enc_tv_template),
2988 .dec = __VECS(tf_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002989 }
2990 }
2991 }, {
2992 .alg = "ecb(xeta)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002993 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002994 .suite = {
2995 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002996 .enc = __VECS(xeta_enc_tv_template),
2997 .dec = __VECS(xeta_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002998 }
2999 }
3000 }, {
3001 .alg = "ecb(xtea)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003002 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003003 .suite = {
3004 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003005 .enc = __VECS(xtea_enc_tv_template),
3006 .dec = __VECS(xtea_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003007 }
3008 }
3009 }, {
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +01003010 .alg = "ecdh",
3011 .test = alg_test_kpp,
3012 .fips_allowed = 1,
3013 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003014 .kpp = __VECS(ecdh_tv_template)
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +01003015 }
3016 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003017 .alg = "gcm(aes)",
3018 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003019 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003020 .suite = {
3021 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003022 .enc = __VECS(aes_gcm_enc_tv_template),
3023 .dec = __VECS(aes_gcm_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003024 }
3025 }
3026 }, {
Youquan, Song507069c2009-11-23 20:23:04 +08003027 .alg = "ghash",
3028 .test = alg_test_hash,
Jarod Wilson18c0ebd2011-01-29 15:14:35 +11003029 .fips_allowed = 1,
Youquan, Song507069c2009-11-23 20:23:04 +08003030 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003031 .hash = __VECS(ghash_tv_template)
Youquan, Song507069c2009-11-23 20:23:04 +08003032 }
3033 }, {
Sonic Zhanga482b082012-05-25 17:54:13 +08003034 .alg = "hmac(crc32)",
3035 .test = alg_test_hash,
3036 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003037 .hash = __VECS(bfin_crc_tv_template)
Sonic Zhanga482b082012-05-25 17:54:13 +08003038 }
3039 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003040 .alg = "hmac(md5)",
3041 .test = alg_test_hash,
3042 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003043 .hash = __VECS(hmac_md5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003044 }
3045 }, {
3046 .alg = "hmac(rmd128)",
3047 .test = alg_test_hash,
3048 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003049 .hash = __VECS(hmac_rmd128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003050 }
3051 }, {
3052 .alg = "hmac(rmd160)",
3053 .test = alg_test_hash,
3054 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003055 .hash = __VECS(hmac_rmd160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003056 }
3057 }, {
3058 .alg = "hmac(sha1)",
3059 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003060 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003061 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003062 .hash = __VECS(hmac_sha1_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003063 }
3064 }, {
3065 .alg = "hmac(sha224)",
3066 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003067 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003068 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003069 .hash = __VECS(hmac_sha224_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003070 }
3071 }, {
3072 .alg = "hmac(sha256)",
3073 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003074 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003075 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003076 .hash = __VECS(hmac_sha256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003077 }
3078 }, {
raveendra padasalagi98eca722016-07-01 11:16:54 +05303079 .alg = "hmac(sha3-224)",
3080 .test = alg_test_hash,
3081 .fips_allowed = 1,
3082 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003083 .hash = __VECS(hmac_sha3_224_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303084 }
3085 }, {
3086 .alg = "hmac(sha3-256)",
3087 .test = alg_test_hash,
3088 .fips_allowed = 1,
3089 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003090 .hash = __VECS(hmac_sha3_256_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303091 }
3092 }, {
3093 .alg = "hmac(sha3-384)",
3094 .test = alg_test_hash,
3095 .fips_allowed = 1,
3096 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003097 .hash = __VECS(hmac_sha3_384_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303098 }
3099 }, {
3100 .alg = "hmac(sha3-512)",
3101 .test = alg_test_hash,
3102 .fips_allowed = 1,
3103 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003104 .hash = __VECS(hmac_sha3_512_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303105 }
3106 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003107 .alg = "hmac(sha384)",
3108 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003109 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003110 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003111 .hash = __VECS(hmac_sha384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003112 }
3113 }, {
3114 .alg = "hmac(sha512)",
3115 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003116 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003117 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003118 .hash = __VECS(hmac_sha512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003119 }
3120 }, {
Stephan Muellerbb5530e2015-05-25 15:10:20 +02003121 .alg = "jitterentropy_rng",
3122 .fips_allowed = 1,
3123 .test = alg_test_null,
3124 }, {
Stephan Mueller35351982015-09-21 20:59:56 +02003125 .alg = "kw(aes)",
3126 .test = alg_test_skcipher,
3127 .fips_allowed = 1,
3128 .suite = {
3129 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003130 .enc = __VECS(aes_kw_enc_tv_template),
3131 .dec = __VECS(aes_kw_dec_tv_template)
Stephan Mueller35351982015-09-21 20:59:56 +02003132 }
3133 }
3134 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003135 .alg = "lrw(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003136 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003137 .suite = {
3138 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003139 .enc = __VECS(aes_lrw_enc_tv_template),
3140 .dec = __VECS(aes_lrw_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003141 }
3142 }
3143 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02003144 .alg = "lrw(camellia)",
3145 .test = alg_test_skcipher,
3146 .suite = {
3147 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003148 .enc = __VECS(camellia_lrw_enc_tv_template),
3149 .dec = __VECS(camellia_lrw_dec_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02003150 }
3151 }
3152 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003153 .alg = "lrw(cast6)",
3154 .test = alg_test_skcipher,
3155 .suite = {
3156 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003157 .enc = __VECS(cast6_lrw_enc_tv_template),
3158 .dec = __VECS(cast6_lrw_dec_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003159 }
3160 }
3161 }, {
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03003162 .alg = "lrw(serpent)",
3163 .test = alg_test_skcipher,
3164 .suite = {
3165 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003166 .enc = __VECS(serpent_lrw_enc_tv_template),
3167 .dec = __VECS(serpent_lrw_dec_tv_template)
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03003168 }
3169 }
3170 }, {
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03003171 .alg = "lrw(twofish)",
3172 .test = alg_test_skcipher,
3173 .suite = {
3174 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003175 .enc = __VECS(tf_lrw_enc_tv_template),
3176 .dec = __VECS(tf_lrw_dec_tv_template)
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03003177 }
3178 }
3179 }, {
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02003180 .alg = "lz4",
3181 .test = alg_test_comp,
3182 .fips_allowed = 1,
3183 .suite = {
3184 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003185 .comp = __VECS(lz4_comp_tv_template),
3186 .decomp = __VECS(lz4_decomp_tv_template)
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02003187 }
3188 }
3189 }, {
3190 .alg = "lz4hc",
3191 .test = alg_test_comp,
3192 .fips_allowed = 1,
3193 .suite = {
3194 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003195 .comp = __VECS(lz4hc_comp_tv_template),
3196 .decomp = __VECS(lz4hc_decomp_tv_template)
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02003197 }
3198 }
3199 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003200 .alg = "lzo",
3201 .test = alg_test_comp,
Milan Broz08189042012-12-06 17:16:28 +08003202 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003203 .suite = {
3204 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003205 .comp = __VECS(lzo_comp_tv_template),
3206 .decomp = __VECS(lzo_decomp_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003207 }
3208 }
3209 }, {
3210 .alg = "md4",
3211 .test = alg_test_hash,
3212 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003213 .hash = __VECS(md4_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003214 }
3215 }, {
3216 .alg = "md5",
3217 .test = alg_test_hash,
3218 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003219 .hash = __VECS(md5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003220 }
3221 }, {
3222 .alg = "michael_mic",
3223 .test = alg_test_hash,
3224 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003225 .hash = __VECS(michael_mic_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003226 }
3227 }, {
Puneet Saxenaba0e14a2011-05-04 15:04:10 +10003228 .alg = "ofb(aes)",
3229 .test = alg_test_skcipher,
3230 .fips_allowed = 1,
3231 .suite = {
3232 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003233 .enc = __VECS(aes_ofb_enc_tv_template),
3234 .dec = __VECS(aes_ofb_dec_tv_template)
Puneet Saxenaba0e14a2011-05-04 15:04:10 +10003235 }
3236 }
3237 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003238 .alg = "pcbc(fcrypt)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003239 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003240 .suite = {
3241 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003242 .enc = __VECS(fcrypt_pcbc_enc_tv_template),
3243 .dec = __VECS(fcrypt_pcbc_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003244 }
3245 }
3246 }, {
Stephan Mueller12071072017-06-12 23:27:51 +02003247 .alg = "pkcs1pad(rsa,sha224)",
3248 .test = alg_test_null,
3249 .fips_allowed = 1,
3250 }, {
3251 .alg = "pkcs1pad(rsa,sha256)",
3252 .test = alg_test_akcipher,
3253 .fips_allowed = 1,
3254 .suite = {
3255 .akcipher = __VECS(pkcs1pad_rsa_tv_template)
3256 }
3257 }, {
3258 .alg = "pkcs1pad(rsa,sha384)",
3259 .test = alg_test_null,
3260 .fips_allowed = 1,
3261 }, {
3262 .alg = "pkcs1pad(rsa,sha512)",
3263 .test = alg_test_null,
3264 .fips_allowed = 1,
3265 }, {
Martin Willieee9dc62015-06-01 13:43:59 +02003266 .alg = "poly1305",
3267 .test = alg_test_hash,
3268 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003269 .hash = __VECS(poly1305_tv_template)
Martin Willieee9dc62015-06-01 13:43:59 +02003270 }
3271 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003272 .alg = "rfc3686(ctr(aes))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003273 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003274 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003275 .suite = {
3276 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003277 .enc = __VECS(aes_ctr_rfc3686_enc_tv_template),
3278 .dec = __VECS(aes_ctr_rfc3686_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003279 }
3280 }
3281 }, {
Herbert Xu3f31a742015-07-09 07:17:34 +08003282 .alg = "rfc4106(gcm(aes))",
Adrian Hoban69435b92010-11-04 15:02:04 -04003283 .test = alg_test_aead,
Jarod Wilsondb71f292015-01-23 12:42:15 -05003284 .fips_allowed = 1,
Adrian Hoban69435b92010-11-04 15:02:04 -04003285 .suite = {
3286 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003287 .enc = __VECS(aes_gcm_rfc4106_enc_tv_template),
3288 .dec = __VECS(aes_gcm_rfc4106_dec_tv_template)
Adrian Hoban69435b92010-11-04 15:02:04 -04003289 }
3290 }
3291 }, {
Herbert Xu544c4362015-07-14 16:53:22 +08003292 .alg = "rfc4309(ccm(aes))",
Jarod Wilson5d667322009-05-04 19:23:40 +08003293 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003294 .fips_allowed = 1,
Jarod Wilson5d667322009-05-04 19:23:40 +08003295 .suite = {
3296 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003297 .enc = __VECS(aes_ccm_rfc4309_enc_tv_template),
3298 .dec = __VECS(aes_ccm_rfc4309_dec_tv_template)
Jarod Wilson5d667322009-05-04 19:23:40 +08003299 }
3300 }
3301 }, {
Herbert Xubb687452015-06-16 13:54:24 +08003302 .alg = "rfc4543(gcm(aes))",
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03003303 .test = alg_test_aead,
3304 .suite = {
3305 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003306 .enc = __VECS(aes_gcm_rfc4543_enc_tv_template),
3307 .dec = __VECS(aes_gcm_rfc4543_dec_tv_template),
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03003308 }
3309 }
3310 }, {
Martin Williaf2b76b2015-06-01 13:44:01 +02003311 .alg = "rfc7539(chacha20,poly1305)",
3312 .test = alg_test_aead,
3313 .suite = {
3314 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003315 .enc = __VECS(rfc7539_enc_tv_template),
3316 .dec = __VECS(rfc7539_dec_tv_template),
Martin Williaf2b76b2015-06-01 13:44:01 +02003317 }
3318 }
3319 }, {
Martin Willi59007582015-06-01 13:44:03 +02003320 .alg = "rfc7539esp(chacha20,poly1305)",
3321 .test = alg_test_aead,
3322 .suite = {
3323 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003324 .enc = __VECS(rfc7539esp_enc_tv_template),
3325 .dec = __VECS(rfc7539esp_dec_tv_template),
Martin Willi59007582015-06-01 13:44:03 +02003326 }
3327 }
3328 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003329 .alg = "rmd128",
3330 .test = alg_test_hash,
3331 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003332 .hash = __VECS(rmd128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003333 }
3334 }, {
3335 .alg = "rmd160",
3336 .test = alg_test_hash,
3337 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003338 .hash = __VECS(rmd160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003339 }
3340 }, {
3341 .alg = "rmd256",
3342 .test = alg_test_hash,
3343 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003344 .hash = __VECS(rmd256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003345 }
3346 }, {
3347 .alg = "rmd320",
3348 .test = alg_test_hash,
3349 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003350 .hash = __VECS(rmd320_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003351 }
3352 }, {
Tadeusz Struk946cc462015-06-16 10:31:06 -07003353 .alg = "rsa",
3354 .test = alg_test_akcipher,
3355 .fips_allowed = 1,
3356 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003357 .akcipher = __VECS(rsa_tv_template)
Tadeusz Struk946cc462015-06-16 10:31:06 -07003358 }
3359 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003360 .alg = "salsa20",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003361 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003362 .suite = {
3363 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003364 .enc = __VECS(salsa20_stream_enc_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003365 }
3366 }
3367 }, {
3368 .alg = "sha1",
3369 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003370 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003371 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003372 .hash = __VECS(sha1_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003373 }
3374 }, {
3375 .alg = "sha224",
3376 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003377 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003378 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003379 .hash = __VECS(sha224_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003380 }
3381 }, {
3382 .alg = "sha256",
3383 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003384 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003385 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003386 .hash = __VECS(sha256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003387 }
3388 }, {
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303389 .alg = "sha3-224",
3390 .test = alg_test_hash,
3391 .fips_allowed = 1,
3392 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003393 .hash = __VECS(sha3_224_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303394 }
3395 }, {
3396 .alg = "sha3-256",
3397 .test = alg_test_hash,
3398 .fips_allowed = 1,
3399 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003400 .hash = __VECS(sha3_256_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303401 }
3402 }, {
3403 .alg = "sha3-384",
3404 .test = alg_test_hash,
3405 .fips_allowed = 1,
3406 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003407 .hash = __VECS(sha3_384_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303408 }
3409 }, {
3410 .alg = "sha3-512",
3411 .test = alg_test_hash,
3412 .fips_allowed = 1,
3413 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003414 .hash = __VECS(sha3_512_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303415 }
3416 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003417 .alg = "sha384",
3418 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003419 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003420 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003421 .hash = __VECS(sha384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003422 }
3423 }, {
3424 .alg = "sha512",
3425 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003426 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003427 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003428 .hash = __VECS(sha512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003429 }
3430 }, {
Gilad Ben-Yossefb7e27532017-08-21 13:51:29 +03003431 .alg = "sm3",
3432 .test = alg_test_hash,
3433 .suite = {
3434 .hash = __VECS(sm3_tv_template)
3435 }
3436 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003437 .alg = "tgr128",
3438 .test = alg_test_hash,
3439 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003440 .hash = __VECS(tgr128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003441 }
3442 }, {
3443 .alg = "tgr160",
3444 .test = alg_test_hash,
3445 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003446 .hash = __VECS(tgr160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003447 }
3448 }, {
3449 .alg = "tgr192",
3450 .test = alg_test_hash,
3451 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003452 .hash = __VECS(tgr192_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003453 }
3454 }, {
Shane Wangf1939f72009-09-02 20:05:22 +10003455 .alg = "vmac(aes)",
3456 .test = alg_test_hash,
3457 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003458 .hash = __VECS(aes_vmac128_tv_template)
Shane Wangf1939f72009-09-02 20:05:22 +10003459 }
3460 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003461 .alg = "wp256",
3462 .test = alg_test_hash,
3463 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003464 .hash = __VECS(wp256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003465 }
3466 }, {
3467 .alg = "wp384",
3468 .test = alg_test_hash,
3469 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003470 .hash = __VECS(wp384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003471 }
3472 }, {
3473 .alg = "wp512",
3474 .test = alg_test_hash,
3475 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003476 .hash = __VECS(wp512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003477 }
3478 }, {
3479 .alg = "xcbc(aes)",
3480 .test = alg_test_hash,
3481 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003482 .hash = __VECS(aes_xcbc128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003483 }
3484 }, {
3485 .alg = "xts(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003486 .test = alg_test_skcipher,
Jarod Wilson2918aa82011-01-29 15:14:01 +11003487 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003488 .suite = {
3489 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003490 .enc = __VECS(aes_xts_enc_tv_template),
3491 .dec = __VECS(aes_xts_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003492 }
3493 }
Geert Uytterhoeven0c01aed2009-03-04 15:42:15 +08003494 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02003495 .alg = "xts(camellia)",
3496 .test = alg_test_skcipher,
3497 .suite = {
3498 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003499 .enc = __VECS(camellia_xts_enc_tv_template),
3500 .dec = __VECS(camellia_xts_dec_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02003501 }
3502 }
3503 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003504 .alg = "xts(cast6)",
3505 .test = alg_test_skcipher,
3506 .suite = {
3507 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003508 .enc = __VECS(cast6_xts_enc_tv_template),
3509 .dec = __VECS(cast6_xts_dec_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003510 }
3511 }
3512 }, {
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03003513 .alg = "xts(serpent)",
3514 .test = alg_test_skcipher,
3515 .suite = {
3516 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003517 .enc = __VECS(serpent_xts_enc_tv_template),
3518 .dec = __VECS(serpent_xts_dec_tv_template)
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03003519 }
3520 }
3521 }, {
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03003522 .alg = "xts(twofish)",
3523 .test = alg_test_skcipher,
3524 .suite = {
3525 .cipher = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003526 .enc = __VECS(tf_xts_enc_tv_template),
3527 .dec = __VECS(tf_xts_dec_tv_template)
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03003528 }
3529 }
Giovanni Cabiddua368f432017-04-21 21:54:30 +01003530 }, {
3531 .alg = "zlib-deflate",
3532 .test = alg_test_comp,
3533 .fips_allowed = 1,
3534 .suite = {
3535 .comp = {
3536 .comp = __VECS(zlib_deflate_comp_tv_template),
3537 .decomp = __VECS(zlib_deflate_decomp_tv_template)
3538 }
3539 }
Herbert Xuda7f0332008-07-31 17:08:25 +08003540 }
3541};
3542
Jussi Kivilinna57147582013-06-13 17:37:40 +03003543static bool alg_test_descs_checked;
3544
3545static void alg_test_descs_check_order(void)
3546{
3547 int i;
3548
3549 /* only check once */
3550 if (alg_test_descs_checked)
3551 return;
3552
3553 alg_test_descs_checked = true;
3554
3555 for (i = 1; i < ARRAY_SIZE(alg_test_descs); i++) {
3556 int diff = strcmp(alg_test_descs[i - 1].alg,
3557 alg_test_descs[i].alg);
3558
3559 if (WARN_ON(diff > 0)) {
3560 pr_warn("testmgr: alg_test_descs entries in wrong order: '%s' before '%s'\n",
3561 alg_test_descs[i - 1].alg,
3562 alg_test_descs[i].alg);
3563 }
3564
3565 if (WARN_ON(diff == 0)) {
3566 pr_warn("testmgr: duplicate alg_test_descs entry: '%s'\n",
3567 alg_test_descs[i].alg);
3568 }
3569 }
3570}
3571
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003572static int alg_find_test(const char *alg)
Herbert Xuda7f0332008-07-31 17:08:25 +08003573{
3574 int start = 0;
3575 int end = ARRAY_SIZE(alg_test_descs);
3576
3577 while (start < end) {
3578 int i = (start + end) / 2;
3579 int diff = strcmp(alg_test_descs[i].alg, alg);
3580
3581 if (diff > 0) {
3582 end = i;
3583 continue;
3584 }
3585
3586 if (diff < 0) {
3587 start = i + 1;
3588 continue;
3589 }
3590
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003591 return i;
Herbert Xuda7f0332008-07-31 17:08:25 +08003592 }
3593
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003594 return -1;
3595}
3596
3597int alg_test(const char *driver, const char *alg, u32 type, u32 mask)
3598{
3599 int i;
Herbert Xua68f6612009-07-02 16:32:12 +08003600 int j;
Neil Hormand12d6b62008-10-12 20:36:51 +08003601 int rc;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003602
Richard W.M. Jones9e5c9fe2016-05-03 10:00:17 +01003603 if (!fips_enabled && notests) {
3604 printk_once(KERN_INFO "alg: self-tests disabled\n");
3605 return 0;
3606 }
3607
Jussi Kivilinna57147582013-06-13 17:37:40 +03003608 alg_test_descs_check_order();
3609
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003610 if ((type & CRYPTO_ALG_TYPE_MASK) == CRYPTO_ALG_TYPE_CIPHER) {
3611 char nalg[CRYPTO_MAX_ALG_NAME];
3612
3613 if (snprintf(nalg, sizeof(nalg), "ecb(%s)", alg) >=
3614 sizeof(nalg))
3615 return -ENAMETOOLONG;
3616
3617 i = alg_find_test(nalg);
3618 if (i < 0)
3619 goto notest;
3620
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10003621 if (fips_enabled && !alg_test_descs[i].fips_allowed)
3622 goto non_fips_alg;
3623
Jarod Wilson941fb322009-05-04 19:49:23 +08003624 rc = alg_test_cipher(alg_test_descs + i, driver, type, mask);
3625 goto test_done;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003626 }
3627
3628 i = alg_find_test(alg);
Herbert Xua68f6612009-07-02 16:32:12 +08003629 j = alg_find_test(driver);
3630 if (i < 0 && j < 0)
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003631 goto notest;
3632
Herbert Xua68f6612009-07-02 16:32:12 +08003633 if (fips_enabled && ((i >= 0 && !alg_test_descs[i].fips_allowed) ||
3634 (j >= 0 && !alg_test_descs[j].fips_allowed)))
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10003635 goto non_fips_alg;
3636
Herbert Xua68f6612009-07-02 16:32:12 +08003637 rc = 0;
3638 if (i >= 0)
3639 rc |= alg_test_descs[i].test(alg_test_descs + i, driver,
3640 type, mask);
Cristian Stoica032c8ca2013-07-18 18:57:07 +03003641 if (j >= 0 && j != i)
Herbert Xua68f6612009-07-02 16:32:12 +08003642 rc |= alg_test_descs[j].test(alg_test_descs + j, driver,
3643 type, mask);
3644
Jarod Wilson941fb322009-05-04 19:49:23 +08003645test_done:
Neil Hormand12d6b62008-10-12 20:36:51 +08003646 if (fips_enabled && rc)
3647 panic("%s: %s alg self test failed in fips mode!\n", driver, alg);
3648
Jarod Wilson29ecd4a2009-05-04 19:51:17 +08003649 if (fips_enabled && !rc)
Masanari Iida3e8cffd2014-10-07 00:37:54 +09003650 pr_info("alg: self-tests for %s (%s) passed\n", driver, alg);
Jarod Wilson29ecd4a2009-05-04 19:51:17 +08003651
Neil Hormand12d6b62008-10-12 20:36:51 +08003652 return rc;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003653
3654notest:
Herbert Xuda7f0332008-07-31 17:08:25 +08003655 printk(KERN_INFO "alg: No test for %s (%s)\n", alg, driver);
3656 return 0;
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10003657non_fips_alg:
3658 return -EINVAL;
Herbert Xuda7f0332008-07-31 17:08:25 +08003659}
Alexander Shishkin0b767f92010-06-03 20:53:43 +10003660
Herbert Xu326a6342010-08-06 09:40:28 +08003661#endif /* CONFIG_CRYPTO_MANAGER_DISABLE_TESTS */
Alexander Shishkin0b767f92010-06-03 20:53:43 +10003662
Herbert Xuda7f0332008-07-31 17:08:25 +08003663EXPORT_SYMBOL_GPL(alg_test);