mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-22 20:56:39 +00:00
Fix various problems detected with Valgrind.
* chan_console accessed pvts after deallocation. * cdr_mysql stored a pointer that was freed by realloc() * The module loader did not check usecount on shutdown, which led to chan_iax2 reading a timer that was already unloaded. * The event subsystem sometimes creates an event with no IEs. Due to a corner condition, the code would read beyond the memory boundary. * res_pktccops did not correctly check whether its monitor thread was started. (closes issue #16062) Reported by: alexanderheinz Patches: 20091109__issue16062.diff.txt uploaded by tilghman (license 14) Tested by: tilghman git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@228798 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -364,16 +364,16 @@ static int my_load_config_string(struct ast_config *cfg, const char *category, c
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tmp = ast_variable_retrieve(cfg, category, variable);
|
||||||
|
|
||||||
|
ast_str_set(field, 0, "%s", tmp ? tmp : def);
|
||||||
|
|
||||||
us->str = *field;
|
us->str = *field;
|
||||||
|
|
||||||
AST_LIST_LOCK(&unload_strings);
|
AST_LIST_LOCK(&unload_strings);
|
||||||
AST_LIST_INSERT_HEAD(&unload_strings, us, entry);
|
AST_LIST_INSERT_HEAD(&unload_strings, us, entry);
|
||||||
AST_LIST_UNLOCK(&unload_strings);
|
AST_LIST_UNLOCK(&unload_strings);
|
||||||
|
|
||||||
tmp = ast_variable_retrieve(cfg, category, variable);
|
|
||||||
|
|
||||||
ast_str_set(field, 0, "%s", tmp ? tmp : def);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1500,6 +1500,7 @@ return_error_pa_init:
|
|||||||
return_error:
|
return_error:
|
||||||
if (pvts)
|
if (pvts)
|
||||||
ao2_ref(pvts, -1);
|
ao2_ref(pvts, -1);
|
||||||
|
pvts = NULL;
|
||||||
pvt_destructor(&globals);
|
pvt_destructor(&globals);
|
||||||
|
|
||||||
return AST_MODULE_LOAD_DECLINE;
|
return AST_MODULE_LOAD_DECLINE;
|
||||||
|
@@ -1067,6 +1067,7 @@ struct ast_event *ast_event_new(enum ast_event_type type, ...)
|
|||||||
struct ast_event *event;
|
struct ast_event *event;
|
||||||
enum ast_event_ie_type ie_type;
|
enum ast_event_ie_type ie_type;
|
||||||
struct ast_event_ie_val *ie_val;
|
struct ast_event_ie_val *ie_val;
|
||||||
|
int has_ie = 0;
|
||||||
AST_LIST_HEAD_NOLOCK_STATIC(ie_vals, ast_event_ie_val);
|
AST_LIST_HEAD_NOLOCK_STATIC(ie_vals, ast_event_ie_val);
|
||||||
|
|
||||||
/* Invalid type */
|
/* Invalid type */
|
||||||
@@ -1114,6 +1115,7 @@ struct ast_event *ast_event_new(enum ast_event_type type, ...)
|
|||||||
|
|
||||||
if (insert) {
|
if (insert) {
|
||||||
AST_LIST_INSERT_TAIL(&ie_vals, ie_value, entry);
|
AST_LIST_INSERT_TAIL(&ie_vals, ie_value, entry);
|
||||||
|
has_ie = 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
va_end(ap);
|
va_end(ap);
|
||||||
@@ -1154,7 +1156,7 @@ struct ast_event *ast_event_new(enum ast_event_type type, ...)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!ast_event_get_ie_raw(event, AST_EVENT_IE_EID)) {
|
if (has_ie && !ast_event_get_ie_raw(event, AST_EVENT_IE_EID)) {
|
||||||
/* If the event is originating on this server, add the server's
|
/* If the event is originating on this server, add the server's
|
||||||
* entity ID to the event. */
|
* entity ID to the event. */
|
||||||
ast_event_append_ie_raw(&event, AST_EVENT_IE_EID, &ast_eid_default, sizeof(ast_eid_default));
|
ast_event_append_ie_raw(&event, AST_EVENT_IE_EID, &ast_eid_default, sizeof(ast_eid_default));
|
||||||
|
@@ -443,26 +443,39 @@ static struct ast_module *load_dynamic_module(const char *resource_in, unsigned
|
|||||||
void ast_module_shutdown(void)
|
void ast_module_shutdown(void)
|
||||||
{
|
{
|
||||||
struct ast_module *mod;
|
struct ast_module *mod;
|
||||||
AST_LIST_HEAD_NOLOCK_STATIC(local_module_list, ast_module);
|
int somethingchanged = 1, final = 0;
|
||||||
|
|
||||||
/* We have to call the unload() callbacks in reverse order that the modules
|
|
||||||
* exist in the module list so it is the reverse order of how they were
|
|
||||||
* loaded. */
|
|
||||||
|
|
||||||
AST_LIST_LOCK(&module_list);
|
AST_LIST_LOCK(&module_list);
|
||||||
while ((mod = AST_LIST_REMOVE_HEAD(&module_list, entry)))
|
|
||||||
AST_LIST_INSERT_HEAD(&local_module_list, mod, entry);
|
|
||||||
AST_LIST_UNLOCK(&module_list);
|
|
||||||
|
|
||||||
while ((mod = AST_LIST_REMOVE_HEAD(&local_module_list, entry))) {
|
/*!\note Some resources, like timers, are started up dynamically, and thus
|
||||||
if (mod->info->unload)
|
* may be still in use, even if all channels are dead. We must therefore
|
||||||
mod->info->unload();
|
* check the usecount before asking modules to unload. */
|
||||||
/* Since this should only be called when shutting down "gracefully",
|
do {
|
||||||
* all channels should be down before we get to this point, meaning
|
if (!somethingchanged) {
|
||||||
* there will be no module users left. */
|
/*!\note If we go through the entire list without changing
|
||||||
AST_LIST_HEAD_DESTROY(&mod->users);
|
* anything, ignore the usecounts and unload, then exit. */
|
||||||
free(mod);
|
final = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Reset flag before traversing the list */
|
||||||
|
somethingchanged = 0;
|
||||||
|
|
||||||
|
AST_LIST_TRAVERSE_SAFE_BEGIN(&module_list, mod, entry) {
|
||||||
|
if (!final && mod->usecount) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
AST_LIST_REMOVE_CURRENT(entry);
|
||||||
|
if (mod->info->unload) {
|
||||||
|
mod->info->unload();
|
||||||
|
}
|
||||||
|
AST_LIST_HEAD_DESTROY(&mod->users);
|
||||||
|
free(mod);
|
||||||
|
somethingchanged = 1;
|
||||||
|
}
|
||||||
|
AST_LIST_TRAVERSE_SAFE_END;
|
||||||
|
} while (somethingchanged && !final);
|
||||||
|
|
||||||
|
AST_LIST_UNLOCK(&module_list);
|
||||||
}
|
}
|
||||||
|
|
||||||
int ast_unload_resource(const char *resource_name, enum ast_module_unload_mode force)
|
int ast_unload_resource(const char *resource_name, enum ast_module_unload_mode force)
|
||||||
|
@@ -1446,7 +1446,7 @@ static int load_module(void)
|
|||||||
static int unload_module(void)
|
static int unload_module(void)
|
||||||
{
|
{
|
||||||
if (!ast_mutex_lock(&pktccops_lock)) {
|
if (!ast_mutex_lock(&pktccops_lock)) {
|
||||||
if (pktccops_thread && (pktccops_thread != AST_PTHREADT_STOP)) {
|
if ((pktccops_thread != AST_PTHREADT_NULL) && (pktccops_thread != AST_PTHREADT_STOP)) {
|
||||||
pthread_cancel(pktccops_thread);
|
pthread_cancel(pktccops_thread);
|
||||||
pthread_kill(pktccops_thread, SIGURG);
|
pthread_kill(pktccops_thread, SIGURG);
|
||||||
pthread_join(pktccops_thread, NULL);
|
pthread_join(pktccops_thread, NULL);
|
||||||
|
Reference in New Issue
Block a user