Files
asterisk/apps/app_system.c
T

130 lines
3.4 KiB
C
Raw Normal View History

2000-01-02 20:59:00 +00:00
/*
* Asterisk -- An open source telephony toolkit.
2000-01-02 20:59:00 +00:00
*
2005-01-21 07:06:25 +00:00
* Copyright (C) 1999 - 2005, Digium, Inc.
2000-01-02 20:59:00 +00:00
*
* Mark Spencer <markster@digium.com>
2000-01-02 20:59:00 +00:00
*
* See http://www.asterisk.org for more information about
* the Asterisk project. Please do not directly contact
* any of the maintainers of this project for assistance;
* the project provides a web site, mailing lists and IRC
* channels for your use.
*
2000-01-02 20:59:00 +00:00
* This program is free software, distributed under the terms of
* the GNU General Public License Version 2. See the LICENSE file
* at the top of the source tree.
*/
/*! \file
*
* \brief Execute arbitrary system commands
2005-12-30 21:18:06 +00:00
*
* \author Mark Spencer <markster@digium.com>
*
2005-11-06 15:09:47 +00:00
* \ingroup applications
2000-01-02 20:59:00 +00:00
*/
#include "asterisk.h"
ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include "asterisk/pbx.h"
#include "asterisk/module.h"
#include "asterisk/app.h"
#include "asterisk/channel.h" /* autoservice */
2000-01-02 20:59:00 +00:00
static char *app = "System";
static char *app2 = "TrySystem";
2001-04-10 17:18:04 +00:00
static char *synopsis = "Execute a system command";
static char *synopsis2 = "Try executing a system command";
static char *chanvar = "SYSTEMSTATUS";
2001-04-10 17:18:04 +00:00
static char *descrip =
2005-11-07 22:01:22 +00:00
" System(command): Executes a command by using system(). If the command\n"
"fails, the console should report a fallthrough. \n"
"Result of execution is returned in the SYSTEMSTATUS channel variable:\n"
" FAILURE Could not execute the specified command\n"
" SUCCESS Specified command successfully executed\n";
2001-04-10 17:18:04 +00:00
static char *descrip2 =
2005-11-07 22:01:22 +00:00
" TrySystem(command): Executes a command by using system().\n"
"on any situation.\n"
"Result of execution is returned in the SYSTEMSTATUS channel variable:\n"
" FAILURE Could not execute the specified command\n"
" SUCCESS Specified command successfully executed\n"
" APPERROR Specified command successfully executed, but returned error code\n";
2000-01-02 20:59:00 +00:00
static int system_exec_helper(struct ast_channel *chan, void *data, int failmode)
2000-01-02 20:59:00 +00:00
{
int res = 0;
if (ast_strlen_zero(data)) {
2000-01-02 20:59:00 +00:00
ast_log(LOG_WARNING, "System requires an argument(command)\n");
pbx_builtin_setvar_helper(chan, chanvar, "FAILURE");
return failmode;
2000-01-02 20:59:00 +00:00
}
2007-09-19 19:51:47 +00:00
ast_autoservice_start(chan);
2000-01-02 20:59:00 +00:00
/* Do our thing here */
2004-03-22 17:34:21 +00:00
res = ast_safe_system((char *)data);
2004-02-27 06:56:08 +00:00
if ((res < 0) && (errno != ECHILD)) {
2002-06-21 01:40:13 +00:00
ast_log(LOG_WARNING, "Unable to execute '%s'\n", (char *)data);
pbx_builtin_setvar_helper(chan, chanvar, "FAILURE");
res = failmode;
2000-01-02 20:59:00 +00:00
} else if (res == 127) {
2002-06-21 01:40:13 +00:00
ast_log(LOG_WARNING, "Unable to execute '%s'\n", (char *)data);
pbx_builtin_setvar_helper(chan, chanvar, "FAILURE");
res = failmode;
2000-01-02 20:59:00 +00:00
} else {
if (res < 0)
2004-02-27 06:56:08 +00:00
res = 0;
if (res != 0)
pbx_builtin_setvar_helper(chan, chanvar, "APPERROR");
else
pbx_builtin_setvar_helper(chan, chanvar, "SUCCESS");
2000-01-02 20:59:00 +00:00
res = 0;
}
2007-09-19 19:51:47 +00:00
ast_autoservice_stop(chan);
2000-01-02 20:59:00 +00:00
return res;
}
static int system_exec(struct ast_channel *chan, void *data)
{
return system_exec_helper(chan, data, -1);
}
static int trysystem_exec(struct ast_channel *chan, void *data)
{
return system_exec_helper(chan, data, 0);
}
static int unload_module(void)
2000-01-02 20:59:00 +00:00
{
int res;
res = ast_unregister_application(app);
res |= ast_unregister_application(app2);
return res;
2000-01-02 20:59:00 +00:00
}
static int load_module(void)
2000-01-02 20:59:00 +00:00
{
int res;
res = ast_register_application(app2, trysystem_exec, synopsis2, descrip2);
res |= ast_register_application(app, system_exec, synopsis, descrip);
return res;
2000-01-02 20:59:00 +00:00
}
AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Generic System() application");