blob: 13cb2ea99d6a50d5185bd1b68224d0c65d4adae5 [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 Xu8a525fc2015-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 Xu8a525fc2015-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 Xu8a525fc2015-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 Xu8a525fc2015-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 Xu8a525fc2015-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 Xu8a525fc2015-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 Xu8a525fc2015-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 Xu8a525fc2015-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 Xu8a525fc2015-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 Xu8a525fc2015-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 Xu8a525fc2015-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 Xu8a525fc2015-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
Michael Schupikov88886892018-10-07 13:58:10 +02001403 memset(output, 0, COMP_BUF_SIZE);
1404 memset(decomp_output, 0, 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
Michael Schupikov88886892018-10-07 13:58:10 +02001448 memset(decomp_output, 0, 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)
Eric Biggers574c19d2019-01-23 20:57:35 -08001897 return err;
Herbert Xu8e3ee852008-11-07 14:58:52 +08001898
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)) {
Eric Biggers574c19d2019-01-23 20:57:35 -08001901 if (PTR_ERR(tfm) == -ENOENT) {
1902 /*
1903 * This crc32c implementation is only available through
1904 * ahash API, not the shash API, so the remaining part
1905 * of the test is not applicable to it.
1906 */
1907 return 0;
1908 }
Herbert Xu8e3ee852008-11-07 14:58:52 +08001909 printk(KERN_ERR "alg: crc32c: Failed to load transform for %s: "
1910 "%ld\n", driver, PTR_ERR(tfm));
Eric Biggers574c19d2019-01-23 20:57:35 -08001911 return PTR_ERR(tfm);
Herbert Xu8e3ee852008-11-07 14:58:52 +08001912 }
1913
1914 do {
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02001915 SHASH_DESC_ON_STACK(shash, tfm);
1916 u32 *ctx = (u32 *)shash_desc_ctx(shash);
Herbert Xu8e3ee852008-11-07 14:58:52 +08001917
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02001918 shash->tfm = tfm;
1919 shash->flags = 0;
Herbert Xu8e3ee852008-11-07 14:58:52 +08001920
Jan-Simon Möller4c5c3022012-07-02 13:48:30 +02001921 *ctx = le32_to_cpu(420553207);
1922 err = crypto_shash_final(shash, (u8 *)&val);
Herbert Xu8e3ee852008-11-07 14:58:52 +08001923 if (err) {
1924 printk(KERN_ERR "alg: crc32c: Operation failed for "
1925 "%s: %d\n", driver, err);
1926 break;
1927 }
1928
1929 if (val != ~420553207) {
1930 printk(KERN_ERR "alg: crc32c: Test failed for %s: "
1931 "%d\n", driver, val);
1932 err = -EINVAL;
1933 }
1934 } while (0);
1935
1936 crypto_free_shash(tfm);
1937
Herbert Xu8e3ee852008-11-07 14:58:52 +08001938 return err;
1939}
1940
Jarod Wilson7647d6c2009-05-04 19:44:50 +08001941static int alg_test_cprng(const struct alg_test_desc *desc, const char *driver,
1942 u32 type, u32 mask)
1943{
1944 struct crypto_rng *rng;
1945 int err;
1946
Herbert Xueed93e02016-11-22 20:08:31 +08001947 rng = crypto_alloc_rng(driver, type, mask);
Jarod Wilson7647d6c2009-05-04 19:44:50 +08001948 if (IS_ERR(rng)) {
1949 printk(KERN_ERR "alg: cprng: Failed to load transform for %s: "
1950 "%ld\n", driver, PTR_ERR(rng));
1951 return PTR_ERR(rng);
1952 }
1953
1954 err = test_cprng(rng, desc->suite.cprng.vecs, desc->suite.cprng.count);
1955
1956 crypto_free_rng(rng);
1957
1958 return err;
1959}
1960
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001961
Eric Biggersb13b1e02017-02-24 15:46:59 -08001962static int drbg_cavs_test(const struct drbg_testvec *test, int pr,
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001963 const char *driver, u32 type, u32 mask)
1964{
1965 int ret = -EAGAIN;
1966 struct crypto_rng *drng;
1967 struct drbg_test_data test_data;
1968 struct drbg_string addtl, pers, testentropy;
1969 unsigned char *buf = kzalloc(test->expectedlen, GFP_KERNEL);
1970
1971 if (!buf)
1972 return -ENOMEM;
1973
Herbert Xueed93e02016-11-22 20:08:31 +08001974 drng = crypto_alloc_rng(driver, type, mask);
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001975 if (IS_ERR(drng)) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04001976 printk(KERN_ERR "alg: drbg: could not allocate DRNG handle for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02001977 "%s\n", driver);
1978 kzfree(buf);
1979 return -ENOMEM;
1980 }
1981
1982 test_data.testentropy = &testentropy;
1983 drbg_string_fill(&testentropy, test->entropy, test->entropylen);
1984 drbg_string_fill(&pers, test->pers, test->perslen);
1985 ret = crypto_drbg_reset_test(drng, &pers, &test_data);
1986 if (ret) {
1987 printk(KERN_ERR "alg: drbg: Failed to reset rng\n");
1988 goto outbuf;
1989 }
1990
1991 drbg_string_fill(&addtl, test->addtla, test->addtllen);
1992 if (pr) {
1993 drbg_string_fill(&testentropy, test->entpra, test->entprlen);
1994 ret = crypto_drbg_get_bytes_addtl_test(drng,
1995 buf, test->expectedlen, &addtl, &test_data);
1996 } else {
1997 ret = crypto_drbg_get_bytes_addtl(drng,
1998 buf, test->expectedlen, &addtl);
1999 }
Stephan Mueller19e60e12015-03-10 17:00:36 +01002000 if (ret < 0) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04002001 printk(KERN_ERR "alg: drbg: could not obtain random data for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002002 "driver %s\n", driver);
2003 goto outbuf;
2004 }
2005
2006 drbg_string_fill(&addtl, test->addtlb, test->addtllen);
2007 if (pr) {
2008 drbg_string_fill(&testentropy, test->entprb, test->entprlen);
2009 ret = crypto_drbg_get_bytes_addtl_test(drng,
2010 buf, test->expectedlen, &addtl, &test_data);
2011 } else {
2012 ret = crypto_drbg_get_bytes_addtl(drng,
2013 buf, test->expectedlen, &addtl);
2014 }
Stephan Mueller19e60e12015-03-10 17:00:36 +01002015 if (ret < 0) {
Jarod Wilson2fc0d252014-07-29 15:47:56 -04002016 printk(KERN_ERR "alg: drbg: could not obtain random data for "
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002017 "driver %s\n", driver);
2018 goto outbuf;
2019 }
2020
2021 ret = memcmp(test->expected, buf, test->expectedlen);
2022
2023outbuf:
2024 crypto_free_rng(drng);
2025 kzfree(buf);
2026 return ret;
2027}
2028
2029
2030static int alg_test_drbg(const struct alg_test_desc *desc, const char *driver,
2031 u32 type, u32 mask)
2032{
2033 int err = 0;
2034 int pr = 0;
2035 int i = 0;
Eric Biggersb13b1e02017-02-24 15:46:59 -08002036 const struct drbg_testvec *template = desc->suite.drbg.vecs;
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002037 unsigned int tcount = desc->suite.drbg.count;
2038
2039 if (0 == memcmp(driver, "drbg_pr_", 8))
2040 pr = 1;
2041
2042 for (i = 0; i < tcount; i++) {
2043 err = drbg_cavs_test(&template[i], pr, driver, type, mask);
2044 if (err) {
2045 printk(KERN_ERR "alg: drbg: Test %d failed for %s\n",
2046 i, driver);
2047 err = -EINVAL;
2048 break;
2049 }
2050 }
2051 return err;
2052
2053}
2054
Eric Biggersb13b1e02017-02-24 15:46:59 -08002055static int do_test_kpp(struct crypto_kpp *tfm, const struct kpp_testvec *vec,
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002056 const char *alg)
2057{
2058 struct kpp_request *req;
2059 void *input_buf = NULL;
2060 void *output_buf = NULL;
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002061 void *a_public = NULL;
2062 void *a_ss = NULL;
2063 void *shared_secret = NULL;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002064 struct crypto_wait wait;
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002065 unsigned int out_len_max;
2066 int err = -ENOMEM;
2067 struct scatterlist src, dst;
2068
2069 req = kpp_request_alloc(tfm, GFP_KERNEL);
2070 if (!req)
2071 return err;
2072
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002073 crypto_init_wait(&wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002074
2075 err = crypto_kpp_set_secret(tfm, vec->secret, vec->secret_size);
2076 if (err < 0)
2077 goto free_req;
2078
2079 out_len_max = crypto_kpp_maxsize(tfm);
2080 output_buf = kzalloc(out_len_max, GFP_KERNEL);
2081 if (!output_buf) {
2082 err = -ENOMEM;
2083 goto free_req;
2084 }
2085
2086 /* Use appropriate parameter as base */
2087 kpp_request_set_input(req, NULL, 0);
2088 sg_init_one(&dst, output_buf, out_len_max);
2089 kpp_request_set_output(req, &dst, out_len_max);
2090 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002091 crypto_req_done, &wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002092
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002093 /* Compute party A's public key */
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002094 err = crypto_wait_req(crypto_kpp_generate_public_key(req), &wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002095 if (err) {
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002096 pr_err("alg: %s: Party A: generate public key test failed. err %d\n",
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002097 alg, err);
2098 goto free_output;
2099 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002100
2101 if (vec->genkey) {
2102 /* Save party A's public key */
2103 a_public = kzalloc(out_len_max, GFP_KERNEL);
2104 if (!a_public) {
2105 err = -ENOMEM;
2106 goto free_output;
2107 }
2108 memcpy(a_public, sg_virt(req->dst), out_len_max);
2109 } else {
2110 /* Verify calculated public key */
2111 if (memcmp(vec->expected_a_public, sg_virt(req->dst),
2112 vec->expected_a_public_size)) {
2113 pr_err("alg: %s: Party A: generate public key test failed. Invalid output\n",
2114 alg);
2115 err = -EINVAL;
2116 goto free_output;
2117 }
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002118 }
2119
2120 /* Calculate shared secret key by using counter part (b) public key. */
2121 input_buf = kzalloc(vec->b_public_size, GFP_KERNEL);
2122 if (!input_buf) {
2123 err = -ENOMEM;
2124 goto free_output;
2125 }
2126
2127 memcpy(input_buf, vec->b_public, vec->b_public_size);
2128 sg_init_one(&src, input_buf, vec->b_public_size);
2129 sg_init_one(&dst, output_buf, out_len_max);
2130 kpp_request_set_input(req, &src, vec->b_public_size);
2131 kpp_request_set_output(req, &dst, out_len_max);
2132 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002133 crypto_req_done, &wait);
2134 err = crypto_wait_req(crypto_kpp_compute_shared_secret(req), &wait);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002135 if (err) {
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002136 pr_err("alg: %s: Party A: compute shared secret test failed. err %d\n",
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002137 alg, err);
2138 goto free_all;
2139 }
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002140
2141 if (vec->genkey) {
2142 /* Save the shared secret obtained by party A */
2143 a_ss = kzalloc(vec->expected_ss_size, GFP_KERNEL);
2144 if (!a_ss) {
2145 err = -ENOMEM;
2146 goto free_all;
2147 }
2148 memcpy(a_ss, sg_virt(req->dst), vec->expected_ss_size);
2149
2150 /*
2151 * Calculate party B's shared secret by using party A's
2152 * public key.
2153 */
2154 err = crypto_kpp_set_secret(tfm, vec->b_secret,
2155 vec->b_secret_size);
2156 if (err < 0)
2157 goto free_all;
2158
2159 sg_init_one(&src, a_public, vec->expected_a_public_size);
2160 sg_init_one(&dst, output_buf, out_len_max);
2161 kpp_request_set_input(req, &src, vec->expected_a_public_size);
2162 kpp_request_set_output(req, &dst, out_len_max);
2163 kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002164 crypto_req_done, &wait);
2165 err = crypto_wait_req(crypto_kpp_compute_shared_secret(req),
2166 &wait);
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002167 if (err) {
2168 pr_err("alg: %s: Party B: compute shared secret failed. err %d\n",
2169 alg, err);
2170 goto free_all;
2171 }
2172
2173 shared_secret = a_ss;
2174 } else {
2175 shared_secret = (void *)vec->expected_ss;
2176 }
2177
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002178 /*
2179 * verify shared secret from which the user will derive
2180 * secret key by executing whatever hash it has chosen
2181 */
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002182 if (memcmp(shared_secret, sg_virt(req->dst),
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002183 vec->expected_ss_size)) {
2184 pr_err("alg: %s: compute shared secret test failed. Invalid output\n",
2185 alg);
2186 err = -EINVAL;
2187 }
2188
2189free_all:
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002190 kfree(a_ss);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002191 kfree(input_buf);
2192free_output:
Tudor-Dan Ambarus47d3fd32017-05-30 17:52:49 +03002193 kfree(a_public);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002194 kfree(output_buf);
2195free_req:
2196 kpp_request_free(req);
2197 return err;
2198}
2199
2200static int test_kpp(struct crypto_kpp *tfm, const char *alg,
Eric Biggersb13b1e02017-02-24 15:46:59 -08002201 const struct kpp_testvec *vecs, unsigned int tcount)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002202{
2203 int ret, i;
2204
2205 for (i = 0; i < tcount; i++) {
2206 ret = do_test_kpp(tfm, vecs++, alg);
2207 if (ret) {
2208 pr_err("alg: %s: test failed on vector %d, err=%d\n",
2209 alg, i + 1, ret);
2210 return ret;
2211 }
2212 }
2213 return 0;
2214}
2215
2216static int alg_test_kpp(const struct alg_test_desc *desc, const char *driver,
2217 u32 type, u32 mask)
2218{
2219 struct crypto_kpp *tfm;
2220 int err = 0;
2221
Herbert Xueed93e02016-11-22 20:08:31 +08002222 tfm = crypto_alloc_kpp(driver, type, mask);
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002223 if (IS_ERR(tfm)) {
2224 pr_err("alg: kpp: Failed to load tfm for %s: %ld\n",
2225 driver, PTR_ERR(tfm));
2226 return PTR_ERR(tfm);
2227 }
2228 if (desc->suite.kpp.vecs)
2229 err = test_kpp(tfm, desc->alg, desc->suite.kpp.vecs,
2230 desc->suite.kpp.count);
2231
2232 crypto_free_kpp(tfm);
2233 return err;
2234}
2235
Herbert Xu50d2b6432016-06-29 19:32:20 +08002236static int test_akcipher_one(struct crypto_akcipher *tfm,
Eric Biggersb13b1e02017-02-24 15:46:59 -08002237 const struct akcipher_testvec *vecs)
Tadeusz Struk946cc462015-06-16 10:31:06 -07002238{
Herbert Xudf27b262016-05-05 16:42:49 +08002239 char *xbuf[XBUFSIZE];
Tadeusz Struk946cc462015-06-16 10:31:06 -07002240 struct akcipher_request *req;
2241 void *outbuf_enc = NULL;
2242 void *outbuf_dec = NULL;
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002243 struct crypto_wait wait;
Tadeusz Struk946cc462015-06-16 10:31:06 -07002244 unsigned int out_len_max, out_len = 0;
2245 int err = -ENOMEM;
Tadeusz Struk22287b02015-10-08 09:26:55 -07002246 struct scatterlist src, dst, src_tab[2];
Tadeusz Struk946cc462015-06-16 10:31:06 -07002247
Herbert Xudf27b262016-05-05 16:42:49 +08002248 if (testmgr_alloc_buf(xbuf))
2249 return err;
2250
Tadeusz Struk946cc462015-06-16 10:31:06 -07002251 req = akcipher_request_alloc(tfm, GFP_KERNEL);
2252 if (!req)
Herbert Xudf27b262016-05-05 16:42:49 +08002253 goto free_xbuf;
Tadeusz Struk946cc462015-06-16 10:31:06 -07002254
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002255 crypto_init_wait(&wait);
Tadeusz Struk22287b02015-10-08 09:26:55 -07002256
2257 if (vecs->public_key_vec)
2258 err = crypto_akcipher_set_pub_key(tfm, vecs->key,
2259 vecs->key_len);
2260 else
2261 err = crypto_akcipher_set_priv_key(tfm, vecs->key,
2262 vecs->key_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002263 if (err)
2264 goto free_req;
2265
Salvatore Benedetto57763f52016-07-04 10:52:34 +01002266 err = -ENOMEM;
Tadeusz Struk22287b02015-10-08 09:26:55 -07002267 out_len_max = crypto_akcipher_maxsize(tfm);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002268 outbuf_enc = kzalloc(out_len_max, GFP_KERNEL);
2269 if (!outbuf_enc)
2270 goto free_req;
2271
Herbert Xudf27b262016-05-05 16:42:49 +08002272 if (WARN_ON(vecs->m_size > PAGE_SIZE))
2273 goto free_all;
2274
2275 memcpy(xbuf[0], vecs->m, vecs->m_size);
2276
Tadeusz Struk22287b02015-10-08 09:26:55 -07002277 sg_init_table(src_tab, 2);
Herbert Xudf27b262016-05-05 16:42:49 +08002278 sg_set_buf(&src_tab[0], xbuf[0], 8);
2279 sg_set_buf(&src_tab[1], xbuf[0] + 8, vecs->m_size - 8);
Tadeusz Struk22287b02015-10-08 09:26:55 -07002280 sg_init_one(&dst, outbuf_enc, out_len_max);
2281 akcipher_request_set_crypt(req, src_tab, &dst, vecs->m_size,
2282 out_len_max);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002283 akcipher_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG,
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002284 crypto_req_done, &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002285
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002286 err = crypto_wait_req(vecs->siggen_sigver_test ?
2287 /* Run asymmetric signature generation */
2288 crypto_akcipher_sign(req) :
2289 /* Run asymmetric encrypt */
2290 crypto_akcipher_encrypt(req), &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002291 if (err) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002292 pr_err("alg: akcipher: encrypt test failed. err %d\n", err);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002293 goto free_all;
2294 }
Tadeusz Struk22287b02015-10-08 09:26:55 -07002295 if (req->dst_len != vecs->c_size) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002296 pr_err("alg: akcipher: encrypt test failed. Invalid output len\n");
Tadeusz Struk946cc462015-06-16 10:31:06 -07002297 err = -EINVAL;
2298 goto free_all;
2299 }
2300 /* verify that encrypted message is equal to expected */
Herbert Xudf27b262016-05-05 16:42:49 +08002301 if (memcmp(vecs->c, outbuf_enc, vecs->c_size)) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002302 pr_err("alg: akcipher: encrypt test failed. Invalid output\n");
2303 hexdump(outbuf_enc, vecs->c_size);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002304 err = -EINVAL;
2305 goto free_all;
2306 }
2307 /* Don't invoke decrypt for vectors with public key */
2308 if (vecs->public_key_vec) {
2309 err = 0;
2310 goto free_all;
2311 }
2312 outbuf_dec = kzalloc(out_len_max, GFP_KERNEL);
2313 if (!outbuf_dec) {
2314 err = -ENOMEM;
2315 goto free_all;
2316 }
Herbert Xudf27b262016-05-05 16:42:49 +08002317
2318 if (WARN_ON(vecs->c_size > PAGE_SIZE))
2319 goto free_all;
2320
2321 memcpy(xbuf[0], vecs->c, vecs->c_size);
2322
2323 sg_init_one(&src, xbuf[0], vecs->c_size);
Tadeusz Struk22287b02015-10-08 09:26:55 -07002324 sg_init_one(&dst, outbuf_dec, out_len_max);
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002325 crypto_init_wait(&wait);
Tadeusz Struk22287b02015-10-08 09:26:55 -07002326 akcipher_request_set_crypt(req, &src, &dst, vecs->c_size, out_len_max);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002327
Gilad Ben-Yossef7f397132017-10-18 08:00:43 +01002328 err = crypto_wait_req(vecs->siggen_sigver_test ?
2329 /* Run asymmetric signature verification */
2330 crypto_akcipher_verify(req) :
2331 /* Run asymmetric decrypt */
2332 crypto_akcipher_decrypt(req), &wait);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002333 if (err) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002334 pr_err("alg: akcipher: decrypt test failed. err %d\n", err);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002335 goto free_all;
2336 }
2337 out_len = req->dst_len;
Herbert Xu50d2b6432016-06-29 19:32:20 +08002338 if (out_len < vecs->m_size) {
2339 pr_err("alg: akcipher: decrypt test failed. "
2340 "Invalid output len %u\n", out_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002341 err = -EINVAL;
2342 goto free_all;
2343 }
2344 /* verify that decrypted message is equal to the original msg */
Herbert Xu50d2b6432016-06-29 19:32:20 +08002345 if (memchr_inv(outbuf_dec, 0, out_len - vecs->m_size) ||
2346 memcmp(vecs->m, outbuf_dec + out_len - vecs->m_size,
2347 vecs->m_size)) {
2348 pr_err("alg: akcipher: decrypt test failed. Invalid output\n");
2349 hexdump(outbuf_dec, out_len);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002350 err = -EINVAL;
2351 }
2352free_all:
2353 kfree(outbuf_dec);
2354 kfree(outbuf_enc);
2355free_req:
2356 akcipher_request_free(req);
Herbert Xudf27b262016-05-05 16:42:49 +08002357free_xbuf:
2358 testmgr_free_buf(xbuf);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002359 return err;
2360}
2361
Herbert Xu50d2b6432016-06-29 19:32:20 +08002362static int test_akcipher(struct crypto_akcipher *tfm, const char *alg,
Eric Biggersb13b1e02017-02-24 15:46:59 -08002363 const struct akcipher_testvec *vecs,
2364 unsigned int tcount)
Tadeusz Struk946cc462015-06-16 10:31:06 -07002365{
Herbert Xu15226e42016-07-18 18:20:10 +08002366 const char *algo =
2367 crypto_tfm_alg_driver_name(crypto_akcipher_tfm(tfm));
Tadeusz Struk946cc462015-06-16 10:31:06 -07002368 int ret, i;
2369
2370 for (i = 0; i < tcount; i++) {
Herbert Xu50d2b6432016-06-29 19:32:20 +08002371 ret = test_akcipher_one(tfm, vecs++);
2372 if (!ret)
2373 continue;
2374
Herbert Xu15226e42016-07-18 18:20:10 +08002375 pr_err("alg: akcipher: test %d failed for %s, err=%d\n",
2376 i + 1, algo, ret);
Herbert Xu50d2b6432016-06-29 19:32:20 +08002377 return ret;
Tadeusz Struk946cc462015-06-16 10:31:06 -07002378 }
2379 return 0;
2380}
2381
Tadeusz Struk946cc462015-06-16 10:31:06 -07002382static int alg_test_akcipher(const struct alg_test_desc *desc,
2383 const char *driver, u32 type, u32 mask)
2384{
2385 struct crypto_akcipher *tfm;
2386 int err = 0;
2387
Herbert Xueed93e02016-11-22 20:08:31 +08002388 tfm = crypto_alloc_akcipher(driver, type, mask);
Tadeusz Struk946cc462015-06-16 10:31:06 -07002389 if (IS_ERR(tfm)) {
2390 pr_err("alg: akcipher: Failed to load tfm for %s: %ld\n",
2391 driver, PTR_ERR(tfm));
2392 return PTR_ERR(tfm);
2393 }
2394 if (desc->suite.akcipher.vecs)
2395 err = test_akcipher(tfm, desc->alg, desc->suite.akcipher.vecs,
2396 desc->suite.akcipher.count);
2397
2398 crypto_free_akcipher(tfm);
2399 return err;
2400}
2401
Youquan, Song863b5572009-12-23 19:45:20 +08002402static int alg_test_null(const struct alg_test_desc *desc,
2403 const char *driver, u32 type, u32 mask)
2404{
2405 return 0;
2406}
2407
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002408#define __VECS(tv) { .vecs = tv, .count = ARRAY_SIZE(tv) }
2409
Herbert Xuda7f0332008-07-31 17:08:25 +08002410/* Please keep this list sorted by algorithm name. */
2411static const struct alg_test_desc alg_test_descs[] = {
2412 {
Ondrej Mosnacekb87dc202018-05-11 14:12:50 +02002413 .alg = "aegis128",
2414 .test = alg_test_aead,
2415 .suite = {
2416 .aead = {
2417 .enc = __VECS(aegis128_enc_tv_template),
2418 .dec = __VECS(aegis128_dec_tv_template),
2419 }
2420 }
2421 }, {
2422 .alg = "aegis128l",
2423 .test = alg_test_aead,
2424 .suite = {
2425 .aead = {
2426 .enc = __VECS(aegis128l_enc_tv_template),
2427 .dec = __VECS(aegis128l_dec_tv_template),
2428 }
2429 }
2430 }, {
2431 .alg = "aegis256",
2432 .test = alg_test_aead,
2433 .suite = {
2434 .aead = {
2435 .enc = __VECS(aegis256_enc_tv_template),
2436 .dec = __VECS(aegis256_dec_tv_template),
2437 }
2438 }
2439 }, {
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08002440 .alg = "ansi_cprng",
2441 .test = alg_test_cprng,
2442 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002443 .cprng = __VECS(ansi_cprng_aes_tv_template)
Jarod Wilsone08ca2d2009-05-04 19:46:29 +08002444 }
2445 }, {
Horia Geantabca4feb2014-03-14 17:46:51 +02002446 .alg = "authenc(hmac(md5),ecb(cipher_null))",
2447 .test = alg_test_aead,
Horia Geantabca4feb2014-03-14 17:46:51 +02002448 .suite = {
2449 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002450 .enc = __VECS(hmac_md5_ecb_cipher_null_enc_tv_template),
2451 .dec = __VECS(hmac_md5_ecb_cipher_null_dec_tv_template)
Horia Geantabca4feb2014-03-14 17:46:51 +02002452 }
2453 }
2454 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002455 .alg = "authenc(hmac(sha1),cbc(aes))",
Horia Geantae46e9a42012-07-03 19:16:54 +03002456 .test = alg_test_aead,
Herbert Xubcf741c2017-06-28 19:09:07 +08002457 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03002458 .suite = {
2459 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002460 .enc = __VECS(hmac_sha1_aes_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302461 }
2462 }
2463 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002464 .alg = "authenc(hmac(sha1),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302465 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302466 .suite = {
2467 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002468 .enc = __VECS(hmac_sha1_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302469 }
2470 }
2471 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002472 .alg = "authenc(hmac(sha1),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302473 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002474 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302475 .suite = {
2476 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002477 .enc = __VECS(hmac_sha1_des3_ede_cbc_enc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03002478 }
2479 }
2480 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002481 .alg = "authenc(hmac(sha1),ctr(aes))",
2482 .test = alg_test_null,
2483 .fips_allowed = 1,
2484 }, {
Horia Geantabca4feb2014-03-14 17:46:51 +02002485 .alg = "authenc(hmac(sha1),ecb(cipher_null))",
2486 .test = alg_test_aead,
Horia Geantabca4feb2014-03-14 17:46:51 +02002487 .suite = {
2488 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002489 .enc = __VECS(hmac_sha1_ecb_cipher_null_enc_tv_temp),
2490 .dec = __VECS(hmac_sha1_ecb_cipher_null_dec_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302491 }
2492 }
2493 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002494 .alg = "authenc(hmac(sha1),rfc3686(ctr(aes)))",
2495 .test = alg_test_null,
2496 .fips_allowed = 1,
2497 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002498 .alg = "authenc(hmac(sha224),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302499 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302500 .suite = {
2501 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002502 .enc = __VECS(hmac_sha224_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302503 }
2504 }
2505 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002506 .alg = "authenc(hmac(sha224),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302507 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002508 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302509 .suite = {
2510 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002511 .enc = __VECS(hmac_sha224_des3_ede_cbc_enc_tv_temp)
Horia Geantabca4feb2014-03-14 17:46:51 +02002512 }
2513 }
2514 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002515 .alg = "authenc(hmac(sha256),cbc(aes))",
Horia Geantae46e9a42012-07-03 19:16:54 +03002516 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002517 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03002518 .suite = {
2519 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002520 .enc = __VECS(hmac_sha256_aes_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302521 }
2522 }
2523 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002524 .alg = "authenc(hmac(sha256),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302525 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302526 .suite = {
2527 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002528 .enc = __VECS(hmac_sha256_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302529 }
2530 }
2531 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002532 .alg = "authenc(hmac(sha256),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302533 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002534 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302535 .suite = {
2536 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002537 .enc = __VECS(hmac_sha256_des3_ede_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302538 }
2539 }
2540 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002541 .alg = "authenc(hmac(sha256),ctr(aes))",
2542 .test = alg_test_null,
2543 .fips_allowed = 1,
2544 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002545 .alg = "authenc(hmac(sha256),rfc3686(ctr(aes)))",
2546 .test = alg_test_null,
2547 .fips_allowed = 1,
2548 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002549 .alg = "authenc(hmac(sha384),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302550 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302551 .suite = {
2552 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002553 .enc = __VECS(hmac_sha384_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302554 }
2555 }
2556 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002557 .alg = "authenc(hmac(sha384),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302558 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002559 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302560 .suite = {
2561 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002562 .enc = __VECS(hmac_sha384_des3_ede_cbc_enc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03002563 }
2564 }
2565 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002566 .alg = "authenc(hmac(sha384),ctr(aes))",
2567 .test = alg_test_null,
2568 .fips_allowed = 1,
2569 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002570 .alg = "authenc(hmac(sha384),rfc3686(ctr(aes)))",
2571 .test = alg_test_null,
2572 .fips_allowed = 1,
2573 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002574 .alg = "authenc(hmac(sha512),cbc(aes))",
Marcus Meissnered1afac2016-02-05 14:23:33 +01002575 .fips_allowed = 1,
Horia Geantae46e9a42012-07-03 19:16:54 +03002576 .test = alg_test_aead,
Horia Geantae46e9a42012-07-03 19:16:54 +03002577 .suite = {
2578 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002579 .enc = __VECS(hmac_sha512_aes_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302580 }
2581 }
2582 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002583 .alg = "authenc(hmac(sha512),cbc(des))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302584 .test = alg_test_aead,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302585 .suite = {
2586 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002587 .enc = __VECS(hmac_sha512_des_cbc_enc_tv_temp)
Nitesh Lal5208ed22014-05-21 17:09:08 +05302588 }
2589 }
2590 }, {
Herbert Xua4198fd2015-07-30 17:53:23 +08002591 .alg = "authenc(hmac(sha512),cbc(des3_ede))",
Nitesh Lal5208ed22014-05-21 17:09:08 +05302592 .test = alg_test_aead,
Marcus Meissnered1afac2016-02-05 14:23:33 +01002593 .fips_allowed = 1,
Nitesh Lal5208ed22014-05-21 17:09:08 +05302594 .suite = {
2595 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002596 .enc = __VECS(hmac_sha512_des3_ede_cbc_enc_tv_temp)
Horia Geantae46e9a42012-07-03 19:16:54 +03002597 }
2598 }
2599 }, {
Marcus Meissnerfb16abc2016-02-06 11:53:07 +01002600 .alg = "authenc(hmac(sha512),ctr(aes))",
2601 .test = alg_test_null,
2602 .fips_allowed = 1,
2603 }, {
Marcus Meissner88886902016-02-19 13:34:28 +01002604 .alg = "authenc(hmac(sha512),rfc3686(ctr(aes)))",
2605 .test = alg_test_null,
2606 .fips_allowed = 1,
2607 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002608 .alg = "cbc(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002609 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002610 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002611 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002612 .cipher = __VECS(aes_cbc_tv_template)
2613 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002614 }, {
2615 .alg = "cbc(anubis)",
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(anubis_cbc_tv_template)
2619 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002620 }, {
2621 .alg = "cbc(blowfish)",
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(bf_cbc_tv_template)
2625 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002626 }, {
2627 .alg = "cbc(camellia)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002628 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002629 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002630 .cipher = __VECS(camellia_cbc_tv_template)
2631 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002632 }, {
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002633 .alg = "cbc(cast5)",
2634 .test = alg_test_skcipher,
2635 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002636 .cipher = __VECS(cast5_cbc_tv_template)
2637 },
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002638 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002639 .alg = "cbc(cast6)",
2640 .test = alg_test_skcipher,
2641 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002642 .cipher = __VECS(cast6_cbc_tv_template)
2643 },
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002644 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002645 .alg = "cbc(des)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002646 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002647 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002648 .cipher = __VECS(des_cbc_tv_template)
2649 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002650 }, {
2651 .alg = "cbc(des3_ede)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002652 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002653 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002654 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002655 .cipher = __VECS(des3_ede_cbc_tv_template)
2656 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002657 }, {
Gilad Ben-Yossefa794d8d2018-04-23 08:25:14 +01002658 /* Same as cbc(aes) except the key is stored in
2659 * hardware secure memory which we reference by index
2660 */
2661 .alg = "cbc(paes)",
2662 .test = alg_test_null,
2663 .fips_allowed = 1,
2664 }, {
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002665 .alg = "cbc(serpent)",
2666 .test = alg_test_skcipher,
2667 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002668 .cipher = __VECS(serpent_cbc_tv_template)
2669 },
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002670 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002671 .alg = "cbc(twofish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002672 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002673 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002674 .cipher = __VECS(tf_cbc_tv_template)
2675 },
Herbert Xuda7f0332008-07-31 17:08:25 +08002676 }, {
Ard Biesheuvel092acf02017-02-03 14:49:35 +00002677 .alg = "cbcmac(aes)",
2678 .fips_allowed = 1,
2679 .test = alg_test_hash,
2680 .suite = {
2681 .hash = __VECS(aes_cbcmac_tv_template)
2682 }
2683 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002684 .alg = "ccm(aes)",
2685 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002686 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002687 .suite = {
2688 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002689 .enc = __VECS(aes_ccm_enc_tv_template),
2690 .dec = __VECS(aes_ccm_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002691 }
2692 }
2693 }, {
Dmitry Eremin-Solenikovd8e4b242018-10-20 02:01:53 +03002694 .alg = "cfb(aes)",
2695 .test = alg_test_skcipher,
2696 .fips_allowed = 1,
2697 .suite = {
2698 .cipher = __VECS(aes_cfb_tv_template)
2699 },
2700 }, {
Martin Willi3590ebf2015-06-01 13:43:57 +02002701 .alg = "chacha20",
2702 .test = alg_test_skcipher,
2703 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002704 .cipher = __VECS(chacha20_tv_template)
2705 },
Martin Willi3590ebf2015-06-01 13:43:57 +02002706 }, {
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002707 .alg = "cmac(aes)",
Stephan Mueller8f183752015-08-19 08:42:07 +02002708 .fips_allowed = 1,
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002709 .test = alg_test_hash,
2710 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002711 .hash = __VECS(aes_cmac128_tv_template)
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002712 }
2713 }, {
2714 .alg = "cmac(des3_ede)",
Stephan Mueller8f183752015-08-19 08:42:07 +02002715 .fips_allowed = 1,
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002716 .test = alg_test_hash,
2717 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002718 .hash = __VECS(des3_ede_cmac64_tv_template)
Jussi Kivilinna93b5e862013-04-08 10:48:44 +03002719 }
2720 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03002721 .alg = "compress_null",
2722 .test = alg_test_null,
2723 }, {
Ard Biesheuvelebb34722015-05-04 11:00:17 +02002724 .alg = "crc32",
2725 .test = alg_test_hash,
2726 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002727 .hash = __VECS(crc32_tv_template)
Ard Biesheuvelebb34722015-05-04 11:00:17 +02002728 }
2729 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002730 .alg = "crc32c",
Herbert Xu8e3ee852008-11-07 14:58:52 +08002731 .test = alg_test_crc32c,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002732 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002733 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002734 .hash = __VECS(crc32c_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002735 }
2736 }, {
Herbert Xu684115212013-09-07 12:56:26 +10002737 .alg = "crct10dif",
2738 .test = alg_test_hash,
2739 .fips_allowed = 1,
2740 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002741 .hash = __VECS(crct10dif_tv_template)
Herbert Xu684115212013-09-07 12:56:26 +10002742 }
2743 }, {
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08002744 .alg = "ctr(aes)",
2745 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002746 .fips_allowed = 1,
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08002747 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002748 .cipher = __VECS(aes_ctr_tv_template)
Jarod Wilsonf7cb80f2009-05-06 17:29:17 +08002749 }
2750 }, {
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03002751 .alg = "ctr(blowfish)",
2752 .test = alg_test_skcipher,
2753 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002754 .cipher = __VECS(bf_ctr_tv_template)
Jussi Kivilinna85b63e32011-10-10 23:03:03 +03002755 }
2756 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02002757 .alg = "ctr(camellia)",
2758 .test = alg_test_skcipher,
2759 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002760 .cipher = __VECS(camellia_ctr_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02002761 }
2762 }, {
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002763 .alg = "ctr(cast5)",
2764 .test = alg_test_skcipher,
2765 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002766 .cipher = __VECS(cast5_ctr_tv_template)
Johannes Goetzfrieda2c58262012-07-11 19:37:21 +02002767 }
2768 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002769 .alg = "ctr(cast6)",
2770 .test = alg_test_skcipher,
2771 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002772 .cipher = __VECS(cast6_ctr_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02002773 }
2774 }, {
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03002775 .alg = "ctr(des)",
2776 .test = alg_test_skcipher,
2777 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002778 .cipher = __VECS(des_ctr_tv_template)
Jussi Kivilinna8163fc32012-10-20 14:53:07 +03002779 }
2780 }, {
Jussi Kivilinnae080b172012-10-20 14:53:12 +03002781 .alg = "ctr(des3_ede)",
2782 .test = alg_test_skcipher,
Marcelo Cerri0d8da102017-03-20 17:28:05 -03002783 .fips_allowed = 1,
Jussi Kivilinnae080b172012-10-20 14:53:12 +03002784 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002785 .cipher = __VECS(des3_ede_ctr_tv_template)
Jussi Kivilinnae080b172012-10-20 14:53:12 +03002786 }
2787 }, {
Gilad Ben-Yossefa794d8d2018-04-23 08:25:14 +01002788 /* Same as ctr(aes) except the key is stored in
2789 * hardware secure memory which we reference by index
2790 */
2791 .alg = "ctr(paes)",
2792 .test = alg_test_null,
2793 .fips_allowed = 1,
2794 }, {
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002795 .alg = "ctr(serpent)",
2796 .test = alg_test_skcipher,
2797 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002798 .cipher = __VECS(serpent_ctr_tv_template)
Jussi Kivilinna9d259172011-10-18 00:02:53 +03002799 }
2800 }, {
Jussi Kivilinna573da622011-10-10 23:03:12 +03002801 .alg = "ctr(twofish)",
2802 .test = alg_test_skcipher,
2803 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002804 .cipher = __VECS(tf_ctr_tv_template)
Jussi Kivilinna573da622011-10-10 23:03:12 +03002805 }
2806 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002807 .alg = "cts(cbc(aes))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002808 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002809 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002810 .cipher = __VECS(cts_mode_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002811 }
2812 }, {
2813 .alg = "deflate",
2814 .test = alg_test_comp,
Milan Broz08189042012-12-06 17:16:28 +08002815 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002816 .suite = {
2817 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002818 .comp = __VECS(deflate_comp_tv_template),
2819 .decomp = __VECS(deflate_decomp_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002820 }
2821 }
2822 }, {
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002823 .alg = "dh",
2824 .test = alg_test_kpp,
2825 .fips_allowed = 1,
2826 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002827 .kpp = __VECS(dh_tv_template)
Salvatore Benedetto802c7f12016-06-22 17:49:14 +01002828 }
2829 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03002830 .alg = "digest_null",
2831 .test = alg_test_null,
2832 }, {
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002833 .alg = "drbg_nopr_ctr_aes128",
2834 .test = alg_test_drbg,
2835 .fips_allowed = 1,
2836 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002837 .drbg = __VECS(drbg_nopr_ctr_aes128_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002838 }
2839 }, {
2840 .alg = "drbg_nopr_ctr_aes192",
2841 .test = alg_test_drbg,
2842 .fips_allowed = 1,
2843 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002844 .drbg = __VECS(drbg_nopr_ctr_aes192_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002845 }
2846 }, {
2847 .alg = "drbg_nopr_ctr_aes256",
2848 .test = alg_test_drbg,
2849 .fips_allowed = 1,
2850 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002851 .drbg = __VECS(drbg_nopr_ctr_aes256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002852 }
2853 }, {
2854 /*
2855 * There is no need to specifically test the DRBG with every
2856 * backend cipher -- covered by drbg_nopr_hmac_sha256 test
2857 */
2858 .alg = "drbg_nopr_hmac_sha1",
2859 .fips_allowed = 1,
2860 .test = alg_test_null,
2861 }, {
2862 .alg = "drbg_nopr_hmac_sha256",
2863 .test = alg_test_drbg,
2864 .fips_allowed = 1,
2865 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002866 .drbg = __VECS(drbg_nopr_hmac_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002867 }
2868 }, {
2869 /* covered by drbg_nopr_hmac_sha256 test */
2870 .alg = "drbg_nopr_hmac_sha384",
2871 .fips_allowed = 1,
2872 .test = alg_test_null,
2873 }, {
2874 .alg = "drbg_nopr_hmac_sha512",
2875 .test = alg_test_null,
2876 .fips_allowed = 1,
2877 }, {
2878 .alg = "drbg_nopr_sha1",
2879 .fips_allowed = 1,
2880 .test = alg_test_null,
2881 }, {
2882 .alg = "drbg_nopr_sha256",
2883 .test = alg_test_drbg,
2884 .fips_allowed = 1,
2885 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002886 .drbg = __VECS(drbg_nopr_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002887 }
2888 }, {
2889 /* covered by drbg_nopr_sha256 test */
2890 .alg = "drbg_nopr_sha384",
2891 .fips_allowed = 1,
2892 .test = alg_test_null,
2893 }, {
2894 .alg = "drbg_nopr_sha512",
2895 .fips_allowed = 1,
2896 .test = alg_test_null,
2897 }, {
2898 .alg = "drbg_pr_ctr_aes128",
2899 .test = alg_test_drbg,
2900 .fips_allowed = 1,
2901 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002902 .drbg = __VECS(drbg_pr_ctr_aes128_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002903 }
2904 }, {
2905 /* covered by drbg_pr_ctr_aes128 test */
2906 .alg = "drbg_pr_ctr_aes192",
2907 .fips_allowed = 1,
2908 .test = alg_test_null,
2909 }, {
2910 .alg = "drbg_pr_ctr_aes256",
2911 .fips_allowed = 1,
2912 .test = alg_test_null,
2913 }, {
2914 .alg = "drbg_pr_hmac_sha1",
2915 .fips_allowed = 1,
2916 .test = alg_test_null,
2917 }, {
2918 .alg = "drbg_pr_hmac_sha256",
2919 .test = alg_test_drbg,
2920 .fips_allowed = 1,
2921 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002922 .drbg = __VECS(drbg_pr_hmac_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002923 }
2924 }, {
2925 /* covered by drbg_pr_hmac_sha256 test */
2926 .alg = "drbg_pr_hmac_sha384",
2927 .fips_allowed = 1,
2928 .test = alg_test_null,
2929 }, {
2930 .alg = "drbg_pr_hmac_sha512",
2931 .test = alg_test_null,
2932 .fips_allowed = 1,
2933 }, {
2934 .alg = "drbg_pr_sha1",
2935 .fips_allowed = 1,
2936 .test = alg_test_null,
2937 }, {
2938 .alg = "drbg_pr_sha256",
2939 .test = alg_test_drbg,
2940 .fips_allowed = 1,
2941 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00002942 .drbg = __VECS(drbg_pr_sha256_tv_template)
Stephan Mueller64d1cdf2014-05-31 17:25:36 +02002943 }
2944 }, {
2945 /* covered by drbg_pr_sha256 test */
2946 .alg = "drbg_pr_sha384",
2947 .fips_allowed = 1,
2948 .test = alg_test_null,
2949 }, {
2950 .alg = "drbg_pr_sha512",
2951 .fips_allowed = 1,
2952 .test = alg_test_null,
2953 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08002954 .alg = "ecb(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002955 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10002956 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08002957 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002958 .cipher = __VECS(aes_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002959 }
2960 }, {
2961 .alg = "ecb(anubis)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002962 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002963 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002964 .cipher = __VECS(anubis_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002965 }
2966 }, {
2967 .alg = "ecb(arc4)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002968 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002969 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002970 .cipher = __VECS(arc4_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002971 }
2972 }, {
2973 .alg = "ecb(blowfish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002974 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002975 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002976 .cipher = __VECS(bf_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002977 }
2978 }, {
2979 .alg = "ecb(camellia)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002980 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002981 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002982 .cipher = __VECS(camellia_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002983 }
2984 }, {
2985 .alg = "ecb(cast5)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002986 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002987 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002988 .cipher = __VECS(cast5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002989 }
2990 }, {
2991 .alg = "ecb(cast6)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10002992 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08002993 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07002994 .cipher = __VECS(cast6_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08002995 }
2996 }, {
Jussi Kivilinnae4483702013-04-07 16:43:56 +03002997 .alg = "ecb(cipher_null)",
2998 .test = alg_test_null,
Milan Broz6175ca22017-04-21 13:03:06 +02002999 .fips_allowed = 1,
Jussi Kivilinnae4483702013-04-07 16:43:56 +03003000 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003001 .alg = "ecb(des)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003002 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003003 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003004 .cipher = __VECS(des_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003005 }
3006 }, {
3007 .alg = "ecb(des3_ede)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003008 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003009 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003010 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003011 .cipher = __VECS(des3_ede_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003012 }
3013 }, {
Jussi Kivilinna66e5bd02013-01-19 13:31:36 +02003014 .alg = "ecb(fcrypt)",
3015 .test = alg_test_skcipher,
3016 .suite = {
3017 .cipher = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003018 .vecs = fcrypt_pcbc_tv_template,
3019 .count = 1
Jussi Kivilinna66e5bd02013-01-19 13:31:36 +02003020 }
3021 }
3022 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003023 .alg = "ecb(khazad)",
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(khazad_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003027 }
3028 }, {
Gilad Ben-Yossef15f47ce2018-05-11 09:04:06 +01003029 /* Same as ecb(aes) except the key is stored in
3030 * hardware secure memory which we reference by index
3031 */
3032 .alg = "ecb(paes)",
3033 .test = alg_test_null,
3034 .fips_allowed = 1,
3035 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003036 .alg = "ecb(seed)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003037 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003038 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003039 .cipher = __VECS(seed_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003040 }
3041 }, {
3042 .alg = "ecb(serpent)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003043 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003044 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003045 .cipher = __VECS(serpent_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003046 }
3047 }, {
Gilad Ben-Yossefcd83a8a2018-03-06 09:44:43 +00003048 .alg = "ecb(sm4)",
3049 .test = alg_test_skcipher,
3050 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003051 .cipher = __VECS(sm4_tv_template)
Gilad Ben-Yossefcd83a8a2018-03-06 09:44:43 +00003052 }
3053 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003054 .alg = "ecb(tea)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003055 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003056 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003057 .cipher = __VECS(tea_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003058 }
3059 }, {
3060 .alg = "ecb(tnepres)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003061 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003062 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003063 .cipher = __VECS(tnepres_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003064 }
3065 }, {
3066 .alg = "ecb(twofish)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003067 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003068 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003069 .cipher = __VECS(tf_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003070 }
3071 }, {
3072 .alg = "ecb(xeta)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003073 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003074 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003075 .cipher = __VECS(xeta_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003076 }
3077 }, {
3078 .alg = "ecb(xtea)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003079 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003080 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003081 .cipher = __VECS(xtea_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003082 }
3083 }, {
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +01003084 .alg = "ecdh",
3085 .test = alg_test_kpp,
3086 .fips_allowed = 1,
3087 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003088 .kpp = __VECS(ecdh_tv_template)
Salvatore Benedetto3c4b2392016-06-22 17:49:15 +01003089 }
3090 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003091 .alg = "gcm(aes)",
3092 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003093 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003094 .suite = {
3095 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003096 .enc = __VECS(aes_gcm_enc_tv_template),
3097 .dec = __VECS(aes_gcm_dec_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003098 }
3099 }
3100 }, {
Youquan, Song507069c2009-11-23 20:23:04 +08003101 .alg = "ghash",
3102 .test = alg_test_hash,
Jarod Wilson18c0ebd2011-01-29 15:14:35 +11003103 .fips_allowed = 1,
Youquan, Song507069c2009-11-23 20:23:04 +08003104 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003105 .hash = __VECS(ghash_tv_template)
Youquan, Song507069c2009-11-23 20:23:04 +08003106 }
3107 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003108 .alg = "hmac(md5)",
3109 .test = alg_test_hash,
3110 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003111 .hash = __VECS(hmac_md5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003112 }
3113 }, {
3114 .alg = "hmac(rmd128)",
3115 .test = alg_test_hash,
3116 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003117 .hash = __VECS(hmac_rmd128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003118 }
3119 }, {
3120 .alg = "hmac(rmd160)",
3121 .test = alg_test_hash,
3122 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003123 .hash = __VECS(hmac_rmd160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003124 }
3125 }, {
3126 .alg = "hmac(sha1)",
3127 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003128 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003129 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003130 .hash = __VECS(hmac_sha1_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003131 }
3132 }, {
3133 .alg = "hmac(sha224)",
3134 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003135 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003136 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003137 .hash = __VECS(hmac_sha224_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003138 }
3139 }, {
3140 .alg = "hmac(sha256)",
3141 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003142 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003143 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003144 .hash = __VECS(hmac_sha256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003145 }
3146 }, {
raveendra padasalagi98eca722016-07-01 11:16:54 +05303147 .alg = "hmac(sha3-224)",
3148 .test = alg_test_hash,
3149 .fips_allowed = 1,
3150 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003151 .hash = __VECS(hmac_sha3_224_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303152 }
3153 }, {
3154 .alg = "hmac(sha3-256)",
3155 .test = alg_test_hash,
3156 .fips_allowed = 1,
3157 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003158 .hash = __VECS(hmac_sha3_256_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303159 }
3160 }, {
3161 .alg = "hmac(sha3-384)",
3162 .test = alg_test_hash,
3163 .fips_allowed = 1,
3164 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003165 .hash = __VECS(hmac_sha3_384_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303166 }
3167 }, {
3168 .alg = "hmac(sha3-512)",
3169 .test = alg_test_hash,
3170 .fips_allowed = 1,
3171 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003172 .hash = __VECS(hmac_sha3_512_tv_template)
raveendra padasalagi98eca722016-07-01 11:16:54 +05303173 }
3174 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003175 .alg = "hmac(sha384)",
3176 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003177 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003178 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003179 .hash = __VECS(hmac_sha384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003180 }
3181 }, {
3182 .alg = "hmac(sha512)",
3183 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003184 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003185 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003186 .hash = __VECS(hmac_sha512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003187 }
3188 }, {
Stephan Muellerbb5530e2015-05-25 15:10:20 +02003189 .alg = "jitterentropy_rng",
3190 .fips_allowed = 1,
3191 .test = alg_test_null,
3192 }, {
Stephan Mueller35351982015-09-21 20:59:56 +02003193 .alg = "kw(aes)",
3194 .test = alg_test_skcipher,
3195 .fips_allowed = 1,
3196 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003197 .cipher = __VECS(aes_kw_tv_template)
Stephan Mueller35351982015-09-21 20:59:56 +02003198 }
3199 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003200 .alg = "lrw(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003201 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003202 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003203 .cipher = __VECS(aes_lrw_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003204 }
3205 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02003206 .alg = "lrw(camellia)",
3207 .test = alg_test_skcipher,
3208 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003209 .cipher = __VECS(camellia_lrw_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02003210 }
3211 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003212 .alg = "lrw(cast6)",
3213 .test = alg_test_skcipher,
3214 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003215 .cipher = __VECS(cast6_lrw_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003216 }
3217 }, {
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03003218 .alg = "lrw(serpent)",
3219 .test = alg_test_skcipher,
3220 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003221 .cipher = __VECS(serpent_lrw_tv_template)
Jussi Kivilinnad7bfc0f2011-10-18 13:32:34 +03003222 }
3223 }, {
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03003224 .alg = "lrw(twofish)",
3225 .test = alg_test_skcipher,
3226 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003227 .cipher = __VECS(tf_lrw_tv_template)
Jussi Kivilinna0b2a1552011-10-18 13:32:50 +03003228 }
3229 }, {
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02003230 .alg = "lz4",
3231 .test = alg_test_comp,
3232 .fips_allowed = 1,
3233 .suite = {
3234 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003235 .comp = __VECS(lz4_comp_tv_template),
3236 .decomp = __VECS(lz4_decomp_tv_template)
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02003237 }
3238 }
3239 }, {
3240 .alg = "lz4hc",
3241 .test = alg_test_comp,
3242 .fips_allowed = 1,
3243 .suite = {
3244 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003245 .comp = __VECS(lz4hc_comp_tv_template),
3246 .decomp = __VECS(lz4hc_decomp_tv_template)
KOVACS Krisztian1443cc92014-08-22 10:44:36 +02003247 }
3248 }
3249 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003250 .alg = "lzo",
3251 .test = alg_test_comp,
Milan Broz08189042012-12-06 17:16:28 +08003252 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003253 .suite = {
3254 .comp = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003255 .comp = __VECS(lzo_comp_tv_template),
3256 .decomp = __VECS(lzo_decomp_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003257 }
3258 }
3259 }, {
3260 .alg = "md4",
3261 .test = alg_test_hash,
3262 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003263 .hash = __VECS(md4_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003264 }
3265 }, {
3266 .alg = "md5",
3267 .test = alg_test_hash,
3268 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003269 .hash = __VECS(md5_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003270 }
3271 }, {
3272 .alg = "michael_mic",
3273 .test = alg_test_hash,
3274 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003275 .hash = __VECS(michael_mic_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003276 }
3277 }, {
Ondrej Mosnacek4feb4c52018-05-11 14:19:10 +02003278 .alg = "morus1280",
3279 .test = alg_test_aead,
3280 .suite = {
3281 .aead = {
3282 .enc = __VECS(morus1280_enc_tv_template),
3283 .dec = __VECS(morus1280_dec_tv_template),
3284 }
3285 }
3286 }, {
3287 .alg = "morus640",
3288 .test = alg_test_aead,
3289 .suite = {
3290 .aead = {
3291 .enc = __VECS(morus640_enc_tv_template),
3292 .dec = __VECS(morus640_dec_tv_template),
3293 }
3294 }
3295 }, {
Puneet Saxenaba0e14a2011-05-04 15:04:10 +10003296 .alg = "ofb(aes)",
3297 .test = alg_test_skcipher,
3298 .fips_allowed = 1,
3299 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003300 .cipher = __VECS(aes_ofb_tv_template)
Puneet Saxenaba0e14a2011-05-04 15:04:10 +10003301 }
3302 }, {
Gilad Ben-Yossefa794d8d2018-04-23 08:25:14 +01003303 /* Same as ofb(aes) except the key is stored in
3304 * hardware secure memory which we reference by index
3305 */
3306 .alg = "ofb(paes)",
3307 .test = alg_test_null,
3308 .fips_allowed = 1,
3309 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003310 .alg = "pcbc(fcrypt)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003311 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003312 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003313 .cipher = __VECS(fcrypt_pcbc_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003314 }
3315 }, {
Stephan Mueller12071072017-06-12 23:27:51 +02003316 .alg = "pkcs1pad(rsa,sha224)",
3317 .test = alg_test_null,
3318 .fips_allowed = 1,
3319 }, {
3320 .alg = "pkcs1pad(rsa,sha256)",
3321 .test = alg_test_akcipher,
3322 .fips_allowed = 1,
3323 .suite = {
3324 .akcipher = __VECS(pkcs1pad_rsa_tv_template)
3325 }
3326 }, {
3327 .alg = "pkcs1pad(rsa,sha384)",
3328 .test = alg_test_null,
3329 .fips_allowed = 1,
3330 }, {
3331 .alg = "pkcs1pad(rsa,sha512)",
3332 .test = alg_test_null,
3333 .fips_allowed = 1,
3334 }, {
Martin Willieee9dc62015-06-01 13:43:59 +02003335 .alg = "poly1305",
3336 .test = alg_test_hash,
3337 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003338 .hash = __VECS(poly1305_tv_template)
Martin Willieee9dc62015-06-01 13:43:59 +02003339 }
3340 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003341 .alg = "rfc3686(ctr(aes))",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003342 .test = alg_test_skcipher,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003343 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003344 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003345 .cipher = __VECS(aes_ctr_rfc3686_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003346 }
3347 }, {
Herbert Xu3f31a742015-07-09 07:17:34 +08003348 .alg = "rfc4106(gcm(aes))",
Adrian Hoban69435b92010-11-04 15:02:04 -04003349 .test = alg_test_aead,
Jarod Wilsondb71f292015-01-23 12:42:15 -05003350 .fips_allowed = 1,
Adrian Hoban69435b92010-11-04 15:02:04 -04003351 .suite = {
3352 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003353 .enc = __VECS(aes_gcm_rfc4106_enc_tv_template),
3354 .dec = __VECS(aes_gcm_rfc4106_dec_tv_template)
Adrian Hoban69435b92010-11-04 15:02:04 -04003355 }
3356 }
3357 }, {
Herbert Xu544c4362015-07-14 16:53:22 +08003358 .alg = "rfc4309(ccm(aes))",
Jarod Wilson5d667322009-05-04 19:23:40 +08003359 .test = alg_test_aead,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003360 .fips_allowed = 1,
Jarod Wilson5d667322009-05-04 19:23:40 +08003361 .suite = {
3362 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003363 .enc = __VECS(aes_ccm_rfc4309_enc_tv_template),
3364 .dec = __VECS(aes_ccm_rfc4309_dec_tv_template)
Jarod Wilson5d667322009-05-04 19:23:40 +08003365 }
3366 }
3367 }, {
Herbert Xubb687452015-06-16 13:54:24 +08003368 .alg = "rfc4543(gcm(aes))",
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03003369 .test = alg_test_aead,
3370 .suite = {
3371 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003372 .enc = __VECS(aes_gcm_rfc4543_enc_tv_template),
3373 .dec = __VECS(aes_gcm_rfc4543_dec_tv_template),
Jussi Kivilinnae9b74412013-04-07 16:43:51 +03003374 }
3375 }
3376 }, {
Martin Williaf2b76b2015-06-01 13:44:01 +02003377 .alg = "rfc7539(chacha20,poly1305)",
3378 .test = alg_test_aead,
3379 .suite = {
3380 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003381 .enc = __VECS(rfc7539_enc_tv_template),
3382 .dec = __VECS(rfc7539_dec_tv_template),
Martin Williaf2b76b2015-06-01 13:44:01 +02003383 }
3384 }
3385 }, {
Martin Willi59007582015-06-01 13:44:03 +02003386 .alg = "rfc7539esp(chacha20,poly1305)",
3387 .test = alg_test_aead,
3388 .suite = {
3389 .aead = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003390 .enc = __VECS(rfc7539esp_enc_tv_template),
3391 .dec = __VECS(rfc7539esp_dec_tv_template),
Martin Willi59007582015-06-01 13:44:03 +02003392 }
3393 }
3394 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003395 .alg = "rmd128",
3396 .test = alg_test_hash,
3397 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003398 .hash = __VECS(rmd128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003399 }
3400 }, {
3401 .alg = "rmd160",
3402 .test = alg_test_hash,
3403 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003404 .hash = __VECS(rmd160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003405 }
3406 }, {
3407 .alg = "rmd256",
3408 .test = alg_test_hash,
3409 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003410 .hash = __VECS(rmd256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003411 }
3412 }, {
3413 .alg = "rmd320",
3414 .test = alg_test_hash,
3415 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003416 .hash = __VECS(rmd320_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003417 }
3418 }, {
Tadeusz Struk946cc462015-06-16 10:31:06 -07003419 .alg = "rsa",
3420 .test = alg_test_akcipher,
3421 .fips_allowed = 1,
3422 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003423 .akcipher = __VECS(rsa_tv_template)
Tadeusz Struk946cc462015-06-16 10:31:06 -07003424 }
3425 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003426 .alg = "salsa20",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003427 .test = alg_test_skcipher,
Herbert Xuda7f0332008-07-31 17:08:25 +08003428 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003429 .cipher = __VECS(salsa20_stream_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003430 }
3431 }, {
3432 .alg = "sha1",
3433 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003434 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003435 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003436 .hash = __VECS(sha1_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003437 }
3438 }, {
3439 .alg = "sha224",
3440 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003441 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003442 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003443 .hash = __VECS(sha224_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003444 }
3445 }, {
3446 .alg = "sha256",
3447 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003448 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003449 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003450 .hash = __VECS(sha256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003451 }
3452 }, {
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303453 .alg = "sha3-224",
3454 .test = alg_test_hash,
3455 .fips_allowed = 1,
3456 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003457 .hash = __VECS(sha3_224_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303458 }
3459 }, {
3460 .alg = "sha3-256",
3461 .test = alg_test_hash,
3462 .fips_allowed = 1,
3463 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003464 .hash = __VECS(sha3_256_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303465 }
3466 }, {
3467 .alg = "sha3-384",
3468 .test = alg_test_hash,
3469 .fips_allowed = 1,
3470 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003471 .hash = __VECS(sha3_384_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303472 }
3473 }, {
3474 .alg = "sha3-512",
3475 .test = alg_test_hash,
3476 .fips_allowed = 1,
3477 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003478 .hash = __VECS(sha3_512_tv_template)
raveendra padasalagi79cc6ab2016-06-17 10:30:36 +05303479 }
3480 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003481 .alg = "sha384",
3482 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003483 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003484 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003485 .hash = __VECS(sha384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003486 }
3487 }, {
3488 .alg = "sha512",
3489 .test = alg_test_hash,
Jarod Wilsona1915d52009-05-15 15:16:03 +10003490 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003491 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003492 .hash = __VECS(sha512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003493 }
3494 }, {
Gilad Ben-Yossefb7e27532017-08-21 13:51:29 +03003495 .alg = "sm3",
3496 .test = alg_test_hash,
3497 .suite = {
3498 .hash = __VECS(sm3_tv_template)
3499 }
3500 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003501 .alg = "tgr128",
3502 .test = alg_test_hash,
3503 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003504 .hash = __VECS(tgr128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003505 }
3506 }, {
3507 .alg = "tgr160",
3508 .test = alg_test_hash,
3509 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003510 .hash = __VECS(tgr160_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003511 }
3512 }, {
3513 .alg = "tgr192",
3514 .test = alg_test_hash,
3515 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003516 .hash = __VECS(tgr192_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003517 }
3518 }, {
Eric Biggersed331ad2018-06-18 10:22:39 -07003519 .alg = "vmac64(aes)",
3520 .test = alg_test_hash,
3521 .suite = {
3522 .hash = __VECS(vmac64_aes_tv_template)
3523 }
3524 }, {
Herbert Xuda7f0332008-07-31 17:08:25 +08003525 .alg = "wp256",
3526 .test = alg_test_hash,
3527 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003528 .hash = __VECS(wp256_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003529 }
3530 }, {
3531 .alg = "wp384",
3532 .test = alg_test_hash,
3533 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003534 .hash = __VECS(wp384_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003535 }
3536 }, {
3537 .alg = "wp512",
3538 .test = alg_test_hash,
3539 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003540 .hash = __VECS(wp512_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003541 }
3542 }, {
3543 .alg = "xcbc(aes)",
3544 .test = alg_test_hash,
3545 .suite = {
Ard Biesheuvel21c8e722017-01-12 13:40:39 +00003546 .hash = __VECS(aes_xcbc128_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003547 }
3548 }, {
3549 .alg = "xts(aes)",
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003550 .test = alg_test_skcipher,
Jarod Wilson2918aa82011-01-29 15:14:01 +11003551 .fips_allowed = 1,
Herbert Xuda7f0332008-07-31 17:08:25 +08003552 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003553 .cipher = __VECS(aes_xts_tv_template)
Herbert Xuda7f0332008-07-31 17:08:25 +08003554 }
Geert Uytterhoeven0c01aed2009-03-04 15:42:15 +08003555 }, {
Jussi Kivilinna08406052012-03-05 20:26:21 +02003556 .alg = "xts(camellia)",
3557 .test = alg_test_skcipher,
3558 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003559 .cipher = __VECS(camellia_xts_tv_template)
Jussi Kivilinna08406052012-03-05 20:26:21 +02003560 }
3561 }, {
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003562 .alg = "xts(cast6)",
3563 .test = alg_test_skcipher,
3564 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003565 .cipher = __VECS(cast6_xts_tv_template)
Johannes Goetzfried9b8b0402012-07-11 19:38:29 +02003566 }
3567 }, {
Gilad Ben-Yossef15f47ce2018-05-11 09:04:06 +01003568 /* Same as xts(aes) except the key is stored in
3569 * hardware secure memory which we reference by index
3570 */
3571 .alg = "xts(paes)",
3572 .test = alg_test_null,
3573 .fips_allowed = 1,
3574 }, {
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03003575 .alg = "xts(serpent)",
3576 .test = alg_test_skcipher,
3577 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003578 .cipher = __VECS(serpent_xts_tv_template)
Jussi Kivilinna18be20b92011-10-18 13:33:17 +03003579 }
3580 }, {
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03003581 .alg = "xts(twofish)",
3582 .test = alg_test_skcipher,
3583 .suite = {
Eric Biggers92a4c9f2018-05-20 22:50:29 -07003584 .cipher = __VECS(tf_xts_tv_template)
Jussi Kivilinnaaed265b2011-10-18 13:33:33 +03003585 }
Giovanni Cabiddua368f432017-04-21 21:54:30 +01003586 }, {
Gilad Ben-Yossef15f47ce2018-05-11 09:04:06 +01003587 .alg = "xts4096(paes)",
3588 .test = alg_test_null,
3589 .fips_allowed = 1,
3590 }, {
3591 .alg = "xts512(paes)",
3592 .test = alg_test_null,
3593 .fips_allowed = 1,
3594 }, {
Giovanni Cabiddua368f432017-04-21 21:54:30 +01003595 .alg = "zlib-deflate",
3596 .test = alg_test_comp,
3597 .fips_allowed = 1,
3598 .suite = {
3599 .comp = {
3600 .comp = __VECS(zlib_deflate_comp_tv_template),
3601 .decomp = __VECS(zlib_deflate_decomp_tv_template)
3602 }
3603 }
Nick Terrelld28fc3d2018-03-30 12:14:53 -07003604 }, {
3605 .alg = "zstd",
3606 .test = alg_test_comp,
3607 .fips_allowed = 1,
3608 .suite = {
3609 .comp = {
3610 .comp = __VECS(zstd_comp_tv_template),
3611 .decomp = __VECS(zstd_decomp_tv_template)
3612 }
3613 }
Herbert Xuda7f0332008-07-31 17:08:25 +08003614 }
3615};
3616
Jussi Kivilinna57147582013-06-13 17:37:40 +03003617static bool alg_test_descs_checked;
3618
3619static void alg_test_descs_check_order(void)
3620{
3621 int i;
3622
3623 /* only check once */
3624 if (alg_test_descs_checked)
3625 return;
3626
3627 alg_test_descs_checked = true;
3628
3629 for (i = 1; i < ARRAY_SIZE(alg_test_descs); i++) {
3630 int diff = strcmp(alg_test_descs[i - 1].alg,
3631 alg_test_descs[i].alg);
3632
3633 if (WARN_ON(diff > 0)) {
3634 pr_warn("testmgr: alg_test_descs entries in wrong order: '%s' before '%s'\n",
3635 alg_test_descs[i - 1].alg,
3636 alg_test_descs[i].alg);
3637 }
3638
3639 if (WARN_ON(diff == 0)) {
3640 pr_warn("testmgr: duplicate alg_test_descs entry: '%s'\n",
3641 alg_test_descs[i].alg);
3642 }
3643 }
3644}
3645
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003646static int alg_find_test(const char *alg)
Herbert Xuda7f0332008-07-31 17:08:25 +08003647{
3648 int start = 0;
3649 int end = ARRAY_SIZE(alg_test_descs);
3650
3651 while (start < end) {
3652 int i = (start + end) / 2;
3653 int diff = strcmp(alg_test_descs[i].alg, alg);
3654
3655 if (diff > 0) {
3656 end = i;
3657 continue;
3658 }
3659
3660 if (diff < 0) {
3661 start = i + 1;
3662 continue;
3663 }
3664
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003665 return i;
Herbert Xuda7f0332008-07-31 17:08:25 +08003666 }
3667
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003668 return -1;
3669}
3670
3671int alg_test(const char *driver, const char *alg, u32 type, u32 mask)
3672{
3673 int i;
Herbert Xua68f6612009-07-02 16:32:12 +08003674 int j;
Neil Hormand12d6b62008-10-12 20:36:51 +08003675 int rc;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003676
Richard W.M. Jones9e5c9fe2016-05-03 10:00:17 +01003677 if (!fips_enabled && notests) {
3678 printk_once(KERN_INFO "alg: self-tests disabled\n");
3679 return 0;
3680 }
3681
Jussi Kivilinna57147582013-06-13 17:37:40 +03003682 alg_test_descs_check_order();
3683
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003684 if ((type & CRYPTO_ALG_TYPE_MASK) == CRYPTO_ALG_TYPE_CIPHER) {
3685 char nalg[CRYPTO_MAX_ALG_NAME];
3686
3687 if (snprintf(nalg, sizeof(nalg), "ecb(%s)", alg) >=
3688 sizeof(nalg))
3689 return -ENAMETOOLONG;
3690
3691 i = alg_find_test(nalg);
3692 if (i < 0)
3693 goto notest;
3694
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10003695 if (fips_enabled && !alg_test_descs[i].fips_allowed)
3696 goto non_fips_alg;
3697
Jarod Wilson941fb322009-05-04 19:49:23 +08003698 rc = alg_test_cipher(alg_test_descs + i, driver, type, mask);
3699 goto test_done;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003700 }
3701
3702 i = alg_find_test(alg);
Herbert Xua68f6612009-07-02 16:32:12 +08003703 j = alg_find_test(driver);
3704 if (i < 0 && j < 0)
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003705 goto notest;
3706
Herbert Xua68f6612009-07-02 16:32:12 +08003707 if (fips_enabled && ((i >= 0 && !alg_test_descs[i].fips_allowed) ||
3708 (j >= 0 && !alg_test_descs[j].fips_allowed)))
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10003709 goto non_fips_alg;
3710
Herbert Xua68f6612009-07-02 16:32:12 +08003711 rc = 0;
3712 if (i >= 0)
3713 rc |= alg_test_descs[i].test(alg_test_descs + i, driver,
3714 type, mask);
Cristian Stoica032c8ca2013-07-18 18:57:07 +03003715 if (j >= 0 && j != i)
Herbert Xua68f6612009-07-02 16:32:12 +08003716 rc |= alg_test_descs[j].test(alg_test_descs + j, driver,
3717 type, mask);
3718
Jarod Wilson941fb322009-05-04 19:49:23 +08003719test_done:
Neil Hormand12d6b62008-10-12 20:36:51 +08003720 if (fips_enabled && rc)
3721 panic("%s: %s alg self test failed in fips mode!\n", driver, alg);
3722
Jarod Wilson29ecd4a2009-05-04 19:51:17 +08003723 if (fips_enabled && !rc)
Masanari Iida3e8cffd2014-10-07 00:37:54 +09003724 pr_info("alg: self-tests for %s (%s) passed\n", driver, alg);
Jarod Wilson29ecd4a2009-05-04 19:51:17 +08003725
Neil Hormand12d6b62008-10-12 20:36:51 +08003726 return rc;
Herbert Xu1aa4ecd2008-08-17 17:01:56 +10003727
3728notest:
Herbert Xuda7f0332008-07-31 17:08:25 +08003729 printk(KERN_INFO "alg: No test for %s (%s)\n", alg, driver);
3730 return 0;
Jarod Wilsona3bef3a2009-05-15 15:17:05 +10003731non_fips_alg:
3732 return -EINVAL;
Herbert Xuda7f0332008-07-31 17:08:25 +08003733}
Alexander Shishkin0b767f92010-06-03 20:53:43 +10003734
Herbert Xu326a6342010-08-06 09:40:28 +08003735#endif /* CONFIG_CRYPTO_MANAGER_DISABLE_TESTS */
Alexander Shishkin0b767f92010-06-03 20:53:43 +10003736
Herbert Xuda7f0332008-07-31 17:08:25 +08003737EXPORT_SYMBOL_GPL(alg_test);