Coverage Report

Created: 2025-07-11 06:57

/src/openssl/crypto/context.c
Line
Count
Source (jump to first uncovered line)
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
16
{
60
16
    if ((ctx = ossl_lib_ctx_get_concrete(ctx)) == NULL)
61
0
        return 0;
62
16
    return CRYPTO_THREAD_write_lock(ctx->lock);
63
16
}
64
65
int ossl_lib_ctx_read_lock(OSSL_LIB_CTX *ctx)
66
2.59k
{
67
2.59k
    if ((ctx = ossl_lib_ctx_get_concrete(ctx)) == NULL)
68
0
        return 0;
69
2.59k
    return CRYPTO_THREAD_read_lock(ctx->lock);
70
2.59k
}
71
72
int ossl_lib_ctx_unlock(OSSL_LIB_CTX *ctx)
73
2.60k
{
74
2.60k
    if ((ctx = ossl_lib_ctx_get_concrete(ctx)) == NULL)
75
0
        return 0;
76
2.60k
    return CRYPTO_THREAD_unlock(ctx->lock);
77
2.60k
}
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
16
{
92
16
    int exdata_done = 0;
93
94
16
    ctx->lock = CRYPTO_THREAD_lock_new();
95
16
    if (ctx->lock == NULL)
96
0
        goto err;
97
98
    /* Initialize ex_data. */
99
16
    if (!ossl_do_ex_data_init(ctx))
100
0
        goto err;
101
16
    exdata_done = 1;
102
103
    /* P2. We want evp_method_store to be cleaned up before the provider store */
104
16
    ctx->evp_method_store = ossl_method_store_new(ctx);
105
16
    if (ctx->evp_method_store == NULL)
106
0
        goto err;
107
16
    OSSL_TRACE1(QUERY, "context_init: allocating store %p\n", ctx->evp_method_store);
108
109
16
#ifndef FIPS_MODULE
110
    /* P2. Must be freed before the provider store is freed */
111
16
    ctx->provider_conf = ossl_prov_conf_ctx_new(ctx);
112
16
    if (ctx->provider_conf == NULL)
113
0
        goto err;
114
16
#endif
115
116
    /* P2. */
117
16
    ctx->drbg = ossl_rand_ctx_new(ctx);
118
16
    if (ctx->drbg == NULL)
119
0
        goto err;
120
121
16
#ifndef FIPS_MODULE
122
    /*
123
     * P2. We want decoder_store/decoder_cache to be cleaned up before the
124
     * provider store
125
     */
126
16
    ctx->decoder_store = ossl_method_store_new(ctx);
127
16
    if (ctx->decoder_store == NULL)
128
0
        goto err;
129
16
    ctx->decoder_cache = ossl_decoder_cache_new(ctx);
130
16
    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
16
    ctx->encoder_store = ossl_method_store_new(ctx);
135
16
    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
16
    ctx->store_loader_store = ossl_method_store_new(ctx);
140
16
    if (ctx->store_loader_store == NULL)
141
0
        goto err;
142
16
#endif
143
144
    /* P1. Needs to be freed before the child provider data is freed */
145
16
    ctx->provider_store = ossl_provider_store_new(ctx);
146
16
    if (ctx->provider_store == NULL)
147
0
        goto err;
148
149
    /* Default priority. */
150
16
    ctx->property_string_data = ossl_property_string_data_new(ctx);
151
16
    if (ctx->property_string_data == NULL)
152
0
        goto err;
153
154
16
    ctx->namemap = ossl_stored_namemap_new(ctx);
155
16
    if (ctx->namemap == NULL)
156
0
        goto err;
157
158
16
    ctx->property_defns = ossl_property_defns_new(ctx);
159
16
    if (ctx->property_defns == NULL)
160
0
        goto err;
161
162
16
    ctx->global_properties = ossl_ctx_global_properties_new(ctx);
163
16
    if (ctx->global_properties == NULL)
164
0
        goto err;
165
166
16
#ifndef FIPS_MODULE
167
16
    ctx->bio_core = ossl_bio_core_globals_new(ctx);
168
16
    if (ctx->bio_core == NULL)
169
0
        goto err;
170
16
#endif
171
172
16
    ctx->drbg_nonce = ossl_prov_drbg_nonce_ctx_new(ctx);
173
16
    if (ctx->drbg_nonce == NULL)
174
0
        goto err;
175
176
16
#ifndef FIPS_MODULE
177
16
    ctx->self_test_cb = ossl_self_test_set_callback_new(ctx);
178
16
    if (ctx->self_test_cb == NULL)
179
0
        goto err;
180
16
    ctx->indicator_cb = ossl_indicator_set_callback_new(ctx);
181
16
    if (ctx->indicator_cb == NULL)
182
0
        goto err;
183
16
#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
16
#ifndef OPENSSL_NO_THREAD_POOL
195
16
    ctx->threads = ossl_threads_ctx_new(ctx);
196
16
    if (ctx->threads == NULL)
197
0
        goto err;
198
16
#endif
199
200
    /* Low priority. */
201
16
#ifndef FIPS_MODULE
202
16
    ctx->child_provider = ossl_child_prov_ctx_new(ctx);
203
16
    if (ctx->child_provider == NULL)
204
0
        goto err;
205
16
#endif
206
207
    /* Everything depends on properties, so we also pre-initialise that */
208
16
    if (!ossl_property_parse_init(ctx))
209
0
        goto err;
210
211
16
#ifndef FIPS_MODULE
212
16
    ctx->comp_methods = ossl_load_builtin_compressions();
213
16
#endif
214
215
16
    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
16
}
227
228
static void context_deinit_objs(OSSL_LIB_CTX *ctx)
229
16
{
230
    /* P2. We want evp_method_store to be cleaned up before the provider store */
231
16
    if (ctx->evp_method_store != NULL) {
232
16
        ossl_method_store_free(ctx->evp_method_store);
233
16
        ctx->evp_method_store = NULL;
234
16
    }
235
236
    /* P2. */
237
16
    if (ctx->drbg != NULL) {
238
0
        ossl_rand_ctx_free(ctx->drbg);
239
0
        ctx->drbg = NULL;
240
0
    }
241
242
16
#ifndef FIPS_MODULE
243
    /* P2. */
244
16
    if (ctx->provider_conf != NULL) {
245
16
        ossl_prov_conf_ctx_free(ctx->provider_conf);
246
16
        ctx->provider_conf = NULL;
247
16
    }
248
249
    /*
250
     * P2. We want decoder_store/decoder_cache to be cleaned up before the
251
     * provider store
252
     */
253
16
    if (ctx->decoder_store != NULL) {
254
16
        ossl_method_store_free(ctx->decoder_store);
255
16
        ctx->decoder_store = NULL;
256
16
    }
257
16
    if (ctx->decoder_cache != NULL) {
258
16
        ossl_decoder_cache_free(ctx->decoder_cache);
259
16
        ctx->decoder_cache = NULL;
260
16
    }
261
262
263
    /* P2. We want encoder_store to be cleaned up before the provider store */
264
16
    if (ctx->encoder_store != NULL) {
265
16
        ossl_method_store_free(ctx->encoder_store);
266
16
        ctx->encoder_store = NULL;
267
16
    }
268
269
    /* P2. We want loader_store to be cleaned up before the provider store */
270
16
    if (ctx->store_loader_store != NULL) {
271
16
        ossl_method_store_free(ctx->store_loader_store);
272
16
        ctx->store_loader_store = NULL;
273
16
    }
274
16
#endif
275
276
    /* P1. Needs to be freed before the child provider data is freed */
277
16
    if (ctx->provider_store != NULL) {
278
16
        ossl_provider_store_free(ctx->provider_store);
279
16
        ctx->provider_store = NULL;
280
16
    }
281
282
    /* Default priority. */
283
16
    if (ctx->property_string_data != NULL) {
284
16
        ossl_property_string_data_free(ctx->property_string_data);
285
16
        ctx->property_string_data = NULL;
286
16
    }
287
288
16
    if (ctx->namemap != NULL) {
289
16
        ossl_stored_namemap_free(ctx->namemap);
290
16
        ctx->namemap = NULL;
291
16
    }
292
293
16
    if (ctx->property_defns != NULL) {
294
16
        ossl_property_defns_free(ctx->property_defns);
295
16
        ctx->property_defns = NULL;
296
16
    }
297
298
16
    if (ctx->global_properties != NULL) {
299
16
        ossl_ctx_global_properties_free(ctx->global_properties);
300
16
        ctx->global_properties = NULL;
301
16
    }
302
303
16
#ifndef FIPS_MODULE
304
16
    if (ctx->bio_core != NULL) {
305
16
        ossl_bio_core_globals_free(ctx->bio_core);
306
16
        ctx->bio_core = NULL;
307
16
    }
308
16
#endif
309
310
16
    if (ctx->drbg_nonce != NULL) {
311
16
        ossl_prov_drbg_nonce_ctx_free(ctx->drbg_nonce);
312
16
        ctx->drbg_nonce = NULL;
313
16
    }
314
315
16
#ifndef FIPS_MODULE
316
16
    if (ctx->indicator_cb != NULL) {
317
16
        ossl_indicator_set_callback_free(ctx->indicator_cb);
318
16
        ctx->indicator_cb = NULL;
319
16
    }
320
321
16
    if (ctx->self_test_cb != NULL) {
322
16
        ossl_self_test_set_callback_free(ctx->self_test_cb);
323
16
        ctx->self_test_cb = NULL;
324
16
    }
325
16
#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
16
#ifndef OPENSSL_NO_THREAD_POOL
337
16
    if (ctx->threads != NULL) {
338
16
        ossl_threads_ctx_free(ctx->threads);
339
16
        ctx->threads = NULL;
340
16
    }
341
16
#endif
342
343
    /* Low priority. */
344
16
#ifndef FIPS_MODULE
345
16
    if (ctx->child_provider != NULL) {
346
16
        ossl_child_prov_ctx_free(ctx->child_provider);
347
16
        ctx->child_provider = NULL;
348
16
    }
349
16
#endif
350
351
16
#ifndef FIPS_MODULE
352
16
    if (ctx->comp_methods != NULL) {
353
16
        ossl_free_compression_methods_int(ctx->comp_methods);
354
16
        ctx->comp_methods = NULL;
355
16
    }
356
16
#endif
357
358
16
}
359
360
static int context_deinit(OSSL_LIB_CTX *ctx)
361
16
{
362
16
    if (ctx == NULL)
363
0
        return 1;
364
365
16
    ossl_ctx_thread_stop(ctx);
366
367
16
    context_deinit_objs(ctx);
368
369
16
    ossl_crypto_cleanup_all_ex_data_int(ctx);
370
371
16
    CRYPTO_THREAD_lock_free(ctx->lock);
372
16
    ctx->lock = NULL;
373
16
    return 1;
374
16
}
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
16
{
386
16
    if (!CRYPTO_THREAD_init_local(&default_context_thread_local, NULL))
387
0
        goto err;
388
389
16
    if (!context_init(&default_context_int))
390
0
        goto deinit_thread;
391
392
16
    default_context_inited = 1;
393
16
    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
16
{
403
16
    if (!default_context_inited)
404
0
        return;
405
16
    context_deinit(&default_context_int);
406
16
    CRYPTO_THREAD_cleanup_local(&default_context_thread_local);
407
16
    default_context_inited = 0;
408
16
}
409
410
static OSSL_LIB_CTX *get_thread_default_context(void)
411
350k
{
412
350k
    if (!RUN_ONCE(&default_context_init, default_context_do_init))
413
0
        return NULL;
414
415
350k
    return CRYPTO_THREAD_get_local(&default_context_thread_local);
416
350k
}
417
418
static OSSL_LIB_CTX *get_default_context(void)
419
350k
{
420
350k
    OSSL_LIB_CTX *current_defctx = get_thread_default_context();
421
422
350k
    if (current_defctx == NULL && default_context_inited)
423
350k
        current_defctx = &default_context_int;
424
350k
    return current_defctx;
425
350k
}
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
0
{
438
0
    OSSL_LIB_CTX *ctx = OPENSSL_zalloc(sizeof(*ctx));
439
440
0
    if (ctx != NULL && !context_init(ctx)) {
441
0
        OPENSSL_free(ctx);
442
0
        ctx = NULL;
443
0
    }
444
0
    return ctx;
445
0
}
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
16
{
503
16
    if (!RUN_ONCE(&default_context_init, default_context_do_init))
504
0
        return NULL;
505
506
16
    return &default_context_int;
507
16
}
508
509
OSSL_LIB_CTX *OSSL_LIB_CTX_set0_default(OSSL_LIB_CTX *libctx)
510
0
{
511
0
    OSSL_LIB_CTX *current_defctx;
512
513
0
    if ((current_defctx = get_default_context()) != NULL) {
514
0
        if (libctx != NULL)
515
0
            set_default_context(libctx);
516
0
        return current_defctx;
517
0
    }
518
519
0
    return NULL;
520
0
}
521
522
void ossl_release_default_drbg_ctx(void)
523
16
{
524
    /* early release of the DRBG in global default libctx */
525
16
    if (default_context_int.drbg != NULL) {
526
16
        ossl_rand_ctx_free(default_context_int.drbg);
527
16
        default_context_int.drbg = NULL;
528
16
    }
529
16
}
530
#endif
531
532
OSSL_LIB_CTX *ossl_lib_ctx_get_concrete(OSSL_LIB_CTX *ctx)
533
368k
{
534
368k
#ifndef FIPS_MODULE
535
368k
    if (ctx == NULL)
536
350k
        return get_default_context();
537
17.9k
#endif
538
17.9k
    return ctx;
539
368k
}
540
541
int ossl_lib_ctx_is_default(OSSL_LIB_CTX *ctx)
542
138
{
543
138
#ifndef FIPS_MODULE
544
138
    if (ctx == NULL || ctx == get_default_context())
545
138
        return 1;
546
0
#endif
547
0
    return 0;
548
138
}
549
550
int ossl_lib_ctx_is_global_default(OSSL_LIB_CTX *ctx)
551
0
{
552
0
#ifndef FIPS_MODULE
553
0
    if (ossl_lib_ctx_get_concrete(ctx) == &default_context_int)
554
0
        return 1;
555
0
#endif
556
0
    return 0;
557
0
}
558
559
void *ossl_lib_ctx_get_data(OSSL_LIB_CTX *ctx, int index)
560
250k
{
561
250k
    ctx = ossl_lib_ctx_get_concrete(ctx);
562
250k
    if (ctx == NULL)
563
0
        return NULL;
564
565
250k
    switch (index) {
566
160
    case OSSL_LIB_CTX_PROPERTY_STRING_INDEX:
567
160
        return ctx->property_string_data;
568
121k
    case OSSL_LIB_CTX_EVP_METHOD_STORE_INDEX:
569
121k
        return ctx->evp_method_store;
570
117
    case OSSL_LIB_CTX_PROVIDER_STORE_INDEX:
571
117
        return ctx->provider_store;
572
126k
    case OSSL_LIB_CTX_NAMEMAP_INDEX:
573
126k
        return ctx->namemap;
574
2.60k
    case OSSL_LIB_CTX_PROPERTY_DEFN_INDEX:
575
2.60k
        return ctx->property_defns;
576
85
    case OSSL_LIB_CTX_GLOBAL_PROPERTIES:
577
85
        return ctx->global_properties;
578
144
    case OSSL_LIB_CTX_DRBG_INDEX:
579
144
        return ctx->drbg;
580
0
    case OSSL_LIB_CTX_DRBG_NONCE_INDEX:
581
0
        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
0
    case OSSL_LIB_CTX_DECODER_STORE_INDEX:
590
0
        return ctx->decoder_store;
591
16
    case OSSL_LIB_CTX_DECODER_CACHE_INDEX:
592
16
        return ctx->decoder_cache;
593
0
    case OSSL_LIB_CTX_ENCODER_STORE_INDEX:
594
0
        return ctx->encoder_store;
595
0
    case OSSL_LIB_CTX_STORE_LOADER_STORE_INDEX:
596
0
        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
0
    case OSSL_LIB_CTX_THREAD_INDEX:
604
0
        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
16
    case OSSL_LIB_CTX_COMP_METHODS:
613
16
        return (void *)&ctx->comp_methods;
614
615
0
    default:
616
0
        return NULL;
617
250k
    }
618
250k
}
619
620
void *OSSL_LIB_CTX_get_data(OSSL_LIB_CTX *ctx, int index)
621
16
{
622
16
    return ossl_lib_ctx_get_data(ctx, index);
623
16
}
624
625
OSSL_EX_DATA_GLOBAL *ossl_lib_ctx_get_ex_data_global(OSSL_LIB_CTX *ctx)
626
112k
{
627
112k
    ctx = ossl_lib_ctx_get_concrete(ctx);
628
112k
    if (ctx == NULL)
629
0
        return NULL;
630
112k
    return &ctx->global;
631
112k
}
632
633
const char *ossl_lib_ctx_get_descriptor(OSSL_LIB_CTX *libctx)
634
0
{
635
#ifdef FIPS_MODULE
636
    return "FIPS internal library context";
637
#else
638
0
    if (ossl_lib_ctx_is_global_default(libctx))
639
0
        return "Global default library context";
640
0
    if (ossl_lib_ctx_is_default(libctx))
641
0
        return "Thread-local default library context";
642
0
    return "Non-default library context";
643
0
#endif
644
0
}
645
646
int OSSL_LIB_CTX_get_conf_diagnostics(OSSL_LIB_CTX *libctx)
647
16
{
648
16
    libctx = ossl_lib_ctx_get_concrete(libctx);
649
16
    if (libctx == NULL)
650
0
        return 0;
651
16
    return libctx->conf_diagnostics;
652
16
}
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
}