Coverage Report

Created: 2025-06-13 06:58

/src/openssl31/crypto/cms/cms_ec.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 2006-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
#include <assert.h>
11
#include <limits.h>
12
#include <openssl/cms.h>
13
#include <openssl/err.h>
14
#include <openssl/decoder.h>
15
#include "internal/sizes.h"
16
#include "crypto/evp.h"
17
#include "cms_local.h"
18
19
static EVP_PKEY *pkey_type2param(int ptype, const void *pval,
20
                                 OSSL_LIB_CTX *libctx, const char *propq)
21
0
{
22
0
    EVP_PKEY *pkey = NULL;
23
0
    EVP_PKEY_CTX *pctx = NULL;
24
0
    OSSL_DECODER_CTX *ctx = NULL;
25
26
0
    if (ptype == V_ASN1_SEQUENCE) {
27
0
        const ASN1_STRING *pstr = pval;
28
0
        const unsigned char *pm = pstr->data;
29
0
        size_t pmlen = (size_t)pstr->length;
30
0
        int selection = OSSL_KEYMGMT_SELECT_ALL_PARAMETERS;
31
32
0
        ctx = OSSL_DECODER_CTX_new_for_pkey(&pkey, "DER", NULL, "EC",
33
0
                                            selection, libctx, propq);
34
0
        if (ctx == NULL)
35
0
            goto err;
36
37
0
        if (!OSSL_DECODER_from_data(ctx, &pm, &pmlen)) {
38
0
            ERR_raise(ERR_LIB_CMS, CMS_R_DECODE_ERROR);
39
0
            goto err;
40
0
        }
41
0
        OSSL_DECODER_CTX_free(ctx);
42
0
        return pkey;
43
0
    } else if (ptype == V_ASN1_OBJECT) {
44
0
        const ASN1_OBJECT *poid = pval;
45
0
        char groupname[OSSL_MAX_NAME_SIZE];
46
47
        /* type == V_ASN1_OBJECT => the parameters are given by an asn1 OID */
48
0
        pctx = EVP_PKEY_CTX_new_from_name(libctx, "EC", propq);
49
0
        if (pctx == NULL || EVP_PKEY_paramgen_init(pctx) <= 0)
50
0
            goto err;
51
0
        if (OBJ_obj2txt(groupname, sizeof(groupname), poid, 0) <= 0
52
0
                || EVP_PKEY_CTX_set_group_name(pctx, groupname) <= 0) {
53
0
            ERR_raise(ERR_LIB_CMS, CMS_R_DECODE_ERROR);
54
0
            goto err;
55
0
        }
56
0
        if (EVP_PKEY_paramgen(pctx, &pkey) <= 0)
57
0
            goto err;
58
0
        EVP_PKEY_CTX_free(pctx);
59
0
        return pkey;
60
0
    }
61
62
0
    ERR_raise(ERR_LIB_CMS, CMS_R_DECODE_ERROR);
63
0
    return NULL;
64
65
0
 err:
66
0
    EVP_PKEY_free(pkey);
67
0
    EVP_PKEY_CTX_free(pctx);
68
0
    OSSL_DECODER_CTX_free(ctx);
69
0
    return NULL;
70
0
}
71
72
static int ecdh_cms_set_peerkey(EVP_PKEY_CTX *pctx,
73
                                X509_ALGOR *alg, ASN1_BIT_STRING *pubkey)
74
0
{
75
0
    const ASN1_OBJECT *aoid;
76
0
    int atype;
77
0
    const void *aval;
78
0
    int rv = 0;
79
0
    EVP_PKEY *pkpeer = NULL;
80
0
    const unsigned char *p;
81
0
    int plen;
82
83
0
    X509_ALGOR_get0(&aoid, &atype, &aval, alg);
84
0
    if (OBJ_obj2nid(aoid) != NID_X9_62_id_ecPublicKey)
85
0
        goto err;
86
87
    /* If absent parameters get group from main key */
88
0
    if (atype == V_ASN1_UNDEF || atype == V_ASN1_NULL) {
89
0
        EVP_PKEY *pk;
90
91
0
        pk = EVP_PKEY_CTX_get0_pkey(pctx);
92
0
        if (pk == NULL)
93
0
            goto err;
94
95
0
        pkpeer = EVP_PKEY_new();
96
0
        if (pkpeer == NULL)
97
0
            goto err;
98
0
        if (!EVP_PKEY_copy_parameters(pkpeer, pk))
99
0
            goto err;
100
0
    } else {
101
0
        pkpeer = pkey_type2param(atype, aval,
102
0
                                 EVP_PKEY_CTX_get0_libctx(pctx),
103
0
                                 EVP_PKEY_CTX_get0_propq(pctx));
104
0
        if (pkpeer == NULL)
105
0
            goto err;
106
0
    }
107
    /* We have parameters now set public key */
108
0
    plen = ASN1_STRING_length(pubkey);
109
0
    p = ASN1_STRING_get0_data(pubkey);
110
0
    if (p == NULL || plen == 0)
111
0
        goto err;
112
113
0
    if (!EVP_PKEY_set1_encoded_public_key(pkpeer, p, plen))
114
0
        goto err;
115
116
0
    if (EVP_PKEY_derive_set_peer(pctx, pkpeer) > 0)
117
0
        rv = 1;
118
0
 err:
119
0
    EVP_PKEY_free(pkpeer);
120
0
    return rv;
121
0
}
122
123
/* Set KDF parameters based on KDF NID */
124
static int ecdh_cms_set_kdf_param(EVP_PKEY_CTX *pctx, int eckdf_nid)
125
0
{
126
0
    int kdf_nid, kdfmd_nid, cofactor;
127
0
    const EVP_MD *kdf_md;
128
129
0
    if (eckdf_nid == NID_undef)
130
0
        return 0;
131
132
    /* Lookup KDF type, cofactor mode and digest */
133
0
    if (!OBJ_find_sigid_algs(eckdf_nid, &kdfmd_nid, &kdf_nid))
134
0
        return 0;
135
136
0
    if (kdf_nid == NID_dh_std_kdf)
137
0
        cofactor = 0;
138
0
    else if (kdf_nid == NID_dh_cofactor_kdf)
139
0
        cofactor = 1;
140
0
    else
141
0
        return 0;
142
143
0
    if (EVP_PKEY_CTX_set_ecdh_cofactor_mode(pctx, cofactor) <= 0)
144
0
        return 0;
145
146
0
    if (EVP_PKEY_CTX_set_ecdh_kdf_type(pctx, EVP_PKEY_ECDH_KDF_X9_63) <= 0)
147
0
        return 0;
148
149
0
    kdf_md = EVP_get_digestbynid(kdfmd_nid);
150
0
    if (!kdf_md)
151
0
        return 0;
152
153
0
    if (EVP_PKEY_CTX_set_ecdh_kdf_md(pctx, kdf_md) <= 0)
154
0
        return 0;
155
0
    return 1;
156
0
}
157
158
static int ecdh_cms_set_shared_info(EVP_PKEY_CTX *pctx, CMS_RecipientInfo *ri)
159
0
{
160
0
    int rv = 0;
161
0
    X509_ALGOR *alg, *kekalg = NULL;
162
0
    ASN1_OCTET_STRING *ukm;
163
0
    const unsigned char *p;
164
0
    unsigned char *der = NULL;
165
0
    int plen, keylen;
166
0
    EVP_CIPHER *kekcipher = NULL;
167
0
    EVP_CIPHER_CTX *kekctx;
168
0
    char name[OSSL_MAX_NAME_SIZE];
169
170
0
    if (!CMS_RecipientInfo_kari_get0_alg(ri, &alg, &ukm))
171
0
        return 0;
172
173
0
    if (!ecdh_cms_set_kdf_param(pctx, OBJ_obj2nid(alg->algorithm))) {
174
0
        ERR_raise(ERR_LIB_CMS, CMS_R_KDF_PARAMETER_ERROR);
175
0
        return 0;
176
0
    }
177
178
0
    if (alg->parameter->type != V_ASN1_SEQUENCE)
179
0
        return 0;
180
181
0
    p = alg->parameter->value.sequence->data;
182
0
    plen = alg->parameter->value.sequence->length;
183
0
    kekalg = d2i_X509_ALGOR(NULL, &p, plen);
184
0
    if (kekalg == NULL)
185
0
        goto err;
186
0
    kekctx = CMS_RecipientInfo_kari_get0_ctx(ri);
187
0
    if (kekctx == NULL)
188
0
        goto err;
189
0
    OBJ_obj2txt(name, sizeof(name), kekalg->algorithm, 0);
190
0
    kekcipher = EVP_CIPHER_fetch(pctx->libctx, name, pctx->propquery);
191
0
    if (kekcipher == NULL || EVP_CIPHER_get_mode(kekcipher) != EVP_CIPH_WRAP_MODE)
192
0
        goto err;
193
0
    if (!EVP_EncryptInit_ex(kekctx, kekcipher, NULL, NULL, NULL))
194
0
        goto err;
195
0
    if (EVP_CIPHER_asn1_to_param(kekctx, kekalg->parameter) <= 0)
196
0
        goto err;
197
198
0
    keylen = EVP_CIPHER_CTX_get_key_length(kekctx);
199
0
    if (EVP_PKEY_CTX_set_ecdh_kdf_outlen(pctx, keylen) <= 0)
200
0
        goto err;
201
202
0
    plen = CMS_SharedInfo_encode(&der, kekalg, ukm, keylen);
203
204
0
    if (plen <= 0)
205
0
        goto err;
206
207
0
    if (EVP_PKEY_CTX_set0_ecdh_kdf_ukm(pctx, der, plen) <= 0)
208
0
        goto err;
209
0
    der = NULL;
210
211
0
    rv = 1;
212
0
 err:
213
0
    EVP_CIPHER_free(kekcipher);
214
0
    X509_ALGOR_free(kekalg);
215
0
    OPENSSL_free(der);
216
0
    return rv;
217
0
}
218
219
static int ecdh_cms_decrypt(CMS_RecipientInfo *ri)
220
0
{
221
0
    EVP_PKEY_CTX *pctx;
222
223
0
    pctx = CMS_RecipientInfo_get0_pkey_ctx(ri);
224
0
    if (pctx == NULL)
225
0
        return 0;
226
    /* See if we need to set peer key */
227
0
    if (!EVP_PKEY_CTX_get0_peerkey(pctx)) {
228
0
        X509_ALGOR *alg;
229
0
        ASN1_BIT_STRING *pubkey;
230
231
0
        if (!CMS_RecipientInfo_kari_get0_orig_id(ri, &alg, &pubkey,
232
0
                                                 NULL, NULL, NULL))
233
0
            return 0;
234
0
        if (alg == NULL || pubkey == NULL)
235
0
            return 0;
236
0
        if (!ecdh_cms_set_peerkey(pctx, alg, pubkey)) {
237
0
            ERR_raise(ERR_LIB_CMS, CMS_R_PEER_KEY_ERROR);
238
0
            return 0;
239
0
        }
240
0
    }
241
    /* Set ECDH derivation parameters and initialise unwrap context */
242
0
    if (!ecdh_cms_set_shared_info(pctx, ri)) {
243
0
        ERR_raise(ERR_LIB_CMS, CMS_R_SHARED_INFO_ERROR);
244
0
        return 0;
245
0
    }
246
0
    return 1;
247
0
}
248
249
static int ecdh_cms_encrypt(CMS_RecipientInfo *ri)
250
0
{
251
0
    EVP_PKEY_CTX *pctx;
252
0
    EVP_PKEY *pkey;
253
0
    EVP_CIPHER_CTX *ctx;
254
0
    int keylen;
255
0
    X509_ALGOR *talg, *wrap_alg = NULL;
256
0
    const ASN1_OBJECT *aoid;
257
0
    ASN1_BIT_STRING *pubkey;
258
0
    ASN1_STRING *wrap_str;
259
0
    ASN1_OCTET_STRING *ukm;
260
0
    unsigned char *penc = NULL;
261
0
    int penclen;
262
0
    int rv = 0;
263
0
    int ecdh_nid, kdf_type, kdf_nid, wrap_nid;
264
0
    const EVP_MD *kdf_md;
265
266
0
    pctx = CMS_RecipientInfo_get0_pkey_ctx(ri);
267
0
    if (pctx == NULL)
268
0
        return 0;
269
    /* Get ephemeral key */
270
0
    pkey = EVP_PKEY_CTX_get0_pkey(pctx);
271
0
    if (!CMS_RecipientInfo_kari_get0_orig_id(ri, &talg, &pubkey,
272
0
                                             NULL, NULL, NULL))
273
0
        goto err;
274
0
    X509_ALGOR_get0(&aoid, NULL, NULL, talg);
275
    /* Is everything uninitialised? */
276
0
    if (aoid == OBJ_nid2obj(NID_undef)) {
277
        /* Set the key */
278
0
        size_t enckeylen;
279
280
0
        enckeylen = EVP_PKEY_get1_encoded_public_key(pkey, &penc);
281
0
        if (enckeylen > INT_MAX || enckeylen == 0)
282
0
            goto err;
283
0
        ASN1_STRING_set0(pubkey, penc, (int)enckeylen);
284
0
        pubkey->flags &= ~(ASN1_STRING_FLAG_BITS_LEFT | 0x07);
285
0
        pubkey->flags |= ASN1_STRING_FLAG_BITS_LEFT;
286
287
0
        penc = NULL;
288
0
        (void)X509_ALGOR_set0(talg, OBJ_nid2obj(NID_X9_62_id_ecPublicKey),
289
0
                              V_ASN1_UNDEF, NULL); /* cannot fail */
290
0
    }
291
292
    /* See if custom parameters set */
293
0
    kdf_type = EVP_PKEY_CTX_get_ecdh_kdf_type(pctx);
294
0
    if (kdf_type <= 0)
295
0
        goto err;
296
0
    if (EVP_PKEY_CTX_get_ecdh_kdf_md(pctx, &kdf_md) <= 0)
297
0
        goto err;
298
0
    ecdh_nid = EVP_PKEY_CTX_get_ecdh_cofactor_mode(pctx);
299
0
    if (ecdh_nid < 0)
300
0
        goto err;
301
0
    else if (ecdh_nid == 0)
302
0
        ecdh_nid = NID_dh_std_kdf;
303
0
    else if (ecdh_nid == 1)
304
0
        ecdh_nid = NID_dh_cofactor_kdf;
305
306
0
    if (kdf_type == EVP_PKEY_ECDH_KDF_NONE) {
307
0
        kdf_type = EVP_PKEY_ECDH_KDF_X9_63;
308
0
        if (EVP_PKEY_CTX_set_ecdh_kdf_type(pctx, kdf_type) <= 0)
309
0
            goto err;
310
0
    } else
311
        /* Unknown KDF */
312
0
        goto err;
313
0
    if (kdf_md == NULL) {
314
        /* Fixme later for better MD */
315
0
        kdf_md = EVP_sha1();
316
0
        if (EVP_PKEY_CTX_set_ecdh_kdf_md(pctx, kdf_md) <= 0)
317
0
            goto err;
318
0
    }
319
320
0
    if (!CMS_RecipientInfo_kari_get0_alg(ri, &talg, &ukm))
321
0
        goto err;
322
323
    /* Lookup NID for KDF+cofactor+digest */
324
325
0
    if (!OBJ_find_sigid_by_algs(&kdf_nid, EVP_MD_get_type(kdf_md), ecdh_nid))
326
0
        goto err;
327
    /* Get wrap NID */
328
0
    ctx = CMS_RecipientInfo_kari_get0_ctx(ri);
329
0
    wrap_nid = EVP_CIPHER_CTX_get_type(ctx);
330
0
    keylen = EVP_CIPHER_CTX_get_key_length(ctx);
331
332
    /* Package wrap algorithm in an AlgorithmIdentifier */
333
334
0
    wrap_alg = X509_ALGOR_new();
335
0
    if (wrap_alg == NULL)
336
0
        goto err;
337
0
    wrap_alg->algorithm = OBJ_nid2obj(wrap_nid);
338
0
    wrap_alg->parameter = ASN1_TYPE_new();
339
0
    if (wrap_alg->parameter == NULL)
340
0
        goto err;
341
0
    if (EVP_CIPHER_param_to_asn1(ctx, wrap_alg->parameter) <= 0)
342
0
        goto err;
343
0
    if (ASN1_TYPE_get(wrap_alg->parameter) == NID_undef) {
344
0
        ASN1_TYPE_free(wrap_alg->parameter);
345
0
        wrap_alg->parameter = NULL;
346
0
    }
347
348
0
    if (EVP_PKEY_CTX_set_ecdh_kdf_outlen(pctx, keylen) <= 0)
349
0
        goto err;
350
351
0
    penclen = CMS_SharedInfo_encode(&penc, wrap_alg, ukm, keylen);
352
353
0
    if (penclen <= 0)
354
0
        goto err;
355
356
0
    if (EVP_PKEY_CTX_set0_ecdh_kdf_ukm(pctx, penc, penclen) <= 0)
357
0
        goto err;
358
0
    penc = NULL;
359
360
    /*
361
     * Now need to wrap encoding of wrap AlgorithmIdentifier into parameter
362
     * of another AlgorithmIdentifier.
363
     */
364
0
    penclen = i2d_X509_ALGOR(wrap_alg, &penc);
365
0
    if (penclen <= 0)
366
0
        goto err;
367
0
    wrap_str = ASN1_STRING_new();
368
0
    if (wrap_str == NULL)
369
0
        goto err;
370
0
    ASN1_STRING_set0(wrap_str, penc, penclen);
371
0
    penc = NULL;
372
0
    X509_ALGOR_set0(talg, OBJ_nid2obj(kdf_nid), V_ASN1_SEQUENCE, wrap_str);
373
374
0
    rv = 1;
375
376
0
 err:
377
0
    OPENSSL_free(penc);
378
0
    X509_ALGOR_free(wrap_alg);
379
0
    return rv;
380
0
}
381
382
int ossl_cms_ecdh_envelope(CMS_RecipientInfo *ri, int decrypt)
383
0
{
384
0
    assert(decrypt == 0 || decrypt == 1);
385
386
0
    if (decrypt == 1)
387
0
        return ecdh_cms_decrypt(ri);
388
389
0
    if (decrypt == 0)
390
0
        return ecdh_cms_encrypt(ri);
391
392
0
    ERR_raise(ERR_LIB_CMS, CMS_R_NOT_SUPPORTED_FOR_THIS_KEY_TYPE);
393
0
    return 0;
394
0
}