Rename int_*() functions to *_int()
There is a preference for suffixes to indicate that a function is internal rather than prefixes. Note: the suffix is only required to disambiguate internal functions and public symbols with the same name (but different case) Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
parent
974eeb93e3
commit
b3599dbb6a
@ -93,7 +93,7 @@ static int oid_module_init(CONF_IMODULE *md, const CONF *cnf)
|
|||||||
|
|
||||||
static void oid_module_finish(CONF_IMODULE *md)
|
static void oid_module_finish(CONF_IMODULE *md)
|
||||||
{
|
{
|
||||||
int_obj_cleanup();
|
obj_cleanup_int();
|
||||||
}
|
}
|
||||||
|
|
||||||
void ASN1_add_oid_module(void)
|
void ASN1_add_oid_module(void)
|
||||||
|
@ -205,7 +205,7 @@ int BIO_sock_init(void)
|
|||||||
return (1);
|
return (1);
|
||||||
}
|
}
|
||||||
|
|
||||||
void int_bio_sock_cleanup(void)
|
void bio_sock_cleanup_int(void)
|
||||||
{
|
{
|
||||||
# ifdef OPENSSL_SYS_WINDOWS
|
# ifdef OPENSSL_SYS_WINDOWS
|
||||||
if (wsa_init_done) {
|
if (wsa_init_done) {
|
||||||
|
@ -282,7 +282,7 @@ COMP_METHOD *COMP_zlib(void)
|
|||||||
zlib_loaded++;
|
zlib_loaded++;
|
||||||
|
|
||||||
if (!OPENSSL_init_crypto(OPENSSL_INIT_ZLIB, NULL)) {
|
if (!OPENSSL_init_crypto(OPENSSL_INIT_ZLIB, NULL)) {
|
||||||
int_comp_zlib_cleanup();
|
comp_zlib_cleanup_int();
|
||||||
return meth;
|
return meth;
|
||||||
}
|
}
|
||||||
if (zlib_loaded)
|
if (zlib_loaded)
|
||||||
@ -297,7 +297,7 @@ COMP_METHOD *COMP_zlib(void)
|
|||||||
return (meth);
|
return (meth);
|
||||||
}
|
}
|
||||||
|
|
||||||
void int_comp_zlib_cleanup(void)
|
void comp_zlib_cleanup_int(void)
|
||||||
{
|
{
|
||||||
#ifdef ZLIB_SHARED
|
#ifdef ZLIB_SHARED
|
||||||
if (zlib_dso != NULL)
|
if (zlib_dso != NULL)
|
||||||
|
@ -460,7 +460,7 @@ int CONF_module_add(const char *name, conf_init_func *ifunc,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void int_conf_modules_free(void)
|
void conf_modules_free_int(void)
|
||||||
{
|
{
|
||||||
CONF_modules_finish();
|
CONF_modules_finish();
|
||||||
CONF_modules_unload(1);
|
CONF_modules_unload(1);
|
||||||
|
@ -84,7 +84,7 @@ void OPENSSL_config(const char *config_name)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void int_openssl_config(const char *config_name)
|
void openssl_config_int(const char *config_name)
|
||||||
{
|
{
|
||||||
if (openssl_configured)
|
if (openssl_configured)
|
||||||
return;
|
return;
|
||||||
@ -103,7 +103,7 @@ void int_openssl_config(const char *config_name)
|
|||||||
openssl_configured = 1;
|
openssl_configured = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
void int_openssl_no_config(void)
|
void openssl_no_config_int(void)
|
||||||
{
|
{
|
||||||
openssl_configured = 1;
|
openssl_configured = 1;
|
||||||
}
|
}
|
||||||
|
@ -63,7 +63,7 @@
|
|||||||
|
|
||||||
#ifndef HAVE_CRYPTODEV
|
#ifndef HAVE_CRYPTODEV
|
||||||
|
|
||||||
void int_engine_load_cryptodev(void)
|
void engine_load_cryptodev_int(void)
|
||||||
{
|
{
|
||||||
/* This is a NOP on platforms without /dev/crypto */
|
/* This is a NOP on platforms without /dev/crypto */
|
||||||
return;
|
return;
|
||||||
@ -141,7 +141,7 @@ static int cryptodev_dh_compute_key(unsigned char *key, const BIGNUM *pub_key,
|
|||||||
#endif
|
#endif
|
||||||
static int cryptodev_ctrl(ENGINE *e, int cmd, long i, void *p,
|
static int cryptodev_ctrl(ENGINE *e, int cmd, long i, void *p,
|
||||||
void (*f) (void));
|
void (*f) (void));
|
||||||
void int_engine_load_cryptodev(void);
|
void engine_load_cryptodev_int(void);
|
||||||
|
|
||||||
static const ENGINE_CMD_DEFN cryptodev_defns[] = {
|
static const ENGINE_CMD_DEFN cryptodev_defns[] = {
|
||||||
{0, NULL, NULL, 0}
|
{0, NULL, NULL, 0}
|
||||||
@ -1628,7 +1628,7 @@ cryptodev_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f) (void))
|
|||||||
return (1);
|
return (1);
|
||||||
}
|
}
|
||||||
|
|
||||||
void int_engine_load_cryptodev(void)
|
void engine_load_cryptodev_int(void)
|
||||||
{
|
{
|
||||||
ENGINE *engine = ENGINE_new();
|
ENGINE *engine = ENGINE_new();
|
||||||
int fd;
|
int fd;
|
||||||
|
@ -295,7 +295,7 @@ static ENGINE *engine_dynamic(void)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
void int_engine_load_dynamic(void)
|
void engine_load_dynamic_int(void)
|
||||||
{
|
{
|
||||||
ENGINE *toadd = engine_dynamic();
|
ENGINE *toadd = engine_dynamic();
|
||||||
if (!toadd)
|
if (!toadd)
|
||||||
|
@ -99,7 +99,7 @@ extern CRYPTO_RWLOCK *global_engine_lock;
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Any code that will need cleanup operations should use these functions to
|
* Any code that will need cleanup operations should use these functions to
|
||||||
* register callbacks. int_engine_cleanup() will call all registered
|
* register callbacks. engine_cleanup_int() will call all registered
|
||||||
* callbacks in order. NB: both the "add" functions assume the engine lock to
|
* callbacks in order. NB: both the "add" functions assume the engine lock to
|
||||||
* already be held (in "write" mode).
|
* already be held (in "write" mode).
|
||||||
*/
|
*/
|
||||||
|
@ -148,7 +148,7 @@ int ENGINE_free(ENGINE *e)
|
|||||||
/* Cleanup stuff */
|
/* Cleanup stuff */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* int_engine_cleanup() is coded such that anything that does work that will
|
* engine_cleanup_int() is coded such that anything that does work that will
|
||||||
* need cleanup can register a "cleanup" callback here. That way we don't get
|
* need cleanup can register a "cleanup" callback here. That way we don't get
|
||||||
* linker bloat by referring to all *possible* cleanups, but any linker bloat
|
* linker bloat by referring to all *possible* cleanups, but any linker bloat
|
||||||
* into code "X" will cause X's cleanup function to end up here.
|
* into code "X" will cause X's cleanup function to end up here.
|
||||||
@ -200,7 +200,7 @@ static void engine_cleanup_cb_free(ENGINE_CLEANUP_ITEM *item)
|
|||||||
OPENSSL_free(item);
|
OPENSSL_free(item);
|
||||||
}
|
}
|
||||||
|
|
||||||
void int_engine_cleanup(void)
|
void engine_cleanup_int(void)
|
||||||
{
|
{
|
||||||
if (int_cleanup_check(0)) {
|
if (int_cleanup_check(0)) {
|
||||||
sk_ENGINE_CLEANUP_ITEM_pop_free(cleanup_stack,
|
sk_ENGINE_CLEANUP_ITEM_pop_free(cleanup_stack,
|
||||||
|
@ -79,7 +79,7 @@ static ENGINE *engine_list_tail = NULL;
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* This cleanup function is only needed internally. If it should be called,
|
* This cleanup function is only needed internally. If it should be called,
|
||||||
* we register it with the "int_engine_cleanup()" stack to be called during
|
* we register it with the "engine_cleanup_int()" stack to be called during
|
||||||
* cleanup.
|
* cleanup.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -189,7 +189,7 @@ static ENGINE *engine_openssl(void)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
void int_engine_load_openssl(void)
|
void engine_load_openssl_int(void)
|
||||||
{
|
{
|
||||||
ENGINE *toadd = engine_openssl();
|
ENGINE *toadd = engine_openssl();
|
||||||
if (!toadd)
|
if (!toadd)
|
||||||
|
@ -130,7 +130,7 @@ static ENGINE *ENGINE_rdrand(void)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
void int_engine_load_rdrand(void)
|
void engine_load_rdrand_int(void)
|
||||||
{
|
{
|
||||||
extern unsigned int OPENSSL_ia32cap_P[];
|
extern unsigned int OPENSSL_ia32cap_P[];
|
||||||
|
|
||||||
@ -144,7 +144,7 @@ void int_engine_load_rdrand(void)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
void int_engine_load_rdrand(void)
|
void engine_load_rdrand_int(void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -447,7 +447,7 @@ void ERR_unload_strings(int lib, ERR_STRING_DATA *str)
|
|||||||
CRYPTO_THREAD_unlock(err_string_lock);
|
CRYPTO_THREAD_unlock(err_string_lock);
|
||||||
}
|
}
|
||||||
|
|
||||||
void int_err_free_strings(void)
|
void err_free_strings_int(void)
|
||||||
{
|
{
|
||||||
CRYPTO_THREAD_run_once(&err_string_init, do_err_strings_init);
|
CRYPTO_THREAD_run_once(&err_string_init, do_err_strings_init);
|
||||||
|
|
||||||
|
@ -88,7 +88,7 @@
|
|||||||
#include <openssl/async.h>
|
#include <openssl/async.h>
|
||||||
#include <openssl/kdf.h>
|
#include <openssl/kdf.h>
|
||||||
|
|
||||||
void int_err_load_crypto_strings(void)
|
void err_load_crypto_strings_int(void)
|
||||||
{
|
{
|
||||||
#ifdef OPENSSL_FIPS
|
#ifdef OPENSSL_FIPS
|
||||||
FIPS_set_error_callbacks(ERR_put_error, ERR_add_error_vdata);
|
FIPS_set_error_callbacks(ERR_put_error, ERR_add_error_vdata);
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
#include <openssl/pkcs12.h>
|
#include <openssl/pkcs12.h>
|
||||||
#include <openssl/objects.h>
|
#include <openssl/objects.h>
|
||||||
|
|
||||||
void int_openssl_add_all_ciphers(void)
|
void openssl_add_all_ciphers_int(void)
|
||||||
{
|
{
|
||||||
|
|
||||||
#ifndef OPENSSL_NO_DES
|
#ifndef OPENSSL_NO_DES
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
#include <openssl/pkcs12.h>
|
#include <openssl/pkcs12.h>
|
||||||
#include <openssl/objects.h>
|
#include <openssl/objects.h>
|
||||||
|
|
||||||
void int_openssl_add_all_digests(void)
|
void openssl_add_all_digests_int(void)
|
||||||
{
|
{
|
||||||
#ifndef OPENSSL_NO_MD4
|
#ifndef OPENSSL_NO_MD4
|
||||||
EVP_add_digest(EVP_md4());
|
EVP_add_digest(EVP_md4());
|
||||||
|
@ -128,7 +128,7 @@ const EVP_MD *EVP_get_digestbyname(const char *name)
|
|||||||
return (cp);
|
return (cp);
|
||||||
}
|
}
|
||||||
|
|
||||||
void int_evp_cleanup(void)
|
void evp_cleanup_int(void)
|
||||||
{
|
{
|
||||||
OBJ_NAME_cleanup(OBJ_NAME_TYPE_CIPHER_METH);
|
OBJ_NAME_cleanup(OBJ_NAME_TYPE_CIPHER_METH);
|
||||||
OBJ_NAME_cleanup(OBJ_NAME_TYPE_MD_METH);
|
OBJ_NAME_cleanup(OBJ_NAME_TYPE_MD_METH);
|
||||||
@ -142,7 +142,7 @@ void int_evp_cleanup(void)
|
|||||||
EVP_PBE_cleanup();
|
EVP_PBE_cleanup();
|
||||||
if (obj_cleanup_defer == 2) {
|
if (obj_cleanup_defer == 2) {
|
||||||
obj_cleanup_defer = 0;
|
obj_cleanup_defer = 0;
|
||||||
int_obj_cleanup();
|
obj_cleanup_int();
|
||||||
}
|
}
|
||||||
OBJ_sigid_free();
|
OBJ_sigid_free();
|
||||||
}
|
}
|
||||||
|
@ -175,7 +175,7 @@ static void cleanup_cb(EX_CALLBACK *funcs)
|
|||||||
* called under potential race-conditions anyway (it's for program shutdown
|
* called under potential race-conditions anyway (it's for program shutdown
|
||||||
* after all).
|
* after all).
|
||||||
*/
|
*/
|
||||||
void int_crypto_cleanup_all_ex_data(void)
|
void crypto_cleanup_all_ex_data_int(void)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
@ -113,7 +113,7 @@ void OPENSSL_cpuid_setup(void);
|
|||||||
extern unsigned int OPENSSL_ia32cap_P[];
|
extern unsigned int OPENSSL_ia32cap_P[];
|
||||||
void OPENSSL_showfatal(const char *fmta, ...);
|
void OPENSSL_showfatal(const char *fmta, ...);
|
||||||
extern int OPENSSL_NONPIC_relocated;
|
extern int OPENSSL_NONPIC_relocated;
|
||||||
void int_crypto_cleanup_all_ex_data(void);
|
void crypto_cleanup_all_ex_data_int(void);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
@ -54,12 +54,12 @@
|
|||||||
|
|
||||||
#include <openssl/engine.h>
|
#include <openssl/engine.h>
|
||||||
|
|
||||||
void int_engine_load_openssl(void);
|
void engine_load_openssl_int(void);
|
||||||
void int_engine_load_cryptodev(void);
|
void engine_load_cryptodev_int(void);
|
||||||
void int_engine_load_rdrand(void);
|
void engine_load_rdrand_int(void);
|
||||||
void int_engine_load_dynamic(void);
|
void engine_load_dynamic_int(void);
|
||||||
void int_engine_load_padlock(void);
|
void engine_load_padlock_int(void);
|
||||||
void int_engine_load_capi(void);
|
void engine_load_capi_int(void);
|
||||||
void int_engine_load_dasync(void);
|
void engine_load_dasync_int(void);
|
||||||
void int_engine_load_afalg(void);
|
void engine_load_afalg_int(void);
|
||||||
void int_engine_cleanup(void);
|
void engine_cleanup_int(void);
|
||||||
|
@ -420,6 +420,6 @@ struct evp_pkey_st {
|
|||||||
} /* EVP_PKEY */ ;
|
} /* EVP_PKEY */ ;
|
||||||
|
|
||||||
|
|
||||||
void int_openssl_add_all_ciphers(void);
|
void openssl_add_all_ciphers_int(void);
|
||||||
void int_openssl_add_all_digests(void);
|
void openssl_add_all_digests_int(void);
|
||||||
void int_evp_cleanup(void);
|
void evp_cleanup_int(void);
|
||||||
|
@ -8,4 +8,4 @@
|
|||||||
|
|
||||||
#include <openssl/objects.h>
|
#include <openssl/objects.h>
|
||||||
|
|
||||||
void int_obj_cleanup(void);
|
void obj_cleanup_int(void);
|
||||||
|
@ -8,4 +8,4 @@
|
|||||||
|
|
||||||
#include <openssl/rand.h>
|
#include <openssl/rand.h>
|
||||||
|
|
||||||
void int_rand_cleanup(void);
|
void rand_cleanup_int(void);
|
||||||
|
@ -144,9 +144,9 @@ static void ossl_init_load_crypto_strings(void)
|
|||||||
#if !defined(OPENSSL_NO_ERR) && !defined(OPENSSL_NO_AUTOERRINIT)
|
#if !defined(OPENSSL_NO_ERR) && !defined(OPENSSL_NO_AUTOERRINIT)
|
||||||
# ifdef OPENSSL_INIT_DEBUG
|
# ifdef OPENSSL_INIT_DEBUG
|
||||||
fprintf(stderr, "OPENSSL_INIT: ossl_init_load_crypto_strings: "
|
fprintf(stderr, "OPENSSL_INIT: ossl_init_load_crypto_strings: "
|
||||||
"int_err_load_crypto_strings()\n");
|
"err_load_crypto_strings_int()\n");
|
||||||
# endif
|
# endif
|
||||||
int_err_load_crypto_strings();
|
err_load_crypto_strings_int();
|
||||||
#endif
|
#endif
|
||||||
load_crypto_strings_inited = 1;
|
load_crypto_strings_inited = 1;
|
||||||
}
|
}
|
||||||
@ -161,9 +161,9 @@ static void ossl_init_add_all_ciphers(void)
|
|||||||
#ifndef OPENSSL_NO_AUTOALGINIT
|
#ifndef OPENSSL_NO_AUTOALGINIT
|
||||||
# ifdef OPENSSL_INIT_DEBUG
|
# ifdef OPENSSL_INIT_DEBUG
|
||||||
fprintf(stderr, "OPENSSL_INIT: ossl_init_add_all_ciphers: "
|
fprintf(stderr, "OPENSSL_INIT: ossl_init_add_all_ciphers: "
|
||||||
"int_openssl_add_all_ciphers()\n");
|
"openssl_add_all_ciphers_int()\n");
|
||||||
# endif
|
# endif
|
||||||
int_openssl_add_all_ciphers();
|
openssl_add_all_ciphers_int();
|
||||||
# ifndef OPENSSL_NO_ENGINE
|
# ifndef OPENSSL_NO_ENGINE
|
||||||
# if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV)
|
# if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV)
|
||||||
ENGINE_setup_bsd_cryptodev();
|
ENGINE_setup_bsd_cryptodev();
|
||||||
@ -182,9 +182,9 @@ static void ossl_init_add_all_digests(void)
|
|||||||
#ifndef OPENSSL_NO_AUTOALGINIT
|
#ifndef OPENSSL_NO_AUTOALGINIT
|
||||||
# ifdef OPENSSL_INIT_DEBUG
|
# ifdef OPENSSL_INIT_DEBUG
|
||||||
fprintf(stderr, "OPENSSL_INIT: ossl_init_add_all_digests: "
|
fprintf(stderr, "OPENSSL_INIT: ossl_init_add_all_digests: "
|
||||||
"int_openssl_add_all_digests()\n");
|
"openssl_add_all_digests()\n");
|
||||||
# endif
|
# endif
|
||||||
int_openssl_add_all_digests();
|
openssl_add_all_digests_int();
|
||||||
# ifndef OPENSSL_NO_ENGINE
|
# ifndef OPENSSL_NO_ENGINE
|
||||||
# if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV)
|
# if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV)
|
||||||
ENGINE_setup_bsd_cryptodev();
|
ENGINE_setup_bsd_cryptodev();
|
||||||
@ -206,19 +206,19 @@ static void ossl_init_config(void)
|
|||||||
{
|
{
|
||||||
#ifdef OPENSSL_INIT_DEBUG
|
#ifdef OPENSSL_INIT_DEBUG
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
"OPENSSL_INIT: ossl_init_config: int_openssl_config(%s)\n",
|
"OPENSSL_INIT: ossl_init_config: openssl_config(%s)\n",
|
||||||
config_filename==NULL?"NULL":config_filename);
|
config_filename==NULL?"NULL":config_filename);
|
||||||
#endif
|
#endif
|
||||||
int_openssl_config(config_filename);
|
openssl_config_int(config_filename);
|
||||||
config_inited = 1;
|
config_inited = 1;
|
||||||
}
|
}
|
||||||
static void ossl_init_no_config(void)
|
static void ossl_init_no_config(void)
|
||||||
{
|
{
|
||||||
#ifdef OPENSSL_INIT_DEBUG
|
#ifdef OPENSSL_INIT_DEBUG
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
"OPENSSL_INIT: ossl_init_config: int_openssl_no_config()\n");
|
"OPENSSL_INIT: ossl_init_config: openssl_no_config_int()\n");
|
||||||
#endif
|
#endif
|
||||||
int_openssl_no_config();
|
openssl_no_config_int();
|
||||||
config_inited = 1;
|
config_inited = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -239,9 +239,9 @@ static void ossl_init_engine_openssl(void)
|
|||||||
{
|
{
|
||||||
# ifdef OPENSSL_INIT_DEBUG
|
# ifdef OPENSSL_INIT_DEBUG
|
||||||
fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_openssl: "
|
fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_openssl: "
|
||||||
"int_engine_load_openssl()\n");
|
"engine_load_openssl_int()\n");
|
||||||
# endif
|
# endif
|
||||||
int_engine_load_openssl();
|
engine_load_openssl_int();
|
||||||
}
|
}
|
||||||
# if !defined(OPENSSL_NO_HW) && \
|
# if !defined(OPENSSL_NO_HW) && \
|
||||||
(defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV))
|
(defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV))
|
||||||
@ -250,9 +250,9 @@ static void ossl_init_engine_cryptodev(void)
|
|||||||
{
|
{
|
||||||
# ifdef OPENSSL_INIT_DEBUG
|
# ifdef OPENSSL_INIT_DEBUG
|
||||||
fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_cryptodev: "
|
fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_cryptodev: "
|
||||||
"int_engine_load_cryptodev()\n");
|
"engine_load_cryptodev_int()\n");
|
||||||
# endif
|
# endif
|
||||||
int_engine_load_cryptodev();
|
engine_load_cryptodev_int();
|
||||||
}
|
}
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
@ -262,9 +262,9 @@ static void ossl_init_engine_rdrand(void)
|
|||||||
{
|
{
|
||||||
# ifdef OPENSSL_INIT_DEBUG
|
# ifdef OPENSSL_INIT_DEBUG
|
||||||
fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_rdrand: "
|
fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_rdrand: "
|
||||||
"int_engine_load_rdrand()\n");
|
"engine_load_rdrand_int()\n");
|
||||||
# endif
|
# endif
|
||||||
int_engine_load_rdrand();
|
engine_load_rdrand_int();
|
||||||
}
|
}
|
||||||
# endif
|
# endif
|
||||||
static CRYPTO_ONCE engine_dynamic = CRYPTO_ONCE_STATIC_INIT;
|
static CRYPTO_ONCE engine_dynamic = CRYPTO_ONCE_STATIC_INIT;
|
||||||
@ -272,9 +272,9 @@ static void ossl_init_engine_dynamic(void)
|
|||||||
{
|
{
|
||||||
# ifdef OPENSSL_INIT_DEBUG
|
# ifdef OPENSSL_INIT_DEBUG
|
||||||
fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_dynamic: "
|
fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_dynamic: "
|
||||||
"int_engine_load_dynamic()\n");
|
"engine_load_dynamic_int()\n");
|
||||||
# endif
|
# endif
|
||||||
int_engine_load_dynamic();
|
engine_load_dynamic_int();
|
||||||
}
|
}
|
||||||
# ifndef OPENSSL_NO_STATIC_ENGINE
|
# ifndef OPENSSL_NO_STATIC_ENGINE
|
||||||
# if !defined(OPENSSL_NO_HW) && !defined(OPENSSL_NO_HW_PADLOCK)
|
# if !defined(OPENSSL_NO_HW) && !defined(OPENSSL_NO_HW_PADLOCK)
|
||||||
@ -283,9 +283,9 @@ static void ossl_init_engine_padlock(void)
|
|||||||
{
|
{
|
||||||
# ifdef OPENSSL_INIT_DEBUG
|
# ifdef OPENSSL_INIT_DEBUG
|
||||||
fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_padlock: "
|
fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_padlock: "
|
||||||
"int_engine_load_padlock()\n");
|
"engine_load_padlock_int()\n");
|
||||||
# endif
|
# endif
|
||||||
int_engine_load_padlock();
|
engine_load_padlock_int();
|
||||||
}
|
}
|
||||||
# endif
|
# endif
|
||||||
# if defined(OPENSSL_SYS_WIN32) && !defined(OPENSSL_NO_CAPIENG)
|
# if defined(OPENSSL_SYS_WIN32) && !defined(OPENSSL_NO_CAPIENG)
|
||||||
@ -294,9 +294,9 @@ static void ossl_init_engine_capi(void)
|
|||||||
{
|
{
|
||||||
# ifdef OPENSSL_INIT_DEBUG
|
# ifdef OPENSSL_INIT_DEBUG
|
||||||
fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_capi: "
|
fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_capi: "
|
||||||
"int_engine_load_capi()\n");
|
"engine_load_capi_int()\n");
|
||||||
# endif
|
# endif
|
||||||
int_engine_load_capi();
|
engine_load_capi_int();
|
||||||
}
|
}
|
||||||
# endif
|
# endif
|
||||||
static CRYPTO_ONCE engine_dasync = CRYPTO_ONCE_STATIC_INIT;
|
static CRYPTO_ONCE engine_dasync = CRYPTO_ONCE_STATIC_INIT;
|
||||||
@ -304,9 +304,9 @@ static void ossl_init_engine_dasync(void)
|
|||||||
{
|
{
|
||||||
# ifdef OPENSSL_INIT_DEBUG
|
# ifdef OPENSSL_INIT_DEBUG
|
||||||
fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_dasync: "
|
fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_dasync: "
|
||||||
"int_engine_load_dasync()\n");
|
"engine_load_dasync_int()\n");
|
||||||
# endif
|
# endif
|
||||||
int_engine_load_dasync();
|
engine_load_dasync_int();
|
||||||
}
|
}
|
||||||
# if !defined(OPENSSL_NO_AFALGENG)
|
# if !defined(OPENSSL_NO_AFALGENG)
|
||||||
static CRYPTO_ONCE engine_afalg = CRYPTO_ONCE_STATIC_INIT;
|
static CRYPTO_ONCE engine_afalg = CRYPTO_ONCE_STATIC_INIT;
|
||||||
@ -314,9 +314,9 @@ static void ossl_init_engine_afalg(void)
|
|||||||
{
|
{
|
||||||
# ifdef OPENSSL_INIT_DEBUG
|
# ifdef OPENSSL_INIT_DEBUG
|
||||||
fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_afalg: "
|
fprintf(stderr, "OPENSSL_INIT: ossl_init_engine_afalg: "
|
||||||
"int_engine_load_afalg()\n");
|
"engine_load_afalg_int()\n");
|
||||||
# endif
|
# endif
|
||||||
int_engine_load_afalg();
|
engine_load_afalg_int();
|
||||||
}
|
}
|
||||||
# endif
|
# endif
|
||||||
# endif
|
# endif
|
||||||
@ -429,9 +429,9 @@ void OPENSSL_cleanup(void)
|
|||||||
if (zlib_inited) {
|
if (zlib_inited) {
|
||||||
#ifdef OPENSSL_INIT_DEBUG
|
#ifdef OPENSSL_INIT_DEBUG
|
||||||
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
|
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
|
||||||
"int_comp_zlib_cleanup()\n");
|
"comp_zlib_cleanup_int()\n");
|
||||||
#endif
|
#endif
|
||||||
int_comp_zlib_cleanup();
|
comp_zlib_cleanup_int();
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -446,51 +446,51 @@ void OPENSSL_cleanup(void)
|
|||||||
if (load_crypto_strings_inited) {
|
if (load_crypto_strings_inited) {
|
||||||
#ifdef OPENSSL_INIT_DEBUG
|
#ifdef OPENSSL_INIT_DEBUG
|
||||||
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
|
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
|
||||||
"int_err_free_strings()\n");
|
"err_free_strings_int()\n");
|
||||||
#endif
|
#endif
|
||||||
int_err_free_strings();
|
err_free_strings_int();
|
||||||
}
|
}
|
||||||
|
|
||||||
CRYPTO_THREAD_cleanup_local(&threadstopkey);
|
CRYPTO_THREAD_cleanup_local(&threadstopkey);
|
||||||
|
|
||||||
#ifdef OPENSSL_INIT_DEBUG
|
#ifdef OPENSSL_INIT_DEBUG
|
||||||
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
|
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
|
||||||
"int_rand_cleanup()\n");
|
"rand_cleanup_int()\n");
|
||||||
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
|
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
|
||||||
"int_conf_modules_free()\n");
|
"conf_modules_free_int()\n");
|
||||||
#ifndef OPENSSL_NO_ENGINE
|
#ifndef OPENSSL_NO_ENGINE
|
||||||
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
|
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
|
||||||
"int_engine_cleanup()\n");
|
"engine_cleanup_int()\n");
|
||||||
#endif
|
#endif
|
||||||
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
|
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
|
||||||
"int_crypto_cleanup_all_ex_data()\n");
|
"crypto_cleanup_all_ex_data_int()\n");
|
||||||
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
|
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
|
||||||
"int_bio_sock_cleanup()\n");
|
"bio_sock_cleanup_int()\n");
|
||||||
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
|
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
|
||||||
"int_evp_cleanup()\n");
|
"evp_cleanup_int()\n");
|
||||||
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
|
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
|
||||||
"int_obj_cleanup()\n");
|
"obj_cleanup_int()\n");
|
||||||
#endif
|
#endif
|
||||||
/*
|
/*
|
||||||
* Note that cleanup order is important:
|
* Note that cleanup order is important:
|
||||||
* - rand_cleanup_intern could call an ENINGE's RAND cleanup function so
|
* - rand_cleanup_int could call an ENINGE's RAND cleanup function so
|
||||||
* must be called before int_engine_cleanup()
|
* must be called before engine_cleanup_int()
|
||||||
* - ENGINEs use CRYPTO_EX_DATA and therefore, must be cleaned up
|
* - ENGINEs use CRYPTO_EX_DATA and therefore, must be cleaned up
|
||||||
* before the ex data handlers are wiped in CRYPTO_cleanup_all_ex_data().
|
* before the ex data handlers are wiped in CRYPTO_cleanup_all_ex_data().
|
||||||
* - int_conf_modules_free() can end up in ENGINE code so must be called
|
* - conf_modules_free_int() can end up in ENGINE code so must be called
|
||||||
* before int_engine_cleanup()
|
* before engine_cleanup_int()
|
||||||
*/
|
*/
|
||||||
int_rand_cleanup();
|
rand_cleanup_int();
|
||||||
int_conf_modules_free();
|
conf_modules_free_int();
|
||||||
#ifndef OPENSSL_NO_ENGINE
|
#ifndef OPENSSL_NO_ENGINE
|
||||||
int_engine_cleanup();
|
engine_cleanup_int();
|
||||||
#endif
|
#endif
|
||||||
int_crypto_cleanup_all_ex_data();
|
crypto_cleanup_all_ex_data_int();
|
||||||
#ifndef OPENSSL_NO_SOCK
|
#ifndef OPENSSL_NO_SOCK
|
||||||
int_bio_sock_cleanup();
|
bio_sock_cleanup_int();
|
||||||
#endif
|
#endif
|
||||||
int_evp_cleanup();
|
evp_cleanup_int();
|
||||||
int_obj_cleanup();
|
obj_cleanup_int();
|
||||||
base_inited = 0;
|
base_inited = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -210,7 +210,7 @@ void check_defer(int nid)
|
|||||||
obj_cleanup_defer = 1;
|
obj_cleanup_defer = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
void int_obj_cleanup(void)
|
void obj_cleanup_int(void)
|
||||||
{
|
{
|
||||||
if (obj_cleanup_defer) {
|
if (obj_cleanup_defer) {
|
||||||
obj_cleanup_defer = 2;
|
obj_cleanup_defer = 2;
|
||||||
|
@ -125,7 +125,7 @@ int RAND_set_rand_engine(ENGINE *engine)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void int_rand_cleanup(void)
|
void rand_cleanup_int(void)
|
||||||
{
|
{
|
||||||
const RAND_METHOD *meth = RAND_get_rand_method();
|
const RAND_METHOD *meth = RAND_get_rand_method();
|
||||||
if (meth && meth->cleanup)
|
if (meth && meth->cleanup)
|
||||||
|
@ -104,7 +104,7 @@
|
|||||||
#define ALG_MAX_SALG_TYPE 14
|
#define ALG_MAX_SALG_TYPE 14
|
||||||
|
|
||||||
# ifdef OPENSSL_NO_DYNAMIC_ENGINE
|
# ifdef OPENSSL_NO_DYNAMIC_ENGINE
|
||||||
void int_engine_load_afalg(void);
|
void engine_load_afalg_int(void);
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
/* Local Linkage Functions */
|
/* Local Linkage Functions */
|
||||||
@ -816,7 +816,7 @@ static ENGINE *engine_afalg(void)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
void int_engine_load_afalg(void)
|
void engine_load_afalg_int(void)
|
||||||
{
|
{
|
||||||
ENGINE *toadd;
|
ENGINE *toadd;
|
||||||
|
|
||||||
|
@ -191,7 +191,7 @@ static int cert_select_simple(ENGINE *e, SSL *ssl, STACK_OF(X509) *certs);
|
|||||||
static int cert_select_dialog(ENGINE *e, SSL *ssl, STACK_OF(X509) *certs);
|
static int cert_select_dialog(ENGINE *e, SSL *ssl, STACK_OF(X509) *certs);
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
void int_engine_load_capi(void);
|
void engine_load_capi_int(void);
|
||||||
|
|
||||||
typedef PCCERT_CONTEXT(WINAPI *CERTDLG) (HCERTSTORE, HWND, LPCWSTR,
|
typedef PCCERT_CONTEXT(WINAPI *CERTDLG) (HCERTSTORE, HWND, LPCWSTR,
|
||||||
LPCWSTR, DWORD, DWORD, void *);
|
LPCWSTR, DWORD, DWORD, void *);
|
||||||
@ -1911,8 +1911,8 @@ OPENSSL_EXPORT
|
|||||||
|
|
||||||
IMPLEMENT_DYNAMIC_CHECK_FN()
|
IMPLEMENT_DYNAMIC_CHECK_FN()
|
||||||
# else
|
# else
|
||||||
void int_engine_load_capi(void);
|
void engine_load_capi_int(void);
|
||||||
void int_engine_load_capi(void)
|
void engine_load_capi_int(void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
# endif
|
# endif
|
||||||
|
@ -86,7 +86,7 @@ static const char *engine_dasync_name = "Dummy Async engine support";
|
|||||||
static int dasync_destroy(ENGINE *e);
|
static int dasync_destroy(ENGINE *e);
|
||||||
static int dasync_init(ENGINE *e);
|
static int dasync_init(ENGINE *e);
|
||||||
static int dasync_finish(ENGINE *e);
|
static int dasync_finish(ENGINE *e);
|
||||||
void int_engine_load_dasync(void);
|
void engine_load_dasync_int(void);
|
||||||
|
|
||||||
|
|
||||||
/* Set up digests. Just SHA1 for now */
|
/* Set up digests. Just SHA1 for now */
|
||||||
@ -347,7 +347,7 @@ static ENGINE *engine_dasync(void)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
void int_engine_load_dasync(void)
|
void engine_load_dasync_int(void)
|
||||||
{
|
{
|
||||||
ENGINE *toadd = engine_dasync();
|
ENGINE *toadd = engine_dasync();
|
||||||
if (!toadd)
|
if (!toadd)
|
||||||
|
@ -111,8 +111,8 @@ static ENGINE *ENGINE_padlock(void);
|
|||||||
# endif
|
# endif
|
||||||
|
|
||||||
# ifdef OPENSSL_NO_DYNAMIC_ENGINE
|
# ifdef OPENSSL_NO_DYNAMIC_ENGINE
|
||||||
void int_engine_load_padlock(void);
|
void engine_load_padlock_int(void);
|
||||||
void int_engine_load_padlock(void)
|
void engine_load_padlock_int(void)
|
||||||
{
|
{
|
||||||
/* On non-x86 CPUs it just returns. */
|
/* On non-x86 CPUs it just returns. */
|
||||||
# ifdef COMPILE_HW_PADLOCK
|
# ifdef COMPILE_HW_PADLOCK
|
||||||
|
@ -67,4 +67,4 @@ struct bio_method_st {
|
|||||||
long (*callback_ctrl) (BIO *, int, bio_info_cb *);
|
long (*callback_ctrl) (BIO *, int, bio_info_cb *);
|
||||||
};
|
};
|
||||||
|
|
||||||
void int_bio_sock_cleanup(void);
|
void bio_sock_cleanup_int(void);
|
||||||
|
@ -8,4 +8,4 @@
|
|||||||
|
|
||||||
#include <openssl/comp.h>
|
#include <openssl/comp.h>
|
||||||
|
|
||||||
void int_comp_zlib_cleanup(void);
|
void comp_zlib_cleanup_int(void);
|
||||||
|
@ -51,9 +51,9 @@ struct ossl_init_settings_st {
|
|||||||
char *config_name;
|
char *config_name;
|
||||||
};
|
};
|
||||||
|
|
||||||
void int_openssl_config(const char *config_name);
|
void openssl_config_int(const char *config_name);
|
||||||
void int_openssl_no_config(void);
|
void openssl_no_config_int(void);
|
||||||
void int_conf_modules_free(void);
|
void conf_modules_free_int(void);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
@ -58,7 +58,7 @@
|
|||||||
#ifndef INTERNAL_ERR_H
|
#ifndef INTERNAL_ERR_H
|
||||||
# define INTERNAL_ERR_H
|
# define INTERNAL_ERR_H
|
||||||
|
|
||||||
void int_err_load_crypto_strings(void);
|
void err_load_crypto_strings_int(void);
|
||||||
void int_err_free_strings(void);
|
void err_free_strings_int(void);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -1908,7 +1908,7 @@ static void cmeth_free(SSL_COMP *cm)
|
|||||||
OPENSSL_free(cm);
|
OPENSSL_free(cm);
|
||||||
}
|
}
|
||||||
|
|
||||||
void int_ssl_comp_free_compression_methods(void)
|
void ssl_comp_free_compression_methods_int(void)
|
||||||
{
|
{
|
||||||
STACK_OF(SSL_COMP) *old_meths = ssl_comp_methods;
|
STACK_OF(SSL_COMP) *old_meths = ssl_comp_methods;
|
||||||
ssl_comp_methods = NULL;
|
ssl_comp_methods = NULL;
|
||||||
|
@ -198,24 +198,24 @@ static void ssl_library_stop(void)
|
|||||||
#ifndef OPENSSL_NO_COMP
|
#ifndef OPENSSL_NO_COMP
|
||||||
#ifdef OPENSSL_INIT_DEBUG
|
#ifdef OPENSSL_INIT_DEBUG
|
||||||
fprintf(stderr, "OPENSSL_INIT: ssl_library_stop: "
|
fprintf(stderr, "OPENSSL_INIT: ssl_library_stop: "
|
||||||
"int_ssl_comp_free_compression_methods()\n");
|
"ssl_comp_free_compression_methods_int()\n");
|
||||||
#endif
|
#endif
|
||||||
int_ssl_comp_free_compression_methods();
|
ssl_comp_free_compression_methods_int();
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ssl_strings_inited) {
|
if (ssl_strings_inited) {
|
||||||
#ifdef OPENSSL_INIT_DEBUG
|
#ifdef OPENSSL_INIT_DEBUG
|
||||||
fprintf(stderr, "OPENSSL_INIT: ssl_library_stop: "
|
fprintf(stderr, "OPENSSL_INIT: ssl_library_stop: "
|
||||||
"int_err_free_strings()\n");
|
"err_free_strings_int()\n");
|
||||||
#endif
|
#endif
|
||||||
/*
|
/*
|
||||||
* If both crypto and ssl error strings are inited we will end up
|
* If both crypto and ssl error strings are inited we will end up
|
||||||
* calling int_err_free_strings() twice - but that's ok. The second
|
* calling err_free_strings_int() twice - but that's ok. The second
|
||||||
* time will be a no-op. It's easier to do that than to try and track
|
* time will be a no-op. It's easier to do that than to try and track
|
||||||
* between the two libraries whether they have both been inited.
|
* between the two libraries whether they have both been inited.
|
||||||
*/
|
*/
|
||||||
int_err_free_strings();
|
err_free_strings_int();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2195,7 +2195,7 @@ __owur int custom_ext_add(SSL *s, int server,
|
|||||||
__owur int custom_exts_copy(custom_ext_methods *dst, const custom_ext_methods *src);
|
__owur int custom_exts_copy(custom_ext_methods *dst, const custom_ext_methods *src);
|
||||||
void custom_exts_free(custom_ext_methods *exts);
|
void custom_exts_free(custom_ext_methods *exts);
|
||||||
|
|
||||||
void int_ssl_comp_free_compression_methods(void);
|
void ssl_comp_free_compression_methods_int(void);
|
||||||
|
|
||||||
# else
|
# else
|
||||||
|
|
||||||
|
@ -4196,5 +4196,5 @@ DH_meth_set_bn_mod_exp 4066 1_1_0 EXIST::FUNCTION:DH
|
|||||||
DH_meth_set_generate_key 4067 1_1_0 EXIST::FUNCTION:DH
|
DH_meth_set_generate_key 4067 1_1_0 EXIST::FUNCTION:DH
|
||||||
DH_meth_free 4068 1_1_0 EXIST::FUNCTION:DH
|
DH_meth_free 4068 1_1_0 EXIST::FUNCTION:DH
|
||||||
DH_meth_get_generate_key 4069 1_1_0 EXIST::FUNCTION:DH
|
DH_meth_get_generate_key 4069 1_1_0 EXIST::FUNCTION:DH
|
||||||
int_err_load_crypto_strings 4070 1_1_0 EXIST::FUNCTION:
|
err_load_crypto_strings_int 4070 1_1_0 EXIST::FUNCTION:
|
||||||
int_err_free_strings 4071 1_1_0 EXIST::FUNCTION:
|
err_free_strings_int 4071 1_1_0 EXIST::FUNCTION:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user