blob: 323baf9aaabf16ffd44311ea6d1691c086d78f47 [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;
Harald Welte2483f1b2016-06-19 18:06:02 +0200176
Harald Welte284c39a2018-01-24 22:38:06 +0100177 if (!gh) {
178 LOGP(DRR, LOGL_ERROR, "invalid: msgb without l3 header\n");
179 return;
180 }
181
182 tlv_parse(&tp, &gsm48_att_tlvdef, gh->data, payload_len, 0, 0);
183
184 /* bearer capability */
185 if (TLVP_PRESENT(&tp, GSM48_IE_MOBILE_ID)) {
186 mi_type = TLVP_VAL(&tp, GSM48_IE_MOBILE_ID)[0] & GSM_MI_TYPE_MASK;
187 if (mi_type == GSM_MI_TYPE_IMEISV
188 && TLVP_LEN(&tp, GSM48_IE_MOBILE_ID) > 0) {
Neels Hofmeyrfa10eda2018-03-13 01:22:01 +0100189 gsm48_mi_to_string(ciph_res.imeisv, sizeof(ciph_res.imeisv),
Harald Welte284c39a2018-01-24 22:38:06 +0100190 TLVP_VAL(&tp, GSM48_IE_MOBILE_ID),
191 TLVP_LEN(&tp, GSM48_IE_MOBILE_ID));
Harald Welte284c39a2018-01-24 22:38:06 +0100192 }
Harald Welte2483f1b2016-06-19 18:06:02 +0200193 }
194 }
195
196 ciph_res.cause = VLR_CIPH_COMPL;
197 vlr_subscr_rx_ciph_res(conn->vsub, &ciph_res);
Harald Weltecf149ee2012-01-23 16:40:24 +0100198}
199
Harald Welte2483f1b2016-06-19 18:06:02 +0200200struct gsm_subscriber_connection *msc_subscr_con_allocate(struct gsm_network *network)
201{
202 struct gsm_subscriber_connection *conn;
Harald Welte95e862c2012-01-23 10:28:35 +0100203
Harald Welte2483f1b2016-06-19 18:06:02 +0200204 conn = talloc_zero(network, struct gsm_subscriber_connection);
205 if (!conn)
206 return NULL;
Harald Welte95e862c2012-01-23 10:28:35 +0100207
Harald Welte2483f1b2016-06-19 18:06:02 +0200208 conn->network = network;
209 llist_add_tail(&conn->entry, &network->subscr_conns);
210 return conn;
211}
212
213void msc_subscr_cleanup(struct vlr_subscr *vsub)
214{
215 if (!vsub)
216 return;
217 vsub->lu_fsm = NULL;
218}
219
220void msc_subscr_con_cleanup(struct gsm_subscriber_connection *conn)
221{
222 if (!conn)
223 return;
224
225 if (conn->vsub) {
226 DEBUGP(DRLL, "subscr %s: Freeing subscriber connection\n",
227 vlr_subscr_name(conn->vsub));
228 msc_subscr_cleanup(conn->vsub);
Neels Hofmeyr1db394f2018-03-09 17:04:53 +0100229 conn->vsub->msc_conn_ref = NULL;
Harald Welte2483f1b2016-06-19 18:06:02 +0200230 vlr_subscr_put(conn->vsub);
231 conn->vsub = NULL;
232 } else
233 DEBUGP(DRLL, "Freeing subscriber connection"
234 " with NULL subscriber\n");
235
236 if (!conn->conn_fsm)
237 return;
238
239 osmo_fsm_inst_term(conn->conn_fsm,
240 (conn->conn_fsm->state == SUBSCR_CONN_S_RELEASED)
241 ? OSMO_FSM_TERM_REGULAR
242 : OSMO_FSM_TERM_ERROR,
243 NULL);
244}
245
246void msc_subscr_con_free(struct gsm_subscriber_connection *conn)
247{
248 if (!conn)
249 return;
250
251 msc_subscr_con_cleanup(conn);
252
253 llist_del(&conn->entry);
254 talloc_free(conn);
255}
256
257/* Receive a CLEAR REQUEST from BSC */
Philipp Maierfbf66102017-04-09 12:32:51 +0200258int msc_clear_request(struct gsm_subscriber_connection *conn, uint32_t cause)
Harald Welte2483f1b2016-06-19 18:06:02 +0200259{
260 msc_subscr_conn_close(conn, cause);
261 return 1;
262}
263
Harald Welte2483f1b2016-06-19 18:06:02 +0200264static void msc_subscr_conn_release_all(struct gsm_subscriber_connection *conn, uint32_t cause)
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800265{
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800266 if (conn->in_release)
267 return;
Harald Welte2483f1b2016-06-19 18:06:02 +0200268 conn->in_release = true;
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800269
Harald Welte2483f1b2016-06-19 18:06:02 +0200270 /* If we're closing in a middle of a trans, we need to clean up */
271 trans_conn_closed(conn);
272
273 switch (conn->via_ran) {
274 case RAN_UTRAN_IU:
Neels Hofmeyr00e82d62017-07-05 15:19:52 +0200275 ranap_iu_tx_release(conn->iu.ue_ctx, NULL);
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200276 /* FIXME: keep the conn until the Iu Release Outcome is
277 * received from the UE, or a timeout expires. For now, the log
278 * says "unknown UE" for each release outcome. */
Harald Welte2483f1b2016-06-19 18:06:02 +0200279 break;
280 case RAN_GERAN_A:
Philipp Maierfbf66102017-04-09 12:32:51 +0200281 a_iface_tx_clear_cmd(conn);
Harald Welte2483f1b2016-06-19 18:06:02 +0200282 break;
283 default:
284 LOGP(DMM, LOGL_ERROR, "%s: Unknown RAN type, cannot tx release/clear\n",
285 vlr_subscr_name(conn->vsub));
286 break;
287 }
288}
289
290/* If the conn->conn_fsm is still present, dispatch SUBSCR_CONN_E_CN_CLOSE
291 * event to gracefully terminate the connection. If the conn_fsm is already
292 * cleared, call msc_subscr_conn_release_all() to take release actions.
293 * \param cause a GSM_CAUSE_* constant, e.g. GSM_CAUSE_AUTH_FAILED.
294 */
295void msc_subscr_conn_close(struct gsm_subscriber_connection *conn,
296 uint32_t cause)
297{
298 if (!conn)
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800299 return;
Harald Welte2483f1b2016-06-19 18:06:02 +0200300 if (conn->in_release) {
301 DEBUGP(DMM, "msc_subscr_conn_close(vsub=%s, cause=%u):"
302 " already dispatching release, ignore.\n",
303 vlr_subscr_name(conn->vsub), cause);
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800304 return;
Harald Welte2483f1b2016-06-19 18:06:02 +0200305 }
306 if (!conn->conn_fsm) {
307 DEBUGP(DMM, "msc_subscr_conn_close(vsub=%s, cause=%u): no conn fsm,"
308 " releasing directly without release event.\n",
309 vlr_subscr_name(conn->vsub), cause);
310 /* In case of an IMSI Detach, we don't have conn_fsm. Release
311 * anyway to ensure a timely Iu Release / BSSMAP Clear. */
312 msc_subscr_conn_release_all(conn, cause);
Holger Hans Peter Freyther70ae5d32012-11-23 21:33:15 +0100313 return;
Harald Welte2483f1b2016-06-19 18:06:02 +0200314 }
315 if (conn->conn_fsm->state == SUBSCR_CONN_S_RELEASED) {
316 DEBUGP(DMM, "msc_subscr_conn_close(vsub=%s, cause=%u):"
317 " conn fsm already releasing, ignore.\n",
318 vlr_subscr_name(conn->vsub), cause);
319 return;
320 }
321 osmo_fsm_inst_dispatch(conn->conn_fsm, SUBSCR_CONN_E_CN_CLOSE, &cause);
322}
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800323
Harald Welte2483f1b2016-06-19 18:06:02 +0200324/* increment the ref-count. Needs to be called by every user */
325struct gsm_subscriber_connection *
326_msc_subscr_conn_get(struct gsm_subscriber_connection *conn,
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100327 enum msc_subscr_conn_use balance_token,
Harald Welte2483f1b2016-06-19 18:06:02 +0200328 const char *file, int line)
329{
330 OSMO_ASSERT(conn);
Holger Hans Peter Freythere7bd8632013-06-30 15:30:47 +0200331
Harald Welte2483f1b2016-06-19 18:06:02 +0200332 if (conn->in_release)
Neels Hofmeyr785fadc2017-11-22 14:44:35 +0100333 LOGPSRC(DREF, LOGL_ERROR, file, line,
334 "%s: MSC conn use error: using conn that is already in release (%s)\n",
335 vlr_subscr_name(conn->vsub),
336 msc_subscr_conn_use_name(balance_token));
Holger Hans Peter Freythere7bd8632013-06-30 15:30:47 +0200337
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100338 if (balance_token != MSC_CONN_USE_UNTRACKED) {
339 uint32_t flag = 1 << balance_token;
340 OSMO_ASSERT(balance_token < 32);
341 if (conn->use_tokens & flag)
342 LOGPSRC(DREF, LOGL_ERROR, file, line,
343 "%s: MSC conn use error: using an already used token: %s\n",
344 vlr_subscr_name(conn->vsub),
345 msc_subscr_conn_use_name(balance_token));
346 conn->use_tokens |= flag;
347 }
348
Harald Welte2483f1b2016-06-19 18:06:02 +0200349 conn->use_count++;
350 LOGPSRC(DREF, LOGL_DEBUG, file, line,
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100351 "%s: MSC conn use + %s == %u (0x%x)\n",
352 vlr_subscr_name(conn->vsub), msc_subscr_conn_use_name(balance_token),
353 conn->use_count, conn->use_tokens);
Harald Welte2483f1b2016-06-19 18:06:02 +0200354
355 return conn;
356}
357
358/* decrement the ref-count. Once it reaches zero, we release */
359void _msc_subscr_conn_put(struct gsm_subscriber_connection *conn,
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100360 enum msc_subscr_conn_use balance_token,
Harald Welte2483f1b2016-06-19 18:06:02 +0200361 const char *file, int line)
362{
363 OSMO_ASSERT(conn);
364
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100365 if (balance_token != MSC_CONN_USE_UNTRACKED) {
366 uint32_t flag = 1 << balance_token;
367 OSMO_ASSERT(balance_token < 32);
368 if (!(conn->use_tokens & flag))
369 LOGPSRC(DREF, LOGL_ERROR, file, line,
370 "%s: MSC conn use error: freeing an unused token: %s\n",
371 vlr_subscr_name(conn->vsub),
372 msc_subscr_conn_use_name(balance_token));
373 conn->use_tokens &= ~flag;
374 }
375
Harald Welte2483f1b2016-06-19 18:06:02 +0200376 if (conn->use_count == 0) {
377 LOGPSRC(DREF, LOGL_ERROR, file, line,
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100378 "%s: MSC conn use - %s failed: is already 0\n",
379 vlr_subscr_name(conn->vsub),
380 msc_subscr_conn_use_name(balance_token));
Harald Welte2483f1b2016-06-19 18:06:02 +0200381 return;
382 }
383
384 conn->use_count--;
385 LOGPSRC(DREF, LOGL_DEBUG, file, line,
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100386 "%s: MSC conn use - %s == %u (0x%x)\n",
387 vlr_subscr_name(conn->vsub), msc_subscr_conn_use_name(balance_token),
388 conn->use_count, conn->use_tokens);
Harald Welte2483f1b2016-06-19 18:06:02 +0200389
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200390 if (conn->use_count == 0)
391 msc_subscr_con_free(conn);
392}
393
Neels Hofmeyr6166f292017-11-22 14:33:12 +0100394const struct value_string msc_subscr_conn_use_names[] = {
395 {MSC_CONN_USE_UNTRACKED, "UNTRACKED"},
396 {MSC_CONN_USE_COMPL_L3, "compl_l3"},
397 {MSC_CONN_USE_DTAP, "dtap"},
398 {MSC_CONN_USE_FSM, "fsm"},
399 {MSC_CONN_USE_TRANS_CC, "trans_cc"},
400 {MSC_CONN_USE_TRANS_SMS, "trans_sms"},
401 {MSC_CONN_USE_TRANS_USSD, "trans_ussd"},
402 {MSC_CONN_USE_SILENT_CALL, "silent_call"},
403 {0, NULL},
404};
405
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200406void msc_stop_paging(struct vlr_subscr *vsub)
407{
408 DEBUGP(DPAG, "Paging can stop for %s\n", vlr_subscr_name(vsub));
409 /* tell BSCs and RNCs to stop paging? How? */
Holger Hans Peter Freyther40494552010-06-28 17:09:29 +0800410}