Coverage Report

Created: 2025-12-31 06:58

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl35/crypto/evp/mac_meth.c
Line
Count
Source
1
/*
2
 * Copyright 2022-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
#include <openssl/evp.h>
11
#include <openssl/err.h>
12
#include <openssl/core.h>
13
#include <openssl/core_dispatch.h>
14
#include "internal/provider.h"
15
#include "internal/core.h"
16
#include "crypto/evp.h"
17
#include "evp_local.h"
18
19
static int evp_mac_up_ref(void *vmac)
20
2.06M
{
21
2.06M
    EVP_MAC *mac = vmac;
22
2.06M
    int ref = 0;
23
24
2.06M
    CRYPTO_UP_REF(&mac->refcnt, &ref);
25
2.06M
    return 1;
26
2.06M
}
27
28
static void evp_mac_free(void *vmac)
29
2.17M
{
30
2.17M
    EVP_MAC *mac = vmac;
31
2.17M
    int ref = 0;
32
33
2.17M
    if (mac == NULL)
34
109k
        return;
35
36
2.06M
    CRYPTO_DOWN_REF(&mac->refcnt, &ref);
37
2.06M
    if (ref > 0)
38
2.06M
        return;
39
324
    OPENSSL_free(mac->type_name);
40
324
    ossl_provider_free(mac->prov);
41
324
    CRYPTO_FREE_REF(&mac->refcnt);
42
324
    OPENSSL_free(mac);
43
324
}
44
45
static void *evp_mac_new(void)
46
459
{
47
459
    EVP_MAC *mac = NULL;
48
49
459
    if ((mac = OPENSSL_zalloc(sizeof(*mac))) == NULL
50
459
        || !CRYPTO_NEW_REF(&mac->refcnt, 1)) {
51
0
        evp_mac_free(mac);
52
0
        return NULL;
53
0
    }
54
459
    return mac;
55
459
}
56
57
static void *evp_mac_from_algorithm(int name_id,
58
    const OSSL_ALGORITHM *algodef,
59
    OSSL_PROVIDER *prov)
60
342
{
61
342
    const OSSL_DISPATCH *fns = algodef->implementation;
62
342
    EVP_MAC *mac = NULL;
63
342
    int fnmaccnt = 0, fnctxcnt = 0, mac_init_found = 0;
64
65
342
    if ((mac = evp_mac_new()) == NULL) {
66
0
        ERR_raise(ERR_LIB_EVP, ERR_R_EVP_LIB);
67
0
        goto err;
68
0
    }
69
342
    mac->name_id = name_id;
70
71
342
    if ((mac->type_name = ossl_algorithm_get1_first_name(algodef)) == NULL)
72
0
        goto err;
73
74
342
    mac->description = algodef->algorithm_description;
75
76
3.76k
    for (; fns->function_id != 0; fns++) {
77
3.42k
        switch (fns->function_id) {
78
342
        case OSSL_FUNC_MAC_NEWCTX:
79
342
            if (mac->newctx != NULL)
80
0
                break;
81
342
            mac->newctx = OSSL_FUNC_mac_newctx(fns);
82
342
            fnctxcnt++;
83
342
            break;
84
342
        case OSSL_FUNC_MAC_DUPCTX:
85
342
            if (mac->dupctx != NULL)
86
0
                break;
87
342
            mac->dupctx = OSSL_FUNC_mac_dupctx(fns);
88
342
            break;
89
342
        case OSSL_FUNC_MAC_FREECTX:
90
342
            if (mac->freectx != NULL)
91
0
                break;
92
342
            mac->freectx = OSSL_FUNC_mac_freectx(fns);
93
342
            fnctxcnt++;
94
342
            break;
95
342
        case OSSL_FUNC_MAC_INIT:
96
342
            if (mac->init != NULL)
97
0
                break;
98
342
            mac->init = OSSL_FUNC_mac_init(fns);
99
342
            mac_init_found = 1;
100
342
            break;
101
342
        case OSSL_FUNC_MAC_UPDATE:
102
342
            if (mac->update != NULL)
103
0
                break;
104
342
            mac->update = OSSL_FUNC_mac_update(fns);
105
342
            fnmaccnt++;
106
342
            break;
107
342
        case OSSL_FUNC_MAC_FINAL:
108
342
            if (mac->final != NULL)
109
0
                break;
110
342
            mac->final = OSSL_FUNC_mac_final(fns);
111
342
            fnmaccnt++;
112
342
            break;
113
76
        case OSSL_FUNC_MAC_GETTABLE_PARAMS:
114
76
            if (mac->gettable_params != NULL)
115
0
                break;
116
76
            mac->gettable_params = OSSL_FUNC_mac_gettable_params(fns);
117
76
            break;
118
266
        case OSSL_FUNC_MAC_GETTABLE_CTX_PARAMS:
119
266
            if (mac->gettable_ctx_params != NULL)
120
0
                break;
121
266
            mac->gettable_ctx_params = OSSL_FUNC_mac_gettable_ctx_params(fns);
122
266
            break;
123
342
        case OSSL_FUNC_MAC_SETTABLE_CTX_PARAMS:
124
342
            if (mac->settable_ctx_params != NULL)
125
0
                break;
126
342
            mac->settable_ctx_params = OSSL_FUNC_mac_settable_ctx_params(fns);
127
342
            break;
128
76
        case OSSL_FUNC_MAC_GET_PARAMS:
129
76
            if (mac->get_params != NULL)
130
0
                break;
131
76
            mac->get_params = OSSL_FUNC_mac_get_params(fns);
132
76
            break;
133
266
        case OSSL_FUNC_MAC_GET_CTX_PARAMS:
134
266
            if (mac->get_ctx_params != NULL)
135
0
                break;
136
266
            mac->get_ctx_params = OSSL_FUNC_mac_get_ctx_params(fns);
137
266
            break;
138
342
        case OSSL_FUNC_MAC_SET_CTX_PARAMS:
139
342
            if (mac->set_ctx_params != NULL)
140
0
                break;
141
342
            mac->set_ctx_params = OSSL_FUNC_mac_set_ctx_params(fns);
142
342
            break;
143
0
        case OSSL_FUNC_MAC_INIT_SKEY:
144
0
            if (mac->init_skey != NULL)
145
0
                break;
146
0
            mac->init_skey = OSSL_FUNC_mac_init_skey(fns);
147
0
            mac_init_found = 1;
148
0
            break;
149
3.42k
        }
150
3.42k
    }
151
342
    fnmaccnt += mac_init_found;
152
342
    if (fnmaccnt != 3
153
342
        || fnctxcnt != 2) {
154
        /*
155
         * In order to be a consistent set of functions we must have at least
156
         * a complete set of "mac" functions, and a complete set of context
157
         * management functions, as well as the size function.
158
         */
159
0
        ERR_raise(ERR_LIB_EVP, EVP_R_INVALID_PROVIDER_FUNCTIONS);
160
0
        goto err;
161
0
    }
162
163
342
    if (prov != NULL && !ossl_provider_up_ref(prov))
164
0
        goto err;
165
166
342
    mac->prov = prov;
167
168
342
    return mac;
169
170
0
err:
171
0
    evp_mac_free(mac);
172
0
    return NULL;
173
342
}
174
175
EVP_MAC *EVP_MAC_fetch(OSSL_LIB_CTX *libctx, const char *algorithm,
176
    const char *properties)
177
373k
{
178
373k
    return evp_generic_fetch(libctx, OSSL_OP_MAC, algorithm, properties,
179
373k
        evp_mac_from_algorithm, evp_mac_up_ref,
180
373k
        evp_mac_free);
181
373k
}
182
183
int EVP_MAC_up_ref(EVP_MAC *mac)
184
1.68M
{
185
1.68M
    return evp_mac_up_ref(mac);
186
1.68M
}
187
188
void EVP_MAC_free(EVP_MAC *mac)
189
2.17M
{
190
2.17M
    evp_mac_free(mac);
191
2.17M
}
192
193
const OSSL_PROVIDER *EVP_MAC_get0_provider(const EVP_MAC *mac)
194
153k
{
195
153k
    return mac->prov;
196
153k
}
197
198
const OSSL_PARAM *EVP_MAC_gettable_params(const EVP_MAC *mac)
199
0
{
200
0
    if (mac->gettable_params == NULL)
201
0
        return NULL;
202
0
    return mac->gettable_params(ossl_provider_ctx(EVP_MAC_get0_provider(mac)));
203
0
}
204
205
const OSSL_PARAM *EVP_MAC_gettable_ctx_params(const EVP_MAC *mac)
206
0
{
207
0
    void *alg;
208
209
0
    if (mac->gettable_ctx_params == NULL)
210
0
        return NULL;
211
0
    alg = ossl_provider_ctx(EVP_MAC_get0_provider(mac));
212
0
    return mac->gettable_ctx_params(NULL, alg);
213
0
}
214
215
const OSSL_PARAM *EVP_MAC_settable_ctx_params(const EVP_MAC *mac)
216
153k
{
217
153k
    void *alg;
218
219
153k
    if (mac->settable_ctx_params == NULL)
220
0
        return NULL;
221
153k
    alg = ossl_provider_ctx(EVP_MAC_get0_provider(mac));
222
153k
    return mac->settable_ctx_params(NULL, alg);
223
153k
}
224
225
const OSSL_PARAM *EVP_MAC_CTX_gettable_params(EVP_MAC_CTX *ctx)
226
0
{
227
0
    void *alg;
228
229
0
    if (ctx->meth->gettable_ctx_params == NULL)
230
0
        return NULL;
231
0
    alg = ossl_provider_ctx(EVP_MAC_get0_provider(ctx->meth));
232
0
    return ctx->meth->gettable_ctx_params(ctx->algctx, alg);
233
0
}
234
235
const OSSL_PARAM *EVP_MAC_CTX_settable_params(EVP_MAC_CTX *ctx)
236
0
{
237
0
    void *alg;
238
239
0
    if (ctx->meth->settable_ctx_params == NULL)
240
0
        return NULL;
241
0
    alg = ossl_provider_ctx(EVP_MAC_get0_provider(ctx->meth));
242
0
    return ctx->meth->settable_ctx_params(ctx->algctx, alg);
243
0
}
244
245
void EVP_MAC_do_all_provided(OSSL_LIB_CTX *libctx,
246
    void (*fn)(EVP_MAC *mac, void *arg),
247
    void *arg)
248
8
{
249
8
    evp_generic_do_all(libctx, OSSL_OP_MAC,
250
8
        (void (*)(void *, void *))fn, arg,
251
8
        evp_mac_from_algorithm, evp_mac_up_ref, evp_mac_free);
252
8
}
253
254
EVP_MAC *evp_mac_fetch_from_prov(OSSL_PROVIDER *prov,
255
    const char *algorithm,
256
    const char *properties)
257
4
{
258
4
    return evp_generic_fetch_from_prov(prov, OSSL_OP_MAC,
259
4
        algorithm, properties,
260
4
        evp_mac_from_algorithm,
261
4
        evp_mac_up_ref,
262
4
        evp_mac_free);
263
4
}