2019-01-20 20:14:58 +08:00
|
|
|
/*
|
2024-04-10 06:17:35 +08:00
|
|
|
* Copyright 2019-2024 The OpenSSL Project Authors. All Rights Reserved.
|
2019-01-20 20:14:58 +08:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
|
|
|
*/
|
|
|
|
|
2021-03-16 19:19:38 +08:00
|
|
|
#include <assert.h>
|
2019-01-20 20:14:58 +08:00
|
|
|
#include <openssl/core.h>
|
2020-06-21 07:21:19 +08:00
|
|
|
#include <openssl/core_dispatch.h>
|
2019-08-19 07:18:33 +08:00
|
|
|
#include <openssl/core_names.h>
|
2020-02-25 12:29:30 +08:00
|
|
|
#include <openssl/provider.h>
|
2019-03-21 15:44:06 +08:00
|
|
|
#include <openssl/params.h>
|
2019-01-20 20:14:58 +08:00
|
|
|
#include <openssl/opensslv.h>
|
2019-09-28 06:45:33 +08:00
|
|
|
#include "crypto/cryptlib.h"
|
2022-06-22 21:08:18 +08:00
|
|
|
#ifndef FIPS_MODULE
|
2022-05-04 15:15:29 +08:00
|
|
|
#include "crypto/decoder.h" /* ossl_decoder_store_cache_flush */
|
|
|
|
#include "crypto/encoder.h" /* ossl_encoder_store_cache_flush */
|
|
|
|
#include "crypto/store.h" /* ossl_store_loader_store_cache_flush */
|
2022-06-22 21:08:18 +08:00
|
|
|
#endif
|
|
|
|
#include "crypto/evp.h" /* evp_method_store_cache_flush */
|
2020-10-30 13:53:22 +08:00
|
|
|
#include "crypto/rand.h"
|
2019-03-18 01:06:59 +08:00
|
|
|
#include "internal/nelem.h"
|
2019-01-20 20:14:58 +08:00
|
|
|
#include "internal/thread_once.h"
|
|
|
|
#include "internal/provider.h"
|
|
|
|
#include "internal/refcount.h"
|
2021-03-04 11:53:53 +08:00
|
|
|
#include "internal/bio.h"
|
2021-04-21 23:51:41 +08:00
|
|
|
#include "internal/core.h"
|
2019-03-18 01:06:59 +08:00
|
|
|
#include "provider_local.h"
|
2022-03-14 16:13:12 +08:00
|
|
|
#include "crypto/context.h"
|
2020-04-14 04:34:56 +08:00
|
|
|
#ifndef FIPS_MODULE
|
2020-01-15 08:48:01 +08:00
|
|
|
# include <openssl/self_test.h>
|
2024-07-01 09:11:16 +08:00
|
|
|
# include <openssl/indicator.h>
|
2020-01-15 08:48:01 +08:00
|
|
|
#endif
|
2019-03-18 01:06:59 +08:00
|
|
|
|
2021-08-30 22:33:07 +08:00
|
|
|
/*
|
|
|
|
* This file defines and uses a number of different structures:
|
|
|
|
*
|
|
|
|
* OSSL_PROVIDER (provider_st): Used to represent all information related to a
|
|
|
|
* single instance of a provider.
|
|
|
|
*
|
|
|
|
* provider_store_st: Holds information about the collection of providers that
|
|
|
|
* are available within the current library context (OSSL_LIB_CTX). It also
|
|
|
|
* holds configuration information about providers that could be loaded at some
|
|
|
|
* future point.
|
|
|
|
*
|
|
|
|
* OSSL_PROVIDER_CHILD_CB: An instance of this structure holds the callbacks
|
|
|
|
* that have been registered for a child library context and the associated
|
|
|
|
* provider that registered those callbacks.
|
|
|
|
*
|
|
|
|
* Where a child library context exists then it has its own instance of the
|
|
|
|
* provider store. Each provider that exists in the parent provider store, has
|
|
|
|
* an associated child provider in the child library context's provider store.
|
|
|
|
* As providers get activated or deactivated this needs to be mirrored in the
|
|
|
|
* associated child providers.
|
|
|
|
*
|
|
|
|
* LOCKING
|
|
|
|
* =======
|
|
|
|
*
|
|
|
|
* There are a number of different locks used in this file and it is important
|
|
|
|
* to understand how they should be used in order to avoid deadlocks.
|
|
|
|
*
|
|
|
|
* Fields within a structure can often be "write once" on creation, and then
|
|
|
|
* "read many". Creation of a structure is done by a single thread, and
|
|
|
|
* therefore no lock is required for the "write once/read many" fields. It is
|
|
|
|
* safe for multiple threads to read these fields without a lock, because they
|
|
|
|
* will never be changed.
|
|
|
|
*
|
|
|
|
* However some fields may be changed after a structure has been created and
|
|
|
|
* shared between multiple threads. Where this is the case a lock is required.
|
|
|
|
*
|
|
|
|
* The locks available are:
|
|
|
|
*
|
|
|
|
* The provider flag_lock: Used to control updates to the various provider
|
2023-05-10 19:26:56 +08:00
|
|
|
* "flags" (flag_initialized and flag_activated).
|
2021-08-30 22:33:07 +08:00
|
|
|
*
|
2023-06-22 07:34:20 +08:00
|
|
|
* The provider activatecnt_lock: Used to control updates to the provider
|
|
|
|
* activatecnt value.
|
2021-08-30 22:33:07 +08:00
|
|
|
*
|
|
|
|
* The provider optbits_lock: Used to control access to the provider's
|
|
|
|
* operation_bits and operation_bits_sz fields.
|
|
|
|
*
|
|
|
|
* The store default_path_lock: Used to control access to the provider store's
|
|
|
|
* default search path value (default_path)
|
|
|
|
*
|
|
|
|
* The store lock: Used to control the stack of provider's held within the
|
|
|
|
* provider store, as well as the stack of registered child provider callbacks.
|
|
|
|
*
|
|
|
|
* As a general rule-of-thumb it is best to:
|
|
|
|
* - keep the scope of the code that is protected by a lock to the absolute
|
|
|
|
* minimum possible;
|
|
|
|
* - try to keep the scope of the lock to within a single function (i.e. avoid
|
|
|
|
* making calls to other functions while holding a lock);
|
|
|
|
* - try to only ever hold one lock at a time.
|
|
|
|
*
|
|
|
|
* Unfortunately, it is not always possible to stick to the above guidelines.
|
|
|
|
* Where they are not adhered to there is always a danger of inadvertently
|
|
|
|
* introducing the possibility of deadlock. The following rules MUST be adhered
|
|
|
|
* to in order to avoid that:
|
|
|
|
* - Holding multiple locks at the same time is only allowed for the
|
2023-06-22 07:34:20 +08:00
|
|
|
* provider store lock, the provider activatecnt_lock and the provider flag_lock.
|
2021-08-30 22:33:07 +08:00
|
|
|
* - When holding multiple locks they must be acquired in the following order of
|
|
|
|
* precedence:
|
|
|
|
* 1) provider store lock
|
|
|
|
* 2) provider flag_lock
|
2023-06-22 07:34:20 +08:00
|
|
|
* 3) provider activatecnt_lock
|
2021-08-30 22:33:07 +08:00
|
|
|
* - When releasing locks they must be released in the reverse order to which
|
|
|
|
* they were acquired
|
|
|
|
* - No locks may be held when making an upcall. NOTE: Some common functions
|
|
|
|
* can make upcalls as part of their normal operation. If you need to call
|
|
|
|
* some other function while holding a lock make sure you know whether it
|
|
|
|
* will make any upcalls or not. For example ossl_provider_up_ref() can call
|
|
|
|
* ossl_provider_up_ref_parent() which can call the c_prov_up_ref() upcall.
|
2021-11-10 00:23:34 +08:00
|
|
|
* - It is permissible to hold the store and flag locks when calling child
|
|
|
|
* provider callbacks. No other locks may be held during such callbacks.
|
2021-08-30 22:33:07 +08:00
|
|
|
*/
|
|
|
|
|
2019-03-18 01:06:59 +08:00
|
|
|
static OSSL_PROVIDER *provider_new(const char *name,
|
2021-06-18 22:56:54 +08:00
|
|
|
OSSL_provider_init_fn *init_function,
|
|
|
|
STACK_OF(INFOPAIR) *parameters);
|
2019-01-20 20:14:58 +08:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Provider Object structure
|
|
|
|
* =========================
|
|
|
|
*/
|
|
|
|
|
2021-05-07 18:03:59 +08:00
|
|
|
#ifndef FIPS_MODULE
|
2021-04-23 19:08:27 +08:00
|
|
|
typedef struct {
|
|
|
|
OSSL_PROVIDER *prov;
|
|
|
|
int (*create_cb)(const OSSL_CORE_HANDLE *provider, void *cbdata);
|
2021-05-12 16:44:20 +08:00
|
|
|
int (*remove_cb)(const OSSL_CORE_HANDLE *provider, void *cbdata);
|
|
|
|
int (*global_props_cb)(const char *props, void *cbdata);
|
2021-04-23 19:08:27 +08:00
|
|
|
void *cbdata;
|
|
|
|
} OSSL_PROVIDER_CHILD_CB;
|
|
|
|
DEFINE_STACK_OF(OSSL_PROVIDER_CHILD_CB)
|
2021-05-07 18:03:59 +08:00
|
|
|
#endif
|
2021-04-23 19:08:27 +08:00
|
|
|
|
2019-01-20 20:14:58 +08:00
|
|
|
struct provider_store_st; /* Forward declaration */
|
|
|
|
|
|
|
|
struct ossl_provider_st {
|
|
|
|
/* Flag bits */
|
|
|
|
unsigned int flag_initialized:1;
|
2020-12-16 22:15:06 +08:00
|
|
|
unsigned int flag_activated:1;
|
2019-01-20 20:14:58 +08:00
|
|
|
|
2021-03-01 20:27:24 +08:00
|
|
|
/* Getting and setting the flags require synchronization */
|
|
|
|
CRYPTO_RWLOCK *flag_lock;
|
|
|
|
|
2019-01-20 20:14:58 +08:00
|
|
|
/* OpenSSL library side data */
|
|
|
|
CRYPTO_REF_COUNT refcnt;
|
2023-06-22 07:34:20 +08:00
|
|
|
CRYPTO_RWLOCK *activatecnt_lock; /* For the activatecnt counter */
|
2021-04-23 23:18:28 +08:00
|
|
|
int activatecnt;
|
2019-01-20 20:14:58 +08:00
|
|
|
char *name;
|
2019-03-21 15:44:06 +08:00
|
|
|
char *path;
|
2019-01-20 20:14:58 +08:00
|
|
|
DSO *module;
|
|
|
|
OSSL_provider_init_fn *init_function;
|
2019-03-21 15:44:06 +08:00
|
|
|
STACK_OF(INFOPAIR) *parameters;
|
2020-10-15 17:55:50 +08:00
|
|
|
OSSL_LIB_CTX *libctx; /* The library context this instance is in */
|
2019-03-14 17:53:27 +08:00
|
|
|
struct provider_store_st *store; /* The store this instance belongs to */
|
2020-04-14 04:34:56 +08:00
|
|
|
#ifndef FIPS_MODULE
|
2019-06-18 17:39:13 +08:00
|
|
|
/*
|
|
|
|
* In the FIPS module inner provider, this isn't needed, since the
|
|
|
|
* error upcalls are always direct calls to the outer provider.
|
|
|
|
*/
|
2019-06-18 17:18:31 +08:00
|
|
|
int error_lib; /* ERR library number, one for each provider */
|
2019-06-18 17:39:13 +08:00
|
|
|
# ifndef OPENSSL_NO_ERR
|
2019-06-18 17:18:31 +08:00
|
|
|
ERR_STRING_DATA *error_strings; /* Copy of what the provider gives us */
|
2019-06-18 17:39:13 +08:00
|
|
|
# endif
|
2019-06-18 17:18:31 +08:00
|
|
|
#endif
|
2019-01-20 20:14:58 +08:00
|
|
|
|
|
|
|
/* Provider side functions */
|
2020-06-21 07:19:16 +08:00
|
|
|
OSSL_FUNC_provider_teardown_fn *teardown;
|
|
|
|
OSSL_FUNC_provider_gettable_params_fn *gettable_params;
|
|
|
|
OSSL_FUNC_provider_get_params_fn *get_params;
|
|
|
|
OSSL_FUNC_provider_get_capabilities_fn *get_capabilities;
|
2020-08-09 16:06:52 +08:00
|
|
|
OSSL_FUNC_provider_self_test_fn *self_test;
|
2020-06-21 07:19:16 +08:00
|
|
|
OSSL_FUNC_provider_query_operation_fn *query_operation;
|
2020-09-25 08:19:19 +08:00
|
|
|
OSSL_FUNC_provider_unquery_operation_fn *unquery_operation;
|
2019-04-30 19:41:51 +08:00
|
|
|
|
2020-05-15 21:56:05 +08:00
|
|
|
/*
|
|
|
|
* Cache of bit to indicate of query_operation() has been called on
|
|
|
|
* a specific operation or not.
|
|
|
|
*/
|
|
|
|
unsigned char *operation_bits;
|
|
|
|
size_t operation_bits_sz;
|
2020-12-12 00:29:25 +08:00
|
|
|
CRYPTO_RWLOCK *opbits_lock;
|
2020-05-15 21:56:05 +08:00
|
|
|
|
2021-05-07 18:03:59 +08:00
|
|
|
#ifndef FIPS_MODULE
|
2021-04-21 23:51:41 +08:00
|
|
|
/* Whether this provider is the child of some other provider */
|
2021-04-29 23:37:42 +08:00
|
|
|
const OSSL_CORE_HANDLE *handle;
|
2021-04-21 23:51:41 +08:00
|
|
|
unsigned int ischild:1;
|
2021-05-07 18:03:59 +08:00
|
|
|
#endif
|
2021-04-21 23:51:41 +08:00
|
|
|
|
2019-04-30 19:41:51 +08:00
|
|
|
/* Provider side data */
|
|
|
|
void *provctx;
|
2021-04-21 23:51:41 +08:00
|
|
|
const OSSL_DISPATCH *dispatch;
|
2019-01-20 20:14:58 +08:00
|
|
|
};
|
|
|
|
DEFINE_STACK_OF(OSSL_PROVIDER)
|
|
|
|
|
|
|
|
static int ossl_provider_cmp(const OSSL_PROVIDER * const *a,
|
|
|
|
const OSSL_PROVIDER * const *b)
|
|
|
|
{
|
|
|
|
return strcmp((*a)->name, (*b)->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-
|
|
|
|
* Provider Object store
|
|
|
|
* =====================
|
|
|
|
*
|
|
|
|
* The Provider Object store is a library context object, and therefore needs
|
|
|
|
* an index.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct provider_store_st {
|
2021-04-29 23:37:42 +08:00
|
|
|
OSSL_LIB_CTX *libctx;
|
2019-01-20 20:14:58 +08:00
|
|
|
STACK_OF(OSSL_PROVIDER) *providers;
|
2021-04-23 19:08:27 +08:00
|
|
|
STACK_OF(OSSL_PROVIDER_CHILD_CB) *child_cbs;
|
2021-03-23 06:44:22 +08:00
|
|
|
CRYPTO_RWLOCK *default_path_lock;
|
2019-01-20 20:14:58 +08:00
|
|
|
CRYPTO_RWLOCK *lock;
|
2020-02-25 12:29:30 +08:00
|
|
|
char *default_path;
|
2021-06-21 22:59:41 +08:00
|
|
|
OSSL_PROVIDER_INFO *provinfo;
|
2021-06-18 19:28:40 +08:00
|
|
|
size_t numprovinfo;
|
|
|
|
size_t provinfosz;
|
2019-03-14 17:53:27 +08:00
|
|
|
unsigned int use_fallbacks:1;
|
2021-04-27 13:17:25 +08:00
|
|
|
unsigned int freeing:1;
|
2019-01-20 20:14:58 +08:00
|
|
|
};
|
|
|
|
|
2020-05-23 22:39:18 +08:00
|
|
|
/*
|
2020-12-16 22:15:06 +08:00
|
|
|
* provider_deactivate_free() is a wrapper around ossl_provider_deactivate()
|
|
|
|
* and ossl_provider_free(), called as needed.
|
2020-05-23 22:39:18 +08:00
|
|
|
* Since this is only called when the provider store is being emptied, we
|
|
|
|
* don't need to care about any lock.
|
|
|
|
*/
|
|
|
|
static void provider_deactivate_free(OSSL_PROVIDER *prov)
|
|
|
|
{
|
2020-12-16 22:15:06 +08:00
|
|
|
if (prov->flag_activated)
|
2021-11-05 21:42:40 +08:00
|
|
|
ossl_provider_deactivate(prov, 1);
|
2020-05-23 22:39:18 +08:00
|
|
|
ossl_provider_free(prov);
|
|
|
|
}
|
|
|
|
|
2021-05-07 18:03:59 +08:00
|
|
|
#ifndef FIPS_MODULE
|
2021-04-23 19:08:27 +08:00
|
|
|
static void ossl_provider_child_cb_free(OSSL_PROVIDER_CHILD_CB *cb)
|
|
|
|
{
|
|
|
|
OPENSSL_free(cb);
|
|
|
|
}
|
2021-05-07 18:03:59 +08:00
|
|
|
#endif
|
2021-04-23 19:08:27 +08:00
|
|
|
|
2021-06-18 22:56:54 +08:00
|
|
|
static void infopair_free(INFOPAIR *pair)
|
|
|
|
{
|
|
|
|
OPENSSL_free(pair->name);
|
|
|
|
OPENSSL_free(pair->value);
|
|
|
|
OPENSSL_free(pair);
|
|
|
|
}
|
|
|
|
|
|
|
|
static INFOPAIR *infopair_copy(const INFOPAIR *src)
|
|
|
|
{
|
|
|
|
INFOPAIR *dest = OPENSSL_zalloc(sizeof(*dest));
|
|
|
|
|
|
|
|
if (dest == NULL)
|
|
|
|
return NULL;
|
|
|
|
if (src->name != NULL) {
|
|
|
|
dest->name = OPENSSL_strdup(src->name);
|
|
|
|
if (dest->name == NULL)
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if (src->value != NULL) {
|
|
|
|
dest->value = OPENSSL_strdup(src->value);
|
|
|
|
if (dest->value == NULL)
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
return dest;
|
|
|
|
err:
|
|
|
|
OPENSSL_free(dest->name);
|
|
|
|
OPENSSL_free(dest);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-06-21 22:59:41 +08:00
|
|
|
void ossl_provider_info_clear(OSSL_PROVIDER_INFO *info)
|
2021-06-18 22:56:54 +08:00
|
|
|
{
|
|
|
|
OPENSSL_free(info->name);
|
|
|
|
OPENSSL_free(info->path);
|
|
|
|
sk_INFOPAIR_pop_free(info->parameters, infopair_free);
|
|
|
|
}
|
|
|
|
|
2022-03-14 16:13:12 +08:00
|
|
|
void ossl_provider_store_free(void *vstore)
|
2019-01-20 20:14:58 +08:00
|
|
|
{
|
|
|
|
struct provider_store_st *store = vstore;
|
2021-06-18 19:28:40 +08:00
|
|
|
size_t i;
|
2019-01-20 20:14:58 +08:00
|
|
|
|
|
|
|
if (store == NULL)
|
|
|
|
return;
|
2021-04-27 13:17:25 +08:00
|
|
|
store->freeing = 1;
|
2020-02-25 12:29:30 +08:00
|
|
|
OPENSSL_free(store->default_path);
|
2020-05-23 22:39:18 +08:00
|
|
|
sk_OSSL_PROVIDER_pop_free(store->providers, provider_deactivate_free);
|
2021-05-07 18:03:59 +08:00
|
|
|
#ifndef FIPS_MODULE
|
2021-04-23 19:08:27 +08:00
|
|
|
sk_OSSL_PROVIDER_CHILD_CB_pop_free(store->child_cbs,
|
|
|
|
ossl_provider_child_cb_free);
|
2021-05-07 18:03:59 +08:00
|
|
|
#endif
|
2021-03-23 06:44:22 +08:00
|
|
|
CRYPTO_THREAD_lock_free(store->default_path_lock);
|
2019-01-20 20:14:58 +08:00
|
|
|
CRYPTO_THREAD_lock_free(store->lock);
|
2021-06-18 19:28:40 +08:00
|
|
|
for (i = 0; i < store->numprovinfo; i++)
|
2021-06-18 22:56:54 +08:00
|
|
|
ossl_provider_info_clear(&store->provinfo[i]);
|
2021-06-18 19:28:40 +08:00
|
|
|
OPENSSL_free(store->provinfo);
|
2019-01-20 20:14:58 +08:00
|
|
|
OPENSSL_free(store);
|
|
|
|
}
|
|
|
|
|
2022-03-14 16:13:12 +08:00
|
|
|
void *ossl_provider_store_new(OSSL_LIB_CTX *ctx)
|
2019-01-20 20:14:58 +08:00
|
|
|
{
|
|
|
|
struct provider_store_st *store = OPENSSL_zalloc(sizeof(*store));
|
|
|
|
|
|
|
|
if (store == NULL
|
|
|
|
|| (store->providers = sk_OSSL_PROVIDER_new(ossl_provider_cmp)) == NULL
|
2021-03-23 06:44:22 +08:00
|
|
|
|| (store->default_path_lock = CRYPTO_THREAD_lock_new()) == NULL
|
2021-05-07 18:03:59 +08:00
|
|
|
#ifndef FIPS_MODULE
|
2021-04-23 19:08:27 +08:00
|
|
|
|| (store->child_cbs = sk_OSSL_PROVIDER_CHILD_CB_new_null()) == NULL
|
2021-05-07 18:03:59 +08:00
|
|
|
#endif
|
2019-01-20 20:14:58 +08:00
|
|
|
|| (store->lock = CRYPTO_THREAD_lock_new()) == NULL) {
|
2022-03-14 16:13:12 +08:00
|
|
|
ossl_provider_store_free(store);
|
2019-03-14 17:53:27 +08:00
|
|
|
return NULL;
|
2019-01-20 20:14:58 +08:00
|
|
|
}
|
2021-04-29 23:37:42 +08:00
|
|
|
store->libctx = ctx;
|
2019-03-14 17:53:27 +08:00
|
|
|
store->use_fallbacks = 1;
|
2019-03-18 01:06:59 +08:00
|
|
|
|
2019-01-20 20:14:58 +08:00
|
|
|
return store;
|
|
|
|
}
|
|
|
|
|
2020-10-15 17:55:50 +08:00
|
|
|
static struct provider_store_st *get_provider_store(OSSL_LIB_CTX *libctx)
|
2019-01-20 20:14:58 +08:00
|
|
|
{
|
|
|
|
struct provider_store_st *store = NULL;
|
|
|
|
|
2022-03-14 16:13:12 +08:00
|
|
|
store = ossl_lib_ctx_get_data(libctx, OSSL_LIB_CTX_PROVIDER_STORE_INDEX);
|
2019-01-20 20:14:58 +08:00
|
|
|
if (store == NULL)
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_CRYPTO, ERR_R_INTERNAL_ERROR);
|
2019-01-20 20:14:58 +08:00
|
|
|
return store;
|
|
|
|
}
|
|
|
|
|
2020-10-15 17:55:50 +08:00
|
|
|
int ossl_provider_disable_fallback_loading(OSSL_LIB_CTX *libctx)
|
2020-08-13 08:02:01 +08:00
|
|
|
{
|
|
|
|
struct provider_store_st *store;
|
|
|
|
|
|
|
|
if ((store = get_provider_store(libctx)) != NULL) {
|
2021-02-19 04:31:56 +08:00
|
|
|
if (!CRYPTO_THREAD_write_lock(store->lock))
|
|
|
|
return 0;
|
2020-08-13 08:02:01 +08:00
|
|
|
store->use_fallbacks = 0;
|
2021-03-01 20:27:15 +08:00
|
|
|
CRYPTO_THREAD_unlock(store->lock);
|
2020-08-13 08:02:01 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-06-18 19:28:40 +08:00
|
|
|
#define BUILTINS_BLOCK_SIZE 10
|
|
|
|
|
2021-06-18 22:56:54 +08:00
|
|
|
int ossl_provider_info_add_to_store(OSSL_LIB_CTX *libctx,
|
2021-06-21 22:59:41 +08:00
|
|
|
OSSL_PROVIDER_INFO *entry)
|
2021-06-18 19:28:40 +08:00
|
|
|
{
|
|
|
|
struct provider_store_st *store = get_provider_store(libctx);
|
|
|
|
int ret = 0;
|
|
|
|
|
2021-06-18 22:56:54 +08:00
|
|
|
if (entry->name == NULL) {
|
2021-06-18 19:28:40 +08:00
|
|
|
ERR_raise(ERR_LIB_CRYPTO, ERR_R_PASSED_NULL_PARAMETER);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (store == NULL) {
|
|
|
|
ERR_raise(ERR_LIB_CRYPTO, ERR_R_INTERNAL_ERROR);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!CRYPTO_THREAD_write_lock(store->lock))
|
|
|
|
return 0;
|
|
|
|
if (store->provinfosz == 0) {
|
|
|
|
store->provinfo = OPENSSL_zalloc(sizeof(*store->provinfo)
|
|
|
|
* BUILTINS_BLOCK_SIZE);
|
2022-09-29 19:57:34 +08:00
|
|
|
if (store->provinfo == NULL)
|
2021-06-18 19:28:40 +08:00
|
|
|
goto err;
|
|
|
|
store->provinfosz = BUILTINS_BLOCK_SIZE;
|
|
|
|
} else if (store->numprovinfo == store->provinfosz) {
|
2021-06-21 22:59:41 +08:00
|
|
|
OSSL_PROVIDER_INFO *tmpbuiltins;
|
2021-06-18 19:28:40 +08:00
|
|
|
size_t newsz = store->provinfosz + BUILTINS_BLOCK_SIZE;
|
|
|
|
|
|
|
|
tmpbuiltins = OPENSSL_realloc(store->provinfo,
|
|
|
|
sizeof(*store->provinfo) * newsz);
|
2022-09-29 19:57:34 +08:00
|
|
|
if (tmpbuiltins == NULL)
|
2021-06-18 19:28:40 +08:00
|
|
|
goto err;
|
|
|
|
store->provinfo = tmpbuiltins;
|
|
|
|
store->provinfosz = newsz;
|
|
|
|
}
|
2021-06-18 22:56:54 +08:00
|
|
|
store->provinfo[store->numprovinfo] = *entry;
|
2021-06-18 19:28:40 +08:00
|
|
|
store->numprovinfo++;
|
|
|
|
|
|
|
|
ret = 1;
|
|
|
|
err:
|
|
|
|
CRYPTO_THREAD_unlock(store->lock);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2020-10-15 17:55:50 +08:00
|
|
|
OSSL_PROVIDER *ossl_provider_find(OSSL_LIB_CTX *libctx, const char *name,
|
2023-08-02 08:44:47 +08:00
|
|
|
ossl_unused int noconfig)
|
2019-01-20 20:14:58 +08:00
|
|
|
{
|
|
|
|
struct provider_store_st *store = NULL;
|
|
|
|
OSSL_PROVIDER *prov = NULL;
|
|
|
|
|
|
|
|
if ((store = get_provider_store(libctx)) != NULL) {
|
|
|
|
OSSL_PROVIDER tmpl = { 0, };
|
|
|
|
int i;
|
|
|
|
|
2023-08-02 08:44:47 +08:00
|
|
|
#if !defined(FIPS_MODULE) && !defined(OPENSSL_NO_AUTOLOAD_CONFIG)
|
2019-07-30 23:42:53 +08:00
|
|
|
/*
|
|
|
|
* Make sure any providers are loaded from config before we try to find
|
|
|
|
* them.
|
|
|
|
*/
|
2021-04-21 23:51:41 +08:00
|
|
|
if (!noconfig) {
|
|
|
|
if (ossl_lib_ctx_is_default(libctx))
|
|
|
|
OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CONFIG, NULL);
|
|
|
|
}
|
2019-07-30 23:42:53 +08:00
|
|
|
#endif
|
|
|
|
|
2019-01-20 20:14:58 +08:00
|
|
|
tmpl.name = (char *)name;
|
2021-11-09 22:32:14 +08:00
|
|
|
if (!CRYPTO_THREAD_write_lock(store->lock))
|
2021-02-19 04:31:56 +08:00
|
|
|
return NULL;
|
2023-04-27 08:57:12 +08:00
|
|
|
sk_OSSL_PROVIDER_sort(store->providers);
|
2021-08-30 20:04:31 +08:00
|
|
|
if ((i = sk_OSSL_PROVIDER_find(store->providers, &tmpl)) != -1)
|
|
|
|
prov = sk_OSSL_PROVIDER_value(store->providers, i);
|
2019-01-20 20:14:58 +08:00
|
|
|
CRYPTO_THREAD_unlock(store->lock);
|
2021-08-30 20:04:31 +08:00
|
|
|
if (prov != NULL && !ossl_provider_up_ref(prov))
|
|
|
|
prov = NULL;
|
2019-01-20 20:14:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return prov;
|
|
|
|
}
|
|
|
|
|
2019-03-18 01:06:59 +08:00
|
|
|
/*-
|
|
|
|
* Provider Object methods
|
|
|
|
* =======================
|
|
|
|
*/
|
|
|
|
|
|
|
|
static OSSL_PROVIDER *provider_new(const char *name,
|
2021-06-18 22:56:54 +08:00
|
|
|
OSSL_provider_init_fn *init_function,
|
|
|
|
STACK_OF(INFOPAIR) *parameters)
|
2019-03-18 01:06:59 +08:00
|
|
|
{
|
|
|
|
OSSL_PROVIDER *prov = NULL;
|
|
|
|
|
2022-09-29 19:57:34 +08:00
|
|
|
if ((prov = OPENSSL_zalloc(sizeof(*prov))) == NULL)
|
|
|
|
return NULL;
|
2023-06-22 07:34:20 +08:00
|
|
|
if (!CRYPTO_NEW_REF(&prov->refcnt, 1)) {
|
2023-07-02 15:19:17 +08:00
|
|
|
OPENSSL_free(prov);
|
2023-06-22 07:34:20 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if ((prov->activatecnt_lock = CRYPTO_THREAD_lock_new()) == NULL) {
|
|
|
|
ossl_provider_free(prov);
|
2022-09-29 19:57:34 +08:00
|
|
|
ERR_raise(ERR_LIB_CRYPTO, ERR_R_CRYPTO_LIB);
|
2022-05-27 18:07:37 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((prov->opbits_lock = CRYPTO_THREAD_lock_new()) == NULL
|
2021-03-01 20:27:24 +08:00
|
|
|
|| (prov->flag_lock = CRYPTO_THREAD_lock_new()) == NULL
|
2021-06-18 22:56:54 +08:00
|
|
|
|| (prov->parameters = sk_INFOPAIR_deep_copy(parameters,
|
|
|
|
infopair_copy,
|
|
|
|
infopair_free)) == NULL) {
|
2019-03-18 01:06:59 +08:00
|
|
|
ossl_provider_free(prov);
|
2022-09-29 19:57:34 +08:00
|
|
|
ERR_raise(ERR_LIB_CRYPTO, ERR_R_CRYPTO_LIB);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if ((prov->name = OPENSSL_strdup(name)) == NULL) {
|
|
|
|
ossl_provider_free(prov);
|
2019-03-18 01:06:59 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
prov->init_function = init_function;
|
2021-06-18 22:56:54 +08:00
|
|
|
|
2019-03-18 01:06:59 +08:00
|
|
|
return prov;
|
|
|
|
}
|
|
|
|
|
2019-07-02 20:57:36 +08:00
|
|
|
int ossl_provider_up_ref(OSSL_PROVIDER *prov)
|
2019-03-18 01:06:59 +08:00
|
|
|
{
|
|
|
|
int ref = 0;
|
|
|
|
|
2023-06-22 07:34:20 +08:00
|
|
|
if (CRYPTO_UP_REF(&prov->refcnt, &ref) <= 0)
|
2019-06-04 09:32:58 +08:00
|
|
|
return 0;
|
2021-04-29 23:37:42 +08:00
|
|
|
|
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
if (prov->ischild) {
|
|
|
|
if (!ossl_provider_up_ref_parent(prov, 0)) {
|
|
|
|
ossl_provider_free(prov);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-03-18 01:06:59 +08:00
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
2021-04-29 23:37:42 +08:00
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
static int provider_up_ref_intern(OSSL_PROVIDER *prov, int activate)
|
|
|
|
{
|
|
|
|
if (activate)
|
2021-06-21 19:08:39 +08:00
|
|
|
return ossl_provider_activate(prov, 1, 0);
|
2021-04-29 23:37:42 +08:00
|
|
|
|
|
|
|
return ossl_provider_up_ref(prov);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int provider_free_intern(OSSL_PROVIDER *prov, int deactivate)
|
|
|
|
{
|
|
|
|
if (deactivate)
|
2021-11-05 21:42:40 +08:00
|
|
|
return ossl_provider_deactivate(prov, 1);
|
2021-04-29 23:37:42 +08:00
|
|
|
|
|
|
|
ossl_provider_free(prov);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2021-11-09 00:47:38 +08:00
|
|
|
/*
|
|
|
|
* We assume that the requested provider does not already exist in the store.
|
|
|
|
* The caller should check. If it does exist then adding it to the store later
|
|
|
|
* will fail.
|
|
|
|
*/
|
2020-10-15 17:55:50 +08:00
|
|
|
OSSL_PROVIDER *ossl_provider_new(OSSL_LIB_CTX *libctx, const char *name,
|
2019-07-30 23:42:53 +08:00
|
|
|
OSSL_provider_init_fn *init_function,
|
2023-08-02 23:54:01 +08:00
|
|
|
OSSL_PARAM *params, int noconfig)
|
2019-01-20 20:14:58 +08:00
|
|
|
{
|
|
|
|
struct provider_store_st *store = NULL;
|
2021-06-21 22:59:41 +08:00
|
|
|
OSSL_PROVIDER_INFO template;
|
2019-01-20 20:14:58 +08:00
|
|
|
OSSL_PROVIDER *prov = NULL;
|
|
|
|
|
|
|
|
if ((store = get_provider_store(libctx)) == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2021-06-18 22:56:54 +08:00
|
|
|
memset(&template, 0, sizeof(template));
|
2021-06-18 17:08:23 +08:00
|
|
|
if (init_function == NULL) {
|
2021-06-21 22:59:41 +08:00
|
|
|
const OSSL_PROVIDER_INFO *p;
|
2021-06-18 19:28:40 +08:00
|
|
|
size_t i;
|
2021-06-18 17:08:23 +08:00
|
|
|
|
2021-06-18 19:28:40 +08:00
|
|
|
/* Check if this is a predefined builtin provider */
|
2021-06-18 17:08:23 +08:00
|
|
|
for (p = ossl_predefined_providers; p->name != NULL; p++) {
|
|
|
|
if (strcmp(p->name, name) == 0) {
|
2021-06-18 22:56:54 +08:00
|
|
|
template = *p;
|
2021-06-18 17:08:23 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2021-06-18 19:28:40 +08:00
|
|
|
if (p->name == NULL) {
|
2023-08-02 23:54:01 +08:00
|
|
|
/* Check if this is a user added provider */
|
2021-06-18 19:28:40 +08:00
|
|
|
if (!CRYPTO_THREAD_read_lock(store->lock))
|
|
|
|
return NULL;
|
|
|
|
for (i = 0, p = store->provinfo; i < store->numprovinfo; p++, i++) {
|
|
|
|
if (strcmp(p->name, name) == 0) {
|
2021-06-18 22:56:54 +08:00
|
|
|
template = *p;
|
2021-06-18 19:28:40 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
CRYPTO_THREAD_unlock(store->lock);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
template.init = init_function;
|
2021-06-18 17:08:23 +08:00
|
|
|
}
|
|
|
|
|
2023-08-02 23:54:01 +08:00
|
|
|
if (params != NULL) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
template.parameters = sk_INFOPAIR_new_null();
|
|
|
|
if (template.parameters == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
for (i = 0; params[i].key != NULL; i++) {
|
|
|
|
if (params[i].data_type != OSSL_PARAM_UTF8_STRING)
|
|
|
|
continue;
|
|
|
|
if (ossl_provider_info_add_parameter(&template, params[i].key,
|
2024-04-11 15:27:47 +08:00
|
|
|
(char *)params[i].data) <= 0) {
|
|
|
|
sk_INFOPAIR_pop_free(template.parameters, infopair_free);
|
2023-08-02 23:54:01 +08:00
|
|
|
return NULL;
|
2024-04-11 15:27:47 +08:00
|
|
|
}
|
2023-08-02 23:54:01 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-18 01:06:59 +08:00
|
|
|
/* provider_new() generates an error, so no need here */
|
2023-08-02 23:54:01 +08:00
|
|
|
prov = provider_new(name, template.init, template.parameters);
|
|
|
|
|
|
|
|
if (params != NULL) /* We copied the parameters, let's free them */
|
|
|
|
sk_INFOPAIR_pop_free(template.parameters, infopair_free);
|
|
|
|
|
|
|
|
if (prov == NULL)
|
2019-01-20 20:14:58 +08:00
|
|
|
return NULL;
|
|
|
|
|
2024-04-05 21:06:10 +08:00
|
|
|
if (!ossl_provider_set_module_path(prov, template.path)) {
|
|
|
|
ossl_provider_free(prov);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-06-18 17:08:23 +08:00
|
|
|
prov->libctx = libctx;
|
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
prov->error_lib = ERR_get_next_error_library();
|
|
|
|
#endif
|
|
|
|
|
2019-01-20 20:14:58 +08:00
|
|
|
/*
|
|
|
|
* At this point, the provider is only partially "loaded". To be
|
2021-06-21 16:23:30 +08:00
|
|
|
* fully "loaded", ossl_provider_activate() must also be called and it must
|
|
|
|
* then be added to the provider store.
|
2019-01-20 20:14:58 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
return prov;
|
|
|
|
}
|
|
|
|
|
2021-06-21 19:49:59 +08:00
|
|
|
/* Assumes that the store lock is held */
|
|
|
|
static int create_provider_children(OSSL_PROVIDER *prov)
|
|
|
|
{
|
|
|
|
int ret = 1;
|
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
struct provider_store_st *store = prov->store;
|
|
|
|
OSSL_PROVIDER_CHILD_CB *child_cb;
|
|
|
|
int i, max;
|
|
|
|
|
|
|
|
max = sk_OSSL_PROVIDER_CHILD_CB_num(store->child_cbs);
|
|
|
|
for (i = 0; i < max; i++) {
|
|
|
|
/*
|
|
|
|
* This is newly activated (activatecnt == 1), so we need to
|
|
|
|
* create child providers as necessary.
|
|
|
|
*/
|
|
|
|
child_cb = sk_OSSL_PROVIDER_CHILD_CB_value(store->child_cbs, i);
|
|
|
|
ret &= child_cb->create_cb((OSSL_CORE_HANDLE *)prov, child_cb->cbdata);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-06-22 22:39:40 +08:00
|
|
|
int ossl_provider_add_to_store(OSSL_PROVIDER *prov, OSSL_PROVIDER **actualprov,
|
|
|
|
int retain_fallbacks)
|
2021-06-21 16:23:30 +08:00
|
|
|
{
|
2021-06-22 22:39:40 +08:00
|
|
|
struct provider_store_st *store;
|
|
|
|
int idx;
|
|
|
|
OSSL_PROVIDER tmpl = { 0, };
|
|
|
|
OSSL_PROVIDER *actualtmp = NULL;
|
2021-06-21 16:23:30 +08:00
|
|
|
|
2021-12-16 23:24:44 +08:00
|
|
|
if (actualprov != NULL)
|
|
|
|
*actualprov = NULL;
|
|
|
|
|
2021-06-21 16:23:30 +08:00
|
|
|
if ((store = get_provider_store(prov->libctx)) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
2021-06-22 22:39:40 +08:00
|
|
|
if (!CRYPTO_THREAD_write_lock(store->lock))
|
2021-06-21 16:23:30 +08:00
|
|
|
return 0;
|
2021-06-22 22:39:40 +08:00
|
|
|
|
|
|
|
tmpl.name = (char *)prov->name;
|
|
|
|
idx = sk_OSSL_PROVIDER_find(store->providers, &tmpl);
|
|
|
|
if (idx == -1)
|
|
|
|
actualtmp = prov;
|
|
|
|
else
|
|
|
|
actualtmp = sk_OSSL_PROVIDER_value(store->providers, idx);
|
|
|
|
|
|
|
|
if (idx == -1) {
|
|
|
|
if (sk_OSSL_PROVIDER_push(store->providers, prov) == 0)
|
|
|
|
goto err;
|
|
|
|
prov->store = store;
|
|
|
|
if (!create_provider_children(prov)) {
|
|
|
|
sk_OSSL_PROVIDER_delete_ptr(store->providers, prov);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if (!retain_fallbacks)
|
|
|
|
store->use_fallbacks = 0;
|
2021-06-21 19:49:59 +08:00
|
|
|
}
|
2021-06-22 22:39:40 +08:00
|
|
|
|
2021-06-21 16:23:30 +08:00
|
|
|
CRYPTO_THREAD_unlock(store->lock);
|
|
|
|
|
2021-08-30 20:04:31 +08:00
|
|
|
if (actualprov != NULL) {
|
|
|
|
if (!ossl_provider_up_ref(actualtmp)) {
|
2022-09-29 19:57:34 +08:00
|
|
|
ERR_raise(ERR_LIB_CRYPTO, ERR_R_CRYPTO_LIB);
|
2021-08-30 20:04:31 +08:00
|
|
|
actualtmp = NULL;
|
2022-06-23 23:59:50 +08:00
|
|
|
return 0;
|
2021-08-30 20:04:31 +08:00
|
|
|
}
|
|
|
|
*actualprov = actualtmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (idx >= 0) {
|
2021-06-22 22:39:40 +08:00
|
|
|
/*
|
|
|
|
* The provider is already in the store. Probably two threads
|
|
|
|
* independently initialised their own provider objects with the same
|
|
|
|
* name and raced to put them in the store. This thread lost. We
|
|
|
|
* deactivate the one we just created and use the one that already
|
|
|
|
* exists instead.
|
2021-11-05 21:42:40 +08:00
|
|
|
* If we get here then we know we did not create provider children
|
|
|
|
* above, so we inform ossl_provider_deactivate not to attempt to remove
|
|
|
|
* any.
|
2021-06-22 22:39:40 +08:00
|
|
|
*/
|
2021-11-05 21:42:40 +08:00
|
|
|
ossl_provider_deactivate(prov, 0);
|
2021-06-22 22:39:40 +08:00
|
|
|
ossl_provider_free(prov);
|
|
|
|
}
|
2023-07-11 00:41:06 +08:00
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
else {
|
|
|
|
/*
|
|
|
|
* This can be done outside the lock. We tolerate other threads getting
|
|
|
|
* the wrong result briefly when creating OSSL_DECODER_CTXs.
|
|
|
|
*/
|
|
|
|
ossl_decoder_cache_flush(prov->libctx);
|
|
|
|
}
|
|
|
|
#endif
|
2021-06-22 22:39:40 +08:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
err:
|
|
|
|
CRYPTO_THREAD_unlock(store->lock);
|
|
|
|
return 0;
|
2021-06-21 16:23:30 +08:00
|
|
|
}
|
|
|
|
|
2019-01-20 20:14:58 +08:00
|
|
|
void ossl_provider_free(OSSL_PROVIDER *prov)
|
|
|
|
{
|
|
|
|
if (prov != NULL) {
|
|
|
|
int ref = 0;
|
|
|
|
|
2023-06-22 07:34:20 +08:00
|
|
|
CRYPTO_DOWN_REF(&prov->refcnt, &ref);
|
2019-01-20 20:14:58 +08:00
|
|
|
|
|
|
|
/*
|
2020-12-16 22:15:06 +08:00
|
|
|
* When the refcount drops to zero, we clean up the provider.
|
|
|
|
* Note that this also does teardown, which may seem late,
|
|
|
|
* considering that init happens on first activation. However,
|
|
|
|
* there may be other structures hanging on to the provider after
|
|
|
|
* the last deactivation and may therefore need full access to the
|
|
|
|
* provider's services. Therefore, we deinit late.
|
2019-01-20 20:14:58 +08:00
|
|
|
*/
|
2020-12-16 22:15:06 +08:00
|
|
|
if (ref == 0) {
|
|
|
|
if (prov->flag_initialized) {
|
2021-04-21 23:51:41 +08:00
|
|
|
ossl_provider_teardown(prov);
|
2019-06-18 17:18:31 +08:00
|
|
|
#ifndef OPENSSL_NO_ERR
|
2020-04-14 04:34:56 +08:00
|
|
|
# ifndef FIPS_MODULE
|
2020-12-16 22:15:06 +08:00
|
|
|
if (prov->error_strings != NULL) {
|
|
|
|
ERR_unload_strings(prov->error_lib, prov->error_strings);
|
|
|
|
OPENSSL_free(prov->error_strings);
|
|
|
|
prov->error_strings = NULL;
|
|
|
|
}
|
2019-06-18 17:18:31 +08:00
|
|
|
# endif
|
|
|
|
#endif
|
2020-12-16 22:15:06 +08:00
|
|
|
OPENSSL_free(prov->operation_bits);
|
|
|
|
prov->operation_bits = NULL;
|
|
|
|
prov->operation_bits_sz = 0;
|
|
|
|
prov->flag_initialized = 0;
|
|
|
|
}
|
2019-01-20 20:14:58 +08:00
|
|
|
|
2020-04-14 04:34:56 +08:00
|
|
|
#ifndef FIPS_MODULE
|
2021-03-16 20:03:08 +08:00
|
|
|
/*
|
|
|
|
* We deregister thread handling whether or not the provider was
|
|
|
|
* initialized. If init was attempted but was not successful then
|
|
|
|
* the provider may still have registered a thread handler.
|
|
|
|
*/
|
|
|
|
ossl_init_thread_deregister(prov);
|
2019-01-20 20:14:58 +08:00
|
|
|
DSO_free(prov->module);
|
2019-04-10 22:01:40 +08:00
|
|
|
#endif
|
2019-01-20 20:14:58 +08:00
|
|
|
OPENSSL_free(prov->name);
|
2019-03-21 15:44:06 +08:00
|
|
|
OPENSSL_free(prov->path);
|
2021-06-18 22:56:54 +08:00
|
|
|
sk_INFOPAIR_pop_free(prov->parameters, infopair_free);
|
2020-12-12 00:29:25 +08:00
|
|
|
CRYPTO_THREAD_lock_free(prov->opbits_lock);
|
2021-03-01 20:27:24 +08:00
|
|
|
CRYPTO_THREAD_lock_free(prov->flag_lock);
|
2023-06-22 07:34:20 +08:00
|
|
|
CRYPTO_THREAD_lock_free(prov->activatecnt_lock);
|
|
|
|
CRYPTO_FREE_REF(&prov->refcnt);
|
2019-01-20 20:14:58 +08:00
|
|
|
OPENSSL_free(prov);
|
|
|
|
}
|
2021-04-29 23:37:42 +08:00
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
else if (prov->ischild) {
|
|
|
|
ossl_provider_free_parent(prov, 0);
|
|
|
|
}
|
|
|
|
#endif
|
2019-01-20 20:14:58 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-21 15:44:06 +08:00
|
|
|
/* Setters */
|
|
|
|
int ossl_provider_set_module_path(OSSL_PROVIDER *prov, const char *module_path)
|
|
|
|
{
|
|
|
|
OPENSSL_free(prov->path);
|
2021-06-09 22:27:05 +08:00
|
|
|
prov->path = NULL;
|
2019-03-21 15:44:06 +08:00
|
|
|
if (module_path == NULL)
|
|
|
|
return 1;
|
|
|
|
if ((prov->path = OPENSSL_strdup(module_path)) != NULL)
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-06-18 22:56:54 +08:00
|
|
|
static int infopair_add(STACK_OF(INFOPAIR) **infopairsk, const char *name,
|
|
|
|
const char *value)
|
2019-03-21 15:44:06 +08:00
|
|
|
{
|
|
|
|
INFOPAIR *pair = NULL;
|
|
|
|
|
2022-09-29 19:57:34 +08:00
|
|
|
if ((pair = OPENSSL_zalloc(sizeof(*pair))) == NULL
|
|
|
|
|| (pair->name = OPENSSL_strdup(name)) == NULL
|
|
|
|
|| (pair->value = OPENSSL_strdup(value)) == NULL)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
if ((*infopairsk == NULL
|
|
|
|
&& (*infopairsk = sk_INFOPAIR_new_null()) == NULL)
|
|
|
|
|| sk_INFOPAIR_push(*infopairsk, pair) <= 0) {
|
|
|
|
ERR_raise(ERR_LIB_CRYPTO, ERR_R_CRYPTO_LIB);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
2019-03-21 15:44:06 +08:00
|
|
|
|
2022-09-29 19:57:34 +08:00
|
|
|
err:
|
2019-03-21 15:44:06 +08:00
|
|
|
if (pair != NULL) {
|
|
|
|
OPENSSL_free(pair->name);
|
|
|
|
OPENSSL_free(pair->value);
|
|
|
|
OPENSSL_free(pair);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-06-18 22:56:54 +08:00
|
|
|
int ossl_provider_add_parameter(OSSL_PROVIDER *prov,
|
|
|
|
const char *name, const char *value)
|
|
|
|
{
|
|
|
|
return infopair_add(&prov->parameters, name, value);
|
|
|
|
}
|
|
|
|
|
2021-06-21 22:59:41 +08:00
|
|
|
int ossl_provider_info_add_parameter(OSSL_PROVIDER_INFO *provinfo,
|
2021-06-18 22:56:54 +08:00
|
|
|
const char *name,
|
|
|
|
const char *value)
|
|
|
|
{
|
|
|
|
return infopair_add(&provinfo->parameters, name, value);
|
|
|
|
}
|
|
|
|
|
2019-01-20 20:14:58 +08:00
|
|
|
/*
|
|
|
|
* Provider activation.
|
|
|
|
*
|
|
|
|
* What "activation" means depends on the provider form; for built in
|
|
|
|
* providers (in the library or the application alike), the provider
|
|
|
|
* can already be considered to be loaded, all that's needed is to
|
|
|
|
* initialize it. However, for dynamically loadable provider modules,
|
|
|
|
* we must first load that module.
|
|
|
|
*
|
|
|
|
* Built in modules are distinguished from dynamically loaded modules
|
|
|
|
* with an already assigned init function.
|
|
|
|
*/
|
|
|
|
static const OSSL_DISPATCH *core_dispatch; /* Define further down */
|
|
|
|
|
2020-10-15 17:55:50 +08:00
|
|
|
int OSSL_PROVIDER_set_default_search_path(OSSL_LIB_CTX *libctx,
|
|
|
|
const char *path)
|
2020-02-25 12:29:30 +08:00
|
|
|
{
|
|
|
|
struct provider_store_st *store;
|
|
|
|
char *p = NULL;
|
|
|
|
|
|
|
|
if (path != NULL) {
|
|
|
|
p = OPENSSL_strdup(path);
|
2022-09-29 19:57:34 +08:00
|
|
|
if (p == NULL)
|
2020-02-25 12:29:30 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if ((store = get_provider_store(libctx)) != NULL
|
2021-03-23 06:44:22 +08:00
|
|
|
&& CRYPTO_THREAD_write_lock(store->default_path_lock)) {
|
2020-02-25 12:29:30 +08:00
|
|
|
OPENSSL_free(store->default_path);
|
|
|
|
store->default_path = p;
|
2021-03-23 06:44:22 +08:00
|
|
|
CRYPTO_THREAD_unlock(store->default_path_lock);
|
2020-02-25 12:29:30 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
OPENSSL_free(p);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-11-24 04:08:51 +08:00
|
|
|
const char *OSSL_PROVIDER_get0_default_search_path(OSSL_LIB_CTX *libctx)
|
|
|
|
{
|
|
|
|
struct provider_store_st *store;
|
|
|
|
char *path = NULL;
|
|
|
|
|
|
|
|
if ((store = get_provider_store(libctx)) != NULL
|
|
|
|
&& CRYPTO_THREAD_read_lock(store->default_path_lock)) {
|
|
|
|
path = store->default_path;
|
|
|
|
CRYPTO_THREAD_unlock(store->default_path_lock);
|
|
|
|
}
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2019-03-14 17:53:27 +08:00
|
|
|
/*
|
|
|
|
* Internal version that doesn't affect the store flags, and thereby avoid
|
|
|
|
* locking. Direct callers must remember to set the store flags when
|
2019-06-14 16:19:56 +08:00
|
|
|
* appropriate.
|
2019-03-14 17:53:27 +08:00
|
|
|
*/
|
2021-06-21 19:49:59 +08:00
|
|
|
static int provider_init(OSSL_PROVIDER *prov)
|
2019-01-20 20:14:58 +08:00
|
|
|
{
|
|
|
|
const OSSL_DISPATCH *provider_dispatch = NULL;
|
2020-05-11 17:10:41 +08:00
|
|
|
void *tmp_provctx = NULL; /* safety measure */
|
2019-06-18 17:18:31 +08:00
|
|
|
#ifndef OPENSSL_NO_ERR
|
2020-04-14 04:34:56 +08:00
|
|
|
# ifndef FIPS_MODULE
|
2020-06-21 07:19:16 +08:00
|
|
|
OSSL_FUNC_provider_get_reason_strings_fn *p_get_reason_strings = NULL;
|
2019-06-18 17:39:13 +08:00
|
|
|
# endif
|
2019-06-18 17:18:31 +08:00
|
|
|
#endif
|
2021-03-01 20:27:24 +08:00
|
|
|
int ok = 0;
|
2019-01-20 20:14:58 +08:00
|
|
|
|
2021-06-21 19:49:59 +08:00
|
|
|
if (!ossl_assert(!prov->flag_initialized)) {
|
|
|
|
ERR_raise(ERR_LIB_CRYPTO, ERR_R_INTERNAL_ERROR);
|
2021-03-01 20:27:24 +08:00
|
|
|
goto end;
|
|
|
|
}
|
2019-01-20 20:14:58 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If the init function isn't set, it indicates that this provider is
|
|
|
|
* a loadable module.
|
|
|
|
*/
|
|
|
|
if (prov->init_function == NULL) {
|
2020-04-14 04:34:56 +08:00
|
|
|
#ifdef FIPS_MODULE
|
2021-03-01 20:27:24 +08:00
|
|
|
goto end;
|
2019-04-10 22:01:40 +08:00
|
|
|
#else
|
2019-01-20 20:14:58 +08:00
|
|
|
if (prov->module == NULL) {
|
2019-03-21 15:44:06 +08:00
|
|
|
char *allocated_path = NULL;
|
|
|
|
const char *module_path = NULL;
|
|
|
|
char *merged_path = NULL;
|
2020-02-25 12:29:30 +08:00
|
|
|
const char *load_dir = NULL;
|
2021-03-23 06:44:22 +08:00
|
|
|
char *allocated_load_dir = NULL;
|
2020-02-25 12:29:30 +08:00
|
|
|
struct provider_store_st *store;
|
2019-01-20 20:14:58 +08:00
|
|
|
|
|
|
|
if ((prov->module = DSO_new()) == NULL) {
|
|
|
|
/* DSO_new() generates an error already */
|
2021-03-01 20:27:24 +08:00
|
|
|
goto end;
|
2019-01-20 20:14:58 +08:00
|
|
|
}
|
|
|
|
|
2020-02-25 12:29:30 +08:00
|
|
|
if ((store = get_provider_store(prov->libctx)) == NULL
|
2021-03-23 06:44:22 +08:00
|
|
|
|| !CRYPTO_THREAD_read_lock(store->default_path_lock))
|
2021-03-01 20:27:24 +08:00
|
|
|
goto end;
|
2021-03-23 06:44:22 +08:00
|
|
|
|
|
|
|
if (store->default_path != NULL) {
|
|
|
|
allocated_load_dir = OPENSSL_strdup(store->default_path);
|
|
|
|
CRYPTO_THREAD_unlock(store->default_path_lock);
|
2022-09-29 19:57:34 +08:00
|
|
|
if (allocated_load_dir == NULL)
|
2021-03-23 06:44:22 +08:00
|
|
|
goto end;
|
|
|
|
load_dir = allocated_load_dir;
|
|
|
|
} else {
|
|
|
|
CRYPTO_THREAD_unlock(store->default_path_lock);
|
|
|
|
}
|
2020-02-25 12:29:30 +08:00
|
|
|
|
|
|
|
if (load_dir == NULL) {
|
|
|
|
load_dir = ossl_safe_getenv("OPENSSL_MODULES");
|
|
|
|
if (load_dir == NULL)
|
2024-06-07 02:38:43 +08:00
|
|
|
load_dir = ossl_get_modulesdir();
|
2020-02-25 12:29:30 +08:00
|
|
|
}
|
2019-01-20 20:14:58 +08:00
|
|
|
|
|
|
|
DSO_ctrl(prov->module, DSO_CTRL_SET_FLAGS,
|
|
|
|
DSO_FLAG_NAME_TRANSLATION_EXT_ONLY, NULL);
|
2019-03-21 15:44:06 +08:00
|
|
|
|
|
|
|
module_path = prov->path;
|
|
|
|
if (module_path == NULL)
|
|
|
|
module_path = allocated_path =
|
|
|
|
DSO_convert_filename(prov->module, prov->name);
|
|
|
|
if (module_path != NULL)
|
|
|
|
merged_path = DSO_merge(prov->module, module_path, load_dir);
|
|
|
|
|
|
|
|
if (merged_path == NULL
|
|
|
|
|| (DSO_load(prov->module, merged_path, NULL, 0)) == NULL) {
|
2019-01-20 20:14:58 +08:00
|
|
|
DSO_free(prov->module);
|
|
|
|
prov->module = NULL;
|
|
|
|
}
|
|
|
|
|
2019-03-21 15:44:06 +08:00
|
|
|
OPENSSL_free(merged_path);
|
|
|
|
OPENSSL_free(allocated_path);
|
2021-03-23 06:44:22 +08:00
|
|
|
OPENSSL_free(allocated_load_dir);
|
2019-01-20 20:14:58 +08:00
|
|
|
}
|
|
|
|
|
2022-10-16 13:52:09 +08:00
|
|
|
if (prov->module == NULL) {
|
|
|
|
/* DSO has already recorded errors, this is just a tracepoint */
|
|
|
|
ERR_raise_data(ERR_LIB_CRYPTO, ERR_R_DSO_LIB,
|
|
|
|
"name=%s", prov->name);
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
prov->init_function = (OSSL_provider_init_fn *)
|
|
|
|
DSO_bind_func(prov->module, "OSSL_provider_init");
|
2019-04-10 22:01:40 +08:00
|
|
|
#endif
|
2019-01-20 20:14:58 +08:00
|
|
|
}
|
|
|
|
|
2022-10-16 13:52:09 +08:00
|
|
|
/* Check for and call the initialise function for the provider. */
|
|
|
|
if (prov->init_function == NULL) {
|
|
|
|
ERR_raise_data(ERR_LIB_CRYPTO, ERR_R_UNSUPPORTED,
|
|
|
|
"name=%s, provider has no provider init function",
|
|
|
|
prov->name);
|
|
|
|
goto end;
|
|
|
|
}
|
2024-10-05 21:44:11 +08:00
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
OSSL_TRACE_BEGIN(PROVIDER) {
|
|
|
|
BIO_printf(trc_out,
|
|
|
|
"(provider %s) initalizing\n", prov->name);
|
|
|
|
} OSSL_TRACE_END(PROVIDER);
|
|
|
|
#endif
|
2022-10-16 13:52:09 +08:00
|
|
|
|
|
|
|
if (!prov->init_function((OSSL_CORE_HANDLE *)prov, core_dispatch,
|
|
|
|
&provider_dispatch, &tmp_provctx)) {
|
2020-11-10 17:28:16 +08:00
|
|
|
ERR_raise_data(ERR_LIB_CRYPTO, ERR_R_INIT_FAIL,
|
2019-07-24 19:37:42 +08:00
|
|
|
"name=%s", prov->name);
|
2021-03-01 20:27:24 +08:00
|
|
|
goto end;
|
2019-01-20 20:14:58 +08:00
|
|
|
}
|
2020-05-11 17:10:41 +08:00
|
|
|
prov->provctx = tmp_provctx;
|
2021-04-21 23:51:41 +08:00
|
|
|
prov->dispatch = provider_dispatch;
|
2019-01-20 20:14:58 +08:00
|
|
|
|
2023-11-29 21:06:51 +08:00
|
|
|
if (provider_dispatch != NULL) {
|
|
|
|
for (; provider_dispatch->function_id != 0; provider_dispatch++) {
|
|
|
|
switch (provider_dispatch->function_id) {
|
|
|
|
case OSSL_FUNC_PROVIDER_TEARDOWN:
|
|
|
|
prov->teardown =
|
|
|
|
OSSL_FUNC_provider_teardown(provider_dispatch);
|
|
|
|
break;
|
|
|
|
case OSSL_FUNC_PROVIDER_GETTABLE_PARAMS:
|
|
|
|
prov->gettable_params =
|
|
|
|
OSSL_FUNC_provider_gettable_params(provider_dispatch);
|
|
|
|
break;
|
|
|
|
case OSSL_FUNC_PROVIDER_GET_PARAMS:
|
|
|
|
prov->get_params =
|
|
|
|
OSSL_FUNC_provider_get_params(provider_dispatch);
|
|
|
|
break;
|
|
|
|
case OSSL_FUNC_PROVIDER_SELF_TEST:
|
|
|
|
prov->self_test =
|
|
|
|
OSSL_FUNC_provider_self_test(provider_dispatch);
|
|
|
|
break;
|
|
|
|
case OSSL_FUNC_PROVIDER_GET_CAPABILITIES:
|
|
|
|
prov->get_capabilities =
|
|
|
|
OSSL_FUNC_provider_get_capabilities(provider_dispatch);
|
|
|
|
break;
|
|
|
|
case OSSL_FUNC_PROVIDER_QUERY_OPERATION:
|
|
|
|
prov->query_operation =
|
|
|
|
OSSL_FUNC_provider_query_operation(provider_dispatch);
|
|
|
|
break;
|
|
|
|
case OSSL_FUNC_PROVIDER_UNQUERY_OPERATION:
|
|
|
|
prov->unquery_operation =
|
|
|
|
OSSL_FUNC_provider_unquery_operation(provider_dispatch);
|
|
|
|
break;
|
2019-06-18 17:18:31 +08:00
|
|
|
#ifndef OPENSSL_NO_ERR
|
2020-04-14 04:34:56 +08:00
|
|
|
# ifndef FIPS_MODULE
|
2023-11-29 21:06:51 +08:00
|
|
|
case OSSL_FUNC_PROVIDER_GET_REASON_STRINGS:
|
|
|
|
p_get_reason_strings =
|
|
|
|
OSSL_FUNC_provider_get_reason_strings(provider_dispatch);
|
|
|
|
break;
|
2019-06-18 17:39:13 +08:00
|
|
|
# endif
|
2019-06-18 17:18:31 +08:00
|
|
|
#endif
|
2023-11-29 21:06:51 +08:00
|
|
|
}
|
2019-06-18 17:18:31 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef OPENSSL_NO_ERR
|
2020-04-14 04:34:56 +08:00
|
|
|
# ifndef FIPS_MODULE
|
2019-06-18 17:18:31 +08:00
|
|
|
if (p_get_reason_strings != NULL) {
|
|
|
|
const OSSL_ITEM *reasonstrings = p_get_reason_strings(prov->provctx);
|
|
|
|
size_t cnt, cnt2;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ERR_load_strings() handles ERR_STRING_DATA rather than OSSL_ITEM,
|
|
|
|
* although they are essentially the same type.
|
|
|
|
* Furthermore, ERR_load_strings() patches the array's error number
|
|
|
|
* with the error library number, so we need to make a copy of that
|
|
|
|
* array either way.
|
|
|
|
*/
|
2020-03-27 22:39:34 +08:00
|
|
|
cnt = 0;
|
2019-06-18 17:18:31 +08:00
|
|
|
while (reasonstrings[cnt].id != 0) {
|
|
|
|
if (ERR_GET_LIB(reasonstrings[cnt].id) != 0)
|
2021-03-01 20:27:24 +08:00
|
|
|
goto end;
|
2019-06-18 17:18:31 +08:00
|
|
|
cnt++;
|
|
|
|
}
|
2020-03-27 22:39:34 +08:00
|
|
|
cnt++; /* One for the terminating item */
|
2019-06-18 17:18:31 +08:00
|
|
|
|
|
|
|
/* Allocate one extra item for the "library" name */
|
|
|
|
prov->error_strings =
|
|
|
|
OPENSSL_zalloc(sizeof(ERR_STRING_DATA) * (cnt + 1));
|
|
|
|
if (prov->error_strings == NULL)
|
2021-03-01 20:27:24 +08:00
|
|
|
goto end;
|
2019-06-18 17:18:31 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Set the "library" name.
|
|
|
|
*/
|
|
|
|
prov->error_strings[0].error = ERR_PACK(prov->error_lib, 0, 0);
|
|
|
|
prov->error_strings[0].string = prov->name;
|
|
|
|
/*
|
|
|
|
* Copy reasonstrings item 0..cnt-1 to prov->error_trings positions
|
|
|
|
* 1..cnt.
|
|
|
|
*/
|
|
|
|
for (cnt2 = 1; cnt2 <= cnt; cnt2++) {
|
|
|
|
prov->error_strings[cnt2].error = (int)reasonstrings[cnt2-1].id;
|
|
|
|
prov->error_strings[cnt2].string = reasonstrings[cnt2-1].ptr;
|
2019-01-20 20:14:58 +08:00
|
|
|
}
|
2019-06-18 17:18:31 +08:00
|
|
|
|
|
|
|
ERR_load_strings(prov->error_lib, prov->error_strings);
|
2019-01-20 20:14:58 +08:00
|
|
|
}
|
2019-06-18 17:39:13 +08:00
|
|
|
# endif
|
2019-06-18 17:18:31 +08:00
|
|
|
#endif
|
2019-01-20 20:14:58 +08:00
|
|
|
|
|
|
|
/* With this flag set, this provider has become fully "loaded". */
|
|
|
|
prov->flag_initialized = 1;
|
2021-03-01 20:27:24 +08:00
|
|
|
ok = 1;
|
|
|
|
|
|
|
|
end:
|
|
|
|
return ok;
|
2019-01-20 20:14:58 +08:00
|
|
|
}
|
|
|
|
|
2021-04-27 13:17:25 +08:00
|
|
|
/*
|
2021-11-05 21:42:40 +08:00
|
|
|
* Deactivate a provider. If upcalls is 0 then we suppress any upcalls to a
|
|
|
|
* parent provider. If removechildren is 0 then we suppress any calls to remove
|
|
|
|
* child providers.
|
2021-04-27 13:17:25 +08:00
|
|
|
* Return -1 on failure and the activation count on success
|
|
|
|
*/
|
2021-11-05 21:42:40 +08:00
|
|
|
static int provider_deactivate(OSSL_PROVIDER *prov, int upcalls,
|
|
|
|
int removechildren)
|
2020-12-16 22:15:06 +08:00
|
|
|
{
|
2021-04-27 13:17:25 +08:00
|
|
|
int count;
|
2021-04-23 19:08:27 +08:00
|
|
|
struct provider_store_st *store;
|
2021-08-30 20:04:31 +08:00
|
|
|
#ifndef FIPS_MODULE
|
2021-11-05 21:42:40 +08:00
|
|
|
int freeparent = 0;
|
2021-08-30 20:04:31 +08:00
|
|
|
#endif
|
2021-11-09 19:53:27 +08:00
|
|
|
int lock = 1;
|
2021-04-27 13:17:25 +08:00
|
|
|
|
2020-12-16 22:15:06 +08:00
|
|
|
if (!ossl_assert(prov != NULL))
|
2021-04-27 13:17:25 +08:00
|
|
|
return -1;
|
2020-12-16 22:15:06 +08:00
|
|
|
|
2021-11-09 19:53:27 +08:00
|
|
|
/*
|
|
|
|
* No need to lock if we've got no store because we've not been shared with
|
|
|
|
* other threads.
|
|
|
|
*/
|
2021-04-23 19:08:27 +08:00
|
|
|
store = get_provider_store(prov->libctx);
|
|
|
|
if (store == NULL)
|
2021-11-09 19:53:27 +08:00
|
|
|
lock = 0;
|
2021-04-23 19:08:27 +08:00
|
|
|
|
2021-11-09 19:53:27 +08:00
|
|
|
if (lock && !CRYPTO_THREAD_read_lock(store->lock))
|
2021-04-27 13:17:25 +08:00
|
|
|
return -1;
|
2021-11-09 19:53:27 +08:00
|
|
|
if (lock && !CRYPTO_THREAD_write_lock(prov->flag_lock)) {
|
2021-05-07 18:03:59 +08:00
|
|
|
CRYPTO_THREAD_unlock(store->lock);
|
|
|
|
return -1;
|
|
|
|
}
|
2020-12-16 22:15:06 +08:00
|
|
|
|
2023-06-22 07:34:20 +08:00
|
|
|
CRYPTO_atomic_add(&prov->activatecnt, -1, &count, prov->activatecnt_lock);
|
2021-04-29 23:37:42 +08:00
|
|
|
#ifndef FIPS_MODULE
|
2023-05-10 19:26:56 +08:00
|
|
|
if (count >= 1 && prov->ischild && upcalls) {
|
2021-04-29 23:37:42 +08:00
|
|
|
/*
|
|
|
|
* We have had a direct activation in this child libctx so we need to
|
2021-08-30 20:04:31 +08:00
|
|
|
* now down the ref count in the parent provider. We do the actual down
|
|
|
|
* ref outside of the flag_lock, since it could involve getting other
|
|
|
|
* locks.
|
2021-04-29 23:37:42 +08:00
|
|
|
*/
|
2021-08-30 20:04:31 +08:00
|
|
|
freeparent = 1;
|
2021-04-29 23:37:42 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2023-05-10 19:26:56 +08:00
|
|
|
if (count < 1)
|
2020-12-16 22:15:06 +08:00
|
|
|
prov->flag_activated = 0;
|
2021-05-07 18:03:59 +08:00
|
|
|
#ifndef FIPS_MODULE
|
2021-11-05 21:42:40 +08:00
|
|
|
else
|
|
|
|
removechildren = 0;
|
2021-05-07 18:03:59 +08:00
|
|
|
#endif
|
2021-04-23 23:18:28 +08:00
|
|
|
|
2021-08-30 20:04:31 +08:00
|
|
|
#ifndef FIPS_MODULE
|
2021-11-09 19:53:27 +08:00
|
|
|
if (removechildren && store != NULL) {
|
2021-08-30 20:04:31 +08:00
|
|
|
int i, max = sk_OSSL_PROVIDER_CHILD_CB_num(store->child_cbs);
|
|
|
|
OSSL_PROVIDER_CHILD_CB *child_cb;
|
|
|
|
|
|
|
|
for (i = 0; i < max; i++) {
|
|
|
|
child_cb = sk_OSSL_PROVIDER_CHILD_CB_value(store->child_cbs, i);
|
|
|
|
child_cb->remove_cb((OSSL_CORE_HANDLE *)prov, child_cb->cbdata);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2021-11-10 00:23:34 +08:00
|
|
|
if (lock) {
|
|
|
|
CRYPTO_THREAD_unlock(prov->flag_lock);
|
2021-11-09 19:53:27 +08:00
|
|
|
CRYPTO_THREAD_unlock(store->lock);
|
2023-07-11 00:41:06 +08:00
|
|
|
/*
|
|
|
|
* This can be done outside the lock. We tolerate other threads getting
|
|
|
|
* the wrong result briefly when creating OSSL_DECODER_CTXs.
|
|
|
|
*/
|
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
if (count < 1)
|
|
|
|
ossl_decoder_cache_flush(prov->libctx);
|
|
|
|
#endif
|
2021-11-10 00:23:34 +08:00
|
|
|
}
|
2021-08-30 20:04:31 +08:00
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
if (freeparent)
|
|
|
|
ossl_provider_free_parent(prov, 1);
|
|
|
|
#endif
|
2020-12-16 22:15:06 +08:00
|
|
|
|
|
|
|
/* We don't deinit here, that's done in ossl_provider_free() */
|
2021-04-27 13:17:25 +08:00
|
|
|
return count;
|
2020-12-16 22:15:06 +08:00
|
|
|
}
|
|
|
|
|
2021-04-27 13:17:25 +08:00
|
|
|
/*
|
|
|
|
* Activate a provider.
|
|
|
|
* Return -1 on failure and the activation count on success
|
|
|
|
*/
|
2021-04-29 23:37:42 +08:00
|
|
|
static int provider_activate(OSSL_PROVIDER *prov, int lock, int upcalls)
|
2020-12-16 22:15:06 +08:00
|
|
|
{
|
2021-04-23 19:08:27 +08:00
|
|
|
int count = -1;
|
2021-06-21 19:49:59 +08:00
|
|
|
struct provider_store_st *store;
|
2021-11-10 00:23:34 +08:00
|
|
|
int ret = 1;
|
2021-04-27 13:17:25 +08:00
|
|
|
|
2021-06-21 19:49:59 +08:00
|
|
|
store = prov->store;
|
|
|
|
/*
|
|
|
|
* If the provider hasn't been added to the store, then we don't need
|
|
|
|
* any locks because we've not shared it with other threads.
|
|
|
|
*/
|
|
|
|
if (store == NULL) {
|
|
|
|
lock = 0;
|
|
|
|
if (!provider_init(prov))
|
2021-05-07 18:03:59 +08:00
|
|
|
return -1;
|
2021-06-21 19:49:59 +08:00
|
|
|
}
|
2020-12-16 22:15:06 +08:00
|
|
|
|
2021-08-30 20:04:31 +08:00
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
if (prov->ischild && upcalls && !ossl_provider_up_ref_parent(prov, 1))
|
2021-06-21 19:49:59 +08:00
|
|
|
return -1;
|
2021-08-30 20:04:31 +08:00
|
|
|
#endif
|
2021-04-23 19:08:27 +08:00
|
|
|
|
2021-08-30 20:04:31 +08:00
|
|
|
if (lock && !CRYPTO_THREAD_read_lock(store->lock)) {
|
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
if (prov->ischild && upcalls)
|
|
|
|
ossl_provider_free_parent(prov, 1);
|
|
|
|
#endif
|
2021-06-21 19:49:59 +08:00
|
|
|
return -1;
|
|
|
|
}
|
2021-04-29 23:37:42 +08:00
|
|
|
|
2021-08-30 20:04:31 +08:00
|
|
|
if (lock && !CRYPTO_THREAD_write_lock(prov->flag_lock)) {
|
|
|
|
CRYPTO_THREAD_unlock(store->lock);
|
2021-04-29 23:37:42 +08:00
|
|
|
#ifndef FIPS_MODULE
|
2021-08-30 20:04:31 +08:00
|
|
|
if (prov->ischild && upcalls)
|
|
|
|
ossl_provider_free_parent(prov, 1);
|
2021-04-29 23:37:42 +08:00
|
|
|
#endif
|
2021-08-30 20:04:31 +08:00
|
|
|
return -1;
|
|
|
|
}
|
2023-06-22 07:34:20 +08:00
|
|
|
if (CRYPTO_atomic_add(&prov->activatecnt, 1, &count, prov->activatecnt_lock)) {
|
2023-05-10 19:26:56 +08:00
|
|
|
prov->flag_activated = 1;
|
2021-04-29 23:37:42 +08:00
|
|
|
|
2023-05-10 19:26:56 +08:00
|
|
|
if (count == 1 && store != NULL) {
|
|
|
|
ret = create_provider_children(prov);
|
|
|
|
}
|
2021-11-10 00:23:34 +08:00
|
|
|
}
|
|
|
|
if (lock) {
|
|
|
|
CRYPTO_THREAD_unlock(prov->flag_lock);
|
2021-06-21 19:49:59 +08:00
|
|
|
CRYPTO_THREAD_unlock(store->lock);
|
2023-07-11 00:41:06 +08:00
|
|
|
/*
|
|
|
|
* This can be done outside the lock. We tolerate other threads getting
|
|
|
|
* the wrong result briefly when creating OSSL_DECODER_CTXs.
|
|
|
|
*/
|
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
if (count == 1)
|
|
|
|
ossl_decoder_cache_flush(prov->libctx);
|
|
|
|
#endif
|
2021-11-10 00:23:34 +08:00
|
|
|
}
|
2021-08-30 20:04:31 +08:00
|
|
|
|
2021-06-21 19:49:59 +08:00
|
|
|
if (!ret)
|
|
|
|
return -1;
|
2020-12-16 22:15:06 +08:00
|
|
|
|
2021-04-23 19:08:27 +08:00
|
|
|
return count;
|
2021-04-27 13:17:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int provider_flush_store_cache(const OSSL_PROVIDER *prov)
|
|
|
|
{
|
|
|
|
struct provider_store_st *store;
|
|
|
|
int freeing;
|
|
|
|
|
|
|
|
if ((store = get_provider_store(prov->libctx)) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (!CRYPTO_THREAD_read_lock(store->lock))
|
|
|
|
return 0;
|
|
|
|
freeing = store->freeing;
|
|
|
|
CRYPTO_THREAD_unlock(store->lock);
|
|
|
|
|
2022-05-04 15:15:29 +08:00
|
|
|
if (!freeing) {
|
|
|
|
int acc
|
|
|
|
= evp_method_store_cache_flush(prov->libctx)
|
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
+ ossl_encoder_store_cache_flush(prov->libctx)
|
|
|
|
+ ossl_decoder_store_cache_flush(prov->libctx)
|
|
|
|
+ ossl_store_loader_store_cache_flush(prov->libctx)
|
|
|
|
#endif
|
|
|
|
;
|
|
|
|
|
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
return acc == 4;
|
|
|
|
#else
|
|
|
|
return acc == 1;
|
|
|
|
#endif
|
|
|
|
}
|
2021-04-27 13:17:25 +08:00
|
|
|
return 1;
|
2020-12-16 22:15:06 +08:00
|
|
|
}
|
|
|
|
|
2022-04-22 22:44:51 +08:00
|
|
|
static int provider_remove_store_methods(OSSL_PROVIDER *prov)
|
|
|
|
{
|
|
|
|
struct provider_store_st *store;
|
|
|
|
int freeing;
|
|
|
|
|
|
|
|
if ((store = get_provider_store(prov->libctx)) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (!CRYPTO_THREAD_read_lock(store->lock))
|
|
|
|
return 0;
|
|
|
|
freeing = store->freeing;
|
|
|
|
CRYPTO_THREAD_unlock(store->lock);
|
|
|
|
|
|
|
|
if (!freeing) {
|
2022-05-04 15:15:29 +08:00
|
|
|
int acc;
|
|
|
|
|
2022-10-24 16:22:01 +08:00
|
|
|
if (!CRYPTO_THREAD_write_lock(prov->opbits_lock))
|
2022-05-04 15:15:29 +08:00
|
|
|
return 0;
|
2022-04-22 22:44:51 +08:00
|
|
|
OPENSSL_free(prov->operation_bits);
|
|
|
|
prov->operation_bits = NULL;
|
|
|
|
prov->operation_bits_sz = 0;
|
|
|
|
CRYPTO_THREAD_unlock(prov->opbits_lock);
|
|
|
|
|
2022-05-04 15:15:29 +08:00
|
|
|
acc = evp_method_store_remove_all_provided(prov)
|
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
+ ossl_encoder_store_remove_all_provided(prov)
|
|
|
|
+ ossl_decoder_store_remove_all_provided(prov)
|
|
|
|
+ ossl_store_loader_store_remove_all_provided(prov)
|
|
|
|
#endif
|
|
|
|
;
|
|
|
|
|
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
return acc == 4;
|
|
|
|
#else
|
|
|
|
return acc == 1;
|
|
|
|
#endif
|
2022-04-22 22:44:51 +08:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2021-06-21 19:08:39 +08:00
|
|
|
int ossl_provider_activate(OSSL_PROVIDER *prov, int upcalls, int aschild)
|
2019-03-14 17:53:27 +08:00
|
|
|
{
|
2021-04-27 13:17:25 +08:00
|
|
|
int count;
|
|
|
|
|
2020-12-16 22:15:06 +08:00
|
|
|
if (prov == NULL)
|
|
|
|
return 0;
|
2021-06-21 19:08:39 +08:00
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
/*
|
|
|
|
* If aschild is true, then we only actually do the activation if the
|
|
|
|
* provider is a child. If its not, this is still success.
|
|
|
|
*/
|
|
|
|
if (aschild && !prov->ischild)
|
|
|
|
return 1;
|
|
|
|
#endif
|
2021-06-21 18:34:04 +08:00
|
|
|
if ((count = provider_activate(prov, 1, upcalls)) > 0)
|
2021-04-27 13:17:25 +08:00
|
|
|
return count == 1 ? provider_flush_store_cache(prov) : 1;
|
2021-06-21 18:34:04 +08:00
|
|
|
|
2019-03-14 17:53:27 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-11-05 21:42:40 +08:00
|
|
|
int ossl_provider_deactivate(OSSL_PROVIDER *prov, int removechildren)
|
2020-12-16 22:15:06 +08:00
|
|
|
{
|
2021-04-27 13:17:25 +08:00
|
|
|
int count;
|
|
|
|
|
2021-11-05 21:42:40 +08:00
|
|
|
if (prov == NULL
|
|
|
|
|| (count = provider_deactivate(prov, 1, removechildren)) < 0)
|
2020-12-16 22:15:06 +08:00
|
|
|
return 0;
|
2022-04-22 22:44:51 +08:00
|
|
|
return count == 0 ? provider_remove_store_methods(prov) : 1;
|
2020-12-16 22:15:06 +08:00
|
|
|
}
|
|
|
|
|
2019-04-30 19:41:51 +08:00
|
|
|
void *ossl_provider_ctx(const OSSL_PROVIDER *prov)
|
|
|
|
{
|
2022-07-19 09:01:57 +08:00
|
|
|
return prov != NULL ? prov->provctx : NULL;
|
2019-04-30 19:41:51 +08:00
|
|
|
}
|
|
|
|
|
2019-07-17 17:29:04 +08:00
|
|
|
/*
|
|
|
|
* This function only does something once when store->use_fallbacks == 1,
|
|
|
|
* and then sets store->use_fallbacks = 0, so the second call and so on is
|
|
|
|
* effectively a no-op.
|
|
|
|
*/
|
2021-06-18 17:08:23 +08:00
|
|
|
static int provider_activate_fallbacks(struct provider_store_st *store)
|
2019-07-17 17:29:04 +08:00
|
|
|
{
|
2021-01-12 01:02:01 +08:00
|
|
|
int use_fallbacks;
|
|
|
|
int activated_fallback_count = 0;
|
2021-06-18 17:08:23 +08:00
|
|
|
int ret = 0;
|
2021-06-21 22:59:41 +08:00
|
|
|
const OSSL_PROVIDER_INFO *p;
|
2021-01-12 01:02:01 +08:00
|
|
|
|
2021-02-19 04:31:56 +08:00
|
|
|
if (!CRYPTO_THREAD_read_lock(store->lock))
|
2021-06-18 17:08:23 +08:00
|
|
|
return 0;
|
2021-01-12 01:02:01 +08:00
|
|
|
use_fallbacks = store->use_fallbacks;
|
|
|
|
CRYPTO_THREAD_unlock(store->lock);
|
|
|
|
if (!use_fallbacks)
|
2021-06-18 17:08:23 +08:00
|
|
|
return 1;
|
2021-01-12 01:02:01 +08:00
|
|
|
|
2021-02-19 04:31:56 +08:00
|
|
|
if (!CRYPTO_THREAD_write_lock(store->lock))
|
2021-06-18 17:08:23 +08:00
|
|
|
return 0;
|
2021-01-12 01:02:01 +08:00
|
|
|
/* Check again, just in case another thread changed it */
|
|
|
|
use_fallbacks = store->use_fallbacks;
|
|
|
|
if (!use_fallbacks) {
|
|
|
|
CRYPTO_THREAD_unlock(store->lock);
|
2021-06-18 17:08:23 +08:00
|
|
|
return 1;
|
2021-01-12 01:02:01 +08:00
|
|
|
}
|
2019-07-17 17:29:04 +08:00
|
|
|
|
2021-06-18 17:08:23 +08:00
|
|
|
for (p = ossl_predefined_providers; p->name != NULL; p++) {
|
|
|
|
OSSL_PROVIDER *prov = NULL;
|
2019-07-17 17:29:04 +08:00
|
|
|
|
2021-06-18 17:08:23 +08:00
|
|
|
if (!p->is_fallback)
|
|
|
|
continue;
|
|
|
|
/*
|
|
|
|
* We use the internal constructor directly here,
|
|
|
|
* otherwise we get a call loop
|
|
|
|
*/
|
2021-06-18 22:56:54 +08:00
|
|
|
prov = provider_new(p->name, p->init, NULL);
|
2021-06-18 17:08:23 +08:00
|
|
|
if (prov == NULL)
|
|
|
|
goto err;
|
|
|
|
prov->libctx = store->libctx;
|
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
prov->error_lib = ERR_get_next_error_library();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We are calling provider_activate while holding the store lock. This
|
|
|
|
* means the init function will be called while holding a lock. Normally
|
|
|
|
* we try to avoid calling a user callback while holding a lock.
|
|
|
|
* However, fallbacks are never third party providers so we accept this.
|
|
|
|
*/
|
2021-06-21 19:13:31 +08:00
|
|
|
if (provider_activate(prov, 0, 0) < 0) {
|
|
|
|
ossl_provider_free(prov);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
prov->store = store;
|
|
|
|
if (sk_OSSL_PROVIDER_push(store->providers, prov) == 0) {
|
2021-01-12 01:02:01 +08:00
|
|
|
ossl_provider_free(prov);
|
2021-06-18 17:08:23 +08:00
|
|
|
goto err;
|
2019-07-17 17:29:04 +08:00
|
|
|
}
|
2021-06-18 17:08:23 +08:00
|
|
|
activated_fallback_count++;
|
2019-07-17 17:29:04 +08:00
|
|
|
}
|
2021-01-12 01:02:01 +08:00
|
|
|
|
2021-06-18 17:08:23 +08:00
|
|
|
if (activated_fallback_count > 0) {
|
2021-01-12 01:02:01 +08:00
|
|
|
store->use_fallbacks = 0;
|
2021-06-18 17:08:23 +08:00
|
|
|
ret = 1;
|
|
|
|
}
|
|
|
|
err:
|
2021-01-12 01:02:01 +08:00
|
|
|
CRYPTO_THREAD_unlock(store->lock);
|
2021-06-18 17:08:23 +08:00
|
|
|
return ret;
|
2019-07-17 17:29:04 +08:00
|
|
|
}
|
|
|
|
|
2021-03-10 17:37:02 +08:00
|
|
|
int ossl_provider_doall_activated(OSSL_LIB_CTX *ctx,
|
|
|
|
int (*cb)(OSSL_PROVIDER *provider,
|
|
|
|
void *cbdata),
|
|
|
|
void *cbdata)
|
2019-02-25 08:53:34 +08:00
|
|
|
{
|
2021-08-30 20:04:31 +08:00
|
|
|
int ret = 0, curr, max, ref = 0;
|
2019-02-25 08:53:34 +08:00
|
|
|
struct provider_store_st *store = get_provider_store(ctx);
|
2021-03-10 09:39:59 +08:00
|
|
|
STACK_OF(OSSL_PROVIDER) *provs = NULL;
|
2019-02-25 08:53:34 +08:00
|
|
|
|
2023-08-02 08:44:47 +08:00
|
|
|
#if !defined(FIPS_MODULE) && !defined(OPENSSL_NO_AUTOLOAD_CONFIG)
|
2019-08-07 17:46:26 +08:00
|
|
|
/*
|
|
|
|
* Make sure any providers are loaded from config before we try to use
|
|
|
|
* them.
|
|
|
|
*/
|
2021-04-22 16:43:22 +08:00
|
|
|
if (ossl_lib_ctx_is_default(ctx))
|
|
|
|
OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CONFIG, NULL);
|
2019-08-07 17:46:26 +08:00
|
|
|
#endif
|
|
|
|
|
2021-03-10 09:39:59 +08:00
|
|
|
if (store == NULL)
|
|
|
|
return 1;
|
2021-06-18 17:08:23 +08:00
|
|
|
if (!provider_activate_fallbacks(store))
|
|
|
|
return 0;
|
2019-03-14 17:53:27 +08:00
|
|
|
|
2021-03-10 09:39:59 +08:00
|
|
|
/*
|
|
|
|
* Under lock, grab a copy of the provider list and up_ref each
|
|
|
|
* provider so that they don't disappear underneath us.
|
|
|
|
*/
|
2021-02-19 04:31:56 +08:00
|
|
|
if (!CRYPTO_THREAD_read_lock(store->lock))
|
|
|
|
return 0;
|
2021-03-10 09:39:59 +08:00
|
|
|
provs = sk_OSSL_PROVIDER_dup(store->providers);
|
|
|
|
if (provs == NULL) {
|
2019-02-25 08:53:34 +08:00
|
|
|
CRYPTO_THREAD_unlock(store->lock);
|
2021-03-10 09:39:59 +08:00
|
|
|
return 0;
|
2019-02-25 08:53:34 +08:00
|
|
|
}
|
2021-04-23 23:18:28 +08:00
|
|
|
max = sk_OSSL_PROVIDER_num(provs);
|
|
|
|
/*
|
|
|
|
* We work backwards through the stack so that we can safely delete items
|
|
|
|
* as we go.
|
|
|
|
*/
|
|
|
|
for (curr = max - 1; curr >= 0; curr--) {
|
|
|
|
OSSL_PROVIDER *prov = sk_OSSL_PROVIDER_value(provs, curr);
|
|
|
|
|
2023-05-10 19:26:56 +08:00
|
|
|
if (!CRYPTO_THREAD_read_lock(prov->flag_lock))
|
2021-03-10 09:39:59 +08:00
|
|
|
goto err_unlock;
|
2021-04-23 23:18:28 +08:00
|
|
|
if (prov->flag_activated) {
|
2021-08-30 20:04:31 +08:00
|
|
|
/*
|
|
|
|
* We call CRYPTO_UP_REF directly rather than ossl_provider_up_ref
|
|
|
|
* to avoid upping the ref count on the parent provider, which we
|
|
|
|
* must not do while holding locks.
|
|
|
|
*/
|
2023-06-22 07:34:20 +08:00
|
|
|
if (CRYPTO_UP_REF(&prov->refcnt, &ref) <= 0) {
|
2021-04-23 23:18:28 +08:00
|
|
|
CRYPTO_THREAD_unlock(prov->flag_lock);
|
|
|
|
goto err_unlock;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* It's already activated, but we up the activated count to ensure
|
|
|
|
* it remains activated until after we've called the user callback.
|
2023-05-10 19:26:56 +08:00
|
|
|
* In theory this could mean the parent provider goes inactive,
|
|
|
|
* whilst still activated in the child for a short period. That's ok.
|
2021-04-23 23:18:28 +08:00
|
|
|
*/
|
2023-06-22 07:34:20 +08:00
|
|
|
if (!CRYPTO_atomic_add(&prov->activatecnt, 1, &ref,
|
|
|
|
prov->activatecnt_lock)) {
|
|
|
|
CRYPTO_DOWN_REF(&prov->refcnt, &ref);
|
2021-04-23 23:18:28 +08:00
|
|
|
CRYPTO_THREAD_unlock(prov->flag_lock);
|
|
|
|
goto err_unlock;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
sk_OSSL_PROVIDER_delete(provs, curr);
|
|
|
|
max--;
|
|
|
|
}
|
|
|
|
CRYPTO_THREAD_unlock(prov->flag_lock);
|
|
|
|
}
|
2021-03-10 09:39:59 +08:00
|
|
|
CRYPTO_THREAD_unlock(store->lock);
|
2019-02-25 08:53:34 +08:00
|
|
|
|
2021-03-10 09:39:59 +08:00
|
|
|
/*
|
|
|
|
* Now, we sweep through all providers not under lock
|
|
|
|
*/
|
2021-04-23 23:18:28 +08:00
|
|
|
for (curr = 0; curr < max; curr++) {
|
|
|
|
OSSL_PROVIDER *prov = sk_OSSL_PROVIDER_value(provs, curr);
|
2021-03-10 09:39:59 +08:00
|
|
|
|
2022-05-26 22:34:38 +08:00
|
|
|
if (!cb(prov, cbdata)) {
|
|
|
|
curr = -1;
|
2021-03-10 09:39:59 +08:00
|
|
|
goto finish;
|
2022-05-26 22:34:38 +08:00
|
|
|
}
|
2021-03-10 09:39:59 +08:00
|
|
|
}
|
2021-04-23 23:18:28 +08:00
|
|
|
curr = -1;
|
2021-03-10 09:39:59 +08:00
|
|
|
|
|
|
|
ret = 1;
|
|
|
|
goto finish;
|
|
|
|
|
|
|
|
err_unlock:
|
|
|
|
CRYPTO_THREAD_unlock(store->lock);
|
|
|
|
finish:
|
2021-04-23 23:18:28 +08:00
|
|
|
/*
|
|
|
|
* The pop_free call doesn't do what we want on an error condition. We
|
|
|
|
* either start from the first item in the stack, or part way through if
|
|
|
|
* we only processed some of the items.
|
|
|
|
*/
|
|
|
|
for (curr++; curr < max; curr++) {
|
|
|
|
OSSL_PROVIDER *prov = sk_OSSL_PROVIDER_value(provs, curr);
|
|
|
|
|
2023-06-22 07:34:20 +08:00
|
|
|
if (!CRYPTO_atomic_add(&prov->activatecnt, -1, &ref,
|
|
|
|
prov->activatecnt_lock)) {
|
2023-05-10 19:26:56 +08:00
|
|
|
ret = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (ref < 1) {
|
|
|
|
/*
|
|
|
|
* Looks like we need to deactivate properly. We could just have
|
|
|
|
* done this originally, but it involves taking a write lock so
|
|
|
|
* we avoid it. We up the count again and do a full deactivation
|
|
|
|
*/
|
2023-06-22 07:34:20 +08:00
|
|
|
if (CRYPTO_atomic_add(&prov->activatecnt, 1, &ref,
|
|
|
|
prov->activatecnt_lock))
|
2023-05-10 19:26:56 +08:00
|
|
|
provider_deactivate(prov, 0, 1);
|
|
|
|
else
|
|
|
|
ret = 0;
|
|
|
|
}
|
2021-08-30 20:04:31 +08:00
|
|
|
/*
|
|
|
|
* As above where we did the up-ref, we don't call ossl_provider_free
|
|
|
|
* to avoid making upcalls. There should always be at least one ref
|
|
|
|
* to the provider in the store, so this should never drop to 0.
|
|
|
|
*/
|
2023-06-22 07:34:20 +08:00
|
|
|
if (!CRYPTO_DOWN_REF(&prov->refcnt, &ref)) {
|
2023-05-10 19:26:56 +08:00
|
|
|
ret = 0;
|
|
|
|
continue;
|
|
|
|
}
|
2021-08-30 20:04:31 +08:00
|
|
|
/*
|
|
|
|
* Not much we can do if this assert ever fails. So we don't use
|
|
|
|
* ossl_assert here.
|
|
|
|
*/
|
|
|
|
assert(ref > 0);
|
2021-04-23 23:18:28 +08:00
|
|
|
}
|
2021-03-10 09:39:59 +08:00
|
|
|
sk_OSSL_PROVIDER_free(provs);
|
2019-02-25 08:53:34 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-06-18 17:08:23 +08:00
|
|
|
int OSSL_PROVIDER_available(OSSL_LIB_CTX *libctx, const char *name)
|
2019-07-17 17:29:04 +08:00
|
|
|
{
|
2021-06-18 17:08:23 +08:00
|
|
|
OSSL_PROVIDER *prov = NULL;
|
|
|
|
int available = 0;
|
|
|
|
struct provider_store_st *store = get_provider_store(libctx);
|
2021-04-23 23:18:28 +08:00
|
|
|
|
2021-06-18 17:08:23 +08:00
|
|
|
if (store == NULL || !provider_activate_fallbacks(store))
|
|
|
|
return 0;
|
2019-07-17 17:29:04 +08:00
|
|
|
|
2021-06-18 17:08:23 +08:00
|
|
|
prov = ossl_provider_find(libctx, name, 0);
|
|
|
|
if (prov != NULL) {
|
2021-04-23 23:18:28 +08:00
|
|
|
if (!CRYPTO_THREAD_read_lock(prov->flag_lock))
|
|
|
|
return 0;
|
2021-06-18 17:08:23 +08:00
|
|
|
available = prov->flag_activated;
|
2021-04-23 23:18:28 +08:00
|
|
|
CRYPTO_THREAD_unlock(prov->flag_lock);
|
2021-06-18 17:08:23 +08:00
|
|
|
ossl_provider_free(prov);
|
2019-07-17 17:29:04 +08:00
|
|
|
}
|
2021-06-18 17:08:23 +08:00
|
|
|
return available;
|
2019-07-17 17:29:04 +08:00
|
|
|
}
|
|
|
|
|
2019-01-20 20:14:58 +08:00
|
|
|
/* Getters of Provider Object data */
|
2019-05-31 16:53:12 +08:00
|
|
|
const char *ossl_provider_name(const OSSL_PROVIDER *prov)
|
2019-01-20 20:14:58 +08:00
|
|
|
{
|
|
|
|
return prov->name;
|
|
|
|
}
|
|
|
|
|
2019-05-31 16:53:12 +08:00
|
|
|
const DSO *ossl_provider_dso(const OSSL_PROVIDER *prov)
|
2019-01-20 20:14:58 +08:00
|
|
|
{
|
|
|
|
return prov->module;
|
|
|
|
}
|
|
|
|
|
2019-05-31 16:53:12 +08:00
|
|
|
const char *ossl_provider_module_name(const OSSL_PROVIDER *prov)
|
2019-01-20 20:14:58 +08:00
|
|
|
{
|
2020-04-14 04:34:56 +08:00
|
|
|
#ifdef FIPS_MODULE
|
2019-04-10 22:01:40 +08:00
|
|
|
return NULL;
|
|
|
|
#else
|
2019-01-20 20:14:58 +08:00
|
|
|
return DSO_get_filename(prov->module);
|
2019-04-10 22:01:40 +08:00
|
|
|
#endif
|
2019-01-20 20:14:58 +08:00
|
|
|
}
|
|
|
|
|
2019-05-31 16:53:12 +08:00
|
|
|
const char *ossl_provider_module_path(const OSSL_PROVIDER *prov)
|
2019-01-20 20:14:58 +08:00
|
|
|
{
|
2020-04-14 04:34:56 +08:00
|
|
|
#ifdef FIPS_MODULE
|
2019-04-10 22:01:40 +08:00
|
|
|
return NULL;
|
|
|
|
#else
|
2019-01-20 20:14:58 +08:00
|
|
|
/* FIXME: Ensure it's a full path */
|
|
|
|
return DSO_get_filename(prov->module);
|
2019-04-10 22:01:40 +08:00
|
|
|
#endif
|
2019-01-20 20:14:58 +08:00
|
|
|
}
|
|
|
|
|
2020-05-08 23:44:02 +08:00
|
|
|
void *ossl_provider_prov_ctx(const OSSL_PROVIDER *prov)
|
|
|
|
{
|
|
|
|
if (prov != NULL)
|
|
|
|
return prov->provctx;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-04-21 23:51:41 +08:00
|
|
|
const OSSL_DISPATCH *ossl_provider_get0_dispatch(const OSSL_PROVIDER *prov)
|
|
|
|
{
|
|
|
|
if (prov != NULL)
|
|
|
|
return prov->dispatch;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-10-15 17:55:50 +08:00
|
|
|
OSSL_LIB_CTX *ossl_provider_libctx(const OSSL_PROVIDER *prov)
|
2019-05-07 18:39:58 +08:00
|
|
|
{
|
2019-08-29 11:02:54 +08:00
|
|
|
return prov != NULL ? prov->libctx : NULL;
|
2019-05-07 18:39:58 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 21:44:11 +08:00
|
|
|
/**
|
|
|
|
* @brief Tears down the given provider.
|
|
|
|
*
|
|
|
|
* This function calls the `teardown` callback of the given provider to release
|
|
|
|
* any resources associated with it. The teardown is skipped if the callback is
|
|
|
|
* not defined or, in non-FIPS builds, if the provider is a child.
|
|
|
|
*
|
|
|
|
* @param prov Pointer to the OSSL_PROVIDER structure representing the provider.
|
|
|
|
*
|
|
|
|
* If tracing is enabled, a message is printed indicating that the teardown is
|
|
|
|
* being called.
|
|
|
|
*/
|
2019-01-20 20:14:58 +08:00
|
|
|
void ossl_provider_teardown(const OSSL_PROVIDER *prov)
|
|
|
|
{
|
2021-05-07 18:03:59 +08:00
|
|
|
if (prov->teardown != NULL
|
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
&& !prov->ischild
|
|
|
|
#endif
|
2024-10-05 21:44:11 +08:00
|
|
|
) {
|
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
OSSL_TRACE_BEGIN(PROVIDER) {
|
|
|
|
BIO_printf(trc_out, "(provider %s) calling teardown\n",
|
|
|
|
ossl_provider_name(prov));
|
|
|
|
} OSSL_TRACE_END(PROVIDER);
|
|
|
|
#endif
|
2019-04-30 19:41:51 +08:00
|
|
|
prov->teardown(prov->provctx);
|
2024-10-05 21:44:11 +08:00
|
|
|
}
|
2019-01-20 20:14:58 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 21:44:11 +08:00
|
|
|
/**
|
|
|
|
* @brief Retrieves the parameters that can be obtained from a provider.
|
|
|
|
*
|
|
|
|
* This function calls the `gettable_params` callback of the given provider to
|
|
|
|
* get a list of parameters that can be retrieved.
|
|
|
|
*
|
|
|
|
* @param prov Pointer to the OSSL_PROVIDER structure representing the provider.
|
|
|
|
*
|
|
|
|
* @return Pointer to an array of OSSL_PARAM structures that represent the
|
|
|
|
* gettable parameters, or NULL if the callback is not defined.
|
|
|
|
*
|
|
|
|
* If tracing is enabled, the gettable parameters are printed for debugging.
|
|
|
|
*/
|
2019-08-15 02:17:39 +08:00
|
|
|
const OSSL_PARAM *ossl_provider_gettable_params(const OSSL_PROVIDER *prov)
|
2019-01-20 20:14:58 +08:00
|
|
|
{
|
2024-10-05 21:44:11 +08:00
|
|
|
const OSSL_PARAM *ret = NULL;
|
|
|
|
|
2024-10-15 01:23:33 +08:00
|
|
|
if (prov->gettable_params != NULL)
|
2024-10-05 21:44:11 +08:00
|
|
|
ret = prov->gettable_params(prov->provctx);
|
2024-10-15 01:23:33 +08:00
|
|
|
|
2024-10-05 21:44:11 +08:00
|
|
|
#ifndef FIPS_MODULE
|
2024-10-15 01:23:33 +08:00
|
|
|
OSSL_TRACE_BEGIN(PROVIDER) {
|
|
|
|
char *buf = NULL;
|
|
|
|
|
|
|
|
BIO_printf(trc_out, "(provider %s) gettable params\n",
|
|
|
|
ossl_provider_name(prov));
|
|
|
|
BIO_printf(trc_out, "Parameters:\n");
|
|
|
|
if (prov->gettable_params != NULL) {
|
|
|
|
if (!OSSL_PARAM_print_to_bio(ret, trc_out, 0))
|
|
|
|
BIO_printf(trc_out, "Failed to parse param values\n");
|
|
|
|
OPENSSL_free(buf);
|
|
|
|
} else {
|
|
|
|
BIO_printf(trc_out, "Provider doesn't implement gettable_params\n");
|
|
|
|
}
|
|
|
|
} OSSL_TRACE_END(PROVIDER);
|
2024-10-05 21:44:11 +08:00
|
|
|
#endif
|
2024-10-15 01:23:33 +08:00
|
|
|
|
2024-10-05 21:44:11 +08:00
|
|
|
return ret;
|
2019-01-20 20:14:58 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 21:44:11 +08:00
|
|
|
/**
|
|
|
|
* @brief Retrieves parameters from a provider.
|
|
|
|
*
|
|
|
|
* This function calls the `get_params` callback of the given provider to
|
|
|
|
* retrieve its parameters. If the callback is defined, it is invoked with the
|
|
|
|
* provider context and the parameters array.
|
|
|
|
*
|
|
|
|
* @param prov Pointer to the OSSL_PROVIDER structure representing the provider.
|
|
|
|
* @param params Array of OSSL_PARAM structures to store the retrieved parameters.
|
|
|
|
*
|
|
|
|
* @return 1 on success, 0 if the `get_params` callback is not defined or fails.
|
|
|
|
*
|
|
|
|
* If tracing is enabled, the retrieved parameters are printed for debugging.
|
|
|
|
*/
|
2019-06-24 12:43:55 +08:00
|
|
|
int ossl_provider_get_params(const OSSL_PROVIDER *prov, OSSL_PARAM params[])
|
2019-01-20 20:14:58 +08:00
|
|
|
{
|
2024-10-05 21:44:11 +08:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (prov->get_params == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
ret = prov->get_params(prov->provctx, params);
|
|
|
|
#ifndef FIPS_MODULE
|
2024-10-15 01:23:33 +08:00
|
|
|
OSSL_TRACE_BEGIN(PROVIDER) {
|
|
|
|
|
|
|
|
BIO_printf(trc_out,
|
|
|
|
"(provider %s) calling get_params\n", prov->name);
|
|
|
|
if (ret == 1) {
|
|
|
|
BIO_printf(trc_out, "Parameters:\n");
|
|
|
|
if (!OSSL_PARAM_print_to_bio(params, trc_out, 1))
|
|
|
|
BIO_printf(trc_out, "Failed to parse param values\n");
|
|
|
|
} else {
|
|
|
|
BIO_printf(trc_out, "get_params call failed\n");
|
|
|
|
}
|
|
|
|
} OSSL_TRACE_END(PROVIDER);
|
2024-10-05 21:44:11 +08:00
|
|
|
#endif
|
|
|
|
return ret;
|
2019-01-20 20:14:58 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 21:44:11 +08:00
|
|
|
/**
|
|
|
|
* @brief Performs a self-test on the given provider.
|
|
|
|
*
|
|
|
|
* This function calls the `self_test` callback of the given provider to
|
|
|
|
* perform a self-test. If the callback is not defined, it assumes the test
|
|
|
|
* passed.
|
|
|
|
*
|
|
|
|
* @param prov Pointer to the OSSL_PROVIDER structure representing the provider.
|
|
|
|
*
|
|
|
|
* @return 1 if the self-test passes or the callback is not defined, 0 on failure.
|
|
|
|
*
|
|
|
|
* If tracing is enabled, the result of the self-test is printed for debugging.
|
|
|
|
* If the test fails, the provider's store methods are removed.
|
|
|
|
*/
|
2020-08-09 16:06:52 +08:00
|
|
|
int ossl_provider_self_test(const OSSL_PROVIDER *prov)
|
|
|
|
{
|
2024-10-15 01:23:33 +08:00
|
|
|
int ret = 1;
|
2024-10-05 21:44:11 +08:00
|
|
|
|
2024-10-15 01:23:33 +08:00
|
|
|
if (prov->self_test != NULL)
|
|
|
|
ret = prov->self_test(prov->provctx);
|
2024-10-05 21:44:11 +08:00
|
|
|
|
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
OSSL_TRACE_BEGIN(PROVIDER) {
|
2024-10-15 01:23:33 +08:00
|
|
|
if (prov->self_test != NULL)
|
|
|
|
BIO_printf(trc_out,
|
|
|
|
"(provider %s) Calling self_test, ret = %d\n",
|
|
|
|
prov->name, ret);
|
|
|
|
else
|
|
|
|
BIO_printf(trc_out,
|
|
|
|
"(provider %s) doesn't implement self_test\n",
|
|
|
|
prov->name);
|
2024-10-05 21:44:11 +08:00
|
|
|
} OSSL_TRACE_END(PROVIDER);
|
|
|
|
#endif
|
2020-08-09 16:06:52 +08:00
|
|
|
if (ret == 0)
|
2022-04-22 22:44:51 +08:00
|
|
|
(void)provider_remove_store_methods((OSSL_PROVIDER *)prov);
|
2020-08-09 16:06:52 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2024-10-05 21:44:11 +08:00
|
|
|
/**
|
|
|
|
* @brief Retrieves capabilities from the given provider.
|
|
|
|
*
|
|
|
|
* This function calls the `get_capabilities` callback of the specified provider
|
|
|
|
* to retrieve capabilities information. The callback is invoked with the
|
|
|
|
* provider context, capability name, a callback function, and an argument.
|
|
|
|
*
|
|
|
|
* @param prov Pointer to the OSSL_PROVIDER structure representing the provider.
|
|
|
|
* @param capability String representing the capability to be retrieved.
|
|
|
|
* @param cb Callback function to process the capability data.
|
|
|
|
* @param arg Argument to be passed to the callback function.
|
|
|
|
*
|
|
|
|
* @return 1 if the capabilities are successfully retrieved or if the callback
|
|
|
|
* is not defined, otherwise the value returned by `get_capabilities`.
|
|
|
|
*
|
|
|
|
* If tracing is enabled, a message is printed indicating the requested
|
|
|
|
* capabilities.
|
|
|
|
*/
|
2020-05-18 22:13:09 +08:00
|
|
|
int ossl_provider_get_capabilities(const OSSL_PROVIDER *prov,
|
|
|
|
const char *capability,
|
|
|
|
OSSL_CALLBACK *cb,
|
|
|
|
void *arg)
|
|
|
|
{
|
2024-10-05 21:44:11 +08:00
|
|
|
if (prov->get_capabilities != NULL) {
|
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
OSSL_TRACE_BEGIN(PROVIDER) {
|
|
|
|
BIO_printf(trc_out,
|
|
|
|
"(provider %s) Calling get_capabilities "
|
|
|
|
"with capabilities %s\n", prov->name,
|
|
|
|
capability == NULL ? "none" : capability);
|
|
|
|
} OSSL_TRACE_END(PROVIDER);
|
|
|
|
#endif
|
|
|
|
return prov->get_capabilities(prov->provctx, capability, cb, arg);
|
|
|
|
}
|
|
|
|
return 1;
|
2020-05-18 22:13:09 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 21:44:11 +08:00
|
|
|
/**
|
|
|
|
* @brief Queries the provider for available algorithms for a given operation.
|
|
|
|
*
|
|
|
|
* This function calls the `query_operation` callback of the specified provider
|
|
|
|
* to obtain a list of algorithms that can perform the given operation. It may
|
|
|
|
* also set a flag indicating whether the result should be cached.
|
|
|
|
*
|
|
|
|
* @param prov Pointer to the OSSL_PROVIDER structure representing the provider.
|
|
|
|
* @param operation_id Identifier of the operation to query.
|
|
|
|
* @param no_cache Pointer to an integer flag to indicate whether caching is allowed.
|
|
|
|
*
|
|
|
|
* @return Pointer to an array of OSSL_ALGORITHM structures representing the
|
|
|
|
* available algorithms, or NULL if the callback is not defined or
|
|
|
|
* there are no available algorithms.
|
|
|
|
*
|
|
|
|
* If tracing is enabled, the available algorithms and their properties are
|
|
|
|
* printed for debugging.
|
|
|
|
*/
|
2019-02-25 08:57:28 +08:00
|
|
|
const OSSL_ALGORITHM *ossl_provider_query_operation(const OSSL_PROVIDER *prov,
|
|
|
|
int operation_id,
|
|
|
|
int *no_cache)
|
|
|
|
{
|
2021-02-08 09:03:01 +08:00
|
|
|
const OSSL_ALGORITHM *res;
|
|
|
|
|
2024-10-15 01:23:33 +08:00
|
|
|
if (prov->query_operation == NULL) {
|
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
OSSL_TRACE_BEGIN(PROVIDER) {
|
|
|
|
BIO_printf(trc_out, "provider %s lacks query operation!\n",
|
|
|
|
prov->name);
|
|
|
|
} OSSL_TRACE_END(PROVIDER);
|
|
|
|
#endif
|
2021-02-08 09:03:01 +08:00
|
|
|
return NULL;
|
2024-10-15 01:23:33 +08:00
|
|
|
}
|
2024-10-05 21:44:11 +08:00
|
|
|
|
2021-02-08 09:03:01 +08:00
|
|
|
res = prov->query_operation(prov->provctx, operation_id, no_cache);
|
2024-10-05 21:44:11 +08:00
|
|
|
#ifndef FIPS_MODULE
|
2024-10-15 01:23:33 +08:00
|
|
|
OSSL_TRACE_BEGIN(PROVIDER) {
|
|
|
|
const OSSL_ALGORITHM *idx;
|
|
|
|
if (res != NULL) {
|
2024-10-05 21:44:11 +08:00
|
|
|
BIO_printf(trc_out,
|
|
|
|
"(provider %s) Calling query, available algs are:\n", prov->name);
|
|
|
|
|
|
|
|
for (idx = res; idx->algorithm_names != NULL; idx++) {
|
|
|
|
BIO_printf(trc_out,
|
|
|
|
"(provider %s) names %s, prop_def %s, desc %s\n",
|
|
|
|
prov->name,
|
|
|
|
res->algorithm_names == NULL ? "none" :
|
|
|
|
res->algorithm_names,
|
|
|
|
res->property_definition == NULL ? "none" :
|
|
|
|
res->property_definition,
|
|
|
|
res->algorithm_description == NULL ? "none" :
|
|
|
|
res->algorithm_description);
|
|
|
|
}
|
2024-10-15 01:23:33 +08:00
|
|
|
} else {
|
|
|
|
BIO_printf(trc_out, "(provider %s) query_operation failed\n", prov->name);
|
|
|
|
}
|
|
|
|
} OSSL_TRACE_END(PROVIDER);
|
2024-10-05 21:44:11 +08:00
|
|
|
#endif
|
|
|
|
|
2021-02-08 09:03:01 +08:00
|
|
|
#if defined(OPENSSL_NO_CACHED_FETCH)
|
|
|
|
/* Forcing the non-caching of queries */
|
|
|
|
if (no_cache != NULL)
|
|
|
|
*no_cache = 1;
|
|
|
|
#endif
|
|
|
|
return res;
|
2019-02-25 08:57:28 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 21:44:11 +08:00
|
|
|
/**
|
|
|
|
* @brief Releases resources associated with a queried operation.
|
|
|
|
*
|
|
|
|
* This function calls the `unquery_operation` callback of the specified
|
|
|
|
* provider to release any resources related to a previously queried operation.
|
|
|
|
*
|
|
|
|
* @param prov Pointer to the OSSL_PROVIDER structure representing the provider.
|
|
|
|
* @param operation_id Identifier of the operation to unquery.
|
|
|
|
* @param algs Pointer to the OSSL_ALGORITHM structures representing the
|
|
|
|
* algorithms associated with the operation.
|
|
|
|
*
|
|
|
|
* If tracing is enabled, a message is printed indicating that the operation
|
|
|
|
* is being unqueried.
|
|
|
|
*/
|
2020-09-25 08:19:19 +08:00
|
|
|
void ossl_provider_unquery_operation(const OSSL_PROVIDER *prov,
|
|
|
|
int operation_id,
|
|
|
|
const OSSL_ALGORITHM *algs)
|
|
|
|
{
|
2024-10-05 21:44:11 +08:00
|
|
|
if (prov->unquery_operation != NULL) {
|
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
OSSL_TRACE_BEGIN(PROVIDER) {
|
|
|
|
BIO_printf(trc_out,
|
|
|
|
"(provider %s) Calling unquery"
|
|
|
|
" with operation %d\n",
|
|
|
|
prov->name,
|
|
|
|
operation_id);
|
|
|
|
} OSSL_TRACE_END(PROVIDER);
|
|
|
|
#endif
|
2020-09-25 08:19:19 +08:00
|
|
|
prov->unquery_operation(prov->provctx, operation_id, algs);
|
2024-10-05 21:44:11 +08:00
|
|
|
}
|
2020-09-25 08:19:19 +08:00
|
|
|
}
|
|
|
|
|
2020-05-15 21:56:05 +08:00
|
|
|
int ossl_provider_set_operation_bit(OSSL_PROVIDER *provider, size_t bitnum)
|
|
|
|
{
|
|
|
|
size_t byte = bitnum / 8;
|
|
|
|
unsigned char bit = (1 << (bitnum % 8)) & 0xFF;
|
|
|
|
|
2021-02-19 04:31:56 +08:00
|
|
|
if (!CRYPTO_THREAD_write_lock(provider->opbits_lock))
|
|
|
|
return 0;
|
2020-05-15 21:56:05 +08:00
|
|
|
if (provider->operation_bits_sz <= byte) {
|
2020-09-01 07:59:43 +08:00
|
|
|
unsigned char *tmp = OPENSSL_realloc(provider->operation_bits,
|
|
|
|
byte + 1);
|
|
|
|
|
|
|
|
if (tmp == NULL) {
|
2020-12-12 00:29:25 +08:00
|
|
|
CRYPTO_THREAD_unlock(provider->opbits_lock);
|
2020-05-15 21:56:05 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2020-09-01 07:59:43 +08:00
|
|
|
provider->operation_bits = tmp;
|
2020-05-15 21:56:05 +08:00
|
|
|
memset(provider->operation_bits + provider->operation_bits_sz,
|
|
|
|
'\0', byte + 1 - provider->operation_bits_sz);
|
2020-09-01 07:59:43 +08:00
|
|
|
provider->operation_bits_sz = byte + 1;
|
2020-05-15 21:56:05 +08:00
|
|
|
}
|
|
|
|
provider->operation_bits[byte] |= bit;
|
2020-12-12 00:29:25 +08:00
|
|
|
CRYPTO_THREAD_unlock(provider->opbits_lock);
|
2020-05-15 21:56:05 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ossl_provider_test_operation_bit(OSSL_PROVIDER *provider, size_t bitnum,
|
|
|
|
int *result)
|
|
|
|
{
|
|
|
|
size_t byte = bitnum / 8;
|
|
|
|
unsigned char bit = (1 << (bitnum % 8)) & 0xFF;
|
|
|
|
|
|
|
|
if (!ossl_assert(result != NULL)) {
|
|
|
|
ERR_raise(ERR_LIB_CRYPTO, ERR_R_PASSED_NULL_PARAMETER);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
*result = 0;
|
2021-02-19 04:31:56 +08:00
|
|
|
if (!CRYPTO_THREAD_read_lock(provider->opbits_lock))
|
|
|
|
return 0;
|
2020-05-15 21:56:05 +08:00
|
|
|
if (provider->operation_bits_sz > byte)
|
|
|
|
*result = ((provider->operation_bits[byte] & bit) != 0);
|
2020-12-12 00:29:25 +08:00
|
|
|
CRYPTO_THREAD_unlock(provider->opbits_lock);
|
2020-05-15 21:56:05 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2021-05-07 18:03:59 +08:00
|
|
|
#ifndef FIPS_MODULE
|
2021-04-29 23:37:42 +08:00
|
|
|
const OSSL_CORE_HANDLE *ossl_provider_get_parent(OSSL_PROVIDER *prov)
|
|
|
|
{
|
|
|
|
return prov->handle;
|
|
|
|
}
|
|
|
|
|
2021-05-04 23:23:31 +08:00
|
|
|
int ossl_provider_is_child(const OSSL_PROVIDER *prov)
|
2021-04-21 23:51:41 +08:00
|
|
|
{
|
2021-05-04 23:23:31 +08:00
|
|
|
return prov->ischild;
|
|
|
|
}
|
2021-04-29 23:37:42 +08:00
|
|
|
|
2021-05-04 23:23:31 +08:00
|
|
|
int ossl_provider_set_child(OSSL_PROVIDER *prov, const OSSL_CORE_HANDLE *handle)
|
|
|
|
{
|
2021-04-29 23:37:42 +08:00
|
|
|
prov->handle = handle;
|
2021-04-21 23:51:41 +08:00
|
|
|
prov->ischild = 1;
|
2021-04-29 23:37:42 +08:00
|
|
|
|
2021-05-04 23:23:31 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2021-05-08 00:59:47 +08:00
|
|
|
int ossl_provider_default_props_update(OSSL_LIB_CTX *libctx, const char *props)
|
|
|
|
{
|
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
struct provider_store_st *store = NULL;
|
|
|
|
int i, max;
|
|
|
|
OSSL_PROVIDER_CHILD_CB *child_cb;
|
|
|
|
|
|
|
|
if ((store = get_provider_store(libctx)) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (!CRYPTO_THREAD_read_lock(store->lock))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
max = sk_OSSL_PROVIDER_CHILD_CB_num(store->child_cbs);
|
|
|
|
for (i = 0; i < max; i++) {
|
|
|
|
child_cb = sk_OSSL_PROVIDER_CHILD_CB_value(store->child_cbs, i);
|
|
|
|
child_cb->global_props_cb(props, child_cb->cbdata);
|
|
|
|
}
|
|
|
|
|
|
|
|
CRYPTO_THREAD_unlock(store->lock);
|
|
|
|
#endif
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2021-04-23 19:08:27 +08:00
|
|
|
static int ossl_provider_register_child_cb(const OSSL_CORE_HANDLE *handle,
|
|
|
|
int (*create_cb)(
|
|
|
|
const OSSL_CORE_HANDLE *provider,
|
|
|
|
void *cbdata),
|
2021-05-12 16:44:20 +08:00
|
|
|
int (*remove_cb)(
|
2021-04-23 19:08:27 +08:00
|
|
|
const OSSL_CORE_HANDLE *provider,
|
|
|
|
void *cbdata),
|
2021-05-12 16:44:20 +08:00
|
|
|
int (*global_props_cb)(
|
2021-05-08 00:59:47 +08:00
|
|
|
const char *props,
|
|
|
|
void *cbdata),
|
2021-04-23 19:08:27 +08:00
|
|
|
void *cbdata)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* This is really an OSSL_PROVIDER that we created and cast to
|
|
|
|
* OSSL_CORE_HANDLE originally. Therefore it is safe to cast it back.
|
|
|
|
*/
|
|
|
|
OSSL_PROVIDER *thisprov = (OSSL_PROVIDER *)handle;
|
|
|
|
OSSL_PROVIDER *prov;
|
|
|
|
OSSL_LIB_CTX *libctx = thisprov->libctx;
|
|
|
|
struct provider_store_st *store = NULL;
|
|
|
|
int ret = 0, i, max;
|
|
|
|
OSSL_PROVIDER_CHILD_CB *child_cb;
|
2021-05-08 00:59:47 +08:00
|
|
|
char *propsstr = NULL;
|
2021-04-23 19:08:27 +08:00
|
|
|
|
|
|
|
if ((store = get_provider_store(libctx)) == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
child_cb = OPENSSL_malloc(sizeof(*child_cb));
|
|
|
|
if (child_cb == NULL)
|
|
|
|
return 0;
|
|
|
|
child_cb->prov = thisprov;
|
|
|
|
child_cb->create_cb = create_cb;
|
|
|
|
child_cb->remove_cb = remove_cb;
|
2021-05-08 00:59:47 +08:00
|
|
|
child_cb->global_props_cb = global_props_cb;
|
2021-04-23 19:08:27 +08:00
|
|
|
child_cb->cbdata = cbdata;
|
|
|
|
|
|
|
|
if (!CRYPTO_THREAD_write_lock(store->lock)) {
|
|
|
|
OPENSSL_free(child_cb);
|
|
|
|
return 0;
|
|
|
|
}
|
2021-05-08 00:59:47 +08:00
|
|
|
propsstr = evp_get_global_properties_str(libctx, 0);
|
|
|
|
|
|
|
|
if (propsstr != NULL) {
|
|
|
|
global_props_cb(propsstr, cbdata);
|
|
|
|
OPENSSL_free(propsstr);
|
|
|
|
}
|
2021-04-23 19:08:27 +08:00
|
|
|
max = sk_OSSL_PROVIDER_num(store->providers);
|
|
|
|
for (i = 0; i < max; i++) {
|
2021-08-30 20:04:31 +08:00
|
|
|
int activated;
|
|
|
|
|
2021-04-23 19:08:27 +08:00
|
|
|
prov = sk_OSSL_PROVIDER_value(store->providers, i);
|
2021-06-21 22:37:48 +08:00
|
|
|
|
2021-04-23 19:08:27 +08:00
|
|
|
if (!CRYPTO_THREAD_read_lock(prov->flag_lock))
|
|
|
|
break;
|
2021-08-30 20:04:31 +08:00
|
|
|
activated = prov->flag_activated;
|
|
|
|
CRYPTO_THREAD_unlock(prov->flag_lock);
|
2021-04-23 19:08:27 +08:00
|
|
|
/*
|
2021-08-30 20:04:31 +08:00
|
|
|
* We hold the store lock while calling the user callback. This means
|
|
|
|
* that the user callback must be short and simple and not do anything
|
|
|
|
* likely to cause a deadlock. We don't hold the flag_lock during this
|
|
|
|
* call. In theory this means that another thread could deactivate it
|
|
|
|
* while we are calling create. This is ok because the other thread
|
|
|
|
* will also call remove_cb, but won't be able to do so until we release
|
|
|
|
* the store lock.
|
2021-04-23 19:08:27 +08:00
|
|
|
*/
|
2021-08-30 20:04:31 +08:00
|
|
|
if (activated && !create_cb((OSSL_CORE_HANDLE *)prov, cbdata))
|
2021-04-23 19:08:27 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (i == max) {
|
|
|
|
/* Success */
|
|
|
|
ret = sk_OSSL_PROVIDER_CHILD_CB_push(store->child_cbs, child_cb);
|
|
|
|
}
|
|
|
|
if (i != max || ret <= 0) {
|
|
|
|
/* Failed during creation. Remove everything we just added */
|
|
|
|
for (; i >= 0; i--) {
|
|
|
|
prov = sk_OSSL_PROVIDER_value(store->providers, i);
|
|
|
|
remove_cb((OSSL_CORE_HANDLE *)prov, cbdata);
|
|
|
|
}
|
|
|
|
OPENSSL_free(child_cb);
|
|
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
CRYPTO_THREAD_unlock(store->lock);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ossl_provider_deregister_child_cb(const OSSL_CORE_HANDLE *handle)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* This is really an OSSL_PROVIDER that we created and cast to
|
|
|
|
* OSSL_CORE_HANDLE originally. Therefore it is safe to cast it back.
|
|
|
|
*/
|
|
|
|
OSSL_PROVIDER *thisprov = (OSSL_PROVIDER *)handle;
|
|
|
|
OSSL_LIB_CTX *libctx = thisprov->libctx;
|
|
|
|
struct provider_store_st *store = NULL;
|
|
|
|
int i, max;
|
|
|
|
OSSL_PROVIDER_CHILD_CB *child_cb;
|
|
|
|
|
|
|
|
if ((store = get_provider_store(libctx)) == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!CRYPTO_THREAD_write_lock(store->lock))
|
|
|
|
return;
|
|
|
|
max = sk_OSSL_PROVIDER_CHILD_CB_num(store->child_cbs);
|
|
|
|
for (i = 0; i < max; i++) {
|
|
|
|
child_cb = sk_OSSL_PROVIDER_CHILD_CB_value(store->child_cbs, i);
|
|
|
|
if (child_cb->prov == thisprov) {
|
|
|
|
/* Found an entry */
|
|
|
|
sk_OSSL_PROVIDER_CHILD_CB_delete(store->child_cbs, i);
|
|
|
|
OPENSSL_free(child_cb);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
CRYPTO_THREAD_unlock(store->lock);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-01-20 20:14:58 +08:00
|
|
|
/*-
|
|
|
|
* Core functions for the provider
|
|
|
|
* ===============================
|
|
|
|
*
|
|
|
|
* This is the set of functions that the core makes available to the provider
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This returns a list of Provider Object parameters with their types, for
|
|
|
|
* discovery. We do not expect that many providers will use this, but one
|
|
|
|
* never knows.
|
|
|
|
*/
|
2019-07-11 18:19:33 +08:00
|
|
|
static const OSSL_PARAM param_types[] = {
|
2020-05-26 11:53:07 +08:00
|
|
|
OSSL_PARAM_DEFN(OSSL_PROV_PARAM_CORE_VERSION, OSSL_PARAM_UTF8_PTR, NULL, 0),
|
|
|
|
OSSL_PARAM_DEFN(OSSL_PROV_PARAM_CORE_PROV_NAME, OSSL_PARAM_UTF8_PTR,
|
|
|
|
NULL, 0),
|
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
OSSL_PARAM_DEFN(OSSL_PROV_PARAM_CORE_MODULE_FILENAME, OSSL_PARAM_UTF8_PTR,
|
|
|
|
NULL, 0),
|
|
|
|
#endif
|
2019-07-11 18:19:33 +08:00
|
|
|
OSSL_PARAM_END
|
2019-01-20 20:14:58 +08:00
|
|
|
};
|
|
|
|
|
2019-07-24 19:37:42 +08:00
|
|
|
/*
|
|
|
|
* Forward declare all the functions that are provided aa dispatch.
|
|
|
|
* This ensures that the compiler will complain if they aren't defined
|
|
|
|
* with the correct signature.
|
|
|
|
*/
|
2020-06-21 07:19:16 +08:00
|
|
|
static OSSL_FUNC_core_gettable_params_fn core_gettable_params;
|
|
|
|
static OSSL_FUNC_core_get_params_fn core_get_params;
|
2020-10-15 17:55:50 +08:00
|
|
|
static OSSL_FUNC_core_get_libctx_fn core_get_libctx;
|
Pre-declare all core dispatch table functions, and fix the internal ones
When assigning pointers to functions in an OSSL_DISPATCH table, we try
to ensure that those functions are properly defined or declared with
an extra declaration using the corresponding function typedefs that
are defined by include/openssl/core_dispatch.h.
For the core dispatch table, found in crypto/provider_core.c, it seems
we forgot this habit, and thus didn't ensure well enough that the
function pointers that are assigned in the table can actually be used
for those dispatch table indexes.
This change adds all the missing declarations, and compensates for
differences with functions that do the necessary casting, making those
explicit rather than implicit, thereby trying to assure that we know
what we're doing.
One function is not fixed in this change, because there's a controversy,
a clash between the signature of BIO_ctrl() and OSSL_FUNC_BIO_ctrl_fn.
They have different return types.
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18198)
2022-04-28 14:15:53 +08:00
|
|
|
static OSSL_FUNC_core_thread_start_fn core_thread_start;
|
2020-04-14 04:34:56 +08:00
|
|
|
#ifndef FIPS_MODULE
|
2020-06-21 07:19:16 +08:00
|
|
|
static OSSL_FUNC_core_new_error_fn core_new_error;
|
|
|
|
static OSSL_FUNC_core_set_error_debug_fn core_set_error_debug;
|
|
|
|
static OSSL_FUNC_core_vset_error_fn core_vset_error;
|
|
|
|
static OSSL_FUNC_core_set_error_mark_fn core_set_error_mark;
|
|
|
|
static OSSL_FUNC_core_clear_last_error_mark_fn core_clear_last_error_mark;
|
|
|
|
static OSSL_FUNC_core_pop_error_to_mark_fn core_pop_error_to_mark;
|
Pre-declare all core dispatch table functions, and fix the internal ones
When assigning pointers to functions in an OSSL_DISPATCH table, we try
to ensure that those functions are properly defined or declared with
an extra declaration using the corresponding function typedefs that
are defined by include/openssl/core_dispatch.h.
For the core dispatch table, found in crypto/provider_core.c, it seems
we forgot this habit, and thus didn't ensure well enough that the
function pointers that are assigned in the table can actually be used
for those dispatch table indexes.
This change adds all the missing declarations, and compensates for
differences with functions that do the necessary casting, making those
explicit rather than implicit, thereby trying to assure that we know
what we're doing.
One function is not fixed in this change, because there's a controversy,
a clash between the signature of BIO_ctrl() and OSSL_FUNC_BIO_ctrl_fn.
They have different return types.
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18198)
2022-04-28 14:15:53 +08:00
|
|
|
OSSL_FUNC_BIO_new_file_fn ossl_core_bio_new_file;
|
|
|
|
OSSL_FUNC_BIO_new_membuf_fn ossl_core_bio_new_mem_buf;
|
|
|
|
OSSL_FUNC_BIO_read_ex_fn ossl_core_bio_read_ex;
|
|
|
|
OSSL_FUNC_BIO_write_ex_fn ossl_core_bio_write_ex;
|
|
|
|
OSSL_FUNC_BIO_gets_fn ossl_core_bio_gets;
|
|
|
|
OSSL_FUNC_BIO_puts_fn ossl_core_bio_puts;
|
|
|
|
OSSL_FUNC_BIO_up_ref_fn ossl_core_bio_up_ref;
|
|
|
|
OSSL_FUNC_BIO_free_fn ossl_core_bio_free;
|
|
|
|
OSSL_FUNC_BIO_vprintf_fn ossl_core_bio_vprintf;
|
|
|
|
OSSL_FUNC_BIO_vsnprintf_fn BIO_vsnprintf;
|
2024-07-01 09:11:16 +08:00
|
|
|
static OSSL_FUNC_indicator_cb_fn core_indicator_get_callback;
|
Pre-declare all core dispatch table functions, and fix the internal ones
When assigning pointers to functions in an OSSL_DISPATCH table, we try
to ensure that those functions are properly defined or declared with
an extra declaration using the corresponding function typedefs that
are defined by include/openssl/core_dispatch.h.
For the core dispatch table, found in crypto/provider_core.c, it seems
we forgot this habit, and thus didn't ensure well enough that the
function pointers that are assigned in the table can actually be used
for those dispatch table indexes.
This change adds all the missing declarations, and compensates for
differences with functions that do the necessary casting, making those
explicit rather than implicit, thereby trying to assure that we know
what we're doing.
One function is not fixed in this change, because there's a controversy,
a clash between the signature of BIO_ctrl() and OSSL_FUNC_BIO_ctrl_fn.
They have different return types.
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18198)
2022-04-28 14:15:53 +08:00
|
|
|
static OSSL_FUNC_self_test_cb_fn core_self_test_get_callback;
|
2023-09-05 10:51:05 +08:00
|
|
|
static OSSL_FUNC_get_entropy_fn rand_get_entropy;
|
2023-10-17 05:48:03 +08:00
|
|
|
static OSSL_FUNC_get_user_entropy_fn rand_get_user_entropy;
|
2023-09-05 10:51:05 +08:00
|
|
|
static OSSL_FUNC_cleanup_entropy_fn rand_cleanup_entropy;
|
2023-10-17 05:48:03 +08:00
|
|
|
static OSSL_FUNC_cleanup_user_entropy_fn rand_cleanup_user_entropy;
|
2023-09-05 10:51:05 +08:00
|
|
|
static OSSL_FUNC_get_nonce_fn rand_get_nonce;
|
2023-10-17 05:48:03 +08:00
|
|
|
static OSSL_FUNC_get_user_nonce_fn rand_get_user_nonce;
|
2023-09-05 10:51:05 +08:00
|
|
|
static OSSL_FUNC_cleanup_nonce_fn rand_cleanup_nonce;
|
2023-10-17 05:48:03 +08:00
|
|
|
static OSSL_FUNC_cleanup_user_nonce_fn rand_cleanup_user_nonce;
|
Pre-declare all core dispatch table functions, and fix the internal ones
When assigning pointers to functions in an OSSL_DISPATCH table, we try
to ensure that those functions are properly defined or declared with
an extra declaration using the corresponding function typedefs that
are defined by include/openssl/core_dispatch.h.
For the core dispatch table, found in crypto/provider_core.c, it seems
we forgot this habit, and thus didn't ensure well enough that the
function pointers that are assigned in the table can actually be used
for those dispatch table indexes.
This change adds all the missing declarations, and compensates for
differences with functions that do the necessary casting, making those
explicit rather than implicit, thereby trying to assure that we know
what we're doing.
One function is not fixed in this change, because there's a controversy,
a clash between the signature of BIO_ctrl() and OSSL_FUNC_BIO_ctrl_fn.
They have different return types.
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18198)
2022-04-28 14:15:53 +08:00
|
|
|
#endif
|
|
|
|
OSSL_FUNC_CRYPTO_malloc_fn CRYPTO_malloc;
|
|
|
|
OSSL_FUNC_CRYPTO_zalloc_fn CRYPTO_zalloc;
|
|
|
|
OSSL_FUNC_CRYPTO_free_fn CRYPTO_free;
|
|
|
|
OSSL_FUNC_CRYPTO_clear_free_fn CRYPTO_clear_free;
|
|
|
|
OSSL_FUNC_CRYPTO_realloc_fn CRYPTO_realloc;
|
|
|
|
OSSL_FUNC_CRYPTO_clear_realloc_fn CRYPTO_clear_realloc;
|
|
|
|
OSSL_FUNC_CRYPTO_secure_malloc_fn CRYPTO_secure_malloc;
|
|
|
|
OSSL_FUNC_CRYPTO_secure_zalloc_fn CRYPTO_secure_zalloc;
|
|
|
|
OSSL_FUNC_CRYPTO_secure_free_fn CRYPTO_secure_free;
|
|
|
|
OSSL_FUNC_CRYPTO_secure_clear_free_fn CRYPTO_secure_clear_free;
|
|
|
|
OSSL_FUNC_CRYPTO_secure_allocated_fn CRYPTO_secure_allocated;
|
|
|
|
OSSL_FUNC_OPENSSL_cleanse_fn OPENSSL_cleanse;
|
|
|
|
#ifndef FIPS_MODULE
|
|
|
|
OSSL_FUNC_provider_register_child_cb_fn ossl_provider_register_child_cb;
|
|
|
|
OSSL_FUNC_provider_deregister_child_cb_fn ossl_provider_deregister_child_cb;
|
|
|
|
static OSSL_FUNC_provider_name_fn core_provider_get0_name;
|
|
|
|
static OSSL_FUNC_provider_get0_provider_ctx_fn core_provider_get0_provider_ctx;
|
|
|
|
static OSSL_FUNC_provider_get0_dispatch_fn core_provider_get0_dispatch;
|
|
|
|
static OSSL_FUNC_provider_up_ref_fn core_provider_up_ref_intern;
|
|
|
|
static OSSL_FUNC_provider_free_fn core_provider_free_intern;
|
2021-06-09 21:05:26 +08:00
|
|
|
static OSSL_FUNC_core_obj_add_sigid_fn core_obj_add_sigid;
|
|
|
|
static OSSL_FUNC_core_obj_create_fn core_obj_create;
|
2019-07-24 19:37:42 +08:00
|
|
|
#endif
|
|
|
|
|
2020-05-06 19:29:57 +08:00
|
|
|
static const OSSL_PARAM *core_gettable_params(const OSSL_CORE_HANDLE *handle)
|
2019-01-20 20:14:58 +08:00
|
|
|
{
|
|
|
|
return param_types;
|
|
|
|
}
|
|
|
|
|
2020-05-06 19:29:57 +08:00
|
|
|
static int core_get_params(const OSSL_CORE_HANDLE *handle, OSSL_PARAM params[])
|
2019-01-20 20:14:58 +08:00
|
|
|
{
|
|
|
|
int i;
|
2019-06-24 12:43:55 +08:00
|
|
|
OSSL_PARAM *p;
|
2020-05-06 19:29:57 +08:00
|
|
|
/*
|
|
|
|
* We created this object originally and we know it is actually an
|
|
|
|
* OSSL_PROVIDER *, so the cast is safe
|
|
|
|
*/
|
|
|
|
OSSL_PROVIDER *prov = (OSSL_PROVIDER *)handle;
|
2019-01-20 20:14:58 +08:00
|
|
|
|
2020-05-26 11:53:07 +08:00
|
|
|
if ((p = OSSL_PARAM_locate(params, OSSL_PROV_PARAM_CORE_VERSION)) != NULL)
|
2019-03-21 15:44:06 +08:00
|
|
|
OSSL_PARAM_set_utf8_ptr(p, OPENSSL_VERSION_STR);
|
2020-05-26 11:53:07 +08:00
|
|
|
if ((p = OSSL_PARAM_locate(params, OSSL_PROV_PARAM_CORE_PROV_NAME)) != NULL)
|
2019-03-21 15:44:06 +08:00
|
|
|
OSSL_PARAM_set_utf8_ptr(p, prov->name);
|
|
|
|
|
2020-04-14 04:34:56 +08:00
|
|
|
#ifndef FIPS_MODULE
|
2020-05-26 11:53:07 +08:00
|
|
|
if ((p = OSSL_PARAM_locate(params,
|
|
|
|
OSSL_PROV_PARAM_CORE_MODULE_FILENAME)) != NULL)
|
2019-08-19 07:18:33 +08:00
|
|
|
OSSL_PARAM_set_utf8_ptr(p, ossl_provider_module_path(prov));
|
|
|
|
#endif
|
|
|
|
|
2019-03-21 15:44:06 +08:00
|
|
|
if (prov->parameters == NULL)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
for (i = 0; i < sk_INFOPAIR_num(prov->parameters); i++) {
|
|
|
|
INFOPAIR *pair = sk_INFOPAIR_value(prov->parameters, i);
|
|
|
|
|
|
|
|
if ((p = OSSL_PARAM_locate(params, pair->name)) != NULL)
|
|
|
|
OSSL_PARAM_set_utf8_ptr(p, pair->value);
|
2019-01-20 20:14:58 +08:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-05-06 19:29:57 +08:00
|
|
|
static OPENSSL_CORE_CTX *core_get_libctx(const OSSL_CORE_HANDLE *handle)
|
2019-06-14 16:19:56 +08:00
|
|
|
{
|
2020-05-06 19:29:57 +08:00
|
|
|
/*
|
|
|
|
* We created this object originally and we know it is actually an
|
|
|
|
* OSSL_PROVIDER *, so the cast is safe
|
|
|
|
*/
|
|
|
|
OSSL_PROVIDER *prov = (OSSL_PROVIDER *)handle;
|
|
|
|
|
2021-03-13 00:29:53 +08:00
|
|
|
/*
|
|
|
|
* Using ossl_provider_libctx would be wrong as that returns
|
|
|
|
* NULL for |prov| == NULL and NULL libctx has a special meaning
|
|
|
|
* that does not apply here. Here |prov| == NULL can happen only in
|
|
|
|
* case of a coding error.
|
|
|
|
*/
|
2021-03-16 19:19:38 +08:00
|
|
|
assert(prov != NULL);
|
2021-03-13 00:29:53 +08:00
|
|
|
return (OPENSSL_CORE_CTX *)prov->libctx;
|
2019-06-14 16:19:56 +08:00
|
|
|
}
|
|
|
|
|
2020-05-06 19:29:57 +08:00
|
|
|
static int core_thread_start(const OSSL_CORE_HANDLE *handle,
|
2021-05-20 18:52:56 +08:00
|
|
|
OSSL_thread_stop_handler_fn handfn,
|
|
|
|
void *arg)
|
2019-05-27 23:31:27 +08:00
|
|
|
{
|
2020-05-06 19:29:57 +08:00
|
|
|
/*
|
|
|
|
* We created this object originally and we know it is actually an
|
|
|
|
* OSSL_PROVIDER *, so the cast is safe
|
|
|
|
*/
|
|
|
|
OSSL_PROVIDER *prov = (OSSL_PROVIDER *)handle;
|
|
|
|
|
2021-05-20 18:52:56 +08:00
|
|
|
return ossl_init_thread_start(prov, arg, handfn);
|
2019-05-27 23:31:27 +08:00
|
|
|
}
|
|
|
|
|
2019-06-18 17:39:13 +08:00
|
|
|
/*
|
|
|
|
* The FIPS module inner provider doesn't implement these. They aren't
|
|
|
|
* needed there, since the FIPS module upcalls are always the outer provider
|
|
|
|
* ones.
|
|
|
|
*/
|
2020-04-14 04:34:56 +08:00
|
|
|
#ifndef FIPS_MODULE
|
2019-07-24 19:37:42 +08:00
|
|
|
/*
|
2021-03-13 00:29:53 +08:00
|
|
|
* These error functions should use |handle| to select the proper
|
|
|
|
* library context to report in the correct error stack if error
|
2019-07-24 19:37:42 +08:00
|
|
|
* stacks become tied to the library context.
|
|
|
|
* We cannot currently do that since there's no support for it in the
|
|
|
|
* ERR subsystem.
|
|
|
|
*/
|
2020-05-06 19:29:57 +08:00
|
|
|
static void core_new_error(const OSSL_CORE_HANDLE *handle)
|
2019-07-24 19:37:42 +08:00
|
|
|
{
|
|
|
|
ERR_new();
|
|
|
|
}
|
|
|
|
|
2020-05-06 19:29:57 +08:00
|
|
|
static void core_set_error_debug(const OSSL_CORE_HANDLE *handle,
|
2019-07-24 19:37:42 +08:00
|
|
|
const char *file, int line, const char *func)
|
|
|
|
{
|
|
|
|
ERR_set_debug(file, line, func);
|
|
|
|
}
|
|
|
|
|
2020-05-06 19:29:57 +08:00
|
|
|
static void core_vset_error(const OSSL_CORE_HANDLE *handle,
|
2019-07-24 19:37:42 +08:00
|
|
|
uint32_t reason, const char *fmt, va_list args)
|
2019-06-18 17:18:31 +08:00
|
|
|
{
|
2020-05-06 19:29:57 +08:00
|
|
|
/*
|
|
|
|
* We created this object originally and we know it is actually an
|
|
|
|
* OSSL_PROVIDER *, so the cast is safe
|
|
|
|
*/
|
|
|
|
OSSL_PROVIDER *prov = (OSSL_PROVIDER *)handle;
|
|
|
|
|
2019-06-18 17:18:31 +08:00
|
|
|
/*
|
|
|
|
* If the uppermost 8 bits are non-zero, it's an OpenSSL library
|
|
|
|
* error and will be treated as such. Otherwise, it's a new style
|
|
|
|
* provider error and will be treated as such.
|
|
|
|
*/
|
|
|
|
if (ERR_GET_LIB(reason) != 0) {
|
2019-07-24 19:37:42 +08:00
|
|
|
ERR_vset_error(ERR_GET_LIB(reason), ERR_GET_REASON(reason), fmt, args);
|
2019-06-18 17:18:31 +08:00
|
|
|
} else {
|
2019-07-24 19:37:42 +08:00
|
|
|
ERR_vset_error(prov->error_lib, (int)reason, fmt, args);
|
2019-06-18 17:18:31 +08:00
|
|
|
}
|
|
|
|
}
|
2020-01-15 21:09:54 +08:00
|
|
|
|
2020-05-06 19:29:57 +08:00
|
|
|
static int core_set_error_mark(const OSSL_CORE_HANDLE *handle)
|
2020-01-15 21:09:54 +08:00
|
|
|
{
|
|
|
|
return ERR_set_mark();
|
|
|
|
}
|
|
|
|
|
2020-05-06 19:29:57 +08:00
|
|
|
static int core_clear_last_error_mark(const OSSL_CORE_HANDLE *handle)
|
2020-01-15 21:09:54 +08:00
|
|
|
{
|
|
|
|
return ERR_clear_last_mark();
|
|
|
|
}
|
|
|
|
|
2020-05-06 19:29:57 +08:00
|
|
|
static int core_pop_error_to_mark(const OSSL_CORE_HANDLE *handle)
|
2020-01-15 21:09:54 +08:00
|
|
|
{
|
|
|
|
return ERR_pop_to_mark();
|
|
|
|
}
|
2021-06-09 21:05:26 +08:00
|
|
|
|
2024-07-01 09:11:16 +08:00
|
|
|
static void core_indicator_get_callback(OPENSSL_CORE_CTX *libctx,
|
|
|
|
OSSL_INDICATOR_CALLBACK **cb)
|
|
|
|
{
|
|
|
|
OSSL_INDICATOR_get_callback((OSSL_LIB_CTX *)libctx, cb);
|
|
|
|
}
|
|
|
|
|
Pre-declare all core dispatch table functions, and fix the internal ones
When assigning pointers to functions in an OSSL_DISPATCH table, we try
to ensure that those functions are properly defined or declared with
an extra declaration using the corresponding function typedefs that
are defined by include/openssl/core_dispatch.h.
For the core dispatch table, found in crypto/provider_core.c, it seems
we forgot this habit, and thus didn't ensure well enough that the
function pointers that are assigned in the table can actually be used
for those dispatch table indexes.
This change adds all the missing declarations, and compensates for
differences with functions that do the necessary casting, making those
explicit rather than implicit, thereby trying to assure that we know
what we're doing.
One function is not fixed in this change, because there's a controversy,
a clash between the signature of BIO_ctrl() and OSSL_FUNC_BIO_ctrl_fn.
They have different return types.
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18198)
2022-04-28 14:15:53 +08:00
|
|
|
static void core_self_test_get_callback(OPENSSL_CORE_CTX *libctx,
|
|
|
|
OSSL_CALLBACK **cb, void **cbarg)
|
|
|
|
{
|
|
|
|
OSSL_SELF_TEST_get_callback((OSSL_LIB_CTX *)libctx, cb, cbarg);
|
|
|
|
}
|
|
|
|
|
2023-09-05 10:51:05 +08:00
|
|
|
static size_t rand_get_entropy(const OSSL_CORE_HANDLE *handle,
|
|
|
|
unsigned char **pout, int entropy,
|
|
|
|
size_t min_len, size_t max_len)
|
|
|
|
{
|
|
|
|
return ossl_rand_get_entropy((OSSL_LIB_CTX *)core_get_libctx(handle),
|
|
|
|
pout, entropy, min_len, max_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t rand_get_user_entropy(const OSSL_CORE_HANDLE *handle,
|
|
|
|
unsigned char **pout, int entropy,
|
|
|
|
size_t min_len, size_t max_len)
|
|
|
|
{
|
|
|
|
return ossl_rand_get_user_entropy((OSSL_LIB_CTX *)core_get_libctx(handle),
|
|
|
|
pout, entropy, min_len, max_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void rand_cleanup_entropy(const OSSL_CORE_HANDLE *handle,
|
|
|
|
unsigned char *buf, size_t len)
|
|
|
|
{
|
|
|
|
ossl_rand_cleanup_entropy((OSSL_LIB_CTX *)core_get_libctx(handle),
|
|
|
|
buf, len);
|
|
|
|
}
|
|
|
|
|
2023-10-17 05:48:03 +08:00
|
|
|
static void rand_cleanup_user_entropy(const OSSL_CORE_HANDLE *handle,
|
|
|
|
unsigned char *buf, size_t len)
|
|
|
|
{
|
|
|
|
ossl_rand_cleanup_user_entropy((OSSL_LIB_CTX *)core_get_libctx(handle),
|
|
|
|
buf, len);
|
|
|
|
}
|
|
|
|
|
2023-09-05 10:51:05 +08:00
|
|
|
static size_t rand_get_nonce(const OSSL_CORE_HANDLE *handle,
|
|
|
|
unsigned char **pout,
|
|
|
|
size_t min_len, size_t max_len,
|
|
|
|
const void *salt, size_t salt_len)
|
|
|
|
{
|
|
|
|
return ossl_rand_get_nonce((OSSL_LIB_CTX *)core_get_libctx(handle),
|
|
|
|
pout, min_len, max_len, salt, salt_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t rand_get_user_nonce(const OSSL_CORE_HANDLE *handle,
|
|
|
|
unsigned char **pout,
|
|
|
|
size_t min_len, size_t max_len,
|
|
|
|
const void *salt, size_t salt_len)
|
|
|
|
{
|
|
|
|
return ossl_rand_get_user_nonce((OSSL_LIB_CTX *)core_get_libctx(handle),
|
|
|
|
pout, min_len, max_len, salt, salt_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void rand_cleanup_nonce(const OSSL_CORE_HANDLE *handle,
|
|
|
|
unsigned char *buf, size_t len)
|
|
|
|
{
|
|
|
|
ossl_rand_cleanup_nonce((OSSL_LIB_CTX *)core_get_libctx(handle),
|
|
|
|
buf, len);
|
|
|
|
}
|
|
|
|
|
2023-10-17 05:48:03 +08:00
|
|
|
static void rand_cleanup_user_nonce(const OSSL_CORE_HANDLE *handle,
|
|
|
|
unsigned char *buf, size_t len)
|
|
|
|
{
|
|
|
|
ossl_rand_cleanup_user_nonce((OSSL_LIB_CTX *)core_get_libctx(handle),
|
|
|
|
buf, len);
|
|
|
|
}
|
|
|
|
|
Pre-declare all core dispatch table functions, and fix the internal ones
When assigning pointers to functions in an OSSL_DISPATCH table, we try
to ensure that those functions are properly defined or declared with
an extra declaration using the corresponding function typedefs that
are defined by include/openssl/core_dispatch.h.
For the core dispatch table, found in crypto/provider_core.c, it seems
we forgot this habit, and thus didn't ensure well enough that the
function pointers that are assigned in the table can actually be used
for those dispatch table indexes.
This change adds all the missing declarations, and compensates for
differences with functions that do the necessary casting, making those
explicit rather than implicit, thereby trying to assure that we know
what we're doing.
One function is not fixed in this change, because there's a controversy,
a clash between the signature of BIO_ctrl() and OSSL_FUNC_BIO_ctrl_fn.
They have different return types.
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18198)
2022-04-28 14:15:53 +08:00
|
|
|
static const char *core_provider_get0_name(const OSSL_CORE_HANDLE *prov)
|
|
|
|
{
|
|
|
|
return OSSL_PROVIDER_get0_name((const OSSL_PROVIDER *)prov);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *core_provider_get0_provider_ctx(const OSSL_CORE_HANDLE *prov)
|
|
|
|
{
|
|
|
|
return OSSL_PROVIDER_get0_provider_ctx((const OSSL_PROVIDER *)prov);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const OSSL_DISPATCH *
|
|
|
|
core_provider_get0_dispatch(const OSSL_CORE_HANDLE *prov)
|
|
|
|
{
|
|
|
|
return OSSL_PROVIDER_get0_dispatch((const OSSL_PROVIDER *)prov);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int core_provider_up_ref_intern(const OSSL_CORE_HANDLE *prov,
|
|
|
|
int activate)
|
|
|
|
{
|
|
|
|
return provider_up_ref_intern((OSSL_PROVIDER *)prov, activate);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int core_provider_free_intern(const OSSL_CORE_HANDLE *prov,
|
|
|
|
int deactivate)
|
|
|
|
{
|
|
|
|
return provider_free_intern((OSSL_PROVIDER *)prov, deactivate);
|
|
|
|
}
|
|
|
|
|
2021-06-09 21:05:26 +08:00
|
|
|
static int core_obj_add_sigid(const OSSL_CORE_HANDLE *prov,
|
|
|
|
const char *sign_name, const char *digest_name,
|
|
|
|
const char *pkey_name)
|
|
|
|
{
|
|
|
|
int sign_nid = OBJ_txt2nid(sign_name);
|
2021-10-07 16:45:48 +08:00
|
|
|
int digest_nid = NID_undef;
|
2021-06-09 21:05:26 +08:00
|
|
|
int pkey_nid = OBJ_txt2nid(pkey_name);
|
|
|
|
|
2021-10-07 16:45:48 +08:00
|
|
|
if (digest_name != NULL && digest_name[0] != '\0'
|
|
|
|
&& (digest_nid = OBJ_txt2nid(digest_name)) == NID_undef)
|
|
|
|
return 0;
|
|
|
|
|
2021-06-09 21:05:26 +08:00
|
|
|
if (sign_nid == NID_undef)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check if it already exists. This is a success if so (even if we don't
|
|
|
|
* have nids for the digest/pkey)
|
|
|
|
*/
|
|
|
|
if (OBJ_find_sigid_algs(sign_nid, NULL, NULL))
|
|
|
|
return 1;
|
|
|
|
|
2021-10-07 16:45:48 +08:00
|
|
|
if (pkey_nid == NID_undef)
|
2021-06-09 21:05:26 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
return OBJ_add_sigid(sign_nid, digest_nid, pkey_nid);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int core_obj_create(const OSSL_CORE_HANDLE *prov, const char *oid,
|
|
|
|
const char *sn, const char *ln)
|
|
|
|
{
|
|
|
|
/* Check if it already exists and create it if not */
|
|
|
|
return OBJ_txt2nid(oid) != NID_undef
|
|
|
|
|| OBJ_create(oid, sn, ln) != NID_undef;
|
|
|
|
}
|
2020-04-14 04:34:56 +08:00
|
|
|
#endif /* FIPS_MODULE */
|
2019-06-18 17:18:31 +08:00
|
|
|
|
2019-07-11 13:53:59 +08:00
|
|
|
/*
|
2020-10-30 13:53:22 +08:00
|
|
|
* Functions provided by the core.
|
2019-07-11 13:53:59 +08:00
|
|
|
*/
|
2019-01-20 20:14:58 +08:00
|
|
|
static const OSSL_DISPATCH core_dispatch_[] = {
|
2019-08-15 02:17:39 +08:00
|
|
|
{ OSSL_FUNC_CORE_GETTABLE_PARAMS, (void (*)(void))core_gettable_params },
|
2019-01-20 20:14:58 +08:00
|
|
|
{ OSSL_FUNC_CORE_GET_PARAMS, (void (*)(void))core_get_params },
|
2020-10-15 17:55:50 +08:00
|
|
|
{ OSSL_FUNC_CORE_GET_LIBCTX, (void (*)(void))core_get_libctx },
|
2019-05-27 23:31:27 +08:00
|
|
|
{ OSSL_FUNC_CORE_THREAD_START, (void (*)(void))core_thread_start },
|
2020-04-14 04:34:56 +08:00
|
|
|
#ifndef FIPS_MODULE
|
2019-07-24 19:37:42 +08:00
|
|
|
{ OSSL_FUNC_CORE_NEW_ERROR, (void (*)(void))core_new_error },
|
|
|
|
{ OSSL_FUNC_CORE_SET_ERROR_DEBUG, (void (*)(void))core_set_error_debug },
|
|
|
|
{ OSSL_FUNC_CORE_VSET_ERROR, (void (*)(void))core_vset_error },
|
2020-01-15 21:09:54 +08:00
|
|
|
{ OSSL_FUNC_CORE_SET_ERROR_MARK, (void (*)(void))core_set_error_mark },
|
|
|
|
{ OSSL_FUNC_CORE_CLEAR_LAST_ERROR_MARK,
|
|
|
|
(void (*)(void))core_clear_last_error_mark },
|
2020-03-15 15:38:00 +08:00
|
|
|
{ OSSL_FUNC_CORE_POP_ERROR_TO_MARK, (void (*)(void))core_pop_error_to_mark },
|
2021-03-04 11:53:53 +08:00
|
|
|
{ OSSL_FUNC_BIO_NEW_FILE, (void (*)(void))ossl_core_bio_new_file },
|
|
|
|
{ OSSL_FUNC_BIO_NEW_MEMBUF, (void (*)(void))ossl_core_bio_new_mem_buf },
|
|
|
|
{ OSSL_FUNC_BIO_READ_EX, (void (*)(void))ossl_core_bio_read_ex },
|
|
|
|
{ OSSL_FUNC_BIO_WRITE_EX, (void (*)(void))ossl_core_bio_write_ex },
|
|
|
|
{ OSSL_FUNC_BIO_GETS, (void (*)(void))ossl_core_bio_gets },
|
|
|
|
{ OSSL_FUNC_BIO_PUTS, (void (*)(void))ossl_core_bio_puts },
|
|
|
|
{ OSSL_FUNC_BIO_CTRL, (void (*)(void))ossl_core_bio_ctrl },
|
|
|
|
{ OSSL_FUNC_BIO_UP_REF, (void (*)(void))ossl_core_bio_up_ref },
|
|
|
|
{ OSSL_FUNC_BIO_FREE, (void (*)(void))ossl_core_bio_free },
|
|
|
|
{ OSSL_FUNC_BIO_VPRINTF, (void (*)(void))ossl_core_bio_vprintf },
|
2020-03-15 15:38:00 +08:00
|
|
|
{ OSSL_FUNC_BIO_VSNPRINTF, (void (*)(void))BIO_vsnprintf },
|
Pre-declare all core dispatch table functions, and fix the internal ones
When assigning pointers to functions in an OSSL_DISPATCH table, we try
to ensure that those functions are properly defined or declared with
an extra declaration using the corresponding function typedefs that
are defined by include/openssl/core_dispatch.h.
For the core dispatch table, found in crypto/provider_core.c, it seems
we forgot this habit, and thus didn't ensure well enough that the
function pointers that are assigned in the table can actually be used
for those dispatch table indexes.
This change adds all the missing declarations, and compensates for
differences with functions that do the necessary casting, making those
explicit rather than implicit, thereby trying to assure that we know
what we're doing.
One function is not fixed in this change, because there's a controversy,
a clash between the signature of BIO_ctrl() and OSSL_FUNC_BIO_ctrl_fn.
They have different return types.
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18198)
2022-04-28 14:15:53 +08:00
|
|
|
{ OSSL_FUNC_SELF_TEST_CB, (void (*)(void))core_self_test_get_callback },
|
2024-07-01 09:11:16 +08:00
|
|
|
{ OSSL_FUNC_INDICATOR_CB, (void (*)(void))core_indicator_get_callback },
|
2023-09-05 10:51:05 +08:00
|
|
|
{ OSSL_FUNC_GET_ENTROPY, (void (*)(void))rand_get_entropy },
|
2023-10-17 05:48:03 +08:00
|
|
|
{ OSSL_FUNC_GET_USER_ENTROPY, (void (*)(void))rand_get_user_entropy },
|
2023-09-05 10:51:05 +08:00
|
|
|
{ OSSL_FUNC_CLEANUP_ENTROPY, (void (*)(void))rand_cleanup_entropy },
|
2023-10-17 05:48:03 +08:00
|
|
|
{ OSSL_FUNC_CLEANUP_USER_ENTROPY, (void (*)(void))rand_cleanup_user_entropy },
|
2023-09-05 10:51:05 +08:00
|
|
|
{ OSSL_FUNC_GET_NONCE, (void (*)(void))rand_get_nonce },
|
|
|
|
{ OSSL_FUNC_GET_USER_NONCE, (void (*)(void))rand_get_user_nonce },
|
2023-10-17 05:48:03 +08:00
|
|
|
{ OSSL_FUNC_CLEANUP_NONCE, (void (*)(void))rand_cleanup_nonce },
|
|
|
|
{ OSSL_FUNC_CLEANUP_USER_NONCE, (void (*)(void))rand_cleanup_user_nonce },
|
2019-06-18 17:39:13 +08:00
|
|
|
#endif
|
2019-07-11 13:53:59 +08:00
|
|
|
{ OSSL_FUNC_CRYPTO_MALLOC, (void (*)(void))CRYPTO_malloc },
|
|
|
|
{ OSSL_FUNC_CRYPTO_ZALLOC, (void (*)(void))CRYPTO_zalloc },
|
|
|
|
{ OSSL_FUNC_CRYPTO_FREE, (void (*)(void))CRYPTO_free },
|
|
|
|
{ OSSL_FUNC_CRYPTO_CLEAR_FREE, (void (*)(void))CRYPTO_clear_free },
|
|
|
|
{ OSSL_FUNC_CRYPTO_REALLOC, (void (*)(void))CRYPTO_realloc },
|
|
|
|
{ OSSL_FUNC_CRYPTO_CLEAR_REALLOC, (void (*)(void))CRYPTO_clear_realloc },
|
|
|
|
{ OSSL_FUNC_CRYPTO_SECURE_MALLOC, (void (*)(void))CRYPTO_secure_malloc },
|
|
|
|
{ OSSL_FUNC_CRYPTO_SECURE_ZALLOC, (void (*)(void))CRYPTO_secure_zalloc },
|
|
|
|
{ OSSL_FUNC_CRYPTO_SECURE_FREE, (void (*)(void))CRYPTO_secure_free },
|
|
|
|
{ OSSL_FUNC_CRYPTO_SECURE_CLEAR_FREE,
|
|
|
|
(void (*)(void))CRYPTO_secure_clear_free },
|
|
|
|
{ OSSL_FUNC_CRYPTO_SECURE_ALLOCATED,
|
|
|
|
(void (*)(void))CRYPTO_secure_allocated },
|
|
|
|
{ OSSL_FUNC_OPENSSL_CLEANSE, (void (*)(void))OPENSSL_cleanse },
|
2021-04-21 23:51:41 +08:00
|
|
|
#ifndef FIPS_MODULE
|
2021-04-23 19:08:27 +08:00
|
|
|
{ OSSL_FUNC_PROVIDER_REGISTER_CHILD_CB,
|
|
|
|
(void (*)(void))ossl_provider_register_child_cb },
|
|
|
|
{ OSSL_FUNC_PROVIDER_DEREGISTER_CHILD_CB,
|
|
|
|
(void (*)(void))ossl_provider_deregister_child_cb },
|
|
|
|
{ OSSL_FUNC_PROVIDER_NAME,
|
Pre-declare all core dispatch table functions, and fix the internal ones
When assigning pointers to functions in an OSSL_DISPATCH table, we try
to ensure that those functions are properly defined or declared with
an extra declaration using the corresponding function typedefs that
are defined by include/openssl/core_dispatch.h.
For the core dispatch table, found in crypto/provider_core.c, it seems
we forgot this habit, and thus didn't ensure well enough that the
function pointers that are assigned in the table can actually be used
for those dispatch table indexes.
This change adds all the missing declarations, and compensates for
differences with functions that do the necessary casting, making those
explicit rather than implicit, thereby trying to assure that we know
what we're doing.
One function is not fixed in this change, because there's a controversy,
a clash between the signature of BIO_ctrl() and OSSL_FUNC_BIO_ctrl_fn.
They have different return types.
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18198)
2022-04-28 14:15:53 +08:00
|
|
|
(void (*)(void))core_provider_get0_name },
|
2021-04-23 19:08:27 +08:00
|
|
|
{ OSSL_FUNC_PROVIDER_GET0_PROVIDER_CTX,
|
Pre-declare all core dispatch table functions, and fix the internal ones
When assigning pointers to functions in an OSSL_DISPATCH table, we try
to ensure that those functions are properly defined or declared with
an extra declaration using the corresponding function typedefs that
are defined by include/openssl/core_dispatch.h.
For the core dispatch table, found in crypto/provider_core.c, it seems
we forgot this habit, and thus didn't ensure well enough that the
function pointers that are assigned in the table can actually be used
for those dispatch table indexes.
This change adds all the missing declarations, and compensates for
differences with functions that do the necessary casting, making those
explicit rather than implicit, thereby trying to assure that we know
what we're doing.
One function is not fixed in this change, because there's a controversy,
a clash between the signature of BIO_ctrl() and OSSL_FUNC_BIO_ctrl_fn.
They have different return types.
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18198)
2022-04-28 14:15:53 +08:00
|
|
|
(void (*)(void))core_provider_get0_provider_ctx },
|
2021-04-23 19:08:27 +08:00
|
|
|
{ OSSL_FUNC_PROVIDER_GET0_DISPATCH,
|
Pre-declare all core dispatch table functions, and fix the internal ones
When assigning pointers to functions in an OSSL_DISPATCH table, we try
to ensure that those functions are properly defined or declared with
an extra declaration using the corresponding function typedefs that
are defined by include/openssl/core_dispatch.h.
For the core dispatch table, found in crypto/provider_core.c, it seems
we forgot this habit, and thus didn't ensure well enough that the
function pointers that are assigned in the table can actually be used
for those dispatch table indexes.
This change adds all the missing declarations, and compensates for
differences with functions that do the necessary casting, making those
explicit rather than implicit, thereby trying to assure that we know
what we're doing.
One function is not fixed in this change, because there's a controversy,
a clash between the signature of BIO_ctrl() and OSSL_FUNC_BIO_ctrl_fn.
They have different return types.
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18198)
2022-04-28 14:15:53 +08:00
|
|
|
(void (*)(void))core_provider_get0_dispatch },
|
2021-04-29 23:37:42 +08:00
|
|
|
{ OSSL_FUNC_PROVIDER_UP_REF,
|
Pre-declare all core dispatch table functions, and fix the internal ones
When assigning pointers to functions in an OSSL_DISPATCH table, we try
to ensure that those functions are properly defined or declared with
an extra declaration using the corresponding function typedefs that
are defined by include/openssl/core_dispatch.h.
For the core dispatch table, found in crypto/provider_core.c, it seems
we forgot this habit, and thus didn't ensure well enough that the
function pointers that are assigned in the table can actually be used
for those dispatch table indexes.
This change adds all the missing declarations, and compensates for
differences with functions that do the necessary casting, making those
explicit rather than implicit, thereby trying to assure that we know
what we're doing.
One function is not fixed in this change, because there's a controversy,
a clash between the signature of BIO_ctrl() and OSSL_FUNC_BIO_ctrl_fn.
They have different return types.
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18198)
2022-04-28 14:15:53 +08:00
|
|
|
(void (*)(void))core_provider_up_ref_intern },
|
2021-04-29 23:37:42 +08:00
|
|
|
{ OSSL_FUNC_PROVIDER_FREE,
|
Pre-declare all core dispatch table functions, and fix the internal ones
When assigning pointers to functions in an OSSL_DISPATCH table, we try
to ensure that those functions are properly defined or declared with
an extra declaration using the corresponding function typedefs that
are defined by include/openssl/core_dispatch.h.
For the core dispatch table, found in crypto/provider_core.c, it seems
we forgot this habit, and thus didn't ensure well enough that the
function pointers that are assigned in the table can actually be used
for those dispatch table indexes.
This change adds all the missing declarations, and compensates for
differences with functions that do the necessary casting, making those
explicit rather than implicit, thereby trying to assure that we know
what we're doing.
One function is not fixed in this change, because there's a controversy,
a clash between the signature of BIO_ctrl() and OSSL_FUNC_BIO_ctrl_fn.
They have different return types.
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18198)
2022-04-28 14:15:53 +08:00
|
|
|
(void (*)(void))core_provider_free_intern },
|
2021-06-09 21:05:26 +08:00
|
|
|
{ OSSL_FUNC_CORE_OBJ_ADD_SIGID, (void (*)(void))core_obj_add_sigid },
|
|
|
|
{ OSSL_FUNC_CORE_OBJ_CREATE, (void (*)(void))core_obj_create },
|
2021-04-21 23:51:41 +08:00
|
|
|
#endif
|
2023-04-19 22:08:22 +08:00
|
|
|
OSSL_DISPATCH_END
|
2019-01-20 20:14:58 +08:00
|
|
|
};
|
|
|
|
static const OSSL_DISPATCH *core_dispatch = core_dispatch_;
|