blob: 3c1bcc8789a6b7c8fb93afe95cb9ae28bee9ef06 [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>
Philipp Maierfbf66102017-04-09 12:32:51 +02003 * All Rights Reserved
4 *
5 * Author: Philipp Maier
6 *
7 * 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
22#include <osmocom/core/utils.h>
23#include <osmocom/core/msgb.h>
24#include <osmocom/core/logging.h>
25#include <osmocom/sigtran/sccp_helpers.h>
26#include <osmocom/sccp/sccp_types.h>
27#include <osmocom/gsm/gsm0808.h>
Max43b01b02017-09-15 11:22:30 +020028#include <osmocom/gsm/gsm48.h>
Philipp Maierfbf66102017-04-09 12:32:51 +020029#include <osmocom/gsm/gsm0808_utils.h>
Neels Hofmeyr90843962017-09-04 15:04:35 +020030#include <osmocom/msc/debug.h>
31#include <osmocom/msc/gsm_data.h>
32#include <osmocom/msc/a_iface_bssap.h>
33#include <osmocom/msc/a_iface.h>
34#include <osmocom/msc/osmo_msc.h>
Philipp Maierfbf66102017-04-09 12:32:51 +020035#include <osmocom/core/byteswap.h>
Neels Hofmeyr90843962017-09-04 15:04:35 +020036#include <osmocom/msc/a_reset.h>
Max43b01b02017-09-15 11:22:30 +020037#include <osmocom/msc/transaction.h>
Philipp Maier621ba032017-11-07 17:19:25 +010038#include <osmocom/msc/msc_mgcp.h>
Max43b01b02017-09-15 11:22:30 +020039
40#include <errno.h>
Philipp Maierfbf66102017-04-09 12:32:51 +020041
42#define IP_V4_ADDR_LEN 4
43
44/*
45 * Helper functions to lookup and allocate subscribers
46 */
47
48/* Allocate a new subscriber connection */
49static struct gsm_subscriber_connection *subscr_conn_allocate_a(const struct a_conn_info *a_conn_info,
50 struct gsm_network *network,
51 uint16_t lac, struct osmo_sccp_user *scu, int conn_id)
52{
53 struct gsm_subscriber_connection *conn;
54
Harald Weltef0dc1be2018-02-09 00:37:56 +010055 LOGP(DMSC, LOGL_DEBUG, "Allocating A-Interface subscriber conn: lac %i, conn_id %i\n", lac, conn_id);
Philipp Maierfbf66102017-04-09 12:32:51 +020056
57 conn = talloc_zero(network, struct gsm_subscriber_connection);
58 if (!conn)
59 return NULL;
60
61 conn->network = network;
62 conn->via_ran = RAN_GERAN_A;
63 conn->lac = lac;
64
65 conn->a.conn_id = conn_id;
66 conn->a.scu = scu;
67
68 /* Also backup the calling address of the BSC, this allows us to
69 * identify later which BSC is responsible for this subscriber connection */
Harald Welte54a10ef2018-02-09 00:09:16 +010070 memcpy(&conn->a.bsc_addr, &a_conn_info->bsc->bsc_addr, sizeof(conn->a.bsc_addr));
Philipp Maierfbf66102017-04-09 12:32:51 +020071
72 llist_add_tail(&conn->entry, &network->subscr_conns);
Harald Welte6de46592018-02-09 00:53:17 +010073 LOGPCONN(conn, LOGL_DEBUG, "A-Interface subscriber connection successfully allocated!\n");
Philipp Maierfbf66102017-04-09 12:32:51 +020074 return conn;
75}
76
77/* Return an existing A subscriber connection record for the given
78 * connection IDs, or return NULL if not found. */
79static struct gsm_subscriber_connection *subscr_conn_lookup_a(const struct gsm_network *network, int conn_id)
80{
81 struct gsm_subscriber_connection *conn;
82
83 OSMO_ASSERT(network);
84
85 DEBUGP(DMSC, "Looking for A subscriber: conn_id %i\n", conn_id);
86
87 /* FIXME: log_subscribers() is defined in iucs.c as static inline, if
88 * maybe this function should be public to reach it from here? */
89 /* log_subscribers(network); */
90
91 llist_for_each_entry(conn, &network->subscr_conns, entry) {
92 if (conn->via_ran == RAN_GERAN_A && conn->a.conn_id == conn_id) {
Harald Welte6de46592018-02-09 00:53:17 +010093 LOGPCONN(conn, LOGL_DEBUG, "Found A subscriber for conn_id %i\n", conn_id);
Philipp Maierfbf66102017-04-09 12:32:51 +020094 return conn;
95 }
96 }
97 DEBUGP(DMSC, "No A subscriber found for conn_id %i\n", conn_id);
98 return NULL;
99}
100
101/*
102 * BSSMAP handling for UNITDATA
103 */
104
105/* Endpoint to handle BSSMAP reset */
106static void bssmap_rx_reset(struct osmo_sccp_user *scu, const struct a_conn_info *a_conn_info, struct msgb *msg)
107{
108 struct gsm_network *network = a_conn_info->network;
109 struct osmo_ss7_instance *ss7;
110
111 ss7 = osmo_ss7_instance_find(network->a.cs7_instance);
112 OSMO_ASSERT(ss7);
113
Harald Welte1f477442018-02-09 01:49:01 +0100114 LOGP(DBSSAP, LOGL_NOTICE, "Rx BSSMAP RESET from BSC %s, sending RESET ACK\n",
Harald Welte54a10ef2018-02-09 00:09:16 +0100115 osmo_sccp_addr_name(ss7, &a_conn_info->bsc->bsc_addr));
116 osmo_sccp_tx_unitdata_msg(scu, &a_conn_info->bsc->msc_addr, &a_conn_info->bsc->bsc_addr,
117 gsm0808_create_reset_ack());
Philipp Maierfbf66102017-04-09 12:32:51 +0200118
119 /* Make sure all orphand subscriber connections will be cleard */
Harald Welte54a10ef2018-02-09 00:09:16 +0100120 a_clear_all(scu, &a_conn_info->bsc->bsc_addr);
121
122 if (!a_conn_info->bsc->reset)
123 a_start_reset(a_conn_info->bsc, true);
Harald Welte4de01152018-03-18 22:20:34 +0100124
125 /* Treat an incoming RESET like an ACK to any RESET request we may have just sent.
126 * After all, what we wanted is the A interface to be reset, which we now know has happened. */
127 a_reset_ack_confirm(a_conn_info->bsc->reset);
Philipp Maierfbf66102017-04-09 12:32:51 +0200128}
129
130/* Endpoint to handle BSSMAP reset acknowlegement */
131static void bssmap_rx_reset_ack(const struct osmo_sccp_user *scu, const struct a_conn_info *a_conn_info,
132 struct msgb *msg)
133{
134
135 struct gsm_network *network = a_conn_info->network;
136 struct osmo_ss7_instance *ss7;
137
138 ss7 = osmo_ss7_instance_find(network->a.cs7_instance);
139 OSMO_ASSERT(ss7);
140
Harald Welte54a10ef2018-02-09 00:09:16 +0100141 if (a_conn_info->bsc->reset == NULL) {
Harald Welte1f477442018-02-09 01:49:01 +0100142 LOGP(DBSSAP, LOGL_ERROR, "Received RESET ACK from an unknown BSC %s, ignoring...\n",
Harald Welte54a10ef2018-02-09 00:09:16 +0100143 osmo_sccp_addr_name(ss7, &a_conn_info->bsc->bsc_addr));
Harald Weltea172e9e2018-02-09 21:33:24 +0100144 return;
Philipp Maierfbf66102017-04-09 12:32:51 +0200145 }
146
Harald Welte1f477442018-02-09 01:49:01 +0100147 LOGP(DBSSAP, LOGL_NOTICE, "Received RESET ACK from BSC %s\n",
Harald Welte54a10ef2018-02-09 00:09:16 +0100148 osmo_sccp_addr_name(ss7, &a_conn_info->bsc->bsc_addr));
Philipp Maierfbf66102017-04-09 12:32:51 +0200149
150 /* Confirm that we managed to get the reset ack message
151 * towards the connection reset logic */
Harald Welte54a10ef2018-02-09 00:09:16 +0100152 a_reset_ack_confirm(a_conn_info->bsc->reset);
Philipp Maierfbf66102017-04-09 12:32:51 +0200153}
154
155/* Handle UNITDATA BSSMAP messages */
156static void bssmap_rcvmsg_udt(struct osmo_sccp_user *scu, const struct a_conn_info *a_conn_info, struct msgb *msg)
157{
158 /* Note: When in the MSC role, RESET ACK is the only valid message that
159 * can be received via UNITDATA */
160
161 if (msgb_l3len(msg) < 1) {
Harald Welte1f477442018-02-09 01:49:01 +0100162 LOGP(DBSSAP, LOGL_NOTICE, "Error: No data received -- discarding message!\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200163 return;
164 }
165
Harald Welte1f477442018-02-09 01:49:01 +0100166 LOGP(DBSSAP, LOGL_DEBUG, "Rx BSSMAP UDT %s\n", gsm0808_bssmap_name(msg->l3h[0]));
Philipp Maierfbf66102017-04-09 12:32:51 +0200167
168 switch (msg->l3h[0]) {
169 case BSS_MAP_MSG_RESET:
170 bssmap_rx_reset(scu, a_conn_info, msg);
171 break;
172 case BSS_MAP_MSG_RESET_ACKNOWLEDGE:
173 bssmap_rx_reset_ack(scu, a_conn_info, msg);
174 break;
175 default:
Harald Welte1f477442018-02-09 01:49:01 +0100176 LOGP(DBSSAP, LOGL_NOTICE, "Unimplemented message format: %s -- message discarded!\n",
Philipp Maierfbf66102017-04-09 12:32:51 +0200177 gsm0808_bssmap_name(msg->l3h[0]));
Philipp Maierfbf66102017-04-09 12:32:51 +0200178 }
179}
180
181/* Receive incoming connection less data messages via sccp */
Neels Hofmeyrc1d69252017-12-18 04:06:04 +0100182void a_sccp_rx_udt(struct osmo_sccp_user *scu, const struct a_conn_info *a_conn_info, struct msgb *msg)
Philipp Maierfbf66102017-04-09 12:32:51 +0200183{
184 /* Note: The only valid message type that can be received
185 * via UNITDATA are BSS Management messages */
186 struct bssmap_header *bs;
187
188 OSMO_ASSERT(scu);
189 OSMO_ASSERT(a_conn_info);
190 OSMO_ASSERT(msg);
191
Harald Welte1f477442018-02-09 01:49:01 +0100192 LOGP(DBSSAP, LOGL_DEBUG, "Rx BSSMAP UDT: %s\n", msgb_hexdump_l2(msg));
Philipp Maierfbf66102017-04-09 12:32:51 +0200193
194 if (msgb_l2len(msg) < sizeof(*bs)) {
Harald Welte1f477442018-02-09 01:49:01 +0100195 LOGP(DBSSAP, LOGL_ERROR, "Error: Header is too short -- discarding message!\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200196 return;
197 }
198
199 bs = (struct bssmap_header *)msgb_l2(msg);
200 if (bs->length < msgb_l2len(msg) - sizeof(*bs)) {
Harald Welte1f477442018-02-09 01:49:01 +0100201 LOGP(DBSSAP, LOGL_ERROR, "Error: Message is too short -- discarding message!\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200202 return;
203 }
204
205 switch (bs->type) {
206 case BSSAP_MSG_BSS_MANAGEMENT:
207 msg->l3h = &msg->l2h[sizeof(struct bssmap_header)];
208 bssmap_rcvmsg_udt(scu, a_conn_info, msg);
209 break;
210 default:
Harald Welte1f477442018-02-09 01:49:01 +0100211 LOGP(DBSSAP, LOGL_ERROR,
Philipp Maierfbf66102017-04-09 12:32:51 +0200212 "Error: Unimplemented message type: %s -- message discarded!\n", gsm0808_bssmap_name(bs->type));
Philipp Maierfbf66102017-04-09 12:32:51 +0200213 }
214}
215
216/*
217 * BSSMAP handling for connection oriented data
218 */
219
220/* Endpoint to handle BSSMAP clear request */
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100221static int bssmap_rx_clear_rqst(struct gsm_subscriber_connection *conn,
222 struct msgb *msg, struct tlv_parsed *tp)
Philipp Maierfbf66102017-04-09 12:32:51 +0200223{
Philipp Maierfbf66102017-04-09 12:32:51 +0200224 int rc;
225 struct msgb *msg_resp;
226 uint8_t cause;
Philipp Maierfbf66102017-04-09 12:32:51 +0200227
Harald Welte35284462018-02-09 01:31:29 +0100228 LOGPCONN(conn, LOGL_INFO, "Rx BSSMAP CLEAR REQUEST\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200229
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100230 if (!TLVP_PRESENT(tp, GSM0808_IE_CAUSE)) {
Harald Welte1f477442018-02-09 01:49:01 +0100231 LOGP(DBSSAP, LOGL_ERROR, "Cause code is missing -- discarding message!\n");
Harald Weltea172e9e2018-02-09 21:33:24 +0100232 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200233 }
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100234 cause = TLVP_VAL(tp, GSM0808_IE_CAUSE)[0];
Philipp Maierfbf66102017-04-09 12:32:51 +0200235
236 /* Respond with clear command */
237 msg_resp = gsm0808_create_clear_command(GSM0808_CAUSE_CALL_CONTROL);
Harald Weltec27ef652018-02-09 01:23:25 +0100238 rc = osmo_sccp_tx_data_msg(conn->a.scu, conn->a.conn_id, msg_resp);
Philipp Maierfbf66102017-04-09 12:32:51 +0200239
Philipp Maierfbf66102017-04-09 12:32:51 +0200240 msc_clear_request(conn, cause);
241
Philipp Maierfbf66102017-04-09 12:32:51 +0200242 return rc;
Philipp Maierfbf66102017-04-09 12:32:51 +0200243}
244
245/* Endpoint to handle BSSMAP clear complete */
Harald Weltec27ef652018-02-09 01:23:25 +0100246static int bssmap_rx_clear_complete(struct osmo_sccp_user *scu,
247 const struct a_conn_info *a_conn_info, struct msgb *msg)
Philipp Maierfbf66102017-04-09 12:32:51 +0200248{
249 int rc;
250
Pau Espin Pedrol9f055f52018-02-14 14:11:58 +0100251 LOGP(DMSC, LOGL_INFO, "Rx BSSMAP CLEAR COMPLETE, releasing SCCP connection\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200252 rc = osmo_sccp_tx_disconn(scu, a_conn_info->conn_id,
Harald Welte54a10ef2018-02-09 00:09:16 +0100253 NULL, SCCP_RELEASE_CAUSE_END_USER_ORIGINATED);
Philipp Maierfbf66102017-04-09 12:32:51 +0200254
255 /* Remove the record from the list with active connections. */
256 a_delete_bsc_con(a_conn_info->conn_id);
257
Philipp Maierfbf66102017-04-09 12:32:51 +0200258 return rc;
259}
260
261/* Endpoint to handle layer 3 complete messages */
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100262static int bssmap_rx_l3_compl(struct osmo_sccp_user *scu, const struct a_conn_info *a_conn_info,
263 struct msgb *msg, struct tlv_parsed *tp)
Philipp Maierfbf66102017-04-09 12:32:51 +0200264{
Stefan Sperlingbe7e0692018-03-14 14:00:00 +0100265 struct gsm0808_cell_id_list2 cil;
266 uint16_t lac = 0;
Philipp Maierfbf66102017-04-09 12:32:51 +0200267 uint8_t data_length;
268 const uint8_t *data;
269 int rc;
270
271 struct gsm_network *network = a_conn_info->network;
272 struct gsm_subscriber_connection *conn;
273
Harald Welte1f477442018-02-09 01:49:01 +0100274 LOGP(DBSSAP, LOGL_INFO, "Rx BSSMAP COMPLETE L3 INFO (conn_id=%i)\n", a_conn_info->conn_id);
Philipp Maierfbf66102017-04-09 12:32:51 +0200275
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100276 if (!TLVP_PRESENT(tp, GSM0808_IE_CELL_IDENTIFIER)) {
Harald Welte1f477442018-02-09 01:49:01 +0100277 LOGP(DBSSAP, LOGL_ERROR, "Mandatory CELL IDENTIFIER not present -- discarding message!\n");
Harald Weltea172e9e2018-02-09 21:33:24 +0100278 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200279 }
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100280 if (!TLVP_PRESENT(tp, GSM0808_IE_LAYER_3_INFORMATION)) {
Harald Welte1f477442018-02-09 01:49:01 +0100281 LOGP(DBSSAP, LOGL_ERROR, "Mandatory LAYER 3 INFORMATION not present -- discarding message!\n");
Harald Weltea172e9e2018-02-09 21:33:24 +0100282 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200283 }
284
Stefan Sperlingbe7e0692018-03-14 14:00:00 +0100285 /* Parse Cell ID element -- this should yield a cell identifier "list" with 1 element. */
286
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100287 data_length = TLVP_LEN(tp, GSM0808_IE_CELL_IDENTIFIER);
288 data = TLVP_VAL(tp, GSM0808_IE_CELL_IDENTIFIER);
Stefan Sperlingbe7e0692018-03-14 14:00:00 +0100289 if (gsm0808_dec_cell_id_list2(&cil, data, data_length) < 0 || cil.id_list_len != 1) {
Harald Welte1f477442018-02-09 01:49:01 +0100290 LOGP(DBSSAP, LOGL_ERROR,
Stefan Sperlingbe7e0692018-03-14 14:00:00 +0100291 "Unable to parse element CELL IDENTIFIER -- discarding message!\n");
Harald Weltea172e9e2018-02-09 21:33:24 +0100292 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200293 }
Stefan Sperlingbe7e0692018-03-14 14:00:00 +0100294
295 /* Determine the LAC which we will use for this subscriber. */
296 switch (cil.id_discr) {
297 case CELL_IDENT_WHOLE_GLOBAL: {
298 const struct osmo_cell_global_id *id = &cil.id_list[0].global;
299 if (osmo_plmn_cmp(&id->lai.plmn, &network->plmn) != 0) {
300 LOGP(DBSSAP, LOGL_ERROR,
301 "WHOLE GLOBAL CELL IDENTIFIER does not match network MCC/MNC -- discarding message!\n");
302 return -EINVAL;
303 }
304 lac = id->lai.lac;
305 break;
306 }
307 case CELL_IDENT_LAC_AND_CI: {
308 const struct osmo_lac_and_ci_id *id = &cil.id_list[0].lac_and_ci;
309 lac = id->lac;
310 break;
311 }
312 case CELL_IDENT_LAI_AND_LAC: {
313 const struct osmo_location_area_id *id = &cil.id_list[0].lai_and_lac;
314 if (osmo_plmn_cmp(&id->plmn, &network->plmn) != 0) {
315 LOGP(DBSSAP, LOGL_ERROR,
316 "LAI AND LAC CELL IDENTIFIER does not match network MCC/MNC -- discarding message!\n");
317 return -EINVAL;
318 }
319 lac = id->lac;
320 break;
321 }
322 case CELL_IDENT_LAC:
323 lac = cil.id_list[0].lac;
324 break;
325
326 case CELL_IDENT_CI:
327 case CELL_IDENT_NO_CELL:
328 case CELL_IDENT_BSS:
Harald Welte1f477442018-02-09 01:49:01 +0100329 LOGP(DBSSAP, LOGL_ERROR,
Stefan Sperlingbe7e0692018-03-14 14:00:00 +0100330 "CELL IDENTIFIER does not specify a LAC -- discarding message!\n");
331 return -EINVAL;
332
333 default:
334 LOGP(DBSSAP, LOGL_ERROR,
335 "Unable to parse element CELL IDENTIFIER (unknown cell identification discriminator 0x%x) "
336 "-- discarding message!\n", cil.id_discr);
Harald Weltea172e9e2018-02-09 21:33:24 +0100337 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200338 }
Philipp Maierfbf66102017-04-09 12:32:51 +0200339
340 /* Parse Layer 3 Information element */
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100341 msg->l3h = (uint8_t*)TLVP_VAL(tp, GSM0808_IE_LAYER_3_INFORMATION);
Pau Espin Pedrol02a79d82017-12-15 18:55:43 +0100342 msgb_l3trim(msg, TLVP_LEN(tp, GSM0808_IE_LAYER_3_INFORMATION));
Philipp Maierfbf66102017-04-09 12:32:51 +0200343
Harald Welte5060f562018-03-18 21:55:37 +0100344 if (msgb_l3len(msg) < sizeof(struct gsm48_hdr)) {
345 LOGP(DBSSAP, LOGL_ERROR, "COMPL_L3 with too short L3 (%d) -- discarding\n",
346 msgb_l3len(msg));
347 return -ENODATA;
348 }
349
Philipp Maierfbf66102017-04-09 12:32:51 +0200350 /* Create new subscriber context */
Stefan Sperlingbe7e0692018-03-14 14:00:00 +0100351 conn = subscr_conn_allocate_a(a_conn_info, network, lac, scu, a_conn_info->conn_id);
Philipp Maierfbf66102017-04-09 12:32:51 +0200352
353 /* Handover location update to the MSC code */
Philipp Maierfbf66102017-04-09 12:32:51 +0200354 rc = msc_compl_l3(conn, msg, 0);
Philipp Maier4502f5f2017-09-07 11:39:58 +0200355
Philipp Maierfbf66102017-04-09 12:32:51 +0200356 if (rc == MSC_CONN_ACCEPT) {
Harald Weltef0dc1be2018-02-09 00:37:56 +0100357 LOGP(DMSC, LOGL_INFO, "User has been accepted by MSC.\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200358 return 0;
359 } else if (rc == MSC_CONN_REJECT)
Harald Weltef0dc1be2018-02-09 00:37:56 +0100360 LOGP(DMSC, LOGL_INFO, "User has been rejected by MSC.\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200361 else
Harald Weltef0dc1be2018-02-09 00:37:56 +0100362 LOGP(DMSC, LOGL_INFO, "User has been rejected by MSC (unknown error)\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200363
364 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200365}
366
367/* Endpoint to handle BSSMAP classmark update */
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100368static int bssmap_rx_classmark_upd(struct gsm_subscriber_connection *conn, struct msgb *msg,
369 struct tlv_parsed *tp)
Philipp Maierfbf66102017-04-09 12:32:51 +0200370{
Philipp Maierfbf66102017-04-09 12:32:51 +0200371 const uint8_t *cm2 = NULL;
372 const uint8_t *cm3 = NULL;
373 uint8_t cm2_len = 0;
374 uint8_t cm3_len = 0;
375
Harald Weltefb7ba912018-02-09 01:05:27 +0100376 LOGPCONN(conn, LOGL_DEBUG, "Rx BSSMAP CLASSMARK UPDATE\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200377
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100378 if (!TLVP_PRESENT(tp, GSM0808_IE_CLASSMARK_INFORMATION_T2)) {
Harald Welte6de46592018-02-09 00:53:17 +0100379 LOGPCONN(conn, LOGL_ERROR, "Mandatory Classmark Information Type 2 not present -- discarding message!\n");
Harald Weltea172e9e2018-02-09 21:33:24 +0100380 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200381 }
382
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100383 cm2 = TLVP_VAL(tp, GSM0808_IE_CLASSMARK_INFORMATION_T2);
384 cm2_len = TLVP_LEN(tp, GSM0808_IE_CLASSMARK_INFORMATION_T2);
Philipp Maierfbf66102017-04-09 12:32:51 +0200385
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100386 if (TLVP_PRESENT(tp, GSM0808_IE_CLASSMARK_INFORMATION_T3)) {
387 cm3 = TLVP_VAL(tp, GSM0808_IE_CLASSMARK_INFORMATION_T3);
388 cm3_len = TLVP_LEN(tp, GSM0808_IE_CLASSMARK_INFORMATION_T3);
Philipp Maierfbf66102017-04-09 12:32:51 +0200389 }
390
391 /* Inform MSC about the classmark change */
392 msc_classmark_chg(conn, cm2, cm2_len, cm3, cm3_len);
393
Philipp Maierfbf66102017-04-09 12:32:51 +0200394 return 0;
Philipp Maierfbf66102017-04-09 12:32:51 +0200395}
396
397/* Endpoint to handle BSSMAP cipher mode complete */
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100398static int bssmap_rx_ciph_compl(struct gsm_subscriber_connection *conn, struct msgb *msg,
399 struct tlv_parsed *tp)
Philipp Maierfbf66102017-04-09 12:32:51 +0200400{
401 /* FIXME: The field GSM0808_IE_LAYER_3_MESSAGE_CONTENTS is optional by
402 * means of the specification. So there can be messages without L3 info.
403 * In this case, the code will crash becrause msc_cipher_mode_compl()
404 * is not able to deal with msg = NULL and apperently
405 * msc_cipher_mode_compl() was never meant to be used without L3 data.
406 * This needs to be discussed further! */
407
Philipp Maierfbf66102017-04-09 12:32:51 +0200408 uint8_t alg_id = 1;
409
Harald Weltefb7ba912018-02-09 01:05:27 +0100410 LOGPCONN(conn, LOGL_DEBUG, "Rx BSSMAP CIPHER MODE COMPLETE\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200411
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100412 if (TLVP_PRESENT(tp, GSM0808_IE_CHOSEN_ENCR_ALG)) {
413 alg_id = TLVP_VAL(tp, GSM0808_IE_CHOSEN_ENCR_ALG)[0] - 1;
Philipp Maierfbf66102017-04-09 12:32:51 +0200414 }
415
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100416 if (TLVP_PRESENT(tp, GSM0808_IE_LAYER_3_MESSAGE_CONTENTS)) {
417 msg->l3h = (uint8_t*)TLVP_VAL(tp, GSM0808_IE_LAYER_3_MESSAGE_CONTENTS);
Pau Espin Pedrol02a79d82017-12-15 18:55:43 +0100418 msgb_l3trim(msg, TLVP_LEN(tp, GSM0808_IE_LAYER_3_MESSAGE_CONTENTS));
Philipp Maierfbf66102017-04-09 12:32:51 +0200419 } else {
Philipp Maierfbf66102017-04-09 12:32:51 +0200420 msg = NULL;
421 }
422
Philipp Maier4502f5f2017-09-07 11:39:58 +0200423 /* Hand over cipher mode complete message to the MSC */
Philipp Maierfbf66102017-04-09 12:32:51 +0200424 msc_cipher_mode_compl(conn, msg, alg_id);
425
426 return 0;
Philipp Maierfbf66102017-04-09 12:32:51 +0200427}
428
429/* Endpoint to handle BSSMAP cipher mode reject */
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100430static int bssmap_rx_ciph_rej(struct gsm_subscriber_connection *conn,
431 struct msgb *msg, struct tlv_parsed *tp)
Philipp Maierfbf66102017-04-09 12:32:51 +0200432{
Philipp Maierfbf66102017-04-09 12:32:51 +0200433 uint8_t cause;
434
Harald Weltefb7ba912018-02-09 01:05:27 +0100435 LOGPCONN(conn, LOGL_NOTICE, "RX BSSMAP CIPHER MODE REJECT\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200436
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100437 if (!TLVP_PRESENT(tp, BSS_MAP_MSG_CIPHER_MODE_REJECT)) {
Harald Welte6de46592018-02-09 00:53:17 +0100438 LOGPCONN(conn, LOGL_ERROR, "Cause code is missing -- discarding message!\n");
Harald Weltea172e9e2018-02-09 21:33:24 +0100439 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200440 }
441
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100442 cause = TLVP_VAL(tp, BSS_MAP_MSG_CIPHER_MODE_REJECT)[0];
Harald Welte6de46592018-02-09 00:53:17 +0100443 LOGPCONN(conn, LOGL_NOTICE, "Cipher mode rejection cause: %i\n", cause);
Philipp Maierfbf66102017-04-09 12:32:51 +0200444
445 /* FIXME: Can we do something meaningful here? e.g. report to the
446 * msc code somehow that the cipher mode command has failed. */
447
Philipp Maierfbf66102017-04-09 12:32:51 +0200448 return 0;
Philipp Maierfbf66102017-04-09 12:32:51 +0200449}
450
451/* Endpoint to handle BSSMAP assignment failure */
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100452static int bssmap_rx_ass_fail(struct gsm_subscriber_connection *conn, struct msgb *msg,
453 struct tlv_parsed *tp)
Philipp Maierfbf66102017-04-09 12:32:51 +0200454{
Philipp Maierfbf66102017-04-09 12:32:51 +0200455 uint8_t cause;
456 uint8_t *rr_cause_ptr = NULL;
457 uint8_t rr_cause;
458
Harald Weltefb7ba912018-02-09 01:05:27 +0100459 LOGPCONN(conn, LOGL_NOTICE, "Rx BSSMAP ASSIGNMENT FAILURE message\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200460
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100461 if (!TLVP_PRESENT(tp, GSM0808_IE_CAUSE)) {
Harald Welte6de46592018-02-09 00:53:17 +0100462 LOGPCONN(conn, LOGL_ERROR, "Cause code is missing -- discarding message!\n");
Harald Weltea172e9e2018-02-09 21:33:24 +0100463 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200464 }
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100465 cause = TLVP_VAL(tp, GSM0808_IE_CAUSE)[0];
Philipp Maierfbf66102017-04-09 12:32:51 +0200466
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100467 if (TLVP_PRESENT(tp, GSM0808_IE_RR_CAUSE)) {
468 rr_cause = TLVP_VAL(tp, GSM0808_IE_RR_CAUSE)[0];
Philipp Maierfbf66102017-04-09 12:32:51 +0200469 rr_cause_ptr = &rr_cause;
470 }
471
472 /* FIXME: In AoIP, the Assignment failure will carry also an optional
473 * Codec List (BSS Supported) element. It has to be discussed if we
474 * can ignore this element. If not, The msc_assign_fail() function
475 * call has to change. However msc_assign_fail() does nothing in the
476 * end. So probably we can just leave it as it is. Even for AoIP */
477
478 /* Inform the MSC about the assignment failure event */
479 msc_assign_fail(conn, cause, rr_cause_ptr);
480
Philipp Maierfbf66102017-04-09 12:32:51 +0200481 return 0;
Philipp Maierfbf66102017-04-09 12:32:51 +0200482}
483
484/* Endpoint to handle sapi "n" reject */
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100485static int bssmap_rx_sapi_n_rej(struct gsm_subscriber_connection *conn, struct msgb *msg,
486 struct tlv_parsed *tp)
Philipp Maierfbf66102017-04-09 12:32:51 +0200487{
Philipp Maierfbf66102017-04-09 12:32:51 +0200488 uint8_t dlci;
489
Harald Welte35284462018-02-09 01:31:29 +0100490 LOGPCONN(conn, LOGL_NOTICE, "Rx BSSMAP SAPI-N-REJECT message\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200491
492 /* Note: The MSC code seems not to care about the cause code, but by
493 * the specification it is mandatory, so we check its presence. See
494 * also 3GPP TS 48.008 3.2.1.34 SAPI "n" REJECT */
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100495 if (!TLVP_PRESENT(tp, GSM0808_IE_CAUSE)) {
Harald Welte6de46592018-02-09 00:53:17 +0100496 LOGPCONN(conn, LOGL_ERROR, "Cause code is missing -- discarding message!\n");
Harald Weltea172e9e2018-02-09 21:33:24 +0100497 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200498 }
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100499 if (!TLVP_PRESENT(tp, GSM0808_IE_DLCI)) {
Harald Welte6de46592018-02-09 00:53:17 +0100500 LOGPCONN(conn, LOGL_ERROR, "DLCI is missing -- discarding message!\n");
Harald Weltea172e9e2018-02-09 21:33:24 +0100501 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200502 }
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100503 dlci = TLVP_VAL(tp, GSM0808_IE_DLCI)[0];
Philipp Maierfbf66102017-04-09 12:32:51 +0200504
505 /* Inform the MSC about the sapi "n" reject event */
506 msc_sapi_n_reject(conn, dlci);
507
Philipp Maierfbf66102017-04-09 12:32:51 +0200508 return 0;
Philipp Maierfbf66102017-04-09 12:32:51 +0200509}
510
511/* Endpoint to handle assignment complete */
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100512static int bssmap_rx_ass_compl(struct gsm_subscriber_connection *conn, struct msgb *msg,
513 struct tlv_parsed *tp)
Philipp Maierfbf66102017-04-09 12:32:51 +0200514{
Philipp Maierfbf66102017-04-09 12:32:51 +0200515 struct sockaddr_storage rtp_addr;
516 struct sockaddr_in *rtp_addr_in;
517 int rc;
518
Harald Welte35284462018-02-09 01:31:29 +0100519 LOGPCONN(conn, LOGL_INFO, "Rx BSSMAP ASSIGNMENT COMPLETE message\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200520
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100521 if (!TLVP_PRESENT(tp, GSM0808_IE_AOIP_TRASP_ADDR)) {
Harald Welte6de46592018-02-09 00:53:17 +0100522 LOGPCONN(conn, LOGL_ERROR, "AoIP transport identifier missing -- discarding message!\n");
Harald Weltea172e9e2018-02-09 21:33:24 +0100523 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200524 }
525
526 /* Decode AoIP transport address element */
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100527 rc = gsm0808_dec_aoip_trasp_addr(&rtp_addr, TLVP_VAL(tp, GSM0808_IE_AOIP_TRASP_ADDR),
528 TLVP_LEN(tp, GSM0808_IE_AOIP_TRASP_ADDR));
Philipp Maierfbf66102017-04-09 12:32:51 +0200529 if (rc < 0) {
Harald Welte6de46592018-02-09 00:53:17 +0100530 LOGPCONN(conn, LOGL_ERROR, "Unable to decode aoip transport address.\n");
Harald Weltea172e9e2018-02-09 21:33:24 +0100531 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200532 }
533
534 /* use address / port supplied with the AoIP
535 * transport address element */
536 if (rtp_addr.ss_family == AF_INET) {
537 rtp_addr_in = (struct sockaddr_in *)&rtp_addr;
Philipp Maier621ba032017-11-07 17:19:25 +0100538 msc_mgcp_ass_complete(conn, osmo_ntohs(rtp_addr_in->sin_port), inet_ntoa(rtp_addr_in->sin_addr));
Philipp Maierfbf66102017-04-09 12:32:51 +0200539 } else {
Harald Welte6de46592018-02-09 00:53:17 +0100540 LOGPCONN(conn, LOGL_ERROR, "Unsopported addressing scheme. (supports only IPV4)\n");
Harald Weltea172e9e2018-02-09 21:33:24 +0100541 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200542 }
543
544 /* FIXME: Seems to be related to authentication or,
545 encryption. Is this really in the right place? */
546 msc_rx_sec_mode_compl(conn);
547
Philipp Maierfbf66102017-04-09 12:32:51 +0200548 return 0;
Philipp Maierfbf66102017-04-09 12:32:51 +0200549}
550
551/* Handle incoming connection oriented BSSMAP messages */
552static int rx_bssmap(struct osmo_sccp_user *scu, const struct a_conn_info *a_conn_info, struct msgb *msg)
553{
Harald Weltec27ef652018-02-09 01:23:25 +0100554 struct gsm_subscriber_connection *conn;
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100555 struct tlv_parsed tp;
Pau Espin Pedrol75559282018-02-14 14:12:24 +0100556 int rc;
Harald Weltec27ef652018-02-09 01:23:25 +0100557
Philipp Maierfbf66102017-04-09 12:32:51 +0200558 if (msgb_l3len(msg) < 1) {
Harald Welte1f477442018-02-09 01:49:01 +0100559 LOGP(DBSSAP, LOGL_NOTICE, "Error: No data received -- discarding message!\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200560 return -1;
561 }
562
Pau Espin Pedrol75559282018-02-14 14:12:24 +0100563 rc = tlv_parse(&tp, gsm0808_att_tlvdef(), msg->l3h + 1, msgb_l3len(msg) - 1, 0, 0);
564 if (rc < 0) {
565 LOGP(DBSSAP, LOGL_ERROR, "Failed parsing TLV -- discarding message! %s\n",
566 osmo_hexdump(msg->l3h, msgb_l3len(msg)));
567 return -EINVAL;
568 }
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100569
Harald Weltec27ef652018-02-09 01:23:25 +0100570 /* Only message types allowed without a 'conn' */
571 switch (msg->l3h[0]) {
572 case BSS_MAP_MSG_COMPLETE_LAYER_3:
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100573 return bssmap_rx_l3_compl(scu, a_conn_info, msg, &tp);
Harald Weltec27ef652018-02-09 01:23:25 +0100574 case BSS_MAP_MSG_CLEAR_COMPLETE:
575 return bssmap_rx_clear_complete(scu, a_conn_info, msg);
576 default:
577 break;
578 }
579
580 conn = subscr_conn_lookup_a(a_conn_info->network, a_conn_info->conn_id);
581 if (!conn) {
Harald Welte1f477442018-02-09 01:49:01 +0100582 LOGP(DBSSAP, LOGL_ERROR, "Couldn't find subscr_conn for conn_id=%d\n", a_conn_info->conn_id);
Harald Weltec27ef652018-02-09 01:23:25 +0100583 return -EINVAL;
584 }
585
586 LOGPCONN(conn, LOGL_DEBUG, "Rx BSSMAP DT1 %s\n", gsm0808_bssmap_name(msg->l3h[0]));
Philipp Maierfbf66102017-04-09 12:32:51 +0200587
588 switch (msg->l3h[0]) {
589 case BSS_MAP_MSG_CLEAR_RQST:
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100590 return bssmap_rx_clear_rqst(conn, msg, &tp);
Philipp Maierfbf66102017-04-09 12:32:51 +0200591 case BSS_MAP_MSG_CLASSMARK_UPDATE:
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100592 return bssmap_rx_classmark_upd(conn, msg, &tp);
Philipp Maierfbf66102017-04-09 12:32:51 +0200593 case BSS_MAP_MSG_CIPHER_MODE_COMPLETE:
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100594 return bssmap_rx_ciph_compl(conn, msg, &tp);
Philipp Maierfbf66102017-04-09 12:32:51 +0200595 case BSS_MAP_MSG_CIPHER_MODE_REJECT:
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100596 return bssmap_rx_ciph_rej(conn, msg, &tp);
Philipp Maierfbf66102017-04-09 12:32:51 +0200597 case BSS_MAP_MSG_ASSIGMENT_FAILURE:
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100598 return bssmap_rx_ass_fail(conn, msg, &tp);
Philipp Maierfbf66102017-04-09 12:32:51 +0200599 case BSS_MAP_MSG_SAPI_N_REJECT:
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100600 return bssmap_rx_sapi_n_rej(conn, msg, &tp);
Philipp Maierfbf66102017-04-09 12:32:51 +0200601 case BSS_MAP_MSG_ASSIGMENT_COMPLETE:
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100602 return bssmap_rx_ass_compl(conn, msg, &tp);
Philipp Maierfbf66102017-04-09 12:32:51 +0200603 default:
Harald Weltec27ef652018-02-09 01:23:25 +0100604 LOGPCONN(conn, LOGL_ERROR, "Unimplemented msg type: %s\n", gsm0808_bssmap_name(msg->l3h[0]));
Philipp Maierfbf66102017-04-09 12:32:51 +0200605 return -EINVAL;
606 }
607
608 return -EINVAL;
609}
610
Harald Weltea172e9e2018-02-09 21:33:24 +0100611/* Endpoint to handle regular BSSAP DTAP messages. No ownership of 'msg' is passed on! */
Philipp Maierfbf66102017-04-09 12:32:51 +0200612static int rx_dtap(const struct osmo_sccp_user *scu, const struct a_conn_info *a_conn_info, struct msgb *msg)
613{
614 struct gsm_network *network = a_conn_info->network;
615 struct gsm_subscriber_connection *conn;
616
617 conn = subscr_conn_lookup_a(network, a_conn_info->conn_id);
618 if (!conn) {
Philipp Maierfbf66102017-04-09 12:32:51 +0200619 return -EINVAL;
620 }
621
Harald Weltefb7ba912018-02-09 01:05:27 +0100622 LOGPCONN(conn, LOGL_DEBUG, "Rx DTAP %s\n", msgb_hexdump_l2(msg));
Philipp Maierfbf66102017-04-09 12:32:51 +0200623
624 /* msc_dtap expects the dtap payload in l3h */
625 msg->l3h = msg->l2h + 3;
626
Philipp Maier4502f5f2017-09-07 11:39:58 +0200627 /* Forward dtap payload into the msc */
Philipp Maierfbf66102017-04-09 12:32:51 +0200628 msc_dtap(conn, conn->a.conn_id, msg);
629
630 return 0;
631}
632
Harald Weltea172e9e2018-02-09 21:33:24 +0100633/* Handle incoming connection oriented messages. No ownership of 'msg' is passed on! */
Neels Hofmeyrc1d69252017-12-18 04:06:04 +0100634int a_sccp_rx_dt(struct osmo_sccp_user *scu, const struct a_conn_info *a_conn_info, struct msgb *msg)
Philipp Maierfbf66102017-04-09 12:32:51 +0200635{
636 OSMO_ASSERT(scu);
637 OSMO_ASSERT(a_conn_info);
638 OSMO_ASSERT(msg);
639
Philipp Maierfbf66102017-04-09 12:32:51 +0200640 if (msgb_l2len(msg) < sizeof(struct bssmap_header)) {
Harald Welte1f477442018-02-09 01:49:01 +0100641 LOGP(DBSSAP, LOGL_NOTICE, "The header is too short -- discarding message!\n");
Philipp Maier4502f5f2017-09-07 11:39:58 +0200642 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200643 }
644
645 switch (msg->l2h[0]) {
646 case BSSAP_MSG_BSS_MANAGEMENT:
647 msg->l3h = &msg->l2h[sizeof(struct bssmap_header)];
648 return rx_bssmap(scu, a_conn_info, msg);
Philipp Maierfbf66102017-04-09 12:32:51 +0200649 case BSSAP_MSG_DTAP:
650 return rx_dtap(scu, a_conn_info, msg);
Philipp Maierfbf66102017-04-09 12:32:51 +0200651 default:
Harald Welte1f477442018-02-09 01:49:01 +0100652 LOGP(DBSSAP, LOGL_ERROR, "Unimplemented BSSAP msg type: %s\n", gsm0808_bssap_name(msg->l2h[0]));
Philipp Maierfbf66102017-04-09 12:32:51 +0200653 return -EINVAL;
654 }
655
656 return -EINVAL;
657}