]> git.ipfire.org Git - thirdparty/openssl.git/blame - providers/implementations/keymgmt/dsa_kmgmt.c
Update copyright year
[thirdparty/openssl.git] / providers / implementations / keymgmt / dsa_kmgmt.c
CommitLineData
4889dadc 1/*
fecb3aae 2 * Copyright 2019-2022 The OpenSSL Project Authors. All Rights Reserved.
4889dadc
MC
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
f41ac0ee
P
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
23c48d94 16#include <openssl/core_dispatch.h>
4889dadc
MC
17#include <openssl/core_names.h>
18#include <openssl/bn.h>
b03ec3b5 19#include <openssl/err.h>
1640d48c 20#include "prov/providercommon.h"
b03ec3b5 21#include "prov/implementations.h"
e683582b
SL
22#include "prov/provider_ctx.h"
23#include "crypto/dsa.h"
b03ec3b5
SL
24#include "internal/sizes.h"
25#include "internal/nelem.h"
26#include "internal/param_build_set.h"
4889dadc 27
363b1e5d
DMSP
28static OSSL_FUNC_keymgmt_new_fn dsa_newdata;
29static OSSL_FUNC_keymgmt_free_fn dsa_freedata;
30static OSSL_FUNC_keymgmt_gen_init_fn dsa_gen_init;
31static OSSL_FUNC_keymgmt_gen_set_template_fn dsa_gen_set_template;
32static OSSL_FUNC_keymgmt_gen_set_params_fn dsa_gen_set_params;
33static OSSL_FUNC_keymgmt_gen_settable_params_fn dsa_gen_settable_params;
34static OSSL_FUNC_keymgmt_gen_fn dsa_gen;
35static OSSL_FUNC_keymgmt_gen_cleanup_fn dsa_gen_cleanup;
7c664b1f 36static OSSL_FUNC_keymgmt_load_fn dsa_load;
363b1e5d
DMSP
37static OSSL_FUNC_keymgmt_get_params_fn dsa_get_params;
38static OSSL_FUNC_keymgmt_gettable_params_fn dsa_gettable_params;
39static OSSL_FUNC_keymgmt_has_fn dsa_has;
40static OSSL_FUNC_keymgmt_match_fn dsa_match;
41static OSSL_FUNC_keymgmt_validate_fn dsa_validate;
42static OSSL_FUNC_keymgmt_import_fn dsa_import;
43static OSSL_FUNC_keymgmt_import_types_fn dsa_import_types;
44static OSSL_FUNC_keymgmt_export_fn dsa_export;
45static OSSL_FUNC_keymgmt_export_types_fn dsa_export_types;
4a9fe33c 46static OSSL_FUNC_keymgmt_dup_fn dsa_dup;
4889dadc 47
8baa49ae 48#define DSA_DEFAULT_MD "SHA256"
b03ec3b5 49#define DSA_POSSIBLE_SELECTIONS \
273a67e3 50 (OSSL_KEYMGMT_SELECT_KEYPAIR | OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS)
8baa49ae 51
b03ec3b5 52struct dsa_gen_ctx {
b4250010 53 OSSL_LIB_CTX *libctx;
b03ec3b5
SL
54
55 FFC_PARAMS *ffc_params;
56 int selection;
57 /* All these parameters are used for parameter generation only */
58 size_t pbits;
59 size_t qbits;
b03ec3b5
SL
60 unsigned char *seed; /* optional FIPS186-4 param for testing */
61 size_t seedlen;
62 int gindex; /* optional FIPS186-4 generator index (ignored if -1) */
63 int gen_type; /* DSA_PARAMGEN_TYPE_FIPS_186_2 or DSA_PARAMGEN_TYPE_FIPS_186_4 */
64 int pcounter;
65 int hindex;
f2a71518
SL
66 char *mdname;
67 char *mdprops;
b03ec3b5
SL
68 OSSL_CALLBACK *cb;
69 void *cbarg;
70};
71typedef struct dh_name2id_st{
72 const char *name;
73 int id;
74} DSA_GENTYPE_NAME2ID;
13aa5d29 75
b03ec3b5
SL
76static const DSA_GENTYPE_NAME2ID dsatype2id[]=
77{
f1d66708 78#ifdef FIPS_MODULE
b03ec3b5 79 { "default", DSA_PARAMGEN_TYPE_FIPS_186_4 },
f1d66708 80#else
3a37ddde 81 { "default", DSA_PARAMGEN_TYPE_FIPS_DEFAULT },
f1d66708 82#endif
b03ec3b5
SL
83 { "fips186_4", DSA_PARAMGEN_TYPE_FIPS_186_4 },
84 { "fips186_2", DSA_PARAMGEN_TYPE_FIPS_186_2 },
85};
13aa5d29 86
b03ec3b5
SL
87static int dsa_gen_type_name2id(const char *name)
88{
89 size_t i;
13aa5d29 90
b03ec3b5 91 for (i = 0; i < OSSL_NELEM(dsatype2id); ++i) {
fba140c7 92 if (OPENSSL_strcasecmp(dsatype2id[i].name, name) == 0)
b03ec3b5
SL
93 return dsatype2id[i].id;
94 }
95 return -1;
13aa5d29
RL
96}
97
944f822a 98static int dsa_key_todata(DSA *dsa, OSSL_PARAM_BLD *bld, OSSL_PARAM params[],
99 int include_private)
13aa5d29 100{
b03ec3b5 101 const BIGNUM *priv = NULL, *pub = NULL;
13aa5d29
RL
102
103 if (dsa == NULL)
104 return 0;
13aa5d29 105
b03ec3b5 106 DSA_get0_key(dsa, &pub, &priv);
944f822a 107 if (include_private
108 && priv != NULL
b03ec3b5 109 && !ossl_param_build_set_bn(bld, params, OSSL_PKEY_PARAM_PRIV_KEY, priv))
13aa5d29 110 return 0;
b03ec3b5
SL
111 if (pub != NULL
112 && !ossl_param_build_set_bn(bld, params, OSSL_PKEY_PARAM_PUB_KEY, pub))
13aa5d29
RL
113 return 0;
114
115 return 1;
116}
117
8dd5c603 118static void *dsa_newdata(void *provctx)
073f59c4 119{
422cbcee
P
120 if (!ossl_prov_is_running())
121 return NULL;
5af02212 122 return ossl_dsa_new(PROV_LIBCTX_OF(provctx));
073f59c4
RL
123}
124
8dd5c603 125static void dsa_freedata(void *keydata)
13aa5d29 126{
8dd5c603
RL
127 DSA_free(keydata);
128}
1640d48c 129
3d914185 130static int dsa_has(const void *keydata, int selection)
8dd5c603 131{
3d914185 132 const DSA *dsa = keydata;
9a485440
TM
133 int ok = 1;
134
135 if (!ossl_prov_is_running() || dsa == NULL)
136 return 0;
137 if ((selection & DSA_POSSIBLE_SELECTIONS) == 0)
138 return 1; /* the selection is not missing */
139
140 if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0)
141 ok = ok && (DSA_get0_pub_key(dsa) != NULL);
142 if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0)
143 ok = ok && (DSA_get0_priv_key(dsa) != NULL);
144 if ((selection & OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) != 0)
145 ok = ok && (DSA_get0_p(dsa) != NULL && DSA_get0_g(dsa) != NULL);
8dd5c603 146 return ok;
13aa5d29
RL
147}
148
2888fc15
RL
149static int dsa_match(const void *keydata1, const void *keydata2, int selection)
150{
151 const DSA *dsa1 = keydata1;
152 const DSA *dsa2 = keydata2;
153 int ok = 1;
154
422cbcee
P
155 if (!ossl_prov_is_running())
156 return 0;
157
ee22a374
RL
158 if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0) {
159 int key_checked = 0;
160
161 if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0) {
162 const BIGNUM *pa = DSA_get0_pub_key(dsa1);
163 const BIGNUM *pb = DSA_get0_pub_key(dsa2);
164
165 if (pa != NULL && pb != NULL) {
166 ok = ok && BN_cmp(pa, pb) == 0;
167 key_checked = 1;
168 }
169 }
170 if (!key_checked
171 && (selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0) {
172 const BIGNUM *pa = DSA_get0_priv_key(dsa1);
173 const BIGNUM *pb = DSA_get0_priv_key(dsa2);
174
175 if (pa != NULL && pb != NULL) {
176 ok = ok && BN_cmp(pa, pb) == 0;
177 key_checked = 1;
178 }
179 }
180 ok = ok && key_checked;
181 }
2888fc15 182 if ((selection & OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) != 0) {
5af02212
SL
183 FFC_PARAMS *dsaparams1 = ossl_dsa_get0_params((DSA *)dsa1);
184 FFC_PARAMS *dsaparams2 = ossl_dsa_get0_params((DSA *)dsa2);
2888fc15 185
5357c106 186 ok = ok && ossl_ffc_params_cmp(dsaparams1, dsaparams2, 1);
2888fc15
RL
187 }
188 return ok;
189}
190
8dd5c603 191static int dsa_import(void *keydata, int selection, const OSSL_PARAM params[])
4889dadc 192{
8dd5c603 193 DSA *dsa = keydata;
b03ec3b5 194 int ok = 1;
8dd5c603 195
422cbcee 196 if (!ossl_prov_is_running() || dsa == NULL)
8dd5c603
RL
197 return 0;
198
b03ec3b5
SL
199 if ((selection & DSA_POSSIBLE_SELECTIONS) == 0)
200 return 0;
8dd5c603
RL
201
202 if ((selection & OSSL_KEYMGMT_SELECT_ALL_PARAMETERS) != 0)
5af02212 203 ok = ok && ossl_dsa_ffc_params_fromdata(dsa, params);
944f822a 204 if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0) {
205 int include_private =
206 selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY ? 1 : 0;
207
208 ok = ok && ossl_dsa_key_fromdata(dsa, params, include_private);
209 }
8dd5c603
RL
210
211 return ok;
4889dadc
MC
212}
213
8dd5c603
RL
214static int dsa_export(void *keydata, int selection, OSSL_CALLBACK *param_cb,
215 void *cbarg)
13aa5d29 216{
8dd5c603 217 DSA *dsa = keydata;
0da3b39a 218 OSSL_PARAM_BLD *tmpl;
1640d48c 219 OSSL_PARAM *params = NULL;
8dd5c603
RL
220 int ok = 1;
221
422cbcee 222 if (!ossl_prov_is_running() || dsa == NULL)
0da3b39a 223 return 0;
224
225 tmpl = OSSL_PARAM_BLD_new();
226 if (tmpl == NULL)
227 return 0;
8dd5c603
RL
228
229 if ((selection & OSSL_KEYMGMT_SELECT_ALL_PARAMETERS) != 0)
5af02212 230 ok = ok && ossl_ffc_params_todata(ossl_dsa_get0_params(dsa), tmpl, NULL);
944f822a 231 if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0) {
232 int include_private =
233 selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY ? 1 : 0;
234
235 ok = ok && dsa_key_todata(dsa, tmpl, NULL, include_private);
236 }
8dd5c603
RL
237
238 if (!ok
6d4e6009 239 || (params = OSSL_PARAM_BLD_to_param(tmpl)) == NULL)
a732a4c3 240 goto err;
8dd5c603
RL
241
242 ok = param_cb(params, cbarg);
3f883c7c 243 OSSL_PARAM_free(params);
6d4e6009
P
244err:
245 OSSL_PARAM_BLD_free(tmpl);
8dd5c603 246 return ok;
13aa5d29
RL
247}
248
273a67e3
RL
249/* IMEXPORT = IMPORT + EXPORT */
250
b03ec3b5
SL
251# define DSA_IMEXPORTABLE_PARAMETERS \
252 OSSL_PARAM_BN(OSSL_PKEY_PARAM_FFC_P, NULL, 0), \
253 OSSL_PARAM_BN(OSSL_PKEY_PARAM_FFC_Q, NULL, 0), \
254 OSSL_PARAM_BN(OSSL_PKEY_PARAM_FFC_G, NULL, 0), \
255 OSSL_PARAM_BN(OSSL_PKEY_PARAM_FFC_COFACTOR, NULL, 0), \
256 OSSL_PARAM_int(OSSL_PKEY_PARAM_FFC_GINDEX, NULL), \
257 OSSL_PARAM_int(OSSL_PKEY_PARAM_FFC_PCOUNTER, NULL), \
258 OSSL_PARAM_int(OSSL_PKEY_PARAM_FFC_H, NULL), \
b03ec3b5 259 OSSL_PARAM_octet_string(OSSL_PKEY_PARAM_FFC_SEED, NULL, 0)
273a67e3 260# define DSA_IMEXPORTABLE_PUBLIC_KEY \
90d3cb57 261 OSSL_PARAM_BN(OSSL_PKEY_PARAM_PUB_KEY, NULL, 0)
273a67e3 262# define DSA_IMEXPORTABLE_PRIVATE_KEY \
90d3cb57 263 OSSL_PARAM_BN(OSSL_PKEY_PARAM_PRIV_KEY, NULL, 0)
273a67e3
RL
264static const OSSL_PARAM dsa_all_types[] = {
265 DSA_IMEXPORTABLE_PARAMETERS,
266 DSA_IMEXPORTABLE_PUBLIC_KEY,
267 DSA_IMEXPORTABLE_PRIVATE_KEY,
268 OSSL_PARAM_END
269};
270static const OSSL_PARAM dsa_parameter_types[] = {
271 DSA_IMEXPORTABLE_PARAMETERS,
272 OSSL_PARAM_END
273};
274static const OSSL_PARAM dsa_key_types[] = {
275 DSA_IMEXPORTABLE_PUBLIC_KEY,
276 DSA_IMEXPORTABLE_PRIVATE_KEY,
277 OSSL_PARAM_END
278};
279static const OSSL_PARAM *dsa_types[] = {
280 NULL, /* Index 0 = none of them */
281 dsa_parameter_types, /* Index 1 = parameter types */
282 dsa_key_types, /* Index 2 = key types */
283 dsa_all_types /* Index 3 = 1 + 2 */
284};
285
286static const OSSL_PARAM *dsa_imexport_types(int selection)
287{
288 int type_select = 0;
289
290 if ((selection & OSSL_KEYMGMT_SELECT_ALL_PARAMETERS) != 0)
291 type_select += 1;
292 if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0)
293 type_select += 2;
294 return dsa_types[type_select];
295}
296
297static const OSSL_PARAM *dsa_import_types(int selection)
298{
299 return dsa_imexport_types(selection);
300}
301
302static const OSSL_PARAM *dsa_export_types(int selection)
303{
304 return dsa_imexport_types(selection);
305}
306
8dd5c603 307static ossl_inline int dsa_get_params(void *key, OSSL_PARAM params[])
9e5aaf78
RL
308{
309 DSA *dsa = key;
310 OSSL_PARAM *p;
311
312 if ((p = OSSL_PARAM_locate(params, OSSL_PKEY_PARAM_BITS)) != NULL
313 && !OSSL_PARAM_set_int(p, DSA_bits(dsa)))
314 return 0;
315 if ((p = OSSL_PARAM_locate(params, OSSL_PKEY_PARAM_SECURITY_BITS)) != NULL
316 && !OSSL_PARAM_set_int(p, DSA_security_bits(dsa)))
317 return 0;
318 if ((p = OSSL_PARAM_locate(params, OSSL_PKEY_PARAM_MAX_SIZE)) != NULL
319 && !OSSL_PARAM_set_int(p, DSA_size(dsa)))
320 return 0;
8baa49ae
RL
321 if ((p = OSSL_PARAM_locate(params, OSSL_PKEY_PARAM_DEFAULT_DIGEST)) != NULL
322 && !OSSL_PARAM_set_utf8_string(p, DSA_DEFAULT_MD))
323 return 0;
5af02212 324 return ossl_ffc_params_todata(ossl_dsa_get0_params(dsa), NULL, params)
944f822a 325 && dsa_key_todata(dsa, NULL, params, 1);
9e5aaf78
RL
326}
327
273a67e3
RL
328static const OSSL_PARAM dsa_params[] = {
329 OSSL_PARAM_int(OSSL_PKEY_PARAM_BITS, NULL),
330 OSSL_PARAM_int(OSSL_PKEY_PARAM_SECURITY_BITS, NULL),
331 OSSL_PARAM_int(OSSL_PKEY_PARAM_MAX_SIZE, NULL),
332 OSSL_PARAM_utf8_string(OSSL_PKEY_PARAM_DEFAULT_DIGEST, NULL, 0),
b03ec3b5
SL
333 DSA_IMEXPORTABLE_PARAMETERS,
334 DSA_IMEXPORTABLE_PUBLIC_KEY,
335 DSA_IMEXPORTABLE_PRIVATE_KEY,
273a67e3
RL
336 OSSL_PARAM_END
337};
338
af5e1e85 339static const OSSL_PARAM *dsa_gettable_params(void *provctx)
273a67e3
RL
340{
341 return dsa_params;
342}
343
ba37b820 344static int dsa_validate_domparams(const DSA *dsa, int checktype)
22b858a8
SL
345{
346 int status = 0;
347
5af02212 348 return ossl_dsa_check_params(dsa, checktype, &status);
22b858a8
SL
349}
350
d1fb6b48 351static int dsa_validate_public(const DSA *dsa)
22b858a8
SL
352{
353 int status = 0;
354 const BIGNUM *pub_key = NULL;
355
356 DSA_get0_key(dsa, &pub_key, NULL);
2fc2e37b
MB
357 if (pub_key == NULL)
358 return 0;
5af02212 359 return ossl_dsa_check_pub_key(dsa, pub_key, &status);
22b858a8
SL
360}
361
d1fb6b48 362static int dsa_validate_private(const DSA *dsa)
22b858a8
SL
363{
364 int status = 0;
365 const BIGNUM *priv_key = NULL;
366
367 DSA_get0_key(dsa, NULL, &priv_key);
2fc2e37b
MB
368 if (priv_key == NULL)
369 return 0;
5af02212 370 return ossl_dsa_check_priv_key(dsa, priv_key, &status);
22b858a8
SL
371}
372
899e2564 373static int dsa_validate(const void *keydata, int selection, int checktype)
22b858a8 374{
d1fb6b48 375 const DSA *dsa = keydata;
9a485440 376 int ok = 1;
22b858a8 377
422cbcee
P
378 if (!ossl_prov_is_running())
379 return 0;
380
9a485440
TM
381 if ((selection & DSA_POSSIBLE_SELECTIONS) == 0)
382 return 1; /* nothing to validate */
22b858a8
SL
383
384 if ((selection & OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) != 0)
ba37b820 385 ok = ok && dsa_validate_domparams(dsa, checktype);
22b858a8
SL
386
387 if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0)
388 ok = ok && dsa_validate_public(dsa);
389
390 if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0)
391 ok = ok && dsa_validate_private(dsa);
392
393 /* If the whole key is selected, we do a pairwise validation */
394 if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR)
395 == OSSL_KEYMGMT_SELECT_KEYPAIR)
5af02212 396 ok = ok && ossl_dsa_check_pairwise(dsa);
22b858a8
SL
397 return ok;
398}
399
f9562909
P
400static void *dsa_gen_init(void *provctx, int selection,
401 const OSSL_PARAM params[])
b03ec3b5 402{
a829b735 403 OSSL_LIB_CTX *libctx = PROV_LIBCTX_OF(provctx);
b03ec3b5
SL
404 struct dsa_gen_ctx *gctx = NULL;
405
422cbcee 406 if (!ossl_prov_is_running() || (selection & DSA_POSSIBLE_SELECTIONS) == 0)
b03ec3b5
SL
407 return NULL;
408
409 if ((gctx = OPENSSL_zalloc(sizeof(*gctx))) != NULL) {
410 gctx->selection = selection;
411 gctx->libctx = libctx;
412 gctx->pbits = 2048;
413 gctx->qbits = 224;
f1d66708 414#ifdef FIPS_MODULE
b03ec3b5 415 gctx->gen_type = DSA_PARAMGEN_TYPE_FIPS_186_4;
f1d66708 416#else
3a37ddde 417 gctx->gen_type = DSA_PARAMGEN_TYPE_FIPS_DEFAULT;
f1d66708 418#endif
b03ec3b5
SL
419 gctx->gindex = -1;
420 gctx->pcounter = -1;
421 gctx->hindex = 0;
422 }
f9562909
P
423 if (!dsa_gen_set_params(gctx, params)) {
424 OPENSSL_free(gctx);
425 gctx = NULL;
426 }
b03ec3b5
SL
427 return gctx;
428}
429
430static int dsa_gen_set_template(void *genctx, void *templ)
431{
432 struct dsa_gen_ctx *gctx = genctx;
433 DSA *dsa = templ;
434
422cbcee 435 if (!ossl_prov_is_running() || gctx == NULL || dsa == NULL)
b03ec3b5 436 return 0;
5af02212 437 gctx->ffc_params = ossl_dsa_get0_params(dsa);
b03ec3b5
SL
438 return 1;
439}
440
441static int dsa_set_gen_seed(struct dsa_gen_ctx *gctx, unsigned char *seed,
442 size_t seedlen)
443{
444 OPENSSL_clear_free(gctx->seed, gctx->seedlen);
445 gctx->seed = NULL;
446 gctx->seedlen = 0;
447 if (seed != NULL && seedlen > 0) {
448 gctx->seed = OPENSSL_memdup(seed, seedlen);
449 if (gctx->seed == NULL)
450 return 0;
451 gctx->seedlen = seedlen;
452 }
453 return 1;
454}
455
456static int dsa_gen_set_params(void *genctx, const OSSL_PARAM params[])
457{
458 struct dsa_gen_ctx *gctx = genctx;
459 const OSSL_PARAM *p;
460
461 if (gctx == NULL)
462 return 0;
f9562909
P
463 if (params == NULL)
464 return 1;
465
b03ec3b5
SL
466
467 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_TYPE);
468 if (p != NULL) {
469 if (p->data_type != OSSL_PARAM_UTF8_STRING
470 || ((gctx->gen_type = dsa_gen_type_name2id(p->data)) == -1)) {
471 ERR_raise(ERR_LIB_PROV, ERR_R_PASSED_INVALID_ARGUMENT);
472 return 0;
473 }
474 }
475 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_GINDEX);
476 if (p != NULL
477 && !OSSL_PARAM_get_int(p, &gctx->gindex))
478 return 0;
479 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_PCOUNTER);
480 if (p != NULL
481 && !OSSL_PARAM_get_int(p, &gctx->pcounter))
482 return 0;
483 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_H);
484 if (p != NULL
485 && !OSSL_PARAM_get_int(p, &gctx->hindex))
486 return 0;
487 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_SEED);
488 if (p != NULL
489 && (p->data_type != OSSL_PARAM_OCTET_STRING
490 || !dsa_set_gen_seed(gctx, p->data, p->data_size)))
491 return 0;
492 if ((p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_PBITS)) != NULL
493 && !OSSL_PARAM_get_size_t(p, &gctx->pbits))
494 return 0;
495 if ((p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_QBITS)) != NULL
496 && !OSSL_PARAM_get_size_t(p, &gctx->qbits))
497 return 0;
498 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_DIGEST);
499 if (p != NULL) {
b03ec3b5
SL
500 if (p->data_type != OSSL_PARAM_UTF8_STRING)
501 return 0;
f2a71518
SL
502 OPENSSL_free(gctx->mdname);
503 gctx->mdname = OPENSSL_strdup(p->data);
504 if (gctx->mdname == NULL)
505 return 0;
4f2271d5
SL
506 }
507 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_DIGEST_PROPS);
508 if (p != NULL) {
509 if (p->data_type != OSSL_PARAM_UTF8_STRING)
b03ec3b5 510 return 0;
f2a71518
SL
511 OPENSSL_free(gctx->mdprops);
512 gctx->mdprops = OPENSSL_strdup(p->data);
513 if (gctx->mdprops == NULL)
514 return 0;
b03ec3b5
SL
515 }
516 return 1;
517}
518
fb67126e
TM
519static const OSSL_PARAM *dsa_gen_settable_params(ossl_unused void *genctx,
520 ossl_unused void *provctx)
b03ec3b5
SL
521{
522 static OSSL_PARAM settable[] = {
523 OSSL_PARAM_utf8_string(OSSL_PKEY_PARAM_FFC_TYPE, NULL, 0),
524 OSSL_PARAM_size_t(OSSL_PKEY_PARAM_FFC_PBITS, NULL),
525 OSSL_PARAM_size_t(OSSL_PKEY_PARAM_FFC_QBITS, NULL),
526 OSSL_PARAM_utf8_string(OSSL_PKEY_PARAM_FFC_DIGEST, NULL, 0),
527 OSSL_PARAM_utf8_string(OSSL_PKEY_PARAM_FFC_DIGEST_PROPS, NULL, 0),
528 OSSL_PARAM_int(OSSL_PKEY_PARAM_FFC_GINDEX, NULL),
529 OSSL_PARAM_octet_string(OSSL_PKEY_PARAM_FFC_SEED, NULL, 0),
530 OSSL_PARAM_int(OSSL_PKEY_PARAM_FFC_PCOUNTER, NULL),
531 OSSL_PARAM_int(OSSL_PKEY_PARAM_FFC_H, NULL),
532 OSSL_PARAM_END
533 };
534 return settable;
535}
536
537static int dsa_gencb(int p, int n, BN_GENCB *cb)
538{
539 struct dsa_gen_ctx *gctx = BN_GENCB_get_arg(cb);
540 OSSL_PARAM params[] = { OSSL_PARAM_END, OSSL_PARAM_END, OSSL_PARAM_END };
541
542 params[0] = OSSL_PARAM_construct_int(OSSL_GEN_PARAM_POTENTIAL, &p);
543 params[1] = OSSL_PARAM_construct_int(OSSL_GEN_PARAM_ITERATION, &n);
544
545 return gctx->cb(params, gctx->cbarg);
546}
547
548static void *dsa_gen(void *genctx, OSSL_CALLBACK *osslcb, void *cbarg)
549{
550 struct dsa_gen_ctx *gctx = genctx;
551 DSA *dsa = NULL;
552 BN_GENCB *gencb = NULL;
553 int ret = 0;
554 FFC_PARAMS *ffc;
555
422cbcee 556 if (!ossl_prov_is_running() || gctx == NULL)
b03ec3b5 557 return NULL;
5af02212 558 dsa = ossl_dsa_new(gctx->libctx);
b03ec3b5
SL
559 if (dsa == NULL)
560 return NULL;
561
3a37ddde
SL
562 if (gctx->gen_type == DSA_PARAMGEN_TYPE_FIPS_DEFAULT)
563 gctx->gen_type = (gctx->pbits >= 2048 ? DSA_PARAMGEN_TYPE_FIPS_186_4 :
564 DSA_PARAMGEN_TYPE_FIPS_186_2);
565
b03ec3b5
SL
566 gctx->cb = osslcb;
567 gctx->cbarg = cbarg;
568 gencb = BN_GENCB_new();
569 if (gencb != NULL)
570 BN_GENCB_set(gencb, dsa_gencb, genctx);
571
5af02212 572 ffc = ossl_dsa_get0_params(dsa);
b03ec3b5
SL
573 /* Copy the template value if one was passed */
574 if (gctx->ffc_params != NULL
5357c106 575 && !ossl_ffc_params_copy(ffc, gctx->ffc_params))
b03ec3b5
SL
576 goto end;
577
578 if (gctx->seed != NULL
5357c106 579 && !ossl_ffc_params_set_seed(ffc, gctx->seed, gctx->seedlen))
b03ec3b5
SL
580 goto end;
581 if (gctx->gindex != -1) {
5357c106 582 ossl_ffc_params_set_gindex(ffc, gctx->gindex);
b03ec3b5 583 if (gctx->pcounter != -1)
5357c106 584 ossl_ffc_params_set_pcounter(ffc, gctx->pcounter);
b03ec3b5 585 } else if (gctx->hindex != 0) {
5357c106 586 ossl_ffc_params_set_h(ffc, gctx->hindex);
b03ec3b5 587 }
4f2271d5 588 if (gctx->mdname != NULL) {
5357c106 589 if (!ossl_ffc_set_digest(ffc, gctx->mdname, gctx->mdprops))
4f2271d5
SL
590 goto end;
591 }
b03ec3b5
SL
592 if ((gctx->selection & OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) != 0) {
593
5af02212
SL
594 if (ossl_dsa_generate_ffc_parameters(dsa, gctx->gen_type,
595 gctx->pbits, gctx->qbits,
596 gencb) <= 0)
b03ec3b5
SL
597 goto end;
598 }
5357c106
P
599 ossl_ffc_params_enable_flags(ffc, FFC_PARAM_FLAG_VALIDATE_LEGACY,
600 gctx->gen_type == DSA_PARAMGEN_TYPE_FIPS_186_2);
b03ec3b5
SL
601 if ((gctx->selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0) {
602 if (ffc->p == NULL
603 || ffc->q == NULL
604 || ffc->g == NULL)
605 goto end;
606 if (DSA_generate_key(dsa) <= 0)
607 goto end;
608 }
609 ret = 1;
610end:
611 if (ret <= 0) {
612 DSA_free(dsa);
613 dsa = NULL;
614 }
615 BN_GENCB_free(gencb);
616 return dsa;
617}
618
619static void dsa_gen_cleanup(void *genctx)
620{
621 struct dsa_gen_ctx *gctx = genctx;
622
623 if (gctx == NULL)
624 return;
625
f2a71518
SL
626 OPENSSL_free(gctx->mdname);
627 OPENSSL_free(gctx->mdprops);
b03ec3b5 628 OPENSSL_clear_free(gctx->seed, gctx->seedlen);
b03ec3b5
SL
629 OPENSSL_free(gctx);
630}
631
4a9fe33c 632static void *dsa_load(const void *reference, size_t reference_sz)
7c664b1f
RL
633{
634 DSA *dsa = NULL;
635
422cbcee 636 if (ossl_prov_is_running() && reference_sz == sizeof(dsa)) {
7c664b1f
RL
637 /* The contents of the reference is the address to our object */
638 dsa = *(DSA **)reference;
639 /* We grabbed, so we detach it */
640 *(DSA **)reference = NULL;
641 return dsa;
642 }
643 return NULL;
644}
645
b4f447c0 646static void *dsa_dup(const void *keydata_from, int selection)
4a9fe33c
TM
647{
648 if (ossl_prov_is_running())
b4f447c0 649 return ossl_dsa_dup(keydata_from, selection);
4a9fe33c
TM
650 return NULL;
651}
652
1be63951 653const OSSL_DISPATCH ossl_dsa_keymgmt_functions[] = {
8dd5c603 654 { OSSL_FUNC_KEYMGMT_NEW, (void (*)(void))dsa_newdata },
b03ec3b5
SL
655 { OSSL_FUNC_KEYMGMT_GEN_INIT, (void (*)(void))dsa_gen_init },
656 { OSSL_FUNC_KEYMGMT_GEN_SET_TEMPLATE, (void (*)(void))dsa_gen_set_template },
657 { OSSL_FUNC_KEYMGMT_GEN_SET_PARAMS, (void (*)(void))dsa_gen_set_params },
658 { OSSL_FUNC_KEYMGMT_GEN_SETTABLE_PARAMS,
659 (void (*)(void))dsa_gen_settable_params },
660 { OSSL_FUNC_KEYMGMT_GEN, (void (*)(void))dsa_gen },
661 { OSSL_FUNC_KEYMGMT_GEN_CLEANUP, (void (*)(void))dsa_gen_cleanup },
7c664b1f 662 { OSSL_FUNC_KEYMGMT_LOAD, (void (*)(void))dsa_load },
8dd5c603 663 { OSSL_FUNC_KEYMGMT_FREE, (void (*)(void))dsa_freedata },
273a67e3
RL
664 { OSSL_FUNC_KEYMGMT_GET_PARAMS, (void (*) (void))dsa_get_params },
665 { OSSL_FUNC_KEYMGMT_GETTABLE_PARAMS, (void (*) (void))dsa_gettable_params },
8dd5c603 666 { OSSL_FUNC_KEYMGMT_HAS, (void (*)(void))dsa_has },
2888fc15 667 { OSSL_FUNC_KEYMGMT_MATCH, (void (*)(void))dsa_match },
22b858a8 668 { OSSL_FUNC_KEYMGMT_VALIDATE, (void (*)(void))dsa_validate },
8dd5c603 669 { OSSL_FUNC_KEYMGMT_IMPORT, (void (*)(void))dsa_import },
273a67e3 670 { OSSL_FUNC_KEYMGMT_IMPORT_TYPES, (void (*)(void))dsa_import_types },
8dd5c603 671 { OSSL_FUNC_KEYMGMT_EXPORT, (void (*)(void))dsa_export },
273a67e3 672 { OSSL_FUNC_KEYMGMT_EXPORT_TYPES, (void (*)(void))dsa_export_types },
4a9fe33c 673 { OSSL_FUNC_KEYMGMT_DUP, (void (*)(void))dsa_dup },
4889dadc
MC
674 { 0, NULL }
675};