]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix a crash in the end_bridge_callback of app_dial and
authorMark Michelson <mmichelson@digium.com>
Tue, 18 Nov 2008 18:25:55 +0000 (18:25 +0000)
committerMark Michelson <mmichelson@digium.com>
Tue, 18 Nov 2008 18:25:55 +0000 (18:25 +0000)
app_followme which would occur at the end of an attended
transfer. The error occurred because we initially stored
a pointer to an ast_channel which then was hung up due
to a masquerade.

This commit adds a "fixup" callback to the bridge_config
structure to allow for end_bridge_callback_data to be
changed in the case that a new channel pointer is needed
for the end_bridge_callback.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@157305 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_dial.c
apps/app_followme.c
channels/chan_local.c
include/asterisk/channel.h
res/res_features.c

index 5192217f11cdc42cffa4c07bfc63e791ad5a2609..1782e13f14d1cff49d62f484948565f5740fea8c 100644 (file)
@@ -857,6 +857,10 @@ static void end_bridge_callback (void *data)
        ast_channel_unlock(chan);
 }
 
+static void end_bridge_callback_data_fixup(struct ast_bridge_config *bconfig, struct ast_channel *originator, struct ast_channel *terminator) {
+       bconfig->end_bridge_callback_data = originator;
+}
+
 static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags *peerflags, int *continue_exec)
 {
        int res = -1;
@@ -1795,6 +1799,7 @@ static int dial_exec_full(struct ast_channel *chan, void *data, struct ast_flags
                        config.start_sound = start_sound;
                        config.end_bridge_callback = end_bridge_callback;
                        config.end_bridge_callback_data = chan;
+                       config.end_bridge_callback_data_fixup = end_bridge_callback_data_fixup;
                        if (moh) {
                                moh = 0;
                                ast_moh_stop(chan);
index 3de1a4608090f54184a3f12479039550f1a5b010..fca6facc2e7f35e117ad5195243d290cec89eb0e 100644 (file)
@@ -935,6 +935,11 @@ static void end_bridge_callback (void *data)
        ast_channel_unlock(chan);
 }
 
+static void end_bridge_callback_data_fixup(struct ast_bridge_config *bconfig, struct ast_channel *originator, struct ast_channel *terminator)
+{
+       bconfig->end_bridge_callback_data = originator;
+}
+
 static int app_exec(struct ast_channel *chan, void *data)
 {
        struct fm_args targs;
@@ -1057,6 +1062,7 @@ static int app_exec(struct ast_channel *chan, void *data)
 
                        config.end_bridge_callback = end_bridge_callback;
                        config.end_bridge_callback_data = chan;
+                       config.end_bridge_callback_data_fixup = end_bridge_callback_data_fixup;
 
                        ast_moh_stop(caller);
                        /* Be sure no generators are left on it */
index d879cb006fb4013b810cddbc261dd9fca5850869..cbe4c6f2016f842a4da77e4cb0a89d7b33b2866b 100644 (file)
@@ -254,7 +254,7 @@ static void check_bridge(struct local_pvt *p, int isoutbound)
                        if (!p->chan->_bridge->_softhangup) {
                                if (!ast_mutex_trylock(&p->owner->lock)) {
                                        if (!p->owner->_softhangup) {
-                                               if(p->owner->monitor && !p->chan->_bridge->monitor) {
+                                               if (p->owner->monitor && !p->chan->_bridge->monitor) {
                                                        /* If a local channel is being monitored, we don't want a masquerade
                                                         * to cause the monitor to go away. Since the masquerade swaps the monitors,
                                                         * pre-swapping the monitors before the masquerade will ensure that the monitor
@@ -264,6 +264,12 @@ static void check_bridge(struct local_pvt *p, int isoutbound)
                                                        p->owner->monitor = p->chan->_bridge->monitor;
                                                        p->chan->_bridge->monitor = tmp;
                                                }
+                                               if (p->chan->audiohooks) {
+                                                       struct ast_audiohook_list *audiohooks_swapper;
+                                                       audiohooks_swapper = p->chan->audiohooks;
+                                                       p->chan->audiohooks = p->owner->audiohooks;
+                                                       p->owner->audiohooks = audiohooks_swapper;
+                                               }
                                                ast_channel_masquerade(p->owner, p->chan->_bridge);
                                                ast_set_flag(p, LOCAL_ALREADY_MASQED);
                                        }
index be08873aefa2eadab2d99e978c282da6fb879038..ea4dac2bc3acd10c6a668b82526c64410e6e7946 100644 (file)
@@ -542,6 +542,10 @@ struct ast_bridge_config {
        unsigned int flags;
        void (* end_bridge_callback)(void *);   /*!< A callback that is called after a bridge attempt */
        void *end_bridge_callback_data;         /*!< Data passed to the callback */
+       /*! If the end_bridge_callback_data refers to a channel which no longer is going to
+        * exist when the end_bridge_callback is called, then it needs to be fixed up properly
+        */
+       void (*end_bridge_callback_data_fixup)(struct ast_bridge_config *bconfig, struct ast_channel *originator, struct ast_channel *terminator);
 };
 
 struct chanmon;
index 816e1630fe9ca4cafe6b02cda3f2e5e0734e1526..a5c3dc9b5284d674c6ae69ae38f281b021139458 100644 (file)
@@ -982,6 +982,10 @@ static int builtin_atxfer(struct ast_channel *chan, struct ast_channel *peer, st
        tobj->peer = xferchan;
        tobj->bconfig = *config;
 
+       if (tobj->bconfig.end_bridge_callback_data_fixup) {
+               tobj->bconfig.end_bridge_callback_data_fixup(&tobj->bconfig, tobj->peer, tobj->chan);
+       }
+
        if (ast_stream_and_wait(newchan, xfersound, newchan->language, ""))
                ast_log(LOG_WARNING, "Failed to play transfer sound!\n");
        ast_bridge_call_thread_launch(tobj);