blob: a96f247d0ca395eba244ce426a274df6174abaec [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 Hofmeyre2f24d52017-05-08 15:12:20 +020043
Max43b01b02017-09-15 11:22:30 +020044#include <errno.h>
45
Philipp Maierfbf66102017-04-09 12:32:51 +020046/* A pointer to the GSM network we work with. By the current paradigm,
47 * there can only be one gsm_network per MSC. The pointer is set once
48 * when calling a_init() */
49static struct gsm_network *gsm_network = NULL;
50
51/* A struct to track currently active connections. We need that information
52 * to handle failure sitautions. In case of a problem, we must know which
53 * connections are currently open and which BSC is responsible. We also need
54 * the data to perform our connection checks (a_reset). All other logic will
55 * look at the connection ids and addresses that are supplied by the
56 * primitives */
57struct bsc_conn {
58 struct llist_head list;
59 uint32_t conn_id; /* Connection identifier */
Harald Welte54a10ef2018-02-09 00:09:16 +010060 struct bsc_context *bsc;
Philipp Maierfbf66102017-04-09 12:32:51 +020061};
62
63/* Internal list with connections we currently maintain. This
64 * list is of type struct bsc_conn (see above) */
65static LLIST_HEAD(active_connections);
66
67/* Record info of a new active connection in the active connection list */
Harald Welte54a10ef2018-02-09 00:09:16 +010068static void record_bsc_con(const void *ctx, struct bsc_context *bsc, uint32_t conn_id)
Neels Hofmeyre2f24d52017-05-08 15:12:20 +020069{
Philipp Maierfbf66102017-04-09 12:32:51 +020070 struct bsc_conn *conn;
71
72 conn = talloc_zero(ctx, struct bsc_conn);
73 OSMO_ASSERT(conn);
74
75 conn->conn_id = conn_id;
Harald Welte54a10ef2018-02-09 00:09:16 +010076 conn->bsc = bsc;
Philipp Maierfbf66102017-04-09 12:32:51 +020077
78 llist_add_tail(&conn->list, &active_connections);
Neels Hofmeyre2f24d52017-05-08 15:12:20 +020079}
80
Philipp Maierfbf66102017-04-09 12:32:51 +020081/* Delete info of a closed connection from the active connection list */
82void a_delete_bsc_con(uint32_t conn_id)
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020083{
Philipp Maierfbf66102017-04-09 12:32:51 +020084 struct bsc_conn *conn;
85 struct bsc_conn *conn_temp;
86
Philipp Maierfbf66102017-04-09 12:32:51 +020087 llist_for_each_entry_safe(conn, conn_temp, &active_connections, list) {
88 if (conn->conn_id == conn_id) {
Neels Hofmeyr04960b12017-12-18 05:17:25 +010089 LOGPBSCCONN(conn, LOGL_DEBUG, "Removing A-interface conn\n");
Philipp Maierfbf66102017-04-09 12:32:51 +020090 llist_del(&conn->list);
91 talloc_free(conn);
92 }
93 }
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020094}
95
Harald Welte54a10ef2018-02-09 00:09:16 +010096/* Find a specified connection id */
97static struct bsc_conn *find_bsc_con(uint32_t conn_id)
Philipp Maierfbf66102017-04-09 12:32:51 +020098{
99 struct bsc_conn *conn;
100
101 /* Find the address for the current connection id */
102 llist_for_each_entry(conn, &active_connections, list) {
103 if (conn->conn_id == conn_id) {
Harald Welte54a10ef2018-02-09 00:09:16 +0100104 return conn;
Philipp Maierfbf66102017-04-09 12:32:51 +0200105 }
106 }
107
Harald Welte54a10ef2018-02-09 00:09:16 +0100108 return NULL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200109}
110
Harald Welte54a10ef2018-02-09 00:09:16 +0100111/* Check if a specified connection id has an active SCCP connection */
112static bool check_connection_active(uint32_t conn_id)
113{
114 if (find_bsc_con(conn_id))
115 return true;
116 else
117 return false;
118}
119
120/* Get the context for a specific calling (BSC) address */
121static struct bsc_context *get_bsc_context_by_sccp_addr(const struct osmo_sccp_addr *addr)
Philipp Maierfbf66102017-04-09 12:32:51 +0200122{
123 struct bsc_context *bsc_ctx;
124 struct osmo_ss7_instance *ss7;
125
126 if (!addr)
127 return NULL;
128
129 llist_for_each_entry(bsc_ctx, &gsm_network->a.bscs, list) {
130 if (memcmp(&bsc_ctx->bsc_addr, addr, sizeof(*addr)) == 0)
Harald Welte54a10ef2018-02-09 00:09:16 +0100131 return bsc_ctx;
Philipp Maierfbf66102017-04-09 12:32:51 +0200132 }
133
134 ss7 = osmo_ss7_instance_find(gsm_network->a.cs7_instance);
135 OSMO_ASSERT(ss7);
Harald Welte1f477442018-02-09 01:49:01 +0100136 LOGP(DBSSAP, LOGL_NOTICE, "The calling BSC (%s) is unknown to this MSC ...\n",
Philipp Maierfbf66102017-04-09 12:32:51 +0200137 osmo_sccp_addr_name(ss7, addr));
138 return NULL;
139}
140
Philipp Maier4502f5f2017-09-07 11:39:58 +0200141/* Send DTAP message via A-interface, take ownership of msg */
Philipp Maierfbf66102017-04-09 12:32:51 +0200142int a_iface_tx_dtap(struct msgb *msg)
143{
Neels Hofmeyrc036b792018-11-29 22:37:51 +0100144 struct ran_conn *conn;
Philipp Maierfbf66102017-04-09 12:32:51 +0200145 struct msgb *msg_resp;
146
Harald Welte0e2fa5d2018-04-09 16:35:01 +0200147 uint8_t link_id = OMSC_LINKID_CB(msg);
Philipp Maierfbf66102017-04-09 12:32:51 +0200148 OSMO_ASSERT(msg);
Neels Hofmeyrc036b792018-11-29 22:37:51 +0100149 conn = (struct ran_conn *)msg->dst;
Philipp Maierfbf66102017-04-09 12:32:51 +0200150 OSMO_ASSERT(conn);
151 OSMO_ASSERT(conn->a.scu);
152
Harald Welte0e2fa5d2018-04-09 16:35:01 +0200153 LOGPCONN(conn, LOGL_DEBUG, "Passing DTAP message (DLCI=0x%02x) from MSC to BSC\n", link_id);
Philipp Maierfbf66102017-04-09 12:32:51 +0200154
155 msg->l3h = msg->data;
156 msg_resp = gsm0808_create_dtap(msg, link_id);
Philipp Maier4502f5f2017-09-07 11:39:58 +0200157
158 /* gsm0808_create_dtap() has copied the data to msg_resp,
159 * so msg has served its purpose now */
160 msgb_free(msg);
161
Philipp Maierfbf66102017-04-09 12:32:51 +0200162 if (!msg_resp) {
Neels Hofmeyr04960b12017-12-18 05:17:25 +0100163 LOGPCONN(conn, LOGL_ERROR, "Unable to generate BSSMAP DTAP message!\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200164 return -EINVAL;
Neels Hofmeyr04960b12017-12-18 05:17:25 +0100165 }
Philipp Maierfbf66102017-04-09 12:32:51 +0200166
Harald Weltea41b6302018-02-09 00:27:56 +0100167 LOGPCONN(conn, LOGL_DEBUG, "N-DATA.req(%s)\n", msgb_hexdump_l2(msg_resp));
Philipp Maier4502f5f2017-09-07 11:39:58 +0200168 /* osmo_sccp_tx_data_msg() takes ownership of msg_resp */
Philipp Maierfbf66102017-04-09 12:32:51 +0200169 return osmo_sccp_tx_data_msg(conn->a.scu, conn->a.conn_id, msg_resp);
170}
171
172/* Send Cipher mode command via A-interface */
Neels Hofmeyrc036b792018-11-29 22:37:51 +0100173int a_iface_tx_cipher_mode(const struct ran_conn *conn,
Neels Hofmeyr703638e2017-12-14 05:30:16 +0100174 struct gsm0808_encrypt_info *ei, int include_imeisv)
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200175{
176 /* TODO generalize for A- and Iu interfaces, don't name after 08.08 */
Philipp Maierfbf66102017-04-09 12:32:51 +0200177 struct msgb *msg_resp;
Neels Hofmeyr703638e2017-12-14 05:30:16 +0100178 uint8_t crm = 0x01;
Philipp Maierfbf66102017-04-09 12:32:51 +0200179
180 OSMO_ASSERT(conn);
Harald Weltefb7ba912018-02-09 01:05:27 +0100181 LOGPCONN(conn, LOGL_DEBUG, "Tx BSSMAP CIPHER MODE COMMAND to BSC, %u ciphers (%s)",
Neels Hofmeyr703638e2017-12-14 05:30:16 +0100182 ei->perm_algo_len, osmo_hexdump_nospc(ei->perm_algo, ei->perm_algo_len));
Harald Welte1f477442018-02-09 01:49:01 +0100183 LOGPC(DBSSAP, LOGL_DEBUG, " key %s\n", osmo_hexdump_nospc(ei->key, ei->key_len));
Philipp Maierfbf66102017-04-09 12:32:51 +0200184
Neels Hofmeyr703638e2017-12-14 05:30:16 +0100185 msg_resp = gsm0808_create_cipher(ei, include_imeisv ? &crm : NULL);
Harald Weltea41b6302018-02-09 00:27:56 +0100186 LOGPCONN(conn, LOGL_DEBUG, "N-DATA.req(%s)\n", msgb_hexdump_l2(msg_resp));
Philipp Maierfbf66102017-04-09 12:32:51 +0200187
188 return osmo_sccp_tx_data_msg(conn->a.scu, conn->a.conn_id, msg_resp);
189}
190
191/* Page a subscriber via A-interface */
192int a_iface_tx_paging(const char *imsi, uint32_t tmsi, uint16_t lac)
193{
194 struct bsc_context *bsc_ctx;
Stefan Sperling621c7292018-02-16 13:40:42 +0100195 struct gsm0808_cell_id_list2 cil;
Philipp Maierfbf66102017-04-09 12:32:51 +0200196 struct msgb *msg;
197 int page_count = 0;
198 struct osmo_ss7_instance *ss7;
199
200 OSMO_ASSERT(imsi);
201
202 cil.id_discr = CELL_IDENT_LAC;
Stefan Sperling621c7292018-02-16 13:40:42 +0100203 cil.id_list[0].lac = lac;
Philipp Maierfbf66102017-04-09 12:32:51 +0200204 cil.id_list_len = 1;
205
206 ss7 = osmo_ss7_instance_find(gsm_network->a.cs7_instance);
207 OSMO_ASSERT(ss7);
208
209 /* Deliver paging request to all known BSCs */
210 llist_for_each_entry(bsc_ctx, &gsm_network->a.bscs, list) {
Philipp Maierf913e5f2018-05-07 10:15:49 +0200211 if (a_reset_conn_ready(bsc_ctx->reset_fsm)) {
Harald Welte1f477442018-02-09 01:49:01 +0100212 LOGP(DBSSAP, LOGL_DEBUG,
Harald Weltefb7ba912018-02-09 01:05:27 +0100213 "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 +0200214 osmo_sccp_addr_name(ss7, &bsc_ctx->msc_addr),
215 osmo_sccp_addr_name(ss7, &bsc_ctx->bsc_addr), imsi, tmsi, lac);
Stefan Sperling621c7292018-02-16 13:40:42 +0100216 msg = gsm0808_create_paging2(imsi, &tmsi, &cil, NULL);
Philipp Maierfbf66102017-04-09 12:32:51 +0200217 osmo_sccp_tx_unitdata_msg(bsc_ctx->sccp_user,
218 &bsc_ctx->msc_addr, &bsc_ctx->bsc_addr, msg);
219 page_count++;
220 } else {
Harald Welte1f477442018-02-09 01:49:01 +0100221 LOGP(DBSSAP, LOGL_DEBUG,
Philipp Maierfbf66102017-04-09 12:32:51 +0200222 "Connection down, dropping paging from MSC %s to BSC %s (imsi=%s, tmsi=0x%08x, lac=%u)\n",
223 osmo_sccp_addr_name(ss7, &bsc_ctx->msc_addr),
224 osmo_sccp_addr_name(ss7, &bsc_ctx->bsc_addr), imsi, tmsi, lac);
225 }
226 }
227
228 if (page_count <= 0)
Harald Welte1f477442018-02-09 01:49:01 +0100229 LOGP(DBSSAP, LOGL_ERROR, "Could not deliver paging because none of the associated BSCs is available!\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200230
231 return page_count;
232}
233
234/* Convert speech version field */
Harald Welte474e5a72018-02-12 10:12:35 +0100235static uint8_t convert_speech_version_l3_to_A(int speech_ver)
Philipp Maierfbf66102017-04-09 12:32:51 +0200236{
237 /* The speech versions that are transmitted in the Bearer capability
Harald Weltef417b8c2018-02-12 10:10:05 +0100238 * information element, that is transmitted on the Layer 3 (CC)
Philipp Maierfbf66102017-04-09 12:32:51 +0200239 * use a different encoding than the permitted speech version
240 * identifier, that is signalled in the channel type element on the A
241 * interface. (See also 3GPP TS 48.008, 3.2.2.1 and 3GPP TS 24.008,
242 * 10.5.103 */
243
244 switch (speech_ver) {
245 case GSM48_BCAP_SV_FR:
246 return GSM0808_PERM_FR1;
Philipp Maierfbf66102017-04-09 12:32:51 +0200247 case GSM48_BCAP_SV_HR:
248 return GSM0808_PERM_HR1;
Philipp Maierfbf66102017-04-09 12:32:51 +0200249 case GSM48_BCAP_SV_EFR:
250 return GSM0808_PERM_FR2;
Philipp Maierfbf66102017-04-09 12:32:51 +0200251 case GSM48_BCAP_SV_AMR_F:
252 return GSM0808_PERM_FR3;
Philipp Maierfbf66102017-04-09 12:32:51 +0200253 case GSM48_BCAP_SV_AMR_H:
254 return GSM0808_PERM_HR3;
Philipp Maierfbf66102017-04-09 12:32:51 +0200255 case GSM48_BCAP_SV_AMR_OFW:
256 return GSM0808_PERM_FR4;
Philipp Maierfbf66102017-04-09 12:32:51 +0200257 case GSM48_BCAP_SV_AMR_OHW:
258 return GSM0808_PERM_HR4;
Philipp Maierfbf66102017-04-09 12:32:51 +0200259 case GSM48_BCAP_SV_AMR_FW:
260 return GSM0808_PERM_FR5;
Philipp Maierfbf66102017-04-09 12:32:51 +0200261 case GSM48_BCAP_SV_AMR_OH:
262 return GSM0808_PERM_HR6;
Philipp Maierfbf66102017-04-09 12:32:51 +0200263 }
264
265 /* If nothing matches, tag the result as invalid */
Harald Welte1f477442018-02-09 01:49:01 +0100266 LOGP(DBSSAP, LOGL_ERROR, "Invalid permitted speech version: %d\n", speech_ver);
Philipp Maierfbf66102017-04-09 12:32:51 +0200267 return 0xFF;
268}
269
270/* Convert speech preference field */
Harald Welte474e5a72018-02-12 10:12:35 +0100271static uint8_t convert_speech_pref_l3_to_A(int radio)
Philipp Maierfbf66102017-04-09 12:32:51 +0200272{
273 /* The Radio channel requirement field that is transmitted in the
274 * Bearer capability information element, that is transmitted on the
Harald Weltef417b8c2018-02-12 10:10:05 +0100275 * Layer 3 (CC) uses a different encoding than the Channel rate and
Philipp Maierfbf66102017-04-09 12:32:51 +0200276 * type field that is signalled in the channel type element on the A
277 * interface. (See also 3GPP TS 48.008, 3.2.2.1 and 3GPP TS 24.008,
278 * 10.5.102 */
279
280 switch (radio) {
281 case GSM48_BCAP_RRQ_FR_ONLY:
282 return GSM0808_SPEECH_FULL_BM;
283 case GSM48_BCAP_RRQ_DUAL_FR:
284 return GSM0808_SPEECH_FULL_PREF;
285 case GSM48_BCAP_RRQ_DUAL_HR:
286 return GSM0808_SPEECH_HALF_PREF;
287 }
288
Harald Welte1f477442018-02-09 01:49:01 +0100289 LOGP(DBSSAP, LOGL_ERROR, "Invalid radio channel preference: %d; defaulting to full rate.\n",
Neels Hofmeyr04960b12017-12-18 05:17:25 +0100290 radio);
Philipp Maierfbf66102017-04-09 12:32:51 +0200291 return GSM0808_SPEECH_FULL_BM;
292}
293
294/* Assemble the channel type field */
295static int enc_channel_type(struct gsm0808_channel_type *ct, const struct gsm_mncc_bearer_cap *bc)
296{
297 unsigned int i;
298 uint8_t sv;
299 unsigned int count = 0;
300 bool only_gsm_hr = true;
301
302 OSMO_ASSERT(ct);
303 OSMO_ASSERT(bc);
304
305 ct->ch_indctr = GSM0808_CHAN_SPEECH;
306
307 for (i = 0; i < ARRAY_SIZE(bc->speech_ver); i++) {
308 if (bc->speech_ver[i] == -1)
309 break;
Harald Welte474e5a72018-02-12 10:12:35 +0100310 sv = convert_speech_version_l3_to_A(bc->speech_ver[i]);
Philipp Maierfbf66102017-04-09 12:32:51 +0200311 if (sv != 0xFF) {
312 /* Detect if something else than
313 * GSM HR V1 is supported */
314 if (sv == GSM0808_PERM_HR2 ||
315 sv == GSM0808_PERM_HR3 || sv == GSM0808_PERM_HR4 || sv == GSM0808_PERM_HR6)
316 only_gsm_hr = false;
317
318 ct->perm_spch[count] = sv;
319 count++;
320 }
321 }
322 ct->perm_spch_len = count;
323
324 if (only_gsm_hr)
325 /* Note: We must avoid the usage of GSM HR1 as this
326 * codec only offers very poor audio quality. If the
327 * MS only supports GSM HR1 (and full rate), and has
328 * a preference for half rate. Then we will ignore the
329 * preference and assume a preference for full rate. */
330 ct->ch_rate_type = GSM0808_SPEECH_FULL_BM;
331 else
Harald Welte474e5a72018-02-12 10:12:35 +0100332 ct->ch_rate_type = convert_speech_pref_l3_to_A(bc->radio);
Philipp Maierfbf66102017-04-09 12:32:51 +0200333
334 if (count)
335 return 0;
336 else
337 return -EINVAL;
338}
339
340/* Assemble the speech codec field */
341static int enc_speech_codec_list(struct gsm0808_speech_codec_list *scl, const struct gsm0808_channel_type *ct)
342{
343 unsigned int i;
344 int rc;
345
346 memset(scl, 0, sizeof(*scl));
347 for (i = 0; i < ct->perm_spch_len; i++) {
348 rc = gsm0808_speech_codec_from_chan_type(&scl->codec[i], ct->perm_spch[i]);
349 if (rc != 0)
350 return -EINVAL;
351 }
352 scl->len = i;
353
354 return 0;
355}
356
357/* Send assignment request via A-interface */
358int a_iface_tx_assignment(const struct gsm_trans *trans)
359{
Neels Hofmeyrc036b792018-11-29 22:37:51 +0100360 struct ran_conn *conn;
Philipp Maierfbf66102017-04-09 12:32:51 +0200361 struct gsm0808_channel_type ct;
362 struct gsm0808_speech_codec_list scl;
Philipp Maierfbf66102017-04-09 12:32:51 +0200363 struct msgb *msg;
364 struct sockaddr_storage rtp_addr;
365 struct sockaddr_in rtp_addr_in;
366 int rc;
367
368 OSMO_ASSERT(trans);
369 conn = trans->conn;
370 OSMO_ASSERT(conn);
371
Harald Weltefb7ba912018-02-09 01:05:27 +0100372 LOGPCONN(conn, LOGL_DEBUG, "Tx BSSMAP ASSIGNMENT COMMAND to BSC\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200373
374 /* Channel type */
375 rc = enc_channel_type(&ct, &trans->bearer_cap);
376 if (rc < 0) {
Neels Hofmeyr04960b12017-12-18 05:17:25 +0100377 LOGPCONN(conn, LOGL_ERROR, "Not sending Assignment to BSC: failed to generate channel type\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200378 return -EINVAL;
379 }
380
381 /* Speech codec list */
382 rc = enc_speech_codec_list(&scl, &ct);
383 if (rc < 0) {
Neels Hofmeyr04960b12017-12-18 05:17:25 +0100384 LOGPCONN(conn, LOGL_ERROR, "Not sending Assignment to BSC: failed to generate speech codec list\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200385 return -EINVAL;
386 }
387
388 /* Package RTP-Address data */
389 memset(&rtp_addr_in, 0, sizeof(rtp_addr_in));
390 rtp_addr_in.sin_family = AF_INET;
Philipp Maier621ba032017-11-07 17:19:25 +0100391 rtp_addr_in.sin_port = osmo_htons(conn->rtp.local_port_ran);
392 rtp_addr_in.sin_addr.s_addr = inet_addr(conn->rtp.local_addr_ran);
393
394 if (rtp_addr_in.sin_addr.s_addr == INADDR_NONE) {
395 LOGPCONN(conn, LOGL_ERROR, "Invalid RTP-Address -- assignment not sent!\n");
396 return -EINVAL;
397 }
398 if (rtp_addr_in.sin_port == 0) {
399 LOGPCONN(conn, LOGL_ERROR, "Invalid RTP-Port -- assignment not sent!\n");
400 return -EINVAL;
401 }
Philipp Maierfbf66102017-04-09 12:32:51 +0200402
403 memset(&rtp_addr, 0, sizeof(rtp_addr));
404 memcpy(&rtp_addr, &rtp_addr_in, sizeof(rtp_addr_in));
405
Max020ec7a2018-12-17 16:03:55 +0100406 msg = gsm0808_create_ass(&ct, NULL, &rtp_addr, &scl, NULL);
Philipp Maierfbf66102017-04-09 12:32:51 +0200407
Harald Weltea41b6302018-02-09 00:27:56 +0100408 LOGPCONN(conn, LOGL_DEBUG, "N-DATA.req(%s)\n", msgb_hexdump_l2(msg));
Philipp Maierfbf66102017-04-09 12:32:51 +0200409 return osmo_sccp_tx_data_msg(conn->a.scu, conn->a.conn_id, msg);
410}
411
412/* Send clear command via A-interface */
Neels Hofmeyrc036b792018-11-29 22:37:51 +0100413int a_iface_tx_clear_cmd(struct ran_conn *conn)
Philipp Maierfbf66102017-04-09 12:32:51 +0200414{
415 struct msgb *msg;
416
Harald Weltefb7ba912018-02-09 01:05:27 +0100417 LOGPCONN(conn, LOGL_INFO, "Tx BSSMAP CLEAR COMMAND to BSC\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200418
419 msg = gsm0808_create_clear_command(GSM0808_CAUSE_CALL_CONTROL);
420 return osmo_sccp_tx_data_msg(conn->a.scu, conn->a.conn_id, msg);
421}
422
Neels Hofmeyrc036b792018-11-29 22:37:51 +0100423int a_iface_tx_classmark_request(const struct ran_conn *conn)
Neels Hofmeyr3117b702018-09-13 03:23:07 +0200424{
425 struct msgb *msg;
426
427 LOGPCONN(conn, LOGL_INFO, "Tx BSSMAP CLASSMARK REQUEST to BSC\n");
428
429 msg = gsm0808_create_classmark_request();
430 return osmo_sccp_tx_data_msg(conn->a.scu, conn->a.conn_id, msg);
431}
432
Philipp Maierfbf66102017-04-09 12:32:51 +0200433/* Callback function: Close all open connections */
434static void a_reset_cb(const void *priv)
435{
436 struct msgb *msg;
437 struct bsc_context *bsc_ctx = (struct bsc_context*) priv;
438 struct osmo_ss7_instance *ss7;
439
440 /* Skip if the A interface is not properly initalized yet */
441 if (!gsm_network)
442 return;
443
Neels Hofmeyrc036b792018-11-29 22:37:51 +0100444 /* Clear all now orphaned RAN connections */
Philipp Maierfbf66102017-04-09 12:32:51 +0200445 a_clear_all(bsc_ctx->sccp_user, &bsc_ctx->bsc_addr);
446
447 /* Send reset to the remote BSC */
448 ss7 = osmo_ss7_instance_find(gsm_network->a.cs7_instance);
449 OSMO_ASSERT(ss7);
Harald Welte1f477442018-02-09 01:49:01 +0100450 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 +0200451 msg = gsm0808_create_reset();
452 osmo_sccp_tx_unitdata_msg(bsc_ctx->sccp_user, &bsc_ctx->msc_addr,
453 &bsc_ctx->bsc_addr, msg);
454}
455
456/* Add a new BSC connection to our internal list with known BSCs */
Harald Welte54a10ef2018-02-09 00:09:16 +0100457static struct bsc_context *add_bsc(const struct osmo_sccp_addr *msc_addr,
458 const struct osmo_sccp_addr *bsc_addr, struct osmo_sccp_user *scu)
Philipp Maierfbf66102017-04-09 12:32:51 +0200459{
460 struct bsc_context *bsc_ctx;
461 struct osmo_ss7_instance *ss7;
Philipp Maierfbf66102017-04-09 12:32:51 +0200462
463 ss7 = osmo_ss7_instance_find(gsm_network->a.cs7_instance);
464 OSMO_ASSERT(ss7);
Harald Welte1f477442018-02-09 01:49:01 +0100465 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 +0200466
467 /* Generate and fill up a new bsc context */
468 bsc_ctx = talloc_zero(gsm_network, struct bsc_context);
469 OSMO_ASSERT(bsc_ctx);
470 memcpy(&bsc_ctx->bsc_addr, bsc_addr, sizeof(*bsc_addr));
471 memcpy(&bsc_ctx->msc_addr, msc_addr, sizeof(*msc_addr));
472 bsc_ctx->sccp_user = scu;
473 llist_add_tail(&bsc_ctx->list, &gsm_network->a.bscs);
474
Harald Welte54a10ef2018-02-09 00:09:16 +0100475 return bsc_ctx;
476}
477
478/* start the BSSMAP RESET fsm */
479void a_start_reset(struct bsc_context *bsc_ctx, bool already_connected)
480{
481 char bsc_name[32];
Philipp Maierf913e5f2018-05-07 10:15:49 +0200482 OSMO_ASSERT(bsc_ctx->reset_fsm == NULL);
Philipp Maierfbf66102017-04-09 12:32:51 +0200483 /* Start reset procedure to make the new connection active */
Harald Welte54a10ef2018-02-09 00:09:16 +0100484 snprintf(bsc_name, sizeof(bsc_name), "bsc-%i", bsc_ctx->bsc_addr.pc);
Philipp Maierf913e5f2018-05-07 10:15:49 +0200485 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 +0100486}
487
Philipp Maierce1298b2018-02-22 16:44:41 +0100488/* determine if given msg is BSSMAP RESET related (true) or not (false) */
Harald Welte54a10ef2018-02-09 00:09:16 +0100489static bool bssmap_is_reset(struct msgb *msg)
490{
491 struct bssmap_header *bs = (struct bssmap_header *)msgb_l2(msg);
492
493 if (msgb_l2len(msg) < sizeof(*bs))
494 return false;
495
496 if (bs->type != BSSAP_MSG_BSS_MANAGEMENT)
497 return false;
498
499 if (msg->l2h[sizeof(*bs)] == BSS_MAP_MSG_RESET)
500 return true;
501
Philipp Maierce1298b2018-02-22 16:44:41 +0100502 if (msg->l2h[sizeof(*bs)] == BSS_MAP_MSG_RESET_ACKNOWLEDGE)
503 return true;
504
Harald Welte54a10ef2018-02-09 00:09:16 +0100505 return false;
Philipp Maierfbf66102017-04-09 12:32:51 +0200506}
507
508/* Callback function, called by the SSCP stack when data arrives */
509static int sccp_sap_up(struct osmo_prim_hdr *oph, void *_scu)
510{
511 struct osmo_sccp_user *scu = _scu;
512 struct osmo_scu_prim *scu_prim = (struct osmo_scu_prim *)oph;
513 int rc = 0;
514 struct a_conn_info a_conn_info;
Harald Welte54a10ef2018-02-09 00:09:16 +0100515 struct bsc_conn *bsc_con;
516
Philipp Maierfbf66102017-04-09 12:32:51 +0200517 memset(&a_conn_info, 0, sizeof(a_conn_info));
518 a_conn_info.network = gsm_network;
Philipp Maierfbf66102017-04-09 12:32:51 +0200519
520 switch (OSMO_PRIM_HDR(&scu_prim->oph)) {
521 case OSMO_PRIM(OSMO_SCU_PRIM_N_CONNECT, PRIM_OP_INDICATION):
522 /* Handle inbound connection indication */
Philipp Maierfbf66102017-04-09 12:32:51 +0200523 a_conn_info.conn_id = scu_prim->u.connect.conn_id;
Harald Welte54a10ef2018-02-09 00:09:16 +0100524 a_conn_info.bsc = get_bsc_context_by_sccp_addr(&scu_prim->u.unitdata.calling_addr);
525 if (!a_conn_info.bsc) {
526 /* We haven't heard from this BSC before, allocate it */
527 a_conn_info.bsc = add_bsc(&scu_prim->u.connect.called_addr,
528 &scu_prim->u.connect.calling_addr, scu);
529 a_start_reset(a_conn_info.bsc, false);
530 } else {
531 /* This BSC is already known to us, check if we have been through reset yet */
Philipp Maierf913e5f2018-05-07 10:15:49 +0200532 if (a_reset_conn_ready(a_conn_info.bsc->reset_fsm) == false) {
Harald Welte1f477442018-02-09 01:49:01 +0100533 LOGP(DBSSAP, LOGL_NOTICE, "Refusing N-CONNECT.ind(%u, %s), BSC not reset yet\n",
Harald Weltea41b6302018-02-09 00:27:56 +0100534 scu_prim->u.connect.conn_id, msgb_hexdump_l2(oph->msg));
Harald Welte54a10ef2018-02-09 00:09:16 +0100535 rc = osmo_sccp_tx_disconn(scu, a_conn_info.conn_id, &a_conn_info.bsc->msc_addr,
536 SCCP_RETURN_CAUSE_UNQUALIFIED);
537 break;
538 }
Philipp Maierfbf66102017-04-09 12:32:51 +0200539
Harald Welte54a10ef2018-02-09 00:09:16 +0100540 osmo_sccp_tx_conn_resp(scu, scu_prim->u.connect.conn_id, &scu_prim->u.connect.called_addr, NULL, 0);
541 if (msgb_l2len(oph->msg) > 0) {
Harald Welte1f477442018-02-09 01:49:01 +0100542 LOGP(DBSSAP, LOGL_DEBUG, "N-CONNECT.ind(%u, %s)\n",
Harald Weltea41b6302018-02-09 00:27:56 +0100543 scu_prim->u.connect.conn_id, msgb_hexdump_l2(oph->msg));
Harald Welte54a10ef2018-02-09 00:09:16 +0100544 rc = a_sccp_rx_dt(scu, &a_conn_info, oph->msg);
Harald Welte8a991ed2018-03-18 21:56:04 +0100545 } else {
Harald Welte1f477442018-02-09 01:49:01 +0100546 LOGP(DBSSAP, LOGL_DEBUG, "N-CONNECT.ind(%u)\n", scu_prim->u.connect.conn_id);
Harald Welte8a991ed2018-03-18 21:56:04 +0100547 rc = -ENODATA;
548 }
549
550 if (rc < 0) {
551 /* initial message (COMPL L3) caused some error, we didn't allocate
552 * a subscriber_conn and must close the connection again */
553 rc = osmo_sccp_tx_disconn(scu, a_conn_info.conn_id,
554 &a_conn_info.bsc->msc_addr,
555 SCCP_RETURN_CAUSE_UNQUALIFIED);
556 } else
557 record_bsc_con(scu, a_conn_info.bsc, scu_prim->u.connect.conn_id);
Philipp Maierfbf66102017-04-09 12:32:51 +0200558 }
Philipp Maierfbf66102017-04-09 12:32:51 +0200559 break;
560
561 case OSMO_PRIM(OSMO_SCU_PRIM_N_DATA, PRIM_OP_INDICATION):
562 /* Handle incoming connection oriented data */
Harald Welte54a10ef2018-02-09 00:09:16 +0100563 bsc_con = find_bsc_con(scu_prim->u.data.conn_id);
564 if (!bsc_con) {
Harald Welte1f477442018-02-09 01:49:01 +0100565 LOGP(DBSSAP, LOGL_ERROR, "N-DATA.ind(%u, %s) for unknown conn_id\n",
Harald Weltea41b6302018-02-09 00:27:56 +0100566 scu_prim->u.data.conn_id, msgb_hexdump_l2(oph->msg));
Harald Welte54a10ef2018-02-09 00:09:16 +0100567 break;
568 }
Philipp Maierfbf66102017-04-09 12:32:51 +0200569 a_conn_info.conn_id = scu_prim->u.data.conn_id;
Harald Welte54a10ef2018-02-09 00:09:16 +0100570 a_conn_info.bsc = bsc_con->bsc;
Harald Welte1f477442018-02-09 01:49:01 +0100571 LOGP(DBSSAP, LOGL_DEBUG, "N-DATA.ind(%u, %s)\n",
Harald Weltea41b6302018-02-09 00:27:56 +0100572 scu_prim->u.data.conn_id, msgb_hexdump_l2(oph->msg));
Neels Hofmeyrc1d69252017-12-18 04:06:04 +0100573 a_sccp_rx_dt(scu, &a_conn_info, oph->msg);
Philipp Maierfbf66102017-04-09 12:32:51 +0200574 break;
575
576 case OSMO_PRIM(OSMO_SCU_PRIM_N_UNITDATA, PRIM_OP_INDICATION):
577 /* Handle inbound UNITDATA */
Philipp Maierce1298b2018-02-22 16:44:41 +0100578
579 /* Get BSC context, create a new one if necessary */
Harald Welte54a10ef2018-02-09 00:09:16 +0100580 a_conn_info.bsc = get_bsc_context_by_sccp_addr(&scu_prim->u.unitdata.calling_addr);
581 if (!a_conn_info.bsc) {
582 /* We haven't heard from this BSC before, allocate it */
583 a_conn_info.bsc = add_bsc(&scu_prim->u.unitdata.called_addr,
584 &scu_prim->u.unitdata.calling_addr, scu);
Philipp Maierce1298b2018-02-22 16:44:41 +0100585 /* Make sure that reset procedure is started */
586 a_start_reset(a_conn_info.bsc, false);
Harald Welte54a10ef2018-02-09 00:09:16 +0100587 }
Philipp Maierce1298b2018-02-22 16:44:41 +0100588
589 /* As long as we are in the reset phase, only reset related BSSMAP messages may pass
590 * beond here. */
Philipp Maierf913e5f2018-05-07 10:15:49 +0200591 if (!bssmap_is_reset(oph->msg) && a_reset_conn_ready(a_conn_info.bsc->reset_fsm) == false) {
Philipp Maierce1298b2018-02-22 16:44:41 +0100592 LOGP(DBSSAP, LOGL_NOTICE, "Ignoring N-UNITDATA.ind(%s), BSC not reset yet\n",
593 msgb_hexdump_l2(oph->msg));
594 break;
595 }
596
Harald Welte1f477442018-02-09 01:49:01 +0100597 DEBUGP(DBSSAP, "N-UNITDATA.ind(%s)\n", msgb_hexdump_l2(oph->msg));
Neels Hofmeyrc1d69252017-12-18 04:06:04 +0100598 a_sccp_rx_udt(scu, &a_conn_info, oph->msg);
Philipp Maierfbf66102017-04-09 12:32:51 +0200599 break;
600
601 default:
Harald Welte1f477442018-02-09 01:49:01 +0100602 LOGP(DBSSAP, LOGL_ERROR, "Unhandled SIGTRAN operation %s on primitive %u\n",
Maxc309fe32018-01-24 14:02:38 +0100603 get_value_string(osmo_prim_op_names, oph->operation), oph->primitive);
Philipp Maierfbf66102017-04-09 12:32:51 +0200604 break;
605 }
606
Harald Weltea172e9e2018-02-09 21:33:24 +0100607 /* We didn't transfer msgb ownership to any downstream functions so we rely on
608 * this single/central location to free() the msgb wrapping the primitive */
609 msgb_free(oph->msg);
Philipp Maierfbf66102017-04-09 12:32:51 +0200610 return rc;
611}
612
Neels Hofmeyrc036b792018-11-29 22:37:51 +0100613/* Clear all RAN connections on a specified BSC */
Philipp Maierfbf66102017-04-09 12:32:51 +0200614void a_clear_all(struct osmo_sccp_user *scu, const struct osmo_sccp_addr *bsc_addr)
615{
Neels Hofmeyrc036b792018-11-29 22:37:51 +0100616 struct ran_conn *conn;
617 struct ran_conn *conn_temp;
Philipp Maierfbf66102017-04-09 12:32:51 +0200618 struct gsm_network *network = gsm_network;
619
620 OSMO_ASSERT(scu);
621 OSMO_ASSERT(bsc_addr);
622
Neels Hofmeyrc036b792018-11-29 22:37:51 +0100623 llist_for_each_entry_safe(conn, conn_temp, &network->ran_conns, entry) {
Philipp Maierfbf66102017-04-09 12:32:51 +0200624 /* Clear only A connections and connections that actually
625 * belong to the specified BSC */
626 if (conn->via_ran == RAN_GERAN_A && memcmp(bsc_addr, &conn->a.bsc_addr, sizeof(conn->a.bsc_addr)) == 0) {
Harald Welte80620d22018-02-10 10:24:15 +0100627 uint32_t conn_id = conn->a.conn_id;
Neels Hofmeyrc036b792018-11-29 22:37:51 +0100628 LOGPCONN(conn, LOGL_NOTICE, "Dropping orphaned RAN connection\n");
Harald Welte80620d22018-02-10 10:24:15 +0100629 /* This call will/may talloc_free(conn), so we must save conn_id above */
Neels Hofmeyr3c20a5e2018-11-30 01:08:36 +0100630 ran_conn_clear_request(conn, GSM48_CC_CAUSE_SWITCH_CONG);
Philipp Maierfbf66102017-04-09 12:32:51 +0200631
632 /* If there is still an SCCP connection active, remove it now */
Harald Welte80620d22018-02-10 10:24:15 +0100633 if (check_connection_active(conn_id)) {
634 osmo_sccp_tx_disconn(scu, conn_id, bsc_addr,
Philipp Maierfbf66102017-04-09 12:32:51 +0200635 SCCP_RELEASE_CAUSE_END_USER_ORIGINATED);
Harald Welte80620d22018-02-10 10:24:15 +0100636 a_delete_bsc_con(conn_id);
Philipp Maierfbf66102017-04-09 12:32:51 +0200637 }
638 }
639 }
640}
641
642/* Initalize A interface connection between to MSC and BSC */
643int a_init(struct osmo_sccp_instance *sccp, struct gsm_network *network)
644{
645 OSMO_ASSERT(sccp);
646 OSMO_ASSERT(network);
647
648 /* FIXME: Remove hardcoded parameters, use parameters in parameter list */
Harald Welte1f477442018-02-09 01:49:01 +0100649 LOGP(DBSSAP, LOGL_NOTICE, "Initalizing SCCP connection to stp...\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200650
651 /* Set GSM network variable, there can only be
652 * one network by design */
653 if (gsm_network != NULL) {
654 OSMO_ASSERT(gsm_network == network);
655 } else
656 gsm_network = network;
657
658 /* SCCP Protocol stack */
659 osmo_sccp_user_bind(sccp, "OsmoMSC-A", sccp_sap_up, SCCP_SSN_BSSAP);
660
661 return 0;
Neels Hofmeyre2f24d52017-05-08 15:12:20 +0200662}