Files
asterisk/apps/app_system.c
T

122 lines
3.0 KiB
C
Raw Normal View History

2000-01-02 20:59:00 +00:00
/*
* Asterisk -- A telephony toolkit for Linux.
*
* Execute arbitrary system commands
*
* Copyright (C) 1999-2004, Digium, Inc.
2000-01-02 20:59:00 +00:00
*
* Mark Spencer <markster@digium.com>
2000-01-02 20:59:00 +00:00
*
* This program is free software, distributed under the terms of
* the GNU General Public License
*/
2002-06-21 01:40:13 +00:00
#include <asterisk/lock.h>
2000-01-02 20:59:00 +00:00
#include <asterisk/file.h>
#include <asterisk/logger.h>
#include <asterisk/channel.h>
#include <asterisk/pbx.h>
#include <asterisk/module.h>
2004-03-22 17:34:21 +00:00
#include <asterisk/app.h>
2000-01-02 20:59:00 +00:00
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
2004-02-27 06:58:39 +00:00
#include <errno.h>
2000-01-02 20:59:00 +00:00
static char *tdesc = "Generic System() application";
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";
2001-04-10 17:18:04 +00:00
static char *descrip =
2001-08-23 17:57:10 +00:00
" System(command): Executes a command by using system(). Returns -1 on\n"
"failure to execute the specified command. If the command itself executes\n"
"but is in error, and if there exists a priority n + 101, where 'n' is the\n"
"priority of the current instance, then the channel will be setup to\n"
"continue at that priority level. Otherwise, System returns 0.\n";
2001-04-10 17:18:04 +00:00
static char *descrip2 =
" TrySystem(command): Executes a command by using system(). Returns 0\n"
"on any situation. If the command itself executes but is in error, and if\n"
"there exists a priority n + 101, where 'n' is the priority of the current\n"
"instance, then the channel will be setup to continue at that\n"
"priority level. Otherwise, System returns 0.\n";
2000-01-02 20:59:00 +00:00
STANDARD_LOCAL_USER;
LOCAL_USER_DECL;
static int system_exec_helper(struct ast_channel *chan, void *data, int failmode)
2000-01-02 20:59:00 +00:00
{
int res=0;
struct localuser *u;
if (!data) {
ast_log(LOG_WARNING, "System requires an argument(command)\n");
return failmode;
2000-01-02 20:59:00 +00:00
}
LOCAL_USER_ADD(u);
/* 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);
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);
res = failmode;
2000-01-02 20:59:00 +00:00
} else {
2004-02-27 06:56:08 +00:00
if (res < 0)
res = 0;
if (res && ast_exists_extension(chan, chan->context, chan->exten, chan->priority + 101, chan->cid.cid_num))
2000-01-02 20:59:00 +00:00
chan->priority+=100;
res = 0;
}
LOCAL_USER_REMOVE(u);
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);
}
2000-01-02 20:59:00 +00:00
int unload_module(void)
{
STANDARD_HANGUP_LOCALUSERS;
ast_unregister_application(app2);
2000-01-02 20:59:00 +00:00
return ast_unregister_application(app);
}
int load_module(void)
{
ast_register_application(app2, trysystem_exec, synopsis2, descrip2);
2003-10-19 11:06:59 +00:00
return ast_register_application(app, system_exec, synopsis, descrip);
2000-01-02 20:59:00 +00:00
}
char *description(void)
{
return tdesc;
}
int usecount(void)
{
int res;
STANDARD_USECOUNT(res);
return res;
}
2001-03-07 00:52:22 +00:00
char *key()
{
return ASTERISK_GPL_KEY;
}