blob: 1478c191e1ca351f7bd2cbccf22e722962470aa6 [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
Harald Welte2483f1b2016-06-19 18:06:02 +020041/* Receive a SAPI-N-REJECT from BSC */
Philipp Maierfbf66102017-04-09 12:32:51 +020042void msc_sapi_n_reject(struct gsm_subscriber_connection *conn, int dlci)
Holger Hans Peter Freyther43b09092010-06-15 11:52:51 +080043{
Holger Hans Peter Freyther6a3d7652010-06-15 12:03:10 +080044 int sapi = dlci & 0x7;
45
46 if (sapi == UM_SAPI_SMS)
47 gsm411_sapi_n_reject(conn);
Holger Hans Peter Freyther43b09092010-06-15 11:52:51 +080048}
49
Harald Welte2483f1b2016-06-19 18:06:02 +020050static void subscr_conn_bump(struct gsm_subscriber_connection *conn)
51{
52 if (!conn)
53 return;
54 if (!conn->conn_fsm)
55 return;
56 if (!(conn->conn_fsm->state == SUBSCR_CONN_S_ACCEPTED
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020057 || conn->conn_fsm->state == SUBSCR_CONN_S_COMMUNICATING)) {
58 DEBUGP(DMM, "%s: bump: conn still being established (%s)\n",
59 vlr_subscr_name(conn->vsub),
60 osmo_fsm_inst_state_name(conn->conn_fsm));
Harald Welte2483f1b2016-06-19 18:06:02 +020061 return;
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020062 }
Harald Welte2483f1b2016-06-19 18:06:02 +020063 osmo_fsm_inst_dispatch(conn->conn_fsm, SUBSCR_CONN_E_BUMP, NULL);
64}
65
Neels Hofmeyre2f24d52017-05-08 15:12:20 +020066/* receive a Level 3 Complete message and return MSC_CONN_ACCEPT or
67 * MSC_CONN_REJECT */
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020068int msc_compl_l3(struct gsm_subscriber_connection *conn,
69 struct msgb *msg, uint16_t chosen_channel)
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +080070{
Neels Hofmeyr6166f292017-11-22 14:33:12 +010071 msc_subscr_conn_get(conn, MSC_CONN_USE_COMPL_L3);
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +080072 gsm0408_dispatch(conn, msg);
73
Harald Welte2483f1b2016-06-19 18:06:02 +020074 /* Bump whether the conn wants to be closed */
75 subscr_conn_bump(conn);
76
77 /* If this should be kept, the conn->conn_fsm has placed a use_count */
Neels Hofmeyr6166f292017-11-22 14:33:12 +010078 msc_subscr_conn_put(conn, MSC_CONN_USE_COMPL_L3);
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020079
80 /* Always return acceptance, because even if the conn was not accepted,
81 * we assumed ownership of it and the caller shall not interfere with
82 * that. We may even already have discarded the conn. */
Neels Hofmeyre2f24d52017-05-08 15:12:20 +020083 return MSC_CONN_ACCEPT;
Harald Welte2483f1b2016-06-19 18:06:02 +020084
85#if 0
Holger Hans Peter Freythere9f420d2016-02-10 10:42:20 +010086 /*
87 * If this is a silent call we want the channel to remain open as long as
88 * possible and this is why we accept this connection regardless of any
89 * pending transaction or ongoing operation.
90 */
Holger Hans Peter Freyther70ae5d32012-11-23 21:33:15 +010091 if (conn->silent_call)
Neels Hofmeyre2f24d52017-05-08 15:12:20 +020092 return MSC_CONN_ACCEPT;
93 if (conn->loc_operation || conn->sec_operation || conn->anch_operation)
94 return MSC_CONN_ACCEPT;
Holger Hans Peter Freyther70ae5d32012-11-23 21:33:15 +010095 if (trans_has_conn(conn))
Neels Hofmeyre2f24d52017-05-08 15:12:20 +020096 return MSC_CONN_ACCEPT;
Jacob Erlbeck8e68b562014-01-30 21:01:12 +010097
98 LOGP(DRR, LOGL_INFO, "MSC Complete L3: Rejecting connection.\n");
Neels Hofmeyre2f24d52017-05-08 15:12:20 +020099 return MSC_CONN_REJECT;
Harald Welte2483f1b2016-06-19 18:06:02 +0200100#endif
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +0800101}
102
Harald Welte2483f1b2016-06-19 18:06:02 +0200103/* Receive a DTAP message from BSC */
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200104void msc_dtap(struct gsm_subscriber_connection *conn, uint8_t link_id, struct msgb *msg)
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +0800105{
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100106 msc_subscr_conn_get(conn, MSC_CONN_USE_DTAP);
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +0800107 gsm0408_dispatch(conn, msg);
Harald Welte2483f1b2016-06-19 18:06:02 +0200108
109 /* Bump whether the conn wants to be closed */
110 subscr_conn_bump(conn);
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100111 msc_subscr_conn_put(conn, MSC_CONN_USE_DTAP);
Holger Hans Peter Freyther97643312010-06-17 16:41:25 +0800112}
113
Harald Welte2483f1b2016-06-19 18:06:02 +0200114/* Receive an ASSIGNMENT COMPLETE from BSC */
Philipp Maierfbf66102017-04-09 12:32:51 +0200115void msc_assign_compl(struct gsm_subscriber_connection *conn,
116 uint8_t rr_cause, uint8_t chosen_channel,
117 uint8_t encr_alg_id, uint8_t speec)
Holger Hans Peter Freyther40aac3f2011-12-27 12:31:02 +0100118{
Jacob Erlbeck8e68b562014-01-30 21:01:12 +0100119 LOGP(DRR, LOGL_DEBUG, "MSC assign complete (do nothing).\n");
Holger Hans Peter Freyther40aac3f2011-12-27 12:31:02 +0100120}
121
Harald Welte2483f1b2016-06-19 18:06:02 +0200122/* Receive an ASSIGNMENT FAILURE from BSC */
Philipp Maierfbf66102017-04-09 12:32:51 +0200123void msc_assign_fail(struct gsm_subscriber_connection *conn,
124 uint8_t cause, uint8_t *rr_cause)
Holger Hans Peter Freyther40aac3f2011-12-27 12:31:02 +0100125{
Jacob Erlbeck8e68b562014-01-30 21:01:12 +0100126 LOGP(DRR, LOGL_DEBUG, "MSC assign failure (do nothing).\n");
Holger Hans Peter Freyther40aac3f2011-12-27 12:31:02 +0100127}
128
Harald Welte2483f1b2016-06-19 18:06:02 +0200129/* Receive a CLASSMARK CHANGE from BSC */
Philipp Maierfbf66102017-04-09 12:32:51 +0200130void msc_classmark_chg(struct gsm_subscriber_connection *conn,
131 const uint8_t *cm2, uint8_t cm2_len,
132 const uint8_t *cm3, uint8_t cm3_len)
Harald Welte95e862c2012-01-23 10:28:35 +0100133{
Harald Welte2483f1b2016-06-19 18:06:02 +0200134 if (cm2 && cm2_len) {
135 if (cm2_len > sizeof(conn->classmark.classmark2)) {
136 LOGP(DRR, LOGL_NOTICE, "%s: classmark2 is %u bytes, truncating at %zu bytes\n",
137 vlr_subscr_name(conn->vsub), cm2_len, sizeof(conn->classmark.classmark2));
138 cm2_len = sizeof(conn->classmark.classmark2);
Harald Welte95e862c2012-01-23 10:28:35 +0100139 }
Harald Welte2483f1b2016-06-19 18:06:02 +0200140 conn->classmark.classmark2_len = cm2_len;
141 memcpy(conn->classmark.classmark2, cm2, cm2_len);
142 }
143 if (cm3 && cm3_len) {
144 if (cm3_len > sizeof(conn->classmark.classmark3)) {
145 LOGP(DRR, LOGL_NOTICE, "%s: classmark3 is %u bytes, truncating at %zu bytes\n",
146 vlr_subscr_name(conn->vsub), cm3_len, sizeof(conn->classmark.classmark3));
147 cm3_len = sizeof(conn->classmark.classmark3);
148 }
149 conn->classmark.classmark3_len = cm3_len;
150 memcpy(conn->classmark.classmark3, cm3, cm3_len);
Harald Welte95e862c2012-01-23 10:28:35 +0100151 }
152}
153
Harald Welte2483f1b2016-06-19 18:06:02 +0200154/* Receive a CIPHERING MODE COMPLETE from BSC */
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200155void msc_cipher_mode_compl(struct gsm_subscriber_connection *conn,
156 struct msgb *msg, uint8_t alg_id)
Harald Weltecf149ee2012-01-23 16:40:24 +0100157{
Harald Welte2483f1b2016-06-19 18:06:02 +0200158 struct vlr_ciph_result ciph_res = { .cause = VLR_CIPH_REJECT };
Harald Weltecf149ee2012-01-23 16:40:24 +0100159
Harald Welte2483f1b2016-06-19 18:06:02 +0200160 if (!conn) {
Harald Welte284c39a2018-01-24 22:38:06 +0100161 LOGP(DRR, LOGL_ERROR, "invalid: rx Ciphering Mode Complete on NULL conn\n");
Harald Welte2483f1b2016-06-19 18:06:02 +0200162 return;
163 }
164 if (!conn->vsub) {
Harald Welte284c39a2018-01-24 22:38:06 +0100165 LOGP(DRR, LOGL_ERROR, "invalid: rx Ciphering Mode Complete for NULL subscr\n");
Harald Welte2483f1b2016-06-19 18:06:02 +0200166 return;
Harald Weltecf149ee2012-01-23 16:40:24 +0100167 }
168
Harald Welte284c39a2018-01-24 22:38:06 +0100169 DEBUGP(DRR, "%s: CIPHERING MODE COMPLETE\n", vlr_subscr_name(conn->vsub));
Harald Welte2483f1b2016-06-19 18:06:02 +0200170
Harald Welte284c39a2018-01-24 22:38:06 +0100171 if (msg) {
172 struct gsm48_hdr *gh = msgb_l3(msg);
173 unsigned int payload_len = msgb_l3len(msg) - sizeof(*gh);
174 struct tlv_parsed tp;
175 uint8_t mi_type;
176 char imeisv[GSM48_MI_SIZE] = "";
Harald Welte2483f1b2016-06-19 18:06:02 +0200177
Harald Welte284c39a2018-01-24 22:38:06 +0100178 if (!gh) {
179 LOGP(DRR, LOGL_ERROR, "invalid: msgb without l3 header\n");
180 return;
181 }
182
183 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
184
185 /* bearer capability */
186 if (TLVP_PRESENT(&tp, GSM48_IE_MOBILE_ID)) {
187 mi_type = TLVP_VAL(&tp, GSM48_IE_MOBILE_ID)[0] & GSM_MI_TYPE_MASK;
188 if (mi_type == GSM_MI_TYPE_IMEISV
189 && TLVP_LEN(&tp, GSM48_IE_MOBILE_ID) > 0) {
190 gsm48_mi_to_string(imeisv, sizeof(imeisv),
191 TLVP_VAL(&tp, GSM48_IE_MOBILE_ID),
192 TLVP_LEN(&tp, GSM48_IE_MOBILE_ID));
193 ciph_res.imeisv = imeisv;
194 }
Harald Welte2483f1b2016-06-19 18:06:02 +0200195 }
196 }
197
198 ciph_res.cause = VLR_CIPH_COMPL;
199 vlr_subscr_rx_ciph_res(conn->vsub, &ciph_res);
Harald Weltecf149ee2012-01-23 16:40:24 +0100200}
201
Harald Welte2483f1b2016-06-19 18:06:02 +0200202struct gsm_subscriber_connection *msc_subscr_con_allocate(struct gsm_network *network)
203{
204 struct gsm_subscriber_connection *conn;
Harald Welte95e862c2012-01-23 10:28:35 +0100205
Harald Welte2483f1b2016-06-19 18:06:02 +0200206 conn = talloc_zero(network, struct gsm_subscriber_connection);
207 if (!conn)
208 return NULL;
Harald Welte95e862c2012-01-23 10:28:35 +0100209
Harald Welte2483f1b2016-06-19 18:06:02 +0200210 conn->network = network;
211 llist_add_tail(&conn->entry, &network->subscr_conns);
212 return conn;
213}
214
215void msc_subscr_cleanup(struct vlr_subscr *vsub)
216{
217 if (!vsub)
218 return;
219 vsub->lu_fsm = NULL;
220}
221
222void msc_subscr_con_cleanup(struct gsm_subscriber_connection *conn)
223{
224 if (!conn)
225 return;
226
227 if (conn->vsub) {
228 DEBUGP(DRLL, "subscr %s: Freeing subscriber connection\n",
229 vlr_subscr_name(conn->vsub));
230 msc_subscr_cleanup(conn->vsub);
231 vlr_subscr_put(conn->vsub);
232 conn->vsub = NULL;
233 } else
234 DEBUGP(DRLL, "Freeing subscriber connection"
235 " with NULL subscriber\n");
236
237 if (!conn->conn_fsm)
238 return;
239
240 osmo_fsm_inst_term(conn->conn_fsm,
241 (conn->conn_fsm->state == SUBSCR_CONN_S_RELEASED)
242 ? OSMO_FSM_TERM_REGULAR
243 : OSMO_FSM_TERM_ERROR,
244 NULL);
245}
246
247void msc_subscr_con_free(struct gsm_subscriber_connection *conn)
248{
249 if (!conn)
250 return;
251
252 msc_subscr_con_cleanup(conn);
253
254 llist_del(&conn->entry);
255 talloc_free(conn);
256}
257
258/* Receive a CLEAR REQUEST from BSC */
Philipp Maierfbf66102017-04-09 12:32:51 +0200259int msc_clear_request(struct gsm_subscriber_connection *conn, uint32_t cause)
Harald Welte2483f1b2016-06-19 18:06:02 +0200260{
261 msc_subscr_conn_close(conn, cause);
262 return 1;
263}
264
Harald Welte2483f1b2016-06-19 18:06:02 +0200265static void msc_subscr_conn_release_all(struct gsm_subscriber_connection *conn, uint32_t cause)
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800266{
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800267 if (conn->in_release)
268 return;
Harald Welte2483f1b2016-06-19 18:06:02 +0200269 conn->in_release = true;
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800270
Harald Welte2483f1b2016-06-19 18:06:02 +0200271 /* If we're closing in a middle of a trans, we need to clean up */
272 trans_conn_closed(conn);
273
274 switch (conn->via_ran) {
275 case RAN_UTRAN_IU:
Neels Hofmeyr00e82d62017-07-05 15:19:52 +0200276 ranap_iu_tx_release(conn->iu.ue_ctx, NULL);
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200277 /* FIXME: keep the conn until the Iu Release Outcome is
278 * received from the UE, or a timeout expires. For now, the log
279 * says "unknown UE" for each release outcome. */
Harald Welte2483f1b2016-06-19 18:06:02 +0200280 break;
281 case RAN_GERAN_A:
Philipp Maierfbf66102017-04-09 12:32:51 +0200282 a_iface_tx_clear_cmd(conn);
Harald Welte2483f1b2016-06-19 18:06:02 +0200283 break;
284 default:
285 LOGP(DMM, LOGL_ERROR, "%s: Unknown RAN type, cannot tx release/clear\n",
286 vlr_subscr_name(conn->vsub));
287 break;
288 }
289}
290
291/* If the conn->conn_fsm is still present, dispatch SUBSCR_CONN_E_CN_CLOSE
292 * event to gracefully terminate the connection. If the conn_fsm is already
293 * cleared, call msc_subscr_conn_release_all() to take release actions.
294 * \param cause a GSM_CAUSE_* constant, e.g. GSM_CAUSE_AUTH_FAILED.
295 */
296void msc_subscr_conn_close(struct gsm_subscriber_connection *conn,
297 uint32_t cause)
298{
299 if (!conn)
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800300 return;
Harald Welte2483f1b2016-06-19 18:06:02 +0200301 if (conn->in_release) {
302 DEBUGP(DMM, "msc_subscr_conn_close(vsub=%s, cause=%u):"
303 " already dispatching release, ignore.\n",
304 vlr_subscr_name(conn->vsub), cause);
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800305 return;
Harald Welte2483f1b2016-06-19 18:06:02 +0200306 }
307 if (!conn->conn_fsm) {
308 DEBUGP(DMM, "msc_subscr_conn_close(vsub=%s, cause=%u): no conn fsm,"
309 " releasing directly without release event.\n",
310 vlr_subscr_name(conn->vsub), cause);
311 /* In case of an IMSI Detach, we don't have conn_fsm. Release
312 * anyway to ensure a timely Iu Release / BSSMAP Clear. */
313 msc_subscr_conn_release_all(conn, cause);
Holger Hans Peter Freyther70ae5d32012-11-23 21:33:15 +0100314 return;
Harald Welte2483f1b2016-06-19 18:06:02 +0200315 }
316 if (conn->conn_fsm->state == SUBSCR_CONN_S_RELEASED) {
317 DEBUGP(DMM, "msc_subscr_conn_close(vsub=%s, cause=%u):"
318 " conn fsm already releasing, ignore.\n",
319 vlr_subscr_name(conn->vsub), cause);
320 return;
321 }
322 osmo_fsm_inst_dispatch(conn->conn_fsm, SUBSCR_CONN_E_CN_CLOSE, &cause);
323}
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800324
Harald Welte2483f1b2016-06-19 18:06:02 +0200325/* increment the ref-count. Needs to be called by every user */
326struct gsm_subscriber_connection *
327_msc_subscr_conn_get(struct gsm_subscriber_connection *conn,
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100328 enum msc_subscr_conn_use balance_token,
Harald Welte2483f1b2016-06-19 18:06:02 +0200329 const char *file, int line)
330{
331 OSMO_ASSERT(conn);
Holger Hans Peter Freythere7bd8632013-06-30 15:30:47 +0200332
Harald Welte2483f1b2016-06-19 18:06:02 +0200333 if (conn->in_release)
Neels Hofmeyr785fadc2017-11-22 14:44:35 +0100334 LOGPSRC(DREF, LOGL_ERROR, file, line,
335 "%s: MSC conn use error: using conn that is already in release (%s)\n",
336 vlr_subscr_name(conn->vsub),
337 msc_subscr_conn_use_name(balance_token));
Holger Hans Peter Freythere7bd8632013-06-30 15:30:47 +0200338
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100339 if (balance_token != MSC_CONN_USE_UNTRACKED) {
340 uint32_t flag = 1 << balance_token;
341 OSMO_ASSERT(balance_token < 32);
342 if (conn->use_tokens & flag)
343 LOGPSRC(DREF, LOGL_ERROR, file, line,
344 "%s: MSC conn use error: using an already used token: %s\n",
345 vlr_subscr_name(conn->vsub),
346 msc_subscr_conn_use_name(balance_token));
347 conn->use_tokens |= flag;
348 }
349
Harald Welte2483f1b2016-06-19 18:06:02 +0200350 conn->use_count++;
351 LOGPSRC(DREF, LOGL_DEBUG, file, line,
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100352 "%s: MSC conn use + %s == %u (0x%x)\n",
353 vlr_subscr_name(conn->vsub), msc_subscr_conn_use_name(balance_token),
354 conn->use_count, conn->use_tokens);
Harald Welte2483f1b2016-06-19 18:06:02 +0200355
356 return conn;
357}
358
359/* decrement the ref-count. Once it reaches zero, we release */
360void _msc_subscr_conn_put(struct gsm_subscriber_connection *conn,
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100361 enum msc_subscr_conn_use balance_token,
Harald Welte2483f1b2016-06-19 18:06:02 +0200362 const char *file, int line)
363{
364 OSMO_ASSERT(conn);
365
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100366 if (balance_token != MSC_CONN_USE_UNTRACKED) {
367 uint32_t flag = 1 << balance_token;
368 OSMO_ASSERT(balance_token < 32);
369 if (!(conn->use_tokens & flag))
370 LOGPSRC(DREF, LOGL_ERROR, file, line,
371 "%s: MSC conn use error: freeing an unused token: %s\n",
372 vlr_subscr_name(conn->vsub),
373 msc_subscr_conn_use_name(balance_token));
374 conn->use_tokens &= ~flag;
375 }
376
Harald Welte2483f1b2016-06-19 18:06:02 +0200377 if (conn->use_count == 0) {
378 LOGPSRC(DREF, LOGL_ERROR, file, line,
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100379 "%s: MSC conn use - %s failed: is already 0\n",
380 vlr_subscr_name(conn->vsub),
381 msc_subscr_conn_use_name(balance_token));
Harald Welte2483f1b2016-06-19 18:06:02 +0200382 return;
383 }
384
385 conn->use_count--;
386 LOGPSRC(DREF, LOGL_DEBUG, file, line,
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100387 "%s: MSC conn use - %s == %u (0x%x)\n",
388 vlr_subscr_name(conn->vsub), msc_subscr_conn_use_name(balance_token),
389 conn->use_count, conn->use_tokens);
Harald Welte2483f1b2016-06-19 18:06:02 +0200390
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200391 if (conn->use_count == 0)
392 msc_subscr_con_free(conn);
393}
394
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100395const struct value_string msc_subscr_conn_use_names[] = {
396 {MSC_CONN_USE_UNTRACKED, "UNTRACKED"},
397 {MSC_CONN_USE_COMPL_L3, "compl_l3"},
398 {MSC_CONN_USE_DTAP, "dtap"},
399 {MSC_CONN_USE_FSM, "fsm"},
400 {MSC_CONN_USE_TRANS_CC, "trans_cc"},
401 {MSC_CONN_USE_TRANS_SMS, "trans_sms"},
402 {MSC_CONN_USE_TRANS_USSD, "trans_ussd"},
403 {MSC_CONN_USE_SILENT_CALL, "silent_call"},
404 {0, NULL},
405};
406
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200407void msc_stop_paging(struct vlr_subscr *vsub)
408{
409 DEBUGP(DPAG, "Paging can stop for %s\n", vlr_subscr_name(vsub));
410 /* tell BSCs and RNCs to stop paging? How? */
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800411}