blob: 5c6f0aa2e0bb76dee9d77bda4c420ec5bb24db07 [file] [log] [blame]
Holger Hans Peter Freyther43b09092010-06-15 11:52:51 +08001/* main MSC management code... */
2
3/*
Holger Hans Peter Freythere7bd8632013-06-30 15:30:47 +02004 * (C) 2010,2013 by Holger Hans Peter Freyther <zecke@selfish.org>
Holger Hans Peter Freyther85531cc2010-10-06 20:37:09 +08005 * (C) 2010 by On-Waves
Holger Hans Peter Freyther43b09092010-06-15 11:52:51 +08006 *
7 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +010010 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
Holger Hans Peter Freyther43b09092010-06-15 11:52:51 +080012 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010017 * GNU Affero General Public License for more details.
Holger Hans Peter Freyther43b09092010-06-15 11:52:51 +080018 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010019 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Holger Hans Peter Freyther43b09092010-06-15 11:52:51 +080021 *
22 */
23
Neels Hofmeyr90843962017-09-04 15:04:35 +020024#include <osmocom/msc/debug.h>
25#include <osmocom/msc/transaction.h>
26#include <osmocom/msc/db.h>
27#include <osmocom/msc/vlr.h>
Neels Hofmeyr90843962017-09-04 15:04:35 +020028#include <osmocom/msc/a_iface.h>
Max43b01b02017-09-15 11:22:30 +020029#include <osmocom/msc/gsm_04_08.h>
Neels Hofmeyr90843962017-09-04 15:04:35 +020030#include <osmocom/msc/gsm_04_11.h>
Neels Hofmeyrf383d412018-12-19 17:05:13 +010031#include <osmocom/msc/msc_mgcp.h>
Holger Hans Peter Freyther6a3d7652010-06-15 12:03:10 +080032
Neels Hofmeyr00e82d62017-07-05 15:19:52 +020033#include "../../bscconfig.h"
34#ifdef BUILD_IU
35#include <osmocom/ranap/iu_client.h>
36#else
Neels Hofmeyr90843962017-09-04 15:04:35 +020037#include <osmocom/msc/iu_dummy.h>
Neels Hofmeyr00e82d62017-07-05 15:19:52 +020038#endif
39
Neels Hofmeyr55014d02018-03-22 16:43:40 +010040struct gsm_network *gsm_network_init(void *ctx, mncc_recv_cb_t mncc_recv)
41{
42 struct gsm_network *net;
43
44 net = talloc_zero(ctx, struct gsm_network);
45 if (!net)
46 return NULL;
47
48 net->plmn = (struct osmo_plmn_id){ .mcc=1, .mnc=1 };
49
50 /* Permit a compile-time default of A5/3 and A5/1 */
51 net->a5_encryption_mask = (1 << 3) | (1 << 1);
52
53 /* Use 30 min periodic update interval as sane default */
54 net->t3212 = 5;
55
Philipp Maier9ca7b312018-10-10 17:00:49 +020056 net->mncc_guard_timeout = 180;
Vadim Yanitskiy64623e12018-11-28 23:05:51 +070057 net->ncss_guard_timeout = 30;
Philipp Maier9ca7b312018-10-10 17:00:49 +020058
Neels Hofmeyr55014d02018-03-22 16:43:40 +010059 net->paging_response_timer = MSC_PAGING_RESPONSE_TIMER_DEFAULT;
60
61 INIT_LLIST_HEAD(&net->trans_list);
62 INIT_LLIST_HEAD(&net->upqueue);
Neels Hofmeyrc036b792018-11-29 22:37:51 +010063 INIT_LLIST_HEAD(&net->ran_conns);
Neels Hofmeyr55014d02018-03-22 16:43:40 +010064
65 /* init statistics */
66 net->msc_ctrs = rate_ctr_group_alloc(net, &msc_ctrg_desc, 0);
67 if (!net->msc_ctrs) {
68 talloc_free(net);
69 return NULL;
70 }
71 net->active_calls = osmo_counter_alloc("msc.active_calls");
Vadim Yanitskiyad64e2a2018-06-26 18:27:25 +070072 net->active_nc_ss = osmo_counter_alloc("msc.active_nc_ss");
Neels Hofmeyr55014d02018-03-22 16:43:40 +010073
74 net->mncc_recv = mncc_recv;
75
76 INIT_LLIST_HEAD(&net->a.bscs);
77
78 return net;
79}
80
Neels Hofmeyr80447eb2018-12-05 01:11:28 +010081void gsm_network_set_mncc_sock_path(struct gsm_network *net, const char *mncc_sock_path)
82{
83 if (net->mncc_sock_path)
84 talloc_free(net->mncc_sock_path);
85 net->mncc_sock_path = mncc_sock_path ? talloc_strdup(net, mncc_sock_path) : NULL;
86}
87
Harald Welte2483f1b2016-06-19 18:06:02 +020088/* Receive a SAPI-N-REJECT from BSC */
Neels Hofmeyr3c20a5e2018-11-30 01:08:36 +010089void ran_conn_sapi_n_reject(struct ran_conn *conn, int dlci)
Holger Hans Peter Freyther43b09092010-06-15 11:52:51 +080090{
Holger Hans Peter Freyther6a3d7652010-06-15 12:03:10 +080091 int sapi = dlci & 0x7;
92
93 if (sapi == UM_SAPI_SMS)
94 gsm411_sapi_n_reject(conn);
Holger Hans Peter Freyther43b09092010-06-15 11:52:51 +080095}
96
Neels Hofmeyrd03e7282018-11-30 01:20:32 +010097/* receive a Level 3 Complete message.
98 * Ownership of the conn is completely passed to the conn FSM, i.e. for both acceptance and rejection,
99 * the conn FSM shall decide when to release this conn. It may already be discarded before this exits. */
Neels Hofmeyr3c20a5e2018-11-30 01:08:36 +0100100void ran_conn_compl_l3(struct ran_conn *conn,
101 struct msgb *msg, uint16_t chosen_channel)
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +0800102{
Neels Hofmeyr3c20a5e2018-11-30 01:08:36 +0100103 ran_conn_get(conn, RAN_CONN_USE_COMPL_L3);
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +0800104 gsm0408_dispatch(conn, msg);
Neels Hofmeyr3c20a5e2018-11-30 01:08:36 +0100105 ran_conn_put(conn, RAN_CONN_USE_COMPL_L3);
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +0800106}
107
Harald Welte2483f1b2016-06-19 18:06:02 +0200108/* Receive a DTAP message from BSC */
Neels Hofmeyr3c20a5e2018-11-30 01:08:36 +0100109void ran_conn_dtap(struct ran_conn *conn, struct msgb *msg)
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +0800110{
Neels Hofmeyr3c20a5e2018-11-30 01:08:36 +0100111 ran_conn_get(conn, RAN_CONN_USE_DTAP);
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +0800112 gsm0408_dispatch(conn, msg);
Harald Welte2483f1b2016-06-19 18:06:02 +0200113
Neels Hofmeyr3c20a5e2018-11-30 01:08:36 +0100114 ran_conn_put(conn, RAN_CONN_USE_DTAP);
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +0800115}
116
Harald Welte2483f1b2016-06-19 18:06:02 +0200117/* Receive an ASSIGNMENT COMPLETE from BSC */
Neels Hofmeyr85cb2532018-12-11 18:59:27 +0100118void msc_assign_compl(struct ran_conn *conn,
119 uint8_t rr_cause, uint8_t chosen_channel,
120 uint8_t encr_alg_id, uint8_t speec)
Holger Hans Peter Freyther40aac3f2011-12-27 12:31:02 +0100121{
Neels Hofmeyr85cb2532018-12-11 18:59:27 +0100122 LOGP(DRR, LOGL_DEBUG, "MSC assign complete (do nothing).\n");
Holger Hans Peter Freyther40aac3f2011-12-27 12:31:02 +0100123}
124
Harald Welte2483f1b2016-06-19 18:06:02 +0200125/* Receive an ASSIGNMENT FAILURE from BSC */
Neels Hofmeyr3c20a5e2018-11-30 01:08:36 +0100126void ran_conn_assign_fail(struct ran_conn *conn, uint8_t cause, uint8_t *rr_cause)
Holger Hans Peter Freyther40aac3f2011-12-27 12:31:02 +0100127{
Neels Hofmeyrf383d412018-12-19 17:05:13 +0100128 LOGPFSMSL(conn->fi, DRR, LOGL_ERROR, "Assignment Failure: cause=%u rr_cause=%u.\n",
129 cause, rr_cause ? *rr_cause : 0);
130 msc_mgcp_ass_fail(conn);
Holger Hans Peter Freyther40aac3f2011-12-27 12:31:02 +0100131}
132
Harald Welte2483f1b2016-06-19 18:06:02 +0200133/* Receive a CLASSMARK CHANGE from BSC */
Neels Hofmeyr3c20a5e2018-11-30 01:08:36 +0100134void ran_conn_classmark_chg(struct ran_conn *conn,
135 const uint8_t *cm2, uint8_t cm2_len,
136 const uint8_t *cm3, uint8_t cm3_len)
Harald Welte95e862c2012-01-23 10:28:35 +0100137{
Neels Hofmeyr68cf9572018-09-18 15:52:58 +0200138 struct gsm_classmark *cm;
139
140 if (!conn->vsub)
141 cm = &conn->temporary_classmark;
142 else
143 cm = &conn->vsub->classmark;
Neels Hofmeyr986fe7e2018-09-13 03:05:52 +0200144
Harald Welte2483f1b2016-06-19 18:06:02 +0200145 if (cm2 && cm2_len) {
Neels Hofmeyr986fe7e2018-09-13 03:05:52 +0200146 if (cm2_len > sizeof(cm->classmark2)) {
Harald Welte2483f1b2016-06-19 18:06:02 +0200147 LOGP(DRR, LOGL_NOTICE, "%s: classmark2 is %u bytes, truncating at %zu bytes\n",
Neels Hofmeyr986fe7e2018-09-13 03:05:52 +0200148 vlr_subscr_name(conn->vsub), cm2_len, sizeof(cm->classmark2));
149 cm2_len = sizeof(cm->classmark2);
Harald Welte95e862c2012-01-23 10:28:35 +0100150 }
Neels Hofmeyr986fe7e2018-09-13 03:05:52 +0200151 cm->classmark2_len = cm2_len;
152 memcpy(cm->classmark2, cm2, cm2_len);
Harald Welte2483f1b2016-06-19 18:06:02 +0200153 }
154 if (cm3 && cm3_len) {
Neels Hofmeyr986fe7e2018-09-13 03:05:52 +0200155 if (cm3_len > sizeof(cm->classmark3)) {
Harald Welte2483f1b2016-06-19 18:06:02 +0200156 LOGP(DRR, LOGL_NOTICE, "%s: classmark3 is %u bytes, truncating at %zu bytes\n",
Neels Hofmeyr986fe7e2018-09-13 03:05:52 +0200157 vlr_subscr_name(conn->vsub), cm3_len, sizeof(cm->classmark3));
158 cm3_len = sizeof(cm->classmark3);
Harald Welte2483f1b2016-06-19 18:06:02 +0200159 }
Neels Hofmeyr986fe7e2018-09-13 03:05:52 +0200160 cm->classmark3_len = cm3_len;
161 memcpy(cm->classmark3, cm3, cm3_len);
Harald Welte95e862c2012-01-23 10:28:35 +0100162 }
Neels Hofmeyr3117b702018-09-13 03:23:07 +0200163
164 /* bump subscr conn FSM in case it is waiting for a Classmark Update */
Neels Hofmeyrc036b792018-11-29 22:37:51 +0100165 if (conn->fi->state == RAN_CONN_S_WAIT_CLASSMARK_UPDATE)
166 osmo_fsm_inst_dispatch(conn->fi, RAN_CONN_E_CLASSMARK_UPDATE, NULL);
Harald Welte95e862c2012-01-23 10:28:35 +0100167}
168
Harald Welte2483f1b2016-06-19 18:06:02 +0200169/* Receive a CIPHERING MODE COMPLETE from BSC */
Neels Hofmeyr3c20a5e2018-11-30 01:08:36 +0100170void ran_conn_cipher_mode_compl(struct ran_conn *conn, struct msgb *msg, uint8_t alg_id)
Harald Weltecf149ee2012-01-23 16:40:24 +0100171{
Harald Welte2483f1b2016-06-19 18:06:02 +0200172 struct vlr_ciph_result ciph_res = { .cause = VLR_CIPH_REJECT };
Harald Weltecf149ee2012-01-23 16:40:24 +0100173
Harald Welte2483f1b2016-06-19 18:06:02 +0200174 if (!conn) {
Harald Welte284c39a2018-01-24 22:38:06 +0100175 LOGP(DRR, LOGL_ERROR, "invalid: rx Ciphering Mode Complete on NULL conn\n");
Harald Welte2483f1b2016-06-19 18:06:02 +0200176 return;
177 }
178 if (!conn->vsub) {
Harald Welte284c39a2018-01-24 22:38:06 +0100179 LOGP(DRR, LOGL_ERROR, "invalid: rx Ciphering Mode Complete for NULL subscr\n");
Harald Welte2483f1b2016-06-19 18:06:02 +0200180 return;
Harald Weltecf149ee2012-01-23 16:40:24 +0100181 }
182
Harald Welte284c39a2018-01-24 22:38:06 +0100183 DEBUGP(DRR, "%s: CIPHERING MODE COMPLETE\n", vlr_subscr_name(conn->vsub));
Harald Welte2483f1b2016-06-19 18:06:02 +0200184
Harald Welte284c39a2018-01-24 22:38:06 +0100185 if (msg) {
186 struct gsm48_hdr *gh = msgb_l3(msg);
187 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
188 struct tlv_parsed tp;
189 uint8_t mi_type;
Harald Welte2483f1b2016-06-19 18:06:02 +0200190
Harald Welte284c39a2018-01-24 22:38:06 +0100191 if (!gh) {
192 LOGP(DRR, LOGL_ERROR, "invalid: msgb without l3 header\n");
193 return;
194 }
195
196 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
197
198 /* bearer capability */
199 if (TLVP_PRESENT(&tp, GSM48_IE_MOBILE_ID)) {
200 mi_type = TLVP_VAL(&tp, GSM48_IE_MOBILE_ID)[0] & GSM_MI_TYPE_MASK;
201 if (mi_type == GSM_MI_TYPE_IMEISV
202 && TLVP_LEN(&tp, GSM48_IE_MOBILE_ID) > 0) {
Neels Hofmeyrfa10eda2018-03-13 01:22:01 +0100203 gsm48_mi_to_string(ciph_res.imeisv, sizeof(ciph_res.imeisv),
Harald Welte284c39a2018-01-24 22:38:06 +0100204 TLVP_VAL(&tp, GSM48_IE_MOBILE_ID),
205 TLVP_LEN(&tp, GSM48_IE_MOBILE_ID));
Harald Welte284c39a2018-01-24 22:38:06 +0100206 }
Harald Welte2483f1b2016-06-19 18:06:02 +0200207 }
208 }
209
Neels Hofmeyrf41658d2018-11-30 04:35:50 +0100210 conn->geran_encr.alg_id = alg_id;
Neels Hofmeyrb0779bb2018-11-29 23:37:19 +0100211
Harald Welte2483f1b2016-06-19 18:06:02 +0200212 ciph_res.cause = VLR_CIPH_COMPL;
213 vlr_subscr_rx_ciph_res(conn->vsub, &ciph_res);
Harald Weltecf149ee2012-01-23 16:40:24 +0100214}
215
Harald Welte2483f1b2016-06-19 18:06:02 +0200216/* Receive a CLEAR REQUEST from BSC */
Neels Hofmeyr3c20a5e2018-11-30 01:08:36 +0100217int ran_conn_clear_request(struct ran_conn *conn, uint32_t cause)
Harald Welte2483f1b2016-06-19 18:06:02 +0200218{
Neels Hofmeyrc036b792018-11-29 22:37:51 +0100219 ran_conn_close(conn, cause);
Harald Welte2483f1b2016-06-19 18:06:02 +0200220 return 1;
221}
222
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200223void msc_stop_paging(struct vlr_subscr *vsub)
224{
225 DEBUGP(DPAG, "Paging can stop for %s\n", vlr_subscr_name(vsub));
226 /* tell BSCs and RNCs to stop paging? How? */
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800227}