aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-02-20 17:42:16 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-02-20 17:42:16 +0000
commitf3d699283df5929c3c91e6873dec74227cca037a (patch)
tree58c78ca8f1c4a356ba0618aab97708d50dcc8e62 /apps
parent329bc3e42ae8888f64ae13cffe8bca772dfb27da (diff)
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: http://svn.digium.com/svn/asterisk/branches/1.6.0@177665 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_system.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/apps/app_system.c b/apps/app_system.c
index 1f39c5a4e..6022b1728 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");