blob: 0811734adad58f60297bfbcd0ed851fd2279f6a0 [file] [log] [blame]
Philipp Maierfbf66102017-04-09 12:32:51 +02001/* (C) 2017 by sysmocom s.f.m.c. GmbH
Harald Weltec9e78592018-02-09 01:42:50 +01002 * (C) 2018 by Harald Welte <laforge@gnumonks.org>
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02003 * All Rights Reserved
4 *
Philipp Maierfbf66102017-04-09 12:32:51 +02005 * Author: Philipp Maier
6 *
Neels Hofmeyre2f24d52017-05-08 15:12:20 +02007 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
16 *
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 *
20 */
21
Philipp Maierfbf66102017-04-09 12:32:51 +020022#include <osmocom/core/utils.h>
Neels Hofmeyre2f24d52017-05-08 15:12:20 +020023#include <osmocom/core/msgb.h>
24#include <osmocom/core/logging.h>
Philipp Maierfbf66102017-04-09 12:32:51 +020025#include <osmocom/sigtran/sccp_helpers.h>
26#include <osmocom/sigtran/sccp_sap.h>
27#include <osmocom/sigtran/osmo_ss7.h>
28#include <osmocom/sigtran/protocol/m3ua.h>
29#include <osmocom/gsm/gsm0808.h>
30#include <osmocom/gsm/protocol/gsm_08_08.h>
31#include <osmocom/gsm/protocol/gsm_04_08.h>
32#include <osmocom/gsm/gsm0808_utils.h>
Neels Hofmeyr90843962017-09-04 15:04:35 +020033#include <osmocom/msc/debug.h>
34#include <osmocom/msc/msc_ifaces.h>
35#include <osmocom/msc/a_iface.h>
36#include <osmocom/msc/a_iface_bssap.h>
37#include <osmocom/msc/transaction.h>
Neels Hofmeyr6c8afe12017-09-04 01:03:58 +020038#include <osmocom/mgcp_client/mgcp_client.h>
Philipp Maierfbf66102017-04-09 12:32:51 +020039#include <osmocom/core/byteswap.h>
40#include <osmocom/sccp/sccp_types.h>
Neels Hofmeyr90843962017-09-04 15:04:35 +020041#include <osmocom/msc/a_reset.h>
Neels Hofmeyrf879fc92017-12-14 03:52:18 +010042#include <osmocom/msc/vlr.h>
Neels Hofmeyr46c06e22019-01-04 17:42:05 +010043#include <osmocom/msc/ran_conn.h>
Neels Hofmeyre2f24d52017-05-08 15:12:20 +020044
Max43b01b02017-09-15 11:22:30 +020045#include <errno.h>
46
Neels Hofmeyr46c06e22019-01-04 17:42:05 +010047#define LOGPCONN LOG_RAN_CONN
48
Philipp Maierfbf66102017-04-09 12:32:51 +020049/* A pointer to the GSM network we work with. By the current paradigm,
50 * there can only be one gsm_network per MSC. The pointer is set once
51 * when calling a_init() */
52static struct gsm_network *gsm_network = NULL;
53
54/* A struct to track currently active connections. We need that information
55 * to handle failure sitautions. In case of a problem, we must know which
56 * connections are currently open and which BSC is responsible. We also need
57 * the data to perform our connection checks (a_reset). All other logic will
58 * look at the connection ids and addresses that are supplied by the
59 * primitives */
60struct bsc_conn {
61 struct llist_head list;
62 uint32_t conn_id; /* Connection identifier */
Harald Welte54a10ef2018-02-09 00:09:16 +010063 struct bsc_context *bsc;
Philipp Maierfbf66102017-04-09 12:32:51 +020064};
65
66/* Internal list with connections we currently maintain. This
67 * list is of type struct bsc_conn (see above) */
68static LLIST_HEAD(active_connections);
69
70/* Record info of a new active connection in the active connection list */
Harald Welte54a10ef2018-02-09 00:09:16 +010071static void record_bsc_con(const void *ctx, struct bsc_context *bsc, uint32_t conn_id)
Neels Hofmeyre2f24d52017-05-08 15:12:20 +020072{
Philipp Maierfbf66102017-04-09 12:32:51 +020073 struct bsc_conn *conn;
74
75 conn = talloc_zero(ctx, struct bsc_conn);
76 OSMO_ASSERT(conn);
77
78 conn->conn_id = conn_id;
Harald Welte54a10ef2018-02-09 00:09:16 +010079 conn->bsc = bsc;
Philipp Maierfbf66102017-04-09 12:32:51 +020080
81 llist_add_tail(&conn->list, &active_connections);
Neels Hofmeyre2f24d52017-05-08 15:12:20 +020082}
83
Philipp Maierfbf66102017-04-09 12:32:51 +020084/* Delete info of a closed connection from the active connection list */
85void a_delete_bsc_con(uint32_t conn_id)
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020086{
Philipp Maierfbf66102017-04-09 12:32:51 +020087 struct bsc_conn *conn;
88 struct bsc_conn *conn_temp;
89
Philipp Maierfbf66102017-04-09 12:32:51 +020090 llist_for_each_entry_safe(conn, conn_temp, &active_connections, list) {
91 if (conn->conn_id == conn_id) {
Neels Hofmeyr46c06e22019-01-04 17:42:05 +010092 LOGP(DBSSAP, LOGL_DEBUG, "(conn%u) Removing A-interface conn\n", conn->conn_id);
Philipp Maierfbf66102017-04-09 12:32:51 +020093 llist_del(&conn->list);
94 talloc_free(conn);
95 }
96 }
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020097}
98
Harald Welte54a10ef2018-02-09 00:09:16 +010099/* Find a specified connection id */
100static struct bsc_conn *find_bsc_con(uint32_t conn_id)
Philipp Maierfbf66102017-04-09 12:32:51 +0200101{
102 struct bsc_conn *conn;
103
104 /* Find the address for the current connection id */
105 llist_for_each_entry(conn, &active_connections, list) {
106 if (conn->conn_id == conn_id) {
Harald Welte54a10ef2018-02-09 00:09:16 +0100107 return conn;
Philipp Maierfbf66102017-04-09 12:32:51 +0200108 }
109 }
110
Harald Welte54a10ef2018-02-09 00:09:16 +0100111 return NULL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200112}
113
Harald Welte54a10ef2018-02-09 00:09:16 +0100114/* Check if a specified connection id has an active SCCP connection */
115static bool check_connection_active(uint32_t conn_id)
116{
117 if (find_bsc_con(conn_id))
118 return true;
119 else
120 return false;
121}
122
123/* Get the context for a specific calling (BSC) address */
124static struct bsc_context *get_bsc_context_by_sccp_addr(const struct osmo_sccp_addr *addr)
Philipp Maierfbf66102017-04-09 12:32:51 +0200125{
126 struct bsc_context *bsc_ctx;
127 struct osmo_ss7_instance *ss7;
128
129 if (!addr)
130 return NULL;
131
132 llist_for_each_entry(bsc_ctx, &gsm_network->a.bscs, list) {
133 if (memcmp(&bsc_ctx->bsc_addr, addr, sizeof(*addr)) == 0)
Harald Welte54a10ef2018-02-09 00:09:16 +0100134 return bsc_ctx;
Philipp Maierfbf66102017-04-09 12:32:51 +0200135 }
136
137 ss7 = osmo_ss7_instance_find(gsm_network->a.cs7_instance);
138 OSMO_ASSERT(ss7);
Harald Welte1f477442018-02-09 01:49:01 +0100139 LOGP(DBSSAP, LOGL_NOTICE, "The calling BSC (%s) is unknown to this MSC ...\n",
Philipp Maierfbf66102017-04-09 12:32:51 +0200140 osmo_sccp_addr_name(ss7, addr));
141 return NULL;
142}
143
Philipp Maier4502f5f2017-09-07 11:39:58 +0200144/* Send DTAP message via A-interface, take ownership of msg */
Philipp Maierfbf66102017-04-09 12:32:51 +0200145int a_iface_tx_dtap(struct msgb *msg)
146{
Neels Hofmeyrc036b792018-11-29 22:37:51 +0100147 struct ran_conn *conn;
Philipp Maierfbf66102017-04-09 12:32:51 +0200148 struct msgb *msg_resp;
149
Harald Welte0e2fa5d2018-04-09 16:35:01 +0200150 uint8_t link_id = OMSC_LINKID_CB(msg);
Philipp Maierfbf66102017-04-09 12:32:51 +0200151 OSMO_ASSERT(msg);
Neels Hofmeyrc036b792018-11-29 22:37:51 +0100152 conn = (struct ran_conn *)msg->dst;
Philipp Maierfbf66102017-04-09 12:32:51 +0200153 OSMO_ASSERT(conn);
154 OSMO_ASSERT(conn->a.scu);
155
Harald Welte0e2fa5d2018-04-09 16:35:01 +0200156 LOGPCONN(conn, LOGL_DEBUG, "Passing DTAP message (DLCI=0x%02x) from MSC to BSC\n", link_id);
Philipp Maierfbf66102017-04-09 12:32:51 +0200157
158 msg->l3h = msg->data;
159 msg_resp = gsm0808_create_dtap(msg, link_id);
Philipp Maier4502f5f2017-09-07 11:39:58 +0200160
161 /* gsm0808_create_dtap() has copied the data to msg_resp,
162 * so msg has served its purpose now */
163 msgb_free(msg);
164
Philipp Maierfbf66102017-04-09 12:32:51 +0200165 if (!msg_resp) {
Neels Hofmeyr04960b12017-12-18 05:17:25 +0100166 LOGPCONN(conn, LOGL_ERROR, "Unable to generate BSSMAP DTAP message!\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200167 return -EINVAL;
Neels Hofmeyr04960b12017-12-18 05:17:25 +0100168 }
Philipp Maierfbf66102017-04-09 12:32:51 +0200169
Harald Weltea41b6302018-02-09 00:27:56 +0100170 LOGPCONN(conn, LOGL_DEBUG, "N-DATA.req(%s)\n", msgb_hexdump_l2(msg_resp));
Philipp Maier4502f5f2017-09-07 11:39:58 +0200171 /* osmo_sccp_tx_data_msg() takes ownership of msg_resp */
Philipp Maierfbf66102017-04-09 12:32:51 +0200172 return osmo_sccp_tx_data_msg(conn->a.scu, conn->a.conn_id, msg_resp);
173}
174
175/* Send Cipher mode command via A-interface */
Neels Hofmeyrc036b792018-11-29 22:37:51 +0100176int a_iface_tx_cipher_mode(const struct ran_conn *conn,
Neels Hofmeyr703638e2017-12-14 05:30:16 +0100177 struct gsm0808_encrypt_info *ei, int include_imeisv)
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200178{
179 /* TODO generalize for A- and Iu interfaces, don't name after 08.08 */
Philipp Maierfbf66102017-04-09 12:32:51 +0200180 struct msgb *msg_resp;
Neels Hofmeyr703638e2017-12-14 05:30:16 +0100181 uint8_t crm = 0x01;
Philipp Maierfbf66102017-04-09 12:32:51 +0200182
183 OSMO_ASSERT(conn);
Harald Weltefb7ba912018-02-09 01:05:27 +0100184 LOGPCONN(conn, LOGL_DEBUG, "Tx BSSMAP CIPHER MODE COMMAND to BSC, %u ciphers (%s)",
Neels Hofmeyr703638e2017-12-14 05:30:16 +0100185 ei->perm_algo_len, osmo_hexdump_nospc(ei->perm_algo, ei->perm_algo_len));
Harald Welte1f477442018-02-09 01:49:01 +0100186 LOGPC(DBSSAP, LOGL_DEBUG, " key %s\n", osmo_hexdump_nospc(ei->key, ei->key_len));
Philipp Maierfbf66102017-04-09 12:32:51 +0200187
Neels Hofmeyr703638e2017-12-14 05:30:16 +0100188 msg_resp = gsm0808_create_cipher(ei, include_imeisv ? &crm : NULL);
Harald Weltea41b6302018-02-09 00:27:56 +0100189 LOGPCONN(conn, LOGL_DEBUG, "N-DATA.req(%s)\n", msgb_hexdump_l2(msg_resp));
Philipp Maierfbf66102017-04-09 12:32:51 +0200190
191 return osmo_sccp_tx_data_msg(conn->a.scu, conn->a.conn_id, msg_resp);
192}
193
194/* Page a subscriber via A-interface */
195int a_iface_tx_paging(const char *imsi, uint32_t tmsi, uint16_t lac)
196{
197 struct bsc_context *bsc_ctx;
Stefan Sperling621c7292018-02-16 13:40:42 +0100198 struct gsm0808_cell_id_list2 cil;
Philipp Maierfbf66102017-04-09 12:32:51 +0200199 struct msgb *msg;
200 int page_count = 0;
201 struct osmo_ss7_instance *ss7;
202
203 OSMO_ASSERT(imsi);
204
205 cil.id_discr = CELL_IDENT_LAC;
Stefan Sperling621c7292018-02-16 13:40:42 +0100206 cil.id_list[0].lac = lac;
Philipp Maierfbf66102017-04-09 12:32:51 +0200207 cil.id_list_len = 1;
208
209 ss7 = osmo_ss7_instance_find(gsm_network->a.cs7_instance);
210 OSMO_ASSERT(ss7);
211
212 /* Deliver paging request to all known BSCs */
213 llist_for_each_entry(bsc_ctx, &gsm_network->a.bscs, list) {
Philipp Maierf913e5f2018-05-07 10:15:49 +0200214 if (a_reset_conn_ready(bsc_ctx->reset_fsm)) {
Harald Welte1f477442018-02-09 01:49:01 +0100215 LOGP(DBSSAP, LOGL_DEBUG,
Harald Weltefb7ba912018-02-09 01:05:27 +0100216 "Tx BSSMAP paging message from MSC %s to BSC %s (imsi=%s, tmsi=0x%08x, lac=%u)\n",
Philipp Maierfbf66102017-04-09 12:32:51 +0200217 osmo_sccp_addr_name(ss7, &bsc_ctx->msc_addr),
218 osmo_sccp_addr_name(ss7, &bsc_ctx->bsc_addr), imsi, tmsi, lac);
Stefan Sperling621c7292018-02-16 13:40:42 +0100219 msg = gsm0808_create_paging2(imsi, &tmsi, &cil, NULL);
Philipp Maierfbf66102017-04-09 12:32:51 +0200220 osmo_sccp_tx_unitdata_msg(bsc_ctx->sccp_user,
221 &bsc_ctx->msc_addr, &bsc_ctx->bsc_addr, msg);
222 page_count++;
223 } else {
Harald Welte1f477442018-02-09 01:49:01 +0100224 LOGP(DBSSAP, LOGL_DEBUG,
Philipp Maierfbf66102017-04-09 12:32:51 +0200225 "Connection down, dropping paging from MSC %s to BSC %s (imsi=%s, tmsi=0x%08x, lac=%u)\n",
226 osmo_sccp_addr_name(ss7, &bsc_ctx->msc_addr),
227 osmo_sccp_addr_name(ss7, &bsc_ctx->bsc_addr), imsi, tmsi, lac);
228 }
229 }
230
231 if (page_count <= 0)
Harald Welte1f477442018-02-09 01:49:01 +0100232 LOGP(DBSSAP, LOGL_ERROR, "Could not deliver paging because none of the associated BSCs is available!\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200233
234 return page_count;
235}
236
237/* Convert speech version field */
Harald Welte474e5a72018-02-12 10:12:35 +0100238static uint8_t convert_speech_version_l3_to_A(int speech_ver)
Philipp Maierfbf66102017-04-09 12:32:51 +0200239{
240 /* The speech versions that are transmitted in the Bearer capability
Harald Weltef417b8c2018-02-12 10:10:05 +0100241 * information element, that is transmitted on the Layer 3 (CC)
Philipp Maierfbf66102017-04-09 12:32:51 +0200242 * use a different encoding than the permitted speech version
243 * identifier, that is signalled in the channel type element on the A
244 * interface. (See also 3GPP TS 48.008, 3.2.2.1 and 3GPP TS 24.008,
245 * 10.5.103 */
246
247 switch (speech_ver) {
248 case GSM48_BCAP_SV_FR:
249 return GSM0808_PERM_FR1;
Philipp Maierfbf66102017-04-09 12:32:51 +0200250 case GSM48_BCAP_SV_HR:
251 return GSM0808_PERM_HR1;
Philipp Maierfbf66102017-04-09 12:32:51 +0200252 case GSM48_BCAP_SV_EFR:
253 return GSM0808_PERM_FR2;
Philipp Maierfbf66102017-04-09 12:32:51 +0200254 case GSM48_BCAP_SV_AMR_F:
255 return GSM0808_PERM_FR3;
Philipp Maierfbf66102017-04-09 12:32:51 +0200256 case GSM48_BCAP_SV_AMR_H:
257 return GSM0808_PERM_HR3;
Philipp Maierfbf66102017-04-09 12:32:51 +0200258 case GSM48_BCAP_SV_AMR_OFW:
259 return GSM0808_PERM_FR4;
Philipp Maierfbf66102017-04-09 12:32:51 +0200260 case GSM48_BCAP_SV_AMR_OHW:
261 return GSM0808_PERM_HR4;
Philipp Maierfbf66102017-04-09 12:32:51 +0200262 case GSM48_BCAP_SV_AMR_FW:
263 return GSM0808_PERM_FR5;
Philipp Maierfbf66102017-04-09 12:32:51 +0200264 case GSM48_BCAP_SV_AMR_OH:
265 return GSM0808_PERM_HR6;
Philipp Maierfbf66102017-04-09 12:32:51 +0200266 }
267
268 /* If nothing matches, tag the result as invalid */
Harald Welte1f477442018-02-09 01:49:01 +0100269 LOGP(DBSSAP, LOGL_ERROR, "Invalid permitted speech version: %d\n", speech_ver);
Philipp Maierfbf66102017-04-09 12:32:51 +0200270 return 0xFF;
271}
272
273/* Convert speech preference field */
Harald Welte474e5a72018-02-12 10:12:35 +0100274static uint8_t convert_speech_pref_l3_to_A(int radio)
Philipp Maierfbf66102017-04-09 12:32:51 +0200275{
276 /* The Radio channel requirement field that is transmitted in the
277 * Bearer capability information element, that is transmitted on the
Harald Weltef417b8c2018-02-12 10:10:05 +0100278 * Layer 3 (CC) uses a different encoding than the Channel rate and
Philipp Maierfbf66102017-04-09 12:32:51 +0200279 * type field that is signalled in the channel type element on the A
280 * interface. (See also 3GPP TS 48.008, 3.2.2.1 and 3GPP TS 24.008,
281 * 10.5.102 */
282
283 switch (radio) {
284 case GSM48_BCAP_RRQ_FR_ONLY:
285 return GSM0808_SPEECH_FULL_BM;
286 case GSM48_BCAP_RRQ_DUAL_FR:
287 return GSM0808_SPEECH_FULL_PREF;
288 case GSM48_BCAP_RRQ_DUAL_HR:
289 return GSM0808_SPEECH_HALF_PREF;
290 }
291
Harald Welte1f477442018-02-09 01:49:01 +0100292 LOGP(DBSSAP, LOGL_ERROR, "Invalid radio channel preference: %d; defaulting to full rate.\n",
Neels Hofmeyr04960b12017-12-18 05:17:25 +0100293 radio);
Philipp Maierfbf66102017-04-09 12:32:51 +0200294 return GSM0808_SPEECH_FULL_BM;
295}
296
297/* Assemble the channel type field */
298static int enc_channel_type(struct gsm0808_channel_type *ct, const struct gsm_mncc_bearer_cap *bc)
299{
300 unsigned int i;
301 uint8_t sv;
302 unsigned int count = 0;
303 bool only_gsm_hr = true;
304
305 OSMO_ASSERT(ct);
306 OSMO_ASSERT(bc);
307
308 ct->ch_indctr = GSM0808_CHAN_SPEECH;
309
310 for (i = 0; i < ARRAY_SIZE(bc->speech_ver); i++) {
311 if (bc->speech_ver[i] == -1)
312 break;
Harald Welte474e5a72018-02-12 10:12:35 +0100313 sv = convert_speech_version_l3_to_A(bc->speech_ver[i]);
Philipp Maierfbf66102017-04-09 12:32:51 +0200314 if (sv != 0xFF) {
315 /* Detect if something else than
316 * GSM HR V1 is supported */
317 if (sv == GSM0808_PERM_HR2 ||
318 sv == GSM0808_PERM_HR3 || sv == GSM0808_PERM_HR4 || sv == GSM0808_PERM_HR6)
319 only_gsm_hr = false;
320
321 ct->perm_spch[count] = sv;
322 count++;
323 }
324 }
325 ct->perm_spch_len = count;
326
327 if (only_gsm_hr)
328 /* Note: We must avoid the usage of GSM HR1 as this
329 * codec only offers very poor audio quality. If the
330 * MS only supports GSM HR1 (and full rate), and has
331 * a preference for half rate. Then we will ignore the
332 * preference and assume a preference for full rate. */
333 ct->ch_rate_type = GSM0808_SPEECH_FULL_BM;
334 else
Harald Welte474e5a72018-02-12 10:12:35 +0100335 ct->ch_rate_type = convert_speech_pref_l3_to_A(bc->radio);
Philipp Maierfbf66102017-04-09 12:32:51 +0200336
337 if (count)
338 return 0;
339 else
340 return -EINVAL;
341}
342
343/* Assemble the speech codec field */
344static int enc_speech_codec_list(struct gsm0808_speech_codec_list *scl, const struct gsm0808_channel_type *ct)
345{
346 unsigned int i;
347 int rc;
348
349 memset(scl, 0, sizeof(*scl));
350 for (i = 0; i < ct->perm_spch_len; i++) {
351 rc = gsm0808_speech_codec_from_chan_type(&scl->codec[i], ct->perm_spch[i]);
352 if (rc != 0)
353 return -EINVAL;
354 }
355 scl->len = i;
356
357 return 0;
358}
359
360/* Send assignment request via A-interface */
361int a_iface_tx_assignment(const struct gsm_trans *trans)
362{
Neels Hofmeyrc036b792018-11-29 22:37:51 +0100363 struct ran_conn *conn;
Philipp Maierfbf66102017-04-09 12:32:51 +0200364 struct gsm0808_channel_type ct;
365 struct gsm0808_speech_codec_list scl;
Philipp Maierfbf66102017-04-09 12:32:51 +0200366 struct msgb *msg;
367 struct sockaddr_storage rtp_addr;
368 struct sockaddr_in rtp_addr_in;
369 int rc;
370
371 OSMO_ASSERT(trans);
372 conn = trans->conn;
373 OSMO_ASSERT(conn);
374
Harald Weltefb7ba912018-02-09 01:05:27 +0100375 LOGPCONN(conn, LOGL_DEBUG, "Tx BSSMAP ASSIGNMENT COMMAND to BSC\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200376
377 /* Channel type */
378 rc = enc_channel_type(&ct, &trans->bearer_cap);
379 if (rc < 0) {
Neels Hofmeyr04960b12017-12-18 05:17:25 +0100380 LOGPCONN(conn, LOGL_ERROR, "Not sending Assignment to BSC: failed to generate channel type\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200381 return -EINVAL;
382 }
383
384 /* Speech codec list */
385 rc = enc_speech_codec_list(&scl, &ct);
386 if (rc < 0) {
Neels Hofmeyr04960b12017-12-18 05:17:25 +0100387 LOGPCONN(conn, LOGL_ERROR, "Not sending Assignment to BSC: failed to generate speech codec list\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200388 return -EINVAL;
389 }
390
391 /* Package RTP-Address data */
392 memset(&rtp_addr_in, 0, sizeof(rtp_addr_in));
393 rtp_addr_in.sin_family = AF_INET;
Philipp Maier621ba032017-11-07 17:19:25 +0100394 rtp_addr_in.sin_port = osmo_htons(conn->rtp.local_port_ran);
395 rtp_addr_in.sin_addr.s_addr = inet_addr(conn->rtp.local_addr_ran);
396
397 if (rtp_addr_in.sin_addr.s_addr == INADDR_NONE) {
398 LOGPCONN(conn, LOGL_ERROR, "Invalid RTP-Address -- assignment not sent!\n");
399 return -EINVAL;
400 }
401 if (rtp_addr_in.sin_port == 0) {
402 LOGPCONN(conn, LOGL_ERROR, "Invalid RTP-Port -- assignment not sent!\n");
403 return -EINVAL;
404 }
Philipp Maierfbf66102017-04-09 12:32:51 +0200405
406 memset(&rtp_addr, 0, sizeof(rtp_addr));
407 memcpy(&rtp_addr, &rtp_addr_in, sizeof(rtp_addr_in));
408
Max020ec7a2018-12-17 16:03:55 +0100409 msg = gsm0808_create_ass(&ct, NULL, &rtp_addr, &scl, NULL);
Philipp Maierfbf66102017-04-09 12:32:51 +0200410
Harald Weltea41b6302018-02-09 00:27:56 +0100411 LOGPCONN(conn, LOGL_DEBUG, "N-DATA.req(%s)\n", msgb_hexdump_l2(msg));
Philipp Maierfbf66102017-04-09 12:32:51 +0200412 return osmo_sccp_tx_data_msg(conn->a.scu, conn->a.conn_id, msg);
413}
414
415/* Send clear command via A-interface */
Neels Hofmeyrc036b792018-11-29 22:37:51 +0100416int a_iface_tx_clear_cmd(struct ran_conn *conn)
Philipp Maierfbf66102017-04-09 12:32:51 +0200417{
418 struct msgb *msg;
419
Harald Weltefb7ba912018-02-09 01:05:27 +0100420 LOGPCONN(conn, LOGL_INFO, "Tx BSSMAP CLEAR COMMAND to BSC\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200421
422 msg = gsm0808_create_clear_command(GSM0808_CAUSE_CALL_CONTROL);
423 return osmo_sccp_tx_data_msg(conn->a.scu, conn->a.conn_id, msg);
424}
425
Neels Hofmeyrc036b792018-11-29 22:37:51 +0100426int a_iface_tx_classmark_request(const struct ran_conn *conn)
Neels Hofmeyr3117b702018-09-13 03:23:07 +0200427{
428 struct msgb *msg;
429
430 LOGPCONN(conn, LOGL_INFO, "Tx BSSMAP CLASSMARK REQUEST to BSC\n");
431
432 msg = gsm0808_create_classmark_request();
433 return osmo_sccp_tx_data_msg(conn->a.scu, conn->a.conn_id, msg);
434}
435
Philipp Maierfbf66102017-04-09 12:32:51 +0200436/* Callback function: Close all open connections */
437static void a_reset_cb(const void *priv)
438{
439 struct msgb *msg;
440 struct bsc_context *bsc_ctx = (struct bsc_context*) priv;
441 struct osmo_ss7_instance *ss7;
442
443 /* Skip if the A interface is not properly initalized yet */
444 if (!gsm_network)
445 return;
446
Neels Hofmeyrc036b792018-11-29 22:37:51 +0100447 /* Clear all now orphaned RAN connections */
Philipp Maierfbf66102017-04-09 12:32:51 +0200448 a_clear_all(bsc_ctx->sccp_user, &bsc_ctx->bsc_addr);
449
450 /* Send reset to the remote BSC */
451 ss7 = osmo_ss7_instance_find(gsm_network->a.cs7_instance);
452 OSMO_ASSERT(ss7);
Harald Welte1f477442018-02-09 01:49:01 +0100453 LOGP(DBSSAP, LOGL_NOTICE, "Tx BSSMAP RESET to BSC %s\n", osmo_sccp_addr_name(ss7, &bsc_ctx->bsc_addr));
Philipp Maierfbf66102017-04-09 12:32:51 +0200454 msg = gsm0808_create_reset();
455 osmo_sccp_tx_unitdata_msg(bsc_ctx->sccp_user, &bsc_ctx->msc_addr,
456 &bsc_ctx->bsc_addr, msg);
457}
458
459/* Add a new BSC connection to our internal list with known BSCs */
Harald Welte54a10ef2018-02-09 00:09:16 +0100460static struct bsc_context *add_bsc(const struct osmo_sccp_addr *msc_addr,
461 const struct osmo_sccp_addr *bsc_addr, struct osmo_sccp_user *scu)
Philipp Maierfbf66102017-04-09 12:32:51 +0200462{
463 struct bsc_context *bsc_ctx;
464 struct osmo_ss7_instance *ss7;
Philipp Maierfbf66102017-04-09 12:32:51 +0200465
466 ss7 = osmo_ss7_instance_find(gsm_network->a.cs7_instance);
467 OSMO_ASSERT(ss7);
Harald Welte1f477442018-02-09 01:49:01 +0100468 LOGP(DBSSAP, LOGL_NOTICE, "Adding new BSC connection for BSC %s...\n", osmo_sccp_addr_name(ss7, bsc_addr));
Philipp Maierfbf66102017-04-09 12:32:51 +0200469
470 /* Generate and fill up a new bsc context */
471 bsc_ctx = talloc_zero(gsm_network, struct bsc_context);
472 OSMO_ASSERT(bsc_ctx);
473 memcpy(&bsc_ctx->bsc_addr, bsc_addr, sizeof(*bsc_addr));
474 memcpy(&bsc_ctx->msc_addr, msc_addr, sizeof(*msc_addr));
475 bsc_ctx->sccp_user = scu;
476 llist_add_tail(&bsc_ctx->list, &gsm_network->a.bscs);
477
Harald Welte54a10ef2018-02-09 00:09:16 +0100478 return bsc_ctx;
479}
480
481/* start the BSSMAP RESET fsm */
482void a_start_reset(struct bsc_context *bsc_ctx, bool already_connected)
483{
484 char bsc_name[32];
Philipp Maierf913e5f2018-05-07 10:15:49 +0200485 OSMO_ASSERT(bsc_ctx->reset_fsm == NULL);
Philipp Maierfbf66102017-04-09 12:32:51 +0200486 /* Start reset procedure to make the new connection active */
Harald Welte54a10ef2018-02-09 00:09:16 +0100487 snprintf(bsc_name, sizeof(bsc_name), "bsc-%i", bsc_ctx->bsc_addr.pc);
Philipp Maierf913e5f2018-05-07 10:15:49 +0200488 bsc_ctx->reset_fsm = a_reset_alloc(bsc_ctx, bsc_name, a_reset_cb, bsc_ctx, already_connected);
Harald Welte54a10ef2018-02-09 00:09:16 +0100489}
490
Philipp Maierce1298b2018-02-22 16:44:41 +0100491/* determine if given msg is BSSMAP RESET related (true) or not (false) */
Harald Welte54a10ef2018-02-09 00:09:16 +0100492static bool bssmap_is_reset(struct msgb *msg)
493{
494 struct bssmap_header *bs = (struct bssmap_header *)msgb_l2(msg);
495
496 if (msgb_l2len(msg) < sizeof(*bs))
497 return false;
498
499 if (bs->type != BSSAP_MSG_BSS_MANAGEMENT)
500 return false;
501
502 if (msg->l2h[sizeof(*bs)] == BSS_MAP_MSG_RESET)
503 return true;
504
Philipp Maierce1298b2018-02-22 16:44:41 +0100505 if (msg->l2h[sizeof(*bs)] == BSS_MAP_MSG_RESET_ACKNOWLEDGE)
506 return true;
507
Harald Welte54a10ef2018-02-09 00:09:16 +0100508 return false;
Philipp Maierfbf66102017-04-09 12:32:51 +0200509}
510
511/* Callback function, called by the SSCP stack when data arrives */
512static int sccp_sap_up(struct osmo_prim_hdr *oph, void *_scu)
513{
514 struct osmo_sccp_user *scu = _scu;
515 struct osmo_scu_prim *scu_prim = (struct osmo_scu_prim *)oph;
516 int rc = 0;
517 struct a_conn_info a_conn_info;
Harald Welte54a10ef2018-02-09 00:09:16 +0100518 struct bsc_conn *bsc_con;
519
Philipp Maierfbf66102017-04-09 12:32:51 +0200520 memset(&a_conn_info, 0, sizeof(a_conn_info));
521 a_conn_info.network = gsm_network;
Philipp Maierfbf66102017-04-09 12:32:51 +0200522
523 switch (OSMO_PRIM_HDR(&scu_prim->oph)) {
524 case OSMO_PRIM(OSMO_SCU_PRIM_N_CONNECT, PRIM_OP_INDICATION):
525 /* Handle inbound connection indication */
Philipp Maierfbf66102017-04-09 12:32:51 +0200526 a_conn_info.conn_id = scu_prim->u.connect.conn_id;
Harald Welte54a10ef2018-02-09 00:09:16 +0100527 a_conn_info.bsc = get_bsc_context_by_sccp_addr(&scu_prim->u.unitdata.calling_addr);
528 if (!a_conn_info.bsc) {
529 /* We haven't heard from this BSC before, allocate it */
530 a_conn_info.bsc = add_bsc(&scu_prim->u.connect.called_addr,
531 &scu_prim->u.connect.calling_addr, scu);
532 a_start_reset(a_conn_info.bsc, false);
533 } else {
534 /* This BSC is already known to us, check if we have been through reset yet */
Philipp Maierf913e5f2018-05-07 10:15:49 +0200535 if (a_reset_conn_ready(a_conn_info.bsc->reset_fsm) == false) {
Harald Welte1f477442018-02-09 01:49:01 +0100536 LOGP(DBSSAP, LOGL_NOTICE, "Refusing N-CONNECT.ind(%u, %s), BSC not reset yet\n",
Harald Weltea41b6302018-02-09 00:27:56 +0100537 scu_prim->u.connect.conn_id, msgb_hexdump_l2(oph->msg));
Harald Welte54a10ef2018-02-09 00:09:16 +0100538 rc = osmo_sccp_tx_disconn(scu, a_conn_info.conn_id, &a_conn_info.bsc->msc_addr,
539 SCCP_RETURN_CAUSE_UNQUALIFIED);
540 break;
541 }
Philipp Maierfbf66102017-04-09 12:32:51 +0200542
Harald Welte54a10ef2018-02-09 00:09:16 +0100543 osmo_sccp_tx_conn_resp(scu, scu_prim->u.connect.conn_id, &scu_prim->u.connect.called_addr, NULL, 0);
544 if (msgb_l2len(oph->msg) > 0) {
Harald Welte1f477442018-02-09 01:49:01 +0100545 LOGP(DBSSAP, LOGL_DEBUG, "N-CONNECT.ind(%u, %s)\n",
Harald Weltea41b6302018-02-09 00:27:56 +0100546 scu_prim->u.connect.conn_id, msgb_hexdump_l2(oph->msg));
Harald Welte54a10ef2018-02-09 00:09:16 +0100547 rc = a_sccp_rx_dt(scu, &a_conn_info, oph->msg);
Harald Welte8a991ed2018-03-18 21:56:04 +0100548 } else {
Harald Welte1f477442018-02-09 01:49:01 +0100549 LOGP(DBSSAP, LOGL_DEBUG, "N-CONNECT.ind(%u)\n", scu_prim->u.connect.conn_id);
Harald Welte8a991ed2018-03-18 21:56:04 +0100550 rc = -ENODATA;
551 }
552
553 if (rc < 0) {
554 /* initial message (COMPL L3) caused some error, we didn't allocate
555 * a subscriber_conn and must close the connection again */
556 rc = osmo_sccp_tx_disconn(scu, a_conn_info.conn_id,
557 &a_conn_info.bsc->msc_addr,
558 SCCP_RETURN_CAUSE_UNQUALIFIED);
559 } else
560 record_bsc_con(scu, a_conn_info.bsc, scu_prim->u.connect.conn_id);
Philipp Maierfbf66102017-04-09 12:32:51 +0200561 }
Philipp Maierfbf66102017-04-09 12:32:51 +0200562 break;
563
564 case OSMO_PRIM(OSMO_SCU_PRIM_N_DATA, PRIM_OP_INDICATION):
565 /* Handle incoming connection oriented data */
Harald Welte54a10ef2018-02-09 00:09:16 +0100566 bsc_con = find_bsc_con(scu_prim->u.data.conn_id);
567 if (!bsc_con) {
Harald Welte1f477442018-02-09 01:49:01 +0100568 LOGP(DBSSAP, LOGL_ERROR, "N-DATA.ind(%u, %s) for unknown conn_id\n",
Harald Weltea41b6302018-02-09 00:27:56 +0100569 scu_prim->u.data.conn_id, msgb_hexdump_l2(oph->msg));
Harald Welte54a10ef2018-02-09 00:09:16 +0100570 break;
571 }
Philipp Maierfbf66102017-04-09 12:32:51 +0200572 a_conn_info.conn_id = scu_prim->u.data.conn_id;
Harald Welte54a10ef2018-02-09 00:09:16 +0100573 a_conn_info.bsc = bsc_con->bsc;
Harald Welte1f477442018-02-09 01:49:01 +0100574 LOGP(DBSSAP, LOGL_DEBUG, "N-DATA.ind(%u, %s)\n",
Harald Weltea41b6302018-02-09 00:27:56 +0100575 scu_prim->u.data.conn_id, msgb_hexdump_l2(oph->msg));
Neels Hofmeyrc1d69252017-12-18 04:06:04 +0100576 a_sccp_rx_dt(scu, &a_conn_info, oph->msg);
Philipp Maierfbf66102017-04-09 12:32:51 +0200577 break;
578
579 case OSMO_PRIM(OSMO_SCU_PRIM_N_UNITDATA, PRIM_OP_INDICATION):
580 /* Handle inbound UNITDATA */
Philipp Maierce1298b2018-02-22 16:44:41 +0100581
582 /* Get BSC context, create a new one if necessary */
Harald Welte54a10ef2018-02-09 00:09:16 +0100583 a_conn_info.bsc = get_bsc_context_by_sccp_addr(&scu_prim->u.unitdata.calling_addr);
584 if (!a_conn_info.bsc) {
585 /* We haven't heard from this BSC before, allocate it */
586 a_conn_info.bsc = add_bsc(&scu_prim->u.unitdata.called_addr,
587 &scu_prim->u.unitdata.calling_addr, scu);
Philipp Maierce1298b2018-02-22 16:44:41 +0100588 /* Make sure that reset procedure is started */
589 a_start_reset(a_conn_info.bsc, false);
Harald Welte54a10ef2018-02-09 00:09:16 +0100590 }
Philipp Maierce1298b2018-02-22 16:44:41 +0100591
592 /* As long as we are in the reset phase, only reset related BSSMAP messages may pass
593 * beond here. */
Philipp Maierf913e5f2018-05-07 10:15:49 +0200594 if (!bssmap_is_reset(oph->msg) && a_reset_conn_ready(a_conn_info.bsc->reset_fsm) == false) {
Philipp Maierce1298b2018-02-22 16:44:41 +0100595 LOGP(DBSSAP, LOGL_NOTICE, "Ignoring N-UNITDATA.ind(%s), BSC not reset yet\n",
596 msgb_hexdump_l2(oph->msg));
597 break;
598 }
599
Harald Welte1f477442018-02-09 01:49:01 +0100600 DEBUGP(DBSSAP, "N-UNITDATA.ind(%s)\n", msgb_hexdump_l2(oph->msg));
Neels Hofmeyrc1d69252017-12-18 04:06:04 +0100601 a_sccp_rx_udt(scu, &a_conn_info, oph->msg);
Philipp Maierfbf66102017-04-09 12:32:51 +0200602 break;
603
604 default:
Harald Welte1f477442018-02-09 01:49:01 +0100605 LOGP(DBSSAP, LOGL_ERROR, "Unhandled SIGTRAN operation %s on primitive %u\n",
Maxc309fe32018-01-24 14:02:38 +0100606 get_value_string(osmo_prim_op_names, oph->operation), oph->primitive);
Philipp Maierfbf66102017-04-09 12:32:51 +0200607 break;
608 }
609
Harald Weltea172e9e2018-02-09 21:33:24 +0100610 /* We didn't transfer msgb ownership to any downstream functions so we rely on
611 * this single/central location to free() the msgb wrapping the primitive */
612 msgb_free(oph->msg);
Philipp Maierfbf66102017-04-09 12:32:51 +0200613 return rc;
614}
615
Neels Hofmeyrc036b792018-11-29 22:37:51 +0100616/* Clear all RAN connections on a specified BSC */
Philipp Maierfbf66102017-04-09 12:32:51 +0200617void a_clear_all(struct osmo_sccp_user *scu, const struct osmo_sccp_addr *bsc_addr)
618{
Neels Hofmeyrc036b792018-11-29 22:37:51 +0100619 struct ran_conn *conn;
620 struct ran_conn *conn_temp;
Philipp Maierfbf66102017-04-09 12:32:51 +0200621 struct gsm_network *network = gsm_network;
622
623 OSMO_ASSERT(scu);
624 OSMO_ASSERT(bsc_addr);
625
Neels Hofmeyrc036b792018-11-29 22:37:51 +0100626 llist_for_each_entry_safe(conn, conn_temp, &network->ran_conns, entry) {
Philipp Maierfbf66102017-04-09 12:32:51 +0200627 /* Clear only A connections and connections that actually
628 * belong to the specified BSC */
Neels Hofmeyr7814a832018-12-26 00:40:18 +0100629 if (conn->via_ran == OSMO_RAT_GERAN_A && memcmp(bsc_addr, &conn->a.bsc_addr, sizeof(conn->a.bsc_addr)) == 0) {
Harald Welte80620d22018-02-10 10:24:15 +0100630 uint32_t conn_id = conn->a.conn_id;
Neels Hofmeyrc036b792018-11-29 22:37:51 +0100631 LOGPCONN(conn, LOGL_NOTICE, "Dropping orphaned RAN connection\n");
Harald Welte80620d22018-02-10 10:24:15 +0100632 /* This call will/may talloc_free(conn), so we must save conn_id above */
Neels Hofmeyr3c20a5e2018-11-30 01:08:36 +0100633 ran_conn_clear_request(conn, GSM48_CC_CAUSE_SWITCH_CONG);
Philipp Maierfbf66102017-04-09 12:32:51 +0200634
635 /* If there is still an SCCP connection active, remove it now */
Harald Welte80620d22018-02-10 10:24:15 +0100636 if (check_connection_active(conn_id)) {
637 osmo_sccp_tx_disconn(scu, conn_id, bsc_addr,
Philipp Maierfbf66102017-04-09 12:32:51 +0200638 SCCP_RELEASE_CAUSE_END_USER_ORIGINATED);
Harald Welte80620d22018-02-10 10:24:15 +0100639 a_delete_bsc_con(conn_id);
Philipp Maierfbf66102017-04-09 12:32:51 +0200640 }
641 }
642 }
643}
644
645/* Initalize A interface connection between to MSC and BSC */
646int a_init(struct osmo_sccp_instance *sccp, struct gsm_network *network)
647{
648 OSMO_ASSERT(sccp);
649 OSMO_ASSERT(network);
650
651 /* FIXME: Remove hardcoded parameters, use parameters in parameter list */
Harald Welte1f477442018-02-09 01:49:01 +0100652 LOGP(DBSSAP, LOGL_NOTICE, "Initalizing SCCP connection to stp...\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200653
654 /* Set GSM network variable, there can only be
655 * one network by design */
656 if (gsm_network != NULL) {
657 OSMO_ASSERT(gsm_network == network);
658 } else
659 gsm_network = network;
660
661 /* SCCP Protocol stack */
662 osmo_sccp_user_bind(sccp, "OsmoMSC-A", sccp_sap_up, SCCP_SSN_BSSAP);
663
664 return 0;
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200665}