1 | /*
|
---|
2 | * Copyright 2019-2023 The OpenSSL Project Authors. All Rights Reserved.
|
---|
3 | *
|
---|
4 | * Licensed under the Apache License 2.0 (the "License"). You may not use
|
---|
5 | * this file except in compliance with the License. You can obtain a copy
|
---|
6 | * in the file LICENSE in the source distribution or at
|
---|
7 | * https://www.openssl.org/source/license.html
|
---|
8 | */
|
---|
9 |
|
---|
10 | #include "crypto/cryptlib.h"
|
---|
11 | #include <openssl/conf.h>
|
---|
12 | #include "internal/thread_once.h"
|
---|
13 | #include "internal/property.h"
|
---|
14 | #include "internal/core.h"
|
---|
15 | #include "internal/bio.h"
|
---|
16 | #include "internal/provider.h"
|
---|
17 | #include "crypto/context.h"
|
---|
18 |
|
---|
19 | struct ossl_lib_ctx_st {
|
---|
20 | CRYPTO_RWLOCK *lock, *rand_crngt_lock;
|
---|
21 | OSSL_EX_DATA_GLOBAL global;
|
---|
22 |
|
---|
23 | void *property_string_data;
|
---|
24 | void *evp_method_store;
|
---|
25 | void *provider_store;
|
---|
26 | void *namemap;
|
---|
27 | void *property_defns;
|
---|
28 | void *global_properties;
|
---|
29 | void *drbg;
|
---|
30 | void *drbg_nonce;
|
---|
31 | #ifndef FIPS_MODULE
|
---|
32 | void *provider_conf;
|
---|
33 | void *bio_core;
|
---|
34 | void *child_provider;
|
---|
35 | OSSL_METHOD_STORE *decoder_store;
|
---|
36 | OSSL_METHOD_STORE *encoder_store;
|
---|
37 | OSSL_METHOD_STORE *store_loader_store;
|
---|
38 | void *self_test_cb;
|
---|
39 | #endif
|
---|
40 | void *rand_crngt;
|
---|
41 | #ifdef FIPS_MODULE
|
---|
42 | void *thread_event_handler;
|
---|
43 | void *fips_prov;
|
---|
44 | #endif
|
---|
45 |
|
---|
46 | unsigned int ischild:1;
|
---|
47 | };
|
---|
48 |
|
---|
49 | int ossl_lib_ctx_write_lock(OSSL_LIB_CTX *ctx)
|
---|
50 | {
|
---|
51 | return CRYPTO_THREAD_write_lock(ossl_lib_ctx_get_concrete(ctx)->lock);
|
---|
52 | }
|
---|
53 |
|
---|
54 | int ossl_lib_ctx_read_lock(OSSL_LIB_CTX *ctx)
|
---|
55 | {
|
---|
56 | return CRYPTO_THREAD_read_lock(ossl_lib_ctx_get_concrete(ctx)->lock);
|
---|
57 | }
|
---|
58 |
|
---|
59 | int ossl_lib_ctx_unlock(OSSL_LIB_CTX *ctx)
|
---|
60 | {
|
---|
61 | return CRYPTO_THREAD_unlock(ossl_lib_ctx_get_concrete(ctx)->lock);
|
---|
62 | }
|
---|
63 |
|
---|
64 | int ossl_lib_ctx_is_child(OSSL_LIB_CTX *ctx)
|
---|
65 | {
|
---|
66 | ctx = ossl_lib_ctx_get_concrete(ctx);
|
---|
67 |
|
---|
68 | if (ctx == NULL)
|
---|
69 | return 0;
|
---|
70 | return ctx->ischild;
|
---|
71 | }
|
---|
72 |
|
---|
73 | static void context_deinit_objs(OSSL_LIB_CTX *ctx);
|
---|
74 |
|
---|
75 | static int context_init(OSSL_LIB_CTX *ctx)
|
---|
76 | {
|
---|
77 | int exdata_done = 0;
|
---|
78 |
|
---|
79 | ctx->lock = CRYPTO_THREAD_lock_new();
|
---|
80 | if (ctx->lock == NULL)
|
---|
81 | return 0;
|
---|
82 |
|
---|
83 | ctx->rand_crngt_lock = CRYPTO_THREAD_lock_new();
|
---|
84 | if (ctx->rand_crngt_lock == NULL)
|
---|
85 | goto err;
|
---|
86 |
|
---|
87 | /* Initialize ex_data. */
|
---|
88 | if (!ossl_do_ex_data_init(ctx))
|
---|
89 | goto err;
|
---|
90 | exdata_done = 1;
|
---|
91 |
|
---|
92 | /* P2. We want evp_method_store to be cleaned up before the provider store */
|
---|
93 | ctx->evp_method_store = ossl_method_store_new(ctx);
|
---|
94 | if (ctx->evp_method_store == NULL)
|
---|
95 | goto err;
|
---|
96 |
|
---|
97 | #ifndef FIPS_MODULE
|
---|
98 | /* P2. Must be freed before the provider store is freed */
|
---|
99 | ctx->provider_conf = ossl_prov_conf_ctx_new(ctx);
|
---|
100 | if (ctx->provider_conf == NULL)
|
---|
101 | goto err;
|
---|
102 | #endif
|
---|
103 |
|
---|
104 | /* P2. */
|
---|
105 | ctx->drbg = ossl_rand_ctx_new(ctx);
|
---|
106 | if (ctx->drbg == NULL)
|
---|
107 | goto err;
|
---|
108 |
|
---|
109 | #ifndef FIPS_MODULE
|
---|
110 | /* P2. We want decoder_store to be cleaned up before the provider store */
|
---|
111 | ctx->decoder_store = ossl_method_store_new(ctx);
|
---|
112 | if (ctx->decoder_store == NULL)
|
---|
113 | goto err;
|
---|
114 |
|
---|
115 | /* P2. We want encoder_store to be cleaned up before the provider store */
|
---|
116 | ctx->encoder_store = ossl_method_store_new(ctx);
|
---|
117 | if (ctx->encoder_store == NULL)
|
---|
118 | goto err;
|
---|
119 |
|
---|
120 | /* P2. We want loader_store to be cleaned up before the provider store */
|
---|
121 | ctx->store_loader_store = ossl_method_store_new(ctx);
|
---|
122 | if (ctx->store_loader_store == NULL)
|
---|
123 | goto err;
|
---|
124 | #endif
|
---|
125 |
|
---|
126 | /* P1. Needs to be freed before the child provider data is freed */
|
---|
127 | ctx->provider_store = ossl_provider_store_new(ctx);
|
---|
128 | if (ctx->provider_store == NULL)
|
---|
129 | goto err;
|
---|
130 |
|
---|
131 | /* Default priority. */
|
---|
132 | ctx->property_string_data = ossl_property_string_data_new(ctx);
|
---|
133 | if (ctx->property_string_data == NULL)
|
---|
134 | goto err;
|
---|
135 |
|
---|
136 | ctx->namemap = ossl_stored_namemap_new(ctx);
|
---|
137 | if (ctx->namemap == NULL)
|
---|
138 | goto err;
|
---|
139 |
|
---|
140 | ctx->property_defns = ossl_property_defns_new(ctx);
|
---|
141 | if (ctx->property_defns == NULL)
|
---|
142 | goto err;
|
---|
143 |
|
---|
144 | ctx->global_properties = ossl_ctx_global_properties_new(ctx);
|
---|
145 | if (ctx->global_properties == NULL)
|
---|
146 | goto err;
|
---|
147 |
|
---|
148 | #ifndef FIPS_MODULE
|
---|
149 | ctx->bio_core = ossl_bio_core_globals_new(ctx);
|
---|
150 | if (ctx->bio_core == NULL)
|
---|
151 | goto err;
|
---|
152 | #endif
|
---|
153 |
|
---|
154 | ctx->drbg_nonce = ossl_prov_drbg_nonce_ctx_new(ctx);
|
---|
155 | if (ctx->drbg_nonce == NULL)
|
---|
156 | goto err;
|
---|
157 |
|
---|
158 | #ifndef FIPS_MODULE
|
---|
159 | ctx->self_test_cb = ossl_self_test_set_callback_new(ctx);
|
---|
160 | if (ctx->self_test_cb == NULL)
|
---|
161 | goto err;
|
---|
162 | #endif
|
---|
163 |
|
---|
164 | #ifdef FIPS_MODULE
|
---|
165 | ctx->thread_event_handler = ossl_thread_event_ctx_new(ctx);
|
---|
166 | if (ctx->thread_event_handler == NULL)
|
---|
167 | goto err;
|
---|
168 |
|
---|
169 | ctx->fips_prov = ossl_fips_prov_ossl_ctx_new(ctx);
|
---|
170 | if (ctx->fips_prov == NULL)
|
---|
171 | goto err;
|
---|
172 | #endif
|
---|
173 |
|
---|
174 | /* Low priority. */
|
---|
175 | #ifndef FIPS_MODULE
|
---|
176 | ctx->child_provider = ossl_child_prov_ctx_new(ctx);
|
---|
177 | if (ctx->child_provider == NULL)
|
---|
178 | goto err;
|
---|
179 | #endif
|
---|
180 |
|
---|
181 | /* Everything depends on properties, so we also pre-initialise that */
|
---|
182 | if (!ossl_property_parse_init(ctx))
|
---|
183 | goto err;
|
---|
184 |
|
---|
185 | return 1;
|
---|
186 |
|
---|
187 | err:
|
---|
188 | context_deinit_objs(ctx);
|
---|
189 |
|
---|
190 | if (exdata_done)
|
---|
191 | ossl_crypto_cleanup_all_ex_data_int(ctx);
|
---|
192 |
|
---|
193 | CRYPTO_THREAD_lock_free(ctx->rand_crngt_lock);
|
---|
194 | CRYPTO_THREAD_lock_free(ctx->lock);
|
---|
195 | memset(ctx, '\0', sizeof(*ctx));
|
---|
196 | return 0;
|
---|
197 | }
|
---|
198 |
|
---|
199 | static void context_deinit_objs(OSSL_LIB_CTX *ctx)
|
---|
200 | {
|
---|
201 | /* P2. We want evp_method_store to be cleaned up before the provider store */
|
---|
202 | if (ctx->evp_method_store != NULL) {
|
---|
203 | ossl_method_store_free(ctx->evp_method_store);
|
---|
204 | ctx->evp_method_store = NULL;
|
---|
205 | }
|
---|
206 |
|
---|
207 | /* P2. */
|
---|
208 | if (ctx->drbg != NULL) {
|
---|
209 | ossl_rand_ctx_free(ctx->drbg);
|
---|
210 | ctx->drbg = NULL;
|
---|
211 | }
|
---|
212 |
|
---|
213 | #ifndef FIPS_MODULE
|
---|
214 | /* P2. */
|
---|
215 | if (ctx->provider_conf != NULL) {
|
---|
216 | ossl_prov_conf_ctx_free(ctx->provider_conf);
|
---|
217 | ctx->provider_conf = NULL;
|
---|
218 | }
|
---|
219 |
|
---|
220 | /* P2. We want decoder_store to be cleaned up before the provider store */
|
---|
221 | if (ctx->decoder_store != NULL) {
|
---|
222 | ossl_method_store_free(ctx->decoder_store);
|
---|
223 | ctx->decoder_store = NULL;
|
---|
224 | }
|
---|
225 |
|
---|
226 | /* P2. We want encoder_store to be cleaned up before the provider store */
|
---|
227 | if (ctx->encoder_store != NULL) {
|
---|
228 | ossl_method_store_free(ctx->encoder_store);
|
---|
229 | ctx->encoder_store = NULL;
|
---|
230 | }
|
---|
231 |
|
---|
232 | /* P2. We want loader_store to be cleaned up before the provider store */
|
---|
233 | if (ctx->store_loader_store != NULL) {
|
---|
234 | ossl_method_store_free(ctx->store_loader_store);
|
---|
235 | ctx->store_loader_store = NULL;
|
---|
236 | }
|
---|
237 | #endif
|
---|
238 |
|
---|
239 | /* P1. Needs to be freed before the child provider data is freed */
|
---|
240 | if (ctx->provider_store != NULL) {
|
---|
241 | ossl_provider_store_free(ctx->provider_store);
|
---|
242 | ctx->provider_store = NULL;
|
---|
243 | }
|
---|
244 |
|
---|
245 | /* Default priority. */
|
---|
246 | if (ctx->property_string_data != NULL) {
|
---|
247 | ossl_property_string_data_free(ctx->property_string_data);
|
---|
248 | ctx->property_string_data = NULL;
|
---|
249 | }
|
---|
250 |
|
---|
251 | if (ctx->namemap != NULL) {
|
---|
252 | ossl_stored_namemap_free(ctx->namemap);
|
---|
253 | ctx->namemap = NULL;
|
---|
254 | }
|
---|
255 |
|
---|
256 | if (ctx->property_defns != NULL) {
|
---|
257 | ossl_property_defns_free(ctx->property_defns);
|
---|
258 | ctx->property_defns = NULL;
|
---|
259 | }
|
---|
260 |
|
---|
261 | if (ctx->global_properties != NULL) {
|
---|
262 | ossl_ctx_global_properties_free(ctx->global_properties);
|
---|
263 | ctx->global_properties = NULL;
|
---|
264 | }
|
---|
265 |
|
---|
266 | #ifndef FIPS_MODULE
|
---|
267 | if (ctx->bio_core != NULL) {
|
---|
268 | ossl_bio_core_globals_free(ctx->bio_core);
|
---|
269 | ctx->bio_core = NULL;
|
---|
270 | }
|
---|
271 | #endif
|
---|
272 |
|
---|
273 | if (ctx->drbg_nonce != NULL) {
|
---|
274 | ossl_prov_drbg_nonce_ctx_free(ctx->drbg_nonce);
|
---|
275 | ctx->drbg_nonce = NULL;
|
---|
276 | }
|
---|
277 |
|
---|
278 | #ifndef FIPS_MODULE
|
---|
279 | if (ctx->self_test_cb != NULL) {
|
---|
280 | ossl_self_test_set_callback_free(ctx->self_test_cb);
|
---|
281 | ctx->self_test_cb = NULL;
|
---|
282 | }
|
---|
283 | #endif
|
---|
284 |
|
---|
285 | if (ctx->rand_crngt != NULL) {
|
---|
286 | ossl_rand_crng_ctx_free(ctx->rand_crngt);
|
---|
287 | ctx->rand_crngt = NULL;
|
---|
288 | }
|
---|
289 |
|
---|
290 | #ifdef FIPS_MODULE
|
---|
291 | if (ctx->thread_event_handler != NULL) {
|
---|
292 | ossl_thread_event_ctx_free(ctx->thread_event_handler);
|
---|
293 | ctx->thread_event_handler = NULL;
|
---|
294 | }
|
---|
295 |
|
---|
296 | if (ctx->fips_prov != NULL) {
|
---|
297 | ossl_fips_prov_ossl_ctx_free(ctx->fips_prov);
|
---|
298 | ctx->fips_prov = NULL;
|
---|
299 | }
|
---|
300 | #endif
|
---|
301 |
|
---|
302 | /* Low priority. */
|
---|
303 | #ifndef FIPS_MODULE
|
---|
304 | if (ctx->child_provider != NULL) {
|
---|
305 | ossl_child_prov_ctx_free(ctx->child_provider);
|
---|
306 | ctx->child_provider = NULL;
|
---|
307 | }
|
---|
308 | #endif
|
---|
309 | }
|
---|
310 |
|
---|
311 | static int context_deinit(OSSL_LIB_CTX *ctx)
|
---|
312 | {
|
---|
313 | if (ctx == NULL)
|
---|
314 | return 1;
|
---|
315 |
|
---|
316 | ossl_ctx_thread_stop(ctx);
|
---|
317 |
|
---|
318 | context_deinit_objs(ctx);
|
---|
319 |
|
---|
320 | ossl_crypto_cleanup_all_ex_data_int(ctx);
|
---|
321 |
|
---|
322 | CRYPTO_THREAD_lock_free(ctx->rand_crngt_lock);
|
---|
323 | CRYPTO_THREAD_lock_free(ctx->lock);
|
---|
324 | ctx->rand_crngt_lock = NULL;
|
---|
325 | ctx->lock = NULL;
|
---|
326 | return 1;
|
---|
327 | }
|
---|
328 |
|
---|
329 | #ifndef FIPS_MODULE
|
---|
330 | /* The default default context */
|
---|
331 | static OSSL_LIB_CTX default_context_int;
|
---|
332 |
|
---|
333 | static CRYPTO_ONCE default_context_init = CRYPTO_ONCE_STATIC_INIT;
|
---|
334 | static CRYPTO_THREAD_LOCAL default_context_thread_local;
|
---|
335 | static int default_context_inited = 0;
|
---|
336 |
|
---|
337 | DEFINE_RUN_ONCE_STATIC(default_context_do_init)
|
---|
338 | {
|
---|
339 | if (!CRYPTO_THREAD_init_local(&default_context_thread_local, NULL))
|
---|
340 | goto err;
|
---|
341 |
|
---|
342 | if (!context_init(&default_context_int))
|
---|
343 | goto deinit_thread;
|
---|
344 |
|
---|
345 | default_context_inited = 1;
|
---|
346 | return 1;
|
---|
347 |
|
---|
348 | deinit_thread:
|
---|
349 | CRYPTO_THREAD_cleanup_local(&default_context_thread_local);
|
---|
350 | err:
|
---|
351 | return 0;
|
---|
352 | }
|
---|
353 |
|
---|
354 | void ossl_lib_ctx_default_deinit(void)
|
---|
355 | {
|
---|
356 | if (!default_context_inited)
|
---|
357 | return;
|
---|
358 | context_deinit(&default_context_int);
|
---|
359 | CRYPTO_THREAD_cleanup_local(&default_context_thread_local);
|
---|
360 | default_context_inited = 0;
|
---|
361 | }
|
---|
362 |
|
---|
363 | static OSSL_LIB_CTX *get_thread_default_context(void)
|
---|
364 | {
|
---|
365 | if (!RUN_ONCE(&default_context_init, default_context_do_init))
|
---|
366 | return NULL;
|
---|
367 |
|
---|
368 | return CRYPTO_THREAD_get_local(&default_context_thread_local);
|
---|
369 | }
|
---|
370 |
|
---|
371 | static OSSL_LIB_CTX *get_default_context(void)
|
---|
372 | {
|
---|
373 | OSSL_LIB_CTX *current_defctx = get_thread_default_context();
|
---|
374 |
|
---|
375 | if (current_defctx == NULL)
|
---|
376 | current_defctx = &default_context_int;
|
---|
377 | return current_defctx;
|
---|
378 | }
|
---|
379 |
|
---|
380 | static int set_default_context(OSSL_LIB_CTX *defctx)
|
---|
381 | {
|
---|
382 | if (defctx == &default_context_int)
|
---|
383 | defctx = NULL;
|
---|
384 |
|
---|
385 | return CRYPTO_THREAD_set_local(&default_context_thread_local, defctx);
|
---|
386 | }
|
---|
387 | #endif
|
---|
388 |
|
---|
389 | OSSL_LIB_CTX *OSSL_LIB_CTX_new(void)
|
---|
390 | {
|
---|
391 | OSSL_LIB_CTX *ctx = OPENSSL_zalloc(sizeof(*ctx));
|
---|
392 |
|
---|
393 | if (ctx != NULL && !context_init(ctx)) {
|
---|
394 | OPENSSL_free(ctx);
|
---|
395 | ctx = NULL;
|
---|
396 | }
|
---|
397 | return ctx;
|
---|
398 | }
|
---|
399 |
|
---|
400 | #ifndef FIPS_MODULE
|
---|
401 | OSSL_LIB_CTX *OSSL_LIB_CTX_new_from_dispatch(const OSSL_CORE_HANDLE *handle,
|
---|
402 | const OSSL_DISPATCH *in)
|
---|
403 | {
|
---|
404 | OSSL_LIB_CTX *ctx = OSSL_LIB_CTX_new();
|
---|
405 |
|
---|
406 | if (ctx == NULL)
|
---|
407 | return NULL;
|
---|
408 |
|
---|
409 | if (!ossl_bio_init_core(ctx, in)) {
|
---|
410 | OSSL_LIB_CTX_free(ctx);
|
---|
411 | return NULL;
|
---|
412 | }
|
---|
413 |
|
---|
414 | return ctx;
|
---|
415 | }
|
---|
416 |
|
---|
417 | OSSL_LIB_CTX *OSSL_LIB_CTX_new_child(const OSSL_CORE_HANDLE *handle,
|
---|
418 | const OSSL_DISPATCH *in)
|
---|
419 | {
|
---|
420 | OSSL_LIB_CTX *ctx = OSSL_LIB_CTX_new_from_dispatch(handle, in);
|
---|
421 |
|
---|
422 | if (ctx == NULL)
|
---|
423 | return NULL;
|
---|
424 |
|
---|
425 | if (!ossl_provider_init_as_child(ctx, handle, in)) {
|
---|
426 | OSSL_LIB_CTX_free(ctx);
|
---|
427 | return NULL;
|
---|
428 | }
|
---|
429 | ctx->ischild = 1;
|
---|
430 |
|
---|
431 | return ctx;
|
---|
432 | }
|
---|
433 |
|
---|
434 | int OSSL_LIB_CTX_load_config(OSSL_LIB_CTX *ctx, const char *config_file)
|
---|
435 | {
|
---|
436 | return CONF_modules_load_file_ex(ctx, config_file, NULL, 0) > 0;
|
---|
437 | }
|
---|
438 | #endif
|
---|
439 |
|
---|
440 | void OSSL_LIB_CTX_free(OSSL_LIB_CTX *ctx)
|
---|
441 | {
|
---|
442 | if (ossl_lib_ctx_is_default(ctx))
|
---|
443 | return;
|
---|
444 |
|
---|
445 | #ifndef FIPS_MODULE
|
---|
446 | if (ctx->ischild)
|
---|
447 | ossl_provider_deinit_child(ctx);
|
---|
448 | #endif
|
---|
449 | context_deinit(ctx);
|
---|
450 | OPENSSL_free(ctx);
|
---|
451 | }
|
---|
452 |
|
---|
453 | #ifndef FIPS_MODULE
|
---|
454 | OSSL_LIB_CTX *OSSL_LIB_CTX_get0_global_default(void)
|
---|
455 | {
|
---|
456 | if (!RUN_ONCE(&default_context_init, default_context_do_init))
|
---|
457 | return NULL;
|
---|
458 |
|
---|
459 | return &default_context_int;
|
---|
460 | }
|
---|
461 |
|
---|
462 | OSSL_LIB_CTX *OSSL_LIB_CTX_set0_default(OSSL_LIB_CTX *libctx)
|
---|
463 | {
|
---|
464 | OSSL_LIB_CTX *current_defctx;
|
---|
465 |
|
---|
466 | if ((current_defctx = get_default_context()) != NULL) {
|
---|
467 | if (libctx != NULL)
|
---|
468 | set_default_context(libctx);
|
---|
469 | return current_defctx;
|
---|
470 | }
|
---|
471 |
|
---|
472 | return NULL;
|
---|
473 | }
|
---|
474 |
|
---|
475 | void ossl_release_default_drbg_ctx(void)
|
---|
476 | {
|
---|
477 | /* early release of the DRBG in global default libctx */
|
---|
478 | if (default_context_int.drbg != NULL) {
|
---|
479 | ossl_rand_ctx_free(default_context_int.drbg);
|
---|
480 | default_context_int.drbg = NULL;
|
---|
481 | }
|
---|
482 | }
|
---|
483 | #endif
|
---|
484 |
|
---|
485 | OSSL_LIB_CTX *ossl_lib_ctx_get_concrete(OSSL_LIB_CTX *ctx)
|
---|
486 | {
|
---|
487 | #ifndef FIPS_MODULE
|
---|
488 | if (ctx == NULL)
|
---|
489 | return get_default_context();
|
---|
490 | #endif
|
---|
491 | return ctx;
|
---|
492 | }
|
---|
493 |
|
---|
494 | int ossl_lib_ctx_is_default(OSSL_LIB_CTX *ctx)
|
---|
495 | {
|
---|
496 | #ifndef FIPS_MODULE
|
---|
497 | if (ctx == NULL || ctx == get_default_context())
|
---|
498 | return 1;
|
---|
499 | #endif
|
---|
500 | return 0;
|
---|
501 | }
|
---|
502 |
|
---|
503 | int ossl_lib_ctx_is_global_default(OSSL_LIB_CTX *ctx)
|
---|
504 | {
|
---|
505 | #ifndef FIPS_MODULE
|
---|
506 | if (ossl_lib_ctx_get_concrete(ctx) == &default_context_int)
|
---|
507 | return 1;
|
---|
508 | #endif
|
---|
509 | return 0;
|
---|
510 | }
|
---|
511 |
|
---|
512 | void *ossl_lib_ctx_get_data(OSSL_LIB_CTX *ctx, int index)
|
---|
513 | {
|
---|
514 | void *p;
|
---|
515 |
|
---|
516 | ctx = ossl_lib_ctx_get_concrete(ctx);
|
---|
517 | if (ctx == NULL)
|
---|
518 | return NULL;
|
---|
519 |
|
---|
520 | switch (index) {
|
---|
521 | case OSSL_LIB_CTX_PROPERTY_STRING_INDEX:
|
---|
522 | return ctx->property_string_data;
|
---|
523 | case OSSL_LIB_CTX_EVP_METHOD_STORE_INDEX:
|
---|
524 | return ctx->evp_method_store;
|
---|
525 | case OSSL_LIB_CTX_PROVIDER_STORE_INDEX:
|
---|
526 | return ctx->provider_store;
|
---|
527 | case OSSL_LIB_CTX_NAMEMAP_INDEX:
|
---|
528 | return ctx->namemap;
|
---|
529 | case OSSL_LIB_CTX_PROPERTY_DEFN_INDEX:
|
---|
530 | return ctx->property_defns;
|
---|
531 | case OSSL_LIB_CTX_GLOBAL_PROPERTIES:
|
---|
532 | return ctx->global_properties;
|
---|
533 | case OSSL_LIB_CTX_DRBG_INDEX:
|
---|
534 | return ctx->drbg;
|
---|
535 | case OSSL_LIB_CTX_DRBG_NONCE_INDEX:
|
---|
536 | return ctx->drbg_nonce;
|
---|
537 | #ifndef FIPS_MODULE
|
---|
538 | case OSSL_LIB_CTX_PROVIDER_CONF_INDEX:
|
---|
539 | return ctx->provider_conf;
|
---|
540 | case OSSL_LIB_CTX_BIO_CORE_INDEX:
|
---|
541 | return ctx->bio_core;
|
---|
542 | case OSSL_LIB_CTX_CHILD_PROVIDER_INDEX:
|
---|
543 | return ctx->child_provider;
|
---|
544 | case OSSL_LIB_CTX_DECODER_STORE_INDEX:
|
---|
545 | return ctx->decoder_store;
|
---|
546 | case OSSL_LIB_CTX_ENCODER_STORE_INDEX:
|
---|
547 | return ctx->encoder_store;
|
---|
548 | case OSSL_LIB_CTX_STORE_LOADER_STORE_INDEX:
|
---|
549 | return ctx->store_loader_store;
|
---|
550 | case OSSL_LIB_CTX_SELF_TEST_CB_INDEX:
|
---|
551 | return ctx->self_test_cb;
|
---|
552 | #endif
|
---|
553 |
|
---|
554 | case OSSL_LIB_CTX_RAND_CRNGT_INDEX: {
|
---|
555 |
|
---|
556 | /*
|
---|
557 | * rand_crngt must be lazily initialized because it calls into
|
---|
558 | * libctx, so must not be called from context_init, else a deadlock
|
---|
559 | * will occur.
|
---|
560 | *
|
---|
561 | * We use a separate lock because code called by the instantiation
|
---|
562 | * of rand_crngt is liable to try and take the libctx lock.
|
---|
563 | */
|
---|
564 | if (CRYPTO_THREAD_read_lock(ctx->rand_crngt_lock) != 1)
|
---|
565 | return NULL;
|
---|
566 |
|
---|
567 | if (ctx->rand_crngt == NULL) {
|
---|
568 | CRYPTO_THREAD_unlock(ctx->rand_crngt_lock);
|
---|
569 |
|
---|
570 | if (CRYPTO_THREAD_write_lock(ctx->rand_crngt_lock) != 1)
|
---|
571 | return NULL;
|
---|
572 |
|
---|
573 | if (ctx->rand_crngt == NULL)
|
---|
574 | ctx->rand_crngt = ossl_rand_crng_ctx_new(ctx);
|
---|
575 | }
|
---|
576 |
|
---|
577 | p = ctx->rand_crngt;
|
---|
578 |
|
---|
579 | CRYPTO_THREAD_unlock(ctx->rand_crngt_lock);
|
---|
580 |
|
---|
581 | return p;
|
---|
582 | }
|
---|
583 |
|
---|
584 | #ifdef FIPS_MODULE
|
---|
585 | case OSSL_LIB_CTX_THREAD_EVENT_HANDLER_INDEX:
|
---|
586 | return ctx->thread_event_handler;
|
---|
587 |
|
---|
588 | case OSSL_LIB_CTX_FIPS_PROV_INDEX:
|
---|
589 | return ctx->fips_prov;
|
---|
590 | #endif
|
---|
591 |
|
---|
592 | default:
|
---|
593 | return NULL;
|
---|
594 | }
|
---|
595 | }
|
---|
596 |
|
---|
597 | OSSL_EX_DATA_GLOBAL *ossl_lib_ctx_get_ex_data_global(OSSL_LIB_CTX *ctx)
|
---|
598 | {
|
---|
599 | ctx = ossl_lib_ctx_get_concrete(ctx);
|
---|
600 | if (ctx == NULL)
|
---|
601 | return NULL;
|
---|
602 | return &ctx->global;
|
---|
603 | }
|
---|
604 |
|
---|
605 | const char *ossl_lib_ctx_get_descriptor(OSSL_LIB_CTX *libctx)
|
---|
606 | {
|
---|
607 | #ifdef FIPS_MODULE
|
---|
608 | return "FIPS internal library context";
|
---|
609 | #else
|
---|
610 | if (ossl_lib_ctx_is_global_default(libctx))
|
---|
611 | return "Global default library context";
|
---|
612 | if (ossl_lib_ctx_is_default(libctx))
|
---|
613 | return "Thread-local default library context";
|
---|
614 | return "Non-default library context";
|
---|
615 | #endif
|
---|
616 | }
|
---|