dc24c0269319a4d3ba69408594e1959a43ca9cf4
[openssl.git] / crypto / init.c
1 /*
2  * Written by Matt Caswell for the OpenSSL project.
3  */
4 /* ====================================================================
5  * Copyright (c) 2016 The OpenSSL Project.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  *
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in
16  *    the documentation and/or other materials provided with the
17  *    distribution.
18  *
19  * 3. All advertising materials mentioning features or use of this
20  *    software must display the following acknowledgment:
21  *    "This product includes software developed by the OpenSSL Project
22  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
23  *
24  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
25  *    endorse or promote products derived from this software without
26  *    prior written permission. For written permission, please contact
27  *    openssl-core@openssl.org.
28  *
29  * 5. Products derived from this software may not be called "OpenSSL"
30  *    nor may "OpenSSL" appear in their names without prior written
31  *    permission of the OpenSSL Project.
32  *
33  * 6. Redistributions of any form whatsoever must retain the following
34  *    acknowledgment:
35  *    "This product includes software developed by the OpenSSL Project
36  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
37  *
38  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
39  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
40  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
41  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
42  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
43  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
44  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
45  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
46  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
47  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
48  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
49  * OF THE POSSIBILITY OF SUCH DAMAGE.
50  * ====================================================================
51  *
52  * This product includes cryptographic software written by Eric Young
53  * (eay@cryptsoft.com).  This product includes software written by Tim
54  * Hudson (tjh@cryptsoft.com).
55  *
56  */
57
58 #include <internal/threads.h>
59 #include <internal/cryptlib_int.h>
60 #include <openssl/err.h>
61 #include <internal/rand.h>
62 #include <internal/bio.h>
63 #include <openssl/evp.h>
64 #include <internal/evp_int.h>
65 #include <internal/conf.h>
66 #include <internal/async.h>
67 #include <internal/engine.h>
68 #include <internal/comp.h>
69 #include <internal/err.h>
70 #include <stdlib.h>
71 #include <assert.h>
72
73 static int stopped = 0;
74
75 static void ossl_init_thread_stop(struct thread_local_inits_st *locals);
76
77 static CRYPTO_THREAD_LOCAL threadstopkey;
78
79 static void ossl_init_thread_stop_wrap(void *local)
80 {
81     ossl_init_thread_stop((struct thread_local_inits_st *)local);
82 }
83
84 static struct thread_local_inits_st *ossl_init_get_thread_local(int alloc)
85 {
86     struct thread_local_inits_st *local =
87         CRYPTO_THREAD_get_local(&threadstopkey);
88
89     if (local == NULL && alloc) {
90         local = OPENSSL_zalloc(sizeof *local);
91         CRYPTO_THREAD_set_local(&threadstopkey, local);
92     }
93     if (!alloc) {
94         CRYPTO_THREAD_set_local(&threadstopkey, NULL);
95     }
96
97     return local;
98 }
99
100 typedef struct ossl_init_stop_st OPENSSL_INIT_STOP;
101 struct ossl_init_stop_st {
102     void (*handler)(void);
103     OPENSSL_INIT_STOP *next;
104 };
105
106 static OPENSSL_INIT_STOP *stop_handlers = NULL;
107 static CRYPTO_RWLOCK *init_lock = NULL;
108
109 static CRYPTO_ONCE base = CRYPTO_ONCE_STATIC_INIT;
110 static int base_inited = 0;
111 static void ossl_init_base(void)
112 {
113 #ifdef OPENSSL_INIT_DEBUG
114     fprintf(stderr, "OPENSSL_INIT: ossl_init_base: Setting up stop handlers\n");
115 #endif
116     /*
117      * We use a dummy thread local key here. We use the destructor to detect
118      * when the thread is going to stop (where that feature is available)
119      */
120     CRYPTO_THREAD_init_local(&threadstopkey, ossl_init_thread_stop_wrap);
121 #ifndef OPENSSL_SYS_UEFI
122     atexit(OPENSSL_cleanup);
123 #endif
124     init_lock = CRYPTO_THREAD_lock_new();
125     OPENSSL_cpuid_setup();
126     base_inited = 1;
127 }
128
129 static CRYPTO_ONCE load_crypto_strings = CRYPTO_ONCE_STATIC_INIT;
130 static int load_crypto_strings_inited = 0;
131 static void ossl_init_no_load_crypto_strings(void)
132 {
133     /* Do nothing in this case */
134     return;
135 }
136
137 static void ossl_init_load_crypto_strings(void)
138 {
139     /*
140      * OPENSSL_NO_AUTOERRINIT is provided here to prevent at compile time
141      * pulling in all the error strings during static linking
142      */
143 #if !defined(OPENSSL_NO_ERR) && !defined(OPENSSL_NO_AUTOERRINIT)
144 # ifdef OPENSSL_INIT_DEBUG
145     fprintf(stderr, "OPENSSL_INIT: ossl_init_load_crypto_strings: "
146                     "err_load_crypto_strings_intern()\n");
147 # endif
148     err_load_crypto_strings_intern();
149 #endif
150     load_crypto_strings_inited = 1;
151 }
152
153 static CRYPTO_ONCE add_all_ciphers = CRYPTO_ONCE_STATIC_INIT;
154 static void ossl_init_add_all_ciphers(void)
155 {
156     /*
157      * OPENSSL_NO_AUTOALGINIT is provided here to prevent at compile time
158      * pulling in all the ciphers during static linking
159      */
160 #ifndef OPENSSL_NO_AUTOALGINIT
161 # ifdef OPENSSL_INIT_DEBUG
162     fprintf(stderr, "OPENSSL_INIT: ossl_init_add_all_ciphers: "
163                     "openssl_add_all_ciphers_internal()\n");
164 # endif
165     openssl_add_all_ciphers_internal();
166 # ifndef OPENSSL_NO_ENGINE
167 #  if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV)
168     ENGINE_setup_bsd_cryptodev();
169 #  endif
170 # endif
171 #endif
172 }
173
174 static CRYPTO_ONCE add_all_digests = CRYPTO_ONCE_STATIC_INIT;
175 static void ossl_init_add_all_digests(void)
176 {
177     /*
178      * OPENSSL_NO_AUTOALGINIT is provided here to prevent at compile time
179      * pulling in all the ciphers during static linking
180      */
181 #ifndef OPENSSL_NO_AUTOALGINIT
182 # ifdef OPENSSL_INIT_DEBUG
183     fprintf(stderr, "OPENSSL_INIT: ossl_init_add_all_digests: "
184                     "openssl_add_all_digests_internal()\n");
185 # endif
186     openssl_add_all_digests_internal();
187 # ifndef OPENSSL_NO_ENGINE
188 #  if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV)
189     ENGINE_setup_bsd_cryptodev();
190 #  endif
191 # endif
192 #endif
193 }
194
195 static void ossl_init_no_add_algs(void)
196 {
197     /* Do nothing */
198     return;
199 }
200
201 static CRYPTO_ONCE config = CRYPTO_ONCE_STATIC_INIT;
202 static int config_inited = 0;
203 static const char *config_filename;
204 static void ossl_init_config(void)
205 {
206 #ifdef OPENSSL_INIT_DEBUG
207     fprintf(stderr,
208             "OPENSSL_INIT: ossl_init_config: openssl_config_internal(%s)\n",
209             config_filename==NULL?"NULL":config_filename);
210 #endif
211     openssl_config_internal(config_filename);
212     config_inited = 1;
213 }
214 static void ossl_init_no_config(void)
215 {
216 #ifdef OPENSSL_INIT_DEBUG
217     fprintf(stderr,
218             "OPENSSL_INIT: ossl_init_config: openssl_no_config_internal()\n");
219 #endif
220     openssl_no_config_internal();
221     config_inited = 1;
222 }
223
224 static CRYPTO_ONCE async = CRYPTO_ONCE_STATIC_INIT;
225 static int async_inited = 0;
226 static void ossl_init_async(void)
227 {
228 #ifdef OPENSSL_INIT_DEBUG
229     fprintf(stderr, "OPENSSL_INIT: ossl_init_async: async_init()\n");
230 #endif
231     async_init();
232     async_inited = 1;
233 }
234
235 #ifndef OPENSSL_NO_ENGINE
236 static CRYPTO_ONCE engine_openssl = CRYPTO_ONCE_STATIC_INIT;
237 static void ossl_init_engine_openssl(void)
238 {
239 # ifdef OPENSSL_INIT_DEBUG
240     fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_openssl: "
241                     "engine_load_openssl_internal()\n");
242 # endif
243     engine_load_openssl_internal();
244 }
245 # if !defined(OPENSSL_NO_HW) && \
246     (defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV))
247 static CRYPTO_ONCE engine_cryptodev = CRYPTO_ONCE_STATIC_INIT;
248 static void ossl_init_engine_cryptodev(void)
249 {
250 #  ifdef OPENSSL_INIT_DEBUG
251     fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_cryptodev: "
252                     "engine_load_cryptodev_internal()\n");
253 #  endif
254     engine_load_cryptodev_internal();
255 }
256 # endif
257
258 # ifndef OPENSSL_NO_RDRAND
259 static CRYPTO_ONCE engine_rdrand = CRYPTO_ONCE_STATIC_INIT;
260 static void ossl_init_engine_rdrand(void)
261 {
262 #  ifdef OPENSSL_INIT_DEBUG
263     fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_rdrand: "
264                     "engine_load_rdrand_internal()\n");
265 #  endif
266     engine_load_rdrand_internal();
267 }
268 # endif
269 static CRYPTO_ONCE engine_dynamic = CRYPTO_ONCE_STATIC_INIT;
270 static void ossl_init_engine_dynamic(void)
271 {
272 # ifdef OPENSSL_INIT_DEBUG
273     fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_dynamic: "
274                     "engine_load_dynamic_internal()\n");
275 # endif
276     engine_load_dynamic_internal();
277 }
278 # ifndef OPENSSL_NO_STATIC_ENGINE
279 #  if !defined(OPENSSL_NO_HW) && !defined(OPENSSL_NO_HW_PADLOCK)
280 static CRYPTO_ONCE engine_padlock = CRYPTO_ONCE_STATIC_INIT;
281 static void ossl_init_engine_padlock(void)
282 {
283 #   ifdef OPENSSL_INIT_DEBUG
284     fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_padlock: "
285                     "engine_load_padlock_internal()\n");
286 #   endif
287     engine_load_padlock_internal();
288 }
289 #  endif
290 #  if defined(OPENSSL_SYS_WIN32) && !defined(OPENSSL_NO_CAPIENG)
291 static CRYPTO_ONCE engine_capi = CRYPTO_ONCE_STATIC_INIT;
292 static void ossl_init_engine_capi(void)
293 {
294 #   ifdef OPENSSL_INIT_DEBUG
295     fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_capi: "
296                     "engine_load_capi_internal()\n");
297 #   endif
298     engine_load_capi_internal();
299 }
300 #  endif
301 static CRYPTO_ONCE engine_dasync = CRYPTO_ONCE_STATIC_INIT;
302 static void ossl_init_engine_dasync(void)
303 {
304 # ifdef OPENSSL_INIT_DEBUG
305     fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_dasync: "
306                     "engine_load_dasync_internal()\n");
307 # endif
308     engine_load_dasync_internal();
309 }
310 #  if !defined(OPENSSL_NO_AFALGENG)
311 static CRYPTO_ONCE engine_afalg = CRYPTO_ONCE_STATIC_INIT;
312 static void ossl_init_engine_afalg(void)
313 {
314 #   ifdef OPENSSL_INIT_DEBUG
315     fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_afalg: "
316                     "engine_load_afalg_internal()\n");
317 #   endif
318     engine_load_afalg_internal();
319 }
320 #  endif
321 # endif
322 #endif
323
324 #ifndef OPENSSL_NO_COMP
325 static CRYPTO_ONCE zlib = CRYPTO_ONCE_STATIC_INIT;
326
327 static int zlib_inited = 0;
328 static void ossl_init_zlib(void)
329 {
330     /* Do nothing - we need to know about this for the later cleanup */
331     zlib_inited = 1;
332 }
333 #endif
334
335 static void ossl_init_thread_stop(struct thread_local_inits_st *locals)
336 {
337     /* Can't do much about this */
338     if (locals == NULL)
339         return;
340
341     if (locals->async) {
342 #ifdef OPENSSL_INIT_DEBUG
343         fprintf(stderr, "OPENSSL_INIT: ossl_init_thread_stop: "
344                         "ASYNC_cleanup_thread()\n");
345 #endif
346         ASYNC_cleanup_thread();
347     }
348
349     if (locals->err_state) {
350 #ifdef OPENSSL_INIT_DEBUG
351         fprintf(stderr, "OPENSSL_INIT: ossl_init_thread_stop: "
352                         "ERR_remove_thread_state()\n");
353 #endif
354         ERR_remove_thread_state();
355     }
356
357     OPENSSL_free(locals);
358 }
359
360 void OPENSSL_thread_stop(void)
361 {
362     ossl_init_thread_stop(
363         (struct thread_local_inits_st *)ossl_init_get_thread_local(0));
364 }
365
366 int ossl_init_thread_start(uint64_t opts)
367 {
368     struct thread_local_inits_st *locals = ossl_init_get_thread_local(1);
369
370     if (locals == NULL)
371         return 0;
372
373     if (opts & OPENSSL_INIT_THREAD_ASYNC) {
374 #ifdef OPENSSL_INIT_DEBUG
375         fprintf(stderr, "OPENSSL_INIT: ossl_init_thread_start: "
376                         "marking thread for async\n");
377 #endif
378         locals->async = 1;
379     }
380
381     if (opts & OPENSSL_INIT_THREAD_ERR_STATE) {
382 #ifdef OPENSSL_INIT_DEBUG
383         fprintf(stderr, "OPENSSL_INIT: ossl_init_thread_start: "
384                         "marking thread for err_state\n");
385 #endif
386         locals->err_state = 1;
387     }
388
389     return 1;
390 }
391
392 void OPENSSL_cleanup(void)
393 {
394     OPENSSL_INIT_STOP *currhandler, *lasthandler;
395
396     /* If we've not been inited then no need to deinit */
397     if (!base_inited)
398         return;
399
400     /* Might be explicitly called and also by atexit */
401     if (stopped)
402         return;
403     stopped = 1;
404
405     /*
406      * Thread stop may not get automatically called by the thread library for
407      * the very last thread in some situations, so call it directly.
408      */
409     ossl_init_thread_stop(ossl_init_get_thread_local(0));
410
411     currhandler = stop_handlers;
412     while (currhandler != NULL) {
413         currhandler->handler();
414         lasthandler = currhandler;
415         currhandler = currhandler->next;
416         OPENSSL_free(lasthandler);
417     }
418     stop_handlers = NULL;
419
420     CRYPTO_THREAD_lock_free(init_lock);
421
422     /*
423      * We assume we are single-threaded for this function, i.e. no race
424      * conditions for the various "*_inited" vars below.
425      */
426
427 #ifndef OPENSSL_NO_COMP
428     if (zlib_inited) {
429 #ifdef OPENSSL_INIT_DEBUG
430         fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
431                         "comp_zlib_cleanup_internal()\n");
432 #endif
433         comp_zlib_cleanup_internal();
434     }
435 #endif
436
437     if (async_inited) {
438 # ifdef OPENSSL_INIT_DEBUG
439         fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
440                         "async_deinit()\n");
441 # endif
442         async_deinit();
443     }
444
445     if (load_crypto_strings_inited) {
446 #ifdef OPENSSL_INIT_DEBUG
447         fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
448                         "err_free_strings_intern()\n");
449 #endif
450         err_free_strings_intern();
451     }
452
453     CRYPTO_THREAD_cleanup_local(&threadstopkey);
454
455 #ifdef OPENSSL_INIT_DEBUG
456     fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
457                     "rand_cleanup_intern()\n");
458     fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
459                     "CONF_modules_free()\n");
460 #ifndef OPENSSL_NO_ENGINE
461     fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
462                     "ENGINE_cleanup()\n");
463 #endif
464     fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
465                     "crypto_cleanup_all_ex_data_intern()\n");
466     fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
467                     "bio_sock_cleanup_intern()\n");
468     fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
469                     "evp_cleanup_intern()\n");
470     fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
471                     "OBJ_cleanup()\n");
472 #endif
473     /*
474      * Note that cleanup order is important:
475      * - rand_cleanup_intern could call an ENINGE's RAND cleanup function so
476      * must be called before ENGINE_cleanup()
477      * - ENGINEs use CRYPTO_EX_DATA and therefore, must be cleaned up
478      * before the ex data handlers are wiped in CRYPTO_cleanup_all_ex_data().
479      * - CONF_modules_free() can end up in ENGINE code so must be called before
480      * ENGINE_cleanup()
481      */
482     rand_cleanup_intern();
483     CONF_modules_free();
484 #ifndef OPENSSL_NO_ENGINE
485     ENGINE_cleanup();
486 #endif
487     crypto_cleanup_all_ex_data_intern();
488 #ifndef OPENSSL_NO_SOCK
489     bio_sock_cleanup_intern();
490 #endif
491     evp_cleanup_intern();
492     OBJ_cleanup();
493     base_inited = 0;
494 }
495
496 /*
497  * If this function is called with a non NULL settings value then it must be
498  * called prior to any threads making calls to any OpenSSL functions,
499  * i.e. passing a non-null settings value is assumed to be single-threaded.
500  */
501 int OPENSSL_init_crypto(uint64_t opts, const OPENSSL_INIT_SETTINGS *settings)
502 {
503     static int stoperrset = 0;
504
505     if (stopped) {
506         if (!stoperrset) {
507             /*
508              * We only ever set this once to avoid getting into an infinite
509              * loop where the error system keeps trying to init and fails so
510              * sets an error etc
511              */
512             stoperrset = 1;
513             CRYPTOerr(CRYPTO_F_OPENSSL_INIT_CRYPTO, ERR_R_INIT_FAIL);
514         }
515         return 0;
516     }
517
518     if (!CRYPTO_THREAD_run_once(&base, ossl_init_base))
519         return 0;
520
521     if ((opts & OPENSSL_INIT_NO_LOAD_CRYPTO_STRINGS)
522             && !CRYPTO_THREAD_run_once(&load_crypto_strings,
523                                        ossl_init_no_load_crypto_strings))
524         return 0;
525
526     if ((opts & OPENSSL_INIT_LOAD_CRYPTO_STRINGS)
527             && !CRYPTO_THREAD_run_once(&load_crypto_strings,
528                                        ossl_init_load_crypto_strings))
529         return 0;
530
531     if ((opts & OPENSSL_INIT_NO_ADD_ALL_CIPHERS)
532             && !CRYPTO_THREAD_run_once(&add_all_ciphers, ossl_init_no_add_algs))
533         return 0;
534
535     if ((opts & OPENSSL_INIT_ADD_ALL_CIPHERS)
536             && !CRYPTO_THREAD_run_once(&add_all_ciphers,
537                                        ossl_init_add_all_ciphers))
538         return 0;
539
540     if ((opts & OPENSSL_INIT_NO_ADD_ALL_DIGESTS)
541             && !CRYPTO_THREAD_run_once(&add_all_digests, ossl_init_no_add_algs))
542         return 0;
543
544     if ((opts & OPENSSL_INIT_ADD_ALL_DIGESTS)
545             && !CRYPTO_THREAD_run_once(&add_all_digests,
546                                        ossl_init_add_all_digests))
547         return 0;
548
549     if ((opts & OPENSSL_INIT_NO_LOAD_CONFIG)
550             && !CRYPTO_THREAD_run_once(&config, ossl_init_no_config))
551         return 0;
552
553     if (opts & OPENSSL_INIT_LOAD_CONFIG) {
554         int ret;
555         CRYPTO_THREAD_write_lock(init_lock);
556         config_filename = (settings == NULL) ? NULL : settings->config_name;
557         ret = CRYPTO_THREAD_run_once(&config, ossl_init_config);
558         CRYPTO_THREAD_unlock(init_lock);
559         if (!ret)
560             return 0;
561     }
562
563     if ((opts & OPENSSL_INIT_ASYNC)
564             && !CRYPTO_THREAD_run_once(&async, ossl_init_async))
565         return 0;
566
567 #ifndef OPENSSL_NO_ENGINE
568     if ((opts & OPENSSL_INIT_ENGINE_OPENSSL)
569             && !CRYPTO_THREAD_run_once(&engine_openssl,
570                                        ossl_init_engine_openssl))
571         return 0;
572 # if !defined(OPENSSL_NO_HW) && \
573     (defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV))
574     if ((opts & OPENSSL_INIT_ENGINE_CRYPTODEV)
575             && !CRYPTO_THREAD_run_once(&engine_cryptodev,
576                                        ossl_init_engine_cryptodev))
577         return 0;
578 # endif
579 # ifndef OPENSSL_NO_RDRAND
580     if ((opts & OPENSSL_INIT_ENGINE_RDRAND)
581             && !CRYPTO_THREAD_run_once(&engine_rdrand, ossl_init_engine_rdrand))
582         return 0;
583 # endif
584     if ((opts & OPENSSL_INIT_ENGINE_DYNAMIC)
585             && !CRYPTO_THREAD_run_once(&engine_dynamic,
586                                        ossl_init_engine_dynamic))
587         return 0;
588 # ifndef OPENSSL_NO_STATIC_ENGINE
589 #  if !defined(OPENSSL_NO_HW) && !defined(OPENSSL_NO_HW_PADLOCK)
590     if ((opts & OPENSSL_INIT_ENGINE_PADLOCK)
591             && !CRYPTO_THREAD_run_once(&engine_padlock,
592                                        ossl_init_engine_padlock))
593         return 0;
594 #  endif
595 #  if defined(OPENSSL_SYS_WIN32) && !defined(OPENSSL_NO_CAPIENG)
596     if ((opts & OPENSSL_INIT_ENGINE_CAPI)
597             && !CRYPTO_THREAD_run_once(&engine_capi, ossl_init_engine_capi))
598         return 0;
599 #  endif
600     if ((opts & OPENSSL_INIT_ENGINE_DASYNC)
601             && !CRYPTO_THREAD_run_once(&engine_dasync, ossl_init_engine_dasync))
602         return 0;
603 #  if !defined(OPENSSL_NO_AFALGENG)
604     if ((opts & OPENSSL_INIT_ENGINE_AFALG)
605             && !CRYPTO_THREAD_run_once(&engine_afalg, ossl_init_engine_afalg))
606         return 0;
607 #  endif
608 # endif
609     if (opts & (OPENSSL_INIT_ENGINE_ALL_BUILTIN
610                 | OPENSSL_INIT_ENGINE_DASYNC | OPENSSL_INIT_ENGINE_OPENSSL
611                 | OPENSSL_INIT_ENGINE_AFALG)) {
612         ENGINE_register_all_complete();
613     }
614 #endif
615
616 #ifndef OPENSSL_NO_COMP
617     if ((opts & OPENSSL_INIT_ZLIB)
618             && !CRYPTO_THREAD_run_once(&zlib, ossl_init_zlib))
619         return 0;
620 #endif
621
622     return 1;
623 }
624
625 int OPENSSL_atexit(void (*handler)(void))
626 {
627     OPENSSL_INIT_STOP *newhand;
628
629     newhand = OPENSSL_malloc(sizeof(*newhand));
630     if (newhand == NULL)
631         return 0;
632
633     newhand->handler = handler;
634     newhand->next = stop_handlers;
635     stop_handlers = newhand;
636
637     return 1;
638 }