blob: a1d42245082aa78a6977ba8fa6b042b4ffcf05ed [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 {
Eric Biggers92a4c9f2018-05-20 22:50:29 -070087 const struct cipher_testvec *vecs;
88 unsigned int count;
Herbert Xuda7f0332008-07-31 17:08:25 +080089};
90
91struct comp_test_suite {
92 struct {
Eric Biggersb13b1e02017-02-24 15:46:59 -080093 const struct comp_testvec *vecs;
Herbert Xuda7f0332008-07-31 17:08:25 +080094 unsigned int count;
95 } comp, decomp;
96};
97
98struct hash_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -080099 const struct hash_testvec *vecs;
Herbert Xuda7f0332008-07-31 17:08:25 +0800100 unsigned int count;
101};
102
Jarod Wilson7647d6c2009-05-04 19:44:50 +0800103struct cprng_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800104 const struct cprng_testvec *vecs;
Jarod Wilson7647d6c2009-05-04 19:44:50 +0800105 unsigned int count;
106};
107
Stephan Mueller64d1cdf2014-05-31 17:25:36 +0200108struct drbg_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800109 const struct drbg_testvec *vecs;
Stephan Mueller64d1cdf2014-05-31 17:25:36 +0200110 unsigned int count;
111};
112
Tadeusz Struk946cc462015-06-16 10:31:06 -0700113struct akcipher_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800114 const struct akcipher_testvec *vecs;
Tadeusz Struk946cc462015-06-16 10:31:06 -0700115 unsigned int count;
116};
117
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100118struct kpp_test_suite {
Eric Biggersb13b1e02017-02-24 15:46:59 -0800119 const struct kpp_testvec *vecs;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100120 unsigned int count;
121};
122
Herbert Xuda7f0332008-07-31 17:08:25 +0800123struct alg_test_desc {
124 const char *alg;
125 int (*test)(const struct alg_test_desc *desc, const char *driver,
126 u32 type, u32 mask);
Jarod Wilsona1915d52009-05-15 15:16:03 +1000127 int fips_allowed; /* set if alg is allowed in fips mode */
Herbert Xuda7f0332008-07-31 17:08:25 +0800128
129 union {
130 struct aead_test_suite aead;
131 struct cipher_test_suite cipher;
132 struct comp_test_suite comp;
133 struct hash_test_suite hash;
Jarod Wilson7647d6c2009-05-04 19:44:50 +0800134 struct cprng_test_suite cprng;
Stephan Mueller64d1cdf2014-05-31 17:25:36 +0200135 struct drbg_test_suite drbg;
Tadeusz Struk946cc462015-06-16 10:31:06 -0700136 struct akcipher_test_suite akcipher;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +0100137 struct kpp_test_suite kpp;
Herbert Xuda7f0332008-07-31 17:08:25 +0800138 } suite;
139};
140
Eric Biggersb13b1e02017-02-24 15:46:59 -0800141static const unsigned int IDX[8] = {
142 IDX1, IDX2, IDX3, IDX4, IDX5, IDX6, IDX7, IDX8 };
Herbert Xuda7f0332008-07-31 17:08:25 +0800143
Herbert Xuda7f0332008-07-31 17:08:25 +0800144static void hexdump(unsigned char *buf, unsigned int len)
145{
146 print_hex_dump(KERN_CONT, "", DUMP_PREFIX_OFFSET,
147 16, 1,
148 buf, len, false);
149}
150
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800151static int testmgr_alloc_buf(char *buf[XBUFSIZE])
152{
153 int i;
154
155 for (i = 0; i < XBUFSIZE; i++) {
156 buf[i] = (void *)__get_free_page(GFP_KERNEL);
157 if (!buf[i])
158 goto err_free_buf;
159 }
160
161 return 0;
162
163err_free_buf:
164 while (i-- > 0)
165 free_page((unsigned long)buf[i]);
166
167 return -ENOMEM;
168}
169
170static void testmgr_free_buf(char *buf[XBUFSIZE])
171{
172 int i;
173
174 for (i = 0; i < XBUFSIZE; i++)
175 free_page((unsigned long)buf[i]);
176}
177
Kamil Konieczny466d7b92018-01-16 15:26:13 +0100178static int ahash_guard_result(char *result, char c, int size)
179{
180 int i;
181
182 for (i = 0; i < size; i++) {
183 if (result[i] != c)
184 return -EINVAL;
185 }
186
187 return 0;
188}
189
Wang, Rui Y018ba952016-02-03 18:26:57 +0800190static int ahash_partial_update(struct ahash_request **preq,
Eric Biggersb13b1e02017-02-24 15:46:59 -0800191 struct crypto_ahash *tfm, const struct hash_testvec *template,
Wang, Rui Y018ba952016-02-03 18:26:57 +0800192 void *hash_buff, int k, int temp, struct scatterlist *sg,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100193 const char *algo, char *result, struct crypto_wait *wait)
Wang, Rui Y018ba952016-02-03 18:26:57 +0800194{
195 char *state;
196 struct ahash_request *req;
197 int statesize, ret = -EINVAL;
Joey Pabalinasda1729c2018-01-01 10:40:14 -1000198 static const unsigned char guard[] = { 0x00, 0xba, 0xad, 0x00 };
Kamil Konieczny466d7b92018-01-16 15:26:13 +0100199 int digestsize = crypto_ahash_digestsize(tfm);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800200
201 req = *preq;
202 statesize = crypto_ahash_statesize(
203 crypto_ahash_reqtfm(req));
Jan Stancek7bcb87b2016-09-28 16:38:37 +0200204 state = kmalloc(statesize + sizeof(guard), GFP_KERNEL);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800205 if (!state) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300206 pr_err("alg: hash: Failed to alloc state for %s\n", algo);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800207 goto out_nostate;
208 }
Jan Stancek7bcb87b2016-09-28 16:38:37 +0200209 memcpy(state + statesize, guard, sizeof(guard));
Kamil Konieczny466d7b92018-01-16 15:26:13 +0100210 memset(result, 1, digestsize);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800211 ret = crypto_ahash_export(req, state);
Jan Stancek7bcb87b2016-09-28 16:38:37 +0200212 WARN_ON(memcmp(state + statesize, guard, sizeof(guard)));
Wang, Rui Y018ba952016-02-03 18:26:57 +0800213 if (ret) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300214 pr_err("alg: hash: Failed to export() for %s\n", algo);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800215 goto out;
216 }
Kamil Konieczny466d7b92018-01-16 15:26:13 +0100217 ret = ahash_guard_result(result, 1, digestsize);
218 if (ret) {
219 pr_err("alg: hash: Failed, export used req->result for %s\n",
220 algo);
221 goto out;
222 }
Wang, Rui Y018ba952016-02-03 18:26:57 +0800223 ahash_request_free(req);
224 req = ahash_request_alloc(tfm, GFP_KERNEL);
225 if (!req) {
226 pr_err("alg: hash: Failed to alloc request for %s\n", algo);
227 goto out_noreq;
228 }
229 ahash_request_set_callback(req,
230 CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100231 crypto_req_done, wait);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800232
233 memcpy(hash_buff, template->plaintext + temp,
234 template->tap[k]);
235 sg_init_one(&sg[0], hash_buff, template->tap[k]);
236 ahash_request_set_crypt(req, sg, result, template->tap[k]);
237 ret = crypto_ahash_import(req, state);
238 if (ret) {
239 pr_err("alg: hash: Failed to import() for %s\n", algo);
240 goto out;
241 }
Kamil Konieczny466d7b92018-01-16 15:26:13 +0100242 ret = ahash_guard_result(result, 1, digestsize);
243 if (ret) {
244 pr_err("alg: hash: Failed, import used req->result for %s\n",
245 algo);
246 goto out;
247 }
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100248 ret = crypto_wait_req(crypto_ahash_update(req), wait);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800249 if (ret)
250 goto out;
251 *preq = req;
252 ret = 0;
253 goto out_noreq;
254out:
255 ahash_request_free(req);
256out_noreq:
257 kfree(state);
258out_nostate:
259 return ret;
260}
261
Gilad Ben-Yossef76715092018-07-01 08:02:35 +0100262enum hash_test {
263 HASH_TEST_DIGEST,
264 HASH_TEST_FINAL,
265 HASH_TEST_FINUP
266};
267
Eric Biggersb13b1e02017-02-24 15:46:59 -0800268static int __test_hash(struct crypto_ahash *tfm,
269 const struct hash_testvec *template, unsigned int tcount,
Gilad Ben-Yossef76715092018-07-01 08:02:35 +0100270 enum hash_test test_type, const int align_offset)
Herbert Xuda7f0332008-07-31 17:08:25 +0800271{
272 const char *algo = crypto_tfm_alg_driver_name(crypto_ahash_tfm(tfm));
Andrew Lutomirskie93acd62017-01-10 15:24:46 -0800273 size_t digest_size = crypto_ahash_digestsize(tfm);
Herbert Xuda7f0332008-07-31 17:08:25 +0800274 unsigned int i, j, k, temp;
275 struct scatterlist sg[8];
Horia Geanta29b77e52014-07-23 11:59:38 +0300276 char *result;
277 char *key;
Herbert Xuda7f0332008-07-31 17:08:25 +0800278 struct ahash_request *req;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100279 struct crypto_wait wait;
Herbert Xuda7f0332008-07-31 17:08:25 +0800280 void *hash_buff;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800281 char *xbuf[XBUFSIZE];
282 int ret = -ENOMEM;
283
Andrew Lutomirskie93acd62017-01-10 15:24:46 -0800284 result = kmalloc(digest_size, GFP_KERNEL);
Horia Geanta29b77e52014-07-23 11:59:38 +0300285 if (!result)
286 return ret;
287 key = kmalloc(MAX_KEYLEN, GFP_KERNEL);
288 if (!key)
289 goto out_nobuf;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800290 if (testmgr_alloc_buf(xbuf))
291 goto out_nobuf;
Herbert Xuda7f0332008-07-31 17:08:25 +0800292
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100293 crypto_init_wait(&wait);
Herbert Xuda7f0332008-07-31 17:08:25 +0800294
295 req = ahash_request_alloc(tfm, GFP_KERNEL);
296 if (!req) {
297 printk(KERN_ERR "alg: hash: Failed to allocate request for "
298 "%s\n", algo);
Herbert Xuda7f0332008-07-31 17:08:25 +0800299 goto out_noreq;
300 }
301 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100302 crypto_req_done, &wait);
Herbert Xuda7f0332008-07-31 17:08:25 +0800303
Herbert Xua0cfae52009-05-29 16:23:12 +1000304 j = 0;
Herbert Xuda7f0332008-07-31 17:08:25 +0800305 for (i = 0; i < tcount; i++) {
Herbert Xua0cfae52009-05-29 16:23:12 +1000306 if (template[i].np)
307 continue;
308
Jussi Kivilinnada5ffe12013-06-13 17:37:55 +0300309 ret = -EINVAL;
310 if (WARN_ON(align_offset + template[i].psize > PAGE_SIZE))
311 goto out;
312
Herbert Xua0cfae52009-05-29 16:23:12 +1000313 j++;
Andrew Lutomirskie93acd62017-01-10 15:24:46 -0800314 memset(result, 0, digest_size);
Herbert Xuda7f0332008-07-31 17:08:25 +0800315
316 hash_buff = xbuf[0];
Jussi Kivilinnada5ffe12013-06-13 17:37:55 +0300317 hash_buff += align_offset;
Herbert Xuda7f0332008-07-31 17:08:25 +0800318
319 memcpy(hash_buff, template[i].plaintext, template[i].psize);
320 sg_init_one(&sg[0], hash_buff, template[i].psize);
321
322 if (template[i].ksize) {
323 crypto_ahash_clear_flags(tfm, ~0);
Horia Geanta29b77e52014-07-23 11:59:38 +0300324 if (template[i].ksize > MAX_KEYLEN) {
325 pr_err("alg: hash: setkey failed on test %d for %s: key size %d > %d\n",
326 j, algo, template[i].ksize, MAX_KEYLEN);
327 ret = -EINVAL;
328 goto out;
329 }
330 memcpy(key, template[i].key, template[i].ksize);
331 ret = crypto_ahash_setkey(tfm, key, template[i].ksize);
Herbert Xuda7f0332008-07-31 17:08:25 +0800332 if (ret) {
333 printk(KERN_ERR "alg: hash: setkey failed on "
Herbert Xua0cfae52009-05-29 16:23:12 +1000334 "test %d for %s: ret=%d\n", j, algo,
Herbert Xuda7f0332008-07-31 17:08:25 +0800335 -ret);
336 goto out;
337 }
338 }
339
340 ahash_request_set_crypt(req, sg, result, template[i].psize);
Gilad Ben-Yossef76715092018-07-01 08:02:35 +0100341 switch (test_type) {
342 case HASH_TEST_DIGEST:
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100343 ret = crypto_wait_req(crypto_ahash_digest(req), &wait);
David S. Millera8f1a052010-05-19 14:12:03 +1000344 if (ret) {
345 pr_err("alg: hash: digest failed on test %d "
346 "for %s: ret=%d\n", j, algo, -ret);
347 goto out;
Herbert Xuda7f0332008-07-31 17:08:25 +0800348 }
Gilad Ben-Yossef76715092018-07-01 08:02:35 +0100349 break;
350
351 case HASH_TEST_FINAL:
Kamil Konieczny466d7b92018-01-16 15:26:13 +0100352 memset(result, 1, digest_size);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100353 ret = crypto_wait_req(crypto_ahash_init(req), &wait);
David S. Millera8f1a052010-05-19 14:12:03 +1000354 if (ret) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300355 pr_err("alg: hash: init failed on test %d "
David S. Millera8f1a052010-05-19 14:12:03 +1000356 "for %s: ret=%d\n", j, algo, -ret);
357 goto out;
358 }
Kamil Konieczny466d7b92018-01-16 15:26:13 +0100359 ret = ahash_guard_result(result, 1, digest_size);
360 if (ret) {
361 pr_err("alg: hash: init failed on test %d "
362 "for %s: used req->result\n", j, algo);
363 goto out;
364 }
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100365 ret = crypto_wait_req(crypto_ahash_update(req), &wait);
David S. Millera8f1a052010-05-19 14:12:03 +1000366 if (ret) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300367 pr_err("alg: hash: update failed on test %d "
David S. Millera8f1a052010-05-19 14:12:03 +1000368 "for %s: ret=%d\n", j, algo, -ret);
369 goto out;
370 }
Kamil Konieczny466d7b92018-01-16 15:26:13 +0100371 ret = ahash_guard_result(result, 1, digest_size);
372 if (ret) {
373 pr_err("alg: hash: update failed on test %d "
374 "for %s: used req->result\n", j, algo);
375 goto out;
376 }
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100377 ret = crypto_wait_req(crypto_ahash_final(req), &wait);
David S. Millera8f1a052010-05-19 14:12:03 +1000378 if (ret) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300379 pr_err("alg: hash: final failed on test %d "
David S. Millera8f1a052010-05-19 14:12:03 +1000380 "for %s: ret=%d\n", j, algo, -ret);
381 goto out;
382 }
Gilad Ben-Yossef76715092018-07-01 08:02:35 +0100383 break;
384
385 case HASH_TEST_FINUP:
386 memset(result, 1, digest_size);
387 ret = crypto_wait_req(crypto_ahash_init(req), &wait);
388 if (ret) {
389 pr_err("alg: hash: init failed on test %d "
390 "for %s: ret=%d\n", j, algo, -ret);
391 goto out;
392 }
393 ret = ahash_guard_result(result, 1, digest_size);
394 if (ret) {
395 pr_err("alg: hash: init failed on test %d "
396 "for %s: used req->result\n", j, algo);
397 goto out;
398 }
399 ret = crypto_wait_req(crypto_ahash_finup(req), &wait);
400 if (ret) {
401 pr_err("alg: hash: final failed on test %d "
402 "for %s: ret=%d\n", j, algo, -ret);
403 goto out;
404 }
405 break;
Herbert Xuda7f0332008-07-31 17:08:25 +0800406 }
407
408 if (memcmp(result, template[i].digest,
409 crypto_ahash_digestsize(tfm))) {
410 printk(KERN_ERR "alg: hash: Test %d failed for %s\n",
Herbert Xua0cfae52009-05-29 16:23:12 +1000411 j, algo);
Herbert Xuda7f0332008-07-31 17:08:25 +0800412 hexdump(result, crypto_ahash_digestsize(tfm));
413 ret = -EINVAL;
414 goto out;
415 }
416 }
417
Gilad Ben-Yossef76715092018-07-01 08:02:35 +0100418 if (test_type)
419 goto out;
420
Herbert Xuda7f0332008-07-31 17:08:25 +0800421 j = 0;
422 for (i = 0; i < tcount; i++) {
Jussi Kivilinnada5ffe12013-06-13 17:37:55 +0300423 /* alignment tests are only done with continuous buffers */
424 if (align_offset != 0)
425 break;
426
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300427 if (!template[i].np)
428 continue;
Herbert Xuda7f0332008-07-31 17:08:25 +0800429
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300430 j++;
Andrew Lutomirskie93acd62017-01-10 15:24:46 -0800431 memset(result, 0, digest_size);
Herbert Xuda7f0332008-07-31 17:08:25 +0800432
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300433 temp = 0;
434 sg_init_table(sg, template[i].np);
435 ret = -EINVAL;
436 for (k = 0; k < template[i].np; k++) {
437 if (WARN_ON(offset_in_page(IDX[k]) +
438 template[i].tap[k] > PAGE_SIZE))
Herbert Xuda7f0332008-07-31 17:08:25 +0800439 goto out;
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300440 sg_set_buf(&sg[k],
441 memcpy(xbuf[IDX[k] >> PAGE_SHIFT] +
442 offset_in_page(IDX[k]),
443 template[i].plaintext + temp,
444 template[i].tap[k]),
445 template[i].tap[k]);
446 temp += template[i].tap[k];
447 }
Herbert Xuda7f0332008-07-31 17:08:25 +0800448
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300449 if (template[i].ksize) {
450 if (template[i].ksize > MAX_KEYLEN) {
451 pr_err("alg: hash: setkey failed on test %d for %s: key size %d > %d\n",
452 j, algo, template[i].ksize, MAX_KEYLEN);
Herbert Xuda7f0332008-07-31 17:08:25 +0800453 ret = -EINVAL;
454 goto out;
455 }
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300456 crypto_ahash_clear_flags(tfm, ~0);
457 memcpy(key, template[i].key, template[i].ksize);
458 ret = crypto_ahash_setkey(tfm, key, template[i].ksize);
459
460 if (ret) {
461 printk(KERN_ERR "alg: hash: setkey "
462 "failed on chunking test %d "
463 "for %s: ret=%d\n", j, algo, -ret);
464 goto out;
465 }
466 }
467
468 ahash_request_set_crypt(req, sg, result, template[i].psize);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100469 ret = crypto_wait_req(crypto_ahash_digest(req), &wait);
470 if (ret) {
471 pr_err("alg: hash: digest failed on chunking test %d for %s: ret=%d\n",
472 j, algo, -ret);
Cristian Stoica5f2b4242014-08-08 14:27:50 +0300473 goto out;
474 }
475
476 if (memcmp(result, template[i].digest,
477 crypto_ahash_digestsize(tfm))) {
478 printk(KERN_ERR "alg: hash: Chunking test %d "
479 "failed for %s\n", j, algo);
480 hexdump(result, crypto_ahash_digestsize(tfm));
481 ret = -EINVAL;
482 goto out;
Herbert Xuda7f0332008-07-31 17:08:25 +0800483 }
484 }
485
Wang, Rui Y018ba952016-02-03 18:26:57 +0800486 /* partial update exercise */
487 j = 0;
488 for (i = 0; i < tcount; i++) {
489 /* alignment tests are only done with continuous buffers */
490 if (align_offset != 0)
491 break;
492
493 if (template[i].np < 2)
494 continue;
495
496 j++;
Andrew Lutomirskie93acd62017-01-10 15:24:46 -0800497 memset(result, 0, digest_size);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800498
499 ret = -EINVAL;
500 hash_buff = xbuf[0];
501 memcpy(hash_buff, template[i].plaintext,
502 template[i].tap[0]);
503 sg_init_one(&sg[0], hash_buff, template[i].tap[0]);
504
505 if (template[i].ksize) {
506 crypto_ahash_clear_flags(tfm, ~0);
507 if (template[i].ksize > MAX_KEYLEN) {
508 pr_err("alg: hash: setkey failed on test %d for %s: key size %d > %d\n",
509 j, algo, template[i].ksize, MAX_KEYLEN);
510 ret = -EINVAL;
511 goto out;
512 }
513 memcpy(key, template[i].key, template[i].ksize);
514 ret = crypto_ahash_setkey(tfm, key, template[i].ksize);
515 if (ret) {
516 pr_err("alg: hash: setkey failed on test %d for %s: ret=%d\n",
517 j, algo, -ret);
518 goto out;
519 }
520 }
521
522 ahash_request_set_crypt(req, sg, result, template[i].tap[0]);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100523 ret = crypto_wait_req(crypto_ahash_init(req), &wait);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800524 if (ret) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300525 pr_err("alg: hash: init failed on test %d for %s: ret=%d\n",
Wang, Rui Y018ba952016-02-03 18:26:57 +0800526 j, algo, -ret);
527 goto out;
528 }
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100529 ret = crypto_wait_req(crypto_ahash_update(req), &wait);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800530 if (ret) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300531 pr_err("alg: hash: update failed on test %d for %s: ret=%d\n",
Wang, Rui Y018ba952016-02-03 18:26:57 +0800532 j, algo, -ret);
533 goto out;
534 }
535
536 temp = template[i].tap[0];
537 for (k = 1; k < template[i].np; k++) {
538 ret = ahash_partial_update(&req, tfm, &template[i],
539 hash_buff, k, temp, &sg[0], algo, result,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100540 &wait);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800541 if (ret) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300542 pr_err("alg: hash: partial update failed on test %d for %s: ret=%d\n",
Wang, Rui Y018ba952016-02-03 18:26:57 +0800543 j, algo, -ret);
544 goto out_noreq;
545 }
546 temp += template[i].tap[k];
547 }
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100548 ret = crypto_wait_req(crypto_ahash_final(req), &wait);
Wang, Rui Y018ba952016-02-03 18:26:57 +0800549 if (ret) {
Gilad Ben-Yossefcf3f9602017-06-05 08:33:43 +0300550 pr_err("alg: hash: final failed on test %d for %s: ret=%d\n",
Wang, Rui Y018ba952016-02-03 18:26:57 +0800551 j, algo, -ret);
552 goto out;
553 }
554 if (memcmp(result, template[i].digest,
555 crypto_ahash_digestsize(tfm))) {
556 pr_err("alg: hash: Partial Test %d failed for %s\n",
557 j, algo);
558 hexdump(result, crypto_ahash_digestsize(tfm));
559 ret = -EINVAL;
560 goto out;
561 }
562 }
563
Herbert Xuda7f0332008-07-31 17:08:25 +0800564 ret = 0;
565
566out:
567 ahash_request_free(req);
568out_noreq:
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800569 testmgr_free_buf(xbuf);
570out_nobuf:
Horia Geanta29b77e52014-07-23 11:59:38 +0300571 kfree(key);
572 kfree(result);
Herbert Xuda7f0332008-07-31 17:08:25 +0800573 return ret;
574}
575
Eric Biggersb13b1e02017-02-24 15:46:59 -0800576static int test_hash(struct crypto_ahash *tfm,
577 const struct hash_testvec *template,
Gilad Ben-Yossef76715092018-07-01 08:02:35 +0100578 unsigned int tcount, enum hash_test test_type)
Jussi Kivilinnada5ffe12013-06-13 17:37:55 +0300579{
580 unsigned int alignmask;
581 int ret;
582
Gilad Ben-Yossef76715092018-07-01 08:02:35 +0100583 ret = __test_hash(tfm, template, tcount, test_type, 0);
Jussi Kivilinnada5ffe12013-06-13 17:37:55 +0300584 if (ret)
585 return ret;
586
587 /* test unaligned buffers, check with one byte offset */
Gilad Ben-Yossef76715092018-07-01 08:02:35 +0100588 ret = __test_hash(tfm, template, tcount, test_type, 1);
Jussi Kivilinnada5ffe12013-06-13 17:37:55 +0300589 if (ret)
590 return ret;
591
592 alignmask = crypto_tfm_alg_alignmask(&tfm->base);
593 if (alignmask) {
594 /* Check if alignment mask for tfm is correctly set. */
Gilad Ben-Yossef76715092018-07-01 08:02:35 +0100595 ret = __test_hash(tfm, template, tcount, test_type,
Jussi Kivilinnada5ffe12013-06-13 17:37:55 +0300596 alignmask + 1);
597 if (ret)
598 return ret;
599 }
600
601 return 0;
602}
603
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300604static int __test_aead(struct crypto_aead *tfm, int enc,
Eric Biggersb13b1e02017-02-24 15:46:59 -0800605 const struct aead_testvec *template, unsigned int tcount,
Jussi Kivilinna58dcf542013-06-13 17:37:50 +0300606 const bool diff_dst, const int align_offset)
Herbert Xuda7f0332008-07-31 17:08:25 +0800607{
608 const char *algo = crypto_tfm_alg_driver_name(crypto_aead_tfm(tfm));
609 unsigned int i, j, k, n, temp;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800610 int ret = -ENOMEM;
Herbert Xuda7f0332008-07-31 17:08:25 +0800611 char *q;
612 char *key;
613 struct aead_request *req;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300614 struct scatterlist *sg;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300615 struct scatterlist *sgout;
616 const char *e, *d;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100617 struct crypto_wait wait;
Cristian Stoica424a5da2015-01-28 11:03:05 +0200618 unsigned int authsize, iv_len;
Herbert Xuda7f0332008-07-31 17:08:25 +0800619 void *input;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300620 void *output;
Herbert Xuda7f0332008-07-31 17:08:25 +0800621 void *assoc;
Tadeusz Struk9bac0192014-05-19 09:51:33 -0700622 char *iv;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800623 char *xbuf[XBUFSIZE];
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300624 char *xoutbuf[XBUFSIZE];
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800625 char *axbuf[XBUFSIZE];
626
Tadeusz Struk9bac0192014-05-19 09:51:33 -0700627 iv = kzalloc(MAX_IVLEN, GFP_KERNEL);
628 if (!iv)
629 return ret;
Horia Geanta29b77e52014-07-23 11:59:38 +0300630 key = kmalloc(MAX_KEYLEN, GFP_KERNEL);
631 if (!key)
632 goto out_noxbuf;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800633 if (testmgr_alloc_buf(xbuf))
634 goto out_noxbuf;
635 if (testmgr_alloc_buf(axbuf))
636 goto out_noaxbuf;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300637 if (diff_dst && testmgr_alloc_buf(xoutbuf))
638 goto out_nooutbuf;
639
640 /* avoid "the frame size is larger than 1024 bytes" compiler warning */
Kees Cook6da2ec52018-06-12 13:55:00 -0700641 sg = kmalloc(array3_size(sizeof(*sg), 8, (diff_dst ? 4 : 2)),
642 GFP_KERNEL);
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300643 if (!sg)
644 goto out_nosg;
Herbert Xu8a525fcd2015-05-27 16:03:43 +0800645 sgout = &sg[16];
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300646
647 if (diff_dst)
648 d = "-ddst";
649 else
650 d = "";
651
Herbert Xuda7f0332008-07-31 17:08:25 +0800652 if (enc == ENCRYPT)
653 e = "encryption";
654 else
655 e = "decryption";
656
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100657 crypto_init_wait(&wait);
Herbert Xuda7f0332008-07-31 17:08:25 +0800658
659 req = aead_request_alloc(tfm, GFP_KERNEL);
660 if (!req) {
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300661 pr_err("alg: aead%s: Failed to allocate request for %s\n",
662 d, algo);
Herbert Xuda7f0332008-07-31 17:08:25 +0800663 goto out;
664 }
665
666 aead_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100667 crypto_req_done, &wait);
Herbert Xuda7f0332008-07-31 17:08:25 +0800668
Jerome Marchandabfa7f42016-02-03 13:58:12 +0100669 iv_len = crypto_aead_ivsize(tfm);
670
Herbert Xuda7f0332008-07-31 17:08:25 +0800671 for (i = 0, j = 0; i < tcount; i++) {
Cristian Stoica05b1d332014-07-28 13:11:23 +0300672 if (template[i].np)
673 continue;
Herbert Xuda7f0332008-07-31 17:08:25 +0800674
Cristian Stoica05b1d332014-07-28 13:11:23 +0300675 j++;
Herbert Xuda7f0332008-07-31 17:08:25 +0800676
Cristian Stoica05b1d332014-07-28 13:11:23 +0300677 /* some templates have no input data but they will
678 * touch input
679 */
680 input = xbuf[0];
681 input += align_offset;
682 assoc = axbuf[0];
683
684 ret = -EINVAL;
685 if (WARN_ON(align_offset + template[i].ilen >
686 PAGE_SIZE || template[i].alen > PAGE_SIZE))
687 goto out;
688
689 memcpy(input, template[i].input, template[i].ilen);
690 memcpy(assoc, template[i].assoc, template[i].alen);
691 if (template[i].iv)
Cristian Stoica424a5da2015-01-28 11:03:05 +0200692 memcpy(iv, template[i].iv, iv_len);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300693 else
Cristian Stoica424a5da2015-01-28 11:03:05 +0200694 memset(iv, 0, iv_len);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300695
696 crypto_aead_clear_flags(tfm, ~0);
697 if (template[i].wk)
698 crypto_aead_set_flags(tfm, CRYPTO_TFM_REQ_WEAK_KEY);
699
700 if (template[i].klen > MAX_KEYLEN) {
701 pr_err("alg: aead%s: setkey failed on test %d for %s: key size %d > %d\n",
702 d, j, algo, template[i].klen,
703 MAX_KEYLEN);
Herbert Xufd57f222009-05-29 16:05:42 +1000704 ret = -EINVAL;
Cristian Stoica05b1d332014-07-28 13:11:23 +0300705 goto out;
706 }
707 memcpy(key, template[i].key, template[i].klen);
Herbert Xufd57f222009-05-29 16:05:42 +1000708
Cristian Stoica05b1d332014-07-28 13:11:23 +0300709 ret = crypto_aead_setkey(tfm, key, template[i].klen);
Yanjiang Jin0fae0c12016-07-29 16:32:09 +0800710 if (template[i].fail == !ret) {
Cristian Stoica05b1d332014-07-28 13:11:23 +0300711 pr_err("alg: aead%s: setkey failed on test %d for %s: flags=%x\n",
712 d, j, algo, crypto_aead_get_flags(tfm));
713 goto out;
714 } else if (ret)
715 continue;
Herbert Xuda7f0332008-07-31 17:08:25 +0800716
Cristian Stoica05b1d332014-07-28 13:11:23 +0300717 authsize = abs(template[i].rlen - template[i].ilen);
718 ret = crypto_aead_setauthsize(tfm, authsize);
719 if (ret) {
720 pr_err("alg: aead%s: Failed to set authsize to %u on test %d for %s\n",
721 d, authsize, j, algo);
722 goto out;
723 }
Herbert Xuda7f0332008-07-31 17:08:25 +0800724
Herbert Xu8a525fcd2015-05-27 16:03:43 +0800725 k = !!template[i].alen;
726 sg_init_table(sg, k + 1);
727 sg_set_buf(&sg[0], assoc, template[i].alen);
728 sg_set_buf(&sg[k], input,
729 template[i].ilen + (enc ? authsize : 0));
730 output = input;
731
Cristian Stoica05b1d332014-07-28 13:11:23 +0300732 if (diff_dst) {
Herbert Xu8a525fcd2015-05-27 16:03:43 +0800733 sg_init_table(sgout, k + 1);
734 sg_set_buf(&sgout[0], assoc, template[i].alen);
735
Cristian Stoica05b1d332014-07-28 13:11:23 +0300736 output = xoutbuf[0];
737 output += align_offset;
Herbert Xu8a525fcd2015-05-27 16:03:43 +0800738 sg_set_buf(&sgout[k], output,
739 template[i].rlen + (enc ? 0 : authsize));
Cristian Stoica05b1d332014-07-28 13:11:23 +0300740 }
741
Cristian Stoica05b1d332014-07-28 13:11:23 +0300742 aead_request_set_crypt(req, sg, (diff_dst) ? sgout : sg,
743 template[i].ilen, iv);
744
Herbert Xu8a525fcd2015-05-27 16:03:43 +0800745 aead_request_set_ad(req, template[i].alen);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300746
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100747 ret = crypto_wait_req(enc ? crypto_aead_encrypt(req)
748 : crypto_aead_decrypt(req), &wait);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300749
750 switch (ret) {
751 case 0:
752 if (template[i].novrfy) {
753 /* verification was supposed to fail */
754 pr_err("alg: aead%s: %s failed on test %d for %s: ret was 0, expected -EBADMSG\n",
755 d, e, j, algo);
756 /* so really, we got a bad message */
757 ret = -EBADMSG;
Horia Geanta29b77e52014-07-23 11:59:38 +0300758 goto out;
759 }
Cristian Stoica05b1d332014-07-28 13:11:23 +0300760 break;
Cristian Stoica05b1d332014-07-28 13:11:23 +0300761 case -EBADMSG:
762 if (template[i].novrfy)
763 /* verification failure was expected */
764 continue;
765 /* fall through */
766 default:
767 pr_err("alg: aead%s: %s failed on test %d for %s: ret=%d\n",
768 d, e, j, algo, -ret);
769 goto out;
770 }
Herbert Xuda7f0332008-07-31 17:08:25 +0800771
Cristian Stoica05b1d332014-07-28 13:11:23 +0300772 q = output;
773 if (memcmp(q, template[i].result, template[i].rlen)) {
774 pr_err("alg: aead%s: Test %d failed on %s for %s\n",
775 d, j, e, algo);
776 hexdump(q, template[i].rlen);
777 ret = -EINVAL;
778 goto out;
Herbert Xuda7f0332008-07-31 17:08:25 +0800779 }
780 }
781
782 for (i = 0, j = 0; i < tcount; i++) {
Jussi Kivilinna58dcf542013-06-13 17:37:50 +0300783 /* alignment tests are only done with continuous buffers */
784 if (align_offset != 0)
785 break;
786
Cristian Stoica05b1d332014-07-28 13:11:23 +0300787 if (!template[i].np)
788 continue;
Herbert Xuda7f0332008-07-31 17:08:25 +0800789
Cristian Stoica05b1d332014-07-28 13:11:23 +0300790 j++;
Herbert Xuda7f0332008-07-31 17:08:25 +0800791
Cristian Stoica05b1d332014-07-28 13:11:23 +0300792 if (template[i].iv)
Jerome Marchandabfa7f42016-02-03 13:58:12 +0100793 memcpy(iv, template[i].iv, iv_len);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300794 else
795 memset(iv, 0, MAX_IVLEN);
796
797 crypto_aead_clear_flags(tfm, ~0);
798 if (template[i].wk)
799 crypto_aead_set_flags(tfm, CRYPTO_TFM_REQ_WEAK_KEY);
800 if (template[i].klen > MAX_KEYLEN) {
801 pr_err("alg: aead%s: setkey failed on test %d for %s: key size %d > %d\n",
802 d, j, algo, template[i].klen, MAX_KEYLEN);
803 ret = -EINVAL;
804 goto out;
805 }
806 memcpy(key, template[i].key, template[i].klen);
807
808 ret = crypto_aead_setkey(tfm, key, template[i].klen);
Yanjiang Jin0fae0c12016-07-29 16:32:09 +0800809 if (template[i].fail == !ret) {
Cristian Stoica05b1d332014-07-28 13:11:23 +0300810 pr_err("alg: aead%s: setkey failed on chunk test %d for %s: flags=%x\n",
811 d, j, algo, crypto_aead_get_flags(tfm));
812 goto out;
813 } else if (ret)
814 continue;
815
816 authsize = abs(template[i].rlen - template[i].ilen);
817
818 ret = -EINVAL;
Herbert Xu8a525fcd2015-05-27 16:03:43 +0800819 sg_init_table(sg, template[i].anp + template[i].np);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300820 if (diff_dst)
Herbert Xu8a525fcd2015-05-27 16:03:43 +0800821 sg_init_table(sgout, template[i].anp + template[i].np);
822
823 ret = -EINVAL;
824 for (k = 0, temp = 0; k < template[i].anp; k++) {
825 if (WARN_ON(offset_in_page(IDX[k]) +
826 template[i].atap[k] > PAGE_SIZE))
827 goto out;
828 sg_set_buf(&sg[k],
829 memcpy(axbuf[IDX[k] >> PAGE_SHIFT] +
830 offset_in_page(IDX[k]),
831 template[i].assoc + temp,
832 template[i].atap[k]),
833 template[i].atap[k]);
834 if (diff_dst)
835 sg_set_buf(&sgout[k],
836 axbuf[IDX[k] >> PAGE_SHIFT] +
837 offset_in_page(IDX[k]),
838 template[i].atap[k]);
839 temp += template[i].atap[k];
840 }
841
Cristian Stoica05b1d332014-07-28 13:11:23 +0300842 for (k = 0, temp = 0; k < template[i].np; k++) {
843 if (WARN_ON(offset_in_page(IDX[k]) +
844 template[i].tap[k] > PAGE_SIZE))
845 goto out;
846
847 q = xbuf[IDX[k] >> PAGE_SHIFT] + offset_in_page(IDX[k]);
848 memcpy(q, template[i].input + temp, template[i].tap[k]);
Herbert Xu8a525fcd2015-05-27 16:03:43 +0800849 sg_set_buf(&sg[template[i].anp + k],
850 q, template[i].tap[k]);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300851
852 if (diff_dst) {
853 q = xoutbuf[IDX[k] >> PAGE_SHIFT] +
854 offset_in_page(IDX[k]);
855
856 memset(q, 0, template[i].tap[k]);
857
Herbert Xu8a525fcd2015-05-27 16:03:43 +0800858 sg_set_buf(&sgout[template[i].anp + k],
859 q, template[i].tap[k]);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300860 }
861
862 n = template[i].tap[k];
863 if (k == template[i].np - 1 && enc)
864 n += authsize;
865 if (offset_in_page(q) + n < PAGE_SIZE)
866 q[n] = 0;
867
868 temp += template[i].tap[k];
869 }
870
871 ret = crypto_aead_setauthsize(tfm, authsize);
872 if (ret) {
873 pr_err("alg: aead%s: Failed to set authsize to %u on chunk test %d for %s\n",
874 d, authsize, j, algo);
875 goto out;
876 }
877
878 if (enc) {
Herbert Xu8a525fcd2015-05-27 16:03:43 +0800879 if (WARN_ON(sg[template[i].anp + k - 1].offset +
880 sg[template[i].anp + k - 1].length +
881 authsize > PAGE_SIZE)) {
Horia Geanta29b77e52014-07-23 11:59:38 +0300882 ret = -EINVAL;
883 goto out;
884 }
Herbert Xuda7f0332008-07-31 17:08:25 +0800885
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300886 if (diff_dst)
Herbert Xu8a525fcd2015-05-27 16:03:43 +0800887 sgout[template[i].anp + k - 1].length +=
888 authsize;
889 sg[template[i].anp + k - 1].length += authsize;
Cristian Stoica05b1d332014-07-28 13:11:23 +0300890 }
891
892 aead_request_set_crypt(req, sg, (diff_dst) ? sgout : sg,
893 template[i].ilen,
894 iv);
895
Herbert Xu8a525fcd2015-05-27 16:03:43 +0800896 aead_request_set_ad(req, template[i].alen);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300897
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +0100898 ret = crypto_wait_req(enc ? crypto_aead_encrypt(req)
899 : crypto_aead_decrypt(req), &wait);
Cristian Stoica05b1d332014-07-28 13:11:23 +0300900
901 switch (ret) {
902 case 0:
903 if (template[i].novrfy) {
904 /* verification was supposed to fail */
905 pr_err("alg: aead%s: %s failed on chunk test %d for %s: ret was 0, expected -EBADMSG\n",
906 d, e, j, algo);
907 /* so really, we got a bad message */
908 ret = -EBADMSG;
909 goto out;
910 }
911 break;
Cristian Stoica05b1d332014-07-28 13:11:23 +0300912 case -EBADMSG:
913 if (template[i].novrfy)
914 /* verification failure was expected */
915 continue;
916 /* fall through */
917 default:
918 pr_err("alg: aead%s: %s failed on chunk test %d for %s: ret=%d\n",
919 d, e, j, algo, -ret);
920 goto out;
921 }
922
923 ret = -EINVAL;
924 for (k = 0, temp = 0; k < template[i].np; k++) {
925 if (diff_dst)
926 q = xoutbuf[IDX[k] >> PAGE_SHIFT] +
927 offset_in_page(IDX[k]);
928 else
Herbert Xuda7f0332008-07-31 17:08:25 +0800929 q = xbuf[IDX[k] >> PAGE_SHIFT] +
930 offset_in_page(IDX[k]);
931
Cristian Stoica05b1d332014-07-28 13:11:23 +0300932 n = template[i].tap[k];
933 if (k == template[i].np - 1)
934 n += enc ? authsize : -authsize;
Herbert Xuda7f0332008-07-31 17:08:25 +0800935
Cristian Stoica05b1d332014-07-28 13:11:23 +0300936 if (memcmp(q, template[i].result + temp, n)) {
937 pr_err("alg: aead%s: Chunk test %d failed on %s at page %u for %s\n",
938 d, j, e, k, algo);
939 hexdump(q, n);
Herbert Xuda7f0332008-07-31 17:08:25 +0800940 goto out;
941 }
942
Cristian Stoica05b1d332014-07-28 13:11:23 +0300943 q += n;
944 if (k == template[i].np - 1 && !enc) {
945 if (!diff_dst &&
946 memcmp(q, template[i].input +
947 temp + n, authsize))
948 n = authsize;
Horia Geanta8ec25c52013-11-28 15:11:18 +0200949 else
Cristian Stoica05b1d332014-07-28 13:11:23 +0300950 n = 0;
951 } else {
952 for (n = 0; offset_in_page(q + n) && q[n]; n++)
953 ;
Herbert Xuda7f0332008-07-31 17:08:25 +0800954 }
Cristian Stoica05b1d332014-07-28 13:11:23 +0300955 if (n) {
956 pr_err("alg: aead%s: Result buffer corruption in chunk test %d on %s at page %u for %s: %u bytes:\n",
957 d, j, e, k, algo, n);
958 hexdump(q, n);
Herbert Xuda7f0332008-07-31 17:08:25 +0800959 goto out;
960 }
961
Cristian Stoica05b1d332014-07-28 13:11:23 +0300962 temp += template[i].tap[k];
Herbert Xuda7f0332008-07-31 17:08:25 +0800963 }
964 }
965
966 ret = 0;
967
968out:
969 aead_request_free(req);
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300970 kfree(sg);
971out_nosg:
972 if (diff_dst)
973 testmgr_free_buf(xoutbuf);
974out_nooutbuf:
Herbert Xuf8b0d4d2009-05-06 14:15:47 +0800975 testmgr_free_buf(axbuf);
976out_noaxbuf:
977 testmgr_free_buf(xbuf);
978out_noxbuf:
Horia Geanta29b77e52014-07-23 11:59:38 +0300979 kfree(key);
Tadeusz Struk9bac0192014-05-19 09:51:33 -0700980 kfree(iv);
Herbert Xuda7f0332008-07-31 17:08:25 +0800981 return ret;
982}
983
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300984static int test_aead(struct crypto_aead *tfm, int enc,
Eric Biggersb13b1e02017-02-24 15:46:59 -0800985 const struct aead_testvec *template, unsigned int tcount)
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300986{
Jussi Kivilinna58dcf542013-06-13 17:37:50 +0300987 unsigned int alignmask;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300988 int ret;
989
990 /* test 'dst == src' case */
Jussi Kivilinna58dcf542013-06-13 17:37:50 +0300991 ret = __test_aead(tfm, enc, template, tcount, false, 0);
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +0300992 if (ret)
993 return ret;
994
995 /* test 'dst != src' case */
Jussi Kivilinna58dcf542013-06-13 17:37:50 +0300996 ret = __test_aead(tfm, enc, template, tcount, true, 0);
997 if (ret)
998 return ret;
999
1000 /* test unaligned buffers, check with one byte offset */
1001 ret = __test_aead(tfm, enc, template, tcount, true, 1);
1002 if (ret)
1003 return ret;
1004
1005 alignmask = crypto_tfm_alg_alignmask(&tfm->base);
1006 if (alignmask) {
1007 /* Check if alignment mask for tfm is correctly set. */
1008 ret = __test_aead(tfm, enc, template, tcount, true,
1009 alignmask + 1);
1010 if (ret)
1011 return ret;
1012 }
1013
1014 return 0;
Jussi Kivilinnad8a32ac2012-09-21 10:26:52 +03001015}
1016
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001017static int test_cipher(struct crypto_cipher *tfm, int enc,
Eric Biggersb13b1e02017-02-24 15:46:59 -08001018 const struct cipher_testvec *template,
1019 unsigned int tcount)
Herbert Xuda7f0332008-07-31 17:08:25 +08001020{
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001021 const char *algo = crypto_tfm_alg_driver_name(crypto_cipher_tfm(tfm));
1022 unsigned int i, j, k;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001023 char *q;
1024 const char *e;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001025 const char *input, *result;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001026 void *data;
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08001027 char *xbuf[XBUFSIZE];
1028 int ret = -ENOMEM;
1029
1030 if (testmgr_alloc_buf(xbuf))
1031 goto out_nobuf;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001032
1033 if (enc == ENCRYPT)
1034 e = "encryption";
1035 else
1036 e = "decryption";
1037
1038 j = 0;
1039 for (i = 0; i < tcount; i++) {
1040 if (template[i].np)
1041 continue;
1042
Stephan Mueller10faa8c2016-08-25 15:15:01 +02001043 if (fips_enabled && template[i].fips_skip)
1044 continue;
1045
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001046 input = enc ? template[i].ptext : template[i].ctext;
1047 result = enc ? template[i].ctext : template[i].ptext;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001048 j++;
1049
Herbert Xufd57f222009-05-29 16:05:42 +10001050 ret = -EINVAL;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001051 if (WARN_ON(template[i].len > PAGE_SIZE))
Herbert Xufd57f222009-05-29 16:05:42 +10001052 goto out;
1053
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001054 data = xbuf[0];
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001055 memcpy(data, input, template[i].len);
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001056
1057 crypto_cipher_clear_flags(tfm, ~0);
1058 if (template[i].wk)
1059 crypto_cipher_set_flags(tfm, CRYPTO_TFM_REQ_WEAK_KEY);
1060
1061 ret = crypto_cipher_setkey(tfm, template[i].key,
1062 template[i].klen);
Yanjiang Jin0fae0c12016-07-29 16:32:09 +08001063 if (template[i].fail == !ret) {
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001064 printk(KERN_ERR "alg: cipher: setkey failed "
1065 "on test %d for %s: flags=%x\n", j,
1066 algo, crypto_cipher_get_flags(tfm));
1067 goto out;
1068 } else if (ret)
1069 continue;
1070
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001071 for (k = 0; k < template[i].len;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001072 k += crypto_cipher_blocksize(tfm)) {
1073 if (enc)
1074 crypto_cipher_encrypt_one(tfm, data + k,
1075 data + k);
1076 else
1077 crypto_cipher_decrypt_one(tfm, data + k,
1078 data + k);
1079 }
1080
1081 q = data;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001082 if (memcmp(q, result, template[i].len)) {
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001083 printk(KERN_ERR "alg: cipher: Test %d failed "
1084 "on %s for %s\n", j, e, algo);
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001085 hexdump(q, template[i].len);
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001086 ret = -EINVAL;
1087 goto out;
1088 }
1089 }
1090
1091 ret = 0;
1092
1093out:
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08001094 testmgr_free_buf(xbuf);
1095out_nobuf:
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001096 return ret;
1097}
1098
Herbert Xu12773d92015-08-20 15:21:46 +08001099static int __test_skcipher(struct crypto_skcipher *tfm, int enc,
Eric Biggersb13b1e02017-02-24 15:46:59 -08001100 const struct cipher_testvec *template,
1101 unsigned int tcount,
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03001102 const bool diff_dst, const int align_offset)
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001103{
Herbert Xuda7f0332008-07-31 17:08:25 +08001104 const char *algo =
Herbert Xu12773d92015-08-20 15:21:46 +08001105 crypto_tfm_alg_driver_name(crypto_skcipher_tfm(tfm));
Herbert Xuda7f0332008-07-31 17:08:25 +08001106 unsigned int i, j, k, n, temp;
Herbert Xuda7f0332008-07-31 17:08:25 +08001107 char *q;
Herbert Xu12773d92015-08-20 15:21:46 +08001108 struct skcipher_request *req;
Herbert Xuda7f0332008-07-31 17:08:25 +08001109 struct scatterlist sg[8];
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001110 struct scatterlist sgout[8];
1111 const char *e, *d;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001112 struct crypto_wait wait;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001113 const char *input, *result;
Herbert Xuda7f0332008-07-31 17:08:25 +08001114 void *data;
1115 char iv[MAX_IVLEN];
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08001116 char *xbuf[XBUFSIZE];
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001117 char *xoutbuf[XBUFSIZE];
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08001118 int ret = -ENOMEM;
Andrey Ryabinin84cba172015-09-10 13:11:55 +03001119 unsigned int ivsize = crypto_skcipher_ivsize(tfm);
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08001120
1121 if (testmgr_alloc_buf(xbuf))
1122 goto out_nobuf;
Herbert Xuda7f0332008-07-31 17:08:25 +08001123
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001124 if (diff_dst && testmgr_alloc_buf(xoutbuf))
1125 goto out_nooutbuf;
1126
1127 if (diff_dst)
1128 d = "-ddst";
1129 else
1130 d = "";
1131
Herbert Xuda7f0332008-07-31 17:08:25 +08001132 if (enc == ENCRYPT)
1133 e = "encryption";
1134 else
1135 e = "decryption";
1136
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001137 crypto_init_wait(&wait);
Herbert Xuda7f0332008-07-31 17:08:25 +08001138
Herbert Xu12773d92015-08-20 15:21:46 +08001139 req = skcipher_request_alloc(tfm, GFP_KERNEL);
Herbert Xuda7f0332008-07-31 17:08:25 +08001140 if (!req) {
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001141 pr_err("alg: skcipher%s: Failed to allocate request for %s\n",
1142 d, algo);
Herbert Xuda7f0332008-07-31 17:08:25 +08001143 goto out;
1144 }
1145
Herbert Xu12773d92015-08-20 15:21:46 +08001146 skcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001147 crypto_req_done, &wait);
Herbert Xuda7f0332008-07-31 17:08:25 +08001148
1149 j = 0;
1150 for (i = 0; i < tcount; i++) {
Cristian Stoicabbb9a7d2014-08-08 14:27:52 +03001151 if (template[i].np && !template[i].also_non_np)
1152 continue;
1153
Stephan Mueller10faa8c2016-08-25 15:15:01 +02001154 if (fips_enabled && template[i].fips_skip)
1155 continue;
1156
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001157 if (template[i].iv && !(template[i].generates_iv && enc))
Andrey Ryabinin84cba172015-09-10 13:11:55 +03001158 memcpy(iv, template[i].iv, ivsize);
Herbert Xuda7f0332008-07-31 17:08:25 +08001159 else
1160 memset(iv, 0, MAX_IVLEN);
1161
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001162 input = enc ? template[i].ptext : template[i].ctext;
1163 result = enc ? template[i].ctext : template[i].ptext;
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001164 j++;
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001165 ret = -EINVAL;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001166 if (WARN_ON(align_offset + template[i].len > PAGE_SIZE))
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001167 goto out;
1168
1169 data = xbuf[0];
1170 data += align_offset;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001171 memcpy(data, input, template[i].len);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001172
Herbert Xu12773d92015-08-20 15:21:46 +08001173 crypto_skcipher_clear_flags(tfm, ~0);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001174 if (template[i].wk)
Herbert Xu12773d92015-08-20 15:21:46 +08001175 crypto_skcipher_set_flags(tfm,
1176 CRYPTO_TFM_REQ_WEAK_KEY);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001177
Herbert Xu12773d92015-08-20 15:21:46 +08001178 ret = crypto_skcipher_setkey(tfm, template[i].key,
1179 template[i].klen);
Yanjiang Jin0fae0c12016-07-29 16:32:09 +08001180 if (template[i].fail == !ret) {
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001181 pr_err("alg: skcipher%s: setkey failed on test %d for %s: flags=%x\n",
Herbert Xu12773d92015-08-20 15:21:46 +08001182 d, j, algo, crypto_skcipher_get_flags(tfm));
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001183 goto out;
1184 } else if (ret)
1185 continue;
1186
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001187 sg_init_one(&sg[0], data, template[i].len);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001188 if (diff_dst) {
1189 data = xoutbuf[0];
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03001190 data += align_offset;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001191 sg_init_one(&sgout[0], data, template[i].len);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001192 }
Herbert Xuda7f0332008-07-31 17:08:25 +08001193
Herbert Xu12773d92015-08-20 15:21:46 +08001194 skcipher_request_set_crypt(req, sg, (diff_dst) ? sgout : sg,
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001195 template[i].len, iv);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001196 ret = crypto_wait_req(enc ? crypto_skcipher_encrypt(req) :
1197 crypto_skcipher_decrypt(req), &wait);
Herbert Xuda7f0332008-07-31 17:08:25 +08001198
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001199 if (ret) {
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001200 pr_err("alg: skcipher%s: %s failed on test %d for %s: ret=%d\n",
1201 d, e, j, algo, -ret);
1202 goto out;
1203 }
Herbert Xuda7f0332008-07-31 17:08:25 +08001204
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001205 q = data;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001206 if (memcmp(q, result, template[i].len)) {
Boris BREZILLON8a826a32015-06-16 11:46:46 +02001207 pr_err("alg: skcipher%s: Test %d failed (invalid result) on %s for %s\n",
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001208 d, j, e, algo);
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001209 hexdump(q, template[i].len);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001210 ret = -EINVAL;
1211 goto out;
Herbert Xuda7f0332008-07-31 17:08:25 +08001212 }
Boris BREZILLON8a826a32015-06-16 11:46:46 +02001213
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001214 if (template[i].generates_iv && enc &&
1215 memcmp(iv, template[i].iv, crypto_skcipher_ivsize(tfm))) {
Boris BREZILLON8a826a32015-06-16 11:46:46 +02001216 pr_err("alg: skcipher%s: Test %d failed (invalid output IV) on %s for %s\n",
1217 d, j, e, algo);
1218 hexdump(iv, crypto_skcipher_ivsize(tfm));
1219 ret = -EINVAL;
1220 goto out;
1221 }
Herbert Xuda7f0332008-07-31 17:08:25 +08001222 }
1223
1224 j = 0;
1225 for (i = 0; i < tcount; i++) {
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03001226 /* alignment tests are only done with continuous buffers */
1227 if (align_offset != 0)
1228 break;
Herbert Xuda7f0332008-07-31 17:08:25 +08001229
Cristian Stoicabbb9a7d2014-08-08 14:27:52 +03001230 if (!template[i].np)
1231 continue;
1232
Stephan Mueller10faa8c2016-08-25 15:15:01 +02001233 if (fips_enabled && template[i].fips_skip)
1234 continue;
1235
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001236 if (template[i].iv && !(template[i].generates_iv && enc))
Andrey Ryabinin84cba172015-09-10 13:11:55 +03001237 memcpy(iv, template[i].iv, ivsize);
Herbert Xuda7f0332008-07-31 17:08:25 +08001238 else
1239 memset(iv, 0, MAX_IVLEN);
1240
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001241 input = enc ? template[i].ptext : template[i].ctext;
1242 result = enc ? template[i].ctext : template[i].ptext;
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001243 j++;
Herbert Xu12773d92015-08-20 15:21:46 +08001244 crypto_skcipher_clear_flags(tfm, ~0);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001245 if (template[i].wk)
Herbert Xu12773d92015-08-20 15:21:46 +08001246 crypto_skcipher_set_flags(tfm,
1247 CRYPTO_TFM_REQ_WEAK_KEY);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001248
Herbert Xu12773d92015-08-20 15:21:46 +08001249 ret = crypto_skcipher_setkey(tfm, template[i].key,
1250 template[i].klen);
Yanjiang Jin0fae0c12016-07-29 16:32:09 +08001251 if (template[i].fail == !ret) {
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001252 pr_err("alg: skcipher%s: setkey failed on chunk test %d for %s: flags=%x\n",
Herbert Xu12773d92015-08-20 15:21:46 +08001253 d, j, algo, crypto_skcipher_get_flags(tfm));
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001254 goto out;
1255 } else if (ret)
1256 continue;
1257
1258 temp = 0;
1259 ret = -EINVAL;
1260 sg_init_table(sg, template[i].np);
1261 if (diff_dst)
1262 sg_init_table(sgout, template[i].np);
1263 for (k = 0; k < template[i].np; k++) {
1264 if (WARN_ON(offset_in_page(IDX[k]) +
1265 template[i].tap[k] > PAGE_SIZE))
Herbert Xuda7f0332008-07-31 17:08:25 +08001266 goto out;
Herbert Xuda7f0332008-07-31 17:08:25 +08001267
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001268 q = xbuf[IDX[k] >> PAGE_SHIFT] + offset_in_page(IDX[k]);
1269
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001270 memcpy(q, input + temp, template[i].tap[k]);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001271
1272 if (offset_in_page(q) + template[i].tap[k] < PAGE_SIZE)
1273 q[template[i].tap[k]] = 0;
1274
1275 sg_set_buf(&sg[k], q, template[i].tap[k]);
1276 if (diff_dst) {
1277 q = xoutbuf[IDX[k] >> PAGE_SHIFT] +
1278 offset_in_page(IDX[k]);
1279
1280 sg_set_buf(&sgout[k], q, template[i].tap[k]);
1281
1282 memset(q, 0, template[i].tap[k]);
1283 if (offset_in_page(q) +
1284 template[i].tap[k] < PAGE_SIZE)
1285 q[template[i].tap[k]] = 0;
1286 }
1287
1288 temp += template[i].tap[k];
1289 }
1290
Herbert Xu12773d92015-08-20 15:21:46 +08001291 skcipher_request_set_crypt(req, sg, (diff_dst) ? sgout : sg,
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001292 template[i].len, iv);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001293
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001294 ret = crypto_wait_req(enc ? crypto_skcipher_encrypt(req) :
1295 crypto_skcipher_decrypt(req), &wait);
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001296
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001297 if (ret) {
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001298 pr_err("alg: skcipher%s: %s failed on chunk test %d for %s: ret=%d\n",
1299 d, e, j, algo, -ret);
1300 goto out;
1301 }
1302
1303 temp = 0;
1304 ret = -EINVAL;
1305 for (k = 0; k < template[i].np; k++) {
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001306 if (diff_dst)
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001307 q = xoutbuf[IDX[k] >> PAGE_SHIFT] +
1308 offset_in_page(IDX[k]);
1309 else
Herbert Xuda7f0332008-07-31 17:08:25 +08001310 q = xbuf[IDX[k] >> PAGE_SHIFT] +
1311 offset_in_page(IDX[k]);
1312
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001313 if (memcmp(q, result + temp, template[i].tap[k])) {
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001314 pr_err("alg: skcipher%s: Chunk test %d failed on %s at page %u for %s\n",
1315 d, j, e, k, algo);
1316 hexdump(q, template[i].tap[k]);
Herbert Xuda7f0332008-07-31 17:08:25 +08001317 goto out;
1318 }
1319
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001320 q += template[i].tap[k];
1321 for (n = 0; offset_in_page(q + n) && q[n]; n++)
1322 ;
1323 if (n) {
1324 pr_err("alg: skcipher%s: Result buffer corruption in chunk test %d on %s at page %u for %s: %u bytes:\n",
1325 d, j, e, k, algo, n);
1326 hexdump(q, n);
1327 goto out;
Herbert Xuda7f0332008-07-31 17:08:25 +08001328 }
Cristian Stoicaa1aa44a2014-08-08 14:27:51 +03001329 temp += template[i].tap[k];
Herbert Xuda7f0332008-07-31 17:08:25 +08001330 }
1331 }
1332
1333 ret = 0;
1334
1335out:
Herbert Xu12773d92015-08-20 15:21:46 +08001336 skcipher_request_free(req);
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001337 if (diff_dst)
1338 testmgr_free_buf(xoutbuf);
1339out_nooutbuf:
Herbert Xuf8b0d4d2009-05-06 14:15:47 +08001340 testmgr_free_buf(xbuf);
1341out_nobuf:
Herbert Xuda7f0332008-07-31 17:08:25 +08001342 return ret;
1343}
1344
Herbert Xu12773d92015-08-20 15:21:46 +08001345static int test_skcipher(struct crypto_skcipher *tfm, int enc,
Eric Biggersb13b1e02017-02-24 15:46:59 -08001346 const struct cipher_testvec *template,
1347 unsigned int tcount)
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001348{
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03001349 unsigned int alignmask;
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001350 int ret;
1351
1352 /* test 'dst == src' case */
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03001353 ret = __test_skcipher(tfm, enc, template, tcount, false, 0);
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001354 if (ret)
1355 return ret;
1356
1357 /* test 'dst != src' case */
Jussi Kivilinna3a338f22013-06-13 17:37:45 +03001358 ret = __test_skcipher(tfm, enc, template, tcount, true, 0);
1359 if (ret)
1360 return ret;
1361
1362 /* test unaligned buffers, check with one byte offset */
1363 ret = __test_skcipher(tfm, enc, template, tcount, true, 1);
1364 if (ret)
1365 return ret;
1366
1367 alignmask = crypto_tfm_alg_alignmask(&tfm->base);
1368 if (alignmask) {
1369 /* Check if alignment mask for tfm is correctly set. */
1370 ret = __test_skcipher(tfm, enc, template, tcount, true,
1371 alignmask + 1);
1372 if (ret)
1373 return ret;
1374 }
1375
1376 return 0;
Jussi Kivilinna08d6af82012-09-21 10:26:47 +03001377}
1378
Eric Biggersb13b1e02017-02-24 15:46:59 -08001379static int test_comp(struct crypto_comp *tfm,
1380 const struct comp_testvec *ctemplate,
1381 const struct comp_testvec *dtemplate,
1382 int ctcount, int dtcount)
Herbert Xuda7f0332008-07-31 17:08:25 +08001383{
1384 const char *algo = crypto_tfm_alg_driver_name(crypto_comp_tfm(tfm));
Mahipal Challa33607382018-04-11 20:28:32 +02001385 char *output, *decomp_output;
Herbert Xuda7f0332008-07-31 17:08:25 +08001386 unsigned int i;
Herbert Xuda7f0332008-07-31 17:08:25 +08001387 int ret;
1388
Mahipal Challa33607382018-04-11 20:28:32 +02001389 output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
1390 if (!output)
1391 return -ENOMEM;
1392
1393 decomp_output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
1394 if (!decomp_output) {
1395 kfree(output);
1396 return -ENOMEM;
1397 }
1398
Herbert Xuda7f0332008-07-31 17:08:25 +08001399 for (i = 0; i < ctcount; i++) {
Geert Uytterhoevenc79cf912009-03-29 15:44:19 +08001400 int ilen;
1401 unsigned int dlen = COMP_BUF_SIZE;
Herbert Xuda7f0332008-07-31 17:08:25 +08001402
Mahipal Challa33607382018-04-11 20:28:32 +02001403 memset(output, 0, sizeof(COMP_BUF_SIZE));
1404 memset(decomp_output, 0, sizeof(COMP_BUF_SIZE));
Herbert Xuda7f0332008-07-31 17:08:25 +08001405
1406 ilen = ctemplate[i].inlen;
1407 ret = crypto_comp_compress(tfm, ctemplate[i].input,
Mahipal Challa33607382018-04-11 20:28:32 +02001408 ilen, output, &dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08001409 if (ret) {
1410 printk(KERN_ERR "alg: comp: compression failed "
1411 "on test %d for %s: ret=%d\n", i + 1, algo,
1412 -ret);
1413 goto out;
1414 }
1415
Mahipal Challa33607382018-04-11 20:28:32 +02001416 ilen = dlen;
1417 dlen = COMP_BUF_SIZE;
1418 ret = crypto_comp_decompress(tfm, output,
1419 ilen, decomp_output, &dlen);
1420 if (ret) {
1421 pr_err("alg: comp: compression failed: decompress: on test %d for %s failed: ret=%d\n",
1422 i + 1, algo, -ret);
1423 goto out;
1424 }
1425
1426 if (dlen != ctemplate[i].inlen) {
Geert Uytterhoevenb812eb02008-11-28 20:51:28 +08001427 printk(KERN_ERR "alg: comp: Compression test %d "
1428 "failed for %s: output len = %d\n", i + 1, algo,
1429 dlen);
1430 ret = -EINVAL;
1431 goto out;
1432 }
1433
Mahipal Challa33607382018-04-11 20:28:32 +02001434 if (memcmp(decomp_output, ctemplate[i].input,
1435 ctemplate[i].inlen)) {
1436 pr_err("alg: comp: compression failed: output differs: on test %d for %s\n",
1437 i + 1, algo);
1438 hexdump(decomp_output, dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08001439 ret = -EINVAL;
1440 goto out;
1441 }
1442 }
1443
1444 for (i = 0; i < dtcount; i++) {
Geert Uytterhoevenc79cf912009-03-29 15:44:19 +08001445 int ilen;
1446 unsigned int dlen = COMP_BUF_SIZE;
Herbert Xuda7f0332008-07-31 17:08:25 +08001447
Mahipal Challa33607382018-04-11 20:28:32 +02001448 memset(decomp_output, 0, sizeof(COMP_BUF_SIZE));
Herbert Xuda7f0332008-07-31 17:08:25 +08001449
1450 ilen = dtemplate[i].inlen;
1451 ret = crypto_comp_decompress(tfm, dtemplate[i].input,
Mahipal Challa33607382018-04-11 20:28:32 +02001452 ilen, decomp_output, &dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08001453 if (ret) {
1454 printk(KERN_ERR "alg: comp: decompression failed "
1455 "on test %d for %s: ret=%d\n", i + 1, algo,
1456 -ret);
1457 goto out;
1458 }
1459
Geert Uytterhoevenb812eb02008-11-28 20:51:28 +08001460 if (dlen != dtemplate[i].outlen) {
1461 printk(KERN_ERR "alg: comp: Decompression test %d "
1462 "failed for %s: output len = %d\n", i + 1, algo,
1463 dlen);
1464 ret = -EINVAL;
1465 goto out;
1466 }
1467
Mahipal Challa33607382018-04-11 20:28:32 +02001468 if (memcmp(decomp_output, dtemplate[i].output, dlen)) {
Herbert Xuda7f0332008-07-31 17:08:25 +08001469 printk(KERN_ERR "alg: comp: Decompression test %d "
1470 "failed for %s\n", i + 1, algo);
Mahipal Challa33607382018-04-11 20:28:32 +02001471 hexdump(decomp_output, dlen);
Herbert Xuda7f0332008-07-31 17:08:25 +08001472 ret = -EINVAL;
1473 goto out;
1474 }
1475 }
1476
1477 ret = 0;
1478
1479out:
Mahipal Challa33607382018-04-11 20:28:32 +02001480 kfree(decomp_output);
1481 kfree(output);
Herbert Xuda7f0332008-07-31 17:08:25 +08001482 return ret;
1483}
1484
Eric Biggersb13b1e02017-02-24 15:46:59 -08001485static int test_acomp(struct crypto_acomp *tfm,
Mahipal Challa33607382018-04-11 20:28:32 +02001486 const struct comp_testvec *ctemplate,
Eric Biggersb13b1e02017-02-24 15:46:59 -08001487 const struct comp_testvec *dtemplate,
1488 int ctcount, int dtcount)
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001489{
1490 const char *algo = crypto_tfm_alg_driver_name(crypto_acomp_tfm(tfm));
1491 unsigned int i;
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01001492 char *output, *decomp_out;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001493 int ret;
1494 struct scatterlist src, dst;
1495 struct acomp_req *req;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001496 struct crypto_wait wait;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001497
Eric Biggerseb095592016-11-23 10:24:35 -08001498 output = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
1499 if (!output)
1500 return -ENOMEM;
1501
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01001502 decomp_out = kmalloc(COMP_BUF_SIZE, GFP_KERNEL);
1503 if (!decomp_out) {
1504 kfree(output);
1505 return -ENOMEM;
1506 }
1507
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001508 for (i = 0; i < ctcount; i++) {
1509 unsigned int dlen = COMP_BUF_SIZE;
1510 int ilen = ctemplate[i].inlen;
Laura Abbott02608e02016-12-21 12:32:54 -08001511 void *input_vec;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001512
Eric Biggersd2110222016-12-30 14:12:00 -06001513 input_vec = kmemdup(ctemplate[i].input, ilen, GFP_KERNEL);
Laura Abbott02608e02016-12-21 12:32:54 -08001514 if (!input_vec) {
1515 ret = -ENOMEM;
1516 goto out;
1517 }
1518
Eric Biggerseb095592016-11-23 10:24:35 -08001519 memset(output, 0, dlen);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001520 crypto_init_wait(&wait);
Laura Abbott02608e02016-12-21 12:32:54 -08001521 sg_init_one(&src, input_vec, ilen);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001522 sg_init_one(&dst, output, dlen);
1523
1524 req = acomp_request_alloc(tfm);
1525 if (!req) {
1526 pr_err("alg: acomp: request alloc failed for %s\n",
1527 algo);
Laura Abbott02608e02016-12-21 12:32:54 -08001528 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001529 ret = -ENOMEM;
1530 goto out;
1531 }
1532
1533 acomp_request_set_params(req, &src, &dst, ilen, dlen);
1534 acomp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001535 crypto_req_done, &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001536
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001537 ret = crypto_wait_req(crypto_acomp_compress(req), &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001538 if (ret) {
1539 pr_err("alg: acomp: compression failed on test %d for %s: ret=%d\n",
1540 i + 1, algo, -ret);
Laura Abbott02608e02016-12-21 12:32:54 -08001541 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001542 acomp_request_free(req);
1543 goto out;
1544 }
1545
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01001546 ilen = req->dlen;
1547 dlen = COMP_BUF_SIZE;
1548 sg_init_one(&src, output, ilen);
1549 sg_init_one(&dst, decomp_out, dlen);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001550 crypto_init_wait(&wait);
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01001551 acomp_request_set_params(req, &src, &dst, ilen, dlen);
1552
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001553 ret = crypto_wait_req(crypto_acomp_decompress(req), &wait);
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01001554 if (ret) {
1555 pr_err("alg: acomp: compression failed on test %d for %s: ret=%d\n",
1556 i + 1, algo, -ret);
1557 kfree(input_vec);
1558 acomp_request_free(req);
1559 goto out;
1560 }
1561
1562 if (req->dlen != ctemplate[i].inlen) {
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001563 pr_err("alg: acomp: Compression test %d failed for %s: output len = %d\n",
1564 i + 1, algo, req->dlen);
1565 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08001566 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001567 acomp_request_free(req);
1568 goto out;
1569 }
1570
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01001571 if (memcmp(input_vec, decomp_out, req->dlen)) {
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001572 pr_err("alg: acomp: Compression test %d failed for %s\n",
1573 i + 1, algo);
1574 hexdump(output, req->dlen);
1575 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08001576 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001577 acomp_request_free(req);
1578 goto out;
1579 }
1580
Laura Abbott02608e02016-12-21 12:32:54 -08001581 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001582 acomp_request_free(req);
1583 }
1584
1585 for (i = 0; i < dtcount; i++) {
1586 unsigned int dlen = COMP_BUF_SIZE;
1587 int ilen = dtemplate[i].inlen;
Laura Abbott02608e02016-12-21 12:32:54 -08001588 void *input_vec;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001589
Eric Biggersd2110222016-12-30 14:12:00 -06001590 input_vec = kmemdup(dtemplate[i].input, ilen, GFP_KERNEL);
Laura Abbott02608e02016-12-21 12:32:54 -08001591 if (!input_vec) {
1592 ret = -ENOMEM;
1593 goto out;
1594 }
1595
Eric Biggerseb095592016-11-23 10:24:35 -08001596 memset(output, 0, dlen);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001597 crypto_init_wait(&wait);
Laura Abbott02608e02016-12-21 12:32:54 -08001598 sg_init_one(&src, input_vec, ilen);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001599 sg_init_one(&dst, output, dlen);
1600
1601 req = acomp_request_alloc(tfm);
1602 if (!req) {
1603 pr_err("alg: acomp: request alloc failed for %s\n",
1604 algo);
Laura Abbott02608e02016-12-21 12:32:54 -08001605 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001606 ret = -ENOMEM;
1607 goto out;
1608 }
1609
1610 acomp_request_set_params(req, &src, &dst, ilen, dlen);
1611 acomp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001612 crypto_req_done, &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001613
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01001614 ret = crypto_wait_req(crypto_acomp_decompress(req), &wait);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001615 if (ret) {
1616 pr_err("alg: acomp: decompression failed on test %d for %s: ret=%d\n",
1617 i + 1, algo, -ret);
Laura Abbott02608e02016-12-21 12:32:54 -08001618 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001619 acomp_request_free(req);
1620 goto out;
1621 }
1622
1623 if (req->dlen != dtemplate[i].outlen) {
1624 pr_err("alg: acomp: Decompression test %d failed for %s: output len = %d\n",
1625 i + 1, algo, req->dlen);
1626 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08001627 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001628 acomp_request_free(req);
1629 goto out;
1630 }
1631
1632 if (memcmp(output, dtemplate[i].output, req->dlen)) {
1633 pr_err("alg: acomp: Decompression test %d failed for %s\n",
1634 i + 1, algo);
1635 hexdump(output, req->dlen);
1636 ret = -EINVAL;
Laura Abbott02608e02016-12-21 12:32:54 -08001637 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001638 acomp_request_free(req);
1639 goto out;
1640 }
1641
Laura Abbott02608e02016-12-21 12:32:54 -08001642 kfree(input_vec);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001643 acomp_request_free(req);
1644 }
1645
1646 ret = 0;
1647
1648out:
Giovanni Cabiddua9943a02017-04-19 14:27:18 +01001649 kfree(decomp_out);
Eric Biggerseb095592016-11-23 10:24:35 -08001650 kfree(output);
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001651 return ret;
1652}
1653
Eric Biggersb13b1e02017-02-24 15:46:59 -08001654static int test_cprng(struct crypto_rng *tfm,
1655 const struct cprng_testvec *template,
Jarod Wilson7647d6c2009-05-04 19:44:50 +08001656 unsigned int tcount)
1657{
1658 const char *algo = crypto_tfm_alg_driver_name(crypto_rng_tfm(tfm));
Felipe Contrerasfa4ef8a2009-10-27 19:04:42 +08001659 int err = 0, i, j, seedsize;
Jarod Wilson7647d6c2009-05-04 19:44:50 +08001660 u8 *seed;
1661 char result[32];
1662
1663 seedsize = crypto_rng_seedsize(tfm);
1664
1665 seed = kmalloc(seedsize, GFP_KERNEL);
1666 if (!seed) {
1667 printk(KERN_ERR "alg: cprng: Failed to allocate seed space "
1668 "for %s\n", algo);
1669 return -ENOMEM;
1670 }
1671
1672 for (i = 0; i < tcount; i++) {
1673 memset(result, 0, 32);
1674
1675 memcpy(seed, template[i].v, template[i].vlen);
1676 memcpy(seed + template[i].vlen, template[i].key,
1677 template[i].klen);
1678 memcpy(seed + template[i].vlen + template[i].klen,
1679 template[i].dt, template[i].dtlen);
1680
1681 err = crypto_rng_reset(tfm, seed, seedsize);
1682 if (err) {
1683 printk(KERN_ERR "alg: cprng: Failed to reset rng "
1684 "for %s\n", algo);
1685 goto out;
1686 }
1687
1688 for (j = 0; j < template[i].loops; j++) {
1689 err = crypto_rng_get_bytes(tfm, result,
1690 template[i].rlen);
Stephan Mueller19e60e12015-03-10 17:00:36 +01001691 if (err < 0) {
Jarod Wilson7647d6c2009-05-04 19:44:50 +08001692 printk(KERN_ERR "alg: cprng: Failed to obtain "
1693 "the correct amount of random data for "
Stephan Mueller19e60e12015-03-10 17:00:36 +01001694 "%s (requested %d)\n", algo,
1695 template[i].rlen);
Jarod Wilson7647d6c2009-05-04 19:44:50 +08001696 goto out;
1697 }
1698 }
1699
1700 err = memcmp(result, template[i].result,
1701 template[i].rlen);
1702 if (err) {
1703 printk(KERN_ERR "alg: cprng: Test %d failed for %s\n",
1704 i, algo);
1705 hexdump(result, template[i].rlen);
1706 err = -EINVAL;
1707 goto out;
1708 }
1709 }
1710
1711out:
1712 kfree(seed);
1713 return err;
1714}
1715
Herbert Xuda7f0332008-07-31 17:08:25 +08001716static int alg_test_aead(const struct alg_test_desc *desc, const char *driver,
1717 u32 type, u32 mask)
1718{
1719 struct crypto_aead *tfm;
1720 int err = 0;
1721
Herbert Xueed93e02016-11-22 20:08:31 +08001722 tfm = crypto_alloc_aead(driver, type, mask);
Herbert Xuda7f0332008-07-31 17:08:25 +08001723 if (IS_ERR(tfm)) {
1724 printk(KERN_ERR "alg: aead: Failed to load transform for %s: "
1725 "%ld\n", driver, PTR_ERR(tfm));
1726 return PTR_ERR(tfm);
1727 }
1728
1729 if (desc->suite.aead.enc.vecs) {
1730 err = test_aead(tfm, ENCRYPT, desc->suite.aead.enc.vecs,
1731 desc->suite.aead.enc.count);
1732 if (err)
1733 goto out;
1734 }
1735
1736 if (!err && desc->suite.aead.dec.vecs)
1737 err = test_aead(tfm, DECRYPT, desc->suite.aead.dec.vecs,
1738 desc->suite.aead.dec.count);
1739
1740out:
1741 crypto_free_aead(tfm);
1742 return err;
1743}
1744
1745static int alg_test_cipher(const struct alg_test_desc *desc,
1746 const char *driver, u32 type, u32 mask)
1747{
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001748 const struct cipher_test_suite *suite = &desc->suite.cipher;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001749 struct crypto_cipher *tfm;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001750 int err;
Herbert Xuda7f0332008-07-31 17:08:25 +08001751
Herbert Xueed93e02016-11-22 20:08:31 +08001752 tfm = crypto_alloc_cipher(driver, type, mask);
Herbert Xuda7f0332008-07-31 17:08:25 +08001753 if (IS_ERR(tfm)) {
1754 printk(KERN_ERR "alg: cipher: Failed to load transform for "
1755 "%s: %ld\n", driver, PTR_ERR(tfm));
1756 return PTR_ERR(tfm);
1757 }
1758
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001759 err = test_cipher(tfm, ENCRYPT, suite->vecs, suite->count);
1760 if (!err)
1761 err = test_cipher(tfm, DECRYPT, suite->vecs, suite->count);
Herbert Xuda7f0332008-07-31 17:08:25 +08001762
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001763 crypto_free_cipher(tfm);
1764 return err;
1765}
1766
1767static int alg_test_skcipher(const struct alg_test_desc *desc,
1768 const char *driver, u32 type, u32 mask)
1769{
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001770 const struct cipher_test_suite *suite = &desc->suite.cipher;
Herbert Xu12773d92015-08-20 15:21:46 +08001771 struct crypto_skcipher *tfm;
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001772 int err;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001773
Herbert Xueed93e02016-11-22 20:08:31 +08001774 tfm = crypto_alloc_skcipher(driver, type, mask);
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001775 if (IS_ERR(tfm)) {
1776 printk(KERN_ERR "alg: skcipher: Failed to load transform for "
1777 "%s: %ld\n", driver, PTR_ERR(tfm));
1778 return PTR_ERR(tfm);
1779 }
1780
Eric Biggers92a4c9f2018-05-20 22:50:29 -07001781 err = test_skcipher(tfm, ENCRYPT, suite->vecs, suite->count);
1782 if (!err)
1783 err = test_skcipher(tfm, DECRYPT, suite->vecs, suite->count);
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10001784
Herbert Xu12773d92015-08-20 15:21:46 +08001785 crypto_free_skcipher(tfm);
Herbert Xuda7f0332008-07-31 17:08:25 +08001786 return err;
1787}
1788
1789static int alg_test_comp(const struct alg_test_desc *desc, const char *driver,
1790 u32 type, u32 mask)
1791{
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001792 struct crypto_comp *comp;
1793 struct crypto_acomp *acomp;
Herbert Xuda7f0332008-07-31 17:08:25 +08001794 int err;
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001795 u32 algo_type = type & CRYPTO_ALG_TYPE_ACOMPRESS_MASK;
Herbert Xuda7f0332008-07-31 17:08:25 +08001796
Giovanni Cabiddud7db7a82016-10-21 13:19:54 +01001797 if (algo_type == CRYPTO_ALG_TYPE_ACOMPRESS) {
1798 acomp = crypto_alloc_acomp(driver, type, mask);
1799 if (IS_ERR(acomp)) {
1800 pr_err("alg: acomp: Failed to load transform for %s: %ld\n",
1801 driver, PTR_ERR(acomp));
1802 return PTR_ERR(acomp);
1803 }
1804 err = test_acomp(acomp, desc->suite.comp.comp.vecs,
1805 desc->suite.comp.decomp.vecs,
1806 desc->suite.comp.comp.count,
1807 desc->suite.comp.decomp.count);
1808 crypto_free_acomp(acomp);
1809 } else {
1810 comp = crypto_alloc_comp(driver, type, mask);
1811 if (IS_ERR(comp)) {
1812 pr_err("alg: comp: Failed to load transform for %s: %ld\n",
1813 driver, PTR_ERR(comp));
1814 return PTR_ERR(comp);
1815 }
1816
1817 err = test_comp(comp, desc->suite.comp.comp.vecs,
1818 desc->suite.comp.decomp.vecs,
1819 desc->suite.comp.comp.count,
1820 desc->suite.comp.decomp.count);
1821
1822 crypto_free_comp(comp);
Herbert Xuda7f0332008-07-31 17:08:25 +08001823 }
Herbert Xuda7f0332008-07-31 17:08:25 +08001824 return err;
1825}
1826
Eric Biggers9b3abc0162018-05-19 22:07:41 -07001827static int __alg_test_hash(const struct hash_testvec *template,
1828 unsigned int tcount, const char *driver,
1829 u32 type, u32 mask)
Herbert Xuda7f0332008-07-31 17:08:25 +08001830{
1831 struct crypto_ahash *tfm;
1832 int err;
1833
Herbert Xueed93e02016-11-22 20:08:31 +08001834 tfm = crypto_alloc_ahash(driver, type, mask);
Herbert Xuda7f0332008-07-31 17:08:25 +08001835 if (IS_ERR(tfm)) {
1836 printk(KERN_ERR "alg: hash: Failed to load transform for %s: "
1837 "%ld\n", driver, PTR_ERR(tfm));
1838 return PTR_ERR(tfm);
1839 }
1840
Gilad Ben-Yossef76715092018-07-01 08:02:35 +01001841 err = test_hash(tfm, template, tcount, HASH_TEST_DIGEST);
David S. Millera8f1a052010-05-19 14:12:03 +10001842 if (!err)
Gilad Ben-Yossef76715092018-07-01 08:02:35 +01001843 err = test_hash(tfm, template, tcount, HASH_TEST_FINAL);
1844 if (!err)
1845 err = test_hash(tfm, template, tcount, HASH_TEST_FINUP);
Herbert Xuda7f0332008-07-31 17:08:25 +08001846 crypto_free_ahash(tfm);
1847 return err;
1848}
1849
Eric Biggers9b3abc0162018-05-19 22:07:41 -07001850static int alg_test_hash(const struct alg_test_desc *desc, const char *driver,
1851 u32 type, u32 mask)
1852{
1853 const struct hash_testvec *template = desc->suite.hash.vecs;
1854 unsigned int tcount = desc->suite.hash.count;
1855 unsigned int nr_unkeyed, nr_keyed;
1856 int err;
1857
1858 /*
1859 * For OPTIONAL_KEY algorithms, we have to do all the unkeyed tests
1860 * first, before setting a key on the tfm. To make this easier, we
1861 * require that the unkeyed test vectors (if any) are listed first.
1862 */
1863
1864 for (nr_unkeyed = 0; nr_unkeyed < tcount; nr_unkeyed++) {
1865 if (template[nr_unkeyed].ksize)
1866 break;
1867 }
1868 for (nr_keyed = 0; nr_unkeyed + nr_keyed < tcount; nr_keyed++) {
1869 if (!template[nr_unkeyed + nr_keyed].ksize) {
1870 pr_err("alg: hash: test vectors for %s out of order, "
1871 "unkeyed ones must come first\n", desc->alg);
1872 return -EINVAL;
1873 }
1874 }
1875
1876 err = 0;
1877 if (nr_unkeyed) {
1878 err = __alg_test_hash(template, nr_unkeyed, driver, type, mask);
1879 template += nr_unkeyed;
1880 }
1881
1882 if (!err && nr_keyed)
1883 err = __alg_test_hash(template, nr_keyed, driver, type, mask);
1884
1885 return err;
1886}
1887
Herbert Xu8e3ee852008-11-07 14:58:52 +08001888static int alg_test_crc32c(const struct alg_test_desc *desc,
1889 const char *driver, u32 type, u32 mask)
1890{
1891 struct crypto_shash *tfm;
1892 u32 val;
1893 int err;
1894
1895 err = alg_test_hash(desc, driver, type, mask);
1896 if (err)
1897 goto out;
1898
Herbert Xueed93e02016-11-22 20:08:31 +08001899 tfm = crypto_alloc_shash(driver, type, mask);
Herbert Xu8e3ee852008-11-07 14:58:52 +08001900 if (IS_ERR(tfm)) {
1901 printk(KERN_ERR "alg: crc32c: Failed to load transform for %s: "
1902 "%ld\n", driver, PTR_ERR(tfm));
1903 err = PTR_ERR(tfm);
1904 goto out;
1905 }
1906
1907 do {
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02001908 SHASH_DESC_ON_STACK(shash, tfm);
1909 u32 *ctx = (u32 *)shash_desc_ctx(shash);
Herbert Xu8e3ee852008-11-07 14:58:52 +08001910
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02001911 shash->tfm = tfm;
1912 shash->flags = 0;
Herbert Xu8e3ee852008-11-07 14:58:52 +08001913
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02001914 *ctx = le32_to_cpu(420553207);
1915 err = crypto_shash_final(shash, (u8 *)&val);
Herbert Xu8e3ee852008-11-07 14:58:52 +08001916 if (err) {
1917 printk(KERN_ERR "alg: crc32c: Operation failed for "
1918 "%s: %d\n", driver, err);
1919 break;
1920 }
1921
1922 if (val != ~420553207) {
1923 printk(KERN_ERR "alg: crc32c: Test failed for %s: "
1924 "%d\n", driver, val);
1925 err = -EINVAL;
1926 }
1927 } while (0);
1928
1929 crypto_free_shash(tfm);
1930
1931out:
1932 return err;
1933}
1934
Jarod Wilson7647d6c2009-05-04 19:44:50 +08001935static int alg_test_cprng(const struct alg_test_desc *desc, const char *driver,
1936 u32 type, u32 mask)
1937{
1938 struct crypto_rng *rng;
1939 int err;
1940
Herbert Xueed93e02016-11-22 20:08:31 +08001941 rng = crypto_alloc_rng(driver, type, mask);
Jarod Wilson7647d6c2009-05-04 19:44:50 +08001942 if (IS_ERR(rng)) {
1943 printk(KERN_ERR "alg: cprng: Failed to load transform for %s: "
1944 "%ld\n", driver, PTR_ERR(rng));
1945 return PTR_ERR(rng);
1946 }
1947
1948 err = test_cprng(rng, desc->suite.cprng.vecs, desc->suite.cprng.count);
1949
1950 crypto_free_rng(rng);
1951
1952 return err;
1953}
1954
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001955
Eric Biggersb13b1e02017-02-24 15:46:59 -08001956static int drbg_cavs_test(const struct drbg_testvec *test, int pr,
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001957 const char *driver, u32 type, u32 mask)
1958{
1959 int ret = -EAGAIN;
1960 struct crypto_rng *drng;
1961 struct drbg_test_data test_data;
1962 struct drbg_string addtl, pers, testentropy;
1963 unsigned char *buf = kzalloc(test->expectedlen, GFP_KERNEL);
1964
1965 if (!buf)
1966 return -ENOMEM;
1967
Herbert Xueed93e02016-11-22 20:08:31 +08001968 drng = crypto_alloc_rng(driver, type, mask);
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001969 if (IS_ERR(drng)) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04001970 printk(KERN_ERR "alg: drbg: could not allocate DRNG handle for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001971 "%s\n", driver);
1972 kzfree(buf);
1973 return -ENOMEM;
1974 }
1975
1976 test_data.testentropy = &testentropy;
1977 drbg_string_fill(&testentropy, test->entropy, test->entropylen);
1978 drbg_string_fill(&pers, test->pers, test->perslen);
1979 ret = crypto_drbg_reset_test(drng, &pers, &test_data);
1980 if (ret) {
1981 printk(KERN_ERR "alg: drbg: Failed to reset rng\n");
1982 goto outbuf;
1983 }
1984
1985 drbg_string_fill(&addtl, test->addtla, test->addtllen);
1986 if (pr) {
1987 drbg_string_fill(&testentropy, test->entpra, test->entprlen);
1988 ret = crypto_drbg_get_bytes_addtl_test(drng,
1989 buf, test->expectedlen, &addtl, &test_data);
1990 } else {
1991 ret = crypto_drbg_get_bytes_addtl(drng,
1992 buf, test->expectedlen, &addtl);
1993 }
Stephan Mueller19e60e12015-03-10 17:00:36 +01001994 if (ret < 0) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04001995 printk(KERN_ERR "alg: drbg: could not obtain random data for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001996 "driver %s\n", driver);
1997 goto outbuf;
1998 }
1999
2000 drbg_string_fill(&addtl, test->addtlb, test->addtllen);
2001 if (pr) {
2002 drbg_string_fill(&testentropy, test->entprb, test->entprlen);
2003 ret = crypto_drbg_get_bytes_addtl_test(drng,
2004 buf, test->expectedlen, &addtl, &test_data);
2005 } else {
2006 ret = crypto_drbg_get_bytes_addtl(drng,
2007 buf, test->expectedlen, &addtl);
2008 }
Stephan Mueller19e60e12015-03-10 17:00:36 +01002009 if (ret < 0) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04002010 printk(KERN_ERR "alg: drbg: could not obtain random data for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002011 "driver %s\n", driver);
2012 goto outbuf;
2013 }
2014
2015 ret = memcmp(test->expected, buf, test->expectedlen);
2016
2017outbuf:
2018 crypto_free_rng(drng);
2019 kzfree(buf);
2020 return ret;
2021}
2022
2023
2024static int alg_test_drbg(const struct alg_test_desc *desc, const char *driver,
2025 u32 type, u32 mask)
2026{
2027 int err = 0;
2028 int pr = 0;
2029 int i = 0;
Eric Biggersb13b1e02017-02-24 15:46:59 -08002030 const struct drbg_testvec *template = desc->suite.drbg.vecs;
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002031 unsigned int tcount = desc->suite.drbg.count;
2032
2033 if (0 == memcmp(driver, "drbg_pr_", 8))
2034 pr = 1;
2035
2036 for (i = 0; i < tcount; i++) {
2037 err = drbg_cavs_test(&template[i], pr, driver, type, mask);
2038 if (err) {
2039 printk(KERN_ERR "alg: drbg: Test %d failed for %s\n",
2040 i, driver);
2041 err = -EINVAL;
2042 break;
2043 }
2044 }
2045 return err;
2046
2047}
2048
Eric Biggersb13b1e02017-02-24 15:46:59 -08002049static int do_test_kpp(struct crypto_kpp *tfm, const struct kpp_testvec *vec,
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002050 const char *alg)
2051{
2052 struct kpp_request *req;
2053 void *input_buf = NULL;
2054 void *output_buf = NULL;
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002055 void *a_public = NULL;
2056 void *a_ss = NULL;
2057 void *shared_secret = NULL;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002058 struct crypto_wait wait;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002059 unsigned int out_len_max;
2060 int err = -ENOMEM;
2061 struct scatterlist src, dst;
2062
2063 req = kpp_request_alloc(tfm, GFP_KERNEL);
2064 if (!req)
2065 return err;
2066
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002067 crypto_init_wait(&wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002068
2069 err = crypto_kpp_set_secret(tfm, vec->secret, vec->secret_size);
2070 if (err < 0)
2071 goto free_req;
2072
2073 out_len_max = crypto_kpp_maxsize(tfm);
2074 output_buf = kzalloc(out_len_max, GFP_KERNEL);
2075 if (!output_buf) {
2076 err = -ENOMEM;
2077 goto free_req;
2078 }
2079
2080 /* Use appropriate parameter as base */
2081 kpp_request_set_input(req, NULL, 0);
2082 sg_init_one(&dst, output_buf, out_len_max);
2083 kpp_request_set_output(req, &dst, out_len_max);
2084 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002085 crypto_req_done, &wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002086
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002087 /* Compute party A's public key */
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002088 err = crypto_wait_req(crypto_kpp_generate_public_key(req), &wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002089 if (err) {
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002090 pr_err("alg: %s: Party A: generate public key test failed. err %d\n",
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002091 alg, err);
2092 goto free_output;
2093 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002094
2095 if (vec->genkey) {
2096 /* Save party A's public key */
2097 a_public = kzalloc(out_len_max, GFP_KERNEL);
2098 if (!a_public) {
2099 err = -ENOMEM;
2100 goto free_output;
2101 }
2102 memcpy(a_public, sg_virt(req->dst), out_len_max);
2103 } else {
2104 /* Verify calculated public key */
2105 if (memcmp(vec->expected_a_public, sg_virt(req->dst),
2106 vec->expected_a_public_size)) {
2107 pr_err("alg: %s: Party A: generate public key test failed. Invalid output\n",
2108 alg);
2109 err = -EINVAL;
2110 goto free_output;
2111 }
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002112 }
2113
2114 /* Calculate shared secret key by using counter part (b) public key. */
2115 input_buf = kzalloc(vec->b_public_size, GFP_KERNEL);
2116 if (!input_buf) {
2117 err = -ENOMEM;
2118 goto free_output;
2119 }
2120
2121 memcpy(input_buf, vec->b_public, vec->b_public_size);
2122 sg_init_one(&src, input_buf, vec->b_public_size);
2123 sg_init_one(&dst, output_buf, out_len_max);
2124 kpp_request_set_input(req, &src, vec->b_public_size);
2125 kpp_request_set_output(req, &dst, out_len_max);
2126 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002127 crypto_req_done, &wait);
2128 err = crypto_wait_req(crypto_kpp_compute_shared_secret(req), &wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002129 if (err) {
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002130 pr_err("alg: %s: Party A: compute shared secret test failed. err %d\n",
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002131 alg, err);
2132 goto free_all;
2133 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002134
2135 if (vec->genkey) {
2136 /* Save the shared secret obtained by party A */
2137 a_ss = kzalloc(vec->expected_ss_size, GFP_KERNEL);
2138 if (!a_ss) {
2139 err = -ENOMEM;
2140 goto free_all;
2141 }
2142 memcpy(a_ss, sg_virt(req->dst), vec->expected_ss_size);
2143
2144 /*
2145 * Calculate party B's shared secret by using party A's
2146 * public key.
2147 */
2148 err = crypto_kpp_set_secret(tfm, vec->b_secret,
2149 vec->b_secret_size);
2150 if (err < 0)
2151 goto free_all;
2152
2153 sg_init_one(&src, a_public, vec->expected_a_public_size);
2154 sg_init_one(&dst, output_buf, out_len_max);
2155 kpp_request_set_input(req, &src, vec->expected_a_public_size);
2156 kpp_request_set_output(req, &dst, out_len_max);
2157 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002158 crypto_req_done, &wait);
2159 err = crypto_wait_req(crypto_kpp_compute_shared_secret(req),
2160 &wait);
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002161 if (err) {
2162 pr_err("alg: %s: Party B: compute shared secret failed. err %d\n",
2163 alg, err);
2164 goto free_all;
2165 }
2166
2167 shared_secret = a_ss;
2168 } else {
2169 shared_secret = (void *)vec->expected_ss;
2170 }
2171
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002172 /*
2173 * verify shared secret from which the user will derive
2174 * secret key by executing whatever hash it has chosen
2175 */
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002176 if (memcmp(shared_secret, sg_virt(req->dst),
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002177 vec->expected_ss_size)) {
2178 pr_err("alg: %s: compute shared secret test failed. Invalid output\n",
2179 alg);
2180 err = -EINVAL;
2181 }
2182
2183free_all:
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002184 kfree(a_ss);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002185 kfree(input_buf);
2186free_output:
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002187 kfree(a_public);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002188 kfree(output_buf);
2189free_req:
2190 kpp_request_free(req);
2191 return err;
2192}
2193
2194static int test_kpp(struct crypto_kpp *tfm, const char *alg,
Eric Biggersb13b1e02017-02-24 15:46:59 -08002195 const struct kpp_testvec *vecs, unsigned int tcount)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002196{
2197 int ret, i;
2198
2199 for (i = 0; i < tcount; i++) {
2200 ret = do_test_kpp(tfm, vecs++, alg);
2201 if (ret) {
2202 pr_err("alg: %s: test failed on vector %d, err=%d\n",
2203 alg, i + 1, ret);
2204 return ret;
2205 }
2206 }
2207 return 0;
2208}
2209
2210static int alg_test_kpp(const struct alg_test_desc *desc, const char *driver,
2211 u32 type, u32 mask)
2212{
2213 struct crypto_kpp *tfm;
2214 int err = 0;
2215
Herbert Xueed93e02016-11-22 20:08:31 +08002216 tfm = crypto_alloc_kpp(driver, type, mask);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002217 if (IS_ERR(tfm)) {
2218 pr_err("alg: kpp: Failed to load tfm for %s: %ld\n",
2219 driver, PTR_ERR(tfm));
2220 return PTR_ERR(tfm);
2221 }
2222 if (desc->suite.kpp.vecs)
2223 err = test_kpp(tfm, desc->alg, desc->suite.kpp.vecs,
2224 desc->suite.kpp.count);
2225
2226 crypto_free_kpp(tfm);
2227 return err;
2228}
2229
Herbert Xu50d2b6432016-06-29 19:32:20 +08002230static int test_akcipher_one(struct crypto_akcipher *tfm,
Eric Biggersb13b1e02017-02-24 15:46:59 -08002231 const struct akcipher_testvec *vecs)
Tadeusz Struk946cc462015-06-16 10:31:06 -07002232{
Herbert Xudf27b262016-05-05 16:42:49 +08002233 char *xbuf[XBUFSIZE];
Tadeusz Struk946cc462015-06-16 10:31:06 -07002234 struct akcipher_request *req;
2235 void *outbuf_enc = NULL;
2236 void *outbuf_dec = NULL;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002237 struct crypto_wait wait;
Tadeusz Struk946cc462015-06-16 10:31:06 -07002238 unsigned int out_len_max, out_len = 0;
2239 int err = -ENOMEM;
Tadeusz Struk22287b02015-10-08 09:26:55 -07002240 struct scatterlist src, dst, src_tab[2];
Tadeusz Struk946cc462015-06-16 10:31:06 -07002241
Herbert Xudf27b262016-05-05 16:42:49 +08002242 if (testmgr_alloc_buf(xbuf))
2243 return err;
2244
Tadeusz Struk946cc462015-06-16 10:31:06 -07002245 req = akcipher_request_alloc(tfm, GFP_KERNEL);
2246 if (!req)
Herbert Xudf27b262016-05-05 16:42:49 +08002247 goto free_xbuf;
Tadeusz Struk946cc462015-06-16 10:31:06 -07002248
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002249 crypto_init_wait(&wait);
Tadeusz Struk22287b02015-10-08 09:26:55 -07002250
2251 if (vecs->public_key_vec)
2252 err = crypto_akcipher_set_pub_key(tfm, vecs->key,
2253 vecs->key_len);
2254 else
2255 err = crypto_akcipher_set_priv_key(tfm, vecs->key,
2256 vecs->key_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002257 if (err)
2258 goto free_req;
2259
Salvatore Benedetto57763f52016-07-04 10:52:34 +01002260 err = -ENOMEM;
Tadeusz Struk22287b02015-10-08 09:26:55 -07002261 out_len_max = crypto_akcipher_maxsize(tfm);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002262 outbuf_enc = kzalloc(out_len_max, GFP_KERNEL);
2263 if (!outbuf_enc)
2264 goto free_req;
2265
Herbert Xudf27b262016-05-05 16:42:49 +08002266 if (WARN_ON(vecs->m_size > PAGE_SIZE))
2267 goto free_all;
2268
2269 memcpy(xbuf[0], vecs->m, vecs->m_size);
2270
Tadeusz Struk22287b02015-10-08 09:26:55 -07002271 sg_init_table(src_tab, 2);
Herbert Xudf27b262016-05-05 16:42:49 +08002272 sg_set_buf(&src_tab[0], xbuf[0], 8);
2273 sg_set_buf(&src_tab[1], xbuf[0] + 8, vecs->m_size - 8);
Tadeusz Struk22287b02015-10-08 09:26:55 -07002274 sg_init_one(&dst, outbuf_enc, out_len_max);
2275 akcipher_request_set_crypt(req, src_tab, &dst, vecs->m_size,
2276 out_len_max);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002277 akcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002278 crypto_req_done, &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002279
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002280 err = crypto_wait_req(vecs->siggen_sigver_test ?
2281 /* Run asymmetric signature generation */
2282 crypto_akcipher_sign(req) :
2283 /* Run asymmetric encrypt */
2284 crypto_akcipher_encrypt(req), &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002285 if (err) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002286 pr_err("alg: akcipher: encrypt test failed. err %d\n", err);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002287 goto free_all;
2288 }
Tadeusz Struk22287b02015-10-08 09:26:55 -07002289 if (req->dst_len != vecs->c_size) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002290 pr_err("alg: akcipher: encrypt test failed. Invalid output len\n");
Tadeusz Struk946cc462015-06-16 10:31:06 -07002291 err = -EINVAL;
2292 goto free_all;
2293 }
2294 /* verify that encrypted message is equal to expected */
Herbert Xudf27b262016-05-05 16:42:49 +08002295 if (memcmp(vecs->c, outbuf_enc, vecs->c_size)) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002296 pr_err("alg: akcipher: encrypt test failed. Invalid output\n");
2297 hexdump(outbuf_enc, vecs->c_size);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002298 err = -EINVAL;
2299 goto free_all;
2300 }
2301 /* Don't invoke decrypt for vectors with public key */
2302 if (vecs->public_key_vec) {
2303 err = 0;
2304 goto free_all;
2305 }
2306 outbuf_dec = kzalloc(out_len_max, GFP_KERNEL);
2307 if (!outbuf_dec) {
2308 err = -ENOMEM;
2309 goto free_all;
2310 }
Herbert Xudf27b262016-05-05 16:42:49 +08002311
2312 if (WARN_ON(vecs->c_size > PAGE_SIZE))
2313 goto free_all;
2314
2315 memcpy(xbuf[0], vecs->c, vecs->c_size);
2316
2317 sg_init_one(&src, xbuf[0], vecs->c_size);
Tadeusz Struk22287b02015-10-08 09:26:55 -07002318 sg_init_one(&dst, outbuf_dec, out_len_max);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002319 crypto_init_wait(&wait);
Tadeusz Struk22287b02015-10-08 09:26:55 -07002320 akcipher_request_set_crypt(req, &src, &dst, vecs->c_size, out_len_max);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002321
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002322 err = crypto_wait_req(vecs->siggen_sigver_test ?
2323 /* Run asymmetric signature verification */
2324 crypto_akcipher_verify(req) :
2325 /* Run asymmetric decrypt */
2326 crypto_akcipher_decrypt(req), &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002327 if (err) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002328 pr_err("alg: akcipher: decrypt test failed. err %d\n", err);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002329 goto free_all;
2330 }
2331 out_len = req->dst_len;
Herbert Xu50d2b6432016-06-29 19:32:20 +08002332 if (out_len < vecs->m_size) {
2333 pr_err("alg: akcipher: decrypt test failed. "
2334 "Invalid output len %u\n", out_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002335 err = -EINVAL;
2336 goto free_all;
2337 }
2338 /* verify that decrypted message is equal to the original msg */
Herbert Xu50d2b6432016-06-29 19:32:20 +08002339 if (memchr_inv(outbuf_dec, 0, out_len - vecs->m_size) ||
2340 memcmp(vecs->m, outbuf_dec + out_len - vecs->m_size,
2341 vecs->m_size)) {
2342 pr_err("alg: akcipher: decrypt test failed. Invalid output\n");
2343 hexdump(outbuf_dec, out_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002344 err = -EINVAL;
2345 }
2346free_all:
2347 kfree(outbuf_dec);
2348 kfree(outbuf_enc);
2349free_req:
2350 akcipher_request_free(req);
Herbert Xudf27b262016-05-05 16:42:49 +08002351free_xbuf:
2352 testmgr_free_buf(xbuf);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002353 return err;
2354}
2355
Herbert Xu50d2b6432016-06-29 19:32:20 +08002356static int test_akcipher(struct crypto_akcipher *tfm, const char *alg,
Eric Biggersb13b1e02017-02-24 15:46:59 -08002357 const struct akcipher_testvec *vecs,
2358 unsigned int tcount)
Tadeusz Struk946cc462015-06-16 10:31:06 -07002359{
Herbert Xu15226e42016-07-18 18:20:10 +08002360 const char *algo =
2361 crypto_tfm_alg_driver_name(crypto_akcipher_tfm(tfm));
Tadeusz Struk946cc462015-06-16 10:31:06 -07002362 int ret, i;
2363
2364 for (i = 0; i < tcount; i++) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002365 ret = test_akcipher_one(tfm, vecs++);
2366 if (!ret)
2367 continue;
2368
Herbert Xu15226e42016-07-18 18:20:10 +08002369 pr_err("alg: akcipher: test %d failed for %s, err=%d\n",
2370 i + 1, algo, ret);
Herbert Xu50d2b6432016-06-29 19:32:20 +08002371 return ret;
Tadeusz Struk946cc462015-06-16 10:31:06 -07002372 }
2373 return 0;
2374}
2375
Tadeusz Struk946cc462015-06-16 10:31:06 -07002376static int alg_test_akcipher(const struct alg_test_desc *desc,
2377 const char *driver, u32 type, u32 mask)
2378{
2379 struct crypto_akcipher *tfm;
2380 int err = 0;
2381
Herbert Xueed93e02016-11-22 20:08:31 +08002382 tfm = crypto_alloc_akcipher(driver, type, mask);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002383 if (IS_ERR(tfm)) {
2384 pr_err("alg: akcipher: Failed to load tfm for %s: %ld\n",
2385 driver, PTR_ERR(tfm));
2386 return PTR_ERR(tfm);
2387 }
2388 if (desc->suite.akcipher.vecs)
2389 err = test_akcipher(tfm, desc->alg, desc->suite.akcipher.vecs,
2390 desc->suite.akcipher.count);
2391
2392 crypto_free_akcipher(tfm);
2393 return err;
2394}
2395
Youquan, Song863b5572009-12-23 19:45:20 +08002396static int alg_test_null(const struct alg_test_desc *desc,
2397 const char *driver, u32 type, u32 mask)
2398{
2399 return 0;
2400}
2401
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002402#define __VECS(tv) { .vecs = tv, .count = ARRAY_SIZE(tv) }
2403
Herbert Xuda7f0332008-07-31 17:08:25 +08002404/* Please keep this list sorted by algorithm name. */
2405static const struct alg_test_desc alg_test_descs[] = {
2406 {
Ondrej Mosnacekb87dc202018-05-11 14:12:50 +02002407 .alg = "aegis128",
2408 .test = alg_test_aead,
2409 .suite = {
2410 .aead = {
2411 .enc = __VECS(aegis128_enc_tv_template),
2412 .dec = __VECS(aegis128_dec_tv_template),
2413 }
2414 }
2415 }, {
2416 .alg = "aegis128l",
2417 .test = alg_test_aead,
2418 .suite = {
2419 .aead = {
2420 .enc = __VECS(aegis128l_enc_tv_template),
2421 .dec = __VECS(aegis128l_dec_tv_template),
2422 }
2423 }
2424 }, {
2425 .alg = "aegis256",
2426 .test = alg_test_aead,
2427 .suite = {
2428 .aead = {
2429 .enc = __VECS(aegis256_enc_tv_template),
2430 .dec = __VECS(aegis256_dec_tv_template),
2431 }
2432 }
2433 }, {
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08002434 .alg = "ansi_cprng",
2435 .test = alg_test_cprng,
2436 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002437 .cprng = __VECS(ansi_cprng_aes_tv_template)
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08002438 }
2439 }, {
Horia Geantabca4feb2014-03-14 17:46:51 +02002440 .alg = "authenc(hmac(md5),ecb(cipher_null))",
2441 .test = alg_test_aead,
Horia Geantabca4feb2014-03-14 17:46:51 +02002442 .suite = {
2443 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002444 .enc = __VECS(hmac_md5_ecb_cipher_null_enc_tv_template),
2445 .dec = __VECS(hmac_md5_ecb_cipher_null_dec_tv_template)
Horia Geantabca4feb2014-03-14 17:46:51 +02002446 }
2447 }
2448 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002449 .alg = "authenc(hmac(sha1),cbc(aes))",
Horia Geantae46e9a42012-07-03 19:16:54 +03002450 .test = alg_test_aead,
Herbert Xubcf741c2017-06-28 19:09:07 +08002451 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03002452 .suite = {
2453 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002454 .enc = __VECS(hmac_sha1_aes_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302455 }
2456 }
2457 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002458 .alg = "authenc(hmac(sha1),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302459 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302460 .suite = {
2461 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002462 .enc = __VECS(hmac_sha1_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302463 }
2464 }
2465 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002466 .alg = "authenc(hmac(sha1),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302467 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002468 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302469 .suite = {
2470 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002471 .enc = __VECS(hmac_sha1_des3_ede_cbc_enc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03002472 }
2473 }
2474 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002475 .alg = "authenc(hmac(sha1),ctr(aes))",
2476 .test = alg_test_null,
2477 .fips_allowed = 1,
2478 }, {
Horia Geantabca4feb2014-03-14 17:46:51 +02002479 .alg = "authenc(hmac(sha1),ecb(cipher_null))",
2480 .test = alg_test_aead,
Horia Geantabca4feb2014-03-14 17:46:51 +02002481 .suite = {
2482 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002483 .enc = __VECS(hmac_sha1_ecb_cipher_null_enc_tv_temp),
2484 .dec = __VECS(hmac_sha1_ecb_cipher_null_dec_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302485 }
2486 }
2487 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002488 .alg = "authenc(hmac(sha1),rfc3686(ctr(aes)))",
2489 .test = alg_test_null,
2490 .fips_allowed = 1,
2491 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002492 .alg = "authenc(hmac(sha224),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302493 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302494 .suite = {
2495 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002496 .enc = __VECS(hmac_sha224_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302497 }
2498 }
2499 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002500 .alg = "authenc(hmac(sha224),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302501 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002502 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302503 .suite = {
2504 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002505 .enc = __VECS(hmac_sha224_des3_ede_cbc_enc_tv_temp)
Horia Geantabca4feb2014-03-14 17:46:51 +02002506 }
2507 }
2508 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002509 .alg = "authenc(hmac(sha256),cbc(aes))",
Horia Geantae46e9a42012-07-03 19:16:54 +03002510 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002511 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03002512 .suite = {
2513 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002514 .enc = __VECS(hmac_sha256_aes_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302515 }
2516 }
2517 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002518 .alg = "authenc(hmac(sha256),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302519 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302520 .suite = {
2521 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002522 .enc = __VECS(hmac_sha256_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302523 }
2524 }
2525 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002526 .alg = "authenc(hmac(sha256),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302527 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002528 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302529 .suite = {
2530 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002531 .enc = __VECS(hmac_sha256_des3_ede_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302532 }
2533 }
2534 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002535 .alg = "authenc(hmac(sha256),ctr(aes))",
2536 .test = alg_test_null,
2537 .fips_allowed = 1,
2538 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002539 .alg = "authenc(hmac(sha256),rfc3686(ctr(aes)))",
2540 .test = alg_test_null,
2541 .fips_allowed = 1,
2542 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002543 .alg = "authenc(hmac(sha384),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302544 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302545 .suite = {
2546 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002547 .enc = __VECS(hmac_sha384_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302548 }
2549 }
2550 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002551 .alg = "authenc(hmac(sha384),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302552 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002553 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302554 .suite = {
2555 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002556 .enc = __VECS(hmac_sha384_des3_ede_cbc_enc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03002557 }
2558 }
2559 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002560 .alg = "authenc(hmac(sha384),ctr(aes))",
2561 .test = alg_test_null,
2562 .fips_allowed = 1,
2563 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002564 .alg = "authenc(hmac(sha384),rfc3686(ctr(aes)))",
2565 .test = alg_test_null,
2566 .fips_allowed = 1,
2567 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002568 .alg = "authenc(hmac(sha512),cbc(aes))",
Marcus Meissnered1afac2016-02-05 14:23:33 +01002569 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03002570 .test = alg_test_aead,
Horia Geantae46e9a42012-07-03 19:16:54 +03002571 .suite = {
2572 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002573 .enc = __VECS(hmac_sha512_aes_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302574 }
2575 }
2576 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002577 .alg = "authenc(hmac(sha512),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302578 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302579 .suite = {
2580 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002581 .enc = __VECS(hmac_sha512_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302582 }
2583 }
2584 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002585 .alg = "authenc(hmac(sha512),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302586 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002587 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302588 .suite = {
2589 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002590 .enc = __VECS(hmac_sha512_des3_ede_cbc_enc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03002591 }
2592 }
2593 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002594 .alg = "authenc(hmac(sha512),ctr(aes))",
2595 .test = alg_test_null,
2596 .fips_allowed = 1,
2597 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002598 .alg = "authenc(hmac(sha512),rfc3686(ctr(aes)))",
2599 .test = alg_test_null,
2600 .fips_allowed = 1,
2601 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002602 .alg = "cbc(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002603 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002604 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002605 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002606 .cipher = __VECS(aes_cbc_tv_template)
2607 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002608 }, {
2609 .alg = "cbc(anubis)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002610 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002611 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002612 .cipher = __VECS(anubis_cbc_tv_template)
2613 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002614 }, {
2615 .alg = "cbc(blowfish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002616 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002617 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002618 .cipher = __VECS(bf_cbc_tv_template)
2619 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002620 }, {
2621 .alg = "cbc(camellia)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002622 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002623 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002624 .cipher = __VECS(camellia_cbc_tv_template)
2625 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002626 }, {
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002627 .alg = "cbc(cast5)",
2628 .test = alg_test_skcipher,
2629 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002630 .cipher = __VECS(cast5_cbc_tv_template)
2631 },
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002632 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002633 .alg = "cbc(cast6)",
2634 .test = alg_test_skcipher,
2635 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002636 .cipher = __VECS(cast6_cbc_tv_template)
2637 },
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002638 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002639 .alg = "cbc(des)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002640 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002641 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002642 .cipher = __VECS(des_cbc_tv_template)
2643 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002644 }, {
2645 .alg = "cbc(des3_ede)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002646 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002647 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002648 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002649 .cipher = __VECS(des3_ede_cbc_tv_template)
2650 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002651 }, {
Gilad Ben-Yossefa794d8d2018-04-23 08:25:14 +01002652 /* Same as cbc(aes) except the key is stored in
2653 * hardware secure memory which we reference by index
2654 */
2655 .alg = "cbc(paes)",
2656 .test = alg_test_null,
2657 .fips_allowed = 1,
2658 }, {
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002659 .alg = "cbc(serpent)",
2660 .test = alg_test_skcipher,
2661 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002662 .cipher = __VECS(serpent_cbc_tv_template)
2663 },
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002664 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002665 .alg = "cbc(twofish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002666 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002667 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002668 .cipher = __VECS(tf_cbc_tv_template)
2669 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002670 }, {
Ard Biesheuvel092acf02017-02-03 14:49:35 +00002671 .alg = "cbcmac(aes)",
2672 .fips_allowed = 1,
2673 .test = alg_test_hash,
2674 .suite = {
2675 .hash = __VECS(aes_cbcmac_tv_template)
2676 }
2677 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002678 .alg = "ccm(aes)",
2679 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002680 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002681 .suite = {
2682 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002683 .enc = __VECS(aes_ccm_enc_tv_template),
2684 .dec = __VECS(aes_ccm_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002685 }
2686 }
2687 }, {
Martin Willi3590ebf2015-06-01 13:43:57 +02002688 .alg = "chacha20",
2689 .test = alg_test_skcipher,
2690 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002691 .cipher = __VECS(chacha20_tv_template)
2692 },
Martin Willi3590ebf2015-06-01 13:43:57 +02002693 }, {
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002694 .alg = "cmac(aes)",
Stephan Mueller8f183752015-08-19 08:42:07 +02002695 .fips_allowed = 1,
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002696 .test = alg_test_hash,
2697 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002698 .hash = __VECS(aes_cmac128_tv_template)
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002699 }
2700 }, {
2701 .alg = "cmac(des3_ede)",
Stephan Mueller8f183752015-08-19 08:42:07 +02002702 .fips_allowed = 1,
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002703 .test = alg_test_hash,
2704 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002705 .hash = __VECS(des3_ede_cmac64_tv_template)
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002706 }
2707 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03002708 .alg = "compress_null",
2709 .test = alg_test_null,
2710 }, {
Ard Biesheuvelebb34722015-05-04 11:00:17 +02002711 .alg = "crc32",
2712 .test = alg_test_hash,
2713 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002714 .hash = __VECS(crc32_tv_template)
Ard Biesheuvelebb34722015-05-04 11:00:17 +02002715 }
2716 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002717 .alg = "crc32c",
Herbert Xu8e3ee852008-11-07 14:58:52 +08002718 .test = alg_test_crc32c,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002719 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002720 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002721 .hash = __VECS(crc32c_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002722 }
2723 }, {
Herbert Xu684115212013-09-07 12:56:26 +10002724 .alg = "crct10dif",
2725 .test = alg_test_hash,
2726 .fips_allowed = 1,
2727 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002728 .hash = __VECS(crct10dif_tv_template)
Herbert Xu684115212013-09-07 12:56:26 +10002729 }
2730 }, {
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08002731 .alg = "ctr(aes)",
2732 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002733 .fips_allowed = 1,
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08002734 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002735 .cipher = __VECS(aes_ctr_tv_template)
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08002736 }
2737 }, {
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03002738 .alg = "ctr(blowfish)",
2739 .test = alg_test_skcipher,
2740 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002741 .cipher = __VECS(bf_ctr_tv_template)
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03002742 }
2743 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02002744 .alg = "ctr(camellia)",
2745 .test = alg_test_skcipher,
2746 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002747 .cipher = __VECS(camellia_ctr_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02002748 }
2749 }, {
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002750 .alg = "ctr(cast5)",
2751 .test = alg_test_skcipher,
2752 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002753 .cipher = __VECS(cast5_ctr_tv_template)
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002754 }
2755 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002756 .alg = "ctr(cast6)",
2757 .test = alg_test_skcipher,
2758 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002759 .cipher = __VECS(cast6_ctr_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002760 }
2761 }, {
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03002762 .alg = "ctr(des)",
2763 .test = alg_test_skcipher,
2764 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002765 .cipher = __VECS(des_ctr_tv_template)
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03002766 }
2767 }, {
Jussi Kivilinnae080b172012-10-20 14:53:12 +03002768 .alg = "ctr(des3_ede)",
2769 .test = alg_test_skcipher,
Marcelo Cerri0d8da102017-03-20 17:28:05 -03002770 .fips_allowed = 1,
Jussi Kivilinnae080b172012-10-20 14:53:12 +03002771 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002772 .cipher = __VECS(des3_ede_ctr_tv_template)
Jussi Kivilinnae080b172012-10-20 14:53:12 +03002773 }
2774 }, {
Gilad Ben-Yossefa794d8d2018-04-23 08:25:14 +01002775 /* Same as ctr(aes) except the key is stored in
2776 * hardware secure memory which we reference by index
2777 */
2778 .alg = "ctr(paes)",
2779 .test = alg_test_null,
2780 .fips_allowed = 1,
2781 }, {
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002782 .alg = "ctr(serpent)",
2783 .test = alg_test_skcipher,
2784 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002785 .cipher = __VECS(serpent_ctr_tv_template)
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002786 }
2787 }, {
Jussi Kivilinna573da622011-10-10 23:03:12 +03002788 .alg = "ctr(twofish)",
2789 .test = alg_test_skcipher,
2790 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002791 .cipher = __VECS(tf_ctr_tv_template)
Jussi Kivilinna573da622011-10-10 23:03:12 +03002792 }
2793 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002794 .alg = "cts(cbc(aes))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002795 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002796 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002797 .cipher = __VECS(cts_mode_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002798 }
2799 }, {
2800 .alg = "deflate",
2801 .test = alg_test_comp,
Milan Broz08189042012-12-06 17:16:28 +08002802 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002803 .suite = {
2804 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002805 .comp = __VECS(deflate_comp_tv_template),
2806 .decomp = __VECS(deflate_decomp_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002807 }
2808 }
2809 }, {
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002810 .alg = "dh",
2811 .test = alg_test_kpp,
2812 .fips_allowed = 1,
2813 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002814 .kpp = __VECS(dh_tv_template)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002815 }
2816 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03002817 .alg = "digest_null",
2818 .test = alg_test_null,
2819 }, {
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002820 .alg = "drbg_nopr_ctr_aes128",
2821 .test = alg_test_drbg,
2822 .fips_allowed = 1,
2823 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002824 .drbg = __VECS(drbg_nopr_ctr_aes128_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002825 }
2826 }, {
2827 .alg = "drbg_nopr_ctr_aes192",
2828 .test = alg_test_drbg,
2829 .fips_allowed = 1,
2830 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002831 .drbg = __VECS(drbg_nopr_ctr_aes192_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002832 }
2833 }, {
2834 .alg = "drbg_nopr_ctr_aes256",
2835 .test = alg_test_drbg,
2836 .fips_allowed = 1,
2837 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002838 .drbg = __VECS(drbg_nopr_ctr_aes256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002839 }
2840 }, {
2841 /*
2842 * There is no need to specifically test the DRBG with every
2843 * backend cipher -- covered by drbg_nopr_hmac_sha256 test
2844 */
2845 .alg = "drbg_nopr_hmac_sha1",
2846 .fips_allowed = 1,
2847 .test = alg_test_null,
2848 }, {
2849 .alg = "drbg_nopr_hmac_sha256",
2850 .test = alg_test_drbg,
2851 .fips_allowed = 1,
2852 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002853 .drbg = __VECS(drbg_nopr_hmac_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002854 }
2855 }, {
2856 /* covered by drbg_nopr_hmac_sha256 test */
2857 .alg = "drbg_nopr_hmac_sha384",
2858 .fips_allowed = 1,
2859 .test = alg_test_null,
2860 }, {
2861 .alg = "drbg_nopr_hmac_sha512",
2862 .test = alg_test_null,
2863 .fips_allowed = 1,
2864 }, {
2865 .alg = "drbg_nopr_sha1",
2866 .fips_allowed = 1,
2867 .test = alg_test_null,
2868 }, {
2869 .alg = "drbg_nopr_sha256",
2870 .test = alg_test_drbg,
2871 .fips_allowed = 1,
2872 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002873 .drbg = __VECS(drbg_nopr_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002874 }
2875 }, {
2876 /* covered by drbg_nopr_sha256 test */
2877 .alg = "drbg_nopr_sha384",
2878 .fips_allowed = 1,
2879 .test = alg_test_null,
2880 }, {
2881 .alg = "drbg_nopr_sha512",
2882 .fips_allowed = 1,
2883 .test = alg_test_null,
2884 }, {
2885 .alg = "drbg_pr_ctr_aes128",
2886 .test = alg_test_drbg,
2887 .fips_allowed = 1,
2888 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002889 .drbg = __VECS(drbg_pr_ctr_aes128_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002890 }
2891 }, {
2892 /* covered by drbg_pr_ctr_aes128 test */
2893 .alg = "drbg_pr_ctr_aes192",
2894 .fips_allowed = 1,
2895 .test = alg_test_null,
2896 }, {
2897 .alg = "drbg_pr_ctr_aes256",
2898 .fips_allowed = 1,
2899 .test = alg_test_null,
2900 }, {
2901 .alg = "drbg_pr_hmac_sha1",
2902 .fips_allowed = 1,
2903 .test = alg_test_null,
2904 }, {
2905 .alg = "drbg_pr_hmac_sha256",
2906 .test = alg_test_drbg,
2907 .fips_allowed = 1,
2908 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002909 .drbg = __VECS(drbg_pr_hmac_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002910 }
2911 }, {
2912 /* covered by drbg_pr_hmac_sha256 test */
2913 .alg = "drbg_pr_hmac_sha384",
2914 .fips_allowed = 1,
2915 .test = alg_test_null,
2916 }, {
2917 .alg = "drbg_pr_hmac_sha512",
2918 .test = alg_test_null,
2919 .fips_allowed = 1,
2920 }, {
2921 .alg = "drbg_pr_sha1",
2922 .fips_allowed = 1,
2923 .test = alg_test_null,
2924 }, {
2925 .alg = "drbg_pr_sha256",
2926 .test = alg_test_drbg,
2927 .fips_allowed = 1,
2928 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002929 .drbg = __VECS(drbg_pr_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002930 }
2931 }, {
2932 /* covered by drbg_pr_sha256 test */
2933 .alg = "drbg_pr_sha384",
2934 .fips_allowed = 1,
2935 .test = alg_test_null,
2936 }, {
2937 .alg = "drbg_pr_sha512",
2938 .fips_allowed = 1,
2939 .test = alg_test_null,
2940 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002941 .alg = "ecb(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002942 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002943 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002944 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002945 .cipher = __VECS(aes_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002946 }
2947 }, {
2948 .alg = "ecb(anubis)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002949 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002950 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002951 .cipher = __VECS(anubis_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002952 }
2953 }, {
2954 .alg = "ecb(arc4)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002955 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002956 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002957 .cipher = __VECS(arc4_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002958 }
2959 }, {
2960 .alg = "ecb(blowfish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002961 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002962 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002963 .cipher = __VECS(bf_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002964 }
2965 }, {
2966 .alg = "ecb(camellia)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002967 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002968 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002969 .cipher = __VECS(camellia_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002970 }
2971 }, {
2972 .alg = "ecb(cast5)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002973 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002974 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002975 .cipher = __VECS(cast5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002976 }
2977 }, {
2978 .alg = "ecb(cast6)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002979 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002980 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002981 .cipher = __VECS(cast6_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002982 }
2983 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03002984 .alg = "ecb(cipher_null)",
2985 .test = alg_test_null,
Milan Broz6175ca22017-04-21 13:03:06 +02002986 .fips_allowed = 1,
Jussi Kivilinnae4483702013-04-07 16:43:56 +03002987 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002988 .alg = "ecb(des)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002989 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002990 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002991 .cipher = __VECS(des_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002992 }
2993 }, {
2994 .alg = "ecb(des3_ede)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002995 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002996 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002997 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002998 .cipher = __VECS(des3_ede_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002999 }
3000 }, {
Jussi Kivilinna66e5bd02013-01-19 13:31:36 +02003001 .alg = "ecb(fcrypt)",
3002 .test = alg_test_skcipher,
3003 .suite = {
3004 .cipher = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003005 .vecs = fcrypt_pcbc_tv_template,
3006 .count = 1
Jussi Kivilinna66e5bd02013-01-19 13:31:36 +02003007 }
3008 }
3009 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003010 .alg = "ecb(khazad)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003011 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003012 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003013 .cipher = __VECS(khazad_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003014 }
3015 }, {
Gilad Ben-Yossef15f47ce2018-05-11 09:04:06 +01003016 /* Same as ecb(aes) except the key is stored in
3017 * hardware secure memory which we reference by index
3018 */
3019 .alg = "ecb(paes)",
3020 .test = alg_test_null,
3021 .fips_allowed = 1,
3022 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003023 .alg = "ecb(seed)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003024 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003025 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003026 .cipher = __VECS(seed_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003027 }
3028 }, {
3029 .alg = "ecb(serpent)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003030 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003031 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003032 .cipher = __VECS(serpent_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003033 }
3034 }, {
Gilad Ben-Yossefcd83a8a2018-03-06 09:44:43 +00003035 .alg = "ecb(sm4)",
3036 .test = alg_test_skcipher,
3037 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003038 .cipher = __VECS(sm4_tv_template)
Gilad Ben-Yossefcd83a8a2018-03-06 09:44:43 +00003039 }
3040 }, {
Eric Biggersda7a0ab2018-02-14 10:42:19 -08003041 .alg = "ecb(speck128)",
3042 .test = alg_test_skcipher,
3043 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003044 .cipher = __VECS(speck128_tv_template)
Eric Biggersda7a0ab2018-02-14 10:42:19 -08003045 }
3046 }, {
3047 .alg = "ecb(speck64)",
3048 .test = alg_test_skcipher,
3049 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003050 .cipher = __VECS(speck64_tv_template)
Eric Biggersda7a0ab2018-02-14 10:42:19 -08003051 }
3052 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003053 .alg = "ecb(tea)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003054 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003055 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003056 .cipher = __VECS(tea_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003057 }
3058 }, {
3059 .alg = "ecb(tnepres)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003060 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003061 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003062 .cipher = __VECS(tnepres_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003063 }
3064 }, {
3065 .alg = "ecb(twofish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003066 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003067 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003068 .cipher = __VECS(tf_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003069 }
3070 }, {
3071 .alg = "ecb(xeta)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003072 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003073 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003074 .cipher = __VECS(xeta_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003075 }
3076 }, {
3077 .alg = "ecb(xtea)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003078 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003079 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003080 .cipher = __VECS(xtea_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003081 }
3082 }, {
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +01003083 .alg = "ecdh",
3084 .test = alg_test_kpp,
3085 .fips_allowed = 1,
3086 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003087 .kpp = __VECS(ecdh_tv_template)
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +01003088 }
3089 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003090 .alg = "gcm(aes)",
3091 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003092 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003093 .suite = {
3094 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003095 .enc = __VECS(aes_gcm_enc_tv_template),
3096 .dec = __VECS(aes_gcm_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003097 }
3098 }
3099 }, {
Youquan, Song507069c2009-11-23 20:23:04 +08003100 .alg = "ghash",
3101 .test = alg_test_hash,
Jarod Wilson18c0ebd2011-01-29 15:14:35 +11003102 .fips_allowed = 1,
Youquan, Song507069c2009-11-23 20:23:04 +08003103 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003104 .hash = __VECS(ghash_tv_template)
Youquan, Song507069c2009-11-23 20:23:04 +08003105 }
3106 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003107 .alg = "hmac(md5)",
3108 .test = alg_test_hash,
3109 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003110 .hash = __VECS(hmac_md5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003111 }
3112 }, {
3113 .alg = "hmac(rmd128)",
3114 .test = alg_test_hash,
3115 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003116 .hash = __VECS(hmac_rmd128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003117 }
3118 }, {
3119 .alg = "hmac(rmd160)",
3120 .test = alg_test_hash,
3121 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003122 .hash = __VECS(hmac_rmd160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003123 }
3124 }, {
3125 .alg = "hmac(sha1)",
3126 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003127 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003128 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003129 .hash = __VECS(hmac_sha1_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003130 }
3131 }, {
3132 .alg = "hmac(sha224)",
3133 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003134 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003135 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003136 .hash = __VECS(hmac_sha224_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003137 }
3138 }, {
3139 .alg = "hmac(sha256)",
3140 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003141 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003142 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003143 .hash = __VECS(hmac_sha256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003144 }
3145 }, {
raveendra padasalagi98eca722016-07-01 11:16:54 +05303146 .alg = "hmac(sha3-224)",
3147 .test = alg_test_hash,
3148 .fips_allowed = 1,
3149 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003150 .hash = __VECS(hmac_sha3_224_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303151 }
3152 }, {
3153 .alg = "hmac(sha3-256)",
3154 .test = alg_test_hash,
3155 .fips_allowed = 1,
3156 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003157 .hash = __VECS(hmac_sha3_256_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303158 }
3159 }, {
3160 .alg = "hmac(sha3-384)",
3161 .test = alg_test_hash,
3162 .fips_allowed = 1,
3163 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003164 .hash = __VECS(hmac_sha3_384_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303165 }
3166 }, {
3167 .alg = "hmac(sha3-512)",
3168 .test = alg_test_hash,
3169 .fips_allowed = 1,
3170 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003171 .hash = __VECS(hmac_sha3_512_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303172 }
3173 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003174 .alg = "hmac(sha384)",
3175 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003176 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003177 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003178 .hash = __VECS(hmac_sha384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003179 }
3180 }, {
3181 .alg = "hmac(sha512)",
3182 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003183 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003184 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003185 .hash = __VECS(hmac_sha512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003186 }
3187 }, {
Stephan Muellerbb5530e2015-05-25 15:10:20 +02003188 .alg = "jitterentropy_rng",
3189 .fips_allowed = 1,
3190 .test = alg_test_null,
3191 }, {
Stephan Mueller35351982015-09-21 20:59:56 +02003192 .alg = "kw(aes)",
3193 .test = alg_test_skcipher,
3194 .fips_allowed = 1,
3195 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003196 .cipher = __VECS(aes_kw_tv_template)
Stephan Mueller35351982015-09-21 20:59:56 +02003197 }
3198 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003199 .alg = "lrw(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003200 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003201 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003202 .cipher = __VECS(aes_lrw_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003203 }
3204 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02003205 .alg = "lrw(camellia)",
3206 .test = alg_test_skcipher,
3207 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003208 .cipher = __VECS(camellia_lrw_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02003209 }
3210 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003211 .alg = "lrw(cast6)",
3212 .test = alg_test_skcipher,
3213 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003214 .cipher = __VECS(cast6_lrw_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003215 }
3216 }, {
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03003217 .alg = "lrw(serpent)",
3218 .test = alg_test_skcipher,
3219 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003220 .cipher = __VECS(serpent_lrw_tv_template)
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03003221 }
3222 }, {
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03003223 .alg = "lrw(twofish)",
3224 .test = alg_test_skcipher,
3225 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003226 .cipher = __VECS(tf_lrw_tv_template)
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03003227 }
3228 }, {
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02003229 .alg = "lz4",
3230 .test = alg_test_comp,
3231 .fips_allowed = 1,
3232 .suite = {
3233 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003234 .comp = __VECS(lz4_comp_tv_template),
3235 .decomp = __VECS(lz4_decomp_tv_template)
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02003236 }
3237 }
3238 }, {
3239 .alg = "lz4hc",
3240 .test = alg_test_comp,
3241 .fips_allowed = 1,
3242 .suite = {
3243 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003244 .comp = __VECS(lz4hc_comp_tv_template),
3245 .decomp = __VECS(lz4hc_decomp_tv_template)
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02003246 }
3247 }
3248 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003249 .alg = "lzo",
3250 .test = alg_test_comp,
Milan Broz08189042012-12-06 17:16:28 +08003251 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003252 .suite = {
3253 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003254 .comp = __VECS(lzo_comp_tv_template),
3255 .decomp = __VECS(lzo_decomp_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003256 }
3257 }
3258 }, {
3259 .alg = "md4",
3260 .test = alg_test_hash,
3261 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003262 .hash = __VECS(md4_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003263 }
3264 }, {
3265 .alg = "md5",
3266 .test = alg_test_hash,
3267 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003268 .hash = __VECS(md5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003269 }
3270 }, {
3271 .alg = "michael_mic",
3272 .test = alg_test_hash,
3273 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003274 .hash = __VECS(michael_mic_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003275 }
3276 }, {
Ondrej Mosnacek4feb4c52018-05-11 14:19:10 +02003277 .alg = "morus1280",
3278 .test = alg_test_aead,
3279 .suite = {
3280 .aead = {
3281 .enc = __VECS(morus1280_enc_tv_template),
3282 .dec = __VECS(morus1280_dec_tv_template),
3283 }
3284 }
3285 }, {
3286 .alg = "morus640",
3287 .test = alg_test_aead,
3288 .suite = {
3289 .aead = {
3290 .enc = __VECS(morus640_enc_tv_template),
3291 .dec = __VECS(morus640_dec_tv_template),
3292 }
3293 }
3294 }, {
Puneet Saxenaba0e14a2011-05-04 15:04:10 +10003295 .alg = "ofb(aes)",
3296 .test = alg_test_skcipher,
3297 .fips_allowed = 1,
3298 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003299 .cipher = __VECS(aes_ofb_tv_template)
Puneet Saxenaba0e14a2011-05-04 15:04:10 +10003300 }
3301 }, {
Gilad Ben-Yossefa794d8d2018-04-23 08:25:14 +01003302 /* Same as ofb(aes) except the key is stored in
3303 * hardware secure memory which we reference by index
3304 */
3305 .alg = "ofb(paes)",
3306 .test = alg_test_null,
3307 .fips_allowed = 1,
3308 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003309 .alg = "pcbc(fcrypt)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003310 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003311 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003312 .cipher = __VECS(fcrypt_pcbc_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003313 }
3314 }, {
Stephan Mueller12071072017-06-12 23:27:51 +02003315 .alg = "pkcs1pad(rsa,sha224)",
3316 .test = alg_test_null,
3317 .fips_allowed = 1,
3318 }, {
3319 .alg = "pkcs1pad(rsa,sha256)",
3320 .test = alg_test_akcipher,
3321 .fips_allowed = 1,
3322 .suite = {
3323 .akcipher = __VECS(pkcs1pad_rsa_tv_template)
3324 }
3325 }, {
3326 .alg = "pkcs1pad(rsa,sha384)",
3327 .test = alg_test_null,
3328 .fips_allowed = 1,
3329 }, {
3330 .alg = "pkcs1pad(rsa,sha512)",
3331 .test = alg_test_null,
3332 .fips_allowed = 1,
3333 }, {
Martin Willieee9dc62015-06-01 13:43:59 +02003334 .alg = "poly1305",
3335 .test = alg_test_hash,
3336 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003337 .hash = __VECS(poly1305_tv_template)
Martin Willieee9dc62015-06-01 13:43:59 +02003338 }
3339 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003340 .alg = "rfc3686(ctr(aes))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003341 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003342 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003343 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003344 .cipher = __VECS(aes_ctr_rfc3686_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003345 }
3346 }, {
Herbert Xu3f31a742015-07-09 07:17:34 +08003347 .alg = "rfc4106(gcm(aes))",
Adrian Hoban69435b92010-11-04 15:02:04 -04003348 .test = alg_test_aead,
Jarod Wilsondb71f292015-01-23 12:42:15 -05003349 .fips_allowed = 1,
Adrian Hoban69435b92010-11-04 15:02:04 -04003350 .suite = {
3351 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003352 .enc = __VECS(aes_gcm_rfc4106_enc_tv_template),
3353 .dec = __VECS(aes_gcm_rfc4106_dec_tv_template)
Adrian Hoban69435b92010-11-04 15:02:04 -04003354 }
3355 }
3356 }, {
Herbert Xu544c4362015-07-14 16:53:22 +08003357 .alg = "rfc4309(ccm(aes))",
Jarod Wilson5d667322009-05-04 19:23:40 +08003358 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003359 .fips_allowed = 1,
Jarod Wilson5d667322009-05-04 19:23:40 +08003360 .suite = {
3361 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003362 .enc = __VECS(aes_ccm_rfc4309_enc_tv_template),
3363 .dec = __VECS(aes_ccm_rfc4309_dec_tv_template)
Jarod Wilson5d667322009-05-04 19:23:40 +08003364 }
3365 }
3366 }, {
Herbert Xubb687452015-06-16 13:54:24 +08003367 .alg = "rfc4543(gcm(aes))",
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03003368 .test = alg_test_aead,
3369 .suite = {
3370 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003371 .enc = __VECS(aes_gcm_rfc4543_enc_tv_template),
3372 .dec = __VECS(aes_gcm_rfc4543_dec_tv_template),
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03003373 }
3374 }
3375 }, {
Martin Williaf2b76b2015-06-01 13:44:01 +02003376 .alg = "rfc7539(chacha20,poly1305)",
3377 .test = alg_test_aead,
3378 .suite = {
3379 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003380 .enc = __VECS(rfc7539_enc_tv_template),
3381 .dec = __VECS(rfc7539_dec_tv_template),
Martin Williaf2b76b2015-06-01 13:44:01 +02003382 }
3383 }
3384 }, {
Martin Willi59007582015-06-01 13:44:03 +02003385 .alg = "rfc7539esp(chacha20,poly1305)",
3386 .test = alg_test_aead,
3387 .suite = {
3388 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003389 .enc = __VECS(rfc7539esp_enc_tv_template),
3390 .dec = __VECS(rfc7539esp_dec_tv_template),
Martin Willi59007582015-06-01 13:44:03 +02003391 }
3392 }
3393 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003394 .alg = "rmd128",
3395 .test = alg_test_hash,
3396 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003397 .hash = __VECS(rmd128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003398 }
3399 }, {
3400 .alg = "rmd160",
3401 .test = alg_test_hash,
3402 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003403 .hash = __VECS(rmd160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003404 }
3405 }, {
3406 .alg = "rmd256",
3407 .test = alg_test_hash,
3408 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003409 .hash = __VECS(rmd256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003410 }
3411 }, {
3412 .alg = "rmd320",
3413 .test = alg_test_hash,
3414 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003415 .hash = __VECS(rmd320_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003416 }
3417 }, {
Tadeusz Struk946cc462015-06-16 10:31:06 -07003418 .alg = "rsa",
3419 .test = alg_test_akcipher,
3420 .fips_allowed = 1,
3421 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003422 .akcipher = __VECS(rsa_tv_template)
Tadeusz Struk946cc462015-06-16 10:31:06 -07003423 }
3424 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003425 .alg = "salsa20",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003426 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003427 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003428 .cipher = __VECS(salsa20_stream_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003429 }
3430 }, {
3431 .alg = "sha1",
3432 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003433 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003434 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003435 .hash = __VECS(sha1_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003436 }
3437 }, {
3438 .alg = "sha224",
3439 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003440 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003441 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003442 .hash = __VECS(sha224_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003443 }
3444 }, {
3445 .alg = "sha256",
3446 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003447 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003448 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003449 .hash = __VECS(sha256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003450 }
3451 }, {
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303452 .alg = "sha3-224",
3453 .test = alg_test_hash,
3454 .fips_allowed = 1,
3455 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003456 .hash = __VECS(sha3_224_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303457 }
3458 }, {
3459 .alg = "sha3-256",
3460 .test = alg_test_hash,
3461 .fips_allowed = 1,
3462 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003463 .hash = __VECS(sha3_256_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303464 }
3465 }, {
3466 .alg = "sha3-384",
3467 .test = alg_test_hash,
3468 .fips_allowed = 1,
3469 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003470 .hash = __VECS(sha3_384_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303471 }
3472 }, {
3473 .alg = "sha3-512",
3474 .test = alg_test_hash,
3475 .fips_allowed = 1,
3476 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003477 .hash = __VECS(sha3_512_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303478 }
3479 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003480 .alg = "sha384",
3481 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003482 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003483 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003484 .hash = __VECS(sha384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003485 }
3486 }, {
3487 .alg = "sha512",
3488 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003489 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003490 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003491 .hash = __VECS(sha512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003492 }
3493 }, {
Gilad Ben-Yossefb7e27532017-08-21 13:51:29 +03003494 .alg = "sm3",
3495 .test = alg_test_hash,
3496 .suite = {
3497 .hash = __VECS(sm3_tv_template)
3498 }
3499 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003500 .alg = "tgr128",
3501 .test = alg_test_hash,
3502 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003503 .hash = __VECS(tgr128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003504 }
3505 }, {
3506 .alg = "tgr160",
3507 .test = alg_test_hash,
3508 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003509 .hash = __VECS(tgr160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003510 }
3511 }, {
3512 .alg = "tgr192",
3513 .test = alg_test_hash,
3514 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003515 .hash = __VECS(tgr192_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003516 }
3517 }, {
Eric Biggersed331ad2018-06-18 10:22:39 -07003518 .alg = "vmac64(aes)",
3519 .test = alg_test_hash,
3520 .suite = {
3521 .hash = __VECS(vmac64_aes_tv_template)
3522 }
3523 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003524 .alg = "wp256",
3525 .test = alg_test_hash,
3526 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003527 .hash = __VECS(wp256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003528 }
3529 }, {
3530 .alg = "wp384",
3531 .test = alg_test_hash,
3532 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003533 .hash = __VECS(wp384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003534 }
3535 }, {
3536 .alg = "wp512",
3537 .test = alg_test_hash,
3538 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003539 .hash = __VECS(wp512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003540 }
3541 }, {
3542 .alg = "xcbc(aes)",
3543 .test = alg_test_hash,
3544 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003545 .hash = __VECS(aes_xcbc128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003546 }
3547 }, {
3548 .alg = "xts(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003549 .test = alg_test_skcipher,
Jarod Wilson2918aa82011-01-29 15:14:01 +11003550 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003551 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003552 .cipher = __VECS(aes_xts_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003553 }
Geert Uytterhoeven0c01aed2009-03-04 15:42:15 +08003554 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02003555 .alg = "xts(camellia)",
3556 .test = alg_test_skcipher,
3557 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003558 .cipher = __VECS(camellia_xts_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02003559 }
3560 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003561 .alg = "xts(cast6)",
3562 .test = alg_test_skcipher,
3563 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003564 .cipher = __VECS(cast6_xts_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003565 }
3566 }, {
Gilad Ben-Yossef15f47ce2018-05-11 09:04:06 +01003567 /* Same as xts(aes) except the key is stored in
3568 * hardware secure memory which we reference by index
3569 */
3570 .alg = "xts(paes)",
3571 .test = alg_test_null,
3572 .fips_allowed = 1,
3573 }, {
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03003574 .alg = "xts(serpent)",
3575 .test = alg_test_skcipher,
3576 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003577 .cipher = __VECS(serpent_xts_tv_template)
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03003578 }
3579 }, {
Eric Biggersc3bb5212018-02-14 10:42:22 -08003580 .alg = "xts(speck128)",
3581 .test = alg_test_skcipher,
3582 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003583 .cipher = __VECS(speck128_xts_tv_template)
Eric Biggersc3bb5212018-02-14 10:42:22 -08003584 }
3585 }, {
Eric Biggers41b33162018-02-14 10:42:23 -08003586 .alg = "xts(speck64)",
3587 .test = alg_test_skcipher,
3588 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003589 .cipher = __VECS(speck64_xts_tv_template)
Eric Biggers41b33162018-02-14 10:42:23 -08003590 }
3591 }, {
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03003592 .alg = "xts(twofish)",
3593 .test = alg_test_skcipher,
3594 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003595 .cipher = __VECS(tf_xts_tv_template)
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03003596 }
Giovanni Cabiddua368f432017-04-21 21:54:30 +01003597 }, {
Gilad Ben-Yossef15f47ce2018-05-11 09:04:06 +01003598 .alg = "xts4096(paes)",
3599 .test = alg_test_null,
3600 .fips_allowed = 1,
3601 }, {
3602 .alg = "xts512(paes)",
3603 .test = alg_test_null,
3604 .fips_allowed = 1,
3605 }, {
Giovanni Cabiddua368f432017-04-21 21:54:30 +01003606 .alg = "zlib-deflate",
3607 .test = alg_test_comp,
3608 .fips_allowed = 1,
3609 .suite = {
3610 .comp = {
3611 .comp = __VECS(zlib_deflate_comp_tv_template),
3612 .decomp = __VECS(zlib_deflate_decomp_tv_template)
3613 }
3614 }
Nick Terrelld28fc3d2018-03-30 12:14:53 -07003615 }, {
3616 .alg = "zstd",
3617 .test = alg_test_comp,
3618 .fips_allowed = 1,
3619 .suite = {
3620 .comp = {
3621 .comp = __VECS(zstd_comp_tv_template),
3622 .decomp = __VECS(zstd_decomp_tv_template)
3623 }
3624 }
Herbert Xuda7f0332008-07-31 17:08:25 +08003625 }
3626};
3627
Jussi Kivilinna57147582013-06-13 17:37:40 +03003628static bool alg_test_descs_checked;
3629
3630static void alg_test_descs_check_order(void)
3631{
3632 int i;
3633
3634 /* only check once */
3635 if (alg_test_descs_checked)
3636 return;
3637
3638 alg_test_descs_checked = true;
3639
3640 for (i = 1; i < ARRAY_SIZE(alg_test_descs); i++) {
3641 int diff = strcmp(alg_test_descs[i - 1].alg,
3642 alg_test_descs[i].alg);
3643
3644 if (WARN_ON(diff > 0)) {
3645 pr_warn("testmgr: alg_test_descs entries in wrong order: '%s' before '%s'\n",
3646 alg_test_descs[i - 1].alg,
3647 alg_test_descs[i].alg);
3648 }
3649
3650 if (WARN_ON(diff == 0)) {
3651 pr_warn("testmgr: duplicate alg_test_descs entry: '%s'\n",
3652 alg_test_descs[i].alg);
3653 }
3654 }
3655}
3656
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003657static int alg_find_test(const char *alg)
Herbert Xuda7f0332008-07-31 17:08:25 +08003658{
3659 int start = 0;
3660 int end = ARRAY_SIZE(alg_test_descs);
3661
3662 while (start < end) {
3663 int i = (start + end) / 2;
3664 int diff = strcmp(alg_test_descs[i].alg, alg);
3665
3666 if (diff > 0) {
3667 end = i;
3668 continue;
3669 }
3670
3671 if (diff < 0) {
3672 start = i + 1;
3673 continue;
3674 }
3675
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003676 return i;
Herbert Xuda7f0332008-07-31 17:08:25 +08003677 }
3678
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003679 return -1;
3680}
3681
3682int alg_test(const char *driver, const char *alg, u32 type, u32 mask)
3683{
3684 int i;
Herbert Xua68f6612009-07-02 16:32:12 +08003685 int j;
Neil Hormand12d6b62008-10-12 20:36:51 +08003686 int rc;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003687
Richard W.M. Jones9e5c9fe2016-05-03 10:00:17 +01003688 if (!fips_enabled && notests) {
3689 printk_once(KERN_INFO "alg: self-tests disabled\n");
3690 return 0;
3691 }
3692
Jussi Kivilinna57147582013-06-13 17:37:40 +03003693 alg_test_descs_check_order();
3694
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003695 if ((type & CRYPTO_ALG_TYPE_MASK) == CRYPTO_ALG_TYPE_CIPHER) {
3696 char nalg[CRYPTO_MAX_ALG_NAME];
3697
3698 if (snprintf(nalg, sizeof(nalg), "ecb(%s)", alg) >=
3699 sizeof(nalg))
3700 return -ENAMETOOLONG;
3701
3702 i = alg_find_test(nalg);
3703 if (i < 0)
3704 goto notest;
3705
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10003706 if (fips_enabled && !alg_test_descs[i].fips_allowed)
3707 goto non_fips_alg;
3708
Jarod Wilson941fb322009-05-04 19:49:23 +08003709 rc = alg_test_cipher(alg_test_descs + i, driver, type, mask);
3710 goto test_done;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003711 }
3712
3713 i = alg_find_test(alg);
Herbert Xua68f6612009-07-02 16:32:12 +08003714 j = alg_find_test(driver);
3715 if (i < 0 && j < 0)
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003716 goto notest;
3717
Herbert Xua68f6612009-07-02 16:32:12 +08003718 if (fips_enabled && ((i >= 0 && !alg_test_descs[i].fips_allowed) ||
3719 (j >= 0 && !alg_test_descs[j].fips_allowed)))
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10003720 goto non_fips_alg;
3721
Herbert Xua68f6612009-07-02 16:32:12 +08003722 rc = 0;
3723 if (i >= 0)
3724 rc |= alg_test_descs[i].test(alg_test_descs + i, driver,
3725 type, mask);
Cristian Stoica032c8ca2013-07-18 18:57:07 +03003726 if (j >= 0 && j != i)
Herbert Xua68f6612009-07-02 16:32:12 +08003727 rc |= alg_test_descs[j].test(alg_test_descs + j, driver,
3728 type, mask);
3729
Jarod Wilson941fb322009-05-04 19:49:23 +08003730test_done:
Neil Hormand12d6b62008-10-12 20:36:51 +08003731 if (fips_enabled && rc)
3732 panic("%s: %s alg self test failed in fips mode!\n", driver, alg);
3733
Jarod Wilson29ecd4a2009-05-04 19:51:17 +08003734 if (fips_enabled && !rc)
Masanari Iida3e8cffd2014-10-07 00:37:54 +09003735 pr_info("alg: self-tests for %s (%s) passed\n", driver, alg);
Jarod Wilson29ecd4a2009-05-04 19:51:17 +08003736
Neil Hormand12d6b62008-10-12 20:36:51 +08003737 return rc;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003738
3739notest:
Herbert Xuda7f0332008-07-31 17:08:25 +08003740 printk(KERN_INFO "alg: No test for %s (%s)\n", alg, driver);
3741 return 0;
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10003742non_fips_alg:
3743 return -EINVAL;
Herbert Xuda7f0332008-07-31 17:08:25 +08003744}
Alexander Shishkin0b767f92010-06-03 20:53:43 +10003745
Herbert Xu326a6342010-08-06 09:40:28 +08003746#endif /* CONFIG_CRYPTO_MANAGER_DISABLE_TESTS */
Alexander Shishkin0b767f92010-06-03 20:53:43 +10003747
Herbert Xuda7f0332008-07-31 17:08:25 +08003748EXPORT_SYMBOL_GPL(alg_test);