blob: 7b867645f0bfc44491142ae56ab097b943a4d23b [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);
Philipp Maierfbf66102017-04-09 12:32:51 +0200124}
125
126/* Endpoint to handle BSSMAP reset acknowlegement */
127static void bssmap_rx_reset_ack(const struct osmo_sccp_user *scu, const struct a_conn_info *a_conn_info,
128 struct msgb *msg)
129{
130
131 struct gsm_network *network = a_conn_info->network;
132 struct osmo_ss7_instance *ss7;
133
134 ss7 = osmo_ss7_instance_find(network->a.cs7_instance);
135 OSMO_ASSERT(ss7);
136
Harald Welte54a10ef2018-02-09 00:09:16 +0100137 if (a_conn_info->bsc->reset == NULL) {
Harald Welte1f477442018-02-09 01:49:01 +0100138 LOGP(DBSSAP, LOGL_ERROR, "Received RESET ACK from an unknown BSC %s, ignoring...\n",
Harald Welte54a10ef2018-02-09 00:09:16 +0100139 osmo_sccp_addr_name(ss7, &a_conn_info->bsc->bsc_addr));
Harald Weltea172e9e2018-02-09 21:33:24 +0100140 return;
Philipp Maierfbf66102017-04-09 12:32:51 +0200141 }
142
Harald Welte1f477442018-02-09 01:49:01 +0100143 LOGP(DBSSAP, LOGL_NOTICE, "Received RESET ACK from BSC %s\n",
Harald Welte54a10ef2018-02-09 00:09:16 +0100144 osmo_sccp_addr_name(ss7, &a_conn_info->bsc->bsc_addr));
Philipp Maierfbf66102017-04-09 12:32:51 +0200145
146 /* Confirm that we managed to get the reset ack message
147 * towards the connection reset logic */
Harald Welte54a10ef2018-02-09 00:09:16 +0100148 a_reset_ack_confirm(a_conn_info->bsc->reset);
Philipp Maierfbf66102017-04-09 12:32:51 +0200149}
150
151/* Handle UNITDATA BSSMAP messages */
152static void bssmap_rcvmsg_udt(struct osmo_sccp_user *scu, const struct a_conn_info *a_conn_info, struct msgb *msg)
153{
154 /* Note: When in the MSC role, RESET ACK is the only valid message that
155 * can be received via UNITDATA */
156
157 if (msgb_l3len(msg) < 1) {
Harald Welte1f477442018-02-09 01:49:01 +0100158 LOGP(DBSSAP, LOGL_NOTICE, "Error: No data received -- discarding message!\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200159 return;
160 }
161
Harald Welte1f477442018-02-09 01:49:01 +0100162 LOGP(DBSSAP, LOGL_DEBUG, "Rx BSSMAP UDT %s\n", gsm0808_bssmap_name(msg->l3h[0]));
Philipp Maierfbf66102017-04-09 12:32:51 +0200163
164 switch (msg->l3h[0]) {
165 case BSS_MAP_MSG_RESET:
166 bssmap_rx_reset(scu, a_conn_info, msg);
167 break;
168 case BSS_MAP_MSG_RESET_ACKNOWLEDGE:
169 bssmap_rx_reset_ack(scu, a_conn_info, msg);
170 break;
171 default:
Harald Welte1f477442018-02-09 01:49:01 +0100172 LOGP(DBSSAP, LOGL_NOTICE, "Unimplemented message format: %s -- message discarded!\n",
Philipp Maierfbf66102017-04-09 12:32:51 +0200173 gsm0808_bssmap_name(msg->l3h[0]));
Philipp Maierfbf66102017-04-09 12:32:51 +0200174 }
175}
176
177/* Receive incoming connection less data messages via sccp */
Neels Hofmeyrc1d69252017-12-18 04:06:04 +0100178void 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 +0200179{
180 /* Note: The only valid message type that can be received
181 * via UNITDATA are BSS Management messages */
182 struct bssmap_header *bs;
183
184 OSMO_ASSERT(scu);
185 OSMO_ASSERT(a_conn_info);
186 OSMO_ASSERT(msg);
187
Harald Welte1f477442018-02-09 01:49:01 +0100188 LOGP(DBSSAP, LOGL_DEBUG, "Rx BSSMAP UDT: %s\n", msgb_hexdump_l2(msg));
Philipp Maierfbf66102017-04-09 12:32:51 +0200189
190 if (msgb_l2len(msg) < sizeof(*bs)) {
Harald Welte1f477442018-02-09 01:49:01 +0100191 LOGP(DBSSAP, LOGL_ERROR, "Error: Header is too short -- discarding message!\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200192 return;
193 }
194
195 bs = (struct bssmap_header *)msgb_l2(msg);
196 if (bs->length < msgb_l2len(msg) - sizeof(*bs)) {
Harald Welte1f477442018-02-09 01:49:01 +0100197 LOGP(DBSSAP, LOGL_ERROR, "Error: Message is too short -- discarding message!\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200198 return;
199 }
200
201 switch (bs->type) {
202 case BSSAP_MSG_BSS_MANAGEMENT:
203 msg->l3h = &msg->l2h[sizeof(struct bssmap_header)];
204 bssmap_rcvmsg_udt(scu, a_conn_info, msg);
205 break;
206 default:
Harald Welte1f477442018-02-09 01:49:01 +0100207 LOGP(DBSSAP, LOGL_ERROR,
Philipp Maierfbf66102017-04-09 12:32:51 +0200208 "Error: Unimplemented message type: %s -- message discarded!\n", gsm0808_bssmap_name(bs->type));
Philipp Maierfbf66102017-04-09 12:32:51 +0200209 }
210}
211
212/*
213 * BSSMAP handling for connection oriented data
214 */
215
216/* Endpoint to handle BSSMAP clear request */
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100217static int bssmap_rx_clear_rqst(struct gsm_subscriber_connection *conn,
218 struct msgb *msg, struct tlv_parsed *tp)
Philipp Maierfbf66102017-04-09 12:32:51 +0200219{
Philipp Maierfbf66102017-04-09 12:32:51 +0200220 int rc;
221 struct msgb *msg_resp;
222 uint8_t cause;
Philipp Maierfbf66102017-04-09 12:32:51 +0200223
Harald Welte35284462018-02-09 01:31:29 +0100224 LOGPCONN(conn, LOGL_INFO, "Rx BSSMAP CLEAR REQUEST\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200225
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100226 if (!TLVP_PRESENT(tp, GSM0808_IE_CAUSE)) {
Harald Welte1f477442018-02-09 01:49:01 +0100227 LOGP(DBSSAP, LOGL_ERROR, "Cause code is missing -- discarding message!\n");
Harald Weltea172e9e2018-02-09 21:33:24 +0100228 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200229 }
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100230 cause = TLVP_VAL(tp, GSM0808_IE_CAUSE)[0];
Philipp Maierfbf66102017-04-09 12:32:51 +0200231
232 /* Respond with clear command */
233 msg_resp = gsm0808_create_clear_command(GSM0808_CAUSE_CALL_CONTROL);
Harald Weltec27ef652018-02-09 01:23:25 +0100234 rc = osmo_sccp_tx_data_msg(conn->a.scu, conn->a.conn_id, msg_resp);
Philipp Maierfbf66102017-04-09 12:32:51 +0200235
Philipp Maierfbf66102017-04-09 12:32:51 +0200236 msc_clear_request(conn, cause);
237
Philipp Maierfbf66102017-04-09 12:32:51 +0200238 return rc;
Philipp Maierfbf66102017-04-09 12:32:51 +0200239}
240
241/* Endpoint to handle BSSMAP clear complete */
Harald Weltec27ef652018-02-09 01:23:25 +0100242static int bssmap_rx_clear_complete(struct osmo_sccp_user *scu,
243 const struct a_conn_info *a_conn_info, struct msgb *msg)
Philipp Maierfbf66102017-04-09 12:32:51 +0200244{
245 int rc;
246
Pau Espin Pedrol9f055f52018-02-14 14:11:58 +0100247 LOGP(DMSC, LOGL_INFO, "Rx BSSMAP CLEAR COMPLETE, releasing SCCP connection\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200248 rc = osmo_sccp_tx_disconn(scu, a_conn_info->conn_id,
Harald Welte54a10ef2018-02-09 00:09:16 +0100249 NULL, SCCP_RELEASE_CAUSE_END_USER_ORIGINATED);
Philipp Maierfbf66102017-04-09 12:32:51 +0200250
251 /* Remove the record from the list with active connections. */
252 a_delete_bsc_con(a_conn_info->conn_id);
253
Philipp Maierfbf66102017-04-09 12:32:51 +0200254 return rc;
255}
256
257/* Endpoint to handle layer 3 complete messages */
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100258static int bssmap_rx_l3_compl(struct osmo_sccp_user *scu, const struct a_conn_info *a_conn_info,
259 struct msgb *msg, struct tlv_parsed *tp)
Philipp Maierfbf66102017-04-09 12:32:51 +0200260{
Philipp Maierfbf66102017-04-09 12:32:51 +0200261 struct {
262 uint8_t ident;
263 struct gsm48_loc_area_id lai;
264 uint16_t ci;
265 } __attribute__ ((packed)) lai_ci;
Neels Hofmeyr379d5792018-02-22 04:04:54 +0100266 struct osmo_location_area_id lai;
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
285 /* Parse Cell ID element */
286 /* FIXME: Encapsulate this in a parser/generator function inside
287 * libosmocore, add support for all specified cell identification
288 * discriminators (see 3GPP ts 3.2.2.17 Cell Identifier) */
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100289 data_length = TLVP_LEN(tp, GSM0808_IE_CELL_IDENTIFIER);
290 data = TLVP_VAL(tp, GSM0808_IE_CELL_IDENTIFIER);
Philipp Maierfbf66102017-04-09 12:32:51 +0200291 if (sizeof(lai_ci) != data_length) {
Harald Welte1f477442018-02-09 01:49:01 +0100292 LOGP(DBSSAP, LOGL_ERROR,
Philipp Maierfbf66102017-04-09 12:32:51 +0200293 "Unable to parse element CELL IDENTIFIER (wrong field length) -- discarding message!\n");
Harald Weltea172e9e2018-02-09 21:33:24 +0100294 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200295 }
296 memcpy(&lai_ci, data, sizeof(lai_ci));
297 if (lai_ci.ident != CELL_IDENT_WHOLE_GLOBAL) {
Harald Welte1f477442018-02-09 01:49:01 +0100298 LOGP(DBSSAP, LOGL_ERROR,
Philipp Maierfbf66102017-04-09 12:32:51 +0200299 "Unable to parse element CELL IDENTIFIER (wrong cell identification discriminator) -- discarding message!\n");
Harald Weltea172e9e2018-02-09 21:33:24 +0100300 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200301 }
Neels Hofmeyr379d5792018-02-22 04:04:54 +0100302 gsm48_decode_lai2(&lai_ci.lai, &lai);
303 /* FIXME: Actually compare the MCC-MNC to the local network config?? */
Philipp Maierfbf66102017-04-09 12:32:51 +0200304
305 /* Parse Layer 3 Information element */
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100306 msg->l3h = (uint8_t*)TLVP_VAL(tp, GSM0808_IE_LAYER_3_INFORMATION);
Pau Espin Pedrol02a79d82017-12-15 18:55:43 +0100307 msgb_l3trim(msg, TLVP_LEN(tp, GSM0808_IE_LAYER_3_INFORMATION));
Philipp Maierfbf66102017-04-09 12:32:51 +0200308
309 /* Create new subscriber context */
Neels Hofmeyr379d5792018-02-22 04:04:54 +0100310 conn = subscr_conn_allocate_a(a_conn_info, network, lai.lac, scu, a_conn_info->conn_id);
Philipp Maierfbf66102017-04-09 12:32:51 +0200311
312 /* Handover location update to the MSC code */
Philipp Maierfbf66102017-04-09 12:32:51 +0200313 rc = msc_compl_l3(conn, msg, 0);
Philipp Maier4502f5f2017-09-07 11:39:58 +0200314
Philipp Maierfbf66102017-04-09 12:32:51 +0200315 if (rc == MSC_CONN_ACCEPT) {
Harald Weltef0dc1be2018-02-09 00:37:56 +0100316 LOGP(DMSC, LOGL_INFO, "User has been accepted by MSC.\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200317 return 0;
318 } else if (rc == MSC_CONN_REJECT)
Harald Weltef0dc1be2018-02-09 00:37:56 +0100319 LOGP(DMSC, LOGL_INFO, "User has been rejected by MSC.\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200320 else
Harald Weltef0dc1be2018-02-09 00:37:56 +0100321 LOGP(DMSC, LOGL_INFO, "User has been rejected by MSC (unknown error)\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200322
323 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200324}
325
326/* Endpoint to handle BSSMAP classmark update */
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100327static int bssmap_rx_classmark_upd(struct gsm_subscriber_connection *conn, struct msgb *msg,
328 struct tlv_parsed *tp)
Philipp Maierfbf66102017-04-09 12:32:51 +0200329{
Philipp Maierfbf66102017-04-09 12:32:51 +0200330 const uint8_t *cm2 = NULL;
331 const uint8_t *cm3 = NULL;
332 uint8_t cm2_len = 0;
333 uint8_t cm3_len = 0;
334
Harald Weltefb7ba912018-02-09 01:05:27 +0100335 LOGPCONN(conn, LOGL_DEBUG, "Rx BSSMAP CLASSMARK UPDATE\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200336
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100337 if (!TLVP_PRESENT(tp, GSM0808_IE_CLASSMARK_INFORMATION_T2)) {
Harald Welte6de46592018-02-09 00:53:17 +0100338 LOGPCONN(conn, LOGL_ERROR, "Mandatory Classmark Information Type 2 not present -- discarding message!\n");
Harald Weltea172e9e2018-02-09 21:33:24 +0100339 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200340 }
341
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100342 cm2 = TLVP_VAL(tp, GSM0808_IE_CLASSMARK_INFORMATION_T2);
343 cm2_len = TLVP_LEN(tp, GSM0808_IE_CLASSMARK_INFORMATION_T2);
Philipp Maierfbf66102017-04-09 12:32:51 +0200344
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100345 if (TLVP_PRESENT(tp, GSM0808_IE_CLASSMARK_INFORMATION_T3)) {
346 cm3 = TLVP_VAL(tp, GSM0808_IE_CLASSMARK_INFORMATION_T3);
347 cm3_len = TLVP_LEN(tp, GSM0808_IE_CLASSMARK_INFORMATION_T3);
Philipp Maierfbf66102017-04-09 12:32:51 +0200348 }
349
350 /* Inform MSC about the classmark change */
351 msc_classmark_chg(conn, cm2, cm2_len, cm3, cm3_len);
352
Philipp Maierfbf66102017-04-09 12:32:51 +0200353 return 0;
Philipp Maierfbf66102017-04-09 12:32:51 +0200354}
355
356/* Endpoint to handle BSSMAP cipher mode complete */
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100357static int bssmap_rx_ciph_compl(struct gsm_subscriber_connection *conn, struct msgb *msg,
358 struct tlv_parsed *tp)
Philipp Maierfbf66102017-04-09 12:32:51 +0200359{
360 /* FIXME: The field GSM0808_IE_LAYER_3_MESSAGE_CONTENTS is optional by
361 * means of the specification. So there can be messages without L3 info.
362 * In this case, the code will crash becrause msc_cipher_mode_compl()
363 * is not able to deal with msg = NULL and apperently
364 * msc_cipher_mode_compl() was never meant to be used without L3 data.
365 * This needs to be discussed further! */
366
Philipp Maierfbf66102017-04-09 12:32:51 +0200367 uint8_t alg_id = 1;
368
Harald Weltefb7ba912018-02-09 01:05:27 +0100369 LOGPCONN(conn, LOGL_DEBUG, "Rx BSSMAP CIPHER MODE COMPLETE\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200370
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100371 if (TLVP_PRESENT(tp, GSM0808_IE_CHOSEN_ENCR_ALG)) {
372 alg_id = TLVP_VAL(tp, GSM0808_IE_CHOSEN_ENCR_ALG)[0] - 1;
Philipp Maierfbf66102017-04-09 12:32:51 +0200373 }
374
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100375 if (TLVP_PRESENT(tp, GSM0808_IE_LAYER_3_MESSAGE_CONTENTS)) {
376 msg->l3h = (uint8_t*)TLVP_VAL(tp, GSM0808_IE_LAYER_3_MESSAGE_CONTENTS);
Pau Espin Pedrol02a79d82017-12-15 18:55:43 +0100377 msgb_l3trim(msg, TLVP_LEN(tp, GSM0808_IE_LAYER_3_MESSAGE_CONTENTS));
Philipp Maierfbf66102017-04-09 12:32:51 +0200378 } else {
Philipp Maierfbf66102017-04-09 12:32:51 +0200379 msg = NULL;
380 }
381
Philipp Maier4502f5f2017-09-07 11:39:58 +0200382 /* Hand over cipher mode complete message to the MSC */
Philipp Maierfbf66102017-04-09 12:32:51 +0200383 msc_cipher_mode_compl(conn, msg, alg_id);
384
385 return 0;
Philipp Maierfbf66102017-04-09 12:32:51 +0200386}
387
388/* Endpoint to handle BSSMAP cipher mode reject */
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100389static int bssmap_rx_ciph_rej(struct gsm_subscriber_connection *conn,
390 struct msgb *msg, struct tlv_parsed *tp)
Philipp Maierfbf66102017-04-09 12:32:51 +0200391{
Philipp Maierfbf66102017-04-09 12:32:51 +0200392 uint8_t cause;
393
Harald Weltefb7ba912018-02-09 01:05:27 +0100394 LOGPCONN(conn, LOGL_NOTICE, "RX BSSMAP CIPHER MODE REJECT\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200395
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100396 if (!TLVP_PRESENT(tp, BSS_MAP_MSG_CIPHER_MODE_REJECT)) {
Harald Welte6de46592018-02-09 00:53:17 +0100397 LOGPCONN(conn, LOGL_ERROR, "Cause code is missing -- discarding message!\n");
Harald Weltea172e9e2018-02-09 21:33:24 +0100398 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200399 }
400
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100401 cause = TLVP_VAL(tp, BSS_MAP_MSG_CIPHER_MODE_REJECT)[0];
Harald Welte6de46592018-02-09 00:53:17 +0100402 LOGPCONN(conn, LOGL_NOTICE, "Cipher mode rejection cause: %i\n", cause);
Philipp Maierfbf66102017-04-09 12:32:51 +0200403
404 /* FIXME: Can we do something meaningful here? e.g. report to the
405 * msc code somehow that the cipher mode command has failed. */
406
Philipp Maierfbf66102017-04-09 12:32:51 +0200407 return 0;
Philipp Maierfbf66102017-04-09 12:32:51 +0200408}
409
410/* Endpoint to handle BSSMAP assignment failure */
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100411static int bssmap_rx_ass_fail(struct gsm_subscriber_connection *conn, struct msgb *msg,
412 struct tlv_parsed *tp)
Philipp Maierfbf66102017-04-09 12:32:51 +0200413{
Philipp Maierfbf66102017-04-09 12:32:51 +0200414 uint8_t cause;
415 uint8_t *rr_cause_ptr = NULL;
416 uint8_t rr_cause;
417
Harald Weltefb7ba912018-02-09 01:05:27 +0100418 LOGPCONN(conn, LOGL_NOTICE, "Rx BSSMAP ASSIGNMENT FAILURE message\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200419
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100420 if (!TLVP_PRESENT(tp, GSM0808_IE_CAUSE)) {
Harald Welte6de46592018-02-09 00:53:17 +0100421 LOGPCONN(conn, LOGL_ERROR, "Cause code is missing -- discarding message!\n");
Harald Weltea172e9e2018-02-09 21:33:24 +0100422 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200423 }
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100424 cause = TLVP_VAL(tp, GSM0808_IE_CAUSE)[0];
Philipp Maierfbf66102017-04-09 12:32:51 +0200425
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100426 if (TLVP_PRESENT(tp, GSM0808_IE_RR_CAUSE)) {
427 rr_cause = TLVP_VAL(tp, GSM0808_IE_RR_CAUSE)[0];
Philipp Maierfbf66102017-04-09 12:32:51 +0200428 rr_cause_ptr = &rr_cause;
429 }
430
431 /* FIXME: In AoIP, the Assignment failure will carry also an optional
432 * Codec List (BSS Supported) element. It has to be discussed if we
433 * can ignore this element. If not, The msc_assign_fail() function
434 * call has to change. However msc_assign_fail() does nothing in the
435 * end. So probably we can just leave it as it is. Even for AoIP */
436
437 /* Inform the MSC about the assignment failure event */
438 msc_assign_fail(conn, cause, rr_cause_ptr);
439
Philipp Maierfbf66102017-04-09 12:32:51 +0200440 return 0;
Philipp Maierfbf66102017-04-09 12:32:51 +0200441}
442
443/* Endpoint to handle sapi "n" reject */
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100444static int bssmap_rx_sapi_n_rej(struct gsm_subscriber_connection *conn, struct msgb *msg,
445 struct tlv_parsed *tp)
Philipp Maierfbf66102017-04-09 12:32:51 +0200446{
Philipp Maierfbf66102017-04-09 12:32:51 +0200447 uint8_t dlci;
448
Harald Welte35284462018-02-09 01:31:29 +0100449 LOGPCONN(conn, LOGL_NOTICE, "Rx BSSMAP SAPI-N-REJECT message\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200450
451 /* Note: The MSC code seems not to care about the cause code, but by
452 * the specification it is mandatory, so we check its presence. See
453 * also 3GPP TS 48.008 3.2.1.34 SAPI "n" REJECT */
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100454 if (!TLVP_PRESENT(tp, GSM0808_IE_CAUSE)) {
Harald Welte6de46592018-02-09 00:53:17 +0100455 LOGPCONN(conn, LOGL_ERROR, "Cause code is missing -- discarding message!\n");
Harald Weltea172e9e2018-02-09 21:33:24 +0100456 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200457 }
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100458 if (!TLVP_PRESENT(tp, GSM0808_IE_DLCI)) {
Harald Welte6de46592018-02-09 00:53:17 +0100459 LOGPCONN(conn, LOGL_ERROR, "DLCI is missing -- discarding message!\n");
Harald Weltea172e9e2018-02-09 21:33:24 +0100460 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200461 }
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100462 dlci = TLVP_VAL(tp, GSM0808_IE_DLCI)[0];
Philipp Maierfbf66102017-04-09 12:32:51 +0200463
464 /* Inform the MSC about the sapi "n" reject event */
465 msc_sapi_n_reject(conn, dlci);
466
Philipp Maierfbf66102017-04-09 12:32:51 +0200467 return 0;
Philipp Maierfbf66102017-04-09 12:32:51 +0200468}
469
470/* Endpoint to handle assignment complete */
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100471static int bssmap_rx_ass_compl(struct gsm_subscriber_connection *conn, struct msgb *msg,
472 struct tlv_parsed *tp)
Philipp Maierfbf66102017-04-09 12:32:51 +0200473{
Neels Hofmeyr6c8afe12017-09-04 01:03:58 +0200474 struct mgcp_client *mgcp;
Philipp Maierfbf66102017-04-09 12:32:51 +0200475 struct sockaddr_storage rtp_addr;
476 struct sockaddr_in *rtp_addr_in;
477 int rc;
478
Neels Hofmeyr6c8afe12017-09-04 01:03:58 +0200479 mgcp = conn->network->mgw.client;
Philipp Maierfbf66102017-04-09 12:32:51 +0200480 OSMO_ASSERT(mgcp);
481
Harald Welte35284462018-02-09 01:31:29 +0100482 LOGPCONN(conn, LOGL_INFO, "Rx BSSMAP ASSIGNMENT COMPLETE message\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200483
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100484 if (!TLVP_PRESENT(tp, GSM0808_IE_AOIP_TRASP_ADDR)) {
Harald Welte6de46592018-02-09 00:53:17 +0100485 LOGPCONN(conn, LOGL_ERROR, "AoIP transport identifier missing -- discarding message!\n");
Harald Weltea172e9e2018-02-09 21:33:24 +0100486 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200487 }
488
489 /* Decode AoIP transport address element */
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100490 rc = gsm0808_dec_aoip_trasp_addr(&rtp_addr, TLVP_VAL(tp, GSM0808_IE_AOIP_TRASP_ADDR),
491 TLVP_LEN(tp, GSM0808_IE_AOIP_TRASP_ADDR));
Philipp Maierfbf66102017-04-09 12:32:51 +0200492 if (rc < 0) {
Harald Welte6de46592018-02-09 00:53:17 +0100493 LOGPCONN(conn, LOGL_ERROR, "Unable to decode aoip transport address.\n");
Harald Weltea172e9e2018-02-09 21:33:24 +0100494 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200495 }
496
497 /* use address / port supplied with the AoIP
498 * transport address element */
499 if (rtp_addr.ss_family == AF_INET) {
500 rtp_addr_in = (struct sockaddr_in *)&rtp_addr;
Philipp Maier621ba032017-11-07 17:19:25 +0100501 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 +0200502 } else {
Harald Welte6de46592018-02-09 00:53:17 +0100503 LOGPCONN(conn, LOGL_ERROR, "Unsopported addressing scheme. (supports only IPV4)\n");
Harald Weltea172e9e2018-02-09 21:33:24 +0100504 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200505 }
506
507 /* FIXME: Seems to be related to authentication or,
508 encryption. Is this really in the right place? */
509 msc_rx_sec_mode_compl(conn);
510
Philipp Maierfbf66102017-04-09 12:32:51 +0200511 return 0;
Philipp Maierfbf66102017-04-09 12:32:51 +0200512}
513
514/* Handle incoming connection oriented BSSMAP messages */
515static int rx_bssmap(struct osmo_sccp_user *scu, const struct a_conn_info *a_conn_info, struct msgb *msg)
516{
Harald Weltec27ef652018-02-09 01:23:25 +0100517 struct gsm_subscriber_connection *conn;
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100518 struct tlv_parsed tp;
Pau Espin Pedrol75559282018-02-14 14:12:24 +0100519 int rc;
Harald Weltec27ef652018-02-09 01:23:25 +0100520
Philipp Maierfbf66102017-04-09 12:32:51 +0200521 if (msgb_l3len(msg) < 1) {
Harald Welte1f477442018-02-09 01:49:01 +0100522 LOGP(DBSSAP, LOGL_NOTICE, "Error: No data received -- discarding message!\n");
Philipp Maierfbf66102017-04-09 12:32:51 +0200523 return -1;
524 }
525
Pau Espin Pedrol75559282018-02-14 14:12:24 +0100526 rc = tlv_parse(&tp, gsm0808_att_tlvdef(), msg->l3h + 1, msgb_l3len(msg) - 1, 0, 0);
527 if (rc < 0) {
528 LOGP(DBSSAP, LOGL_ERROR, "Failed parsing TLV -- discarding message! %s\n",
529 osmo_hexdump(msg->l3h, msgb_l3len(msg)));
530 return -EINVAL;
531 }
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100532
Harald Weltec27ef652018-02-09 01:23:25 +0100533 /* Only message types allowed without a 'conn' */
534 switch (msg->l3h[0]) {
535 case BSS_MAP_MSG_COMPLETE_LAYER_3:
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100536 return bssmap_rx_l3_compl(scu, a_conn_info, msg, &tp);
Harald Weltec27ef652018-02-09 01:23:25 +0100537 case BSS_MAP_MSG_CLEAR_COMPLETE:
538 return bssmap_rx_clear_complete(scu, a_conn_info, msg);
539 default:
540 break;
541 }
542
543 conn = subscr_conn_lookup_a(a_conn_info->network, a_conn_info->conn_id);
544 if (!conn) {
Harald Welte1f477442018-02-09 01:49:01 +0100545 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 +0100546 return -EINVAL;
547 }
548
549 LOGPCONN(conn, LOGL_DEBUG, "Rx BSSMAP DT1 %s\n", gsm0808_bssmap_name(msg->l3h[0]));
Philipp Maierfbf66102017-04-09 12:32:51 +0200550
551 switch (msg->l3h[0]) {
552 case BSS_MAP_MSG_CLEAR_RQST:
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100553 return bssmap_rx_clear_rqst(conn, msg, &tp);
Philipp Maierfbf66102017-04-09 12:32:51 +0200554 case BSS_MAP_MSG_CLASSMARK_UPDATE:
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100555 return bssmap_rx_classmark_upd(conn, msg, &tp);
Philipp Maierfbf66102017-04-09 12:32:51 +0200556 case BSS_MAP_MSG_CIPHER_MODE_COMPLETE:
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100557 return bssmap_rx_ciph_compl(conn, msg, &tp);
Philipp Maierfbf66102017-04-09 12:32:51 +0200558 case BSS_MAP_MSG_CIPHER_MODE_REJECT:
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100559 return bssmap_rx_ciph_rej(conn, msg, &tp);
Philipp Maierfbf66102017-04-09 12:32:51 +0200560 case BSS_MAP_MSG_ASSIGMENT_FAILURE:
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100561 return bssmap_rx_ass_fail(conn, msg, &tp);
Philipp Maierfbf66102017-04-09 12:32:51 +0200562 case BSS_MAP_MSG_SAPI_N_REJECT:
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100563 return bssmap_rx_sapi_n_rej(conn, msg, &tp);
Philipp Maierfbf66102017-04-09 12:32:51 +0200564 case BSS_MAP_MSG_ASSIGMENT_COMPLETE:
Pau Espin Pedrol31776ff2018-02-14 12:13:35 +0100565 return bssmap_rx_ass_compl(conn, msg, &tp);
Philipp Maierfbf66102017-04-09 12:32:51 +0200566 default:
Harald Weltec27ef652018-02-09 01:23:25 +0100567 LOGPCONN(conn, LOGL_ERROR, "Unimplemented msg type: %s\n", gsm0808_bssmap_name(msg->l3h[0]));
Philipp Maierfbf66102017-04-09 12:32:51 +0200568 return -EINVAL;
569 }
570
571 return -EINVAL;
572}
573
Harald Weltea172e9e2018-02-09 21:33:24 +0100574/* Endpoint to handle regular BSSAP DTAP messages. No ownership of 'msg' is passed on! */
Philipp Maierfbf66102017-04-09 12:32:51 +0200575static int rx_dtap(const struct osmo_sccp_user *scu, const struct a_conn_info *a_conn_info, struct msgb *msg)
576{
577 struct gsm_network *network = a_conn_info->network;
578 struct gsm_subscriber_connection *conn;
579
580 conn = subscr_conn_lookup_a(network, a_conn_info->conn_id);
581 if (!conn) {
Philipp Maierfbf66102017-04-09 12:32:51 +0200582 return -EINVAL;
583 }
584
Harald Weltefb7ba912018-02-09 01:05:27 +0100585 LOGPCONN(conn, LOGL_DEBUG, "Rx DTAP %s\n", msgb_hexdump_l2(msg));
Philipp Maierfbf66102017-04-09 12:32:51 +0200586
587 /* msc_dtap expects the dtap payload in l3h */
588 msg->l3h = msg->l2h + 3;
589
Philipp Maier4502f5f2017-09-07 11:39:58 +0200590 /* Forward dtap payload into the msc */
Philipp Maierfbf66102017-04-09 12:32:51 +0200591 msc_dtap(conn, conn->a.conn_id, msg);
592
593 return 0;
594}
595
Harald Weltea172e9e2018-02-09 21:33:24 +0100596/* Handle incoming connection oriented messages. No ownership of 'msg' is passed on! */
Neels Hofmeyrc1d69252017-12-18 04:06:04 +0100597int 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 +0200598{
599 OSMO_ASSERT(scu);
600 OSMO_ASSERT(a_conn_info);
601 OSMO_ASSERT(msg);
602
Philipp Maierfbf66102017-04-09 12:32:51 +0200603 if (msgb_l2len(msg) < sizeof(struct bssmap_header)) {
Harald Welte1f477442018-02-09 01:49:01 +0100604 LOGP(DBSSAP, LOGL_NOTICE, "The header is too short -- discarding message!\n");
Philipp Maier4502f5f2017-09-07 11:39:58 +0200605 return -EINVAL;
Philipp Maierfbf66102017-04-09 12:32:51 +0200606 }
607
608 switch (msg->l2h[0]) {
609 case BSSAP_MSG_BSS_MANAGEMENT:
610 msg->l3h = &msg->l2h[sizeof(struct bssmap_header)];
611 return rx_bssmap(scu, a_conn_info, msg);
Philipp Maierfbf66102017-04-09 12:32:51 +0200612 case BSSAP_MSG_DTAP:
613 return rx_dtap(scu, a_conn_info, msg);
Philipp Maierfbf66102017-04-09 12:32:51 +0200614 default:
Harald Welte1f477442018-02-09 01:49:01 +0100615 LOGP(DBSSAP, LOGL_ERROR, "Unimplemented BSSAP msg type: %s\n", gsm0808_bssap_name(msg->l2h[0]));
Philipp Maierfbf66102017-04-09 12:32:51 +0200616 return -EINVAL;
617 }
618
619 return -EINVAL;
620}