Coverage Report

Created: 2024-08-27 12:12

/src/openssl/crypto/modes/ctr128.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 2008-2016 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
#include <string.h>
11
#include <openssl/crypto.h>
12
#include "crypto/modes.h"
13
14
/*
15
 * NOTE: the IV/counter CTR mode is big-endian.  The code itself is
16
 * endian-neutral.
17
 */
18
19
/* increment counter (128-bit int) by 1 */
20
static void ctr128_inc(unsigned char *counter)
21
0
{
22
0
    u32 n = 16, c = 1;
23
24
0
    do {
25
0
        --n;
26
0
        c += counter[n];
27
0
        counter[n] = (u8)c;
28
0
        c >>= 8;
29
0
    } while (n);
30
0
}
31
32
#if !defined(OPENSSL_SMALL_FOOTPRINT)
33
static void ctr128_inc_aligned(unsigned char *counter)
34
0
{
35
0
    size_t *data, c, d, n;
36
0
    const union {
37
0
        long one;
38
0
        char little;
39
0
    } is_endian = {
40
0
        1
41
0
    };
42
43
0
    if (is_endian.little || ((size_t)counter % sizeof(size_t)) != 0) {
44
0
        ctr128_inc(counter);
45
0
        return;
46
0
    }
47
48
0
    data = (size_t *)counter;
49
0
    c = 1;
50
0
    n = 16 / sizeof(size_t);
51
0
    do {
52
0
        --n;
53
0
        d = data[n] += c;
54
        /* did addition carry? */
55
0
        c = ((d - c) & ~d) >> (sizeof(size_t) * 8 - 1);
56
0
    } while (n);
57
0
}
58
#endif
59
60
/*
61
 * The input encrypted as though 128bit counter mode is being used.  The
62
 * extra state information to record how much of the 128bit block we have
63
 * used is contained in *num, and the encrypted counter is kept in
64
 * ecount_buf.  Both *num and ecount_buf must be initialised with zeros
65
 * before the first call to CRYPTO_ctr128_encrypt(). This algorithm assumes
66
 * that the counter is in the x lower bits of the IV (ivec), and that the
67
 * application has full control over overflow and the rest of the IV.  This
68
 * implementation takes NO responsibility for checking that the counter
69
 * doesn't overflow into the rest of the IV when incremented.
70
 */
71
void CRYPTO_ctr128_encrypt(const unsigned char *in, unsigned char *out,
72
                           size_t len, const void *key,
73
                           unsigned char ivec[16],
74
                           unsigned char ecount_buf[16], unsigned int *num,
75
                           block128_f block)
76
0
{
77
0
    unsigned int n;
78
0
    size_t l = 0;
79
80
0
    n = *num;
81
82
0
#if !defined(OPENSSL_SMALL_FOOTPRINT)
83
0
    if (16 % sizeof(size_t) == 0) { /* always true actually */
84
0
        do {
85
0
            while (n && len) {
86
0
                *(out++) = *(in++) ^ ecount_buf[n];
87
0
                --len;
88
0
                n = (n + 1) % 16;
89
0
            }
90
91
0
# if defined(STRICT_ALIGNMENT)
92
0
            if (((size_t)in | (size_t)out | (size_t)ecount_buf)
93
0
                % sizeof(size_t) != 0)
94
0
                break;
95
0
# endif
96
0
            while (len >= 16) {
97
0
                (*block) (ivec, ecount_buf, key);
98
0
                ctr128_inc_aligned(ivec);
99
0
                for (n = 0; n < 16; n += sizeof(size_t))
100
0
                    *(size_t *)(out + n) =
101
0
                        *(size_t *)(in + n) ^ *(size_t *)(ecount_buf + n);
102
0
                len -= 16;
103
0
                out += 16;
104
0
                in += 16;
105
0
                n = 0;
106
0
            }
107
0
            if (len) {
108
0
                (*block) (ivec, ecount_buf, key);
109
0
                ctr128_inc_aligned(ivec);
110
0
                while (len--) {
111
0
                    out[n] = in[n] ^ ecount_buf[n];
112
0
                    ++n;
113
0
                }
114
0
            }
115
0
            *num = n;
116
0
            return;
117
0
        } while (0);
118
0
    }
119
    /* the rest would be commonly eliminated by x86* compiler */
120
0
#endif
121
0
    while (l < len) {
122
0
        if (n == 0) {
123
0
            (*block) (ivec, ecount_buf, key);
124
0
            ctr128_inc(ivec);
125
0
        }
126
0
        out[l] = in[l] ^ ecount_buf[n];
127
0
        ++l;
128
0
        n = (n + 1) % 16;
129
0
    }
130
131
0
    *num = n;
132
0
}
133
134
/* increment upper 96 bits of 128-bit counter by 1 */
135
static void ctr96_inc(unsigned char *counter)
136
0
{
137
0
    u32 n = 12, c = 1;
138
139
0
    do {
140
0
        --n;
141
0
        c += counter[n];
142
0
        counter[n] = (u8)c;
143
0
        c >>= 8;
144
0
    } while (n);
145
0
}
146
147
void CRYPTO_ctr128_encrypt_ctr32(const unsigned char *in, unsigned char *out,
148
                                 size_t len, const void *key,
149
                                 unsigned char ivec[16],
150
                                 unsigned char ecount_buf[16],
151
                                 unsigned int *num, ctr128_f func)
152
0
{
153
0
    unsigned int n, ctr32;
154
155
0
    n = *num;
156
157
0
    while (n && len) {
158
0
        *(out++) = *(in++) ^ ecount_buf[n];
159
0
        --len;
160
0
        n = (n + 1) % 16;
161
0
    }
162
163
0
    ctr32 = GETU32(ivec + 12);
164
0
    while (len >= 16) {
165
0
        size_t blocks = len / 16;
166
        /*
167
         * 1<<28 is just a not-so-small yet not-so-large number...
168
         * Below condition is practically never met, but it has to
169
         * be checked for code correctness.
170
         */
171
0
        if (sizeof(size_t) > sizeof(unsigned int) && blocks > (1U << 28))
172
0
            blocks = (1U << 28);
173
        /*
174
         * As (*func) operates on 32-bit counter, caller
175
         * has to handle overflow. 'if' below detects the
176
         * overflow, which is then handled by limiting the
177
         * amount of blocks to the exact overflow point...
178
         */
179
0
        ctr32 += (u32)blocks;
180
0
        if (ctr32 < blocks) {
181
0
            blocks -= ctr32;
182
0
            ctr32 = 0;
183
0
        }
184
0
        (*func) (in, out, blocks, key, ivec);
185
        /* (*ctr) does not update ivec, caller does: */
186
0
        PUTU32(ivec + 12, ctr32);
187
        /* ... overflow was detected, propagate carry. */
188
0
        if (ctr32 == 0)
189
0
            ctr96_inc(ivec);
190
0
        blocks *= 16;
191
0
        len -= blocks;
192
0
        out += blocks;
193
0
        in += blocks;
194
0
    }
195
0
    if (len) {
196
0
        memset(ecount_buf, 0, 16);
197
0
        (*func) (ecount_buf, ecount_buf, 1, key, ivec);
198
0
        ++ctr32;
199
0
        PUTU32(ivec + 12, ctr32);
200
0
        if (ctr32 == 0)
201
0
            ctr96_inc(ivec);
202
0
        while (len--) {
203
0
            out[n] = in[n] ^ ecount_buf[n];
204
0
            ++n;
205
0
        }
206
0
    }
207
208
0
    *num = n;
209
0
}