init.c 19.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
/*
 * Written by Matt Caswell for the OpenSSL project.
 */
/* ====================================================================
 * Copyright (c) 2016 The OpenSSL Project.  All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 *
 * 3. All advertising materials mentioning features or use of this
 *    software must display the following acknowledgment:
 *    "This product includes software developed by the OpenSSL Project
 *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
 *
 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
 *    endorse or promote products derived from this software without
 *    prior written permission. For written permission, please contact
 *    openssl-core@openssl.org.
 *
 * 5. Products derived from this software may not be called "OpenSSL"
 *    nor may "OpenSSL" appear in their names without prior written
 *    permission of the OpenSSL Project.
 *
 * 6. Redistributions of any form whatsoever must retain the following
 *    acknowledgment:
 *    "This product includes software developed by the OpenSSL Project
 *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
 *
 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 * ====================================================================
 *
 * This product includes cryptographic software written by Eric Young
 * (eay@cryptsoft.com).  This product includes software written by Tim
 * Hudson (tjh@cryptsoft.com).
 *
 */

58
#include <internal/threads.h>
59 60
#include <internal/cryptlib_int.h>
#include <openssl/err.h>
61
#include <openssl/rand.h>
62 63 64 65
#include <openssl/evp.h>
#include <internal/evp_int.h>
#include <internal/conf.h>
#include <internal/async.h>
R
Rich Salz 已提交
66
#ifndef OPENSSL_NO_ENGINE
67
#include <internal/engine.h>
R
Rich Salz 已提交
68
#endif
69 70 71
#include <openssl/comp.h>
#include <internal/err.h>
#include <stdlib.h>
R
Rich Salz 已提交
72 73 74
#include <assert.h>

static int stopped = 0;
75

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

78
static CRYPTO_THREAD_LOCAL threadstopkey;
79 80 81 82 83 84

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

85
static struct thread_local_inits_st *ossl_init_get_thread_local(int alloc)
86
{
87 88
    struct thread_local_inits_st *local =
        CRYPTO_THREAD_get_local(&threadstopkey);
89 90 91

    if (local == NULL && alloc) {
        local = OPENSSL_zalloc(sizeof *local);
92
        CRYPTO_THREAD_set_local(&threadstopkey, local);
93
    }
94
    if (!alloc) {
95
        CRYPTO_THREAD_set_local(&threadstopkey, NULL);
96
    }
97 98 99 100

    return local;
}

R
Rich Salz 已提交
101
typedef struct ossl_init_stop_st OPENSSL_INIT_STOP;
102 103 104 105 106 107
struct ossl_init_stop_st {
    void (*handler)(void);
    OPENSSL_INIT_STOP *next;
};

static OPENSSL_INIT_STOP *stop_handlers = NULL;
108
static CRYPTO_RWLOCK *init_lock = NULL;
109

110
static CRYPTO_ONCE base = CRYPTO_ONCE_STATIC_INIT;
111 112 113 114 115 116
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
117 118 119 120 121
    /*
     * 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);
122
#ifndef OPENSSL_SYS_UEFI
123
    atexit(OPENSSL_cleanup);
124
#endif
125
    init_lock = CRYPTO_THREAD_lock_new();
126 127 128 129
    OPENSSL_cpuid_setup();
    base_inited = 1;
}

130
static CRYPTO_ONCE load_crypto_strings = CRYPTO_ONCE_STATIC_INIT;
131 132 133 134 135 136 137 138 139
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)
{
140 141 142 143 144
    /*
     * 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)
145 146 147 148 149 150 151 152 153
# ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_load_crypto_strings: "
                    "err_load_crypto_strings_intern()\n");
# endif
    err_load_crypto_strings_intern();
#endif
    load_crypto_strings_inited = 1;
}

154
static CRYPTO_ONCE add_all_ciphers = CRYPTO_ONCE_STATIC_INIT;
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
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: "
                    "openssl_add_all_ciphers_internal()\n");
# endif
    openssl_add_all_ciphers_internal();
# ifndef OPENSSL_NO_ENGINE
#  if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV)
    ENGINE_setup_bsd_cryptodev();
#  endif
# endif
#endif
}

175
static CRYPTO_ONCE add_all_digests = CRYPTO_ONCE_STATIC_INIT;
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
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: "
                    "openssl_add_all_digests_internal()\n");
# endif
    openssl_add_all_digests_internal();
# ifndef OPENSSL_NO_ENGINE
#  if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV)
    ENGINE_setup_bsd_cryptodev();
#  endif
# endif
#endif
}

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

202
static CRYPTO_ONCE config = CRYPTO_ONCE_STATIC_INIT;
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
static int config_inited = 0;
static const char *config_filename;
static void ossl_init_config(void)
{
#ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr,
            "OPENSSL_INIT: ossl_init_config: openssl_config_internal(%s)\n",
            config_filename==NULL?"NULL":config_filename);
#endif
    openssl_config_internal(config_filename);
    config_inited = 1;
}
static void ossl_init_no_config(void)
{
#ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr,
            "OPENSSL_INIT: ossl_init_config: openssl_no_config_internal()\n");
#endif
    openssl_no_config_internal();
    config_inited = 1;
}

R
Rich Salz 已提交
225
#ifndef OPENSSL_NO_ASYNC
226
static CRYPTO_ONCE async = CRYPTO_ONCE_STATIC_INIT;
227 228 229 230 231 232 233 234 235
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;
}
R
Rich Salz 已提交
236
#endif
237 238

#ifndef OPENSSL_NO_ENGINE
239
static CRYPTO_ONCE engine_openssl = CRYPTO_ONCE_STATIC_INIT;
240 241 242 243 244 245 246 247 248 249
static void ossl_init_engine_openssl(void)
{
# ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_openssl: "
                    "engine_load_openssl_internal()\n");
# endif
    engine_load_openssl_internal();
}
# if !defined(OPENSSL_NO_HW) && \
    (defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV))
250
static CRYPTO_ONCE engine_cryptodev = CRYPTO_ONCE_STATIC_INIT;
251 252 253 254 255 256 257 258 259 260 261
static void ossl_init_engine_cryptodev(void)
{
#  ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_cryptodev: "
                    "engine_load_cryptodev_internal()\n");
#  endif
    engine_load_cryptodev_internal();
}
# endif

# ifndef OPENSSL_NO_RDRAND
262
static CRYPTO_ONCE engine_rdrand = CRYPTO_ONCE_STATIC_INIT;
263 264 265 266 267 268 269 270 271
static void ossl_init_engine_rdrand(void)
{
#  ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_rdrand: "
                    "engine_load_rdrand_internal()\n");
#  endif
    engine_load_rdrand_internal();
}
# endif
272
static CRYPTO_ONCE engine_dynamic = CRYPTO_ONCE_STATIC_INIT;
273 274 275 276 277 278 279 280 281 282
static void ossl_init_engine_dynamic(void)
{
# ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_dynamic: "
                    "engine_load_dynamic_internal()\n");
# endif
    engine_load_dynamic_internal();
}
# ifndef OPENSSL_NO_STATIC_ENGINE
#  if !defined(OPENSSL_NO_HW) && !defined(OPENSSL_NO_HW_PADLOCK)
283
static CRYPTO_ONCE engine_padlock = CRYPTO_ONCE_STATIC_INIT;
284 285 286 287 288 289 290 291 292 293
static void ossl_init_engine_padlock(void)
{
#   ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_padlock: "
                    "engine_load_padlock_internal()\n");
#   endif
    engine_load_padlock_internal();
}
#  endif
#  if defined(OPENSSL_SYS_WIN32) && !defined(OPENSSL_NO_CAPIENG)
294
static CRYPTO_ONCE engine_capi = CRYPTO_ONCE_STATIC_INIT;
295 296 297 298 299 300 301 302 303
static void ossl_init_engine_capi(void)
{
#   ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_capi: "
                    "engine_load_capi_internal()\n");
#   endif
    engine_load_capi_internal();
}
#  endif
304
static CRYPTO_ONCE engine_dasync = CRYPTO_ONCE_STATIC_INIT;
305 306 307 308 309 310 311 312
static void ossl_init_engine_dasync(void)
{
# ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_dasync: "
                    "engine_load_dasync_internal()\n");
# endif
    engine_load_dasync_internal();
}
C
clucey 已提交
313 314 315 316 317 318 319 320 321 322 323
#  if !defined(OPENSSL_NO_AFALGENG)
static OPENSSL_INIT_ONCE engine_afalg = OPENSSL_INIT_ONCE_STATIC_INIT;
static void ossl_init_engine_afalg(void)
{
#   ifdef OPENSSL_INIT_DEBUG
    fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_afalg: "
                    "engine_load_afalg_internal()\n");
#   endif
    engine_load_afalg_internal();
}
#  endif
324 325 326
# endif
#endif

E
Emilia Kasper 已提交
327
#ifndef OPENSSL_NO_COMP
328
static CRYPTO_ONCE zlib = CRYPTO_ONCE_STATIC_INIT;
E
Emilia Kasper 已提交
329

330 331 332 333 334 335
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 已提交
336
#endif
337

M
Matt Caswell 已提交
338
static void ossl_init_thread_stop(struct thread_local_inits_st *locals)
339 340 341 342 343
{
    /* Can't do much about this */
    if (locals == NULL)
        return;

R
Rich Salz 已提交
344
#ifndef OPENSSL_NO_ASYNC
345 346 347 348 349 350 351
    if (locals->async) {
#ifdef OPENSSL_INIT_DEBUG
        fprintf(stderr, "OPENSSL_INIT: ossl_init_thread_stop: "
                        "ASYNC_cleanup_thread()\n");
#endif
        ASYNC_cleanup_thread();
    }
R
Rich Salz 已提交
352
#endif
353 354 355 356

    if (locals->err_state) {
#ifdef OPENSSL_INIT_DEBUG
        fprintf(stderr, "OPENSSL_INIT: ossl_init_thread_stop: "
357
                        "ERR_remove_thread_state()\n");
358
#endif
359
        ERR_remove_thread_state();
360 361 362 363 364
    }

    OPENSSL_free(locals);
}

365
void OPENSSL_thread_stop(void)
M
Matt Caswell 已提交
366 367 368 369 370
{
    ossl_init_thread_stop(
        (struct thread_local_inits_st *)ossl_init_get_thread_local(0));
}

371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
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;
}

397
void OPENSSL_cleanup(void)
398 399 400
{
    OPENSSL_INIT_STOP *currhandler, *lasthandler;

401 402 403 404
    /* If we've not been inited then no need to deinit */
    if (!base_inited)
        return;

R
Rich Salz 已提交
405 406 407 408 409
    /* Might be explicitly called and also by atexit */
    if (stopped)
        return;
    stopped = 1;

410 411 412 413 414 415 416 417 418 419 420 421 422 423
    /*
     * 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;
424 425 426

    CRYPTO_THREAD_lock_free(init_lock);

427 428 429 430 431
    /*
     * We assume we are single-threaded for this function, i.e. no race
     * conditions for the various "*_inited" vars below.
     */

E
Emilia Kasper 已提交
432
#ifndef OPENSSL_NO_COMP
433 434
    if (zlib_inited) {
#ifdef OPENSSL_INIT_DEBUG
435
        fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
436 437 438 439
                        "COMP_zlib_cleanup()\n");
#endif
        COMP_zlib_cleanup();
    }
E
Emilia Kasper 已提交
440
#endif
441

M
Matt Caswell 已提交
442 443 444 445 446 447 448 449 450 451
#ifndef OPENSSL_NO_ASYNC
    if (async_inited) {
# ifdef OPENSSL_INIT_DEBUG
        fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
                        "async_deinit()\n");
# endif
        async_deinit();
    }
#endif

452 453
    if (load_crypto_strings_inited) {
#ifdef OPENSSL_INIT_DEBUG
454
        fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
455 456 457 458 459
                        "ERR_free_strings()\n");
#endif
        ERR_free_strings();
    }

460
    CRYPTO_THREAD_cleanup_local(&threadstopkey);
M
Matt Caswell 已提交
461

462
#ifdef OPENSSL_INIT_DEBUG
463
#ifndef OPENSSL_NO_ENGINE
464 465
    fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
                    "ENGINE_cleanup()\n");
466
#endif
467 468 469 470 471 472 473 474
    fprintf(stderr, "OPENSSL_INIT: OPENSSL_INIT_library_stop: "
                    "CRYPTO_cleanup_all_ex_data()\n");
    fprintf(stderr, "OPENSSL_INIT: OPENSSL_INIT_library_stop: "
                    "EVP_cleanup()\n");
    fprintf(stderr, "OPENSSL_INIT: OPENSSL_INIT_library_stop: "
                    "CONF_modules_free()\n");
    fprintf(stderr, "OPENSSL_INIT: OPENSSL_INIT_library_stop: "
                    "RAND_cleanup()\n");
475

476
#endif
477 478 479 480 481
/*
 * Note that cleanup order is important.
 * For example, ENGINEs use CRYPTO_EX_DATA and therefore, must be cleaned up
 * before the ex data handlers are wiped in CRYPTO_cleanup_all_ex_data().
 */
482 483 484
#ifndef OPENSSL_NO_ENGINE
    ENGINE_cleanup();
#endif
485
    CRYPTO_cleanup_all_ex_data();
486
    BIO_sock_cleanup();
487
    EVP_cleanup();
488
    OBJ_cleanup();
489
    CONF_modules_free();
490 491
    RAND_cleanup();
    base_inited = 0;
492 493 494 495 496 497 498
}

/*
 * 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.
 */
499
int OPENSSL_init_crypto(uint64_t opts, const OPENSSL_INIT_SETTINGS *settings)
500
{
501 502 503 504 505 506 507 508 509 510
    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 已提交
511
            CRYPTOerr(CRYPTO_F_OPENSSL_INIT_CRYPTO, ERR_R_INIT_FAIL);
512
        }
513
        return 0;
514
    }
R
Rich Salz 已提交
515

516 517
    if (!CRYPTO_THREAD_run_once(&base, ossl_init_base))
        return 0;
518

519 520 521 522
    if ((opts & OPENSSL_INIT_NO_LOAD_CRYPTO_STRINGS)
            && !CRYPTO_THREAD_run_once(&load_crypto_strings,
                                       ossl_init_no_load_crypto_strings))
        return 0;
523

524 525 526 527
    if ((opts & OPENSSL_INIT_LOAD_CRYPTO_STRINGS)
            && !CRYPTO_THREAD_run_once(&load_crypto_strings,
                                       ossl_init_load_crypto_strings))
        return 0;
528

529 530 531
    if ((opts & OPENSSL_INIT_NO_ADD_ALL_CIPHERS)
            && !CRYPTO_THREAD_run_once(&add_all_ciphers, ossl_init_no_add_algs))
        return 0;
532

533 534 535 536
    if ((opts & OPENSSL_INIT_ADD_ALL_CIPHERS)
            && !CRYPTO_THREAD_run_once(&add_all_ciphers,
                                       ossl_init_add_all_ciphers))
        return 0;
537

538 539 540
    if ((opts & OPENSSL_INIT_NO_ADD_ALL_DIGESTS)
            && !CRYPTO_THREAD_run_once(&add_all_digests, ossl_init_no_add_algs))
        return 0;
541

542 543 544 545
    if ((opts & OPENSSL_INIT_ADD_ALL_DIGESTS)
            && !CRYPTO_THREAD_run_once(&add_all_digests,
                                       ossl_init_add_all_digests))
        return 0;
546

547 548 549
    if ((opts & OPENSSL_INIT_NO_LOAD_CONFIG)
            && !CRYPTO_THREAD_run_once(&config, ossl_init_no_config))
        return 0;
550 551

    if (opts & OPENSSL_INIT_LOAD_CONFIG) {
552
        int ret;
553
        CRYPTO_THREAD_write_lock(init_lock);
R
Rich Salz 已提交
554
        config_filename = (settings == NULL) ? NULL : settings->config_name;
555
        ret = CRYPTO_THREAD_run_once(&config, ossl_init_config);
556
        CRYPTO_THREAD_unlock(init_lock);
557 558
        if (!ret)
            return 0;
559 560
    }

R
Rich Salz 已提交
561
#ifndef OPENSSL_NO_ASYNC
562 563 564
    if ((opts & OPENSSL_INIT_ASYNC)
            && !CRYPTO_THREAD_run_once(&async, ossl_init_async))
        return 0;
R
Rich Salz 已提交
565
#endif
566
#ifndef OPENSSL_NO_ENGINE
567 568 569 570
    if ((opts & OPENSSL_INIT_ENGINE_OPENSSL)
            && !CRYPTO_THREAD_run_once(&engine_openssl,
                                       ossl_init_engine_openssl))
        return 0;
571 572
# if !defined(OPENSSL_NO_HW) && \
    (defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV))
573 574 575 576
    if ((opts & OPENSSL_INIT_ENGINE_CRYPTODEV)
            && !CRYPTO_THREAD_run_once(&engine_cryptodev,
                                       ossl_init_engine_cryptodev))
        return 0;
577 578
# endif
# ifndef OPENSSL_NO_RDRAND
579 580 581
    if ((opts & OPENSSL_INIT_ENGINE_RDRAND)
            && !CRYPTO_THREAD_run_once(&engine_rdrand, ossl_init_engine_rdrand))
        return 0;
582
# endif
583 584 585 586
    if ((opts & OPENSSL_INIT_ENGINE_DYNAMIC)
            && !CRYPTO_THREAD_run_once(&engine_dynamic,
                                       ossl_init_engine_dynamic))
        return 0;
587 588
# ifndef OPENSSL_NO_STATIC_ENGINE
#  if !defined(OPENSSL_NO_HW) && !defined(OPENSSL_NO_HW_PADLOCK)
589 590 591 592
    if ((opts & OPENSSL_INIT_ENGINE_PADLOCK)
            && CRYPTO_THREAD_run_once(&engine_padlock,
                                      ossl_init_engine_padlock))
        return 0;
593 594
#  endif
#  if defined(OPENSSL_SYS_WIN32) && !defined(OPENSSL_NO_CAPIENG)
595 596 597
    if ((opts & OPENSSL_INIT_ENGINE_CAPI)
            && CRYPTO_THREAD_run_once(&engine_capi, ossl_init_engine_capi))
        return 0;
598
#  endif
599 600 601
    if ((opts & OPENSSL_INIT_ENGINE_DASYNC)
            && !CRYPTO_THREAD_run_once(&engine_dasync, ossl_init_engine_dasync))
        return 0;
C
clucey 已提交
602
#  if !defined(OPENSSL_NO_AFALGENG)
603 604 605
    if ((opts & OPENSSL_INIT_ENGINE_AFALG)
            && !CRYPTO_THREAD_run_once(&engine_afalg, ossl_init_engine_afalg))
        return 0;
C
clucey 已提交
606
#  endif
607 608
# endif
    if (opts & (OPENSSL_INIT_ENGINE_ALL_BUILTIN
C
clucey 已提交
609 610
                | OPENSSL_INIT_ENGINE_DASYNC | OPENSSL_INIT_ENGINE_OPENSSL
                | OPENSSL_INIT_ENGINE_AFALG)) {
611 612 613 614
        ENGINE_register_all_complete();
    }
#endif

E
Emilia Kasper 已提交
615
#ifndef OPENSSL_NO_COMP
616 617 618
    if ((opts & OPENSSL_INIT_ZLIB)
            && CRYPTO_THREAD_run_once(&zlib, ossl_init_zlib))
        return 0;
E
Emilia Kasper 已提交
619
#endif
620 621

    return 1;
622 623
}

624
int OPENSSL_atexit(void (*handler)(void))
625 626 627 628 629 630 631 632 633 634 635 636 637
{
    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;
}