[asterisk-commits] rmudgett: branch 10 r330369 - in /branches/10: ./ main/channel.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Sat Jul 30 18:57:59 CDT 2011
Author: rmudgett
Date: Sat Jul 30 18:57:56 2011
New Revision: 330369
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=330369
Log:
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.
........
Modified:
branches/10/ (props changed)
branches/10/main/channel.c
Propchange: branches/10/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.
Modified: branches/10/main/channel.c
URL: http://svnview.digium.com/svn/asterisk/branches/10/main/channel.c?view=diff&rev=330369&r1=330368&r2=330369
==============================================================================
--- branches/10/main/channel.c (original)
+++ branches/10/main/channel.c Sat Jul 30 18:57:56 2011
@@ -6497,37 +6497,40 @@
*/
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) {
+ /*
+ * 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);
+ }
+
+ /*
+ * 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 */
- }
-
- /* 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. */
- while ((clonechan = original->masq) && ast_channel_trylock(clonechan)) {
- 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) {
- 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. */
More information about the asterisk-commits
mailing list