Coverage Report

Created: 2025-06-13 06:58

/src/openssl32/providers/implementations/exchange/ecx_exch.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 2020-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 <openssl/crypto.h>
11
#include <openssl/core_dispatch.h>
12
#include <openssl/core_names.h>
13
#include <openssl/params.h>
14
#include <openssl/err.h>
15
#include <openssl/proverr.h>
16
#include "internal/cryptlib.h"
17
#include "crypto/ecx.h"
18
#include "prov/implementations.h"
19
#include "prov/providercommon.h"
20
21
static OSSL_FUNC_keyexch_newctx_fn x25519_newctx;
22
static OSSL_FUNC_keyexch_newctx_fn x448_newctx;
23
static OSSL_FUNC_keyexch_init_fn ecx_init;
24
static OSSL_FUNC_keyexch_set_peer_fn ecx_set_peer;
25
static OSSL_FUNC_keyexch_derive_fn ecx_derive;
26
static OSSL_FUNC_keyexch_freectx_fn ecx_freectx;
27
static OSSL_FUNC_keyexch_dupctx_fn ecx_dupctx;
28
29
/*
30
 * What's passed as an actual key is defined by the KEYMGMT interface.
31
 * We happen to know that our KEYMGMT simply passes ECX_KEY structures, so
32
 * we use that here too.
33
 */
34
35
typedef struct {
36
    size_t keylen;
37
    ECX_KEY *key;
38
    ECX_KEY *peerkey;
39
} PROV_ECX_CTX;
40
41
static void *ecx_newctx(void *provctx, size_t keylen)
42
16.2k
{
43
16.2k
    PROV_ECX_CTX *ctx;
44
45
16.2k
    if (!ossl_prov_is_running())
46
0
        return NULL;
47
48
16.2k
    ctx = OPENSSL_zalloc(sizeof(PROV_ECX_CTX));
49
16.2k
    if (ctx == NULL)
50
0
        return NULL;
51
52
16.2k
    ctx->keylen = keylen;
53
54
16.2k
    return ctx;
55
16.2k
}
56
57
static void *x25519_newctx(void *provctx)
58
16.2k
{
59
16.2k
    return ecx_newctx(provctx, X25519_KEYLEN);
60
16.2k
}
61
62
static void *x448_newctx(void *provctx)
63
13
{
64
13
    return ecx_newctx(provctx, X448_KEYLEN);
65
13
}
66
67
static int ecx_init(void *vecxctx, void *vkey,
68
                    ossl_unused const OSSL_PARAM params[])
69
16.2k
{
70
16.2k
    PROV_ECX_CTX *ecxctx = (PROV_ECX_CTX *)vecxctx;
71
16.2k
    ECX_KEY *key = vkey;
72
73
16.2k
    if (!ossl_prov_is_running())
74
0
        return 0;
75
76
16.2k
    if (ecxctx == NULL
77
16.2k
            || key == NULL
78
16.2k
            || key->keylen != ecxctx->keylen
79
16.2k
            || !ossl_ecx_key_up_ref(key)) {
80
0
        ERR_raise(ERR_LIB_PROV, ERR_R_INTERNAL_ERROR);
81
0
        return 0;
82
0
    }
83
84
16.2k
    ossl_ecx_key_free(ecxctx->key);
85
16.2k
    ecxctx->key = key;
86
87
16.2k
    return 1;
88
16.2k
}
89
90
static int ecx_set_peer(void *vecxctx, void *vkey)
91
16.2k
{
92
16.2k
    PROV_ECX_CTX *ecxctx = (PROV_ECX_CTX *)vecxctx;
93
16.2k
    ECX_KEY *key = vkey;
94
95
16.2k
    if (!ossl_prov_is_running())
96
0
        return 0;
97
98
16.2k
    if (ecxctx == NULL
99
16.2k
            || key == NULL
100
16.2k
            || key->keylen != ecxctx->keylen
101
16.2k
            || !ossl_ecx_key_up_ref(key)) {
102
0
        ERR_raise(ERR_LIB_PROV, ERR_R_INTERNAL_ERROR);
103
0
        return 0;
104
0
    }
105
16.2k
    ossl_ecx_key_free(ecxctx->peerkey);
106
16.2k
    ecxctx->peerkey = key;
107
108
16.2k
    return 1;
109
16.2k
}
110
111
static int ecx_derive(void *vecxctx, unsigned char *secret, size_t *secretlen,
112
                      size_t outlen)
113
28.5k
{
114
28.5k
    PROV_ECX_CTX *ecxctx = (PROV_ECX_CTX *)vecxctx;
115
116
28.5k
    if (!ossl_prov_is_running())
117
0
        return 0;
118
28.5k
    return ossl_ecx_compute_key(ecxctx->peerkey, ecxctx->key, ecxctx->keylen,
119
28.5k
                                secret, secretlen, outlen);
120
28.5k
}
121
122
static void ecx_freectx(void *vecxctx)
123
16.2k
{
124
16.2k
    PROV_ECX_CTX *ecxctx = (PROV_ECX_CTX *)vecxctx;
125
126
16.2k
    ossl_ecx_key_free(ecxctx->key);
127
16.2k
    ossl_ecx_key_free(ecxctx->peerkey);
128
129
16.2k
    OPENSSL_free(ecxctx);
130
16.2k
}
131
132
static void *ecx_dupctx(void *vecxctx)
133
0
{
134
0
    PROV_ECX_CTX *srcctx = (PROV_ECX_CTX *)vecxctx;
135
0
    PROV_ECX_CTX *dstctx;
136
137
0
    if (!ossl_prov_is_running())
138
0
        return NULL;
139
140
0
    dstctx = OPENSSL_zalloc(sizeof(*srcctx));
141
0
    if (dstctx == NULL)
142
0
        return NULL;
143
144
0
    *dstctx = *srcctx;
145
0
    if (dstctx->key != NULL && !ossl_ecx_key_up_ref(dstctx->key)) {
146
0
        ERR_raise(ERR_LIB_PROV, ERR_R_INTERNAL_ERROR);
147
0
        OPENSSL_free(dstctx);
148
0
        return NULL;
149
0
    }
150
151
0
    if (dstctx->peerkey != NULL && !ossl_ecx_key_up_ref(dstctx->peerkey)) {
152
0
        ERR_raise(ERR_LIB_PROV, ERR_R_INTERNAL_ERROR);
153
0
        ossl_ecx_key_free(dstctx->key);
154
0
        OPENSSL_free(dstctx);
155
0
        return NULL;
156
0
    }
157
158
0
    return dstctx;
159
0
}
160
161
const OSSL_DISPATCH ossl_x25519_keyexch_functions[] = {
162
    { OSSL_FUNC_KEYEXCH_NEWCTX, (void (*)(void))x25519_newctx },
163
    { OSSL_FUNC_KEYEXCH_INIT, (void (*)(void))ecx_init },
164
    { OSSL_FUNC_KEYEXCH_DERIVE, (void (*)(void))ecx_derive },
165
    { OSSL_FUNC_KEYEXCH_SET_PEER, (void (*)(void))ecx_set_peer },
166
    { OSSL_FUNC_KEYEXCH_FREECTX, (void (*)(void))ecx_freectx },
167
    { OSSL_FUNC_KEYEXCH_DUPCTX, (void (*)(void))ecx_dupctx },
168
    OSSL_DISPATCH_END
169
};
170
171
const OSSL_DISPATCH ossl_x448_keyexch_functions[] = {
172
    { OSSL_FUNC_KEYEXCH_NEWCTX, (void (*)(void))x448_newctx },
173
    { OSSL_FUNC_KEYEXCH_INIT, (void (*)(void))ecx_init },
174
    { OSSL_FUNC_KEYEXCH_DERIVE, (void (*)(void))ecx_derive },
175
    { OSSL_FUNC_KEYEXCH_SET_PEER, (void (*)(void))ecx_set_peer },
176
    { OSSL_FUNC_KEYEXCH_FREECTX, (void (*)(void))ecx_freectx },
177
    { OSSL_FUNC_KEYEXCH_DUPCTX, (void (*)(void))ecx_dupctx },
178
    OSSL_DISPATCH_END
179
};