[asterisk-commits] jrose: branch 12 r403705 - /branches/12/channels/chan_pjsip.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Dec 12 13:12:03 CST 2013
Author: jrose
Date: Thu Dec 12 13:12:00 2013
New Revision: 403705
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=403705
Log:
chan_pjsip: Revert r403587
This patch was intended to eliminate a deadlock that occurs when
masquerades occur in pjsip channels, but has some potential side
effects. Mark Michelson is currently working on addressing this
problem from another angle.
(issue ASTERISK-22936)
Reported by: Jonathan Rose
Modified:
branches/12/channels/chan_pjsip.c
Modified: branches/12/channels/chan_pjsip.c
URL: http://svnview.digium.com/svn/asterisk/branches/12/channels/chan_pjsip.c?view=diff&rev=403705&r1=403704&r2=403705
==============================================================================
--- branches/12/channels/chan_pjsip.c (original)
+++ branches/12/channels/chan_pjsip.c Thu Dec 12 13:12:00 2013
@@ -630,16 +630,7 @@
struct fixup_data {
struct ast_sip_session *session;
struct ast_channel *chan;
- struct ast_channel *oldchan;
};
-
-static void fixup_data_destroy(struct fixup_data *fix_data)
-{
- ao2_cleanup(fix_data->session);
- ast_channel_cleanup(fix_data->chan);
- ast_channel_cleanup(fix_data->oldchan);
- ast_free(fix_data);
-}
static int fixup(void *data)
{
@@ -647,11 +638,6 @@
struct ast_sip_channel_pvt *channel = ast_channel_tech_pvt(fix_data->chan);
struct chan_pjsip_pvt *pvt = channel->pvt;
- if (channel->session->channel != fix_data->oldchan) {
- fixup_data_destroy(fix_data);
- return -1;
- }
-
channel->session->channel = fix_data->chan;
if (pvt->media[SIP_MEDIA_AUDIO] && pvt->media[SIP_MEDIA_AUDIO]->rtp) {
ast_rtp_instance_set_channel_id(pvt->media[SIP_MEDIA_AUDIO]->rtp, ast_channel_uniqueid(fix_data->chan));
@@ -660,8 +646,6 @@
ast_rtp_instance_set_channel_id(pvt->media[SIP_MEDIA_VIDEO]->rtp, ast_channel_uniqueid(fix_data->chan));
}
- fixup_data_destroy(fix_data);
-
return 0;
}
@@ -669,23 +653,16 @@
static int chan_pjsip_fixup(struct ast_channel *oldchan, struct ast_channel *newchan)
{
struct ast_sip_channel_pvt *channel = ast_channel_tech_pvt(newchan);
- struct fixup_data *fix_data = ast_calloc(1, sizeof(*fix_data));
-
- if (!fix_data) {
+ struct fixup_data fix_data;
+
+ fix_data.session = channel->session;
+ fix_data.chan = newchan;
+
+ if (channel->session->channel != oldchan) {
return -1;
}
- fix_data->session = channel->session;
- ao2_ref(fix_data->session, +1);
-
- fix_data->chan = newchan;
- ast_channel_ref(fix_data->chan);
-
- fix_data->oldchan = oldchan;
- ast_channel_ref(fix_data->oldchan);
-
- if (ast_sip_push_task(channel->session->serializer, fixup, fix_data)) {
- fixup_data_destroy(fix_data);
+ if (ast_sip_push_task_synchronous(channel->session->serializer, fixup, &fix_data)) {
ast_log(LOG_WARNING, "Unable to perform channel fixup\n");
return -1;
}
More information about the asterisk-commits
mailing list