Coverage Report

Created: 2026-04-01 06:39

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl36/providers/implementations/ciphers/cipher_chacha20_hw.c
Line
Count
Source
1
/*
2
 * Copyright 2019-2025 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4
 * Licensed under the Apache License 2.0 (the "License").  You may not use
5
 * this file except in compliance with the License.  You can obtain a copy
6
 * in the file LICENSE in the source distribution or at
7
 * https://www.openssl.org/source/license.html
8
 */
9
10
/* chacha20 cipher implementation */
11
12
#include "cipher_chacha20.h"
13
14
static int chacha20_initkey(PROV_CIPHER_CTX *bctx, const uint8_t *key,
15
    size_t keylen)
16
13.0k
{
17
13.0k
    PROV_CHACHA20_CTX *ctx = (PROV_CHACHA20_CTX *)bctx;
18
13.0k
    unsigned int i;
19
20
13.0k
    if (key != NULL) {
21
117k
        for (i = 0; i < CHACHA_KEY_SIZE; i += 4)
22
104k
            ctx->key.d[i / 4] = CHACHA_U8TOU32(key + i);
23
13.0k
    }
24
13.0k
    ctx->partial_len = 0;
25
13.0k
    return 1;
26
13.0k
}
27
28
static int chacha20_initiv(PROV_CIPHER_CTX *bctx)
29
301k
{
30
301k
    PROV_CHACHA20_CTX *ctx = (PROV_CHACHA20_CTX *)bctx;
31
301k
    unsigned int i;
32
33
301k
    if (bctx->iv_set) {
34
1.50M
        for (i = 0; i < CHACHA_CTR_SIZE; i += 4)
35
1.20M
            ctx->counter[i / 4] = CHACHA_U8TOU32(bctx->oiv + i);
36
301k
    }
37
301k
    ctx->partial_len = 0;
38
301k
    return 1;
39
301k
}
40
41
static int chacha20_cipher(PROV_CIPHER_CTX *bctx, unsigned char *out,
42
    const unsigned char *in, size_t inl)
43
116k
{
44
116k
    PROV_CHACHA20_CTX *ctx = (PROV_CHACHA20_CTX *)bctx;
45
116k
    unsigned int n, rem, ctr32;
46
47
116k
    n = ctx->partial_len;
48
116k
    if (n > 0) {
49
2.83k
        while (inl > 0 && n < CHACHA_BLK_SIZE) {
50
2.65k
            *out++ = *in++ ^ ctx->buf[n++];
51
2.65k
            inl--;
52
2.65k
        }
53
185
        ctx->partial_len = n;
54
55
185
        if (inl == 0)
56
167
            return 1;
57
58
18
        if (n == CHACHA_BLK_SIZE)
59
18
            ctx->partial_len = 0;
60
18
    }
61
62
116k
    rem = (unsigned int)(inl % CHACHA_BLK_SIZE);
63
116k
    inl -= rem;
64
116k
    ctr32 = ctx->counter[0];
65
120k
    while (inl >= CHACHA_BLK_SIZE) {
66
4.37k
        size_t blocks = inl / CHACHA_BLK_SIZE;
67
68
        /*
69
         * 1<<28 is just a not-so-small yet not-so-large number...
70
         * Below condition is practically never met, but it has to
71
         * be checked for code correctness.
72
         */
73
4.37k
        if (sizeof(size_t) > sizeof(unsigned int) && blocks > (1U << 28))
74
0
            blocks = (1U << 28);
75
76
        /*
77
         * As ChaCha20_ctr32 operates on 32-bit counter, caller
78
         * has to handle overflow. 'if' below detects the
79
         * overflow, which is then handled by limiting the
80
         * amount of blocks to the exact overflow point...
81
         */
82
4.37k
        ctr32 += (unsigned int)blocks;
83
4.37k
        if (ctr32 < blocks) {
84
0
            blocks -= ctr32;
85
0
            ctr32 = 0;
86
0
        }
87
4.37k
        blocks *= CHACHA_BLK_SIZE;
88
4.37k
        ChaCha20_ctr32(out, in, blocks, ctx->key.d, ctx->counter);
89
4.37k
        inl -= blocks;
90
4.37k
        in += blocks;
91
4.37k
        out += blocks;
92
93
4.37k
        ctx->counter[0] = ctr32;
94
4.37k
        if (ctr32 == 0)
95
0
            ctx->counter[1]++;
96
4.37k
    }
97
98
116k
    if (rem > 0) {
99
114k
        memset(ctx->buf, 0, sizeof(ctx->buf));
100
114k
        ChaCha20_ctr32(ctx->buf, ctx->buf, CHACHA_BLK_SIZE,
101
114k
            ctx->key.d, ctx->counter);
102
103
        /* propagate counter overflow */
104
114k
        if (++ctx->counter[0] == 0)
105
52
            ctx->counter[1]++;
106
107
738k
        for (n = 0; n < rem; n++)
108
623k
            out[n] = in[n] ^ ctx->buf[n];
109
114k
        ctx->partial_len = rem;
110
114k
    }
111
112
116k
    return 1;
113
116k
}
114
115
static const PROV_CIPHER_HW_CHACHA20 chacha20_hw = {
116
    { chacha20_initkey, chacha20_cipher },
117
    chacha20_initiv
118
};
119
120
const PROV_CIPHER_HW *ossl_prov_cipher_hw_chacha20(size_t keybits)
121
13.0k
{
122
13.0k
    return (PROV_CIPHER_HW *)&chacha20_hw;
123
13.0k
}