| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2020-04-23 20:55:52 +08:00
										 |  |  |  * Copyright 2019-2020 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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #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"
 | 
					
						
							| 
									
										
										
										
											2020-08-09 16:06:52 +08:00
										 |  |  | #include "crypto/evp.h" /* evp_method_store_flush */
 | 
					
						
							| 
									
										
										
										
											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"
 | 
					
						
							| 
									
										
										
										
											2019-03-18 01:06:59 +08:00
										 |  |  | #include "provider_local.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>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-03-18 01:06:59 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | static OSSL_PROVIDER *provider_new(const char *name, | 
					
						
							|  |  |  |                                    OSSL_provider_init_fn *init_function); | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*-
 | 
					
						
							|  |  |  |  * Provider Object structure | 
					
						
							|  |  |  |  * ========================= | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-21 15:44:06 +08:00
										 |  |  | typedef struct { | 
					
						
							|  |  |  |     char *name; | 
					
						
							|  |  |  |     char *value; | 
					
						
							|  |  |  | } INFOPAIR; | 
					
						
							|  |  |  | DEFINE_STACK_OF(INFOPAIR) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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-05-23 22:39:18 +08:00
										 |  |  |     unsigned int flag_fallback:1; /* Can be used as fallback */ | 
					
						
							|  |  |  |     unsigned int flag_activated_as_fallback:1; | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* OpenSSL library side data */ | 
					
						
							|  |  |  |     CRYPTO_REF_COUNT refcnt; | 
					
						
							| 
									
										
										
										
											2019-03-14 14:59:28 +08:00
										 |  |  |     CRYPTO_RWLOCK *refcnt_lock;  /* For the ref counter */ | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											2019-06-14 16:19:56 +08:00
										 |  |  |     OPENSSL_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; | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-30 19:41:51 +08:00
										 |  |  |     /* Provider side data */ | 
					
						
							|  |  |  |     void *provctx; | 
					
						
							| 
									
										
										
										
											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 { | 
					
						
							|  |  |  |     STACK_OF(OSSL_PROVIDER) *providers; | 
					
						
							|  |  |  |     CRYPTO_RWLOCK *lock; | 
					
						
							| 
									
										
										
										
											2020-02-25 12:29:30 +08:00
										 |  |  |     char *default_path; | 
					
						
							| 
									
										
										
										
											2019-03-14 17:53:27 +08:00
										 |  |  |     unsigned int use_fallbacks:1; | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-23 22:39:18 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * provider_deactivate_free() is a wrapper around ossl_provider_free() | 
					
						
							|  |  |  |  * that also makes sure that activated fallback providers are deactivated. | 
					
						
							|  |  |  |  * This is simply done by freeing them an extra time, to compensate for the | 
					
						
							|  |  |  |  * refcount that provider_activate_fallbacks() gives them. | 
					
						
							|  |  |  |  * 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) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int extra_free = (prov->flag_initialized | 
					
						
							|  |  |  |                       && prov->flag_activated_as_fallback); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (extra_free) | 
					
						
							|  |  |  |         ossl_provider_free(prov); | 
					
						
							|  |  |  |     ossl_provider_free(prov); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  | static void provider_store_free(void *vstore) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     struct provider_store_st *store = vstore; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (store == NULL) | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  |     CRYPTO_THREAD_lock_free(store->lock); | 
					
						
							|  |  |  |     OPENSSL_free(store); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-01 18:02:43 +08:00
										 |  |  | static void *provider_store_new(OPENSSL_CTX *ctx) | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     struct provider_store_st *store = OPENSSL_zalloc(sizeof(*store)); | 
					
						
							| 
									
										
										
										
											2019-03-18 01:06:59 +08:00
										 |  |  |     const struct predefined_providers_st *p = NULL; | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (store == NULL | 
					
						
							|  |  |  |         || (store->providers = sk_OSSL_PROVIDER_new(ossl_provider_cmp)) == NULL | 
					
						
							|  |  |  |         || (store->lock = CRYPTO_THREAD_lock_new()) == NULL) { | 
					
						
							|  |  |  |         provider_store_free(store); | 
					
						
							| 
									
										
										
										
											2019-03-14 17:53:27 +08:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-03-14 17:53:27 +08:00
										 |  |  |     store->use_fallbacks = 1; | 
					
						
							| 
									
										
										
										
											2019-03-18 01:06:59 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     for (p = predefined_providers; p->name != NULL; p++) { | 
					
						
							|  |  |  |         OSSL_PROVIDER *prov = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * We use the internal constructor directly here, | 
					
						
							|  |  |  |          * otherwise we get a call loop | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         prov = provider_new(p->name, p->init); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (prov == NULL | 
					
						
							|  |  |  |             || sk_OSSL_PROVIDER_push(store->providers, prov) == 0) { | 
					
						
							|  |  |  |             ossl_provider_free(prov); | 
					
						
							|  |  |  |             provider_store_free(store); | 
					
						
							|  |  |  |             CRYPTOerr(CRYPTO_F_PROVIDER_STORE_NEW, ERR_R_INTERNAL_ERROR); | 
					
						
							|  |  |  |             return NULL; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-06-14 16:19:56 +08:00
										 |  |  |         prov->libctx = ctx; | 
					
						
							| 
									
										
										
										
											2019-03-18 01:06:59 +08:00
										 |  |  |         prov->store = store; | 
					
						
							| 
									
										
										
										
											2020-04-14 04:34:56 +08:00
										 |  |  | #ifndef FIPS_MODULE
 | 
					
						
							| 
									
										
										
										
											2019-06-18 17:18:31 +08:00
										 |  |  |         prov->error_lib = ERR_get_next_error_library(); | 
					
						
							| 
									
										
										
										
											2019-06-18 17:39:13 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-03-18 01:06:59 +08:00
										 |  |  |         if(p->is_fallback) | 
					
						
							|  |  |  |             ossl_provider_set_fallback(prov); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  |     return store; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const OPENSSL_CTX_METHOD provider_store_method = { | 
					
						
							|  |  |  |     provider_store_new, | 
					
						
							|  |  |  |     provider_store_free, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct provider_store_st *get_provider_store(OPENSSL_CTX *libctx) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     struct provider_store_st *store = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-01 18:02:43 +08:00
										 |  |  |     store = openssl_ctx_get_data(libctx, OPENSSL_CTX_PROVIDER_STORE_INDEX, | 
					
						
							|  |  |  |                                  &provider_store_method); | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  |     if (store == NULL) | 
					
						
							|  |  |  |         CRYPTOerr(CRYPTO_F_GET_PROVIDER_STORE, ERR_R_INTERNAL_ERROR); | 
					
						
							|  |  |  |     return store; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-13 08:02:01 +08:00
										 |  |  | int ossl_provider_disable_fallback_loading(OPENSSL_CTX *libctx) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     struct provider_store_st *store; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((store = get_provider_store(libctx)) != NULL) { | 
					
						
							|  |  |  |         store->use_fallbacks = 0; | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-30 23:42:53 +08:00
										 |  |  | OSSL_PROVIDER *ossl_provider_find(OPENSSL_CTX *libctx, const char *name, | 
					
						
							|  |  |  |                                   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; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-14 04:34:56 +08:00
										 |  |  | #ifndef FIPS_MODULE
 | 
					
						
							| 
									
										
										
										
											2019-07-30 23:42:53 +08:00
										 |  |  |         /*
 | 
					
						
							|  |  |  |          * Make sure any providers are loaded from config before we try to find | 
					
						
							|  |  |  |          * them. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         if (!noconfig) | 
					
						
							|  |  |  |             OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CONFIG, NULL); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  |         tmpl.name = (char *)name; | 
					
						
							|  |  |  |         CRYPTO_THREAD_write_lock(store->lock); | 
					
						
							|  |  |  |         if ((i = sk_OSSL_PROVIDER_find(store->providers, &tmpl)) == -1 | 
					
						
							|  |  |  |             || (prov = sk_OSSL_PROVIDER_value(store->providers, i)) == NULL | 
					
						
							| 
									
										
										
										
											2019-07-02 20:57:36 +08:00
										 |  |  |             || !ossl_provider_up_ref(prov)) | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  |             prov = NULL; | 
					
						
							|  |  |  |         CRYPTO_THREAD_unlock(store->lock); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return prov; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-18 01:06:59 +08:00
										 |  |  | /*-
 | 
					
						
							|  |  |  |  * Provider Object methods | 
					
						
							|  |  |  |  * ======================= | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static OSSL_PROVIDER *provider_new(const char *name, | 
					
						
							|  |  |  |                                    OSSL_provider_init_fn *init_function) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     OSSL_PROVIDER *prov = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((prov = OPENSSL_zalloc(sizeof(*prov))) == NULL | 
					
						
							|  |  |  | #ifndef HAVE_ATOMICS
 | 
					
						
							|  |  |  |         || (prov->refcnt_lock = CRYPTO_THREAD_lock_new()) == NULL | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-07-02 20:57:36 +08:00
										 |  |  |         || !ossl_provider_up_ref(prov) /* +1 One reference to be returned */ | 
					
						
							| 
									
										
										
										
											2019-03-18 01:06:59 +08:00
										 |  |  |         || (prov->name = OPENSSL_strdup(name)) == NULL) { | 
					
						
							|  |  |  |         ossl_provider_free(prov); | 
					
						
							|  |  |  |         CRYPTOerr(CRYPTO_F_PROVIDER_NEW, ERR_R_MALLOC_FAILURE); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     prov->init_function = init_function; | 
					
						
							|  |  |  |     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; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-04 09:32:58 +08:00
										 |  |  |     if (CRYPTO_UP_REF(&prov->refcnt, &ref, prov->refcnt_lock) <= 0) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-03-18 01:06:59 +08:00
										 |  |  |     return ref; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  | OSSL_PROVIDER *ossl_provider_new(OPENSSL_CTX *libctx, const char *name, | 
					
						
							| 
									
										
										
										
											2019-07-30 23:42:53 +08:00
										 |  |  |                                  OSSL_provider_init_fn *init_function, | 
					
						
							|  |  |  |                                  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) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-30 23:42:53 +08:00
										 |  |  |     if ((prov = ossl_provider_find(libctx, name, | 
					
						
							|  |  |  |                                    noconfig)) != NULL) { /* refcount +1 */ | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  |         ossl_provider_free(prov); /* refcount -1 */ | 
					
						
							| 
									
										
										
										
											2019-07-24 19:37:42 +08:00
										 |  |  |         ERR_raise_data(ERR_LIB_CRYPTO, CRYPTO_R_PROVIDER_ALREADY_EXISTS, NULL, | 
					
						
							|  |  |  |                        "name=%s", name); | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-18 01:06:59 +08:00
										 |  |  |     /* provider_new() generates an error, so no need here */ | 
					
						
							|  |  |  |     if ((prov = provider_new(name, init_function)) == NULL) | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     CRYPTO_THREAD_write_lock(store->lock); | 
					
						
							| 
									
										
										
										
											2019-07-02 20:57:36 +08:00
										 |  |  |     if (!ossl_provider_up_ref(prov)) { /* +1 One reference for the store */ | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  |         ossl_provider_free(prov); /* -1 Reference that was to be returned */ | 
					
						
							|  |  |  |         prov = NULL; | 
					
						
							|  |  |  |     } else if (sk_OSSL_PROVIDER_push(store->providers, prov) == 0) { | 
					
						
							|  |  |  |         ossl_provider_free(prov); /* -1 Store reference */ | 
					
						
							|  |  |  |         ossl_provider_free(prov); /* -1 Reference that was to be returned */ | 
					
						
							|  |  |  |         prov = NULL; | 
					
						
							| 
									
										
										
										
											2019-03-14 17:53:27 +08:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2019-06-14 16:19:56 +08:00
										 |  |  |         prov->libctx = libctx; | 
					
						
							| 
									
										
										
										
											2019-03-14 17:53:27 +08:00
										 |  |  |         prov->store = store; | 
					
						
							| 
									
										
										
										
											2020-04-14 04:34:56 +08:00
										 |  |  | #ifndef FIPS_MODULE
 | 
					
						
							| 
									
										
										
										
											2019-06-18 17:18:31 +08:00
										 |  |  |         prov->error_lib = ERR_get_next_error_library(); | 
					
						
							| 
									
										
										
										
											2019-06-18 17:39:13 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     CRYPTO_THREAD_unlock(store->lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (prov == NULL) | 
					
						
							|  |  |  |         CRYPTOerr(CRYPTO_F_OSSL_PROVIDER_NEW, ERR_R_MALLOC_FAILURE); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * At this point, the provider is only partially "loaded".  To be | 
					
						
							|  |  |  |      * fully "loaded", ossl_provider_activate() must also be called. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return prov; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-21 15:44:06 +08:00
										 |  |  | static void free_infopair(INFOPAIR *pair) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     OPENSSL_free(pair->name); | 
					
						
							|  |  |  |     OPENSSL_free(pair->value); | 
					
						
							|  |  |  |     OPENSSL_free(pair); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  | void ossl_provider_free(OSSL_PROVIDER *prov) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (prov != NULL) { | 
					
						
							|  |  |  |         int ref = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-14 14:59:28 +08:00
										 |  |  |         CRYPTO_DOWN_REF(&prov->refcnt, &ref, prov->refcnt_lock); | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							| 
									
										
										
										
											2019-03-14 17:53:27 +08:00
										 |  |  |          * When the refcount drops below two, the store is the only | 
					
						
							|  |  |  |          * possible reference, or it has already been taken away from | 
					
						
							|  |  |  |          * the store (this may happen if a provider was activated | 
					
						
							|  |  |  |          * because it's a fallback, but isn't currently used) | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  |          * When that happens, the provider is inactivated. | 
					
						
							|  |  |  |          */ | 
					
						
							| 
									
										
										
										
											2019-03-14 17:53:27 +08:00
										 |  |  |         if (ref < 2 && prov->flag_initialized) { | 
					
						
							| 
									
										
										
										
											2020-04-14 04:34:56 +08:00
										 |  |  | #ifndef FIPS_MODULE
 | 
					
						
							| 
									
										
										
										
											2019-06-19 01:37:38 +08:00
										 |  |  |             ossl_init_thread_deregister(prov); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  |             if (prov->teardown != NULL) | 
					
						
							| 
									
										
										
										
											2019-04-30 19:41:51 +08:00
										 |  |  |                 prov->teardown(prov->provctx); | 
					
						
							| 
									
										
										
										
											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 (prov->error_strings != NULL) { | 
					
						
							|  |  |  |                 ERR_unload_strings(prov->error_lib, prov->error_strings); | 
					
						
							|  |  |  |                 OPENSSL_free(prov->error_strings); | 
					
						
							|  |  |  |                 prov->error_strings = NULL; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | # endif
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2020-05-15 21:56:05 +08:00
										 |  |  |             OPENSSL_free(prov->operation_bits); | 
					
						
							|  |  |  |             prov->operation_bits = NULL; | 
					
						
							|  |  |  |             prov->operation_bits_sz = 0; | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  |             prov->flag_initialized = 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * When the refcount drops to zero, it has been taken out of | 
					
						
							|  |  |  |          * the store.  All we have to do here is clean it out. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         if (ref == 0) { | 
					
						
							| 
									
										
										
										
											2020-04-14 04:34:56 +08:00
										 |  |  | #ifndef FIPS_MODULE
 | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							|  |  |  |             sk_INFOPAIR_pop_free(prov->parameters, free_infopair); | 
					
						
							| 
									
										
										
										
											2019-03-14 14:59:28 +08:00
										 |  |  | #ifndef HAVE_ATOMICS
 | 
					
						
							|  |  |  |             CRYPTO_THREAD_lock_free(prov->refcnt_lock); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  |             OPENSSL_free(prov); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							|  |  |  |     if (module_path == NULL) | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     if ((prov->path = OPENSSL_strdup(module_path)) != NULL) | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     CRYPTOerr(CRYPTO_F_OSSL_PROVIDER_SET_MODULE_PATH, ERR_R_MALLOC_FAILURE); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int ossl_provider_add_parameter(OSSL_PROVIDER *prov, | 
					
						
							|  |  |  |                                 const char *name, const char *value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     INFOPAIR *pair = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((pair = OPENSSL_zalloc(sizeof(*pair))) != NULL | 
					
						
							|  |  |  |         && (prov->parameters != NULL | 
					
						
							|  |  |  |             || (prov->parameters = sk_INFOPAIR_new_null()) != NULL) | 
					
						
							|  |  |  |         && (pair->name = OPENSSL_strdup(name)) != NULL | 
					
						
							|  |  |  |         && (pair->value = OPENSSL_strdup(value)) != NULL | 
					
						
							|  |  |  |         && sk_INFOPAIR_push(prov->parameters, pair) > 0) | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (pair != NULL) { | 
					
						
							|  |  |  |         OPENSSL_free(pair->name); | 
					
						
							|  |  |  |         OPENSSL_free(pair->value); | 
					
						
							|  |  |  |         OPENSSL_free(pair); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     CRYPTOerr(CRYPTO_F_OSSL_PROVIDER_ADD_PARAMETER, ERR_R_MALLOC_FAILURE); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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-02-25 12:29:30 +08:00
										 |  |  | int OSSL_PROVIDER_set_default_search_path(OPENSSL_CTX *libctx, const char *path) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     struct provider_store_st *store; | 
					
						
							|  |  |  |     char *p = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (path != NULL) { | 
					
						
							|  |  |  |         p = OPENSSL_strdup(path); | 
					
						
							|  |  |  |         if (p == NULL) { | 
					
						
							|  |  |  |             CRYPTOerr(0, ERR_R_MALLOC_FAILURE); | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if ((store = get_provider_store(libctx)) != NULL | 
					
						
							|  |  |  |             && CRYPTO_THREAD_write_lock(store->lock)) { | 
					
						
							|  |  |  |         OPENSSL_free(store->default_path); | 
					
						
							|  |  |  |         store->default_path = p; | 
					
						
							|  |  |  |         CRYPTO_THREAD_unlock(store->lock); | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     OPENSSL_free(p); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2019-06-14 16:19:56 +08:00
										 |  |  | static int provider_activate(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
 | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (prov->flag_initialized) | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * 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
 | 
					
						
							| 
									
										
										
										
											2019-04-10 22:01:40 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | #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; | 
					
						
							|  |  |  |             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 */ | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-25 12:29:30 +08:00
										 |  |  |             if ((store = get_provider_store(prov->libctx)) == NULL | 
					
						
							|  |  |  |                     || !CRYPTO_THREAD_read_lock(store->lock)) | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             load_dir = store->default_path; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             if (load_dir == NULL) { | 
					
						
							|  |  |  |                 load_dir = ossl_safe_getenv("OPENSSL_MODULES"); | 
					
						
							|  |  |  |                 if (load_dir == NULL) | 
					
						
							|  |  |  |                     load_dir = MODULESDIR; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							| 
									
										
										
										
											2020-02-25 12:29:30 +08:00
										 |  |  |             CRYPTO_THREAD_unlock(store->lock); | 
					
						
							| 
									
										
										
										
											2019-03-21 15:44:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             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); | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (prov->module != NULL) | 
					
						
							|  |  |  |             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
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-14 16:19:56 +08:00
										 |  |  |     /* Call the initialise function for the provider. */ | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  |     if (prov->init_function == NULL | 
					
						
							| 
									
										
										
										
											2020-05-06 19:29:57 +08:00
										 |  |  |         || !prov->init_function((OSSL_CORE_HANDLE *)prov, core_dispatch, | 
					
						
							|  |  |  |                                 &provider_dispatch, &tmp_provctx)) { | 
					
						
							| 
									
										
										
										
											2019-07-24 19:37:42 +08:00
										 |  |  |         ERR_raise_data(ERR_LIB_CRYPTO, ERR_R_INIT_FAIL, NULL, | 
					
						
							|  |  |  |                        "name=%s", prov->name); | 
					
						
							| 
									
										
										
										
											2020-04-14 04:34:56 +08:00
										 |  |  | #ifndef FIPS_MODULE
 | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  |         DSO_free(prov->module); | 
					
						
							|  |  |  |         prov->module = NULL; | 
					
						
							| 
									
										
										
										
											2019-04-10 22:01:40 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-05-11 17:10:41 +08:00
										 |  |  |     prov->provctx = tmp_provctx; | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     for (; provider_dispatch->function_id != 0; provider_dispatch++) { | 
					
						
							|  |  |  |         switch (provider_dispatch->function_id) { | 
					
						
							|  |  |  |         case OSSL_FUNC_PROVIDER_TEARDOWN: | 
					
						
							|  |  |  |             prov->teardown = | 
					
						
							| 
									
										
										
										
											2020-06-21 07:19:16 +08:00
										 |  |  |                 OSSL_FUNC_provider_teardown(provider_dispatch); | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2019-08-15 02:17:39 +08:00
										 |  |  |         case OSSL_FUNC_PROVIDER_GETTABLE_PARAMS: | 
					
						
							|  |  |  |             prov->gettable_params = | 
					
						
							| 
									
										
										
										
											2020-06-21 07:19:16 +08:00
										 |  |  |                 OSSL_FUNC_provider_gettable_params(provider_dispatch); | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  |             break; | 
					
						
							|  |  |  |         case OSSL_FUNC_PROVIDER_GET_PARAMS: | 
					
						
							|  |  |  |             prov->get_params = | 
					
						
							| 
									
										
										
										
											2020-06-21 07:19:16 +08:00
										 |  |  |                 OSSL_FUNC_provider_get_params(provider_dispatch); | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2020-08-09 16:06:52 +08:00
										 |  |  |         case OSSL_FUNC_PROVIDER_SELF_TEST: | 
					
						
							|  |  |  |             prov->self_test = | 
					
						
							|  |  |  |                 OSSL_FUNC_provider_self_test(provider_dispatch); | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2020-05-18 22:13:09 +08:00
										 |  |  |         case OSSL_FUNC_PROVIDER_GET_CAPABILITIES: | 
					
						
							|  |  |  |             prov->get_capabilities = | 
					
						
							| 
									
										
										
										
											2020-06-21 07:19:16 +08:00
										 |  |  |                 OSSL_FUNC_provider_get_capabilities(provider_dispatch); | 
					
						
							| 
									
										
										
										
											2020-05-18 22:13:09 +08:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2019-02-25 08:57:28 +08:00
										 |  |  |         case OSSL_FUNC_PROVIDER_QUERY_OPERATION: | 
					
						
							|  |  |  |             prov->query_operation = | 
					
						
							| 
									
										
										
										
											2020-06-21 07:19:16 +08:00
										 |  |  |                 OSSL_FUNC_provider_query_operation(provider_dispatch); | 
					
						
							| 
									
										
										
										
											2019-02-25 08:57:28 +08:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											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
										 |  |  |         case OSSL_FUNC_PROVIDER_GET_REASON_STRINGS: | 
					
						
							|  |  |  |             p_get_reason_strings = | 
					
						
							| 
									
										
										
										
											2020-06-21 07:19:16 +08:00
										 |  |  |                 OSSL_FUNC_provider_get_reason_strings(provider_dispatch); | 
					
						
							| 
									
										
										
										
											2019-06-18 17:18:31 +08:00
										 |  |  |             break; | 
					
						
							| 
									
										
										
										
											2019-06-18 17:39:13 +08:00
										 |  |  | # endif
 | 
					
						
							| 
									
										
										
										
											2019-06-18 17:18:31 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #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) | 
					
						
							|  |  |  |                 return 0; | 
					
						
							|  |  |  |             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) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * 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; | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-14 17:53:27 +08:00
										 |  |  | int ossl_provider_activate(OSSL_PROVIDER *prov) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-06-14 16:19:56 +08:00
										 |  |  |     if (provider_activate(prov)) { | 
					
						
							| 
									
										
										
										
											2019-03-14 17:53:27 +08:00
										 |  |  |         CRYPTO_THREAD_write_lock(prov->store->lock); | 
					
						
							|  |  |  |         prov->store->use_fallbacks = 0; | 
					
						
							|  |  |  |         CRYPTO_THREAD_unlock(prov->store->lock); | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-30 19:41:51 +08:00
										 |  |  | void *ossl_provider_ctx(const OSSL_PROVIDER *prov) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return prov->provctx; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-14 17:53:27 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | static int provider_forall_loaded(struct provider_store_st *store, | 
					
						
							|  |  |  |                                   int *found_activated, | 
					
						
							|  |  |  |                                   int (*cb)(OSSL_PROVIDER *provider, | 
					
						
							|  |  |  |                                             void *cbdata), | 
					
						
							|  |  |  |                                   void *cbdata) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     int ret = 1; | 
					
						
							| 
									
										
										
										
											2019-07-30 23:42:53 +08:00
										 |  |  |     int num_provs; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     num_provs = sk_OSSL_PROVIDER_num(store->providers); | 
					
						
							| 
									
										
										
										
											2019-03-14 17:53:27 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (found_activated != NULL) | 
					
						
							|  |  |  |         *found_activated = 0; | 
					
						
							|  |  |  |     for (i = 0; i < num_provs; i++) { | 
					
						
							|  |  |  |         OSSL_PROVIDER *prov = | 
					
						
							|  |  |  |             sk_OSSL_PROVIDER_value(store->providers, i); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (prov->flag_initialized) { | 
					
						
							|  |  |  |             if (found_activated != NULL) | 
					
						
							|  |  |  |                 *found_activated = 1; | 
					
						
							|  |  |  |             if (!(ret = cb(prov, cbdata))) | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void provider_activate_fallbacks(struct provider_store_st *store) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (store->use_fallbacks) { | 
					
						
							|  |  |  |         int num_provs = sk_OSSL_PROVIDER_num(store->providers); | 
					
						
							|  |  |  |         int activated_fallback_count = 0; | 
					
						
							|  |  |  |         int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for (i = 0; i < num_provs; i++) { | 
					
						
							|  |  |  |             OSSL_PROVIDER *prov = sk_OSSL_PROVIDER_value(store->providers, i); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             /*
 | 
					
						
							| 
									
										
										
										
											2020-05-23 22:39:18 +08:00
										 |  |  |              * Activated fallback providers get an extra refcount, to | 
					
						
							|  |  |  |              * simulate a regular load. | 
					
						
							|  |  |  |              * Note that we don't care if the activation succeeds or not, | 
					
						
							|  |  |  |              * other than to maintain a correct refcount.  If the activation | 
					
						
							|  |  |  |              * doesn't succeed, then any future attempt to use the fallback | 
					
						
							|  |  |  |              * provider will fail anyway. | 
					
						
							| 
									
										
										
										
											2019-07-17 17:29:04 +08:00
										 |  |  |              */ | 
					
						
							|  |  |  |             if (prov->flag_fallback) { | 
					
						
							| 
									
										
										
										
											2020-05-23 22:39:18 +08:00
										 |  |  |                 if (ossl_provider_up_ref(prov)) { | 
					
						
							|  |  |  |                     if (!provider_activate(prov)) { | 
					
						
							|  |  |  |                         ossl_provider_free(prov); | 
					
						
							|  |  |  |                     } else { | 
					
						
							|  |  |  |                         prov->flag_activated_as_fallback = 1; | 
					
						
							|  |  |  |                         activated_fallback_count++; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
										
											2019-07-17 17:29:04 +08:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * We assume that all fallbacks have been added to the store before | 
					
						
							|  |  |  |          * any fallback is activated. | 
					
						
							|  |  |  |          * TODO: We may have to reconsider this, IF we find ourselves adding | 
					
						
							|  |  |  |          * fallbacks after any previous fallback has been activated. | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         if (activated_fallback_count > 0) | 
					
						
							|  |  |  |             store->use_fallbacks = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-25 08:53:34 +08:00
										 |  |  | int ossl_provider_forall_loaded(OPENSSL_CTX *ctx, | 
					
						
							|  |  |  |                                 int (*cb)(OSSL_PROVIDER *provider, | 
					
						
							|  |  |  |                                           void *cbdata), | 
					
						
							|  |  |  |                                 void *cbdata) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int ret = 1; | 
					
						
							|  |  |  |     struct provider_store_st *store = get_provider_store(ctx); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-14 04:34:56 +08:00
										 |  |  | #ifndef FIPS_MODULE
 | 
					
						
							| 
									
										
										
										
											2019-08-07 17:46:26 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * Make sure any providers are loaded from config before we try to use | 
					
						
							|  |  |  |      * them. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CONFIG, NULL); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-25 08:53:34 +08:00
										 |  |  |     if (store != NULL) { | 
					
						
							|  |  |  |         CRYPTO_THREAD_read_lock(store->lock); | 
					
						
							| 
									
										
										
										
											2019-07-17 17:29:04 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         provider_activate_fallbacks(store); | 
					
						
							| 
									
										
										
										
											2019-02-25 08:53:34 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-14 17:53:27 +08:00
										 |  |  |         /*
 | 
					
						
							| 
									
										
										
										
											2019-07-17 17:29:04 +08:00
										 |  |  |          * Now, we sweep through all providers | 
					
						
							| 
									
										
										
										
											2019-03-14 17:53:27 +08:00
										 |  |  |          */ | 
					
						
							| 
									
										
										
										
											2019-07-17 17:29:04 +08:00
										 |  |  |         ret = provider_forall_loaded(store, NULL, cb, cbdata); | 
					
						
							| 
									
										
										
										
											2019-03-14 17:53:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-25 08:53:34 +08:00
										 |  |  |         CRYPTO_THREAD_unlock(store->lock); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-17 17:29:04 +08:00
										 |  |  | int ossl_provider_available(OSSL_PROVIDER *prov) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (prov != NULL) { | 
					
						
							|  |  |  |         CRYPTO_THREAD_read_lock(prov->store->lock); | 
					
						
							|  |  |  |         provider_activate_fallbacks(prov->store); | 
					
						
							|  |  |  |         CRYPTO_THREAD_unlock(prov->store->lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return prov->flag_initialized; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-14 17:53:27 +08:00
										 |  |  | /* Setters of Provider Object data */ | 
					
						
							|  |  |  | int ossl_provider_set_fallback(OSSL_PROVIDER *prov) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (prov == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     prov->flag_fallback = 1; | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-07 18:39:58 +08:00
										 |  |  | OPENSSL_CTX *ossl_provider_library_context(const OSSL_PROVIDER *prov) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-08-29 11:02:54 +08:00
										 |  |  |     /* TODO(3.0) just: return prov->libctx; */ | 
					
						
							|  |  |  |     return prov != NULL ? prov->libctx : NULL; | 
					
						
							| 
									
										
										
										
											2019-05-07 18:39:58 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  | /* Wrappers around calls to the provider */ | 
					
						
							|  |  |  | void ossl_provider_teardown(const OSSL_PROVIDER *prov) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (prov->teardown != NULL) | 
					
						
							| 
									
										
										
										
											2019-04-30 19:41:51 +08:00
										 |  |  |         prov->teardown(prov->provctx); | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-08-15 02:17:39 +08:00
										 |  |  |     return prov->gettable_params == NULL | 
					
						
							|  |  |  |         ? NULL : prov->gettable_params(prov->provctx); | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-04-30 19:41:51 +08:00
										 |  |  |     return prov->get_params == NULL | 
					
						
							|  |  |  |         ? 0 : prov->get_params(prov->provctx, params); | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-09 16:06:52 +08:00
										 |  |  | int ossl_provider_self_test(const OSSL_PROVIDER *prov) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (prov->self_test == NULL) | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     ret = prov->self_test(prov->provctx); | 
					
						
							|  |  |  |     if (ret == 0) | 
					
						
							|  |  |  |         evp_method_store_flush(ossl_provider_library_context(prov)); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return prov->get_capabilities == NULL | 
					
						
							| 
									
										
										
										
											2020-06-27 03:40:11 +08:00
										 |  |  |         ? 1 : prov->get_capabilities(prov->provctx, capability, cb, arg); | 
					
						
							| 
									
										
										
										
											2020-05-18 22:13:09 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2019-04-30 19:41:51 +08:00
										 |  |  |     return prov->query_operation(prov->provctx, operation_id, no_cache); | 
					
						
							| 
									
										
										
										
											2019-02-25 08:57:28 +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; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (provider->operation_bits_sz <= byte) { | 
					
						
							|  |  |  |         provider->operation_bits = OPENSSL_realloc(provider->operation_bits, | 
					
						
							|  |  |  |                                                    byte + 1); | 
					
						
							|  |  |  |         if (provider->operation_bits == NULL) { | 
					
						
							|  |  |  |             ERR_raise(ERR_LIB_CRYPTO, ERR_R_MALLOC_FAILURE); | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         memset(provider->operation_bits + provider->operation_bits_sz, | 
					
						
							|  |  |  |                '\0', byte + 1 - provider->operation_bits_sz); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     provider->operation_bits[byte] |= bit; | 
					
						
							|  |  |  |     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; | 
					
						
							|  |  |  |     if (provider->operation_bits_sz > byte) | 
					
						
							|  |  |  |         *result = ((provider->operation_bits[byte] & bit) != 0); | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | static OSSL_FUNC_core_thread_start_fn core_thread_start; | 
					
						
							|  |  |  | static OSSL_FUNC_core_get_library_context_fn core_get_libctx; | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return (OPENSSL_CORE_CTX *)ossl_provider_library_context(prov); | 
					
						
							| 
									
										
										
										
											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, | 
					
						
							| 
									
										
										
										
											2019-05-27 23:31:27 +08:00
										 |  |  |                              OSSL_thread_stop_handler_fn handfn) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											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-19 01:37:38 +08:00
										 |  |  |     return ossl_init_thread_start(prov, prov->provctx, 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
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2020-05-06 19:29:57 +08:00
										 |  |  |  * TODO(3.0) These error functions should use |handle| to select the proper | 
					
						
							| 
									
										
										
										
											2019-07-24 19:37:42 +08:00
										 |  |  |  * library context to report in the correct error stack, at least if error | 
					
						
							|  |  |  |  * 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(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											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
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Functions provided by the core.  Blank line separates "families" of related | 
					
						
							|  |  |  |  * functions. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											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 }, | 
					
						
							| 
									
										
										
										
											2019-06-14 16:19:56 +08:00
										 |  |  |     { OSSL_FUNC_CORE_GET_LIBRARY_CONTEXT, (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 }, | 
					
						
							| 
									
										
										
										
											2019-08-19 07:18:33 +08:00
										 |  |  |     { OSSL_FUNC_BIO_NEW_FILE, (void (*)(void))BIO_new_file }, | 
					
						
							|  |  |  |     { OSSL_FUNC_BIO_NEW_MEMBUF, (void (*)(void))BIO_new_mem_buf }, | 
					
						
							| 
									
										
										
										
											2019-09-15 17:55:10 +08:00
										 |  |  |     { OSSL_FUNC_BIO_READ_EX, (void (*)(void))BIO_read_ex }, | 
					
						
							| 
									
										
										
										
											2020-05-06 19:29:57 +08:00
										 |  |  |     { OSSL_FUNC_BIO_WRITE_EX, (void (*)(void))BIO_write_ex }, | 
					
						
							| 
									
										
										
										
											2020-07-10 00:55:44 +08:00
										 |  |  |     { OSSL_FUNC_BIO_GETS, (void (*)(void))BIO_gets }, | 
					
						
							|  |  |  |     { OSSL_FUNC_BIO_PUTS, (void (*)(void))BIO_puts }, | 
					
						
							| 
									
										
										
										
											2019-08-19 07:18:33 +08:00
										 |  |  |     { OSSL_FUNC_BIO_FREE, (void (*)(void))BIO_free }, | 
					
						
							| 
									
										
										
										
											2019-11-18 08:50:18 +08:00
										 |  |  |     { OSSL_FUNC_BIO_VPRINTF, (void (*)(void))BIO_vprintf }, | 
					
						
							| 
									
										
										
										
											2020-03-15 15:38:00 +08:00
										 |  |  |     { OSSL_FUNC_BIO_VSNPRINTF, (void (*)(void))BIO_vsnprintf }, | 
					
						
							| 
									
										
										
										
											2020-01-15 08:48:01 +08:00
										 |  |  |     { OSSL_FUNC_SELF_TEST_CB, (void (*)(void))OSSL_SELF_TEST_get_callback }, | 
					
						
							| 
									
										
										
										
											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 }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-20 20:14:58 +08:00
										 |  |  |     { 0, NULL } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | static const OSSL_DISPATCH *core_dispatch = core_dispatch_; |