app_queue.c: Fix error checking in QUEUE_MEMBER() read.

Change-Id: I7294e13d27875851c2f4ef6818adba507509d224
changes/09/1109/1
Richard Mudgett 10 years ago
parent 178e1adffb
commit 5cf98e2459

@ -8019,6 +8019,23 @@ static int queue_function_exists(struct ast_channel *chan, const char *cmd, char
return 0; return 0;
} }
static struct member *get_interface_helper(struct call_queue *q, const char *interface)
{
struct member *m;
if (ast_strlen_zero(interface)) {
ast_log(LOG_ERROR, "QUEUE_MEMBER: Missing required interface argument.\n");
return NULL;
}
m = interface_exists(q, interface);
if (!m) {
ast_log(LOG_ERROR, "Queue member interface '%s' not in queue '%s'.\n",
interface, q->name);
}
return m;
}
/*! /*!
* \brief Get number either busy / free / ready or total members of a specific queue * \brief Get number either busy / free / ready or total members of a specific queue
* \brief Get or set member properties penalty / paused / ringinuse * \brief Get or set member properties penalty / paused / ringinuse
@ -8041,14 +8058,18 @@ static int queue_function_mem_read(struct ast_channel *chan, const char *cmd, ch
buf[0] = '\0'; buf[0] = '\0';
if (ast_strlen_zero(data)) { if (ast_strlen_zero(data)) {
ast_log(LOG_ERROR, "Missing required argument. %s(<queuename>,<option>[<interface>])\n", cmd); ast_log(LOG_ERROR,
"Missing required argument. %s(<queuename>,<option>[,<interface>])\n",
cmd);
return -1; return -1;
} }
AST_STANDARD_APP_ARGS(args, data); AST_STANDARD_APP_ARGS(args, data);
if (args.argc < 2) { if (ast_strlen_zero(args.queuename) || ast_strlen_zero(args.option)) {
ast_log(LOG_ERROR, "Missing required argument. %s(<queuename>,<option>[<interface>])\n", cmd); ast_log(LOG_ERROR,
"Missing required argument. %s(<queuename>,<option>[,<interface>])\n",
cmd);
return -1; return -1;
} }
@ -8087,27 +8108,29 @@ static int queue_function_mem_read(struct ast_channel *chan, const char *cmd, ch
ao2_ref(m, -1); ao2_ref(m, -1);
} }
ao2_iterator_destroy(&mem_iter); ao2_iterator_destroy(&mem_iter);
} else if (!strcasecmp(args.option, "count") || ast_strlen_zero(args.option)) { } else if (!strcasecmp(args.option, "count")) {
count = ao2_container_count(q->members); count = ao2_container_count(q->members);
} else if (!strcasecmp(args.option, "penalty") && !ast_strlen_zero(args.interface) && } else if (!strcasecmp(args.option, "penalty")) {
((m = interface_exists(q, args.interface)))) { m = get_interface_helper(q, args.interface);
if (m) {
count = m->penalty; count = m->penalty;
ao2_ref(m, -1); ao2_ref(m, -1);
} else if (!strcasecmp(args.option, "paused") && !ast_strlen_zero(args.interface) && }
((m = interface_exists(q, args.interface)))) { } else if (!strcasecmp(args.option, "paused")) {
m = get_interface_helper(q, args.interface);
if (m) {
count = m->paused; count = m->paused;
ao2_ref(m, -1); ao2_ref(m, -1);
} else if ( (!strcasecmp(args.option, "ignorebusy") || !strcasecmp(args.option, "ringinuse")) && }
!ast_strlen_zero(args.interface) && } else if ((!strcasecmp(args.option, "ignorebusy") /* ignorebusy is legacy */
((m = interface_exists(q, args.interface)))) { || !strcasecmp(args.option, "ringinuse"))) {
m = get_interface_helper(q, args.interface);
if (m) {
count = m->ringinuse; count = m->ringinuse;
ao2_ref(m, -1); ao2_ref(m, -1);
} else if (!ast_strlen_zero(args.interface)) { }
ast_log(LOG_ERROR, "Queue member interface %s not in queue %s\n",
args.interface, args.queuename);
} else { } else {
ast_log(LOG_ERROR, "Unknown option %s provided to %s, valid values are: " ast_log(LOG_ERROR, "%s: Invalid option '%s' provided.\n", cmd, args.option);
"logged, free, ready, count, penalty, paused, ringinuse\n", args.option, cmd);
} }
ao2_unlock(q); ao2_unlock(q);
queue_t_unref(q, "Done with temporary reference in QUEUE_MEMBER()"); queue_t_unref(q, "Done with temporary reference in QUEUE_MEMBER()");

Loading…
Cancel
Save