Coverage Report

Created: 2025-08-28 07:07

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