/src/openssl/crypto/dsa/dsa_backend.c
Line  | Count  | Source (jump to first uncovered line)  | 
1  |  | /*  | 
2  |  |  * Copyright 2020-2023 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  |  |  * DSA low level APIs are deprecated for public use, but still ok for  | 
12  |  |  * internal use.  | 
13  |  |  */  | 
14  |  | #include "internal/deprecated.h"  | 
15  |  |  | 
16  |  | #include <openssl/core_names.h>  | 
17  |  | #include <openssl/err.h>  | 
18  |  | #ifndef FIPS_MODULE  | 
19  |  | # include <openssl/x509.h>  | 
20  |  | #endif  | 
21  |  | #include "crypto/dsa.h"  | 
22  |  | #include "dsa_local.h"  | 
23  |  |  | 
24  |  | /*  | 
25  |  |  * The intention with the "backend" source file is to offer backend support  | 
26  |  |  * for legacy backends (EVP_PKEY_ASN1_METHOD and EVP_PKEY_METHOD) and provider  | 
27  |  |  * implementations alike.  | 
28  |  |  */  | 
29  |  |  | 
30  |  | int ossl_dsa_key_fromdata(DSA *dsa, const OSSL_PARAM params[],  | 
31  |  |                           int include_private)  | 
32  | 0  | { | 
33  | 0  |     const OSSL_PARAM *param_priv_key = NULL, *param_pub_key;  | 
34  | 0  |     BIGNUM *priv_key = NULL, *pub_key = NULL;  | 
35  |  | 
  | 
36  | 0  |     if (dsa == NULL)  | 
37  | 0  |         return 0;  | 
38  |  |  | 
39  | 0  |     if (include_private) { | 
40  | 0  |         param_priv_key =  | 
41  | 0  |             OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_PRIV_KEY);  | 
42  | 0  |     }  | 
43  | 0  |     param_pub_key =  | 
44  | 0  |         OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_PUB_KEY);  | 
45  |  |  | 
46  |  |     /* It's ok if neither half is present */  | 
47  | 0  |     if (param_priv_key == NULL && param_pub_key == NULL)  | 
48  | 0  |         return 1;  | 
49  |  |  | 
50  | 0  |     if (param_pub_key != NULL && !OSSL_PARAM_get_BN(param_pub_key, &pub_key))  | 
51  | 0  |         goto err;  | 
52  | 0  |     if (param_priv_key != NULL && !OSSL_PARAM_get_BN(param_priv_key, &priv_key))  | 
53  | 0  |         goto err;  | 
54  |  |  | 
55  | 0  |     if (!DSA_set0_key(dsa, pub_key, priv_key))  | 
56  | 0  |         goto err;  | 
57  |  |  | 
58  | 0  |     return 1;  | 
59  |  |  | 
60  | 0  |  err:  | 
61  | 0  |     BN_clear_free(priv_key);  | 
62  | 0  |     BN_free(pub_key);  | 
63  | 0  |     return 0;  | 
64  | 0  | }  | 
65  |  |  | 
66  |  | int ossl_dsa_is_foreign(const DSA *dsa)  | 
67  | 0  | { | 
68  | 0  | #ifndef FIPS_MODULE  | 
69  | 0  |     if (dsa->engine != NULL || DSA_get_method((DSA *)dsa) != DSA_OpenSSL())  | 
70  | 0  |         return 1;  | 
71  | 0  | #endif  | 
72  | 0  |     return 0;  | 
73  | 0  | }  | 
74  |  |  | 
75  |  | static ossl_inline int dsa_bn_dup_check(BIGNUM **out, const BIGNUM *f)  | 
76  | 0  | { | 
77  | 0  |     if (f != NULL && (*out = BN_dup(f)) == NULL)  | 
78  | 0  |         return 0;  | 
79  | 0  |     return 1;  | 
80  | 0  | }  | 
81  |  |  | 
82  |  | DSA *ossl_dsa_dup(const DSA *dsa, int selection)  | 
83  | 0  | { | 
84  | 0  |     DSA *dupkey = NULL;  | 
85  |  |  | 
86  |  |     /* Do not try to duplicate foreign DSA keys */  | 
87  | 0  |     if (ossl_dsa_is_foreign(dsa))  | 
88  | 0  |         return NULL;  | 
89  |  |  | 
90  | 0  |     if ((dupkey = ossl_dsa_new(dsa->libctx)) == NULL)  | 
91  | 0  |         return NULL;  | 
92  |  |  | 
93  | 0  |     if ((selection & OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) != 0  | 
94  | 0  |         && !ossl_ffc_params_copy(&dupkey->params, &dsa->params))  | 
95  | 0  |         goto err;  | 
96  |  |  | 
97  | 0  |     dupkey->flags = dsa->flags;  | 
98  |  | 
  | 
99  | 0  |     if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0  | 
100  | 0  |         && ((selection & OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) == 0  | 
101  | 0  |             || !dsa_bn_dup_check(&dupkey->pub_key, dsa->pub_key)))  | 
102  | 0  |         goto err;  | 
103  |  |  | 
104  | 0  |     if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0  | 
105  | 0  |         && ((selection & OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) == 0  | 
106  | 0  |             || !dsa_bn_dup_check(&dupkey->priv_key, dsa->priv_key)))  | 
107  | 0  |         goto err;  | 
108  |  |  | 
109  | 0  | #ifndef FIPS_MODULE  | 
110  | 0  |     if (!CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_DSA,  | 
111  | 0  |                             &dupkey->ex_data, &dsa->ex_data))  | 
112  | 0  |         goto err;  | 
113  | 0  | #endif  | 
114  |  |  | 
115  | 0  |     return dupkey;  | 
116  |  |  | 
117  | 0  |  err:  | 
118  | 0  |     DSA_free(dupkey);  | 
119  | 0  |     return NULL;  | 
120  | 0  | }  | 
121  |  |  | 
122  |  | #ifndef FIPS_MODULE  | 
123  |  | DSA *ossl_dsa_key_from_pkcs8(const PKCS8_PRIV_KEY_INFO *p8inf,  | 
124  |  |                              OSSL_LIB_CTX *libctx, const char *propq)  | 
125  | 0  | { | 
126  | 0  |     const unsigned char *p, *pm;  | 
127  | 0  |     int pklen, pmlen;  | 
128  | 0  |     int ptype;  | 
129  | 0  |     const void *pval;  | 
130  | 0  |     const ASN1_STRING *pstr;  | 
131  | 0  |     const X509_ALGOR *palg;  | 
132  | 0  |     ASN1_INTEGER *privkey = NULL;  | 
133  | 0  |     const BIGNUM *dsa_p, *dsa_g;  | 
134  | 0  |     BIGNUM *dsa_pubkey = NULL, *dsa_privkey = NULL;  | 
135  | 0  |     BN_CTX *ctx = NULL;  | 
136  |  | 
  | 
137  | 0  |     DSA *dsa = NULL;  | 
138  |  | 
  | 
139  | 0  |     if (!PKCS8_pkey_get0(NULL, &p, &pklen, &palg, p8inf))  | 
140  | 0  |         return 0;  | 
141  | 0  |     X509_ALGOR_get0(NULL, &ptype, &pval, palg);  | 
142  |  | 
  | 
143  | 0  |     if ((privkey = d2i_ASN1_INTEGER(NULL, &p, pklen)) == NULL)  | 
144  | 0  |         goto decerr;  | 
145  | 0  |     if (privkey->type == V_ASN1_NEG_INTEGER || ptype != V_ASN1_SEQUENCE)  | 
146  | 0  |         goto decerr;  | 
147  |  |  | 
148  | 0  |     pstr = pval;  | 
149  | 0  |     pm = pstr->data;  | 
150  | 0  |     pmlen = pstr->length;  | 
151  | 0  |     if ((dsa = d2i_DSAparams(NULL, &pm, pmlen)) == NULL)  | 
152  | 0  |         goto decerr;  | 
153  |  |     /* We have parameters now set private key */  | 
154  | 0  |     if ((dsa_privkey = BN_secure_new()) == NULL  | 
155  | 0  |         || !ASN1_INTEGER_to_BN(privkey, dsa_privkey)) { | 
156  | 0  |         ERR_raise(ERR_LIB_DSA, DSA_R_BN_ERROR);  | 
157  | 0  |         goto dsaerr;  | 
158  | 0  |     }  | 
159  |  |     /* Calculate public key */  | 
160  | 0  |     if ((dsa_pubkey = BN_new()) == NULL) { | 
161  | 0  |         ERR_raise(ERR_LIB_DSA, ERR_R_BN_LIB);  | 
162  | 0  |         goto dsaerr;  | 
163  | 0  |     }  | 
164  | 0  |     if ((ctx = BN_CTX_new()) == NULL) { | 
165  | 0  |         ERR_raise(ERR_LIB_DSA, ERR_R_BN_LIB);  | 
166  | 0  |         goto dsaerr;  | 
167  | 0  |     }  | 
168  |  |  | 
169  | 0  |     dsa_p = DSA_get0_p(dsa);  | 
170  | 0  |     dsa_g = DSA_get0_g(dsa);  | 
171  | 0  |     BN_set_flags(dsa_privkey, BN_FLG_CONSTTIME);  | 
172  | 0  |     if (!BN_mod_exp(dsa_pubkey, dsa_g, dsa_privkey, dsa_p, ctx)) { | 
173  | 0  |         ERR_raise(ERR_LIB_DSA, DSA_R_BN_ERROR);  | 
174  | 0  |         goto dsaerr;  | 
175  | 0  |     }  | 
176  | 0  |     if (!DSA_set0_key(dsa, dsa_pubkey, dsa_privkey)) { | 
177  | 0  |         ERR_raise(ERR_LIB_DSA, ERR_R_INTERNAL_ERROR);  | 
178  | 0  |         goto dsaerr;  | 
179  | 0  |     }  | 
180  |  |  | 
181  | 0  |     goto done;  | 
182  |  |  | 
183  | 0  |  decerr:  | 
184  | 0  |     ERR_raise(ERR_LIB_DSA, DSA_R_DECODE_ERROR);  | 
185  | 0  |  dsaerr:  | 
186  | 0  |     BN_free(dsa_privkey);  | 
187  | 0  |     BN_free(dsa_pubkey);  | 
188  | 0  |     DSA_free(dsa);  | 
189  | 0  |     dsa = NULL;  | 
190  | 0  |  done:  | 
191  | 0  |     BN_CTX_free(ctx);  | 
192  | 0  |     ASN1_STRING_clear_free(privkey);  | 
193  | 0  |     return dsa;  | 
194  | 0  | }  | 
195  |  | #endif  |