Coverage Report

Created: 2026-04-01 06:39

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl36/crypto/evp/evp_enc.c
Line
Count
Source
1
/*
2
 * Copyright 1995-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
/* 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 "internal/safe_math.h"
28
#include "crypto/evp.h"
29
#include "evp_local.h"
30
31
0
OSSL_SAFE_MATH_SIGNED(int, int)
32
0
33
0
int EVP_CIPHER_CTX_reset(EVP_CIPHER_CTX *ctx)
34
816k
{
35
816k
    if (ctx == NULL)
36
0
        return 1;
37
38
816k
    if (ctx->cipher == NULL || ctx->cipher->prov == NULL)
39
18.3k
        goto legacy;
40
41
797k
    if (ctx->algctx != NULL) {
42
797k
        if (ctx->cipher->freectx != NULL)
43
797k
            ctx->cipher->freectx(ctx->algctx);
44
797k
        ctx->algctx = NULL;
45
797k
    }
46
797k
    if (ctx->fetched_cipher != NULL)
47
797k
        EVP_CIPHER_free(ctx->fetched_cipher);
48
797k
    memset(ctx, 0, sizeof(*ctx));
49
797k
    ctx->iv_len = -1;
50
51
797k
    return 1;
52
53
    /* Remove legacy code below when legacy support is removed. */
54
18.3k
legacy:
55
56
18.3k
    if (ctx->cipher != NULL) {
57
0
        if (ctx->cipher->cleanup && !ctx->cipher->cleanup(ctx))
58
0
            return 0;
59
        /* Cleanse cipher context data */
60
0
        if (ctx->cipher_data && ctx->cipher->ctx_size)
61
0
            OPENSSL_cleanse(ctx->cipher_data, ctx->cipher->ctx_size);
62
0
    }
63
18.3k
    OPENSSL_free(ctx->cipher_data);
64
18.3k
#if !defined(OPENSSL_NO_ENGINE) && !defined(FIPS_MODULE)
65
18.3k
    ENGINE_finish(ctx->engine);
66
18.3k
#endif
67
18.3k
    memset(ctx, 0, sizeof(*ctx));
68
18.3k
    ctx->iv_len = -1;
69
18.3k
    return 1;
70
18.3k
}
71
72
EVP_CIPHER_CTX *EVP_CIPHER_CTX_new(void)
73
1.09M
{
74
1.09M
    EVP_CIPHER_CTX *ctx;
75
76
1.09M
    ctx = OPENSSL_zalloc(sizeof(EVP_CIPHER_CTX));
77
1.09M
    if (ctx == NULL)
78
0
        return NULL;
79
80
1.09M
    ctx->iv_len = -1;
81
1.09M
    return ctx;
82
1.09M
}
83
84
void EVP_CIPHER_CTX_free(EVP_CIPHER_CTX *ctx)
85
1.83M
{
86
1.83M
    if (ctx == NULL)
87
733k
        return;
88
1.10M
    EVP_CIPHER_CTX_reset(ctx);
89
1.10M
    OPENSSL_free(ctx);
90
1.10M
}
91
92
static int evp_cipher_init_internal(EVP_CIPHER_CTX *ctx,
93
    const EVP_CIPHER *cipher,
94
    ENGINE *impl, const unsigned char *key,
95
    const unsigned char *iv, int enc,
96
    uint8_t is_pipeline,
97
    const OSSL_PARAM params[])
98
2.93M
{
99
2.93M
    int n;
100
2.93M
#if !defined(OPENSSL_NO_ENGINE) && !defined(FIPS_MODULE)
101
2.93M
    ENGINE *tmpimpl = NULL;
102
2.93M
#endif
103
104
    /*
105
     * enc == 1 means we are encrypting.
106
     * enc == 0 means we are decrypting.
107
     * enc == -1 means, use the previously initialised value for encrypt/decrypt
108
     */
109
2.93M
    if (enc == -1) {
110
131k
        enc = ctx->encrypt;
111
2.80M
    } else {
112
2.80M
        if (enc)
113
2.23M
            enc = 1;
114
2.80M
        ctx->encrypt = enc;
115
2.80M
    }
116
117
2.93M
    if (cipher == NULL && ctx->cipher == NULL) {
118
0
        ERR_raise(ERR_LIB_EVP, EVP_R_NO_CIPHER_SET);
119
0
        return 0;
120
0
    }
121
122
    /* Code below to be removed when legacy support is dropped. */
123
2.93M
    if (is_pipeline)
124
0
        goto nonlegacy;
125
126
2.93M
#if !defined(OPENSSL_NO_ENGINE) && !defined(FIPS_MODULE)
127
    /*
128
     * Whether it's nice or not, "Inits" can be used on "Final"'d contexts so
129
     * this context may already have an ENGINE! Try to avoid releasing the
130
     * previous handle, re-querying for an ENGINE, and having a
131
     * reinitialisation, when it may all be unnecessary.
132
     */
133
2.93M
    if (ctx->engine && ctx->cipher
134
0
        && (cipher == NULL || cipher->nid == ctx->cipher->nid))
135
0
        goto skip_to_init;
136
137
2.93M
    if (cipher != NULL && impl == NULL) {
138
        /* Ask if an ENGINE is reserved for this job */
139
408k
        tmpimpl = ENGINE_get_cipher_engine(cipher->nid);
140
408k
    }
141
2.93M
#endif
142
143
    /*
144
     * If there are engines involved then we should use legacy handling for now.
145
     */
146
2.93M
    if (ctx->engine != NULL
147
2.93M
#if !defined(OPENSSL_NO_ENGINE) && !defined(FIPS_MODULE)
148
2.93M
        || tmpimpl != NULL
149
2.93M
#endif
150
2.93M
        || impl != NULL
151
2.93M
        || (cipher != NULL && cipher->origin == EVP_ORIG_METH)
152
2.93M
        || (cipher == NULL && ctx->cipher != NULL
153
2.52M
            && ctx->cipher->origin == EVP_ORIG_METH)) {
154
0
        if (ctx->cipher == ctx->fetched_cipher)
155
0
            ctx->cipher = NULL;
156
0
        EVP_CIPHER_free(ctx->fetched_cipher);
157
0
        ctx->fetched_cipher = NULL;
158
0
        goto legacy;
159
0
    }
160
    /*
161
     * Ensure a context left lying around from last time is cleared
162
     * (legacy code)
163
     */
164
2.93M
    if (cipher != NULL && ctx->cipher != NULL) {
165
0
        if (ctx->cipher->cleanup != NULL && !ctx->cipher->cleanup(ctx))
166
0
            return 0;
167
0
        OPENSSL_clear_free(ctx->cipher_data, ctx->cipher->ctx_size);
168
0
        ctx->cipher_data = NULL;
169
0
    }
170
171
    /* Start of non-legacy code below */
172
2.93M
nonlegacy:
173
    /* Ensure a context left lying around from last time is cleared */
174
2.93M
    if (cipher != NULL && ctx->cipher != NULL) {
175
0
        unsigned long flags = ctx->flags;
176
177
0
        EVP_CIPHER_CTX_reset(ctx);
178
        /* Restore encrypt and flags */
179
0
        ctx->encrypt = enc;
180
0
        ctx->flags = flags;
181
0
    }
182
183
2.93M
    if (cipher == NULL)
184
2.52M
        cipher = ctx->cipher;
185
186
2.93M
    if (cipher->prov == NULL) {
187
#ifdef FIPS_MODULE
188
        /* We only do explicit fetches inside the FIPS module */
189
        ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
190
        return 0;
191
#else
192
0
        EVP_CIPHER *provciph = EVP_CIPHER_fetch(NULL,
193
0
            cipher->nid == NID_undef ? "NULL"
194
0
                                     : OBJ_nid2sn(cipher->nid),
195
0
            "");
196
197
0
        if (provciph == NULL)
198
0
            return 0;
199
0
        cipher = provciph;
200
0
        EVP_CIPHER_free(ctx->fetched_cipher);
201
0
        ctx->fetched_cipher = provciph;
202
0
#endif
203
0
    }
204
205
2.93M
    if (!ossl_assert(cipher->prov != NULL)) {
206
0
        ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
207
0
        return 0;
208
0
    }
209
210
2.93M
    if (cipher != ctx->fetched_cipher) {
211
408k
        if (!EVP_CIPHER_up_ref((EVP_CIPHER *)cipher)) {
212
0
            ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
213
0
            return 0;
214
0
        }
215
408k
        EVP_CIPHER_free(ctx->fetched_cipher);
216
        /* Coverity false positive, the reference counting is confusing it */
217
        /* coverity[use_after_free] */
218
408k
        ctx->fetched_cipher = (EVP_CIPHER *)cipher;
219
408k
    }
220
2.93M
    ctx->cipher = cipher;
221
222
2.93M
    if (is_pipeline && !EVP_CIPHER_can_pipeline(cipher, enc)) {
223
0
        ERR_raise(ERR_LIB_EVP, EVP_R_PIPELINE_NOT_SUPPORTED);
224
0
        return 0;
225
0
    }
226
227
2.93M
    if (ctx->algctx == NULL) {
228
408k
        ctx->algctx = ctx->cipher->newctx(ossl_provider_ctx(cipher->prov));
229
408k
        if (ctx->algctx == NULL) {
230
0
            ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
231
0
            return 0;
232
0
        }
233
408k
    }
234
235
2.93M
    if ((ctx->flags & EVP_CIPH_NO_PADDING) != 0) {
236
        /*
237
         * If this ctx was already set up for no padding then we need to tell
238
         * the new cipher about it.
239
         */
240
0
        if (!EVP_CIPHER_CTX_set_padding(ctx, 0))
241
0
            return 0;
242
0
    }
243
244
2.93M
#ifndef FIPS_MODULE
245
    /*
246
     * Fix for CVE-2023-5363
247
     * Passing in a size as part of the init call takes effect late
248
     * so, force such to occur before the initialisation.
249
     *
250
     * The FIPS provider's internal library context is used in a manner
251
     * such that this is not an issue.
252
     */
253
2.93M
    if (params != NULL) {
254
0
        OSSL_PARAM param_lens[3] = { OSSL_PARAM_END, OSSL_PARAM_END,
255
0
            OSSL_PARAM_END };
256
0
        OSSL_PARAM *q = param_lens;
257
0
        const OSSL_PARAM *p;
258
259
0
        p = OSSL_PARAM_locate_const(params, OSSL_CIPHER_PARAM_KEYLEN);
260
0
        if (p != NULL)
261
0
            memcpy(q++, p, sizeof(*q));
262
263
        /*
264
         * Note that OSSL_CIPHER_PARAM_AEAD_IVLEN is a synonym for
265
         * OSSL_CIPHER_PARAM_IVLEN so both are covered here.
266
         */
267
0
        p = OSSL_PARAM_locate_const(params, OSSL_CIPHER_PARAM_IVLEN);
268
0
        if (p != NULL)
269
0
            memcpy(q++, p, sizeof(*q));
270
271
0
        if (q != param_lens) {
272
0
            if (!EVP_CIPHER_CTX_set_params(ctx, param_lens)) {
273
0
                ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_LENGTH);
274
0
                return 0;
275
0
            }
276
0
        }
277
0
    }
278
2.93M
#endif
279
280
2.93M
    if (is_pipeline)
281
0
        return 1;
282
283
2.93M
    if (enc) {
284
2.36M
        if (ctx->cipher->einit == NULL) {
285
            /*
286
             * We still should be able to set the IV using the new API
287
             * if the key is not specified and old API is not available
288
             */
289
0
            if (key == NULL && ctx->cipher->einit_skey != NULL) {
290
0
                return ctx->cipher->einit_skey(ctx->algctx, NULL,
291
0
                    iv,
292
0
                    iv == NULL ? 0
293
0
                               : EVP_CIPHER_CTX_get_iv_length(ctx),
294
0
                    params);
295
0
            }
296
0
            ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
297
0
            return 0;
298
0
        }
299
300
2.36M
        return ctx->cipher->einit(ctx->algctx,
301
2.36M
            key,
302
2.36M
            key == NULL ? 0
303
2.36M
                        : EVP_CIPHER_CTX_get_key_length(ctx),
304
2.36M
            iv,
305
2.36M
            iv == NULL ? 0
306
2.36M
                       : EVP_CIPHER_CTX_get_iv_length(ctx),
307
2.36M
            params);
308
2.36M
    }
309
310
572k
    if (ctx->cipher->dinit == NULL) {
311
        /*
312
         * We still should be able to set the IV using the new API
313
         * if the key is not specified and old API is not available
314
         */
315
0
        if (key == NULL && ctx->cipher->dinit_skey != NULL) {
316
0
            return ctx->cipher->dinit_skey(ctx->algctx, NULL,
317
0
                iv,
318
0
                iv == NULL ? 0
319
0
                           : EVP_CIPHER_CTX_get_iv_length(ctx),
320
0
                params);
321
0
        }
322
0
        ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
323
0
        return 0;
324
0
    }
325
326
572k
    return ctx->cipher->dinit(ctx->algctx,
327
572k
        key,
328
572k
        key == NULL ? 0
329
572k
                    : EVP_CIPHER_CTX_get_key_length(ctx),
330
572k
        iv,
331
572k
        iv == NULL ? 0
332
572k
                   : EVP_CIPHER_CTX_get_iv_length(ctx),
333
572k
        params);
334
335
    /* Code below to be removed when legacy support is dropped. */
336
0
legacy:
337
338
0
    if (cipher != NULL) {
339
        /*
340
         * Ensure a context left lying around from last time is cleared (we
341
         * previously attempted to avoid this if the same ENGINE and
342
         * EVP_CIPHER could be used).
343
         */
344
0
        if (ctx->cipher) {
345
0
            unsigned long flags = ctx->flags;
346
0
            EVP_CIPHER_CTX_reset(ctx);
347
            /* Restore encrypt and flags */
348
0
            ctx->encrypt = enc;
349
0
            ctx->flags = flags;
350
0
        }
351
0
#if !defined(OPENSSL_NO_ENGINE) && !defined(FIPS_MODULE)
352
0
        if (impl != NULL) {
353
0
            if (!ENGINE_init(impl)) {
354
0
                ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
355
0
                return 0;
356
0
            }
357
0
        } else {
358
0
            impl = tmpimpl;
359
0
        }
360
0
        if (impl != NULL) {
361
            /* There's an ENGINE for this job ... (apparently) */
362
0
            const EVP_CIPHER *c = ENGINE_get_cipher(impl, cipher->nid);
363
364
0
            if (c == NULL) {
365
                /*
366
                 * One positive side-effect of US's export control history,
367
                 * is that we should at least be able to avoid using US
368
                 * misspellings of "initialisation"?
369
                 */
370
0
                ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
371
0
                return 0;
372
0
            }
373
            /* We'll use the ENGINE's private cipher definition */
374
0
            cipher = c;
375
            /*
376
             * Store the ENGINE functional reference so we know 'cipher' came
377
             * from an ENGINE and we need to release it when done.
378
             */
379
0
            ctx->engine = impl;
380
0
        } else {
381
0
            ctx->engine = NULL;
382
0
        }
383
0
#endif
384
385
0
        ctx->cipher = cipher;
386
0
        if (ctx->cipher->ctx_size) {
387
0
            ctx->cipher_data = OPENSSL_zalloc(ctx->cipher->ctx_size);
388
0
            if (ctx->cipher_data == NULL) {
389
0
                ctx->cipher = NULL;
390
0
                return 0;
391
0
            }
392
0
        } else {
393
0
            ctx->cipher_data = NULL;
394
0
        }
395
0
        ctx->key_len = cipher->key_len;
396
        /* Preserve wrap enable flag, zero everything else */
397
0
        ctx->flags &= EVP_CIPHER_CTX_FLAG_WRAP_ALLOW;
398
0
        if (ctx->cipher->flags & EVP_CIPH_CTRL_INIT) {
399
0
            if (EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_INIT, 0, NULL) <= 0) {
400
0
                ctx->cipher = NULL;
401
0
                ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
402
0
                return 0;
403
0
            }
404
0
        }
405
0
    }
406
0
#if !defined(OPENSSL_NO_ENGINE) && !defined(FIPS_MODULE)
407
0
skip_to_init:
408
0
#endif
409
0
    if (ctx->cipher == NULL)
410
0
        return 0;
411
412
    /* we assume block size is a power of 2 in *cryptUpdate */
413
0
    OPENSSL_assert(ctx->cipher->block_size == 1
414
0
        || ctx->cipher->block_size == 8
415
0
        || ctx->cipher->block_size == 16);
416
417
0
    if (!(ctx->flags & EVP_CIPHER_CTX_FLAG_WRAP_ALLOW)
418
0
        && EVP_CIPHER_CTX_get_mode(ctx) == EVP_CIPH_WRAP_MODE) {
419
0
        ERR_raise(ERR_LIB_EVP, EVP_R_WRAP_MODE_NOT_ALLOWED);
420
0
        return 0;
421
0
    }
422
423
0
    if ((EVP_CIPHER_get_flags(EVP_CIPHER_CTX_get0_cipher(ctx))
424
0
            & EVP_CIPH_CUSTOM_IV)
425
0
        == 0) {
426
0
        switch (EVP_CIPHER_CTX_get_mode(ctx)) {
427
428
0
        case EVP_CIPH_STREAM_CIPHER:
429
0
        case EVP_CIPH_ECB_MODE:
430
0
            break;
431
432
0
        case EVP_CIPH_CFB_MODE:
433
0
        case EVP_CIPH_OFB_MODE:
434
435
0
            ctx->num = 0;
436
            /* fall-through */
437
438
0
        case EVP_CIPH_CBC_MODE:
439
0
            n = EVP_CIPHER_CTX_get_iv_length(ctx);
440
0
            if (n < 0 || n > (int)sizeof(ctx->iv)) {
441
0
                ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_IV_LENGTH);
442
0
                return 0;
443
0
            }
444
0
            if (iv != NULL)
445
0
                memcpy(ctx->oiv, iv, n);
446
0
            memcpy(ctx->iv, ctx->oiv, n);
447
0
            break;
448
449
0
        case EVP_CIPH_CTR_MODE:
450
0
            ctx->num = 0;
451
            /* Don't reuse IV for CTR mode */
452
0
            if (iv != NULL) {
453
0
                n = EVP_CIPHER_CTX_get_iv_length(ctx);
454
0
                if (n <= 0 || n > (int)sizeof(ctx->iv)) {
455
0
                    ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_IV_LENGTH);
456
0
                    return 0;
457
0
                }
458
0
                memcpy(ctx->iv, iv, n);
459
0
            }
460
0
            break;
461
462
0
        default:
463
0
            return 0;
464
0
        }
465
0
    }
466
467
0
    if (key != NULL || (ctx->cipher->flags & EVP_CIPH_ALWAYS_CALL_INIT)) {
468
0
        if (!ctx->cipher->init(ctx, key, iv, enc))
469
0
            return 0;
470
0
    }
471
0
    ctx->buf_len = 0;
472
0
    ctx->final_used = 0;
473
0
    ctx->block_mask = ctx->cipher->block_size - 1;
474
0
    return 1;
475
0
}
476
477
/*
478
 * This function is basically evp_cipher_init_internal without ENGINE support.
479
 * They should be combined when engines are not supported any longer.
480
 */
481
static int evp_cipher_init_skey_internal(EVP_CIPHER_CTX *ctx,
482
    const EVP_CIPHER *cipher,
483
    const EVP_SKEY *skey,
484
    const unsigned char *iv, size_t iv_len,
485
    int enc, const OSSL_PARAM params[])
486
0
{
487
0
    int ret;
488
489
    /*
490
     * enc == 1 means we are encrypting.
491
     * enc == 0 means we are decrypting.
492
     * enc == -1 means, use the previously initialised value for encrypt/decrypt
493
     */
494
0
    if (enc == -1)
495
0
        enc = ctx->encrypt;
496
0
    else
497
0
        ctx->encrypt = enc != 0;
498
499
0
    if (cipher == NULL && ctx->cipher == NULL) {
500
0
        ERR_raise(ERR_LIB_EVP, EVP_R_NO_CIPHER_SET);
501
0
        return 0;
502
0
    }
503
504
    /*
505
     * If there are engines involved then we throw an error
506
     */
507
0
    if (ctx->engine != NULL
508
0
        || (cipher != NULL && cipher->origin == EVP_ORIG_METH)
509
0
        || (cipher == NULL && ctx->cipher != NULL
510
0
            && ctx->cipher->origin == EVP_ORIG_METH)) {
511
0
        ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
512
0
        return 0;
513
0
    }
514
    /*
515
     * Ensure a context left lying around from last time is cleared
516
     * (legacy code)
517
     */
518
0
    if (cipher != NULL && ctx->cipher != NULL) {
519
0
        if (ctx->cipher->cleanup != NULL && !ctx->cipher->cleanup(ctx))
520
0
            return 0;
521
0
        OPENSSL_clear_free(ctx->cipher_data, ctx->cipher->ctx_size);
522
0
        ctx->cipher_data = NULL;
523
0
    }
524
525
    /* Ensure a context left lying around from last time is cleared */
526
0
    if (cipher != NULL && ctx->cipher != NULL) {
527
0
        unsigned long flags = ctx->flags;
528
529
0
        EVP_CIPHER_CTX_reset(ctx);
530
        /* Restore encrypt and flags */
531
0
        ctx->encrypt = enc;
532
0
        ctx->flags = flags;
533
0
    }
534
535
0
    if (cipher == NULL)
536
0
        cipher = ctx->cipher;
537
538
0
    if (cipher->prov == NULL) {
539
0
        ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
540
0
        return 0;
541
0
    }
542
543
0
    if (cipher != ctx->fetched_cipher) {
544
0
        if (!EVP_CIPHER_up_ref((EVP_CIPHER *)cipher)) {
545
0
            ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
546
0
            return 0;
547
0
        }
548
0
        EVP_CIPHER_free(ctx->fetched_cipher);
549
        /* Coverity false positive, the reference counting is confusing it */
550
        /* coverity[use_after_free] */
551
0
        ctx->fetched_cipher = (EVP_CIPHER *)cipher;
552
0
    }
553
0
    ctx->cipher = cipher;
554
0
    if (ctx->algctx == NULL) {
555
0
        ctx->algctx = ctx->cipher->newctx(ossl_provider_ctx(cipher->prov));
556
0
        if (ctx->algctx == NULL) {
557
0
            ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
558
0
            return 0;
559
0
        }
560
0
    }
561
562
0
    if (skey != NULL && ctx->cipher->prov != skey->skeymgmt->prov) {
563
0
        ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
564
0
        return 0;
565
0
    }
566
567
0
    if ((ctx->flags & EVP_CIPH_NO_PADDING) != 0) {
568
        /*
569
         * If this ctx was already set up for no padding then we need to tell
570
         * the new cipher about it.
571
         */
572
0
        if (!EVP_CIPHER_CTX_set_padding(ctx, 0))
573
0
            return 0;
574
0
    }
575
576
0
    if (iv == NULL)
577
0
        iv_len = 0;
578
579
    /* We have a data managed via key management, using the new callbacks */
580
0
    if (enc) {
581
0
        if (ctx->cipher->einit_skey == NULL) {
582
            /*
583
             *  When skey is NULL, it's a multiple-step init as the current API does.
584
             *  Otherwise we try to fallback for providers that do not support SKEYs.
585
             */
586
0
            const unsigned char *keydata = NULL;
587
0
            size_t keylen = 0;
588
589
0
            if (skey != NULL && !EVP_SKEY_get0_raw_key(skey, &keydata, &keylen)) {
590
0
                ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
591
0
                return 0;
592
0
            }
593
594
0
            ret = ctx->cipher->einit(ctx->algctx, keydata, keylen,
595
0
                iv, iv_len, params);
596
0
        } else {
597
0
            ret = ctx->cipher->einit_skey(ctx->algctx,
598
0
                skey == NULL ? NULL : skey->keydata,
599
0
                iv, iv_len, params);
600
0
        }
601
0
    } else {
602
0
        if (ctx->cipher->dinit_skey == NULL) {
603
            /*
604
             *  When skey is NULL, it's a multiple-step init as the current API does.
605
             *  Otherwise we try to fallback for providers that do not support SKEYs.
606
             */
607
0
            const unsigned char *keydata = NULL;
608
0
            size_t keylen = 0;
609
610
0
            if (skey != NULL && !EVP_SKEY_get0_raw_key(skey, &keydata, &keylen)) {
611
0
                ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
612
0
                return 0;
613
0
            }
614
615
0
            ret = ctx->cipher->dinit(ctx->algctx, keydata, keylen,
616
0
                iv, iv_len, params);
617
0
        } else {
618
0
            ret = ctx->cipher->dinit_skey(ctx->algctx,
619
0
                skey == NULL ? NULL : skey->keydata,
620
0
                iv, iv_len, params);
621
0
        }
622
0
    }
623
624
0
    return ret;
625
0
}
626
627
int EVP_CipherInit_SKEY(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
628
    EVP_SKEY *skey, const unsigned char *iv, size_t iv_len,
629
    int enc, const OSSL_PARAM params[])
630
0
{
631
0
    return evp_cipher_init_skey_internal(ctx, cipher, skey, iv, iv_len, enc, params);
632
0
}
633
634
int EVP_CipherInit_ex2(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
635
    const unsigned char *key, const unsigned char *iv,
636
    int enc, const OSSL_PARAM params[])
637
59.1k
{
638
59.1k
    return evp_cipher_init_internal(ctx, cipher, NULL, key, iv, enc, 0, params);
639
59.1k
}
640
641
int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
642
    const unsigned char *key, const unsigned char *iv, int enc)
643
0
{
644
0
    if (cipher != NULL)
645
0
        EVP_CIPHER_CTX_reset(ctx);
646
0
    return evp_cipher_init_internal(ctx, cipher, NULL, key, iv, enc, 0, NULL);
647
0
}
648
649
int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
650
    ENGINE *impl, const unsigned char *key,
651
    const unsigned char *iv, int enc)
652
6.71M
{
653
6.71M
    return evp_cipher_init_internal(ctx, cipher, impl, key, iv, enc, 0, NULL);
654
6.71M
}
655
656
int EVP_CipherPipelineEncryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
657
    const unsigned char *key, size_t keylen,
658
    size_t numpipes,
659
    const unsigned char **iv, size_t ivlen)
660
0
{
661
0
    if (numpipes > EVP_MAX_PIPES) {
662
0
        ERR_raise(ERR_LIB_EVP, EVP_R_TOO_MANY_PIPES);
663
0
        return 0;
664
0
    }
665
666
0
    ctx->numpipes = numpipes;
667
668
0
    if (!evp_cipher_init_internal(ctx, cipher, NULL, NULL, NULL, 1, 1,
669
0
            NULL))
670
0
        return 0;
671
672
0
    if (ctx->cipher->p_einit == NULL) {
673
0
        ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
674
0
        return 0;
675
0
    }
676
677
0
    return ctx->cipher->p_einit(ctx->algctx,
678
0
        key,
679
0
        keylen,
680
0
        numpipes,
681
0
        iv,
682
0
        ivlen,
683
0
        NULL);
684
0
}
685
686
int EVP_CipherPipelineDecryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
687
    const unsigned char *key, size_t keylen,
688
    size_t numpipes,
689
    const unsigned char **iv, size_t ivlen)
690
0
{
691
0
    if (numpipes > EVP_MAX_PIPES) {
692
0
        ERR_raise(ERR_LIB_EVP, EVP_R_TOO_MANY_PIPES);
693
0
        return 0;
694
0
    }
695
696
0
    ctx->numpipes = numpipes;
697
698
0
    if (!evp_cipher_init_internal(ctx, cipher, NULL, NULL, NULL, 0, 1,
699
0
            NULL))
700
0
        return 0;
701
702
0
    if (ctx->cipher->p_dinit == NULL) {
703
0
        ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
704
0
        return 0;
705
0
    }
706
707
0
    return ctx->cipher->p_dinit(ctx->algctx,
708
0
        key,
709
0
        keylen,
710
0
        numpipes,
711
0
        iv,
712
0
        ivlen,
713
0
        NULL);
714
0
}
715
716
int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
717
    const unsigned char *in, int inl)
718
14.6M
{
719
14.6M
    if (ctx->encrypt)
720
11.2M
        return EVP_EncryptUpdate(ctx, out, outl, in, inl);
721
3.35M
    else
722
3.35M
        return EVP_DecryptUpdate(ctx, out, outl, in, inl);
723
14.6M
}
724
725
int EVP_CipherPipelineUpdate(EVP_CIPHER_CTX *ctx,
726
    unsigned char **out, size_t *outl,
727
    const size_t *outsize,
728
    const unsigned char **in, const size_t *inl)
729
0
{
730
0
    size_t i;
731
732
0
    if (ossl_unlikely(outl == NULL || inl == NULL)) {
733
0
        ERR_raise(ERR_LIB_EVP, ERR_R_PASSED_NULL_PARAMETER);
734
0
        return 0;
735
0
    }
736
737
0
    if (ossl_unlikely(ctx->cipher == NULL)) {
738
0
        ERR_raise(ERR_LIB_EVP, EVP_R_NO_CIPHER_SET);
739
0
        return 0;
740
0
    }
741
742
0
    if (ossl_unlikely(ctx->cipher->prov == NULL)) {
743
0
        ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_OPERATION);
744
0
        return 0;
745
0
    }
746
747
0
    if (ossl_unlikely(ctx->cipher->p_cupdate == NULL)) {
748
0
        ERR_raise(ERR_LIB_EVP, EVP_R_UPDATE_ERROR);
749
0
        return 0;
750
0
    }
751
752
0
    for (i = 0; i < ctx->numpipes; i++)
753
0
        outl[i] = 0;
754
755
0
    return ctx->cipher->p_cupdate(ctx->algctx, ctx->numpipes,
756
0
        out, outl, outsize,
757
0
        in, inl);
758
0
}
759
760
int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
761
4.05M
{
762
4.05M
    if (ctx->encrypt)
763
2.73M
        return EVP_EncryptFinal_ex(ctx, out, outl);
764
1.32M
    else
765
1.32M
        return EVP_DecryptFinal_ex(ctx, out, outl);
766
4.05M
}
767
768
int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
769
0
{
770
0
    if (ctx->encrypt)
771
0
        return EVP_EncryptFinal(ctx, out, outl);
772
0
    else
773
0
        return EVP_DecryptFinal(ctx, out, outl);
774
0
}
775
776
int EVP_CipherPipelineFinal(EVP_CIPHER_CTX *ctx,
777
    unsigned char **out, size_t *outl,
778
    const size_t *outsize)
779
0
{
780
0
    size_t i;
781
782
0
    if (ossl_unlikely(outl == NULL)) {
783
0
        ERR_raise(ERR_LIB_EVP, ERR_R_PASSED_NULL_PARAMETER);
784
0
        return 0;
785
0
    }
786
787
0
    if (ossl_unlikely(ctx->cipher == NULL)) {
788
0
        ERR_raise(ERR_LIB_EVP, EVP_R_NO_CIPHER_SET);
789
0
        return 0;
790
0
    }
791
792
0
    if (ossl_unlikely(ctx->cipher->prov == NULL)) {
793
0
        ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_OPERATION);
794
0
        return 0;
795
0
    }
796
797
0
    if (ossl_unlikely(ctx->cipher->p_cfinal == NULL)) {
798
0
        ERR_raise(ERR_LIB_EVP, EVP_R_FINAL_ERROR);
799
0
        return 0;
800
0
    }
801
802
0
    for (i = 0; i < ctx->numpipes; i++)
803
0
        outl[i] = 0;
804
805
0
    return ctx->cipher->p_cfinal(ctx->algctx, ctx->numpipes,
806
0
        out, outl, outsize);
807
0
}
808
809
int EVP_EncryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
810
    const unsigned char *key, const unsigned char *iv)
811
0
{
812
0
    return EVP_CipherInit(ctx, cipher, key, iv, 1);
813
0
}
814
815
int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
816
    ENGINE *impl, const unsigned char *key,
817
    const unsigned char *iv)
818
42.9k
{
819
42.9k
    return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 1);
820
42.9k
}
821
822
int EVP_EncryptInit_ex2(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
823
    const unsigned char *key, const unsigned char *iv,
824
    const OSSL_PARAM params[])
825
59.1k
{
826
59.1k
    return EVP_CipherInit_ex2(ctx, cipher, key, iv, 1, params);
827
59.1k
}
828
829
int EVP_DecryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
830
    const unsigned char *key, const unsigned char *iv)
831
0
{
832
0
    return EVP_CipherInit(ctx, cipher, key, iv, 0);
833
0
}
834
835
int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
836
    ENGINE *impl, const unsigned char *key,
837
    const unsigned char *iv)
838
1.22k
{
839
1.22k
    return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 0);
840
1.22k
}
841
842
int EVP_DecryptInit_ex2(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
843
    const unsigned char *key, const unsigned char *iv,
844
    const OSSL_PARAM params[])
845
0
{
846
0
    return EVP_CipherInit_ex2(ctx, cipher, key, iv, 0, params);
847
0
}
848
849
/*
850
 * According to the letter of standard difference between pointers
851
 * is specified to be valid only within same object. This makes
852
 * it formally challenging to determine if input and output buffers
853
 * are not partially overlapping with standard pointer arithmetic.
854
 */
855
#ifdef PTRDIFF_T
856
#undef PTRDIFF_T
857
#endif
858
#if defined(OPENSSL_SYS_VMS) && __INITIAL_POINTER_SIZE == 64
859
/*
860
 * Then we have VMS that distinguishes itself by adhering to
861
 * sizeof(size_t)==4 even in 64-bit builds, which means that
862
 * difference between two pointers might be truncated to 32 bits.
863
 * In the context one can even wonder how comparison for
864
 * equality is implemented. To be on the safe side we adhere to
865
 * PTRDIFF_T even for comparison for equality.
866
 */
867
#define PTRDIFF_T uint64_t
868
#else
869
0
#define PTRDIFF_T size_t
870
#endif
871
872
int ossl_is_partially_overlapping(const void *ptr1, const void *ptr2, int len)
873
0
{
874
0
    PTRDIFF_T diff = (PTRDIFF_T)ptr1 - (PTRDIFF_T)ptr2;
875
    /*
876
     * Check for partially overlapping buffers. [Binary logical
877
     * operations are used instead of boolean to minimize number
878
     * of conditional branches.]
879
     */
880
0
    int overlapped = (len > 0) & (diff != 0) & ((diff < (PTRDIFF_T)len) | (diff > (0 - (PTRDIFF_T)len)));
881
882
0
    return overlapped;
883
0
}
884
885
static int evp_EncryptDecryptUpdate(EVP_CIPHER_CTX *ctx,
886
    unsigned char *out, int *outl,
887
    const unsigned char *in, int inl)
888
0
{
889
0
    int i, j, bl, cmpl = inl;
890
891
0
    if (EVP_CIPHER_CTX_test_flags(ctx, EVP_CIPH_FLAG_LENGTH_BITS))
892
0
        cmpl = safe_div_round_up_int(cmpl, 8, NULL);
893
894
0
    bl = ctx->cipher->block_size;
895
896
0
    if (ctx->cipher->flags & EVP_CIPH_FLAG_CUSTOM_CIPHER) {
897
        /* If block size > 1 then the cipher will have to do this check */
898
0
        if (bl == 1 && ossl_is_partially_overlapping(out, in, cmpl)) {
899
0
            ERR_raise(ERR_LIB_EVP, EVP_R_PARTIALLY_OVERLAPPING);
900
0
            return 0;
901
0
        }
902
903
0
        i = ctx->cipher->do_cipher(ctx, out, in, inl);
904
0
        if (i < 0)
905
0
            return 0;
906
0
        else
907
0
            *outl = i;
908
0
        return 1;
909
0
    }
910
911
0
    if (inl <= 0) {
912
0
        *outl = 0;
913
0
        return inl == 0;
914
0
    }
915
0
    if (ossl_is_partially_overlapping(out + ctx->buf_len, in, cmpl)) {
916
0
        ERR_raise(ERR_LIB_EVP, EVP_R_PARTIALLY_OVERLAPPING);
917
0
        return 0;
918
0
    }
919
920
0
    if (ctx->buf_len == 0 && (inl & (ctx->block_mask)) == 0) {
921
0
        if (ctx->cipher->do_cipher(ctx, out, in, inl)) {
922
0
            *outl = inl;
923
0
            return 1;
924
0
        } else {
925
0
            *outl = 0;
926
0
            return 0;
927
0
        }
928
0
    }
929
0
    i = ctx->buf_len;
930
0
    OPENSSL_assert(bl <= (int)sizeof(ctx->buf));
931
0
    if (i != 0) {
932
0
        if (bl - i > inl) {
933
0
            memcpy(&(ctx->buf[i]), in, inl);
934
0
            ctx->buf_len += inl;
935
0
            *outl = 0;
936
0
            return 1;
937
0
        } else {
938
0
            j = bl - i;
939
940
            /*
941
             * Once we've processed the first j bytes from in, the amount of
942
             * data left that is a multiple of the block length is:
943
             * (inl - j) & ~(bl - 1)
944
             * We must ensure that this amount of data, plus the one block that
945
             * we process from ctx->buf does not exceed INT_MAX
946
             */
947
0
            if (((inl - j) & ~(bl - 1)) > INT_MAX - bl) {
948
0
                ERR_raise(ERR_LIB_EVP, EVP_R_OUTPUT_WOULD_OVERFLOW);
949
0
                return 0;
950
0
            }
951
0
            memcpy(&(ctx->buf[i]), in, j);
952
0
            inl -= j;
953
0
            in += j;
954
0
            if (!ctx->cipher->do_cipher(ctx, out, ctx->buf, bl))
955
0
                return 0;
956
0
            out += bl;
957
0
            *outl = bl;
958
0
        }
959
0
    } else
960
0
        *outl = 0;
961
0
    i = inl & (bl - 1);
962
0
    inl -= i;
963
0
    if (inl > 0) {
964
0
        if (!ctx->cipher->do_cipher(ctx, out, in, inl))
965
0
            return 0;
966
0
        *outl += inl;
967
0
    }
968
969
0
    if (i != 0)
970
0
        memcpy(ctx->buf, &(in[inl]), i);
971
0
    ctx->buf_len = i;
972
0
    return 1;
973
0
}
974
975
int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
976
    const unsigned char *in, int inl)
977
3.76M
{
978
3.76M
    int ret;
979
3.76M
    size_t soutl, inl_ = (size_t)inl;
980
3.76M
    int blocksize;
981
982
3.76M
    if (inl < 0) {
983
0
        ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_LENGTH);
984
0
        return 0;
985
0
    }
986
987
3.76M
    if (ossl_likely(outl != NULL)) {
988
3.76M
        *outl = 0;
989
3.76M
    } else {
990
0
        ERR_raise(ERR_LIB_EVP, ERR_R_PASSED_NULL_PARAMETER);
991
0
        return 0;
992
0
    }
993
994
    /* Prevent accidental use of decryption context when encrypting */
995
3.76M
    if (ossl_unlikely(!ctx->encrypt)) {
996
0
        ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_OPERATION);
997
0
        return 0;
998
0
    }
999
1000
3.76M
    if (ossl_unlikely(ctx->cipher == NULL)) {
1001
0
        ERR_raise(ERR_LIB_EVP, EVP_R_NO_CIPHER_SET);
1002
0
        return 0;
1003
0
    }
1004
1005
3.76M
    if (ossl_unlikely(ctx->cipher->prov == NULL))
1006
0
        goto legacy;
1007
1008
3.76M
    blocksize = ctx->cipher->block_size;
1009
1010
3.76M
    if (ossl_unlikely(ctx->cipher->cupdate == NULL || blocksize < 1)) {
1011
0
        ERR_raise(ERR_LIB_EVP, EVP_R_UPDATE_ERROR);
1012
0
        return 0;
1013
0
    }
1014
1015
3.76M
    ret = ctx->cipher->cupdate(ctx->algctx, out, &soutl,
1016
3.76M
        inl_ + (size_t)(blocksize == 1 ? 0 : blocksize),
1017
3.76M
        in, inl_);
1018
1019
3.76M
    if (ossl_likely(ret)) {
1020
3.76M
        if (ossl_unlikely(soutl > INT_MAX)) {
1021
0
            ERR_raise(ERR_LIB_EVP, EVP_R_UPDATE_ERROR);
1022
0
            return 0;
1023
0
        }
1024
3.76M
        *outl = (int)soutl;
1025
3.76M
    }
1026
1027
3.76M
    return ret;
1028
1029
    /* Code below to be removed when legacy support is dropped. */
1030
0
legacy:
1031
1032
0
    return evp_EncryptDecryptUpdate(ctx, out, outl, in, inl);
1033
3.76M
}
1034
1035
int EVP_EncryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
1036
84
{
1037
84
    int ret;
1038
84
    ret = EVP_EncryptFinal_ex(ctx, out, outl);
1039
84
    return ret;
1040
84
}
1041
1042
int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
1043
2.09M
{
1044
2.09M
    int n, ret;
1045
2.09M
    unsigned int i, b, bl;
1046
2.09M
    size_t soutl;
1047
2.09M
    int blocksize;
1048
1049
2.09M
    if (outl != NULL) {
1050
2.09M
        *outl = 0;
1051
2.09M
    } else {
1052
0
        ERR_raise(ERR_LIB_EVP, ERR_R_PASSED_NULL_PARAMETER);
1053
0
        return 0;
1054
0
    }
1055
1056
    /* Prevent accidental use of decryption context when encrypting */
1057
2.09M
    if (!ctx->encrypt) {
1058
0
        ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_OPERATION);
1059
0
        return 0;
1060
0
    }
1061
1062
2.09M
    if (ctx->cipher == NULL) {
1063
0
        ERR_raise(ERR_LIB_EVP, EVP_R_NO_CIPHER_SET);
1064
0
        return 0;
1065
0
    }
1066
2.09M
    if (ctx->cipher->prov == NULL)
1067
0
        goto legacy;
1068
1069
2.09M
    blocksize = EVP_CIPHER_CTX_get_block_size(ctx);
1070
1071
2.09M
    if (blocksize < 1 || ctx->cipher->cfinal == NULL) {
1072
0
        ERR_raise(ERR_LIB_EVP, EVP_R_FINAL_ERROR);
1073
0
        return 0;
1074
0
    }
1075
1076
2.09M
    ret = ctx->cipher->cfinal(ctx->algctx, out, &soutl,
1077
2.09M
        blocksize == 1 ? 0 : blocksize);
1078
1079
2.09M
    if (ret) {
1080
2.09M
        if (soutl > INT_MAX) {
1081
0
            ERR_raise(ERR_LIB_EVP, EVP_R_FINAL_ERROR);
1082
0
            return 0;
1083
0
        }
1084
2.09M
        *outl = (int)soutl;
1085
2.09M
    }
1086
1087
2.09M
    return ret;
1088
1089
    /* Code below to be removed when legacy support is dropped. */
1090
0
legacy:
1091
1092
0
    if (ctx->cipher->flags & EVP_CIPH_FLAG_CUSTOM_CIPHER) {
1093
0
        ret = ctx->cipher->do_cipher(ctx, out, NULL, 0);
1094
0
        if (ret < 0)
1095
0
            return 0;
1096
0
        else
1097
0
            *outl = ret;
1098
0
        return 1;
1099
0
    }
1100
1101
0
    b = ctx->cipher->block_size;
1102
0
    OPENSSL_assert(b <= sizeof(ctx->buf));
1103
0
    if (b == 1) {
1104
0
        *outl = 0;
1105
0
        return 1;
1106
0
    }
1107
0
    bl = ctx->buf_len;
1108
0
    if (ctx->flags & EVP_CIPH_NO_PADDING) {
1109
0
        if (bl) {
1110
0
            ERR_raise(ERR_LIB_EVP, EVP_R_DATA_NOT_MULTIPLE_OF_BLOCK_LENGTH);
1111
0
            return 0;
1112
0
        }
1113
0
        *outl = 0;
1114
0
        return 1;
1115
0
    }
1116
1117
0
    n = b - bl;
1118
0
    for (i = bl; i < b; i++)
1119
0
        ctx->buf[i] = n;
1120
0
    ret = ctx->cipher->do_cipher(ctx, out, ctx->buf, b);
1121
1122
0
    if (ret)
1123
0
        *outl = b;
1124
1125
0
    return ret;
1126
0
}
1127
1128
int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
1129
    const unsigned char *in, int inl)
1130
811k
{
1131
811k
    int fix_len, cmpl = inl, ret;
1132
811k
    unsigned int b;
1133
811k
    size_t soutl, inl_ = (size_t)inl;
1134
811k
    int blocksize;
1135
1136
811k
    if (inl < 0) {
1137
0
        ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_LENGTH);
1138
0
        return 0;
1139
0
    }
1140
1141
811k
    if (ossl_likely(outl != NULL)) {
1142
811k
        *outl = 0;
1143
811k
    } else {
1144
0
        ERR_raise(ERR_LIB_EVP, ERR_R_PASSED_NULL_PARAMETER);
1145
0
        return 0;
1146
0
    }
1147
1148
    /* Prevent accidental use of encryption context when decrypting */
1149
811k
    if (ossl_unlikely(ctx->encrypt)) {
1150
0
        ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_OPERATION);
1151
0
        return 0;
1152
0
    }
1153
1154
811k
    if (ossl_unlikely(ctx->cipher == NULL)) {
1155
0
        ERR_raise(ERR_LIB_EVP, EVP_R_NO_CIPHER_SET);
1156
0
        return 0;
1157
0
    }
1158
811k
    if (ossl_unlikely(ctx->cipher->prov == NULL))
1159
0
        goto legacy;
1160
1161
811k
    blocksize = EVP_CIPHER_CTX_get_block_size(ctx);
1162
1163
811k
    if (ossl_unlikely(ctx->cipher->cupdate == NULL || blocksize < 1)) {
1164
0
        ERR_raise(ERR_LIB_EVP, EVP_R_UPDATE_ERROR);
1165
0
        return 0;
1166
0
    }
1167
811k
    ret = ctx->cipher->cupdate(ctx->algctx, out, &soutl,
1168
811k
        inl_ + (size_t)(blocksize == 1 ? 0 : blocksize),
1169
811k
        in, inl_);
1170
1171
811k
    if (ossl_likely(ret)) {
1172
793k
        if (ossl_unlikely(soutl > INT_MAX)) {
1173
0
            ERR_raise(ERR_LIB_EVP, EVP_R_UPDATE_ERROR);
1174
0
            return 0;
1175
0
        }
1176
793k
        *outl = (int)soutl;
1177
793k
    }
1178
1179
811k
    return ret;
1180
1181
    /* Code below to be removed when legacy support is dropped. */
1182
0
legacy:
1183
1184
0
    b = ctx->cipher->block_size;
1185
1186
0
    if (EVP_CIPHER_CTX_test_flags(ctx, EVP_CIPH_FLAG_LENGTH_BITS))
1187
0
        cmpl = safe_div_round_up_int(cmpl, 8, NULL);
1188
1189
0
    if (ctx->cipher->flags & EVP_CIPH_FLAG_CUSTOM_CIPHER) {
1190
0
        if (b == 1 && ossl_is_partially_overlapping(out, in, cmpl)) {
1191
0
            ERR_raise(ERR_LIB_EVP, EVP_R_PARTIALLY_OVERLAPPING);
1192
0
            return 0;
1193
0
        }
1194
1195
0
        fix_len = ctx->cipher->do_cipher(ctx, out, in, inl);
1196
0
        if (fix_len < 0) {
1197
0
            *outl = 0;
1198
0
            return 0;
1199
0
        } else
1200
0
            *outl = fix_len;
1201
0
        return 1;
1202
0
    }
1203
1204
0
    if (inl <= 0) {
1205
0
        *outl = 0;
1206
0
        return inl == 0;
1207
0
    }
1208
1209
0
    if (ctx->flags & EVP_CIPH_NO_PADDING)
1210
0
        return evp_EncryptDecryptUpdate(ctx, out, outl, in, inl);
1211
1212
0
    OPENSSL_assert(b <= sizeof(ctx->final));
1213
1214
0
    if (ctx->final_used) {
1215
        /* see comment about PTRDIFF_T comparison above */
1216
0
        if (((PTRDIFF_T)out == (PTRDIFF_T)in)
1217
0
            || ossl_is_partially_overlapping(out, in, b)) {
1218
0
            ERR_raise(ERR_LIB_EVP, EVP_R_PARTIALLY_OVERLAPPING);
1219
0
            return 0;
1220
0
        }
1221
        /*
1222
         * final_used is only ever set if buf_len is 0. Therefore the maximum
1223
         * length output we will ever see from evp_EncryptDecryptUpdate is
1224
         * the maximum multiple of the block length that is <= inl, or just:
1225
         * inl & ~(b - 1)
1226
         * Since final_used has been set then the final output length is:
1227
         * (inl & ~(b - 1)) + b
1228
         * This must never exceed INT_MAX
1229
         */
1230
0
        if ((inl & ~(b - 1)) > INT_MAX - b) {
1231
0
            ERR_raise(ERR_LIB_EVP, EVP_R_OUTPUT_WOULD_OVERFLOW);
1232
0
            return 0;
1233
0
        }
1234
0
        memcpy(out, ctx->final, b);
1235
0
        out += b;
1236
0
        fix_len = 1;
1237
0
    } else
1238
0
        fix_len = 0;
1239
1240
0
    if (!evp_EncryptDecryptUpdate(ctx, out, outl, in, inl))
1241
0
        return 0;
1242
1243
    /*
1244
     * if we have 'decrypted' a multiple of block size, make sure we have a
1245
     * copy of this last block
1246
     */
1247
0
    if (b > 1 && !ctx->buf_len) {
1248
0
        *outl -= b;
1249
0
        ctx->final_used = 1;
1250
0
        memcpy(ctx->final, &out[*outl], b);
1251
0
    } else
1252
0
        ctx->final_used = 0;
1253
1254
0
    if (fix_len)
1255
0
        *outl += b;
1256
1257
0
    return 1;
1258
0
}
1259
1260
int EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
1261
1.08k
{
1262
1.08k
    int ret;
1263
1.08k
    ret = EVP_DecryptFinal_ex(ctx, out, outl);
1264
1.08k
    return ret;
1265
1.08k
}
1266
1267
int EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
1268
708k
{
1269
708k
    int i, n;
1270
708k
    unsigned int b;
1271
708k
    size_t soutl;
1272
708k
    int ret;
1273
708k
    int blocksize;
1274
1275
708k
    if (outl != NULL) {
1276
708k
        *outl = 0;
1277
708k
    } else {
1278
0
        ERR_raise(ERR_LIB_EVP, ERR_R_PASSED_NULL_PARAMETER);
1279
0
        return 0;
1280
0
    }
1281
1282
    /* Prevent accidental use of encryption context when decrypting */
1283
708k
    if (ctx->encrypt) {
1284
0
        ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_OPERATION);
1285
0
        return 0;
1286
0
    }
1287
1288
708k
    if (ctx->cipher == NULL) {
1289
0
        ERR_raise(ERR_LIB_EVP, EVP_R_NO_CIPHER_SET);
1290
0
        return 0;
1291
0
    }
1292
1293
708k
    if (ctx->cipher->prov == NULL)
1294
0
        goto legacy;
1295
1296
708k
    blocksize = EVP_CIPHER_CTX_get_block_size(ctx);
1297
1298
708k
    if (blocksize < 1 || ctx->cipher->cfinal == NULL) {
1299
0
        ERR_raise(ERR_LIB_EVP, EVP_R_FINAL_ERROR);
1300
0
        return 0;
1301
0
    }
1302
1303
708k
    ret = ctx->cipher->cfinal(ctx->algctx, out, &soutl,
1304
708k
        blocksize == 1 ? 0 : blocksize);
1305
1306
708k
    if (ret) {
1307
1.71k
        if (soutl > INT_MAX) {
1308
0
            ERR_raise(ERR_LIB_EVP, EVP_R_FINAL_ERROR);
1309
0
            return 0;
1310
0
        }
1311
1.71k
        *outl = (int)soutl;
1312
1.71k
    }
1313
1314
708k
    return ret;
1315
1316
    /* Code below to be removed when legacy support is dropped. */
1317
0
legacy:
1318
1319
0
    *outl = 0;
1320
0
    if (ctx->cipher->flags & EVP_CIPH_FLAG_CUSTOM_CIPHER) {
1321
0
        i = ctx->cipher->do_cipher(ctx, out, NULL, 0);
1322
0
        if (i < 0)
1323
0
            return 0;
1324
0
        else
1325
0
            *outl = i;
1326
0
        return 1;
1327
0
    }
1328
1329
0
    b = ctx->cipher->block_size;
1330
0
    if (ctx->flags & EVP_CIPH_NO_PADDING) {
1331
0
        if (ctx->buf_len) {
1332
0
            ERR_raise(ERR_LIB_EVP, EVP_R_DATA_NOT_MULTIPLE_OF_BLOCK_LENGTH);
1333
0
            return 0;
1334
0
        }
1335
0
        *outl = 0;
1336
0
        return 1;
1337
0
    }
1338
0
    if (b > 1) {
1339
0
        if (ctx->buf_len || !ctx->final_used) {
1340
0
            ERR_raise(ERR_LIB_EVP, EVP_R_WRONG_FINAL_BLOCK_LENGTH);
1341
0
            return 0;
1342
0
        }
1343
0
        OPENSSL_assert(b <= sizeof(ctx->final));
1344
1345
        /*
1346
         * The following assumes that the ciphertext has been authenticated.
1347
         * Otherwise it provides a padding oracle.
1348
         */
1349
0
        n = ctx->final[b - 1];
1350
0
        if (n == 0 || n > (int)b) {
1351
0
            ERR_raise(ERR_LIB_EVP, EVP_R_BAD_DECRYPT);
1352
0
            return 0;
1353
0
        }
1354
0
        for (i = 0; i < n; i++) {
1355
0
            if (ctx->final[--b] != n) {
1356
0
                ERR_raise(ERR_LIB_EVP, EVP_R_BAD_DECRYPT);
1357
0
                return 0;
1358
0
            }
1359
0
        }
1360
0
        n = ctx->cipher->block_size - n;
1361
0
        for (i = 0; i < n; i++)
1362
0
            out[i] = ctx->final[i];
1363
0
        *outl = n;
1364
0
    }
1365
0
    return 1;
1366
0
}
1367
1368
int EVP_CIPHER_CTX_set_key_length(EVP_CIPHER_CTX *c, int keylen)
1369
419
{
1370
419
    if (c->cipher->prov != NULL) {
1371
419
        int ok;
1372
419
        OSSL_PARAM params[2] = { OSSL_PARAM_END, OSSL_PARAM_END };
1373
419
        size_t len;
1374
1375
419
        if (EVP_CIPHER_CTX_get_key_length(c) == keylen)
1376
247
            return 1;
1377
1378
        /* Check the cipher actually understands this parameter */
1379
172
        if (OSSL_PARAM_locate_const(EVP_CIPHER_settable_ctx_params(c->cipher),
1380
172
                OSSL_CIPHER_PARAM_KEYLEN)
1381
172
            == NULL) {
1382
121
            ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_KEY_LENGTH);
1383
121
            return 0;
1384
121
        }
1385
1386
51
        params[0] = OSSL_PARAM_construct_size_t(OSSL_CIPHER_PARAM_KEYLEN, &len);
1387
51
        if (!OSSL_PARAM_set_int(params, keylen))
1388
0
            return 0;
1389
51
        ok = evp_do_ciph_ctx_setparams(c->cipher, c->algctx, params);
1390
51
        if (ok <= 0)
1391
51
            return 0;
1392
0
        c->key_len = keylen;
1393
0
        return 1;
1394
51
    }
1395
1396
    /* Code below to be removed when legacy support is dropped. */
1397
1398
    /*
1399
     * Note there have never been any built-in ciphers that define this flag
1400
     * since it was first introduced.
1401
     */
1402
0
    if (c->cipher->flags & EVP_CIPH_CUSTOM_KEY_LENGTH)
1403
0
        return EVP_CIPHER_CTX_ctrl(c, EVP_CTRL_SET_KEY_LENGTH, keylen, NULL);
1404
0
    if (EVP_CIPHER_CTX_get_key_length(c) == keylen)
1405
0
        return 1;
1406
0
    if ((keylen > 0) && (c->cipher->flags & EVP_CIPH_VARIABLE_LENGTH)) {
1407
0
        c->key_len = keylen;
1408
0
        return 1;
1409
0
    }
1410
0
    ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_KEY_LENGTH);
1411
0
    return 0;
1412
0
}
1413
1414
int EVP_CIPHER_CTX_set_padding(EVP_CIPHER_CTX *ctx, int pad)
1415
1.29k
{
1416
1.29k
    int ok;
1417
1.29k
    OSSL_PARAM params[2] = { OSSL_PARAM_END, OSSL_PARAM_END };
1418
1.29k
    unsigned int pd = pad;
1419
1420
1.29k
    if (pad)
1421
0
        ctx->flags &= ~EVP_CIPH_NO_PADDING;
1422
1.29k
    else
1423
1.29k
        ctx->flags |= EVP_CIPH_NO_PADDING;
1424
1425
1.29k
    if (ctx->cipher != NULL && ctx->cipher->prov == NULL)
1426
0
        return 1;
1427
1.29k
    params[0] = OSSL_PARAM_construct_uint(OSSL_CIPHER_PARAM_PADDING, &pd);
1428
1.29k
    ok = evp_do_ciph_ctx_setparams(ctx->cipher, ctx->algctx, params);
1429
1430
1.29k
    return ok != 0;
1431
1.29k
}
1432
1433
int EVP_CIPHER_CTX_ctrl(EVP_CIPHER_CTX *ctx, int type, int arg, void *ptr)
1434
912k
{
1435
912k
    int ret = EVP_CTRL_RET_UNSUPPORTED;
1436
912k
    int set_params = 1;
1437
912k
    size_t sz = arg;
1438
912k
    unsigned int i;
1439
912k
    OSSL_PARAM params[4] = {
1440
912k
        OSSL_PARAM_END, OSSL_PARAM_END, OSSL_PARAM_END, OSSL_PARAM_END
1441
912k
    };
1442
1443
912k
    if (ctx == NULL || ctx->cipher == NULL) {
1444
0
        ERR_raise(ERR_LIB_EVP, EVP_R_NO_CIPHER_SET);
1445
0
        return 0;
1446
0
    }
1447
1448
912k
    if (ctx->cipher->prov == NULL)
1449
0
        goto legacy;
1450
1451
912k
    switch (type) {
1452
0
    case EVP_CTRL_SET_KEY_LENGTH:
1453
0
        if (arg < 0)
1454
0
            return 0;
1455
0
        if (ctx->key_len == arg)
1456
            /* Skip calling into provider if unchanged. */
1457
0
            return 1;
1458
0
        params[0] = OSSL_PARAM_construct_size_t(OSSL_CIPHER_PARAM_KEYLEN, &sz);
1459
0
        ctx->key_len = -1;
1460
0
        break;
1461
0
    case EVP_CTRL_RAND_KEY: /* Used by DES */
1462
0
        set_params = 0;
1463
0
        params[0] = OSSL_PARAM_construct_octet_string(OSSL_CIPHER_PARAM_RANDOM_KEY,
1464
0
            ptr, sz);
1465
0
        break;
1466
1467
0
    case EVP_CTRL_INIT:
1468
        /*
1469
         * EVP_CTRL_INIT is purely legacy, no provider counterpart.
1470
         * As a matter of fact, this should be dead code, but some caller
1471
         * might still do a direct control call with this command, so...
1472
         * Legacy methods return 1 except for exceptional circumstances, so
1473
         * we do the same here to not be disruptive.
1474
         */
1475
0
        return 1;
1476
0
    case EVP_CTRL_SET_PIPELINE_OUTPUT_BUFS: /* Used by DASYNC */
1477
0
    default:
1478
0
        goto end;
1479
1.78k
    case EVP_CTRL_AEAD_SET_IVLEN:
1480
1.78k
        if (arg < 0)
1481
0
            return 0;
1482
1.78k
        if (ctx->iv_len == arg)
1483
            /* Skip calling into provider if unchanged. */
1484
0
            return 1;
1485
1.78k
        params[0] = OSSL_PARAM_construct_size_t(OSSL_CIPHER_PARAM_IVLEN, &sz);
1486
1.78k
        ctx->iv_len = -1;
1487
1.78k
        break;
1488
0
    case EVP_CTRL_CCM_SET_L:
1489
0
        if (arg < 2 || arg > 8)
1490
0
            return 0;
1491
0
        sz = 15 - arg;
1492
0
        params[0] = OSSL_PARAM_construct_size_t(OSSL_CIPHER_PARAM_IVLEN, &sz);
1493
0
        ctx->iv_len = -1;
1494
0
        break;
1495
690
    case EVP_CTRL_AEAD_SET_IV_FIXED:
1496
690
        params[0] = OSSL_PARAM_construct_octet_string(
1497
690
            OSSL_CIPHER_PARAM_AEAD_TLS1_IV_FIXED, ptr, sz);
1498
690
        break;
1499
0
    case EVP_CTRL_GCM_IV_GEN:
1500
0
        set_params = 0;
1501
0
        if (arg < 0)
1502
0
            sz = 0; /* special case that uses the iv length */
1503
0
        params[0] = OSSL_PARAM_construct_octet_string(
1504
0
            OSSL_CIPHER_PARAM_AEAD_TLS1_GET_IV_GEN, ptr, sz);
1505
0
        break;
1506
0
    case EVP_CTRL_GCM_SET_IV_INV:
1507
0
        if (arg < 0)
1508
0
            return 0;
1509
0
        params[0] = OSSL_PARAM_construct_octet_string(
1510
0
            OSSL_CIPHER_PARAM_AEAD_TLS1_SET_IV_INV, ptr, sz);
1511
0
        break;
1512
0
    case EVP_CTRL_GET_RC5_ROUNDS:
1513
0
        set_params = 0; /* Fall thru */
1514
0
    case EVP_CTRL_SET_RC5_ROUNDS:
1515
0
        if (arg < 0)
1516
0
            return 0;
1517
0
        i = (unsigned int)arg;
1518
0
        params[0] = OSSL_PARAM_construct_uint(OSSL_CIPHER_PARAM_ROUNDS, &i);
1519
0
        break;
1520
0
    case EVP_CTRL_SET_SPEED:
1521
0
        if (arg < 0)
1522
0
            return 0;
1523
0
        i = (unsigned int)arg;
1524
0
        params[0] = OSSL_PARAM_construct_uint(OSSL_CIPHER_PARAM_SPEED, &i);
1525
0
        break;
1526
537k
    case EVP_CTRL_AEAD_GET_TAG:
1527
537k
        set_params = 0; /* Fall thru */
1528
892k
    case EVP_CTRL_AEAD_SET_TAG:
1529
892k
        params[0] = OSSL_PARAM_construct_octet_string(OSSL_CIPHER_PARAM_AEAD_TAG,
1530
892k
            ptr, sz);
1531
892k
        break;
1532
17.1k
    case EVP_CTRL_AEAD_TLS1_AAD:
1533
        /* This one does a set and a get - since it returns a size */
1534
17.1k
        params[0] = OSSL_PARAM_construct_octet_string(OSSL_CIPHER_PARAM_AEAD_TLS1_AAD,
1535
17.1k
            ptr, sz);
1536
17.1k
        ret = evp_do_ciph_ctx_setparams(ctx->cipher, ctx->algctx, params);
1537
17.1k
        if (ret <= 0)
1538
42
            goto end;
1539
17.0k
        params[0] = OSSL_PARAM_construct_size_t(OSSL_CIPHER_PARAM_AEAD_TLS1_AAD_PAD, &sz);
1540
17.0k
        ret = evp_do_ciph_ctx_getparams(ctx->cipher, ctx->algctx, params);
1541
17.0k
        if (ret <= 0)
1542
0
            goto end;
1543
17.0k
        if (sz > INT_MAX)
1544
0
            return 0;
1545
17.0k
        return (int)sz;
1546
0
#ifndef OPENSSL_NO_RC2
1547
0
    case EVP_CTRL_GET_RC2_KEY_BITS:
1548
0
        set_params = 0; /* Fall thru */
1549
0
    case EVP_CTRL_SET_RC2_KEY_BITS:
1550
0
        params[0] = OSSL_PARAM_construct_size_t(OSSL_CIPHER_PARAM_RC2_KEYBITS, &sz);
1551
0
        break;
1552
0
#endif /* OPENSSL_NO_RC2 */
1553
0
#if !defined(OPENSSL_NO_MULTIBLOCK)
1554
0
    case EVP_CTRL_TLS1_1_MULTIBLOCK_MAX_BUFSIZE:
1555
0
        params[0] = OSSL_PARAM_construct_size_t(
1556
0
            OSSL_CIPHER_PARAM_TLS1_MULTIBLOCK_MAX_SEND_FRAGMENT, &sz);
1557
0
        ret = evp_do_ciph_ctx_setparams(ctx->cipher, ctx->algctx, params);
1558
0
        if (ret <= 0)
1559
0
            return 0;
1560
1561
0
        params[0] = OSSL_PARAM_construct_size_t(
1562
0
            OSSL_CIPHER_PARAM_TLS1_MULTIBLOCK_MAX_BUFSIZE, &sz);
1563
0
        params[1] = OSSL_PARAM_construct_end();
1564
0
        ret = evp_do_ciph_ctx_getparams(ctx->cipher, ctx->algctx, params);
1565
0
        if (ret <= 0 || sz > INT_MAX)
1566
0
            return 0;
1567
0
        return (int)sz;
1568
0
    case EVP_CTRL_TLS1_1_MULTIBLOCK_AAD: {
1569
0
        EVP_CTRL_TLS1_1_MULTIBLOCK_PARAM *p = (EVP_CTRL_TLS1_1_MULTIBLOCK_PARAM *)ptr;
1570
1571
0
        if (arg < (int)sizeof(EVP_CTRL_TLS1_1_MULTIBLOCK_PARAM))
1572
0
            return 0;
1573
1574
0
        params[0] = OSSL_PARAM_construct_octet_string(
1575
0
            OSSL_CIPHER_PARAM_TLS1_MULTIBLOCK_AAD, (void *)p->inp, p->len);
1576
0
        params[1] = OSSL_PARAM_construct_uint(
1577
0
            OSSL_CIPHER_PARAM_TLS1_MULTIBLOCK_INTERLEAVE, &p->interleave);
1578
0
        ret = evp_do_ciph_ctx_setparams(ctx->cipher, ctx->algctx, params);
1579
0
        if (ret <= 0)
1580
0
            return ret;
1581
        /* Retrieve the return values changed by the set */
1582
0
        params[0] = OSSL_PARAM_construct_size_t(
1583
0
            OSSL_CIPHER_PARAM_TLS1_MULTIBLOCK_AAD_PACKLEN, &sz);
1584
0
        params[1] = OSSL_PARAM_construct_uint(
1585
0
            OSSL_CIPHER_PARAM_TLS1_MULTIBLOCK_INTERLEAVE, &p->interleave);
1586
0
        params[2] = OSSL_PARAM_construct_end();
1587
0
        ret = evp_do_ciph_ctx_getparams(ctx->cipher, ctx->algctx, params);
1588
0
        if (ret <= 0 || sz > INT_MAX)
1589
0
            return 0;
1590
0
        return (int)sz;
1591
0
    }
1592
0
    case EVP_CTRL_TLS1_1_MULTIBLOCK_ENCRYPT: {
1593
0
        EVP_CTRL_TLS1_1_MULTIBLOCK_PARAM *p = (EVP_CTRL_TLS1_1_MULTIBLOCK_PARAM *)ptr;
1594
1595
0
        params[0] = OSSL_PARAM_construct_octet_string(
1596
0
            OSSL_CIPHER_PARAM_TLS1_MULTIBLOCK_ENC, p->out, p->len);
1597
1598
0
        params[1] = OSSL_PARAM_construct_octet_string(
1599
0
            OSSL_CIPHER_PARAM_TLS1_MULTIBLOCK_ENC_IN, (void *)p->inp,
1600
0
            p->len);
1601
0
        params[2] = OSSL_PARAM_construct_uint(
1602
0
            OSSL_CIPHER_PARAM_TLS1_MULTIBLOCK_INTERLEAVE, &p->interleave);
1603
0
        ret = evp_do_ciph_ctx_setparams(ctx->cipher, ctx->algctx, params);
1604
0
        if (ret <= 0)
1605
0
            return ret;
1606
0
        params[0] = OSSL_PARAM_construct_size_t(
1607
0
            OSSL_CIPHER_PARAM_TLS1_MULTIBLOCK_ENC_LEN, &sz);
1608
0
        params[1] = OSSL_PARAM_construct_end();
1609
0
        ret = evp_do_ciph_ctx_getparams(ctx->cipher, ctx->algctx, params);
1610
0
        if (ret <= 0 || sz > INT_MAX)
1611
0
            return 0;
1612
0
        return (int)sz;
1613
0
    }
1614
0
#endif /* OPENSSL_NO_MULTIBLOCK */
1615
874
    case EVP_CTRL_AEAD_SET_MAC_KEY:
1616
874
        if (arg < 0)
1617
0
            return -1;
1618
874
        params[0] = OSSL_PARAM_construct_octet_string(
1619
874
            OSSL_CIPHER_PARAM_AEAD_MAC_KEY, ptr, sz);
1620
874
        break;
1621
912k
    }
1622
1623
895k
    if (set_params)
1624
357k
        ret = evp_do_ciph_ctx_setparams(ctx->cipher, ctx->algctx, params);
1625
537k
    else
1626
537k
        ret = evp_do_ciph_ctx_getparams(ctx->cipher, ctx->algctx, params);
1627
895k
    goto end;
1628
1629
    /* Code below to be removed when legacy support is dropped. */
1630
0
legacy:
1631
0
    if (ctx->cipher->ctrl == NULL) {
1632
0
        ERR_raise(ERR_LIB_EVP, EVP_R_CTRL_NOT_IMPLEMENTED);
1633
0
        return 0;
1634
0
    }
1635
1636
0
    ret = ctx->cipher->ctrl(ctx, type, arg, ptr);
1637
1638
895k
end:
1639
895k
    if (ret == EVP_CTRL_RET_UNSUPPORTED) {
1640
0
        ERR_raise(ERR_LIB_EVP, EVP_R_CTRL_OPERATION_NOT_IMPLEMENTED);
1641
0
        return 0;
1642
0
    }
1643
895k
    return ret;
1644
895k
}
1645
1646
int EVP_CIPHER_get_params(EVP_CIPHER *cipher, OSSL_PARAM params[])
1647
1.78M
{
1648
1.78M
    if (cipher != NULL && cipher->get_params != NULL)
1649
1.78M
        return cipher->get_params(params);
1650
0
    return 0;
1651
1.78M
}
1652
1653
int EVP_CIPHER_CTX_set_params(EVP_CIPHER_CTX *ctx, const OSSL_PARAM params[])
1654
29.9k
{
1655
29.9k
    int r = 0;
1656
29.9k
    const OSSL_PARAM *p;
1657
1658
29.9k
    if (ctx->cipher != NULL && ctx->cipher->set_ctx_params != NULL) {
1659
29.8k
        r = ctx->cipher->set_ctx_params(ctx->algctx, params);
1660
29.8k
        if (r > 0) {
1661
29.7k
            p = OSSL_PARAM_locate_const(params, OSSL_CIPHER_PARAM_KEYLEN);
1662
29.7k
            if (p != NULL && !OSSL_PARAM_get_int(p, &ctx->key_len)) {
1663
0
                r = 0;
1664
0
                ctx->key_len = -1;
1665
0
            }
1666
29.7k
        }
1667
29.8k
        if (r > 0) {
1668
29.7k
            p = OSSL_PARAM_locate_const(params, OSSL_CIPHER_PARAM_IVLEN);
1669
29.7k
            if (p != NULL && !OSSL_PARAM_get_int(p, &ctx->iv_len)) {
1670
0
                r = 0;
1671
0
                ctx->iv_len = -1;
1672
0
            }
1673
29.7k
        }
1674
29.8k
    }
1675
29.9k
    return r;
1676
29.9k
}
1677
1678
int EVP_CIPHER_CTX_get_params(EVP_CIPHER_CTX *ctx, OSSL_PARAM params[])
1679
507k
{
1680
507k
    if (ctx->cipher != NULL && ctx->cipher->get_ctx_params != NULL)
1681
507k
        return ctx->cipher->get_ctx_params(ctx->algctx, params);
1682
0
    return 0;
1683
507k
}
1684
1685
const OSSL_PARAM *EVP_CIPHER_gettable_params(const EVP_CIPHER *cipher)
1686
0
{
1687
0
    if (cipher != NULL && cipher->gettable_params != NULL)
1688
0
        return cipher->gettable_params(
1689
0
            ossl_provider_ctx(EVP_CIPHER_get0_provider(cipher)));
1690
0
    return NULL;
1691
0
}
1692
1693
const OSSL_PARAM *EVP_CIPHER_settable_ctx_params(const EVP_CIPHER *cipher)
1694
546
{
1695
546
    void *provctx;
1696
1697
546
    if (cipher != NULL && cipher->settable_ctx_params != NULL) {
1698
546
        provctx = ossl_provider_ctx(EVP_CIPHER_get0_provider(cipher));
1699
546
        return cipher->settable_ctx_params(NULL, provctx);
1700
546
    }
1701
0
    return NULL;
1702
546
}
1703
1704
const OSSL_PARAM *EVP_CIPHER_gettable_ctx_params(const EVP_CIPHER *cipher)
1705
8.56k
{
1706
8.56k
    void *provctx;
1707
1708
8.56k
    if (cipher != NULL && cipher->gettable_ctx_params != NULL) {
1709
8.56k
        provctx = ossl_provider_ctx(EVP_CIPHER_get0_provider(cipher));
1710
8.56k
        return cipher->gettable_ctx_params(NULL, provctx);
1711
8.56k
    }
1712
0
    return NULL;
1713
8.56k
}
1714
1715
const OSSL_PARAM *EVP_CIPHER_CTX_settable_params(EVP_CIPHER_CTX *cctx)
1716
0
{
1717
0
    void *alg;
1718
1719
0
    if (cctx != NULL && cctx->cipher->settable_ctx_params != NULL) {
1720
0
        alg = ossl_provider_ctx(EVP_CIPHER_get0_provider(cctx->cipher));
1721
0
        return cctx->cipher->settable_ctx_params(cctx->algctx, alg);
1722
0
    }
1723
0
    return NULL;
1724
0
}
1725
1726
const OSSL_PARAM *EVP_CIPHER_CTX_gettable_params(EVP_CIPHER_CTX *cctx)
1727
0
{
1728
0
    void *provctx;
1729
1730
0
    if (cctx != NULL && cctx->cipher->gettable_ctx_params != NULL) {
1731
0
        provctx = ossl_provider_ctx(EVP_CIPHER_get0_provider(cctx->cipher));
1732
0
        return cctx->cipher->gettable_ctx_params(cctx->algctx, provctx);
1733
0
    }
1734
0
    return NULL;
1735
0
}
1736
1737
#ifndef FIPS_MODULE
1738
static OSSL_LIB_CTX *EVP_CIPHER_CTX_get_libctx(EVP_CIPHER_CTX *ctx)
1739
0
{
1740
0
    const EVP_CIPHER *cipher = ctx->cipher;
1741
0
    const OSSL_PROVIDER *prov;
1742
1743
0
    if (cipher == NULL)
1744
0
        return NULL;
1745
1746
0
    prov = EVP_CIPHER_get0_provider(cipher);
1747
0
    return ossl_provider_libctx(prov);
1748
0
}
1749
#endif
1750
1751
int EVP_CIPHER_CTX_rand_key(EVP_CIPHER_CTX *ctx, unsigned char *key)
1752
0
{
1753
0
    if (ctx->cipher->flags & EVP_CIPH_RAND_KEY)
1754
0
        return EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_RAND_KEY, 0, key);
1755
1756
#ifdef FIPS_MODULE
1757
    return 0;
1758
#else
1759
0
    {
1760
0
        int kl;
1761
0
        OSSL_LIB_CTX *libctx = EVP_CIPHER_CTX_get_libctx(ctx);
1762
1763
0
        kl = EVP_CIPHER_CTX_get_key_length(ctx);
1764
0
        if (kl <= 0 || RAND_priv_bytes_ex(libctx, key, kl, 0) <= 0)
1765
0
            return 0;
1766
0
        return 1;
1767
0
    }
1768
0
#endif /* FIPS_MODULE */
1769
0
}
1770
1771
EVP_CIPHER_CTX *EVP_CIPHER_CTX_dup(const EVP_CIPHER_CTX *in)
1772
0
{
1773
0
    EVP_CIPHER_CTX *out = EVP_CIPHER_CTX_new();
1774
1775
0
    if (out != NULL && !EVP_CIPHER_CTX_copy(out, in)) {
1776
0
        EVP_CIPHER_CTX_free(out);
1777
0
        out = NULL;
1778
0
    }
1779
0
    return out;
1780
0
}
1781
1782
int EVP_CIPHER_CTX_copy(EVP_CIPHER_CTX *out, const EVP_CIPHER_CTX *in)
1783
258
{
1784
258
    if ((in == NULL) || (in->cipher == NULL)) {
1785
0
        ERR_raise(ERR_LIB_EVP, EVP_R_INPUT_NOT_INITIALIZED);
1786
0
        return 0;
1787
0
    }
1788
1789
258
    if (in->cipher->prov == NULL)
1790
0
        goto legacy;
1791
1792
258
    if (in->cipher->dupctx == NULL) {
1793
0
        ERR_raise(ERR_LIB_EVP, EVP_R_NOT_ABLE_TO_COPY_CTX);
1794
0
        return 0;
1795
0
    }
1796
1797
258
    EVP_CIPHER_CTX_reset(out);
1798
1799
258
    *out = *in;
1800
258
    out->algctx = NULL;
1801
1802
258
    if (in->fetched_cipher != NULL && !EVP_CIPHER_up_ref(in->fetched_cipher)) {
1803
0
        out->fetched_cipher = NULL;
1804
0
        return 0;
1805
0
    }
1806
1807
258
    out->algctx = in->cipher->dupctx(in->algctx);
1808
258
    if (out->algctx == NULL) {
1809
0
        ERR_raise(ERR_LIB_EVP, EVP_R_NOT_ABLE_TO_COPY_CTX);
1810
0
        return 0;
1811
0
    }
1812
1813
258
    return 1;
1814
1815
    /* Code below to be removed when legacy support is dropped. */
1816
0
legacy:
1817
1818
0
#if !defined(OPENSSL_NO_ENGINE) && !defined(FIPS_MODULE)
1819
    /* Make sure it's safe to copy a cipher context using an ENGINE */
1820
0
    if (in->engine && !ENGINE_init(in->engine)) {
1821
0
        ERR_raise(ERR_LIB_EVP, ERR_R_ENGINE_LIB);
1822
0
        return 0;
1823
0
    }
1824
0
#endif
1825
1826
0
    EVP_CIPHER_CTX_reset(out);
1827
0
    memcpy(out, in, sizeof(*out));
1828
1829
0
    if (in->cipher_data && in->cipher->ctx_size) {
1830
0
        out->cipher_data = OPENSSL_malloc(in->cipher->ctx_size);
1831
0
        if (out->cipher_data == NULL) {
1832
0
            out->cipher = NULL;
1833
0
            return 0;
1834
0
        }
1835
0
        memcpy(out->cipher_data, in->cipher_data, in->cipher->ctx_size);
1836
0
    }
1837
1838
0
    if (in->cipher->flags & EVP_CIPH_CUSTOM_COPY)
1839
0
        if (!in->cipher->ctrl((EVP_CIPHER_CTX *)in, EVP_CTRL_COPY, 0, out)) {
1840
0
            out->cipher = NULL;
1841
0
            ERR_raise(ERR_LIB_EVP, EVP_R_INITIALIZATION_ERROR);
1842
0
            return 0;
1843
0
        }
1844
0
    return 1;
1845
0
}
1846
1847
EVP_CIPHER *evp_cipher_new(void)
1848
8.19k
{
1849
8.19k
    EVP_CIPHER *cipher = OPENSSL_zalloc(sizeof(EVP_CIPHER));
1850
1851
8.19k
    if (cipher != NULL && !CRYPTO_NEW_REF(&cipher->refcnt, 1)) {
1852
0
        OPENSSL_free(cipher);
1853
0
        return NULL;
1854
0
    }
1855
8.19k
    return cipher;
1856
8.19k
}
1857
1858
/*
1859
 * FIPS module note: since internal fetches will be entirely
1860
 * provider based, we know that none of its code depends on legacy
1861
 * NIDs or any functionality that use them.
1862
 */
1863
#ifndef FIPS_MODULE
1864
/* After removal of legacy support get rid of the need for legacy NIDs */
1865
static void set_legacy_nid(const char *name, void *vlegacy_nid)
1866
16.0k
{
1867
16.0k
    int nid;
1868
16.0k
    int *legacy_nid = vlegacy_nid;
1869
    /*
1870
     * We use lowest level function to get the associated method, because
1871
     * higher level functions such as EVP_get_cipherbyname() have changed
1872
     * to look at providers too.
1873
     */
1874
16.0k
    const void *legacy_method = OBJ_NAME_get(name, OBJ_NAME_TYPE_CIPHER_METH);
1875
1876
16.0k
    if (*legacy_nid == -1) /* We found a clash already */
1877
0
        return;
1878
16.0k
    if (legacy_method == NULL)
1879
7.17k
        return;
1880
8.83k
    nid = EVP_CIPHER_get_nid(legacy_method);
1881
8.83k
    if (*legacy_nid != NID_undef && *legacy_nid != nid) {
1882
0
        *legacy_nid = -1;
1883
0
        return;
1884
0
    }
1885
8.83k
    *legacy_nid = nid;
1886
8.83k
}
1887
#endif
1888
1889
static void *evp_cipher_from_algorithm(const int name_id,
1890
    const OSSL_ALGORITHM *algodef,
1891
    OSSL_PROVIDER *prov)
1892
3.77k
{
1893
3.77k
    const OSSL_DISPATCH *fns = algodef->implementation;
1894
3.77k
    EVP_CIPHER *cipher = NULL;
1895
3.77k
    int fnciphcnt = 0, encinit = 0, decinit = 0, fnpipecnt = 0, fnctxcnt = 0;
1896
1897
3.77k
    if ((cipher = evp_cipher_new()) == NULL) {
1898
0
        ERR_raise(ERR_LIB_EVP, ERR_R_EVP_LIB);
1899
0
        return NULL;
1900
0
    }
1901
1902
3.77k
#ifndef FIPS_MODULE
1903
3.77k
    cipher->nid = NID_undef;
1904
3.77k
    if (!evp_names_do_all(prov, name_id, set_legacy_nid, &cipher->nid)
1905
3.77k
        || cipher->nid == -1) {
1906
0
        ERR_raise(ERR_LIB_EVP, ERR_R_INTERNAL_ERROR);
1907
0
        goto err;
1908
0
    }
1909
3.77k
#endif
1910
1911
3.77k
    cipher->name_id = name_id;
1912
3.77k
    if ((cipher->type_name = ossl_algorithm_get1_first_name(algodef)) == NULL)
1913
0
        goto err;
1914
1915
3.77k
    cipher->description = algodef->algorithm_description;
1916
1917
60.1k
    for (; fns->function_id != 0; fns++) {
1918
56.3k
        switch (fns->function_id) {
1919
3.77k
        case OSSL_FUNC_CIPHER_NEWCTX:
1920
3.77k
            if (cipher->newctx != NULL)
1921
0
                break;
1922
3.77k
            cipher->newctx = OSSL_FUNC_cipher_newctx(fns);
1923
3.77k
            fnctxcnt++;
1924
3.77k
            break;
1925
3.77k
        case OSSL_FUNC_CIPHER_ENCRYPT_INIT:
1926
3.77k
            if (cipher->einit != NULL)
1927
0
                break;
1928
3.77k
            cipher->einit = OSSL_FUNC_cipher_encrypt_init(fns);
1929
3.77k
            encinit = 1;
1930
3.77k
            break;
1931
3.77k
        case OSSL_FUNC_CIPHER_DECRYPT_INIT:
1932
3.77k
            if (cipher->dinit != NULL)
1933
0
                break;
1934
3.77k
            cipher->dinit = OSSL_FUNC_cipher_decrypt_init(fns);
1935
3.77k
            decinit = 1;
1936
3.77k
            break;
1937
1.97k
        case OSSL_FUNC_CIPHER_ENCRYPT_SKEY_INIT:
1938
1.97k
            if (cipher->einit_skey != NULL)
1939
0
                break;
1940
1.97k
            cipher->einit_skey = OSSL_FUNC_cipher_encrypt_skey_init(fns);
1941
1.97k
            encinit = 1;
1942
1.97k
            break;
1943
1.97k
        case OSSL_FUNC_CIPHER_DECRYPT_SKEY_INIT:
1944
1.97k
            if (cipher->dinit_skey != NULL)
1945
0
                break;
1946
1.97k
            cipher->dinit_skey = OSSL_FUNC_cipher_decrypt_skey_init(fns);
1947
1.97k
            decinit = 1;
1948
1.97k
            break;
1949
3.77k
        case OSSL_FUNC_CIPHER_UPDATE:
1950
3.77k
            if (cipher->cupdate != NULL)
1951
0
                break;
1952
3.77k
            cipher->cupdate = OSSL_FUNC_cipher_update(fns);
1953
3.77k
            fnciphcnt++;
1954
3.77k
            break;
1955
3.77k
        case OSSL_FUNC_CIPHER_FINAL:
1956
3.77k
            if (cipher->cfinal != NULL)
1957
0
                break;
1958
3.77k
            cipher->cfinal = OSSL_FUNC_cipher_final(fns);
1959
3.77k
            fnciphcnt++;
1960
3.77k
            break;
1961
3.42k
        case OSSL_FUNC_CIPHER_CIPHER:
1962
3.42k
            if (cipher->ccipher != NULL)
1963
0
                break;
1964
3.42k
            cipher->ccipher = OSSL_FUNC_cipher_cipher(fns);
1965
3.42k
            break;
1966
0
        case OSSL_FUNC_CIPHER_PIPELINE_ENCRYPT_INIT:
1967
0
            if (cipher->p_einit != NULL)
1968
0
                break;
1969
0
            cipher->p_einit = OSSL_FUNC_cipher_pipeline_encrypt_init(fns);
1970
0
            fnpipecnt++;
1971
0
            break;
1972
0
        case OSSL_FUNC_CIPHER_PIPELINE_DECRYPT_INIT:
1973
0
            if (cipher->p_dinit != NULL)
1974
0
                break;
1975
0
            cipher->p_dinit = OSSL_FUNC_cipher_pipeline_decrypt_init(fns);
1976
0
            fnpipecnt++;
1977
0
            break;
1978
0
        case OSSL_FUNC_CIPHER_PIPELINE_UPDATE:
1979
0
            if (cipher->p_cupdate != NULL)
1980
0
                break;
1981
0
            cipher->p_cupdate = OSSL_FUNC_cipher_pipeline_update(fns);
1982
0
            fnpipecnt++;
1983
0
            break;
1984
0
        case OSSL_FUNC_CIPHER_PIPELINE_FINAL:
1985
0
            if (cipher->p_cfinal != NULL)
1986
0
                break;
1987
0
            cipher->p_cfinal = OSSL_FUNC_cipher_pipeline_final(fns);
1988
0
            fnpipecnt++;
1989
0
            break;
1990
3.77k
        case OSSL_FUNC_CIPHER_FREECTX:
1991
3.77k
            if (cipher->freectx != NULL)
1992
0
                break;
1993
3.77k
            cipher->freectx = OSSL_FUNC_cipher_freectx(fns);
1994
3.77k
            fnctxcnt++;
1995
3.77k
            break;
1996
3.74k
        case OSSL_FUNC_CIPHER_DUPCTX:
1997
3.74k
            if (cipher->dupctx != NULL)
1998
0
                break;
1999
3.74k
            cipher->dupctx = OSSL_FUNC_cipher_dupctx(fns);
2000
3.74k
            break;
2001
3.77k
        case OSSL_FUNC_CIPHER_GET_PARAMS:
2002
3.77k
            if (cipher->get_params != NULL)
2003
0
                break;
2004
3.77k
            cipher->get_params = OSSL_FUNC_cipher_get_params(fns);
2005
3.77k
            break;
2006
3.77k
        case OSSL_FUNC_CIPHER_GET_CTX_PARAMS:
2007
3.77k
            if (cipher->get_ctx_params != NULL)
2008
0
                break;
2009
3.77k
            cipher->get_ctx_params = OSSL_FUNC_cipher_get_ctx_params(fns);
2010
3.77k
            break;
2011
3.77k
        case OSSL_FUNC_CIPHER_SET_CTX_PARAMS:
2012
3.77k
            if (cipher->set_ctx_params != NULL)
2013
0
                break;
2014
3.77k
            cipher->set_ctx_params = OSSL_FUNC_cipher_set_ctx_params(fns);
2015
3.77k
            break;
2016
3.77k
        case OSSL_FUNC_CIPHER_GETTABLE_PARAMS:
2017
3.77k
            if (cipher->gettable_params != NULL)
2018
0
                break;
2019
3.77k
            cipher->gettable_params = OSSL_FUNC_cipher_gettable_params(fns);
2020
3.77k
            break;
2021
3.77k
        case OSSL_FUNC_CIPHER_GETTABLE_CTX_PARAMS:
2022
3.77k
            if (cipher->gettable_ctx_params != NULL)
2023
0
                break;
2024
3.77k
            cipher->gettable_ctx_params = OSSL_FUNC_cipher_gettable_ctx_params(fns);
2025
3.77k
            break;
2026
3.77k
        case OSSL_FUNC_CIPHER_SETTABLE_CTX_PARAMS:
2027
3.77k
            if (cipher->settable_ctx_params != NULL)
2028
0
                break;
2029
3.77k
            cipher->settable_ctx_params = OSSL_FUNC_cipher_settable_ctx_params(fns);
2030
3.77k
            break;
2031
56.3k
        }
2032
56.3k
    }
2033
3.77k
    fnciphcnt += encinit + decinit;
2034
3.77k
    if ((fnciphcnt != 0 && fnciphcnt != 3 && fnciphcnt != 4)
2035
3.77k
        || (fnciphcnt == 0 && cipher->ccipher == NULL && fnpipecnt == 0)
2036
3.77k
        || (fnpipecnt != 0 && (fnpipecnt < 3 || cipher->p_cupdate == NULL || cipher->p_cfinal == NULL))
2037
3.77k
        || fnctxcnt != 2) {
2038
        /*
2039
         * In order to be a consistent set of functions we must have at least
2040
         * a complete set of "encrypt" functions, or a complete set of "decrypt"
2041
         * functions, or a single "cipher" function. In all cases we need both
2042
         * the "newctx" and "freectx" functions.
2043
         */
2044
0
        ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_PROVIDER_FUNCTIONS);
2045
0
        goto err;
2046
0
    }
2047
3.77k
    if (prov != NULL && !ossl_provider_up_ref(prov))
2048
0
        goto err;
2049
2050
3.77k
    cipher->prov = prov;
2051
2052
3.77k
    if (!evp_cipher_cache_constants(cipher)) {
2053
0
        ERR_raise(ERR_LIB_EVP, EVP_R_CACHE_CONSTANTS_FAILED);
2054
0
        goto err;
2055
0
    }
2056
2057
3.77k
    return cipher;
2058
2059
0
err:
2060
0
    EVP_CIPHER_free(cipher);
2061
0
    return NULL;
2062
3.77k
}
2063
2064
static int evp_cipher_up_ref(void *cipher)
2065
3.45M
{
2066
3.45M
    return EVP_CIPHER_up_ref(cipher);
2067
3.45M
}
2068
2069
static void evp_cipher_free(void *cipher)
2070
15.0k
{
2071
15.0k
    EVP_CIPHER_free(cipher);
2072
15.0k
}
2073
2074
EVP_CIPHER *EVP_CIPHER_fetch(OSSL_LIB_CTX *ctx, const char *algorithm,
2075
    const char *properties)
2076
4.94M
{
2077
4.94M
    EVP_CIPHER *cipher = evp_generic_fetch(ctx, OSSL_OP_CIPHER, algorithm, properties,
2078
4.94M
        evp_cipher_from_algorithm, evp_cipher_up_ref,
2079
4.94M
        evp_cipher_free);
2080
2081
4.94M
    return cipher;
2082
4.94M
}
2083
2084
EVP_CIPHER *evp_cipher_fetch_from_prov(OSSL_PROVIDER *prov,
2085
    const char *algorithm,
2086
    const char *properties)
2087
74
{
2088
74
    return evp_generic_fetch_from_prov(prov, OSSL_OP_CIPHER,
2089
74
        algorithm, properties,
2090
74
        evp_cipher_from_algorithm,
2091
74
        evp_cipher_up_ref,
2092
74
        evp_cipher_free);
2093
74
}
2094
2095
int EVP_CIPHER_can_pipeline(const EVP_CIPHER *cipher, int enc)
2096
0
{
2097
0
    if (((enc && cipher->p_einit != NULL) || (!enc && cipher->p_dinit != NULL))
2098
0
        && cipher->p_cupdate != NULL && cipher->p_cfinal != NULL)
2099
0
        return 1;
2100
2101
0
    return 0;
2102
0
}
2103
2104
int EVP_CIPHER_up_ref(EVP_CIPHER *cipher)
2105
4.58M
{
2106
4.58M
    int ref = 0;
2107
2108
4.58M
    if (cipher->origin == EVP_ORIG_DYNAMIC)
2109
4.58M
        CRYPTO_UP_REF(&cipher->refcnt, &ref);
2110
4.58M
    return 1;
2111
4.58M
}
2112
2113
void evp_cipher_free_int(EVP_CIPHER *cipher)
2114
5.83k
{
2115
5.83k
    OPENSSL_free(cipher->type_name);
2116
5.83k
    ossl_provider_free(cipher->prov);
2117
5.83k
    CRYPTO_FREE_REF(&cipher->refcnt);
2118
5.83k
    OPENSSL_free(cipher);
2119
5.83k
}
2120
2121
void EVP_CIPHER_free(EVP_CIPHER *cipher)
2122
6.25M
{
2123
6.25M
    int i;
2124
2125
6.25M
    if (cipher == NULL || cipher->origin != EVP_ORIG_DYNAMIC)
2126
1.65M
        return;
2127
2128
4.59M
    CRYPTO_DOWN_REF(&cipher->refcnt, &i);
2129
4.59M
    if (i > 0)
2130
4.58M
        return;
2131
5.83k
    evp_cipher_free_int(cipher);
2132
5.83k
}
2133
2134
void EVP_CIPHER_do_all_provided(OSSL_LIB_CTX *libctx,
2135
    void (*fn)(EVP_CIPHER *mac, void *arg),
2136
    void *arg)
2137
8
{
2138
8
    evp_generic_do_all(libctx, OSSL_OP_CIPHER,
2139
8
        (void (*)(void *, void *))fn, arg,
2140
8
        evp_cipher_from_algorithm, evp_cipher_up_ref,
2141
8
        evp_cipher_free);
2142
8
}