summaryrefslogtreecommitdiff
path: root/main/config.c
diff options
context:
space:
mode:
authorJonathan Rose <jrose@digium.com>2014-09-12 16:19:19 +0000
committerJonathan Rose <jrose@digium.com>2014-09-12 16:19:19 +0000
commitdd6bdede7d78f52730a4a92e5abc15f8b19a8aba (patch)
treeb24658933d24aefb1e6e50549d232fe1cc4a7dd1 /main/config.c
parentc212a71f0bd464e93eed947a03ba9414d1d42207 (diff)
Realtime: Fix a bug that caused realtime destroy command to crash
Also has could affect with anything that goes through ast_destroy_realtime. If a CLI user used the command 'realtime destroy <family>' with only a single column/value pair, Asterisk would crash when trying to create a variable list from a NULL value. ASTERISK-24231 #close Reported by: Niklas Larsson Review: https://reviewboard.asterisk.org/r/3985/ ........ Merged revisions 422984 from http://svn.asterisk.org/svn/asterisk/branches/12 ........ Merged revisions 422985 from http://svn.asterisk.org/svn/asterisk/branches/13 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@422991 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/config.c')
-rw-r--r--main/config.c66
1 files changed, 50 insertions, 16 deletions
diff --git a/main/config.c b/main/config.c
index ab9e9c245..622d6ed76 100644
--- a/main/config.c
+++ b/main/config.c
@@ -2764,9 +2764,22 @@ struct ast_config *ast_config_load2(const char *filename, const char *who_asked,
return result;
}
-#define realtime_arguments_to_fields(ap) realtime_arguments_to_fields2(ap, 0)
+#define realtime_arguments_to_fields(ap, result) realtime_arguments_to_fields2(ap, 0, result)
-static struct ast_variable *realtime_arguments_to_fields2(va_list ap, int skip)
+/*!
+ * \internal
+ * \brief
+ *
+ * \param ap list of variable arguments
+ * \param skip Skip argument pairs for this number of variables
+ * \param result Address of a variables pointer to store the results
+ * May be NULL if no arguments are parsed
+ * Will be NULL on failure.
+ *
+ * \retval 0 on success or empty ap list
+ * \retval -1 on failure
+ */
+static int realtime_arguments_to_fields2(va_list ap, int skip, struct ast_variable **result)
{
struct ast_variable *first, *fields = NULL;
const char *newparam;
@@ -2793,10 +2806,14 @@ static struct ast_variable *realtime_arguments_to_fields2(va_list ap, int skip)
* using the skip parameter:
*
* va_start(ap, last);
- * x = realtime_arguments_to_fields(ap);
+ * if (realtime_arguments_to_fields(ap, &x)) {
+ * // FAILURE CONDITIONS
+ * }
* va_end(ap);
* va_start(ap, last);
- * y = realtime_arguments_to_fields2(ap, 1);
+ * if (realtime_arguments_to_fields2(ap, 1, &y)) {
+ * // FAILURE CONDITIONS
+ * }
* va_end(ap);
*/
while (skip--) {
@@ -2810,10 +2827,15 @@ static struct ast_variable *realtime_arguments_to_fields2(va_list ap, int skip)
/* Load up the first vars. */
newparam = va_arg(ap, const char *);
+ if (!newparam) {
+ *result = NULL;
+ return 0;
+ }
newval = va_arg(ap, const char *);
if (!(first = ast_variable_new(newparam, newval, ""))) {
- return NULL;
+ *result = NULL;
+ return -1;
}
while ((newparam = va_arg(ap, const char *))) {
@@ -2823,7 +2845,8 @@ static struct ast_variable *realtime_arguments_to_fields2(va_list ap, int skip)
if (!(field = ast_variable_new(newparam, newval, ""))) {
ast_variables_destroy(fields);
ast_variables_destroy(first);
- return NULL;
+ *result = NULL;
+ return -1;
}
field->next = fields;
@@ -2833,7 +2856,8 @@ static struct ast_variable *realtime_arguments_to_fields2(va_list ap, int skip)
first->next = fields;
fields = first;
- return fields;
+ *result = fields;
+ return 0;
}
struct ast_variable *ast_load_realtime_all_fields(const char *family, const struct ast_variable *fields)
@@ -2864,7 +2888,7 @@ struct ast_variable *ast_load_realtime_all(const char *family, ...)
va_list ap;
va_start(ap, family);
- fields = realtime_arguments_to_fields(ap);
+ realtime_arguments_to_fields(ap, &fields);
va_end(ap);
if (fields) {
@@ -2912,12 +2936,19 @@ struct ast_variable *ast_load_realtime_fields(const char *family, const struct a
struct ast_variable *ast_load_realtime(const char *family, ...)
{
RAII_VAR(struct ast_variable *, fields, NULL, ast_variables_destroy);
+ int field_res = 0;
va_list ap;
va_start(ap, family);
- fields = realtime_arguments_to_fields(ap);
+ if (realtime_arguments_to_fields(ap, &fields)) {
+ field_res = -1;
+ }
va_end(ap);
+ if (field_res) {
+ return NULL;
+ }
+
if (!fields) {
return NULL;
}
@@ -3021,7 +3052,7 @@ struct ast_config *ast_load_realtime_multientry(const char *family, ...)
va_list ap;
va_start(ap, family);
- fields = realtime_arguments_to_fields(ap);
+ realtime_arguments_to_fields(ap, &fields);
va_end(ap);
if (!fields) {
@@ -3058,7 +3089,7 @@ int ast_update_realtime(const char *family, const char *keyfield, const char *lo
va_list ap;
va_start(ap, lookup);
- fields = realtime_arguments_to_fields(ap);
+ realtime_arguments_to_fields(ap, &fields);
va_end(ap);
if (!fields) {
@@ -3098,11 +3129,11 @@ int ast_update2_realtime(const char *family, ...)
/* XXX: If we wanted to pass no lookup fields (select all), we'd be
* out of luck. realtime_arguments_to_fields expects at least one key
* value pair. */
- lookup_fields = realtime_arguments_to_fields(ap);
+ realtime_arguments_to_fields(ap, &lookup_fields);
va_end(ap);
va_start(ap, family);
- update_fields = realtime_arguments_to_fields2(ap, 1);
+ realtime_arguments_to_fields2(ap, 1, &lookup_fields);
va_end(ap);
if (!lookup_fields || !update_fields) {
@@ -3139,7 +3170,7 @@ int ast_store_realtime(const char *family, ...)
va_list ap;
va_start(ap, family);
- fields = realtime_arguments_to_fields(ap);
+ realtime_arguments_to_fields(ap, &fields);
va_end(ap);
if (!fields) {
@@ -3172,13 +3203,16 @@ int ast_destroy_realtime_fields(const char *family, const char *keyfield, const
int ast_destroy_realtime(const char *family, const char *keyfield, const char *lookup, ...)
{
RAII_VAR(struct ast_variable *, fields, NULL, ast_variables_destroy);
+ int res = 0;
va_list ap;
va_start(ap, lookup);
- fields = realtime_arguments_to_fields(ap);
+ if (realtime_arguments_to_fields(ap, &fields)) {
+ res = -1;
+ }
va_end(ap);
- if (!fields) {
+ if (res) {
return -1;
}