Merge "location.c: Misc fixes and cleanups." into 13

This commit is contained in:
zuul
2016-08-12 13:10:47 -05:00
committed by Gerrit Code Review

View File

@@ -173,16 +173,15 @@ static int contact_link_static(void *obj, void *arg, int flags)
struct ast_sip_contact *ast_sip_location_retrieve_first_aor_contact(const struct ast_sip_aor *aor) struct ast_sip_contact *ast_sip_location_retrieve_first_aor_contact(const struct ast_sip_aor *aor)
{ {
RAII_VAR(struct ao2_container *, contacts, NULL, ao2_cleanup); struct ao2_container *contacts;
struct ast_sip_contact *contact; struct ast_sip_contact *contact = NULL;
contacts = ast_sip_location_retrieve_aor_contacts(aor); contacts = ast_sip_location_retrieve_aor_contacts(aor);
if (!contacts || (ao2_container_count(contacts) == 0)) { if (contacts && ao2_container_count(contacts)) {
return NULL; /* Get the first AOR contact in the container. */
contact = ao2_callback(contacts, 0, NULL, NULL);
} }
ao2_cleanup(contacts);
/* Get the first AOR contact in the container. */
contact = ao2_callback(contacts, 0, NULL, NULL);
return contact; return contact;
} }
@@ -315,14 +314,16 @@ int ast_sip_location_add_contact_nolock(struct ast_sip_aor *aor, const char *uri
const char *via_addr, int via_port, const char *call_id, const char *via_addr, int via_port, const char *call_id,
struct ast_sip_endpoint *endpoint) struct ast_sip_endpoint *endpoint)
{ {
struct ast_sip_contact *contact;
int res;
char name[MAX_OBJECT_FIELD * 2 + 3]; char name[MAX_OBJECT_FIELD * 2 + 3];
RAII_VAR(struct ast_sip_contact *, contact, NULL, ao2_cleanup);
char hash[33]; char hash[33];
ast_md5_hash(hash, uri); ast_md5_hash(hash, uri);
snprintf(name, sizeof(name), "%s;@%s", ast_sorcery_object_get_id(aor), hash); snprintf(name, sizeof(name), "%s;@%s", ast_sorcery_object_get_id(aor), hash);
if (!(contact = ast_sorcery_alloc(ast_sip_get_sorcery(), "contact", name))) { contact = ast_sorcery_alloc(ast_sip_get_sorcery(), "contact", name);
if (!contact) {
return -1; return -1;
} }
@@ -362,7 +363,9 @@ int ast_sip_location_add_contact_nolock(struct ast_sip_aor *aor, const char *uri
ast_string_field_set(contact, endpoint_name, ast_sorcery_object_get_id(endpoint)); ast_string_field_set(contact, endpoint_name, ast_sorcery_object_get_id(endpoint));
} }
return ast_sorcery_create(ast_sip_get_sorcery(), contact); res = ast_sorcery_create(ast_sip_get_sorcery(), contact);
ao2_ref(contact, -1);
return res;
} }
int ast_sip_location_add_contact(struct ast_sip_aor *aor, const char *uri, int ast_sip_location_add_contact(struct ast_sip_aor *aor, const char *uri,
@@ -603,7 +606,9 @@ static int voicemail_extension_to_str(const void *obj, const intptr_t *args, cha
int ast_sip_for_each_aor(const char *aors, ao2_callback_fn on_aor, void *arg) int ast_sip_for_each_aor(const char *aors, ao2_callback_fn on_aor, void *arg)
{ {
char *copy, *name; char *copy;
char *name;
int res;
if (!on_aor || ast_strlen_zero(aors)) { if (!on_aor || ast_strlen_zero(aors)) {
return 0; return 0;
@@ -611,15 +616,15 @@ int ast_sip_for_each_aor(const char *aors, ao2_callback_fn on_aor, void *arg)
copy = ast_strdupa(aors); copy = ast_strdupa(aors);
while ((name = ast_strip(strsep(&copy, ",")))) { while ((name = ast_strip(strsep(&copy, ",")))) {
RAII_VAR(struct ast_sip_aor *, aor, struct ast_sip_aor *aor;
ast_sip_location_retrieve_aor(name), ao2_cleanup);
if (!aor) { aor = ast_sip_location_retrieve_aor(name);
continue; if (aor) {
} res = on_aor(aor, arg, 0);
ao2_ref(aor, -1);
if (on_aor(aor, arg, 0)) { if (res) {
return -1; return -1;
}
} }
} }
return 0; return 0;
@@ -628,15 +633,16 @@ int ast_sip_for_each_aor(const char *aors, ao2_callback_fn on_aor, void *arg)
static void contact_wrapper_destroy(void *obj) static void contact_wrapper_destroy(void *obj)
{ {
struct ast_sip_contact_wrapper *wrapper = obj; struct ast_sip_contact_wrapper *wrapper = obj;
ast_free(wrapper->aor_id); ast_free(wrapper->aor_id);
ast_free(wrapper->contact_id); ast_free(wrapper->contact_id);
ao2_ref(wrapper->contact, -1); ao2_cleanup(wrapper->contact);
} }
int ast_sip_for_each_contact(const struct ast_sip_aor *aor, int ast_sip_for_each_contact(const struct ast_sip_aor *aor,
ao2_callback_fn on_contact, void *arg) ao2_callback_fn on_contact, void *arg)
{ {
RAII_VAR(struct ao2_container *, contacts, NULL, ao2_cleanup); struct ao2_container *contacts;
struct ao2_iterator i; struct ao2_iterator i;
int res = 0; int res = 0;
void *object = NULL; void *object = NULL;
@@ -652,7 +658,8 @@ int ast_sip_for_each_contact(const struct ast_sip_aor *aor,
RAII_VAR(struct ast_sip_contact_wrapper *, wrapper, NULL, ao2_cleanup); RAII_VAR(struct ast_sip_contact_wrapper *, wrapper, NULL, ao2_cleanup);
const char *aor_id = ast_sorcery_object_get_id(aor); const char *aor_id = ast_sorcery_object_get_id(aor);
wrapper = ao2_alloc(sizeof(struct ast_sip_contact_wrapper), contact_wrapper_destroy); wrapper = ao2_alloc_options(sizeof(struct ast_sip_contact_wrapper),
contact_wrapper_destroy, AO2_ALLOC_OPT_LOCK_NOLOCK);
if (!wrapper) { if (!wrapper) {
res = -1; res = -1;
break; break;
@@ -676,6 +683,7 @@ int ast_sip_for_each_contact(const struct ast_sip_aor *aor,
} }
} }
ao2_iterator_destroy(&i); ao2_iterator_destroy(&i);
ao2_ref(contacts, -1);
return res; return res;
} }
@@ -691,10 +699,11 @@ int ast_sip_contact_to_str(void *object, void *arg, int flags)
static int sip_aor_to_ami(const struct ast_sip_aor *aor, struct ast_str **buf) static int sip_aor_to_ami(const struct ast_sip_aor *aor, struct ast_str **buf)
{ {
RAII_VAR(struct ast_variable *, objset, ast_sorcery_objectset_create2( struct ast_variable *objset;
ast_sip_get_sorcery(), aor, AST_HANDLER_ONLY_STRING), ast_variables_destroy);
struct ast_variable *i; struct ast_variable *i;
objset = ast_sorcery_objectset_create2(ast_sip_get_sorcery(), aor,
AST_HANDLER_ONLY_STRING);
if (!objset) { if (!objset) {
return -1; return -1;
} }
@@ -706,6 +715,7 @@ static int sip_aor_to_ami(const struct ast_sip_aor *aor, struct ast_str **buf)
for (i = objset; i; i = i->next) { for (i = objset; i; i = i->next) {
char *camel = ast_to_camel_case(i->name); char *camel = ast_to_camel_case(i->name);
if (strcmp(camel, "Contact") == 0) { if (strcmp(camel, "Contact") == 0) {
ast_free(camel); ast_free(camel);
camel = NULL; camel = NULL;
@@ -714,23 +724,28 @@ static int sip_aor_to_ami(const struct ast_sip_aor *aor, struct ast_str **buf)
ast_free(camel); ast_free(camel);
} }
ast_variables_destroy(objset);
return 0; return 0;
} }
static int contacts_to_str(const void *obj, const intptr_t *args, char **buf) static int contacts_to_str(const void *obj, const intptr_t *args, char **buf)
{ {
const struct ast_sip_aor *aor = obj; const struct ast_sip_aor *aor = obj;
RAII_VAR(struct ast_str *, str, ast_str_create(MAX_OBJECT_FIELD), ast_free); struct ast_str *str;
str = ast_str_create(MAX_OBJECT_FIELD);
if (!str) {
*buf = NULL;
return -1;
}
ast_sip_for_each_contact(aor, ast_sip_contact_to_str, &str); ast_sip_for_each_contact(aor, ast_sip_contact_to_str, &str);
ast_str_truncate(str, -1); ast_str_truncate(str, -1);
*buf = ast_strdup(ast_str_buffer(str)); *buf = ast_strdup(ast_str_buffer(str));
if (!*buf) { ast_free(str);
return -1;
}
return 0; return *buf ? 0 : -1;
} }
static int format_ami_aor_handler(void *obj, void *arg, int flags) static int format_ami_aor_handler(void *obj, void *arg, int flags)
@@ -738,17 +753,20 @@ static int format_ami_aor_handler(void *obj, void *arg, int flags)
struct ast_sip_aor *aor = obj; struct ast_sip_aor *aor = obj;
struct ast_sip_ami *ami = arg; struct ast_sip_ami *ami = arg;
const struct ast_sip_endpoint *endpoint = ami->arg; const struct ast_sip_endpoint *endpoint = ami->arg;
RAII_VAR(struct ast_str *, buf, struct ast_str *buf;
ast_sip_create_ami_event("AorDetail", ami), ast_free); struct ao2_container *contacts;
int total_contacts; int total_contacts;
int num_permanent; int num_permanent;
RAII_VAR(struct ao2_container *, contacts,
ast_sip_location_retrieve_aor_contacts(aor), ao2_cleanup);
buf = ast_sip_create_ami_event("AorDetail", ami);
if (!buf) { if (!buf) {
return -1; return -1;
} }
contacts = ast_sip_location_retrieve_aor_contacts(aor);
if (!contacts) {
ast_free(buf);
return -1;
}
sip_aor_to_ami(aor, &buf); sip_aor_to_ami(aor, &buf);
total_contacts = ao2_container_count(contacts); total_contacts = ao2_container_count(contacts);
@@ -764,6 +782,8 @@ static int format_ami_aor_handler(void *obj, void *arg, int flags)
astman_append(ami->s, "%s\r\n", ast_str_buffer(buf)); astman_append(ami->s, "%s\r\n", ast_str_buffer(buf));
ami->count++; ami->count++;
ast_free(buf);
ao2_ref(contacts, -1);
return 0; return 0;
} }
@@ -781,7 +801,7 @@ struct ast_sip_endpoint_formatter endpoint_aor_formatter = {
static struct ao2_container *cli_aor_get_container(const char *regex) static struct ao2_container *cli_aor_get_container(const char *regex)
{ {
RAII_VAR(struct ao2_container *, container, NULL, ao2_cleanup); struct ao2_container *container;
struct ao2_container *s_container; struct ao2_container *s_container;
container = ast_sorcery_retrieve_by_regex(ast_sip_get_sorcery(), "aor", regex); container = ast_sorcery_retrieve_by_regex(ast_sip_get_sorcery(), "aor", regex);
@@ -789,16 +809,15 @@ static struct ao2_container *cli_aor_get_container(const char *regex)
return NULL; return NULL;
} }
/* Create a sorted container of aors. */
s_container = ao2_container_alloc_list(AO2_ALLOC_OPT_LOCK_NOLOCK, 0, s_container = ao2_container_alloc_list(AO2_ALLOC_OPT_LOCK_NOLOCK, 0,
ast_sorcery_object_id_sort, ast_sorcery_object_id_compare); ast_sorcery_object_id_sort, ast_sorcery_object_id_compare);
if (!s_container) { if (s_container
return NULL; && ao2_container_dup(s_container, container, 0)) {
}
if (ao2_container_dup(s_container, container, 0)) {
ao2_ref(s_container, -1); ao2_ref(s_container, -1);
return NULL; s_container = NULL;
} }
ao2_ref(container, -1);
return s_container; return s_container;
} }
@@ -900,7 +919,7 @@ static struct ao2_container *cli_contact_get_container(const char *regex)
struct ao2_container *child_container; struct ao2_container *child_container;
regex_t regexbuf; regex_t regexbuf;
parent_container = cli_aor_get_container(""); parent_container = cli_aor_get_container("");
if (!parent_container) { if (!parent_container) {
return NULL; return NULL;
} }
@@ -927,9 +946,17 @@ static struct ao2_container *cli_contact_get_container(const char *regex)
static void *cli_contact_retrieve_by_id(const char *id) static void *cli_contact_retrieve_by_id(const char *id)
{ {
RAII_VAR(struct ao2_container *, container, cli_contact_get_container(""), ao2_cleanup); struct ao2_container *container;
void *obj;
return ao2_find(container, id, OBJ_KEY | OBJ_NOLOCK); container = cli_contact_get_container("");
if (!container) {
return NULL;
}
obj = ao2_find(container, id, OBJ_SEARCH_KEY);
ao2_ref(container, -1);
return obj;
} }
static int cli_contact_print_header(void *obj, void *arg, int flags) static int cli_contact_print_header(void *obj, void *arg, int flags)
@@ -956,14 +983,13 @@ static int cli_contact_print_body(void *obj, void *arg, int flags)
int flexwidth; int flexwidth;
const char *contact_id = ast_sorcery_object_get_id(contact); const char *contact_id = ast_sorcery_object_get_id(contact);
const char *hash_start = contact_id + strlen(contact->aor) + 2; const char *hash_start = contact_id + strlen(contact->aor) + 2;
struct ast_sip_contact_status *status;
RAII_VAR(struct ast_sip_contact_status *, status,
ast_sorcery_retrieve_by_id( ast_sip_get_sorcery(), CONTACT_STATUS, contact_id),
ao2_cleanup);
ast_assert(contact->uri != NULL); ast_assert(contact->uri != NULL);
ast_assert(context->output_buffer != NULL); ast_assert(context->output_buffer != NULL);
status = ast_sorcery_retrieve_by_id(ast_sip_get_sorcery(), CONTACT_STATUS, contact_id);
indent = CLI_INDENT_TO_SPACES(context->indent_level); indent = CLI_INDENT_TO_SPACES(context->indent_level);
flexwidth = CLI_LAST_TABSTOP - indent - 9 - strlen(contact->aor) + 1; flexwidth = CLI_LAST_TABSTOP - indent - 9 - strlen(contact->aor) + 1;
@@ -977,6 +1003,7 @@ static int cli_contact_print_body(void *obj, void *arg, int flags)
ast_sip_get_contact_short_status_label(status ? status->status : UNKNOWN), ast_sip_get_contact_short_status_label(status ? status->status : UNKNOWN),
(status && (status->status != UNKNOWN) ? ((long long) status->rtt) / 1000.0 : NAN)); (status && (status->status != UNKNOWN) ? ((long long) status->rtt) / 1000.0 : NAN));
ao2_cleanup(status);
return 0; return 0;
} }
@@ -1000,8 +1027,6 @@ static const char *cli_aor_get_id(const void *obj)
static int cli_aor_print_header(void *obj, void *arg, int flags) static int cli_aor_print_header(void *obj, void *arg, int flags)
{ {
struct ast_sip_cli_context *context = arg; struct ast_sip_cli_context *context = arg;
RAII_VAR(struct ast_sip_cli_formatter_entry *, formatter_entry, NULL, ao2_cleanup);
int indent = CLI_INDENT_TO_SPACES(context->indent_level); int indent = CLI_INDENT_TO_SPACES(context->indent_level);
int filler = CLI_LAST_TABSTOP - indent - 7; int filler = CLI_LAST_TABSTOP - indent - 7;
@@ -1012,10 +1037,13 @@ static int cli_aor_print_header(void *obj, void *arg, int flags)
indent, "Aor", filler, filler, CLI_HEADER_FILLER); indent, "Aor", filler, filler, CLI_HEADER_FILLER);
if (context->recurse) { if (context->recurse) {
struct ast_sip_cli_formatter_entry *formatter_entry;
context->indent_level++; context->indent_level++;
formatter_entry = ast_sip_lookup_cli_formatter("contact"); formatter_entry = ast_sip_lookup_cli_formatter("contact");
if (formatter_entry) { if (formatter_entry) {
formatter_entry->print_header(NULL, context, 0); formatter_entry->print_header(NULL, context, 0);
ao2_ref(formatter_entry, -1);
} }
context->indent_level--; context->indent_level--;
} }
@@ -1027,7 +1055,6 @@ static int cli_aor_print_body(void *obj, void *arg, int flags)
{ {
struct ast_sip_aor *aor = obj; struct ast_sip_aor *aor = obj;
struct ast_sip_cli_context *context = arg; struct ast_sip_cli_context *context = arg;
RAII_VAR(struct ast_sip_cli_formatter_entry *, formatter_entry, NULL, ao2_cleanup);
int indent; int indent;
int flexwidth; int flexwidth;
@@ -1045,11 +1072,14 @@ static int cli_aor_print_body(void *obj, void *arg, int flags)
ast_sorcery_object_get_id(aor), aor->max_contacts); ast_sorcery_object_get_id(aor), aor->max_contacts);
if (context->recurse) { if (context->recurse) {
struct ast_sip_cli_formatter_entry *formatter_entry;
context->indent_level++; context->indent_level++;
formatter_entry = ast_sip_lookup_cli_formatter("contact"); formatter_entry = ast_sip_lookup_cli_formatter("contact");
if (formatter_entry) { if (formatter_entry) {
formatter_entry->iterate(aor, formatter_entry->print_body, context); formatter_entry->iterate(aor, formatter_entry->print_body, context);
ao2_ref(formatter_entry, -1);
} }
context->indent_level--; context->indent_level--;