[svn-commits] tilghman: trunk r251877 - /trunk/apps/app_system.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Mar 11 14:25:07 CST 2010


Author: tilghman
Date: Thu Mar 11 14:25:02 2010
New Revision: 251877

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=251877
Log:
If the argument to the system application is quoted, ensure we remove the quotes before trying to execute.

(closes issue #16842)
 Reported by: ip-rob
 Patches: 
       20100310__issue16842.diff.txt uploaded by tilghman (license 14)
 Tested by: ip-rob

Modified:
    trunk/apps/app_system.c

Modified: trunk/apps/app_system.c
URL: http://svnview.digium.com/svn/asterisk/trunk/apps/app_system.c?view=diff&rev=251877&r1=251876&r2=251877
==============================================================================
--- trunk/apps/app_system.c (original)
+++ trunk/apps/app_system.c Thu Mar 11 14:25:02 2010
@@ -104,7 +104,8 @@
 {
 	int res = 0;
 	struct ast_str *buf = ast_str_thread_get(&buf_buf, 16);
-	
+	char *cbuf;
+
 	if (ast_strlen_zero(data)) {
 		ast_log(LOG_WARNING, "System requires an argument(command)\n");
 		pbx_builtin_setvar_helper(chan, chanvar, "FAILURE");
@@ -115,7 +116,15 @@
 
 	/* Do our thing here */
 	ast_str_get_encoded_str(&buf, 0, (char *) data);
-	res = ast_safe_system(ast_str_buffer(buf));
+	cbuf = ast_str_buffer(buf);
+
+	if (strchr("\"'", cbuf[0]) && cbuf[ast_str_strlen(buf) - 1] == cbuf[0]) {
+		cbuf[ast_str_strlen(buf) - 1] = '\0';
+		cbuf++;
+		ast_log(LOG_NOTICE, "It is not necessary to quote the argument to the System application.\n");
+	}
+
+	res = ast_safe_system(cbuf);
 
 	if ((res < 0) && (errno != ECHILD)) {
 		ast_log(LOG_WARNING, "Unable to execute '%s'\n", (char *)data);




More information about the svn-commits mailing list