| 
									
										
										
										
											2019-02-07 00:42:50 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2024-06-25 17:58:49 +08:00
										 |  |  |  * Copyright 2019-2024 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2019-02-07 00:42:50 +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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-28 06:45:33 +08:00
										 |  |  | #include "crypto/cryptlib.h"
 | 
					
						
							| 
									
										
										
										
											2020-03-20 18:25:39 +08:00
										 |  |  | #include <openssl/conf.h>
 | 
					
						
							| 
									
										
										
										
											2019-02-07 00:42:50 +08:00
										 |  |  | #include "internal/thread_once.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-14 22:00:35 +08:00
										 |  |  | #include "internal/property.h"
 | 
					
						
							| 
									
										
										
										
											2024-05-16 12:33:55 +08:00
										 |  |  | #include "internal/cryptlib.h"
 | 
					
						
							| 
									
										
										
										
											2021-04-07 09:32:59 +08:00
										 |  |  | #include "internal/core.h"
 | 
					
						
							| 
									
										
										
										
											2021-04-28 02:56:39 +08:00
										 |  |  | #include "internal/bio.h"
 | 
					
						
							| 
									
										
										
										
											2021-04-21 23:51:41 +08:00
										 |  |  | #include "internal/provider.h"
 | 
					
						
							| 
									
										
										
										
											2023-08-14 18:38:44 +08:00
										 |  |  | #include "crypto/decoder.h"
 | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  | #include "crypto/context.h"
 | 
					
						
							| 
									
										
										
										
											2019-02-07 00:42:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  | struct ossl_lib_ctx_st { | 
					
						
							| 
									
										
										
										
											2024-09-05 08:24:07 +08:00
										 |  |  |     CRYPTO_RWLOCK *lock; | 
					
						
							| 
									
										
										
										
											2019-05-01 18:02:43 +08:00
										 |  |  |     OSSL_EX_DATA_GLOBAL global; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  |     void *property_string_data; | 
					
						
							|  |  |  |     void *evp_method_store; | 
					
						
							|  |  |  |     void *provider_store; | 
					
						
							|  |  |  |     void *namemap; | 
					
						
							|  |  |  |     void *property_defns; | 
					
						
							|  |  |  |     void *global_properties; | 
					
						
							|  |  |  |     void *drbg; | 
					
						
							|  |  |  |     void *drbg_nonce; | 
					
						
							| 
									
										
										
										
											2024-04-16 04:56:29 +08:00
										 |  |  |     CRYPTO_THREAD_LOCAL rcu_local_key; | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  | #ifndef FIPS_MODULE
 | 
					
						
							|  |  |  |     void *provider_conf; | 
					
						
							|  |  |  |     void *bio_core; | 
					
						
							|  |  |  |     void *child_provider; | 
					
						
							|  |  |  |     OSSL_METHOD_STORE *decoder_store; | 
					
						
							| 
									
										
										
										
											2023-07-11 00:41:06 +08:00
										 |  |  |     void *decoder_cache; | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  |     OSSL_METHOD_STORE *encoder_store; | 
					
						
							|  |  |  |     OSSL_METHOD_STORE *store_loader_store; | 
					
						
							|  |  |  |     void *self_test_cb; | 
					
						
							| 
									
										
										
										
											2024-07-01 09:11:16 +08:00
										 |  |  |     void *indicator_cb; | 
					
						
							| 
									
										
										
										
											2021-09-28 04:42:11 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(OPENSSL_THREADS)
 | 
					
						
							|  |  |  |     void *threads; | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #ifdef FIPS_MODULE
 | 
					
						
							|  |  |  |     void *thread_event_handler; | 
					
						
							|  |  |  |     void *fips_prov; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2024-05-16 12:33:55 +08:00
										 |  |  |     STACK_OF(SSL_COMP) *comp_methods; | 
					
						
							| 
									
										
										
										
											2019-08-14 21:43:11 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-02 00:42:57 +08:00
										 |  |  |     int ischild; | 
					
						
							|  |  |  |     int conf_diagnostics; | 
					
						
							| 
									
										
										
										
											2019-02-07 00:42:50 +08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-07 09:32:59 +08:00
										 |  |  | int ossl_lib_ctx_write_lock(OSSL_LIB_CTX *ctx) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return CRYPTO_THREAD_write_lock(ossl_lib_ctx_get_concrete(ctx)->lock); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int ossl_lib_ctx_read_lock(OSSL_LIB_CTX *ctx) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return CRYPTO_THREAD_read_lock(ossl_lib_ctx_get_concrete(ctx)->lock); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int ossl_lib_ctx_unlock(OSSL_LIB_CTX *ctx) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return CRYPTO_THREAD_unlock(ossl_lib_ctx_get_concrete(ctx)->lock); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-21 23:51:41 +08:00
										 |  |  | int ossl_lib_ctx_is_child(OSSL_LIB_CTX *ctx) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ctx = ossl_lib_ctx_get_concrete(ctx); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ctx == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     return ctx->ischild; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  | static void context_deinit_objs(OSSL_LIB_CTX *ctx); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  | static int context_init(OSSL_LIB_CTX *ctx) | 
					
						
							| 
									
										
										
										
											2019-02-07 00:42:50 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-08-14 22:00:35 +08:00
										 |  |  |     int exdata_done = 0; | 
					
						
							| 
									
										
										
										
											2019-05-01 18:02:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-16 04:56:29 +08:00
										 |  |  |     if (!CRYPTO_THREAD_init_local(&ctx->rcu_local_key, NULL)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-01 18:02:43 +08:00
										 |  |  |     ctx->lock = CRYPTO_THREAD_lock_new(); | 
					
						
							|  |  |  |     if (ctx->lock == NULL) | 
					
						
							| 
									
										
										
										
											2024-04-16 04:56:29 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2019-05-01 18:02:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  |     /* Initialize ex_data. */ | 
					
						
							| 
									
										
										
										
											2021-02-24 16:07:52 +08:00
										 |  |  |     if (!ossl_do_ex_data_init(ctx)) | 
					
						
							| 
									
										
										
										
											2019-05-01 18:02:43 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2019-08-14 22:00:35 +08:00
										 |  |  |     exdata_done = 1; | 
					
						
							| 
									
										
										
										
											2019-05-01 18:02:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  |     /* P2. We want evp_method_store to be cleaned up before the provider store */ | 
					
						
							|  |  |  |     ctx->evp_method_store = ossl_method_store_new(ctx); | 
					
						
							|  |  |  |     if (ctx->evp_method_store == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef FIPS_MODULE
 | 
					
						
							|  |  |  |     /* P2. Must be freed before the provider store is freed */ | 
					
						
							|  |  |  |     ctx->provider_conf = ossl_prov_conf_ctx_new(ctx); | 
					
						
							|  |  |  |     if (ctx->provider_conf == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* P2. */ | 
					
						
							|  |  |  |     ctx->drbg = ossl_rand_ctx_new(ctx); | 
					
						
							|  |  |  |     if (ctx->drbg == NULL) | 
					
						
							| 
									
										
										
										
											2019-05-01 18:02:43 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  | #ifndef FIPS_MODULE
 | 
					
						
							| 
									
										
										
										
											2023-07-11 00:41:06 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * P2. We want decoder_store/decoder_cache to be cleaned up before the | 
					
						
							|  |  |  |      * provider store | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  |     ctx->decoder_store = ossl_method_store_new(ctx); | 
					
						
							|  |  |  |     if (ctx->decoder_store == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2023-07-11 00:41:06 +08:00
										 |  |  |     ctx->decoder_cache = ossl_decoder_cache_new(ctx); | 
					
						
							|  |  |  |     if (ctx->decoder_cache == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* P2. We want encoder_store to be cleaned up before the provider store */ | 
					
						
							|  |  |  |     ctx->encoder_store = ossl_method_store_new(ctx); | 
					
						
							|  |  |  |     if (ctx->encoder_store == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* P2. We want loader_store to be cleaned up before the provider store */ | 
					
						
							|  |  |  |     ctx->store_loader_store = ossl_method_store_new(ctx); | 
					
						
							|  |  |  |     if (ctx->store_loader_store == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* P1. Needs to be freed before the child provider data is freed */ | 
					
						
							|  |  |  |     ctx->provider_store = ossl_provider_store_new(ctx); | 
					
						
							|  |  |  |     if (ctx->provider_store == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Default priority. */ | 
					
						
							|  |  |  |     ctx->property_string_data = ossl_property_string_data_new(ctx); | 
					
						
							|  |  |  |     if (ctx->property_string_data == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ctx->namemap = ossl_stored_namemap_new(ctx); | 
					
						
							|  |  |  |     if (ctx->namemap == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ctx->property_defns = ossl_property_defns_new(ctx); | 
					
						
							|  |  |  |     if (ctx->property_defns == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ctx->global_properties = ossl_ctx_global_properties_new(ctx); | 
					
						
							|  |  |  |     if (ctx->global_properties == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef FIPS_MODULE
 | 
					
						
							|  |  |  |     ctx->bio_core = ossl_bio_core_globals_new(ctx); | 
					
						
							|  |  |  |     if (ctx->bio_core == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ctx->drbg_nonce = ossl_prov_drbg_nonce_ctx_new(ctx); | 
					
						
							|  |  |  |     if (ctx->drbg_nonce == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef FIPS_MODULE
 | 
					
						
							|  |  |  |     ctx->self_test_cb = ossl_self_test_set_callback_new(ctx); | 
					
						
							|  |  |  |     if (ctx->self_test_cb == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2024-07-01 09:11:16 +08:00
										 |  |  |     ctx->indicator_cb = ossl_indicator_set_callback_new(ctx); | 
					
						
							|  |  |  |     if (ctx->indicator_cb == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef FIPS_MODULE
 | 
					
						
							|  |  |  |     ctx->thread_event_handler = ossl_thread_event_ctx_new(ctx); | 
					
						
							|  |  |  |     if (ctx->thread_event_handler == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ctx->fips_prov = ossl_fips_prov_ossl_ctx_new(ctx); | 
					
						
							|  |  |  |     if (ctx->fips_prov == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-16 21:51:48 +08:00
										 |  |  | #ifndef OPENSSL_NO_THREAD_POOL
 | 
					
						
							| 
									
										
										
										
											2021-09-28 04:42:11 +08:00
										 |  |  |     ctx->threads = ossl_threads_ctx_new(ctx); | 
					
						
							|  |  |  |     if (ctx->threads == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  |     /* Low priority. */ | 
					
						
							|  |  |  | #ifndef FIPS_MODULE
 | 
					
						
							|  |  |  |     ctx->child_provider = ossl_child_prov_ctx_new(ctx); | 
					
						
							|  |  |  |     if (ctx->child_provider == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-14 22:00:35 +08:00
										 |  |  |     /* Everything depends on properties, so we also pre-initialise that */ | 
					
						
							|  |  |  |     if (!ossl_property_parse_init(ctx)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-16 12:33:55 +08:00
										 |  |  | #ifndef FIPS_MODULE
 | 
					
						
							|  |  |  |     ctx->comp_methods = ossl_load_builtin_compressions(); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-01 18:02:43 +08:00
										 |  |  |     return 1; | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-01 18:02:43 +08:00
										 |  |  |  err: | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  |     context_deinit_objs(ctx); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-14 22:00:35 +08:00
										 |  |  |     if (exdata_done) | 
					
						
							| 
									
										
										
										
											2021-02-24 16:07:52 +08:00
										 |  |  |         ossl_crypto_cleanup_all_ex_data_int(ctx); | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-01 18:02:43 +08:00
										 |  |  |     CRYPTO_THREAD_lock_free(ctx->lock); | 
					
						
							| 
									
										
										
										
											2024-04-16 04:56:29 +08:00
										 |  |  |     CRYPTO_THREAD_cleanup_local(&ctx->rcu_local_key); | 
					
						
							| 
									
										
										
										
											2021-12-16 23:06:34 +08:00
										 |  |  |     memset(ctx, '\0', sizeof(*ctx)); | 
					
						
							| 
									
										
										
										
											2019-05-01 18:02:43 +08:00
										 |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2019-02-07 00:42:50 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  | static void context_deinit_objs(OSSL_LIB_CTX *ctx) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /* P2. We want evp_method_store to be cleaned up before the provider store */ | 
					
						
							|  |  |  |     if (ctx->evp_method_store != NULL) { | 
					
						
							|  |  |  |         ossl_method_store_free(ctx->evp_method_store); | 
					
						
							|  |  |  |         ctx->evp_method_store = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* P2. */ | 
					
						
							|  |  |  |     if (ctx->drbg != NULL) { | 
					
						
							|  |  |  |         ossl_rand_ctx_free(ctx->drbg); | 
					
						
							|  |  |  |         ctx->drbg = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef FIPS_MODULE
 | 
					
						
							|  |  |  |     /* P2. */ | 
					
						
							|  |  |  |     if (ctx->provider_conf != NULL) { | 
					
						
							|  |  |  |         ossl_prov_conf_ctx_free(ctx->provider_conf); | 
					
						
							|  |  |  |         ctx->provider_conf = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-11 00:41:06 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * P2. We want decoder_store/decoder_cache to be cleaned up before the | 
					
						
							|  |  |  |      * provider store | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  |     if (ctx->decoder_store != NULL) { | 
					
						
							|  |  |  |         ossl_method_store_free(ctx->decoder_store); | 
					
						
							|  |  |  |         ctx->decoder_store = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2023-07-11 00:41:06 +08:00
										 |  |  |     if (ctx->decoder_cache != NULL) { | 
					
						
							|  |  |  |         ossl_decoder_cache_free(ctx->decoder_cache); | 
					
						
							|  |  |  |         ctx->decoder_cache = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* P2. We want encoder_store to be cleaned up before the provider store */ | 
					
						
							|  |  |  |     if (ctx->encoder_store != NULL) { | 
					
						
							|  |  |  |         ossl_method_store_free(ctx->encoder_store); | 
					
						
							|  |  |  |         ctx->encoder_store = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* P2. We want loader_store to be cleaned up before the provider store */ | 
					
						
							|  |  |  |     if (ctx->store_loader_store != NULL) { | 
					
						
							|  |  |  |         ossl_method_store_free(ctx->store_loader_store); | 
					
						
							|  |  |  |         ctx->store_loader_store = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* P1. Needs to be freed before the child provider data is freed */ | 
					
						
							|  |  |  |     if (ctx->provider_store != NULL) { | 
					
						
							|  |  |  |         ossl_provider_store_free(ctx->provider_store); | 
					
						
							|  |  |  |         ctx->provider_store = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Default priority. */ | 
					
						
							|  |  |  |     if (ctx->property_string_data != NULL) { | 
					
						
							|  |  |  |         ossl_property_string_data_free(ctx->property_string_data); | 
					
						
							|  |  |  |         ctx->property_string_data = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ctx->namemap != NULL) { | 
					
						
							|  |  |  |         ossl_stored_namemap_free(ctx->namemap); | 
					
						
							|  |  |  |         ctx->namemap = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ctx->property_defns != NULL) { | 
					
						
							|  |  |  |         ossl_property_defns_free(ctx->property_defns); | 
					
						
							|  |  |  |         ctx->property_defns = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ctx->global_properties != NULL) { | 
					
						
							|  |  |  |         ossl_ctx_global_properties_free(ctx->global_properties); | 
					
						
							|  |  |  |         ctx->global_properties = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef FIPS_MODULE
 | 
					
						
							|  |  |  |     if (ctx->bio_core != NULL) { | 
					
						
							|  |  |  |         ossl_bio_core_globals_free(ctx->bio_core); | 
					
						
							|  |  |  |         ctx->bio_core = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ctx->drbg_nonce != NULL) { | 
					
						
							|  |  |  |         ossl_prov_drbg_nonce_ctx_free(ctx->drbg_nonce); | 
					
						
							|  |  |  |         ctx->drbg_nonce = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef FIPS_MODULE
 | 
					
						
							| 
									
										
										
										
											2024-07-01 09:11:16 +08:00
										 |  |  |     if (ctx->indicator_cb != NULL) { | 
					
						
							|  |  |  |         ossl_indicator_set_callback_free(ctx->indicator_cb); | 
					
						
							|  |  |  |         ctx->indicator_cb = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  |     if (ctx->self_test_cb != NULL) { | 
					
						
							|  |  |  |         ossl_self_test_set_callback_free(ctx->self_test_cb); | 
					
						
							|  |  |  |         ctx->self_test_cb = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef FIPS_MODULE
 | 
					
						
							|  |  |  |     if (ctx->thread_event_handler != NULL) { | 
					
						
							|  |  |  |         ossl_thread_event_ctx_free(ctx->thread_event_handler); | 
					
						
							|  |  |  |         ctx->thread_event_handler = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ctx->fips_prov != NULL) { | 
					
						
							|  |  |  |         ossl_fips_prov_ossl_ctx_free(ctx->fips_prov); | 
					
						
							|  |  |  |         ctx->fips_prov = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-16 21:51:48 +08:00
										 |  |  | #ifndef OPENSSL_NO_THREAD_POOL
 | 
					
						
							| 
									
										
										
										
											2021-09-28 04:42:11 +08:00
										 |  |  |     if (ctx->threads != NULL) { | 
					
						
							|  |  |  |         ossl_threads_ctx_free(ctx->threads); | 
					
						
							|  |  |  |         ctx->threads = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  |     /* Low priority. */ | 
					
						
							|  |  |  | #ifndef FIPS_MODULE
 | 
					
						
							|  |  |  |     if (ctx->child_provider != NULL) { | 
					
						
							|  |  |  |         ossl_child_prov_ctx_free(ctx->child_provider); | 
					
						
							|  |  |  |         ctx->child_provider = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2024-05-16 12:33:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifndef FIPS_MODULE
 | 
					
						
							|  |  |  |     if (ctx->comp_methods != NULL) { | 
					
						
							|  |  |  |         ossl_free_compression_methods_int(ctx->comp_methods); | 
					
						
							|  |  |  |         ctx->comp_methods = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  | static int context_deinit(OSSL_LIB_CTX *ctx) | 
					
						
							| 
									
										
										
										
											2019-02-07 00:42:50 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-05-01 18:02:43 +08:00
										 |  |  |     if (ctx == NULL) | 
					
						
							|  |  |  |         return 1; | 
					
						
							| 
									
										
										
										
											2019-04-30 22:15:48 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-27 23:31:27 +08:00
										 |  |  |     ossl_ctx_thread_stop(ctx); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  |     context_deinit_objs(ctx); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-24 16:07:52 +08:00
										 |  |  |     ossl_crypto_cleanup_all_ex_data_int(ctx); | 
					
						
							| 
									
										
										
										
											2019-08-14 21:43:11 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-07 00:42:50 +08:00
										 |  |  |     CRYPTO_THREAD_lock_free(ctx->lock); | 
					
						
							| 
									
										
										
										
											2019-05-01 18:02:43 +08:00
										 |  |  |     ctx->lock = NULL; | 
					
						
							| 
									
										
										
										
											2024-04-16 04:56:29 +08:00
										 |  |  |     CRYPTO_THREAD_cleanup_local(&ctx->rcu_local_key); | 
					
						
							| 
									
										
										
										
											2019-02-07 00:42:50 +08:00
										 |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-14 04:34:56 +08:00
										 |  |  | #ifndef FIPS_MODULE
 | 
					
						
							| 
									
										
										
										
											2020-06-22 19:12:53 +08:00
										 |  |  | /* The default default context */ | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  | static OSSL_LIB_CTX default_context_int; | 
					
						
							| 
									
										
										
										
											2020-06-22 19:12:53 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | static CRYPTO_ONCE default_context_init = CRYPTO_ONCE_STATIC_INIT; | 
					
						
							|  |  |  | static CRYPTO_THREAD_LOCAL default_context_thread_local; | 
					
						
							| 
									
										
										
										
											2023-04-21 17:25:43 +08:00
										 |  |  | static int default_context_inited = 0; | 
					
						
							| 
									
										
										
										
											2020-06-22 19:12:53 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | DEFINE_RUN_ONCE_STATIC(default_context_do_init) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-21 17:25:43 +08:00
										 |  |  |     if (!CRYPTO_THREAD_init_local(&default_context_thread_local, NULL)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!context_init(&default_context_int)) | 
					
						
							|  |  |  |         goto deinit_thread; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     default_context_inited = 1; | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | deinit_thread: | 
					
						
							|  |  |  |     CRYPTO_THREAD_cleanup_local(&default_context_thread_local); | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2020-06-22 19:12:53 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  | void ossl_lib_ctx_default_deinit(void) | 
					
						
							| 
									
										
										
										
											2019-02-07 00:42:50 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-04-21 17:25:43 +08:00
										 |  |  |     if (!default_context_inited) | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2020-06-22 19:12:53 +08:00
										 |  |  |     context_deinit(&default_context_int); | 
					
						
							| 
									
										
										
										
											2022-02-02 05:48:19 +08:00
										 |  |  |     CRYPTO_THREAD_cleanup_local(&default_context_thread_local); | 
					
						
							| 
									
										
										
										
											2023-04-21 17:25:43 +08:00
										 |  |  |     default_context_inited = 0; | 
					
						
							| 
									
										
										
										
											2019-02-07 00:42:50 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-05-01 18:02:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  | static OSSL_LIB_CTX *get_thread_default_context(void) | 
					
						
							| 
									
										
										
										
											2019-02-07 00:42:50 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-06-22 19:12:53 +08:00
										 |  |  |     if (!RUN_ONCE(&default_context_init, default_context_do_init)) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2019-05-01 18:02:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-22 19:12:53 +08:00
										 |  |  |     return CRYPTO_THREAD_get_local(&default_context_thread_local); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  | static OSSL_LIB_CTX *get_default_context(void) | 
					
						
							| 
									
										
										
										
											2020-06-22 19:12:53 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  |     OSSL_LIB_CTX *current_defctx = get_thread_default_context(); | 
					
						
							| 
									
										
										
										
											2020-06-22 19:12:53 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (current_defctx == NULL) | 
					
						
							|  |  |  |         current_defctx = &default_context_int; | 
					
						
							|  |  |  |     return current_defctx; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  | static int set_default_context(OSSL_LIB_CTX *defctx) | 
					
						
							| 
									
										
										
										
											2020-06-22 19:12:53 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (defctx == &default_context_int) | 
					
						
							|  |  |  |         defctx = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return CRYPTO_THREAD_set_local(&default_context_thread_local, defctx); | 
					
						
							| 
									
										
										
										
											2019-02-07 00:42:50 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-05-01 18:02:43 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-02-07 00:42:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  | OSSL_LIB_CTX *OSSL_LIB_CTX_new(void) | 
					
						
							| 
									
										
										
										
											2019-02-07 00:42:50 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  |     OSSL_LIB_CTX *ctx = OPENSSL_zalloc(sizeof(*ctx)); | 
					
						
							| 
									
										
										
										
											2019-02-07 00:42:50 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (ctx != NULL && !context_init(ctx)) { | 
					
						
							| 
									
										
										
										
											2021-12-16 23:06:34 +08:00
										 |  |  |         OPENSSL_free(ctx); | 
					
						
							| 
									
										
										
										
											2019-02-07 00:42:50 +08:00
										 |  |  |         ctx = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return ctx; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-14 04:34:56 +08:00
										 |  |  | #ifndef FIPS_MODULE
 | 
					
						
							| 
									
										
										
										
											2021-04-21 23:51:41 +08:00
										 |  |  | OSSL_LIB_CTX *OSSL_LIB_CTX_new_from_dispatch(const OSSL_CORE_HANDLE *handle, | 
					
						
							|  |  |  |                                              const OSSL_DISPATCH *in) | 
					
						
							| 
									
										
										
										
											2021-04-28 02:56:39 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     OSSL_LIB_CTX *ctx = OSSL_LIB_CTX_new(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ctx == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ossl_bio_init_core(ctx, in)) { | 
					
						
							|  |  |  |         OSSL_LIB_CTX_free(ctx); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ctx; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-21 23:51:41 +08:00
										 |  |  | OSSL_LIB_CTX *OSSL_LIB_CTX_new_child(const OSSL_CORE_HANDLE *handle, | 
					
						
							|  |  |  |                                      const OSSL_DISPATCH *in) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     OSSL_LIB_CTX *ctx = OSSL_LIB_CTX_new_from_dispatch(handle, in); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (ctx == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ossl_provider_init_as_child(ctx, handle, in)) { | 
					
						
							|  |  |  |         OSSL_LIB_CTX_free(ctx); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     ctx->ischild = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ctx; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  | int OSSL_LIB_CTX_load_config(OSSL_LIB_CTX *ctx, const char *config_file) | 
					
						
							| 
									
										
										
										
											2020-03-20 18:25:39 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-09-24 17:42:23 +08:00
										 |  |  |     return CONF_modules_load_file_ex(ctx, config_file, NULL, 0) > 0; | 
					
						
							| 
									
										
										
										
											2020-03-20 18:25:39 +08:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  | void OSSL_LIB_CTX_free(OSSL_LIB_CTX *ctx) | 
					
						
							| 
									
										
										
										
											2019-02-07 00:42:50 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2024-06-25 17:58:49 +08:00
										 |  |  |     if (ctx == NULL || ossl_lib_ctx_is_default(ctx)) | 
					
						
							| 
									
										
										
										
											2020-06-22 19:12:53 +08:00
										 |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-09 21:48:31 +08:00
										 |  |  | #ifndef FIPS_MODULE
 | 
					
						
							|  |  |  |     if (ctx->ischild) | 
					
						
							|  |  |  |         ossl_provider_deinit_child(ctx); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2020-06-22 19:12:53 +08:00
										 |  |  |     context_deinit(ctx); | 
					
						
							| 
									
										
										
										
											2019-02-07 00:42:50 +08:00
										 |  |  |     OPENSSL_free(ctx); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-16 18:13:30 +08:00
										 |  |  | #ifndef FIPS_MODULE
 | 
					
						
							|  |  |  | OSSL_LIB_CTX *OSSL_LIB_CTX_get0_global_default(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (!RUN_ONCE(&default_context_init, default_context_do_init)) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return &default_context_int; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  | OSSL_LIB_CTX *OSSL_LIB_CTX_set0_default(OSSL_LIB_CTX *libctx) | 
					
						
							| 
									
										
										
										
											2020-06-22 19:12:53 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  |     OSSL_LIB_CTX *current_defctx; | 
					
						
							| 
									
										
										
										
											2020-06-22 19:12:53 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-15 23:46:35 +08:00
										 |  |  |     if ((current_defctx = get_default_context()) != NULL) { | 
					
						
							|  |  |  |         if (libctx != NULL) | 
					
						
							|  |  |  |             set_default_context(libctx); | 
					
						
							| 
									
										
										
										
											2020-06-22 19:12:53 +08:00
										 |  |  |         return current_defctx; | 
					
						
							| 
									
										
										
										
											2021-04-15 23:46:35 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-06-22 19:12:53 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2022-10-11 23:26:23 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | void ossl_release_default_drbg_ctx(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /* early release of the DRBG in global default libctx */ | 
					
						
							|  |  |  |     if (default_context_int.drbg != NULL) { | 
					
						
							|  |  |  |         ossl_rand_ctx_free(default_context_int.drbg); | 
					
						
							|  |  |  |         default_context_int.drbg = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2021-04-16 18:13:30 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2020-06-22 19:12:53 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  | OSSL_LIB_CTX *ossl_lib_ctx_get_concrete(OSSL_LIB_CTX *ctx) | 
					
						
							| 
									
										
										
										
											2019-05-28 22:58:08 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-04-14 04:34:56 +08:00
										 |  |  | #ifndef FIPS_MODULE
 | 
					
						
							| 
									
										
										
										
											2020-06-22 19:12:53 +08:00
										 |  |  |     if (ctx == NULL) | 
					
						
							|  |  |  |         return get_default_context(); | 
					
						
							| 
									
										
										
										
											2019-05-28 22:58:08 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     return ctx; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  | int ossl_lib_ctx_is_default(OSSL_LIB_CTX *ctx) | 
					
						
							| 
									
										
										
										
											2020-03-25 20:12:59 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-04-14 04:34:56 +08:00
										 |  |  | #ifndef FIPS_MODULE
 | 
					
						
							| 
									
										
										
										
											2020-06-22 19:12:53 +08:00
										 |  |  |     if (ctx == NULL || ctx == get_default_context()) | 
					
						
							| 
									
										
										
										
											2020-03-25 20:12:59 +08:00
										 |  |  |         return 1; | 
					
						
							| 
									
										
										
										
											2020-06-23 16:09:20 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  | int ossl_lib_ctx_is_global_default(OSSL_LIB_CTX *ctx) | 
					
						
							| 
									
										
										
										
											2020-06-23 16:09:20 +08:00
										 |  |  | { | 
					
						
							|  |  |  | #ifndef FIPS_MODULE
 | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  |     if (ossl_lib_ctx_get_concrete(ctx) == &default_context_int) | 
					
						
							| 
									
										
										
										
											2020-06-23 16:09:20 +08:00
										 |  |  |         return 1; | 
					
						
							| 
									
										
										
										
											2020-03-25 20:12:59 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  | void *ossl_lib_ctx_get_data(OSSL_LIB_CTX *ctx, int index) | 
					
						
							| 
									
										
										
										
											2019-02-07 00:42:50 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  |     ctx = ossl_lib_ctx_get_concrete(ctx); | 
					
						
							| 
									
										
										
										
											2019-05-01 18:02:43 +08:00
										 |  |  |     if (ctx == NULL) | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2019-05-01 18:02:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  |     switch (index) { | 
					
						
							|  |  |  |     case OSSL_LIB_CTX_PROPERTY_STRING_INDEX: | 
					
						
							|  |  |  |         return ctx->property_string_data; | 
					
						
							|  |  |  |     case OSSL_LIB_CTX_EVP_METHOD_STORE_INDEX: | 
					
						
							|  |  |  |         return ctx->evp_method_store; | 
					
						
							|  |  |  |     case OSSL_LIB_CTX_PROVIDER_STORE_INDEX: | 
					
						
							|  |  |  |         return ctx->provider_store; | 
					
						
							|  |  |  |     case OSSL_LIB_CTX_NAMEMAP_INDEX: | 
					
						
							|  |  |  |         return ctx->namemap; | 
					
						
							|  |  |  |     case OSSL_LIB_CTX_PROPERTY_DEFN_INDEX: | 
					
						
							|  |  |  |         return ctx->property_defns; | 
					
						
							|  |  |  |     case OSSL_LIB_CTX_GLOBAL_PROPERTIES: | 
					
						
							|  |  |  |         return ctx->global_properties; | 
					
						
							|  |  |  |     case OSSL_LIB_CTX_DRBG_INDEX: | 
					
						
							|  |  |  |         return ctx->drbg; | 
					
						
							|  |  |  |     case OSSL_LIB_CTX_DRBG_NONCE_INDEX: | 
					
						
							|  |  |  |         return ctx->drbg_nonce; | 
					
						
							|  |  |  | #ifndef FIPS_MODULE
 | 
					
						
							|  |  |  |     case OSSL_LIB_CTX_PROVIDER_CONF_INDEX: | 
					
						
							|  |  |  |         return ctx->provider_conf; | 
					
						
							|  |  |  |     case OSSL_LIB_CTX_BIO_CORE_INDEX: | 
					
						
							|  |  |  |         return ctx->bio_core; | 
					
						
							|  |  |  |     case OSSL_LIB_CTX_CHILD_PROVIDER_INDEX: | 
					
						
							|  |  |  |         return ctx->child_provider; | 
					
						
							|  |  |  |     case OSSL_LIB_CTX_DECODER_STORE_INDEX: | 
					
						
							|  |  |  |         return ctx->decoder_store; | 
					
						
							| 
									
										
										
										
											2023-07-11 00:41:06 +08:00
										 |  |  |     case OSSL_LIB_CTX_DECODER_CACHE_INDEX: | 
					
						
							|  |  |  |         return ctx->decoder_cache; | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  |     case OSSL_LIB_CTX_ENCODER_STORE_INDEX: | 
					
						
							|  |  |  |         return ctx->encoder_store; | 
					
						
							|  |  |  |     case OSSL_LIB_CTX_STORE_LOADER_STORE_INDEX: | 
					
						
							|  |  |  |         return ctx->store_loader_store; | 
					
						
							|  |  |  |     case OSSL_LIB_CTX_SELF_TEST_CB_INDEX: | 
					
						
							|  |  |  |         return ctx->self_test_cb; | 
					
						
							| 
									
										
										
										
											2024-07-01 09:11:16 +08:00
										 |  |  |     case OSSL_LIB_CTX_INDICATOR_CB_INDEX: | 
					
						
							|  |  |  |         return ctx->indicator_cb; | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2022-11-16 21:51:48 +08:00
										 |  |  | #ifndef OPENSSL_NO_THREAD_POOL
 | 
					
						
							| 
									
										
										
										
											2021-09-28 04:42:11 +08:00
										 |  |  |     case OSSL_LIB_CTX_THREAD_INDEX: | 
					
						
							|  |  |  |         return ctx->threads; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-02-07 00:42:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  | #ifdef FIPS_MODULE
 | 
					
						
							|  |  |  |     case OSSL_LIB_CTX_THREAD_EVENT_HANDLER_INDEX: | 
					
						
							|  |  |  |         return ctx->thread_event_handler; | 
					
						
							| 
									
										
										
										
											2019-02-07 00:42:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  |     case OSSL_LIB_CTX_FIPS_PROV_INDEX: | 
					
						
							|  |  |  |         return ctx->fips_prov; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-16 12:33:55 +08:00
										 |  |  |     case OSSL_LIB_CTX_COMP_METHODS: | 
					
						
							|  |  |  |         return (void *)&ctx->comp_methods; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-14 16:13:12 +08:00
										 |  |  |     default: | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-02-07 00:42:50 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-16 12:33:55 +08:00
										 |  |  | void *OSSL_LIB_CTX_get_data(OSSL_LIB_CTX *ctx, int index) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return ossl_lib_ctx_get_data(ctx, index); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  | OSSL_EX_DATA_GLOBAL *ossl_lib_ctx_get_ex_data_global(OSSL_LIB_CTX *ctx) | 
					
						
							| 
									
										
										
										
											2019-05-01 18:02:43 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-10-15 17:55:50 +08:00
										 |  |  |     ctx = ossl_lib_ctx_get_concrete(ctx); | 
					
						
							| 
									
										
										
										
											2019-05-01 18:02:43 +08:00
										 |  |  |     if (ctx == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     return &ctx->global; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-17 13:07:41 +08:00
										 |  |  | const char *ossl_lib_ctx_get_descriptor(OSSL_LIB_CTX *libctx) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | #ifdef FIPS_MODULE
 | 
					
						
							|  |  |  |     return "FIPS internal library context"; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     if (ossl_lib_ctx_is_global_default(libctx)) | 
					
						
							|  |  |  |         return "Global default library context"; | 
					
						
							|  |  |  |     if (ossl_lib_ctx_is_default(libctx)) | 
					
						
							|  |  |  |         return "Thread-local default library context"; | 
					
						
							|  |  |  |     return "Non-default library context"; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2024-04-16 04:56:29 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | CRYPTO_THREAD_LOCAL *ossl_lib_ctx_get_rcukey(OSSL_LIB_CTX *libctx) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     libctx = ossl_lib_ctx_get_concrete(libctx); | 
					
						
							|  |  |  |     if (libctx == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     return &libctx->rcu_local_key; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2024-04-26 23:23:13 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | int OSSL_LIB_CTX_get_conf_diagnostics(OSSL_LIB_CTX *libctx) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     libctx = ossl_lib_ctx_get_concrete(libctx); | 
					
						
							|  |  |  |     if (libctx == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     return libctx->conf_diagnostics; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-02 00:42:57 +08:00
										 |  |  | void OSSL_LIB_CTX_set_conf_diagnostics(OSSL_LIB_CTX *libctx, int value) | 
					
						
							| 
									
										
										
										
											2024-04-26 23:23:13 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     libctx = ossl_lib_ctx_get_concrete(libctx); | 
					
						
							|  |  |  |     if (libctx == NULL) | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2024-05-02 00:42:57 +08:00
										 |  |  |     libctx->conf_diagnostics = value; | 
					
						
							| 
									
										
										
										
											2024-04-26 23:23:13 +08:00
										 |  |  | } |