<p>Kevin Harwell <strong>uploaded patch set #2</strong> to this change.</p><p><a href="https://gerrit.asterisk.org/c/asterisk/+/13031">View Change</a></p><pre style="font-family: monospace,monospace; white-space: pre-wrap;">pbx: deadlock when outgoing dialed channel hangs up too quickly<br><br>Here's the basic scenario that occurred when executing an AMI fast originate<br>while at the same time something else locks the channels container, and also<br>wants a lock on the dialed channel:<br><br>1. pbx_outgoing_attempt obtains a lock on a dialed channel<br>2. concurrently another thread obtains a lock on the channels container, and<br>   subsequently requests a lock on the dialed channel. It waits on #1. For<br>   instance, "core show channel <dialed channel"<br>3. the outgoing call does not fail, but ends before the pbx_outgoing_attempt<br>   function exits<br>4. pbx_outgoing_attempt function exits, the outgoing structure destructs, and<br>   attempts to hang up the dialed channel<br>5. hang up tries to obtain the channels container lock, but can't due to #2.<br>6. Asterisk is deadlocked.<br><br>The solution was to allow the pbx_outgoing_exec function to "steal" ownership<br>of the dialed channel, and handle hanging it up. The channel now is either hung<br>up prior to it being potentially locked by the initiating thread, or if locked<br>the hang up takes place in a different thread, thus alleviating the deadlock.<br><br>ASTERISK-28561<br>patches:<br>  iliketrains.diff submitted by Joshua Colp (license 5000)<br><br>Change-Id: I51b42b92dde8f2215b69bb509e28667ee3a3853a<br>---<br>M main/pbx.c<br>1 file changed, 14 insertions(+), 12 deletions(-)<br><br></pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;">git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/31/13031/2</pre><p>To view, visit <a href="https://gerrit.asterisk.org/c/asterisk/+/13031">change 13031</a>. To unsubscribe, or for help writing mail filters, visit <a href="https://gerrit.asterisk.org/settings">settings</a>.</p><div itemscope itemtype="http://schema.org/EmailMessage"><div itemscope itemprop="action" itemtype="http://schema.org/ViewAction"><link itemprop="url" href="https://gerrit.asterisk.org/c/asterisk/+/13031"/><meta itemprop="name" content="View Change"/></div></div>

<div style="display:none"> Gerrit-Project: asterisk </div>
<div style="display:none"> Gerrit-Branch: 16 </div>
<div style="display:none"> Gerrit-Change-Id: I51b42b92dde8f2215b69bb509e28667ee3a3853a </div>
<div style="display:none"> Gerrit-Change-Number: 13031 </div>
<div style="display:none"> Gerrit-PatchSet: 2 </div>
<div style="display:none"> Gerrit-Owner: Kevin Harwell <kharwell@digium.com> </div>
<div style="display:none"> Gerrit-CC: Friendly Automation </div>
<div style="display:none"> Gerrit-MessageType: newpatchset </div>