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

noreply at bugs.digium.com noreply at bugs.digium.com
Wed Oct 3 08:10:35 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:                     feedback
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-03-2007 08:10 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-03-07 08:10  
---------------------------------------------------------------------- 
Hmmm. After thinking more about this, ${EXTEN} in switch cases is probably
something that needs to be explained in the wiki and documentation ANYWAY.

So, either way would work. And if we do figure out someday that a separate
"nullcase" is desirable, then the structure of the generated code won't
change much from what I have now. I think I'll commit this; if you have
serious problems with this, or this introduces bugs, re-open this or file a
new issue... 

Issue History 
Date Modified   Username       Field                    Change               
====================================================================== 
10-03-07 08:10  murf           Note Added: 0071389                          
======================================================================




More information about the asterisk-bugs mailing list