<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/1985/">https://reviewboard.asterisk.org/r/1985/</a>
     </td>
    </tr>
   </table>
   <br />











<pre style="white-space: pre-wrap; white-space: -moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word;">After discussing this some more, I think I&#39;m rescinding this &quot;Ship It!&quot;.

This behavior is odd - we&#39;re preserving some CDR information during a specific instance of a masquerade.  While I&#39;d like to believe this would not introduce any undesired behavior for any users out there, it feels risky.

What&#39;s more, this behavior is *bad* for Asterisk 11.

With pre-dial, you can set the CDR information directly on the outbound channel, as opposed to the Local channel.  This patch would actually work against that, as it would blow out any information set on the outbound channel in the pre-dial.  What&#39;s more, pre-dial accomplishes the actual use case that this scenario is attempting to resolve: that currently, in this scenario, the only time you can apply information to the outbound channel is on the Local channel - when you really want it on the channel that is going to masquerade into the Local channel.

As it is, this may be a very nice fix for a specific user of Asterisk, but I don&#39;t think its something that should go in, at least not so long as we have a proper fix coming in the next major version.

I&#39;m going to go ahead and close this review at this time.</pre>
<br />








<p>- Matt</p>


<br />
<p>On June 14th, 2012, 3:52 p.m., Matt Jordan wrote:</p>






<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, Terry Wilson, Tilghman Lesher, and rmudgett.</div>
<div>By Matt Jordan.</div>


<p style="color: grey;"><i>Updated June 14, 2012, 3:52 p.m.</i></p>




<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;">This patch preserves CDR information that was set on a Local channel before it is masqueraded into by another channel.  This includes accountcode, peeraccount, userfield, amaflags, and any variables that were set.

Consider a scenario in which a Local channel bridges two SIP channels (possibly the result of a channel originate Local/foo@default extension bar@default).  This would look something like the following:

SIP/A &lt;--&gt; Local;1 &lt;&gt; Local;2 &lt;--&gt; SIP/B

In this scenario, currently, the only opportunity for setting CDR information on the resulting call occurs on the Local channels - both SIP channels are created as the result of outbound calls.  As a result, it is desirable to have the CDR information that was set on the Local channel, i.e., Local;2, persist through the masquerade.  At the same time, most of the CDR information, e.g., caller ID information, channel information, etc., should be swapped with the channel being masqueraded away.

This patch does this by copying over the information in local_fixup - this is only an improvement that should be done with respect to local channels.  This should prevent impacting other masquerade operations (such as on SIP transfers).</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;">Tested the following scenario:

exten =&gt; 100,1,NoOp()
     same =&gt; n,Set(CDR(userfield)=foo)
     same =&gt; n,Dial(SIP/A)

exten =&gt; 101,1,NoOp()
     same =&gt; n,Set(CDR(userfield)=bar)
     same =&gt; n,Dial(SIP/B)

Performing &quot;channel originate Local/100@default extension 101@default&quot; prior to the patch would produce the following CDR record:

&quot;&quot;,&quot;&quot;,&quot;100&quot;,&quot;default&quot;,&quot;&quot;,&quot;Local/100@default-5160,2&quot;,&quot;SIP/A-00000000&quot;,&quot;Dial&quot;,&quot;SIP/A&quot;,&quot;2012-06-11 19:10:40&quot;,&quot;2012-06-11 19:10:42&quot;,&quot;2012-06-11 19:10:42&quot;,2,0,&quot;ANSWERED&quot;,&quot;DOCUMENTATION&quot;,&quot;1339441840.1&quot;,&quot;foo&quot;
&quot;&quot;,&quot;100&quot;,&quot;101&quot;,&quot;default&quot;,&quot;100&quot;,&quot;SIP/A-00000000&quot;,&quot;SIP/B-00000001&quot;,&quot;Dial&quot;,&quot;SIP/B&quot;,&quot;2012-06-11 19:10:42&quot;,&quot;2012-06-11 19:10:43&quot;,&quot;2012-06-11 19:10:45&quot;,3,2,&quot;ANSWERED&quot;,&quot;DOCUMENTATION&quot;,&quot;1339441840.2&quot;,&quot;&quot;

Performing the same post patch produces the following CDR:

&quot;&quot;,&quot;&quot;,&quot;100&quot;,&quot;default&quot;,&quot;&quot;,&quot;Local/100@default-5160,2&quot;,&quot;SIP/A-00000000&quot;,&quot;Dial&quot;,&quot;SIP/A&quot;,&quot;2012-06-11 19:10:40&quot;,&quot;2012-06-11 19:10:42&quot;,&quot;2012-06-11 19:10:42&quot;,2,0,&quot;ANSWERED&quot;,&quot;DOCUMENTATION&quot;,&quot;1339441840.1&quot;,&quot;foo&quot;
&quot;&quot;,&quot;100&quot;,&quot;101&quot;,&quot;default&quot;,&quot;100&quot;,&quot;SIP/A-00000000&quot;,&quot;SIP/B-00000001&quot;,&quot;Dial&quot;,&quot;SIP/B&quot;,&quot;2012-06-11 19:10:42&quot;,&quot;2012-06-11 19:10:43&quot;,&quot;2012-06-11 19:10:45&quot;,3,2,&quot;ANSWERED&quot;,&quot;DOCUMENTATION&quot;,&quot;1339441840.2&quot;,&quot;bar&quot;</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_local.c <span style="color: grey">(368965)</span></li>

</ul>

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




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








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