Update copyright year
[openssl.git] / crypto / cms / cms_rsa.c
1 /*
2  * Copyright 2006-2022 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 #include <assert.h>
11 #include <openssl/cms.h>
12 #include <openssl/err.h>
13 #include "crypto/asn1.h"
14 #include "crypto/rsa.h"
15 #include "cms_local.h"
16
17 static RSA_OAEP_PARAMS *rsa_oaep_decode(const X509_ALGOR *alg)
18 {
19     RSA_OAEP_PARAMS *oaep;
20
21     oaep = ASN1_TYPE_unpack_sequence(ASN1_ITEM_rptr(RSA_OAEP_PARAMS),
22                                      alg->parameter);
23
24     if (oaep == NULL)
25         return NULL;
26
27     if (oaep->maskGenFunc != NULL) {
28         oaep->maskHash = ossl_x509_algor_mgf1_decode(oaep->maskGenFunc);
29         if (oaep->maskHash == NULL) {
30             RSA_OAEP_PARAMS_free(oaep);
31             return NULL;
32         }
33     }
34     return oaep;
35 }
36
37 static int rsa_cms_decrypt(CMS_RecipientInfo *ri)
38 {
39     EVP_PKEY_CTX *pkctx;
40     X509_ALGOR *cmsalg;
41     int nid;
42     int rv = -1;
43     unsigned char *label = NULL;
44     int labellen = 0;
45     const EVP_MD *mgf1md = NULL, *md = NULL;
46     RSA_OAEP_PARAMS *oaep;
47
48     pkctx = CMS_RecipientInfo_get0_pkey_ctx(ri);
49     if (pkctx == NULL)
50         return 0;
51     if (!CMS_RecipientInfo_ktri_get0_algs(ri, NULL, NULL, &cmsalg))
52         return -1;
53     nid = OBJ_obj2nid(cmsalg->algorithm);
54     if (nid == NID_rsaEncryption)
55         return 1;
56     if (nid != NID_rsaesOaep) {
57         ERR_raise(ERR_LIB_CMS, CMS_R_UNSUPPORTED_ENCRYPTION_TYPE);
58         return -1;
59     }
60     /* Decode OAEP parameters */
61     oaep = rsa_oaep_decode(cmsalg);
62
63     if (oaep == NULL) {
64         ERR_raise(ERR_LIB_CMS, CMS_R_INVALID_OAEP_PARAMETERS);
65         goto err;
66     }
67
68     mgf1md = ossl_x509_algor_get_md(oaep->maskHash);
69     if (mgf1md == NULL)
70         goto err;
71     md = ossl_x509_algor_get_md(oaep->hashFunc);
72     if (md == NULL)
73         goto err;
74
75     if (oaep->pSourceFunc != NULL) {
76         X509_ALGOR *plab = oaep->pSourceFunc;
77
78         if (OBJ_obj2nid(plab->algorithm) != NID_pSpecified) {
79             ERR_raise(ERR_LIB_CMS, CMS_R_UNSUPPORTED_LABEL_SOURCE);
80             goto err;
81         }
82         if (plab->parameter->type != V_ASN1_OCTET_STRING) {
83             ERR_raise(ERR_LIB_CMS, CMS_R_INVALID_LABEL);
84             goto err;
85         }
86
87         label = plab->parameter->value.octet_string->data;
88         /* Stop label being freed when OAEP parameters are freed */
89         plab->parameter->value.octet_string->data = NULL;
90         labellen = plab->parameter->value.octet_string->length;
91     }
92
93     if (EVP_PKEY_CTX_set_rsa_padding(pkctx, RSA_PKCS1_OAEP_PADDING) <= 0)
94         goto err;
95     if (EVP_PKEY_CTX_set_rsa_oaep_md(pkctx, md) <= 0)
96         goto err;
97     if (EVP_PKEY_CTX_set_rsa_mgf1_md(pkctx, mgf1md) <= 0)
98         goto err;
99     if (label != NULL
100             && EVP_PKEY_CTX_set0_rsa_oaep_label(pkctx, label, labellen) <= 0)
101         goto err;
102     /* Carry on */
103     rv = 1;
104
105  err:
106     RSA_OAEP_PARAMS_free(oaep);
107     return rv;
108 }
109
110 static int rsa_cms_encrypt(CMS_RecipientInfo *ri)
111 {
112     const EVP_MD *md, *mgf1md;
113     RSA_OAEP_PARAMS *oaep = NULL;
114     ASN1_STRING *os = NULL;
115     X509_ALGOR *alg;
116     EVP_PKEY_CTX *pkctx = CMS_RecipientInfo_get0_pkey_ctx(ri);
117     int pad_mode = RSA_PKCS1_PADDING, rv = 0, labellen;
118     unsigned char *label;
119
120     if (CMS_RecipientInfo_ktri_get0_algs(ri, NULL, NULL, &alg) <= 0)
121         return 0;
122     if (pkctx != NULL) {
123         if (EVP_PKEY_CTX_get_rsa_padding(pkctx, &pad_mode) <= 0)
124             return 0;
125     }
126     if (pad_mode == RSA_PKCS1_PADDING)
127         return X509_ALGOR_set0(alg, OBJ_nid2obj(NID_rsaEncryption),
128                                V_ASN1_NULL, NULL);
129
130     /* Not supported */
131     if (pad_mode != RSA_PKCS1_OAEP_PADDING)
132         return 0;
133     if (EVP_PKEY_CTX_get_rsa_oaep_md(pkctx, &md) <= 0)
134         goto err;
135     if (EVP_PKEY_CTX_get_rsa_mgf1_md(pkctx, &mgf1md) <= 0)
136         goto err;
137     labellen = EVP_PKEY_CTX_get0_rsa_oaep_label(pkctx, &label);
138     if (labellen < 0)
139         goto err;
140     oaep = RSA_OAEP_PARAMS_new();
141     if (oaep == NULL)
142         goto err;
143     if (!ossl_x509_algor_new_from_md(&oaep->hashFunc, md))
144         goto err;
145     if (!ossl_x509_algor_md_to_mgf1(&oaep->maskGenFunc, mgf1md))
146         goto err;
147     if (labellen > 0) {
148         ASN1_OCTET_STRING *los = ASN1_OCTET_STRING_new();
149
150         if (los == NULL)
151             goto err;
152         if (!ASN1_OCTET_STRING_set(los, label, labellen)) {
153             ASN1_OCTET_STRING_free(los);
154             goto err;
155         }
156         oaep->pSourceFunc = ossl_X509_ALGOR_from_nid(NID_pSpecified,
157                                                      V_ASN1_OCTET_STRING, los);
158         if (oaep->pSourceFunc == NULL)
159             goto err;
160     }
161     /* create string with pss parameter encoding. */
162     if (!ASN1_item_pack(oaep, ASN1_ITEM_rptr(RSA_OAEP_PARAMS), &os))
163         goto err;
164     if (!X509_ALGOR_set0(alg, OBJ_nid2obj(NID_rsaesOaep), V_ASN1_SEQUENCE, os))
165         goto err;
166     os = NULL;
167     rv = 1;
168  err:
169     RSA_OAEP_PARAMS_free(oaep);
170     ASN1_STRING_free(os);
171     return rv;
172 }
173
174 int ossl_cms_rsa_envelope(CMS_RecipientInfo *ri, int decrypt)
175 {
176     assert(decrypt == 0 || decrypt == 1);
177
178     if (decrypt == 1)
179         return rsa_cms_decrypt(ri);
180
181     if (decrypt == 0)
182         return rsa_cms_encrypt(ri);
183
184     ERR_raise(ERR_LIB_CMS, CMS_R_NOT_SUPPORTED_FOR_THIS_KEY_TYPE);
185     return 0;
186 }
187
188 static int rsa_cms_sign(CMS_SignerInfo *si)
189 {
190     int pad_mode = RSA_PKCS1_PADDING;
191     X509_ALGOR *alg;
192     EVP_PKEY_CTX *pkctx = CMS_SignerInfo_get0_pkey_ctx(si);
193     ASN1_STRING *os = NULL;
194
195     CMS_SignerInfo_get0_algs(si, NULL, NULL, NULL, &alg);
196     if (pkctx != NULL) {
197         if (EVP_PKEY_CTX_get_rsa_padding(pkctx, &pad_mode) <= 0)
198             return 0;
199     }
200     if (pad_mode == RSA_PKCS1_PADDING)
201         return X509_ALGOR_set0(alg, OBJ_nid2obj(NID_rsaEncryption),
202                                V_ASN1_NULL, NULL);
203
204     /* We don't support it */
205     if (pad_mode != RSA_PKCS1_PSS_PADDING)
206         return 0;
207     os = ossl_rsa_ctx_to_pss_string(pkctx);
208     if (os == NULL)
209         return 0;
210     if (X509_ALGOR_set0(alg, OBJ_nid2obj(EVP_PKEY_RSA_PSS),
211                         V_ASN1_SEQUENCE, os))
212         return 1;
213     ASN1_STRING_free(os);
214     return 0;
215 }
216
217 static int rsa_cms_verify(CMS_SignerInfo *si)
218 {
219     int nid, nid2;
220     X509_ALGOR *alg;
221     EVP_PKEY_CTX *pkctx = CMS_SignerInfo_get0_pkey_ctx(si);
222     EVP_PKEY *pkey = EVP_PKEY_CTX_get0_pkey(pkctx);
223
224     CMS_SignerInfo_get0_algs(si, NULL, NULL, NULL, &alg);
225     nid = OBJ_obj2nid(alg->algorithm);
226     if (nid == EVP_PKEY_RSA_PSS)
227         return ossl_rsa_pss_to_ctx(NULL, pkctx, alg, NULL) > 0;
228     /* Only PSS allowed for PSS keys */
229     if (EVP_PKEY_is_a(pkey, "RSA-PSS")) {
230         ERR_raise(ERR_LIB_RSA, RSA_R_ILLEGAL_OR_UNSUPPORTED_PADDING_MODE);
231         return 0;
232     }
233     if (nid == NID_rsaEncryption)
234         return 1;
235     /* Workaround for some implementation that use a signature OID */
236     if (OBJ_find_sigid_algs(nid, NULL, &nid2)) {
237         if (nid2 == NID_rsaEncryption)
238             return 1;
239     }
240     return 0;
241 }
242
243 int ossl_cms_rsa_sign(CMS_SignerInfo *si, int verify)
244 {
245     assert(verify == 0 || verify == 1);
246
247     if (verify == 1)
248         return rsa_cms_verify(si);
249
250     if (verify == 0)
251         return rsa_cms_sign(si);
252
253     ERR_raise(ERR_LIB_CMS, CMS_R_NOT_SUPPORTED_FOR_THIS_KEY_TYPE);
254     return 0;
255 }