Coverage Report

Created: 2025-12-04 06:33

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