abort assignment on Assignment Failure

If Assignment fails in the BSC, trigger an EV_TEARDOWN_ERROR in the mgcp_ctx
FSM instance, so that the call gets torn down immediately. Before this, the
non-call would idle around without anything happening.

Related: OS#3236
Depends: I11b182a03f5ecb6df7cd8f260757d3626c8e945d (libosmocore)
Change-Id: I358cfbaf0f44f25148e8b9bafcb9257b1952b35a
This commit is contained in:
Neels Hofmeyr 2018-12-19 17:05:13 +01:00 committed by Neels Hofmeyr
parent fcf49d3f4e
commit f383d411e6
3 changed files with 24 additions and 1 deletions

View File

@ -60,5 +60,6 @@ struct mgcp_ctx {
int msc_mgcp_try_call_assignment(struct gsm_trans *trans);
int msc_mgcp_call_assignment(struct gsm_trans *trans);
int msc_mgcp_ass_complete(struct ran_conn *conn, uint16_t port, char *addr);
int msc_mgcp_ass_fail(struct ran_conn *conn);
int msc_mgcp_call_complete(struct gsm_trans *trans, uint16_t port, char *addr);
int msc_mgcp_call_release(struct gsm_trans *trans);

View File

@ -1094,6 +1094,25 @@ int msc_mgcp_ass_complete(struct ran_conn *conn, uint16_t port, char *addr)
return 0;
}
/* Notify the MGCP context that Assignment failed.
* This will end the "ringing" on the other call leg, and will usually result in L3 and conn release (i.e. when no other
* transactions are still pending, which is usually the case). */
int msc_mgcp_ass_fail(struct ran_conn *conn)
{
struct mgcp_ctx *mgcp_ctx;
OSMO_ASSERT(conn);
mgcp_ctx = conn->rtp.mgcp_ctx;
if (!mgcp_ctx)
return -EINVAL;
LOGPFSMSL(conn->fi, DMGCP, LOGL_ERROR, "Assignment failed\n");
osmo_fsm_inst_dispatch(mgcp_ctx->fsm, EV_TEARDOWN_ERROR, mgcp_ctx);
return 0;
}
/* Make the connection of a previously assigned call complete
* Parameter:
* trans: transaction context.

View File

@ -28,6 +28,7 @@
#include <osmocom/msc/a_iface.h>
#include <osmocom/msc/gsm_04_08.h>
#include <osmocom/msc/gsm_04_11.h>
#include <osmocom/msc/msc_mgcp.h>
#include "../../bscconfig.h"
#ifdef BUILD_IU
@ -123,7 +124,9 @@ void msc_assign_compl(struct ran_conn *conn,
/* Receive an ASSIGNMENT FAILURE from BSC */
void ran_conn_assign_fail(struct ran_conn *conn, uint8_t cause, uint8_t *rr_cause)
{
LOGP(DRR, LOGL_DEBUG, "MSC assign failure (do nothing).\n");
LOGPFSMSL(conn->fi, DRR, LOGL_ERROR, "Assignment Failure: cause=%u rr_cause=%u.\n",
cause, rr_cause ? *rr_cause : 0);
msc_mgcp_ass_fail(conn);
}
/* Receive a CLASSMARK CHANGE from BSC */