]> git.ipfire.org Git - thirdparty/openssl.git/blame - providers/fips/fipsprov.c
Add KDFs to providers
[thirdparty/openssl.git] / providers / fips / fipsprov.c
CommitLineData
9efa0ae0
MC
1/*
2 * Copyright 2019 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 <stdio.h>
12#include <openssl/core.h>
13#include <openssl/core_numbers.h>
14#include <openssl/core_names.h>
15#include <openssl/params.h>
3593266d 16#include <openssl/err.h>
319e518a 17#include <openssl/evp.h>
e3405a4a 18#include <openssl/kdf.h>
45c54042 19
319e518a
MC
20/* TODO(3.0): Needed for dummy_evp_call(). To be removed */
21#include <openssl/sha.h>
45c54042 22#include <openssl/rand_drbg.h>
04ca0027 23#include <openssl/ec.h>
25e60144 24#include <openssl/fips_names.h>
45c54042 25
3593266d 26#include "internal/cryptlib.h"
319e518a
MC
27#include "internal/property.h"
28#include "internal/evp_int.h"
66ad63e8 29#include "internal/provider_algs.h"
bb751e11 30#include "internal/provider_ctx.h"
da747958 31#include "internal/providercommon.h"
25e60144 32#include "selftest.h"
9efa0ae0 33
b60cba3c
RS
34extern OSSL_core_thread_start_fn *c_thread_start;
35
da747958
MC
36/*
37 * TODO(3.0): Should these be stored in the provider side provctx? Could they
38 * ever be different from one init to the next? Unfortunately we can't do this
b60cba3c
RS
39 * at the moment because c_put_error/c_add_error_vdata do not provide
40 * us with the OPENSSL_CTX as a parameter.
da747958 41 */
25e60144
SL
42
43static SELF_TEST_POST_PARAMS selftest_params;
44
9efa0ae0 45/* Functions provided by the core */
dca97d00 46static OSSL_core_gettable_params_fn *c_gettable_params;
b60cba3c
RS
47static OSSL_core_get_params_fn *c_get_params;
48OSSL_core_thread_start_fn *c_thread_start;
036913b1
RL
49static OSSL_core_new_error_fn *c_new_error;
50static OSSL_core_set_error_debug_fn *c_set_error_debug;
51static OSSL_core_vset_error_fn *c_vset_error;
b60cba3c
RS
52static OSSL_CRYPTO_malloc_fn *c_CRYPTO_malloc;
53static OSSL_CRYPTO_zalloc_fn *c_CRYPTO_zalloc;
b60cba3c
RS
54static OSSL_CRYPTO_free_fn *c_CRYPTO_free;
55static OSSL_CRYPTO_clear_free_fn *c_CRYPTO_clear_free;
56static OSSL_CRYPTO_realloc_fn *c_CRYPTO_realloc;
57static OSSL_CRYPTO_clear_realloc_fn *c_CRYPTO_clear_realloc;
58static OSSL_CRYPTO_secure_malloc_fn *c_CRYPTO_secure_malloc;
59static OSSL_CRYPTO_secure_zalloc_fn *c_CRYPTO_secure_zalloc;
60static OSSL_CRYPTO_secure_free_fn *c_CRYPTO_secure_free;
61static OSSL_CRYPTO_secure_clear_free_fn *c_CRYPTO_secure_clear_free;
62static OSSL_CRYPTO_secure_allocated_fn *c_CRYPTO_secure_allocated;
9efa0ae0 63
da747958
MC
64typedef struct fips_global_st {
65 const OSSL_PROVIDER *prov;
66} FIPS_GLOBAL;
67
68static void *fips_prov_ossl_ctx_new(OPENSSL_CTX *libctx)
69{
70 FIPS_GLOBAL *fgbl = OPENSSL_zalloc(sizeof(*fgbl));
71
72 return fgbl;
73}
74
75static void fips_prov_ossl_ctx_free(void *fgbl)
76{
77 OPENSSL_free(fgbl);
78}
79
80static const OPENSSL_CTX_METHOD fips_prov_ossl_ctx_method = {
81 fips_prov_ossl_ctx_new,
82 fips_prov_ossl_ctx_free,
83};
84
85
9efa0ae0 86/* Parameters we provide to the core */
26175013
RL
87static const OSSL_PARAM fips_param_types[] = {
88 OSSL_PARAM_DEFN(OSSL_PROV_PARAM_NAME, OSSL_PARAM_UTF8_PTR, NULL, 0),
89 OSSL_PARAM_DEFN(OSSL_PROV_PARAM_VERSION, OSSL_PARAM_UTF8_PTR, NULL, 0),
90 OSSL_PARAM_DEFN(OSSL_PROV_PARAM_BUILDINFO, OSSL_PARAM_UTF8_PTR, NULL, 0),
91 OSSL_PARAM_END
9efa0ae0
MC
92};
93
25e60144
SL
94/*
95 * Parameters to retrieve from the core provider - required for self testing.
96 * NOTE: inside core_get_params() these will be loaded from config items
97 * stored inside prov->parameters (except for OSSL_PROV_PARAM_MODULE_FILENAME).
98 */
99static OSSL_PARAM core_params[] =
100{
101 OSSL_PARAM_utf8_ptr(OSSL_PROV_PARAM_MODULE_FILENAME,
102 selftest_params.module_filename,
103 sizeof(selftest_params.module_filename)),
104 OSSL_PARAM_utf8_ptr(OSSL_PROV_FIPS_PARAM_MODULE_MAC,
105 selftest_params.module_checksum_data,
106 sizeof(selftest_params.module_checksum_data)),
107 OSSL_PARAM_utf8_ptr(OSSL_PROV_FIPS_PARAM_INSTALL_MAC,
108 selftest_params.indicator_checksum_data,
109 sizeof(selftest_params.indicator_checksum_data)),
110 OSSL_PARAM_utf8_ptr(OSSL_PROV_FIPS_PARAM_INSTALL_STATUS,
111 selftest_params.indicator_data,
112 sizeof(selftest_params.indicator_data)),
113 OSSL_PARAM_utf8_ptr(OSSL_PROV_FIPS_PARAM_INSTALL_VERSION,
114 selftest_params.indicator_version,
115 sizeof(selftest_params.indicator_version)),
116 OSSL_PARAM_END
117};
118
319e518a 119/* TODO(3.0): To be removed */
bb751e11 120static int dummy_evp_call(void *provctx)
3593266d 121{
bb751e11 122 OPENSSL_CTX *libctx = PROV_LIBRARY_CONTEXT_OF(provctx);
319e518a
MC
123 EVP_MD_CTX *ctx = EVP_MD_CTX_new();
124 EVP_MD *sha256 = EVP_MD_fetch(libctx, "SHA256", NULL);
e3405a4a 125 EVP_KDF *kdf = EVP_KDF_fetch(libctx, "pbkdf2", NULL);
319e518a
MC
126 char msg[] = "Hello World!";
127 const unsigned char exptd[] = {
128 0x7f, 0x83, 0xb1, 0x65, 0x7f, 0xf1, 0xfc, 0x53, 0xb9, 0x2d, 0xc1, 0x81,
129 0x48, 0xa1, 0xd6, 0x5d, 0xfc, 0x2d, 0x4b, 0x1f, 0xa3, 0xd6, 0x77, 0x28,
130 0x4a, 0xdd, 0xd2, 0x00, 0x12, 0x6d, 0x90, 0x69
131 };
132 unsigned int dgstlen = 0;
133 unsigned char dgst[SHA256_DIGEST_LENGTH];
134 int ret = 0;
444ab3ab
MC
135 BN_CTX *bnctx = NULL;
136 BIGNUM *a = NULL, *b = NULL;
45c54042
MC
137 unsigned char randbuf[128];
138 RAND_DRBG *drbg = OPENSSL_CTX_get0_public_drbg(libctx);
f92e0815 139#ifndef OPENSSL_NO_EC
04ca0027 140 EC_KEY *key = NULL;
f92e0815 141#endif
319e518a 142
e3405a4a 143 if (ctx == NULL || sha256 == NULL || drbg == NULL || kdf == NULL)
319e518a
MC
144 goto err;
145
146 if (!EVP_DigestInit_ex(ctx, sha256, NULL))
147 goto err;
148 if (!EVP_DigestUpdate(ctx, msg, sizeof(msg) - 1))
149 goto err;
150 if (!EVP_DigestFinal(ctx, dgst, &dgstlen))
151 goto err;
152 if (dgstlen != sizeof(exptd) || memcmp(dgst, exptd, sizeof(exptd)) != 0)
153 goto err;
154
444ab3ab
MC
155 bnctx = BN_CTX_new_ex(libctx);
156 if (bnctx == NULL)
157 goto err;
158 BN_CTX_start(bnctx);
159 a = BN_CTX_get(bnctx);
160 b = BN_CTX_get(bnctx);
161 if (b == NULL)
162 goto err;
163 BN_zero(a);
164 if (!BN_one(b)
165 || !BN_add(a, a, b)
166 || BN_cmp(a, b) != 0)
167 goto err;
4bd8b240 168
45c54042
MC
169 if (RAND_DRBG_bytes(drbg, randbuf, sizeof(randbuf)) <= 0)
170 goto err;
171
eba3ebd7
MC
172 if (!BN_rand_ex(a, 256, BN_RAND_TOP_ANY, BN_RAND_BOTTOM_ANY, bnctx))
173 goto err;
174
f92e0815 175#ifndef OPENSSL_NO_EC
04ca0027
MC
176 /* Do some dummy EC calls */
177 key = EC_KEY_new_by_curve_name_ex(libctx, NID_X9_62_prime256v1);
178 if (key == NULL)
179 goto err;
180
181 if (!EC_KEY_generate_key(key))
182 goto err;
f92e0815 183#endif
04ca0027 184
319e518a
MC
185 ret = 1;
186 err:
444ab3ab
MC
187 BN_CTX_end(bnctx);
188 BN_CTX_free(bnctx);
4bd8b240 189
e3405a4a 190 EVP_KDF_free(kdf);
319e518a 191 EVP_MD_CTX_free(ctx);
3fd70262 192 EVP_MD_free(sha256);
04ca0027 193
f92e0815 194#ifndef OPENSSL_NO_EC
04ca0027 195 EC_KEY_free(key);
f92e0815 196#endif
319e518a 197 return ret;
3593266d
MC
198}
199
dca97d00 200static const OSSL_PARAM *fips_gettable_params(const OSSL_PROVIDER *prov)
9efa0ae0
MC
201{
202 return fips_param_types;
203}
204
4e7991b4 205static int fips_get_params(const OSSL_PROVIDER *prov, OSSL_PARAM params[])
9efa0ae0 206{
4e7991b4 207 OSSL_PARAM *p;
9efa0ae0
MC
208
209 p = OSSL_PARAM_locate(params, OSSL_PROV_PARAM_NAME);
210 if (p != NULL && !OSSL_PARAM_set_utf8_ptr(p, "OpenSSL FIPS Provider"))
211 return 0;
212 p = OSSL_PARAM_locate(params, OSSL_PROV_PARAM_VERSION);
213 if (p != NULL && !OSSL_PARAM_set_utf8_ptr(p, OPENSSL_VERSION_STR))
214 return 0;
215 p = OSSL_PARAM_locate(params, OSSL_PROV_PARAM_BUILDINFO);
216 if (p != NULL && !OSSL_PARAM_set_utf8_ptr(p, OPENSSL_FULL_VERSION_STR))
217 return 0;
218
219 return 1;
220}
221
4cecf7a1
MC
222/* FIPS specific version of the function of the same name in provlib.c */
223const char *ossl_prov_util_nid_to_name(int nid)
224{
225 /* We don't have OBJ_nid2n() in FIPS_MODE so we have an explicit list */
226
227 switch (nid) {
228 /* Digests */
229 case NID_sha1:
230 return "SHA224";
231 case NID_sha224:
232 return "SHA224";
233 case NID_sha256:
234 return "SHA256";
235 case NID_sha384:
236 return "SHA384";
237 case NID_sha512:
238 return "SHA512";
239 case NID_sha512_224:
240 return "SHA512-224";
241 case NID_sha512_256:
242 return "SHA512-256";
243 case NID_sha3_224:
244 return "SHA3-224";
245 case NID_sha3_256:
246 return "SHA3-256";
247 case NID_sha3_384:
248 return "SHA3-384";
249 case NID_sha3_512:
250 return "SHA3-512";
251
252 /* Ciphers */
253 case NID_aes_256_ecb:
254 return "AES-256-ECB";
255 case NID_aes_192_ecb:
256 return "AES-192-ECB";
257 case NID_aes_128_ecb:
258 return "AES-128-ECB";
259 case NID_aes_256_cbc:
260 return "AES-256-CBC";
261 case NID_aes_192_cbc:
262 return "AES-192-CBC";
263 case NID_aes_128_cbc:
264 return "AES-128-CBC";
265 case NID_aes_256_ctr:
266 return "AES-256-CTR";
267 case NID_aes_192_ctr:
268 return "AES-192-CTR";
269 case NID_aes_128_ctr:
270 return "AES-128-CTR";
3bfe9005
SL
271 /* TODO(3.0) Change these when we have aliases */
272 case NID_aes_256_gcm:
273 return "id-aes256-GCM";
274 case NID_aes_192_gcm:
275 return "id-aes192-GCM";
276 case NID_aes_128_gcm:
277 return "id-aes128-GCM";
278 case NID_aes_256_ccm:
279 return "id-aes256-CCM";
280 case NID_aes_192_ccm:
281 return "id-aes192-CCM";
282 case NID_aes_128_ccm:
283 return "id-aes128-CCM";
284 default:
285 break;
4cecf7a1
MC
286 }
287
288 return NULL;
289}
290
9efa0ae0 291static const OSSL_ALGORITHM fips_digests[] = {
d5e5e2ff
SL
292 { "SHA1", "fips=yes", sha1_functions },
293 { "SHA224", "fips=yes", sha224_functions },
9efa0ae0 294 { "SHA256", "fips=yes", sha256_functions },
d5e5e2ff
SL
295 { "SHA384", "fips=yes", sha384_functions },
296 { "SHA512", "fips=yes", sha512_functions },
297 { "SHA512-224", "fips=yes", sha512_224_functions },
298 { "SHA512-256", "fips=yes", sha512_256_functions },
299 { "SHA3-224", "fips=yes", sha3_224_functions },
300 { "SHA3-256", "fips=yes", sha3_256_functions },
301 { "SHA3-384", "fips=yes", sha3_384_functions },
302 { "SHA3-512", "fips=yes", sha3_512_functions },
e23cda00 303 /*
bb31895d
RL
304 * KECCAK_KMAC128 and KECCAK_KMAC256 as hashes are mostly useful for
305 * the KMAC128 and KMAC256.
e23cda00 306 */
bb31895d
RL
307 { "KECCAK_KMAC128", "fips=yes", keccak_kmac_128_functions },
308 { "KECCAK_KMAC256", "fips=yes", keccak_kmac_256_functions },
d5e5e2ff 309
9efa0ae0
MC
310 { NULL, NULL, NULL }
311};
312
66ad63e8
MC
313static const OSSL_ALGORITHM fips_ciphers[] = {
314 { "AES-256-ECB", "fips=yes", aes256ecb_functions },
315 { "AES-192-ECB", "fips=yes", aes192ecb_functions },
316 { "AES-128-ECB", "fips=yes", aes128ecb_functions },
317 { "AES-256-CBC", "fips=yes", aes256cbc_functions },
318 { "AES-192-CBC", "fips=yes", aes192cbc_functions },
319 { "AES-128-CBC", "fips=yes", aes128cbc_functions },
320 { "AES-256-CTR", "fips=yes", aes256ctr_functions },
321 { "AES-192-CTR", "fips=yes", aes192ctr_functions },
322 { "AES-128-CTR", "fips=yes", aes128ctr_functions },
3bfe9005 323 /* TODO(3.0) Add aliases for these ciphers */
a672a02a
SL
324 { "id-aes256-GCM", "fips=yes", aes256gcm_functions },
325 { "id-aes192-GCM", "fips=yes", aes192gcm_functions },
326 { "id-aes128-GCM", "fips=yes", aes128gcm_functions },
3bfe9005
SL
327 { "id-aes256-CCM", "fips=yes", aes256ccm_functions },
328 { "id-aes192-CCM", "fips=yes", aes192ccm_functions },
329 { "id-aes128-CCM", "fips=yes", aes128ccm_functions },
cb1548bc 330#ifndef OPENSSL_NO_DES
4a42e264
SL
331 { "DES-EDE3", "fips=yes", tdes_ede3_ecb_functions },
332 { "DES-EDE3-CBC", "fips=yes", tdes_ede3_cbc_functions },
cb1548bc 333#endif /* OPENSSL_NO_DES */
66ad63e8
MC
334 { NULL, NULL, NULL }
335};
336
2e5db6ad 337static const OSSL_ALGORITHM fips_macs[] = {
bad41b68 338#ifndef OPENSSL_NO_CMAC
2e5db6ad 339 { "CMAC", "fips=yes", cmac_functions },
bad41b68 340#endif
d33313be 341 { "GMAC", "fips=yes", gmac_functions },
5183ebdc 342 { "HMAC", "fips=yes", hmac_functions },
e23cda00
RL
343 { "KMAC128", "fips=yes", kmac128_functions },
344 { "KMAC256", "fips=yes", kmac256_functions },
2e5db6ad
RL
345 { NULL, NULL, NULL }
346};
347
e3405a4a
P
348static const OSSL_ALGORITHM fips_kdfs[] = {
349 { "HKDF", "fips=yes", kdf_hkdf_functions },
350 { "SSKDF", "fips=yes", kdf_sskdf_functions },
351 { "PBKDF2", "fips=yes", kdf_pbkdf2_functions },
352 { "TLS1-PRF", "fips=yes", kdf_tls1_prf_functions },
353 { NULL, NULL, NULL }
354};
355
9efa0ae0
MC
356static const OSSL_ALGORITHM *fips_query(OSSL_PROVIDER *prov,
357 int operation_id,
358 int *no_cache)
359{
360 *no_cache = 0;
361 switch (operation_id) {
362 case OSSL_OP_DIGEST:
363 return fips_digests;
66ad63e8
MC
364 case OSSL_OP_CIPHER:
365 return fips_ciphers;
2e5db6ad
RL
366 case OSSL_OP_MAC:
367 return fips_macs;
e3405a4a
P
368 case OSSL_OP_KDF:
369 return fips_kdfs;
9efa0ae0
MC
370 }
371 return NULL;
372}
373
374/* Functions we provide to the core */
375static const OSSL_DISPATCH fips_dispatch_table[] = {
319e518a
MC
376 /*
377 * To release our resources we just need to free the OPENSSL_CTX so we just
378 * use OPENSSL_CTX_free directly as our teardown function
379 */
380 { OSSL_FUNC_PROVIDER_TEARDOWN, (void (*)(void))OPENSSL_CTX_free },
dca97d00 381 { OSSL_FUNC_PROVIDER_GETTABLE_PARAMS, (void (*)(void))fips_gettable_params },
9efa0ae0
MC
382 { OSSL_FUNC_PROVIDER_GET_PARAMS, (void (*)(void))fips_get_params },
383 { OSSL_FUNC_PROVIDER_QUERY_OPERATION, (void (*)(void))fips_query },
384 { 0, NULL }
385};
386
319e518a
MC
387/* Functions we provide to ourself */
388static const OSSL_DISPATCH intern_dispatch_table[] = {
389 { OSSL_FUNC_PROVIDER_QUERY_OPERATION, (void (*)(void))fips_query },
390 { 0, NULL }
391};
392
393
9efa0ae0
MC
394int OSSL_provider_init(const OSSL_PROVIDER *provider,
395 const OSSL_DISPATCH *in,
a39eb840
RL
396 const OSSL_DISPATCH **out,
397 void **provctx)
9efa0ae0 398{
da747958 399 FIPS_GLOBAL *fgbl;
03361afb 400 OPENSSL_CTX *ctx;
319e518a 401
9efa0ae0
MC
402 for (; in->function_id != 0; in++) {
403 switch (in->function_id) {
dca97d00
RL
404 case OSSL_FUNC_CORE_GETTABLE_PARAMS:
405 c_gettable_params = OSSL_get_core_gettable_params(in);
9efa0ae0
MC
406 break;
407 case OSSL_FUNC_CORE_GET_PARAMS:
408 c_get_params = OSSL_get_core_get_params(in);
409 break;
da747958
MC
410 case OSSL_FUNC_CORE_THREAD_START:
411 c_thread_start = OSSL_get_core_thread_start(in);
412 break;
036913b1
RL
413 case OSSL_FUNC_CORE_NEW_ERROR:
414 c_new_error = OSSL_get_core_new_error(in);
3593266d 415 break;
036913b1
RL
416 case OSSL_FUNC_CORE_SET_ERROR_DEBUG:
417 c_set_error_debug = OSSL_get_core_set_error_debug(in);
418 break;
419 case OSSL_FUNC_CORE_VSET_ERROR:
420 c_vset_error = OSSL_get_core_vset_error(in);
3593266d 421 break;
b60cba3c
RS
422 case OSSL_FUNC_CRYPTO_MALLOC:
423 c_CRYPTO_malloc = OSSL_get_CRYPTO_malloc(in);
424 break;
425 case OSSL_FUNC_CRYPTO_ZALLOC:
426 c_CRYPTO_zalloc = OSSL_get_CRYPTO_zalloc(in);
427 break;
b60cba3c
RS
428 case OSSL_FUNC_CRYPTO_FREE:
429 c_CRYPTO_free = OSSL_get_CRYPTO_free(in);
430 break;
431 case OSSL_FUNC_CRYPTO_CLEAR_FREE:
432 c_CRYPTO_clear_free = OSSL_get_CRYPTO_clear_free(in);
433 break;
434 case OSSL_FUNC_CRYPTO_REALLOC:
435 c_CRYPTO_realloc = OSSL_get_CRYPTO_realloc(in);
436 break;
437 case OSSL_FUNC_CRYPTO_CLEAR_REALLOC:
438 c_CRYPTO_clear_realloc = OSSL_get_CRYPTO_clear_realloc(in);
439 break;
440 case OSSL_FUNC_CRYPTO_SECURE_MALLOC:
441 c_CRYPTO_secure_malloc = OSSL_get_CRYPTO_secure_malloc(in);
442 break;
443 case OSSL_FUNC_CRYPTO_SECURE_ZALLOC:
444 c_CRYPTO_secure_zalloc = OSSL_get_CRYPTO_secure_zalloc(in);
445 break;
446 case OSSL_FUNC_CRYPTO_SECURE_FREE:
447 c_CRYPTO_secure_free = OSSL_get_CRYPTO_secure_free(in);
448 break;
449 case OSSL_FUNC_CRYPTO_SECURE_CLEAR_FREE:
450 c_CRYPTO_secure_clear_free = OSSL_get_CRYPTO_secure_clear_free(in);
451 break;
452 case OSSL_FUNC_CRYPTO_SECURE_ALLOCATED:
453 c_CRYPTO_secure_allocated = OSSL_get_CRYPTO_secure_allocated(in);
454 break;
25e60144
SL
455 case OSSL_FUNC_BIO_NEW_FILE:
456 selftest_params.bio_new_file_cb = OSSL_get_BIO_new_file(in);
457 break;
458 case OSSL_FUNC_BIO_NEW_MEMBUF:
459 selftest_params.bio_new_buffer_cb = OSSL_get_BIO_new_membuf(in);
460 break;
461 case OSSL_FUNC_BIO_READ:
462 selftest_params.bio_read_cb = OSSL_get_BIO_read(in);
463 break;
464 case OSSL_FUNC_BIO_FREE:
465 selftest_params.bio_free_cb = OSSL_get_BIO_free(in);
466 break;
9efa0ae0 467 default:
b60cba3c 468 /* Just ignore anything we don't understand */
9efa0ae0
MC
469 break;
470 }
471 }
472
25e60144
SL
473 if (!c_get_params(provider, core_params))
474 return 0;
475
b60cba3c
RS
476 /* Create a context. */
477 if ((ctx = OPENSSL_CTX_new()) == NULL)
319e518a 478 return 0;
b60cba3c
RS
479 if ((fgbl = openssl_ctx_get_data(ctx, OPENSSL_CTX_FIPS_PROV_INDEX,
480 &fips_prov_ossl_ctx_method)) == NULL) {
481 OPENSSL_CTX_free(ctx);
482 return 0;
483 }
03361afb 484 fgbl->prov = provider;
bb751e11
RL
485 *out = fips_dispatch_table;
486 *provctx = ctx;
487
319e518a
MC
488 /*
489 * TODO(3.0): Remove me. This is just a dummy call to demonstrate making
490 * EVP calls from within the FIPS module.
491 */
bb751e11
RL
492 if (!dummy_evp_call(*provctx)) {
493 OPENSSL_CTX_free(*provctx);
494 *provctx = NULL;
319e518a
MC
495 return 0;
496 }
497
9efa0ae0
MC
498 return 1;
499}
3593266d 500
319e518a
MC
501/*
502 * The internal init function used when the FIPS module uses EVP to call
b1eb3fd7 503 * another algorithm also in the FIPS module. This is a recursive call that has
bb751e11
RL
504 * been made from within the FIPS module itself. To make this work, we populate
505 * the provider context of this inner instance with the same library context
506 * that was used in the EVP call that initiated this recursive call.
319e518a 507 */
3593266d
MC
508OSSL_provider_init_fn fips_intern_provider_init;
509int fips_intern_provider_init(const OSSL_PROVIDER *provider,
510 const OSSL_DISPATCH *in,
319e518a
MC
511 const OSSL_DISPATCH **out,
512 void **provctx)
3593266d 513{
bb751e11
RL
514 OSSL_core_get_library_context_fn *c_get_libctx = NULL;
515
516 for (; in->function_id != 0; in++) {
517 switch (in->function_id) {
518 case OSSL_FUNC_CORE_GET_LIBRARY_CONTEXT:
519 c_get_libctx = OSSL_get_core_get_library_context(in);
520 break;
521 default:
522 break;
523 }
524 }
525
526 if (c_get_libctx == NULL)
527 return 0;
528
529 *provctx = c_get_libctx(provider);
530
531 /*
532 * Safety measure... we should get the library context that was
533 * created up in OSSL_provider_init().
534 */
535 if (*provctx == NULL)
536 return 0;
537
319e518a 538 *out = intern_dispatch_table;
3593266d
MC
539 return 1;
540}
541
036913b1 542void ERR_new(void)
3593266d 543{
036913b1
RL
544 c_new_error(NULL);
545}
546
547void ERR_set_debug(const char *file, int line, const char *func)
548{
549 c_set_error_debug(NULL, file, line, func);
3593266d
MC
550}
551
036913b1 552void ERR_set_error(int lib, int reason, const char *fmt, ...)
3593266d
MC
553{
554 va_list args;
8908d18c 555
036913b1
RL
556 va_start(args, fmt);
557 c_vset_error(NULL, ERR_PACK(lib, 0, reason), fmt, args);
3593266d
MC
558 va_end(args);
559}
560
036913b1 561void ERR_vset_error(int lib, int reason, const char *fmt, va_list args)
3593266d 562{
036913b1 563 c_vset_error(NULL, ERR_PACK(lib, 0, reason), fmt, args);
3593266d 564}
da747958
MC
565
566const OSSL_PROVIDER *FIPS_get_provider(OPENSSL_CTX *ctx)
567{
568 FIPS_GLOBAL *fgbl = openssl_ctx_get_data(ctx, OPENSSL_CTX_FIPS_PROV_INDEX,
569 &fips_prov_ossl_ctx_method);
570
571 if (fgbl == NULL)
572 return NULL;
573
574 return fgbl->prov;
575}
b60cba3c
RS
576
577void *CRYPTO_malloc(size_t num, const char *file, int line)
578{
579 return c_CRYPTO_malloc(num, file, line);
580}
581
582void *CRYPTO_zalloc(size_t num, const char *file, int line)
583{
584 return c_CRYPTO_zalloc(num, file, line);
585}
586
b60cba3c
RS
587void CRYPTO_free(void *ptr, const char *file, int line)
588{
589 c_CRYPTO_free(ptr, file, line);
590}
591
592void CRYPTO_clear_free(void *ptr, size_t num, const char *file, int line)
593{
594 c_CRYPTO_clear_free(ptr, num, file, line);
595}
596
597void *CRYPTO_realloc(void *addr, size_t num, const char *file, int line)
598{
599 return c_CRYPTO_realloc(addr, num, file, line);
600}
601
602void *CRYPTO_clear_realloc(void *addr, size_t old_num, size_t num,
603 const char *file, int line)
604{
605 return c_CRYPTO_clear_realloc(addr, old_num, num, file, line);
606}
607
608void *CRYPTO_secure_malloc(size_t num, const char *file, int line)
609{
610 return c_CRYPTO_secure_malloc(num, file, line);
611}
612
613void *CRYPTO_secure_zalloc(size_t num, const char *file, int line)
614{
615 return c_CRYPTO_secure_zalloc(num, file, line);
616}
617
618void CRYPTO_secure_free(void *ptr, const char *file, int line)
619{
620 c_CRYPTO_secure_free(ptr, file, line);
621}
622
623void CRYPTO_secure_clear_free(void *ptr, size_t num, const char *file, int line)
624{
625 c_CRYPTO_secure_clear_free(ptr, num, file, line);
626}
627
b60cba3c
RS
628int CRYPTO_secure_allocated(const void *ptr)
629{
630 return c_CRYPTO_secure_allocated(ptr);
631}