init.c 17.1 KB
Newer Older
1
/*
R
Rich Salz 已提交
2
 * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
3
 *
R
Rich Salz 已提交
4 5 6 7
 * Licensed under the OpenSSL license (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
8 9 10 11
 */

#include <internal/cryptlib_int.h>
#include <openssl/err.h>
12
#include <internal/rand.h>
13
#include <internal/bio.h>
14 15 16 17 18
#include <openssl/evp.h>
#include <internal/evp_int.h>
#include <internal/conf.h>
#include <internal/async.h>
#include <internal/engine.h>
19
#include <internal/comp.h>
20
#include <internal/err.h>
21
#include <internal/err_int.h>
22
#include <internal/objects.h>
23
#include <stdlib.h>
R
Rich Salz 已提交
24 25 26
#include <assert.h>

static int stopped = 0;
27

M
Matt Caswell 已提交
28 29
static void ossl_init_thread_stop(struct thread_local_inits_st *locals);

30
static CRYPTO_THREAD_LOCAL threadstopkey;
31 32 33 34 35 36

static void ossl_init_thread_stop_wrap(void *local)
{
    ossl_init_thread_stop((struct thread_local_inits_st *)local);
}

37
static struct thread_local_inits_st *ossl_init_get_thread_local(int alloc)
38
{
39 40
    struct thread_local_inits_st *local =
        CRYPTO_THREAD_get_local(&threadstopkey);
41 42 43

    if (local == NULL && alloc) {
        local = OPENSSL_zalloc(sizeof *local);
44
        CRYPTO_THREAD_set_local(&threadstopkey, local);
45
    }
46
    if (!alloc) {
47
        CRYPTO_THREAD_set_local(&threadstopkey, NULL);
48
    }
49 50 51 52

    return local;
}

R
Rich Salz 已提交
53
typedef struct ossl_init_stop_st OPENSSL_INIT_STOP;
54 55 56 57 58 59
struct ossl_init_stop_st {
    void (*handler)(void);
    OPENSSL_INIT_STOP *next;
};

static OPENSSL_INIT_STOP *stop_handlers = NULL;
60
static CRYPTO_RWLOCK *init_lock = NULL;
61

62
static CRYPTO_ONCE base = CRYPTO_ONCE_STATIC_INIT;
63 64 65 66 67 68
static int base_inited = 0;
static void ossl_init_base(void)
{
#ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_base: Setting up stop handlers\n");
#endif
69 70 71 72 73
    /*
     * We use a dummy thread local key here. We use the destructor to detect
     * when the thread is going to stop (where that feature is available)
     */
    CRYPTO_THREAD_init_local(&threadstopkey, ossl_init_thread_stop_wrap);
74
#ifndef OPENSSL_SYS_UEFI
75
    atexit(OPENSSL_cleanup);
76
#endif
77
    init_lock = CRYPTO_THREAD_lock_new();
78 79 80 81
    OPENSSL_cpuid_setup();
    base_inited = 1;
}

82
static CRYPTO_ONCE load_crypto_strings = CRYPTO_ONCE_STATIC_INIT;
83 84 85 86 87 88 89 90 91
static int load_crypto_strings_inited = 0;
static void ossl_init_no_load_crypto_strings(void)
{
    /* Do nothing in this case */
    return;
}

static void ossl_init_load_crypto_strings(void)
{
92 93 94 95 96
    /*
     * OPENSSL_NO_AUTOERRINIT is provided here to prevent at compile time
     * pulling in all the error strings during static linking
     */
#if !defined(OPENSSL_NO_ERR) && !defined(OPENSSL_NO_AUTOERRINIT)
97 98
# ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_load_crypto_strings: "
99
                    "err_load_crypto_strings_int()\n");
100
# endif
101
    err_load_crypto_strings_int();
102 103 104 105
#endif
    load_crypto_strings_inited = 1;
}

106
static CRYPTO_ONCE add_all_ciphers = CRYPTO_ONCE_STATIC_INIT;
107 108 109 110 111 112 113 114 115
static void ossl_init_add_all_ciphers(void)
{
    /*
     * OPENSSL_NO_AUTOALGINIT is provided here to prevent at compile time
     * pulling in all the ciphers during static linking
     */
#ifndef OPENSSL_NO_AUTOALGINIT
# ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_add_all_ciphers: "
116
                    "openssl_add_all_ciphers_int()\n");
117
# endif
118
    openssl_add_all_ciphers_int();
119 120 121
#endif
}

122
static CRYPTO_ONCE add_all_digests = CRYPTO_ONCE_STATIC_INIT;
123 124 125 126 127 128 129 130 131
static void ossl_init_add_all_digests(void)
{
    /*
     * OPENSSL_NO_AUTOALGINIT is provided here to prevent at compile time
     * pulling in all the ciphers during static linking
     */
#ifndef OPENSSL_NO_AUTOALGINIT
# ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_add_all_digests: "
132
                    "openssl_add_all_digests()\n");
133
# endif
134
    openssl_add_all_digests_int();
135 136 137 138 139 140 141 142 143
#endif
}

static void ossl_init_no_add_algs(void)
{
    /* Do nothing */
    return;
}

144
static CRYPTO_ONCE config = CRYPTO_ONCE_STATIC_INIT;
145
static int config_inited = 0;
146
static const char *appname;
147 148 149 150
static void ossl_init_config(void)
{
#ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr,
151
            "OPENSSL_INIT: ossl_init_config: openssl_config(%s)\n",
152
            appname == NULL ? "NULL" : appname);
153
#endif
154
    openssl_config_int(appname);
155 156 157 158 159 160
    config_inited = 1;
}
static void ossl_init_no_config(void)
{
#ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr,
161
            "OPENSSL_INIT: ossl_init_config: openssl_no_config_int()\n");
162
#endif
163
    openssl_no_config_int();
164 165 166
    config_inited = 1;
}

167
static CRYPTO_ONCE async = CRYPTO_ONCE_STATIC_INIT;
168 169 170 171 172 173 174 175 176 177 178
static int async_inited = 0;
static void ossl_init_async(void)
{
#ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_async: async_init()\n");
#endif
    async_init();
    async_inited = 1;
}

#ifndef OPENSSL_NO_ENGINE
179
static CRYPTO_ONCE engine_openssl = CRYPTO_ONCE_STATIC_INIT;
180 181 182 183
static void ossl_init_engine_openssl(void)
{
# ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_openssl: "
184
                    "engine_load_openssl_int()\n");
185
# endif
186
    engine_load_openssl_int();
187 188 189
}
# if !defined(OPENSSL_NO_HW) && \
    (defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV))
190
static CRYPTO_ONCE engine_cryptodev = CRYPTO_ONCE_STATIC_INIT;
191 192 193 194
static void ossl_init_engine_cryptodev(void)
{
#  ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_cryptodev: "
195
                    "engine_load_cryptodev_int()\n");
196
#  endif
197
    engine_load_cryptodev_int();
198 199 200 201
}
# endif

# ifndef OPENSSL_NO_RDRAND
202
static CRYPTO_ONCE engine_rdrand = CRYPTO_ONCE_STATIC_INIT;
203 204 205 206
static void ossl_init_engine_rdrand(void)
{
#  ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_rdrand: "
207
                    "engine_load_rdrand_int()\n");
208
#  endif
209
    engine_load_rdrand_int();
210 211
}
# endif
212
static CRYPTO_ONCE engine_dynamic = CRYPTO_ONCE_STATIC_INIT;
213 214 215 216
static void ossl_init_engine_dynamic(void)
{
# ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_dynamic: "
217
                    "engine_load_dynamic_int()\n");
218
# endif
219
    engine_load_dynamic_int();
220 221 222
}
# ifndef OPENSSL_NO_STATIC_ENGINE
#  if !defined(OPENSSL_NO_HW) && !defined(OPENSSL_NO_HW_PADLOCK)
223
static CRYPTO_ONCE engine_padlock = CRYPTO_ONCE_STATIC_INIT;
224 225 226 227
static void ossl_init_engine_padlock(void)
{
#   ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_padlock: "
228
                    "engine_load_padlock_int()\n");
229
#   endif
230
    engine_load_padlock_int();
231 232 233
}
#  endif
#  if defined(OPENSSL_SYS_WIN32) && !defined(OPENSSL_NO_CAPIENG)
234
static CRYPTO_ONCE engine_capi = CRYPTO_ONCE_STATIC_INIT;
235 236 237 238
static void ossl_init_engine_capi(void)
{
#   ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_capi: "
239
                    "engine_load_capi_int()\n");
240
#   endif
241
    engine_load_capi_int();
242 243
}
#  endif
244
static CRYPTO_ONCE engine_dasync = CRYPTO_ONCE_STATIC_INIT;
245 246 247 248
static void ossl_init_engine_dasync(void)
{
# ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_dasync: "
249
                    "engine_load_dasync_int()\n");
250
# endif
251
    engine_load_dasync_int();
252
}
C
clucey 已提交
253
#  if !defined(OPENSSL_NO_AFALGENG)
R
Richard Levitte 已提交
254
static CRYPTO_ONCE engine_afalg = CRYPTO_ONCE_STATIC_INIT;
C
clucey 已提交
255 256 257 258
static void ossl_init_engine_afalg(void)
{
#   ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_afalg: "
259
                    "engine_load_afalg_int()\n");
C
clucey 已提交
260
#   endif
261
    engine_load_afalg_int();
C
clucey 已提交
262 263
}
#  endif
264 265 266
# endif
#endif

E
Emilia Kasper 已提交
267
#ifndef OPENSSL_NO_COMP
268
static CRYPTO_ONCE zlib = CRYPTO_ONCE_STATIC_INIT;
E
Emilia Kasper 已提交
269

270 271 272 273 274 275
static int zlib_inited = 0;
static void ossl_init_zlib(void)
{
    /* Do nothing - we need to know about this for the later cleanup */
    zlib_inited = 1;
}
E
Emilia Kasper 已提交
276
#endif
277

M
Matt Caswell 已提交
278
static void ossl_init_thread_stop(struct thread_local_inits_st *locals)
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
{
    /* Can't do much about this */
    if (locals == NULL)
        return;

    if (locals->async) {
#ifdef OPENSSL_INIT_DEBUG
        fprintf(stderr, "OPENSSL_INIT: ossl_init_thread_stop: "
                        "ASYNC_cleanup_thread()\n");
#endif
        ASYNC_cleanup_thread();
    }

    if (locals->err_state) {
#ifdef OPENSSL_INIT_DEBUG
        fprintf(stderr, "OPENSSL_INIT: ossl_init_thread_stop: "
295
                        "err_delete_thread_state()\n");
296
#endif
297
        err_delete_thread_state();
298 299 300 301 302
    }

    OPENSSL_free(locals);
}

303
void OPENSSL_thread_stop(void)
M
Matt Caswell 已提交
304 305 306 307 308
{
    ossl_init_thread_stop(
        (struct thread_local_inits_st *)ossl_init_get_thread_local(0));
}

309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334
int ossl_init_thread_start(uint64_t opts)
{
    struct thread_local_inits_st *locals = ossl_init_get_thread_local(1);

    if (locals == NULL)
        return 0;

    if (opts & OPENSSL_INIT_THREAD_ASYNC) {
#ifdef OPENSSL_INIT_DEBUG
        fprintf(stderr, "OPENSSL_INIT: ossl_init_thread_start: "
                        "marking thread for async\n");
#endif
        locals->async = 1;
    }

    if (opts & OPENSSL_INIT_THREAD_ERR_STATE) {
#ifdef OPENSSL_INIT_DEBUG
        fprintf(stderr, "OPENSSL_INIT: ossl_init_thread_start: "
                        "marking thread for err_state\n");
#endif
        locals->err_state = 1;
    }

    return 1;
}

335
void OPENSSL_cleanup(void)
336 337 338
{
    OPENSSL_INIT_STOP *currhandler, *lasthandler;

339 340 341 342
    /* If we've not been inited then no need to deinit */
    if (!base_inited)
        return;

R
Rich Salz 已提交
343 344 345 346 347
    /* Might be explicitly called and also by atexit */
    if (stopped)
        return;
    stopped = 1;

348 349 350 351 352 353 354 355 356 357 358 359 360 361
    /*
     * Thread stop may not get automatically called by the thread library for
     * the very last thread in some situations, so call it directly.
     */
    ossl_init_thread_stop(ossl_init_get_thread_local(0));

    currhandler = stop_handlers;
    while (currhandler != NULL) {
        currhandler->handler();
        lasthandler = currhandler;
        currhandler = currhandler->next;
        OPENSSL_free(lasthandler);
    }
    stop_handlers = NULL;
362 363 364

    CRYPTO_THREAD_lock_free(init_lock);

365 366 367 368 369
    /*
     * We assume we are single-threaded for this function, i.e. no race
     * conditions for the various "*_inited" vars below.
     */

E
Emilia Kasper 已提交
370
#ifndef OPENSSL_NO_COMP
371 372
    if (zlib_inited) {
#ifdef OPENSSL_INIT_DEBUG
373
        fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
374
                        "comp_zlib_cleanup_int()\n");
375
#endif
376
        comp_zlib_cleanup_int();
377
    }
E
Emilia Kasper 已提交
378
#endif
379

M
Matt Caswell 已提交
380 381 382 383 384 385 386 387
    if (async_inited) {
# ifdef OPENSSL_INIT_DEBUG
        fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
                        "async_deinit()\n");
# endif
        async_deinit();
    }

388 389
    if (load_crypto_strings_inited) {
#ifdef OPENSSL_INIT_DEBUG
390
        fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
391
                        "err_free_strings_int()\n");
392
#endif
393
        err_free_strings_int();
394 395
    }

396
    CRYPTO_THREAD_cleanup_local(&threadstopkey);
M
Matt Caswell 已提交
397

398
#ifdef OPENSSL_INIT_DEBUG
M
Matt Caswell 已提交
399
    fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
400
                    "rand_cleanup_int()\n");
M
Matt Caswell 已提交
401
    fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
402
                    "conf_modules_free_int()\n");
403
#ifndef OPENSSL_NO_ENGINE
404
    fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
405
                    "engine_cleanup_int()\n");
406
#endif
M
Matt Caswell 已提交
407
    fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
408
                    "crypto_cleanup_all_ex_data_int()\n");
M
Matt Caswell 已提交
409
    fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
410
                    "bio_sock_cleanup_int()\n");
411 412
    fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
                    "bio_cleanup()\n");
M
Matt Caswell 已提交
413
    fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
414
                    "evp_cleanup_int()\n");
M
Matt Caswell 已提交
415
    fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
416
                    "obj_cleanup_int()\n");
417 418
    fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
                    "err_cleanup()\n");
419
#endif
M
Matt Caswell 已提交
420 421
    /*
     * Note that cleanup order is important:
D
Dr. Stephen Henson 已提交
422
     * - rand_cleanup_int could call an ENGINE's RAND cleanup function so
423
     * must be called before engine_cleanup_int()
M
Matt Caswell 已提交
424 425
     * - ENGINEs use CRYPTO_EX_DATA and therefore, must be cleaned up
     * before the ex data handlers are wiped in CRYPTO_cleanup_all_ex_data().
426 427
     * - conf_modules_free_int() can end up in ENGINE code so must be called
     * before engine_cleanup_int()
D
Dr. Stephen Henson 已提交
428 429
     * - ENGINEs and additional EVP algorithms might use added OIDs names so
     * obj_cleanup_int() must be called last
M
Matt Caswell 已提交
430
     */
431 432
    rand_cleanup_int();
    conf_modules_free_int();
433
#ifndef OPENSSL_NO_ENGINE
434
    engine_cleanup_int();
435
#endif
436
    crypto_cleanup_all_ex_data_int();
437
    bio_cleanup();
438 439
    evp_cleanup_int();
    obj_cleanup_int();
440 441
    err_cleanup();

442
    base_inited = 0;
443 444 445 446 447 448 449
}

/*
 * If this function is called with a non NULL settings value then it must be
 * called prior to any threads making calls to any OpenSSL functions,
 * i.e. passing a non-null settings value is assumed to be single-threaded.
 */
450
int OPENSSL_init_crypto(uint64_t opts, const OPENSSL_INIT_SETTINGS *settings)
451
{
452 453 454 455 456 457 458 459 460 461
    static int stoperrset = 0;

    if (stopped) {
        if (!stoperrset) {
            /*
             * We only ever set this once to avoid getting into an infinite
             * loop where the error system keeps trying to init and fails so
             * sets an error etc
             */
            stoperrset = 1;
R
Rich Salz 已提交
462
            CRYPTOerr(CRYPTO_F_OPENSSL_INIT_CRYPTO, ERR_R_INIT_FAIL);
463
        }
464
        return 0;
465
    }
R
Rich Salz 已提交
466

467 468
    if (!CRYPTO_THREAD_run_once(&base, ossl_init_base))
        return 0;
469

470 471 472 473
    if ((opts & OPENSSL_INIT_NO_LOAD_CRYPTO_STRINGS)
            && !CRYPTO_THREAD_run_once(&load_crypto_strings,
                                       ossl_init_no_load_crypto_strings))
        return 0;
474

475 476 477 478
    if ((opts & OPENSSL_INIT_LOAD_CRYPTO_STRINGS)
            && !CRYPTO_THREAD_run_once(&load_crypto_strings,
                                       ossl_init_load_crypto_strings))
        return 0;
479

480 481 482
    if ((opts & OPENSSL_INIT_NO_ADD_ALL_CIPHERS)
            && !CRYPTO_THREAD_run_once(&add_all_ciphers, ossl_init_no_add_algs))
        return 0;
483

484 485 486 487
    if ((opts & OPENSSL_INIT_ADD_ALL_CIPHERS)
            && !CRYPTO_THREAD_run_once(&add_all_ciphers,
                                       ossl_init_add_all_ciphers))
        return 0;
488

489 490 491
    if ((opts & OPENSSL_INIT_NO_ADD_ALL_DIGESTS)
            && !CRYPTO_THREAD_run_once(&add_all_digests, ossl_init_no_add_algs))
        return 0;
492

493 494 495 496
    if ((opts & OPENSSL_INIT_ADD_ALL_DIGESTS)
            && !CRYPTO_THREAD_run_once(&add_all_digests,
                                       ossl_init_add_all_digests))
        return 0;
497

498 499 500
    if ((opts & OPENSSL_INIT_NO_LOAD_CONFIG)
            && !CRYPTO_THREAD_run_once(&config, ossl_init_no_config))
        return 0;
501 502

    if (opts & OPENSSL_INIT_LOAD_CONFIG) {
503
        int ret;
504
        CRYPTO_THREAD_write_lock(init_lock);
505
        appname = (settings == NULL) ? NULL : settings->appname;
506
        ret = CRYPTO_THREAD_run_once(&config, ossl_init_config);
507
        CRYPTO_THREAD_unlock(init_lock);
508 509
        if (!ret)
            return 0;
510 511
    }

512 513 514
    if ((opts & OPENSSL_INIT_ASYNC)
            && !CRYPTO_THREAD_run_once(&async, ossl_init_async))
        return 0;
515

516
#ifndef OPENSSL_NO_ENGINE
517 518 519 520
    if ((opts & OPENSSL_INIT_ENGINE_OPENSSL)
            && !CRYPTO_THREAD_run_once(&engine_openssl,
                                       ossl_init_engine_openssl))
        return 0;
521 522
# if !defined(OPENSSL_NO_HW) && \
    (defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV))
523 524 525 526
    if ((opts & OPENSSL_INIT_ENGINE_CRYPTODEV)
            && !CRYPTO_THREAD_run_once(&engine_cryptodev,
                                       ossl_init_engine_cryptodev))
        return 0;
527 528
# endif
# ifndef OPENSSL_NO_RDRAND
529 530 531
    if ((opts & OPENSSL_INIT_ENGINE_RDRAND)
            && !CRYPTO_THREAD_run_once(&engine_rdrand, ossl_init_engine_rdrand))
        return 0;
532
# endif
533 534 535 536
    if ((opts & OPENSSL_INIT_ENGINE_DYNAMIC)
            && !CRYPTO_THREAD_run_once(&engine_dynamic,
                                       ossl_init_engine_dynamic))
        return 0;
537 538
# ifndef OPENSSL_NO_STATIC_ENGINE
#  if !defined(OPENSSL_NO_HW) && !defined(OPENSSL_NO_HW_PADLOCK)
539
    if ((opts & OPENSSL_INIT_ENGINE_PADLOCK)
540 541
            && !CRYPTO_THREAD_run_once(&engine_padlock,
                                       ossl_init_engine_padlock))
542
        return 0;
543 544
#  endif
#  if defined(OPENSSL_SYS_WIN32) && !defined(OPENSSL_NO_CAPIENG)
545
    if ((opts & OPENSSL_INIT_ENGINE_CAPI)
546
            && !CRYPTO_THREAD_run_once(&engine_capi, ossl_init_engine_capi))
547
        return 0;
548
#  endif
549 550 551
    if ((opts & OPENSSL_INIT_ENGINE_DASYNC)
            && !CRYPTO_THREAD_run_once(&engine_dasync, ossl_init_engine_dasync))
        return 0;
C
clucey 已提交
552
#  if !defined(OPENSSL_NO_AFALGENG)
553 554 555
    if ((opts & OPENSSL_INIT_ENGINE_AFALG)
            && !CRYPTO_THREAD_run_once(&engine_afalg, ossl_init_engine_afalg))
        return 0;
C
clucey 已提交
556
#  endif
557 558
# endif
    if (opts & (OPENSSL_INIT_ENGINE_ALL_BUILTIN
C
clucey 已提交
559 560
                | OPENSSL_INIT_ENGINE_DASYNC | OPENSSL_INIT_ENGINE_OPENSSL
                | OPENSSL_INIT_ENGINE_AFALG)) {
561 562 563 564
        ENGINE_register_all_complete();
    }
#endif

E
Emilia Kasper 已提交
565
#ifndef OPENSSL_NO_COMP
566
    if ((opts & OPENSSL_INIT_ZLIB)
567
            && !CRYPTO_THREAD_run_once(&zlib, ossl_init_zlib))
568
        return 0;
E
Emilia Kasper 已提交
569
#endif
570 571

    return 1;
572 573
}

574
int OPENSSL_atexit(void (*handler)(void))
575 576 577 578 579 580 581 582 583 584 585 586 587
{
    OPENSSL_INIT_STOP *newhand;

    newhand = OPENSSL_malloc(sizeof(*newhand));
    if (newhand == NULL)
        return 0;

    newhand->handler = handler;
    newhand->next = stop_handlers;
    stop_handlers = newhand;

    return 1;
}