<html>
 <body>
  <div style="font-family: Verdana, Arial, Helvetica, Sans-Serif;">
   <table bgcolor="#f9f3c9" width="100%" cellpadding="8" style="border: 1px #c9c399 solid;">
    <tr>
     <td>
      This is an automatically generated e-mail. To reply, visit:
      <a href="https://reviewboard.asterisk.org/r/1911/">https://reviewboard.asterisk.org/r/1911/</a>
     </td>
    </tr>
   </table>
   <br />


<table bgcolor="#fefadf" width="100%" cellspacing="0" cellpadding="8" style="background-image: url('https://reviewboard.asterisk.org/media/rb/images/review_request_box_top_bg.png'); background-position: left top; background-repeat: repeat-x; border: 1px black solid;">
 <tr>
  <td>

<div>Review request for Asterisk Developers and opticron.</div>
<div>By Mark Michelson.</div>





<h1 style="color: #575012; font-size: 10pt; margin-top: 1.5em;">Description </h1>
<table width="100%" bgcolor="#ffffff" cellspacing="0" cellpadding="10" style="border: 1px solid #b8b5a0">
 <tr>
  <td>
   <pre style="margin: 0; padding: 0; white-space: pre-wrap; white-space: -moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word;">Strap in. This one&#39;s rough.

I was going to test reinvite glare when setting up direct media in Asterisk 1.8 to see what sort of delay this causes when setting up media. Unfortunately, I found that reinvite glare is actually broken in current 1.8. Specifically, if two Asterisk boxes are in a reinvite glare situation with one another, then the two will continuously send 491 responses and ACKs to one-another until both transactions time out (by default 32 seconds). When this happens, the call is dropped. Also worth noting is that because direct media is only partially set up, there is one-way audio on the call until it is dropped.

After looking at SIP debugs, the issue is obvious. The ACK sent by each Asterisk for the 491 has the To and From headers reversed. This results in tag mismatches when attempting to find the corresponding dialog.

I traced the issue to a commit made in March of this year (revision 358115, specifically). The offending patch added the following to several error cases in handle_request_invite:

p-&gt;pendinginvite = seqno;
check_via(p, req);
copy_request(&amp;p-&gt;initreq, req);

One such case is when Asterisk responds to an INVITE with a 491. The issue is caused specifically by that last line. Assume there are two Asterisk boxes (Asterisk 1 and Asterisk 2) that are in a reinvite glare scenario. Here is a step-by-step illustration of what occurs from the perspective of Asterisk 1.

1. Asterisk 1 sends a reinvite to Asterisk 2. Doing so causes the sip_pvt&#39;s initreq to be set to this outbound reinvite request.
2. Asterisk 1 receives a reinvite from Asterisk 2. The sip_pvt&#39;s initreq is set to this inbound reinvite request.
3. Asterisk 1 responds to the reinvite from Asterisk 2 with a 491 since there is a pending INVITE transaction on this dialog.
4. Asterisk 1 receives a 491 response from Asterisk 2 since Asterisk 2 also has a pending INVITE transaction on this dialog.

Asterisk 1 wants to send an ACK to Asterisk 2. When constructing the ACK, Asterisk 1 refers to the sip_pvt&#39;s initreq and the SIP_OUTBOUND flag to determine how to construct the From and To headers. In this case, since the SIP_OUTBOUND flag is set, this means that the From and To headers are copied as is to the outbound request from the initreq. The issue here is that the initreq is not the outbound reinvite; it&#39;s the inbound reinvite from Asterisk 2. This means that the From and To headers are reversed from what they should be.

(I&#39;ll note here that determining what the From and To headers should be based on the initial request is not the ideal way to do this, but that&#39;s a change for another day)

So, why was this change added in the first place? The issue being fixed was ASTERISK-19303. In that case, an INVITE with Replaces was being sent to Asterisk, and its Replaces header referred to a non-existent dialog. Asterisk would respond with a 481, but then would not process the corresponding inbound ACK. The reason for this was based on some code in handle_incoming() that tried to be sure not to handle out-of-dialog requests that have a to-tag. Since initreq was not being initialized in the INVITE with Replaces error scenario, ACKs, which contain a to-tag, would be dropped since they were seen as an out-of-dialog request with a to-tag.

First off, the code in handle_incoming() is superfluous. In find_call(), we reject the incoming request if it has a to-tag and we have not yet allocated a local tag for the dialog. The code in handle_incoming() can be removed with no negative affects.

With knowledge that this code can be removed, I considered simply undoing the change in revision 358115 entirely. Looking into how a sip_pvt&#39;s initreq is used, I found the following

1. It is used in handle_incoming in several places (including the code that can be removed) in order to determine if the incoming request is out-of-dialog.
2. It is used as the basis for certain headers when sending requests. This is only useful if the initreq refers to an outbound initial request.
3. It is used as the basis for certain headers when sending responses to asynchronous requests. By &quot;asynchronous requests&quot; I mean requests that do not receive an immediate response from Asterisk. A good example of this would be the 200 OK for an initial SIP INVITE. The code has to enter the dialplan and possibly make outbound calls before the 200 OK can be sent.

So what can we conclude from this with regards to inbound INVITEs? If an out-of-dialog INVITE arrives, we absolutely MUST set the initreq to the inbound INVITE. By not doing this, the code in handle_incoming() will assume subsequent in-dialog messages are out-of-dialog. The end result is the possible premature ending of the dialog if an erroneously constructed in-dialog request arrives later. An in-dialog inbound INVITE also MUST have the initreq set to the inbound INVITE if the INVITE is to be responded to asynchronously.

What this means, then, is that in the case where Asterisk is going to send a 491, it is not imperative to set the initreq to the inbound reinvite since
1. handle_incoming will recognize subsequent requests as being in-dialog since the initreq was set by the initial out-of-dialog INVITE
2. the 491 response is sent immediately.

There are three sets of changes in this diff:

1. A large block in handle_incoming() has been removed because it is superfluous. find_call() already performs the necessary check for us.
2. When sending a 491 response to an INVITE, we do not copy the request into the sip_pvt&#39;s initreq.
3. I have removed a bunch of superfluous settings of p-&gt;pendinginvite from handle_request_invite(). This gets set by calls to __sip_reliable_xmit() (via transmit_response_reliable()).

Note that this change will get the job done, but there are better alternatives for doing this. Unfortunately, the better alternatives are much more invasive.

The real correct change is to give chan_sip a proper transaction layer.

The more realistic change is to store the To and From headers for a dialog on the sip_pvt as &quot;local&quot; and &quot;remote&quot; headers. Then, on requests, always place the local header in the From and remote in the To. On responses, place the local in the To and the remote in the From. This way, we do not need to rely on the so-called &quot;initial request&quot; of a transaction in order to determine proper header placement.</pre>
  </td>
 </tr>
</table>


<h1 style="color: #575012; font-size: 10pt; margin-top: 1.5em;">Testing </h1>
<table width="100%" bgcolor="#ffffff" cellspacing="0" cellpadding="10" style="border: 1px solid #b8b5a0">
 <tr>
  <td>
   <pre style="margin: 0; padding: 0; white-space: pre-wrap; white-space: -moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word;">I have tested reinvite glares with this patch in place and now have two-way audio and no dropped call.</pre>
  </td>
 </tr>
</table>




<h1 style="color: #575012; font-size: 10pt; margin-top: 1.5em;">Diffs</b> </h1>
<ul style="margin-left: 3em; padding-left: 0;">

 <li>/branches/1.8/channels/chan_sip.c <span style="color: grey">(366100)</span></li>

</ul>

<p><a href="https://reviewboard.asterisk.org/r/1911/diff/" style="margin-left: 3em;">View Diff</a></p>




  </td>
 </tr>
</table>




  </div>
 </body>
</html>