7f55b600e0
Incoming calls with CC enabled will not automatically clear the CC offer record when the call is aborted by T309 processing. All CC agent FSM's have this problem (PTMP, PTP, and Q.SIG). To reproduce: 1) Place incoming call to Asterisk/libpri 2) Either before or after the call is answered, bring the ISDN link down. 3) T309 processing, T309 timeout, or TEI removal will leave the CC agent FSM in the CC available state. The problem is indicated by the "cc report status" CLI command showing a status of CC offered to caller but it will never timeout. The FSM's can be manually cleared by using the "cc cancel all" or "cc cancel core" CLI commands. JIRA LIBPRI-46 JIRA SWP-2241 git-svn-id: https://origsvn.digium.com/svn/libpri/branches/1.4@2079 2fbb986a-6c06-0410-b554-c9c1f0a7f128
188 lines
4.9 KiB
Plaintext
188 lines
4.9 KiB
Plaintext
/*
|
|
* FSM pseudo code used in the design/implementation of the CC Q.SIG agent.
|
|
*/
|
|
FSM CC_QSIG_Agent
|
|
{
|
|
State CC_STATE_IDLE {
|
|
Stimulus CC_EVENT_AVAILABLE {
|
|
Next_State CC_STATE_AVAILABLE;
|
|
}
|
|
Stimulus CC_EVENT_CANCEL {
|
|
Action Set_Selfdestruct;
|
|
}
|
|
}
|
|
State CC_STATE_AVAILABLE {
|
|
/*
|
|
* For Q.SIG mode the T_RETENTION timer is not defined. However,
|
|
* we will use it anyway in this state to protect our resources
|
|
* from leaks caused by user A not requesting CC. This timer
|
|
* should be set much longer than the PTMP network link to
|
|
* allow for variations in user A's CC offer timer.
|
|
*/
|
|
Stimulus CC_EVENT_MSG_RELEASE {
|
|
Action Stop_T_RETENTION;
|
|
Action Start_T_RETENTION;
|
|
}
|
|
Stimulus CC_EVENT_MSG_RELEASE_COMPLETE {
|
|
Action Stop_T_RETENTION;
|
|
Action Start_T_RETENTION;
|
|
}
|
|
Stimulus CC_EVENT_CC_REQUEST {
|
|
Action Pass_Up_CC_Request;
|
|
/* Send Q931_CALL_PROCEEDING message on signaling link. */
|
|
Action Send_Call_Proceeding;
|
|
Action Stop_T_RETENTION;
|
|
Next_State CC_STATE_REQUESTED;
|
|
}
|
|
Stimulus CC_EVENT_INTERNAL_CLEARING {
|
|
Action Stop_T_RETENTION;
|
|
Action Start_T_RETENTION;
|
|
}
|
|
Stimulus CC_EVENT_TIMEOUT_T_RETENTION {
|
|
Action Pass_Up_CC_Cancel;
|
|
Action Stop_T_RETENTION;
|
|
Action Set_Selfdestruct;
|
|
Next_State CC_STATE_IDLE;
|
|
}
|
|
Stimulus CC_EVENT_CANCEL {
|
|
Action Stop_T_RETENTION;
|
|
Action Set_Selfdestruct;
|
|
Next_State CC_STATE_IDLE;
|
|
}
|
|
}
|
|
State CC_STATE_REQUESTED {
|
|
Stimulus CC_EVENT_CC_REQUEST_ACCEPT {
|
|
/* Start QSIG_CCBS_T2/QSIG_CCNR_T2 depending upon CC mode. */
|
|
Action Start_T_SUPERVISION;
|
|
Next_State CC_STATE_ACTIVATED;
|
|
}
|
|
Stimulus CC_EVENT_SIGNALING_GONE {
|
|
/* Signaling link cleared. */
|
|
Action Pass_Up_CC_Cancel;
|
|
Action Set_Selfdestruct;
|
|
Next_State CC_STATE_IDLE;
|
|
}
|
|
Stimulus CC_EVENT_CANCEL {
|
|
Action Hangup_Signaling_Link;
|
|
Action Set_Selfdestruct;
|
|
Next_State CC_STATE_IDLE;
|
|
}
|
|
}
|
|
State CC_STATE_WAIT_DESTRUCTION {
|
|
/*
|
|
* Delayed disconnect of the signaling link to allow subcmd events
|
|
* from the signaling link to be passed up.
|
|
*/
|
|
Stimulus CC_EVENT_SIGNALING_GONE {
|
|
/* Signaling link cleared. */
|
|
Action Set_Selfdestruct;
|
|
Next_State CC_STATE_IDLE;
|
|
}
|
|
Stimulus CC_EVENT_HANGUP_SIGNALING {
|
|
Action Hangup_Signaling_Link;
|
|
Action Set_Selfdestruct;
|
|
Next_State CC_STATE_IDLE;
|
|
}
|
|
}
|
|
State CC_STATE_ACTIVATED {
|
|
Stimulus CC_EVENT_REMOTE_USER_FREE {
|
|
/* Send ccExecPossible in FACILITY or SETUP. */
|
|
Action Send_RemoteUserFree;
|
|
Next_State CC_STATE_WAIT_CALLBACK;
|
|
}
|
|
Stimulus CC_EVENT_TIMEOUT_T_SUPERVISION {
|
|
Action Pass_Up_CC_Cancel;
|
|
Action Send_CC_Cancel;
|
|
Action Stop_T_SUPERVISION;
|
|
Action Set_Selfdestruct;
|
|
Next_State CC_STATE_IDLE;
|
|
}
|
|
Stimulus CC_EVENT_SIGNALING_GONE {
|
|
/* Signaling link cleared. */
|
|
Action Disassociate_Signaling_Link;
|
|
}
|
|
Stimulus CC_EVENT_LINK_CANCEL {
|
|
/* Received ccCancel */
|
|
Action Pass_Up_CC_Cancel;
|
|
Action Post_HANGUP_SIGNALING;
|
|
Action Stop_T_SUPERVISION;
|
|
Next_State CC_STATE_WAIT_DESTRUCTION;
|
|
}
|
|
Stimulus CC_EVENT_CANCEL {
|
|
Action Send_CC_Cancel;
|
|
Action Stop_T_SUPERVISION;
|
|
Action Set_Selfdestruct;
|
|
Next_State CC_STATE_IDLE;
|
|
}
|
|
}
|
|
State CC_STATE_WAIT_CALLBACK {
|
|
Stimulus CC_EVENT_SUSPEND {
|
|
/* Received ccSuspend */
|
|
Action Set_A_Status_Busy;
|
|
Action Pass_Up_A_Status;
|
|
Next_State CC_STATE_SUSPENDED;
|
|
}
|
|
Stimulus CC_EVENT_RECALL {
|
|
/* Received ccRingout */
|
|
Action Pass_Up_CC_Call;
|
|
Action Set_Original_Call_Parameters;
|
|
}
|
|
Stimulus CC_EVENT_TIMEOUT_T_SUPERVISION {
|
|
Action Pass_Up_CC_Cancel;
|
|
Action Send_CC_Cancel;
|
|
Action Stop_T_SUPERVISION;
|
|
Action Set_Selfdestruct;
|
|
Next_State CC_STATE_IDLE;
|
|
}
|
|
Stimulus CC_EVENT_SIGNALING_GONE {
|
|
/* Signaling link cleared. */
|
|
Action Disassociate_Signaling_Link;
|
|
}
|
|
Stimulus CC_EVENT_LINK_CANCEL {
|
|
/* Received ccCancel */
|
|
Action Pass_Up_CC_Cancel;
|
|
Action Post_HANGUP_SIGNALING;
|
|
Action Stop_T_SUPERVISION;
|
|
Next_State CC_STATE_WAIT_DESTRUCTION;
|
|
}
|
|
Stimulus CC_EVENT_CANCEL {
|
|
Action Send_CC_Cancel;
|
|
Action Stop_T_SUPERVISION;
|
|
Action Set_Selfdestruct;
|
|
Next_State CC_STATE_IDLE;
|
|
}
|
|
}
|
|
State CC_STATE_SUSPENDED {
|
|
Stimulus CC_EVENT_RESUME {
|
|
/* Received ccResume */
|
|
Action Set_A_Status_Free;
|
|
Action Pass_Up_A_Status;
|
|
Next_State CC_STATE_ACTIVATED;
|
|
}
|
|
Stimulus CC_EVENT_TIMEOUT_T_SUPERVISION {
|
|
Action Pass_Up_CC_Cancel;
|
|
Action Send_CC_Cancel;
|
|
Action Stop_T_SUPERVISION;
|
|
Action Set_Selfdestruct;
|
|
Next_State CC_STATE_IDLE;
|
|
}
|
|
Stimulus CC_EVENT_SIGNALING_GONE {
|
|
/* Signaling link cleared. */
|
|
Action Disassociate_Signaling_Link;
|
|
}
|
|
Stimulus CC_EVENT_LINK_CANCEL {
|
|
/* Received ccCancel */
|
|
Action Pass_Up_CC_Cancel;
|
|
Action Post_HANGUP_SIGNALING;
|
|
Action Stop_T_SUPERVISION;
|
|
Next_State CC_STATE_WAIT_DESTRUCTION;
|
|
}
|
|
Stimulus CC_EVENT_CANCEL {
|
|
Action Send_CC_Cancel;
|
|
Action Stop_T_SUPERVISION;
|
|
Action Set_Selfdestruct;
|
|
Next_State CC_STATE_IDLE;
|
|
}
|
|
}
|
|
}
|