]> git.ipfire.org Git - thirdparty/openssl.git/blob - crypto/rsa/rsa_ameth.c
Implement EVP_PKEY_dup() function
[thirdparty/openssl.git] / crypto / rsa / rsa_ameth.c
1 /*
2 * Copyright 2006-2021 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the Apache License 2.0 (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
8 */
9
10 /*
11 * RSA low level APIs are deprecated for public use, but still ok for
12 * internal use.
13 */
14 #include "internal/deprecated.h"
15
16 #include <stdio.h>
17 #include "internal/cryptlib.h"
18 #include <openssl/asn1t.h>
19 #include <openssl/x509.h>
20 #include <openssl/bn.h>
21 #include <openssl/core_names.h>
22 #include <openssl/param_build.h>
23 #include "crypto/asn1.h"
24 #include "crypto/evp.h"
25 #include "crypto/rsa.h"
26 #include "rsa_local.h"
27
28 /* Set any parameters associated with pkey */
29 static int rsa_param_encode(const EVP_PKEY *pkey,
30 ASN1_STRING **pstr, int *pstrtype)
31 {
32 const RSA *rsa = pkey->pkey.rsa;
33
34 *pstr = NULL;
35 /* If RSA it's just NULL type */
36 if (RSA_test_flags(rsa, RSA_FLAG_TYPE_MASK) != RSA_FLAG_TYPE_RSASSAPSS) {
37 *pstrtype = V_ASN1_NULL;
38 return 1;
39 }
40 /* If no PSS parameters we omit parameters entirely */
41 if (rsa->pss == NULL) {
42 *pstrtype = V_ASN1_UNDEF;
43 return 1;
44 }
45 /* Encode PSS parameters */
46 if (ASN1_item_pack(rsa->pss, ASN1_ITEM_rptr(RSA_PSS_PARAMS), pstr) == NULL)
47 return 0;
48
49 *pstrtype = V_ASN1_SEQUENCE;
50 return 1;
51 }
52 /* Decode any parameters and set them in RSA structure */
53 static int rsa_pub_encode(X509_PUBKEY *pk, const EVP_PKEY *pkey)
54 {
55 unsigned char *penc = NULL;
56 int penclen;
57 ASN1_STRING *str;
58 int strtype;
59
60 if (!rsa_param_encode(pkey, &str, &strtype))
61 return 0;
62 penclen = i2d_RSAPublicKey(pkey->pkey.rsa, &penc);
63 if (penclen <= 0)
64 return 0;
65 if (X509_PUBKEY_set0_param(pk, OBJ_nid2obj(pkey->ameth->pkey_id),
66 strtype, str, penc, penclen))
67 return 1;
68
69 OPENSSL_free(penc);
70 return 0;
71 }
72
73 static int rsa_pub_decode(EVP_PKEY *pkey, const X509_PUBKEY *pubkey)
74 {
75 const unsigned char *p;
76 int pklen;
77 X509_ALGOR *alg;
78 RSA *rsa = NULL;
79
80 if (!X509_PUBKEY_get0_param(NULL, &p, &pklen, &alg, pubkey))
81 return 0;
82 if ((rsa = d2i_RSAPublicKey(NULL, &p, pklen)) == NULL)
83 return 0;
84 if (!ossl_rsa_param_decode(rsa, alg)) {
85 RSA_free(rsa);
86 return 0;
87 }
88
89 RSA_clear_flags(rsa, RSA_FLAG_TYPE_MASK);
90 switch (pkey->ameth->pkey_id) {
91 case EVP_PKEY_RSA:
92 RSA_set_flags(rsa, RSA_FLAG_TYPE_RSA);
93 break;
94 case EVP_PKEY_RSA_PSS:
95 RSA_set_flags(rsa, RSA_FLAG_TYPE_RSASSAPSS);
96 break;
97 default:
98 /* Leave the type bits zero */
99 break;
100 }
101
102 if (!EVP_PKEY_assign(pkey, pkey->ameth->pkey_id, rsa)) {
103 RSA_free(rsa);
104 return 0;
105 }
106 return 1;
107 }
108
109 static int rsa_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
110 {
111 /*
112 * Don't check the public/private key, this is mostly for smart
113 * cards.
114 */
115 if (((RSA_flags(a->pkey.rsa) & RSA_METHOD_FLAG_NO_CHECK))
116 || (RSA_flags(b->pkey.rsa) & RSA_METHOD_FLAG_NO_CHECK)) {
117 return 1;
118 }
119
120 if (BN_cmp(b->pkey.rsa->n, a->pkey.rsa->n) != 0
121 || BN_cmp(b->pkey.rsa->e, a->pkey.rsa->e) != 0)
122 return 0;
123 return 1;
124 }
125
126 static int old_rsa_priv_decode(EVP_PKEY *pkey,
127 const unsigned char **pder, int derlen)
128 {
129 RSA *rsa;
130
131 if ((rsa = d2i_RSAPrivateKey(NULL, pder, derlen)) == NULL)
132 return 0;
133 EVP_PKEY_assign(pkey, pkey->ameth->pkey_id, rsa);
134 return 1;
135 }
136
137 static int old_rsa_priv_encode(const EVP_PKEY *pkey, unsigned char **pder)
138 {
139 return i2d_RSAPrivateKey(pkey->pkey.rsa, pder);
140 }
141
142 static int rsa_priv_encode(PKCS8_PRIV_KEY_INFO *p8, const EVP_PKEY *pkey)
143 {
144 unsigned char *rk = NULL;
145 int rklen;
146 ASN1_STRING *str;
147 int strtype;
148
149 if (!rsa_param_encode(pkey, &str, &strtype))
150 return 0;
151 rklen = i2d_RSAPrivateKey(pkey->pkey.rsa, &rk);
152
153 if (rklen <= 0) {
154 ERR_raise(ERR_LIB_RSA, ERR_R_MALLOC_FAILURE);
155 ASN1_STRING_free(str);
156 return 0;
157 }
158
159 if (!PKCS8_pkey_set0(p8, OBJ_nid2obj(pkey->ameth->pkey_id), 0,
160 strtype, str, rk, rklen)) {
161 ERR_raise(ERR_LIB_RSA, ERR_R_MALLOC_FAILURE);
162 ASN1_STRING_free(str);
163 return 0;
164 }
165
166 return 1;
167 }
168
169 static int rsa_priv_decode(EVP_PKEY *pkey, const PKCS8_PRIV_KEY_INFO *p8)
170 {
171 int ret = 0;
172 RSA *rsa = ossl_rsa_key_from_pkcs8(p8, NULL, NULL);
173
174 if (rsa != NULL) {
175 ret = 1;
176 EVP_PKEY_assign(pkey, pkey->ameth->pkey_id, rsa);
177 }
178 return ret;
179 }
180
181 static int int_rsa_size(const EVP_PKEY *pkey)
182 {
183 return RSA_size(pkey->pkey.rsa);
184 }
185
186 static int rsa_bits(const EVP_PKEY *pkey)
187 {
188 return BN_num_bits(pkey->pkey.rsa->n);
189 }
190
191 static int rsa_security_bits(const EVP_PKEY *pkey)
192 {
193 return RSA_security_bits(pkey->pkey.rsa);
194 }
195
196 static void int_rsa_free(EVP_PKEY *pkey)
197 {
198 RSA_free(pkey->pkey.rsa);
199 }
200
201 static int rsa_pss_param_print(BIO *bp, int pss_key, RSA_PSS_PARAMS *pss,
202 int indent)
203 {
204 int rv = 0;
205 X509_ALGOR *maskHash = NULL;
206
207 if (!BIO_indent(bp, indent, 128))
208 goto err;
209 if (pss_key) {
210 if (pss == NULL) {
211 if (BIO_puts(bp, "No PSS parameter restrictions\n") <= 0)
212 return 0;
213 return 1;
214 } else {
215 if (BIO_puts(bp, "PSS parameter restrictions:") <= 0)
216 return 0;
217 }
218 } else if (pss == NULL) {
219 if (BIO_puts(bp,"(INVALID PSS PARAMETERS)\n") <= 0)
220 return 0;
221 return 1;
222 }
223 if (BIO_puts(bp, "\n") <= 0)
224 goto err;
225 if (pss_key)
226 indent += 2;
227 if (!BIO_indent(bp, indent, 128))
228 goto err;
229 if (BIO_puts(bp, "Hash Algorithm: ") <= 0)
230 goto err;
231
232 if (pss->hashAlgorithm) {
233 if (i2a_ASN1_OBJECT(bp, pss->hashAlgorithm->algorithm) <= 0)
234 goto err;
235 } else if (BIO_puts(bp, "sha1 (default)") <= 0) {
236 goto err;
237 }
238
239 if (BIO_puts(bp, "\n") <= 0)
240 goto err;
241
242 if (!BIO_indent(bp, indent, 128))
243 goto err;
244
245 if (BIO_puts(bp, "Mask Algorithm: ") <= 0)
246 goto err;
247 if (pss->maskGenAlgorithm) {
248 if (i2a_ASN1_OBJECT(bp, pss->maskGenAlgorithm->algorithm) <= 0)
249 goto err;
250 if (BIO_puts(bp, " with ") <= 0)
251 goto err;
252 maskHash = ossl_x509_algor_mgf1_decode(pss->maskGenAlgorithm);
253 if (maskHash != NULL) {
254 if (i2a_ASN1_OBJECT(bp, maskHash->algorithm) <= 0)
255 goto err;
256 } else if (BIO_puts(bp, "INVALID") <= 0) {
257 goto err;
258 }
259 } else if (BIO_puts(bp, "mgf1 with sha1 (default)") <= 0) {
260 goto err;
261 }
262 BIO_puts(bp, "\n");
263
264 if (!BIO_indent(bp, indent, 128))
265 goto err;
266 if (BIO_printf(bp, "%s Salt Length: 0x", pss_key ? "Minimum" : "") <= 0)
267 goto err;
268 if (pss->saltLength) {
269 if (i2a_ASN1_INTEGER(bp, pss->saltLength) <= 0)
270 goto err;
271 } else if (BIO_puts(bp, "14 (default)") <= 0) {
272 goto err;
273 }
274 BIO_puts(bp, "\n");
275
276 if (!BIO_indent(bp, indent, 128))
277 goto err;
278 if (BIO_puts(bp, "Trailer Field: 0x") <= 0)
279 goto err;
280 if (pss->trailerField) {
281 if (i2a_ASN1_INTEGER(bp, pss->trailerField) <= 0)
282 goto err;
283 } else if (BIO_puts(bp, "01 (default)") <= 0) {
284 goto err;
285 }
286 BIO_puts(bp, "\n");
287
288 rv = 1;
289
290 err:
291 X509_ALGOR_free(maskHash);
292 return rv;
293
294 }
295
296 static int pkey_rsa_print(BIO *bp, const EVP_PKEY *pkey, int off, int priv)
297 {
298 const RSA *x = pkey->pkey.rsa;
299 char *str;
300 const char *s;
301 int ret = 0, mod_len = 0, ex_primes;
302
303 if (x->n != NULL)
304 mod_len = BN_num_bits(x->n);
305 ex_primes = sk_RSA_PRIME_INFO_num(x->prime_infos);
306
307 if (!BIO_indent(bp, off, 128))
308 goto err;
309
310 if (BIO_printf(bp, "%s ", pkey_is_pss(pkey) ? "RSA-PSS" : "RSA") <= 0)
311 goto err;
312
313 if (priv && x->d) {
314 if (BIO_printf(bp, "Private-Key: (%d bit, %d primes)\n",
315 mod_len, ex_primes <= 0 ? 2 : ex_primes + 2) <= 0)
316 goto err;
317 str = "modulus:";
318 s = "publicExponent:";
319 } else {
320 if (BIO_printf(bp, "Public-Key: (%d bit)\n", mod_len) <= 0)
321 goto err;
322 str = "Modulus:";
323 s = "Exponent:";
324 }
325 if (!ASN1_bn_print(bp, str, x->n, NULL, off))
326 goto err;
327 if (!ASN1_bn_print(bp, s, x->e, NULL, off))
328 goto err;
329 if (priv) {
330 int i;
331
332 if (!ASN1_bn_print(bp, "privateExponent:", x->d, NULL, off))
333 goto err;
334 if (!ASN1_bn_print(bp, "prime1:", x->p, NULL, off))
335 goto err;
336 if (!ASN1_bn_print(bp, "prime2:", x->q, NULL, off))
337 goto err;
338 if (!ASN1_bn_print(bp, "exponent1:", x->dmp1, NULL, off))
339 goto err;
340 if (!ASN1_bn_print(bp, "exponent2:", x->dmq1, NULL, off))
341 goto err;
342 if (!ASN1_bn_print(bp, "coefficient:", x->iqmp, NULL, off))
343 goto err;
344 for (i = 0; i < sk_RSA_PRIME_INFO_num(x->prime_infos); i++) {
345 /* print multi-prime info */
346 BIGNUM *bn = NULL;
347 RSA_PRIME_INFO *pinfo;
348 int j;
349
350 pinfo = sk_RSA_PRIME_INFO_value(x->prime_infos, i);
351 for (j = 0; j < 3; j++) {
352 if (!BIO_indent(bp, off, 128))
353 goto err;
354 switch (j) {
355 case 0:
356 if (BIO_printf(bp, "prime%d:", i + 3) <= 0)
357 goto err;
358 bn = pinfo->r;
359 break;
360 case 1:
361 if (BIO_printf(bp, "exponent%d:", i + 3) <= 0)
362 goto err;
363 bn = pinfo->d;
364 break;
365 case 2:
366 if (BIO_printf(bp, "coefficient%d:", i + 3) <= 0)
367 goto err;
368 bn = pinfo->t;
369 break;
370 default:
371 break;
372 }
373 if (!ASN1_bn_print(bp, "", bn, NULL, off))
374 goto err;
375 }
376 }
377 }
378 if (pkey_is_pss(pkey) && !rsa_pss_param_print(bp, 1, x->pss, off))
379 goto err;
380 ret = 1;
381 err:
382 return ret;
383 }
384
385 static int rsa_pub_print(BIO *bp, const EVP_PKEY *pkey, int indent,
386 ASN1_PCTX *ctx)
387 {
388 return pkey_rsa_print(bp, pkey, indent, 0);
389 }
390
391 static int rsa_priv_print(BIO *bp, const EVP_PKEY *pkey, int indent,
392 ASN1_PCTX *ctx)
393 {
394 return pkey_rsa_print(bp, pkey, indent, 1);
395 }
396
397 static int rsa_sig_print(BIO *bp, const X509_ALGOR *sigalg,
398 const ASN1_STRING *sig, int indent, ASN1_PCTX *pctx)
399 {
400 if (OBJ_obj2nid(sigalg->algorithm) == EVP_PKEY_RSA_PSS) {
401 int rv;
402 RSA_PSS_PARAMS *pss = ossl_rsa_pss_decode(sigalg);
403
404 rv = rsa_pss_param_print(bp, 0, pss, indent);
405 RSA_PSS_PARAMS_free(pss);
406 if (!rv)
407 return 0;
408 } else if (BIO_puts(bp, "\n") <= 0) {
409 return 0;
410 }
411 if (sig)
412 return X509_signature_dump(bp, sig, indent);
413 return 1;
414 }
415
416 static int rsa_pkey_ctrl(EVP_PKEY *pkey, int op, long arg1, void *arg2)
417 {
418 const EVP_MD *md;
419 const EVP_MD *mgf1md;
420 int min_saltlen;
421
422 switch (op) {
423 case ASN1_PKEY_CTRL_DEFAULT_MD_NID:
424 if (pkey->pkey.rsa->pss != NULL) {
425 if (!ossl_rsa_pss_get_param(pkey->pkey.rsa->pss, &md, &mgf1md,
426 &min_saltlen)) {
427 ERR_raise(ERR_LIB_RSA, ERR_R_INTERNAL_ERROR);
428 return 0;
429 }
430 *(int *)arg2 = EVP_MD_type(md);
431 /* Return of 2 indicates this MD is mandatory */
432 return 2;
433 }
434 *(int *)arg2 = NID_sha256;
435 return 1;
436
437 default:
438 return -2;
439 }
440 }
441
442 /*
443 * Convert EVP_PKEY_CTX in PSS mode into corresponding algorithm parameter,
444 * suitable for setting an AlgorithmIdentifier.
445 */
446
447 static RSA_PSS_PARAMS *rsa_ctx_to_pss(EVP_PKEY_CTX *pkctx)
448 {
449 const EVP_MD *sigmd, *mgf1md;
450 EVP_PKEY *pk = EVP_PKEY_CTX_get0_pkey(pkctx);
451 int saltlen;
452
453 if (EVP_PKEY_CTX_get_signature_md(pkctx, &sigmd) <= 0)
454 return NULL;
455 if (EVP_PKEY_CTX_get_rsa_mgf1_md(pkctx, &mgf1md) <= 0)
456 return NULL;
457 if (!EVP_PKEY_CTX_get_rsa_pss_saltlen(pkctx, &saltlen))
458 return NULL;
459 if (saltlen == -1) {
460 saltlen = EVP_MD_size(sigmd);
461 } else if (saltlen == -2 || saltlen == -3) {
462 saltlen = EVP_PKEY_size(pk) - EVP_MD_size(sigmd) - 2;
463 if ((EVP_PKEY_bits(pk) & 0x7) == 1)
464 saltlen--;
465 if (saltlen < 0)
466 return NULL;
467 }
468
469 return ossl_rsa_pss_params_create(sigmd, mgf1md, saltlen);
470 }
471
472 RSA_PSS_PARAMS *ossl_rsa_pss_params_create(const EVP_MD *sigmd,
473 const EVP_MD *mgf1md, int saltlen)
474 {
475 RSA_PSS_PARAMS *pss = RSA_PSS_PARAMS_new();
476
477 if (pss == NULL)
478 goto err;
479 if (saltlen != 20) {
480 pss->saltLength = ASN1_INTEGER_new();
481 if (pss->saltLength == NULL)
482 goto err;
483 if (!ASN1_INTEGER_set(pss->saltLength, saltlen))
484 goto err;
485 }
486 if (!ossl_x509_algor_new_from_md(&pss->hashAlgorithm, sigmd))
487 goto err;
488 if (mgf1md == NULL)
489 mgf1md = sigmd;
490 if (!ossl_x509_algor_md_to_mgf1(&pss->maskGenAlgorithm, mgf1md))
491 goto err;
492 if (!ossl_x509_algor_new_from_md(&pss->maskHash, mgf1md))
493 goto err;
494 return pss;
495 err:
496 RSA_PSS_PARAMS_free(pss);
497 return NULL;
498 }
499
500 ASN1_STRING *ossl_rsa_ctx_to_pss_string(EVP_PKEY_CTX *pkctx)
501 {
502 RSA_PSS_PARAMS *pss = rsa_ctx_to_pss(pkctx);
503 ASN1_STRING *os;
504
505 if (pss == NULL)
506 return NULL;
507
508 os = ASN1_item_pack(pss, ASN1_ITEM_rptr(RSA_PSS_PARAMS), NULL);
509 RSA_PSS_PARAMS_free(pss);
510 return os;
511 }
512
513 /*
514 * From PSS AlgorithmIdentifier set public key parameters. If pkey isn't NULL
515 * then the EVP_MD_CTX is setup and initialised. If it is NULL parameters are
516 * passed to pkctx instead.
517 */
518
519 int ossl_rsa_pss_to_ctx(EVP_MD_CTX *ctx, EVP_PKEY_CTX *pkctx,
520 const X509_ALGOR *sigalg, EVP_PKEY *pkey)
521 {
522 int rv = -1;
523 int saltlen;
524 const EVP_MD *mgf1md = NULL, *md = NULL;
525 RSA_PSS_PARAMS *pss;
526
527 /* Sanity check: make sure it is PSS */
528 if (OBJ_obj2nid(sigalg->algorithm) != EVP_PKEY_RSA_PSS) {
529 ERR_raise(ERR_LIB_RSA, RSA_R_UNSUPPORTED_SIGNATURE_TYPE);
530 return -1;
531 }
532 /* Decode PSS parameters */
533 pss = ossl_rsa_pss_decode(sigalg);
534
535 if (!ossl_rsa_pss_get_param(pss, &md, &mgf1md, &saltlen)) {
536 ERR_raise(ERR_LIB_RSA, RSA_R_INVALID_PSS_PARAMETERS);
537 goto err;
538 }
539
540 /* We have all parameters now set up context */
541 if (pkey) {
542 if (!EVP_DigestVerifyInit(ctx, &pkctx, md, NULL, pkey))
543 goto err;
544 } else {
545 const EVP_MD *checkmd;
546 if (EVP_PKEY_CTX_get_signature_md(pkctx, &checkmd) <= 0)
547 goto err;
548 if (EVP_MD_type(md) != EVP_MD_type(checkmd)) {
549 ERR_raise(ERR_LIB_RSA, RSA_R_DIGEST_DOES_NOT_MATCH);
550 goto err;
551 }
552 }
553
554 if (EVP_PKEY_CTX_set_rsa_padding(pkctx, RSA_PKCS1_PSS_PADDING) <= 0)
555 goto err;
556
557 if (EVP_PKEY_CTX_set_rsa_pss_saltlen(pkctx, saltlen) <= 0)
558 goto err;
559
560 if (EVP_PKEY_CTX_set_rsa_mgf1_md(pkctx, mgf1md) <= 0)
561 goto err;
562 /* Carry on */
563 rv = 1;
564
565 err:
566 RSA_PSS_PARAMS_free(pss);
567 return rv;
568 }
569
570 static int rsa_pss_verify_param(const EVP_MD **pmd, const EVP_MD **pmgf1md,
571 int *psaltlen, int *ptrailerField)
572 {
573 if (psaltlen != NULL && *psaltlen < 0) {
574 ERR_raise(ERR_LIB_RSA, RSA_R_INVALID_SALT_LENGTH);
575 return 0;
576 }
577 /*
578 * low-level routines support only trailer field 0xbc (value 1) and
579 * PKCS#1 says we should reject any other value anyway.
580 */
581 if (ptrailerField != NULL && *ptrailerField != 1) {
582 ERR_raise(ERR_LIB_RSA, RSA_R_INVALID_TRAILER);
583 return 0;
584 }
585 return 1;
586 }
587
588 int ossl_rsa_pss_get_param(const RSA_PSS_PARAMS *pss, const EVP_MD **pmd,
589 const EVP_MD **pmgf1md, int *psaltlen)
590 {
591 /*
592 * Callers do not care about the trailer field, and yet, we must
593 * pass it from get_param to verify_param, since the latter checks
594 * its value.
595 *
596 * When callers start caring, it's a simple thing to add another
597 * argument to this function.
598 */
599 int trailerField = 0;
600
601 return ossl_rsa_pss_get_param_unverified(pss, pmd, pmgf1md, psaltlen,
602 &trailerField)
603 && rsa_pss_verify_param(pmd, pmgf1md, psaltlen, &trailerField);
604 }
605
606 /*
607 * Customised RSA item verification routine. This is called when a signature
608 * is encountered requiring special handling. We currently only handle PSS.
609 */
610
611 static int rsa_item_verify(EVP_MD_CTX *ctx, const ASN1_ITEM *it,
612 const void *asn, const X509_ALGOR *sigalg,
613 const ASN1_BIT_STRING *sig, EVP_PKEY *pkey)
614 {
615 /* Sanity check: make sure it is PSS */
616 if (OBJ_obj2nid(sigalg->algorithm) != EVP_PKEY_RSA_PSS) {
617 ERR_raise(ERR_LIB_RSA, RSA_R_UNSUPPORTED_SIGNATURE_TYPE);
618 return -1;
619 }
620 if (ossl_rsa_pss_to_ctx(ctx, NULL, sigalg, pkey) > 0) {
621 /* Carry on */
622 return 2;
623 }
624 return -1;
625 }
626
627 static int rsa_item_sign(EVP_MD_CTX *ctx, const ASN1_ITEM *it, const void *asn,
628 X509_ALGOR *alg1, X509_ALGOR *alg2,
629 ASN1_BIT_STRING *sig)
630 {
631 int pad_mode;
632 EVP_PKEY_CTX *pkctx = EVP_MD_CTX_pkey_ctx(ctx);
633
634 if (EVP_PKEY_CTX_get_rsa_padding(pkctx, &pad_mode) <= 0)
635 return 0;
636 if (pad_mode == RSA_PKCS1_PADDING)
637 return 2;
638 if (pad_mode == RSA_PKCS1_PSS_PADDING) {
639 ASN1_STRING *os1 = NULL;
640 os1 = ossl_rsa_ctx_to_pss_string(pkctx);
641 if (!os1)
642 return 0;
643 /* Duplicate parameters if we have to */
644 if (alg2) {
645 ASN1_STRING *os2 = ASN1_STRING_dup(os1);
646 if (!os2) {
647 ASN1_STRING_free(os1);
648 return 0;
649 }
650 X509_ALGOR_set0(alg2, OBJ_nid2obj(EVP_PKEY_RSA_PSS),
651 V_ASN1_SEQUENCE, os2);
652 }
653 X509_ALGOR_set0(alg1, OBJ_nid2obj(EVP_PKEY_RSA_PSS),
654 V_ASN1_SEQUENCE, os1);
655 return 3;
656 }
657 return 2;
658 }
659
660 static int rsa_sig_info_set(X509_SIG_INFO *siginf, const X509_ALGOR *sigalg,
661 const ASN1_STRING *sig)
662 {
663 int rv = 0;
664 int mdnid, saltlen;
665 uint32_t flags;
666 const EVP_MD *mgf1md = NULL, *md = NULL;
667 RSA_PSS_PARAMS *pss;
668 int secbits;
669
670 /* Sanity check: make sure it is PSS */
671 if (OBJ_obj2nid(sigalg->algorithm) != EVP_PKEY_RSA_PSS)
672 return 0;
673 /* Decode PSS parameters */
674 pss = ossl_rsa_pss_decode(sigalg);
675 if (!ossl_rsa_pss_get_param(pss, &md, &mgf1md, &saltlen))
676 goto err;
677 mdnid = EVP_MD_type(md);
678 /*
679 * For TLS need SHA256, SHA384 or SHA512, digest and MGF1 digest must
680 * match and salt length must equal digest size
681 */
682 if ((mdnid == NID_sha256 || mdnid == NID_sha384 || mdnid == NID_sha512)
683 && mdnid == EVP_MD_type(mgf1md) && saltlen == EVP_MD_size(md))
684 flags = X509_SIG_INFO_TLS;
685 else
686 flags = 0;
687 /* Note: security bits half number of digest bits */
688 secbits = EVP_MD_size(md) * 4;
689 /*
690 * SHA1 and MD5 are known to be broken. Reduce security bits so that
691 * they're no longer accepted at security level 1. The real values don't
692 * really matter as long as they're lower than 80, which is our security
693 * level 1.
694 * https://eprint.iacr.org/2020/014 puts a chosen-prefix attack for SHA1 at
695 * 2^63.4
696 * https://documents.epfl.ch/users/l/le/lenstra/public/papers/lat.pdf
697 * puts a chosen-prefix attack for MD5 at 2^39.
698 */
699 if (mdnid == NID_sha1)
700 secbits = 64;
701 else if (mdnid == NID_md5_sha1)
702 secbits = 68;
703 else if (mdnid == NID_md5)
704 secbits = 39;
705 X509_SIG_INFO_set(siginf, mdnid, EVP_PKEY_RSA_PSS, secbits,
706 flags);
707 rv = 1;
708 err:
709 RSA_PSS_PARAMS_free(pss);
710 return rv;
711 }
712
713 static int rsa_pkey_check(const EVP_PKEY *pkey)
714 {
715 return RSA_check_key_ex(pkey->pkey.rsa, NULL);
716 }
717
718 static size_t rsa_pkey_dirty_cnt(const EVP_PKEY *pkey)
719 {
720 return pkey->pkey.rsa->dirty_cnt;
721 }
722
723 /*
724 * There is no need to do RSA_test_flags(rsa, RSA_FLAG_TYPE_RSASSAPSS)
725 * checks in this method since the caller tests EVP_KEYMGMT_is_a() first.
726 */
727 static int rsa_int_export_to(const EVP_PKEY *from, int rsa_type,
728 void *to_keydata, EVP_KEYMGMT *to_keymgmt,
729 OSSL_LIB_CTX *libctx, const char *propq)
730 {
731 RSA *rsa = from->pkey.rsa;
732 OSSL_PARAM_BLD *tmpl = OSSL_PARAM_BLD_new();
733 OSSL_PARAM *params = NULL;
734 int selection = 0;
735 int rv = 0;
736
737 if (tmpl == NULL)
738 return 0;
739 /*
740 * If the RSA method is foreign, then we can't be sure of anything, and
741 * can therefore not export or pretend to export.
742 */
743 if (RSA_get_method(rsa) != RSA_PKCS1_OpenSSL())
744 goto err;
745
746 /* Public parameters must always be present */
747 if (RSA_get0_n(rsa) == NULL || RSA_get0_e(rsa) == NULL)
748 goto err;
749
750 if (!ossl_rsa_todata(rsa, tmpl, NULL))
751 goto err;
752
753 selection |= OSSL_KEYMGMT_SELECT_PUBLIC_KEY;
754 if (RSA_get0_d(rsa) != NULL)
755 selection |= OSSL_KEYMGMT_SELECT_PRIVATE_KEY;
756
757 if (rsa->pss != NULL) {
758 const EVP_MD *md = NULL, *mgf1md = NULL;
759 int md_nid, mgf1md_nid, saltlen, trailerfield;
760 RSA_PSS_PARAMS_30 pss_params;
761
762 if (!ossl_rsa_pss_get_param_unverified(rsa->pss, &md, &mgf1md,
763 &saltlen, &trailerfield))
764 goto err;
765 md_nid = EVP_MD_type(md);
766 mgf1md_nid = EVP_MD_type(mgf1md);
767 if (!ossl_rsa_pss_params_30_set_defaults(&pss_params)
768 || !ossl_rsa_pss_params_30_set_hashalg(&pss_params, md_nid)
769 || !ossl_rsa_pss_params_30_set_maskgenhashalg(&pss_params,
770 mgf1md_nid)
771 || !ossl_rsa_pss_params_30_set_saltlen(&pss_params, saltlen)
772 || !ossl_rsa_pss_params_30_todata(&pss_params, tmpl, NULL))
773 goto err;
774 selection |= OSSL_KEYMGMT_SELECT_OTHER_PARAMETERS;
775 }
776
777 if ((params = OSSL_PARAM_BLD_to_param(tmpl)) == NULL)
778 goto err;
779
780 /* We export, the provider imports */
781 rv = evp_keymgmt_import(to_keymgmt, to_keydata, selection, params);
782
783 err:
784 OSSL_PARAM_BLD_free_params(params);
785 OSSL_PARAM_BLD_free(tmpl);
786 return rv;
787 }
788
789 static int rsa_int_import_from(const OSSL_PARAM params[], void *vpctx,
790 int rsa_type)
791 {
792 EVP_PKEY_CTX *pctx = vpctx;
793 EVP_PKEY *pkey = EVP_PKEY_CTX_get0_pkey(pctx);
794 RSA *rsa = ossl_rsa_new_with_ctx(pctx->libctx);
795 RSA_PSS_PARAMS_30 rsa_pss_params = { 0, };
796 int pss_defaults_set = 0;
797 int ok = 0;
798
799 if (rsa == NULL) {
800 ERR_raise(ERR_LIB_DH, ERR_R_MALLOC_FAILURE);
801 return 0;
802 }
803
804 RSA_clear_flags(rsa, RSA_FLAG_TYPE_MASK);
805 RSA_set_flags(rsa, rsa_type);
806
807 if (!ossl_rsa_pss_params_30_fromdata(&rsa_pss_params, &pss_defaults_set,
808 params, pctx->libctx))
809 goto err;
810
811 switch (rsa_type) {
812 case RSA_FLAG_TYPE_RSA:
813 /*
814 * Were PSS parameters filled in?
815 * In that case, something's wrong
816 */
817 if (!ossl_rsa_pss_params_30_is_unrestricted(&rsa_pss_params))
818 goto err;
819 break;
820 case RSA_FLAG_TYPE_RSASSAPSS:
821 /*
822 * Were PSS parameters filled in? In that case, create the old
823 * RSA_PSS_PARAMS structure. Otherwise, this is an unrestricted key.
824 */
825 if (!ossl_rsa_pss_params_30_is_unrestricted(&rsa_pss_params)) {
826 /* Create the older RSA_PSS_PARAMS from RSA_PSS_PARAMS_30 data */
827 int mdnid = ossl_rsa_pss_params_30_hashalg(&rsa_pss_params);
828 int mgf1mdnid = ossl_rsa_pss_params_30_maskgenhashalg(&rsa_pss_params);
829 int saltlen = ossl_rsa_pss_params_30_saltlen(&rsa_pss_params);
830 const EVP_MD *md = EVP_get_digestbynid(mdnid);
831 const EVP_MD *mgf1md = EVP_get_digestbynid(mgf1mdnid);
832
833 if ((rsa->pss = ossl_rsa_pss_params_create(md, mgf1md,
834 saltlen)) == NULL)
835 goto err;
836 }
837 break;
838 default:
839 /* RSA key sub-types we don't know how to handle yet */
840 goto err;
841 }
842
843 if (!ossl_rsa_fromdata(rsa, params))
844 goto err;
845
846 switch (rsa_type) {
847 case RSA_FLAG_TYPE_RSA:
848 ok = EVP_PKEY_assign_RSA(pkey, rsa);
849 break;
850 case RSA_FLAG_TYPE_RSASSAPSS:
851 ok = EVP_PKEY_assign(pkey, EVP_PKEY_RSA_PSS, rsa);
852 break;
853 }
854
855 err:
856 if (!ok)
857 RSA_free(rsa);
858 return ok;
859 }
860
861 static int rsa_pkey_export_to(const EVP_PKEY *from, void *to_keydata,
862 EVP_KEYMGMT *to_keymgmt, OSSL_LIB_CTX *libctx,
863 const char *propq)
864 {
865 return rsa_int_export_to(from, RSA_FLAG_TYPE_RSA, to_keydata,
866 to_keymgmt, libctx, propq);
867 }
868
869 static int rsa_pss_pkey_export_to(const EVP_PKEY *from, void *to_keydata,
870 EVP_KEYMGMT *to_keymgmt, OSSL_LIB_CTX *libctx,
871 const char *propq)
872 {
873 return rsa_int_export_to(from, RSA_FLAG_TYPE_RSASSAPSS, to_keydata,
874 to_keymgmt, libctx, propq);
875 }
876
877 static int rsa_pkey_import_from(const OSSL_PARAM params[], void *vpctx)
878 {
879 return rsa_int_import_from(params, vpctx, RSA_FLAG_TYPE_RSA);
880 }
881
882 static int rsa_pss_pkey_import_from(const OSSL_PARAM params[], void *vpctx)
883 {
884 return rsa_int_import_from(params, vpctx, RSA_FLAG_TYPE_RSASSAPSS);
885 }
886
887 static ossl_inline int rsa_bn_dup_check(BIGNUM **out, const BIGNUM *f)
888 {
889 if (f != NULL && (*out = BN_dup(f)) == NULL)
890 return 0;
891 return 1;
892 }
893
894 static RSA *rsa_dup(const RSA *rsa)
895 {
896 RSA *dupkey = NULL;
897 int pnum, i;
898
899 /* Do not try to duplicate foreign RSA keys */
900 if (RSA_get_method(rsa) != RSA_PKCS1_OpenSSL())
901 return NULL;
902
903 if ((dupkey = ossl_rsa_new_with_ctx(rsa->libctx)) == NULL)
904 return NULL;
905
906 /* private and public key */
907 if (!rsa_bn_dup_check(&dupkey->n, rsa->n))
908 goto err;
909 if (!rsa_bn_dup_check(&dupkey->e, rsa->e))
910 goto err;
911 if (!rsa_bn_dup_check(&dupkey->d, rsa->d))
912 goto err;
913
914 /* factors and crt params */
915 if (!rsa_bn_dup_check(&dupkey->p, rsa->p))
916 goto err;
917 if (!rsa_bn_dup_check(&dupkey->q, rsa->q))
918 goto err;
919 if (!rsa_bn_dup_check(&dupkey->dmp1, rsa->dmp1))
920 goto err;
921 if (!rsa_bn_dup_check(&dupkey->dmq1, rsa->dmq1))
922 goto err;
923 if (!rsa_bn_dup_check(&dupkey->iqmp, rsa->iqmp))
924 goto err;
925
926 /* multiprime */
927 pnum = sk_RSA_PRIME_INFO_num(rsa->prime_infos);
928 if (pnum > 0) {
929 dupkey->prime_infos = sk_RSA_PRIME_INFO_new_reserve(NULL, pnum);
930 for (i = 0; i < pnum; i++) {
931 const RSA_PRIME_INFO *pinfo = NULL;
932 RSA_PRIME_INFO *duppinfo = NULL;
933
934 if ((duppinfo = OPENSSL_zalloc(sizeof(*duppinfo))) == NULL) {
935 ERR_raise(ERR_LIB_RSA, ERR_R_MALLOC_FAILURE);
936 goto err;
937 }
938 /* push first so cleanup in error case works */
939 (void)sk_RSA_PRIME_INFO_push(dupkey->prime_infos, duppinfo);
940
941 pinfo = sk_RSA_PRIME_INFO_value(rsa->prime_infos, i);
942 if (!rsa_bn_dup_check(&duppinfo->r, pinfo->r))
943 goto err;
944 if (!rsa_bn_dup_check(&duppinfo->d, pinfo->d))
945 goto err;
946 if (!rsa_bn_dup_check(&duppinfo->t, pinfo->t))
947 goto err;
948 }
949 if (!ossl_rsa_multip_calc_product(dupkey))
950 goto err;
951 }
952
953 dupkey->version = rsa->version;
954 dupkey->flags = rsa->flags;
955
956 dupkey->pss_params = rsa->pss_params;
957
958 if (rsa->pss != NULL) {
959 dupkey->pss = RSA_PSS_PARAMS_dup(rsa->pss);
960 if (rsa->pss->maskGenAlgorithm != NULL
961 && dupkey->pss->maskGenAlgorithm == NULL) {
962 dupkey->pss->maskHash = ossl_x509_algor_mgf1_decode(rsa->pss->maskGenAlgorithm);
963 if (dupkey->pss->maskHash == NULL)
964 goto err;
965 }
966 }
967
968 if (!CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_RSA,
969 &dupkey->ex_data, &rsa->ex_data))
970 goto err;
971
972 return dupkey;
973
974 err:
975 RSA_free(dupkey);
976 return NULL;
977 }
978
979 static int rsa_pkey_copy(EVP_PKEY *to, EVP_PKEY *from)
980 {
981 RSA *rsa = from->pkey.rsa;
982 RSA *dupkey = NULL;
983 int ret;
984
985 if (rsa != NULL) {
986 dupkey = rsa_dup(rsa);
987 if (dupkey == NULL)
988 return 0;
989 }
990
991 ret = EVP_PKEY_assign(to, from->type, dupkey);
992 if (!ret)
993 RSA_free(dupkey);
994 return ret;
995 }
996
997 const EVP_PKEY_ASN1_METHOD ossl_rsa_asn1_meths[2] = {
998 {
999 EVP_PKEY_RSA,
1000 EVP_PKEY_RSA,
1001 ASN1_PKEY_SIGPARAM_NULL,
1002
1003 "RSA",
1004 "OpenSSL RSA method",
1005
1006 rsa_pub_decode,
1007 rsa_pub_encode,
1008 rsa_pub_cmp,
1009 rsa_pub_print,
1010
1011 rsa_priv_decode,
1012 rsa_priv_encode,
1013 rsa_priv_print,
1014
1015 int_rsa_size,
1016 rsa_bits,
1017 rsa_security_bits,
1018
1019 0, 0, 0, 0, 0, 0,
1020
1021 rsa_sig_print,
1022 int_rsa_free,
1023 rsa_pkey_ctrl,
1024 old_rsa_priv_decode,
1025 old_rsa_priv_encode,
1026 rsa_item_verify,
1027 rsa_item_sign,
1028 rsa_sig_info_set,
1029 rsa_pkey_check,
1030
1031 0, 0,
1032 0, 0, 0, 0,
1033
1034 rsa_pkey_dirty_cnt,
1035 rsa_pkey_export_to,
1036 rsa_pkey_import_from,
1037 rsa_pkey_copy
1038 },
1039
1040 {
1041 EVP_PKEY_RSA2,
1042 EVP_PKEY_RSA,
1043 ASN1_PKEY_ALIAS}
1044 };
1045
1046 const EVP_PKEY_ASN1_METHOD ossl_rsa_pss_asn1_meth = {
1047 EVP_PKEY_RSA_PSS,
1048 EVP_PKEY_RSA_PSS,
1049 ASN1_PKEY_SIGPARAM_NULL,
1050
1051 "RSA-PSS",
1052 "OpenSSL RSA-PSS method",
1053
1054 rsa_pub_decode,
1055 rsa_pub_encode,
1056 rsa_pub_cmp,
1057 rsa_pub_print,
1058
1059 rsa_priv_decode,
1060 rsa_priv_encode,
1061 rsa_priv_print,
1062
1063 int_rsa_size,
1064 rsa_bits,
1065 rsa_security_bits,
1066
1067 0, 0, 0, 0, 0, 0,
1068
1069 rsa_sig_print,
1070 int_rsa_free,
1071 rsa_pkey_ctrl,
1072 0, 0,
1073 rsa_item_verify,
1074 rsa_item_sign,
1075 rsa_sig_info_set,
1076 rsa_pkey_check,
1077
1078 0, 0,
1079 0, 0, 0, 0,
1080
1081 rsa_pkey_dirty_cnt,
1082 rsa_pss_pkey_export_to,
1083 rsa_pss_pkey_import_from,
1084 rsa_pkey_copy
1085 };