blob: 9c286c6861177c4866bde6b43e3697205b05f731 [file] [log] [blame]
David Benjamin4969cc92016-04-22 15:02:23 -04001/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
2 * project 2006.
3 */
4/* ====================================================================
5 * Copyright (c) 2006 The OpenSSL Project. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 *
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 *
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in
16 * the documentation and/or other materials provided with the
17 * distribution.
18 *
19 * 3. All advertising materials mentioning features or use of this
20 * software must display the following acknowledgment:
21 * "This product includes software developed by the OpenSSL Project
22 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
23 *
24 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
25 * endorse or promote products derived from this software without
26 * prior written permission. For written permission, please contact
27 * licensing@OpenSSL.org.
28 *
29 * 5. Products derived from this software may not be called "OpenSSL"
30 * nor may "OpenSSL" appear in their names without prior written
31 * permission of the OpenSSL Project.
32 *
33 * 6. Redistributions of any form whatsoever must retain the following
34 * acknowledgment:
35 * "This product includes software developed by the OpenSSL Project
36 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
37 *
38 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
39 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
40 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
41 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
42 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
43 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
44 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
45 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
46 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
47 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
48 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
49 * OF THE POSSIBILITY OF SUCH DAMAGE.
50 * ====================================================================
51 *
52 * This product includes cryptographic software written by Eric Young
53 * (eay@cryptsoft.com). This product includes software written by Tim
54 * Hudson (tjh@cryptsoft.com). */
55
56#include <openssl/x509.h>
57
58#include <assert.h>
59
60#include <openssl/asn1.h>
61#include <openssl/asn1t.h>
62#include <openssl/bio.h>
63#include <openssl/evp.h>
64#include <openssl/err.h>
65#include <openssl/obj.h>
66
67#include "internal.h"
68
69
70ASN1_SEQUENCE(RSA_PSS_PARAMS) = {
71 ASN1_EXP_OPT(RSA_PSS_PARAMS, hashAlgorithm, X509_ALGOR,0),
72 ASN1_EXP_OPT(RSA_PSS_PARAMS, maskGenAlgorithm, X509_ALGOR,1),
73 ASN1_EXP_OPT(RSA_PSS_PARAMS, saltLength, ASN1_INTEGER,2),
74 ASN1_EXP_OPT(RSA_PSS_PARAMS, trailerField, ASN1_INTEGER,3),
David Benjamin7c0d06c2016-08-11 13:26:41 -040075} ASN1_SEQUENCE_END(RSA_PSS_PARAMS)
David Benjamin4969cc92016-04-22 15:02:23 -040076
David Benjamin7c0d06c2016-08-11 13:26:41 -040077IMPLEMENT_ASN1_FUNCTIONS(RSA_PSS_PARAMS)
David Benjamin4969cc92016-04-22 15:02:23 -040078
79
80/* Given an MGF1 Algorithm ID decode to an Algorithm Identifier */
81static X509_ALGOR *rsa_mgf1_decode(X509_ALGOR *alg) {
82 if (alg == NULL || alg->parameter == NULL ||
83 OBJ_obj2nid(alg->algorithm) != NID_mgf1 ||
84 alg->parameter->type != V_ASN1_SEQUENCE) {
85 return NULL;
86 }
87
88 const uint8_t *p = alg->parameter->value.sequence->data;
89 int plen = alg->parameter->value.sequence->length;
90 return d2i_X509_ALGOR(NULL, &p, plen);
91}
92
93static RSA_PSS_PARAMS *rsa_pss_decode(const X509_ALGOR *alg,
94 X509_ALGOR **pmaskHash) {
95 *pmaskHash = NULL;
96
97 if (alg->parameter == NULL || alg->parameter->type != V_ASN1_SEQUENCE) {
98 return NULL;
99 }
100
101 const uint8_t *p = alg->parameter->value.sequence->data;
102 int plen = alg->parameter->value.sequence->length;
103 RSA_PSS_PARAMS *pss = d2i_RSA_PSS_PARAMS(NULL, &p, plen);
104 if (pss == NULL) {
105 return NULL;
106 }
107
108 *pmaskHash = rsa_mgf1_decode(pss->maskGenAlgorithm);
109 return pss;
110}
111
112/* allocate and set algorithm ID from EVP_MD, default SHA1 */
113static int rsa_md_to_algor(X509_ALGOR **palg, const EVP_MD *md) {
114 if (EVP_MD_type(md) == NID_sha1) {
115 return 1;
116 }
117 *palg = X509_ALGOR_new();
118 if (*palg == NULL) {
119 return 0;
120 }
121 X509_ALGOR_set_md(*palg, md);
122 return 1;
123}
124
125/* Allocate and set MGF1 algorithm ID from EVP_MD */
126static int rsa_md_to_mgf1(X509_ALGOR **palg, const EVP_MD *mgf1md) {
127 X509_ALGOR *algtmp = NULL;
128 ASN1_STRING *stmp = NULL;
129 *palg = NULL;
130
131 if (EVP_MD_type(mgf1md) == NID_sha1) {
132 return 1;
133 }
134 /* need to embed algorithm ID inside another */
135 if (!rsa_md_to_algor(&algtmp, mgf1md) ||
136 !ASN1_item_pack(algtmp, ASN1_ITEM_rptr(X509_ALGOR), &stmp)) {
137 goto err;
138 }
139 *palg = X509_ALGOR_new();
140 if (!*palg) {
141 goto err;
142 }
143 X509_ALGOR_set0(*palg, OBJ_nid2obj(NID_mgf1), V_ASN1_SEQUENCE, stmp);
144 stmp = NULL;
145
146err:
147 ASN1_STRING_free(stmp);
148 X509_ALGOR_free(algtmp);
149 if (*palg) {
150 return 1;
151 }
152
153 return 0;
154}
155
156/* convert algorithm ID to EVP_MD, default SHA1 */
157static const EVP_MD *rsa_algor_to_md(X509_ALGOR *alg) {
158 const EVP_MD *md;
159 if (!alg) {
160 return EVP_sha1();
161 }
162 md = EVP_get_digestbyobj(alg->algorithm);
163 if (md == NULL) {
164 OPENSSL_PUT_ERROR(X509, X509_R_INVALID_PSS_PARAMETERS);
165 }
166 return md;
167}
168
169/* convert MGF1 algorithm ID to EVP_MD, default SHA1 */
170static const EVP_MD *rsa_mgf1_to_md(X509_ALGOR *alg, X509_ALGOR *maskHash) {
171 const EVP_MD *md;
172 if (!alg) {
173 return EVP_sha1();
174 }
175 /* Check mask and lookup mask hash algorithm */
176 if (OBJ_obj2nid(alg->algorithm) != NID_mgf1 ||
177 maskHash == NULL) {
178 OPENSSL_PUT_ERROR(X509, X509_R_INVALID_PSS_PARAMETERS);
179 return NULL;
180 }
181 md = EVP_get_digestbyobj(maskHash->algorithm);
182 if (md == NULL) {
183 OPENSSL_PUT_ERROR(X509, X509_R_INVALID_PSS_PARAMETERS);
184 return NULL;
185 }
186 return md;
187}
188
189int x509_rsa_ctx_to_pss(EVP_MD_CTX *ctx, X509_ALGOR *algor) {
190 const EVP_MD *sigmd, *mgf1md;
191 int saltlen;
192 if (!EVP_PKEY_CTX_get_signature_md(ctx->pctx, &sigmd) ||
193 !EVP_PKEY_CTX_get_rsa_mgf1_md(ctx->pctx, &mgf1md) ||
194 !EVP_PKEY_CTX_get_rsa_pss_saltlen(ctx->pctx, &saltlen)) {
195 return 0;
196 }
197
198 EVP_PKEY *pk = EVP_PKEY_CTX_get0_pkey(ctx->pctx);
199 if (saltlen == -1) {
200 saltlen = EVP_MD_size(sigmd);
201 } else if (saltlen == -2) {
202 saltlen = EVP_PKEY_size(pk) - EVP_MD_size(sigmd) - 2;
203 if (((EVP_PKEY_bits(pk) - 1) & 0x7) == 0) {
204 saltlen--;
205 }
206 } else {
207 return 0;
208 }
209
210 int ret = 0;
211 ASN1_STRING *os = NULL;
212 RSA_PSS_PARAMS *pss = RSA_PSS_PARAMS_new();
213 if (!pss) {
214 goto err;
215 }
216
217 if (saltlen != 20) {
218 pss->saltLength = ASN1_INTEGER_new();
219 if (!pss->saltLength ||
220 !ASN1_INTEGER_set(pss->saltLength, saltlen)) {
221 goto err;
222 }
223 }
224
225 if (!rsa_md_to_algor(&pss->hashAlgorithm, sigmd) ||
226 !rsa_md_to_mgf1(&pss->maskGenAlgorithm, mgf1md)) {
227 goto err;
228 }
229
230 /* Finally create string with pss parameter encoding. */
231 if (!ASN1_item_pack(pss, ASN1_ITEM_rptr(RSA_PSS_PARAMS), &os)) {
232 goto err;
233 }
234
235 X509_ALGOR_set0(algor, OBJ_nid2obj(NID_rsassaPss), V_ASN1_SEQUENCE, os);
236 os = NULL;
237 ret = 1;
238
239err:
240 RSA_PSS_PARAMS_free(pss);
241 ASN1_STRING_free(os);
242 return ret;
243}
244
Robert Sloan572a4e22017-04-17 10:52:19 -0700245int x509_rsa_pss_to_ctx(EVP_PKEY_CTX *ctx, X509_ALGOR *sigalg) {
David Benjamin4969cc92016-04-22 15:02:23 -0400246 assert(OBJ_obj2nid(sigalg->algorithm) == NID_rsassaPss);
247
248 /* Decode PSS parameters */
249 int ret = 0;
250 X509_ALGOR *maskHash;
251 RSA_PSS_PARAMS *pss = rsa_pss_decode(sigalg, &maskHash);
252 if (pss == NULL) {
253 OPENSSL_PUT_ERROR(X509, X509_R_INVALID_PSS_PARAMETERS);
254 goto err;
255 }
256
257 const EVP_MD *mgf1md = rsa_mgf1_to_md(pss->maskGenAlgorithm, maskHash);
258 const EVP_MD *md = rsa_algor_to_md(pss->hashAlgorithm);
259 if (mgf1md == NULL || md == NULL) {
260 goto err;
261 }
262
263 int saltlen = 20;
264 if (pss->saltLength != NULL) {
265 saltlen = ASN1_INTEGER_get(pss->saltLength);
266
267 /* Could perform more salt length sanity checks but the main
268 * RSA routines will trap other invalid values anyway. */
269 if (saltlen < 0) {
270 OPENSSL_PUT_ERROR(X509, X509_R_INVALID_PSS_PARAMETERS);
271 goto err;
272 }
273 }
274
275 /* low-level routines support only trailer field 0xbc (value 1)
276 * and PKCS#1 says we should reject any other value anyway. */
277 if (pss->trailerField != NULL && ASN1_INTEGER_get(pss->trailerField) != 1) {
278 OPENSSL_PUT_ERROR(X509, X509_R_INVALID_PSS_PARAMETERS);
279 goto err;
280 }
281
Robert Sloan572a4e22017-04-17 10:52:19 -0700282 if (!EVP_PKEY_CTX_set_signature_md(ctx, md) ||
283 !EVP_PKEY_CTX_set_rsa_padding(ctx, RSA_PKCS1_PSS_PADDING) ||
284 !EVP_PKEY_CTX_set_rsa_pss_saltlen(ctx, saltlen) ||
285 !EVP_PKEY_CTX_set_rsa_mgf1_md(ctx, mgf1md)) {
David Benjamin4969cc92016-04-22 15:02:23 -0400286 goto err;
287 }
288
289 ret = 1;
290
291err:
292 RSA_PSS_PARAMS_free(pss);
293 X509_ALGOR_free(maskHash);
294 return ret;
295}
296
297int x509_print_rsa_pss_params(BIO *bp, const X509_ALGOR *sigalg, int indent,
298 ASN1_PCTX *pctx) {
299 assert(OBJ_obj2nid(sigalg->algorithm) == NID_rsassaPss);
300
301 int rv = 0;
302 X509_ALGOR *maskHash;
303 RSA_PSS_PARAMS *pss = rsa_pss_decode(sigalg, &maskHash);
304 if (!pss) {
305 if (BIO_puts(bp, " (INVALID PSS PARAMETERS)\n") <= 0) {
306 goto err;
307 }
308 rv = 1;
309 goto err;
310 }
311
312 if (BIO_puts(bp, "\n") <= 0 ||
313 !BIO_indent(bp, indent, 128) ||
314 BIO_puts(bp, "Hash Algorithm: ") <= 0) {
315 goto err;
316 }
317
318 if (pss->hashAlgorithm) {
319 if (i2a_ASN1_OBJECT(bp, pss->hashAlgorithm->algorithm) <= 0) {
320 goto err;
321 }
322 } else if (BIO_puts(bp, "sha1 (default)") <= 0) {
323 goto err;
324 }
325
326 if (BIO_puts(bp, "\n") <= 0 ||
327 !BIO_indent(bp, indent, 128) ||
328 BIO_puts(bp, "Mask Algorithm: ") <= 0) {
329 goto err;
330 }
331
332 if (pss->maskGenAlgorithm) {
333 if (i2a_ASN1_OBJECT(bp, pss->maskGenAlgorithm->algorithm) <= 0 ||
334 BIO_puts(bp, " with ") <= 0) {
335 goto err;
336 }
337
338 if (maskHash) {
339 if (i2a_ASN1_OBJECT(bp, maskHash->algorithm) <= 0) {
340 goto err;
341 }
342 } else if (BIO_puts(bp, "INVALID") <= 0) {
343 goto err;
344 }
345 } else if (BIO_puts(bp, "mgf1 with sha1 (default)") <= 0) {
346 goto err;
347 }
348 BIO_puts(bp, "\n");
349
350 if (!BIO_indent(bp, indent, 128) ||
351 BIO_puts(bp, "Salt Length: 0x") <= 0) {
352 goto err;
353 }
354
355 if (pss->saltLength) {
356 if (i2a_ASN1_INTEGER(bp, pss->saltLength) <= 0) {
357 goto err;
358 }
359 } else if (BIO_puts(bp, "14 (default)") <= 0) {
360 goto err;
361 }
362 BIO_puts(bp, "\n");
363
364 if (!BIO_indent(bp, indent, 128) ||
365 BIO_puts(bp, "Trailer Field: 0x") <= 0) {
366 goto err;
367 }
368
369 if (pss->trailerField) {
370 if (i2a_ASN1_INTEGER(bp, pss->trailerField) <= 0) {
371 goto err;
372 }
373 } else if (BIO_puts(bp, "BC (default)") <= 0) {
374 goto err;
375 }
376 BIO_puts(bp, "\n");
377
378 rv = 1;
379
380err:
381 RSA_PSS_PARAMS_free(pss);
382 X509_ALGOR_free(maskHash);
383 return rv;
384}