]> git.ipfire.org Git - thirdparty/openssl.git/blame - providers/implementations/keymgmt/dsa_kmgmt.c
Copyright year updates
[thirdparty/openssl.git] / providers / implementations / keymgmt / dsa_kmgmt.c
CommitLineData
4889dadc 1/*
da1c088f 2 * Copyright 2019-2023 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 201
9ac82e2e
TM
202 /* a key without parameters is meaningless */
203 ok = ok && ossl_dsa_ffc_params_fromdata(dsa, params);
204
944f822a 205 if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0) {
206 int include_private =
207 selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY ? 1 : 0;
208
209 ok = ok && ossl_dsa_key_fromdata(dsa, params, include_private);
210 }
8dd5c603
RL
211
212 return ok;
4889dadc
MC
213}
214
8dd5c603
RL
215static int dsa_export(void *keydata, int selection, OSSL_CALLBACK *param_cb,
216 void *cbarg)
13aa5d29 217{
8dd5c603 218 DSA *dsa = keydata;
0da3b39a 219 OSSL_PARAM_BLD *tmpl;
1640d48c 220 OSSL_PARAM *params = NULL;
8dd5c603
RL
221 int ok = 1;
222
422cbcee 223 if (!ossl_prov_is_running() || dsa == NULL)
0da3b39a 224 return 0;
225
1ae4678c
TM
226 if ((selection & DSA_POSSIBLE_SELECTIONS) == 0)
227 return 0;
228
0da3b39a 229 tmpl = OSSL_PARAM_BLD_new();
230 if (tmpl == NULL)
231 return 0;
8dd5c603
RL
232
233 if ((selection & OSSL_KEYMGMT_SELECT_ALL_PARAMETERS) != 0)
5af02212 234 ok = ok && ossl_ffc_params_todata(ossl_dsa_get0_params(dsa), tmpl, NULL);
944f822a 235 if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0) {
236 int include_private =
237 selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY ? 1 : 0;
238
239 ok = ok && dsa_key_todata(dsa, tmpl, NULL, include_private);
240 }
8dd5c603 241
46c1c2d7
MC
242 if (!ok || (params = OSSL_PARAM_BLD_to_param(tmpl)) == NULL) {
243 ok = 0;
a732a4c3 244 goto err;
46c1c2d7 245 }
8dd5c603
RL
246
247 ok = param_cb(params, cbarg);
3f883c7c 248 OSSL_PARAM_free(params);
6d4e6009
P
249err:
250 OSSL_PARAM_BLD_free(tmpl);
8dd5c603 251 return ok;
13aa5d29
RL
252}
253
273a67e3
RL
254/* IMEXPORT = IMPORT + EXPORT */
255
b03ec3b5
SL
256# define DSA_IMEXPORTABLE_PARAMETERS \
257 OSSL_PARAM_BN(OSSL_PKEY_PARAM_FFC_P, NULL, 0), \
258 OSSL_PARAM_BN(OSSL_PKEY_PARAM_FFC_Q, NULL, 0), \
259 OSSL_PARAM_BN(OSSL_PKEY_PARAM_FFC_G, NULL, 0), \
260 OSSL_PARAM_BN(OSSL_PKEY_PARAM_FFC_COFACTOR, NULL, 0), \
261 OSSL_PARAM_int(OSSL_PKEY_PARAM_FFC_GINDEX, NULL), \
262 OSSL_PARAM_int(OSSL_PKEY_PARAM_FFC_PCOUNTER, NULL), \
263 OSSL_PARAM_int(OSSL_PKEY_PARAM_FFC_H, NULL), \
b03ec3b5 264 OSSL_PARAM_octet_string(OSSL_PKEY_PARAM_FFC_SEED, NULL, 0)
273a67e3 265# define DSA_IMEXPORTABLE_PUBLIC_KEY \
90d3cb57 266 OSSL_PARAM_BN(OSSL_PKEY_PARAM_PUB_KEY, NULL, 0)
273a67e3 267# define DSA_IMEXPORTABLE_PRIVATE_KEY \
90d3cb57 268 OSSL_PARAM_BN(OSSL_PKEY_PARAM_PRIV_KEY, NULL, 0)
273a67e3
RL
269static const OSSL_PARAM dsa_all_types[] = {
270 DSA_IMEXPORTABLE_PARAMETERS,
271 DSA_IMEXPORTABLE_PUBLIC_KEY,
272 DSA_IMEXPORTABLE_PRIVATE_KEY,
273 OSSL_PARAM_END
274};
275static const OSSL_PARAM dsa_parameter_types[] = {
276 DSA_IMEXPORTABLE_PARAMETERS,
277 OSSL_PARAM_END
278};
279static const OSSL_PARAM dsa_key_types[] = {
280 DSA_IMEXPORTABLE_PUBLIC_KEY,
281 DSA_IMEXPORTABLE_PRIVATE_KEY,
282 OSSL_PARAM_END
283};
284static const OSSL_PARAM *dsa_types[] = {
285 NULL, /* Index 0 = none of them */
286 dsa_parameter_types, /* Index 1 = parameter types */
287 dsa_key_types, /* Index 2 = key types */
288 dsa_all_types /* Index 3 = 1 + 2 */
289};
290
291static const OSSL_PARAM *dsa_imexport_types(int selection)
292{
293 int type_select = 0;
294
295 if ((selection & OSSL_KEYMGMT_SELECT_ALL_PARAMETERS) != 0)
296 type_select += 1;
297 if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0)
298 type_select += 2;
299 return dsa_types[type_select];
300}
301
302static const OSSL_PARAM *dsa_import_types(int selection)
303{
304 return dsa_imexport_types(selection);
305}
306
307static const OSSL_PARAM *dsa_export_types(int selection)
308{
309 return dsa_imexport_types(selection);
310}
311
8dd5c603 312static ossl_inline int dsa_get_params(void *key, OSSL_PARAM params[])
9e5aaf78
RL
313{
314 DSA *dsa = key;
315 OSSL_PARAM *p;
316
317 if ((p = OSSL_PARAM_locate(params, OSSL_PKEY_PARAM_BITS)) != NULL
318 && !OSSL_PARAM_set_int(p, DSA_bits(dsa)))
319 return 0;
320 if ((p = OSSL_PARAM_locate(params, OSSL_PKEY_PARAM_SECURITY_BITS)) != NULL
321 && !OSSL_PARAM_set_int(p, DSA_security_bits(dsa)))
322 return 0;
323 if ((p = OSSL_PARAM_locate(params, OSSL_PKEY_PARAM_MAX_SIZE)) != NULL
324 && !OSSL_PARAM_set_int(p, DSA_size(dsa)))
325 return 0;
8baa49ae
RL
326 if ((p = OSSL_PARAM_locate(params, OSSL_PKEY_PARAM_DEFAULT_DIGEST)) != NULL
327 && !OSSL_PARAM_set_utf8_string(p, DSA_DEFAULT_MD))
328 return 0;
5af02212 329 return ossl_ffc_params_todata(ossl_dsa_get0_params(dsa), NULL, params)
944f822a 330 && dsa_key_todata(dsa, NULL, params, 1);
9e5aaf78
RL
331}
332
273a67e3
RL
333static const OSSL_PARAM dsa_params[] = {
334 OSSL_PARAM_int(OSSL_PKEY_PARAM_BITS, NULL),
335 OSSL_PARAM_int(OSSL_PKEY_PARAM_SECURITY_BITS, NULL),
336 OSSL_PARAM_int(OSSL_PKEY_PARAM_MAX_SIZE, NULL),
337 OSSL_PARAM_utf8_string(OSSL_PKEY_PARAM_DEFAULT_DIGEST, NULL, 0),
b03ec3b5
SL
338 DSA_IMEXPORTABLE_PARAMETERS,
339 DSA_IMEXPORTABLE_PUBLIC_KEY,
340 DSA_IMEXPORTABLE_PRIVATE_KEY,
273a67e3
RL
341 OSSL_PARAM_END
342};
343
af5e1e85 344static const OSSL_PARAM *dsa_gettable_params(void *provctx)
273a67e3
RL
345{
346 return dsa_params;
347}
348
ba37b820 349static int dsa_validate_domparams(const DSA *dsa, int checktype)
22b858a8
SL
350{
351 int status = 0;
352
5af02212 353 return ossl_dsa_check_params(dsa, checktype, &status);
22b858a8
SL
354}
355
d1fb6b48 356static int dsa_validate_public(const DSA *dsa)
22b858a8
SL
357{
358 int status = 0;
359 const BIGNUM *pub_key = NULL;
360
361 DSA_get0_key(dsa, &pub_key, NULL);
2fc2e37b
MB
362 if (pub_key == NULL)
363 return 0;
5af02212 364 return ossl_dsa_check_pub_key(dsa, pub_key, &status);
22b858a8
SL
365}
366
d1fb6b48 367static int dsa_validate_private(const DSA *dsa)
22b858a8
SL
368{
369 int status = 0;
370 const BIGNUM *priv_key = NULL;
371
372 DSA_get0_key(dsa, NULL, &priv_key);
2fc2e37b
MB
373 if (priv_key == NULL)
374 return 0;
5af02212 375 return ossl_dsa_check_priv_key(dsa, priv_key, &status);
22b858a8
SL
376}
377
899e2564 378static int dsa_validate(const void *keydata, int selection, int checktype)
22b858a8 379{
d1fb6b48 380 const DSA *dsa = keydata;
9a485440 381 int ok = 1;
22b858a8 382
422cbcee
P
383 if (!ossl_prov_is_running())
384 return 0;
385
9a485440
TM
386 if ((selection & DSA_POSSIBLE_SELECTIONS) == 0)
387 return 1; /* nothing to validate */
22b858a8
SL
388
389 if ((selection & OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) != 0)
ba37b820 390 ok = ok && dsa_validate_domparams(dsa, checktype);
22b858a8
SL
391
392 if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0)
393 ok = ok && dsa_validate_public(dsa);
394
395 if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0)
396 ok = ok && dsa_validate_private(dsa);
397
398 /* If the whole key is selected, we do a pairwise validation */
399 if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR)
400 == OSSL_KEYMGMT_SELECT_KEYPAIR)
5af02212 401 ok = ok && ossl_dsa_check_pairwise(dsa);
22b858a8
SL
402 return ok;
403}
404
f9562909
P
405static void *dsa_gen_init(void *provctx, int selection,
406 const OSSL_PARAM params[])
b03ec3b5 407{
a829b735 408 OSSL_LIB_CTX *libctx = PROV_LIBCTX_OF(provctx);
b03ec3b5
SL
409 struct dsa_gen_ctx *gctx = NULL;
410
422cbcee 411 if (!ossl_prov_is_running() || (selection & DSA_POSSIBLE_SELECTIONS) == 0)
b03ec3b5
SL
412 return NULL;
413
414 if ((gctx = OPENSSL_zalloc(sizeof(*gctx))) != NULL) {
415 gctx->selection = selection;
416 gctx->libctx = libctx;
417 gctx->pbits = 2048;
418 gctx->qbits = 224;
f1d66708 419#ifdef FIPS_MODULE
b03ec3b5 420 gctx->gen_type = DSA_PARAMGEN_TYPE_FIPS_186_4;
f1d66708 421#else
3a37ddde 422 gctx->gen_type = DSA_PARAMGEN_TYPE_FIPS_DEFAULT;
f1d66708 423#endif
b03ec3b5
SL
424 gctx->gindex = -1;
425 gctx->pcounter = -1;
426 gctx->hindex = 0;
427 }
f9562909
P
428 if (!dsa_gen_set_params(gctx, params)) {
429 OPENSSL_free(gctx);
430 gctx = NULL;
431 }
b03ec3b5
SL
432 return gctx;
433}
434
435static int dsa_gen_set_template(void *genctx, void *templ)
436{
437 struct dsa_gen_ctx *gctx = genctx;
438 DSA *dsa = templ;
439
422cbcee 440 if (!ossl_prov_is_running() || gctx == NULL || dsa == NULL)
b03ec3b5 441 return 0;
5af02212 442 gctx->ffc_params = ossl_dsa_get0_params(dsa);
b03ec3b5
SL
443 return 1;
444}
445
446static int dsa_set_gen_seed(struct dsa_gen_ctx *gctx, unsigned char *seed,
447 size_t seedlen)
448{
449 OPENSSL_clear_free(gctx->seed, gctx->seedlen);
450 gctx->seed = NULL;
451 gctx->seedlen = 0;
452 if (seed != NULL && seedlen > 0) {
453 gctx->seed = OPENSSL_memdup(seed, seedlen);
454 if (gctx->seed == NULL)
455 return 0;
456 gctx->seedlen = seedlen;
457 }
458 return 1;
459}
460
461static int dsa_gen_set_params(void *genctx, const OSSL_PARAM params[])
462{
463 struct dsa_gen_ctx *gctx = genctx;
464 const OSSL_PARAM *p;
465
466 if (gctx == NULL)
467 return 0;
f9562909
P
468 if (params == NULL)
469 return 1;
470
b03ec3b5
SL
471
472 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_TYPE);
473 if (p != NULL) {
474 if (p->data_type != OSSL_PARAM_UTF8_STRING
475 || ((gctx->gen_type = dsa_gen_type_name2id(p->data)) == -1)) {
476 ERR_raise(ERR_LIB_PROV, ERR_R_PASSED_INVALID_ARGUMENT);
477 return 0;
478 }
479 }
480 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_GINDEX);
481 if (p != NULL
482 && !OSSL_PARAM_get_int(p, &gctx->gindex))
483 return 0;
484 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_PCOUNTER);
485 if (p != NULL
486 && !OSSL_PARAM_get_int(p, &gctx->pcounter))
487 return 0;
488 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_H);
489 if (p != NULL
490 && !OSSL_PARAM_get_int(p, &gctx->hindex))
491 return 0;
492 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_SEED);
493 if (p != NULL
494 && (p->data_type != OSSL_PARAM_OCTET_STRING
495 || !dsa_set_gen_seed(gctx, p->data, p->data_size)))
496 return 0;
497 if ((p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_PBITS)) != NULL
498 && !OSSL_PARAM_get_size_t(p, &gctx->pbits))
499 return 0;
500 if ((p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_QBITS)) != NULL
501 && !OSSL_PARAM_get_size_t(p, &gctx->qbits))
502 return 0;
503 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_DIGEST);
504 if (p != NULL) {
b03ec3b5
SL
505 if (p->data_type != OSSL_PARAM_UTF8_STRING)
506 return 0;
f2a71518
SL
507 OPENSSL_free(gctx->mdname);
508 gctx->mdname = OPENSSL_strdup(p->data);
509 if (gctx->mdname == NULL)
510 return 0;
4f2271d5
SL
511 }
512 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_DIGEST_PROPS);
513 if (p != NULL) {
514 if (p->data_type != OSSL_PARAM_UTF8_STRING)
b03ec3b5 515 return 0;
f2a71518
SL
516 OPENSSL_free(gctx->mdprops);
517 gctx->mdprops = OPENSSL_strdup(p->data);
518 if (gctx->mdprops == NULL)
519 return 0;
b03ec3b5
SL
520 }
521 return 1;
522}
523
fb67126e
TM
524static const OSSL_PARAM *dsa_gen_settable_params(ossl_unused void *genctx,
525 ossl_unused void *provctx)
b03ec3b5
SL
526{
527 static OSSL_PARAM settable[] = {
528 OSSL_PARAM_utf8_string(OSSL_PKEY_PARAM_FFC_TYPE, NULL, 0),
529 OSSL_PARAM_size_t(OSSL_PKEY_PARAM_FFC_PBITS, NULL),
530 OSSL_PARAM_size_t(OSSL_PKEY_PARAM_FFC_QBITS, NULL),
531 OSSL_PARAM_utf8_string(OSSL_PKEY_PARAM_FFC_DIGEST, NULL, 0),
532 OSSL_PARAM_utf8_string(OSSL_PKEY_PARAM_FFC_DIGEST_PROPS, NULL, 0),
533 OSSL_PARAM_int(OSSL_PKEY_PARAM_FFC_GINDEX, NULL),
534 OSSL_PARAM_octet_string(OSSL_PKEY_PARAM_FFC_SEED, NULL, 0),
535 OSSL_PARAM_int(OSSL_PKEY_PARAM_FFC_PCOUNTER, NULL),
536 OSSL_PARAM_int(OSSL_PKEY_PARAM_FFC_H, NULL),
537 OSSL_PARAM_END
538 };
539 return settable;
540}
541
542static int dsa_gencb(int p, int n, BN_GENCB *cb)
543{
544 struct dsa_gen_ctx *gctx = BN_GENCB_get_arg(cb);
545 OSSL_PARAM params[] = { OSSL_PARAM_END, OSSL_PARAM_END, OSSL_PARAM_END };
546
547 params[0] = OSSL_PARAM_construct_int(OSSL_GEN_PARAM_POTENTIAL, &p);
548 params[1] = OSSL_PARAM_construct_int(OSSL_GEN_PARAM_ITERATION, &n);
549
550 return gctx->cb(params, gctx->cbarg);
551}
552
553static void *dsa_gen(void *genctx, OSSL_CALLBACK *osslcb, void *cbarg)
554{
555 struct dsa_gen_ctx *gctx = genctx;
556 DSA *dsa = NULL;
557 BN_GENCB *gencb = NULL;
558 int ret = 0;
559 FFC_PARAMS *ffc;
560
422cbcee 561 if (!ossl_prov_is_running() || gctx == NULL)
b03ec3b5 562 return NULL;
5af02212 563 dsa = ossl_dsa_new(gctx->libctx);
b03ec3b5
SL
564 if (dsa == NULL)
565 return NULL;
566
3a37ddde
SL
567 if (gctx->gen_type == DSA_PARAMGEN_TYPE_FIPS_DEFAULT)
568 gctx->gen_type = (gctx->pbits >= 2048 ? DSA_PARAMGEN_TYPE_FIPS_186_4 :
569 DSA_PARAMGEN_TYPE_FIPS_186_2);
570
b03ec3b5
SL
571 gctx->cb = osslcb;
572 gctx->cbarg = cbarg;
573 gencb = BN_GENCB_new();
574 if (gencb != NULL)
575 BN_GENCB_set(gencb, dsa_gencb, genctx);
576
5af02212 577 ffc = ossl_dsa_get0_params(dsa);
b03ec3b5
SL
578 /* Copy the template value if one was passed */
579 if (gctx->ffc_params != NULL
5357c106 580 && !ossl_ffc_params_copy(ffc, gctx->ffc_params))
b03ec3b5
SL
581 goto end;
582
583 if (gctx->seed != NULL
5357c106 584 && !ossl_ffc_params_set_seed(ffc, gctx->seed, gctx->seedlen))
b03ec3b5
SL
585 goto end;
586 if (gctx->gindex != -1) {
5357c106 587 ossl_ffc_params_set_gindex(ffc, gctx->gindex);
b03ec3b5 588 if (gctx->pcounter != -1)
5357c106 589 ossl_ffc_params_set_pcounter(ffc, gctx->pcounter);
b03ec3b5 590 } else if (gctx->hindex != 0) {
5357c106 591 ossl_ffc_params_set_h(ffc, gctx->hindex);
b03ec3b5 592 }
a76ccb9d 593 if (gctx->mdname != NULL)
594 ossl_ffc_set_digest(ffc, gctx->mdname, gctx->mdprops);
595
b03ec3b5
SL
596 if ((gctx->selection & OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) != 0) {
597
5af02212
SL
598 if (ossl_dsa_generate_ffc_parameters(dsa, gctx->gen_type,
599 gctx->pbits, gctx->qbits,
600 gencb) <= 0)
b03ec3b5
SL
601 goto end;
602 }
5357c106
P
603 ossl_ffc_params_enable_flags(ffc, FFC_PARAM_FLAG_VALIDATE_LEGACY,
604 gctx->gen_type == DSA_PARAMGEN_TYPE_FIPS_186_2);
b03ec3b5
SL
605 if ((gctx->selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0) {
606 if (ffc->p == NULL
607 || ffc->q == NULL
608 || ffc->g == NULL)
609 goto end;
610 if (DSA_generate_key(dsa) <= 0)
611 goto end;
612 }
613 ret = 1;
614end:
615 if (ret <= 0) {
616 DSA_free(dsa);
617 dsa = NULL;
618 }
619 BN_GENCB_free(gencb);
620 return dsa;
621}
622
623static void dsa_gen_cleanup(void *genctx)
624{
625 struct dsa_gen_ctx *gctx = genctx;
626
627 if (gctx == NULL)
628 return;
629
f2a71518
SL
630 OPENSSL_free(gctx->mdname);
631 OPENSSL_free(gctx->mdprops);
b03ec3b5 632 OPENSSL_clear_free(gctx->seed, gctx->seedlen);
b03ec3b5
SL
633 OPENSSL_free(gctx);
634}
635
4a9fe33c 636static void *dsa_load(const void *reference, size_t reference_sz)
7c664b1f
RL
637{
638 DSA *dsa = NULL;
639
422cbcee 640 if (ossl_prov_is_running() && reference_sz == sizeof(dsa)) {
7c664b1f
RL
641 /* The contents of the reference is the address to our object */
642 dsa = *(DSA **)reference;
643 /* We grabbed, so we detach it */
644 *(DSA **)reference = NULL;
645 return dsa;
646 }
647 return NULL;
648}
649
b4f447c0 650static void *dsa_dup(const void *keydata_from, int selection)
4a9fe33c
TM
651{
652 if (ossl_prov_is_running())
b4f447c0 653 return ossl_dsa_dup(keydata_from, selection);
4a9fe33c
TM
654 return NULL;
655}
656
1be63951 657const OSSL_DISPATCH ossl_dsa_keymgmt_functions[] = {
8dd5c603 658 { OSSL_FUNC_KEYMGMT_NEW, (void (*)(void))dsa_newdata },
b03ec3b5
SL
659 { OSSL_FUNC_KEYMGMT_GEN_INIT, (void (*)(void))dsa_gen_init },
660 { OSSL_FUNC_KEYMGMT_GEN_SET_TEMPLATE, (void (*)(void))dsa_gen_set_template },
661 { OSSL_FUNC_KEYMGMT_GEN_SET_PARAMS, (void (*)(void))dsa_gen_set_params },
662 { OSSL_FUNC_KEYMGMT_GEN_SETTABLE_PARAMS,
663 (void (*)(void))dsa_gen_settable_params },
664 { OSSL_FUNC_KEYMGMT_GEN, (void (*)(void))dsa_gen },
665 { OSSL_FUNC_KEYMGMT_GEN_CLEANUP, (void (*)(void))dsa_gen_cleanup },
7c664b1f 666 { OSSL_FUNC_KEYMGMT_LOAD, (void (*)(void))dsa_load },
8dd5c603 667 { OSSL_FUNC_KEYMGMT_FREE, (void (*)(void))dsa_freedata },
273a67e3
RL
668 { OSSL_FUNC_KEYMGMT_GET_PARAMS, (void (*) (void))dsa_get_params },
669 { OSSL_FUNC_KEYMGMT_GETTABLE_PARAMS, (void (*) (void))dsa_gettable_params },
8dd5c603 670 { OSSL_FUNC_KEYMGMT_HAS, (void (*)(void))dsa_has },
2888fc15 671 { OSSL_FUNC_KEYMGMT_MATCH, (void (*)(void))dsa_match },
22b858a8 672 { OSSL_FUNC_KEYMGMT_VALIDATE, (void (*)(void))dsa_validate },
8dd5c603 673 { OSSL_FUNC_KEYMGMT_IMPORT, (void (*)(void))dsa_import },
273a67e3 674 { OSSL_FUNC_KEYMGMT_IMPORT_TYPES, (void (*)(void))dsa_import_types },
8dd5c603 675 { OSSL_FUNC_KEYMGMT_EXPORT, (void (*)(void))dsa_export },
273a67e3 676 { OSSL_FUNC_KEYMGMT_EXPORT_TYPES, (void (*)(void))dsa_export_types },
4a9fe33c 677 { OSSL_FUNC_KEYMGMT_DUP, (void (*)(void))dsa_dup },
1e6bd31e 678 OSSL_DISPATCH_END
4889dadc 679};