Coverage Report

Created: 2024-08-27 12:20

/src/openssl/crypto/init.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 2016-2018 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 "e_os.h"
11
#include "crypto/cryptlib.h"
12
#include <openssl/err.h>
13
#include "crypto/rand.h"
14
#include "internal/bio.h"
15
#include <openssl/evp.h>
16
#include "crypto/evp.h"
17
#include "internal/conf.h"
18
#include "crypto/async.h"
19
#include "crypto/engine.h"
20
#include "internal/comp.h"
21
#include "internal/err.h"
22
#include "crypto/err.h"
23
#include "crypto/objects.h"
24
#include <stdlib.h>
25
#include <assert.h>
26
#include "internal/thread_once.h"
27
#include "crypto/dso_conf.h"
28
#include "internal/dso.h"
29
#include "crypto/store.h"
30
#include <openssl/cmp_util.h> /* for OSSL_CMP_log_close() */
31
#include <openssl/trace.h>
32
33
static int stopped = 0;
34
35
typedef struct ossl_init_stop_st OPENSSL_INIT_STOP;
36
struct ossl_init_stop_st {
37
    void (*handler)(void);
38
    OPENSSL_INIT_STOP *next;
39
};
40
41
static OPENSSL_INIT_STOP *stop_handlers = NULL;
42
static CRYPTO_RWLOCK *init_lock = NULL;
43
44
static CRYPTO_ONCE base = CRYPTO_ONCE_STATIC_INIT;
45
static int base_inited = 0;
46
DEFINE_RUN_ONCE_STATIC(ossl_init_base)
47
1.11k
{
48
    /* no need to init trace */
49
50
1.11k
    OSSL_TRACE(INIT, "ossl_init_base: setting up stop handlers\n");
51
#ifndef OPENSSL_NO_CRYPTO_MDEBUG
52
    ossl_malloc_setup_failures();
53
#endif
54
55
1.11k
    if ((init_lock = CRYPTO_THREAD_lock_new()) == NULL)
56
0
        goto err;
57
1.11k
    OPENSSL_cpuid_setup();
58
59
1.11k
    if (!ossl_init_thread())
60
0
        return 0;
61
62
1.11k
    base_inited = 1;
63
1.11k
    return 1;
64
65
0
err:
66
0
    OSSL_TRACE(INIT, "ossl_init_base failed!\n");
67
0
    CRYPTO_THREAD_lock_free(init_lock);
68
0
    init_lock = NULL;
69
70
0
    return 0;
71
1.11k
}
72
73
static CRYPTO_ONCE register_atexit = CRYPTO_ONCE_STATIC_INIT;
74
#if !defined(OPENSSL_SYS_UEFI) && defined(_WIN32)
75
static int win32atexit(void)
76
{
77
    OPENSSL_cleanup();
78
    return 0;
79
}
80
#endif
81
82
DEFINE_RUN_ONCE_STATIC(ossl_init_register_atexit)
83
1.11k
{
84
#ifdef OPENSSL_INIT_DEBUG
85
    fprintf(stderr, "OPENSSL_INIT: ossl_init_register_atexit()\n");
86
#endif
87
1.11k
#ifndef OPENSSL_SYS_UEFI
88
# ifdef _WIN32
89
    /* We use _onexit() in preference because it gets called on DLL unload */
90
    if (_onexit(win32atexit) == NULL)
91
        return 0;
92
# else
93
1.11k
    if (atexit(OPENSSL_cleanup) != 0)
94
0
        return 0;
95
1.11k
# endif
96
1.11k
#endif
97
98
1.11k
    return 1;
99
1.11k
}
100
101
DEFINE_RUN_ONCE_STATIC_ALT(ossl_init_no_register_atexit,
102
                           ossl_init_register_atexit)
103
0
{
104
#ifdef OPENSSL_INIT_DEBUG
105
    fprintf(stderr, "OPENSSL_INIT: ossl_init_no_register_atexit ok!\n");
106
#endif
107
    /* Do nothing in this case */
108
0
    return 1;
109
0
}
110
111
static CRYPTO_ONCE load_crypto_nodelete = CRYPTO_ONCE_STATIC_INIT;
112
DEFINE_RUN_ONCE_STATIC(ossl_init_load_crypto_nodelete)
113
1.11k
{
114
1.11k
    OSSL_TRACE(INIT, "ossl_init_load_crypto_nodelete()\n");
115
116
#if !defined(OPENSSL_USE_NODELETE) \
117
    && !defined(OPENSSL_NO_PINSHARED)
118
# if defined(DSO_WIN32) && !defined(_WIN32_WCE)
119
    {
120
        HMODULE handle = NULL;
121
        BOOL ret;
122
123
        /* We don't use the DSO route for WIN32 because there is a better way */
124
        ret = GetModuleHandleEx(GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS
125
                                | GET_MODULE_HANDLE_EX_FLAG_PIN,
126
                                (void *)&base_inited, &handle);
127
128
        OSSL_TRACE1(INIT,
129
                    "ossl_init_load_crypto_nodelete: "
130
                    "obtained DSO reference? %s\n",
131
                    (ret == TRUE ? "No!" : "Yes."));
132
        return (ret == TRUE) ? 1 : 0;
133
    }
134
# elif !defined(DSO_NONE)
135
    /*
136
     * Deliberately leak a reference to ourselves. This will force the library
137
     * to remain loaded until the atexit() handler is run at process exit.
138
     */
139
    {
140
        DSO *dso;
141
        void *err;
142
143
        if (!err_shelve_state(&err))
144
            return 0;
145
146
        dso = DSO_dsobyaddr(&base_inited, DSO_FLAG_NO_UNLOAD_ON_FREE);
147
        /*
148
         * In case of No!, it is uncertain our exit()-handlers can still be
149
         * called. After dlclose() the whole library might have been unloaded
150
         * already.
151
         */
152
        OSSL_TRACE1(INIT, "obtained DSO reference? %s\n",
153
                    (dso == NULL ? "No!" : "Yes."));
154
        DSO_free(dso);
155
        err_unshelve_state(err);
156
    }
157
# endif
158
#endif
159
160
1.11k
    return 1;
161
1.11k
}
162
163
static CRYPTO_ONCE load_crypto_strings = CRYPTO_ONCE_STATIC_INIT;
164
static int load_crypto_strings_inited = 0;
165
DEFINE_RUN_ONCE_STATIC(ossl_init_load_crypto_strings)
166
1.11k
{
167
1.11k
    int ret = 1;
168
    /*
169
     * OPENSSL_NO_AUTOERRINIT is provided here to prevent at compile time
170
     * pulling in all the error strings during static linking
171
     */
172
1.11k
#if !defined(OPENSSL_NO_ERR) && !defined(OPENSSL_NO_AUTOERRINIT)
173
1.11k
    OSSL_TRACE(INIT, "err_load_crypto_strings_int()\n");
174
1.11k
    ret = err_load_crypto_strings_int();
175
1.11k
    load_crypto_strings_inited = 1;
176
1.11k
#endif
177
1.11k
    return ret;
178
1.11k
}
179
180
DEFINE_RUN_ONCE_STATIC_ALT(ossl_init_no_load_crypto_strings,
181
                           ossl_init_load_crypto_strings)
182
0
{
183
    /* Do nothing in this case */
184
0
    return 1;
185
0
}
186
187
static CRYPTO_ONCE add_all_ciphers = CRYPTO_ONCE_STATIC_INIT;
188
DEFINE_RUN_ONCE_STATIC(ossl_init_add_all_ciphers)
189
0
{
190
    /*
191
     * OPENSSL_NO_AUTOALGINIT is provided here to prevent at compile time
192
     * pulling in all the ciphers during static linking
193
     */
194
0
#ifndef OPENSSL_NO_AUTOALGINIT
195
0
    OSSL_TRACE(INIT, "openssl_add_all_ciphers_int()\n");
196
0
    openssl_add_all_ciphers_int();
197
0
#endif
198
0
    return 1;
199
0
}
200
201
DEFINE_RUN_ONCE_STATIC_ALT(ossl_init_no_add_all_ciphers,
202
                           ossl_init_add_all_ciphers)
203
0
{
204
    /* Do nothing */
205
0
    return 1;
206
0
}
207
208
static CRYPTO_ONCE add_all_digests = CRYPTO_ONCE_STATIC_INIT;
209
DEFINE_RUN_ONCE_STATIC(ossl_init_add_all_digests)
210
0
{
211
    /*
212
     * OPENSSL_NO_AUTOALGINIT is provided here to prevent at compile time
213
     * pulling in all the ciphers during static linking
214
     */
215
0
#ifndef OPENSSL_NO_AUTOALGINIT
216
0
    OSSL_TRACE(INIT, "openssl_add_all_digests()\n");
217
0
    openssl_add_all_digests_int();
218
0
#endif
219
0
    return 1;
220
0
}
221
222
DEFINE_RUN_ONCE_STATIC_ALT(ossl_init_no_add_all_digests,
223
                           ossl_init_add_all_digests)
224
0
{
225
    /* Do nothing */
226
0
    return 1;
227
0
}
228
229
static CRYPTO_ONCE config = CRYPTO_ONCE_STATIC_INIT;
230
static int config_inited = 0;
231
static const OPENSSL_INIT_SETTINGS *conf_settings = NULL;
232
DEFINE_RUN_ONCE_STATIC(ossl_init_config)
233
390
{
234
390
    int ret = openssl_config_int(conf_settings);
235
390
    config_inited = 1;
236
390
    return ret;
237
390
}
238
DEFINE_RUN_ONCE_STATIC_ALT(ossl_init_no_config, ossl_init_config)
239
0
{
240
0
    OSSL_TRACE(INIT, "openssl_no_config_int()\n");
241
0
    openssl_no_config_int();
242
0
    config_inited = 1;
243
0
    return 1;
244
0
}
245
246
static CRYPTO_ONCE async = CRYPTO_ONCE_STATIC_INIT;
247
static int async_inited = 0;
248
DEFINE_RUN_ONCE_STATIC(ossl_init_async)
249
0
{
250
0
    OSSL_TRACE(INIT, "async_init()\n");
251
0
    if (!async_init())
252
0
        return 0;
253
0
    async_inited = 1;
254
0
    return 1;
255
0
}
256
257
#ifndef OPENSSL_NO_ENGINE
258
static CRYPTO_ONCE engine_openssl = CRYPTO_ONCE_STATIC_INIT;
259
DEFINE_RUN_ONCE_STATIC(ossl_init_engine_openssl)
260
0
{
261
0
    OSSL_TRACE(INIT, "engine_load_openssl_int()\n");
262
0
    engine_load_openssl_int();
263
0
    return 1;
264
0
}
265
# ifndef OPENSSL_NO_RDRAND
266
static CRYPTO_ONCE engine_rdrand = CRYPTO_ONCE_STATIC_INIT;
267
DEFINE_RUN_ONCE_STATIC(ossl_init_engine_rdrand)
268
390
{
269
390
    OSSL_TRACE(INIT, "engine_load_rdrand_int()\n");
270
390
    engine_load_rdrand_int();
271
390
    return 1;
272
390
}
273
# endif
274
static CRYPTO_ONCE engine_dynamic = CRYPTO_ONCE_STATIC_INIT;
275
DEFINE_RUN_ONCE_STATIC(ossl_init_engine_dynamic)
276
390
{
277
390
    OSSL_TRACE(INIT, "engine_load_dynamic_int()\n");
278
390
    engine_load_dynamic_int();
279
390
    return 1;
280
390
}
281
# ifndef OPENSSL_NO_STATIC_ENGINE
282
#  ifndef OPENSSL_NO_DEVCRYPTOENG
283
static CRYPTO_ONCE engine_devcrypto = CRYPTO_ONCE_STATIC_INIT;
284
DEFINE_RUN_ONCE_STATIC(ossl_init_engine_devcrypto)
285
{
286
    OSSL_TRACE(INIT, "engine_load_devcrypto_int()\n");
287
    engine_load_devcrypto_int();
288
    return 1;
289
}
290
#  endif
291
#  if !defined(OPENSSL_NO_PADLOCKENG)
292
static CRYPTO_ONCE engine_padlock = CRYPTO_ONCE_STATIC_INIT;
293
DEFINE_RUN_ONCE_STATIC(ossl_init_engine_padlock)
294
390
{
295
390
    OSSL_TRACE(INIT, "engine_load_padlock_int()\n");
296
390
    engine_load_padlock_int();
297
390
    return 1;
298
390
}
299
#  endif
300
#  if defined(OPENSSL_SYS_WIN32) && !defined(OPENSSL_NO_CAPIENG)
301
static CRYPTO_ONCE engine_capi = CRYPTO_ONCE_STATIC_INIT;
302
DEFINE_RUN_ONCE_STATIC(ossl_init_engine_capi)
303
{
304
    OSSL_TRACE(INIT, "engine_load_capi_int()\n");
305
    engine_load_capi_int();
306
    return 1;
307
}
308
#  endif
309
#  if !defined(OPENSSL_NO_AFALGENG)
310
static CRYPTO_ONCE engine_afalg = CRYPTO_ONCE_STATIC_INIT;
311
DEFINE_RUN_ONCE_STATIC(ossl_init_engine_afalg)
312
0
{
313
0
    OSSL_TRACE(INIT, "engine_load_afalg_int()\n");
314
0
    engine_load_afalg_int();
315
0
    return 1;
316
0
}
317
#  endif
318
# endif
319
#endif
320
321
#ifndef OPENSSL_NO_COMP
322
static CRYPTO_ONCE zlib = CRYPTO_ONCE_STATIC_INIT;
323
324
static int zlib_inited = 0;
325
DEFINE_RUN_ONCE_STATIC(ossl_init_zlib)
326
0
{
327
    /* Do nothing - we need to know about this for the later cleanup */
328
0
    zlib_inited = 1;
329
0
    return 1;
330
0
}
331
#endif
332
333
void OPENSSL_cleanup(void)
334
556
{
335
556
    OPENSSL_INIT_STOP *currhandler, *lasthandler;
336
337
    /*
338
     * TODO(3.0): This function needs looking at with a view to moving most/all
339
     * of this into onfree handlers in OPENSSL_CTX.
340
     */
341
342
    /* If we've not been inited then no need to deinit */
343
556
    if (!base_inited)
344
0
        return;
345
346
    /* Might be explicitly called and also by atexit */
347
556
    if (stopped)
348
0
        return;
349
556
    stopped = 1;
350
351
    /*
352
     * Thread stop may not get automatically called by the thread library for
353
     * the very last thread in some situations, so call it directly.
354
     */
355
556
    OPENSSL_thread_stop();
356
357
556
    currhandler = stop_handlers;
358
556
    while (currhandler != NULL) {
359
0
        currhandler->handler();
360
0
        lasthandler = currhandler;
361
0
        currhandler = currhandler->next;
362
0
        OPENSSL_free(lasthandler);
363
0
    }
364
556
    stop_handlers = NULL;
365
366
556
    CRYPTO_THREAD_lock_free(init_lock);
367
556
    init_lock = NULL;
368
369
    /*
370
     * We assume we are single-threaded for this function, i.e. no race
371
     * conditions for the various "*_inited" vars below.
372
     */
373
374
556
#ifndef OPENSSL_NO_COMP
375
556
    if (zlib_inited) {
376
0
        OSSL_TRACE(INIT, "OPENSSL_cleanup: comp_zlib_cleanup_int()\n");
377
0
        comp_zlib_cleanup_int();
378
0
    }
379
556
#endif
380
381
556
    if (async_inited) {
382
0
        OSSL_TRACE(INIT, "OPENSSL_cleanup: async_deinit()\n");
383
0
        async_deinit();
384
0
    }
385
386
556
    if (load_crypto_strings_inited) {
387
556
        OSSL_TRACE(INIT, "OPENSSL_cleanup: err_free_strings_int()\n");
388
556
        err_free_strings_int();
389
556
    }
390
391
    /*
392
     * Note that cleanup order is important:
393
     * - rand_cleanup_int could call an ENGINE's RAND cleanup function so
394
     * must be called before engine_cleanup_int()
395
     * - ENGINEs use CRYPTO_EX_DATA and therefore, must be cleaned up
396
     * before the ex data handlers are wiped during default openssl_ctx deinit.
397
     * - conf_modules_free_int() can end up in ENGINE code so must be called
398
     * before engine_cleanup_int()
399
     * - ENGINEs and additional EVP algorithms might use added OIDs names so
400
     * obj_cleanup_int() must be called last
401
     */
402
556
    OSSL_TRACE(INIT, "OPENSSL_cleanup: rand_cleanup_int()\n");
403
556
    rand_cleanup_int();
404
405
556
    OSSL_TRACE(INIT, "OPENSSL_cleanup: conf_modules_free_int()\n");
406
556
    conf_modules_free_int();
407
408
556
#ifndef OPENSSL_NO_ENGINE
409
556
    OSSL_TRACE(INIT, "OPENSSL_cleanup: engine_cleanup_int()\n");
410
556
    engine_cleanup_int();
411
556
#endif
412
556
    OSSL_TRACE(INIT, "OPENSSL_cleanup: ossl_store_cleanup_int()\n");
413
556
    ossl_store_cleanup_int();
414
415
556
    OSSL_TRACE(INIT, "OPENSSL_cleanup: openssl_ctx_default_deinit()\n");
416
556
    openssl_ctx_default_deinit();
417
418
556
    ossl_cleanup_thread();
419
420
556
    OSSL_TRACE(INIT, "OPENSSL_cleanup: bio_cleanup()\n");
421
556
    bio_cleanup();
422
423
556
    OSSL_TRACE(INIT, "OPENSSL_cleanup: evp_cleanup_int()\n");
424
556
    evp_cleanup_int();
425
426
556
    OSSL_TRACE(INIT, "OPENSSL_cleanup: obj_cleanup_int()\n");
427
556
    obj_cleanup_int();
428
429
556
    OSSL_TRACE(INIT, "OPENSSL_cleanup: err_int()\n");
430
556
    err_cleanup();
431
432
556
    OSSL_TRACE(INIT, "OPENSSL_cleanup: CRYPTO_secure_malloc_done()\n");
433
556
    CRYPTO_secure_malloc_done();
434
435
556
#ifndef OPENSSL_NO_CMP
436
556
    OSSL_TRACE(INIT, "OPENSSL_cleanup: OSSL_CMP_log_close()\n");
437
556
    OSSL_CMP_log_close();
438
556
#endif
439
440
556
    OSSL_TRACE(INIT, "OPENSSL_cleanup: ossl_trace_cleanup()\n");
441
556
    ossl_trace_cleanup();
442
443
556
    base_inited = 0;
444
556
}
445
446
/*
447
 * If this function is called with a non NULL settings value then it must be
448
 * called prior to any threads making calls to any OpenSSL functions,
449
 * i.e. passing a non-null settings value is assumed to be single-threaded.
450
 */
451
int OPENSSL_init_crypto(uint64_t opts, const OPENSSL_INIT_SETTINGS *settings)
452
9.66M
{
453
    /*
454
     * TODO(3.0): This function needs looking at with a view to moving most/all
455
     * of this into OPENSSL_CTX.
456
     */
457
458
9.66M
    if (stopped) {
459
0
        if (!(opts & OPENSSL_INIT_BASE_ONLY))
460
0
            CRYPTOerr(CRYPTO_F_OPENSSL_INIT_CRYPTO, ERR_R_INIT_FAIL);
461
0
        return 0;
462
0
    }
463
464
    /*
465
     * When the caller specifies OPENSSL_INIT_BASE_ONLY, that should be the
466
     * *only* option specified.  With that option we return immediately after
467
     * doing the requested limited initialization.  Note that
468
     * err_shelve_state() called by us via ossl_init_load_crypto_nodelete()
469
     * re-enters OPENSSL_init_crypto() with OPENSSL_INIT_BASE_ONLY, but with
470
     * base already initialized this is a harmless NOOP.
471
     *
472
     * If we remain the only caller of err_shelve_state() the recursion should
473
     * perhaps be removed, but if in doubt, it can be left in place.
474
     */
475
9.66M
    if (!RUN_ONCE(&base, ossl_init_base))
476
0
        return 0;
477
478
9.66M
    if (opts & OPENSSL_INIT_BASE_ONLY)
479
6.96M
        return 1;
480
481
    /*
482
     * Now we don't always set up exit handlers, the INIT_BASE_ONLY calls
483
     * should not have the side-effect of setting up exit handlers, and
484
     * therefore, this code block is below the INIT_BASE_ONLY-conditioned early
485
     * return above.
486
     */
487
2.69M
    if ((opts & OPENSSL_INIT_NO_ATEXIT) != 0) {
488
0
        if (!RUN_ONCE_ALT(&register_atexit, ossl_init_no_register_atexit,
489
0
                          ossl_init_register_atexit))
490
0
            return 0;
491
2.69M
    } else if (!RUN_ONCE(&register_atexit, ossl_init_register_atexit)) {
492
0
        return 0;
493
0
    }
494
495
2.69M
    if (!RUN_ONCE(&load_crypto_nodelete, ossl_init_load_crypto_nodelete))
496
0
        return 0;
497
498
2.69M
    if ((opts & OPENSSL_INIT_NO_LOAD_CRYPTO_STRINGS)
499
2.69M
            && !RUN_ONCE_ALT(&load_crypto_strings,
500
2.69M
                             ossl_init_no_load_crypto_strings,
501
2.69M
                             ossl_init_load_crypto_strings))
502
0
        return 0;
503
504
2.69M
    if ((opts & OPENSSL_INIT_LOAD_CRYPTO_STRINGS)
505
2.69M
            && !RUN_ONCE(&load_crypto_strings, ossl_init_load_crypto_strings))
506
0
        return 0;
507
508
2.69M
    if ((opts & OPENSSL_INIT_NO_ADD_ALL_CIPHERS)
509
2.69M
            && !RUN_ONCE_ALT(&add_all_ciphers, ossl_init_no_add_all_ciphers,
510
2.69M
                             ossl_init_add_all_ciphers))
511
0
        return 0;
512
513
2.69M
    if ((opts & OPENSSL_INIT_ADD_ALL_CIPHERS)
514
2.69M
            && !RUN_ONCE(&add_all_ciphers, ossl_init_add_all_ciphers))
515
0
        return 0;
516
517
2.69M
    if ((opts & OPENSSL_INIT_NO_ADD_ALL_DIGESTS)
518
2.69M
            && !RUN_ONCE_ALT(&add_all_digests, ossl_init_no_add_all_digests,
519
2.69M
                             ossl_init_add_all_digests))
520
0
        return 0;
521
522
2.69M
    if ((opts & OPENSSL_INIT_ADD_ALL_DIGESTS)
523
2.69M
            && !RUN_ONCE(&add_all_digests, ossl_init_add_all_digests))
524
0
        return 0;
525
526
2.69M
    if ((opts & OPENSSL_INIT_ATFORK)
527
2.69M
            && !openssl_init_fork_handlers())
528
0
        return 0;
529
530
2.69M
    if ((opts & OPENSSL_INIT_NO_LOAD_CONFIG)
531
2.69M
            && !RUN_ONCE_ALT(&config, ossl_init_no_config, ossl_init_config))
532
0
        return 0;
533
534
2.69M
    if (opts & OPENSSL_INIT_LOAD_CONFIG) {
535
2.69M
        int ret;
536
2.69M
        CRYPTO_THREAD_write_lock(init_lock);
537
2.69M
        conf_settings = settings;
538
2.69M
        ret = RUN_ONCE(&config, ossl_init_config);
539
2.69M
        conf_settings = NULL;
540
2.69M
        CRYPTO_THREAD_unlock(init_lock);
541
2.69M
        if (ret <= 0)
542
0
            return 0;
543
2.69M
    }
544
545
2.69M
    if ((opts & OPENSSL_INIT_ASYNC)
546
2.69M
            && !RUN_ONCE(&async, ossl_init_async))
547
0
        return 0;
548
549
2.69M
#ifndef OPENSSL_NO_ENGINE
550
2.69M
    if ((opts & OPENSSL_INIT_ENGINE_OPENSSL)
551
2.69M
            && !RUN_ONCE(&engine_openssl, ossl_init_engine_openssl))
552
0
        return 0;
553
2.69M
# ifndef OPENSSL_NO_RDRAND
554
2.69M
    if ((opts & OPENSSL_INIT_ENGINE_RDRAND)
555
2.69M
            && !RUN_ONCE(&engine_rdrand, ossl_init_engine_rdrand))
556
0
        return 0;
557
2.69M
# endif
558
2.69M
    if ((opts & OPENSSL_INIT_ENGINE_DYNAMIC)
559
2.69M
            && !RUN_ONCE(&engine_dynamic, ossl_init_engine_dynamic))
560
0
        return 0;
561
2.69M
# ifndef OPENSSL_NO_STATIC_ENGINE
562
#  ifndef OPENSSL_NO_DEVCRYPTOENG
563
    if ((opts & OPENSSL_INIT_ENGINE_CRYPTODEV)
564
            && !RUN_ONCE(&engine_devcrypto, ossl_init_engine_devcrypto))
565
        return 0;
566
#  endif
567
2.69M
#  if !defined(OPENSSL_NO_PADLOCKENG)
568
2.69M
    if ((opts & OPENSSL_INIT_ENGINE_PADLOCK)
569
2.69M
            && !RUN_ONCE(&engine_padlock, ossl_init_engine_padlock))
570
0
        return 0;
571
2.69M
#  endif
572
#  if defined(OPENSSL_SYS_WIN32) && !defined(OPENSSL_NO_CAPIENG)
573
    if ((opts & OPENSSL_INIT_ENGINE_CAPI)
574
            && !RUN_ONCE(&engine_capi, ossl_init_engine_capi))
575
        return 0;
576
#  endif
577
2.69M
#  if !defined(OPENSSL_NO_AFALGENG)
578
2.69M
    if ((opts & OPENSSL_INIT_ENGINE_AFALG)
579
2.69M
            && !RUN_ONCE(&engine_afalg, ossl_init_engine_afalg))
580
0
        return 0;
581
2.69M
#  endif
582
2.69M
# endif
583
2.69M
    if (opts & (OPENSSL_INIT_ENGINE_ALL_BUILTIN
584
2.69M
                | OPENSSL_INIT_ENGINE_OPENSSL
585
2.69M
                | OPENSSL_INIT_ENGINE_AFALG)) {
586
390
        ENGINE_register_all_complete();
587
390
    }
588
2.69M
#endif
589
590
2.69M
#ifndef OPENSSL_NO_COMP
591
2.69M
    if ((opts & OPENSSL_INIT_ZLIB)
592
2.69M
            && !RUN_ONCE(&zlib, ossl_init_zlib))
593
0
        return 0;
594
2.69M
#endif
595
596
2.69M
    return 1;
597
2.69M
}
598
599
int OPENSSL_atexit(void (*handler)(void))
600
0
{
601
0
    OPENSSL_INIT_STOP *newhand;
602
603
#if !defined(OPENSSL_USE_NODELETE)\
604
    && !defined(OPENSSL_NO_PINSHARED)
605
    {
606
        union {
607
            void *sym;
608
            void (*func)(void);
609
        } handlersym;
610
611
        handlersym.func = handler;
612
# if defined(DSO_WIN32) && !defined(_WIN32_WCE)
613
        {
614
            HMODULE handle = NULL;
615
            BOOL ret;
616
617
            /*
618
             * We don't use the DSO route for WIN32 because there is a better
619
             * way
620
             */
621
            ret = GetModuleHandleEx(GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS
622
                                    | GET_MODULE_HANDLE_EX_FLAG_PIN,
623
                                    handlersym.sym, &handle);
624
625
            if (!ret)
626
                return 0;
627
        }
628
# elif !defined(DSO_NONE)
629
        /*
630
         * Deliberately leak a reference to the handler. This will force the
631
         * library/code containing the handler to remain loaded until we run the
632
         * atexit handler. If -znodelete has been used then this is
633
         * unnecessary.
634
         */
635
        {
636
            DSO *dso = NULL;
637
638
            ERR_set_mark();
639
            dso = DSO_dsobyaddr(handlersym.sym, DSO_FLAG_NO_UNLOAD_ON_FREE);
640
            /* See same code above in ossl_init_base() for an explanation. */
641
            OSSL_TRACE1(INIT,
642
                       "atexit: obtained DSO reference? %s\n",
643
                       (dso == NULL ? "No!" : "Yes."));
644
            DSO_free(dso);
645
            ERR_pop_to_mark();
646
        }
647
# endif
648
    }
649
#endif
650
651
0
    if ((newhand = OPENSSL_malloc(sizeof(*newhand))) == NULL) {
652
0
        CRYPTOerr(CRYPTO_F_OPENSSL_ATEXIT, ERR_R_MALLOC_FAILURE);
653
0
        return 0;
654
0
    }
655
656
0
    newhand->handler = handler;
657
0
    newhand->next = stop_handlers;
658
0
    stop_handlers = newhand;
659
660
0
    return 1;
661
0
}
662
663
#ifdef OPENSSL_SYS_UNIX
664
/*
665
 * The following three functions are for OpenSSL developers.  This is
666
 * where we set/reset state across fork (called via pthread_atfork when
667
 * it exists, or manually by the application when it doesn't).
668
 *
669
 * WARNING!  If you put code in either OPENSSL_fork_parent or
670
 * OPENSSL_fork_child, you MUST MAKE SURE that they are async-signal-
671
 * safe.  See this link, for example:
672
 *      http://man7.org/linux/man-pages/man7/signal-safety.7.html
673
 */
674
675
void OPENSSL_fork_prepare(void)
676
0
{
677
0
}
678
679
void OPENSSL_fork_parent(void)
680
0
{
681
0
}
682
683
void OPENSSL_fork_child(void)
684
0
{
685
    /* TODO(3.0): Inform all providers about a fork event */
686
0
}
687
#endif