/src/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
Line | Count | Source |
1 | | /* |
2 | | * Copyright 2019-2025 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 | | /* Dispatch functions for gcm mode */ |
11 | | |
12 | | #include <openssl/rand.h> |
13 | | #include <openssl/proverr.h> |
14 | | #include "prov/ciphercommon.h" |
15 | | #include "prov/ciphercommon_gcm.h" |
16 | | #include "prov/providercommon.h" |
17 | | #include "prov/provider_ctx.h" |
18 | | |
19 | | #include "providers/implementations/ciphers/ciphercommon_gcm.inc" |
20 | | |
21 | | static int gcm_tls_init(PROV_GCM_CTX *dat, unsigned char *aad, size_t aad_len); |
22 | | static int gcm_tls_iv_set_fixed(PROV_GCM_CTX *ctx, unsigned char *iv, |
23 | | size_t len); |
24 | | static int gcm_tls_cipher(PROV_GCM_CTX *ctx, unsigned char *out, size_t *padlen, |
25 | | const unsigned char *in, size_t len); |
26 | | static int gcm_cipher_internal(PROV_GCM_CTX *ctx, unsigned char *out, |
27 | | size_t *padlen, const unsigned char *in, |
28 | | size_t len); |
29 | | static int on_preupdate_generate_iv(PROV_GCM_CTX *ctx); |
30 | | |
31 | | /* |
32 | | * Called from EVP_CipherInit when there is currently no context via |
33 | | * the new_ctx() function |
34 | | */ |
35 | | void ossl_gcm_initctx(void *provctx, PROV_GCM_CTX *ctx, size_t keybits, |
36 | | const PROV_GCM_HW *hw) |
37 | 0 | { |
38 | 0 | ctx->pad = 1; |
39 | 0 | ctx->mode = EVP_CIPH_GCM_MODE; |
40 | 0 | ctx->taglen = UNINITIALISED_SIZET; |
41 | 0 | ctx->tls_aad_len = UNINITIALISED_SIZET; |
42 | 0 | ctx->ivlen = (EVP_GCM_TLS_FIXED_IV_LEN + EVP_GCM_TLS_EXPLICIT_IV_LEN); |
43 | 0 | ctx->keylen = keybits / 8; |
44 | 0 | ctx->hw = hw; |
45 | 0 | ctx->libctx = PROV_LIBCTX_OF(provctx); |
46 | 0 | } |
47 | | |
48 | | /* |
49 | | * Called by EVP_CipherInit via the _einit and _dinit functions |
50 | | */ |
51 | | static int gcm_init(void *vctx, const unsigned char *key, size_t keylen, |
52 | | const unsigned char *iv, size_t ivlen, |
53 | | const OSSL_PARAM params[], int enc) |
54 | 0 | { |
55 | 0 | PROV_GCM_CTX *ctx = (PROV_GCM_CTX *)vctx; |
56 | |
|
57 | 0 | if (!ossl_prov_is_running()) |
58 | 0 | return 0; |
59 | | |
60 | 0 | ctx->enc = enc; |
61 | |
|
62 | 0 | if (iv != NULL) { |
63 | 0 | if (ivlen == 0 || ivlen > sizeof(ctx->iv)) { |
64 | 0 | ERR_raise(ERR_LIB_PROV, PROV_R_INVALID_IV_LENGTH); |
65 | 0 | return 0; |
66 | 0 | } |
67 | 0 | ctx->iv_gen_rand = 0; |
68 | 0 | ctx->ivlen = ivlen; |
69 | 0 | memcpy(ctx->iv, iv, ivlen); |
70 | 0 | ctx->iv_state = IV_STATE_BUFFERED; |
71 | 0 | } |
72 | | |
73 | 0 | if (key != NULL) { |
74 | 0 | if (keylen != ctx->keylen) { |
75 | 0 | ERR_raise(ERR_LIB_PROV, PROV_R_INVALID_KEY_LENGTH); |
76 | 0 | return 0; |
77 | 0 | } |
78 | 0 | if (!ctx->hw->setkey(ctx, key, ctx->keylen)) |
79 | 0 | return 0; |
80 | 0 | ctx->tls_enc_records = 0; |
81 | 0 | } |
82 | 0 | return ossl_gcm_set_ctx_params(ctx, params); |
83 | 0 | } |
84 | | |
85 | | int ossl_gcm_einit(void *vctx, const unsigned char *key, size_t keylen, |
86 | | const unsigned char *iv, size_t ivlen, |
87 | | const OSSL_PARAM params[]) |
88 | 0 | { |
89 | 0 | return gcm_init(vctx, key, keylen, iv, ivlen, params, 1); |
90 | 0 | } |
91 | | |
92 | | int ossl_gcm_dinit(void *vctx, const unsigned char *key, size_t keylen, |
93 | | const unsigned char *iv, size_t ivlen, |
94 | | const OSSL_PARAM params[]) |
95 | 0 | { |
96 | 0 | return gcm_init(vctx, key, keylen, iv, ivlen, params, 0); |
97 | 0 | } |
98 | | |
99 | | /* increment counter (64-bit int) by 1 */ |
100 | | static void ctr64_inc(unsigned char *counter) |
101 | 0 | { |
102 | 0 | int n = 8; |
103 | 0 | unsigned char c; |
104 | |
|
105 | 0 | do { |
106 | 0 | --n; |
107 | 0 | c = counter[n]; |
108 | 0 | ++c; |
109 | 0 | counter[n] = c; |
110 | 0 | if (c > 0) |
111 | 0 | return; |
112 | 0 | } while (n > 0); |
113 | 0 | } |
114 | | |
115 | | static int getivgen(PROV_GCM_CTX *ctx, unsigned char *out, size_t olen) |
116 | 0 | { |
117 | 0 | if (!ctx->iv_gen |
118 | 0 | || !ctx->key_set |
119 | 0 | || !ctx->hw->setiv(ctx, ctx->iv, ctx->ivlen)) |
120 | 0 | return 0; |
121 | 0 | if (olen == 0 || olen > ctx->ivlen) |
122 | 0 | olen = ctx->ivlen; |
123 | 0 | memcpy(out, ctx->iv + ctx->ivlen - olen, olen); |
124 | | /* |
125 | | * Invocation field will be at least 8 bytes in size and so no need |
126 | | * to check wrap around or increment more than last 8 bytes. |
127 | | */ |
128 | 0 | ctr64_inc(ctx->iv + ctx->ivlen - 8); |
129 | 0 | ctx->iv_state = IV_STATE_COPIED; |
130 | 0 | return 1; |
131 | 0 | } |
132 | | |
133 | | static int setivinv(PROV_GCM_CTX *ctx, unsigned char *in, size_t inl) |
134 | 0 | { |
135 | 0 | if (!ctx->iv_gen |
136 | 0 | || !ctx->key_set |
137 | 0 | || ctx->enc) |
138 | 0 | return 0; |
139 | | |
140 | 0 | memcpy(ctx->iv + ctx->ivlen - inl, in, inl); |
141 | 0 | if (!ctx->hw->setiv(ctx, ctx->iv, ctx->ivlen)) |
142 | 0 | return 0; |
143 | 0 | ctx->iv_state = IV_STATE_COPIED; |
144 | 0 | return 1; |
145 | 0 | } |
146 | | |
147 | | const OSSL_PARAM *ossl_gcm_gettable_ctx_params( |
148 | | ossl_unused void *cctx, ossl_unused void *provctx |
149 | | ) |
150 | 7 | { |
151 | 7 | return ossl_cipher_gcm_get_ctx_params_list; |
152 | 7 | } |
153 | | |
154 | | int ossl_gcm_get_ctx_params(void *vctx, OSSL_PARAM params[]) |
155 | 0 | { |
156 | 0 | PROV_GCM_CTX *ctx = (PROV_GCM_CTX *)vctx; |
157 | 0 | size_t sz; |
158 | 0 | struct ossl_cipher_gcm_get_ctx_params_st p; |
159 | |
|
160 | 0 | if (ctx == NULL || !ossl_cipher_gcm_get_ctx_params_decoder(params, &p)) |
161 | 0 | return 0; |
162 | | |
163 | 0 | if (p.ivlen != NULL && !OSSL_PARAM_set_size_t(p.ivlen, ctx->ivlen)) { |
164 | 0 | ERR_raise(ERR_LIB_PROV, PROV_R_FAILED_TO_SET_PARAMETER); |
165 | 0 | return 0; |
166 | 0 | } |
167 | | |
168 | 0 | if (p.keylen != NULL && !OSSL_PARAM_set_size_t(p.keylen, ctx->keylen)) { |
169 | 0 | ERR_raise(ERR_LIB_PROV, PROV_R_FAILED_TO_SET_PARAMETER); |
170 | 0 | return 0; |
171 | 0 | } |
172 | | |
173 | 0 | if (p.taglen != NULL) { |
174 | 0 | size_t taglen = (ctx->taglen != UNINITIALISED_SIZET) ? ctx->taglen : |
175 | 0 | GCM_TAG_MAX_SIZE; |
176 | |
|
177 | 0 | if (!OSSL_PARAM_set_size_t(p.taglen, taglen)) { |
178 | 0 | ERR_raise(ERR_LIB_PROV, PROV_R_FAILED_TO_SET_PARAMETER); |
179 | 0 | return 0; |
180 | 0 | } |
181 | 0 | } |
182 | | |
183 | | /* |
184 | | * Note p.updiv and p.iv are aliases that get the same information, |
185 | | * so any code changes should be duplicated below. |
186 | | */ |
187 | 0 | if (p.iv != NULL) { |
188 | 0 | if (!on_preupdate_generate_iv(ctx)) |
189 | 0 | return 0; |
190 | 0 | if (ctx->ivlen > p.iv->data_size) { |
191 | 0 | ERR_raise(ERR_LIB_PROV, PROV_R_INVALID_IV_LENGTH); |
192 | 0 | return 0; |
193 | 0 | } |
194 | 0 | if (!OSSL_PARAM_set_octet_string_or_ptr(p.iv, ctx->iv, ctx->ivlen)) { |
195 | 0 | ERR_raise(ERR_LIB_PROV, PROV_R_FAILED_TO_SET_PARAMETER); |
196 | 0 | return 0; |
197 | 0 | } |
198 | 0 | } |
199 | 0 | if (p.updiv != NULL) { |
200 | 0 | if (!on_preupdate_generate_iv(ctx)) |
201 | 0 | return 0; |
202 | 0 | if (ctx->ivlen > p.updiv->data_size) { |
203 | 0 | ERR_raise(ERR_LIB_PROV, PROV_R_INVALID_IV_LENGTH); |
204 | 0 | return 0; |
205 | 0 | } |
206 | 0 | if (!OSSL_PARAM_set_octet_string_or_ptr(p.updiv, ctx->iv, ctx->ivlen)) { |
207 | 0 | ERR_raise(ERR_LIB_PROV, PROV_R_FAILED_TO_SET_PARAMETER); |
208 | 0 | return 0; |
209 | 0 | } |
210 | 0 | } |
211 | | |
212 | 0 | if (p.pad != NULL && !OSSL_PARAM_set_size_t(p.pad, ctx->tls_aad_pad_sz)) { |
213 | 0 | ERR_raise(ERR_LIB_PROV, PROV_R_FAILED_TO_SET_PARAMETER); |
214 | 0 | return 0; |
215 | 0 | } |
216 | | |
217 | 0 | if (p.tag != NULL) { |
218 | 0 | sz = p.tag->data_size; |
219 | 0 | if (sz == 0 |
220 | 0 | || sz > EVP_GCM_TLS_TAG_LEN |
221 | 0 | || !ctx->enc |
222 | 0 | || ctx->taglen == UNINITIALISED_SIZET) { |
223 | 0 | ERR_raise(ERR_LIB_PROV, PROV_R_INVALID_TAG); |
224 | 0 | return 0; |
225 | 0 | } |
226 | 0 | if (!OSSL_PARAM_set_octet_string(p.tag, ctx->buf, sz)) { |
227 | 0 | ERR_raise(ERR_LIB_PROV, PROV_R_FAILED_TO_SET_PARAMETER); |
228 | 0 | return 0; |
229 | 0 | } |
230 | 0 | } |
231 | | |
232 | 0 | if (p.ivgen != NULL) |
233 | 0 | if (p.ivgen->data == NULL |
234 | 0 | || p.ivgen->data_type != OSSL_PARAM_OCTET_STRING |
235 | 0 | || !getivgen(ctx, p.ivgen->data, p.ivgen->data_size)) |
236 | 0 | return 0; |
237 | | |
238 | 0 | if (p.gen != NULL && !OSSL_PARAM_set_uint(p.gen, ctx->iv_gen_rand)) |
239 | 0 | return 0; |
240 | | |
241 | 0 | return 1; |
242 | 0 | } |
243 | | |
244 | | const OSSL_PARAM *ossl_gcm_settable_ctx_params( |
245 | | ossl_unused void *cctx, ossl_unused void *provctx |
246 | | ) |
247 | 0 | { |
248 | 0 | return ossl_cipher_gcm_set_ctx_params_list; |
249 | 0 | } |
250 | | |
251 | | int ossl_gcm_set_ctx_params(void *vctx, const OSSL_PARAM params[]) |
252 | 0 | { |
253 | 0 | PROV_GCM_CTX *ctx = (PROV_GCM_CTX *)vctx; |
254 | 0 | size_t sz; |
255 | 0 | void *vp; |
256 | 0 | struct ossl_cipher_gcm_set_ctx_params_st p; |
257 | |
|
258 | 0 | if (ctx == NULL || !ossl_cipher_gcm_set_ctx_params_decoder(params, &p)) |
259 | 0 | return 0; |
260 | | |
261 | 0 | if (p.tag != NULL) { |
262 | 0 | vp = ctx->buf; |
263 | 0 | if (!OSSL_PARAM_get_octet_string(p.tag, &vp, EVP_GCM_TLS_TAG_LEN, &sz)) { |
264 | 0 | ERR_raise(ERR_LIB_PROV, PROV_R_FAILED_TO_GET_PARAMETER); |
265 | 0 | return 0; |
266 | 0 | } |
267 | 0 | if (sz == 0 || ctx->enc) { |
268 | 0 | ERR_raise(ERR_LIB_PROV, PROV_R_INVALID_TAG); |
269 | 0 | return 0; |
270 | 0 | } |
271 | 0 | ctx->taglen = sz; |
272 | 0 | } |
273 | | |
274 | 0 | if (p.ivlen != NULL) { |
275 | 0 | if (!OSSL_PARAM_get_size_t(p.ivlen, &sz)) { |
276 | 0 | ERR_raise(ERR_LIB_PROV, PROV_R_FAILED_TO_GET_PARAMETER); |
277 | 0 | return 0; |
278 | 0 | } |
279 | 0 | if (sz == 0 || sz > sizeof(ctx->iv)) { |
280 | 0 | ERR_raise(ERR_LIB_PROV, PROV_R_INVALID_IV_LENGTH); |
281 | 0 | return 0; |
282 | 0 | } |
283 | 0 | if (ctx->ivlen != sz) { |
284 | | /* If the iv was already set or autogenerated, it is invalid. */ |
285 | 0 | if (ctx->iv_state != IV_STATE_UNINITIALISED) |
286 | 0 | ctx->iv_state = IV_STATE_FINISHED; |
287 | 0 | ctx->ivlen = sz; |
288 | 0 | } |
289 | 0 | } |
290 | | |
291 | 0 | if (p.aad != NULL) { |
292 | 0 | if (p.aad->data_type != OSSL_PARAM_OCTET_STRING) { |
293 | 0 | ERR_raise(ERR_LIB_PROV, PROV_R_FAILED_TO_GET_PARAMETER); |
294 | 0 | return 0; |
295 | 0 | } |
296 | 0 | sz = gcm_tls_init(ctx, p.aad->data, p.aad->data_size); |
297 | 0 | if (sz == 0) { |
298 | 0 | ERR_raise(ERR_LIB_PROV, PROV_R_INVALID_AAD); |
299 | 0 | return 0; |
300 | 0 | } |
301 | 0 | ctx->tls_aad_pad_sz = sz; |
302 | 0 | } |
303 | | |
304 | 0 | if (p.fixed != NULL) { |
305 | 0 | if (p.fixed->data_type != OSSL_PARAM_OCTET_STRING) { |
306 | 0 | ERR_raise(ERR_LIB_PROV, PROV_R_FAILED_TO_GET_PARAMETER); |
307 | 0 | return 0; |
308 | 0 | } |
309 | 0 | if (gcm_tls_iv_set_fixed(ctx, p.fixed->data, p.fixed->data_size) == 0) { |
310 | 0 | ERR_raise(ERR_LIB_PROV, PROV_R_FAILED_TO_GET_PARAMETER); |
311 | 0 | return 0; |
312 | 0 | } |
313 | 0 | } |
314 | | |
315 | 0 | if (p.inviv != NULL) |
316 | 0 | if (p.inviv->data == NULL |
317 | 0 | || p.inviv->data_type != OSSL_PARAM_OCTET_STRING |
318 | 0 | || !setivinv(ctx, p.inviv->data, p.inviv->data_size)) |
319 | 0 | return 0; |
320 | | |
321 | 0 | return 1; |
322 | 0 | } |
323 | | |
324 | | int ossl_gcm_stream_update(void *vctx, unsigned char *out, size_t *outl, |
325 | | size_t outsize, const unsigned char *in, size_t inl) |
326 | 0 | { |
327 | 0 | PROV_GCM_CTX *ctx = (PROV_GCM_CTX *)vctx; |
328 | |
|
329 | 0 | if (inl == 0) { |
330 | 0 | *outl = 0; |
331 | 0 | return 1; |
332 | 0 | } |
333 | | |
334 | 0 | if (outsize < inl) { |
335 | 0 | ERR_raise(ERR_LIB_PROV, PROV_R_OUTPUT_BUFFER_TOO_SMALL); |
336 | 0 | return 0; |
337 | 0 | } |
338 | | |
339 | 0 | if (gcm_cipher_internal(ctx, out, outl, in, inl) <= 0) { |
340 | 0 | ERR_raise(ERR_LIB_PROV, PROV_R_CIPHER_OPERATION_FAILED); |
341 | 0 | return 0; |
342 | 0 | } |
343 | 0 | return 1; |
344 | 0 | } |
345 | | |
346 | | int ossl_gcm_stream_final(void *vctx, unsigned char *out, size_t *outl, |
347 | | size_t outsize) |
348 | 0 | { |
349 | 0 | PROV_GCM_CTX *ctx = (PROV_GCM_CTX *)vctx; |
350 | 0 | int i; |
351 | |
|
352 | 0 | if (!ossl_prov_is_running()) |
353 | 0 | return 0; |
354 | | |
355 | 0 | i = gcm_cipher_internal(ctx, out, outl, NULL, 0); |
356 | 0 | if (i <= 0) |
357 | 0 | return 0; |
358 | | |
359 | 0 | *outl = 0; |
360 | 0 | return 1; |
361 | 0 | } |
362 | | |
363 | | int ossl_gcm_cipher(void *vctx, |
364 | | unsigned char *out, size_t *outl, size_t outsize, |
365 | | const unsigned char *in, size_t inl) |
366 | 0 | { |
367 | 0 | PROV_GCM_CTX *ctx = (PROV_GCM_CTX *)vctx; |
368 | |
|
369 | 0 | if (!ossl_prov_is_running()) |
370 | 0 | return 0; |
371 | | |
372 | 0 | if (outsize < inl) { |
373 | 0 | ERR_raise(ERR_LIB_PROV, PROV_R_OUTPUT_BUFFER_TOO_SMALL); |
374 | 0 | return 0; |
375 | 0 | } |
376 | | |
377 | 0 | if (gcm_cipher_internal(ctx, out, outl, in, inl) <= 0) |
378 | 0 | return 0; |
379 | | |
380 | 0 | *outl = inl; |
381 | 0 | return 1; |
382 | 0 | } |
383 | | |
384 | | /* |
385 | | * See SP800-38D (GCM) Section 8 "Uniqueness requirement on IVS and keys" |
386 | | * |
387 | | * See also 8.2.2 RBG-based construction. |
388 | | * Random construction consists of a free field (which can be NULL) and a |
389 | | * random field which will use a DRBG that can return at least 96 bits of |
390 | | * entropy strength. (The DRBG must be seeded by the FIPS module). |
391 | | */ |
392 | | static int gcm_iv_generate(PROV_GCM_CTX *ctx, int offset) |
393 | 0 | { |
394 | 0 | int sz = (int)(ctx->ivlen - offset); |
395 | | |
396 | | /* Must be at least 96 bits */ |
397 | 0 | if (sz <= 0 || ctx->ivlen < GCM_IV_DEFAULT_SIZE) |
398 | 0 | return 0; |
399 | | |
400 | | /* Use DRBG to generate random iv */ |
401 | 0 | if (RAND_bytes_ex(ctx->libctx, ctx->iv + offset, sz, 0) <= 0) |
402 | 0 | return 0; |
403 | 0 | ctx->iv_state = IV_STATE_BUFFERED; |
404 | 0 | ctx->iv_gen_rand = 1; |
405 | 0 | return 1; |
406 | 0 | } |
407 | | |
408 | | /* |
409 | | * If we try to grab the iv before the update - it wont be generated yet, |
410 | | * so we generate it here for this case. |
411 | | */ |
412 | | static int on_preupdate_generate_iv(PROV_GCM_CTX *ctx) |
413 | 0 | { |
414 | 0 | if (ctx->iv_state == IV_STATE_UNINITIALISED) { |
415 | 0 | if (ctx->tls_aad_len != UNINITIALISED_SIZET) |
416 | 0 | return 0; |
417 | 0 | if (!ctx->enc || !gcm_iv_generate(ctx, 0)) |
418 | 0 | return 0; |
419 | 0 | } |
420 | 0 | return 1; |
421 | 0 | } |
422 | | |
423 | | static int gcm_cipher_internal(PROV_GCM_CTX *ctx, unsigned char *out, |
424 | | size_t *padlen, const unsigned char *in, |
425 | | size_t len) |
426 | 0 | { |
427 | 0 | size_t olen = 0; |
428 | 0 | int rv = 0; |
429 | 0 | const PROV_GCM_HW *hw = ctx->hw; |
430 | |
|
431 | 0 | if (ctx->tls_aad_len != UNINITIALISED_SIZET) |
432 | 0 | return gcm_tls_cipher(ctx, out, padlen, in, len); |
433 | | |
434 | 0 | if (!ctx->key_set || ctx->iv_state == IV_STATE_FINISHED) |
435 | 0 | goto err; |
436 | | |
437 | | /* |
438 | | * FIPS requires generation of AES-GCM IV's inside the FIPS module. |
439 | | * The IV can still be set externally (the security policy will state that |
440 | | * this is not FIPS compliant). There are some applications |
441 | | * where setting the IV externally is the only option available. |
442 | | */ |
443 | 0 | if (ctx->iv_state == IV_STATE_UNINITIALISED) { |
444 | 0 | if (!ctx->enc || !gcm_iv_generate(ctx, 0)) |
445 | 0 | goto err; |
446 | 0 | } |
447 | | |
448 | 0 | if (ctx->iv_state == IV_STATE_BUFFERED) { |
449 | 0 | if (!hw->setiv(ctx, ctx->iv, ctx->ivlen)) |
450 | 0 | goto err; |
451 | 0 | ctx->iv_state = IV_STATE_COPIED; |
452 | 0 | } |
453 | | |
454 | 0 | if (in != NULL) { |
455 | | /* The input is AAD if out is NULL */ |
456 | 0 | if (out == NULL) { |
457 | 0 | if (!hw->aadupdate(ctx, in, len)) |
458 | 0 | goto err; |
459 | 0 | } else { |
460 | | /* The input is ciphertext OR plaintext */ |
461 | 0 | if (!hw->cipherupdate(ctx, in, len, out)) |
462 | 0 | goto err; |
463 | 0 | } |
464 | 0 | } else { |
465 | | /* The tag must be set before actually decrypting data */ |
466 | 0 | if (!ctx->enc && ctx->taglen == UNINITIALISED_SIZET) { |
467 | 0 | ERR_raise(ERR_LIB_PROV, PROV_R_TAG_NOT_SET); |
468 | 0 | goto err; |
469 | 0 | } |
470 | 0 | if (!hw->cipherfinal(ctx, ctx->buf)) |
471 | 0 | goto err; |
472 | 0 | ctx->iv_state = IV_STATE_FINISHED; /* Don't reuse the IV */ |
473 | 0 | goto finish; |
474 | 0 | } |
475 | 0 | olen = len; |
476 | 0 | finish: |
477 | 0 | rv = 1; |
478 | 0 | err: |
479 | 0 | *padlen = olen; |
480 | 0 | return rv; |
481 | 0 | } |
482 | | |
483 | | static int gcm_tls_init(PROV_GCM_CTX *dat, unsigned char *aad, size_t aad_len) |
484 | 0 | { |
485 | 0 | unsigned char *buf; |
486 | 0 | size_t len; |
487 | |
|
488 | 0 | if (!ossl_prov_is_running() || aad_len != EVP_AEAD_TLS1_AAD_LEN) |
489 | 0 | return 0; |
490 | | |
491 | | /* Save the aad for later use. */ |
492 | 0 | buf = dat->buf; |
493 | 0 | memcpy(buf, aad, aad_len); |
494 | 0 | dat->tls_aad_len = aad_len; |
495 | |
|
496 | 0 | len = buf[aad_len - 2] << 8 | buf[aad_len - 1]; |
497 | | /* Correct length for explicit iv. */ |
498 | 0 | if (len < EVP_GCM_TLS_EXPLICIT_IV_LEN) |
499 | 0 | return 0; |
500 | 0 | len -= EVP_GCM_TLS_EXPLICIT_IV_LEN; |
501 | | |
502 | | /* If decrypting correct for tag too. */ |
503 | 0 | if (!dat->enc) { |
504 | 0 | if (len < EVP_GCM_TLS_TAG_LEN) |
505 | 0 | return 0; |
506 | 0 | len -= EVP_GCM_TLS_TAG_LEN; |
507 | 0 | } |
508 | 0 | buf[aad_len - 2] = (unsigned char)(len >> 8); |
509 | 0 | buf[aad_len - 1] = (unsigned char)(len & 0xff); |
510 | | /* Extra padding: tag appended to record. */ |
511 | 0 | return EVP_GCM_TLS_TAG_LEN; |
512 | 0 | } |
513 | | |
514 | | static int gcm_tls_iv_set_fixed(PROV_GCM_CTX *ctx, unsigned char *iv, |
515 | | size_t len) |
516 | 0 | { |
517 | | /* Special case: -1 length restores whole IV */ |
518 | 0 | if (len == (size_t)-1) { |
519 | 0 | memcpy(ctx->iv, iv, ctx->ivlen); |
520 | 0 | ctx->iv_gen = 1; |
521 | 0 | ctx->iv_state = IV_STATE_BUFFERED; |
522 | 0 | return 1; |
523 | 0 | } |
524 | | /* Fixed field must be at least 4 bytes and invocation field at least 8 */ |
525 | 0 | if ((len < EVP_GCM_TLS_FIXED_IV_LEN) |
526 | 0 | || (ctx->ivlen - (int)len) < EVP_GCM_TLS_EXPLICIT_IV_LEN) |
527 | 0 | return 0; |
528 | 0 | if (len > 0) |
529 | 0 | memcpy(ctx->iv, iv, len); |
530 | 0 | if (ctx->enc) { |
531 | 0 | if (RAND_bytes_ex(ctx->libctx, ctx->iv + len, ctx->ivlen - len, 0) <= 0) |
532 | 0 | return 0; |
533 | 0 | ctx->iv_gen_rand = 1; |
534 | 0 | } |
535 | 0 | ctx->iv_gen = 1; |
536 | 0 | ctx->iv_state = IV_STATE_BUFFERED; |
537 | 0 | return 1; |
538 | 0 | } |
539 | | |
540 | | /* |
541 | | * Handle TLS GCM packet format. This consists of the last portion of the IV |
542 | | * followed by the payload and finally the tag. On encrypt generate IV, |
543 | | * encrypt payload and write the tag. On verify retrieve IV, decrypt payload |
544 | | * and verify tag. |
545 | | */ |
546 | | static int gcm_tls_cipher(PROV_GCM_CTX *ctx, unsigned char *out, size_t *padlen, |
547 | | const unsigned char *in, size_t len) |
548 | 0 | { |
549 | 0 | int rv = 0; |
550 | 0 | size_t arg = EVP_GCM_TLS_EXPLICIT_IV_LEN; |
551 | 0 | size_t plen = 0; |
552 | 0 | unsigned char *tag = NULL; |
553 | |
|
554 | 0 | if (!ossl_prov_is_running() || !ctx->key_set) |
555 | 0 | goto err; |
556 | | |
557 | | /* Encrypt/decrypt must be performed in place */ |
558 | 0 | if (out != in || len < (EVP_GCM_TLS_EXPLICIT_IV_LEN + EVP_GCM_TLS_TAG_LEN)) |
559 | 0 | goto err; |
560 | | |
561 | | /* |
562 | | * Check for too many keys as per FIPS 140-2 IG A.5 "Key/IV Pair Uniqueness |
563 | | * Requirements from SP 800-38D". The requirements is for one party to the |
564 | | * communication to fail after 2^64 - 1 keys. We do this on the encrypting |
565 | | * side only. |
566 | | */ |
567 | 0 | if (ctx->enc && ++ctx->tls_enc_records == 0) { |
568 | 0 | ERR_raise(ERR_LIB_PROV, PROV_R_TOO_MANY_RECORDS); |
569 | 0 | goto err; |
570 | 0 | } |
571 | | |
572 | | /* |
573 | | * Set IV from start of buffer or generate IV and write to start of |
574 | | * buffer. |
575 | | */ |
576 | 0 | if (ctx->enc) { |
577 | 0 | if (!getivgen(ctx, out, arg)) |
578 | 0 | goto err; |
579 | 0 | } else { |
580 | 0 | if (!setivinv(ctx, out, arg)) |
581 | 0 | goto err; |
582 | 0 | } |
583 | | |
584 | | /* Fix buffer and length to point to payload */ |
585 | 0 | in += EVP_GCM_TLS_EXPLICIT_IV_LEN; |
586 | 0 | out += EVP_GCM_TLS_EXPLICIT_IV_LEN; |
587 | 0 | len -= EVP_GCM_TLS_EXPLICIT_IV_LEN + EVP_GCM_TLS_TAG_LEN; |
588 | |
|
589 | 0 | tag = ctx->enc ? out + len : (unsigned char *)in + len; |
590 | 0 | if (!ctx->hw->oneshot(ctx, ctx->buf, ctx->tls_aad_len, in, len, out, tag, |
591 | 0 | EVP_GCM_TLS_TAG_LEN)) { |
592 | 0 | if (!ctx->enc) |
593 | 0 | OPENSSL_cleanse(out, len); |
594 | 0 | goto err; |
595 | 0 | } |
596 | 0 | if (ctx->enc) |
597 | 0 | plen = len + EVP_GCM_TLS_EXPLICIT_IV_LEN + EVP_GCM_TLS_TAG_LEN; |
598 | 0 | else |
599 | 0 | plen = len; |
600 | |
|
601 | 0 | rv = 1; |
602 | 0 | err: |
603 | 0 | ctx->iv_state = IV_STATE_FINISHED; |
604 | 0 | ctx->tls_aad_len = UNINITIALISED_SIZET; |
605 | 0 | *padlen = plen; |
606 | 0 | return rv; |
607 | 0 | } |