1 | /*
|
---|
2 | * Copyright 1995-2021 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 | /* We need to use some engine deprecated APIs */
|
---|
11 | #define OPENSSL_SUPPRESS_DEPRECATED
|
---|
12 |
|
---|
13 | #include <stdio.h>
|
---|
14 | #include <limits.h>
|
---|
15 | #include <assert.h>
|
---|
16 | #include <openssl/evp.h>
|
---|
17 | #include <openssl/err.h>
|
---|
18 | #include <openssl/rand.h>
|
---|
19 | #ifndef FIPS_MODULE
|
---|
20 | # include <openssl/engine.h>
|
---|
21 | #endif
|
---|
22 | #include <openssl/params.h>
|
---|
23 | #include <openssl/core_names.h>
|
---|
24 | #include "internal/cryptlib.h"
|
---|
25 | #include "internal/provider.h"
|
---|
26 | #include "internal/core.h"
|
---|
27 | #include "crypto/evp.h"
|
---|
28 | #include "evp_local.h"
|
---|
29 |
|
---|
30 | int EVP_CIPHER_CTX_reset(EVP_CIPHER_CTX *ctx)
|
---|
31 | {
|
---|
32 | if (ctx == NULL)
|
---|
33 | return 1;
|
---|
34 |
|
---|
35 | if (ctx->cipher == NULL || ctx->cipher->prov == NULL)
|
---|
36 | goto legacy;
|
---|
37 |
|
---|
38 | if (ctx->algctx != NULL) {
|
---|
39 | if (ctx->cipher->freectx != NULL)
|
---|
40 | ctx->cipher->freectx(ctx->algctx);
|
---|
41 | ctx->algctx = NULL;
|
---|
42 | }
|
---|
43 | if (ctx->fetched_cipher != NULL)
|
---|
44 | EVP_CIPHER_free(ctx->fetched_cipher);
|
---|
45 | memset(ctx, 0, sizeof(*ctx));
|
---|
46 |
|
---|
47 | return 1;
|
---|
48 |
|
---|
49 | /* Remove legacy code below when legacy support is removed. */
|
---|
50 | legacy:
|
---|
51 |
|
---|
52 | if (ctx->cipher != NULL) {
|
---|
53 | if (ctx->cipher->cleanup && !ctx->cipher->cleanup(ctx))
|
---|
54 | return 0;
|
---|
55 | /* Cleanse cipher context data */
|
---|
56 | if (ctx->cipher_data && ctx->cipher->ctx_size)
|
---|
57 | OPENSSL_cleanse(ctx->cipher_data, ctx->cipher->ctx_size);
|
---|
58 | }
|
---|
59 | OPENSSL_free(ctx->cipher_data);
|
---|
60 | #if !defined(OPENSSL_NO_ENGINE) && !defined(FIPS_MODULE)
|
---|
61 | ENGINE_finish(ctx->engine);
|
---|
62 | #endif
|
---|
63 | memset(ctx, 0, sizeof(*ctx));
|
---|
64 | return 1;
|
---|
65 | }
|
---|
66 |
|
---|
67 | EVP_CIPHER_CTX *EVP_CIPHER_CTX_new(void)
|
---|
68 | {
|
---|
69 | return OPENSSL_zalloc(sizeof(EVP_CIPHER_CTX));
|
---|
70 | }
|
---|
71 |
|
---|
72 | void EVP_CIPHER_CTX_free(EVP_CIPHER_CTX *ctx)
|
---|
73 | {
|
---|
74 | if (ctx == NULL)
|
---|
75 | return;
|
---|
76 | EVP_CIPHER_CTX_reset(ctx);
|
---|
77 | OPENSSL_free(ctx);
|
---|
78 | }
|
---|
79 |
|
---|
80 | static int evp_cipher_init_internal(EVP_CIPHER_CTX *ctx,
|
---|
81 | const EVP_CIPHER *cipher,
|
---|
82 | ENGINE *impl, const unsigned char *key,
|
---|
83 | const unsigned char *iv, int enc,
|
---|
84 | const OSSL_PARAM params[])
|
---|
85 | {
|
---|
86 | int n;
|
---|
87 | #if !defined(OPENSSL_NO_ENGINE) && !defined(FIPS_MODULE)
|
---|
88 | ENGINE *tmpimpl = NULL;
|
---|
89 | #endif
|
---|
90 | /*
|
---|
91 | * enc == 1 means we are encrypting.
|
---|
92 | * enc == 0 means we are decrypting.
|
---|
93 | * enc == -1 means, use the previously initialised value for encrypt/decrypt
|
---|
94 | */
|
---|
95 | if (enc == -1) {
|
---|
96 | enc = ctx->encrypt;
|
---|
97 | } else {
|
---|
98 | if (enc)
|
---|
99 | enc = 1;
|
---|
100 | ctx->encrypt = enc;
|
---|
101 | }
|
---|
102 |
|
---|
103 | if (cipher == NULL && ctx->cipher == NULL) {
|
---|
104 | ERR_raise(ERR_LIB_EVP, EVP_R_NO_CIPHER_SET);
|
---|
105 | return 0;
|
---|
106 | }
|
---|
107 |
|
---|
108 | /* Code below to be removed when legacy support is dropped. */
|
---|
109 |
|
---|
110 | #if !defined(OPENSSL_NO_ENGINE) && !defined(FIPS_MODULE)
|
---|
111 | /*
|
---|
112 | * Whether it's nice or not, "Inits" can be used on "Final"'d contexts so
|
---|
113 | * this context may already have an ENGINE! Try to avoid releasing the
|
---|
114 | * previous handle, re-querying for an ENGINE, and having a
|
---|
115 | * reinitialisation, when it may all be unnecessary.
|
---|
116 | */
|
---|
117 | if (ctx->engine && ctx->cipher
|
---|
118 | && (cipher == NULL || cipher->nid == ctx->cipher->nid))
|
---|
119 | goto skip_to_init;
|
---|
120 |
|
---|
121 | if (cipher != NULL && impl == NULL) {
|
---|
122 | /* Ask if an ENGINE is reserved for this job */
|
---|
123 | tmpimpl = ENGINE_get_cipher_engine(cipher->nid);
|
---|
124 | }
|
---|
125 | #endif
|
---|
126 |
|
---|
127 | /*
|
---|
128 | * If there are engines involved then we should use legacy handling for now.
|
---|
129 | */
|
---|
130 | if (ctx->engine != NULL
|
---|
131 | #if !defined(OPENSSL_NO_ENGINE) && !defined(FIPS_MODULE)
|
---|
132 | || tmpimpl != NULL
|
---|
133 | #endif
|
---|
134 | || impl != NULL) {
|
---|
135 | if (ctx->cipher == ctx->fetched_cipher)
|
---|
136 | ctx->cipher = NULL;
|
---|
137 | EVP_CIPHER_free(ctx->fetched_cipher);
|
---|
138 | ctx->fetched_cipher = NULL;
|
---|
139 | goto legacy;
|
---|
140 | }
|
---|
141 | /*
|
---|
142 | * Ensure a context left lying around from last time is cleared
|
---|
143 | * (legacy code)
|
---|
144 | */
|
---|
145 | if (cipher != NULL && ctx->cipher != NULL) {
|
---|
146 | OPENSSL_clear_free(ctx->cipher_data, ctx->cipher->ctx_size);
|
---|
147 | ctx->cipher_data = NULL;
|
---|
148 | }
|
---|
149 |
|
---|
150 |
|
---|
151 | /* Start of non-legacy code below */
|
---|
152 |
|
---|
153 | /* Ensure a context left lying around from last time is cleared */
|
---|
154 | if (cipher != NULL && ctx->cipher != NULL) {
|
---|
155 | unsigned long flags = ctx->flags;
|
---|
156 |
|
---|
157 | EVP_CIPHER_CTX_reset(ctx);
|
---|
158 | /* Restore encrypt and flags */
|
---|
159 | ctx->encrypt = enc;
|
---|
160 | ctx->flags = flags;
|
---|
161 | }
|
---|
162 |
|
---|
163 | if (cipher == NULL)
|
---|
164 | cipher = ctx->cipher;
|
---|
165 |
|
---|
166 | if (cipher->prov == NULL) {
|
---|
167 | #ifdef FIPS_MODULE
|
---|
168 | /* We only do explicit fetches inside the FIPS module */
|
---|
169 | ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
|
---|
170 | return 0;
|
---|
171 | #else
|
---|
172 | EVP_CIPHER *provciph =
|
---|
173 | EVP_CIPHER_fetch(NULL,
|
---|
174 | cipher->nid == NID_undef ? "NULL"
|
---|
175 | : OBJ_nid2sn(cipher->nid),
|
---|
176 | "");
|
---|
177 |
|
---|
178 | if (provciph == NULL)
|
---|
179 | return 0;
|
---|
180 | cipher = provciph;
|
---|
181 | EVP_CIPHER_free(ctx->fetched_cipher);
|
---|
182 | ctx->fetched_cipher = provciph;
|
---|
183 | #endif
|
---|
184 | }
|
---|
185 |
|
---|
186 | if (cipher->prov != NULL) {
|
---|
187 | if (!EVP_CIPHER_up_ref((EVP_CIPHER *)cipher)) {
|
---|
188 | ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
|
---|
189 | return 0;
|
---|
190 | }
|
---|
191 | EVP_CIPHER_free(ctx->fetched_cipher);
|
---|
192 | ctx->fetched_cipher = (EVP_CIPHER *)cipher;
|
---|
193 | }
|
---|
194 | ctx->cipher = cipher;
|
---|
195 | if (ctx->algctx == NULL) {
|
---|
196 | ctx->algctx = ctx->cipher->newctx(ossl_provider_ctx(cipher->prov));
|
---|
197 | if (ctx->algctx == NULL) {
|
---|
198 | ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
|
---|
199 | return 0;
|
---|
200 | }
|
---|
201 | }
|
---|
202 |
|
---|
203 | if ((ctx->flags & EVP_CIPH_NO_PADDING) != 0) {
|
---|
204 | /*
|
---|
205 | * If this ctx was already set up for no padding then we need to tell
|
---|
206 | * the new cipher about it.
|
---|
207 | */
|
---|
208 | if (!EVP_CIPHER_CTX_set_padding(ctx, 0))
|
---|
209 | return 0;
|
---|
210 | }
|
---|
211 |
|
---|
212 | if (enc) {
|
---|
213 | if (ctx->cipher->einit == NULL) {
|
---|
214 | ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
|
---|
215 | return 0;
|
---|
216 | }
|
---|
217 |
|
---|
218 | return ctx->cipher->einit(ctx->algctx,
|
---|
219 | key,
|
---|
220 | key == NULL ? 0
|
---|
221 | : EVP_CIPHER_CTX_get_key_length(ctx),
|
---|
222 | iv,
|
---|
223 | iv == NULL ? 0
|
---|
224 | : EVP_CIPHER_CTX_get_iv_length(ctx),
|
---|
225 | params);
|
---|
226 | }
|
---|
227 |
|
---|
228 | if (ctx->cipher->dinit == NULL) {
|
---|
229 | ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
|
---|
230 | return 0;
|
---|
231 | }
|
---|
232 |
|
---|
233 | return ctx->cipher->dinit(ctx->algctx,
|
---|
234 | key,
|
---|
235 | key == NULL ? 0
|
---|
236 | : EVP_CIPHER_CTX_get_key_length(ctx),
|
---|
237 | iv,
|
---|
238 | iv == NULL ? 0
|
---|
239 | : EVP_CIPHER_CTX_get_iv_length(ctx),
|
---|
240 | params);
|
---|
241 |
|
---|
242 | /* Code below to be removed when legacy support is dropped. */
|
---|
243 | legacy:
|
---|
244 |
|
---|
245 | if (cipher != NULL) {
|
---|
246 | /*
|
---|
247 | * Ensure a context left lying around from last time is cleared (we
|
---|
248 | * previously attempted to avoid this if the same ENGINE and
|
---|
249 | * EVP_CIPHER could be used).
|
---|
250 | */
|
---|
251 | if (ctx->cipher) {
|
---|
252 | unsigned long flags = ctx->flags;
|
---|
253 | EVP_CIPHER_CTX_reset(ctx);
|
---|
254 | /* Restore encrypt and flags */
|
---|
255 | ctx->encrypt = enc;
|
---|
256 | ctx->flags = flags;
|
---|
257 | }
|
---|
258 | #if !defined(OPENSSL_NO_ENGINE) && !defined(FIPS_MODULE)
|
---|
259 | if (impl != NULL) {
|
---|
260 | if (!ENGINE_init(impl)) {
|
---|
261 | ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
|
---|
262 | return 0;
|
---|
263 | }
|
---|
264 | } else {
|
---|
265 | impl = tmpimpl;
|
---|
266 | }
|
---|
267 | if (impl != NULL) {
|
---|
268 | /* There's an ENGINE for this job ... (apparently) */
|
---|
269 | const EVP_CIPHER *c = ENGINE_get_cipher(impl, cipher->nid);
|
---|
270 |
|
---|
271 | if (c == NULL) {
|
---|
272 | /*
|
---|
273 | * One positive side-effect of US's export control history,
|
---|
274 | * is that we should at least be able to avoid using US
|
---|
275 | * misspellings of "initialisation"?
|
---|
276 | */
|
---|
277 | ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
|
---|
278 | return 0;
|
---|
279 | }
|
---|
280 | /* We'll use the ENGINE's private cipher definition */
|
---|
281 | cipher = c;
|
---|
282 | /*
|
---|
283 | * Store the ENGINE functional reference so we know 'cipher' came
|
---|
284 | * from an ENGINE and we need to release it when done.
|
---|
285 | */
|
---|
286 | ctx->engine = impl;
|
---|
287 | } else {
|
---|
288 | ctx->engine = NULL;
|
---|
289 | }
|
---|
290 | #endif
|
---|
291 |
|
---|
292 | ctx->cipher = cipher;
|
---|
293 | if (ctx->cipher->ctx_size) {
|
---|
294 | ctx->cipher_data = OPENSSL_zalloc(ctx->cipher->ctx_size);
|
---|
295 | if (ctx->cipher_data == NULL) {
|
---|
296 | ctx->cipher = NULL;
|
---|
297 | ERR_raise(ERR_LIB_EVP, ERR_R_MALLOC_FAILURE);
|
---|
298 | return 0;
|
---|
299 | }
|
---|
300 | } else {
|
---|
301 | ctx->cipher_data = NULL;
|
---|
302 | }
|
---|
303 | ctx->key_len = cipher->key_len;
|
---|
304 | /* Preserve wrap enable flag, zero everything else */
|
---|
305 | ctx->flags &= EVP_CIPHER_CTX_FLAG_WRAP_ALLOW;
|
---|
306 | if (ctx->cipher->flags & EVP_CIPH_CTRL_INIT) {
|
---|
307 | if (!EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_INIT, 0, NULL)) {
|
---|
308 | ctx->cipher = NULL;
|
---|
309 | ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
|
---|
310 | return 0;
|
---|
311 | }
|
---|
312 | }
|
---|
313 | }
|
---|
314 | #if !defined(OPENSSL_NO_ENGINE) && !defined(FIPS_MODULE)
|
---|
315 | skip_to_init:
|
---|
316 | #endif
|
---|
317 | if (ctx->cipher == NULL)
|
---|
318 | return 0;
|
---|
319 |
|
---|
320 | /* we assume block size is a power of 2 in *cryptUpdate */
|
---|
321 | OPENSSL_assert(ctx->cipher->block_size == 1
|
---|
322 | || ctx->cipher->block_size == 8
|
---|
323 | || ctx->cipher->block_size == 16);
|
---|
324 |
|
---|
325 | if (!(ctx->flags & EVP_CIPHER_CTX_FLAG_WRAP_ALLOW)
|
---|
326 | && EVP_CIPHER_CTX_get_mode(ctx) == EVP_CIPH_WRAP_MODE) {
|
---|
327 | ERR_raise(ERR_LIB_EVP, EVP_R_WRAP_MODE_NOT_ALLOWED);
|
---|
328 | return 0;
|
---|
329 | }
|
---|
330 |
|
---|
331 | if ((EVP_CIPHER_get_flags(EVP_CIPHER_CTX_get0_cipher(ctx))
|
---|
332 | & EVP_CIPH_CUSTOM_IV) == 0) {
|
---|
333 | switch (EVP_CIPHER_CTX_get_mode(ctx)) {
|
---|
334 |
|
---|
335 | case EVP_CIPH_STREAM_CIPHER:
|
---|
336 | case EVP_CIPH_ECB_MODE:
|
---|
337 | break;
|
---|
338 |
|
---|
339 | case EVP_CIPH_CFB_MODE:
|
---|
340 | case EVP_CIPH_OFB_MODE:
|
---|
341 |
|
---|
342 | ctx->num = 0;
|
---|
343 | /* fall-through */
|
---|
344 |
|
---|
345 | case EVP_CIPH_CBC_MODE:
|
---|
346 | n = EVP_CIPHER_CTX_get_iv_length(ctx);
|
---|
347 | if (!ossl_assert(n >= 0 && n <= (int)sizeof(ctx->iv)))
|
---|
348 | return 0;
|
---|
349 | if (iv != NULL)
|
---|
350 | memcpy(ctx->oiv, iv, n);
|
---|
351 | memcpy(ctx->iv, ctx->oiv, n);
|
---|
352 | break;
|
---|
353 |
|
---|
354 | case EVP_CIPH_CTR_MODE:
|
---|
355 | ctx->num = 0;
|
---|
356 | /* Don't reuse IV for CTR mode */
|
---|
357 | if (iv != NULL) {
|
---|
358 | if ((n = EVP_CIPHER_CTX_get_iv_length(ctx)) <= 0)
|
---|
359 | return 0;
|
---|
360 | memcpy(ctx->iv, iv, n);
|
---|
361 | }
|
---|
362 | break;
|
---|
363 |
|
---|
364 | default:
|
---|
365 | return 0;
|
---|
366 | }
|
---|
367 | }
|
---|
368 |
|
---|
369 | if (key != NULL || (ctx->cipher->flags & EVP_CIPH_ALWAYS_CALL_INIT)) {
|
---|
370 | if (!ctx->cipher->init(ctx, key, iv, enc))
|
---|
371 | return 0;
|
---|
372 | }
|
---|
373 | ctx->buf_len = 0;
|
---|
374 | ctx->final_used = 0;
|
---|
375 | ctx->block_mask = ctx->cipher->block_size - 1;
|
---|
376 | return 1;
|
---|
377 | }
|
---|
378 |
|
---|
379 | int EVP_CipherInit_ex2(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
|
---|
380 | const unsigned char *key, const unsigned char *iv,
|
---|
381 | int enc, const OSSL_PARAM params[])
|
---|
382 | {
|
---|
383 | return evp_cipher_init_internal(ctx, cipher, NULL, key, iv, enc, params);
|
---|
384 | }
|
---|
385 |
|
---|
386 | int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
|
---|
387 | const unsigned char *key, const unsigned char *iv, int enc)
|
---|
388 | {
|
---|
389 | if (cipher != NULL)
|
---|
390 | EVP_CIPHER_CTX_reset(ctx);
|
---|
391 | return evp_cipher_init_internal(ctx, cipher, NULL, key, iv, enc, NULL);
|
---|
392 | }
|
---|
393 |
|
---|
394 | int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
|
---|
395 | ENGINE *impl, const unsigned char *key,
|
---|
396 | const unsigned char *iv, int enc)
|
---|
397 | {
|
---|
398 | return evp_cipher_init_internal(ctx, cipher, impl, key, iv, enc, NULL);
|
---|
399 | }
|
---|
400 |
|
---|
401 | int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
|
---|
402 | const unsigned char *in, int inl)
|
---|
403 | {
|
---|
404 | if (ctx->encrypt)
|
---|
405 | return EVP_EncryptUpdate(ctx, out, outl, in, inl);
|
---|
406 | else
|
---|
407 | return EVP_DecryptUpdate(ctx, out, outl, in, inl);
|
---|
408 | }
|
---|
409 |
|
---|
410 | int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
|
---|
411 | {
|
---|
412 | if (ctx->encrypt)
|
---|
413 | return EVP_EncryptFinal_ex(ctx, out, outl);
|
---|
414 | else
|
---|
415 | return EVP_DecryptFinal_ex(ctx, out, outl);
|
---|
416 | }
|
---|
417 |
|
---|
418 | int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
|
---|
419 | {
|
---|
420 | if (ctx->encrypt)
|
---|
421 | return EVP_EncryptFinal(ctx, out, outl);
|
---|
422 | else
|
---|
423 | return EVP_DecryptFinal(ctx, out, outl);
|
---|
424 | }
|
---|
425 |
|
---|
426 | int EVP_EncryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
|
---|
427 | const unsigned char *key, const unsigned char *iv)
|
---|
428 | {
|
---|
429 | return EVP_CipherInit(ctx, cipher, key, iv, 1);
|
---|
430 | }
|
---|
431 |
|
---|
432 | int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
|
---|
433 | ENGINE *impl, const unsigned char *key,
|
---|
434 | const unsigned char *iv)
|
---|
435 | {
|
---|
436 | return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 1);
|
---|
437 | }
|
---|
438 |
|
---|
439 | int EVP_EncryptInit_ex2(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
|
---|
440 | const unsigned char *key, const unsigned char *iv,
|
---|
441 | const OSSL_PARAM params[])
|
---|
442 | {
|
---|
443 | return EVP_CipherInit_ex2(ctx, cipher, key, iv, 1, params);
|
---|
444 | }
|
---|
445 |
|
---|
446 | int EVP_DecryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
|
---|
447 | const unsigned char *key, const unsigned char *iv)
|
---|
448 | {
|
---|
449 | return EVP_CipherInit(ctx, cipher, key, iv, 0);
|
---|
450 | }
|
---|
451 |
|
---|
452 | int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
|
---|
453 | ENGINE *impl, const unsigned char *key,
|
---|
454 | const unsigned char *iv)
|
---|
455 | {
|
---|
456 | return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 0);
|
---|
457 | }
|
---|
458 |
|
---|
459 | int EVP_DecryptInit_ex2(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
|
---|
460 | const unsigned char *key, const unsigned char *iv,
|
---|
461 | const OSSL_PARAM params[])
|
---|
462 | {
|
---|
463 | return EVP_CipherInit_ex2(ctx, cipher, key, iv, 0, params);
|
---|
464 | }
|
---|
465 |
|
---|
466 | /*
|
---|
467 | * According to the letter of standard difference between pointers
|
---|
468 | * is specified to be valid only within same object. This makes
|
---|
469 | * it formally challenging to determine if input and output buffers
|
---|
470 | * are not partially overlapping with standard pointer arithmetic.
|
---|
471 | */
|
---|
472 | #ifdef PTRDIFF_T
|
---|
473 | # undef PTRDIFF_T
|
---|
474 | #endif
|
---|
475 | #if defined(OPENSSL_SYS_VMS) && __INITIAL_POINTER_SIZE==64
|
---|
476 | /*
|
---|
477 | * Then we have VMS that distinguishes itself by adhering to
|
---|
478 | * sizeof(size_t)==4 even in 64-bit builds, which means that
|
---|
479 | * difference between two pointers might be truncated to 32 bits.
|
---|
480 | * In the context one can even wonder how comparison for
|
---|
481 | * equality is implemented. To be on the safe side we adhere to
|
---|
482 | * PTRDIFF_T even for comparison for equality.
|
---|
483 | */
|
---|
484 | # define PTRDIFF_T uint64_t
|
---|
485 | #else
|
---|
486 | # define PTRDIFF_T size_t
|
---|
487 | #endif
|
---|
488 |
|
---|
489 | int ossl_is_partially_overlapping(const void *ptr1, const void *ptr2, int len)
|
---|
490 | {
|
---|
491 | PTRDIFF_T diff = (PTRDIFF_T)ptr1-(PTRDIFF_T)ptr2;
|
---|
492 | /*
|
---|
493 | * Check for partially overlapping buffers. [Binary logical
|
---|
494 | * operations are used instead of boolean to minimize number
|
---|
495 | * of conditional branches.]
|
---|
496 | */
|
---|
497 | int overlapped = (len > 0) & (diff != 0) & ((diff < (PTRDIFF_T)len) |
|
---|
498 | (diff > (0 - (PTRDIFF_T)len)));
|
---|
499 |
|
---|
500 | return overlapped;
|
---|
501 | }
|
---|
502 |
|
---|
503 | static int evp_EncryptDecryptUpdate(EVP_CIPHER_CTX *ctx,
|
---|
504 | unsigned char *out, int *outl,
|
---|
505 | const unsigned char *in, int inl)
|
---|
506 | {
|
---|
507 | int i, j, bl, cmpl = inl;
|
---|
508 |
|
---|
509 | if (EVP_CIPHER_CTX_test_flags(ctx, EVP_CIPH_FLAG_LENGTH_BITS))
|
---|
510 | cmpl = (cmpl + 7) / 8;
|
---|
511 |
|
---|
512 | bl = ctx->cipher->block_size;
|
---|
513 |
|
---|
514 | if (ctx->cipher->flags & EVP_CIPH_FLAG_CUSTOM_CIPHER) {
|
---|
515 | /* If block size > 1 then the cipher will have to do this check */
|
---|
516 | if (bl == 1 && ossl_is_partially_overlapping(out, in, cmpl)) {
|
---|
517 | ERR_raise(ERR_LIB_EVP, EVP_R_PARTIALLY_OVERLAPPING);
|
---|
518 | return 0;
|
---|
519 | }
|
---|
520 |
|
---|
521 | i = ctx->cipher->do_cipher(ctx, out, in, inl);
|
---|
522 | if (i < 0)
|
---|
523 | return 0;
|
---|
524 | else
|
---|
525 | *outl = i;
|
---|
526 | return 1;
|
---|
527 | }
|
---|
528 |
|
---|
529 | if (inl <= 0) {
|
---|
530 | *outl = 0;
|
---|
531 | return inl == 0;
|
---|
532 | }
|
---|
533 | if (ossl_is_partially_overlapping(out + ctx->buf_len, in, cmpl)) {
|
---|
534 | ERR_raise(ERR_LIB_EVP, EVP_R_PARTIALLY_OVERLAPPING);
|
---|
535 | return 0;
|
---|
536 | }
|
---|
537 |
|
---|
538 | if (ctx->buf_len == 0 && (inl & (ctx->block_mask)) == 0) {
|
---|
539 | if (ctx->cipher->do_cipher(ctx, out, in, inl)) {
|
---|
540 | *outl = inl;
|
---|
541 | return 1;
|
---|
542 | } else {
|
---|
543 | *outl = 0;
|
---|
544 | return 0;
|
---|
545 | }
|
---|
546 | }
|
---|
547 | i = ctx->buf_len;
|
---|
548 | OPENSSL_assert(bl <= (int)sizeof(ctx->buf));
|
---|
549 | if (i != 0) {
|
---|
550 | if (bl - i > inl) {
|
---|
551 | memcpy(&(ctx->buf[i]), in, inl);
|
---|
552 | ctx->buf_len += inl;
|
---|
553 | *outl = 0;
|
---|
554 | return 1;
|
---|
555 | } else {
|
---|
556 | j = bl - i;
|
---|
557 |
|
---|
558 | /*
|
---|
559 | * Once we've processed the first j bytes from in, the amount of
|
---|
560 | * data left that is a multiple of the block length is:
|
---|
561 | * (inl - j) & ~(bl - 1)
|
---|
562 | * We must ensure that this amount of data, plus the one block that
|
---|
563 | * we process from ctx->buf does not exceed INT_MAX
|
---|
564 | */
|
---|
565 | if (((inl - j) & ~(bl - 1)) > INT_MAX - bl) {
|
---|
566 | ERR_raise(ERR_LIB_EVP, EVP_R_OUTPUT_WOULD_OVERFLOW);
|
---|
567 | return 0;
|
---|
568 | }
|
---|
569 | memcpy(&(ctx->buf[i]), in, j);
|
---|
570 | inl -= j;
|
---|
571 | in += j;
|
---|
572 | if (!ctx->cipher->do_cipher(ctx, out, ctx->buf, bl))
|
---|
573 | return 0;
|
---|
574 | out += bl;
|
---|
575 | *outl = bl;
|
---|
576 | }
|
---|
577 | } else
|
---|
578 | *outl = 0;
|
---|
579 | i = inl & (bl - 1);
|
---|
580 | inl -= i;
|
---|
581 | if (inl > 0) {
|
---|
582 | if (!ctx->cipher->do_cipher(ctx, out, in, inl))
|
---|
583 | return 0;
|
---|
584 | *outl += inl;
|
---|
585 | }
|
---|
586 |
|
---|
587 | if (i != 0)
|
---|
588 | memcpy(ctx->buf, &(in[inl]), i);
|
---|
589 | ctx->buf_len = i;
|
---|
590 | return 1;
|
---|
591 | }
|
---|
592 |
|
---|
593 |
|
---|
594 | int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
|
---|
595 | const unsigned char *in, int inl)
|
---|
596 | {
|
---|
597 | int ret;
|
---|
598 | size_t soutl;
|
---|
599 | int blocksize;
|
---|
600 |
|
---|
601 | if (outl != NULL) {
|
---|
602 | *outl = 0;
|
---|
603 | } else {
|
---|
604 | ERR_raise(ERR_LIB_EVP, ERR_R_PASSED_NULL_PARAMETER);
|
---|
605 | return 0;
|
---|
606 | }
|
---|
607 |
|
---|
608 | /* Prevent accidental use of decryption context when encrypting */
|
---|
609 | if (!ctx->encrypt) {
|
---|
610 | ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_OPERATION);
|
---|
611 | return 0;
|
---|
612 | }
|
---|
613 |
|
---|
614 | if (ctx->cipher == NULL) {
|
---|
615 | ERR_raise(ERR_LIB_EVP, EVP_R_NO_CIPHER_SET);
|
---|
616 | return 0;
|
---|
617 | }
|
---|
618 |
|
---|
619 | if (ctx->cipher->prov == NULL)
|
---|
620 | goto legacy;
|
---|
621 |
|
---|
622 | blocksize = ctx->cipher->block_size;
|
---|
623 |
|
---|
624 | if (ctx->cipher->cupdate == NULL || blocksize < 1) {
|
---|
625 | ERR_raise(ERR_LIB_EVP, EVP_R_UPDATE_ERROR);
|
---|
626 | return 0;
|
---|
627 | }
|
---|
628 | ret = ctx->cipher->cupdate(ctx->algctx, out, &soutl,
|
---|
629 | inl + (blocksize == 1 ? 0 : blocksize), in,
|
---|
630 | (size_t)inl);
|
---|
631 |
|
---|
632 | if (ret) {
|
---|
633 | if (soutl > INT_MAX) {
|
---|
634 | ERR_raise(ERR_LIB_EVP, EVP_R_UPDATE_ERROR);
|
---|
635 | return 0;
|
---|
636 | }
|
---|
637 | *outl = soutl;
|
---|
638 | }
|
---|
639 |
|
---|
640 | return ret;
|
---|
641 |
|
---|
642 | /* Code below to be removed when legacy support is dropped. */
|
---|
643 | legacy:
|
---|
644 |
|
---|
645 | return evp_EncryptDecryptUpdate(ctx, out, outl, in, inl);
|
---|
646 | }
|
---|
647 |
|
---|
648 | int EVP_EncryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
|
---|
649 | {
|
---|
650 | int ret;
|
---|
651 | ret = EVP_EncryptFinal_ex(ctx, out, outl);
|
---|
652 | return ret;
|
---|
653 | }
|
---|
654 |
|
---|
655 | int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
|
---|
656 | {
|
---|
657 | int n, ret;
|
---|
658 | unsigned int i, b, bl;
|
---|
659 | size_t soutl;
|
---|
660 | int blocksize;
|
---|
661 |
|
---|
662 | if (outl != NULL) {
|
---|
663 | *outl = 0;
|
---|
664 | } else {
|
---|
665 | ERR_raise(ERR_LIB_EVP, ERR_R_PASSED_NULL_PARAMETER);
|
---|
666 | return 0;
|
---|
667 | }
|
---|
668 |
|
---|
669 | /* Prevent accidental use of decryption context when encrypting */
|
---|
670 | if (!ctx->encrypt) {
|
---|
671 | ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_OPERATION);
|
---|
672 | return 0;
|
---|
673 | }
|
---|
674 |
|
---|
675 | if (ctx->cipher == NULL) {
|
---|
676 | ERR_raise(ERR_LIB_EVP, EVP_R_NO_CIPHER_SET);
|
---|
677 | return 0;
|
---|
678 | }
|
---|
679 | if (ctx->cipher->prov == NULL)
|
---|
680 | goto legacy;
|
---|
681 |
|
---|
682 | blocksize = EVP_CIPHER_CTX_get_block_size(ctx);
|
---|
683 |
|
---|
684 | if (blocksize < 1 || ctx->cipher->cfinal == NULL) {
|
---|
685 | ERR_raise(ERR_LIB_EVP, EVP_R_FINAL_ERROR);
|
---|
686 | return 0;
|
---|
687 | }
|
---|
688 |
|
---|
689 | ret = ctx->cipher->cfinal(ctx->algctx, out, &soutl,
|
---|
690 | blocksize == 1 ? 0 : blocksize);
|
---|
691 |
|
---|
692 | if (ret) {
|
---|
693 | if (soutl > INT_MAX) {
|
---|
694 | ERR_raise(ERR_LIB_EVP, EVP_R_FINAL_ERROR);
|
---|
695 | return 0;
|
---|
696 | }
|
---|
697 | *outl = soutl;
|
---|
698 | }
|
---|
699 |
|
---|
700 | return ret;
|
---|
701 |
|
---|
702 | /* Code below to be removed when legacy support is dropped. */
|
---|
703 | legacy:
|
---|
704 |
|
---|
705 | if (ctx->cipher->flags & EVP_CIPH_FLAG_CUSTOM_CIPHER) {
|
---|
706 | ret = ctx->cipher->do_cipher(ctx, out, NULL, 0);
|
---|
707 | if (ret < 0)
|
---|
708 | return 0;
|
---|
709 | else
|
---|
710 | *outl = ret;
|
---|
711 | return 1;
|
---|
712 | }
|
---|
713 |
|
---|
714 | b = ctx->cipher->block_size;
|
---|
715 | OPENSSL_assert(b <= sizeof(ctx->buf));
|
---|
716 | if (b == 1) {
|
---|
717 | *outl = 0;
|
---|
718 | return 1;
|
---|
719 | }
|
---|
720 | bl = ctx->buf_len;
|
---|
721 | if (ctx->flags & EVP_CIPH_NO_PADDING) {
|
---|
722 | if (bl) {
|
---|
723 | ERR_raise(ERR_LIB_EVP, EVP_R_DATA_NOT_MULTIPLE_OF_BLOCK_LENGTH);
|
---|
724 | return 0;
|
---|
725 | }
|
---|
726 | *outl = 0;
|
---|
727 | return 1;
|
---|
728 | }
|
---|
729 |
|
---|
730 | n = b - bl;
|
---|
731 | for (i = bl; i < b; i++)
|
---|
732 | ctx->buf[i] = n;
|
---|
733 | ret = ctx->cipher->do_cipher(ctx, out, ctx->buf, b);
|
---|
734 |
|
---|
735 | if (ret)
|
---|
736 | *outl = b;
|
---|
737 |
|
---|
738 | return ret;
|
---|
739 | }
|
---|
740 |
|
---|
741 | int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
|
---|
742 | const unsigned char *in, int inl)
|
---|
743 | {
|
---|
744 | int fix_len, cmpl = inl, ret;
|
---|
745 | unsigned int b;
|
---|
746 | size_t soutl;
|
---|
747 | int blocksize;
|
---|
748 |
|
---|
749 | if (outl != NULL) {
|
---|
750 | *outl = 0;
|
---|
751 | } else {
|
---|
752 | ERR_raise(ERR_LIB_EVP, ERR_R_PASSED_NULL_PARAMETER);
|
---|
753 | return 0;
|
---|
754 | }
|
---|
755 |
|
---|
756 | /* Prevent accidental use of encryption context when decrypting */
|
---|
757 | if (ctx->encrypt) {
|
---|
758 | ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_OPERATION);
|
---|
759 | return 0;
|
---|
760 | }
|
---|
761 |
|
---|
762 | if (ctx->cipher == NULL) {
|
---|
763 | ERR_raise(ERR_LIB_EVP, EVP_R_NO_CIPHER_SET);
|
---|
764 | return 0;
|
---|
765 | }
|
---|
766 | if (ctx->cipher->prov == NULL)
|
---|
767 | goto legacy;
|
---|
768 |
|
---|
769 | blocksize = EVP_CIPHER_CTX_get_block_size(ctx);
|
---|
770 |
|
---|
771 | if (ctx->cipher->cupdate == NULL || blocksize < 1) {
|
---|
772 | ERR_raise(ERR_LIB_EVP, EVP_R_UPDATE_ERROR);
|
---|
773 | return 0;
|
---|
774 | }
|
---|
775 | ret = ctx->cipher->cupdate(ctx->algctx, out, &soutl,
|
---|
776 | inl + (blocksize == 1 ? 0 : blocksize), in,
|
---|
777 | (size_t)inl);
|
---|
778 |
|
---|
779 | if (ret) {
|
---|
780 | if (soutl > INT_MAX) {
|
---|
781 | ERR_raise(ERR_LIB_EVP, EVP_R_UPDATE_ERROR);
|
---|
782 | return 0;
|
---|
783 | }
|
---|
784 | *outl = soutl;
|
---|
785 | }
|
---|
786 |
|
---|
787 | return ret;
|
---|
788 |
|
---|
789 | /* Code below to be removed when legacy support is dropped. */
|
---|
790 | legacy:
|
---|
791 |
|
---|
792 | b = ctx->cipher->block_size;
|
---|
793 |
|
---|
794 | if (EVP_CIPHER_CTX_test_flags(ctx, EVP_CIPH_FLAG_LENGTH_BITS))
|
---|
795 | cmpl = (cmpl + 7) / 8;
|
---|
796 |
|
---|
797 | if (ctx->cipher->flags & EVP_CIPH_FLAG_CUSTOM_CIPHER) {
|
---|
798 | if (b == 1 && ossl_is_partially_overlapping(out, in, cmpl)) {
|
---|
799 | ERR_raise(ERR_LIB_EVP, EVP_R_PARTIALLY_OVERLAPPING);
|
---|
800 | return 0;
|
---|
801 | }
|
---|
802 |
|
---|
803 | fix_len = ctx->cipher->do_cipher(ctx, out, in, inl);
|
---|
804 | if (fix_len < 0) {
|
---|
805 | *outl = 0;
|
---|
806 | return 0;
|
---|
807 | } else
|
---|
808 | *outl = fix_len;
|
---|
809 | return 1;
|
---|
810 | }
|
---|
811 |
|
---|
812 | if (inl <= 0) {
|
---|
813 | *outl = 0;
|
---|
814 | return inl == 0;
|
---|
815 | }
|
---|
816 |
|
---|
817 | if (ctx->flags & EVP_CIPH_NO_PADDING)
|
---|
818 | return evp_EncryptDecryptUpdate(ctx, out, outl, in, inl);
|
---|
819 |
|
---|
820 | OPENSSL_assert(b <= sizeof(ctx->final));
|
---|
821 |
|
---|
822 | if (ctx->final_used) {
|
---|
823 | /* see comment about PTRDIFF_T comparison above */
|
---|
824 | if (((PTRDIFF_T)out == (PTRDIFF_T)in)
|
---|
825 | || ossl_is_partially_overlapping(out, in, b)) {
|
---|
826 | ERR_raise(ERR_LIB_EVP, EVP_R_PARTIALLY_OVERLAPPING);
|
---|
827 | return 0;
|
---|
828 | }
|
---|
829 | /*
|
---|
830 | * final_used is only ever set if buf_len is 0. Therefore the maximum
|
---|
831 | * length output we will ever see from evp_EncryptDecryptUpdate is
|
---|
832 | * the maximum multiple of the block length that is <= inl, or just:
|
---|
833 | * inl & ~(b - 1)
|
---|
834 | * Since final_used has been set then the final output length is:
|
---|
835 | * (inl & ~(b - 1)) + b
|
---|
836 | * This must never exceed INT_MAX
|
---|
837 | */
|
---|
838 | if ((inl & ~(b - 1)) > INT_MAX - b) {
|
---|
839 | ERR_raise(ERR_LIB_EVP, EVP_R_OUTPUT_WOULD_OVERFLOW);
|
---|
840 | return 0;
|
---|
841 | }
|
---|
842 | memcpy(out, ctx->final, b);
|
---|
843 | out += b;
|
---|
844 | fix_len = 1;
|
---|
845 | } else
|
---|
846 | fix_len = 0;
|
---|
847 |
|
---|
848 | if (!evp_EncryptDecryptUpdate(ctx, out, outl, in, inl))
|
---|
849 | return 0;
|
---|
850 |
|
---|
851 | /*
|
---|
852 | * if we have 'decrypted' a multiple of block size, make sure we have a
|
---|
853 | * copy of this last block
|
---|
854 | */
|
---|
855 | if (b > 1 && !ctx->buf_len) {
|
---|
856 | *outl -= b;
|
---|
857 | ctx->final_used = 1;
|
---|
858 | memcpy(ctx->final, &out[*outl], b);
|
---|
859 | } else
|
---|
860 | ctx->final_used = 0;
|
---|
861 |
|
---|
862 | if (fix_len)
|
---|
863 | *outl += b;
|
---|
864 |
|
---|
865 | return 1;
|
---|
866 | }
|
---|
867 |
|
---|
868 | int EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
|
---|
869 | {
|
---|
870 | int ret;
|
---|
871 | ret = EVP_DecryptFinal_ex(ctx, out, outl);
|
---|
872 | return ret;
|
---|
873 | }
|
---|
874 |
|
---|
875 | int EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
|
---|
876 | {
|
---|
877 | int i, n;
|
---|
878 | unsigned int b;
|
---|
879 | size_t soutl;
|
---|
880 | int ret;
|
---|
881 | int blocksize;
|
---|
882 |
|
---|
883 | if (outl != NULL) {
|
---|
884 | *outl = 0;
|
---|
885 | } else {
|
---|
886 | ERR_raise(ERR_LIB_EVP, ERR_R_PASSED_NULL_PARAMETER);
|
---|
887 | return 0;
|
---|
888 | }
|
---|
889 |
|
---|
890 | /* Prevent accidental use of encryption context when decrypting */
|
---|
891 | if (ctx->encrypt) {
|
---|
892 | ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_OPERATION);
|
---|
893 | return 0;
|
---|
894 | }
|
---|
895 |
|
---|
896 | if (ctx->cipher == NULL) {
|
---|
897 | ERR_raise(ERR_LIB_EVP, EVP_R_NO_CIPHER_SET);
|
---|
898 | return 0;
|
---|
899 | }
|
---|
900 |
|
---|
901 | if (ctx->cipher->prov == NULL)
|
---|
902 | goto legacy;
|
---|
903 |
|
---|
904 | blocksize = EVP_CIPHER_CTX_get_block_size(ctx);
|
---|
905 |
|
---|
906 | if (blocksize < 1 || ctx->cipher->cfinal == NULL) {
|
---|
907 | ERR_raise(ERR_LIB_EVP, EVP_R_FINAL_ERROR);
|
---|
908 | return 0;
|
---|
909 | }
|
---|
910 |
|
---|
911 | ret = ctx->cipher->cfinal(ctx->algctx, out, &soutl,
|
---|
912 | blocksize == 1 ? 0 : blocksize);
|
---|
913 |
|
---|
914 | if (ret) {
|
---|
915 | if (soutl > INT_MAX) {
|
---|
916 | ERR_raise(ERR_LIB_EVP, EVP_R_FINAL_ERROR);
|
---|
917 | return 0;
|
---|
918 | }
|
---|
919 | *outl = soutl;
|
---|
920 | }
|
---|
921 |
|
---|
922 | return ret;
|
---|
923 |
|
---|
924 | /* Code below to be removed when legacy support is dropped. */
|
---|
925 | legacy:
|
---|
926 |
|
---|
927 | *outl = 0;
|
---|
928 | if (ctx->cipher->flags & EVP_CIPH_FLAG_CUSTOM_CIPHER) {
|
---|
929 | i = ctx->cipher->do_cipher(ctx, out, NULL, 0);
|
---|
930 | if (i < 0)
|
---|
931 | return 0;
|
---|
932 | else
|
---|
933 | *outl = i;
|
---|
934 | return 1;
|
---|
935 | }
|
---|
936 |
|
---|
937 | b = ctx->cipher->block_size;
|
---|
938 | if (ctx->flags & EVP_CIPH_NO_PADDING) {
|
---|
939 | if (ctx->buf_len) {
|
---|
940 | ERR_raise(ERR_LIB_EVP, EVP_R_DATA_NOT_MULTIPLE_OF_BLOCK_LENGTH);
|
---|
941 | return 0;
|
---|
942 | }
|
---|
943 | *outl = 0;
|
---|
944 | return 1;
|
---|
945 | }
|
---|
946 | if (b > 1) {
|
---|
947 | if (ctx->buf_len || !ctx->final_used) {
|
---|
948 | ERR_raise(ERR_LIB_EVP, EVP_R_WRONG_FINAL_BLOCK_LENGTH);
|
---|
949 | return 0;
|
---|
950 | }
|
---|
951 | OPENSSL_assert(b <= sizeof(ctx->final));
|
---|
952 |
|
---|
953 | /*
|
---|
954 | * The following assumes that the ciphertext has been authenticated.
|
---|
955 | * Otherwise it provides a padding oracle.
|
---|
956 | */
|
---|
957 | n = ctx->final[b - 1];
|
---|
958 | if (n == 0 || n > (int)b) {
|
---|
959 | ERR_raise(ERR_LIB_EVP, EVP_R_BAD_DECRYPT);
|
---|
960 | return 0;
|
---|
961 | }
|
---|
962 | for (i = 0; i < n; i++) {
|
---|
963 | if (ctx->final[--b] != n) {
|
---|
964 | ERR_raise(ERR_LIB_EVP, EVP_R_BAD_DECRYPT);
|
---|
965 | return 0;
|
---|
966 | }
|
---|
967 | }
|
---|
968 | n = ctx->cipher->block_size - n;
|
---|
969 | for (i = 0; i < n; i++)
|
---|
970 | out[i] = ctx->final[i];
|
---|
971 | *outl = n;
|
---|
972 | } else
|
---|
973 | *outl = 0;
|
---|
974 | return 1;
|
---|
975 | }
|
---|
976 |
|
---|
977 | int EVP_CIPHER_CTX_set_key_length(EVP_CIPHER_CTX *c, int keylen)
|
---|
978 | {
|
---|
979 | if (c->cipher->prov != NULL) {
|
---|
980 | int ok;
|
---|
981 | OSSL_PARAM params[2] = { OSSL_PARAM_END, OSSL_PARAM_END };
|
---|
982 | size_t len = keylen;
|
---|
983 |
|
---|
984 | if (EVP_CIPHER_CTX_get_key_length(c) == keylen)
|
---|
985 | return 1;
|
---|
986 |
|
---|
987 | /* Check the cipher actually understands this parameter */
|
---|
988 | if (OSSL_PARAM_locate_const(EVP_CIPHER_settable_ctx_params(c->cipher),
|
---|
989 | OSSL_CIPHER_PARAM_KEYLEN) == NULL) {
|
---|
990 | ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_KEY_LENGTH);
|
---|
991 | return 0;
|
---|
992 | }
|
---|
993 |
|
---|
994 | params[0] = OSSL_PARAM_construct_size_t(OSSL_CIPHER_PARAM_KEYLEN, &len);
|
---|
995 | ok = evp_do_ciph_ctx_setparams(c->cipher, c->algctx, params);
|
---|
996 |
|
---|
997 | return ok > 0 ? 1 : 0;
|
---|
998 | }
|
---|
999 |
|
---|
1000 | /* Code below to be removed when legacy support is dropped. */
|
---|
1001 |
|
---|
1002 | /*
|
---|
1003 | * Note there have never been any built-in ciphers that define this flag
|
---|
1004 | * since it was first introduced.
|
---|
1005 | */
|
---|
1006 | if (c->cipher->flags & EVP_CIPH_CUSTOM_KEY_LENGTH)
|
---|
1007 | return EVP_CIPHER_CTX_ctrl(c, EVP_CTRL_SET_KEY_LENGTH, keylen, NULL);
|
---|
1008 | if (EVP_CIPHER_CTX_get_key_length(c) == keylen)
|
---|
1009 | return 1;
|
---|
1010 | if ((keylen > 0) && (c->cipher->flags & EVP_CIPH_VARIABLE_LENGTH)) {
|
---|
1011 | c->key_len = keylen;
|
---|
1012 | return 1;
|
---|
1013 | }
|
---|
1014 | ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_KEY_LENGTH);
|
---|
1015 | return 0;
|
---|
1016 | }
|
---|
1017 |
|
---|
1018 | int EVP_CIPHER_CTX_set_padding(EVP_CIPHER_CTX *ctx, int pad)
|
---|
1019 | {
|
---|
1020 | int ok;
|
---|
1021 | OSSL_PARAM params[2] = { OSSL_PARAM_END, OSSL_PARAM_END };
|
---|
1022 | unsigned int pd = pad;
|
---|
1023 |
|
---|
1024 | if (pad)
|
---|
1025 | ctx->flags &= ~EVP_CIPH_NO_PADDING;
|
---|
1026 | else
|
---|
1027 | ctx->flags |= EVP_CIPH_NO_PADDING;
|
---|
1028 |
|
---|
1029 | if (ctx->cipher != NULL && ctx->cipher->prov == NULL)
|
---|
1030 | return 1;
|
---|
1031 | params[0] = OSSL_PARAM_construct_uint(OSSL_CIPHER_PARAM_PADDING, &pd);
|
---|
1032 | ok = evp_do_ciph_ctx_setparams(ctx->cipher, ctx->algctx, params);
|
---|
1033 |
|
---|
1034 | return ok != 0;
|
---|
1035 | }
|
---|
1036 |
|
---|
1037 | int EVP_CIPHER_CTX_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr)
|
---|
1038 | {
|
---|
1039 | int ret = EVP_CTRL_RET_UNSUPPORTED;
|
---|
1040 | int set_params = 1;
|
---|
1041 | size_t sz = arg;
|
---|
1042 | unsigned int i;
|
---|
1043 | OSSL_PARAM params[4] = {
|
---|
1044 | OSSL_PARAM_END, OSSL_PARAM_END, OSSL_PARAM_END, OSSL_PARAM_END
|
---|
1045 | };
|
---|
1046 |
|
---|
1047 | if (ctx == NULL || ctx->cipher == NULL) {
|
---|
1048 | ERR_raise(ERR_LIB_EVP, EVP_R_NO_CIPHER_SET);
|
---|
1049 | return 0;
|
---|
1050 | }
|
---|
1051 |
|
---|
1052 | if (ctx->cipher->prov == NULL)
|
---|
1053 | goto legacy;
|
---|
1054 |
|
---|
1055 | switch (type) {
|
---|
1056 | case EVP_CTRL_SET_KEY_LENGTH:
|
---|
1057 | params[0] = OSSL_PARAM_construct_size_t(OSSL_CIPHER_PARAM_KEYLEN, &sz);
|
---|
1058 | break;
|
---|
1059 | case EVP_CTRL_RAND_KEY: /* Used by DES */
|
---|
1060 | set_params = 0;
|
---|
1061 | params[0] =
|
---|
1062 | OSSL_PARAM_construct_octet_string(OSSL_CIPHER_PARAM_RANDOM_KEY,
|
---|
1063 | ptr, sz);
|
---|
1064 | break;
|
---|
1065 |
|
---|
1066 | case EVP_CTRL_INIT:
|
---|
1067 | /*
|
---|
1068 | * EVP_CTRL_INIT is purely legacy, no provider counterpart.
|
---|
1069 | * As a matter of fact, this should be dead code, but some caller
|
---|
1070 | * might still do a direct control call with this command, so...
|
---|
1071 | * Legacy methods return 1 except for exceptional circumstances, so
|
---|
1072 | * we do the same here to not be disruptive.
|
---|
1073 | */
|
---|
1074 | return 1;
|
---|
1075 | case EVP_CTRL_SET_PIPELINE_OUTPUT_BUFS: /* Used by DASYNC */
|
---|
1076 | default:
|
---|
1077 | goto end;
|
---|
1078 | case EVP_CTRL_AEAD_SET_IVLEN:
|
---|
1079 | if (arg < 0)
|
---|
1080 | return 0;
|
---|
1081 | params[0] = OSSL_PARAM_construct_size_t(OSSL_CIPHER_PARAM_IVLEN, &sz);
|
---|
1082 | break;
|
---|
1083 | case EVP_CTRL_CCM_SET_L:
|
---|
1084 | if (arg < 2 || arg > 8)
|
---|
1085 | return 0;
|
---|
1086 | sz = 15 - arg;
|
---|
1087 | params[0] = OSSL_PARAM_construct_size_t(OSSL_CIPHER_PARAM_IVLEN, &sz);
|
---|
1088 | break;
|
---|
1089 | case EVP_CTRL_AEAD_SET_IV_FIXED:
|
---|
1090 | params[0] = OSSL_PARAM_construct_octet_string(
|
---|
1091 | OSSL_CIPHER_PARAM_AEAD_TLS1_IV_FIXED, ptr, sz);
|
---|
1092 | break;
|
---|
1093 | case EVP_CTRL_GCM_IV_GEN:
|
---|
1094 | set_params = 0;
|
---|
1095 | if (arg < 0)
|
---|
1096 | sz = 0; /* special case that uses the iv length */
|
---|
1097 | params[0] = OSSL_PARAM_construct_octet_string(
|
---|
1098 | OSSL_CIPHER_PARAM_AEAD_TLS1_GET_IV_GEN, ptr, sz);
|
---|
1099 | break;
|
---|
1100 | case EVP_CTRL_GCM_SET_IV_INV:
|
---|
1101 | if (arg < 0)
|
---|
1102 | return 0;
|
---|
1103 | params[0] = OSSL_PARAM_construct_octet_string(
|
---|
1104 | OSSL_CIPHER_PARAM_AEAD_TLS1_SET_IV_INV, ptr, sz);
|
---|
1105 | break;
|
---|
1106 | case EVP_CTRL_GET_RC5_ROUNDS:
|
---|
1107 | set_params = 0; /* Fall thru */
|
---|
1108 | case EVP_CTRL_SET_RC5_ROUNDS:
|
---|
1109 | if (arg < 0)
|
---|
1110 | return 0;
|
---|
1111 | i = (unsigned int)arg;
|
---|
1112 | params[0] = OSSL_PARAM_construct_uint(OSSL_CIPHER_PARAM_ROUNDS, &i);
|
---|
1113 | break;
|
---|
1114 | case EVP_CTRL_SET_SPEED:
|
---|
1115 | if (arg < 0)
|
---|
1116 | return 0;
|
---|
1117 | i = (unsigned int)arg;
|
---|
1118 | params[0] = OSSL_PARAM_construct_uint(OSSL_CIPHER_PARAM_SPEED, &i);
|
---|
1119 | break;
|
---|
1120 | case EVP_CTRL_AEAD_GET_TAG:
|
---|
1121 | set_params = 0; /* Fall thru */
|
---|
1122 | case EVP_CTRL_AEAD_SET_TAG:
|
---|
1123 | params[0] = OSSL_PARAM_construct_octet_string(OSSL_CIPHER_PARAM_AEAD_TAG,
|
---|
1124 | ptr, sz);
|
---|
1125 | break;
|
---|
1126 | case EVP_CTRL_AEAD_TLS1_AAD:
|
---|
1127 | /* This one does a set and a get - since it returns a size */
|
---|
1128 | params[0] =
|
---|
1129 | OSSL_PARAM_construct_octet_string(OSSL_CIPHER_PARAM_AEAD_TLS1_AAD,
|
---|
1130 | ptr, sz);
|
---|
1131 | ret = evp_do_ciph_ctx_setparams(ctx->cipher, ctx->algctx, params);
|
---|
1132 | if (ret <= 0)
|
---|
1133 | goto end;
|
---|
1134 | params[0] =
|
---|
1135 | OSSL_PARAM_construct_size_t(OSSL_CIPHER_PARAM_AEAD_TLS1_AAD_PAD, &sz);
|
---|
1136 | ret = evp_do_ciph_ctx_getparams(ctx->cipher, ctx->algctx, params);
|
---|
1137 | if (ret <= 0)
|
---|
1138 | goto end;
|
---|
1139 | return sz;
|
---|
1140 | #ifndef OPENSSL_NO_RC2
|
---|
1141 | case EVP_CTRL_GET_RC2_KEY_BITS:
|
---|
1142 | set_params = 0; /* Fall thru */
|
---|
1143 | case EVP_CTRL_SET_RC2_KEY_BITS:
|
---|
1144 | params[0] = OSSL_PARAM_construct_size_t(OSSL_CIPHER_PARAM_RC2_KEYBITS, &sz);
|
---|
1145 | break;
|
---|
1146 | #endif /* OPENSSL_NO_RC2 */
|
---|
1147 | #if !defined(OPENSSL_NO_MULTIBLOCK)
|
---|
1148 | case EVP_CTRL_TLS1_1_MULTIBLOCK_MAX_BUFSIZE:
|
---|
1149 | params[0] = OSSL_PARAM_construct_size_t(
|
---|
1150 | OSSL_CIPHER_PARAM_TLS1_MULTIBLOCK_MAX_SEND_FRAGMENT, &sz);
|
---|
1151 | ret = evp_do_ciph_ctx_setparams(ctx->cipher, ctx->algctx, params);
|
---|
1152 | if (ret <= 0)
|
---|
1153 | return 0;
|
---|
1154 |
|
---|
1155 | params[0] = OSSL_PARAM_construct_size_t(
|
---|
1156 | OSSL_CIPHER_PARAM_TLS1_MULTIBLOCK_MAX_BUFSIZE, &sz);
|
---|
1157 | params[1] = OSSL_PARAM_construct_end();
|
---|
1158 | ret = evp_do_ciph_ctx_getparams(ctx->cipher, ctx->algctx, params);
|
---|
1159 | if (ret <= 0)
|
---|
1160 | return 0;
|
---|
1161 | return sz;
|
---|
1162 | case EVP_CTRL_TLS1_1_MULTIBLOCK_AAD: {
|
---|
1163 | EVP_CTRL_TLS1_1_MULTIBLOCK_PARAM *p =
|
---|
1164 | (EVP_CTRL_TLS1_1_MULTIBLOCK_PARAM *)ptr;
|
---|
1165 |
|
---|
1166 | if (arg < (int)sizeof(EVP_CTRL_TLS1_1_MULTIBLOCK_PARAM))
|
---|
1167 | return 0;
|
---|
1168 |
|
---|
1169 | params[0] = OSSL_PARAM_construct_octet_string(
|
---|
1170 | OSSL_CIPHER_PARAM_TLS1_MULTIBLOCK_AAD, (void*)p->inp, p->len);
|
---|
1171 | params[1] = OSSL_PARAM_construct_uint(
|
---|
1172 | OSSL_CIPHER_PARAM_TLS1_MULTIBLOCK_INTERLEAVE, &p->interleave);
|
---|
1173 | ret = evp_do_ciph_ctx_setparams(ctx->cipher, ctx->algctx, params);
|
---|
1174 | if (ret <= 0)
|
---|
1175 | return ret;
|
---|
1176 | /* Retrieve the return values changed by the set */
|
---|
1177 | params[0] = OSSL_PARAM_construct_size_t(
|
---|
1178 | OSSL_CIPHER_PARAM_TLS1_MULTIBLOCK_AAD_PACKLEN, &sz);
|
---|
1179 | params[1] = OSSL_PARAM_construct_uint(
|
---|
1180 | OSSL_CIPHER_PARAM_TLS1_MULTIBLOCK_INTERLEAVE, &p->interleave);
|
---|
1181 | params[2] = OSSL_PARAM_construct_end();
|
---|
1182 | ret = evp_do_ciph_ctx_getparams(ctx->cipher, ctx->algctx, params);
|
---|
1183 | if (ret <= 0)
|
---|
1184 | return 0;
|
---|
1185 | return sz;
|
---|
1186 | }
|
---|
1187 | case EVP_CTRL_TLS1_1_MULTIBLOCK_ENCRYPT: {
|
---|
1188 | EVP_CTRL_TLS1_1_MULTIBLOCK_PARAM *p =
|
---|
1189 | (EVP_CTRL_TLS1_1_MULTIBLOCK_PARAM *)ptr;
|
---|
1190 |
|
---|
1191 | params[0] = OSSL_PARAM_construct_octet_string(
|
---|
1192 | OSSL_CIPHER_PARAM_TLS1_MULTIBLOCK_ENC, p->out, p->len);
|
---|
1193 |
|
---|
1194 | params[1] = OSSL_PARAM_construct_octet_string(
|
---|
1195 | OSSL_CIPHER_PARAM_TLS1_MULTIBLOCK_ENC_IN, (void*)p->inp,
|
---|
1196 | p->len);
|
---|
1197 | params[2] = OSSL_PARAM_construct_uint(
|
---|
1198 | OSSL_CIPHER_PARAM_TLS1_MULTIBLOCK_INTERLEAVE, &p->interleave);
|
---|
1199 | ret = evp_do_ciph_ctx_setparams(ctx->cipher, ctx->algctx, params);
|
---|
1200 | if (ret <= 0)
|
---|
1201 | return ret;
|
---|
1202 | params[0] = OSSL_PARAM_construct_size_t(
|
---|
1203 | OSSL_CIPHER_PARAM_TLS1_MULTIBLOCK_ENC_LEN, &sz);
|
---|
1204 | params[1] = OSSL_PARAM_construct_end();
|
---|
1205 | ret = evp_do_ciph_ctx_getparams(ctx->cipher, ctx->algctx, params);
|
---|
1206 | if (ret <= 0)
|
---|
1207 | return 0;
|
---|
1208 | return sz;
|
---|
1209 | }
|
---|
1210 | #endif /* OPENSSL_NO_MULTIBLOCK */
|
---|
1211 | case EVP_CTRL_AEAD_SET_MAC_KEY:
|
---|
1212 | if (arg < 0)
|
---|
1213 | return -1;
|
---|
1214 | params[0] = OSSL_PARAM_construct_octet_string(
|
---|
1215 | OSSL_CIPHER_PARAM_AEAD_MAC_KEY, ptr, sz);
|
---|
1216 | break;
|
---|
1217 | }
|
---|
1218 |
|
---|
1219 | if (set_params)
|
---|
1220 | ret = evp_do_ciph_ctx_setparams(ctx->cipher, ctx->algctx, params);
|
---|
1221 | else
|
---|
1222 | ret = evp_do_ciph_ctx_getparams(ctx->cipher, ctx->algctx, params);
|
---|
1223 | goto end;
|
---|
1224 |
|
---|
1225 | /* Code below to be removed when legacy support is dropped. */
|
---|
1226 | legacy:
|
---|
1227 | if (ctx->cipher->ctrl == NULL) {
|
---|
1228 | ERR_raise(ERR_LIB_EVP, EVP_R_CTRL_NOT_IMPLEMENTED);
|
---|
1229 | return 0;
|
---|
1230 | }
|
---|
1231 |
|
---|
1232 | ret = ctx->cipher->ctrl(ctx, type, arg, ptr);
|
---|
1233 |
|
---|
1234 | end:
|
---|
1235 | if (ret == EVP_CTRL_RET_UNSUPPORTED) {
|
---|
1236 | ERR_raise(ERR_LIB_EVP, EVP_R_CTRL_OPERATION_NOT_IMPLEMENTED);
|
---|
1237 | return 0;
|
---|
1238 | }
|
---|
1239 | return ret;
|
---|
1240 | }
|
---|
1241 |
|
---|
1242 | int EVP_CIPHER_get_params(EVP_CIPHER *cipher, OSSL_PARAM params[])
|
---|
1243 | {
|
---|
1244 | if (cipher != NULL && cipher->get_params != NULL)
|
---|
1245 | return cipher->get_params(params);
|
---|
1246 | return 0;
|
---|
1247 | }
|
---|
1248 |
|
---|
1249 | int EVP_CIPHER_CTX_set_params(EVP_CIPHER_CTX *ctx, const OSSL_PARAM params[])
|
---|
1250 | {
|
---|
1251 | if (ctx->cipher != NULL && ctx->cipher->set_ctx_params != NULL)
|
---|
1252 | return ctx->cipher->set_ctx_params(ctx->algctx, params);
|
---|
1253 | return 0;
|
---|
1254 | }
|
---|
1255 |
|
---|
1256 | int EVP_CIPHER_CTX_get_params(EVP_CIPHER_CTX *ctx, OSSL_PARAM params[])
|
---|
1257 | {
|
---|
1258 | if (ctx->cipher != NULL && ctx->cipher->get_ctx_params != NULL)
|
---|
1259 | return ctx->cipher->get_ctx_params(ctx->algctx, params);
|
---|
1260 | return 0;
|
---|
1261 | }
|
---|
1262 |
|
---|
1263 | const OSSL_PARAM *EVP_CIPHER_gettable_params(const EVP_CIPHER *cipher)
|
---|
1264 | {
|
---|
1265 | if (cipher != NULL && cipher->gettable_params != NULL)
|
---|
1266 | return cipher->gettable_params(
|
---|
1267 | ossl_provider_ctx(EVP_CIPHER_get0_provider(cipher)));
|
---|
1268 | return NULL;
|
---|
1269 | }
|
---|
1270 |
|
---|
1271 | const OSSL_PARAM *EVP_CIPHER_settable_ctx_params(const EVP_CIPHER *cipher)
|
---|
1272 | {
|
---|
1273 | void *provctx;
|
---|
1274 |
|
---|
1275 | if (cipher != NULL && cipher->settable_ctx_params != NULL) {
|
---|
1276 | provctx = ossl_provider_ctx(EVP_CIPHER_get0_provider(cipher));
|
---|
1277 | return cipher->settable_ctx_params(NULL, provctx);
|
---|
1278 | }
|
---|
1279 | return NULL;
|
---|
1280 | }
|
---|
1281 |
|
---|
1282 | const OSSL_PARAM *EVP_CIPHER_gettable_ctx_params(const EVP_CIPHER *cipher)
|
---|
1283 | {
|
---|
1284 | void *provctx;
|
---|
1285 |
|
---|
1286 | if (cipher != NULL && cipher->gettable_ctx_params != NULL) {
|
---|
1287 | provctx = ossl_provider_ctx(EVP_CIPHER_get0_provider(cipher));
|
---|
1288 | return cipher->gettable_ctx_params(NULL, provctx);
|
---|
1289 | }
|
---|
1290 | return NULL;
|
---|
1291 | }
|
---|
1292 |
|
---|
1293 | const OSSL_PARAM *EVP_CIPHER_CTX_settable_params(EVP_CIPHER_CTX *cctx)
|
---|
1294 | {
|
---|
1295 | void *alg;
|
---|
1296 |
|
---|
1297 | if (cctx != NULL && cctx->cipher->settable_ctx_params != NULL) {
|
---|
1298 | alg = ossl_provider_ctx(EVP_CIPHER_get0_provider(cctx->cipher));
|
---|
1299 | return cctx->cipher->settable_ctx_params(cctx->algctx, alg);
|
---|
1300 | }
|
---|
1301 | return NULL;
|
---|
1302 | }
|
---|
1303 |
|
---|
1304 | const OSSL_PARAM *EVP_CIPHER_CTX_gettable_params(EVP_CIPHER_CTX *cctx)
|
---|
1305 | {
|
---|
1306 | void *provctx;
|
---|
1307 |
|
---|
1308 | if (cctx != NULL && cctx->cipher->gettable_ctx_params != NULL) {
|
---|
1309 | provctx = ossl_provider_ctx(EVP_CIPHER_get0_provider(cctx->cipher));
|
---|
1310 | return cctx->cipher->gettable_ctx_params(cctx->algctx, provctx);
|
---|
1311 | }
|
---|
1312 | return NULL;
|
---|
1313 | }
|
---|
1314 |
|
---|
1315 | #ifndef FIPS_MODULE
|
---|
1316 | static OSSL_LIB_CTX *EVP_CIPHER_CTX_get_libctx(EVP_CIPHER_CTX *ctx)
|
---|
1317 | {
|
---|
1318 | const EVP_CIPHER *cipher = ctx->cipher;
|
---|
1319 | const OSSL_PROVIDER *prov;
|
---|
1320 |
|
---|
1321 | if (cipher == NULL)
|
---|
1322 | return NULL;
|
---|
1323 |
|
---|
1324 | prov = EVP_CIPHER_get0_provider(cipher);
|
---|
1325 | return ossl_provider_libctx(prov);
|
---|
1326 | }
|
---|
1327 | #endif
|
---|
1328 |
|
---|
1329 | int EVP_CIPHER_CTX_rand_key(EVP_CIPHER_CTX *ctx, unsigned char *key)
|
---|
1330 | {
|
---|
1331 | if (ctx->cipher->flags & EVP_CIPH_RAND_KEY)
|
---|
1332 | return EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_RAND_KEY, 0, key);
|
---|
1333 |
|
---|
1334 | #ifdef FIPS_MODULE
|
---|
1335 | return 0;
|
---|
1336 | #else
|
---|
1337 | {
|
---|
1338 | int kl;
|
---|
1339 | OSSL_LIB_CTX *libctx = EVP_CIPHER_CTX_get_libctx(ctx);
|
---|
1340 |
|
---|
1341 | kl = EVP_CIPHER_CTX_get_key_length(ctx);
|
---|
1342 | if (kl <= 0 || RAND_priv_bytes_ex(libctx, key, kl, 0) <= 0)
|
---|
1343 | return 0;
|
---|
1344 | return 1;
|
---|
1345 | }
|
---|
1346 | #endif /* FIPS_MODULE */
|
---|
1347 | }
|
---|
1348 |
|
---|
1349 | int EVP_CIPHER_CTX_copy(EVP_CIPHER_CTX *out, const EVP_CIPHER_CTX *in)
|
---|
1350 | {
|
---|
1351 | if ((in == NULL) || (in->cipher == NULL)) {
|
---|
1352 | ERR_raise(ERR_LIB_EVP, EVP_R_INPUT_NOT_INITIALIZED);
|
---|
1353 | return 0;
|
---|
1354 | }
|
---|
1355 |
|
---|
1356 | if (in->cipher->prov == NULL)
|
---|
1357 | goto legacy;
|
---|
1358 |
|
---|
1359 | if (in->cipher->dupctx == NULL) {
|
---|
1360 | ERR_raise(ERR_LIB_EVP, EVP_R_NOT_ABLE_TO_COPY_CTX);
|
---|
1361 | return 0;
|
---|
1362 | }
|
---|
1363 |
|
---|
1364 | EVP_CIPHER_CTX_reset(out);
|
---|
1365 |
|
---|
1366 | *out = *in;
|
---|
1367 | out->algctx = NULL;
|
---|
1368 |
|
---|
1369 | if (in->fetched_cipher != NULL && !EVP_CIPHER_up_ref(in->fetched_cipher)) {
|
---|
1370 | out->fetched_cipher = NULL;
|
---|
1371 | return 0;
|
---|
1372 | }
|
---|
1373 |
|
---|
1374 | out->algctx = in->cipher->dupctx(in->algctx);
|
---|
1375 | if (out->algctx == NULL) {
|
---|
1376 | ERR_raise(ERR_LIB_EVP, EVP_R_NOT_ABLE_TO_COPY_CTX);
|
---|
1377 | return 0;
|
---|
1378 | }
|
---|
1379 |
|
---|
1380 | return 1;
|
---|
1381 |
|
---|
1382 | /* Code below to be removed when legacy support is dropped. */
|
---|
1383 | legacy:
|
---|
1384 |
|
---|
1385 | #if !defined(OPENSSL_NO_ENGINE) && !defined(FIPS_MODULE)
|
---|
1386 | /* Make sure it's safe to copy a cipher context using an ENGINE */
|
---|
1387 | if (in->engine && !ENGINE_init(in->engine)) {
|
---|
1388 | ERR_raise(ERR_LIB_EVP, ERR_R_ENGINE_LIB);
|
---|
1389 | return 0;
|
---|
1390 | }
|
---|
1391 | #endif
|
---|
1392 |
|
---|
1393 | EVP_CIPHER_CTX_reset(out);
|
---|
1394 | memcpy(out, in, sizeof(*out));
|
---|
1395 |
|
---|
1396 | if (in->cipher_data && in->cipher->ctx_size) {
|
---|
1397 | out->cipher_data = OPENSSL_malloc(in->cipher->ctx_size);
|
---|
1398 | if (out->cipher_data == NULL) {
|
---|
1399 | out->cipher = NULL;
|
---|
1400 | ERR_raise(ERR_LIB_EVP, ERR_R_MALLOC_FAILURE);
|
---|
1401 | return 0;
|
---|
1402 | }
|
---|
1403 | memcpy(out->cipher_data, in->cipher_data, in->cipher->ctx_size);
|
---|
1404 | }
|
---|
1405 |
|
---|
1406 | if (in->cipher->flags & EVP_CIPH_CUSTOM_COPY)
|
---|
1407 | if (!in->cipher->ctrl((EVP_CIPHER_CTX *)in, EVP_CTRL_COPY, 0, out)) {
|
---|
1408 | out->cipher = NULL;
|
---|
1409 | ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
|
---|
1410 | return 0;
|
---|
1411 | }
|
---|
1412 | return 1;
|
---|
1413 | }
|
---|
1414 |
|
---|
1415 | EVP_CIPHER *evp_cipher_new(void)
|
---|
1416 | {
|
---|
1417 | EVP_CIPHER *cipher = OPENSSL_zalloc(sizeof(EVP_CIPHER));
|
---|
1418 |
|
---|
1419 | if (cipher != NULL) {
|
---|
1420 | cipher->lock = CRYPTO_THREAD_lock_new();
|
---|
1421 | if (cipher->lock == NULL) {
|
---|
1422 | OPENSSL_free(cipher);
|
---|
1423 | return NULL;
|
---|
1424 | }
|
---|
1425 | cipher->refcnt = 1;
|
---|
1426 | }
|
---|
1427 | return cipher;
|
---|
1428 | }
|
---|
1429 |
|
---|
1430 | /*
|
---|
1431 | * FIPS module note: since internal fetches will be entirely
|
---|
1432 | * provider based, we know that none of its code depends on legacy
|
---|
1433 | * NIDs or any functionality that use them.
|
---|
1434 | */
|
---|
1435 | #ifndef FIPS_MODULE
|
---|
1436 | /* After removal of legacy support get rid of the need for legacy NIDs */
|
---|
1437 | static void set_legacy_nid(const char *name, void *vlegacy_nid)
|
---|
1438 | {
|
---|
1439 | int nid;
|
---|
1440 | int *legacy_nid = vlegacy_nid;
|
---|
1441 | /*
|
---|
1442 | * We use lowest level function to get the associated method, because
|
---|
1443 | * higher level functions such as EVP_get_cipherbyname() have changed
|
---|
1444 | * to look at providers too.
|
---|
1445 | */
|
---|
1446 | const void *legacy_method = OBJ_NAME_get(name, OBJ_NAME_TYPE_CIPHER_METH);
|
---|
1447 |
|
---|
1448 | if (*legacy_nid == -1) /* We found a clash already */
|
---|
1449 | return;
|
---|
1450 | if (legacy_method == NULL)
|
---|
1451 | return;
|
---|
1452 | nid = EVP_CIPHER_get_nid(legacy_method);
|
---|
1453 | if (*legacy_nid != NID_undef && *legacy_nid != nid) {
|
---|
1454 | *legacy_nid = -1;
|
---|
1455 | return;
|
---|
1456 | }
|
---|
1457 | *legacy_nid = nid;
|
---|
1458 | }
|
---|
1459 | #endif
|
---|
1460 |
|
---|
1461 | static void *evp_cipher_from_algorithm(const int name_id,
|
---|
1462 | const OSSL_ALGORITHM *algodef,
|
---|
1463 | OSSL_PROVIDER *prov)
|
---|
1464 | {
|
---|
1465 | const OSSL_DISPATCH *fns = algodef->implementation;
|
---|
1466 | EVP_CIPHER *cipher = NULL;
|
---|
1467 | int fnciphcnt = 0, fnctxcnt = 0;
|
---|
1468 |
|
---|
1469 | if ((cipher = evp_cipher_new()) == NULL) {
|
---|
1470 | ERR_raise(ERR_LIB_EVP, ERR_R_MALLOC_FAILURE);
|
---|
1471 | return NULL;
|
---|
1472 | }
|
---|
1473 |
|
---|
1474 | #ifndef FIPS_MODULE
|
---|
1475 | cipher->nid = NID_undef;
|
---|
1476 | if (!evp_names_do_all(prov, name_id, set_legacy_nid, &cipher->nid)
|
---|
1477 | || cipher->nid == -1) {
|
---|
1478 | ERR_raise(ERR_LIB_EVP, ERR_R_INTERNAL_ERROR);
|
---|
1479 | EVP_CIPHER_free(cipher);
|
---|
1480 | return NULL;
|
---|
1481 | }
|
---|
1482 | #endif
|
---|
1483 |
|
---|
1484 | cipher->name_id = name_id;
|
---|
1485 | if ((cipher->type_name = ossl_algorithm_get1_first_name(algodef)) == NULL) {
|
---|
1486 | EVP_CIPHER_free(cipher);
|
---|
1487 | return NULL;
|
---|
1488 | }
|
---|
1489 | cipher->description = algodef->algorithm_description;
|
---|
1490 |
|
---|
1491 | for (; fns->function_id != 0; fns++) {
|
---|
1492 | switch (fns->function_id) {
|
---|
1493 | case OSSL_FUNC_CIPHER_NEWCTX:
|
---|
1494 | if (cipher->newctx != NULL)
|
---|
1495 | break;
|
---|
1496 | cipher->newctx = OSSL_FUNC_cipher_newctx(fns);
|
---|
1497 | fnctxcnt++;
|
---|
1498 | break;
|
---|
1499 | case OSSL_FUNC_CIPHER_ENCRYPT_INIT:
|
---|
1500 | if (cipher->einit != NULL)
|
---|
1501 | break;
|
---|
1502 | cipher->einit = OSSL_FUNC_cipher_encrypt_init(fns);
|
---|
1503 | fnciphcnt++;
|
---|
1504 | break;
|
---|
1505 | case OSSL_FUNC_CIPHER_DECRYPT_INIT:
|
---|
1506 | if (cipher->dinit != NULL)
|
---|
1507 | break;
|
---|
1508 | cipher->dinit = OSSL_FUNC_cipher_decrypt_init(fns);
|
---|
1509 | fnciphcnt++;
|
---|
1510 | break;
|
---|
1511 | case OSSL_FUNC_CIPHER_UPDATE:
|
---|
1512 | if (cipher->cupdate != NULL)
|
---|
1513 | break;
|
---|
1514 | cipher->cupdate = OSSL_FUNC_cipher_update(fns);
|
---|
1515 | fnciphcnt++;
|
---|
1516 | break;
|
---|
1517 | case OSSL_FUNC_CIPHER_FINAL:
|
---|
1518 | if (cipher->cfinal != NULL)
|
---|
1519 | break;
|
---|
1520 | cipher->cfinal = OSSL_FUNC_cipher_final(fns);
|
---|
1521 | fnciphcnt++;
|
---|
1522 | break;
|
---|
1523 | case OSSL_FUNC_CIPHER_CIPHER:
|
---|
1524 | if (cipher->ccipher != NULL)
|
---|
1525 | break;
|
---|
1526 | cipher->ccipher = OSSL_FUNC_cipher_cipher(fns);
|
---|
1527 | break;
|
---|
1528 | case OSSL_FUNC_CIPHER_FREECTX:
|
---|
1529 | if (cipher->freectx != NULL)
|
---|
1530 | break;
|
---|
1531 | cipher->freectx = OSSL_FUNC_cipher_freectx(fns);
|
---|
1532 | fnctxcnt++;
|
---|
1533 | break;
|
---|
1534 | case OSSL_FUNC_CIPHER_DUPCTX:
|
---|
1535 | if (cipher->dupctx != NULL)
|
---|
1536 | break;
|
---|
1537 | cipher->dupctx = OSSL_FUNC_cipher_dupctx(fns);
|
---|
1538 | break;
|
---|
1539 | case OSSL_FUNC_CIPHER_GET_PARAMS:
|
---|
1540 | if (cipher->get_params != NULL)
|
---|
1541 | break;
|
---|
1542 | cipher->get_params = OSSL_FUNC_cipher_get_params(fns);
|
---|
1543 | break;
|
---|
1544 | case OSSL_FUNC_CIPHER_GET_CTX_PARAMS:
|
---|
1545 | if (cipher->get_ctx_params != NULL)
|
---|
1546 | break;
|
---|
1547 | cipher->get_ctx_params = OSSL_FUNC_cipher_get_ctx_params(fns);
|
---|
1548 | break;
|
---|
1549 | case OSSL_FUNC_CIPHER_SET_CTX_PARAMS:
|
---|
1550 | if (cipher->set_ctx_params != NULL)
|
---|
1551 | break;
|
---|
1552 | cipher->set_ctx_params = OSSL_FUNC_cipher_set_ctx_params(fns);
|
---|
1553 | break;
|
---|
1554 | case OSSL_FUNC_CIPHER_GETTABLE_PARAMS:
|
---|
1555 | if (cipher->gettable_params != NULL)
|
---|
1556 | break;
|
---|
1557 | cipher->gettable_params = OSSL_FUNC_cipher_gettable_params(fns);
|
---|
1558 | break;
|
---|
1559 | case OSSL_FUNC_CIPHER_GETTABLE_CTX_PARAMS:
|
---|
1560 | if (cipher->gettable_ctx_params != NULL)
|
---|
1561 | break;
|
---|
1562 | cipher->gettable_ctx_params =
|
---|
1563 | OSSL_FUNC_cipher_gettable_ctx_params(fns);
|
---|
1564 | break;
|
---|
1565 | case OSSL_FUNC_CIPHER_SETTABLE_CTX_PARAMS:
|
---|
1566 | if (cipher->settable_ctx_params != NULL)
|
---|
1567 | break;
|
---|
1568 | cipher->settable_ctx_params =
|
---|
1569 | OSSL_FUNC_cipher_settable_ctx_params(fns);
|
---|
1570 | break;
|
---|
1571 | }
|
---|
1572 | }
|
---|
1573 | if ((fnciphcnt != 0 && fnciphcnt != 3 && fnciphcnt != 4)
|
---|
1574 | || (fnciphcnt == 0 && cipher->ccipher == NULL)
|
---|
1575 | || fnctxcnt != 2) {
|
---|
1576 | /*
|
---|
1577 | * In order to be a consistent set of functions we must have at least
|
---|
1578 | * a complete set of "encrypt" functions, or a complete set of "decrypt"
|
---|
1579 | * functions, or a single "cipher" function. In all cases we need both
|
---|
1580 | * the "newctx" and "freectx" functions.
|
---|
1581 | */
|
---|
1582 | EVP_CIPHER_free(cipher);
|
---|
1583 | ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_PROVIDER_FUNCTIONS);
|
---|
1584 | return NULL;
|
---|
1585 | }
|
---|
1586 | cipher->prov = prov;
|
---|
1587 | if (prov != NULL)
|
---|
1588 | ossl_provider_up_ref(prov);
|
---|
1589 |
|
---|
1590 | if (!evp_cipher_cache_constants(cipher)) {
|
---|
1591 | EVP_CIPHER_free(cipher);
|
---|
1592 | ERR_raise(ERR_LIB_EVP, EVP_R_CACHE_CONSTANTS_FAILED);
|
---|
1593 | cipher = NULL;
|
---|
1594 | }
|
---|
1595 |
|
---|
1596 | return cipher;
|
---|
1597 | }
|
---|
1598 |
|
---|
1599 | static int evp_cipher_up_ref(void *cipher)
|
---|
1600 | {
|
---|
1601 | return EVP_CIPHER_up_ref(cipher);
|
---|
1602 | }
|
---|
1603 |
|
---|
1604 | static void evp_cipher_free(void *cipher)
|
---|
1605 | {
|
---|
1606 | EVP_CIPHER_free(cipher);
|
---|
1607 | }
|
---|
1608 |
|
---|
1609 | EVP_CIPHER *EVP_CIPHER_fetch(OSSL_LIB_CTX *ctx, const char *algorithm,
|
---|
1610 | const char *properties)
|
---|
1611 | {
|
---|
1612 | EVP_CIPHER *cipher =
|
---|
1613 | evp_generic_fetch(ctx, OSSL_OP_CIPHER, algorithm, properties,
|
---|
1614 | evp_cipher_from_algorithm, evp_cipher_up_ref,
|
---|
1615 | evp_cipher_free);
|
---|
1616 |
|
---|
1617 | return cipher;
|
---|
1618 | }
|
---|
1619 |
|
---|
1620 | int EVP_CIPHER_up_ref(EVP_CIPHER *cipher)
|
---|
1621 | {
|
---|
1622 | int ref = 0;
|
---|
1623 |
|
---|
1624 | if (cipher->origin == EVP_ORIG_DYNAMIC)
|
---|
1625 | CRYPTO_UP_REF(&cipher->refcnt, &ref, cipher->lock);
|
---|
1626 | return 1;
|
---|
1627 | }
|
---|
1628 |
|
---|
1629 | void evp_cipher_free_int(EVP_CIPHER *cipher)
|
---|
1630 | {
|
---|
1631 | OPENSSL_free(cipher->type_name);
|
---|
1632 | ossl_provider_free(cipher->prov);
|
---|
1633 | CRYPTO_THREAD_lock_free(cipher->lock);
|
---|
1634 | OPENSSL_free(cipher);
|
---|
1635 | }
|
---|
1636 |
|
---|
1637 | void EVP_CIPHER_free(EVP_CIPHER *cipher)
|
---|
1638 | {
|
---|
1639 | int i;
|
---|
1640 |
|
---|
1641 | if (cipher == NULL || cipher->origin != EVP_ORIG_DYNAMIC)
|
---|
1642 | return;
|
---|
1643 |
|
---|
1644 | CRYPTO_DOWN_REF(&cipher->refcnt, &i, cipher->lock);
|
---|
1645 | if (i > 0)
|
---|
1646 | return;
|
---|
1647 | evp_cipher_free_int(cipher);
|
---|
1648 | }
|
---|
1649 |
|
---|
1650 | void EVP_CIPHER_do_all_provided(OSSL_LIB_CTX *libctx,
|
---|
1651 | void (*fn)(EVP_CIPHER *mac, void *arg),
|
---|
1652 | void *arg)
|
---|
1653 | {
|
---|
1654 | evp_generic_do_all(libctx, OSSL_OP_CIPHER,
|
---|
1655 | (void (*)(void *, void *))fn, arg,
|
---|
1656 | evp_cipher_from_algorithm, evp_cipher_up_ref,
|
---|
1657 | evp_cipher_free);
|
---|
1658 | }
|
---|