[asterisk-bugs] [Asterisk 0010834]: [patch]Empty vars in AEL2 switches lead to dropped calls

noreply at bugs.digium.com noreply at bugs.digium.com
Tue Oct 2 22:16:45 CDT 2007


A NOTE has been added to this issue. 
====================================================================== 
http://bugs.digium.com/view.php?id=10834 
====================================================================== 
Reported By:                adiemus
Assigned To:                murf
====================================================================== 
Project:                    Asterisk
Issue ID:                   10834
Category:                   PBX/pbx_ael
Reproducibility:            always
Severity:                   minor
Priority:                   normal
Status:                     assigned
Asterisk Version:            1.4.10  
SVN Branch (only for SVN checkouts, not tarball releases): N/A  
SVN Revision (number only!):  
Disclaimer on File?:        N/A 
Request Review:              
====================================================================== 
Date Submitted:             09-27-2007 17:59 CDT
Last Modified:              10-02-2007 22:16 CDT
====================================================================== 
Summary:                    [patch]Empty vars in AEL2 switches lead to dropped
calls
Description: 
Occasionally my telco doesn't signal CID data properly, leaving me empty
vars for CALLERID(number) and CALLERID(name).  In my dialplan, I have the
following structure:

switch(${CALLERID(number)}) {
    case 1234567890:
       NoOp(Call from 1234567890);
       break;
    default:
       NoOp(No special processing);
}

In the case of a blank CALLERID(number) I'd expect the default path to
run.  However, this AEL gets translated to:

exten => s,16,Goto(sw-12-${CALLERID(number)}|10)
exten => s,17,NoOp(Finish switch-pstn-inbound-12)
exten => _sw-12-.,10,NoOp(No special processing);
exten => _sw-12-.,11,Goto(s|17)
exten => sw-12-1234567890,10,NoOp(Call from 1234567890)
exten => sw-12-1234567890,11,Goto(s|17)

So when asterisk processes it, I end up with:

    -- Executing [s at pstn-inbound:12] Goto("Zap/4-1", "sw-12-|10") in new
stack
    -- Goto (pstn-inbound,sw-12-,10)
[Sep 27 17:58:13] WARNING[32414]: pbx.c:2450 __ast_pbx_run: Channel
'Zap/4-1' sent into invalid extension 'sw-12-' in context 'pstn-inbound',
but no invalid handler
    -- Hungup 'Zap/4-1'

Not quite sure where the "bug" is here since obviously "sw-12-" won't be
matched by "_sw-12-."  Maybe this is the desired behavior and I'm wrong.

For now I'm just checking if CALLERID(number) is empty first, and
populating it with "0000000000" before the switch() which works around the
problem.

  -Chris

====================================================================== 

---------------------------------------------------------------------- 
 murf - 10-02-07 22:16  
---------------------------------------------------------------------- 
OK, I've attached a patch that will add one more extension to the generated
code: an extension for just the empty-string case. All it has is one
priority to jump to the default extension. All the regression tests are
also updated after making sure no side problems have been created.

Give it a try and let me know if solves your problem. Otherwise, based on
my own testing, I will commit this to 1.4. (and trunk). 

Issue History 
Date Modified   Username       Field                    Change               
====================================================================== 
10-02-07 22:16  murf           Note Added: 0071378                          
======================================================================




More information about the asterisk-bugs mailing list