00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 #include "asterisk.h"
00033
00034 ASTERISK_FILE_VERSION(__FILE__, "$Revision: 331575 $")
00035
00036 #include "asterisk/module.h"
00037 #include "asterisk/channel.h"
00038 #include "asterisk/pbx.h"
00039 #include "asterisk/utils.h"
00040 #include "asterisk/app.h"
00041
00042 static int shell_helper(struct ast_channel *chan, const char *cmd, char *data,
00043 char *buf, size_t len)
00044 {
00045 int res = 0;
00046
00047 if (ast_strlen_zero(data)) {
00048 ast_log(LOG_WARNING, "Missing Argument! Example: Set(foo=${SHELL(echo \"bar\")})\n");
00049 return -1;
00050 }
00051
00052 if (chan) {
00053 ast_autoservice_start(chan);
00054 }
00055
00056 if (len >= 1) {
00057 FILE *ptr;
00058 char plbuff[4096];
00059
00060 ptr = popen(data, "r");
00061 if (ptr) {
00062 while (fgets(plbuff, sizeof(plbuff), ptr)) {
00063 strncat(buf, plbuff, len - strlen(buf) - 1);
00064 }
00065 pclose(ptr);
00066 } else {
00067 ast_log(LOG_WARNING, "Failed to execute shell command '%s'\n", data);
00068 res = -1;
00069 }
00070 }
00071
00072 if (chan) {
00073 ast_autoservice_stop(chan);
00074 }
00075
00076 return res;
00077 }
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101 static struct ast_custom_function shell_function = {
00102 .name = "SHELL",
00103 .read = shell_helper,
00104 };
00105
00106 static int unload_module(void)
00107 {
00108 return ast_custom_function_unregister(&shell_function);
00109 }
00110
00111 static int load_module(void)
00112 {
00113 return ast_custom_function_register(&shell_function);
00114 }
00115
00116 AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Returns the output of a shell command");
00117