]> git.ipfire.org Git - thirdparty/openssl.git/blame - providers/implementations/exchange/ecx_exch.c
Update copyright year
[thirdparty/openssl.git] / providers / implementations / exchange / ecx_exch.c
CommitLineData
6f7d2135 1/*
a28d06f3 2 * Copyright 2020-2021 The OpenSSL Project Authors. All Rights Reserved.
6f7d2135
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
10#include <openssl/crypto.h>
23c48d94 11#include <openssl/core_dispatch.h>
6f7d2135
MC
12#include <openssl/core_names.h>
13#include <openssl/params.h>
14#include <openssl/err.h>
2741128e 15#include <openssl/proverr.h>
6f7d2135
MC
16#include "internal/cryptlib.h"
17#include "crypto/ecx.h"
18#include "prov/implementations.h"
ca94057f 19#include "prov/providercommon.h"
97b50f67
MC
20#ifdef S390X_EC_ASM
21# include "s390x_arch.h"
22#endif
6f7d2135 23
363b1e5d
DMSP
24static OSSL_FUNC_keyexch_newctx_fn x25519_newctx;
25static OSSL_FUNC_keyexch_newctx_fn x448_newctx;
26static OSSL_FUNC_keyexch_init_fn ecx_init;
27static OSSL_FUNC_keyexch_set_peer_fn ecx_set_peer;
28static OSSL_FUNC_keyexch_derive_fn ecx_derive;
29static OSSL_FUNC_keyexch_freectx_fn ecx_freectx;
30static OSSL_FUNC_keyexch_dupctx_fn ecx_dupctx;
6f7d2135
MC
31
32/*
33 * What's passed as an actual key is defined by the KEYMGMT interface.
34 * We happen to know that our KEYMGMT simply passes ECX_KEY structures, so
35 * we use that here too.
36 */
37
38typedef struct {
39 size_t keylen;
40 ECX_KEY *key;
41 ECX_KEY *peerkey;
42} PROV_ECX_CTX;
43
44static void *ecx_newctx(void *provctx, size_t keylen)
45{
ca94057f 46 PROV_ECX_CTX *ctx;
6f7d2135 47
ca94057f
P
48 if (!ossl_prov_is_running())
49 return NULL;
50
51 ctx = OPENSSL_zalloc(sizeof(PROV_ECX_CTX));
6f7d2135
MC
52 if (ctx == NULL) {
53 ERR_raise(ERR_LIB_PROV, ERR_R_MALLOC_FAILURE);
54 return NULL;
55 }
56
57 ctx->keylen = keylen;
58
59 return ctx;
60}
61
62static void *x25519_newctx(void *provctx)
63{
64 return ecx_newctx(provctx, X25519_KEYLEN);
65}
66
67static void *x448_newctx(void *provctx)
68{
69 return ecx_newctx(provctx, X448_KEYLEN);
70}
71
72static int ecx_init(void *vecxctx, void *vkey)
73{
74 PROV_ECX_CTX *ecxctx = (PROV_ECX_CTX *)vecxctx;
75 ECX_KEY *key = vkey;
76
ca94057f
P
77 if (!ossl_prov_is_running())
78 return 0;
79
6f7d2135
MC
80 if (ecxctx == NULL
81 || key == NULL
82 || key->keylen != ecxctx->keylen
83 || !ecx_key_up_ref(key)) {
84 ERR_raise(ERR_LIB_PROV, ERR_R_INTERNAL_ERROR);
85 return 0;
86 }
87
88 ecx_key_free(ecxctx->key);
89 ecxctx->key = key;
90
91 return 1;
92}
93
94static int ecx_set_peer(void *vecxctx, void *vkey)
95{
96 PROV_ECX_CTX *ecxctx = (PROV_ECX_CTX *)vecxctx;
97 ECX_KEY *key = vkey;
98
ca94057f
P
99 if (!ossl_prov_is_running())
100 return 0;
101
6f7d2135
MC
102 if (ecxctx == NULL
103 || key == NULL
104 || key->keylen != ecxctx->keylen
105 || !ecx_key_up_ref(key)) {
106 ERR_raise(ERR_LIB_PROV, ERR_R_INTERNAL_ERROR);
107 return 0;
108 }
109 ecx_key_free(ecxctx->peerkey);
110 ecxctx->peerkey = key;
111
112 return 1;
113}
114
115static int ecx_derive(void *vecxctx, unsigned char *secret, size_t *secretlen,
116 size_t outlen)
117{
118 PROV_ECX_CTX *ecxctx = (PROV_ECX_CTX *)vecxctx;
119
ca94057f
P
120 if (!ossl_prov_is_running())
121 return 0;
122
6f7d2135
MC
123 if (ecxctx->key == NULL
124 || ecxctx->key->privkey == NULL
125 || ecxctx->peerkey == NULL) {
126 ERR_raise(ERR_LIB_PROV, PROV_R_INVALID_KEY);
127 return 0;
128 }
129
130 if (!ossl_assert(ecxctx->keylen == X25519_KEYLEN
131 || ecxctx->keylen == X448_KEYLEN)) {
132 ERR_raise(ERR_LIB_PROV, PROV_R_INVALID_KEY_LENGTH);
133 return 0;
134 }
135
136 if (secret == NULL) {
137 *secretlen = ecxctx->keylen;
138 return 1;
139 }
140 if (outlen < ecxctx->keylen) {
141 ERR_raise(ERR_LIB_PROV, PROV_R_INVALID_KEY_LENGTH);
142 return 0;
143 }
144
145 if (ecxctx->keylen == X25519_KEYLEN) {
97b50f67
MC
146#ifdef S390X_EC_ASM
147 if (OPENSSL_s390xcap_P.pcc[1]
148 & S390X_CAPBIT(S390X_SCALAR_MULTIPLY_X25519)) {
149 if (s390x_x25519_mul(secret, ecxctx->peerkey->pubkey,
150 ecxctx->key->privkey) == 0) {
151 ERR_raise(ERR_LIB_PROV, PROV_R_FAILED_DURING_DERIVATION);
152 return 0;
153 }
154 } else
155#endif
6f7d2135
MC
156 if (X25519(secret, ecxctx->key->privkey, ecxctx->peerkey->pubkey) == 0) {
157 ERR_raise(ERR_LIB_PROV, PROV_R_FAILED_DURING_DERIVATION);
158 return 0;
159 }
160 } else {
97b50f67
MC
161#ifdef S390X_EC_ASM
162 if (OPENSSL_s390xcap_P.pcc[1]
163 & S390X_CAPBIT(S390X_SCALAR_MULTIPLY_X448)) {
164 if (s390x_x448_mul(secret, ecxctx->peerkey->pubkey,
165 ecxctx->key->privkey) == 0) {
166 ERR_raise(ERR_LIB_PROV, PROV_R_FAILED_DURING_DERIVATION);
167 return 0;
168 }
169 } else
170#endif
6f7d2135
MC
171 if (X448(secret, ecxctx->key->privkey, ecxctx->peerkey->pubkey) == 0) {
172 ERR_raise(ERR_LIB_PROV, PROV_R_FAILED_DURING_DERIVATION);
173 return 0;
174 }
175 }
176
177 *secretlen = ecxctx->keylen;
178 return 1;
179}
180
181static void ecx_freectx(void *vecxctx)
182{
183 PROV_ECX_CTX *ecxctx = (PROV_ECX_CTX *)vecxctx;
184
185 ecx_key_free(ecxctx->key);
186 ecx_key_free(ecxctx->peerkey);
187
188 OPENSSL_free(ecxctx);
189}
190
191static void *ecx_dupctx(void *vecxctx)
192{
193 PROV_ECX_CTX *srcctx = (PROV_ECX_CTX *)vecxctx;
194 PROV_ECX_CTX *dstctx;
195
ca94057f
P
196 if (!ossl_prov_is_running())
197 return NULL;
198
6f7d2135
MC
199 dstctx = OPENSSL_zalloc(sizeof(*srcctx));
200 if (dstctx == NULL) {
201 ERR_raise(ERR_LIB_PROV, ERR_R_MALLOC_FAILURE);
202 return NULL;
203 }
204
205 *dstctx = *srcctx;
206 if (dstctx->key != NULL && !ecx_key_up_ref(dstctx->key)) {
207 ERR_raise(ERR_LIB_PROV, ERR_R_INTERNAL_ERROR);
208 OPENSSL_free(dstctx);
209 return NULL;
210 }
211
212 if (dstctx->peerkey != NULL && !ecx_key_up_ref(dstctx->peerkey)) {
213 ERR_raise(ERR_LIB_PROV, ERR_R_INTERNAL_ERROR);
214 ecx_key_free(dstctx->key);
215 OPENSSL_free(dstctx);
216 return NULL;
217 }
218
219 return dstctx;
220}
221
1be63951 222const OSSL_DISPATCH ossl_x25519_keyexch_functions[] = {
6f7d2135
MC
223 { OSSL_FUNC_KEYEXCH_NEWCTX, (void (*)(void))x25519_newctx },
224 { OSSL_FUNC_KEYEXCH_INIT, (void (*)(void))ecx_init },
225 { OSSL_FUNC_KEYEXCH_DERIVE, (void (*)(void))ecx_derive },
226 { OSSL_FUNC_KEYEXCH_SET_PEER, (void (*)(void))ecx_set_peer },
227 { OSSL_FUNC_KEYEXCH_FREECTX, (void (*)(void))ecx_freectx },
228 { OSSL_FUNC_KEYEXCH_DUPCTX, (void (*)(void))ecx_dupctx },
229 { 0, NULL }
230};
231
1be63951 232const OSSL_DISPATCH ossl_x448_keyexch_functions[] = {
6f7d2135
MC
233 { OSSL_FUNC_KEYEXCH_NEWCTX, (void (*)(void))x448_newctx },
234 { OSSL_FUNC_KEYEXCH_INIT, (void (*)(void))ecx_init },
235 { OSSL_FUNC_KEYEXCH_DERIVE, (void (*)(void))ecx_derive },
236 { OSSL_FUNC_KEYEXCH_SET_PEER, (void (*)(void))ecx_set_peer },
237 { OSSL_FUNC_KEYEXCH_FREECTX, (void (*)(void))ecx_freectx },
238 { OSSL_FUNC_KEYEXCH_DUPCTX, (void (*)(void))ecx_dupctx },
239 { 0, NULL }
240};