blob: db19284f2e2be225959f4311cd96039c1ba9ccce [file] [log] [blame]
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +01001/*
2 * RSA padding templates.
3 *
4 * Copyright (c) 2015 Intel Corporation
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
9 * any later version.
10 */
11
12#include <crypto/algapi.h>
13#include <crypto/akcipher.h>
14#include <crypto/internal/akcipher.h>
15#include <linux/err.h>
16#include <linux/init.h>
17#include <linux/kernel.h>
18#include <linux/module.h>
19#include <linux/random.h>
20
Tadeusz Struka49de372016-03-03 21:49:26 +000021/*
22 * Hash algorithm OIDs plus ASN.1 DER wrappings [RFC4880 sec 5.2.2].
23 */
24static const u8 rsa_digest_info_md5[] = {
25 0x30, 0x20, 0x30, 0x0c, 0x06, 0x08,
26 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x02, 0x05, /* OID */
27 0x05, 0x00, 0x04, 0x10
28};
29
30static const u8 rsa_digest_info_sha1[] = {
31 0x30, 0x21, 0x30, 0x09, 0x06, 0x05,
32 0x2b, 0x0e, 0x03, 0x02, 0x1a,
33 0x05, 0x00, 0x04, 0x14
34};
35
36static const u8 rsa_digest_info_rmd160[] = {
37 0x30, 0x21, 0x30, 0x09, 0x06, 0x05,
38 0x2b, 0x24, 0x03, 0x02, 0x01,
39 0x05, 0x00, 0x04, 0x14
40};
41
42static const u8 rsa_digest_info_sha224[] = {
43 0x30, 0x2d, 0x30, 0x0d, 0x06, 0x09,
44 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x04,
45 0x05, 0x00, 0x04, 0x1c
46};
47
48static const u8 rsa_digest_info_sha256[] = {
49 0x30, 0x31, 0x30, 0x0d, 0x06, 0x09,
50 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x01,
51 0x05, 0x00, 0x04, 0x20
52};
53
54static const u8 rsa_digest_info_sha384[] = {
55 0x30, 0x41, 0x30, 0x0d, 0x06, 0x09,
56 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x02,
57 0x05, 0x00, 0x04, 0x30
58};
59
60static const u8 rsa_digest_info_sha512[] = {
61 0x30, 0x51, 0x30, 0x0d, 0x06, 0x09,
62 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x03,
63 0x05, 0x00, 0x04, 0x40
64};
65
66static const struct rsa_asn1_template {
67 const char *name;
68 const u8 *data;
69 size_t size;
70} rsa_asn1_templates[] = {
71#define _(X) { #X, rsa_digest_info_##X, sizeof(rsa_digest_info_##X) }
72 _(md5),
73 _(sha1),
74 _(rmd160),
75 _(sha256),
76 _(sha384),
77 _(sha512),
78 _(sha224),
79 { NULL }
80#undef _
81};
82
83static const struct rsa_asn1_template *rsa_lookup_asn1(const char *name)
84{
85 const struct rsa_asn1_template *p;
86
87 for (p = rsa_asn1_templates; p->name; p++)
88 if (strcmp(name, p->name) == 0)
89 return p;
90 return NULL;
91}
92
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +010093struct pkcs1pad_ctx {
94 struct crypto_akcipher *child;
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +010095 unsigned int key_size;
96};
97
Tadeusz Struka49de372016-03-03 21:49:26 +000098struct pkcs1pad_inst_ctx {
99 struct crypto_akcipher_spawn spawn;
Herbert Xuc0d20d22016-06-29 19:32:23 +0800100 const struct rsa_asn1_template *digest_info;
Tadeusz Struka49de372016-03-03 21:49:26 +0000101};
102
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100103struct pkcs1pad_request {
104 struct akcipher_request child_req;
105
Herbert Xu0f2c8312016-06-29 19:32:24 +0800106 struct scatterlist in_sg[2], out_sg[1];
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100107 uint8_t *in_buf, *out_buf;
108};
109
110static int pkcs1pad_set_pub_key(struct crypto_akcipher *tfm, const void *key,
111 unsigned int keylen)
112{
113 struct pkcs1pad_ctx *ctx = akcipher_tfm_ctx(tfm);
114 int err, size;
115
116 err = crypto_akcipher_set_pub_key(ctx->child, key, keylen);
117
118 if (!err) {
119 /* Find out new modulus size from rsa implementation */
120 size = crypto_akcipher_maxsize(ctx->child);
121
122 ctx->key_size = size > 0 ? size : 0;
123 if (size <= 0)
124 err = size;
125 }
126
127 return err;
128}
129
130static int pkcs1pad_set_priv_key(struct crypto_akcipher *tfm, const void *key,
131 unsigned int keylen)
132{
133 struct pkcs1pad_ctx *ctx = akcipher_tfm_ctx(tfm);
134 int err, size;
135
136 err = crypto_akcipher_set_priv_key(ctx->child, key, keylen);
137
138 if (!err) {
139 /* Find out new modulus size from rsa implementation */
140 size = crypto_akcipher_maxsize(ctx->child);
141
142 ctx->key_size = size > 0 ? size : 0;
143 if (size <= 0)
144 err = size;
145 }
146
147 return err;
148}
149
150static int pkcs1pad_get_max_size(struct crypto_akcipher *tfm)
151{
152 struct pkcs1pad_ctx *ctx = akcipher_tfm_ctx(tfm);
153
154 /*
155 * The maximum destination buffer size for the encrypt/sign operations
156 * will be the same as for RSA, even though it's smaller for
157 * decrypt/verify.
158 */
159
160 return ctx->key_size ?: -EINVAL;
161}
162
163static void pkcs1pad_sg_set_buf(struct scatterlist *sg, void *buf, size_t len,
164 struct scatterlist *next)
165{
Herbert Xu0f2c8312016-06-29 19:32:24 +0800166 int nsegs = next ? 2 : 1;
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100167
Herbert Xu0f2c8312016-06-29 19:32:24 +0800168 sg_init_table(sg, nsegs);
169 sg_set_buf(sg, buf, len);
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100170
171 if (next)
172 sg_chain(sg, nsegs, next);
173}
174
175static int pkcs1pad_encrypt_sign_complete(struct akcipher_request *req, int err)
176{
177 struct crypto_akcipher *tfm = crypto_akcipher_reqtfm(req);
178 struct pkcs1pad_ctx *ctx = akcipher_tfm_ctx(tfm);
179 struct pkcs1pad_request *req_ctx = akcipher_request_ctx(req);
Andrzej Zaborowski53192162015-12-12 00:03:51 -0500180 size_t pad_len = ctx->key_size - req_ctx->child_req.dst_len;
181 size_t chunk_len, pad_left;
182 struct sg_mapping_iter miter;
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100183
184 if (!err) {
Andrzej Zaborowski53192162015-12-12 00:03:51 -0500185 if (pad_len) {
186 sg_miter_start(&miter, req->dst,
187 sg_nents_for_len(req->dst, pad_len),
188 SG_MITER_ATOMIC | SG_MITER_TO_SG);
189
190 pad_left = pad_len;
191 while (pad_left) {
192 sg_miter_next(&miter);
193
194 chunk_len = min(miter.length, pad_left);
195 memset(miter.addr, 0, chunk_len);
196 pad_left -= chunk_len;
197 }
198
199 sg_miter_stop(&miter);
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100200 }
201
202 sg_pcopy_from_buffer(req->dst,
203 sg_nents_for_len(req->dst, ctx->key_size),
204 req_ctx->out_buf, req_ctx->child_req.dst_len,
Andrzej Zaborowski53192162015-12-12 00:03:51 -0500205 pad_len);
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100206 }
207 req->dst_len = ctx->key_size;
208
209 kfree(req_ctx->in_buf);
210 kzfree(req_ctx->out_buf);
211
212 return err;
213}
214
215static void pkcs1pad_encrypt_sign_complete_cb(
216 struct crypto_async_request *child_async_req, int err)
217{
218 struct akcipher_request *req = child_async_req->data;
219 struct crypto_async_request async_req;
220
221 if (err == -EINPROGRESS)
222 return;
223
224 async_req.data = req->base.data;
225 async_req.tfm = crypto_akcipher_tfm(crypto_akcipher_reqtfm(req));
226 async_req.flags = child_async_req->flags;
227 req->base.complete(&async_req,
228 pkcs1pad_encrypt_sign_complete(req, err));
229}
230
231static int pkcs1pad_encrypt(struct akcipher_request *req)
232{
233 struct crypto_akcipher *tfm = crypto_akcipher_reqtfm(req);
234 struct pkcs1pad_ctx *ctx = akcipher_tfm_ctx(tfm);
235 struct pkcs1pad_request *req_ctx = akcipher_request_ctx(req);
236 int err;
237 unsigned int i, ps_end;
238
239 if (!ctx->key_size)
240 return -EINVAL;
241
242 if (req->src_len > ctx->key_size - 11)
243 return -EOVERFLOW;
244
245 if (req->dst_len < ctx->key_size) {
246 req->dst_len = ctx->key_size;
247 return -EOVERFLOW;
248 }
249
250 if (ctx->key_size > PAGE_SIZE)
251 return -ENOTSUPP;
252
253 /*
254 * Replace both input and output to add the padding in the input and
255 * the potential missing leading zeros in the output.
256 */
257 req_ctx->child_req.src = req_ctx->in_sg;
258 req_ctx->child_req.src_len = ctx->key_size - 1;
259 req_ctx->child_req.dst = req_ctx->out_sg;
260 req_ctx->child_req.dst_len = ctx->key_size;
261
262 req_ctx->in_buf = kmalloc(ctx->key_size - 1 - req->src_len,
Herbert Xu3a32ce52016-06-29 19:32:26 +0800263 GFP_KERNEL);
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100264 if (!req_ctx->in_buf)
265 return -ENOMEM;
266
267 ps_end = ctx->key_size - req->src_len - 2;
268 req_ctx->in_buf[0] = 0x02;
269 for (i = 1; i < ps_end; i++)
270 req_ctx->in_buf[i] = 1 + prandom_u32_max(255);
271 req_ctx->in_buf[ps_end] = 0x00;
272
273 pkcs1pad_sg_set_buf(req_ctx->in_sg, req_ctx->in_buf,
274 ctx->key_size - 1 - req->src_len, req->src);
275
Herbert Xu3a32ce52016-06-29 19:32:26 +0800276 req_ctx->out_buf = kmalloc(ctx->key_size, GFP_KERNEL);
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100277 if (!req_ctx->out_buf) {
278 kfree(req_ctx->in_buf);
279 return -ENOMEM;
280 }
281
282 pkcs1pad_sg_set_buf(req_ctx->out_sg, req_ctx->out_buf,
283 ctx->key_size, NULL);
284
285 akcipher_request_set_tfm(&req_ctx->child_req, ctx->child);
286 akcipher_request_set_callback(&req_ctx->child_req, req->base.flags,
287 pkcs1pad_encrypt_sign_complete_cb, req);
288
289 err = crypto_akcipher_encrypt(&req_ctx->child_req);
290 if (err != -EINPROGRESS &&
291 (err != -EBUSY ||
292 !(req->base.flags & CRYPTO_TFM_REQ_MAY_BACKLOG)))
293 return pkcs1pad_encrypt_sign_complete(req, err);
294
295 return err;
296}
297
298static int pkcs1pad_decrypt_complete(struct akcipher_request *req, int err)
299{
300 struct crypto_akcipher *tfm = crypto_akcipher_reqtfm(req);
301 struct pkcs1pad_ctx *ctx = akcipher_tfm_ctx(tfm);
302 struct pkcs1pad_request *req_ctx = akcipher_request_ctx(req);
303 unsigned int pos;
304
305 if (err == -EOVERFLOW)
306 /* Decrypted value had no leading 0 byte */
307 err = -EINVAL;
308
309 if (err)
310 goto done;
311
312 if (req_ctx->child_req.dst_len != ctx->key_size - 1) {
313 err = -EINVAL;
314 goto done;
315 }
316
317 if (req_ctx->out_buf[0] != 0x02) {
318 err = -EINVAL;
319 goto done;
320 }
321 for (pos = 1; pos < req_ctx->child_req.dst_len; pos++)
322 if (req_ctx->out_buf[pos] == 0x00)
323 break;
324 if (pos < 9 || pos == req_ctx->child_req.dst_len) {
325 err = -EINVAL;
326 goto done;
327 }
328 pos++;
329
330 if (req->dst_len < req_ctx->child_req.dst_len - pos)
331 err = -EOVERFLOW;
332 req->dst_len = req_ctx->child_req.dst_len - pos;
333
334 if (!err)
335 sg_copy_from_buffer(req->dst,
336 sg_nents_for_len(req->dst, req->dst_len),
337 req_ctx->out_buf + pos, req->dst_len);
338
339done:
340 kzfree(req_ctx->out_buf);
341
342 return err;
343}
344
345static void pkcs1pad_decrypt_complete_cb(
346 struct crypto_async_request *child_async_req, int err)
347{
348 struct akcipher_request *req = child_async_req->data;
349 struct crypto_async_request async_req;
350
351 if (err == -EINPROGRESS)
352 return;
353
354 async_req.data = req->base.data;
355 async_req.tfm = crypto_akcipher_tfm(crypto_akcipher_reqtfm(req));
356 async_req.flags = child_async_req->flags;
357 req->base.complete(&async_req, pkcs1pad_decrypt_complete(req, err));
358}
359
360static int pkcs1pad_decrypt(struct akcipher_request *req)
361{
362 struct crypto_akcipher *tfm = crypto_akcipher_reqtfm(req);
363 struct pkcs1pad_ctx *ctx = akcipher_tfm_ctx(tfm);
364 struct pkcs1pad_request *req_ctx = akcipher_request_ctx(req);
365 int err;
366
367 if (!ctx->key_size || req->src_len != ctx->key_size)
368 return -EINVAL;
369
370 if (ctx->key_size > PAGE_SIZE)
371 return -ENOTSUPP;
372
373 /* Reuse input buffer, output to a new buffer */
374 req_ctx->child_req.src = req->src;
375 req_ctx->child_req.src_len = req->src_len;
376 req_ctx->child_req.dst = req_ctx->out_sg;
Tadeusz Struk6f0904a2016-04-06 14:42:32 -0700377 req_ctx->child_req.dst_len = ctx->key_size ;
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100378
Herbert Xu3a32ce52016-06-29 19:32:26 +0800379 req_ctx->out_buf = kmalloc(ctx->key_size, GFP_KERNEL);
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100380 if (!req_ctx->out_buf)
381 return -ENOMEM;
382
383 pkcs1pad_sg_set_buf(req_ctx->out_sg, req_ctx->out_buf,
Tadeusz Struk6f0904a2016-04-06 14:42:32 -0700384 ctx->key_size, NULL);
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100385
386 akcipher_request_set_tfm(&req_ctx->child_req, ctx->child);
387 akcipher_request_set_callback(&req_ctx->child_req, req->base.flags,
388 pkcs1pad_decrypt_complete_cb, req);
389
390 err = crypto_akcipher_decrypt(&req_ctx->child_req);
391 if (err != -EINPROGRESS &&
392 (err != -EBUSY ||
393 !(req->base.flags & CRYPTO_TFM_REQ_MAY_BACKLOG)))
394 return pkcs1pad_decrypt_complete(req, err);
395
396 return err;
397}
398
399static int pkcs1pad_sign(struct akcipher_request *req)
400{
401 struct crypto_akcipher *tfm = crypto_akcipher_reqtfm(req);
402 struct pkcs1pad_ctx *ctx = akcipher_tfm_ctx(tfm);
403 struct pkcs1pad_request *req_ctx = akcipher_request_ctx(req);
Herbert Xuc0d20d22016-06-29 19:32:23 +0800404 struct akcipher_instance *inst = akcipher_alg_instance(tfm);
405 struct pkcs1pad_inst_ctx *ictx = akcipher_instance_ctx(inst);
406 const struct rsa_asn1_template *digest_info = ictx->digest_info;
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100407 int err;
Tadeusz Struka49de372016-03-03 21:49:26 +0000408 unsigned int ps_end, digest_size = 0;
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100409
410 if (!ctx->key_size)
411 return -EINVAL;
412
Herbert Xuc0d20d22016-06-29 19:32:23 +0800413 digest_size = digest_info->size;
Tadeusz Struka49de372016-03-03 21:49:26 +0000414
415 if (req->src_len + digest_size > ctx->key_size - 11)
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100416 return -EOVERFLOW;
417
418 if (req->dst_len < ctx->key_size) {
419 req->dst_len = ctx->key_size;
420 return -EOVERFLOW;
421 }
422
423 if (ctx->key_size > PAGE_SIZE)
424 return -ENOTSUPP;
425
426 /*
427 * Replace both input and output to add the padding in the input and
428 * the potential missing leading zeros in the output.
429 */
430 req_ctx->child_req.src = req_ctx->in_sg;
431 req_ctx->child_req.src_len = ctx->key_size - 1;
432 req_ctx->child_req.dst = req_ctx->out_sg;
433 req_ctx->child_req.dst_len = ctx->key_size;
434
435 req_ctx->in_buf = kmalloc(ctx->key_size - 1 - req->src_len,
Herbert Xu3a32ce52016-06-29 19:32:26 +0800436 GFP_KERNEL);
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100437 if (!req_ctx->in_buf)
438 return -ENOMEM;
439
Tadeusz Struka49de372016-03-03 21:49:26 +0000440 ps_end = ctx->key_size - digest_size - req->src_len - 2;
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100441 req_ctx->in_buf[0] = 0x01;
442 memset(req_ctx->in_buf + 1, 0xff, ps_end - 1);
443 req_ctx->in_buf[ps_end] = 0x00;
444
Herbert Xuc0d20d22016-06-29 19:32:23 +0800445 memcpy(req_ctx->in_buf + ps_end + 1, digest_info->data,
446 digest_info->size);
Tadeusz Struka49de372016-03-03 21:49:26 +0000447
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100448 pkcs1pad_sg_set_buf(req_ctx->in_sg, req_ctx->in_buf,
449 ctx->key_size - 1 - req->src_len, req->src);
450
Herbert Xu3a32ce52016-06-29 19:32:26 +0800451 req_ctx->out_buf = kmalloc(ctx->key_size, GFP_KERNEL);
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100452 if (!req_ctx->out_buf) {
453 kfree(req_ctx->in_buf);
454 return -ENOMEM;
455 }
456
457 pkcs1pad_sg_set_buf(req_ctx->out_sg, req_ctx->out_buf,
458 ctx->key_size, NULL);
459
460 akcipher_request_set_tfm(&req_ctx->child_req, ctx->child);
461 akcipher_request_set_callback(&req_ctx->child_req, req->base.flags,
462 pkcs1pad_encrypt_sign_complete_cb, req);
463
464 err = crypto_akcipher_sign(&req_ctx->child_req);
465 if (err != -EINPROGRESS &&
466 (err != -EBUSY ||
467 !(req->base.flags & CRYPTO_TFM_REQ_MAY_BACKLOG)))
468 return pkcs1pad_encrypt_sign_complete(req, err);
469
470 return err;
471}
472
473static int pkcs1pad_verify_complete(struct akcipher_request *req, int err)
474{
475 struct crypto_akcipher *tfm = crypto_akcipher_reqtfm(req);
476 struct pkcs1pad_ctx *ctx = akcipher_tfm_ctx(tfm);
477 struct pkcs1pad_request *req_ctx = akcipher_request_ctx(req);
Herbert Xuc0d20d22016-06-29 19:32:23 +0800478 struct akcipher_instance *inst = akcipher_alg_instance(tfm);
479 struct pkcs1pad_inst_ctx *ictx = akcipher_instance_ctx(inst);
480 const struct rsa_asn1_template *digest_info = ictx->digest_info;
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100481 unsigned int pos;
482
483 if (err == -EOVERFLOW)
484 /* Decrypted value had no leading 0 byte */
485 err = -EINVAL;
486
487 if (err)
488 goto done;
489
490 if (req_ctx->child_req.dst_len != ctx->key_size - 1) {
491 err = -EINVAL;
492 goto done;
493 }
494
Tadeusz Struka49de372016-03-03 21:49:26 +0000495 err = -EBADMSG;
496 if (req_ctx->out_buf[0] != 0x01)
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100497 goto done;
Tadeusz Struka49de372016-03-03 21:49:26 +0000498
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100499 for (pos = 1; pos < req_ctx->child_req.dst_len; pos++)
500 if (req_ctx->out_buf[pos] != 0xff)
501 break;
Tadeusz Struka49de372016-03-03 21:49:26 +0000502
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100503 if (pos < 9 || pos == req_ctx->child_req.dst_len ||
Tadeusz Struka49de372016-03-03 21:49:26 +0000504 req_ctx->out_buf[pos] != 0x00)
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100505 goto done;
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100506 pos++;
507
Herbert Xuc0d20d22016-06-29 19:32:23 +0800508 if (memcmp(req_ctx->out_buf + pos, digest_info->data,
509 digest_info->size))
510 goto done;
Tadeusz Struka49de372016-03-03 21:49:26 +0000511
Herbert Xuc0d20d22016-06-29 19:32:23 +0800512 pos += digest_info->size;
Tadeusz Struka49de372016-03-03 21:49:26 +0000513
514 err = 0;
515
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100516 if (req->dst_len < req_ctx->child_req.dst_len - pos)
517 err = -EOVERFLOW;
518 req->dst_len = req_ctx->child_req.dst_len - pos;
519
520 if (!err)
521 sg_copy_from_buffer(req->dst,
522 sg_nents_for_len(req->dst, req->dst_len),
523 req_ctx->out_buf + pos, req->dst_len);
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100524done:
525 kzfree(req_ctx->out_buf);
526
527 return err;
528}
529
530static void pkcs1pad_verify_complete_cb(
531 struct crypto_async_request *child_async_req, int err)
532{
533 struct akcipher_request *req = child_async_req->data;
534 struct crypto_async_request async_req;
535
536 if (err == -EINPROGRESS)
537 return;
538
539 async_req.data = req->base.data;
540 async_req.tfm = crypto_akcipher_tfm(crypto_akcipher_reqtfm(req));
541 async_req.flags = child_async_req->flags;
542 req->base.complete(&async_req, pkcs1pad_verify_complete(req, err));
543}
544
545/*
546 * The verify operation is here for completeness similar to the verification
547 * defined in RFC2313 section 10.2 except that block type 0 is not accepted,
548 * as in RFC2437. RFC2437 section 9.2 doesn't define any operation to
549 * retrieve the DigestInfo from a signature, instead the user is expected
550 * to call the sign operation to generate the expected signature and compare
551 * signatures instead of the message-digests.
552 */
553static int pkcs1pad_verify(struct akcipher_request *req)
554{
555 struct crypto_akcipher *tfm = crypto_akcipher_reqtfm(req);
556 struct pkcs1pad_ctx *ctx = akcipher_tfm_ctx(tfm);
557 struct pkcs1pad_request *req_ctx = akcipher_request_ctx(req);
558 int err;
559
Tadeusz Struka49de372016-03-03 21:49:26 +0000560 if (!ctx->key_size || req->src_len < ctx->key_size)
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100561 return -EINVAL;
562
563 if (ctx->key_size > PAGE_SIZE)
564 return -ENOTSUPP;
565
566 /* Reuse input buffer, output to a new buffer */
567 req_ctx->child_req.src = req->src;
568 req_ctx->child_req.src_len = req->src_len;
569 req_ctx->child_req.dst = req_ctx->out_sg;
Tadeusz Struk6f0904a2016-04-06 14:42:32 -0700570 req_ctx->child_req.dst_len = ctx->key_size;
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100571
Herbert Xu3a32ce52016-06-29 19:32:26 +0800572 req_ctx->out_buf = kmalloc(ctx->key_size, GFP_KERNEL);
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100573 if (!req_ctx->out_buf)
574 return -ENOMEM;
575
576 pkcs1pad_sg_set_buf(req_ctx->out_sg, req_ctx->out_buf,
Tadeusz Struk6f0904a2016-04-06 14:42:32 -0700577 ctx->key_size, NULL);
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100578
579 akcipher_request_set_tfm(&req_ctx->child_req, ctx->child);
580 akcipher_request_set_callback(&req_ctx->child_req, req->base.flags,
581 pkcs1pad_verify_complete_cb, req);
582
583 err = crypto_akcipher_verify(&req_ctx->child_req);
584 if (err != -EINPROGRESS &&
585 (err != -EBUSY ||
586 !(req->base.flags & CRYPTO_TFM_REQ_MAY_BACKLOG)))
587 return pkcs1pad_verify_complete(req, err);
588
589 return err;
590}
591
592static int pkcs1pad_init_tfm(struct crypto_akcipher *tfm)
593{
594 struct akcipher_instance *inst = akcipher_alg_instance(tfm);
Tadeusz Struka49de372016-03-03 21:49:26 +0000595 struct pkcs1pad_inst_ctx *ictx = akcipher_instance_ctx(inst);
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100596 struct pkcs1pad_ctx *ctx = akcipher_tfm_ctx(tfm);
597 struct crypto_akcipher *child_tfm;
598
Herbert Xuc0d20d22016-06-29 19:32:23 +0800599 child_tfm = crypto_spawn_akcipher(&ictx->spawn);
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100600 if (IS_ERR(child_tfm))
601 return PTR_ERR(child_tfm);
602
603 ctx->child = child_tfm;
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100604 return 0;
605}
606
607static void pkcs1pad_exit_tfm(struct crypto_akcipher *tfm)
608{
609 struct pkcs1pad_ctx *ctx = akcipher_tfm_ctx(tfm);
610
611 crypto_free_akcipher(ctx->child);
612}
613
614static void pkcs1pad_free(struct akcipher_instance *inst)
615{
Tadeusz Struka49de372016-03-03 21:49:26 +0000616 struct pkcs1pad_inst_ctx *ctx = akcipher_instance_ctx(inst);
617 struct crypto_akcipher_spawn *spawn = &ctx->spawn;
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100618
619 crypto_drop_akcipher(spawn);
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100620 kfree(inst);
621}
622
623static int pkcs1pad_create(struct crypto_template *tmpl, struct rtattr **tb)
624{
Herbert Xuc0d20d22016-06-29 19:32:23 +0800625 const struct rsa_asn1_template *digest_info;
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100626 struct crypto_attr_type *algt;
627 struct akcipher_instance *inst;
Tadeusz Struka49de372016-03-03 21:49:26 +0000628 struct pkcs1pad_inst_ctx *ctx;
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100629 struct crypto_akcipher_spawn *spawn;
630 struct akcipher_alg *rsa_alg;
631 const char *rsa_alg_name;
Tadeusz Struka49de372016-03-03 21:49:26 +0000632 const char *hash_name;
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100633 int err;
634
635 algt = crypto_get_attr_type(tb);
636 if (IS_ERR(algt))
637 return PTR_ERR(algt);
638
639 if ((algt->type ^ CRYPTO_ALG_TYPE_AKCIPHER) & algt->mask)
640 return -EINVAL;
641
642 rsa_alg_name = crypto_attr_alg_name(tb[1]);
643 if (IS_ERR(rsa_alg_name))
644 return PTR_ERR(rsa_alg_name);
645
Tadeusz Struka49de372016-03-03 21:49:26 +0000646 hash_name = crypto_attr_alg_name(tb[2]);
647 if (IS_ERR(hash_name))
Herbert Xuc0d20d22016-06-29 19:32:23 +0800648 return PTR_ERR(hash_name);
649
650 digest_info = rsa_lookup_asn1(hash_name);
651 if (!digest_info)
652 return -EINVAL;
Tadeusz Struka49de372016-03-03 21:49:26 +0000653
654 inst = kzalloc(sizeof(*inst) + sizeof(*ctx), GFP_KERNEL);
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100655 if (!inst)
656 return -ENOMEM;
657
Tadeusz Struka49de372016-03-03 21:49:26 +0000658 ctx = akcipher_instance_ctx(inst);
659 spawn = &ctx->spawn;
Herbert Xuc0d20d22016-06-29 19:32:23 +0800660 ctx->digest_info = digest_info;
Tadeusz Struka49de372016-03-03 21:49:26 +0000661
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100662 crypto_set_spawn(&spawn->base, akcipher_crypto_instance(inst));
663 err = crypto_grab_akcipher(spawn, rsa_alg_name, 0,
664 crypto_requires_sync(algt->type, algt->mask));
665 if (err)
666 goto out_free_inst;
667
668 rsa_alg = crypto_spawn_akcipher_alg(spawn);
669
670 err = -ENAMETOOLONG;
Tadeusz Struka49de372016-03-03 21:49:26 +0000671
Herbert Xuc0d20d22016-06-29 19:32:23 +0800672 if (snprintf(inst->alg.base.cra_name, CRYPTO_MAX_ALG_NAME,
673 "pkcs1pad(%s,%s)", rsa_alg->base.cra_name, hash_name) >=
674 CRYPTO_MAX_ALG_NAME ||
675 snprintf(inst->alg.base.cra_driver_name, CRYPTO_MAX_ALG_NAME,
676 "pkcs1pad(%s,%s)",
677 rsa_alg->base.cra_driver_name, hash_name) >=
678 CRYPTO_MAX_ALG_NAME)
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100679 goto out_drop_alg;
680
681 inst->alg.base.cra_flags = rsa_alg->base.cra_flags & CRYPTO_ALG_ASYNC;
682 inst->alg.base.cra_priority = rsa_alg->base.cra_priority;
683 inst->alg.base.cra_ctxsize = sizeof(struct pkcs1pad_ctx);
684
685 inst->alg.init = pkcs1pad_init_tfm;
686 inst->alg.exit = pkcs1pad_exit_tfm;
687
688 inst->alg.encrypt = pkcs1pad_encrypt;
689 inst->alg.decrypt = pkcs1pad_decrypt;
690 inst->alg.sign = pkcs1pad_sign;
691 inst->alg.verify = pkcs1pad_verify;
692 inst->alg.set_pub_key = pkcs1pad_set_pub_key;
693 inst->alg.set_priv_key = pkcs1pad_set_priv_key;
694 inst->alg.max_size = pkcs1pad_get_max_size;
695 inst->alg.reqsize = sizeof(struct pkcs1pad_request) + rsa_alg->reqsize;
696
697 inst->free = pkcs1pad_free;
698
699 err = akcipher_register_instance(tmpl, inst);
700 if (err)
Herbert Xuc0d20d22016-06-29 19:32:23 +0800701 goto out_drop_alg;
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100702
703 return 0;
704
Andrzej Zaborowski3d5b1ec2015-12-05 17:09:34 +0100705out_drop_alg:
706 crypto_drop_akcipher(spawn);
707out_free_inst:
708 kfree(inst);
709 return err;
710}
711
712struct crypto_template rsa_pkcs1pad_tmpl = {
713 .name = "pkcs1pad",
714 .create = pkcs1pad_create,
715 .module = THIS_MODULE,
716};