Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 1 | /* |
| 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 Struk | a49de37 | 2016-03-03 21:49:26 +0000 | [diff] [blame] | 21 | /* |
| 22 | * Hash algorithm OIDs plus ASN.1 DER wrappings [RFC4880 sec 5.2.2]. |
| 23 | */ |
| 24 | static 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 | |
| 30 | static 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 | |
| 36 | static 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 | |
| 42 | static 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 | |
| 48 | static 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 | |
| 54 | static 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 | |
| 60 | static 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 | |
| 66 | static 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 | |
| 83 | static 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 Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 93 | struct pkcs1pad_ctx { |
| 94 | struct crypto_akcipher *child; |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 95 | unsigned int key_size; |
| 96 | }; |
| 97 | |
Tadeusz Struk | a49de37 | 2016-03-03 21:49:26 +0000 | [diff] [blame] | 98 | struct pkcs1pad_inst_ctx { |
| 99 | struct crypto_akcipher_spawn spawn; |
Herbert Xu | c0d20d2 | 2016-06-29 19:32:23 +0800 | [diff] [blame] | 100 | const struct rsa_asn1_template *digest_info; |
Tadeusz Struk | a49de37 | 2016-03-03 21:49:26 +0000 | [diff] [blame] | 101 | }; |
| 102 | |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 103 | struct pkcs1pad_request { |
| 104 | struct akcipher_request child_req; |
| 105 | |
Herbert Xu | 0f2c831 | 2016-06-29 19:32:24 +0800 | [diff] [blame] | 106 | struct scatterlist in_sg[2], out_sg[1]; |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 107 | uint8_t *in_buf, *out_buf; |
| 108 | }; |
| 109 | |
| 110 | static 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 | |
| 130 | static 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 | |
| 150 | static 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 | |
| 163 | static void pkcs1pad_sg_set_buf(struct scatterlist *sg, void *buf, size_t len, |
| 164 | struct scatterlist *next) |
| 165 | { |
Herbert Xu | 0f2c831 | 2016-06-29 19:32:24 +0800 | [diff] [blame] | 166 | int nsegs = next ? 2 : 1; |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 167 | |
Herbert Xu | 0f2c831 | 2016-06-29 19:32:24 +0800 | [diff] [blame] | 168 | sg_init_table(sg, nsegs); |
| 169 | sg_set_buf(sg, buf, len); |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 170 | |
| 171 | if (next) |
| 172 | sg_chain(sg, nsegs, next); |
| 173 | } |
| 174 | |
| 175 | static 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 Zaborowski | 5319216 | 2015-12-12 00:03:51 -0500 | [diff] [blame] | 180 | 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 Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 183 | |
| 184 | if (!err) { |
Andrzej Zaborowski | 5319216 | 2015-12-12 00:03:51 -0500 | [diff] [blame] | 185 | 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 Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 200 | } |
| 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 Zaborowski | 5319216 | 2015-12-12 00:03:51 -0500 | [diff] [blame] | 205 | pad_len); |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 206 | } |
| 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 | |
| 215 | static 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 | |
| 231 | static 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 Xu | 3a32ce5 | 2016-06-29 19:32:26 +0800 | [diff] [blame^] | 263 | GFP_KERNEL); |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 264 | 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 Xu | 3a32ce5 | 2016-06-29 19:32:26 +0800 | [diff] [blame^] | 276 | req_ctx->out_buf = kmalloc(ctx->key_size, GFP_KERNEL); |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 277 | 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 | |
| 298 | static 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 | |
| 339 | done: |
| 340 | kzfree(req_ctx->out_buf); |
| 341 | |
| 342 | return err; |
| 343 | } |
| 344 | |
| 345 | static 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 | |
| 360 | static 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 Struk | 6f0904a | 2016-04-06 14:42:32 -0700 | [diff] [blame] | 377 | req_ctx->child_req.dst_len = ctx->key_size ; |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 378 | |
Herbert Xu | 3a32ce5 | 2016-06-29 19:32:26 +0800 | [diff] [blame^] | 379 | req_ctx->out_buf = kmalloc(ctx->key_size, GFP_KERNEL); |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 380 | if (!req_ctx->out_buf) |
| 381 | return -ENOMEM; |
| 382 | |
| 383 | pkcs1pad_sg_set_buf(req_ctx->out_sg, req_ctx->out_buf, |
Tadeusz Struk | 6f0904a | 2016-04-06 14:42:32 -0700 | [diff] [blame] | 384 | ctx->key_size, NULL); |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 385 | |
| 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 | |
| 399 | static 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 Xu | c0d20d2 | 2016-06-29 19:32:23 +0800 | [diff] [blame] | 404 | 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 Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 407 | int err; |
Tadeusz Struk | a49de37 | 2016-03-03 21:49:26 +0000 | [diff] [blame] | 408 | unsigned int ps_end, digest_size = 0; |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 409 | |
| 410 | if (!ctx->key_size) |
| 411 | return -EINVAL; |
| 412 | |
Herbert Xu | c0d20d2 | 2016-06-29 19:32:23 +0800 | [diff] [blame] | 413 | digest_size = digest_info->size; |
Tadeusz Struk | a49de37 | 2016-03-03 21:49:26 +0000 | [diff] [blame] | 414 | |
| 415 | if (req->src_len + digest_size > ctx->key_size - 11) |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 416 | 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 Xu | 3a32ce5 | 2016-06-29 19:32:26 +0800 | [diff] [blame^] | 436 | GFP_KERNEL); |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 437 | if (!req_ctx->in_buf) |
| 438 | return -ENOMEM; |
| 439 | |
Tadeusz Struk | a49de37 | 2016-03-03 21:49:26 +0000 | [diff] [blame] | 440 | ps_end = ctx->key_size - digest_size - req->src_len - 2; |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 441 | 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 Xu | c0d20d2 | 2016-06-29 19:32:23 +0800 | [diff] [blame] | 445 | memcpy(req_ctx->in_buf + ps_end + 1, digest_info->data, |
| 446 | digest_info->size); |
Tadeusz Struk | a49de37 | 2016-03-03 21:49:26 +0000 | [diff] [blame] | 447 | |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 448 | pkcs1pad_sg_set_buf(req_ctx->in_sg, req_ctx->in_buf, |
| 449 | ctx->key_size - 1 - req->src_len, req->src); |
| 450 | |
Herbert Xu | 3a32ce5 | 2016-06-29 19:32:26 +0800 | [diff] [blame^] | 451 | req_ctx->out_buf = kmalloc(ctx->key_size, GFP_KERNEL); |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 452 | 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 | |
| 473 | static 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 Xu | c0d20d2 | 2016-06-29 19:32:23 +0800 | [diff] [blame] | 478 | 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 Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 481 | 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 Struk | a49de37 | 2016-03-03 21:49:26 +0000 | [diff] [blame] | 495 | err = -EBADMSG; |
| 496 | if (req_ctx->out_buf[0] != 0x01) |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 497 | goto done; |
Tadeusz Struk | a49de37 | 2016-03-03 21:49:26 +0000 | [diff] [blame] | 498 | |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 499 | for (pos = 1; pos < req_ctx->child_req.dst_len; pos++) |
| 500 | if (req_ctx->out_buf[pos] != 0xff) |
| 501 | break; |
Tadeusz Struk | a49de37 | 2016-03-03 21:49:26 +0000 | [diff] [blame] | 502 | |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 503 | if (pos < 9 || pos == req_ctx->child_req.dst_len || |
Tadeusz Struk | a49de37 | 2016-03-03 21:49:26 +0000 | [diff] [blame] | 504 | req_ctx->out_buf[pos] != 0x00) |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 505 | goto done; |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 506 | pos++; |
| 507 | |
Herbert Xu | c0d20d2 | 2016-06-29 19:32:23 +0800 | [diff] [blame] | 508 | if (memcmp(req_ctx->out_buf + pos, digest_info->data, |
| 509 | digest_info->size)) |
| 510 | goto done; |
Tadeusz Struk | a49de37 | 2016-03-03 21:49:26 +0000 | [diff] [blame] | 511 | |
Herbert Xu | c0d20d2 | 2016-06-29 19:32:23 +0800 | [diff] [blame] | 512 | pos += digest_info->size; |
Tadeusz Struk | a49de37 | 2016-03-03 21:49:26 +0000 | [diff] [blame] | 513 | |
| 514 | err = 0; |
| 515 | |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 516 | 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 Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 524 | done: |
| 525 | kzfree(req_ctx->out_buf); |
| 526 | |
| 527 | return err; |
| 528 | } |
| 529 | |
| 530 | static 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 | */ |
| 553 | static 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 Struk | a49de37 | 2016-03-03 21:49:26 +0000 | [diff] [blame] | 560 | if (!ctx->key_size || req->src_len < ctx->key_size) |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 561 | 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 Struk | 6f0904a | 2016-04-06 14:42:32 -0700 | [diff] [blame] | 570 | req_ctx->child_req.dst_len = ctx->key_size; |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 571 | |
Herbert Xu | 3a32ce5 | 2016-06-29 19:32:26 +0800 | [diff] [blame^] | 572 | req_ctx->out_buf = kmalloc(ctx->key_size, GFP_KERNEL); |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 573 | if (!req_ctx->out_buf) |
| 574 | return -ENOMEM; |
| 575 | |
| 576 | pkcs1pad_sg_set_buf(req_ctx->out_sg, req_ctx->out_buf, |
Tadeusz Struk | 6f0904a | 2016-04-06 14:42:32 -0700 | [diff] [blame] | 577 | ctx->key_size, NULL); |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 578 | |
| 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 | |
| 592 | static int pkcs1pad_init_tfm(struct crypto_akcipher *tfm) |
| 593 | { |
| 594 | struct akcipher_instance *inst = akcipher_alg_instance(tfm); |
Tadeusz Struk | a49de37 | 2016-03-03 21:49:26 +0000 | [diff] [blame] | 595 | struct pkcs1pad_inst_ctx *ictx = akcipher_instance_ctx(inst); |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 596 | struct pkcs1pad_ctx *ctx = akcipher_tfm_ctx(tfm); |
| 597 | struct crypto_akcipher *child_tfm; |
| 598 | |
Herbert Xu | c0d20d2 | 2016-06-29 19:32:23 +0800 | [diff] [blame] | 599 | child_tfm = crypto_spawn_akcipher(&ictx->spawn); |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 600 | if (IS_ERR(child_tfm)) |
| 601 | return PTR_ERR(child_tfm); |
| 602 | |
| 603 | ctx->child = child_tfm; |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 604 | return 0; |
| 605 | } |
| 606 | |
| 607 | static 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 | |
| 614 | static void pkcs1pad_free(struct akcipher_instance *inst) |
| 615 | { |
Tadeusz Struk | a49de37 | 2016-03-03 21:49:26 +0000 | [diff] [blame] | 616 | struct pkcs1pad_inst_ctx *ctx = akcipher_instance_ctx(inst); |
| 617 | struct crypto_akcipher_spawn *spawn = &ctx->spawn; |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 618 | |
| 619 | crypto_drop_akcipher(spawn); |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 620 | kfree(inst); |
| 621 | } |
| 622 | |
| 623 | static int pkcs1pad_create(struct crypto_template *tmpl, struct rtattr **tb) |
| 624 | { |
Herbert Xu | c0d20d2 | 2016-06-29 19:32:23 +0800 | [diff] [blame] | 625 | const struct rsa_asn1_template *digest_info; |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 626 | struct crypto_attr_type *algt; |
| 627 | struct akcipher_instance *inst; |
Tadeusz Struk | a49de37 | 2016-03-03 21:49:26 +0000 | [diff] [blame] | 628 | struct pkcs1pad_inst_ctx *ctx; |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 629 | struct crypto_akcipher_spawn *spawn; |
| 630 | struct akcipher_alg *rsa_alg; |
| 631 | const char *rsa_alg_name; |
Tadeusz Struk | a49de37 | 2016-03-03 21:49:26 +0000 | [diff] [blame] | 632 | const char *hash_name; |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 633 | 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 Struk | a49de37 | 2016-03-03 21:49:26 +0000 | [diff] [blame] | 646 | hash_name = crypto_attr_alg_name(tb[2]); |
| 647 | if (IS_ERR(hash_name)) |
Herbert Xu | c0d20d2 | 2016-06-29 19:32:23 +0800 | [diff] [blame] | 648 | return PTR_ERR(hash_name); |
| 649 | |
| 650 | digest_info = rsa_lookup_asn1(hash_name); |
| 651 | if (!digest_info) |
| 652 | return -EINVAL; |
Tadeusz Struk | a49de37 | 2016-03-03 21:49:26 +0000 | [diff] [blame] | 653 | |
| 654 | inst = kzalloc(sizeof(*inst) + sizeof(*ctx), GFP_KERNEL); |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 655 | if (!inst) |
| 656 | return -ENOMEM; |
| 657 | |
Tadeusz Struk | a49de37 | 2016-03-03 21:49:26 +0000 | [diff] [blame] | 658 | ctx = akcipher_instance_ctx(inst); |
| 659 | spawn = &ctx->spawn; |
Herbert Xu | c0d20d2 | 2016-06-29 19:32:23 +0800 | [diff] [blame] | 660 | ctx->digest_info = digest_info; |
Tadeusz Struk | a49de37 | 2016-03-03 21:49:26 +0000 | [diff] [blame] | 661 | |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 662 | 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 Struk | a49de37 | 2016-03-03 21:49:26 +0000 | [diff] [blame] | 671 | |
Herbert Xu | c0d20d2 | 2016-06-29 19:32:23 +0800 | [diff] [blame] | 672 | 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 Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 679 | 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 Xu | c0d20d2 | 2016-06-29 19:32:23 +0800 | [diff] [blame] | 701 | goto out_drop_alg; |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 702 | |
| 703 | return 0; |
| 704 | |
Andrzej Zaborowski | 3d5b1ec | 2015-12-05 17:09:34 +0100 | [diff] [blame] | 705 | out_drop_alg: |
| 706 | crypto_drop_akcipher(spawn); |
| 707 | out_free_inst: |
| 708 | kfree(inst); |
| 709 | return err; |
| 710 | } |
| 711 | |
| 712 | struct crypto_template rsa_pkcs1pad_tmpl = { |
| 713 | .name = "pkcs1pad", |
| 714 | .create = pkcs1pad_create, |
| 715 | .module = THIS_MODULE, |
| 716 | }; |