add switch_hashtable_insert_destructor so you can insert a pointer into a hash with a custom destructor and use it in spandsp to fix a leak on reloadxml with the tone_descriptor tables and fix a bunch of random tiny leaks etc

This commit is contained in:
Anthony Minessale 2014-04-09 23:26:41 +05:00
parent d789c6470a
commit 4178688b4a
12 changed files with 56 additions and 37 deletions

View File

@ -22,6 +22,7 @@ struct entry
void *k, *v; void *k, *v;
unsigned int h; unsigned int h;
hashtable_flag_t flags; hashtable_flag_t flags;
hashtable_destructor_t destructor;
struct entry *next; struct entry *next;
}; };

View File

@ -1370,7 +1370,9 @@ SWITCH_DECLARE(switch_status_t) switch_core_hash_destroy(_Inout_ switch_hash_t *
\return SWITCH_STATUS_SUCCESS if the data is added \return SWITCH_STATUS_SUCCESS if the data is added
\note the string key must be a constant or a dynamic string \note the string key must be a constant or a dynamic string
*/ */
SWITCH_DECLARE(switch_status_t) switch_core_hash_insert(_In_ switch_hash_t *hash, _In_z_ const char *key, _In_opt_ const void *data); SWITCH_DECLARE(switch_status_t) switch_core_hash_insert_destructor(_In_ switch_hash_t *hash, _In_z_ const char *key, _In_opt_ const void *data, hashtable_destructor_t destructor);
#define switch_core_hash_insert(_h, _k, _d) switch_core_hash_insert_destructor(_h, _k, _d, NULL)
/*! /*!
\brief Insert data into a hash \brief Insert data into a hash

View File

@ -123,7 +123,8 @@ typedef enum {
} hashtable_flag_t; } hashtable_flag_t;
SWITCH_DECLARE(int) SWITCH_DECLARE(int)
switch_hashtable_insert(switch_hashtable_t *h, void *k, void *v, hashtable_flag_t flags); switch_hashtable_insert_destructor(switch_hashtable_t *h, void *k, void *v, hashtable_flag_t flags, hashtable_destructor_t destructor);
#define switch_hashtable_insert(_h, _k, _v, _f) switch_hashtable_insert_destructor(_h, _k, _v, _f, NULL)
#define DEFINE_HASHTABLE_INSERT(fnname, keytype, valuetype) \ #define DEFINE_HASHTABLE_INSERT(fnname, keytype, valuetype) \
int fnname (switch_hashtable_t *h, keytype *k, valuetype *v) \ int fnname (switch_hashtable_t *h, keytype *k, valuetype *v) \

View File

@ -2079,6 +2079,8 @@ typedef struct switch_core_port_allocator switch_core_port_allocator_t;
typedef struct switch_media_bug switch_media_bug_t; typedef struct switch_media_bug switch_media_bug_t;
typedef struct switch_limit_interface switch_limit_interface_t; typedef struct switch_limit_interface switch_limit_interface_t;
typedef void (*hashtable_destructor_t)(void *ptr);
struct switch_console_callback_match_node { struct switch_console_callback_match_node {
char *val; char *val;
struct switch_console_callback_match_node *next; struct switch_console_callback_match_node *next;

View File

@ -875,7 +875,7 @@ SWITCH_DECLARE(switch_time_t) switch_str_time(const char *in);
\param vname the name of the global pointer to modify with the new function \param vname the name of the global pointer to modify with the new function
*/ */
#define SWITCH_DECLARE_GLOBAL_STRING_FUNC(fname, vname) static void fname(const char *string) { if (!string) return;\ #define SWITCH_DECLARE_GLOBAL_STRING_FUNC(fname, vname) static void fname(const char *string) { if (!string) return;\
if (vname) {free(vname); vname = NULL;}vname = strdup(string);} static void fname(const char *string) if (vname) {vname = NULL;}vname = switch_core_permanent_strdup(string);} static void fname(const char *string)
/*! /*!
\brief Separate a string into an array based on a character delimiter \brief Separate a string into an array based on a character delimiter

View File

@ -2071,49 +2071,49 @@ static switch_status_t do_config(void)
profile->auth_scheme = auth_scheme; profile->auth_scheme = auth_scheme;
profile->timeout = timeout; profile->timeout = timeout;
profile->url = strdup(url); profile->url = switch_core_strdup(globals.pool, url);
switch_assert(profile->url); switch_assert(profile->url);
if (bind_local != NULL) { if (bind_local != NULL) {
profile->bind_local = strdup(bind_local); profile->bind_local = switch_core_strdup(globals.pool, bind_local);
} }
if (method != NULL) { if (method != NULL) {
profile->method = strdup(method); profile->method = switch_core_strdup(globals.pool, method);
} else { } else {
profile->method = NULL; profile->method = NULL;
} }
if (bind_cred) { if (bind_cred) {
profile->cred = strdup(bind_cred); profile->cred = switch_core_strdup(globals.pool, bind_cred);
} }
profile->disable100continue = disable100continue; profile->disable100continue = disable100continue;
profile->enable_cacert_check = enable_cacert_check; profile->enable_cacert_check = enable_cacert_check;
if (ssl_cert_file) { if (ssl_cert_file) {
profile->ssl_cert_file = strdup(ssl_cert_file); profile->ssl_cert_file = switch_core_strdup(globals.pool, ssl_cert_file);
} }
if (ssl_key_file) { if (ssl_key_file) {
profile->ssl_key_file = strdup(ssl_key_file); profile->ssl_key_file = switch_core_strdup(globals.pool, ssl_key_file);
} }
if (ssl_key_password) { if (ssl_key_password) {
profile->ssl_key_password = strdup(ssl_key_password); profile->ssl_key_password = switch_core_strdup(globals.pool, ssl_key_password);
} }
if (ssl_version) { if (ssl_version) {
profile->ssl_version = strdup(ssl_version); profile->ssl_version = switch_core_strdup(globals.pool, ssl_version);
} }
if (ssl_cacert_file) { if (ssl_cacert_file) {
profile->ssl_cacert_file = strdup(ssl_cacert_file); profile->ssl_cacert_file = switch_core_strdup(globals.pool, ssl_cacert_file);
} }
profile->enable_ssl_verifyhost = enable_ssl_verifyhost; profile->enable_ssl_verifyhost = enable_ssl_verifyhost;
if (cookie_file) { if (cookie_file) {
profile->cookie_file = strdup(cookie_file); profile->cookie_file = switch_core_strdup(globals.pool, cookie_file);
} }
profile->vars_map = vars_map; profile->vars_map = vars_map;
@ -2138,7 +2138,7 @@ static switch_status_t do_config(void)
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "Profile [%s] JSON Function [%s]\n", switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_NOTICE, "Profile [%s] JSON Function [%s]\n",
zstr(bname) ? "N/A" : bname, profile->url); zstr(bname) ? "N/A" : bname, profile->url);
profile->name = strdup(bname); profile->name = switch_core_strdup(globals.pool, bname);
switch_core_hash_insert(globals.profile_hash, bname, profile); switch_core_hash_insert(globals.profile_hash, bname, profile);

View File

@ -476,6 +476,12 @@ void mod_spandsp_indicate_data(switch_core_session_t *session, switch_bool_t sel
/* ************************************************************************** /* **************************************************************************
CONFIGURATION CONFIGURATION
************************************************************************* */ ************************************************************************* */
static void destroy_descriptor(void *ptr)
{
tone_descriptor_t *d = (tone_descriptor_t *) ptr;
super_tone_rx_free_descriptor(d->spandsp_tone_descriptor);
}
switch_status_t load_configuration(switch_bool_t reload) switch_status_t load_configuration(switch_bool_t reload)
{ {
@ -657,7 +663,8 @@ switch_status_t load_configuration(switch_bool_t reload)
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Unable to allocate tone_descriptor: %s\n", name); switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_CRIT, "Unable to allocate tone_descriptor: %s\n", name);
switch_goto_status(SWITCH_STATUS_FALSE, done); switch_goto_status(SWITCH_STATUS_FALSE, done);
} }
switch_core_hash_insert(spandsp_globals.tones, name, descriptor);
switch_core_hash_insert_destructor(spandsp_globals.tones, name, descriptor, destroy_descriptor);
/* add tones to descriptor */ /* add tones to descriptor */
for (tone = switch_xml_child(xdescriptor, "tone"); tone; tone = switch_xml_next(tone)) { for (tone = switch_xml_child(xdescriptor, "tone"); tone; tone = switch_xml_next(tone)) {
@ -830,6 +837,8 @@ SWITCH_MODULE_SHUTDOWN_FUNCTION(mod_spandsp_shutdown)
switch_core_destroy_memory_pool(&spandsp_globals.config_pool); switch_core_destroy_memory_pool(&spandsp_globals.config_pool);
} }
memset(&spandsp_globals, 0, sizeof(spandsp_globals));
return SWITCH_STATUS_UNLOAD; return SWITCH_STATUS_UNLOAD;
} }

View File

@ -1645,7 +1645,6 @@ void mod_spandsp_fax_shutdown(void)
t38_state_list.thread_running = 0; t38_state_list.thread_running = 0;
wake_thread(1); wake_thread(1);
switch_thread_join(&tstatus, t38_state_list.thread); switch_thread_join(&tstatus, t38_state_list.thread);
memset(&spandsp_globals, 0, sizeof(spandsp_globals));
} }
static const switch_state_handler_table_t t38_gateway_state_handlers; static const switch_state_handler_table_t t38_gateway_state_handlers;

View File

@ -872,6 +872,7 @@ SWITCH_MODULE_SHUTDOWN_FUNCTION(mod_v8_shutdown)
switch_mutex_destroy(globals.event_mutex); switch_mutex_destroy(globals.event_mutex);
switch_core_hash_destroy(&module_manager.load_hash); switch_core_hash_destroy(&module_manager.load_hash);
switch_core_destroy_memory_pool(&module_manager.pool);
return SWITCH_STATUS_SUCCESS; return SWITCH_STATUS_SUCCESS;
} }

View File

@ -313,6 +313,17 @@ static switch_status_t mod_logfile_logger(const switch_log_node_t *node, switch_
return process_node(node, level); return process_node(node, level);
} }
static void cleanup_profile(void *ptr)
{
logfile_profile_t *profile = (logfile_profile_t *) ptr;
switch_core_hash_destroy(&profile->log_hash);
switch_file_close(profile->log_afd);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Closing %s\n", profile->logfile);
switch_safe_free(profile->logfile);
}
static switch_status_t load_profile(switch_xml_t xml) static switch_status_t load_profile(switch_xml_t xml)
{ {
switch_xml_t param, settings; switch_xml_t param, settings;
@ -365,7 +376,7 @@ static switch_status_t load_profile(switch_xml_t xml)
return SWITCH_STATUS_GENERR; return SWITCH_STATUS_GENERR;
} }
switch_core_hash_insert(profile_hash, new_profile->name, (void *) new_profile); switch_core_hash_insert_destructor(profile_hash, new_profile->name, (void *) new_profile, cleanup_profile);
return SWITCH_STATUS_SUCCESS; return SWITCH_STATUS_SUCCESS;
} }
@ -454,26 +465,9 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_logfile_load)
SWITCH_MODULE_SHUTDOWN_FUNCTION(mod_logfile_shutdown) SWITCH_MODULE_SHUTDOWN_FUNCTION(mod_logfile_shutdown)
{ {
switch_hash_index_t *hi;
const void *var;
void *val;
switch_log_unbind_logger(mod_logfile_logger); switch_log_unbind_logger(mod_logfile_logger);
switch_event_unbind(&globals.node); switch_event_unbind(&globals.node);
for (hi = switch_core_hash_first(profile_hash); hi; hi = switch_core_hash_next(&hi)) {
logfile_profile_t *profile;
switch_core_hash_this(hi, &var, NULL, &val);
if ((profile = (logfile_profile_t *) val)) {
switch_file_close(profile->log_afd);
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Closing %s\n", profile->logfile);
switch_safe_free(profile->logfile);
}
}
switch_core_hash_destroy(&profile_hash); switch_core_hash_destroy(&profile_hash);
return SWITCH_STATUS_SUCCESS; return SWITCH_STATUS_SUCCESS;
} }

View File

@ -55,9 +55,9 @@ SWITCH_DECLARE(switch_status_t) switch_core_hash_destroy(switch_hash_t **hash)
return SWITCH_STATUS_SUCCESS; return SWITCH_STATUS_SUCCESS;
} }
SWITCH_DECLARE(switch_status_t) switch_core_hash_insert(switch_hash_t *hash, const char *key, const void *data) SWITCH_DECLARE(switch_status_t) switch_core_hash_insert_destructor(switch_hash_t *hash, const char *key, const void *data, hashtable_destructor_t destructor)
{ {
switch_hashtable_insert(hash, strdup(key), (void *)data, HASHTABLE_FLAG_FREE_KEY); switch_hashtable_insert_destructor(hash, strdup(key), (void *)data, HASHTABLE_FLAG_FREE_KEY, destructor);
return SWITCH_STATUS_SUCCESS; return SWITCH_STATUS_SUCCESS;
} }

View File

@ -155,7 +155,7 @@ switch_hashtable_count(switch_hashtable_t *h)
/*****************************************************************************/ /*****************************************************************************/
SWITCH_DECLARE(int) SWITCH_DECLARE(int)
switch_hashtable_insert(switch_hashtable_t *h, void *k, void *v, hashtable_flag_t flags) switch_hashtable_insert_destructor(switch_hashtable_t *h, void *k, void *v, hashtable_flag_t flags, hashtable_destructor_t destructor)
{ {
/* This method allows duplicate keys - but they shouldn't be used */ /* This method allows duplicate keys - but they shouldn't be used */
unsigned int index; unsigned int index;
@ -175,6 +175,7 @@ switch_hashtable_insert(switch_hashtable_t *h, void *k, void *v, hashtable_flag_
e->k = k; e->k = k;
e->v = v; e->v = v;
e->flags = flags; e->flags = flags;
e->destructor = destructor;
e->next = h->table[index]; e->next = h->table[index];
h->table[index] = e; h->table[index] = e;
return -1; return -1;
@ -222,6 +223,12 @@ switch_hashtable_remove(switch_hashtable_t *h, void *k)
if (e->flags & HASHTABLE_FLAG_FREE_KEY) { if (e->flags & HASHTABLE_FLAG_FREE_KEY) {
freekey(e->k); freekey(e->k);
} }
if (e->flags & HASHTABLE_FLAG_FREE_VALUE) {
switch_safe_free(e->v);
} else if (e->destructor) {
e->destructor(e->v);
e->v = NULL;
}
switch_safe_free(e); switch_safe_free(e);
return v; return v;
} }
@ -251,6 +258,9 @@ switch_hashtable_destroy(switch_hashtable_t **h)
if (f->flags & HASHTABLE_FLAG_FREE_VALUE) { if (f->flags & HASHTABLE_FLAG_FREE_VALUE) {
switch_safe_free(f->v); switch_safe_free(f->v);
} else if (f->destructor) {
f->destructor(f->v);
f->v = NULL;
} }
switch_safe_free(f); switch_safe_free(f);
} }