dect
/
asterisk
Archived
13
0
Fork 0

Enhance AGI with several fixes:

- Makes the structures handling external AGI commands a bit more thread-safe
 - Makes AGI transparently work with both live and hungup channels
 - DeadAGI is hence no longer necessary and is deprecated
 - CLI bug fixes
 - Commands will refuse to run if the channel is dead and the command is nonsensical
   for dead channels.


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@76707 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
tilghman 2007-07-23 22:02:05 +00:00
parent 100272d113
commit c29e2a2152
2 changed files with 199 additions and 172 deletions

View File

@ -43,11 +43,14 @@ typedef struct agi_command {
char *summary; char *summary;
/* Detailed usage information */ /* Detailed usage information */
char *usage; char *usage;
struct agi_command *next; /* Does this application run dead */
int dead;
/* Linked list pointer */
AST_LIST_ENTRY(agi_command) list;
} agi_command; } agi_command;
int ast_agi_register(agi_command *cmd); int ast_agi_register(agi_command *cmd);
void ast_agi_unregister(agi_command *cmd); int ast_agi_unregister(agi_command *cmd);
#if defined(__cplusplus) || defined(c_plusplus) #if defined(__cplusplus) || defined(c_plusplus)
} }

View File

@ -117,6 +117,8 @@ enum agi_result {
AGI_RESULT_HANGUP, AGI_RESULT_HANGUP,
}; };
static agi_command *find_command(char *cmds[], int exact);
static void agi_debug_cli(int fd, char *fmt, ...) static void agi_debug_cli(int fd, char *fmt, ...)
{ {
char *stuff; char *stuff;
@ -1585,63 +1587,61 @@ static char usage_noop[] =
" Does nothing.\n"; " Does nothing.\n";
/*! /*!
* \brief AGI commands * \brief AGI commands list
*
* \todo XXX This array is not handled in a thread safe way. There is no
* synchronization done at all between the agi register and unregister functions
* and the rest of this module which uses the entries here.
*/ */
static agi_command commands[MAX_COMMANDS] = { static struct agi_command commands[MAX_COMMANDS] = {
{ { "answer", NULL }, handle_answer, "Answer channel", usage_answer }, { { "answer", NULL }, handle_answer, "Answer channel", usage_answer , 0 },
{ { "channel", "status", NULL }, handle_channelstatus, "Returns status of the connected channel", usage_channelstatus }, { { "channel", "status", NULL }, handle_channelstatus, "Returns status of the connected channel", usage_channelstatus , 0 },
{ { "database", "del", NULL }, handle_dbdel, "Removes database key/value", usage_dbdel }, { { "database", "del", NULL }, handle_dbdel, "Removes database key/value", usage_dbdel , 1 },
{ { "database", "deltree", NULL }, handle_dbdeltree, "Removes database keytree/value", usage_dbdeltree }, { { "database", "deltree", NULL }, handle_dbdeltree, "Removes database keytree/value", usage_dbdeltree , 1 },
{ { "database", "get", NULL }, handle_dbget, "Gets database value", usage_dbget }, { { "database", "get", NULL }, handle_dbget, "Gets database value", usage_dbget , 1 },
{ { "database", "put", NULL }, handle_dbput, "Adds/updates database value", usage_dbput }, { { "database", "put", NULL }, handle_dbput, "Adds/updates database value", usage_dbput , 1 },
{ { "exec", NULL }, handle_exec, "Executes a given Application", usage_exec }, { { "exec", NULL }, handle_exec, "Executes a given Application", usage_exec , 1 },
{ { "get", "data", NULL }, handle_getdata, "Prompts for DTMF on a channel", usage_getdata }, { { "get", "data", NULL }, handle_getdata, "Prompts for DTMF on a channel", usage_getdata , 0 },
{ { "get", "full", "variable", NULL }, handle_getvariablefull, "Evaluates a channel expression", usage_getvariablefull }, { { "get", "full", "variable", NULL }, handle_getvariablefull, "Evaluates a channel expression", usage_getvariablefull , 1 },
{ { "get", "option", NULL }, handle_getoption, "Stream file, prompt for DTMF, with timeout", usage_getoption }, { { "get", "option", NULL }, handle_getoption, "Stream file, prompt for DTMF, with timeout", usage_getoption , 0 },
{ { "get", "variable", NULL }, handle_getvariable, "Gets a channel variable", usage_getvariable }, { { "get", "variable", NULL }, handle_getvariable, "Gets a channel variable", usage_getvariable , 1 },
{ { "hangup", NULL }, handle_hangup, "Hangup the current channel", usage_hangup }, { { "hangup", NULL }, handle_hangup, "Hangup the current channel", usage_hangup , 0 },
{ { "noop", NULL }, handle_noop, "Does nothing", usage_noop }, { { "noop", NULL }, handle_noop, "Does nothing", usage_noop , 1 },
{ { "receive", "char", NULL }, handle_recvchar, "Receives one character from channels supporting it", usage_recvchar }, { { "receive", "char", NULL }, handle_recvchar, "Receives one character from channels supporting it", usage_recvchar , 0 },
{ { "receive", "text", NULL }, handle_recvtext, "Receives text from channels supporting it", usage_recvtext }, { { "receive", "text", NULL }, handle_recvtext, "Receives text from channels supporting it", usage_recvtext , 0 },
{ { "record", "file", NULL }, handle_recordfile, "Records to a given file", usage_recordfile }, { { "record", "file", NULL }, handle_recordfile, "Records to a given file", usage_recordfile , 0 },
{ { "say", "alpha", NULL }, handle_sayalpha, "Says a given character string", usage_sayalpha }, { { "say", "alpha", NULL }, handle_sayalpha, "Says a given character string", usage_sayalpha , 0 },
{ { "say", "digits", NULL }, handle_saydigits, "Says a given digit string", usage_saydigits }, { { "say", "digits", NULL }, handle_saydigits, "Says a given digit string", usage_saydigits , 0 },
{ { "say", "number", NULL }, handle_saynumber, "Says a given number", usage_saynumber }, { { "say", "number", NULL }, handle_saynumber, "Says a given number", usage_saynumber , 0 },
{ { "say", "phonetic", NULL }, handle_sayphonetic, "Says a given character string with phonetics", usage_sayphonetic }, { { "say", "phonetic", NULL }, handle_sayphonetic, "Says a given character string with phonetics", usage_sayphonetic , 0 },
{ { "say", "date", NULL }, handle_saydate, "Says a given date", usage_saydate }, { { "say", "date", NULL }, handle_saydate, "Says a given date", usage_saydate , 0 },
{ { "say", "time", NULL }, handle_saytime, "Says a given time", usage_saytime }, { { "say", "time", NULL }, handle_saytime, "Says a given time", usage_saytime , 0 },
{ { "say", "datetime", NULL }, handle_saydatetime, "Says a given time as specfied by the format given", usage_saydatetime }, { { "say", "datetime", NULL }, handle_saydatetime, "Says a given time as specfied by the format given", usage_saydatetime , 0 },
{ { "send", "image", NULL }, handle_sendimage, "Sends images to channels supporting it", usage_sendimage }, { { "send", "image", NULL }, handle_sendimage, "Sends images to channels supporting it", usage_sendimage , 0 },
{ { "send", "text", NULL }, handle_sendtext, "Sends text to channels supporting it", usage_sendtext }, { { "send", "text", NULL }, handle_sendtext, "Sends text to channels supporting it", usage_sendtext , 0 },
{ { "set", "autohangup", NULL }, handle_autohangup, "Autohangup channel in some time", usage_autohangup }, { { "set", "autohangup", NULL }, handle_autohangup, "Autohangup channel in some time", usage_autohangup , 0 },
{ { "set", "callerid", NULL }, handle_setcallerid, "Sets callerid for the current channel", usage_setcallerid }, { { "set", "callerid", NULL }, handle_setcallerid, "Sets callerid for the current channel", usage_setcallerid , 0 },
{ { "set", "context", NULL }, handle_setcontext, "Sets channel context", usage_setcontext }, { { "set", "context", NULL }, handle_setcontext, "Sets channel context", usage_setcontext , 0 },
{ { "set", "extension", NULL }, handle_setextension, "Changes channel extension", usage_setextension }, { { "set", "extension", NULL }, handle_setextension, "Changes channel extension", usage_setextension , 0 },
{ { "set", "music", NULL }, handle_setmusic, "Enable/Disable Music on hold generator", usage_setmusic }, { { "set", "music", NULL }, handle_setmusic, "Enable/Disable Music on hold generator", usage_setmusic , 0 },
{ { "set", "priority", NULL }, handle_setpriority, "Set channel dialplan priority", usage_setpriority }, { { "set", "priority", NULL }, handle_setpriority, "Set channel dialplan priority", usage_setpriority , 0 },
{ { "set", "variable", NULL }, handle_setvariable, "Sets a channel variable", usage_setvariable }, { { "set", "variable", NULL }, handle_setvariable, "Sets a channel variable", usage_setvariable , 1 },
{ { "stream", "file", NULL }, handle_streamfile, "Sends audio file on channel", usage_streamfile }, { { "stream", "file", NULL }, handle_streamfile, "Sends audio file on channel", usage_streamfile , 0 },
{ { "control", "stream", "file", NULL }, handle_controlstreamfile, "Sends audio file on channel and allows the listner to control the stream", usage_controlstreamfile }, { { "control", "stream", "file", NULL }, handle_controlstreamfile, "Sends audio file on channel and allows the listner to control the stream", usage_controlstreamfile , 0 },
{ { "tdd", "mode", NULL }, handle_tddmode, "Toggles TDD mode (for the deaf)", usage_tddmode }, { { "tdd", "mode", NULL }, handle_tddmode, "Toggles TDD mode (for the deaf)", usage_tddmode , 0 },
{ { "verbose", NULL }, handle_verbose, "Logs a message to the asterisk verbose log", usage_verbose }, { { "verbose", NULL }, handle_verbose, "Logs a message to the asterisk verbose log", usage_verbose , 1 },
{ { "wait", "for", "digit", NULL }, handle_waitfordigit, "Waits for a digit to be pressed", usage_waitfordigit }, { { "wait", "for", "digit", NULL }, handle_waitfordigit, "Waits for a digit to be pressed", usage_waitfordigit , 0 },
}; };
AST_RWLIST_HEAD_STATIC(agi_commands, agi_command);
static int help_workhorse(int fd, char *match[]) static int help_workhorse(int fd, char *match[])
{ {
char fullcmd[80], matchstr[80]; char fullcmd[80], matchstr[80];
int x;
struct agi_command *e; struct agi_command *e;
if (match) if (match)
ast_join(matchstr, sizeof(matchstr), match); ast_join(matchstr, sizeof(matchstr), match);
for (x = 0; x < sizeof(commands) / sizeof(commands[0]); x++) { ast_cli(fd, "%5.5s %20.20s %s\n","Dead","Command","Description");
e = &commands[x]; AST_RWLIST_RDLOCK(&agi_commands);
AST_RWLIST_TRAVERSE(&agi_commands, e, list) {
if (!e->cmda[0]) if (!e->cmda[0])
break; break;
/* Hide commands that start with '_' */ /* Hide commands that start with '_' */
@ -1650,47 +1650,53 @@ static int help_workhorse(int fd, char *match[])
ast_join(fullcmd, sizeof(fullcmd), e->cmda); ast_join(fullcmd, sizeof(fullcmd), e->cmda);
if (match && strncasecmp(matchstr, fullcmd, strlen(matchstr))) if (match && strncasecmp(matchstr, fullcmd, strlen(matchstr)))
continue; continue;
ast_cli(fd, "%20.20s %s\n", fullcmd, e->summary); ast_cli(fd, "%5.5s %20.20s %s\n", e->dead ? "Yes" : "No" , fullcmd, e->summary);
} }
AST_RWLIST_UNLOCK(&agi_commands);
return 0; return 0;
} }
int ast_agi_register(agi_command *agi) int ast_agi_register(agi_command *agi)
{ {
int x; if (!find_command(agi->cmda,1)) {
AST_RWLIST_WRLOCK(&agi_commands);
for (x = 0; x < MAX_COMMANDS - 1; x++) { AST_LIST_INSERT_TAIL(&agi_commands, agi, list);
if (commands[x].cmda[0] == agi->cmda[0]) { AST_RWLIST_UNLOCK(&agi_commands);
return 1;
} else {
ast_log(LOG_WARNING, "Command already registered!\n"); ast_log(LOG_WARNING, "Command already registered!\n");
return -1;
}
}
for (x = 0; x < MAX_COMMANDS - 1; x++) {
if (!commands[x].cmda[0]) {
commands[x] = *agi;
return 0; return 0;
} }
}
ast_log(LOG_WARNING, "No more room for new commands!\n");
return -1;
} }
void ast_agi_unregister(agi_command *agi) int ast_agi_unregister(agi_command *cmd)
{ {
int x; struct agi_command *e;
for (x = 0; x < MAX_COMMANDS - 1; x++) { int unregistered = 0;
if (commands[x].cmda[0] == agi->cmda[0]) {
memset(&commands[x], 0, sizeof(agi_command)); AST_RWLIST_WRLOCK(&agi_commands);
AST_RWLIST_TRAVERSE_SAFE_BEGIN(&agi_commands, e, list) {
if (cmd == e) {
AST_RWLIST_REMOVE_CURRENT(&agi_commands, list);
unregistered=1;
break;
} }
} }
AST_RWLIST_TRAVERSE_SAFE_END
AST_RWLIST_UNLOCK(&agi_commands);
if (!unregistered)
ast_log(LOG_WARNING, "Unable to unregister command!\n");
return unregistered;
} }
static agi_command *find_command(char *cmds[], int exact) static agi_command *find_command(char *cmds[], int exact)
{ {
int x, y, match; int y, match;
struct agi_command *e;
for (x = 0; x < sizeof(commands) / sizeof(commands[0]); x++) { AST_RWLIST_RDLOCK(&agi_commands);
if (!commands[x].cmda[0]) AST_RWLIST_TRAVERSE(&agi_commands, e, list) {
if (!e->cmda[0])
break; break;
/* start optimistic */ /* start optimistic */
match = 1; match = 1;
@ -1698,25 +1704,25 @@ static agi_command *find_command(char *cmds[], int exact)
/* If there are no more words in the command (and we're looking for /* If there are no more words in the command (and we're looking for
an exact match) or there is a difference between the two words, an exact match) or there is a difference between the two words,
then this is not a match */ then this is not a match */
if (!commands[x].cmda[y] && !exact) if (!e->cmda[y] && !exact)
break; break;
/* don't segfault if the next part of a command doesn't exist */ /* don't segfault if the next part of a command doesn't exist */
if (!commands[x].cmda[y]) if (!e->cmda[y])
return NULL; return NULL;
if (strcasecmp(commands[x].cmda[y], cmds[y])) if (strcasecmp(e->cmda[y], cmds[y]))
match = 0; match = 0;
} }
/* If more words are needed to complete the command then this is not /* If more words are needed to complete the command then this is not
a candidate (unless we're looking for a really inexact answer */ a candidate (unless we're looking for a really inexact answer */
if ((exact > -1) && commands[x].cmda[y]) if ((exact > -1) && e->cmda[y])
match = 0; match = 0;
if (match) if (match)
return &commands[x]; return e;
} }
AST_RWLIST_UNLOCK(&agi_commands);
return NULL; return NULL;
} }
static int parse_args(char *s, int *max, char *argv[]) static int parse_args(char *s, int *max, char *argv[])
{ {
int x = 0, quoted = 0, escaped = 0, whitespace = 1; int x = 0, quoted = 0, escaped = 0, whitespace = 1;
@ -1780,14 +1786,14 @@ normal:
return 0; return 0;
} }
static int agi_handle_command(struct ast_channel *chan, AGI *agi, char *buf) static int agi_handle_command(struct ast_channel *chan, AGI *agi, char *buf, int dead)
{ {
char *argv[MAX_ARGS]; char *argv[MAX_ARGS];
int argc = MAX_ARGS, res; int argc = MAX_ARGS, res;
agi_command *c; agi_command *c;
parse_args(buf, &argc, argv); parse_args(buf, &argc, argv);
if ((c = find_command(argv, 0))) { if ((c = find_command(argv, 0)) && (!dead || (dead && c->dead))) {
res = c->handler(chan, agi, argc, argv); res = c->handler(chan, agi, argc, argv);
switch(res) { switch(res) {
case RESULT_SHOWUSAGE: case RESULT_SHOWUSAGE:
@ -1804,6 +1810,8 @@ static int agi_handle_command(struct ast_channel *chan, AGI *agi, char *buf)
appropriately */ appropriately */
return -1; return -1;
} }
} else if ((c = find_command(argv, 0))) {
fdprintf(agi->fd, "511 Command Not Permitted on a dead channel\n");
} else { } else {
fdprintf(agi->fd, "510 Invalid or unknown command\n"); fdprintf(agi->fd, "510 Invalid or unknown command\n");
} }
@ -1813,7 +1821,7 @@ static int agi_handle_command(struct ast_channel *chan, AGI *agi, char *buf)
static enum agi_result run_agi(struct ast_channel *chan, char *request, AGI *agi, int pid, int *status, int dead, int argc, char *argv[]) static enum agi_result run_agi(struct ast_channel *chan, char *request, AGI *agi, int pid, int *status, int dead, int argc, char *argv[])
{ {
struct ast_channel *c; struct ast_channel *c;
int outfd, ms; int outfd, ms, needhup = 0;
enum agi_result returnstatus = AGI_RESULT_SUCCESS; enum agi_result returnstatus = AGI_RESULT_SUCCESS;
struct ast_frame *f; struct ast_frame *f;
char buf[2048]; char buf[2048];
@ -1832,6 +1840,11 @@ static enum agi_result run_agi(struct ast_channel *chan, char *request, AGI *agi
setlinebuf(readf); setlinebuf(readf);
setup_env(chan, request, agi->fd, (agi->audio > -1), argc, argv); setup_env(chan, request, agi->fd, (agi->audio > -1), argc, argv);
for (;;) { for (;;) {
if (needhup) {
needhup = 0;
dead = 1;
kill(pid, SIGHUP);
}
ms = -1; ms = -1;
c = ast_waitfor_nandfds(&chan, dead ? 0 : 1, &agi->ctrl, 1, NULL, &outfd, &ms); c = ast_waitfor_nandfds(&chan, dead ? 0 : 1, &agi->ctrl, 1, NULL, &outfd, &ms);
if (c) { if (c) {
@ -1841,7 +1854,8 @@ static enum agi_result run_agi(struct ast_channel *chan, char *request, AGI *agi
if (!f) { if (!f) {
ast_debug(1, "%s hungup\n", chan->name); ast_debug(1, "%s hungup\n", chan->name);
returnstatus = AGI_RESULT_HANGUP; returnstatus = AGI_RESULT_HANGUP;
break; needhup = 1;
continue;
} else { } else {
/* If it's voice, write it to the audio pipe */ /* If it's voice, write it to the audio pipe */
if ((agi->audio > -1) && (f->frametype == AST_FRAME_VOICE)) { if ((agi->audio > -1) && (f->frametype == AST_FRAME_VOICE)) {
@ -1854,7 +1868,7 @@ static enum agi_result run_agi(struct ast_channel *chan, char *request, AGI *agi
retry = RETRY; retry = RETRY;
if (!fgets(buf, sizeof(buf), readf)) { if (!fgets(buf, sizeof(buf), readf)) {
/* Program terminated */ /* Program terminated */
if (returnstatus) if (returnstatus && returnstatus != AST_PBX_KEEPALIVE)
returnstatus = -1; returnstatus = -1;
if (option_verbose > 2) if (option_verbose > 2)
ast_verbose(VERBOSE_PREFIX_3 "AGI Script %s completed, returning %d\n", request, returnstatus); ast_verbose(VERBOSE_PREFIX_3 "AGI Script %s completed, returning %d\n", request, returnstatus);
@ -1869,10 +1883,11 @@ static enum agi_result run_agi(struct ast_channel *chan, char *request, AGI *agi
buf[strlen(buf) - 1] = 0; buf[strlen(buf) - 1] = 0;
if (agidebug) if (agidebug)
ast_verbose("AGI Rx << %s\n", buf); ast_verbose("AGI Rx << %s\n", buf);
returnstatus |= agi_handle_command(chan, agi, buf); returnstatus |= agi_handle_command(chan, agi, buf, dead);
/* If the handle_command returns -1, we need to stop */ /* If the handle_command returns -1, we need to stop */
if ((returnstatus < 0) || (returnstatus == AST_PBX_KEEPALIVE)) { if ((returnstatus < 0) || (returnstatus == AST_PBX_KEEPALIVE)) {
break; needhup = 1;
continue;
} }
} else { } else {
if (--retry <= 0) { if (--retry <= 0) {
@ -1904,13 +1919,14 @@ static int handle_showagi(int fd, int argc, char *argv[])
if (argc > 2) { if (argc > 2) {
e = find_command(argv + 2, 1); e = find_command(argv + 2, 1);
if (e) if (e) {
ast_cli(fd, e->usage); ast_cli(fd, e->usage);
else { ast_cli(fd, " Runs Dead : %s\n", e->dead ? "Yes" : "No");
if (find_command(argv + 2, -1)) {
return help_workhorse(fd, argv + 1);
} else { } else {
ast_join(fullcmd, sizeof(fullcmd), argv+1); if (find_command(argv + 2, -1)) {
return help_workhorse(fd, argv + 2);
} else {
ast_join(fullcmd, sizeof(fullcmd), argv + 2);
ast_cli(fd, "No such command '%s'.\n", fullcmd); ast_cli(fd, "No such command '%s'.\n", fullcmd);
} }
} }
@ -1955,7 +1971,6 @@ static int handle_agidumphtml(int fd, int argc, char *argv[])
{ {
struct agi_command *e; struct agi_command *e;
char fullcmd[80]; char fullcmd[80];
int x;
FILE *htmlfile; FILE *htmlfile;
if ((argc < 3)) if ((argc < 3))
@ -1972,10 +1987,10 @@ static int handle_agidumphtml(int fd, int argc, char *argv[])
fprintf(htmlfile, "<TABLE BORDER=\"0\" CELLSPACING=\"10\">\n"); fprintf(htmlfile, "<TABLE BORDER=\"0\" CELLSPACING=\"10\">\n");
for (x = 0; x < sizeof(commands) / sizeof(commands[0]); x++) { AST_RWLIST_RDLOCK(&agi_commands);
AST_RWLIST_TRAVERSE(&agi_commands, e, list) {
char *stringp, *tempstr; char *stringp, *tempstr;
e = &commands[x];
if (!e->cmda[0]) /* end ? */ if (!e->cmda[0]) /* end ? */
break; break;
/* Hide commands that start with '_' */ /* Hide commands that start with '_' */
@ -2001,9 +2016,8 @@ static int handle_agidumphtml(int fd, int argc, char *argv[])
} }
fprintf(htmlfile, "</TD></TR>\n"); fprintf(htmlfile, "</TD></TR>\n");
fprintf(htmlfile, "</TABLE></TD></TR>\n\n"); fprintf(htmlfile, "</TABLE></TD></TR>\n\n");
} }
AST_RWLIST_UNLOCK(&agi_commands);
fprintf(htmlfile, "</TABLE>\n</BODY>\n</HTML>\n"); fprintf(htmlfile, "</TABLE>\n</BODY>\n</HTML>\n");
fclose(htmlfile); fclose(htmlfile);
ast_cli(fd, "AGI HTML Commands Dumped to: %s\n", argv[2]); ast_cli(fd, "AGI HTML Commands Dumped to: %s\n", argv[2]);
@ -2026,8 +2040,9 @@ static int agi_exec_full(struct ast_channel *chan, void *data, int enhanced, int
ast_log(LOG_WARNING, "AGI requires an argument (script)\n"); ast_log(LOG_WARNING, "AGI requires an argument (script)\n");
return -1; return -1;
} }
if (dead)
ast_log(LOG_NOTICE, "Hungup channel detected, running agi in dead mode.");
ast_copy_string(buf, data, sizeof(buf)); ast_copy_string(buf, data, sizeof(buf));
memset(&agi, 0, sizeof(agi)); memset(&agi, 0, sizeof(agi));
AST_STANDARD_APP_ARGS(args, tmp); AST_STANDARD_APP_ARGS(args, tmp);
args.argv[args.argc] = NULL; args.argv[args.argc] = NULL;
@ -2080,12 +2095,10 @@ static int agi_exec_full(struct ast_channel *chan, void *data, int enhanced, int
static int agi_exec(struct ast_channel *chan, void *data) static int agi_exec(struct ast_channel *chan, void *data)
{ {
if (ast_check_hangup(chan)) { if (!ast_check_hangup(chan))
ast_log(LOG_ERROR, "If you want to run AGI on hungup channels you should use DeadAGI!\n");
return 0;
}
return agi_exec_full(chan, data, 0, 0); return agi_exec_full(chan, data, 0, 0);
else
return agi_exec_full(chan, data, 0, 1);
} }
static int eagi_exec(struct ast_channel *chan, void *data) static int eagi_exec(struct ast_channel *chan, void *data)
@ -2112,11 +2125,8 @@ static int eagi_exec(struct ast_channel *chan, void *data)
static int deadagi_exec(struct ast_channel *chan, void *data) static int deadagi_exec(struct ast_channel *chan, void *data)
{ {
if (!ast_check_hangup(chan)) { ast_log(LOG_WARNING, "DeadAGI has been deprecated, please use AGI in all cases!");
ast_log(LOG_ERROR,"Running DeadAGI on a live channel is not permitted, please use AGI\n"); return agi_exec(chan, data);
return 0;
}
return agi_exec_full(chan, data, 0, 1);
} }
static char showagi_help[] = static char showagi_help[] =
@ -2150,7 +2160,16 @@ static struct ast_cli_entry cli_agi[] = {
static int unload_module(void) static int unload_module(void)
{ {
struct agi_command *e;
ast_cli_unregister_multiple(cli_agi, sizeof(cli_agi) / sizeof(struct ast_cli_entry)); ast_cli_unregister_multiple(cli_agi, sizeof(cli_agi) / sizeof(struct ast_cli_entry));
AST_RWLIST_WRLOCK(&agi_commands);
AST_RWLIST_TRAVERSE_SAFE_BEGIN(&agi_commands, e, list) {
AST_RWLIST_REMOVE_CURRENT(&agi_commands, list);
}
AST_RWLIST_TRAVERSE_SAFE_END
AST_RWLIST_UNLOCK(&agi_commands);
AST_RWLIST_HEAD_DESTROY(&agi_commands);
ast_unregister_application(eapp); ast_unregister_application(eapp);
ast_unregister_application(deadapp); ast_unregister_application(deadapp);
return ast_unregister_application(app); return ast_unregister_application(app);
@ -2158,7 +2177,12 @@ static int unload_module(void)
static int load_module(void) static int load_module(void)
{ {
int i;
ast_cli_register_multiple(cli_agi, sizeof(cli_agi) / sizeof(struct ast_cli_entry)); ast_cli_register_multiple(cli_agi, sizeof(cli_agi) / sizeof(struct ast_cli_entry));
for (i=0; i < (sizeof(commands) / sizeof(struct agi_command)); i++) {
ast_agi_register(&commands[i]);
}
ast_register_application(deadapp, deadagi_exec, deadsynopsis, descrip); ast_register_application(deadapp, deadagi_exec, deadsynopsis, descrip);
ast_register_application(eapp, eagi_exec, esynopsis, descrip); ast_register_application(eapp, eagi_exec, esynopsis, descrip);
return ast_register_application(app, agi_exec, synopsis, descrip); return ast_register_application(app, agi_exec, synopsis, descrip);