From: Michael L. Young Date: Thu, 9 May 2013 03:30:49 +0000 (+0000) Subject: Fix Segfault In app_queue When "persistentmembers" Is Enabled And Using Realtime X-Git-Tag: 11.5.0-rc1~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e26179599a9fd328d934ea9d5b0e5b230894cdd0;p=thirdparty%2Fasterisk.git Fix Segfault In app_queue When "persistentmembers" Is Enabled And Using Realtime When the "ignorebusy" setting was deprecated, we added some code to allow us to be compatible with older setups that are still using the "ignorebusy" setting instead of "ringinuse". We set a char *variable with the column name to use, which helps the realtime functions to use the correct column in their SQL queries. When "persistentmembers" is enabled, we are not setting this variable before the realtime functions were called to load members. This results in the variable being NULL and therefore causing a segfault when loading members during the module's process of loading. The solution was to move the code that sets that variable to be before these realtime functions are called during the loading of the module. (closes issue ASTERISK-21738) Reported by: JoshE Tested by: JoshE Patches: asterisk-21738-rt-ringinuse-field-not-set.diff uploaded by Michael L. Young (license 5026) Review: https://reviewboard.asterisk.org/r/2499/ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@388108 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_queue.c b/apps/app_queue.c index 4228bb8dee..7f704167e7 100644 --- a/apps/app_queue.c +++ b/apps/app_queue.c @@ -9887,6 +9887,31 @@ static int load_module(void) if (reload_handler(0, &mask, NULL)) return AST_MODULE_LOAD_DECLINE; + ast_realtime_require_field("queue_members", "paused", RQ_INTEGER1, 1, "uniqueid", RQ_UINTEGER2, 5, SENTINEL); + + /* + * This section is used to determine which name for 'ringinuse' to use in realtime members + * Necessary for supporting older setups. + */ + member_config = ast_load_realtime_multientry("queue_members", "interface LIKE", "%", "queue_name LIKE", "%", SENTINEL); + if (!member_config) { + realtime_ringinuse_field = "ringinuse"; + } else { + const char *config_val; + if ((config_val = ast_variable_retrieve(member_config, NULL, "ringinuse"))) { + ast_log(LOG_NOTICE, "ringinuse field entries found in queue_members table. Using 'ringinuse'\n"); + realtime_ringinuse_field = "ringinuse"; + } else if ((config_val = ast_variable_retrieve(member_config, NULL, "ignorebusy"))) { + ast_log(LOG_NOTICE, "ignorebusy field found in queue_members table with no ringinuse field. Using 'ignorebusy'\n"); + realtime_ringinuse_field = "ignorebusy"; + } else { + ast_log(LOG_NOTICE, "No entries were found for ringinuse/ignorebusy in queue_members table. Using 'ringinuse'\n"); + realtime_ringinuse_field = "ringinuse"; + } + } + + ast_config_destroy(member_config); + if (queue_persistent_members) reload_queue_members(); @@ -9930,31 +9955,6 @@ static int load_module(void) ast_extension_state_add(NULL, NULL, extension_state_cb, NULL); - ast_realtime_require_field("queue_members", "paused", RQ_INTEGER1, 1, "uniqueid", RQ_UINTEGER2, 5, SENTINEL); - - /* - * This section is used to determine which name for 'ringinuse' to use in realtime members - * Necessary for supporting older setups. - */ - member_config = ast_load_realtime_multientry("queue_members", "interface LIKE", "%", "queue_name LIKE", "%", SENTINEL); - if (!member_config) { - realtime_ringinuse_field = "ringinuse"; - } else { - const char *config_val; - if ((config_val = ast_variable_retrieve(member_config, NULL, "ringinuse"))) { - ast_log(LOG_NOTICE, "ringinuse field entries found in queue_members table. Using 'ringinuse'\n"); - realtime_ringinuse_field = "ringinuse"; - } else if ((config_val = ast_variable_retrieve(member_config, NULL, "ignorebusy"))) { - ast_log(LOG_NOTICE, "ignorebusy field found in queue_members table with no ringinuse field. Using 'ignorebusy'\n"); - realtime_ringinuse_field = "ignorebusy"; - } else { - ast_log(LOG_NOTICE, "No entries were found for ringinuse/ignorebusy in queue_members table. Using 'ringinuse'\n"); - realtime_ringinuse_field = "ringinuse"; - } - } - - ast_config_destroy(member_config); - return res ? AST_MODULE_LOAD_DECLINE : 0; }