From 493bda9494a23f1d9d38e81b329893eaa311083f Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Fri, 20 Feb 2009 21:35:18 +0000 Subject: [PATCH] Merged revisions 177664 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ........ r177664 | tilghman | 2009-02-20 11:29:51 -0600 (Fri, 20 Feb 2009) | 8 lines Allow semicolons to be escaped, when passing arguments to the System command. (closes issue #14231) Reported by: jcovert Patches: 20090113__bug14231__2.diff.txt uploaded by Corydon76 (license 14) corrected_20090113__bug14231__2.diff.txt uploaded by jcovert (license 551) Tested by: jcovert ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@177761 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_system.c | 9 ++++++++- include/asterisk/app.h | 3 +++ main/app.c | 27 +++++++++++++++++++++++++++ 3 files changed, 38 insertions(+), 1 deletion(-) diff --git a/apps/app_system.c b/apps/app_system.c index 1f39c5a4ed..6022b17283 100644 --- a/apps/app_system.c +++ b/apps/app_system.c @@ -33,6 +33,10 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") #include "asterisk/module.h" #include "asterisk/app.h" #include "asterisk/channel.h" /* autoservice */ +#include "asterisk/strings.h" +#include "asterisk/threadstorage.h" + +AST_THREADSTORAGE(buf_buf); static char *app = "System"; @@ -62,6 +66,7 @@ static char *descrip2 = static int system_exec_helper(struct ast_channel *chan, void *data, int failmode) { int res = 0; + struct ast_str *buf = ast_str_thread_get(&buf_buf, 16); if (ast_strlen_zero(data)) { ast_log(LOG_WARNING, "System requires an argument(command)\n"); @@ -72,7 +77,9 @@ static int system_exec_helper(struct ast_channel *chan, void *data, int failmode ast_autoservice_start(chan); /* Do our thing here */ - res = ast_safe_system((char *)data); + ast_str_get_encoded_str(&buf, 0, (char *) data); + res = ast_safe_system(ast_str_buffer(buf)); + if ((res < 0) && (errno != ECHILD)) { ast_log(LOG_WARNING, "Unable to execute '%s'\n", (char *)data); pbx_builtin_setvar_helper(chan, chanvar, "FAILURE"); diff --git a/include/asterisk/app.h b/include/asterisk/app.h index 1e8e09cb71..bc61aa561b 100644 --- a/include/asterisk/app.h +++ b/include/asterisk/app.h @@ -491,6 +491,9 @@ int ast_get_encoded_char(const char *stream, char *result, size_t *consumed); /*! \brief Decode a string which may contain multiple encoded control or extended ASCII characters */ int ast_get_encoded_str(const char *stream, char *result, size_t result_size); +/*! \brief Decode a stream of encoded control or extended ASCII characters */ +int ast_str_get_encoded_str(struct ast_str **str, int maxlen, const char *stream); + /*! \brief Common routine for child processes, to close all fds prior to exec(2) */ void ast_close_fds_above_n(int n); diff --git a/main/app.c b/main/app.c index 5b66646ae4..2384a7d336 100644 --- a/main/app.c +++ b/main/app.c @@ -1836,6 +1836,33 @@ int ast_get_encoded_str(const char *stream, char *result, size_t result_size) return 0; } +int ast_str_get_encoded_str(struct ast_str **str, int maxlen, const char *stream) +{ + char next, *buf; + size_t offset = 0; + size_t consumed; + + if (strchr(stream, '\\')) { + while (!ast_get_encoded_char(stream, &next, &consumed)) { + if (offset + 2 > ast_str_size(*str) && maxlen > -1) { + ast_str_make_space(str, maxlen > 0 ? maxlen : (ast_str_size(*str) + 48) * 2 - 48); + } + if (offset + 2 > ast_str_size(*str)) { + break; + } + buf = ast_str_buffer(*str); + buf[offset++] = next; + stream += consumed; + } + buf = ast_str_buffer(*str); + buf[offset++] = '\0'; + ast_str_update(*str); + } else { + ast_str_set(str, maxlen, "%s", stream); + } + return 0; +} + void ast_close_fds_above_n(int n) { int x, null;