summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2014-04-17 22:50:23 +0000
committerJoshua Colp <jcolp@digium.com>2014-04-17 22:50:23 +0000
commit1a9ff2fffbb8102751b20971a08df1453df60f98 (patch)
tree03c9baafa0a8c25e82cb3fc63dcee0106552a9d9
parentc76608f24b1561ae9faff484381433df06631713 (diff)
res_pjsip: Handle reloading when permanent contacts exist and qualify is configured.
This change fixes a problem where permanent contacts being qualified were not being updated. This was caused by the permanent contacts getting a uuid and not a known identifier, causing an inability to look them up when updating in the qualify code. A bug also existed where the new configuration may not be available immediately when updating qualifies. (closes issue ASTERISK-23514) Reported by: Richard Mudgett Review: https://reviewboard.asterisk.org/r/3448/ ........ Merged revisions 412551 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@412552 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--res/res_pjsip.c20
-rw-r--r--res/res_pjsip/location.c53
-rw-r--r--res/res_pjsip/pjsip_configuration.c15
-rw-r--r--res/res_pjsip/pjsip_options.c61
-rw-r--r--res/res_pjsip_registrar.c2
5 files changed, 117 insertions, 34 deletions
diff --git a/res/res_pjsip.c b/res/res_pjsip.c
index 0cf162a22..5a3fe2fe8 100644
--- a/res/res_pjsip.c
+++ b/res/res_pjsip.c
@@ -2258,6 +2258,18 @@ static void remove_request_headers(pjsip_endpoint *endpt)
}
}
+/*!
+ * \internal
+ * \brief Reload configuration within a PJSIP thread
+ */
+static int reload_configuration_task(void *obj)
+{
+ ast_res_pjsip_reload_configuration();
+ ast_res_pjsip_init_options_handling(1);
+ ast_sip_initialize_dns();
+ return 0;
+}
+
static int load_module(void)
{
/* The third parameter is just copied from
@@ -2409,11 +2421,11 @@ static int load_module(void)
static int reload_module(void)
{
- if (ast_res_pjsip_reload_configuration()) {
- return AST_MODULE_LOAD_DECLINE;
+ if (ast_sip_push_task(NULL, reload_configuration_task, NULL)) {
+ ast_log(LOG_WARNING, "Failed to reload PJSIP\n");
+ return -1;
}
- ast_res_pjsip_init_options_handling(1);
- ast_sip_initialize_dns();
+
return 0;
}
diff --git a/res/res_pjsip/location.c b/res/res_pjsip/location.c
index 2cd852daa..0c7338a98 100644
--- a/res/res_pjsip/location.c
+++ b/res/res_pjsip/location.c
@@ -255,25 +255,66 @@ static int permanent_contact_validate(void *data)
return 0;
}
+static int permanent_uri_sort_fn(const void *obj_left, const void *obj_right, int flags)
+{
+ const struct ast_sip_contact *object_left = obj_left;
+ const struct ast_sip_contact *object_right = obj_right;
+ const char *right_key = obj_right;
+ int cmp;
+
+ switch (flags & OBJ_SEARCH_MASK) {
+ case OBJ_SEARCH_OBJECT:
+ right_key = ast_sorcery_object_get_id(object_right);
+ /* Fall through */
+ case OBJ_SEARCH_KEY:
+ cmp = strcmp(ast_sorcery_object_get_id(object_left), right_key);
+ break;
+ case OBJ_SEARCH_PARTIAL_KEY:
+ /*
+ * We could also use a partial key struct containing a length
+ * so strlen() does not get called for every comparison instead.
+ */
+ cmp = strncmp(ast_sorcery_object_get_id(object_left), right_key, strlen(right_key));
+ break;
+ default:
+ /* Sort can only work on something with a full or partial key. */
+ ast_assert(0);
+ cmp = 0;
+ break;
+ }
+ return cmp;
+}
+
/*! \brief Custom handler for permanent URIs */
static int permanent_uri_handler(const struct aco_option *opt, struct ast_variable *var, void *obj)
{
struct ast_sip_aor *aor = obj;
- RAII_VAR(struct ast_sip_contact *, contact, NULL, ao2_cleanup);
+ const char *aor_id = ast_sorcery_object_get_id(aor);
+ struct ast_sip_contact *contact;
+ char contact_id[strlen(aor_id) + strlen(var->value) + 2 + 1];
- if (ast_sip_push_task_synchronous(NULL, permanent_contact_validate, (char*)var->value)) {
+ if (ast_sip_push_task_synchronous(NULL, permanent_contact_validate, (char *) var->value)) {
ast_log(LOG_ERROR, "Permanent URI on aor '%s' with contact '%s' failed to parse\n",
- ast_sorcery_object_get_id(aor), var->value);
+ aor_id, var->value);
return -1;
}
- if ((!aor->permanent_contacts && !(aor->permanent_contacts = ao2_container_alloc_options(AO2_ALLOC_OPT_LOCK_NOLOCK, 1, NULL, NULL))) ||
- !(contact = ast_sorcery_alloc(ast_sip_get_sorcery(), "contact", NULL))) {
- return -1;
+ if (!aor->permanent_contacts) {
+ aor->permanent_contacts = ao2_container_alloc_list(AO2_ALLOC_OPT_LOCK_NOLOCK,
+ AO2_CONTAINER_ALLOC_OPT_DUPS_REJECT, permanent_uri_sort_fn, NULL);
+ if (!aor->permanent_contacts) {
+ return -1;
+ }
}
+ snprintf(contact_id, sizeof(contact_id), "%s@@%s", aor_id, var->value);
+ contact = ast_sorcery_alloc(ast_sip_get_sorcery(), "contact", contact_id);
+ if (!contact) {
+ return -1;
+ }
ast_string_field_set(contact, uri, var->value);
ao2_link(aor->permanent_contacts, contact);
+ ao2_ref(contact, -1);
return 0;
}
diff --git a/res/res_pjsip/pjsip_configuration.c b/res/res_pjsip/pjsip_configuration.c
index 857805a83..b8839ca3c 100644
--- a/res/res_pjsip/pjsip_configuration.c
+++ b/res/res_pjsip/pjsip_configuration.c
@@ -1812,11 +1812,7 @@ void ast_res_pjsip_destroy_configuration(void)
ast_sorcery_unref(sip_sorcery);
}
-/*!
- * \internal
- * \brief Reload configuration within a PJSIP thread
- */
-static int reload_configuration_task(void *obj)
+int ast_res_pjsip_reload_configuration(void)
{
if (sip_sorcery) {
ast_sorcery_reload(sip_sorcery);
@@ -1824,15 +1820,6 @@ static int reload_configuration_task(void *obj)
return 0;
}
-int ast_res_pjsip_reload_configuration(void)
-{
- if (ast_sip_push_task(NULL, reload_configuration_task, NULL)) {
- ast_log(LOG_WARNING, "Failed to reload PJSIP configuration\n");
- }
-
- return 0;
-}
-
static void subscription_configuration_destroy(struct ast_sip_endpoint_subscription_configuration *subscription)
{
ast_string_field_free_memory(&subscription->mwi);
diff --git a/res/res_pjsip/pjsip_options.c b/res/res_pjsip/pjsip_options.c
index 461e5534a..a8c603e1c 100644
--- a/res/res_pjsip/pjsip_options.c
+++ b/res/res_pjsip/pjsip_options.c
@@ -403,14 +403,15 @@ static void schedule_qualify(struct ast_sip_contact *contact)
*/
static void unschedule_qualify(struct ast_sip_contact *contact)
{
- RAII_VAR(struct sched_data *, data, ao2_find(
- sched_qualifies, contact, OBJ_UNLINK), ao2_cleanup);
+ struct sched_data *data;
+ data = ao2_find(sched_qualifies, contact, OBJ_UNLINK | OBJ_SEARCH_KEY);
if (!data) {
return;
}
AST_SCHED_DEL_UNREF(sched, data->id, ao2_cleanup(data));
+ ao2_ref(data, -1);
}
/*!
@@ -778,17 +779,60 @@ static struct ast_cli_entry cli_options[] = {
static int sched_qualifies_hash_fn(const void *obj, int flags)
{
- const struct sched_data *data = obj;
+ const struct sched_data *object;
+ const struct ast_sip_contact *key;
- return ast_str_hash(ast_sorcery_object_get_id(data->contact));
+ switch (flags & OBJ_SEARCH_MASK) {
+ case OBJ_SEARCH_KEY:
+ key = obj;
+ break;
+ case OBJ_SEARCH_OBJECT:
+ object = obj;
+ key = object->contact;
+ break;
+ default:
+ /* Hash can only work on something with a full key. */
+ ast_assert(0);
+ return 0;
+ }
+ return ast_str_hash(ast_sorcery_object_get_id(key));
}
static int sched_qualifies_cmp_fn(void *obj, void *arg, int flags)
{
- struct sched_data *data = obj;
-
- return !strcmp(ast_sorcery_object_get_id(data->contact),
- ast_sorcery_object_get_id(arg));
+ const struct sched_data *object_left = obj;
+ const struct sched_data *object_right = arg;
+ struct ast_sip_contact *right_key = arg;
+ int cmp;
+
+ switch (flags & OBJ_SEARCH_MASK) {
+ case OBJ_SEARCH_OBJECT:
+ right_key = object_right->contact;
+ /* Fall through */
+ case OBJ_SEARCH_KEY:
+ cmp = strcmp(ast_sorcery_object_get_id(object_left->contact),
+ ast_sorcery_object_get_id(right_key));
+ break;
+ case OBJ_SEARCH_PARTIAL_KEY:
+ /* Not supported by container. */
+ ast_assert(0);
+ return 0;
+ default:
+ /*
+ * What arg points to is specific to this traversal callback
+ * and has no special meaning to astobj2.
+ */
+ cmp = 0;
+ break;
+ }
+ if (cmp) {
+ return 0;
+ }
+ /*
+ * At this point the traversal callback is identical to a sorted
+ * container.
+ */
+ return CMP_MATCH;
}
int ast_sip_initialize_sorcery_qualify(void)
@@ -884,7 +928,6 @@ int ast_res_pjsip_init_options_handling(int reload)
if (!(sched_qualifies = ao2_t_container_alloc(
QUALIFIED_BUCKETS, sched_qualifies_hash_fn, sched_qualifies_cmp_fn,
"Create container for scheduled qualifies"))) {
-
return -1;
}
diff --git a/res/res_pjsip_registrar.c b/res/res_pjsip_registrar.c
index 2eada0748..58f4b3214 100644
--- a/res/res_pjsip_registrar.c
+++ b/res/res_pjsip_registrar.c
@@ -159,7 +159,7 @@ static int registrar_prune_static(void *obj, void *arg, int flags)
return ast_tvzero(contact->expiration_time) ? CMP_MATCH : 0;
}
-/*! \brief Internal function used to delete all contacts from an AOR */
+/*! \brief Internal function used to delete a contact from an AOR */
static int registrar_delete_contact(void *obj, void *arg, int flags)
{
struct ast_sip_contact *contact = obj;