|
|
|
@ -33,6 +33,8 @@ 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"
|
|
|
|
|
|
|
|
|
|
/*** DOCUMENTATION
|
|
|
|
|
<application name="System" language="en_US">
|
|
|
|
@ -90,6 +92,8 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
|
|
|
|
|
|
|
|
|
***/
|
|
|
|
|
|
|
|
|
|
AST_THREADSTORAGE(buf_buf);
|
|
|
|
|
|
|
|
|
|
static char *app = "System";
|
|
|
|
|
|
|
|
|
|
static char *app2 = "TrySystem";
|
|
|
|
@ -99,6 +103,7 @@ static char *chanvar = "SYSTEMSTATUS";
|
|
|
|
|
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");
|
|
|
|
@ -109,7 +114,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");
|
|
|
|
|