summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2011-07-31 00:05:55 +0000
committerRichard Mudgett <rmudgett@digium.com>2011-07-31 00:05:55 +0000
commita5be6a0f85ee2b28029c024b4a327367822b1982 (patch)
tree92229a527b57984e4c95b012898c738fb9478e06
parent1c0078286e27ef3a50c922d347e29c90ffd90ddb (diff)
Merged revisions 330369 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/10 ................ r330369 | rmudgett | 2011-07-30 18:57:56 -0500 (Sat, 30 Jul 2011) | 11 lines Merged revisions 330368 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r330368 | rmudgett | 2011-07-30 18:56:29 -0500 (Sat, 30 Jul 2011) | 4 lines Remove some redundant locking code in ast_do_masquerade(). Also updated some comments. ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@330370 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--main/channel.c49
1 files changed, 26 insertions, 23 deletions
diff --git a/main/channel.c b/main/channel.c
index f4a04d52f..de5f9acf5 100644
--- a/main/channel.c
+++ b/main/channel.c
@@ -6497,37 +6497,40 @@ int ast_do_masquerade(struct ast_channel *original)
*/
ao2_lock(channels);
- /* lock the original channel to determine if the masquerade is require or not */
+ /* lock the original channel to determine if the masquerade is required or not */
ast_channel_lock(original);
- /* This checks to see if the masquerade has already happened or not. There is a
- * race condition that exists for this function. Since all pvt and channel locks
- * must be let go before calling do_masquerade, it is possible that it could be
- * called multiple times for the same channel. This check verifies whether
- * or not the masquerade has already been completed by another thread */
- if (!original->masq) {
- ast_channel_unlock(original);
- ao2_unlock(channels);
- return 0; /* masq already completed by another thread, or never needed to be done to begin with */
- }
-
- /* now that we have verified no race condition exists, set the clone channel */
- clonechan = original->masq;
-
- /* since this function already holds the global container lock, unlocking original
- * for deadlock avoidance will not result in any sort of masquerade race condition.
- * If masq is called by a different thread while this happens, it will be stuck waiting
- * until we unlock the container. */
+ /*
+ * This checks to see if the masquerade has already happened or
+ * not. There is a race condition that exists for this
+ * function. Since all pvt and channel locks must be let go
+ * before calling do_masquerade, it is possible that it could be
+ * called multiple times for the same channel. This check
+ * verifies whether or not the masquerade has already been
+ * completed by another thread.
+ */
while ((clonechan = original->masq) && ast_channel_trylock(clonechan)) {
+ /*
+ * A masq is needed but we could not get the clonechan lock
+ * immediately. Since this function already holds the global
+ * container lock, unlocking original for deadlock avoidance
+ * will not result in any sort of masquerade race condition. If
+ * masq is called by a different thread while this happens, it
+ * will be stuck waiting until we unlock the container.
+ */
CHANNEL_DEADLOCK_AVOIDANCE(original);
}
- /* recheck if masq has been done the deadlock avoidance above could cause a double masq
- * this is posible with at least ast_hangup*/
- if (!original->masq) {
+ /*
+ * A final masq check must be done after deadlock avoidance for
+ * clonechan above or we could get a double masq. This is
+ * posible with ast_hangup at least.
+ */
+ if (!clonechan) {
+ /* masq already completed by another thread, or never needed to be done to begin with */
ast_channel_unlock(original);
ao2_unlock(channels);
- return 0; /* masq already completed by another thread, or never needed to be done to begin with */
+ return 0;
}
/* Get any transfer masquerade connected line exchange data. */