summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2003-08-08 03:01:29 +0000
committerMark Spencer <markster@digium.com>2003-08-08 03:01:29 +0000
commit29802d2ff5d55c15630823e906b1ed5c8d6e4723 (patch)
tree778db8784daab048dcef321ca6c5f7fc1e721fed /channels
parent1d12de4da6b8c1f3b95b51c1715068b56ba6a49f (diff)
Properly defuse race in chan_local, fix extremely unlikely path for losing lock in chan_agent
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1276 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rwxr-xr-xchannels/chan_agent.c2
-rwxr-xr-xchannels/chan_local.c12
2 files changed, 11 insertions, 3 deletions
diff --git a/channels/chan_agent.c b/channels/chan_agent.c
index 466181cb6..b3ae6f0b8 100755
--- a/channels/chan_agent.c
+++ b/channels/chan_agent.c
@@ -560,6 +560,8 @@ static struct ast_channel *agent_new(struct agent_pvt *p, int state)
tmp->pvt->pvt = NULL;
p->app_sleep_cond = 1;
ast_channel_free( tmp );
+ ast_pthread_mutex_unlock(&p->lock); /* For other thread to read the condition. */
+ ast_pthread_mutex_unlock(&p->app_lock);
return NULL;
}
}
diff --git a/channels/chan_local.c b/channels/chan_local.c
index 7567c81e4..7267a8d1f 100755
--- a/channels/chan_local.c
+++ b/channels/chan_local.c
@@ -71,11 +71,14 @@ static struct local_pvt {
static int local_queue_frame(struct local_pvt *p, int isoutbound, struct ast_frame *f)
{
- struct ast_channel *other;
- if (isoutbound)
+ struct ast_channel *other, *us;
+ if (isoutbound) {
+ us = p->chan;
other = p->owner;
- else
+ } else {
+ us = p->owner;
other = p->chan;
+ }
if (!other)
return 0;
p->glaredetect = 1;
@@ -90,8 +93,11 @@ retrylock:
if (pthread_mutex_trylock(&other->lock)) {
/* Failed to lock. Release main lock and try again */
ast_pthread_mutex_unlock(&p->lock);
+ ast_pthread_mutex_unlock(&us->lock);
/* Wait just a bit */
usleep(1);
+ /* Only we can destroy ourselves, so we can't disappear here */
+ ast_pthread_mutex_lock(&us->lock);
ast_pthread_mutex_lock(&p->lock);
goto retrylock;
}