init.c 16.6 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
#include <assert.h>
25
#include <internal/thread_once.h>
R
Rich Salz 已提交
26 27

static int stopped = 0;
28

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

31
static CRYPTO_THREAD_LOCAL threadstopkey;
32 33 34 35 36 37

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

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

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

    return local;
}

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

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

63
static CRYPTO_ONCE base = CRYPTO_ONCE_STATIC_INIT;
64
static int base_inited = 0;
65
DEFINE_RUN_ONCE_STATIC(ossl_init_base)
66 67 68 69
{
#ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_base: Setting up stop handlers\n");
#endif
70 71 72 73 74
    /*
     * 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);
75
#ifndef OPENSSL_SYS_UEFI
76
    atexit(OPENSSL_cleanup);
77
#endif
78 79
    if ((init_lock = CRYPTO_THREAD_lock_new()) == NULL)
        return 0;
80 81
    OPENSSL_cpuid_setup();
    base_inited = 1;
82
    return 1;
83 84
}

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

93
DEFINE_RUN_ONCE_STATIC(ossl_init_load_crypto_strings)
94
{
95
    int ret = 1;
96 97 98 99 100
    /*
     * 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)
101 102
# ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_load_crypto_strings: "
103
                    "err_load_crypto_strings_int()\n");
104
# endif
105
    ret = err_load_crypto_strings_int();
106 107
#endif
    load_crypto_strings_inited = 1;
108
    return ret;
109 110
}

111
static CRYPTO_ONCE add_all_ciphers = CRYPTO_ONCE_STATIC_INIT;
112
DEFINE_RUN_ONCE_STATIC(ossl_init_add_all_ciphers)
113 114 115 116 117 118 119 120
{
    /*
     * 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: "
121
                    "openssl_add_all_ciphers_int()\n");
122
# endif
123
    openssl_add_all_ciphers_int();
124
#endif
125
    return 1;
126 127
}

128
static CRYPTO_ONCE add_all_digests = CRYPTO_ONCE_STATIC_INIT;
129
DEFINE_RUN_ONCE_STATIC(ossl_init_add_all_digests)
130 131 132 133 134 135 136 137
{
    /*
     * 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: "
138
                    "openssl_add_all_digests()\n");
139
# endif
140
    openssl_add_all_digests_int();
141
#endif
142
    return 1;
143 144
}

145
DEFINE_RUN_ONCE_STATIC(ossl_init_no_add_algs)
146 147
{
    /* Do nothing */
148
    return 1;
149 150
}

151
static CRYPTO_ONCE config = CRYPTO_ONCE_STATIC_INIT;
152
static int config_inited = 0;
153
static const char *appname;
154
DEFINE_RUN_ONCE_STATIC(ossl_init_config)
155 156 157
{
#ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr,
158
            "OPENSSL_INIT: ossl_init_config: openssl_config(%s)\n",
159
            appname == NULL ? "NULL" : appname);
160
#endif
161
    openssl_config_int(appname);
162
    config_inited = 1;
163
    return 1;
164
}
165
DEFINE_RUN_ONCE_STATIC(ossl_init_no_config)
166 167 168
{
#ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr,
169
            "OPENSSL_INIT: ossl_init_config: openssl_no_config_int()\n");
170
#endif
171
    openssl_no_config_int();
172
    config_inited = 1;
173
    return 1;
174 175
}

176
static CRYPTO_ONCE async = CRYPTO_ONCE_STATIC_INIT;
177
static int async_inited = 0;
178
DEFINE_RUN_ONCE_STATIC(ossl_init_async)
179 180 181 182
{
#ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_async: async_init()\n");
#endif
183 184
    if (!async_init())
        return 0;
185
    async_inited = 1;
186
    return 1;
187 188 189
}

#ifndef OPENSSL_NO_ENGINE
190
static CRYPTO_ONCE engine_openssl = CRYPTO_ONCE_STATIC_INIT;
191
DEFINE_RUN_ONCE_STATIC(ossl_init_engine_openssl)
192 193 194
{
# ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_openssl: "
195
                    "engine_load_openssl_int()\n");
196
# endif
197
    engine_load_openssl_int();
198
    return 1;
199 200 201
}
# if !defined(OPENSSL_NO_HW) && \
    (defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV))
202
static CRYPTO_ONCE engine_cryptodev = CRYPTO_ONCE_STATIC_INIT;
203
DEFINE_RUN_ONCE_STATIC(ossl_init_engine_cryptodev)
204 205 206
{
#  ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_cryptodev: "
207
                    "engine_load_cryptodev_int()\n");
208
#  endif
209
    engine_load_cryptodev_int();
210
    return 1;
211 212 213 214
}
# endif

# ifndef OPENSSL_NO_RDRAND
215
static CRYPTO_ONCE engine_rdrand = CRYPTO_ONCE_STATIC_INIT;
216
DEFINE_RUN_ONCE_STATIC(ossl_init_engine_rdrand)
217 218 219
{
#  ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_rdrand: "
220
                    "engine_load_rdrand_int()\n");
221
#  endif
222
    engine_load_rdrand_int();
223
    return 1;
224 225
}
# endif
226
static CRYPTO_ONCE engine_dynamic = CRYPTO_ONCE_STATIC_INIT;
227
DEFINE_RUN_ONCE_STATIC(ossl_init_engine_dynamic)
228 229 230
{
# ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_dynamic: "
231
                    "engine_load_dynamic_int()\n");
232
# endif
233
    engine_load_dynamic_int();
234
    return 1;
235 236 237
}
# ifndef OPENSSL_NO_STATIC_ENGINE
#  if !defined(OPENSSL_NO_HW) && !defined(OPENSSL_NO_HW_PADLOCK)
238
static CRYPTO_ONCE engine_padlock = CRYPTO_ONCE_STATIC_INIT;
239
DEFINE_RUN_ONCE_STATIC(ossl_init_engine_padlock)
240 241 242
{
#   ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_padlock: "
243
                    "engine_load_padlock_int()\n");
244
#   endif
245
    engine_load_padlock_int();
246
    return 1;
247 248 249
}
#  endif
#  if defined(OPENSSL_SYS_WIN32) && !defined(OPENSSL_NO_CAPIENG)
250
static CRYPTO_ONCE engine_capi = CRYPTO_ONCE_STATIC_INIT;
251
DEFINE_RUN_ONCE_STATIC(ossl_init_engine_capi)
252 253 254
{
#   ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_capi: "
255
                    "engine_load_capi_int()\n");
256
#   endif
257
    engine_load_capi_int();
258
    return 1;
259 260
}
#  endif
C
clucey 已提交
261
#  if !defined(OPENSSL_NO_AFALGENG)
R
Richard Levitte 已提交
262
static CRYPTO_ONCE engine_afalg = CRYPTO_ONCE_STATIC_INIT;
263
DEFINE_RUN_ONCE_STATIC(ossl_init_engine_afalg)
C
clucey 已提交
264 265 266
{
#   ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_afalg: "
267
                    "engine_load_afalg_int()\n");
C
clucey 已提交
268
#   endif
269
    engine_load_afalg_int();
270
    return 1;
C
clucey 已提交
271 272
}
#  endif
273 274 275
# endif
#endif

E
Emilia Kasper 已提交
276
#ifndef OPENSSL_NO_COMP
277
static CRYPTO_ONCE zlib = CRYPTO_ONCE_STATIC_INIT;
E
Emilia Kasper 已提交
278

279
static int zlib_inited = 0;
280
DEFINE_RUN_ONCE_STATIC(ossl_init_zlib)
281 282 283
{
    /* Do nothing - we need to know about this for the later cleanup */
    zlib_inited = 1;
284
    return 1;
285
}
E
Emilia Kasper 已提交
286
#endif
287

M
Matt Caswell 已提交
288
static void ossl_init_thread_stop(struct thread_local_inits_st *locals)
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
{
    /* 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: "
305
                        "err_delete_thread_state()\n");
306
#endif
307
        err_delete_thread_state();
308 309 310 311 312
    }

    OPENSSL_free(locals);
}

313
void OPENSSL_thread_stop(void)
M
Matt Caswell 已提交
314 315 316 317 318
{
    ossl_init_thread_stop(
        (struct thread_local_inits_st *)ossl_init_get_thread_local(0));
}

319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
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;
}

345
void OPENSSL_cleanup(void)
346 347 348
{
    OPENSSL_INIT_STOP *currhandler, *lasthandler;

349 350 351 352
    /* If we've not been inited then no need to deinit */
    if (!base_inited)
        return;

R
Rich Salz 已提交
353 354 355 356 357
    /* Might be explicitly called and also by atexit */
    if (stopped)
        return;
    stopped = 1;

358 359 360 361 362 363 364 365 366 367 368 369 370 371
    /*
     * 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;
372 373 374

    CRYPTO_THREAD_lock_free(init_lock);

375 376 377 378 379
    /*
     * We assume we are single-threaded for this function, i.e. no race
     * conditions for the various "*_inited" vars below.
     */

E
Emilia Kasper 已提交
380
#ifndef OPENSSL_NO_COMP
381 382
    if (zlib_inited) {
#ifdef OPENSSL_INIT_DEBUG
383
        fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
384
                        "comp_zlib_cleanup_int()\n");
385
#endif
386
        comp_zlib_cleanup_int();
387
    }
E
Emilia Kasper 已提交
388
#endif
389

M
Matt Caswell 已提交
390 391 392 393 394 395 396 397
    if (async_inited) {
# ifdef OPENSSL_INIT_DEBUG
        fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
                        "async_deinit()\n");
# endif
        async_deinit();
    }

398 399
    if (load_crypto_strings_inited) {
#ifdef OPENSSL_INIT_DEBUG
400
        fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
401
                        "err_free_strings_int()\n");
402
#endif
403
        err_free_strings_int();
404 405
    }

406
    CRYPTO_THREAD_cleanup_local(&threadstopkey);
M
Matt Caswell 已提交
407

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

452
    base_inited = 0;
453 454 455 456 457 458 459
}

/*
 * 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.
 */
460
int OPENSSL_init_crypto(uint64_t opts, const OPENSSL_INIT_SETTINGS *settings)
461
{
462 463 464 465 466 467 468 469 470 471
    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 已提交
472
            CRYPTOerr(CRYPTO_F_OPENSSL_INIT_CRYPTO, ERR_R_INIT_FAIL);
473
        }
474
        return 0;
475
    }
R
Rich Salz 已提交
476

477
    if (!RUN_ONCE(&base, ossl_init_base))
478
        return 0;
479

480
    if ((opts & OPENSSL_INIT_NO_LOAD_CRYPTO_STRINGS)
481 482
            && !RUN_ONCE(&load_crypto_strings,
                         ossl_init_no_load_crypto_strings))
483
        return 0;
484

485
    if ((opts & OPENSSL_INIT_LOAD_CRYPTO_STRINGS)
486
            && !RUN_ONCE(&load_crypto_strings, ossl_init_load_crypto_strings))
487
        return 0;
488

489
    if ((opts & OPENSSL_INIT_NO_ADD_ALL_CIPHERS)
490
            && !RUN_ONCE(&add_all_ciphers, ossl_init_no_add_algs))
491
        return 0;
492

493
    if ((opts & OPENSSL_INIT_ADD_ALL_CIPHERS)
494
            && !RUN_ONCE(&add_all_ciphers, ossl_init_add_all_ciphers))
495
        return 0;
496

497
    if ((opts & OPENSSL_INIT_NO_ADD_ALL_DIGESTS)
498
            && !RUN_ONCE(&add_all_digests, ossl_init_no_add_algs))
499
        return 0;
500

501
    if ((opts & OPENSSL_INIT_ADD_ALL_DIGESTS)
502
            && !RUN_ONCE(&add_all_digests, ossl_init_add_all_digests))
503
        return 0;
504

505
    if ((opts & OPENSSL_INIT_NO_LOAD_CONFIG)
506
            && !RUN_ONCE(&config, ossl_init_no_config))
507
        return 0;
508 509

    if (opts & OPENSSL_INIT_LOAD_CONFIG) {
510
        int ret;
511
        CRYPTO_THREAD_write_lock(init_lock);
512
        appname = (settings == NULL) ? NULL : settings->appname;
513
        ret = RUN_ONCE(&config, ossl_init_config);
514
        CRYPTO_THREAD_unlock(init_lock);
515 516
        if (!ret)
            return 0;
517 518
    }

519
    if ((opts & OPENSSL_INIT_ASYNC)
520
            && !RUN_ONCE(&async, ossl_init_async))
521
        return 0;
522

523
#ifndef OPENSSL_NO_ENGINE
524
    if ((opts & OPENSSL_INIT_ENGINE_OPENSSL)
525
            && !RUN_ONCE(&engine_openssl, ossl_init_engine_openssl))
526
        return 0;
527 528
# if !defined(OPENSSL_NO_HW) && \
    (defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV))
529
    if ((opts & OPENSSL_INIT_ENGINE_CRYPTODEV)
530
            && !RUN_ONCE(&engine_cryptodev, ossl_init_engine_cryptodev))
531
        return 0;
532 533
# endif
# ifndef OPENSSL_NO_RDRAND
534
    if ((opts & OPENSSL_INIT_ENGINE_RDRAND)
535
            && !RUN_ONCE(&engine_rdrand, ossl_init_engine_rdrand))
536
        return 0;
537
# endif
538
    if ((opts & OPENSSL_INIT_ENGINE_DYNAMIC)
539
            && !RUN_ONCE(&engine_dynamic, ossl_init_engine_dynamic))
540
        return 0;
541 542
# ifndef OPENSSL_NO_STATIC_ENGINE
#  if !defined(OPENSSL_NO_HW) && !defined(OPENSSL_NO_HW_PADLOCK)
543
    if ((opts & OPENSSL_INIT_ENGINE_PADLOCK)
544
            && !RUN_ONCE(&engine_padlock, ossl_init_engine_padlock))
545
        return 0;
546 547
#  endif
#  if defined(OPENSSL_SYS_WIN32) && !defined(OPENSSL_NO_CAPIENG)
548
    if ((opts & OPENSSL_INIT_ENGINE_CAPI)
549
            && !RUN_ONCE(&engine_capi, ossl_init_engine_capi))
550
        return 0;
551
#  endif
C
clucey 已提交
552
#  if !defined(OPENSSL_NO_AFALGENG)
553
    if ((opts & OPENSSL_INIT_ENGINE_AFALG)
554
            && !RUN_ONCE(&engine_afalg, ossl_init_engine_afalg))
555
        return 0;
C
clucey 已提交
556
#  endif
557 558
# endif
    if (opts & (OPENSSL_INIT_ENGINE_ALL_BUILTIN
559
                | OPENSSL_INIT_ENGINE_OPENSSL
C
clucey 已提交
560
                | 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
            && !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;
}