aboutsummaryrefslogtreecommitdiffstats
path: root/src/libmsc/silent_call.c
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2018-12-07 14:47:34 +0100
committerNeels Hofmeyr <neels@hofmeyr.de>2019-05-08 17:02:32 +0200
commitc4628a3ad4d3c5f65782b152b771bf80357235d6 (patch)
tree8d6e85e33bb1e821ad9dae5b1701cb65f1d0414c /src/libmsc/silent_call.c
parent56f90132b8d7d6a40cc1665b34ff35c62becb2f0 (diff)
large refactoring: support inter-BSC and inter-MSC Handover
3GPP TS 49.008 '4.3 Roles of MSC-A, MSC-I and MSC-T' defines distinct roles: - MSC-A is responsible for managing subscribers, - MSC-I is the gateway to the RAN. - MSC-T is a second transitory gateway to another RAN during Handover. After inter-MSC Handover, the MSC-I is handled by a remote MSC instance, while the original MSC-A retains the responsibility of subscriber management. MSC-T exists in this patch but is not yet used, since Handover is only prepared for, not yet implemented. Facilitate Inter-MSC and inter-BSC Handover by the same internal split of MSC roles. Compared to inter-MSC Handover, mere inter-BSC has the obvious simplifications: - all of MSC-A, MSC-I and MSC-T roles will be served by the same osmo-msc instance, - messages between MSC-A and MSC-{I,T} don't need to be routed via E-interface (GSUP), - no call routing between MSC-A and -I via MNCC necessary. This is the largest code bomb I have submitted, ever. Out of principle, I apologize to everyone trying to read this as a whole. Unfortunately, I see no sense in trying to split this patch into smaller bits. It would be a huge amount of work to introduce these changes in separate chunks, especially if each should in turn be useful and pass all test suites. So, unfortunately, we are stuck with this code bomb. The following are some details and rationale for this rather huge refactoring: * separate MSC subscriber management from ran_conn struct ran_conn is reduced from the pivotal subscriber management entity it has been so far to a mere storage for an SCCP connection ID and an MSC subscriber reference. The new pivotal subscriber management entity is struct msc_a -- struct msub lists the msc_a, msc_i, msc_t roles, the vast majority of code paths however use msc_a, since MSC-A is where all the interesting stuff happens. Before handover, msc_i is an FSM implementation that encodes to the local ran_conn. After inter-MSC Handover, msc_i is a compatible but different FSM implementation that instead forwards via/from GSUP. Same goes for the msc_a struct: if osmo-msc is the MSC-I "RAN proxy" for a remote MSC-A role, the msc_a->fi is an FSM implementation that merely forwards via/from GSUP. * New SCCP implementation for RAN access To be able to forward BSSAP and RANAP messages via the GSUP interface, the individual message layers need to be cleanly separated. The IuCS implementation used until now (iu_client from libosmo-ranap) did not provide this level of separation, and needed a complete rewrite. It was trivial to implement this in such a way that both BSSAP and RANAP can be handled by the same SCCP code, hence the new SCCP-RAN layer also replaces BSSAP handling. sccp_ran.h: struct sccp_ran_inst provides an abstract handler for incoming RAN connections. A set of callback functions provides implementation specific details. * RAN Abstraction (BSSAP vs. RANAP) The common SCCP implementation did set the theme for the remaining refactoring: make all other MSC code paths entirely RAN-implementation-agnostic. ran_infra.c provides data structures that list RAN implementation specifics, from logging to RAN de-/encoding to SCCP callbacks and timers. A ran_infra pointer hence allows complete abstraction of RAN implementations: - managing connected RAN peers (BSC, RNC) in ran_peer.c, - classifying and de-/encoding RAN PDUs, - recording connected LACs and cell IDs and sending out Paging requests to matching RAN peers. * RAN RESET now also for RANAP ran_peer.c absorbs the reset_fsm from a_reset.c; in consequence, RANAP also supports proper RESET semantics now. Hence osmo-hnbgw now also needs to provide proper RESET handling, which it so far duly ignores. (TODO) * RAN de-/encoding abstraction The RAN abstraction mentioned above serves not only to separate RANAP and BSSAP implementations transparently, but also to be able to optionally handle RAN on distinct levels. Before Handover, all RAN messages are handled by the MSC-A role. However, after an inter-MSC Handover, a standalone MSC-I will need to decode RAN PDUs, at least in order to manage Assignment of RTP streams between BSS/RNC and MNCC call forwarding. ran_msg.h provides a common API with abstraction for: - receiving events from RAN, i.e. passing RAN decode from the BSC/RNC and MS/UE: struct ran_dec_msg represents RAN messages decoded from either BSSMAP or RANAP; - sending RAN events: ran_enc_msg is the counterpart to compose RAN messages that should be encoded to either BSSMAP or RANAP and passed down to the BSC/RNC and MS/UE. The RAN-specific implementations are completely contained by ran_msg_a.c and ran_msg_iu.c. In particular, Assignment and Ciphering have so far been distinct code paths for BSSAP and RANAP, with switch(via_ran){...} statements all over the place. Using RAN_DEC_* and RAN_ENC_* abstractions, these are now completely unified. Note that SGs does not qualify for RAN abstraction: the SGs interface always remains with the MSC-A role, and SGs messages follow quite distinct semantics from the fairly similar GERAN and UTRAN. * MGW and RTP stream management So far, managing MGW endpoints via MGCP was tightly glued in-between GSM-04.08-CC on the one and MNCC on the other side. Prepare for switching RTP streams between different RAN peers by moving to object-oriented implementations: implement struct call_leg and struct rtp_stream with distinct FSMs each. For MGW communication, use the osmo_mgcpc_ep API that has originated from osmo-bsc and recently moved to libosmo-mgcp-client for this purpose. Instead of implementing a sequence of events with code duplication for the RAN and CN sides, the idea is to manage each RTP stream separately by firing and receiving events as soon as codecs and RTP ports are negotiated, and letting the individual FSMs take care of the MGW management "asynchronously". The caller provides event IDs and an FSM instance that should be notified of RTP stream setup progress. Hence it becomes possible to reconnect RTP streams from one GSM-04.08-CC to another (inter-BSC Handover) or between CC and MNCC RTP peers (inter-MSC Handover) without duplicating the MGCP code for each transition. The number of FSM implementations used for MGCP handling may seem a bit of an overkill. But in fact, the number of perspectives on RTP forwarding are far from trivial: - an MGW endpoint is an entity with N connections, and MGCP "sessions" for configuring them by talking to the MGW; - an RTP stream is a remote peer connected to one of the endpoint's connections, which is asynchronously notified of codec and RTP port choices; - a call leg is the higher level view on either an MT or MO side of a voice call, a combination of two RTP streams to forward between two remote peers. BSC MGW PBX CI CI [MGW-endpoint] [--rtp_stream--] [--rtp_stream--] [----------------call_leg----------------] * Use counts Introduce using the new osmo_use_count API added to libosmocore for this purpose. Each use token has a distinct name in the logging, which can be a globally constant name or ad-hoc, like the local __func__ string constant. Use in the new struct msc_a, as well as change vlr_subscr to the new osmo_use_count API. * FSM Timeouts Introduce using the new osmo_tdef API, which provides a common VTY implementation for all timer numbers, and FSM state transitions with the correct timeout. Originated in osmo-bsc, recently moved to libosmocore. Depends: Ife31e6798b4e728a23913179e346552a7dd338c0 (libosmocore) Ib9af67b100c4583342a2103669732dab2e577b04 (libosmocore) Id617265337f09dfb6ddfe111ef5e578cd3dc9f63 (libosmocore) Ie9e2add7bbfae651c04e230d62e37cebeb91b0f5 (libosmo-sccp) I26be5c4b06a680f25f19797407ab56a5a4880ddc (osmo-mgw) Ida0e59f9a1f2dd18efea0a51680a67b69f141efa (osmo-mgw) I9a3effd38e72841529df6c135c077116981dea36 (osmo-mgw) Change-Id: I27e4988e0371808b512c757d2b52ada1615067bd
Diffstat (limited to 'src/libmsc/silent_call.c')
-rw-r--r--src/libmsc/silent_call.c193
1 files changed, 60 insertions, 133 deletions
diff --git a/src/libmsc/silent_call.c b/src/libmsc/silent_call.c
index 14974f338..3b95a901f 100644
--- a/src/libmsc/silent_call.c
+++ b/src/libmsc/silent_call.c
@@ -32,115 +32,59 @@
#include <osmocom/msc/gsm_data.h>
#include <osmocom/msc/gsm_subscriber.h>
#include <osmocom/msc/vlr.h>
+#include <osmocom/msc/msc_a.h>
+#include <osmocom/msc/paging.h>
+#include <osmocom/msc/transaction.h>
+#include <osmocom/msc/silent_call.h>
#include <osmocom/sigtran/sccp_helpers.h>
-struct silent_call_data {
- struct gsm0808_channel_type ct;
-
- char traffic_ip[INET_ADDRSTRLEN];
- uint16_t traffic_port;
-
- void *data;
-
- struct osmo_timer_list timer;
- struct ran_conn *conn;
-};
-
-static void timer_cb(void *data)
-{
- struct silent_call_data *scd = (struct silent_call_data *)data;
- ran_conn_communicating(scd->conn);
- talloc_free(scd);
-}
-
/* paging of the requested subscriber has completed */
-static int paging_cb_silent(unsigned int hooknum, unsigned int event,
- struct msgb *msg, void *_conn, void *_data)
+void paging_cb_silent(struct msc_a *msc_a, struct gsm_trans *trans)
{
- struct silent_call_data *scd = (struct silent_call_data *)_data;
- struct ran_conn *conn = _conn;
- struct scall_signal_data sigdata;
- struct msgb *msg_ass;
- int rc = 0;
- int i;
-
- if (hooknum != GSM_HOOK_RR_PAGING)
- return -EINVAL;
-
- DEBUGP(DLSMS, "paging_cb_silent: ");
-
- sigdata.conn = conn;
- sigdata.data = scd->data;
+ struct scall_signal_data sigdata = {
+ .msc_a = msc_a,
+ .vty = trans->silent_call.from_vty,
+ };
+ struct ran_msg assignment;
+
+ if (!msc_a) {
+ LOG_MSC_A(msc_a, LOGL_ERROR, "Silent call: MS not responding to Paging\n");
+ osmo_signal_dispatch(SS_SCALL, S_SCALL_FAILED, &sigdata);
+ trans_free(trans);
+ return;
+ }
- switch (event) {
- case GSM_PAGING_SUCCEEDED:
-#if BEFORE_MSCSPLIT
- /* Re-enable this log output once we can obtain this information via
- * A-interface, see OS#2391. */
- DEBUGPC(DLSMS, "success, using Timeslot %u on ARFCN %u\n",
- conn->lchan->ts->nr, conn->lchan->ts->trx->arfcn);
-#endif
- conn->silent_call = 1;
-
- /* Increment lchan reference count and mark as active*/
- ran_conn_get(conn, RAN_CONN_USE_SILENT_CALL);
-
- /* Schedule a timer to mark it as active */
- /* This is a hack we we can't call ran_conn_communicating
- * from here because we're in the call back context of
- * a RAN FSM event but before it actually changes its own
- * state and it's not ready to accept this.
- * Of all alternatives considered, making the call in an
- * 'immediate timer' is the least disruptive and least ugly
- * way to do it I could find.
- */
- scd->conn = conn;
- osmo_timer_setup(&scd->timer, timer_cb, scd);
- osmo_timer_schedule(&scd->timer, 0, 0);
-
- /* Manually craft an assignement message with requested mode */
- if (scd->ct.ch_indctr == GSM0808_CHAN_SPEECH) {
- struct gsm0808_speech_codec_list scl;
- union {
- struct sockaddr_storage st;
- struct sockaddr_in in;
- } rtp_addr;
-
- memset(&rtp_addr, 0, sizeof(rtp_addr));
- rtp_addr.in.sin_family = AF_INET;
- rtp_addr.in.sin_port = osmo_htons(scd->traffic_port);
- rtp_addr.in.sin_addr.s_addr = inet_addr(scd->traffic_ip);
-
- for (i = 0; i < scd->ct.perm_spch_len; i++)
- gsm0808_speech_codec_from_chan_type(&scl.codec[i], scd->ct.perm_spch[i]);
- scl.len = scd->ct.perm_spch_len;
-
- msg_ass = gsm0808_create_ass(&scd->ct, NULL, &rtp_addr.st, &scl, NULL);
- } else {
- msg_ass = gsm0808_create_ass(&scd->ct, NULL, NULL, NULL, NULL);
- }
-
- /* Send assignement message, hoping it will work */
- osmo_sccp_tx_data_msg(conn->a.scu, conn->a.conn_id, msg_ass);
-
- /* Signal completion */
+ LOG_MSC_A(msc_a, LOGL_INFO, "Silent call: MS responding to Paging\n");
+
+ trans->msc_a = msc_a;
+ msc_a_get(msc_a, MSC_A_USE_SILENT_CALL);
+
+ osmo_fsm_inst_dispatch(msc_a->c.fi, MSC_A_EV_TRANSACTION_ACCEPTED, trans);
+
+ assignment = (struct ran_msg){
+ .msg_type = RAN_MSG_ASSIGNMENT_COMMAND,
+ .assignment_command = {
+ .channel_type = &trans->silent_call.ct,
+ .cn_rtp = &trans->silent_call.rtp_cn,
+ },
+ };
+ if (msc_a_ran_down(msc_a, MSC_ROLE_I, &assignment)) {
+ LOG_MSC_A(msc_a, LOGL_ERROR, "Silent call failed\n");
+ osmo_signal_dispatch(SS_SCALL, S_SCALL_FAILED, &sigdata);
+ trans_free(trans);
+ } else {
osmo_signal_dispatch(SS_SCALL, S_SCALL_SUCCESS, &sigdata);
- return 0;
-
- case GSM_PAGING_EXPIRED:
- case GSM_PAGING_BUSY:
- DEBUGP(DLSMS, "expired\n");
- osmo_signal_dispatch(SS_SCALL, S_SCALL_EXPIRED, &sigdata);
- break;
- default:
- rc = -EINVAL;
- break;
}
+}
- talloc_free(scd);
-
- return rc;
+void trans_silent_call_free(struct gsm_trans *trans)
+{
+ struct scall_signal_data sigdata = {
+ .msc_a = trans->msc_a,
+ .vty = trans->silent_call.from_vty,
+ };
+ osmo_signal_dispatch(SS_SCALL, S_SCALL_DETACHED, &sigdata);
}
#if 0
@@ -193,27 +137,20 @@ int silent_call_reroute(struct ran_conn *conn, struct msgb *msg)
int gsm_silent_call_start(struct vlr_subscr *vsub,
const struct gsm0808_channel_type *ct,
const char *traffic_dst_ip, uint16_t traffic_dst_port,
- void *data)
+ struct vty *vty)
{
- struct subscr_request *req;
- struct silent_call_data *scd;
-
- scd = talloc_zero(vsub, struct silent_call_data);
-
- memcpy(&scd->ct, ct, sizeof(scd->ct));
+ struct gsm_network *net = vsub->vlr->user_ctx;
+ struct gsm_trans *trans = trans_alloc(net, vsub, TRANS_SILENT_CALL, 0, 0);
+ trans->silent_call.ct = *ct;
if (traffic_dst_ip) {
- osmo_strlcpy(scd->traffic_ip, traffic_dst_ip, sizeof(scd->traffic_ip));
- scd->traffic_port = traffic_dst_port;
+ osmo_sockaddr_str_from_str(&trans->silent_call.rtp_cn, traffic_dst_ip, traffic_dst_port);
}
+ trans->silent_call.from_vty = vty;
- scd->data = data;
-
- req = subscr_request_conn(vsub, paging_cb_silent, scd,
- "establish silent call",
- SGSAP_SERV_IND_CS_CALL);
- if (!req) {
- talloc_free(scd);
+ if (!paging_request_start(vsub, PAGING_CAUSE_CALL_BACKGROUND, paging_cb_silent, trans,
+ "establish silent call")) {
+ trans_free(trans);
return -ENODEV;
}
@@ -223,31 +160,21 @@ int gsm_silent_call_start(struct vlr_subscr *vsub,
/* end a silent call with a given subscriber */
int gsm_silent_call_stop(struct vlr_subscr *vsub)
{
- struct ran_conn *conn;
-
- conn = connection_for_subscr(vsub);
- if (!conn) {
+ struct msc_a *msc_a = msc_a_for_vsub(vsub, true);
+ struct gsm_trans *trans;
+ if (!msc_a) {
LOGP(DMM, LOGL_ERROR, "%s: Cannot stop silent call, no connection for subscriber\n",
vlr_subscr_name(vsub));
return -ENODEV;
}
/* did we actually establish a silent call for this guy? */
- if (!conn->silent_call) {
- LOGP(DMM, LOGL_ERROR, "%s: Cannot stop silent call, subscriber has no active silent call\n",
- vlr_subscr_name(vsub));
+ trans = trans_find_by_type(msc_a, TRANS_SILENT_CALL);
+ if (!trans) {
+ LOG_MSC_A(msc_a, LOGL_ERROR, "Cannot stop silent call, subscriber has no active silent call\n");
return -ENOENT;
}
-#if BEFORE_MSCSPLIT
- /* Re-enable this log output once we can obtain this information via
- * A-interface, see OS#2391. */
- DEBUGPC(DLSMS, "Stopping silent call using Timeslot %u on ARFCN %u\n",
- conn->lchan->ts->nr, conn->lchan->ts->trx->arfcn);
-#endif
-
- conn->silent_call = 0;
- ran_conn_put(conn, RAN_CONN_USE_SILENT_CALL);
-
+ trans_free(trans);
return 0;
}