[asterisk-dev] [Code Review]: SIP 484 handling fix and new Incomplete app control frame

mjordan reviewboard at asterisk.org
Tue Sep 6 19:00:10 CDT 2011



> On Sept. 6, 2011, 6:45 p.m., rmudgett wrote:
> > /branches/1.8/channels/chan_misdn.c, lines 6988-6989
> > <https://reviewboard.asterisk.org/r/1416/diff/2/?file=20024#file20024line6988>
> >
> >     The comment really should be:
> >     Overlapped dialing not enabled -send hangup.

Fixed


> On Sept. 6, 2011, 6:45 p.m., rmudgett wrote:
> > /branches/1.8/channels/chan_dahdi.c, line 9319
> > <https://reviewboard.asterisk.org/r/1416/diff/2/?file=20021#file20021line9319>
> >
> >     Still need space after comma. :)
> >     There is more than one comma.

Fixed


> On Sept. 6, 2011, 6:45 p.m., rmudgett wrote:
> > /branches/1.8/channels/chan_skinny.c, lines 4441-4454
> > <https://reviewboard.asterisk.org/r/1416/diff/2/?file=20027#file20027line4441>
> >
> >     Since this case is identical to AST_CONTROL_CONGESTION, why not just put the case and comment before the congestion case?

Agreed, reduced to fall through


> On Sept. 6, 2011, 6:45 p.m., rmudgett wrote:
> > /branches/1.8/channels/chan_unistim.c, lines 4189-4196
> > <https://reviewboard.asterisk.org/r/1416/diff/2/?file=20028#file20028line4189>
> >
> >     Just delete these lines since the case is the same as congestion.

Agreed, reduced to fall through


> On Sept. 6, 2011, 6:45 p.m., rmudgett wrote:
> > /branches/1.8/channels/sig_pri.c, line 6930
> > <https://reviewboard.asterisk.org/r/1416/diff/2/?file=20030#file20030line6930>
> >
> >     This was not the condition that should be here.

Discussed; changed to just check for overlapdial on incoming


> On Sept. 6, 2011, 6:45 p.m., rmudgett wrote:
> > /branches/1.8/channels/sig_pri.c, line 6951
> > <https://reviewboard.asterisk.org/r/1416/diff/2/?file=20030#file20030line6951>
> >
> >     This break is not necessary as one follows it after some blocks close.

Removed


> On Sept. 6, 2011, 6:45 p.m., rmudgett wrote:
> > /branches/1.8/main/features.c, lines 3408-3410
> > <https://reviewboard.asterisk.org/r/1416/diff/2/?file=20036#file20036line3408>
> >
> >     The break here causes an immediate exit which is not what was intended.

Removed; it will now continue the loop


- mjordan


-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviewboard.asterisk.org/r/1416/#review4245
-----------------------------------------------------------


On Sept. 6, 2011, 6 p.m., mjordan wrote:
> 
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> https://reviewboard.asterisk.org/r/1416/
> -----------------------------------------------------------
> 
> (Updated Sept. 6, 2011, 6 p.m.)
> 
> 
> Review request for Asterisk Developers, David Vossel and rmudgett.
> 
> 
> Summary
> -------
> 
> ASTERISK-17288 was filed against chan_sip.  When a response code of "484 Address Incomplete" was received by the dialplan, the channel was being hung up with a hangup cause of 111, as opposed to the RFC recommended 28.  Upon resolving this, the previously implemented logic for Incomplete extension dialing was triggered (implemented under ASTERISK-11768).  For SIP phones, this had a somewhat unexpected result: upon receiving the 484 response back from the dialed device, the dialplan would send no information back to the device that dialed the numbers, and, after a period of time, would timeout (transferring to either the 't' or 'i' extension, depending on the dialplan).
> 
> While this was the intended effect of the pbx Incomplete logic, it was not desired by the issue reporter.  What's more, for SIP phones, since no information was being forwarded back to the dialing device that the number that they dialed was incomplete, the device did not know to dial more numbers.
> 
> After discussion on asterisk-dev with Kevin and the issue reporter, the following decisions were made:
> 1. app_dial by default should not attempt to place a call into Incomplete - functionality should be triggered by explicit dialplan usage
> 2. Incomplete application should notify channels that they are in Incomplete status using a control frame. That allows channel tech to automatically hangup if no more digits are possible.
> 
> A new control frame AST_CONTROL_INCOMPLETE was added and is sent to the channel in the Incomplete application.  Otherwise, the Incomplete application logic was left unchanged.
> 
> Handling the control frame differs on the channel technology.  With respect to SIP, an Incomplete implies immediately sending the 484 Address Incomplete response to the dialing device and performing a soft hangup, as a new INVITE sequence is required.  If the device wants to retry, then the device will resend the URI with whatever appended digits it determines is needed to try for the next extension.
> 
> For other channel technologies, it depends on their implementation and their support for overlapped dialing.  DAHDI (and sig_pri) and mISDN have support for overlapped dialing - for those cases, receiving an AST_CONTROL_INCOMPLETE means either doing nothing if overlapped dialing is supported (and if the channel is in a state that it can receive additional digits), or hanging up if overlapped dialing is not supported.  In the case of a hangup, the approach was taken to emulate AST_CONTROL_CONGESTION.
> 
> For channels that do not support overlapped dialing, they treat a control frame of AST_CONTROL_INCOMPLETE as if it were AST_CONTROL_CONGESTION.
> 
> 
> This addresses bug ASTERISK-17288.
>     https://issues.asterisk.org/jira/browse/ASTERISK-17288
> 
> 
> Diffs
> -----
> 
>   /branches/1.8/addons/chan_ooh323.c 334572 
>   /branches/1.8/apps/app_dial.c 334572 
>   /branches/1.8/channels/chan_alsa.c 334572 
>   /branches/1.8/channels/chan_console.c 334572 
>   /branches/1.8/channels/chan_dahdi.c 334572 
>   /branches/1.8/channels/chan_h323.c 334572 
>   /branches/1.8/channels/chan_mgcp.c 334572 
>   /branches/1.8/channels/chan_misdn.c 334572 
>   /branches/1.8/channels/chan_oss.c 334572 
>   /branches/1.8/channels/chan_sip.c 334572 
>   /branches/1.8/channels/chan_skinny.c 334572 
>   /branches/1.8/channels/chan_unistim.c 334572 
>   /branches/1.8/channels/chan_usbradio.c 334572 
>   /branches/1.8/channels/sig_pri.c 334572 
>   /branches/1.8/channels/sig_ss7.c 334572 
>   /branches/1.8/funcs/func_frame_trace.c 334572 
>   /branches/1.8/include/asterisk/frame.h 334572 
>   /branches/1.8/main/channel.c 334572 
>   /branches/1.8/main/dial.c 334572 
>   /branches/1.8/main/features.c 334572 
>   /branches/1.8/main/pbx.c 334572 
> 
> Diff: https://reviewboard.asterisk.org/r/1416/diff
> 
> 
> Testing
> -------
> 
> Two new Asterisk test suites were written to test the behavior for SIP (review on https://reviewboard.asterisk.org/r/1417/ ).  These two tests check that Asterisk handles the SIP 484 Address Incomplete both when the response is returned and the Incomplete application is not used, and when the Incomplete application is used.
> 
> Additional testing will be needed for other channel types.  DAHDI will be tested in conjunction with this review; other channels whose support are extended will require testing by the Asterisk community.
> 
> 
> Thanks,
> 
> mjordan
> 
>

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-dev/attachments/20110907/b3bbe421/attachment-0001.htm>


More information about the asterisk-dev mailing list