Coverage Report

Created: 2025-12-14 06:48

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl/include/crypto/md32_common.h
Line
Count
Source
1
/*
2
 * Copyright 1999-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
/*-
11
 * This is a generic 32 bit "collector" for message digest algorithms.
12
 * Whenever needed it collects input character stream into chunks of
13
 * 32 bit values and invokes a block function that performs actual hash
14
 * calculations.
15
 *
16
 * Porting guide.
17
 *
18
 * Obligatory macros:
19
 *
20
 * DATA_ORDER_IS_BIG_ENDIAN or DATA_ORDER_IS_LITTLE_ENDIAN
21
 *      this macro defines byte order of input stream.
22
 * HASH_CBLOCK
23
 *      size of a unit chunk HASH_BLOCK operates on.
24
 * HASH_LONG
25
 *      has to be at least 32 bit wide.
26
 * HASH_CTX
27
 *      context structure that at least contains following
28
 *      members:
29
 *              typedef struct {
30
 *                      ...
31
 *                      HASH_LONG       Nl,Nh;
32
 *                      either {
33
 *                      HASH_LONG       data[HASH_LBLOCK];
34
 *                      unsigned char   data[HASH_CBLOCK];
35
 *                      };
36
 *                      unsigned int    num;
37
 *                      ...
38
 *                      } HASH_CTX;
39
 *      data[] vector is expected to be zeroed upon first call to
40
 *      HASH_UPDATE.
41
 * HASH_UPDATE
42
 *      name of "Update" function, implemented here.
43
 * HASH_TRANSFORM
44
 *      name of "Transform" function, implemented here.
45
 * HASH_FINAL
46
 *      name of "Final" function, implemented here.
47
 * HASH_BLOCK_DATA_ORDER
48
 *      name of "block" function capable of treating *unaligned* input
49
 *      message in original (data) byte order, implemented externally.
50
 * HASH_MAKE_STRING
51
 *      macro converting context variables to an ASCII hash string.
52
 *
53
 * MD5 example:
54
 *
55
 *      #define DATA_ORDER_IS_LITTLE_ENDIAN
56
 *
57
 *      #define HASH_LONG               MD5_LONG
58
 *      #define HASH_CTX                MD5_CTX
59
 *      #define HASH_CBLOCK             MD5_CBLOCK
60
 *      #define HASH_UPDATE             MD5_Update
61
 *      #define HASH_TRANSFORM          MD5_Transform
62
 *      #define HASH_FINAL              MD5_Final
63
 *      #define HASH_BLOCK_DATA_ORDER   md5_block_data_order
64
 */
65
66
#ifndef OSSL_CRYPTO_MD32_COMMON_H
67
#define OSSL_CRYPTO_MD32_COMMON_H
68
#pragma once
69
70
#include <openssl/crypto.h>
71
/*
72
 * For ossl_(un)likely
73
 */
74
#include <internal/common.h>
75
76
#if !defined(DATA_ORDER_IS_BIG_ENDIAN) && !defined(DATA_ORDER_IS_LITTLE_ENDIAN)
77
#error "DATA_ORDER must be defined!"
78
#endif
79
80
#ifndef HASH_CBLOCK
81
#error "HASH_CBLOCK must be defined!"
82
#endif
83
#ifndef HASH_LONG
84
#error "HASH_LONG must be defined!"
85
#endif
86
#ifndef HASH_CTX
87
#error "HASH_CTX must be defined!"
88
#endif
89
90
#ifndef HASH_UPDATE
91
#error "HASH_UPDATE must be defined!"
92
#endif
93
#ifndef HASH_TRANSFORM
94
#error "HASH_TRANSFORM must be defined!"
95
#endif
96
#ifndef HASH_FINAL
97
#error "HASH_FINAL must be defined!"
98
#endif
99
100
#ifndef HASH_BLOCK_DATA_ORDER
101
#error "HASH_BLOCK_DATA_ORDER must be defined!"
102
#endif
103
104
0
#define ROTATE(a, n) (((a) << (n)) | (((a) & 0xffffffff) >> (32 - (n))))
105
106
#ifndef PEDANTIC
107
#if defined(__GNUC__) && __GNUC__ >= 2 && !defined(OPENSSL_NO_ASM) && !defined(OPENSSL_NO_INLINE_ASM)
108
#if defined(__riscv_zbb) || defined(__riscv_zbkb)
109
#if __riscv_xlen == 64
110
#undef ROTATE
111
#define ROTATE(x, n) ({ MD32_REG_T ret;            \
112
                       asm ("roriw %0, %1, %2"        \
113
                       : "=r"(ret)                    \
114
                       : "r"(x), "i"(32 - (n))); ret; })
115
#endif
116
#if __riscv_xlen == 32
117
#undef ROTATE
118
#define ROTATE(x, n) ({ MD32_REG_T ret;            \
119
                       asm ("rori %0, %1, %2"         \
120
                       : "=r"(ret)                    \
121
                       : "r"(x), "i"(32 - (n))); ret; })
122
#endif
123
#endif
124
#endif
125
#endif
126
127
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
128
129
0
#define HOST_c2l(c, l) (l = (((unsigned long)(*((c)++))) << 24), \
130
0
    l |= (((unsigned long)(*((c)++))) << 16),                    \
131
0
    l |= (((unsigned long)(*((c)++))) << 8),                     \
132
0
    l |= (((unsigned long)(*((c)++)))))
133
1.15M
#define HOST_l2c(l, c) (*((c)++) = (unsigned char)(((l) >> 24) & 0xff), \
134
1.15M
    *((c)++) = (unsigned char)(((l) >> 16) & 0xff),                     \
135
1.15M
    *((c)++) = (unsigned char)(((l) >> 8) & 0xff),                      \
136
1.15M
    *((c)++) = (unsigned char)(((l)) & 0xff),                           \
137
1.15M
    l)
138
139
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
140
141
0
#define HOST_c2l(c, l) (l = (((unsigned long)(*((c)++)))), \
142
0
    l |= (((unsigned long)(*((c)++))) << 8),               \
143
0
    l |= (((unsigned long)(*((c)++))) << 16),              \
144
0
    l |= (((unsigned long)(*((c)++))) << 24))
145
0
#define HOST_l2c(l, c) (*((c)++) = (unsigned char)(((l)) & 0xff), \
146
0
    *((c)++) = (unsigned char)(((l) >> 8) & 0xff),                \
147
0
    *((c)++) = (unsigned char)(((l) >> 16) & 0xff),               \
148
0
    *((c)++) = (unsigned char)(((l) >> 24) & 0xff),               \
149
0
    l)
150
151
#endif
152
153
/*
154
 * Time for some action :-)
155
 */
156
157
int HASH_UPDATE(HASH_CTX *c, const void *data_, size_t len)
158
122k
{
159
122k
    const unsigned char *data = data_;
160
122k
    unsigned char *p;
161
122k
    HASH_LONG l;
162
122k
    size_t n;
163
164
122k
    if (ossl_unlikely(len == 0))
165
0
        return 1;
166
167
122k
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
168
122k
    if (ossl_unlikely(l < c->Nl)) /* overflow */
169
0
        c->Nh++;
170
122k
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
171
                                      * 16-bit */
172
122k
    c->Nl = l;
173
174
122k
    n = c->num;
175
122k
    if (ossl_likely(n != 0)) {
176
3.14k
        p = (unsigned char *)c->data;
177
178
3.14k
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
179
3.14k
            memcpy(p + n, data, HASH_CBLOCK - n);
180
3.14k
            HASH_BLOCK_DATA_ORDER(c, p, 1);
181
3.14k
            n = HASH_CBLOCK - n;
182
3.14k
            data += n;
183
3.14k
            len -= n;
184
3.14k
            c->num = 0;
185
            /*
186
             * We use memset rather than OPENSSL_cleanse() here deliberately.
187
             * Using OPENSSL_cleanse() here could be a performance issue. It
188
             * will get properly cleansed on finalisation so this isn't a
189
             * security problem.
190
             */
191
3.14k
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
192
3.14k
        } else {
193
0
            memcpy(p + n, data, len);
194
0
            c->num += (unsigned int)len;
195
0
            return 1;
196
0
        }
197
3.14k
    }
198
199
122k
    n = len / HASH_CBLOCK;
200
122k
    if (n > 0) {
201
104k
        HASH_BLOCK_DATA_ORDER(c, data, n);
202
104k
        n *= HASH_CBLOCK;
203
104k
        data += n;
204
104k
        len -= n;
205
104k
    }
206
207
122k
    if (len != 0) {
208
121k
        p = (unsigned char *)c->data;
209
121k
        c->num = (unsigned int)len;
210
121k
        memcpy(p, data, len);
211
121k
    }
212
122k
    return 1;
213
122k
}
SHA1_Update
Line
Count
Source
158
13.3k
{
159
13.3k
    const unsigned char *data = data_;
160
13.3k
    unsigned char *p;
161
13.3k
    HASH_LONG l;
162
13.3k
    size_t n;
163
164
13.3k
    if (ossl_unlikely(len == 0))
165
0
        return 1;
166
167
13.3k
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
168
13.3k
    if (ossl_unlikely(l < c->Nl)) /* overflow */
169
0
        c->Nh++;
170
13.3k
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
171
                                      * 16-bit */
172
13.3k
    c->Nl = l;
173
174
13.3k
    n = c->num;
175
13.3k
    if (ossl_likely(n != 0)) {
176
0
        p = (unsigned char *)c->data;
177
178
0
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
179
0
            memcpy(p + n, data, HASH_CBLOCK - n);
180
0
            HASH_BLOCK_DATA_ORDER(c, p, 1);
181
0
            n = HASH_CBLOCK - n;
182
0
            data += n;
183
0
            len -= n;
184
0
            c->num = 0;
185
            /*
186
             * We use memset rather than OPENSSL_cleanse() here deliberately.
187
             * Using OPENSSL_cleanse() here could be a performance issue. It
188
             * will get properly cleansed on finalisation so this isn't a
189
             * security problem.
190
             */
191
0
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
192
0
        } else {
193
0
            memcpy(p + n, data, len);
194
0
            c->num += (unsigned int)len;
195
0
            return 1;
196
0
        }
197
0
    }
198
199
13.3k
    n = len / HASH_CBLOCK;
200
13.3k
    if (n > 0) {
201
12.6k
        HASH_BLOCK_DATA_ORDER(c, data, n);
202
12.6k
        n *= HASH_CBLOCK;
203
12.6k
        data += n;
204
12.6k
        len -= n;
205
12.6k
    }
206
207
13.3k
    if (len != 0) {
208
13.0k
        p = (unsigned char *)c->data;
209
13.0k
        c->num = (unsigned int)len;
210
13.0k
        memcpy(p, data, len);
211
13.0k
    }
212
13.3k
    return 1;
213
13.3k
}
SHA256_Update
Line
Count
Source
158
109k
{
159
109k
    const unsigned char *data = data_;
160
109k
    unsigned char *p;
161
109k
    HASH_LONG l;
162
109k
    size_t n;
163
164
109k
    if (ossl_unlikely(len == 0))
165
0
        return 1;
166
167
109k
    l = (c->Nl + (((HASH_LONG)len) << 3)) & 0xffffffffUL;
168
109k
    if (ossl_unlikely(l < c->Nl)) /* overflow */
169
0
        c->Nh++;
170
109k
    c->Nh += (HASH_LONG)(len >> 29); /* might cause compiler warning on
171
                                      * 16-bit */
172
109k
    c->Nl = l;
173
174
109k
    n = c->num;
175
109k
    if (ossl_likely(n != 0)) {
176
3.14k
        p = (unsigned char *)c->data;
177
178
3.14k
        if (len >= HASH_CBLOCK || len + n >= HASH_CBLOCK) {
179
3.14k
            memcpy(p + n, data, HASH_CBLOCK - n);
180
3.14k
            HASH_BLOCK_DATA_ORDER(c, p, 1);
181
3.14k
            n = HASH_CBLOCK - n;
182
3.14k
            data += n;
183
3.14k
            len -= n;
184
3.14k
            c->num = 0;
185
            /*
186
             * We use memset rather than OPENSSL_cleanse() here deliberately.
187
             * Using OPENSSL_cleanse() here could be a performance issue. It
188
             * will get properly cleansed on finalisation so this isn't a
189
             * security problem.
190
             */
191
3.14k
            memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
192
3.14k
        } else {
193
0
            memcpy(p + n, data, len);
194
0
            c->num += (unsigned int)len;
195
0
            return 1;
196
0
        }
197
3.14k
    }
198
199
109k
    n = len / HASH_CBLOCK;
200
109k
    if (n > 0) {
201
92.0k
        HASH_BLOCK_DATA_ORDER(c, data, n);
202
92.0k
        n *= HASH_CBLOCK;
203
92.0k
        data += n;
204
92.0k
        len -= n;
205
92.0k
    }
206
207
109k
    if (len != 0) {
208
108k
        p = (unsigned char *)c->data;
209
108k
        c->num = (unsigned int)len;
210
108k
        memcpy(p, data, len);
211
108k
    }
212
109k
    return 1;
213
109k
}
Unexecuted instantiation: MD4_Update
Unexecuted instantiation: MD5_Update
Unexecuted instantiation: RIPEMD160_Update
Unexecuted instantiation: ossl_sm3_update
214
215
void HASH_TRANSFORM(HASH_CTX *c, const unsigned char *data)
216
0
{
217
0
    HASH_BLOCK_DATA_ORDER(c, data, 1);
218
0
}
Unexecuted instantiation: SHA1_Transform
Unexecuted instantiation: SHA256_Transform
Unexecuted instantiation: MD4_Transform
Unexecuted instantiation: MD5_Transform
Unexecuted instantiation: RIPEMD160_Transform
Unexecuted instantiation: ossl_sm3_transform
219
220
int HASH_FINAL(unsigned char *md, HASH_CTX *c)
221
119k
{
222
119k
    unsigned char *p = (unsigned char *)c->data;
223
119k
    size_t n = c->num;
224
225
119k
    p[n] = 0x80; /* there is always room for one */
226
119k
    n++;
227
228
119k
    if (n > (HASH_CBLOCK - 8)) {
229
6.00k
        memset(p + n, 0, HASH_CBLOCK - n);
230
6.00k
        n = 0;
231
6.00k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
232
6.00k
    }
233
119k
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
234
235
119k
    p += HASH_CBLOCK - 8;
236
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
237
119k
    (void)HOST_l2c(c->Nh, p);
238
119k
    (void)HOST_l2c(c->Nl, p);
239
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
240
0
    (void)HOST_l2c(c->Nl, p);
241
0
    (void)HOST_l2c(c->Nh, p);
242
#endif
243
119k
    p -= HASH_CBLOCK;
244
119k
    HASH_BLOCK_DATA_ORDER(c, p, 1);
245
119k
    c->num = 0;
246
119k
    OPENSSL_cleanse(p, HASH_CBLOCK);
247
248
#ifndef HASH_MAKE_STRING
249
#error "HASH_MAKE_STRING must be defined!"
250
#else
251
119k
    HASH_MAKE_STRING(c, md);
252
106k
#endif
253
254
106k
    return 1;
255
119k
}
SHA1_Final
Line
Count
Source
221
13.3k
{
222
13.3k
    unsigned char *p = (unsigned char *)c->data;
223
13.3k
    size_t n = c->num;
224
225
13.3k
    p[n] = 0x80; /* there is always room for one */
226
13.3k
    n++;
227
228
13.3k
    if (n > (HASH_CBLOCK - 8)) {
229
1.25k
        memset(p + n, 0, HASH_CBLOCK - n);
230
1.25k
        n = 0;
231
1.25k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
232
1.25k
    }
233
13.3k
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
234
235
13.3k
    p += HASH_CBLOCK - 8;
236
13.3k
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
237
13.3k
    (void)HOST_l2c(c->Nh, p);
238
13.3k
    (void)HOST_l2c(c->Nl, p);
239
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
240
    (void)HOST_l2c(c->Nl, p);
241
    (void)HOST_l2c(c->Nh, p);
242
#endif
243
13.3k
    p -= HASH_CBLOCK;
244
13.3k
    HASH_BLOCK_DATA_ORDER(c, p, 1);
245
13.3k
    c->num = 0;
246
13.3k
    OPENSSL_cleanse(p, HASH_CBLOCK);
247
248
#ifndef HASH_MAKE_STRING
249
#error "HASH_MAKE_STRING must be defined!"
250
#else
251
13.3k
    HASH_MAKE_STRING(c, md);
252
13.3k
#endif
253
254
13.3k
    return 1;
255
13.3k
}
SHA256_Final
Line
Count
Source
221
106k
{
222
106k
    unsigned char *p = (unsigned char *)c->data;
223
106k
    size_t n = c->num;
224
225
106k
    p[n] = 0x80; /* there is always room for one */
226
106k
    n++;
227
228
106k
    if (n > (HASH_CBLOCK - 8)) {
229
4.74k
        memset(p + n, 0, HASH_CBLOCK - n);
230
4.74k
        n = 0;
231
4.74k
        HASH_BLOCK_DATA_ORDER(c, p, 1);
232
4.74k
    }
233
106k
    memset(p + n, 0, HASH_CBLOCK - 8 - n);
234
235
106k
    p += HASH_CBLOCK - 8;
236
106k
#if defined(DATA_ORDER_IS_BIG_ENDIAN)
237
106k
    (void)HOST_l2c(c->Nh, p);
238
106k
    (void)HOST_l2c(c->Nl, p);
239
#elif defined(DATA_ORDER_IS_LITTLE_ENDIAN)
240
    (void)HOST_l2c(c->Nl, p);
241
    (void)HOST_l2c(c->Nh, p);
242
#endif
243
106k
    p -= HASH_CBLOCK;
244
106k
    HASH_BLOCK_DATA_ORDER(c, p, 1);
245
106k
    c->num = 0;
246
106k
    OPENSSL_cleanse(p, HASH_CBLOCK);
247
248
#ifndef HASH_MAKE_STRING
249
#error "HASH_MAKE_STRING must be defined!"
250
#else
251
106k
    HASH_MAKE_STRING(c, md);
252
106k
#endif
253
254
106k
    return 1;
255
106k
}
Unexecuted instantiation: MD4_Final
Unexecuted instantiation: MD5_Final
Unexecuted instantiation: RIPEMD160_Final
Unexecuted instantiation: ossl_sm3_final
256
257
#ifndef MD32_REG_T
258
#if defined(__alpha) || defined(__sparcv9) || defined(__mips)
259
#define MD32_REG_T long
260
/*
261
 * This comment was originally written for MD5, which is why it
262
 * discusses A-D. But it basically applies to all 32-bit digests,
263
 * which is why it was moved to common header file.
264
 *
265
 * In case you wonder why A-D are declared as long and not
266
 * as MD5_LONG. Doing so results in slight performance
267
 * boost on LP64 architectures. The catch is we don't
268
 * really care if 32 MSBs of a 64-bit register get polluted
269
 * with eventual overflows as we *save* only 32 LSBs in
270
 * *either* case. Now declaring 'em long excuses the compiler
271
 * from keeping 32 MSBs zeroed resulting in 13% performance
272
 * improvement under SPARC Solaris7/64 and 5% under AlphaLinux.
273
 * Well, to be honest it should say that this *prevents*
274
 * performance degradation.
275
 */
276
#else
277
/*
278
 * Above is not absolute and there are LP64 compilers that
279
 * generate better code if MD32_REG_T is defined int. The above
280
 * pre-processor condition reflects the circumstances under which
281
 * the conclusion was made and is subject to further extension.
282
 */
283
#define MD32_REG_T int
284
#endif
285
#endif
286
287
#endif