VirtualBox

source: vbox/trunk/src/libs/openssl-3.0.1/crypto/provider_core.c@ 94326

Last change on this file since 94326 was 94320, checked in by vboxsync, 3 years ago

libs/openssl-3.0.1: Export to OSE and fix copyright headers in Makefiles, bugref:10128

File size: 63.9 KB
Line 
1/*
2 * Copyright 2019-2021 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 <assert.h>
11#include <openssl/core.h>
12#include <openssl/core_dispatch.h>
13#include <openssl/core_names.h>
14#include <openssl/provider.h>
15#include <openssl/params.h>
16#include <openssl/opensslv.h>
17#include "crypto/cryptlib.h"
18#include "crypto/evp.h" /* evp_method_store_flush */
19#include "crypto/rand.h"
20#include "internal/nelem.h"
21#include "internal/thread_once.h"
22#include "internal/provider.h"
23#include "internal/refcount.h"
24#include "internal/bio.h"
25#include "internal/core.h"
26#include "provider_local.h"
27#ifndef FIPS_MODULE
28# include <openssl/self_test.h>
29#endif
30
31/*
32 * This file defines and uses a number of different structures:
33 *
34 * OSSL_PROVIDER (provider_st): Used to represent all information related to a
35 * single instance of a provider.
36 *
37 * provider_store_st: Holds information about the collection of providers that
38 * are available within the current library context (OSSL_LIB_CTX). It also
39 * holds configuration information about providers that could be loaded at some
40 * future point.
41 *
42 * OSSL_PROVIDER_CHILD_CB: An instance of this structure holds the callbacks
43 * that have been registered for a child library context and the associated
44 * provider that registered those callbacks.
45 *
46 * Where a child library context exists then it has its own instance of the
47 * provider store. Each provider that exists in the parent provider store, has
48 * an associated child provider in the child library context's provider store.
49 * As providers get activated or deactivated this needs to be mirrored in the
50 * associated child providers.
51 *
52 * LOCKING
53 * =======
54 *
55 * There are a number of different locks used in this file and it is important
56 * to understand how they should be used in order to avoid deadlocks.
57 *
58 * Fields within a structure can often be "write once" on creation, and then
59 * "read many". Creation of a structure is done by a single thread, and
60 * therefore no lock is required for the "write once/read many" fields. It is
61 * safe for multiple threads to read these fields without a lock, because they
62 * will never be changed.
63 *
64 * However some fields may be changed after a structure has been created and
65 * shared between multiple threads. Where this is the case a lock is required.
66 *
67 * The locks available are:
68 *
69 * The provider flag_lock: Used to control updates to the various provider
70 * "flags" (flag_initialized, flag_activated, flag_fallback) and associated
71 * "counts" (activatecnt).
72 *
73 * The provider refcnt_lock: Only ever used to control updates to the provider
74 * refcnt value.
75 *
76 * The provider optbits_lock: Used to control access to the provider's
77 * operation_bits and operation_bits_sz fields.
78 *
79 * The store default_path_lock: Used to control access to the provider store's
80 * default search path value (default_path)
81 *
82 * The store lock: Used to control the stack of provider's held within the
83 * provider store, as well as the stack of registered child provider callbacks.
84 *
85 * As a general rule-of-thumb it is best to:
86 * - keep the scope of the code that is protected by a lock to the absolute
87 * minimum possible;
88 * - try to keep the scope of the lock to within a single function (i.e. avoid
89 * making calls to other functions while holding a lock);
90 * - try to only ever hold one lock at a time.
91 *
92 * Unfortunately, it is not always possible to stick to the above guidelines.
93 * Where they are not adhered to there is always a danger of inadvertently
94 * introducing the possibility of deadlock. The following rules MUST be adhered
95 * to in order to avoid that:
96 * - Holding multiple locks at the same time is only allowed for the
97 * provider store lock, the provider flag_lock and the provider refcnt_lock.
98 * - When holding multiple locks they must be acquired in the following order of
99 * precedence:
100 * 1) provider store lock
101 * 2) provider flag_lock
102 * 3) provider refcnt_lock
103 * - When releasing locks they must be released in the reverse order to which
104 * they were acquired
105 * - No locks may be held when making an upcall. NOTE: Some common functions
106 * can make upcalls as part of their normal operation. If you need to call
107 * some other function while holding a lock make sure you know whether it
108 * will make any upcalls or not. For example ossl_provider_up_ref() can call
109 * ossl_provider_up_ref_parent() which can call the c_prov_up_ref() upcall.
110 * - It is permissible to hold the store and flag locks when calling child
111 * provider callbacks. No other locks may be held during such callbacks.
112 */
113
114static OSSL_PROVIDER *provider_new(const char *name,
115 OSSL_provider_init_fn *init_function,
116 STACK_OF(INFOPAIR) *parameters);
117
118/*-
119 * Provider Object structure
120 * =========================
121 */
122
123#ifndef FIPS_MODULE
124typedef struct {
125 OSSL_PROVIDER *prov;
126 int (*create_cb)(const OSSL_CORE_HANDLE *provider, void *cbdata);
127 int (*remove_cb)(const OSSL_CORE_HANDLE *provider, void *cbdata);
128 int (*global_props_cb)(const char *props, void *cbdata);
129 void *cbdata;
130} OSSL_PROVIDER_CHILD_CB;
131DEFINE_STACK_OF(OSSL_PROVIDER_CHILD_CB)
132#endif
133
134struct provider_store_st; /* Forward declaration */
135
136struct ossl_provider_st {
137 /* Flag bits */
138 unsigned int flag_initialized:1;
139 unsigned int flag_activated:1;
140 unsigned int flag_fallback:1; /* Can be used as fallback */
141
142 /* Getting and setting the flags require synchronization */
143 CRYPTO_RWLOCK *flag_lock;
144
145 /* OpenSSL library side data */
146 CRYPTO_REF_COUNT refcnt;
147 CRYPTO_RWLOCK *refcnt_lock; /* For the ref counter */
148 int activatecnt;
149 char *name;
150 char *path;
151 DSO *module;
152 OSSL_provider_init_fn *init_function;
153 STACK_OF(INFOPAIR) *parameters;
154 OSSL_LIB_CTX *libctx; /* The library context this instance is in */
155 struct provider_store_st *store; /* The store this instance belongs to */
156#ifndef FIPS_MODULE
157 /*
158 * In the FIPS module inner provider, this isn't needed, since the
159 * error upcalls are always direct calls to the outer provider.
160 */
161 int error_lib; /* ERR library number, one for each provider */
162# ifndef OPENSSL_NO_ERR
163 ERR_STRING_DATA *error_strings; /* Copy of what the provider gives us */
164# endif
165#endif
166
167 /* Provider side functions */
168 OSSL_FUNC_provider_teardown_fn *teardown;
169 OSSL_FUNC_provider_gettable_params_fn *gettable_params;
170 OSSL_FUNC_provider_get_params_fn *get_params;
171 OSSL_FUNC_provider_get_capabilities_fn *get_capabilities;
172 OSSL_FUNC_provider_self_test_fn *self_test;
173 OSSL_FUNC_provider_query_operation_fn *query_operation;
174 OSSL_FUNC_provider_unquery_operation_fn *unquery_operation;
175
176 /*
177 * Cache of bit to indicate of query_operation() has been called on
178 * a specific operation or not.
179 */
180 unsigned char *operation_bits;
181 size_t operation_bits_sz;
182 CRYPTO_RWLOCK *opbits_lock;
183
184#ifndef FIPS_MODULE
185 /* Whether this provider is the child of some other provider */
186 const OSSL_CORE_HANDLE *handle;
187 unsigned int ischild:1;
188#endif
189
190 /* Provider side data */
191 void *provctx;
192 const OSSL_DISPATCH *dispatch;
193};
194DEFINE_STACK_OF(OSSL_PROVIDER)
195
196static int ossl_provider_cmp(const OSSL_PROVIDER * const *a,
197 const OSSL_PROVIDER * const *b)
198{
199 return strcmp((*a)->name, (*b)->name);
200}
201
202/*-
203 * Provider Object store
204 * =====================
205 *
206 * The Provider Object store is a library context object, and therefore needs
207 * an index.
208 */
209
210struct provider_store_st {
211 OSSL_LIB_CTX *libctx;
212 STACK_OF(OSSL_PROVIDER) *providers;
213 STACK_OF(OSSL_PROVIDER_CHILD_CB) *child_cbs;
214 CRYPTO_RWLOCK *default_path_lock;
215 CRYPTO_RWLOCK *lock;
216 char *default_path;
217 OSSL_PROVIDER_INFO *provinfo;
218 size_t numprovinfo;
219 size_t provinfosz;
220 unsigned int use_fallbacks:1;
221 unsigned int freeing:1;
222};
223
224/*
225 * provider_deactivate_free() is a wrapper around ossl_provider_deactivate()
226 * and ossl_provider_free(), called as needed.
227 * Since this is only called when the provider store is being emptied, we
228 * don't need to care about any lock.
229 */
230static void provider_deactivate_free(OSSL_PROVIDER *prov)
231{
232 if (prov->flag_activated)
233 ossl_provider_deactivate(prov, 1);
234 ossl_provider_free(prov);
235}
236
237#ifndef FIPS_MODULE
238static void ossl_provider_child_cb_free(OSSL_PROVIDER_CHILD_CB *cb)
239{
240 OPENSSL_free(cb);
241}
242#endif
243
244static void infopair_free(INFOPAIR *pair)
245{
246 OPENSSL_free(pair->name);
247 OPENSSL_free(pair->value);
248 OPENSSL_free(pair);
249}
250
251static INFOPAIR *infopair_copy(const INFOPAIR *src)
252{
253 INFOPAIR *dest = OPENSSL_zalloc(sizeof(*dest));
254
255 if (dest == NULL)
256 return NULL;
257 if (src->name != NULL) {
258 dest->name = OPENSSL_strdup(src->name);
259 if (dest->name == NULL)
260 goto err;
261 }
262 if (src->value != NULL) {
263 dest->value = OPENSSL_strdup(src->value);
264 if (dest->value == NULL)
265 goto err;
266 }
267 return dest;
268 err:
269 OPENSSL_free(dest->name);
270 OPENSSL_free(dest);
271 return NULL;
272}
273
274void ossl_provider_info_clear(OSSL_PROVIDER_INFO *info)
275{
276 OPENSSL_free(info->name);
277 OPENSSL_free(info->path);
278 sk_INFOPAIR_pop_free(info->parameters, infopair_free);
279}
280
281static void provider_store_free(void *vstore)
282{
283 struct provider_store_st *store = vstore;
284 size_t i;
285
286 if (store == NULL)
287 return;
288 store->freeing = 1;
289 OPENSSL_free(store->default_path);
290 sk_OSSL_PROVIDER_pop_free(store->providers, provider_deactivate_free);
291#ifndef FIPS_MODULE
292 sk_OSSL_PROVIDER_CHILD_CB_pop_free(store->child_cbs,
293 ossl_provider_child_cb_free);
294#endif
295 CRYPTO_THREAD_lock_free(store->default_path_lock);
296 CRYPTO_THREAD_lock_free(store->lock);
297 for (i = 0; i < store->numprovinfo; i++)
298 ossl_provider_info_clear(&store->provinfo[i]);
299 OPENSSL_free(store->provinfo);
300 OPENSSL_free(store);
301}
302
303static void *provider_store_new(OSSL_LIB_CTX *ctx)
304{
305 struct provider_store_st *store = OPENSSL_zalloc(sizeof(*store));
306
307 if (store == NULL
308 || (store->providers = sk_OSSL_PROVIDER_new(ossl_provider_cmp)) == NULL
309 || (store->default_path_lock = CRYPTO_THREAD_lock_new()) == NULL
310#ifndef FIPS_MODULE
311 || (store->child_cbs = sk_OSSL_PROVIDER_CHILD_CB_new_null()) == NULL
312#endif
313 || (store->lock = CRYPTO_THREAD_lock_new()) == NULL) {
314 provider_store_free(store);
315 return NULL;
316 }
317 store->libctx = ctx;
318 store->use_fallbacks = 1;
319
320 return store;
321}
322
323static const OSSL_LIB_CTX_METHOD provider_store_method = {
324 /* Needs to be freed before the child provider data is freed */
325 OSSL_LIB_CTX_METHOD_PRIORITY_1,
326 provider_store_new,
327 provider_store_free,
328};
329
330static struct provider_store_st *get_provider_store(OSSL_LIB_CTX *libctx)
331{
332 struct provider_store_st *store = NULL;
333
334 store = ossl_lib_ctx_get_data(libctx, OSSL_LIB_CTX_PROVIDER_STORE_INDEX,
335 &provider_store_method);
336 if (store == NULL)
337 ERR_raise(ERR_LIB_CRYPTO, ERR_R_INTERNAL_ERROR);
338 return store;
339}
340
341int ossl_provider_disable_fallback_loading(OSSL_LIB_CTX *libctx)
342{
343 struct provider_store_st *store;
344
345 if ((store = get_provider_store(libctx)) != NULL) {
346 if (!CRYPTO_THREAD_write_lock(store->lock))
347 return 0;
348 store->use_fallbacks = 0;
349 CRYPTO_THREAD_unlock(store->lock);
350 return 1;
351 }
352 return 0;
353}
354
355#define BUILTINS_BLOCK_SIZE 10
356
357int ossl_provider_info_add_to_store(OSSL_LIB_CTX *libctx,
358 OSSL_PROVIDER_INFO *entry)
359{
360 struct provider_store_st *store = get_provider_store(libctx);
361 int ret = 0;
362
363 if (entry->name == NULL) {
364 ERR_raise(ERR_LIB_CRYPTO, ERR_R_PASSED_NULL_PARAMETER);
365 return 0;
366 }
367
368 if (store == NULL) {
369 ERR_raise(ERR_LIB_CRYPTO, ERR_R_INTERNAL_ERROR);
370 return 0;
371 }
372
373 if (!CRYPTO_THREAD_write_lock(store->lock))
374 return 0;
375 if (store->provinfosz == 0) {
376 store->provinfo = OPENSSL_zalloc(sizeof(*store->provinfo)
377 * BUILTINS_BLOCK_SIZE);
378 if (store->provinfo == NULL) {
379 ERR_raise(ERR_LIB_CRYPTO, ERR_R_MALLOC_FAILURE);
380 goto err;
381 }
382 store->provinfosz = BUILTINS_BLOCK_SIZE;
383 } else if (store->numprovinfo == store->provinfosz) {
384 OSSL_PROVIDER_INFO *tmpbuiltins;
385 size_t newsz = store->provinfosz + BUILTINS_BLOCK_SIZE;
386
387 tmpbuiltins = OPENSSL_realloc(store->provinfo,
388 sizeof(*store->provinfo) * newsz);
389 if (tmpbuiltins == NULL) {
390 ERR_raise(ERR_LIB_CRYPTO, ERR_R_MALLOC_FAILURE);
391 goto err;
392 }
393 store->provinfo = tmpbuiltins;
394 store->provinfosz = newsz;
395 }
396 store->provinfo[store->numprovinfo] = *entry;
397 store->numprovinfo++;
398
399 ret = 1;
400 err:
401 CRYPTO_THREAD_unlock(store->lock);
402 return ret;
403}
404
405OSSL_PROVIDER *ossl_provider_find(OSSL_LIB_CTX *libctx, const char *name,
406 int noconfig)
407{
408 struct provider_store_st *store = NULL;
409 OSSL_PROVIDER *prov = NULL;
410
411 if ((store = get_provider_store(libctx)) != NULL) {
412 OSSL_PROVIDER tmpl = { 0, };
413 int i;
414
415#ifndef FIPS_MODULE
416 /*
417 * Make sure any providers are loaded from config before we try to find
418 * them.
419 */
420 if (!noconfig) {
421 if (ossl_lib_ctx_is_default(libctx))
422 OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CONFIG, NULL);
423 }
424#endif
425
426 tmpl.name = (char *)name;
427 /*
428 * A "find" operation can sort the stack, and therefore a write lock is
429 * required.
430 */
431 if (!CRYPTO_THREAD_write_lock(store->lock))
432 return NULL;
433 if ((i = sk_OSSL_PROVIDER_find(store->providers, &tmpl)) != -1)
434 prov = sk_OSSL_PROVIDER_value(store->providers, i);
435 CRYPTO_THREAD_unlock(store->lock);
436 if (prov != NULL && !ossl_provider_up_ref(prov))
437 prov = NULL;
438 }
439
440 return prov;
441}
442
443/*-
444 * Provider Object methods
445 * =======================
446 */
447
448static OSSL_PROVIDER *provider_new(const char *name,
449 OSSL_provider_init_fn *init_function,
450 STACK_OF(INFOPAIR) *parameters)
451{
452 OSSL_PROVIDER *prov = NULL;
453
454 if ((prov = OPENSSL_zalloc(sizeof(*prov))) == NULL
455#ifndef HAVE_ATOMICS
456 || (prov->refcnt_lock = CRYPTO_THREAD_lock_new()) == NULL
457#endif
458 || (prov->opbits_lock = CRYPTO_THREAD_lock_new()) == NULL
459 || (prov->flag_lock = CRYPTO_THREAD_lock_new()) == NULL
460 || (prov->name = OPENSSL_strdup(name)) == NULL
461 || (prov->parameters = sk_INFOPAIR_deep_copy(parameters,
462 infopair_copy,
463 infopair_free)) == NULL) {
464 ossl_provider_free(prov);
465 ERR_raise(ERR_LIB_CRYPTO, ERR_R_MALLOC_FAILURE);
466 return NULL;
467 }
468
469 prov->refcnt = 1; /* 1 One reference to be returned */
470 prov->init_function = init_function;
471
472 return prov;
473}
474
475int ossl_provider_up_ref(OSSL_PROVIDER *prov)
476{
477 int ref = 0;
478
479 if (CRYPTO_UP_REF(&prov->refcnt, &ref, prov->refcnt_lock) <= 0)
480 return 0;
481
482#ifndef FIPS_MODULE
483 if (prov->ischild) {
484 if (!ossl_provider_up_ref_parent(prov, 0)) {
485 ossl_provider_free(prov);
486 return 0;
487 }
488 }
489#endif
490
491 return ref;
492}
493
494#ifndef FIPS_MODULE
495static int provider_up_ref_intern(OSSL_PROVIDER *prov, int activate)
496{
497 if (activate)
498 return ossl_provider_activate(prov, 1, 0);
499
500 return ossl_provider_up_ref(prov);
501}
502
503static int provider_free_intern(OSSL_PROVIDER *prov, int deactivate)
504{
505 if (deactivate)
506 return ossl_provider_deactivate(prov, 1);
507
508 ossl_provider_free(prov);
509 return 1;
510}
511#endif
512
513/*
514 * We assume that the requested provider does not already exist in the store.
515 * The caller should check. If it does exist then adding it to the store later
516 * will fail.
517 */
518OSSL_PROVIDER *ossl_provider_new(OSSL_LIB_CTX *libctx, const char *name,
519 OSSL_provider_init_fn *init_function,
520 int noconfig)
521{
522 struct provider_store_st *store = NULL;
523 OSSL_PROVIDER_INFO template;
524 OSSL_PROVIDER *prov = NULL;
525
526 if ((store = get_provider_store(libctx)) == NULL)
527 return NULL;
528
529 memset(&template, 0, sizeof(template));
530 if (init_function == NULL) {
531 const OSSL_PROVIDER_INFO *p;
532 size_t i;
533
534 /* Check if this is a predefined builtin provider */
535 for (p = ossl_predefined_providers; p->name != NULL; p++) {
536 if (strcmp(p->name, name) == 0) {
537 template = *p;
538 break;
539 }
540 }
541 if (p->name == NULL) {
542 /* Check if this is a user added builtin provider */
543 if (!CRYPTO_THREAD_read_lock(store->lock))
544 return NULL;
545 for (i = 0, p = store->provinfo; i < store->numprovinfo; p++, i++) {
546 if (strcmp(p->name, name) == 0) {
547 template = *p;
548 break;
549 }
550 }
551 CRYPTO_THREAD_unlock(store->lock);
552 }
553 } else {
554 template.init = init_function;
555 }
556
557 /* provider_new() generates an error, so no need here */
558 if ((prov = provider_new(name, template.init, template.parameters)) == NULL)
559 return NULL;
560
561 prov->libctx = libctx;
562#ifndef FIPS_MODULE
563 prov->error_lib = ERR_get_next_error_library();
564#endif
565
566 /*
567 * At this point, the provider is only partially "loaded". To be
568 * fully "loaded", ossl_provider_activate() must also be called and it must
569 * then be added to the provider store.
570 */
571
572 return prov;
573}
574
575/* Assumes that the store lock is held */
576static int create_provider_children(OSSL_PROVIDER *prov)
577{
578 int ret = 1;
579#ifndef FIPS_MODULE
580 struct provider_store_st *store = prov->store;
581 OSSL_PROVIDER_CHILD_CB *child_cb;
582 int i, max;
583
584 max = sk_OSSL_PROVIDER_CHILD_CB_num(store->child_cbs);
585 for (i = 0; i < max; i++) {
586 /*
587 * This is newly activated (activatecnt == 1), so we need to
588 * create child providers as necessary.
589 */
590 child_cb = sk_OSSL_PROVIDER_CHILD_CB_value(store->child_cbs, i);
591 ret &= child_cb->create_cb((OSSL_CORE_HANDLE *)prov, child_cb->cbdata);
592 }
593#endif
594
595 return ret;
596}
597
598int ossl_provider_add_to_store(OSSL_PROVIDER *prov, OSSL_PROVIDER **actualprov,
599 int retain_fallbacks)
600{
601 struct provider_store_st *store;
602 int idx;
603 OSSL_PROVIDER tmpl = { 0, };
604 OSSL_PROVIDER *actualtmp = NULL;
605
606 if ((store = get_provider_store(prov->libctx)) == NULL)
607 return 0;
608
609 if (!CRYPTO_THREAD_write_lock(store->lock))
610 return 0;
611
612 tmpl.name = (char *)prov->name;
613 idx = sk_OSSL_PROVIDER_find(store->providers, &tmpl);
614 if (idx == -1)
615 actualtmp = prov;
616 else
617 actualtmp = sk_OSSL_PROVIDER_value(store->providers, idx);
618
619 if (idx == -1) {
620 if (sk_OSSL_PROVIDER_push(store->providers, prov) == 0)
621 goto err;
622 prov->store = store;
623 if (!create_provider_children(prov)) {
624 sk_OSSL_PROVIDER_delete_ptr(store->providers, prov);
625 goto err;
626 }
627 if (!retain_fallbacks)
628 store->use_fallbacks = 0;
629 }
630
631 CRYPTO_THREAD_unlock(store->lock);
632
633 if (actualprov != NULL) {
634 if (!ossl_provider_up_ref(actualtmp)) {
635 ERR_raise(ERR_LIB_CRYPTO, ERR_R_MALLOC_FAILURE);
636 actualtmp = NULL;
637 goto err;
638 }
639 *actualprov = actualtmp;
640 }
641
642 if (idx >= 0) {
643 /*
644 * The provider is already in the store. Probably two threads
645 * independently initialised their own provider objects with the same
646 * name and raced to put them in the store. This thread lost. We
647 * deactivate the one we just created and use the one that already
648 * exists instead.
649 * If we get here then we know we did not create provider children
650 * above, so we inform ossl_provider_deactivate not to attempt to remove
651 * any.
652 */
653 ossl_provider_deactivate(prov, 0);
654 ossl_provider_free(prov);
655 }
656
657 return 1;
658
659 err:
660 CRYPTO_THREAD_unlock(store->lock);
661 if (actualprov != NULL)
662 ossl_provider_free(actualtmp);
663 return 0;
664}
665
666void ossl_provider_free(OSSL_PROVIDER *prov)
667{
668 if (prov != NULL) {
669 int ref = 0;
670
671 CRYPTO_DOWN_REF(&prov->refcnt, &ref, prov->refcnt_lock);
672
673 /*
674 * When the refcount drops to zero, we clean up the provider.
675 * Note that this also does teardown, which may seem late,
676 * considering that init happens on first activation. However,
677 * there may be other structures hanging on to the provider after
678 * the last deactivation and may therefore need full access to the
679 * provider's services. Therefore, we deinit late.
680 */
681 if (ref == 0) {
682 if (prov->flag_initialized) {
683 ossl_provider_teardown(prov);
684#ifndef OPENSSL_NO_ERR
685# ifndef FIPS_MODULE
686 if (prov->error_strings != NULL) {
687 ERR_unload_strings(prov->error_lib, prov->error_strings);
688 OPENSSL_free(prov->error_strings);
689 prov->error_strings = NULL;
690 }
691# endif
692#endif
693 OPENSSL_free(prov->operation_bits);
694 prov->operation_bits = NULL;
695 prov->operation_bits_sz = 0;
696 prov->flag_initialized = 0;
697 }
698
699#ifndef FIPS_MODULE
700 /*
701 * We deregister thread handling whether or not the provider was
702 * initialized. If init was attempted but was not successful then
703 * the provider may still have registered a thread handler.
704 */
705 ossl_init_thread_deregister(prov);
706 DSO_free(prov->module);
707#endif
708 OPENSSL_free(prov->name);
709 OPENSSL_free(prov->path);
710 sk_INFOPAIR_pop_free(prov->parameters, infopair_free);
711 CRYPTO_THREAD_lock_free(prov->opbits_lock);
712 CRYPTO_THREAD_lock_free(prov->flag_lock);
713#ifndef HAVE_ATOMICS
714 CRYPTO_THREAD_lock_free(prov->refcnt_lock);
715#endif
716 OPENSSL_free(prov);
717 }
718#ifndef FIPS_MODULE
719 else if (prov->ischild) {
720 ossl_provider_free_parent(prov, 0);
721 }
722#endif
723 }
724}
725
726/* Setters */
727int ossl_provider_set_module_path(OSSL_PROVIDER *prov, const char *module_path)
728{
729 OPENSSL_free(prov->path);
730 prov->path = NULL;
731 if (module_path == NULL)
732 return 1;
733 if ((prov->path = OPENSSL_strdup(module_path)) != NULL)
734 return 1;
735 ERR_raise(ERR_LIB_CRYPTO, ERR_R_MALLOC_FAILURE);
736 return 0;
737}
738
739static int infopair_add(STACK_OF(INFOPAIR) **infopairsk, const char *name,
740 const char *value)
741{
742 INFOPAIR *pair = NULL;
743
744 if ((pair = OPENSSL_zalloc(sizeof(*pair))) != NULL
745 && (*infopairsk != NULL
746 || (*infopairsk = sk_INFOPAIR_new_null()) != NULL)
747 && (pair->name = OPENSSL_strdup(name)) != NULL
748 && (pair->value = OPENSSL_strdup(value)) != NULL
749 && sk_INFOPAIR_push(*infopairsk, pair) > 0)
750 return 1;
751
752 if (pair != NULL) {
753 OPENSSL_free(pair->name);
754 OPENSSL_free(pair->value);
755 OPENSSL_free(pair);
756 }
757 ERR_raise(ERR_LIB_CRYPTO, ERR_R_MALLOC_FAILURE);
758 return 0;
759}
760
761int ossl_provider_add_parameter(OSSL_PROVIDER *prov,
762 const char *name, const char *value)
763{
764 return infopair_add(&prov->parameters, name, value);
765}
766
767int ossl_provider_info_add_parameter(OSSL_PROVIDER_INFO *provinfo,
768 const char *name,
769 const char *value)
770{
771 return infopair_add(&provinfo->parameters, name, value);
772}
773
774/*
775 * Provider activation.
776 *
777 * What "activation" means depends on the provider form; for built in
778 * providers (in the library or the application alike), the provider
779 * can already be considered to be loaded, all that's needed is to
780 * initialize it. However, for dynamically loadable provider modules,
781 * we must first load that module.
782 *
783 * Built in modules are distinguished from dynamically loaded modules
784 * with an already assigned init function.
785 */
786static const OSSL_DISPATCH *core_dispatch; /* Define further down */
787
788int OSSL_PROVIDER_set_default_search_path(OSSL_LIB_CTX *libctx,
789 const char *path)
790{
791 struct provider_store_st *store;
792 char *p = NULL;
793
794 if (path != NULL) {
795 p = OPENSSL_strdup(path);
796 if (p == NULL) {
797 ERR_raise(ERR_LIB_CRYPTO, ERR_R_MALLOC_FAILURE);
798 return 0;
799 }
800 }
801 if ((store = get_provider_store(libctx)) != NULL
802 && CRYPTO_THREAD_write_lock(store->default_path_lock)) {
803 OPENSSL_free(store->default_path);
804 store->default_path = p;
805 CRYPTO_THREAD_unlock(store->default_path_lock);
806 return 1;
807 }
808 OPENSSL_free(p);
809 return 0;
810}
811
812/*
813 * Internal version that doesn't affect the store flags, and thereby avoid
814 * locking. Direct callers must remember to set the store flags when
815 * appropriate.
816 */
817static int provider_init(OSSL_PROVIDER *prov)
818{
819 const OSSL_DISPATCH *provider_dispatch = NULL;
820 void *tmp_provctx = NULL; /* safety measure */
821#ifndef OPENSSL_NO_ERR
822# ifndef FIPS_MODULE
823 OSSL_FUNC_provider_get_reason_strings_fn *p_get_reason_strings = NULL;
824# endif
825#endif
826 int ok = 0;
827
828 if (!ossl_assert(!prov->flag_initialized)) {
829 ERR_raise(ERR_LIB_CRYPTO, ERR_R_INTERNAL_ERROR);
830 goto end;
831 }
832
833#ifndef VBOX /* Don't want loadable modules in our static build. */
834 /*
835 * If the init function isn't set, it indicates that this provider is
836 * a loadable module.
837 */
838 if (prov->init_function == NULL) {
839#ifdef FIPS_MODULE
840 goto end;
841#else
842 if (prov->module == NULL) {
843 char *allocated_path = NULL;
844 const char *module_path = NULL;
845 char *merged_path = NULL;
846 const char *load_dir = NULL;
847 char *allocated_load_dir = NULL;
848 struct provider_store_st *store;
849
850 if ((prov->module = DSO_new()) == NULL) {
851 /* DSO_new() generates an error already */
852 goto end;
853 }
854
855 if ((store = get_provider_store(prov->libctx)) == NULL
856 || !CRYPTO_THREAD_read_lock(store->default_path_lock))
857 goto end;
858
859 if (store->default_path != NULL) {
860 allocated_load_dir = OPENSSL_strdup(store->default_path);
861 CRYPTO_THREAD_unlock(store->default_path_lock);
862 if (allocated_load_dir == NULL) {
863 ERR_raise(ERR_LIB_CRYPTO, ERR_R_MALLOC_FAILURE);
864 goto end;
865 }
866 load_dir = allocated_load_dir;
867 } else {
868 CRYPTO_THREAD_unlock(store->default_path_lock);
869 }
870
871 if (load_dir == NULL) {
872 load_dir = ossl_safe_getenv("OPENSSL_MODULES");
873 if (load_dir == NULL)
874 load_dir = MODULESDIR;
875 }
876
877 DSO_ctrl(prov->module, DSO_CTRL_SET_FLAGS,
878 DSO_FLAG_NAME_TRANSLATION_EXT_ONLY, NULL);
879
880 module_path = prov->path;
881 if (module_path == NULL)
882 module_path = allocated_path =
883 DSO_convert_filename(prov->module, prov->name);
884 if (module_path != NULL)
885 merged_path = DSO_merge(prov->module, module_path, load_dir);
886
887 if (merged_path == NULL
888 || (DSO_load(prov->module, merged_path, NULL, 0)) == NULL) {
889 DSO_free(prov->module);
890 prov->module = NULL;
891 }
892
893 OPENSSL_free(merged_path);
894 OPENSSL_free(allocated_path);
895 OPENSSL_free(allocated_load_dir);
896 }
897
898 if (prov->module != NULL)
899 prov->init_function = (OSSL_provider_init_fn *)
900 DSO_bind_func(prov->module, "OSSL_provider_init");
901#endif
902 }
903#endif /* VBOX */
904
905 /* Call the initialise function for the provider. */
906 if (prov->init_function == NULL
907 || !prov->init_function((OSSL_CORE_HANDLE *)prov, core_dispatch,
908 &provider_dispatch, &tmp_provctx)) {
909 ERR_raise_data(ERR_LIB_CRYPTO, ERR_R_INIT_FAIL,
910 "name=%s", prov->name);
911 goto end;
912 }
913 prov->provctx = tmp_provctx;
914 prov->dispatch = provider_dispatch;
915
916 for (; provider_dispatch->function_id != 0; provider_dispatch++) {
917 switch (provider_dispatch->function_id) {
918 case OSSL_FUNC_PROVIDER_TEARDOWN:
919 prov->teardown =
920 OSSL_FUNC_provider_teardown(provider_dispatch);
921 break;
922 case OSSL_FUNC_PROVIDER_GETTABLE_PARAMS:
923 prov->gettable_params =
924 OSSL_FUNC_provider_gettable_params(provider_dispatch);
925 break;
926 case OSSL_FUNC_PROVIDER_GET_PARAMS:
927 prov->get_params =
928 OSSL_FUNC_provider_get_params(provider_dispatch);
929 break;
930 case OSSL_FUNC_PROVIDER_SELF_TEST:
931 prov->self_test =
932 OSSL_FUNC_provider_self_test(provider_dispatch);
933 break;
934 case OSSL_FUNC_PROVIDER_GET_CAPABILITIES:
935 prov->get_capabilities =
936 OSSL_FUNC_provider_get_capabilities(provider_dispatch);
937 break;
938 case OSSL_FUNC_PROVIDER_QUERY_OPERATION:
939 prov->query_operation =
940 OSSL_FUNC_provider_query_operation(provider_dispatch);
941 break;
942 case OSSL_FUNC_PROVIDER_UNQUERY_OPERATION:
943 prov->unquery_operation =
944 OSSL_FUNC_provider_unquery_operation(provider_dispatch);
945 break;
946#ifndef OPENSSL_NO_ERR
947# ifndef FIPS_MODULE
948 case OSSL_FUNC_PROVIDER_GET_REASON_STRINGS:
949 p_get_reason_strings =
950 OSSL_FUNC_provider_get_reason_strings(provider_dispatch);
951 break;
952# endif
953#endif
954 }
955 }
956
957#ifndef OPENSSL_NO_ERR
958# ifndef FIPS_MODULE
959 if (p_get_reason_strings != NULL) {
960 const OSSL_ITEM *reasonstrings = p_get_reason_strings(prov->provctx);
961 size_t cnt, cnt2;
962
963 /*
964 * ERR_load_strings() handles ERR_STRING_DATA rather than OSSL_ITEM,
965 * although they are essentially the same type.
966 * Furthermore, ERR_load_strings() patches the array's error number
967 * with the error library number, so we need to make a copy of that
968 * array either way.
969 */
970 cnt = 0;
971 while (reasonstrings[cnt].id != 0) {
972 if (ERR_GET_LIB(reasonstrings[cnt].id) != 0)
973 goto end;
974 cnt++;
975 }
976 cnt++; /* One for the terminating item */
977
978 /* Allocate one extra item for the "library" name */
979 prov->error_strings =
980 OPENSSL_zalloc(sizeof(ERR_STRING_DATA) * (cnt + 1));
981 if (prov->error_strings == NULL)
982 goto end;
983
984 /*
985 * Set the "library" name.
986 */
987 prov->error_strings[0].error = ERR_PACK(prov->error_lib, 0, 0);
988 prov->error_strings[0].string = prov->name;
989 /*
990 * Copy reasonstrings item 0..cnt-1 to prov->error_trings positions
991 * 1..cnt.
992 */
993 for (cnt2 = 1; cnt2 <= cnt; cnt2++) {
994 prov->error_strings[cnt2].error = (int)reasonstrings[cnt2-1].id;
995 prov->error_strings[cnt2].string = reasonstrings[cnt2-1].ptr;
996 }
997
998 ERR_load_strings(prov->error_lib, prov->error_strings);
999 }
1000# endif
1001#endif
1002
1003 /* With this flag set, this provider has become fully "loaded". */
1004 prov->flag_initialized = 1;
1005 ok = 1;
1006
1007 end:
1008 return ok;
1009}
1010
1011/*
1012 * Deactivate a provider. If upcalls is 0 then we suppress any upcalls to a
1013 * parent provider. If removechildren is 0 then we suppress any calls to remove
1014 * child providers.
1015 * Return -1 on failure and the activation count on success
1016 */
1017static int provider_deactivate(OSSL_PROVIDER *prov, int upcalls,
1018 int removechildren)
1019{
1020 int count;
1021 struct provider_store_st *store;
1022#ifndef FIPS_MODULE
1023 int freeparent = 0;
1024#endif
1025 int lock = 1;
1026
1027 if (!ossl_assert(prov != NULL))
1028 return -1;
1029
1030 /*
1031 * No need to lock if we've got no store because we've not been shared with
1032 * other threads.
1033 */
1034 store = get_provider_store(prov->libctx);
1035 if (store == NULL)
1036 lock = 0;
1037
1038 if (lock && !CRYPTO_THREAD_read_lock(store->lock))
1039 return -1;
1040 if (lock && !CRYPTO_THREAD_write_lock(prov->flag_lock)) {
1041 CRYPTO_THREAD_unlock(store->lock);
1042 return -1;
1043 }
1044
1045#ifndef FIPS_MODULE
1046 if (prov->activatecnt >= 2 && prov->ischild && upcalls) {
1047 /*
1048 * We have had a direct activation in this child libctx so we need to
1049 * now down the ref count in the parent provider. We do the actual down
1050 * ref outside of the flag_lock, since it could involve getting other
1051 * locks.
1052 */
1053 freeparent = 1;
1054 }
1055#endif
1056
1057 if ((count = --prov->activatecnt) < 1)
1058 prov->flag_activated = 0;
1059#ifndef FIPS_MODULE
1060 else
1061 removechildren = 0;
1062#endif
1063
1064#ifndef FIPS_MODULE
1065 if (removechildren && store != NULL) {
1066 int i, max = sk_OSSL_PROVIDER_CHILD_CB_num(store->child_cbs);
1067 OSSL_PROVIDER_CHILD_CB *child_cb;
1068
1069 for (i = 0; i < max; i++) {
1070 child_cb = sk_OSSL_PROVIDER_CHILD_CB_value(store->child_cbs, i);
1071 child_cb->remove_cb((OSSL_CORE_HANDLE *)prov, child_cb->cbdata);
1072 }
1073 }
1074#endif
1075 if (lock) {
1076 CRYPTO_THREAD_unlock(prov->flag_lock);
1077 CRYPTO_THREAD_unlock(store->lock);
1078 }
1079#ifndef FIPS_MODULE
1080 if (freeparent)
1081 ossl_provider_free_parent(prov, 1);
1082#endif
1083
1084 /* We don't deinit here, that's done in ossl_provider_free() */
1085 return count;
1086}
1087
1088/*
1089 * Activate a provider.
1090 * Return -1 on failure and the activation count on success
1091 */
1092static int provider_activate(OSSL_PROVIDER *prov, int lock, int upcalls)
1093{
1094 int count = -1;
1095 struct provider_store_st *store;
1096 int ret = 1;
1097
1098 store = prov->store;
1099 /*
1100 * If the provider hasn't been added to the store, then we don't need
1101 * any locks because we've not shared it with other threads.
1102 */
1103 if (store == NULL) {
1104 lock = 0;
1105 if (!provider_init(prov))
1106 return -1;
1107 }
1108
1109#ifndef FIPS_MODULE
1110 if (prov->ischild && upcalls && !ossl_provider_up_ref_parent(prov, 1))
1111 return -1;
1112#endif
1113
1114 if (lock && !CRYPTO_THREAD_read_lock(store->lock)) {
1115#ifndef FIPS_MODULE
1116 if (prov->ischild && upcalls)
1117 ossl_provider_free_parent(prov, 1);
1118#endif
1119 return -1;
1120 }
1121
1122 if (lock && !CRYPTO_THREAD_write_lock(prov->flag_lock)) {
1123 CRYPTO_THREAD_unlock(store->lock);
1124#ifndef FIPS_MODULE
1125 if (prov->ischild && upcalls)
1126 ossl_provider_free_parent(prov, 1);
1127#endif
1128 return -1;
1129 }
1130
1131 count = ++prov->activatecnt;
1132 prov->flag_activated = 1;
1133
1134 if (prov->activatecnt == 1 && store != NULL) {
1135 ret = create_provider_children(prov);
1136 }
1137 if (lock) {
1138 CRYPTO_THREAD_unlock(prov->flag_lock);
1139 CRYPTO_THREAD_unlock(store->lock);
1140 }
1141
1142 if (!ret)
1143 return -1;
1144
1145 return count;
1146}
1147
1148static int provider_flush_store_cache(const OSSL_PROVIDER *prov)
1149{
1150 struct provider_store_st *store;
1151 int freeing;
1152
1153 if ((store = get_provider_store(prov->libctx)) == NULL)
1154 return 0;
1155
1156 if (!CRYPTO_THREAD_read_lock(store->lock))
1157 return 0;
1158 freeing = store->freeing;
1159 CRYPTO_THREAD_unlock(store->lock);
1160
1161 if (!freeing)
1162 return evp_method_store_flush(prov->libctx);
1163 return 1;
1164}
1165
1166int ossl_provider_activate(OSSL_PROVIDER *prov, int upcalls, int aschild)
1167{
1168 int count;
1169
1170 if (prov == NULL)
1171 return 0;
1172#ifndef FIPS_MODULE
1173 /*
1174 * If aschild is true, then we only actually do the activation if the
1175 * provider is a child. If its not, this is still success.
1176 */
1177 if (aschild && !prov->ischild)
1178 return 1;
1179#endif
1180 if ((count = provider_activate(prov, 1, upcalls)) > 0)
1181 return count == 1 ? provider_flush_store_cache(prov) : 1;
1182
1183 return 0;
1184}
1185
1186int ossl_provider_deactivate(OSSL_PROVIDER *prov, int removechildren)
1187{
1188 int count;
1189
1190 if (prov == NULL
1191 || (count = provider_deactivate(prov, 1, removechildren)) < 0)
1192 return 0;
1193 return count == 0 ? provider_flush_store_cache(prov) : 1;
1194}
1195
1196void *ossl_provider_ctx(const OSSL_PROVIDER *prov)
1197{
1198 return prov->provctx;
1199}
1200
1201/*
1202 * This function only does something once when store->use_fallbacks == 1,
1203 * and then sets store->use_fallbacks = 0, so the second call and so on is
1204 * effectively a no-op.
1205 */
1206static int provider_activate_fallbacks(struct provider_store_st *store)
1207{
1208 int use_fallbacks;
1209 int activated_fallback_count = 0;
1210 int ret = 0;
1211 const OSSL_PROVIDER_INFO *p;
1212
1213 if (!CRYPTO_THREAD_read_lock(store->lock))
1214 return 0;
1215 use_fallbacks = store->use_fallbacks;
1216 CRYPTO_THREAD_unlock(store->lock);
1217 if (!use_fallbacks)
1218 return 1;
1219
1220 if (!CRYPTO_THREAD_write_lock(store->lock))
1221 return 0;
1222 /* Check again, just in case another thread changed it */
1223 use_fallbacks = store->use_fallbacks;
1224 if (!use_fallbacks) {
1225 CRYPTO_THREAD_unlock(store->lock);
1226 return 1;
1227 }
1228
1229 for (p = ossl_predefined_providers; p->name != NULL; p++) {
1230 OSSL_PROVIDER *prov = NULL;
1231
1232 if (!p->is_fallback)
1233 continue;
1234 /*
1235 * We use the internal constructor directly here,
1236 * otherwise we get a call loop
1237 */
1238 prov = provider_new(p->name, p->init, NULL);
1239 if (prov == NULL)
1240 goto err;
1241 prov->libctx = store->libctx;
1242#ifndef FIPS_MODULE
1243 prov->error_lib = ERR_get_next_error_library();
1244#endif
1245
1246 /*
1247 * We are calling provider_activate while holding the store lock. This
1248 * means the init function will be called while holding a lock. Normally
1249 * we try to avoid calling a user callback while holding a lock.
1250 * However, fallbacks are never third party providers so we accept this.
1251 */
1252 if (provider_activate(prov, 0, 0) < 0) {
1253 ossl_provider_free(prov);
1254 goto err;
1255 }
1256 prov->store = store;
1257 if (sk_OSSL_PROVIDER_push(store->providers, prov) == 0) {
1258 ossl_provider_free(prov);
1259 goto err;
1260 }
1261 activated_fallback_count++;
1262 }
1263
1264 if (activated_fallback_count > 0) {
1265 store->use_fallbacks = 0;
1266 ret = 1;
1267 }
1268 err:
1269 CRYPTO_THREAD_unlock(store->lock);
1270 return ret;
1271}
1272
1273int ossl_provider_doall_activated(OSSL_LIB_CTX *ctx,
1274 int (*cb)(OSSL_PROVIDER *provider,
1275 void *cbdata),
1276 void *cbdata)
1277{
1278 int ret = 0, curr, max, ref = 0;
1279 struct provider_store_st *store = get_provider_store(ctx);
1280 STACK_OF(OSSL_PROVIDER) *provs = NULL;
1281
1282#ifndef FIPS_MODULE
1283 /*
1284 * Make sure any providers are loaded from config before we try to use
1285 * them.
1286 */
1287 if (ossl_lib_ctx_is_default(ctx))
1288 OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CONFIG, NULL);
1289#endif
1290
1291 if (store == NULL)
1292 return 1;
1293 if (!provider_activate_fallbacks(store))
1294 return 0;
1295
1296 /*
1297 * Under lock, grab a copy of the provider list and up_ref each
1298 * provider so that they don't disappear underneath us.
1299 */
1300 if (!CRYPTO_THREAD_read_lock(store->lock))
1301 return 0;
1302 provs = sk_OSSL_PROVIDER_dup(store->providers);
1303 if (provs == NULL) {
1304 CRYPTO_THREAD_unlock(store->lock);
1305 return 0;
1306 }
1307 max = sk_OSSL_PROVIDER_num(provs);
1308 /*
1309 * We work backwards through the stack so that we can safely delete items
1310 * as we go.
1311 */
1312 for (curr = max - 1; curr >= 0; curr--) {
1313 OSSL_PROVIDER *prov = sk_OSSL_PROVIDER_value(provs, curr);
1314
1315 if (!CRYPTO_THREAD_write_lock(prov->flag_lock))
1316 goto err_unlock;
1317 if (prov->flag_activated) {
1318 /*
1319 * We call CRYPTO_UP_REF directly rather than ossl_provider_up_ref
1320 * to avoid upping the ref count on the parent provider, which we
1321 * must not do while holding locks.
1322 */
1323 if (CRYPTO_UP_REF(&prov->refcnt, &ref, prov->refcnt_lock) <= 0) {
1324 CRYPTO_THREAD_unlock(prov->flag_lock);
1325 goto err_unlock;
1326 }
1327 /*
1328 * It's already activated, but we up the activated count to ensure
1329 * it remains activated until after we've called the user callback.
1330 * We do this with no locking (because we already hold the locks)
1331 * and no upcalls (which must not be called when locks are held). In
1332 * theory this could mean the parent provider goes inactive, whilst
1333 * still activated in the child for a short period. That's ok.
1334 */
1335 if (provider_activate(prov, 0, 0) < 0) {
1336 CRYPTO_DOWN_REF(&prov->refcnt, &ref, prov->refcnt_lock);
1337 CRYPTO_THREAD_unlock(prov->flag_lock);
1338 goto err_unlock;
1339 }
1340 } else {
1341 sk_OSSL_PROVIDER_delete(provs, curr);
1342 max--;
1343 }
1344 CRYPTO_THREAD_unlock(prov->flag_lock);
1345 }
1346 CRYPTO_THREAD_unlock(store->lock);
1347
1348 /*
1349 * Now, we sweep through all providers not under lock
1350 */
1351 for (curr = 0; curr < max; curr++) {
1352 OSSL_PROVIDER *prov = sk_OSSL_PROVIDER_value(provs, curr);
1353
1354 if (!cb(prov, cbdata))
1355 goto finish;
1356 }
1357 curr = -1;
1358
1359 ret = 1;
1360 goto finish;
1361
1362 err_unlock:
1363 CRYPTO_THREAD_unlock(store->lock);
1364 finish:
1365 /*
1366 * The pop_free call doesn't do what we want on an error condition. We
1367 * either start from the first item in the stack, or part way through if
1368 * we only processed some of the items.
1369 */
1370 for (curr++; curr < max; curr++) {
1371 OSSL_PROVIDER *prov = sk_OSSL_PROVIDER_value(provs, curr);
1372
1373 provider_deactivate(prov, 0, 1);
1374 /*
1375 * As above where we did the up-ref, we don't call ossl_provider_free
1376 * to avoid making upcalls. There should always be at least one ref
1377 * to the provider in the store, so this should never drop to 0.
1378 */
1379 CRYPTO_DOWN_REF(&prov->refcnt, &ref, prov->refcnt_lock);
1380 /*
1381 * Not much we can do if this assert ever fails. So we don't use
1382 * ossl_assert here.
1383 */
1384 assert(ref > 0);
1385 }
1386 sk_OSSL_PROVIDER_free(provs);
1387 return ret;
1388}
1389
1390int OSSL_PROVIDER_available(OSSL_LIB_CTX *libctx, const char *name)
1391{
1392 OSSL_PROVIDER *prov = NULL;
1393 int available = 0;
1394 struct provider_store_st *store = get_provider_store(libctx);
1395
1396 if (store == NULL || !provider_activate_fallbacks(store))
1397 return 0;
1398
1399 prov = ossl_provider_find(libctx, name, 0);
1400 if (prov != NULL) {
1401 if (!CRYPTO_THREAD_read_lock(prov->flag_lock))
1402 return 0;
1403 available = prov->flag_activated;
1404 CRYPTO_THREAD_unlock(prov->flag_lock);
1405 ossl_provider_free(prov);
1406 }
1407 return available;
1408}
1409
1410/* Setters of Provider Object data */
1411int ossl_provider_set_fallback(OSSL_PROVIDER *prov)
1412{
1413 if (prov == NULL)
1414 return 0;
1415
1416 prov->flag_fallback = 1;
1417 return 1;
1418}
1419
1420/* Getters of Provider Object data */
1421const char *ossl_provider_name(const OSSL_PROVIDER *prov)
1422{
1423 return prov->name;
1424}
1425
1426const DSO *ossl_provider_dso(const OSSL_PROVIDER *prov)
1427{
1428 return prov->module;
1429}
1430
1431const char *ossl_provider_module_name(const OSSL_PROVIDER *prov)
1432{
1433#ifdef FIPS_MODULE
1434 return NULL;
1435#else
1436 return DSO_get_filename(prov->module);
1437#endif
1438}
1439
1440const char *ossl_provider_module_path(const OSSL_PROVIDER *prov)
1441{
1442#ifdef FIPS_MODULE
1443 return NULL;
1444#else
1445 /* FIXME: Ensure it's a full path */
1446 return DSO_get_filename(prov->module);
1447#endif
1448}
1449
1450void *ossl_provider_prov_ctx(const OSSL_PROVIDER *prov)
1451{
1452 if (prov != NULL)
1453 return prov->provctx;
1454
1455 return NULL;
1456}
1457
1458const OSSL_DISPATCH *ossl_provider_get0_dispatch(const OSSL_PROVIDER *prov)
1459{
1460 if (prov != NULL)
1461 return prov->dispatch;
1462
1463 return NULL;
1464}
1465
1466OSSL_LIB_CTX *ossl_provider_libctx(const OSSL_PROVIDER *prov)
1467{
1468 return prov != NULL ? prov->libctx : NULL;
1469}
1470
1471/* Wrappers around calls to the provider */
1472void ossl_provider_teardown(const OSSL_PROVIDER *prov)
1473{
1474 if (prov->teardown != NULL
1475#ifndef FIPS_MODULE
1476 && !prov->ischild
1477#endif
1478 )
1479 prov->teardown(prov->provctx);
1480}
1481
1482const OSSL_PARAM *ossl_provider_gettable_params(const OSSL_PROVIDER *prov)
1483{
1484 return prov->gettable_params == NULL
1485 ? NULL : prov->gettable_params(prov->provctx);
1486}
1487
1488int ossl_provider_get_params(const OSSL_PROVIDER *prov, OSSL_PARAM params[])
1489{
1490 return prov->get_params == NULL
1491 ? 0 : prov->get_params(prov->provctx, params);
1492}
1493
1494int ossl_provider_self_test(const OSSL_PROVIDER *prov)
1495{
1496 int ret;
1497
1498 if (prov->self_test == NULL)
1499 return 1;
1500 ret = prov->self_test(prov->provctx);
1501 if (ret == 0)
1502 (void)provider_flush_store_cache(prov);
1503 return ret;
1504}
1505
1506int ossl_provider_get_capabilities(const OSSL_PROVIDER *prov,
1507 const char *capability,
1508 OSSL_CALLBACK *cb,
1509 void *arg)
1510{
1511 return prov->get_capabilities == NULL
1512 ? 1 : prov->get_capabilities(prov->provctx, capability, cb, arg);
1513}
1514
1515const OSSL_ALGORITHM *ossl_provider_query_operation(const OSSL_PROVIDER *prov,
1516 int operation_id,
1517 int *no_cache)
1518{
1519 const OSSL_ALGORITHM *res;
1520
1521 if (prov->query_operation == NULL)
1522 return NULL;
1523 res = prov->query_operation(prov->provctx, operation_id, no_cache);
1524#if defined(OPENSSL_NO_CACHED_FETCH)
1525 /* Forcing the non-caching of queries */
1526 if (no_cache != NULL)
1527 *no_cache = 1;
1528#endif
1529 return res;
1530}
1531
1532void ossl_provider_unquery_operation(const OSSL_PROVIDER *prov,
1533 int operation_id,
1534 const OSSL_ALGORITHM *algs)
1535{
1536 if (prov->unquery_operation != NULL)
1537 prov->unquery_operation(prov->provctx, operation_id, algs);
1538}
1539
1540int ossl_provider_clear_all_operation_bits(OSSL_LIB_CTX *libctx)
1541{
1542 struct provider_store_st *store;
1543 OSSL_PROVIDER *provider;
1544 int i, num, res = 1;
1545
1546 if ((store = get_provider_store(libctx)) != NULL) {
1547 if (!CRYPTO_THREAD_read_lock(store->lock))
1548 return 0;
1549 num = sk_OSSL_PROVIDER_num(store->providers);
1550 for (i = 0; i < num; i++) {
1551 provider = sk_OSSL_PROVIDER_value(store->providers, i);
1552 if (!CRYPTO_THREAD_write_lock(provider->opbits_lock)) {
1553 res = 0;
1554 continue;
1555 }
1556 if (provider->operation_bits != NULL)
1557 memset(provider->operation_bits, 0,
1558 provider->operation_bits_sz);
1559 CRYPTO_THREAD_unlock(provider->opbits_lock);
1560 }
1561 CRYPTO_THREAD_unlock(store->lock);
1562 return res;
1563 }
1564 return 0;
1565}
1566
1567int ossl_provider_set_operation_bit(OSSL_PROVIDER *provider, size_t bitnum)
1568{
1569 size_t byte = bitnum / 8;
1570 unsigned char bit = (1 << (bitnum % 8)) & 0xFF;
1571
1572 if (!CRYPTO_THREAD_write_lock(provider->opbits_lock))
1573 return 0;
1574 if (provider->operation_bits_sz <= byte) {
1575 unsigned char *tmp = OPENSSL_realloc(provider->operation_bits,
1576 byte + 1);
1577
1578 if (tmp == NULL) {
1579 CRYPTO_THREAD_unlock(provider->opbits_lock);
1580 ERR_raise(ERR_LIB_CRYPTO, ERR_R_MALLOC_FAILURE);
1581 return 0;
1582 }
1583 provider->operation_bits = tmp;
1584 memset(provider->operation_bits + provider->operation_bits_sz,
1585 '\0', byte + 1 - provider->operation_bits_sz);
1586 provider->operation_bits_sz = byte + 1;
1587 }
1588 provider->operation_bits[byte] |= bit;
1589 CRYPTO_THREAD_unlock(provider->opbits_lock);
1590 return 1;
1591}
1592
1593int ossl_provider_test_operation_bit(OSSL_PROVIDER *provider, size_t bitnum,
1594 int *result)
1595{
1596 size_t byte = bitnum / 8;
1597 unsigned char bit = (1 << (bitnum % 8)) & 0xFF;
1598
1599 if (!ossl_assert(result != NULL)) {
1600 ERR_raise(ERR_LIB_CRYPTO, ERR_R_PASSED_NULL_PARAMETER);
1601 return 0;
1602 }
1603
1604 *result = 0;
1605 if (!CRYPTO_THREAD_read_lock(provider->opbits_lock))
1606 return 0;
1607 if (provider->operation_bits_sz > byte)
1608 *result = ((provider->operation_bits[byte] & bit) != 0);
1609 CRYPTO_THREAD_unlock(provider->opbits_lock);
1610 return 1;
1611}
1612
1613#ifndef FIPS_MODULE
1614const OSSL_CORE_HANDLE *ossl_provider_get_parent(OSSL_PROVIDER *prov)
1615{
1616 return prov->handle;
1617}
1618
1619int ossl_provider_is_child(const OSSL_PROVIDER *prov)
1620{
1621 return prov->ischild;
1622}
1623
1624int ossl_provider_set_child(OSSL_PROVIDER *prov, const OSSL_CORE_HANDLE *handle)
1625{
1626 prov->handle = handle;
1627 prov->ischild = 1;
1628
1629 return 1;
1630}
1631
1632int ossl_provider_default_props_update(OSSL_LIB_CTX *libctx, const char *props)
1633{
1634#ifndef FIPS_MODULE
1635 struct provider_store_st *store = NULL;
1636 int i, max;
1637 OSSL_PROVIDER_CHILD_CB *child_cb;
1638
1639 if ((store = get_provider_store(libctx)) == NULL)
1640 return 0;
1641
1642 if (!CRYPTO_THREAD_read_lock(store->lock))
1643 return 0;
1644
1645 max = sk_OSSL_PROVIDER_CHILD_CB_num(store->child_cbs);
1646 for (i = 0; i < max; i++) {
1647 child_cb = sk_OSSL_PROVIDER_CHILD_CB_value(store->child_cbs, i);
1648 child_cb->global_props_cb(props, child_cb->cbdata);
1649 }
1650
1651 CRYPTO_THREAD_unlock(store->lock);
1652#endif
1653 return 1;
1654}
1655
1656static int ossl_provider_register_child_cb(const OSSL_CORE_HANDLE *handle,
1657 int (*create_cb)(
1658 const OSSL_CORE_HANDLE *provider,
1659 void *cbdata),
1660 int (*remove_cb)(
1661 const OSSL_CORE_HANDLE *provider,
1662 void *cbdata),
1663 int (*global_props_cb)(
1664 const char *props,
1665 void *cbdata),
1666 void *cbdata)
1667{
1668 /*
1669 * This is really an OSSL_PROVIDER that we created and cast to
1670 * OSSL_CORE_HANDLE originally. Therefore it is safe to cast it back.
1671 */
1672 OSSL_PROVIDER *thisprov = (OSSL_PROVIDER *)handle;
1673 OSSL_PROVIDER *prov;
1674 OSSL_LIB_CTX *libctx = thisprov->libctx;
1675 struct provider_store_st *store = NULL;
1676 int ret = 0, i, max;
1677 OSSL_PROVIDER_CHILD_CB *child_cb;
1678 char *propsstr = NULL;
1679
1680 if ((store = get_provider_store(libctx)) == NULL)
1681 return 0;
1682
1683 child_cb = OPENSSL_malloc(sizeof(*child_cb));
1684 if (child_cb == NULL)
1685 return 0;
1686 child_cb->prov = thisprov;
1687 child_cb->create_cb = create_cb;
1688 child_cb->remove_cb = remove_cb;
1689 child_cb->global_props_cb = global_props_cb;
1690 child_cb->cbdata = cbdata;
1691
1692 if (!CRYPTO_THREAD_write_lock(store->lock)) {
1693 OPENSSL_free(child_cb);
1694 return 0;
1695 }
1696 propsstr = evp_get_global_properties_str(libctx, 0);
1697
1698 if (propsstr != NULL) {
1699 global_props_cb(propsstr, cbdata);
1700 OPENSSL_free(propsstr);
1701 }
1702 max = sk_OSSL_PROVIDER_num(store->providers);
1703 for (i = 0; i < max; i++) {
1704 int activated;
1705
1706 prov = sk_OSSL_PROVIDER_value(store->providers, i);
1707
1708 if (!CRYPTO_THREAD_read_lock(prov->flag_lock))
1709 break;
1710 activated = prov->flag_activated;
1711 CRYPTO_THREAD_unlock(prov->flag_lock);
1712 /*
1713 * We hold the store lock while calling the user callback. This means
1714 * that the user callback must be short and simple and not do anything
1715 * likely to cause a deadlock. We don't hold the flag_lock during this
1716 * call. In theory this means that another thread could deactivate it
1717 * while we are calling create. This is ok because the other thread
1718 * will also call remove_cb, but won't be able to do so until we release
1719 * the store lock.
1720 */
1721 if (activated && !create_cb((OSSL_CORE_HANDLE *)prov, cbdata))
1722 break;
1723 }
1724 if (i == max) {
1725 /* Success */
1726 ret = sk_OSSL_PROVIDER_CHILD_CB_push(store->child_cbs, child_cb);
1727 }
1728 if (i != max || ret <= 0) {
1729 /* Failed during creation. Remove everything we just added */
1730 for (; i >= 0; i--) {
1731 prov = sk_OSSL_PROVIDER_value(store->providers, i);
1732 remove_cb((OSSL_CORE_HANDLE *)prov, cbdata);
1733 }
1734 OPENSSL_free(child_cb);
1735 ret = 0;
1736 }
1737 CRYPTO_THREAD_unlock(store->lock);
1738
1739 return ret;
1740}
1741
1742static void ossl_provider_deregister_child_cb(const OSSL_CORE_HANDLE *handle)
1743{
1744 /*
1745 * This is really an OSSL_PROVIDER that we created and cast to
1746 * OSSL_CORE_HANDLE originally. Therefore it is safe to cast it back.
1747 */
1748 OSSL_PROVIDER *thisprov = (OSSL_PROVIDER *)handle;
1749 OSSL_LIB_CTX *libctx = thisprov->libctx;
1750 struct provider_store_st *store = NULL;
1751 int i, max;
1752 OSSL_PROVIDER_CHILD_CB *child_cb;
1753
1754 if ((store = get_provider_store(libctx)) == NULL)
1755 return;
1756
1757 if (!CRYPTO_THREAD_write_lock(store->lock))
1758 return;
1759 max = sk_OSSL_PROVIDER_CHILD_CB_num(store->child_cbs);
1760 for (i = 0; i < max; i++) {
1761 child_cb = sk_OSSL_PROVIDER_CHILD_CB_value(store->child_cbs, i);
1762 if (child_cb->prov == thisprov) {
1763 /* Found an entry */
1764 sk_OSSL_PROVIDER_CHILD_CB_delete(store->child_cbs, i);
1765 OPENSSL_free(child_cb);
1766 break;
1767 }
1768 }
1769 CRYPTO_THREAD_unlock(store->lock);
1770}
1771#endif
1772
1773/*-
1774 * Core functions for the provider
1775 * ===============================
1776 *
1777 * This is the set of functions that the core makes available to the provider
1778 */
1779
1780/*
1781 * This returns a list of Provider Object parameters with their types, for
1782 * discovery. We do not expect that many providers will use this, but one
1783 * never knows.
1784 */
1785static const OSSL_PARAM param_types[] = {
1786 OSSL_PARAM_DEFN(OSSL_PROV_PARAM_CORE_VERSION, OSSL_PARAM_UTF8_PTR, NULL, 0),
1787 OSSL_PARAM_DEFN(OSSL_PROV_PARAM_CORE_PROV_NAME, OSSL_PARAM_UTF8_PTR,
1788 NULL, 0),
1789#ifndef FIPS_MODULE
1790 OSSL_PARAM_DEFN(OSSL_PROV_PARAM_CORE_MODULE_FILENAME, OSSL_PARAM_UTF8_PTR,
1791 NULL, 0),
1792#endif
1793 OSSL_PARAM_END
1794};
1795
1796/*
1797 * Forward declare all the functions that are provided aa dispatch.
1798 * This ensures that the compiler will complain if they aren't defined
1799 * with the correct signature.
1800 */
1801static OSSL_FUNC_core_gettable_params_fn core_gettable_params;
1802static OSSL_FUNC_core_get_params_fn core_get_params;
1803static OSSL_FUNC_core_thread_start_fn core_thread_start;
1804static OSSL_FUNC_core_get_libctx_fn core_get_libctx;
1805#ifndef FIPS_MODULE
1806static OSSL_FUNC_core_new_error_fn core_new_error;
1807static OSSL_FUNC_core_set_error_debug_fn core_set_error_debug;
1808static OSSL_FUNC_core_vset_error_fn core_vset_error;
1809static OSSL_FUNC_core_set_error_mark_fn core_set_error_mark;
1810static OSSL_FUNC_core_clear_last_error_mark_fn core_clear_last_error_mark;
1811static OSSL_FUNC_core_pop_error_to_mark_fn core_pop_error_to_mark;
1812static OSSL_FUNC_core_obj_add_sigid_fn core_obj_add_sigid;
1813static OSSL_FUNC_core_obj_create_fn core_obj_create;
1814#endif
1815
1816static const OSSL_PARAM *core_gettable_params(const OSSL_CORE_HANDLE *handle)
1817{
1818 return param_types;
1819}
1820
1821static int core_get_params(const OSSL_CORE_HANDLE *handle, OSSL_PARAM params[])
1822{
1823 int i;
1824 OSSL_PARAM *p;
1825 /*
1826 * We created this object originally and we know it is actually an
1827 * OSSL_PROVIDER *, so the cast is safe
1828 */
1829 OSSL_PROVIDER *prov = (OSSL_PROVIDER *)handle;
1830
1831 if ((p = OSSL_PARAM_locate(params, OSSL_PROV_PARAM_CORE_VERSION)) != NULL)
1832 OSSL_PARAM_set_utf8_ptr(p, OPENSSL_VERSION_STR);
1833 if ((p = OSSL_PARAM_locate(params, OSSL_PROV_PARAM_CORE_PROV_NAME)) != NULL)
1834 OSSL_PARAM_set_utf8_ptr(p, prov->name);
1835
1836#ifndef FIPS_MODULE
1837 if ((p = OSSL_PARAM_locate(params,
1838 OSSL_PROV_PARAM_CORE_MODULE_FILENAME)) != NULL)
1839 OSSL_PARAM_set_utf8_ptr(p, ossl_provider_module_path(prov));
1840#endif
1841
1842 if (prov->parameters == NULL)
1843 return 1;
1844
1845 for (i = 0; i < sk_INFOPAIR_num(prov->parameters); i++) {
1846 INFOPAIR *pair = sk_INFOPAIR_value(prov->parameters, i);
1847
1848 if ((p = OSSL_PARAM_locate(params, pair->name)) != NULL)
1849 OSSL_PARAM_set_utf8_ptr(p, pair->value);
1850 }
1851 return 1;
1852}
1853
1854static OPENSSL_CORE_CTX *core_get_libctx(const OSSL_CORE_HANDLE *handle)
1855{
1856 /*
1857 * We created this object originally and we know it is actually an
1858 * OSSL_PROVIDER *, so the cast is safe
1859 */
1860 OSSL_PROVIDER *prov = (OSSL_PROVIDER *)handle;
1861
1862 /*
1863 * Using ossl_provider_libctx would be wrong as that returns
1864 * NULL for |prov| == NULL and NULL libctx has a special meaning
1865 * that does not apply here. Here |prov| == NULL can happen only in
1866 * case of a coding error.
1867 */
1868 assert(prov != NULL);
1869 return (OPENSSL_CORE_CTX *)prov->libctx;
1870}
1871
1872static int core_thread_start(const OSSL_CORE_HANDLE *handle,
1873 OSSL_thread_stop_handler_fn handfn,
1874 void *arg)
1875{
1876 /*
1877 * We created this object originally and we know it is actually an
1878 * OSSL_PROVIDER *, so the cast is safe
1879 */
1880 OSSL_PROVIDER *prov = (OSSL_PROVIDER *)handle;
1881
1882 return ossl_init_thread_start(prov, arg, handfn);
1883}
1884
1885/*
1886 * The FIPS module inner provider doesn't implement these. They aren't
1887 * needed there, since the FIPS module upcalls are always the outer provider
1888 * ones.
1889 */
1890#ifndef FIPS_MODULE
1891/*
1892 * These error functions should use |handle| to select the proper
1893 * library context to report in the correct error stack if error
1894 * stacks become tied to the library context.
1895 * We cannot currently do that since there's no support for it in the
1896 * ERR subsystem.
1897 */
1898static void core_new_error(const OSSL_CORE_HANDLE *handle)
1899{
1900 ERR_new();
1901}
1902
1903static void core_set_error_debug(const OSSL_CORE_HANDLE *handle,
1904 const char *file, int line, const char *func)
1905{
1906 ERR_set_debug(file, line, func);
1907}
1908
1909static void core_vset_error(const OSSL_CORE_HANDLE *handle,
1910 uint32_t reason, const char *fmt, va_list args)
1911{
1912 /*
1913 * We created this object originally and we know it is actually an
1914 * OSSL_PROVIDER *, so the cast is safe
1915 */
1916 OSSL_PROVIDER *prov = (OSSL_PROVIDER *)handle;
1917
1918 /*
1919 * If the uppermost 8 bits are non-zero, it's an OpenSSL library
1920 * error and will be treated as such. Otherwise, it's a new style
1921 * provider error and will be treated as such.
1922 */
1923 if (ERR_GET_LIB(reason) != 0) {
1924 ERR_vset_error(ERR_GET_LIB(reason), ERR_GET_REASON(reason), fmt, args);
1925 } else {
1926 ERR_vset_error(prov->error_lib, (int)reason, fmt, args);
1927 }
1928}
1929
1930static int core_set_error_mark(const OSSL_CORE_HANDLE *handle)
1931{
1932 return ERR_set_mark();
1933}
1934
1935static int core_clear_last_error_mark(const OSSL_CORE_HANDLE *handle)
1936{
1937 return ERR_clear_last_mark();
1938}
1939
1940static int core_pop_error_to_mark(const OSSL_CORE_HANDLE *handle)
1941{
1942 return ERR_pop_to_mark();
1943}
1944
1945static int core_obj_add_sigid(const OSSL_CORE_HANDLE *prov,
1946 const char *sign_name, const char *digest_name,
1947 const char *pkey_name)
1948{
1949 int sign_nid = OBJ_txt2nid(sign_name);
1950 int digest_nid = OBJ_txt2nid(digest_name);
1951 int pkey_nid = OBJ_txt2nid(pkey_name);
1952
1953 if (sign_nid == NID_undef)
1954 return 0;
1955
1956 /*
1957 * Check if it already exists. This is a success if so (even if we don't
1958 * have nids for the digest/pkey)
1959 */
1960 if (OBJ_find_sigid_algs(sign_nid, NULL, NULL))
1961 return 1;
1962
1963 if (digest_nid == NID_undef
1964 || pkey_nid == NID_undef)
1965 return 0;
1966
1967 return OBJ_add_sigid(sign_nid, digest_nid, pkey_nid);
1968}
1969
1970static int core_obj_create(const OSSL_CORE_HANDLE *prov, const char *oid,
1971 const char *sn, const char *ln)
1972{
1973 /* Check if it already exists and create it if not */
1974 return OBJ_txt2nid(oid) != NID_undef
1975 || OBJ_create(oid, sn, ln) != NID_undef;
1976}
1977#endif /* FIPS_MODULE */
1978
1979/*
1980 * Functions provided by the core.
1981 */
1982static const OSSL_DISPATCH core_dispatch_[] = {
1983 { OSSL_FUNC_CORE_GETTABLE_PARAMS, (void (*)(void))core_gettable_params },
1984 { OSSL_FUNC_CORE_GET_PARAMS, (void (*)(void))core_get_params },
1985 { OSSL_FUNC_CORE_GET_LIBCTX, (void (*)(void))core_get_libctx },
1986 { OSSL_FUNC_CORE_THREAD_START, (void (*)(void))core_thread_start },
1987#ifndef FIPS_MODULE
1988 { OSSL_FUNC_CORE_NEW_ERROR, (void (*)(void))core_new_error },
1989 { OSSL_FUNC_CORE_SET_ERROR_DEBUG, (void (*)(void))core_set_error_debug },
1990 { OSSL_FUNC_CORE_VSET_ERROR, (void (*)(void))core_vset_error },
1991 { OSSL_FUNC_CORE_SET_ERROR_MARK, (void (*)(void))core_set_error_mark },
1992 { OSSL_FUNC_CORE_CLEAR_LAST_ERROR_MARK,
1993 (void (*)(void))core_clear_last_error_mark },
1994 { OSSL_FUNC_CORE_POP_ERROR_TO_MARK, (void (*)(void))core_pop_error_to_mark },
1995 { OSSL_FUNC_BIO_NEW_FILE, (void (*)(void))ossl_core_bio_new_file },
1996 { OSSL_FUNC_BIO_NEW_MEMBUF, (void (*)(void))ossl_core_bio_new_mem_buf },
1997 { OSSL_FUNC_BIO_READ_EX, (void (*)(void))ossl_core_bio_read_ex },
1998 { OSSL_FUNC_BIO_WRITE_EX, (void (*)(void))ossl_core_bio_write_ex },
1999 { OSSL_FUNC_BIO_GETS, (void (*)(void))ossl_core_bio_gets },
2000 { OSSL_FUNC_BIO_PUTS, (void (*)(void))ossl_core_bio_puts },
2001 { OSSL_FUNC_BIO_CTRL, (void (*)(void))ossl_core_bio_ctrl },
2002 { OSSL_FUNC_BIO_UP_REF, (void (*)(void))ossl_core_bio_up_ref },
2003 { OSSL_FUNC_BIO_FREE, (void (*)(void))ossl_core_bio_free },
2004 { OSSL_FUNC_BIO_VPRINTF, (void (*)(void))ossl_core_bio_vprintf },
2005 { OSSL_FUNC_BIO_VSNPRINTF, (void (*)(void))BIO_vsnprintf },
2006 { OSSL_FUNC_SELF_TEST_CB, (void (*)(void))OSSL_SELF_TEST_get_callback },
2007 { OSSL_FUNC_GET_ENTROPY, (void (*)(void))ossl_rand_get_entropy },
2008 { OSSL_FUNC_CLEANUP_ENTROPY, (void (*)(void))ossl_rand_cleanup_entropy },
2009 { OSSL_FUNC_GET_NONCE, (void (*)(void))ossl_rand_get_nonce },
2010 { OSSL_FUNC_CLEANUP_NONCE, (void (*)(void))ossl_rand_cleanup_nonce },
2011#endif
2012 { OSSL_FUNC_CRYPTO_MALLOC, (void (*)(void))CRYPTO_malloc },
2013 { OSSL_FUNC_CRYPTO_ZALLOC, (void (*)(void))CRYPTO_zalloc },
2014 { OSSL_FUNC_CRYPTO_FREE, (void (*)(void))CRYPTO_free },
2015 { OSSL_FUNC_CRYPTO_CLEAR_FREE, (void (*)(void))CRYPTO_clear_free },
2016 { OSSL_FUNC_CRYPTO_REALLOC, (void (*)(void))CRYPTO_realloc },
2017 { OSSL_FUNC_CRYPTO_CLEAR_REALLOC, (void (*)(void))CRYPTO_clear_realloc },
2018 { OSSL_FUNC_CRYPTO_SECURE_MALLOC, (void (*)(void))CRYPTO_secure_malloc },
2019 { OSSL_FUNC_CRYPTO_SECURE_ZALLOC, (void (*)(void))CRYPTO_secure_zalloc },
2020 { OSSL_FUNC_CRYPTO_SECURE_FREE, (void (*)(void))CRYPTO_secure_free },
2021 { OSSL_FUNC_CRYPTO_SECURE_CLEAR_FREE,
2022 (void (*)(void))CRYPTO_secure_clear_free },
2023 { OSSL_FUNC_CRYPTO_SECURE_ALLOCATED,
2024 (void (*)(void))CRYPTO_secure_allocated },
2025 { OSSL_FUNC_OPENSSL_CLEANSE, (void (*)(void))OPENSSL_cleanse },
2026#ifndef FIPS_MODULE
2027 { OSSL_FUNC_PROVIDER_REGISTER_CHILD_CB,
2028 (void (*)(void))ossl_provider_register_child_cb },
2029 { OSSL_FUNC_PROVIDER_DEREGISTER_CHILD_CB,
2030 (void (*)(void))ossl_provider_deregister_child_cb },
2031 { OSSL_FUNC_PROVIDER_NAME,
2032 (void (*)(void))OSSL_PROVIDER_get0_name },
2033 { OSSL_FUNC_PROVIDER_GET0_PROVIDER_CTX,
2034 (void (*)(void))OSSL_PROVIDER_get0_provider_ctx },
2035 { OSSL_FUNC_PROVIDER_GET0_DISPATCH,
2036 (void (*)(void))OSSL_PROVIDER_get0_dispatch },
2037 { OSSL_FUNC_PROVIDER_UP_REF,
2038 (void (*)(void))provider_up_ref_intern },
2039 { OSSL_FUNC_PROVIDER_FREE,
2040 (void (*)(void))provider_free_intern },
2041 { OSSL_FUNC_CORE_OBJ_ADD_SIGID, (void (*)(void))core_obj_add_sigid },
2042 { OSSL_FUNC_CORE_OBJ_CREATE, (void (*)(void))core_obj_create },
2043#endif
2044 { 0, NULL }
2045};
2046static const OSSL_DISPATCH *core_dispatch = core_dispatch_;
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette