Coverage Report

Created: 2024-07-27 06:36

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