summaryrefslogtreecommitdiff
path: root/res/res_agi.c
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2016-11-03 16:42:40 -0500
committerGeorge Joseph <gjoseph@digium.com>2016-11-08 07:06:44 -0700
commit28926d1c81540bbeb16802814d3f2e63c2347bd2 (patch)
treee348dd578f41e5174fcf2d1eefbf8de4bf25e8f0 /res/res_agi.c
parentf073f648b87d45e4729969fd2d83695c300757d1 (diff)
AGI: Only defer frames when in an interception routine.
AGI recently was modified to defer important frames. This was because when AGI was used in a connected line interception routine, the resulting connected line frame would end up getting discarded by the AGI. However, this caused bad behavior in other cases. Specifically, during a transfer, if someone attempted to manually set the Caller ID on a channel in an AGI, the deferred connected line frame would end up overwriting what had been manually set in the AGI. Since the initial issue was specific to interception routines, this change removes the manual frame deferral from AGI and instead uses the new frame deferral API in interception routines. ASTERISK-26343 #close Reported by Morton Tryfoss Change-Id: Iab7d39436d0ee99bfe32ad55ef91e9bd88db4208
Diffstat (limited to 'res/res_agi.c')
-rw-r--r--res/res_agi.c38
1 files changed, 1 insertions, 37 deletions
diff --git a/res/res_agi.c b/res/res_agi.c
index 06e8a03e2..5e047d4c3 100644
--- a/res/res_agi.c
+++ b/res/res_agi.c
@@ -4091,23 +4091,6 @@ static enum agi_result agi_handle_command(struct ast_channel *chan, AGI *agi, ch
return AGI_RESULT_SUCCESS;
}
-AST_LIST_HEAD_NOLOCK(deferred_frames, ast_frame);
-
-static void queue_deferred_frames(struct deferred_frames *deferred_frames,
- struct ast_channel *chan)
-{
- struct ast_frame *f;
-
- if (!AST_LIST_EMPTY(deferred_frames)) {
- ast_channel_lock(chan);
- while ((f = AST_LIST_REMOVE_HEAD(deferred_frames, frame_list))) {
- ast_queue_frame_head(chan, f);
- ast_frfree(f);
- }
- ast_channel_unlock(chan);
- }
-}
-
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;
@@ -4126,9 +4109,6 @@ static enum agi_result run_agi(struct ast_channel *chan, char *request, AGI *agi
const char *sighup_str;
const char *exit_on_hangup_str;
int exit_on_hangup;
- struct deferred_frames deferred_frames;
-
- AST_LIST_HEAD_INIT_NOLOCK(&deferred_frames);
ast_channel_lock(chan);
sighup_str = pbx_builtin_getvar_helper(chan, "AGISIGHUP");
@@ -4190,20 +4170,8 @@ static enum agi_result run_agi(struct ast_channel *chan, char *request, AGI *agi
/* Write, ignoring errors */
if (write(agi->audio, f->data.ptr, f->datalen) < 0) {
}
- ast_frfree(f);
- } else if (ast_is_deferrable_frame(f)) {
- struct ast_frame *dup_f;
-
- if ((dup_f = ast_frisolate(f))) {
- AST_LIST_INSERT_HEAD(&deferred_frames, dup_f, frame_list);
- }
-
- if (dup_f != f) {
- ast_frfree(f);
- }
- } else {
- ast_frfree(f);
}
+ ast_frfree(f);
}
} else if (outfd > -1) {
size_t len = sizeof(buf);
@@ -4251,8 +4219,6 @@ static enum agi_result run_agi(struct ast_channel *chan, char *request, AGI *agi
buf[buflen - 1] = '\0';
}
- queue_deferred_frames(&deferred_frames, chan);
-
if (agidebug)
ast_verbose("<%s>AGI Rx << %s\n", ast_channel_name(chan), buf);
cmd_status = agi_handle_command(chan, agi, buf, dead);
@@ -4275,8 +4241,6 @@ static enum agi_result run_agi(struct ast_channel *chan, char *request, AGI *agi
}
}
- queue_deferred_frames(&deferred_frames, chan);
-
if (agi->speech) {
ast_speech_destroy(agi->speech);
}