提交 342c21cd 编写于 作者: M Matt Caswell

Rename lots of *_intern or *_internal function to int_*

There was a lot of naming inconsistency, so we try and standardise on
one form.
Reviewed-by: NTim Hudson <tjh@openssl.org>
Reviewed-by: NRichard Levitte <levitte@openssl.org>
上级 5eb8f712
...@@ -93,7 +93,7 @@ static int oid_module_init(CONF_IMODULE *md, const CONF *cnf) ...@@ -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)
{ {
obj_cleanup_intern(); int_obj_cleanup();
} }
void ASN1_add_oid_module(void) void ASN1_add_oid_module(void)
......
...@@ -205,7 +205,7 @@ int BIO_sock_init(void) ...@@ -205,7 +205,7 @@ int BIO_sock_init(void)
return (1); return (1);
} }
void bio_sock_cleanup_intern(void) void int_bio_sock_cleanup(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) ...@@ -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)) {
comp_zlib_cleanup_internal(); int_comp_zlib_cleanup();
return meth; return meth;
} }
if (zlib_loaded) if (zlib_loaded)
...@@ -297,7 +297,7 @@ COMP_METHOD *COMP_zlib(void) ...@@ -297,7 +297,7 @@ COMP_METHOD *COMP_zlib(void)
return (meth); return (meth);
} }
void comp_zlib_cleanup_internal(void) void int_comp_zlib_cleanup(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, ...@@ -460,7 +460,7 @@ int CONF_module_add(const char *name, conf_init_func *ifunc,
return 0; return 0;
} }
void conf_modules_free_intern(void) void int_conf_modules_free(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) ...@@ -84,7 +84,7 @@ void OPENSSL_config(const char *config_name)
} }
#endif #endif
void openssl_config_internal(const char *config_name) void int_openssl_config(const char *config_name)
{ {
if (openssl_configured) if (openssl_configured)
return; return;
...@@ -103,7 +103,7 @@ void openssl_config_internal(const char *config_name) ...@@ -103,7 +103,7 @@ void openssl_config_internal(const char *config_name)
openssl_configured = 1; openssl_configured = 1;
} }
void openssl_no_config_internal(void) void int_openssl_no_config(void)
{ {
openssl_configured = 1; openssl_configured = 1;
} }
...@@ -63,7 +63,7 @@ ...@@ -63,7 +63,7 @@
#ifndef HAVE_CRYPTODEV #ifndef HAVE_CRYPTODEV
void engine_load_cryptodev_internal(void) void int_engine_load_cryptodev(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, ...@@ -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 engine_load_cryptodev_internal(void); void int_engine_load_cryptodev(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)) ...@@ -1628,7 +1628,7 @@ cryptodev_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f) (void))
return (1); return (1);
} }
void engine_load_cryptodev_internal(void) void int_engine_load_cryptodev(void)
{ {
ENGINE *engine = ENGINE_new(); ENGINE *engine = ENGINE_new();
int fd; int fd;
......
...@@ -295,7 +295,7 @@ static ENGINE *engine_dynamic(void) ...@@ -295,7 +295,7 @@ static ENGINE *engine_dynamic(void)
return ret; return ret;
} }
void engine_load_dynamic_internal(void) void int_engine_load_dynamic(void)
{ {
ENGINE *toadd = engine_dynamic(); ENGINE *toadd = engine_dynamic();
if (!toadd) if (!toadd)
......
...@@ -99,7 +99,7 @@ extern CRYPTO_RWLOCK *global_engine_lock; ...@@ -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. engine_cleanup_intern() will call all registered * register callbacks. int_engine_cleanup() 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) ...@@ -148,7 +148,7 @@ int ENGINE_free(ENGINE *e)
/* Cleanup stuff */ /* Cleanup stuff */
/* /*
* engine_cleanup_intern() is coded such that anything that does work that will * int_engine_cleanup() 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) ...@@ -200,7 +200,7 @@ static void engine_cleanup_cb_free(ENGINE_CLEANUP_ITEM *item)
OPENSSL_free(item); OPENSSL_free(item);
} }
void engine_cleanup_intern(void) void int_engine_cleanup(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; ...@@ -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 "engine_cleanup_intern()" stack to be called during * we register it with the "int_engine_cleanup()" stack to be called during
* cleanup. * cleanup.
*/ */
......
...@@ -189,7 +189,7 @@ static ENGINE *engine_openssl(void) ...@@ -189,7 +189,7 @@ static ENGINE *engine_openssl(void)
return ret; return ret;
} }
void engine_load_openssl_internal(void) void int_engine_load_openssl(void)
{ {
ENGINE *toadd = engine_openssl(); ENGINE *toadd = engine_openssl();
if (!toadd) if (!toadd)
......
...@@ -130,7 +130,7 @@ static ENGINE *ENGINE_rdrand(void) ...@@ -130,7 +130,7 @@ static ENGINE *ENGINE_rdrand(void)
return ret; return ret;
} }
void engine_load_rdrand_internal(void) void int_engine_load_rdrand(void)
{ {
extern unsigned int OPENSSL_ia32cap_P[]; extern unsigned int OPENSSL_ia32cap_P[];
...@@ -144,7 +144,7 @@ void engine_load_rdrand_internal(void) ...@@ -144,7 +144,7 @@ void engine_load_rdrand_internal(void)
} }
} }
#else #else
void engine_load_rdrand_internal(void) void int_engine_load_rdrand(void)
{ {
} }
#endif #endif
...@@ -447,7 +447,7 @@ void ERR_unload_strings(int lib, ERR_STRING_DATA *str) ...@@ -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 err_free_strings_intern(void) void int_err_free_strings(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 @@ ...@@ -88,7 +88,7 @@
#include <openssl/async.h> #include <openssl/async.h>
#include <openssl/kdf.h> #include <openssl/kdf.h>
void err_load_crypto_strings_intern(void) void int_err_load_crypto_strings(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 @@ ...@@ -62,7 +62,7 @@
#include <openssl/pkcs12.h> #include <openssl/pkcs12.h>
#include <openssl/objects.h> #include <openssl/objects.h>
void openssl_add_all_ciphers_internal(void) void int_openssl_add_all_ciphers(void)
{ {
#ifndef OPENSSL_NO_DES #ifndef OPENSSL_NO_DES
......
...@@ -62,7 +62,7 @@ ...@@ -62,7 +62,7 @@
#include <openssl/pkcs12.h> #include <openssl/pkcs12.h>
#include <openssl/objects.h> #include <openssl/objects.h>
void openssl_add_all_digests_internal(void) void int_openssl_add_all_digests(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) ...@@ -128,7 +128,7 @@ const EVP_MD *EVP_get_digestbyname(const char *name)
return (cp); return (cp);
} }
void evp_cleanup_intern(void) void int_evp_cleanup(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 evp_cleanup_intern(void) ...@@ -142,7 +142,7 @@ void evp_cleanup_intern(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;
obj_cleanup_intern(); int_obj_cleanup();
} }
OBJ_sigid_free(); OBJ_sigid_free();
} }
......
...@@ -175,7 +175,7 @@ static void cleanup_cb(EX_CALLBACK *funcs) ...@@ -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 crypto_cleanup_all_ex_data_intern(void) void int_crypto_cleanup_all_ex_data(void)
{ {
int i; int i;
......
...@@ -113,7 +113,7 @@ void OPENSSL_cpuid_setup(void); ...@@ -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 crypto_cleanup_all_ex_data_intern(void); void int_crypto_cleanup_all_ex_data(void);
#ifdef __cplusplus #ifdef __cplusplus
} }
......
...@@ -54,12 +54,12 @@ ...@@ -54,12 +54,12 @@
#include <openssl/engine.h> #include <openssl/engine.h>
void engine_load_openssl_internal(void); void int_engine_load_openssl(void);
void engine_load_cryptodev_internal(void); void int_engine_load_cryptodev(void);
void engine_load_rdrand_internal(void); void int_engine_load_rdrand(void);
void engine_load_dynamic_internal(void); void int_engine_load_dynamic(void);
void engine_load_padlock_internal(void); void int_engine_load_padlock(void);
void engine_load_capi_internal(void); void int_engine_load_capi(void);
void engine_load_dasync_internal(void); void int_engine_load_dasync(void);
void engine_load_afalg_internal(void); void int_engine_load_afalg(void);
void engine_cleanup_intern(void); void int_engine_cleanup(void);
...@@ -420,6 +420,6 @@ struct evp_pkey_st { ...@@ -420,6 +420,6 @@ struct evp_pkey_st {
} /* EVP_PKEY */ ; } /* EVP_PKEY */ ;
void openssl_add_all_ciphers_internal(void); void int_openssl_add_all_ciphers(void);
void openssl_add_all_digests_internal(void); void int_openssl_add_all_digests(void);
void evp_cleanup_intern(void); void int_evp_cleanup(void);
...@@ -8,4 +8,4 @@ ...@@ -8,4 +8,4 @@
#include <openssl/objects.h> #include <openssl/objects.h>
void obj_cleanup_intern(void); void int_obj_cleanup(void);
...@@ -8,4 +8,4 @@ ...@@ -8,4 +8,4 @@
#include <openssl/rand.h> #include <openssl/rand.h>
void rand_cleanup_intern(void); void int_rand_cleanup(void);
...@@ -144,9 +144,9 @@ static void ossl_init_load_crypto_strings(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: "
"err_load_crypto_strings_intern()\n"); "int_err_load_crypto_strings()\n");
# endif # endif
err_load_crypto_strings_intern(); int_err_load_crypto_strings();
#endif #endif
load_crypto_strings_inited = 1; load_crypto_strings_inited = 1;
} }
...@@ -161,9 +161,9 @@ static void ossl_init_add_all_ciphers(void) ...@@ -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: "
"openssl_add_all_ciphers_internal()\n"); "int_openssl_add_all_ciphers()\n");
# endif # endif
openssl_add_all_ciphers_internal(); int_openssl_add_all_ciphers();
# 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) ...@@ -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: "
"openssl_add_all_digests_internal()\n"); "int_openssl_add_all_digests()\n");
# endif # endif
openssl_add_all_digests_internal(); int_openssl_add_all_digests();
# 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) ...@@ -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: openssl_config_internal(%s)\n", "OPENSSL_INIT: ossl_init_config: int_openssl_config(%s)\n",
config_filename==NULL?"NULL":config_filename); config_filename==NULL?"NULL":config_filename);
#endif #endif
openssl_config_internal(config_filename); int_openssl_config(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: openssl_no_config_internal()\n"); "OPENSSL_INIT: ossl_init_config: int_openssl_no_config()\n");
#endif #endif
openssl_no_config_internal(); int_openssl_no_config();
config_inited = 1; config_inited = 1;
} }
...@@ -239,9 +239,9 @@ static void ossl_init_engine_openssl(void) ...@@ -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: "
"engine_load_openssl_internal()\n"); "int_engine_load_openssl()\n");
# endif # endif
engine_load_openssl_internal(); int_engine_load_openssl();
} }
# 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) ...@@ -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: "
"engine_load_cryptodev_internal()\n"); "int_engine_load_cryptodev()\n");
# endif # endif
engine_load_cryptodev_internal(); int_engine_load_cryptodev();
} }
# endif # endif
...@@ -262,9 +262,9 @@ static void ossl_init_engine_rdrand(void) ...@@ -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: "
"engine_load_rdrand_internal()\n"); "int_engine_load_rdrand()\n");
# endif # endif
engine_load_rdrand_internal(); int_engine_load_rdrand();
} }
# 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) ...@@ -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: "
"engine_load_dynamic_internal()\n"); "int_engine_load_dynamic()\n");
# endif # endif
engine_load_dynamic_internal(); int_engine_load_dynamic();
} }
# 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) ...@@ -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: "
"engine_load_padlock_internal()\n"); "int_engine_load_padlock()\n");
# endif # endif
engine_load_padlock_internal(); int_engine_load_padlock();
} }
# 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) ...@@ -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: "
"engine_load_capi_internal()\n"); "int_engine_load_capi()\n");
# endif # endif
engine_load_capi_internal(); int_engine_load_capi();
} }
# 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) ...@@ -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: "
"engine_load_dasync_internal()\n"); "int_engine_load_dasync()\n");
# endif # endif
engine_load_dasync_internal(); int_engine_load_dasync();
} }
# 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) ...@@ -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: "
"engine_load_afalg_internal()\n"); "int_engine_load_afalg()\n");
# endif # endif
engine_load_afalg_internal(); int_engine_load_afalg();
} }
# endif # endif
# endif # endif
...@@ -429,9 +429,9 @@ void OPENSSL_cleanup(void) ...@@ -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: "
"comp_zlib_cleanup_internal()\n"); "int_comp_zlib_cleanup()\n");
#endif #endif
comp_zlib_cleanup_internal(); int_comp_zlib_cleanup();
} }
#endif #endif
...@@ -446,51 +446,51 @@ void OPENSSL_cleanup(void) ...@@ -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: "
"err_free_strings_intern()\n"); "int_err_free_strings()\n");
#endif #endif
err_free_strings_intern(); int_err_free_strings();
} }
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: "
"rand_cleanup_intern()\n"); "int_rand_cleanup()\n");
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: " fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
"conf_modules_free_intern()\n"); "int_conf_modules_free()\n");
#ifndef OPENSSL_NO_ENGINE #ifndef OPENSSL_NO_ENGINE
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: " fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
"engine_cleanup_intern()\n"); "int_engine_cleanup()\n");
#endif #endif
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: " fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
"crypto_cleanup_all_ex_data_intern()\n"); "int_crypto_cleanup_all_ex_data()\n");
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: " fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
"bio_sock_cleanup_intern()\n"); "int_bio_sock_cleanup()\n");
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: " fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
"evp_cleanup_intern()\n"); "int_evp_cleanup()\n");
fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: " fprintf(stderr, "OPENSSL_INIT: OPENSSL_cleanup: "
"obj_cleanup_intern()\n"); "int_obj_cleanup()\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_intern could call an ENINGE's RAND cleanup function so
* must be called before engine_cleanup_intern() * must be called before int_engine_cleanup()
* - 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().
* - conf_modules_free_intern() can end up in ENGINE code so must be called * - int_conf_modules_free() can end up in ENGINE code so must be called
* before engine_cleanup_intern() * before int_engine_cleanup()
*/ */
rand_cleanup_intern(); int_rand_cleanup();
conf_modules_free_intern(); int_conf_modules_free();
#ifndef OPENSSL_NO_ENGINE #ifndef OPENSSL_NO_ENGINE
engine_cleanup_intern(); int_engine_cleanup();
#endif #endif
crypto_cleanup_all_ex_data_intern(); int_crypto_cleanup_all_ex_data();
#ifndef OPENSSL_NO_SOCK #ifndef OPENSSL_NO_SOCK
bio_sock_cleanup_intern(); int_bio_sock_cleanup();
#endif #endif
evp_cleanup_intern(); int_evp_cleanup();
obj_cleanup_intern(); int_obj_cleanup();
base_inited = 0; base_inited = 0;
} }
......
...@@ -199,7 +199,7 @@ static void cleanup3_doall(ADDED_OBJ *a) ...@@ -199,7 +199,7 @@ static void cleanup3_doall(ADDED_OBJ *a)
} }
/* /*
* The purpose of obj_cleanup_defer is to avoid evp_cleanup_intern() attempting * The purpose of obj_cleanup_defer is to avoid int_evp_cleanup() attempting
* to use freed up OIDs. If necessary the actual freeing up of OIDs is delayed. * to use freed up OIDs. If necessary the actual freeing up of OIDs is delayed.
*/ */
int obj_cleanup_defer = 0; int obj_cleanup_defer = 0;
...@@ -210,7 +210,7 @@ void check_defer(int nid) ...@@ -210,7 +210,7 @@ void check_defer(int nid)
obj_cleanup_defer = 1; obj_cleanup_defer = 1;
} }
void obj_cleanup_intern(void) void int_obj_cleanup(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) ...@@ -125,7 +125,7 @@ int RAND_set_rand_engine(ENGINE *engine)
} }
#endif #endif
void rand_cleanup_intern(void) void int_rand_cleanup(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 @@ ...@@ -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 engine_load_afalg_internal(void); void int_engine_load_afalg(void);
# endif # endif
/* Local Linkage Functions */ /* Local Linkage Functions */
...@@ -816,7 +816,7 @@ static ENGINE *engine_afalg(void) ...@@ -816,7 +816,7 @@ static ENGINE *engine_afalg(void)
return ret; return ret;
} }
void engine_load_afalg_internal(void) void int_engine_load_afalg(void)
{ {
ENGINE *toadd; ENGINE *toadd;
......
...@@ -191,7 +191,7 @@ static int cert_select_simple(ENGINE *e, SSL *ssl, STACK_OF(X509) *certs); ...@@ -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 engine_load_capi_internal(void); void int_engine_load_capi(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 *);
...@@ -613,7 +613,7 @@ static ENGINE *engine_capi(void) ...@@ -613,7 +613,7 @@ static ENGINE *engine_capi(void)
return ret; return ret;
} }
void engine_load_capi_internal(void) void int_engine_load_capi(void)
{ {
/* Copied from eng_[openssl|dyn].c */ /* Copied from eng_[openssl|dyn].c */
ENGINE *toadd = engine_capi(); ENGINE *toadd = engine_capi();
...@@ -1911,8 +1911,8 @@ OPENSSL_EXPORT ...@@ -1911,8 +1911,8 @@ OPENSSL_EXPORT
IMPLEMENT_DYNAMIC_CHECK_FN() IMPLEMENT_DYNAMIC_CHECK_FN()
# else # else
void engine_load_capi_internal(void); void int_engine_load_capi(void);
void engine_load_capi_internal(void) void int_engine_load_capi(void)
{ {
} }
# endif # endif
......
...@@ -86,7 +86,7 @@ static const char *engine_dasync_name = "Dummy Async engine support"; ...@@ -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 engine_load_dasync_internal(void); void int_engine_load_dasync(void);
/* Set up digests. Just SHA1 for now */ /* Set up digests. Just SHA1 for now */
...@@ -347,7 +347,7 @@ static ENGINE *engine_dasync(void) ...@@ -347,7 +347,7 @@ static ENGINE *engine_dasync(void)
return ret; return ret;
} }
void engine_load_dasync_internal(void) void int_engine_load_dasync(void)
{ {
ENGINE *toadd = engine_dasync(); ENGINE *toadd = engine_dasync();
if (!toadd) if (!toadd)
......
...@@ -111,8 +111,8 @@ static ENGINE *ENGINE_padlock(void); ...@@ -111,8 +111,8 @@ static ENGINE *ENGINE_padlock(void);
# endif # endif
# ifdef OPENSSL_NO_DYNAMIC_ENGINE # ifdef OPENSSL_NO_DYNAMIC_ENGINE
void engine_load_padlock_internal(void); void int_engine_load_padlock(void);
void engine_load_padlock_internal(void) void int_engine_load_padlock(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 { ...@@ -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 bio_sock_cleanup_intern(void); void int_bio_sock_cleanup(void);
...@@ -8,4 +8,4 @@ ...@@ -8,4 +8,4 @@
#include <openssl/comp.h> #include <openssl/comp.h>
void comp_zlib_cleanup_internal(void); void int_comp_zlib_cleanup(void);
...@@ -51,9 +51,9 @@ struct ossl_init_settings_st { ...@@ -51,9 +51,9 @@ struct ossl_init_settings_st {
char *config_name; char *config_name;
}; };
void openssl_config_internal(const char *config_name); void int_openssl_config(const char *config_name);
void openssl_no_config_internal(void); void int_openssl_no_config(void);
void conf_modules_free_intern(void); void int_conf_modules_free(void);
#ifdef __cplusplus #ifdef __cplusplus
} }
......
...@@ -55,5 +55,5 @@ ...@@ -55,5 +55,5 @@
* *
*/ */
void err_load_crypto_strings_intern(void); void int_err_load_crypto_strings(void);
void err_free_strings_intern(void); void int_err_free_strings(void);
...@@ -1908,7 +1908,7 @@ static void cmeth_free(SSL_COMP *cm) ...@@ -1908,7 +1908,7 @@ static void cmeth_free(SSL_COMP *cm)
OPENSSL_free(cm); OPENSSL_free(cm);
} }
void ssl_comp_free_compression_methods_intern(void) void int_ssl_comp_free_compression_methods(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) ...@@ -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: "
"ssl_comp_free_compression_methods_intern()\n"); "int_ssl_comp_free_compression_methods()\n");
#endif #endif
ssl_comp_free_compression_methods_intern(); int_ssl_comp_free_compression_methods();
#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: "
"err_free_strings_intern()\n"); "int_err_free_strings()\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 err_free_strings_intern() twice - but that's ok. The second * calling int_err_free_strings() 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.
*/ */
err_free_strings_intern(); int_err_free_strings();
} }
} }
......
...@@ -2195,7 +2195,7 @@ __owur int custom_ext_add(SSL *s, int server, ...@@ -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 ssl_comp_free_compression_methods_intern(void); void int_ssl_comp_free_compression_methods(void);
# else # else
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册