]> git.ipfire.org Git - thirdparty/openssl.git/blame - providers/implementations/keymgmt/dh_kmgmt.c
Add selection support to the provider keymgmt_dup function
[thirdparty/openssl.git] / providers / implementations / keymgmt / dh_kmgmt.c
CommitLineData
8b84b075 1/*
a28d06f3 2 * Copyright 2019-2021 The OpenSSL Project Authors. All Rights Reserved.
8b84b075
RL
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
ada66e78
P
10/*
11 * DH low level APIs are deprecated for public use, but still ok for
12 * internal use.
13 */
14#include "internal/deprecated.h"
15
7165593c 16#include <string.h> /* strcmp */
23c48d94 17#include <openssl/core_dispatch.h>
8b84b075
RL
18#include <openssl/core_names.h>
19#include <openssl/bn.h>
7165593c 20#include <openssl/err.h>
af3e7e1b 21#include "prov/implementations.h"
1640d48c 22#include "prov/providercommon.h"
8083fd3a
SL
23#include "prov/provider_ctx.h"
24#include "crypto/dh.h"
7165593c 25#include "internal/sizes.h"
8b84b075 26
363b1e5d
DMSP
27static OSSL_FUNC_keymgmt_new_fn dh_newdata;
28static OSSL_FUNC_keymgmt_free_fn dh_freedata;
29static OSSL_FUNC_keymgmt_gen_init_fn dh_gen_init;
627c2203 30static OSSL_FUNC_keymgmt_gen_init_fn dhx_gen_init;
363b1e5d
DMSP
31static OSSL_FUNC_keymgmt_gen_set_template_fn dh_gen_set_template;
32static OSSL_FUNC_keymgmt_gen_set_params_fn dh_gen_set_params;
33static OSSL_FUNC_keymgmt_gen_settable_params_fn dh_gen_settable_params;
34static OSSL_FUNC_keymgmt_gen_fn dh_gen;
35static OSSL_FUNC_keymgmt_gen_cleanup_fn dh_gen_cleanup;
7c664b1f 36static OSSL_FUNC_keymgmt_load_fn dh_load;
363b1e5d
DMSP
37static OSSL_FUNC_keymgmt_get_params_fn dh_get_params;
38static OSSL_FUNC_keymgmt_gettable_params_fn dh_gettable_params;
39static OSSL_FUNC_keymgmt_set_params_fn dh_set_params;
40static OSSL_FUNC_keymgmt_settable_params_fn dh_settable_params;
41static OSSL_FUNC_keymgmt_has_fn dh_has;
42static OSSL_FUNC_keymgmt_match_fn dh_match;
43static OSSL_FUNC_keymgmt_validate_fn dh_validate;
44static OSSL_FUNC_keymgmt_import_fn dh_import;
45static OSSL_FUNC_keymgmt_import_types_fn dh_import_types;
46static OSSL_FUNC_keymgmt_export_fn dh_export;
47static OSSL_FUNC_keymgmt_export_types_fn dh_export_types;
4a9fe33c 48static OSSL_FUNC_keymgmt_dup_fn dh_dup;
8dd5c603 49
7165593c 50#define DH_POSSIBLE_SELECTIONS \
273a67e3 51 (OSSL_KEYMGMT_SELECT_KEYPAIR | OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS)
8b84b075 52
7165593c 53struct dh_gen_ctx {
b4250010 54 OSSL_LIB_CTX *libctx;
7165593c
SL
55
56 FFC_PARAMS *ffc_params;
57 int selection;
58 /* All these parameters are used for parameter generation only */
59 /* If there is a group name then the remaining parameters are not needed */
60 int group_nid;
61 size_t pbits;
62 size_t qbits;
7165593c
SL
63 unsigned char *seed; /* optional FIPS186-4 param for testing */
64 size_t seedlen;
65 int gindex; /* optional FIPS186-4 generator index (ignored if -1) */
66 int gen_type; /* see dhtype2id */
67 int generator; /* Used by DH_PARAMGEN_TYPE_GENERATOR in non fips mode only */
68 int pcounter;
69 int hindex;
738ee181 70 int priv_len;
7165593c 71
f2a71518
SL
72 char *mdname;
73 char *mdprops;
7165593c
SL
74 OSSL_CALLBACK *cb;
75 void *cbarg;
627c2203 76 int dh_type;
7165593c
SL
77};
78
c829c23b 79static int dh_gen_type_name2id_w_default(const char *name, int type)
7165593c 80{
c2bd8d27
MC
81 if (strcmp(name, "default") == 0) {
82#ifdef FIPS_MODULE
83 if (type == DH_FLAG_TYPE_DHX)
84 return DH_PARAMGEN_TYPE_FIPS_186_4;
85
86 return DH_PARAMGEN_TYPE_GROUP;
87#else
88 if (type == DH_FLAG_TYPE_DHX)
89 return DH_PARAMGEN_TYPE_FIPS_186_2;
90
91 return DH_PARAMGEN_TYPE_GENERATOR;
92#endif
93 }
94
19dbb742 95 return ossl_dh_gen_type_name2id(name);
c8f23016
RL
96}
97
8dd5c603 98static void *dh_newdata(void *provctx)
14e3e00f 99{
627c2203
SL
100 DH *dh = NULL;
101
422cbcee 102 if (ossl_prov_is_running()) {
19dbb742 103 dh = ossl_dh_new_ex(PROV_LIBCTX_OF(provctx));
422cbcee
P
104 if (dh != NULL) {
105 DH_clear_flags(dh, DH_FLAG_TYPE_MASK);
106 DH_set_flags(dh, DH_FLAG_TYPE_DH);
107 }
627c2203
SL
108 }
109 return dh;
110}
111
112static void *dhx_newdata(void *provctx)
113{
114 DH *dh = NULL;
115
19dbb742 116 dh = ossl_dh_new_ex(PROV_LIBCTX_OF(provctx));
627c2203
SL
117 if (dh != NULL) {
118 DH_clear_flags(dh, DH_FLAG_TYPE_MASK);
119 DH_set_flags(dh, DH_FLAG_TYPE_DHX);
120 }
121 return dh;
14e3e00f
RL
122}
123
8dd5c603 124static void dh_freedata(void *keydata)
c8f23016 125{
8dd5c603
RL
126 DH_free(keydata);
127}
1640d48c 128
3d914185 129static int dh_has(const void *keydata, int selection)
8dd5c603 130{
3d914185 131 const DH *dh = keydata;
9a485440
TM
132 int ok = 1;
133
134 if (!ossl_prov_is_running() || dh == NULL)
135 return 0;
136 if ((selection & DH_POSSIBLE_SELECTIONS) == 0)
137 return 1; /* the selection is not missing */
138
139 if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0)
140 ok = ok && (DH_get0_pub_key(dh) != NULL);
141 if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0)
142 ok = ok && (DH_get0_priv_key(dh) != NULL);
143 if ((selection & OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) != 0)
144 ok = ok && (DH_get0_p(dh) != NULL && DH_get0_g(dh) != NULL);
8dd5c603 145 return ok;
c8f23016
RL
146}
147
2888fc15
RL
148static int dh_match(const void *keydata1, const void *keydata2, int selection)
149{
150 const DH *dh1 = keydata1;
151 const DH *dh2 = keydata2;
152 int ok = 1;
153
422cbcee
P
154 if (!ossl_prov_is_running())
155 return 0;
156
2888fc15
RL
157 if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0)
158 ok = ok && BN_cmp(DH_get0_pub_key(dh1), DH_get0_pub_key(dh2)) == 0;
159 if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0)
160 ok = ok && BN_cmp(DH_get0_priv_key(dh1), DH_get0_priv_key(dh2)) == 0;
161 if ((selection & OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) != 0) {
19dbb742
SL
162 FFC_PARAMS *dhparams1 = ossl_dh_get0_params((DH *)dh1);
163 FFC_PARAMS *dhparams2 = ossl_dh_get0_params((DH *)dh2);
2888fc15 164
5357c106 165 ok = ok && ossl_ffc_params_cmp(dhparams1, dhparams2, 1);
2888fc15
RL
166 }
167 return ok;
168}
169
8dd5c603 170static int dh_import(void *keydata, int selection, const OSSL_PARAM params[])
8b84b075 171{
8dd5c603 172 DH *dh = keydata;
7165593c 173 int ok = 1;
8dd5c603 174
422cbcee 175 if (!ossl_prov_is_running() || dh == NULL)
8dd5c603
RL
176 return 0;
177
7165593c
SL
178 if ((selection & DH_POSSIBLE_SELECTIONS) == 0)
179 return 0;
8dd5c603
RL
180
181 if ((selection & OSSL_KEYMGMT_SELECT_ALL_PARAMETERS) != 0)
19dbb742 182 ok = ok && ossl_dh_params_fromdata(dh, params);
7165593c 183
8dd5c603 184 if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0)
19dbb742 185 ok = ok && ossl_dh_key_fromdata(dh, params);
8dd5c603
RL
186
187 return ok;
8b84b075
RL
188}
189
8dd5c603
RL
190static int dh_export(void *keydata, int selection, OSSL_CALLBACK *param_cb,
191 void *cbarg)
c8f23016 192{
8dd5c603 193 DH *dh = keydata;
b03ec3b5 194 OSSL_PARAM_BLD *tmpl = NULL;
1640d48c 195 OSSL_PARAM *params = NULL;
8dd5c603
RL
196 int ok = 1;
197
422cbcee 198 if (!ossl_prov_is_running() || dh == NULL)
8dd5c603 199 return 0;
1640d48c 200
6d4e6009
P
201 tmpl = OSSL_PARAM_BLD_new();
202 if (tmpl == NULL)
203 return 0;
8dd5c603
RL
204
205 if ((selection & OSSL_KEYMGMT_SELECT_ALL_PARAMETERS) != 0)
19dbb742 206 ok = ok && ossl_dh_params_todata(dh, tmpl, NULL);
8dd5c603 207 if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0)
19dbb742 208 ok = ok && ossl_dh_key_todata(dh, tmpl, NULL);
8dd5c603
RL
209
210 if (!ok
6d4e6009 211 || (params = OSSL_PARAM_BLD_to_param(tmpl)) == NULL) {
b03ec3b5
SL
212 ok = 0;
213 goto err;
6d4e6009 214 }
8dd5c603 215 ok = param_cb(params, cbarg);
3f883c7c 216 OSSL_PARAM_free(params);
b03ec3b5
SL
217err:
218 OSSL_PARAM_BLD_free(tmpl);
8dd5c603 219 return ok;
c8f23016
RL
220}
221
273a67e3
RL
222/* IMEXPORT = IMPORT + EXPORT */
223
7165593c
SL
224# define DH_IMEXPORTABLE_PARAMETERS \
225 OSSL_PARAM_BN(OSSL_PKEY_PARAM_FFC_P, NULL, 0), \
226 OSSL_PARAM_BN(OSSL_PKEY_PARAM_FFC_Q, NULL, 0), \
227 OSSL_PARAM_BN(OSSL_PKEY_PARAM_FFC_G, NULL, 0), \
228 OSSL_PARAM_BN(OSSL_PKEY_PARAM_FFC_COFACTOR, NULL, 0), \
229 OSSL_PARAM_int(OSSL_PKEY_PARAM_FFC_GINDEX, NULL), \
230 OSSL_PARAM_int(OSSL_PKEY_PARAM_FFC_PCOUNTER, NULL), \
231 OSSL_PARAM_int(OSSL_PKEY_PARAM_FFC_H, NULL), \
8f81e3a1 232 OSSL_PARAM_int(OSSL_PKEY_PARAM_DH_PRIV_LEN, NULL), \
b8086652 233 OSSL_PARAM_octet_string(OSSL_PKEY_PARAM_FFC_SEED, NULL, 0), \
8f81e3a1 234 OSSL_PARAM_utf8_string(OSSL_PKEY_PARAM_GROUP_NAME, NULL, 0)
7165593c 235# define DH_IMEXPORTABLE_PUBLIC_KEY \
90d3cb57 236 OSSL_PARAM_BN(OSSL_PKEY_PARAM_PUB_KEY, NULL, 0)
7165593c 237# define DH_IMEXPORTABLE_PRIVATE_KEY \
90d3cb57 238 OSSL_PARAM_BN(OSSL_PKEY_PARAM_PRIV_KEY, NULL, 0)
273a67e3
RL
239static const OSSL_PARAM dh_all_types[] = {
240 DH_IMEXPORTABLE_PARAMETERS,
241 DH_IMEXPORTABLE_PUBLIC_KEY,
242 DH_IMEXPORTABLE_PRIVATE_KEY,
243 OSSL_PARAM_END
244};
245static const OSSL_PARAM dh_parameter_types[] = {
246 DH_IMEXPORTABLE_PARAMETERS,
247 OSSL_PARAM_END
248};
249static const OSSL_PARAM dh_key_types[] = {
250 DH_IMEXPORTABLE_PUBLIC_KEY,
251 DH_IMEXPORTABLE_PRIVATE_KEY,
252 OSSL_PARAM_END
253};
254static const OSSL_PARAM *dh_types[] = {
255 NULL, /* Index 0 = none of them */
256 dh_parameter_types, /* Index 1 = parameter types */
257 dh_key_types, /* Index 2 = key types */
258 dh_all_types /* Index 3 = 1 + 2 */
259};
260
261static const OSSL_PARAM *dh_imexport_types(int selection)
262{
263 int type_select = 0;
264
265 if ((selection & OSSL_KEYMGMT_SELECT_ALL_PARAMETERS) != 0)
266 type_select += 1;
267 if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0)
268 type_select += 2;
269 return dh_types[type_select];
270}
271
272static const OSSL_PARAM *dh_import_types(int selection)
273{
274 return dh_imexport_types(selection);
275}
276
277static const OSSL_PARAM *dh_export_types(int selection)
278{
279 return dh_imexport_types(selection);
280}
281
8dd5c603 282static ossl_inline int dh_get_params(void *key, OSSL_PARAM params[])
9e5aaf78
RL
283{
284 DH *dh = key;
285 OSSL_PARAM *p;
286
287 if ((p = OSSL_PARAM_locate(params, OSSL_PKEY_PARAM_BITS)) != NULL
288 && !OSSL_PARAM_set_int(p, DH_bits(dh)))
289 return 0;
290 if ((p = OSSL_PARAM_locate(params, OSSL_PKEY_PARAM_SECURITY_BITS)) != NULL
291 && !OSSL_PARAM_set_int(p, DH_security_bits(dh)))
292 return 0;
293 if ((p = OSSL_PARAM_locate(params, OSSL_PKEY_PARAM_MAX_SIZE)) != NULL
294 && !OSSL_PARAM_set_int(p, DH_size(dh)))
295 return 0;
5ac8fb58 296 if ((p = OSSL_PARAM_locate(params, OSSL_PKEY_PARAM_ENCODED_PUBLIC_KEY)) != NULL) {
6a9bd929
MC
297 if (p->data_type != OSSL_PARAM_OCTET_STRING)
298 return 0;
19dbb742
SL
299 p->return_size = ossl_dh_key2buf(dh, (unsigned char **)&p->data,
300 p->data_size, 0);
6a9bd929
MC
301 if (p->return_size == 0)
302 return 0;
303 }
304
19dbb742
SL
305 return ossl_dh_params_todata(dh, NULL, params)
306 && ossl_dh_key_todata(dh, NULL, params);
9e5aaf78
RL
307}
308
273a67e3
RL
309static const OSSL_PARAM dh_params[] = {
310 OSSL_PARAM_int(OSSL_PKEY_PARAM_BITS, NULL),
311 OSSL_PARAM_int(OSSL_PKEY_PARAM_SECURITY_BITS, NULL),
312 OSSL_PARAM_int(OSSL_PKEY_PARAM_MAX_SIZE, NULL),
5ac8fb58 313 OSSL_PARAM_octet_string(OSSL_PKEY_PARAM_ENCODED_PUBLIC_KEY, NULL, 0),
7165593c
SL
314 DH_IMEXPORTABLE_PARAMETERS,
315 DH_IMEXPORTABLE_PUBLIC_KEY,
316 DH_IMEXPORTABLE_PRIVATE_KEY,
273a67e3
RL
317 OSSL_PARAM_END
318};
319
af5e1e85 320static const OSSL_PARAM *dh_gettable_params(void *provctx)
273a67e3
RL
321{
322 return dh_params;
323}
324
6a9bd929 325static const OSSL_PARAM dh_known_settable_params[] = {
5ac8fb58 326 OSSL_PARAM_octet_string(OSSL_PKEY_PARAM_ENCODED_PUBLIC_KEY, NULL, 0),
6a9bd929
MC
327 OSSL_PARAM_END
328};
329
af5e1e85 330static const OSSL_PARAM *dh_settable_params(void *provctx)
6a9bd929
MC
331{
332 return dh_known_settable_params;
333}
334
335static int dh_set_params(void *key, const OSSL_PARAM params[])
336{
337 DH *dh = key;
338 const OSSL_PARAM *p;
339
5ac8fb58 340 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_ENCODED_PUBLIC_KEY);
6a9bd929
MC
341 if (p != NULL
342 && (p->data_type != OSSL_PARAM_OCTET_STRING
19dbb742 343 || !ossl_dh_buf2key(dh, p->data, p->data_size)))
6a9bd929
MC
344 return 0;
345
346 return 1;
347}
348
4718326a 349static int dh_validate_public(const DH *dh, int checktype)
a54ff473
SL
350{
351 const BIGNUM *pub_key = NULL;
4718326a 352 int res = 0;
a54ff473
SL
353
354 DH_get0_key(dh, &pub_key, NULL);
2fc2e37b
MB
355 if (pub_key == NULL)
356 return 0;
4718326a
SL
357
358 /* The partial test is only valid for named group's with q = (p - 1) / 2 */
359 if (checktype == OSSL_KEYMGMT_VALIDATE_QUICK_CHECK
360 && ossl_dh_is_named_safe_prime_group(dh))
19dbb742 361 return ossl_dh_check_pub_key_partial(dh, pub_key, &res);
4718326a
SL
362
363 return DH_check_pub_key(dh, pub_key, &res);
a54ff473
SL
364}
365
d1fb6b48 366static int dh_validate_private(const DH *dh)
a54ff473
SL
367{
368 int status = 0;
369 const BIGNUM *priv_key = NULL;
370
371 DH_get0_key(dh, NULL, &priv_key);
2fc2e37b
MB
372 if (priv_key == NULL)
373 return 0;
19dbb742 374 return ossl_dh_check_priv_key(dh, priv_key, &status);;
a54ff473
SL
375}
376
899e2564 377static int dh_validate(const void *keydata, int selection, int checktype)
a54ff473 378{
d1fb6b48 379 const DH *dh = keydata;
9a485440 380 int ok = 1;
a54ff473 381
422cbcee
P
382 if (!ossl_prov_is_running())
383 return 0;
384
9a485440
TM
385 if ((selection & DH_POSSIBLE_SELECTIONS) == 0)
386 return 1; /* nothing to validate */
a54ff473 387
899e2564
MC
388 if ((selection & OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) != 0) {
389 /*
390 * Both of these functions check parameters. DH_check_params_ex()
391 * performs a lightweight check (e.g. it does not check that p is a
392 * safe prime)
393 */
394 if (checktype == OSSL_KEYMGMT_VALIDATE_QUICK_CHECK)
395 ok = ok && DH_check_params_ex(dh);
396 else
397 ok = ok && DH_check_ex(dh);
398 }
a54ff473
SL
399
400 if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0)
4718326a 401 ok = ok && dh_validate_public(dh, checktype);
a54ff473
SL
402
403 if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0)
404 ok = ok && dh_validate_private(dh);
405
406 if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR)
407 == OSSL_KEYMGMT_SELECT_KEYPAIR)
19dbb742 408 ok = ok && ossl_dh_check_pairwise(dh);
a54ff473
SL
409 return ok;
410}
411
f9562909
P
412static void *dh_gen_init_base(void *provctx, int selection,
413 const OSSL_PARAM params[], int type)
7165593c 414{
a829b735 415 OSSL_LIB_CTX *libctx = PROV_LIBCTX_OF(provctx);
7165593c
SL
416 struct dh_gen_ctx *gctx = NULL;
417
422cbcee
P
418 if (!ossl_prov_is_running())
419 return NULL;
420
7165593c
SL
421 if ((selection & (OSSL_KEYMGMT_SELECT_KEYPAIR
422 | OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS)) == 0)
423 return NULL;
424
425 if ((gctx = OPENSSL_zalloc(sizeof(*gctx))) != NULL) {
426 gctx->selection = selection;
427 gctx->libctx = libctx;
428 gctx->pbits = 2048;
429 gctx->qbits = 224;
4f2271d5 430 gctx->mdname = NULL;
c2bd8d27
MC
431#ifdef FIPS_MODULE
432 gctx->gen_type = (type == DH_FLAG_TYPE_DHX)
433 ? DH_PARAMGEN_TYPE_FIPS_186_4
434 : DH_PARAMGEN_TYPE_GROUP;
435#else
436 gctx->gen_type = (type == DH_FLAG_TYPE_DHX)
437 ? DH_PARAMGEN_TYPE_FIPS_186_2
438 : DH_PARAMGEN_TYPE_GENERATOR;
439#endif
7165593c
SL
440 gctx->gindex = -1;
441 gctx->hindex = 0;
442 gctx->pcounter = -1;
443 gctx->generator = DH_GENERATOR_2;
627c2203 444 gctx->dh_type = type;
7165593c 445 }
f9562909
P
446 if (!dh_gen_set_params(gctx, params)) {
447 OPENSSL_free(gctx);
448 gctx = NULL;
449 }
7165593c
SL
450 return gctx;
451}
452
f9562909
P
453static void *dh_gen_init(void *provctx, int selection,
454 const OSSL_PARAM params[])
627c2203 455{
f9562909 456 return dh_gen_init_base(provctx, selection, params, DH_FLAG_TYPE_DH);
627c2203
SL
457}
458
f9562909
P
459static void *dhx_gen_init(void *provctx, int selection,
460 const OSSL_PARAM params[])
627c2203 461{
f9562909 462 return dh_gen_init_base(provctx, selection, params, DH_FLAG_TYPE_DHX);
627c2203
SL
463}
464
7165593c
SL
465static int dh_gen_set_template(void *genctx, void *templ)
466{
467 struct dh_gen_ctx *gctx = genctx;
468 DH *dh = templ;
469
422cbcee 470 if (!ossl_prov_is_running() || gctx == NULL || dh == NULL)
7165593c 471 return 0;
19dbb742 472 gctx->ffc_params = ossl_dh_get0_params(dh);
7165593c
SL
473 return 1;
474}
475
476static int dh_set_gen_seed(struct dh_gen_ctx *gctx, unsigned char *seed,
477 size_t seedlen)
478{
479 OPENSSL_clear_free(gctx->seed, gctx->seedlen);
480 gctx->seed = NULL;
481 gctx->seedlen = 0;
482 if (seed != NULL && seedlen > 0) {
483 gctx->seed = OPENSSL_memdup(seed, seedlen);
484 if (gctx->seed == NULL)
485 return 0;
486 gctx->seedlen = seedlen;
487 }
488 return 1;
489}
490
491static int dh_gen_set_params(void *genctx, const OSSL_PARAM params[])
492{
493 struct dh_gen_ctx *gctx = genctx;
494 const OSSL_PARAM *p;
495
496 if (gctx == NULL)
497 return 0;
f9562909
P
498 if (params == NULL)
499 return 1;
500
7165593c
SL
501
502 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_TYPE);
503 if (p != NULL) {
504 if (p->data_type != OSSL_PARAM_UTF8_STRING
c829c23b 505 || ((gctx->gen_type =
19dbb742 506 dh_gen_type_name2id_w_default(p->data, gctx->dh_type)) == -1)) {
7165593c
SL
507 ERR_raise(ERR_LIB_PROV, ERR_R_PASSED_INVALID_ARGUMENT);
508 return 0;
509 }
510 }
023b188c 511 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_GROUP_NAME);
7165593c 512 if (p != NULL) {
c829c23b
RL
513 const DH_NAMED_GROUP *group = NULL;
514
7165593c 515 if (p->data_type != OSSL_PARAM_UTF8_STRING
c829c23b
RL
516 || (group = ossl_ffc_name_to_dh_named_group(p->data)) == NULL
517 || ((gctx->group_nid =
518 ossl_ffc_named_group_get_uid(group)) == NID_undef)) {
7165593c
SL
519 ERR_raise(ERR_LIB_PROV, ERR_R_PASSED_INVALID_ARGUMENT);
520 return 0;
521 }
522 gctx->gen_type = DH_PARAMGEN_TYPE_GROUP;
523 }
b8086652 524 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_DH_GENERATOR);
738ee181 525 if (p != NULL && !OSSL_PARAM_get_int(p, &gctx->generator))
7165593c
SL
526 return 0;
527 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_GINDEX);
738ee181 528 if (p != NULL && !OSSL_PARAM_get_int(p, &gctx->gindex))
7165593c
SL
529 return 0;
530 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_PCOUNTER);
738ee181 531 if (p != NULL && !OSSL_PARAM_get_int(p, &gctx->pcounter))
7165593c
SL
532 return 0;
533 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_H);
738ee181 534 if (p != NULL && !OSSL_PARAM_get_int(p, &gctx->hindex))
7165593c
SL
535 return 0;
536 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_SEED);
537 if (p != NULL
538 && (p->data_type != OSSL_PARAM_OCTET_STRING
539 || !dh_set_gen_seed(gctx, p->data, p->data_size)))
540 return 0;
541
542 if ((p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_PBITS)) != NULL
543 && !OSSL_PARAM_get_size_t(p, &gctx->pbits))
544 return 0;
545 if ((p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_QBITS)) != NULL
546 && !OSSL_PARAM_get_size_t(p, &gctx->qbits))
547 return 0;
548 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_DIGEST);
549 if (p != NULL) {
7165593c
SL
550 if (p->data_type != OSSL_PARAM_UTF8_STRING)
551 return 0;
f2a71518
SL
552 OPENSSL_free(gctx->mdname);
553 gctx->mdname = OPENSSL_strdup(p->data);
554 if (gctx->mdname == NULL)
555 return 0;
4f2271d5
SL
556 }
557 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_DIGEST_PROPS);
558 if (p != NULL) {
559 if (p->data_type != OSSL_PARAM_UTF8_STRING)
7165593c 560 return 0;
f2a71518
SL
561 OPENSSL_free(gctx->mdprops);
562 gctx->mdprops = OPENSSL_strdup(p->data);
563 if (gctx->mdprops == NULL)
564 return 0;
7165593c 565 }
738ee181
SL
566 p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_DH_PRIV_LEN);
567 if (p != NULL && !OSSL_PARAM_get_int(p, &gctx->priv_len))
568 return 0;
7165593c
SL
569 return 1;
570}
571
fb67126e
TM
572static const OSSL_PARAM *dh_gen_settable_params(ossl_unused void *genctx,
573 ossl_unused void *provctx)
7165593c
SL
574{
575 static OSSL_PARAM settable[] = {
023b188c 576 OSSL_PARAM_utf8_string(OSSL_PKEY_PARAM_GROUP_NAME, NULL, 0),
b8086652
SL
577 OSSL_PARAM_int(OSSL_PKEY_PARAM_DH_PRIV_LEN, NULL),
578 OSSL_PARAM_int(OSSL_PKEY_PARAM_DH_GENERATOR, NULL),
7165593c
SL
579 OSSL_PARAM_utf8_string(OSSL_PKEY_PARAM_FFC_TYPE, NULL, 0),
580 OSSL_PARAM_size_t(OSSL_PKEY_PARAM_FFC_PBITS, NULL),
581 OSSL_PARAM_size_t(OSSL_PKEY_PARAM_FFC_QBITS, NULL),
582 OSSL_PARAM_utf8_string(OSSL_PKEY_PARAM_FFC_DIGEST, NULL, 0),
583 OSSL_PARAM_utf8_string(OSSL_PKEY_PARAM_FFC_DIGEST_PROPS, NULL, 0),
584 OSSL_PARAM_int(OSSL_PKEY_PARAM_FFC_GINDEX, NULL),
585 OSSL_PARAM_octet_string(OSSL_PKEY_PARAM_FFC_SEED, NULL, 0),
7165593c
SL
586 OSSL_PARAM_int(OSSL_PKEY_PARAM_FFC_PCOUNTER, NULL),
587 OSSL_PARAM_int(OSSL_PKEY_PARAM_FFC_H, NULL),
588 OSSL_PARAM_END
589 };
590 return settable;
591}
592
593static int dh_gencb(int p, int n, BN_GENCB *cb)
594{
595 struct dh_gen_ctx *gctx = BN_GENCB_get_arg(cb);
596 OSSL_PARAM params[] = { OSSL_PARAM_END, OSSL_PARAM_END, OSSL_PARAM_END };
597
598 params[0] = OSSL_PARAM_construct_int(OSSL_GEN_PARAM_POTENTIAL, &p);
599 params[1] = OSSL_PARAM_construct_int(OSSL_GEN_PARAM_ITERATION, &n);
600
601 return gctx->cb(params, gctx->cbarg);
602}
603
604static void *dh_gen(void *genctx, OSSL_CALLBACK *osslcb, void *cbarg)
605{
606 int ret = 0;
607 struct dh_gen_ctx *gctx = genctx;
608 DH *dh = NULL;
609 BN_GENCB *gencb = NULL;
610 FFC_PARAMS *ffc;
611
422cbcee 612 if (!ossl_prov_is_running() || gctx == NULL)
7165593c
SL
613 return NULL;
614
615 /* For parameter generation - If there is a group name just create it */
c2bd8d27
MC
616 if (gctx->gen_type == DH_PARAMGEN_TYPE_GROUP
617 && gctx->ffc_params == NULL) {
7165593c
SL
618 /* Select a named group if there is not one already */
619 if (gctx->group_nid == NID_undef)
19dbb742 620 gctx->group_nid = ossl_dh_get_named_group_uid_from_size(gctx->pbits);
7165593c
SL
621 if (gctx->group_nid == NID_undef)
622 return NULL;
19dbb742 623 dh = ossl_dh_new_by_nid_ex(gctx->libctx, gctx->group_nid);
7165593c
SL
624 if (dh == NULL)
625 return NULL;
19dbb742 626 ffc = ossl_dh_get0_params(dh);
7165593c 627 } else {
19dbb742 628 dh = ossl_dh_new_ex(gctx->libctx);
7165593c
SL
629 if (dh == NULL)
630 return NULL;
19dbb742 631 ffc = ossl_dh_get0_params(dh);
7165593c
SL
632
633 /* Copy the template value if one was passed */
634 if (gctx->ffc_params != NULL
5357c106 635 && !ossl_ffc_params_copy(ffc, gctx->ffc_params))
7165593c
SL
636 goto end;
637
5357c106 638 if (!ossl_ffc_params_set_seed(ffc, gctx->seed, gctx->seedlen))
7165593c
SL
639 goto end;
640 if (gctx->gindex != -1) {
5357c106 641 ossl_ffc_params_set_gindex(ffc, gctx->gindex);
7165593c 642 if (gctx->pcounter != -1)
5357c106 643 ossl_ffc_params_set_pcounter(ffc, gctx->pcounter);
7165593c 644 } else if (gctx->hindex != 0) {
5357c106 645 ossl_ffc_params_set_h(ffc, gctx->hindex);
7165593c 646 }
4f2271d5 647 if (gctx->mdname != NULL) {
5357c106 648 if (!ossl_ffc_set_digest(ffc, gctx->mdname, gctx->mdprops))
4f2271d5
SL
649 goto end;
650 }
7165593c
SL
651 gctx->cb = osslcb;
652 gctx->cbarg = cbarg;
653 gencb = BN_GENCB_new();
654 if (gencb != NULL)
655 BN_GENCB_set(gencb, dh_gencb, genctx);
656
657 if ((gctx->selection & OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) != 0) {
658 /*
659 * NOTE: The old safe prime generator code is not used in fips mode,
660 * (i.e internally it ignores the generator and chooses a named
661 * group based on pbits.
662 */
663 if (gctx->gen_type == DH_PARAMGEN_TYPE_GENERATOR)
664 ret = DH_generate_parameters_ex(dh, gctx->pbits,
665 gctx->generator, gencb);
666 else
19dbb742
SL
667 ret = ossl_dh_generate_ffc_parameters(dh, gctx->gen_type,
668 gctx->pbits, gctx->qbits,
669 gencb);
7165593c
SL
670 if (ret <= 0)
671 goto end;
672 }
673 }
674
675 if ((gctx->selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0) {
676 if (ffc->p == NULL || ffc->g == NULL)
677 goto end;
738ee181
SL
678 if (gctx->priv_len > 0)
679 DH_set_length(dh, (long)gctx->priv_len);
5357c106
P
680 ossl_ffc_params_enable_flags(ffc, FFC_PARAM_FLAG_VALIDATE_LEGACY,
681 gctx->gen_type == DH_PARAMGEN_TYPE_FIPS_186_2);
7165593c
SL
682 if (DH_generate_key(dh) <= 0)
683 goto end;
684 }
627c2203
SL
685 DH_clear_flags(dh, DH_FLAG_TYPE_MASK);
686 DH_set_flags(dh, gctx->dh_type);
687
7165593c
SL
688 ret = 1;
689end:
690 if (ret <= 0) {
691 DH_free(dh);
692 dh = NULL;
693 }
694 BN_GENCB_free(gencb);
695 return dh;
696}
697
698static void dh_gen_cleanup(void *genctx)
699{
700 struct dh_gen_ctx *gctx = genctx;
701
702 if (gctx == NULL)
703 return;
704
f2a71518
SL
705 OPENSSL_free(gctx->mdname);
706 OPENSSL_free(gctx->mdprops);
7165593c 707 OPENSSL_clear_free(gctx->seed, gctx->seedlen);
7165593c
SL
708 OPENSSL_free(gctx);
709}
710
4a9fe33c 711static void *dh_load(const void *reference, size_t reference_sz)
7c664b1f
RL
712{
713 DH *dh = NULL;
714
422cbcee 715 if (ossl_prov_is_running() && reference_sz == sizeof(dh)) {
7c664b1f
RL
716 /* The contents of the reference is the address to our object */
717 dh = *(DH **)reference;
718 /* We grabbed, so we detach it */
719 *(DH **)reference = NULL;
720 return dh;
721 }
722 return NULL;
723}
724
b4f447c0 725static void *dh_dup(const void *keydata_from, int selection)
4a9fe33c
TM
726{
727 if (ossl_prov_is_running())
b4f447c0 728 return ossl_dh_dup(keydata_from, selection);
4a9fe33c
TM
729 return NULL;
730}
731
1be63951 732const OSSL_DISPATCH ossl_dh_keymgmt_functions[] = {
8dd5c603 733 { OSSL_FUNC_KEYMGMT_NEW, (void (*)(void))dh_newdata },
7165593c
SL
734 { OSSL_FUNC_KEYMGMT_GEN_INIT, (void (*)(void))dh_gen_init },
735 { OSSL_FUNC_KEYMGMT_GEN_SET_TEMPLATE, (void (*)(void))dh_gen_set_template },
736 { OSSL_FUNC_KEYMGMT_GEN_SET_PARAMS, (void (*)(void))dh_gen_set_params },
737 { OSSL_FUNC_KEYMGMT_GEN_SETTABLE_PARAMS,
738 (void (*)(void))dh_gen_settable_params },
739 { OSSL_FUNC_KEYMGMT_GEN, (void (*)(void))dh_gen },
740 { OSSL_FUNC_KEYMGMT_GEN_CLEANUP, (void (*)(void))dh_gen_cleanup },
7c664b1f 741 { OSSL_FUNC_KEYMGMT_LOAD, (void (*)(void))dh_load },
8dd5c603 742 { OSSL_FUNC_KEYMGMT_FREE, (void (*)(void))dh_freedata },
273a67e3
RL
743 { OSSL_FUNC_KEYMGMT_GET_PARAMS, (void (*) (void))dh_get_params },
744 { OSSL_FUNC_KEYMGMT_GETTABLE_PARAMS, (void (*) (void))dh_gettable_params },
6a9bd929
MC
745 { OSSL_FUNC_KEYMGMT_SET_PARAMS, (void (*) (void))dh_set_params },
746 { OSSL_FUNC_KEYMGMT_SETTABLE_PARAMS, (void (*) (void))dh_settable_params },
8dd5c603 747 { OSSL_FUNC_KEYMGMT_HAS, (void (*)(void))dh_has },
2888fc15 748 { OSSL_FUNC_KEYMGMT_MATCH, (void (*)(void))dh_match },
a54ff473 749 { OSSL_FUNC_KEYMGMT_VALIDATE, (void (*)(void))dh_validate },
8dd5c603 750 { OSSL_FUNC_KEYMGMT_IMPORT, (void (*)(void))dh_import },
273a67e3 751 { OSSL_FUNC_KEYMGMT_IMPORT_TYPES, (void (*)(void))dh_import_types },
8dd5c603 752 { OSSL_FUNC_KEYMGMT_EXPORT, (void (*)(void))dh_export },
273a67e3 753 { OSSL_FUNC_KEYMGMT_EXPORT_TYPES, (void (*)(void))dh_export_types },
4a9fe33c 754 { OSSL_FUNC_KEYMGMT_DUP, (void (*)(void))dh_dup },
8b84b075
RL
755 { 0, NULL }
756};
627c2203
SL
757
758/* For any DH key, we use the "DH" algorithms regardless of sub-type. */
759static const char *dhx_query_operation_name(int operation_id)
760{
761 return "DH";
762}
763
1be63951 764const OSSL_DISPATCH ossl_dhx_keymgmt_functions[] = {
627c2203
SL
765 { OSSL_FUNC_KEYMGMT_NEW, (void (*)(void))dhx_newdata },
766 { OSSL_FUNC_KEYMGMT_GEN_INIT, (void (*)(void))dhx_gen_init },
767 { OSSL_FUNC_KEYMGMT_GEN_SET_TEMPLATE, (void (*)(void))dh_gen_set_template },
768 { OSSL_FUNC_KEYMGMT_GEN_SET_PARAMS, (void (*)(void))dh_gen_set_params },
769 { OSSL_FUNC_KEYMGMT_GEN_SETTABLE_PARAMS,
770 (void (*)(void))dh_gen_settable_params },
771 { OSSL_FUNC_KEYMGMT_GEN, (void (*)(void))dh_gen },
772 { OSSL_FUNC_KEYMGMT_GEN_CLEANUP, (void (*)(void))dh_gen_cleanup },
773 { OSSL_FUNC_KEYMGMT_LOAD, (void (*)(void))dh_load },
774 { OSSL_FUNC_KEYMGMT_FREE, (void (*)(void))dh_freedata },
775 { OSSL_FUNC_KEYMGMT_GET_PARAMS, (void (*) (void))dh_get_params },
776 { OSSL_FUNC_KEYMGMT_GETTABLE_PARAMS, (void (*) (void))dh_gettable_params },
777 { OSSL_FUNC_KEYMGMT_SET_PARAMS, (void (*) (void))dh_set_params },
778 { OSSL_FUNC_KEYMGMT_SETTABLE_PARAMS, (void (*) (void))dh_settable_params },
779 { OSSL_FUNC_KEYMGMT_HAS, (void (*)(void))dh_has },
780 { OSSL_FUNC_KEYMGMT_MATCH, (void (*)(void))dh_match },
781 { OSSL_FUNC_KEYMGMT_VALIDATE, (void (*)(void))dh_validate },
782 { OSSL_FUNC_KEYMGMT_IMPORT, (void (*)(void))dh_import },
783 { OSSL_FUNC_KEYMGMT_IMPORT_TYPES, (void (*)(void))dh_import_types },
784 { OSSL_FUNC_KEYMGMT_EXPORT, (void (*)(void))dh_export },
785 { OSSL_FUNC_KEYMGMT_EXPORT_TYPES, (void (*)(void))dh_export_types },
786 { OSSL_FUNC_KEYMGMT_QUERY_OPERATION_NAME,
787 (void (*)(void))dhx_query_operation_name },
4a9fe33c 788 { OSSL_FUNC_KEYMGMT_DUP, (void (*)(void))dh_dup },
627c2203
SL
789 { 0, NULL }
790};