blob: a5184b2131e5eed8bdc490b83cf752e0e1aa8827 [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/osmo_msc.h>
Neels Hofmeyr90843962017-09-04 15:04:35 +020025#include <osmocom/msc/debug.h>
26#include <osmocom/msc/transaction.h>
27#include <osmocom/msc/db.h>
28#include <osmocom/msc/vlr.h>
29#include <osmocom/msc/osmo_msc.h>
30#include <osmocom/msc/a_iface.h>
Max43b01b02017-09-15 11:22:30 +020031#include <osmocom/msc/gsm_04_08.h>
Neels Hofmeyr90843962017-09-04 15:04:35 +020032#include <osmocom/msc/gsm_04_11.h>
Holger Hans Peter Freyther6a3d7652010-06-15 12:03:10 +080033
Neels Hofmeyr00e82d62017-07-05 15:19:52 +020034#include "../../bscconfig.h"
35#ifdef BUILD_IU
36#include <osmocom/ranap/iu_client.h>
37#else
Neels Hofmeyr90843962017-09-04 15:04:35 +020038#include <osmocom/msc/iu_dummy.h>
Neels Hofmeyr00e82d62017-07-05 15:19:52 +020039#endif
40
Neels Hofmeyr55014d02018-03-22 16:43:40 +010041struct gsm_network *gsm_network_init(void *ctx, mncc_recv_cb_t mncc_recv)
42{
43 struct gsm_network *net;
44
45 net = talloc_zero(ctx, struct gsm_network);
46 if (!net)
47 return NULL;
48
49 net->plmn = (struct osmo_plmn_id){ .mcc=1, .mnc=1 };
50
51 /* Permit a compile-time default of A5/3 and A5/1 */
52 net->a5_encryption_mask = (1 << 3) | (1 << 1);
53
54 /* Use 30 min periodic update interval as sane default */
55 net->t3212 = 5;
56
57 net->paging_response_timer = MSC_PAGING_RESPONSE_TIMER_DEFAULT;
58
59 INIT_LLIST_HEAD(&net->trans_list);
60 INIT_LLIST_HEAD(&net->upqueue);
61 INIT_LLIST_HEAD(&net->subscr_conns);
62
63 /* init statistics */
64 net->msc_ctrs = rate_ctr_group_alloc(net, &msc_ctrg_desc, 0);
65 if (!net->msc_ctrs) {
66 talloc_free(net);
67 return NULL;
68 }
69 net->active_calls = osmo_counter_alloc("msc.active_calls");
70
71 net->mncc_recv = mncc_recv;
72
73 INIT_LLIST_HEAD(&net->a.bscs);
74
75 return net;
76}
77
Harald Welte2483f1b2016-06-19 18:06:02 +020078/* Receive a SAPI-N-REJECT from BSC */
Philipp Maierfbf66102017-04-09 12:32:51 +020079void msc_sapi_n_reject(struct gsm_subscriber_connection *conn, int dlci)
Holger Hans Peter Freyther43b09092010-06-15 11:52:51 +080080{
Holger Hans Peter Freyther6a3d7652010-06-15 12:03:10 +080081 int sapi = dlci & 0x7;
82
83 if (sapi == UM_SAPI_SMS)
84 gsm411_sapi_n_reject(conn);
Holger Hans Peter Freyther43b09092010-06-15 11:52:51 +080085}
86
Neels Hofmeyre2f24d52017-05-08 15:12:20 +020087/* receive a Level 3 Complete message and return MSC_CONN_ACCEPT or
88 * MSC_CONN_REJECT */
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020089int msc_compl_l3(struct gsm_subscriber_connection *conn,
90 struct msgb *msg, uint16_t chosen_channel)
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +080091{
Neels Hofmeyr6166f292017-11-22 14:33:12 +010092 msc_subscr_conn_get(conn, MSC_CONN_USE_COMPL_L3);
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +080093 gsm0408_dispatch(conn, msg);
94
Neels Hofmeyr6166f292017-11-22 14:33:12 +010095 msc_subscr_conn_put(conn, MSC_CONN_USE_COMPL_L3);
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020096
97 /* Always return acceptance, because even if the conn was not accepted,
98 * we assumed ownership of it and the caller shall not interfere with
99 * that. We may even already have discarded the conn. */
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200100 return MSC_CONN_ACCEPT;
Harald Welte2483f1b2016-06-19 18:06:02 +0200101
102#if 0
Holger Hans Peter Freythere9f420d2016-02-10 10:42:20 +0100103 /*
104 * If this is a silent call we want the channel to remain open as long as
105 * possible and this is why we accept this connection regardless of any
106 * pending transaction or ongoing operation.
107 */
Holger Hans Peter Freyther70ae5d32012-11-23 21:33:15 +0100108 if (conn->silent_call)
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200109 return MSC_CONN_ACCEPT;
110 if (conn->loc_operation || conn->sec_operation || conn->anch_operation)
111 return MSC_CONN_ACCEPT;
Holger Hans Peter Freyther70ae5d32012-11-23 21:33:15 +0100112 if (trans_has_conn(conn))
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200113 return MSC_CONN_ACCEPT;
Jacob Erlbeck8e68b562014-01-30 21:01:12 +0100114
115 LOGP(DRR, LOGL_INFO, "MSC Complete L3: Rejecting connection.\n");
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200116 return MSC_CONN_REJECT;
Harald Welte2483f1b2016-06-19 18:06:02 +0200117#endif
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +0800118}
119
Harald Welte2483f1b2016-06-19 18:06:02 +0200120/* Receive a DTAP message from BSC */
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200121void msc_dtap(struct gsm_subscriber_connection *conn, uint8_t link_id, struct msgb *msg)
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +0800122{
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100123 msc_subscr_conn_get(conn, MSC_CONN_USE_DTAP);
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +0800124 gsm0408_dispatch(conn, msg);
Harald Welte2483f1b2016-06-19 18:06:02 +0200125
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100126 msc_subscr_conn_put(conn, MSC_CONN_USE_DTAP);
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +0800127}
128
Harald Welte2483f1b2016-06-19 18:06:02 +0200129/* Receive an ASSIGNMENT COMPLETE from BSC */
Philipp Maierfbf66102017-04-09 12:32:51 +0200130void msc_assign_compl(struct gsm_subscriber_connection *conn,
131 uint8_t rr_cause, uint8_t chosen_channel,
132 uint8_t encr_alg_id, uint8_t speec)
Holger Hans Peter Freyther40aac3f2011-12-27 12:31:02 +0100133{
Jacob Erlbeck8e68b562014-01-30 21:01:12 +0100134 LOGP(DRR, LOGL_DEBUG, "MSC assign complete (do nothing).\n");
Holger Hans Peter Freyther40aac3f2011-12-27 12:31:02 +0100135}
136
Harald Welte2483f1b2016-06-19 18:06:02 +0200137/* Receive an ASSIGNMENT FAILURE from BSC */
Philipp Maierfbf66102017-04-09 12:32:51 +0200138void msc_assign_fail(struct gsm_subscriber_connection *conn,
139 uint8_t cause, uint8_t *rr_cause)
Holger Hans Peter Freyther40aac3f2011-12-27 12:31:02 +0100140{
Jacob Erlbeck8e68b562014-01-30 21:01:12 +0100141 LOGP(DRR, LOGL_DEBUG, "MSC assign failure (do nothing).\n");
Holger Hans Peter Freyther40aac3f2011-12-27 12:31:02 +0100142}
143
Harald Welte2483f1b2016-06-19 18:06:02 +0200144/* Receive a CLASSMARK CHANGE from BSC */
Philipp Maierfbf66102017-04-09 12:32:51 +0200145void msc_classmark_chg(struct gsm_subscriber_connection *conn,
146 const uint8_t *cm2, uint8_t cm2_len,
147 const uint8_t *cm3, uint8_t cm3_len)
Harald Welte95e862c2012-01-23 10:28:35 +0100148{
Harald Welte2483f1b2016-06-19 18:06:02 +0200149 if (cm2 && cm2_len) {
150 if (cm2_len > sizeof(conn->classmark.classmark2)) {
151 LOGP(DRR, LOGL_NOTICE, "%s: classmark2 is %u bytes, truncating at %zu bytes\n",
152 vlr_subscr_name(conn->vsub), cm2_len, sizeof(conn->classmark.classmark2));
153 cm2_len = sizeof(conn->classmark.classmark2);
Harald Welte95e862c2012-01-23 10:28:35 +0100154 }
Harald Welte2483f1b2016-06-19 18:06:02 +0200155 conn->classmark.classmark2_len = cm2_len;
156 memcpy(conn->classmark.classmark2, cm2, cm2_len);
157 }
158 if (cm3 && cm3_len) {
159 if (cm3_len > sizeof(conn->classmark.classmark3)) {
160 LOGP(DRR, LOGL_NOTICE, "%s: classmark3 is %u bytes, truncating at %zu bytes\n",
161 vlr_subscr_name(conn->vsub), cm3_len, sizeof(conn->classmark.classmark3));
162 cm3_len = sizeof(conn->classmark.classmark3);
163 }
164 conn->classmark.classmark3_len = cm3_len;
165 memcpy(conn->classmark.classmark3, cm3, cm3_len);
Harald Welte95e862c2012-01-23 10:28:35 +0100166 }
167}
168
Harald Welte2483f1b2016-06-19 18:06:02 +0200169/* Receive a CIPHERING MODE COMPLETE from BSC */
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200170void msc_cipher_mode_compl(struct gsm_subscriber_connection *conn,
171 struct msgb *msg, uint8_t alg_id)
Harald Weltecf149ee2012-01-23 16:40:24 +0100172{
Harald Welte2483f1b2016-06-19 18:06:02 +0200173 struct vlr_ciph_result ciph_res = { .cause = VLR_CIPH_REJECT };
Harald Weltecf149ee2012-01-23 16:40:24 +0100174
Harald Welte2483f1b2016-06-19 18:06:02 +0200175 if (!conn) {
Harald Welte284c39a2018-01-24 22:38:06 +0100176 LOGP(DRR, LOGL_ERROR, "invalid: rx Ciphering Mode Complete on NULL conn\n");
Harald Welte2483f1b2016-06-19 18:06:02 +0200177 return;
178 }
179 if (!conn->vsub) {
Harald Welte284c39a2018-01-24 22:38:06 +0100180 LOGP(DRR, LOGL_ERROR, "invalid: rx Ciphering Mode Complete for NULL subscr\n");
Harald Welte2483f1b2016-06-19 18:06:02 +0200181 return;
Harald Weltecf149ee2012-01-23 16:40:24 +0100182 }
183
Harald Welte284c39a2018-01-24 22:38:06 +0100184 DEBUGP(DRR, "%s: CIPHERING MODE COMPLETE\n", vlr_subscr_name(conn->vsub));
Harald Welte2483f1b2016-06-19 18:06:02 +0200185
Harald Welte284c39a2018-01-24 22:38:06 +0100186 if (msg) {
187 struct gsm48_hdr *gh = msgb_l3(msg);
188 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
189 struct tlv_parsed tp;
190 uint8_t mi_type;
Harald Welte2483f1b2016-06-19 18:06:02 +0200191
Harald Welte284c39a2018-01-24 22:38:06 +0100192 if (!gh) {
193 LOGP(DRR, LOGL_ERROR, "invalid: msgb without l3 header\n");
194 return;
195 }
196
197 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
198
199 /* bearer capability */
200 if (TLVP_PRESENT(&tp, GSM48_IE_MOBILE_ID)) {
201 mi_type = TLVP_VAL(&tp, GSM48_IE_MOBILE_ID)[0] & GSM_MI_TYPE_MASK;
202 if (mi_type == GSM_MI_TYPE_IMEISV
203 && TLVP_LEN(&tp, GSM48_IE_MOBILE_ID) > 0) {
Neels Hofmeyrfa10eda2018-03-13 01:22:01 +0100204 gsm48_mi_to_string(ciph_res.imeisv, sizeof(ciph_res.imeisv),
Harald Welte284c39a2018-01-24 22:38:06 +0100205 TLVP_VAL(&tp, GSM48_IE_MOBILE_ID),
206 TLVP_LEN(&tp, GSM48_IE_MOBILE_ID));
Harald Welte284c39a2018-01-24 22:38:06 +0100207 }
Harald Welte2483f1b2016-06-19 18:06:02 +0200208 }
209 }
210
211 ciph_res.cause = VLR_CIPH_COMPL;
212 vlr_subscr_rx_ciph_res(conn->vsub, &ciph_res);
Harald Weltecf149ee2012-01-23 16:40:24 +0100213}
214
Harald Welte2483f1b2016-06-19 18:06:02 +0200215/* Receive a CLEAR REQUEST from BSC */
Philipp Maierfbf66102017-04-09 12:32:51 +0200216int msc_clear_request(struct gsm_subscriber_connection *conn, uint32_t cause)
Harald Welte2483f1b2016-06-19 18:06:02 +0200217{
218 msc_subscr_conn_close(conn, cause);
219 return 1;
220}
221
Harald Welte2483f1b2016-06-19 18:06:02 +0200222/* increment the ref-count. Needs to be called by every user */
223struct gsm_subscriber_connection *
224_msc_subscr_conn_get(struct gsm_subscriber_connection *conn,
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100225 enum msc_subscr_conn_use balance_token,
Harald Welte2483f1b2016-06-19 18:06:02 +0200226 const char *file, int line)
227{
228 OSMO_ASSERT(conn);
Holger Hans Peter Freythere7bd8632013-06-30 15:30:47 +0200229
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100230 if (balance_token != MSC_CONN_USE_UNTRACKED) {
231 uint32_t flag = 1 << balance_token;
232 OSMO_ASSERT(balance_token < 32);
233 if (conn->use_tokens & flag)
234 LOGPSRC(DREF, LOGL_ERROR, file, line,
235 "%s: MSC conn use error: using an already used token: %s\n",
236 vlr_subscr_name(conn->vsub),
237 msc_subscr_conn_use_name(balance_token));
238 conn->use_tokens |= flag;
239 }
240
Harald Welte2483f1b2016-06-19 18:06:02 +0200241 conn->use_count++;
242 LOGPSRC(DREF, LOGL_DEBUG, file, line,
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100243 "%s: MSC conn use + %s == %u (0x%x)\n",
244 vlr_subscr_name(conn->vsub), msc_subscr_conn_use_name(balance_token),
245 conn->use_count, conn->use_tokens);
Harald Welte2483f1b2016-06-19 18:06:02 +0200246
247 return conn;
248}
249
250/* decrement the ref-count. Once it reaches zero, we release */
251void _msc_subscr_conn_put(struct gsm_subscriber_connection *conn,
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100252 enum msc_subscr_conn_use balance_token,
Harald Welte2483f1b2016-06-19 18:06:02 +0200253 const char *file, int line)
254{
255 OSMO_ASSERT(conn);
256
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100257 if (balance_token != MSC_CONN_USE_UNTRACKED) {
258 uint32_t flag = 1 << balance_token;
259 OSMO_ASSERT(balance_token < 32);
260 if (!(conn->use_tokens & flag))
261 LOGPSRC(DREF, LOGL_ERROR, file, line,
262 "%s: MSC conn use error: freeing an unused token: %s\n",
263 vlr_subscr_name(conn->vsub),
264 msc_subscr_conn_use_name(balance_token));
265 conn->use_tokens &= ~flag;
266 }
267
Harald Welte2483f1b2016-06-19 18:06:02 +0200268 if (conn->use_count == 0) {
269 LOGPSRC(DREF, LOGL_ERROR, file, line,
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100270 "%s: MSC conn use - %s failed: is already 0\n",
271 vlr_subscr_name(conn->vsub),
272 msc_subscr_conn_use_name(balance_token));
Harald Welte2483f1b2016-06-19 18:06:02 +0200273 return;
274 }
275
276 conn->use_count--;
277 LOGPSRC(DREF, LOGL_DEBUG, file, line,
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100278 "%s: MSC conn use - %s == %u (0x%x)\n",
279 vlr_subscr_name(conn->vsub), msc_subscr_conn_use_name(balance_token),
280 conn->use_count, conn->use_tokens);
Harald Welte2483f1b2016-06-19 18:06:02 +0200281
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200282 if (conn->use_count == 0)
Neels Hofmeyre3d3dc62018-03-31 00:02:14 +0200283 osmo_fsm_inst_dispatch(conn->fi, SUBSCR_CONN_E_UNUSED, NULL);
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200284}
285
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100286const struct value_string msc_subscr_conn_use_names[] = {
287 {MSC_CONN_USE_UNTRACKED, "UNTRACKED"},
288 {MSC_CONN_USE_COMPL_L3, "compl_l3"},
289 {MSC_CONN_USE_DTAP, "dtap"},
Neels Hofmeyre3d3dc62018-03-31 00:02:14 +0200290 {MSC_CONN_USE_AUTH_CIPH, "auth+ciph"},
291 {MSC_CONN_USE_CM_SERVICE, "cm_service"},
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100292 {MSC_CONN_USE_TRANS_CC, "trans_cc"},
293 {MSC_CONN_USE_TRANS_SMS, "trans_sms"},
294 {MSC_CONN_USE_TRANS_USSD, "trans_ussd"},
295 {MSC_CONN_USE_SILENT_CALL, "silent_call"},
Neels Hofmeyre3d3dc62018-03-31 00:02:14 +0200296 {MSC_CONN_USE_RELEASE, "release"},
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100297 {0, NULL},
298};
299
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200300void msc_stop_paging(struct vlr_subscr *vsub)
301{
302 DEBUGP(DPAG, "Paging can stop for %s\n", vlr_subscr_name(vsub));
303 /* tell BSCs and RNCs to stop paging? How? */
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800304}