blob: 56252f1d064c50fce8b8e65c2a5013adf4c6732f [file] [log] [blame]
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001/* BSSAP/BSSMAP encoding and decoding for MSC */
2/*
3 * (C) 2019 by sysmocom - s.m.f.c. GmbH <info@sysmocom.de>
4 * All Rights Reserved
5 *
6 * Author: Neels Hofmeyr
7 *
8 * SPDX-License-Identifier: GPL-2.0+
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010019 */
20
21#include <osmocom/core/byteswap.h>
22
23#include <osmocom/crypt/auth.h>
Neels Hofmeyr6ce2edc2021-06-09 22:26:11 +020024#include <osmocom/crypt/kdf.h>
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010025
26#include <osmocom/gsm/tlv.h>
27#include <osmocom/gsm/gsm0808.h>
28#include <osmocom/gsm/mncc.h>
29#include <osmocom/gsm/gsm48.h>
30
31#include <osmocom/msc/debug.h>
32#include <osmocom/msc/ran_msg_a.h>
33#include <osmocom/msc/sccp_ran.h>
Pau Espin Pedrolc9ba7542019-05-07 12:23:49 +020034#include <osmocom/msc/gsm_data.h>
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010035
36#define LOG_RAN_A_DEC(RAN_DEC, level, fmt, args...) \
37 LOG_RAN_DEC(RAN_DEC, DBSSAP, level, "BSSMAP: " fmt, ## args)
38
39/* Assumes presence of struct ran_dec *ran_dec and ran_dec_msg.msg_name (set) in the local scope. */
40#define LOG_RAN_A_DEC_MSG(level, fmt, args...) \
41 LOG_RAN_DEC(ran_dec, DBSSAP, level, "%s: " fmt, ran_dec_msg.msg_name, ## args)
42
43#define LOG_RAN_A_ENC(FI, level, fmt, args...) \
44 LOG_RAN_ENC(FI, DBSSAP, level, "BSSMAP: " fmt, ## args)
45
46static int ran_a_decode_l3_compl(struct ran_dec *ran_dec, struct msgb *msg, struct tlv_parsed *tp)
47{
48 struct gsm0808_cell_id_list2 cil;
49 struct gsm0808_cell_id cell_id;
50 struct tlv_p_entry *ie_cell_id = TLVP_GET(tp, GSM0808_IE_CELL_IDENTIFIER);
51 struct tlv_p_entry *ie_l3_info = TLVP_GET(tp, GSM0808_IE_LAYER_3_INFORMATION);
Neels Hofmeyr8a50cfb2019-10-21 03:01:00 +020052 struct tlv_p_entry *ie_codec_list_bss_supported = TLVP_GET(tp, GSM0808_IE_SPEECH_CODEC_LIST);
53 struct gsm0808_speech_codec_list codec_list_bss_supported;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010054 struct ran_msg ran_dec_msg = {
55 .msg_type = RAN_MSG_COMPL_L3,
Neels Hofmeyr0c1ed152019-10-21 03:12:58 +020056 .msg_name = "BSSMAP Complete Layer 3 Information",
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010057 .compl_l3 = {
58 .cell_id = &cell_id,
59 .msg = msg,
60 },
61 };
62 int rc;
63
64 if (!ie_cell_id) {
65 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "Mandatory CELL IDENTIFIER not present, discarding message\n");
66 return -EINVAL;
67 }
68 if (!ie_l3_info) {
69 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "Mandatory LAYER 3 INFORMATION not present, discarding message\n");
70 return -EINVAL;
71 }
72
73 /* Parse Cell ID element -- this should yield a cell identifier "list" with 1 element. */
74
75 rc = gsm0808_dec_cell_id_list2(&cil, ie_cell_id->val, ie_cell_id->len);
76 if (rc < 0) {
77 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "Decoding CELL IDENTIFIER gave rc=%d\n", rc);
78 return -EINVAL;
79 }
80 if (cil.id_list_len != 1) {
81 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "Unable to parse element CELL IDENTIFIER, discarding message\n");
82 return -EINVAL;
83 }
84
85 /* Sanity check the Cell Identity */
86 switch (cil.id_discr) {
87 case CELL_IDENT_WHOLE_GLOBAL:
88 case CELL_IDENT_LAI_AND_LAC:
89 case CELL_IDENT_LAC_AND_CI:
90 case CELL_IDENT_LAC:
91 break;
92
93 case CELL_IDENT_CI:
94 case CELL_IDENT_NO_CELL:
95 case CELL_IDENT_BSS:
96 default:
97 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "CELL IDENTIFIER does not specify a LAC, discarding message: %s\n",
98 gsm0808_cell_id_list_name(&cil));
99 return -EINVAL;
100 }
101
102 cell_id = (struct gsm0808_cell_id){
103 .id_discr = cil.id_discr,
104 .id = cil.id_list[0],
105 };
106
Neels Hofmeyrede90832022-01-13 18:13:15 +0100107 /* Parse Layer 3 Information element; point ran_dec_msg->compl_l3.msg to the L3 Info data */
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100108 msg->l3h = (uint8_t*)ie_l3_info->val;
109 msgb_l3trim(msg, ie_l3_info->len);
110
111 if (msgb_l3len(msg) < sizeof(struct gsm48_hdr)) {
112 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "too short L3 info (%d), discarding message\n", msgb_l3len(msg));
113 return -ENODATA;
114 }
115
Neels Hofmeyr8a50cfb2019-10-21 03:01:00 +0200116 /* Decode Codec List (BSS Supported) */
117 if (ie_codec_list_bss_supported) {
118 rc = gsm0808_dec_speech_codec_list(&codec_list_bss_supported,
119 ie_codec_list_bss_supported->val, ie_codec_list_bss_supported->len);
120 if (rc < 0) {
121 LOG_RAN_A_DEC_MSG(LOGL_ERROR,
122 "Complete Layer 3 Information: unable to decode IE Codec List (BSS Supported)"
123 " (rc=%d), continuing anyway\n", rc);
124 /* This IE is not critical, do not abort with error. */
125 } else
126 ran_dec_msg.compl_l3.codec_list_bss_supported = &codec_list_bss_supported;
127 }
128
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100129 return ran_decoded(ran_dec, &ran_dec_msg);
130}
131
132static int ran_a_decode_clear_request(struct ran_dec *ran_dec, struct msgb *msg, struct tlv_parsed *tp)
133{
134 struct tlv_p_entry *ie_cause = TLVP_GET(tp, GSM0808_IE_CAUSE);
135 struct ran_msg ran_dec_msg = {
136 .msg_type = RAN_MSG_CLEAR_REQUEST,
137 .msg_name = "BSSMAP Clear Request",
138 };
139
140 if (!ie_cause) {
141 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "Cause code is missing, using GSM0808_CAUSE_EQUIPMENT_FAILURE\n");
142 ran_dec_msg.clear_request.bssap_cause = GSM0808_CAUSE_EQUIPMENT_FAILURE;
143 } else {
144 ran_dec_msg.clear_request.bssap_cause = ie_cause->val[0];
145 }
146
147 return ran_decoded(ran_dec, &ran_dec_msg);
148}
149
150static int ran_a_decode_clear_complete(struct ran_dec *ran_dec, struct msgb *msg, struct tlv_parsed *tp)
151{
152 struct ran_msg ran_dec_msg = {
153 .msg_type = RAN_MSG_CLEAR_COMPLETE,
154 .msg_name = "BSSMAP Clear Complete",
155 };
156 return ran_decoded(ran_dec, &ran_dec_msg);
157}
158
159static int ran_a_decode_classmark_update(struct ran_dec *ran_dec, struct msgb *msg, struct tlv_parsed *tp)
160{
161 struct tlv_p_entry *ie_cm2 = TLVP_GET(tp, GSM0808_IE_CLASSMARK_INFORMATION_T2);
162 struct tlv_p_entry *ie_cm3 = TLVP_GET(tp, GSM0808_IE_CLASSMARK_INFORMATION_T3);
163 struct osmo_gsm48_classmark cm = {};
164 struct ran_msg ran_dec_msg = {
165 .msg_type = RAN_MSG_CLASSMARK_UPDATE,
166 .msg_name = "BSSMAP Classmark Update",
167 .classmark_update = {
168 .classmark = &cm,
169 },
170 };
171
172 if (!ie_cm2) {
173 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "mandatory Classmark Information Type 2 not present, discarding message\n");
174 return -EINVAL;
175 }
176
177 cm.classmark2_len = OSMO_MIN(sizeof(cm.classmark2), ie_cm2->len);
178 memcpy(&cm.classmark2, ie_cm2->val, cm.classmark2_len);
179
180 if (ie_cm3) {
181 cm.classmark3_len = OSMO_MIN(sizeof(cm.classmark3), ie_cm3->len);
182 memcpy(&cm.classmark3, ie_cm3->val, cm.classmark3_len);
183 }
184
185 return ran_decoded(ran_dec, &ran_dec_msg);
186}
187
188static int ran_a_decode_cipher_mode_complete(struct ran_dec *ran_dec, struct msgb *msg, struct tlv_parsed *tp)
189{
190 struct tlv_p_entry *ie_chosen_encr_alg = TLVP_GET(tp, GSM0808_IE_CHOSEN_ENCR_ALG);
191 struct tlv_p_entry *ie_l3_msg = TLVP_GET(tp, GSM0808_IE_LAYER_3_MESSAGE_CONTENTS);
192 int rc;
193 struct ran_msg ran_dec_msg = {
194 .msg_type = RAN_MSG_CIPHER_MODE_COMPLETE,
195 .msg_name = "BSSMAP Ciphering Mode Complete",
196 };
197
198 if (ie_chosen_encr_alg) {
199 uint8_t ie_val = ie_chosen_encr_alg->val[0];
200 /* 3GPP TS 48.008 3.2.2.44 Chosen Encryption Algorithm encodes as 1 = no encryption, 2 = A5/1, 4 = A5/3.
201 * Internally we handle without this weird off-by-one. */
202 if (ie_val < 1 || ie_val > 8)
203 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "Unsupported value for 3.2.2.44 Chosen Encryption Algorithm: %u\n",
204 ie_val);
205 else
206 ran_dec_msg.cipher_mode_complete.alg_id = ie_chosen_encr_alg->val[0];
207 }
208
Neels Hofmeyre9a39112019-08-29 00:10:49 +0200209 if (ie_l3_msg)
210 ran_dec_msg.cipher_mode_complete.l3_msg = ie_l3_msg;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100211
Neels Hofmeyre9a39112019-08-29 00:10:49 +0200212 rc = ran_decoded(ran_dec, &ran_dec_msg);
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100213
214 return rc;
215}
216
217static int ran_a_decode_cipher_mode_reject(struct ran_dec *ran_dec, struct msgb *msg, struct tlv_parsed *tp)
218{
219 int rc;
220 struct ran_msg ran_dec_msg = {
221 .msg_type = RAN_MSG_CIPHER_MODE_REJECT,
222 .msg_name = "BSSMAP Ciphering Mode Reject",
223 };
224
Vadim Yanitskiy33144f12021-02-05 20:14:19 +0100225 rc = gsm0808_get_cause(tp);
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100226 if (rc < 0) {
227 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "failed to extract Cause\n");
228 ran_dec_msg.cipher_mode_reject.bssap_cause = GSM0808_CAUSE_EQUIPMENT_FAILURE;
229 } else {
230 ran_dec_msg.cipher_mode_reject.bssap_cause = (enum gsm0808_cause)rc;
231 }
232
233 return ran_decoded(ran_dec, &ran_dec_msg);
234}
235
236enum mgcp_codecs ran_a_mgcp_codec_from_sc(const struct gsm0808_speech_codec *sc)
237{
238 switch (sc->type) {
239 case GSM0808_SCT_FR1:
240 return CODEC_GSM_8000_1;
241 break;
242 case GSM0808_SCT_FR2:
243 return CODEC_GSMEFR_8000_1;
244 break;
245 case GSM0808_SCT_FR3:
246 return CODEC_AMR_8000_1;
247 break;
248 case GSM0808_SCT_FR4:
249 return CODEC_AMRWB_16000_1;
250 break;
251 case GSM0808_SCT_FR5:
252 return CODEC_AMRWB_16000_1;
253 break;
254 case GSM0808_SCT_HR1:
255 return CODEC_GSMHR_8000_1;
256 break;
257 case GSM0808_SCT_HR3:
258 return CODEC_AMR_8000_1;
259 break;
260 case GSM0808_SCT_HR4:
261 return CODEC_AMRWB_16000_1;
262 break;
263 case GSM0808_SCT_HR6:
264 return CODEC_AMRWB_16000_1;
265 break;
266 default:
267 return CODEC_PCMU_8000_1;
268 break;
269 }
270}
271
272static int ran_a_decode_assignment_complete(struct ran_dec *ran_dec, struct msgb *msg, struct tlv_parsed *tp)
273{
274 struct tlv_p_entry *ie_aoip_transp_addr = TLVP_GET(tp, GSM0808_IE_AOIP_TRASP_ADDR);
275 struct tlv_p_entry *ie_speech_codec = TLVP_GET(tp, GSM0808_IE_SPEECH_CODEC);
Neels Hofmeyr8a50cfb2019-10-21 03:01:00 +0200276 struct tlv_p_entry *ie_codec_list_bss_supported = TLVP_GET(tp, GSM0808_IE_SPEECH_CODEC_LIST);
Pau Espin Pedrola3cdab42019-05-09 17:54:08 +0200277 struct tlv_p_entry *ie_osmux_cid = TLVP_GET(tp, GSM0808_IE_OSMO_OSMUX_CID);
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100278 struct sockaddr_storage rtp_addr;
Neels Hofmeyr8a50cfb2019-10-21 03:01:00 +0200279 struct gsm0808_speech_codec_list codec_list_bss_supported;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100280 int rc;
281 struct ran_msg ran_dec_msg = {
282 .msg_type = RAN_MSG_ASSIGNMENT_COMPLETE,
283 .msg_name = "BSSMAP Assignment Complete",
284 };
285
286 if (ie_aoip_transp_addr) {
287 /* Decode AoIP transport address element */
288 rc = gsm0808_dec_aoip_trasp_addr(&rtp_addr, ie_aoip_transp_addr->val, ie_aoip_transp_addr->len);
289 if (rc < 0) {
290 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "Unable to decode AoIP Transport Layer Address\n");
291 return -EINVAL;
292 }
293
Pau Espin Pedrolf9c76e32020-09-02 19:25:55 +0200294 if (osmo_sockaddr_str_from_sockaddr(&ran_dec_msg.assignment_complete.remote_rtp, &rtp_addr)) {
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100295 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "Assignment Complete: unable to decode remote RTP IP address\n");
296 return -EINVAL;
297 }
298 }
299
Pau Espin Pedrola3cdab42019-05-09 17:54:08 +0200300 if (ie_osmux_cid) {
301 rc = gsm0808_dec_osmux_cid(&ran_dec_msg.assignment_complete.osmux_cid, ie_osmux_cid->val, ie_osmux_cid->len);
302 if (rc < 0) {
303 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "Unable to decode Osmux CID\n");
304 return -EINVAL;
305 }
306 ran_dec_msg.assignment_complete.osmux_present = true;
307 }
308
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100309 if (ie_speech_codec) {
310 /* Decode Speech Codec (Chosen) element */
Neels Hofmeyrcec51b32023-03-01 03:47:45 +0100311 rc = gsm0808_dec_speech_codec(&ran_dec_msg.assignment_complete.codec,
312 ie_speech_codec->val, ie_speech_codec->len);
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100313 if (rc < 0) {
314 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "Assignment Complete: unable to decode IE Speech Codec (Chosen)"
315 " (rc=%d).\n", rc);
316 return -EINVAL;
317 }
318 ran_dec_msg.assignment_complete.codec_present = true;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100319 }
320
Neels Hofmeyr8a50cfb2019-10-21 03:01:00 +0200321 if (ie_codec_list_bss_supported) {
322 /* Decode Codec List (BSS Supported) */
323 rc = gsm0808_dec_speech_codec_list(&codec_list_bss_supported,
324 ie_codec_list_bss_supported->val, ie_codec_list_bss_supported->len);
325 if (rc < 0) {
326 LOG_RAN_A_DEC_MSG(LOGL_ERROR,
327 "Assignment Complete: unable to decode IE Codec List (BSS Supported)"
328 " (rc=%d), continuing anyway\n", rc);
329 /* This IE is not critical, do not abort with error. */
330 } else
331 ran_dec_msg.assignment_complete.codec_list_bss_supported = &codec_list_bss_supported;
332 }
333
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100334 return ran_decoded(ran_dec, &ran_dec_msg);
335}
336
337static int ran_a_decode_assignment_failure(struct ran_dec *ran_dec, struct msgb *msg, struct tlv_parsed *tp)
338{
339 struct tlv_p_entry *ie_cause = TLVP_GET(tp, GSM0808_IE_CAUSE);
340 struct tlv_p_entry *ie_rr_cause = TLVP_GET(tp, GSM0808_IE_RR_CAUSE);
341 struct tlv_p_entry *ie_speech_codec_list = TLVP_GET(tp, GSM0808_IE_SPEECH_CODEC_LIST);
342 struct gsm0808_speech_codec_list scl;
343 struct ran_msg ran_dec_msg = {
344 .msg_type = RAN_MSG_ASSIGNMENT_FAILURE,
345 .msg_name = "BSSMAP Assignment Failure",
346 .assignment_failure = {
347 .bssap_cause = GSM0808_CAUSE_EQUIPMENT_FAILURE,
348 .rr_cause = GSM48_RR_CAUSE_ABNORMAL_UNSPEC,
349 },
350 };
351
352 if (ie_cause)
353 ran_dec_msg.assignment_failure.bssap_cause = ie_cause->val[0];
354 if (ie_rr_cause)
355 ran_dec_msg.assignment_failure.rr_cause = ie_rr_cause->val[0];
356
357 if (ie_speech_codec_list
358 && gsm0808_dec_speech_codec_list(&scl, ie_speech_codec_list->val, ie_speech_codec_list->len) == 0)
359 ran_dec_msg.assignment_failure.scl_bss_supported = &scl;
360
361 return ran_decoded(ran_dec, &ran_dec_msg);
362}
363
364static int ran_a_decode_sapi_n_reject(struct ran_dec *ran_dec, struct msgb *msg, struct tlv_parsed *tp)
365{
366 struct tlv_p_entry *ie_cause = TLVP_GET(tp, GSM0808_IE_CAUSE);
367 struct tlv_p_entry *ie_dlci = TLVP_GET(tp, GSM0808_IE_DLCI);
368 struct ran_msg ran_dec_msg = {
369 .msg_type = RAN_MSG_SAPI_N_REJECT,
370 .msg_name = "BSSMAP SAPI-N Reject",
371 };
372
373 /* Note: The MSC code seems not to care about the cause code, but by
374 * the specification it is mandatory, so we check its presence. See
375 * also 3GPP TS 48.008 3.2.1.34 SAPI "n" REJECT */
376 if (!ie_cause) {
377 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "SAPI-N Reject: cause code IE is missing, discarding message\n");
378 return -EINVAL;
379 }
380 ran_dec_msg.sapi_n_reject.bssap_cause = ie_cause->val[0];
381
382 if (!ie_dlci) {
383 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "SAPI-N Reject: DLCI IE is missing, discarding message\n");
384 return -EINVAL;
385 }
386 ran_dec_msg.sapi_n_reject.dlci = ie_dlci->val[0];
387
388 return ran_decoded(ran_dec, &ran_dec_msg);
389}
390
391static int ran_a_decode_lcls_notification(struct ran_dec *ran_dec, const struct msgb *msg, const struct tlv_parsed *tp)
392{
393 const struct tlv_p_entry *ie_lcls_bss_status = TLVP_GET(tp, GSM0808_IE_LCLS_BSS_STATUS);
394 const struct tlv_p_entry *ie_lcls_break_req = TLVP_GET(tp, GSM0808_IE_LCLS_BREAK_REQ);
395 struct ran_msg ran_dec_msg;
396
397 /* Either §3.2.2.119 LCLS-BSS-Status or §3.2.2.120 LCLS-Break-Request shall be present */
Vadim Yanitskiy18e8b392019-05-11 04:22:55 +0700398 if (ie_lcls_bss_status && !ie_lcls_break_req) {
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100399 ran_dec_msg = (struct ran_msg){
400 .msg_type = RAN_MSG_LCLS_STATUS,
401 .msg_name = "BSSMAP LCLS Notification (LCLS Status)",
402 .lcls_status = {
403 .status = ie_lcls_bss_status->len ?
404 ie_lcls_bss_status->val[0] : GSM0808_LCLS_STS_NA,
405 },
406 };
407 return ran_decoded(ran_dec, &ran_dec_msg);
Vadim Yanitskiy18e8b392019-05-11 04:22:55 +0700408 } else if (ie_lcls_break_req && !ie_lcls_bss_status) {
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100409 ran_dec_msg = (struct ran_msg){
410 .msg_type = RAN_MSG_LCLS_BREAK_REQ,
411 .msg_name = "BSSMAP LCLS Notification (LCLS Break Req)",
412 .lcls_break_req = {
413 .todo = 23,
414 },
415 };
416 return ran_decoded(ran_dec, &ran_dec_msg);
417 }
418
Vadim Yanitskiy18e8b392019-05-11 04:22:55 +0700419 LOG_RAN_A_DEC(ran_dec, LOGL_ERROR, "Ignoring broken LCLS Notification message\n");
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100420 return -EINVAL;
421}
422
423static int ran_a_decode_handover_required(struct ran_dec *ran_dec, const struct msgb *msg, const struct tlv_parsed *tp)
424{
425 const struct tlv_p_entry *ie_cause = TLVP_GET(tp, GSM0808_IE_CAUSE);
426 const struct tlv_p_entry *ie_cil = TLVP_GET(tp, GSM0808_IE_CELL_IDENTIFIER_LIST);
427 struct ran_msg ran_dec_msg = {
428 .msg_type = RAN_MSG_HANDOVER_REQUIRED,
429 .msg_name = "BSSMAP Handover Required",
430 };
431 /* On decoding failures, dispatch an invalid RAN_MSG_HANDOVER_REQUIRED so msc_a can pass down a
432 * BSS_MAP_MSG_HANDOVER_REQUIRED_REJECT message. */
433
434 if (ie_cause)
435 ran_dec_msg.handover_required.cause = ie_cause->val[0];
436 else
437 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "Cause IE missing\n");
438
439 if (!ie_cil
440 || gsm0808_dec_cell_id_list2(&ran_dec_msg.handover_required.cil, ie_cil->val, ie_cil->len) <= 0) {
441 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "No or invalid Cell Identifier List IE\n");
442 ran_dec_msg.handover_required.cil = (struct gsm0808_cell_id_list2){};
443 }
444
445 return ran_decoded(ran_dec, &ran_dec_msg);
446}
447
448static uint8_t a5_encryption_mask_from_gsm0808_chosen_enc_alg(enum gsm0808_chosen_enc_alg val)
449{
450 return 1 << val;
451}
452
453static int ran_a_decode_handover_request(struct ran_dec *ran_dec, const struct msgb *msg, const struct tlv_parsed *tp)
454{
455 struct osmo_gsm48_classmark classmark = {};
456 struct ran_msg ran_dec_msg = {
457 .msg_type = RAN_MSG_HANDOVER_REQUEST,
458 .msg_name = "BSSMAP Handover Request",
459 .handover_request = {
460 .classmark = &classmark,
461 },
462 };
463 struct ran_handover_request *r = &ran_dec_msg.handover_request;
464
465 const struct tlv_p_entry *ie_channel_type = TLVP_GET(tp, GSM0808_IE_CHANNEL_TYPE);
466 const struct tlv_p_entry *ie_encryption_information = TLVP_GET(tp, GSM0808_IE_ENCRYPTION_INFORMATION);
467 const struct tlv_p_entry *ie_classmark1 = TLVP_GET(tp, GSM0808_IE_CLASSMARK_INFORMATION_TYPE_1);
468 const struct tlv_p_entry *ie_classmark2 = TLVP_GET(tp, GSM0808_IE_CLASSMARK_INFORMATION_T2);
469 const struct tlv_p_entry *ie_cell_id_serving = TLVP_GET(&tp[0], GSM0808_IE_CELL_IDENTIFIER);
470 const struct tlv_p_entry *ie_cell_id_target = TLVP_GET(&tp[1], GSM0808_IE_CELL_IDENTIFIER);
471 const struct tlv_p_entry *ie_cause = TLVP_GET(tp, GSM0808_IE_CAUSE);
472 const struct tlv_p_entry *ie_classmark3 = TLVP_GET(tp, GSM0808_IE_CLASSMARK_INFORMATION_T3);
473 const struct tlv_p_entry *ie_current_channel_type_1 = TLVP_GET(tp, GSM0808_IE_CURRENT_CHANNEL_TYPE_1);
474 const struct tlv_p_entry *ie_speech_version_used = TLVP_GET(tp, GSM0808_IE_SPEECH_VERSION);
475 const struct tlv_p_entry *ie_chosen_encr_alg_serving = TLVP_GET(tp, GSM0808_IE_CHOSEN_ENCR_ALG);
476 const struct tlv_p_entry *ie_old_bss_to_new_bss_info = TLVP_GET(tp, GSM0808_IE_OLD_BSS_TO_NEW_BSS_INFORMATION);
477 const struct tlv_p_entry *ie_imsi = TLVP_GET(tp, GSM0808_IE_IMSI);
478 const struct tlv_p_entry *ie_aoip_transp_addr = TLVP_GET(tp, GSM0808_IE_AOIP_TRASP_ADDR);
479 const struct tlv_p_entry *ie_codec_list_msc_preferred = TLVP_GET(tp, GSM0808_IE_SPEECH_CODEC_LIST);
480 const struct tlv_p_entry *ie_call_id = TLVP_GET(tp, GSM0808_IE_CALL_ID);
Neels Hofmeyrdb07fdc2021-06-09 22:27:47 +0200481 const struct tlv_p_entry *ie_kc128 = TLVP_GET(tp, GSM0808_IE_KC_128);
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100482 const struct tlv_p_entry *ie_global_call_ref = TLVP_GET(tp, GSM0808_IE_GLOBAL_CALL_REF);
483
484 struct gsm0808_channel_type channel_type;
485 struct gsm0808_encrypt_info encr_info;
486 struct gsm0808_speech_codec_list scl;
487 struct geran_encr geran_encr = {};
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100488 struct osmo_sockaddr_str rtp_ran_local;
489
490 if (!ie_channel_type) {
491 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "Mandatory IE missing: Channel Type\n");
492 return -EINVAL;
493 }
494 if (gsm0808_dec_channel_type(&channel_type, ie_channel_type->val, ie_channel_type->len) <= 0) {
495 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "Failed to decode Channel Type IE\n");
496 return -EINVAL;
497 }
498 r->geran.channel_type = &channel_type;
499
500 if (ie_encryption_information) {
501 int i;
502 if (gsm0808_dec_encrypt_info(&encr_info, ie_encryption_information->val, ie_encryption_information->len)
503 <= 0) {
Martin Hauke3f07dac2019-11-14 17:49:08 +0100504 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "Failed to decode Encryption Information IE\n");
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100505 return -EINVAL;
506 }
507
508 for (i = 0; i < encr_info.perm_algo_len; i++) {
509 r->geran.a5_encryption_mask |=
510 a5_encryption_mask_from_gsm0808_chosen_enc_alg(encr_info.perm_algo[i]);
511 }
512
513 if (encr_info.key_len > sizeof(geran_encr.key)) {
Martin Hauke3f07dac2019-11-14 17:49:08 +0100514 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "Failed to decode Encryption Information IE:"
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100515 " encryption key is too long: %u\n", geran_encr.key_len);
516 return -EINVAL;
517 }
518
519 if (encr_info.key_len) {
520 memcpy(geran_encr.key, encr_info.key, encr_info.key_len);
521 geran_encr.key_len = encr_info.key_len;
522 }
523
Neels Hofmeyrdb07fdc2021-06-09 22:27:47 +0200524 if (ie_kc128) {
525 memcpy(geran_encr.kc128, ie_kc128->val, 16);
526 geran_encr.kc128_present = true;
527 }
528
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100529 r->geran.chosen_encryption = &geran_encr;
530 }
531
532 if (!ie_classmark1 && !ie_classmark2) {
533 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "Mandatory IE missing: either Classmark Information 1"
534 " or Classmark Information 2 must be included\n");
535 return -EINVAL;
536 }
537
538 if (ie_classmark1) {
539 if (ie_classmark1->len != sizeof(classmark.classmark1)) {
540 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "Invalid size for Classmark 1: %u, expected %zu\n",
541 ie_classmark1->len, sizeof(classmark.classmark1));
542 return -EINVAL;
543 }
544 memcpy((uint8_t*)&classmark.classmark1, ie_classmark1->val, ie_classmark1->len);
545 classmark.classmark1_set = true;
546 }
547
548 if (ie_classmark2) {
549 uint8_t len = OSMO_MIN(ie_classmark2->len, sizeof(classmark.classmark2));
550 memcpy((uint8_t*)&classmark.classmark2, ie_classmark2->val, len);
551 classmark.classmark2_len = len;
552 }
553
554 if (!ie_cell_id_serving) {
555 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "Mandatory IE missing: Cell Identifier (Serving)\n");
556 return -EINVAL;
557 }
558 if (gsm0808_dec_cell_id(&r->cell_id_serving, ie_cell_id_serving->val,
559 ie_cell_id_serving->len) <= 0) {
560 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "Failed to decode Cell Identifier (Serving) IE\n");
561 return -EINVAL;
562 }
563
564 if (!ie_cell_id_target) {
565 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "Mandatory IE missing: Cell Identifier (Target)\n");
566 return -EINVAL;
567 }
568 if (gsm0808_dec_cell_id(&r->cell_id_target, ie_cell_id_target->val,
569 ie_cell_id_target->len) <= 0) {
570 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "Failed to decode Cell Identifier (Target) IE\n");
571 return -EINVAL;
572 }
573
574 if (ie_cause)
575 r->bssap_cause = ie_cause->val[0];
576
577 if (ie_classmark3) {
578 uint8_t len = OSMO_MIN(ie_classmark3->len, sizeof(classmark.classmark3));
579 memcpy(classmark.classmark3, ie_classmark3->val, len);
580 classmark.classmark3_len = len;
581 }
582
583 if (ie_current_channel_type_1) {
584 r->current_channel_type_1 = ie_current_channel_type_1->val[0];
585 r->current_channel_type_1_present = true;
586 }
587
588 if (ie_speech_version_used) {
589 r->speech_version_used = ie_speech_version_used->val[0];
590 }
591
592 if (ie_chosen_encr_alg_serving && ie_chosen_encr_alg_serving->len) {
593 geran_encr.alg_id = ie_chosen_encr_alg_serving->val[0];
594 r->geran.chosen_encryption = &geran_encr;
595 }
596
597 if (ie_old_bss_to_new_bss_info) {
598 r->old_bss_to_new_bss_info_raw = ie_old_bss_to_new_bss_info->val;
599 r->old_bss_to_new_bss_info_raw_len = ie_old_bss_to_new_bss_info->len;
600 }
601
602 if (ie_imsi) {
Neels Hofmeyr46d526a2020-05-29 03:27:50 +0200603 struct osmo_mobile_identity mi;
604 if (osmo_mobile_identity_decode(&mi, ie_imsi->val, ie_imsi->len, false)
605 || mi.type != GSM_MI_TYPE_IMSI)
606 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "IE IMSI: cannot decode IMSI identity\n");
607 else
608 r->imsi = mi.imsi;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100609 }
610
611 if (ie_aoip_transp_addr) {
Pau Espin Pedrol06327172020-09-04 16:37:14 +0200612 struct sockaddr_storage rtp_addr;
613 if (gsm0808_dec_aoip_trasp_addr(&rtp_addr, ie_aoip_transp_addr->val, ie_aoip_transp_addr->len) < 0)
614 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "unable to decode AoIP transport address\n");
615 else if (osmo_sockaddr_str_from_sockaddr(&rtp_ran_local, &rtp_addr) < 0)
616 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "unable to decode remote RTP IP address\n");
617 else
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100618 r->rtp_ran_local = &rtp_ran_local;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100619 }
620
621 if (ie_codec_list_msc_preferred
622 && gsm0808_dec_speech_codec_list(&scl, ie_codec_list_msc_preferred->val,
623 ie_codec_list_msc_preferred->len) == 0)
624 r->codec_list_msc_preferred = &scl;
625
626 if (ie_call_id && ie_call_id->len == 4) {
627 r->call_id = osmo_load32le(ie_call_id->val);
628 r->call_id_present = true;
629 }
630
631 if (ie_global_call_ref) {
632 r->global_call_reference = ie_global_call_ref->val;
633 r->global_call_reference_len = ie_global_call_ref->len;
634 }
635
636 return ran_decoded(ran_dec, &ran_dec_msg);
637}
638
639static int ran_a_decode_handover_request_ack(struct ran_dec *ran_dec, const struct msgb *msg, const struct tlv_parsed *tp)
640{
641 struct ran_msg ran_dec_msg = {
642 .msg_type = RAN_MSG_HANDOVER_REQUEST_ACK,
643 .msg_name = "BSSMAP Handover Request Acknowledge",
644 };
645 const struct tlv_p_entry *ie_l3_info = TLVP_GET(tp, GSM0808_IE_LAYER_3_INFORMATION);
646 const struct tlv_p_entry *ie_aoip_transp_addr = TLVP_GET(tp, GSM0808_IE_AOIP_TRASP_ADDR);
647 const struct tlv_p_entry *ie_speech_codec = TLVP_GET(tp, GSM0808_IE_SPEECH_CODEC);
648 const struct tlv_p_entry *ie_chosen_channel = TLVP_GET(tp, GSM0808_IE_CHOSEN_CHANNEL);
649 const struct tlv_p_entry *ie_chosen_encr_alg = TLVP_GET(tp, GSM0808_IE_CHOSEN_ENCR_ALG);
650 const struct tlv_p_entry *ie_chosen_speech_version = TLVP_GET(tp, GSM0808_IE_SPEECH_VERSION);
651
652 /* On missing mandatory IEs, dispatch an invalid RAN_MSG_HANDOVER_REQUEST_ACK so msc_a can act on the failure. */
653
654 if (ie_l3_info) {
655 ran_dec_msg.handover_request_ack.rr_ho_command = ie_l3_info->val;
656 ran_dec_msg.handover_request_ack.rr_ho_command_len = ie_l3_info->len;
657 }
658
659 if (ie_chosen_channel) {
660 ran_dec_msg.handover_request_ack.chosen_channel_present = true;
661 ran_dec_msg.handover_request_ack.chosen_channel = *ie_chosen_channel->val;
662 }
663
664 if (ie_chosen_encr_alg) {
665 ran_dec_msg.handover_request_ack.chosen_encr_alg = *ie_chosen_encr_alg->val;
666 if (ran_dec_msg.handover_request_ack.chosen_encr_alg < 1
667 || ran_dec_msg.handover_request_ack.chosen_encr_alg > 8) {
668 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "invalid Chosen Encryption Algorithm: %u\n",
669 ran_dec_msg.handover_request_ack.chosen_encr_alg);
670 }
671 }
672
673 if (ie_chosen_speech_version) {
674 struct gsm0808_speech_codec sc;
675 ran_dec_msg.handover_request_ack.chosen_speech_version = ie_chosen_speech_version->val[0];
676
677 /* the codec may be extrapolated from this Speech Version or below from Speech Codec */
678 gsm0808_speech_codec_from_chan_type(&sc, ran_dec_msg.handover_request_ack.chosen_speech_version);
679 ran_dec_msg.handover_request_ack.codec_present = true;
680 ran_dec_msg.handover_request_ack.codec = ran_a_mgcp_codec_from_sc(&sc);
681 }
682
683 if (ie_aoip_transp_addr) {
Pau Espin Pedrol06327172020-09-04 16:37:14 +0200684 struct sockaddr_storage rtp_addr;
685 if (gsm0808_dec_aoip_trasp_addr(&rtp_addr, ie_aoip_transp_addr->val, ie_aoip_transp_addr->len) < 0) {
686 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "unable to decode AoIP transport address\n");
687 } else if (osmo_sockaddr_str_from_sockaddr(&ran_dec_msg.handover_request_ack.remote_rtp,
688 &rtp_addr)) {
689 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "unable to decode remote RTP IP address\n");
690 ran_dec_msg.handover_request_ack.remote_rtp = (struct osmo_sockaddr_str){};
691 }
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100692 }
693
694 if (ie_speech_codec) {
695 struct gsm0808_speech_codec sc;
696 if (gsm0808_dec_speech_codec(&sc, ie_speech_codec->val, ie_speech_codec->len) < 0)
697 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "unable to decode IE Speech Codec (Chosen)\n");
698 else {
699 /* the codec may be extrapolated from above Speech Version or from this Speech Codec */
700 ran_dec_msg.handover_request_ack.codec_present = true;
701 ran_dec_msg.handover_request_ack.codec = ran_a_mgcp_codec_from_sc(&sc);
702 }
703 }
704
705 return ran_decoded(ran_dec, &ran_dec_msg);
706}
707
708static int ran_a_decode_handover_detect(struct ran_dec *ran_dec, const struct msgb *msg, const struct tlv_parsed *tp)
709{
710 struct ran_msg ran_dec_msg = {
711 .msg_type = RAN_MSG_HANDOVER_DETECT,
712 .msg_name = "BSSMAP Handover Detect",
713 };
714
715 return ran_decoded(ran_dec, &ran_dec_msg);
716}
717
718static int ran_a_decode_handover_succeeded(struct ran_dec *ran_dec, const struct msgb *msg, const struct tlv_parsed *tp)
719{
720 struct ran_msg ran_dec_msg = {
721 .msg_type = RAN_MSG_HANDOVER_SUCCEEDED,
722 .msg_name = "BSSMAP Handover Succeeded",
723 };
724
725 return ran_decoded(ran_dec, &ran_dec_msg);
726}
727
728static int ran_a_decode_handover_complete(struct ran_dec *ran_dec, const struct msgb *msg, const struct tlv_parsed *tp)
729{
730 struct ran_msg ran_dec_msg = {
731 .msg_type = RAN_MSG_HANDOVER_COMPLETE,
732 .msg_name = "BSSMAP Handover Complete",
733 };
734
735 return ran_decoded(ran_dec, &ran_dec_msg);
736}
737
738static int ran_a_decode_handover_failure(struct ran_dec *ran_dec, const struct msgb *msg, const struct tlv_parsed *tp)
739{
740 struct ran_msg ran_dec_msg = {
741 .msg_type = RAN_MSG_HANDOVER_FAILURE,
742 .msg_name = "BSSMAP Handover Failure",
743 };
744
745 return ran_decoded(ran_dec, &ran_dec_msg);
746}
747
748static int ran_a_decode_bssmap(struct ran_dec *ran_dec, struct msgb *bssmap)
749{
750 struct tlv_parsed tp[2];
751 int rc;
752 struct bssmap_header *h = msgb_l2(bssmap);
753 uint8_t msg_type;
754 bssmap->l3h = bssmap->l2h + sizeof(*h);
755
756 if (msgb_l3len(bssmap) < 1) {
757 LOG_RAN_A_DEC(ran_dec, LOGL_ERROR, "No data received, discarding message\n");
758 return -1;
759 }
760
761 if (msgb_l3len(bssmap) < h->length) {
Neels Hofmeyrf0923012019-08-22 17:19:49 +0200762 LOG_RAN_A_DEC(ran_dec, LOGL_ERROR, "BSSMAP data truncated, discarding message:"
763 " msgb_l3len(bssmap) == %u < bssmap_header->length == %u\n",
764 msgb_l3len(bssmap), h->length);
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100765 return -1;
766 }
767
768 if (msgb_l3len(bssmap) > h->length) {
Neels Hofmeyrf0923012019-08-22 17:19:49 +0200769 LOG_RAN_A_DEC(ran_dec, LOGL_NOTICE, "There are %u extra bytes after the BSSMAP data, truncating:"
770 " msgb_l3len(bssmap) == %u > bssmap_header->length == %u\n",
771 msgb_l3len(bssmap) - h->length,
772 msgb_l3len(bssmap), h->length);
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100773 msgb_l3trim(bssmap, h->length);
774 }
775
776 /* h->type == BSSAP_MSG_BSS_MANAGEMENT; h->length is the data length,
777 * which starts with the MAP msg_type, followed by IEs. */
778 msg_type = bssmap->l3h[0];
779 rc = osmo_bssap_tlv_parse2(tp, ARRAY_SIZE(tp), bssmap->l3h + 1, h->length - 1);
780 if (rc < 0) {
781 LOG_RAN_A_DEC(ran_dec, LOGL_ERROR, "Failed parsing TLV, discarding message\n");
782 return -EINVAL;
783 }
784
Neels Hofmeyr72fc7062019-10-08 06:24:17 +0200785 LOG_RAN_A_DEC(ran_dec, LOGL_DEBUG, "%s\n", gsm0808_bssmap_name(msg_type));
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100786
787 switch (msg_type) {
788 case BSS_MAP_MSG_COMPLETE_LAYER_3:
789 return ran_a_decode_l3_compl(ran_dec, bssmap, tp);
790 case BSS_MAP_MSG_CLEAR_RQST:
791 return ran_a_decode_clear_request(ran_dec, bssmap, tp);
792 case BSS_MAP_MSG_CLEAR_COMPLETE:
793 return ran_a_decode_clear_complete(ran_dec, bssmap, tp);
794 case BSS_MAP_MSG_CLASSMARK_UPDATE:
795 return ran_a_decode_classmark_update(ran_dec, bssmap, tp);
796 case BSS_MAP_MSG_CIPHER_MODE_COMPLETE:
797 return ran_a_decode_cipher_mode_complete(ran_dec, bssmap, tp);
798 case BSS_MAP_MSG_CIPHER_MODE_REJECT:
799 return ran_a_decode_cipher_mode_reject(ran_dec, bssmap, tp);
800 case BSS_MAP_MSG_ASSIGMENT_COMPLETE:
801 rc = ran_a_decode_assignment_complete(ran_dec, bssmap, tp);
802 if (rc < 0) {
803 struct ran_msg ran_dec_msg = {
804 .msg_type = RAN_MSG_ASSIGNMENT_FAILURE,
805 .msg_name = "BSSMAP Assignment Complete but failed to decode",
806 .clear_request = {
807 .bssap_cause = GSM0808_CAUSE_EQUIPMENT_FAILURE,
808 },
809 };
810 ran_decoded(ran_dec, &ran_dec_msg);
811 }
812 return rc;
813 case BSS_MAP_MSG_ASSIGMENT_FAILURE:
814 return ran_a_decode_assignment_failure(ran_dec, bssmap, tp);
815 case BSS_MAP_MSG_SAPI_N_REJECT:
816 return ran_a_decode_sapi_n_reject(ran_dec, bssmap, tp);
817 case BSS_MAP_MSG_LCLS_NOTIFICATION:
818 return ran_a_decode_lcls_notification(ran_dec, bssmap, tp);
819
820 /* From current RAN peer, the Handover origin: */
821 case BSS_MAP_MSG_HANDOVER_REQUIRED:
822 return ran_a_decode_handover_required(ran_dec, bssmap, tp);
823
824 /* From current MSC to remote handover target MSC */
825 case BSS_MAP_MSG_HANDOVER_RQST:
826 return ran_a_decode_handover_request(ran_dec, bssmap, tp);
827
828 /* From potential new RAN peer, the Handover target: */
829 case BSS_MAP_MSG_HANDOVER_RQST_ACKNOWLEDGE:
830 return ran_a_decode_handover_request_ack(ran_dec, bssmap, tp);
831 case BSS_MAP_MSG_HANDOVER_DETECT:
832 return ran_a_decode_handover_detect(ran_dec, bssmap, tp);
833 case BSS_MAP_MSG_HANDOVER_SUCCEEDED:
834 return ran_a_decode_handover_succeeded(ran_dec, bssmap, tp);
835 case BSS_MAP_MSG_HANDOVER_COMPLETE:
836 return ran_a_decode_handover_complete(ran_dec, bssmap, tp);
837
838 /* From any Handover peer: */
839 case BSS_MAP_MSG_HANDOVER_FAILURE:
840 return ran_a_decode_handover_failure(ran_dec, bssmap, tp);
841
842 default:
843 LOG_RAN_A_DEC(ran_dec, LOGL_ERROR, "Unimplemented msg type: %s\n", gsm0808_bssmap_name(msg_type));
844 return -EINVAL;
845 }
846
847 return -EINVAL;
848}
849
850static int ran_a_decode_l3(struct ran_dec *ran_dec, struct msgb *l3)
851{
852 struct dtap_header *dtap = msgb_l2(l3);
853 struct ran_msg ran_dec_msg = {
854 .msg_type = RAN_MSG_DTAP,
855 .msg_name = "BSSAP DTAP",
856 .dtap = l3,
857 };
858 l3->l3h = l3->l2h + sizeof(struct dtap_header);
859 OMSC_LINKID_CB(l3) = dtap->link_id;
860 return ran_decoded(ran_dec, &ran_dec_msg);
861}
862
863int ran_a_decode_l2(struct ran_dec *ran_dec, struct msgb *bssap)
864{
865 uint8_t bssap_type;
866 OSMO_ASSERT(bssap);
867
868 if (!msgb_l2(bssap) || !msgb_l2len(bssap)) {
869 LOG_RAN_A_DEC(ran_dec, LOGL_ERROR, "Cannot decode L2, msg->l2h is unset / empty: %s\n",
870 msgb_hexdump(bssap));
871 return -EINVAL;
872 }
873
874 if (msgb_l2len(bssap) < sizeof(struct bssmap_header)) {
875 LOG_RAN_A_DEC(ran_dec, LOGL_ERROR, "The header is too short -- discarding message\n");
876 return -EINVAL;
877 }
878
879 bssap_type = bssap->l2h[0];
880 switch (bssap_type) {
881 case BSSAP_MSG_BSS_MANAGEMENT:
882 return ran_a_decode_bssmap(ran_dec, bssap);
883 case BSSAP_MSG_DTAP:
884 return ran_a_decode_l3(ran_dec, bssap);
885 default:
886 LOG_RAN_A_DEC(ran_dec, LOGL_ERROR, "Unimplemented BSSAP msg type: %s\n", gsm0808_bssap_name(bssap_type));
887 return -EINVAL;
888 }
889}
890
891static struct msgb *ran_a_wrap_dtap(struct msgb *dtap)
892{
893 struct msgb *an_apdu;
894 dtap->l3h = dtap->data;
895 an_apdu = gsm0808_create_dtap(dtap, OMSC_LINKID_CB(dtap));
896 an_apdu->l2h = an_apdu->data;
897 msgb_free(dtap);
898 return an_apdu;
899}
900
901static int ran_a_channel_type_to_speech_codec_list(struct gsm0808_speech_codec_list *scl, const struct gsm0808_channel_type *ct)
902{
903 unsigned int i;
904 int rc;
905
906 memset(scl, 0, sizeof(*scl));
907 for (i = 0; i < ct->perm_spch_len; i++) {
908 rc = gsm0808_speech_codec_from_chan_type(&scl->codec[i], ct->perm_spch[i]);
909 if (rc != 0)
910 return -EINVAL;
911 }
912 scl->len = i;
913
914 return 0;
915}
916
Pau Espin Pedrola3cdab42019-05-09 17:54:08 +0200917static void _gsm0808_assignment_extend_osmux(struct msgb *msg, uint8_t cid)
918{
919 OSMO_ASSERT(msg->l3h[1] == msgb_l3len(msg) - 2); /*TL not in len */
920 msgb_tv_put(msg, GSM0808_IE_OSMO_OSMUX_CID, cid);
921 msg->l3h[1] = msgb_l3len(msg) - 2;
922}
923
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100924/* Compose a BSSAP Assignment Command.
925 * Passing an RTP address is optional.
926 * The msub is passed merely for error logging. */
927static struct msgb *ran_a_make_assignment_command(struct osmo_fsm_inst *log_fi,
928 const struct ran_assignment_command *ac)
929{
930 struct gsm0808_speech_codec_list scl;
931 struct gsm0808_speech_codec_list *use_scl = NULL;
932 struct sockaddr_storage rtp_addr;
933 struct sockaddr_storage *use_rtp_addr = NULL;
Pau Espin Pedrola3cdab42019-05-09 17:54:08 +0200934 struct msgb *msg;
Philipp Maierf34d9452020-06-05 15:49:35 +0200935 const uint32_t *call_id = NULL;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100936 int rc;
937
938 if (!ac->channel_type) {
939 LOG_RAN_A_ENC(log_fi, LOGL_ERROR, "Assignment Command: missing Channel Type\n");
940 return NULL;
941 }
942
943 if (ac->channel_type->ch_indctr == GSM0808_CHAN_SPEECH) {
944 rc = ran_a_channel_type_to_speech_codec_list(&scl, ac->channel_type);
945 if (rc < 0) {
946 LOG_RAN_A_ENC(log_fi, LOGL_ERROR, "Assignment Command: Cannot translate Channel Type to Speech Codec List\n");
947 return NULL;
948 }
949 use_scl = &scl;
950
951 /* Package RTP-Address data */
Neels Hofmeyr84ce2062019-10-05 05:15:25 +0200952 if (osmo_sockaddr_str_is_nonzero(ac->cn_rtp)) {
Pau Espin Pedrold35abfa2020-08-31 20:44:50 +0200953 struct sockaddr_in *sin;
954 struct sockaddr_in6 *sin6;
955 int family = osmo_ip_str_type(ac->cn_rtp->ip);
956 switch (family) {
957 case AF_INET:
958 sin = (struct sockaddr_in *)&rtp_addr;
959 sin->sin_family = AF_INET;
960 sin->sin_port = osmo_htons(ac->cn_rtp->port);
961 if (inet_pton(AF_INET, ac->cn_rtp->ip, &sin->sin_addr) != 1) {
962 LOG_RAN_A_ENC(log_fi, LOGL_ERROR,
963 "Assignment Command: Invalid RTP-Address %s\n",
964 ac->cn_rtp->ip);
965 return NULL;
966 }
967 if (sin->sin_port == 0) {
968 LOG_RAN_A_ENC(log_fi, LOGL_ERROR,
969 "Assignment Command: Invalid RTP-Port\n");
970 return NULL;
971 }
972 break;
973 case AF_INET6:
974 sin6 = (struct sockaddr_in6 *)&rtp_addr;
975 sin6->sin6_family = AF_INET6;
976 sin6->sin6_port = osmo_htons(ac->cn_rtp->port);
977 if (inet_pton(AF_INET6, ac->cn_rtp->ip, &sin6->sin6_addr) != 1) {
978 LOG_RAN_A_ENC(log_fi, LOGL_ERROR,
979 "Assignment Command: Invalid RTP-Address %s\n",
980 ac->cn_rtp->ip);
981 return NULL;
982 }
983 if (sin6->sin6_port == 0) {
984 LOG_RAN_A_ENC(log_fi, LOGL_ERROR,
985 "Assignment Command: Invalid RTP-Port\n");
986 return NULL;
987 }
988 break;
989 default:
990 LOG_RAN_A_ENC(log_fi, LOGL_ERROR,
991 "Assignment Command: Invalid RTP-Address type for %s\n",
992 ac->cn_rtp->ip);
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100993 return NULL;
994 }
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100995 use_rtp_addr = &rtp_addr;
996 }
997 }
998
Philipp Maierf34d9452020-06-05 15:49:35 +0200999 if(ac->call_id_present == true)
1000 call_id = &ac->call_id;
1001
Keith Whytea1a70be2021-05-16 02:59:52 +02001002 msg = gsm0808_create_ass2(ac->channel_type, NULL, use_rtp_addr, use_scl, call_id,
1003 NULL, ac->lcls);
Vadim Yanitskiy8284fb02022-12-14 04:47:58 +07001004 if (msg == NULL) {
1005 LOG_RAN_A_ENC(log_fi, LOGL_ERROR,
1006 "Failed to encode BSSMAP Assignment Request message\n");
1007 return NULL;
1008 }
1009
Pau Espin Pedrola3cdab42019-05-09 17:54:08 +02001010 if (ac->osmux_present)
1011 _gsm0808_assignment_extend_osmux(msg, ac->osmux_cid);
1012 return msg;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001013}
1014
1015/* For an A5/N number a5_n set dst to the matching GSM0808_ALG_ID_A5_<n>. */
1016static int a5_n_to_gsm0808_chosen_enc_alg(uint8_t *dst, int a5_n)
1017{
1018 switch (a5_n) {
1019 case 0:
1020 *dst = GSM0808_ALG_ID_A5_0;
1021 return 0;
1022 case 1:
1023 *dst = GSM0808_ALG_ID_A5_1;
1024 return 0;
1025 case 2:
1026 *dst = GSM0808_ALG_ID_A5_2;
1027 return 0;
1028 case 3:
1029 *dst = GSM0808_ALG_ID_A5_3;
1030 return 0;
Neels Hofmeyr6ce2edc2021-06-09 22:26:11 +02001031 case 4:
1032 *dst = GSM0808_ALG_ID_A5_4;
1033 return 0;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001034 default:
1035 return -ENOTSUP;
1036 }
1037}
1038
1039static int make_encrypt_info_perm_algo(struct osmo_fsm_inst *fi, struct gsm0808_encrypt_info *ei,
1040 uint8_t a5_encryption_mask, const struct osmo_gsm48_classmark *cm)
1041{
1042 int i;
1043 int j = 0;
1044 for (i = 0; i < 8; i++) {
1045 int supported;
1046
1047 /* A5/n permitted by osmo-msc.cfg? */
1048 if (!(a5_encryption_mask & (1 << i)))
1049 continue;
1050
1051 /* A5/n supported by MS? */
1052 supported = osmo_gsm48_classmark_supports_a5(cm, i);
1053 if (supported != 1)
1054 continue;
1055
1056 if (a5_n_to_gsm0808_chosen_enc_alg(&ei->perm_algo[j], i)) {
1057 LOG_RAN_A_ENC(fi, LOGL_ERROR, "Not supported: A5/%d algorithm\n", i);
1058 return -1;
1059 }
1060 j++;
1061 ei->perm_algo_len = j;
1062 }
1063 return 0;
1064}
1065
1066/* For ran_a_make_cipher_mode_command(), for
1067 * memcpy(ei.key, cm->vec->kc, sizeof(cm->vec->kc));
1068 */
1069osmo_static_assert(sizeof(((struct gsm0808_encrypt_info*)0)->key) >= sizeof(((struct osmo_auth_vector*)0)->kc),
1070 gsm0808_encrypt_info_key_fits_osmo_auth_vec_kc);
1071static struct msgb *ran_a_make_cipher_mode_command(struct osmo_fsm_inst *fi, const struct ran_cipher_mode_command *cm)
1072{
Neels Hofmeyrcdcfc802021-06-09 22:26:11 +02001073 struct gsm0808_cipher_mode_command cmc = {
1074 .cipher_response_mode_present = true,
1075 .cipher_response_mode = 1, /* 1: include IMEISV (3GPP TS 48.008 3.2.2.34) */
1076 };
1077 struct gsm0808_encrypt_info *ei = &cmc.ei;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001078 char buf[16 * 2 + 1];
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001079
Neels Hofmeyrcdcfc802021-06-09 22:26:11 +02001080 if (make_encrypt_info_perm_algo(fi, ei, cm->geran.a5_encryption_mask, cm->classmark))
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001081 return NULL;
1082
Neels Hofmeyrcdcfc802021-06-09 22:26:11 +02001083 if (ei->perm_algo_len == 0) {
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001084 LOG_RAN_A_ENC(fi, LOGL_ERROR, "cannot start ciphering, no intersection between MSC-configured"
1085 " and MS-supported A5 algorithms. MSC: 0x%02x MS: %s\n",
1086 cm->geran.a5_encryption_mask, osmo_gsm48_classmark_a5_name(cm->classmark));
1087 return NULL;
1088 }
1089
1090 /* In case of UMTS AKA, the Kc for ciphering must be derived from the 3G auth
1091 * tokens. vec->kc was calculated from the GSM algorithm and is not
1092 * necessarily a match for the UMTS AKA tokens. */
Neels Hofmeyr6ce2edc2021-06-09 22:26:11 +02001093 if (cm->geran.umts_aka) {
1094 int i;
Neels Hofmeyrcdcfc802021-06-09 22:26:11 +02001095 osmo_auth_c3(ei->key, cm->vec->ck, cm->vec->ik);
Neels Hofmeyr6ce2edc2021-06-09 22:26:11 +02001096
1097 for (i = 0; i < ei->perm_algo_len; i++) {
1098 if (ei->perm_algo[i] != GSM0808_ALG_ID_A5_4)
1099 continue;
1100 /* A5/4 is included, so need to generate Kc128 */
1101 osmo_kdf_kc128(cm->vec->ck, cm->vec->ik, cmc.kc128);
1102 cmc.kc128_present = true;
1103 break;
1104 }
1105 } else {
Neels Hofmeyrcdcfc802021-06-09 22:26:11 +02001106 memcpy(ei->key, cm->vec->kc, sizeof(cm->vec->kc));
Neels Hofmeyr6ce2edc2021-06-09 22:26:11 +02001107 }
Neels Hofmeyrcdcfc802021-06-09 22:26:11 +02001108 ei->key_len = sizeof(cm->vec->kc);
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001109
1110 /* Store chosen GERAN key where the caller asked it to be stored.
1111 * alg_id remains unknown until we receive a Cipher Mode Complete from the BSC */
1112 if (cm->geran.chosen_key) {
Neels Hofmeyr6ce2edc2021-06-09 22:26:11 +02001113 *cm->geran.chosen_key = (struct geran_encr){0};
1114
Neels Hofmeyrcdcfc802021-06-09 22:26:11 +02001115 if (ei->key_len > sizeof(cm->geran.chosen_key->key)) {
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001116 LOG_RAN_A_ENC(fi, LOGL_ERROR, "Chosen key is larger than I can store\n");
1117 return NULL;
1118 }
Neels Hofmeyrcdcfc802021-06-09 22:26:11 +02001119 memcpy(cm->geran.chosen_key->key, ei->key, ei->key_len);
1120 cm->geran.chosen_key->key_len = ei->key_len;
Neels Hofmeyr6ce2edc2021-06-09 22:26:11 +02001121
1122 if (cmc.kc128_present) {
1123 memcpy(cm->geran.chosen_key->kc128, cmc.kc128, 16);
1124 cm->geran.chosen_key->kc128_present = true;
1125 }
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001126 }
1127
1128 LOG_RAN_A_ENC(fi, LOGL_DEBUG, "Tx BSSMAP CIPHER MODE COMMAND to BSC, %u ciphers (%s) key %s\n",
Neels Hofmeyrcdcfc802021-06-09 22:26:11 +02001129 ei->perm_algo_len, osmo_hexdump_nospc(ei->perm_algo, ei->perm_algo_len),
1130 osmo_hexdump_buf(buf, sizeof(buf), ei->key, ei->key_len, NULL, false));
1131 return gsm0808_create_cipher2(&cmc);
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001132}
1133
1134struct msgb *ran_a_make_handover_request(struct osmo_fsm_inst *log_fi, const struct ran_handover_request *n)
1135{
1136 struct sockaddr_storage ss;
1137 struct gsm0808_handover_request r = {
1138 .cell_identifier_serving = n->cell_id_serving,
1139 .cell_identifier_target = n->cell_id_target,
1140 .cause = n->bssap_cause,
1141 .current_channel_type_1_present = n->current_channel_type_1_present,
1142 .current_channel_type_1 = n->current_channel_type_1,
1143
1144 .speech_version_used = n->speech_version_used,
1145
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001146 .old_bss_to_new_bss_info_raw = n->old_bss_to_new_bss_info_raw,
1147 .old_bss_to_new_bss_info_raw_len = n->old_bss_to_new_bss_info_raw_len,
1148
1149 .imsi = n->imsi,
1150 .codec_list_msc_preferred = n->codec_list_msc_preferred,
Philipp Maier7da956e2020-06-09 14:34:40 +02001151 .call_id_present = n->call_id_present,
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001152 .call_id = n->call_id,
1153 .global_call_reference = n->global_call_reference,
1154 .global_call_reference_len = n->global_call_reference_len,
1155 };
1156
1157 if (!n->geran.channel_type) {
1158 LOG_RAN_A_ENC(log_fi, LOGL_ERROR, "Channel Type required for encoding Handover Request in BSSAP\n");
1159 return NULL;
1160 }
1161 r.channel_type = *n->geran.channel_type;
1162
1163 /* Encryption Information */
1164 make_encrypt_info_perm_algo(log_fi, &r.encryption_information, n->geran.a5_encryption_mask, n->classmark);
1165 if (n->geran.chosen_encryption && n->geran.chosen_encryption->key_len) {
Vadim Yanitskiy444771d2019-05-11 04:46:24 +07001166 /* Prevent both source / destination buffer overrun / overflow */
1167 if (n->geran.chosen_encryption->key_len > sizeof(r.encryption_information.key)
1168 || n->geran.chosen_encryption->key_len > sizeof(n->geran.chosen_encryption->key)) {
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001169 LOG_RAN_A_ENC(log_fi, LOGL_ERROR, "Handover Request: invalid chosen encryption key size %u\n",
1170 n->geran.chosen_encryption->key_len);
1171 return NULL;
1172 }
1173 memcpy(r.encryption_information.key,
1174 n->geran.chosen_encryption->key, n->geran.chosen_encryption->key_len);
1175 r.encryption_information.key_len = n->geran.chosen_encryption->key_len;
Vadim Yanitskiybfe8eb72019-05-11 03:52:28 +07001176 r.chosen_encryption_algorithm_serving = n->geran.chosen_encryption->alg_id;
Neels Hofmeyrdb07fdc2021-06-09 22:27:47 +02001177
1178 if (n->geran.chosen_encryption->kc128_present) {
1179 r.more_items = true;
1180 memcpy(r.kc128, n->geran.chosen_encryption->kc128, sizeof(r.kc128));
1181 r.kc128_present = true;
1182 }
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001183 }
1184
1185 if (n->classmark)
1186 r.classmark_information = *n->classmark;
1187
Neels Hofmeyr84ce2062019-10-05 05:15:25 +02001188 if (osmo_sockaddr_str_is_nonzero(n->rtp_ran_local)) {
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001189 if (osmo_sockaddr_str_to_sockaddr(n->rtp_ran_local, &ss)) {
1190 LOG_RAN_A_ENC(log_fi, LOGL_ERROR,
1191 "Handover Request: invalid AoIP Transport Layer address/port: "
1192 OSMO_SOCKADDR_STR_FMT "\n", OSMO_SOCKADDR_STR_FMT_ARGS(n->rtp_ran_local));
1193 return NULL;
1194 }
1195 r.aoip_transport_layer = &ss;
1196 }
1197
1198 return gsm0808_create_handover_request(&r);
1199}
1200
1201static struct msgb *ran_a_make_handover_request_ack(struct osmo_fsm_inst *caller_fi, const struct ran_handover_request_ack *r)
1202{
1203 struct sockaddr_storage ss;
1204 struct gsm0808_handover_request_ack params = {
1205 .l3_info = r->rr_ho_command,
1206 .l3_info_len = r->rr_ho_command_len,
1207 .chosen_channel_present = r->chosen_channel_present,
1208 .chosen_channel = r->chosen_channel,
1209 .chosen_encr_alg = r->chosen_encr_alg,
1210 .chosen_speech_version = r->chosen_speech_version,
1211 };
1212
Neels Hofmeyr84ce2062019-10-05 05:15:25 +02001213 if (osmo_sockaddr_str_is_nonzero(&r->remote_rtp)) {
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001214 osmo_sockaddr_str_to_sockaddr(&r->remote_rtp, &ss);
1215 params.aoip_transport_layer = &ss;
1216 }
1217
1218 return gsm0808_create_handover_request_ack2(&params);
1219}
1220
1221struct msgb *ran_a_make_handover_command(struct osmo_fsm_inst *log_fi, const struct ran_handover_command *n)
1222{
1223 struct gsm0808_handover_command c = {
1224 .l3_info = n->rr_ho_command,
1225 .l3_info_len = n->rr_ho_command_len,
1226 };
1227
1228 return gsm0808_create_handover_command(&c);
1229}
1230
1231struct msgb *ran_a_make_handover_failure(struct osmo_fsm_inst *log_fi, const struct ran_msg *msg)
1232{
1233 struct gsm0808_handover_failure params = {
1234 .cause = msg->handover_failure.cause,
1235 };
1236 return gsm0808_create_handover_failure(&params);
1237}
1238
1239static struct msgb *_ran_a_encode(struct osmo_fsm_inst *caller_fi, const struct ran_msg *ran_enc_msg)
1240{
1241
1242 LOG_RAN_A_ENC(caller_fi, LOGL_DEBUG, "%s\n", ran_msg_type_name(ran_enc_msg->msg_type));
1243
1244 switch (ran_enc_msg->msg_type) {
1245
1246 case RAN_MSG_DTAP:
1247 return ran_a_wrap_dtap(ran_enc_msg->dtap);
1248
1249 case RAN_MSG_CLASSMARK_REQUEST:
1250 return gsm0808_create_classmark_request();
1251
1252 case RAN_MSG_CLEAR_COMMAND:
1253 return gsm0808_create_clear_command2(ran_enc_msg->clear_command.gsm0808_cause,
1254 ran_enc_msg->clear_command.csfb_ind);
1255
1256 case RAN_MSG_ASSIGNMENT_COMMAND:
1257 return ran_a_make_assignment_command(caller_fi, &ran_enc_msg->assignment_command);
1258
Harald Welte544a32f2020-06-21 22:15:53 +02001259 case RAN_MSG_COMMON_ID:
Pau Espin Pedrol67106702021-04-27 18:20:15 +02001260 return gsm0808_create_common_id(ran_enc_msg->common_id.imsi, NULL,
1261 ran_enc_msg->common_id.last_eutran_plmn_present ?
1262 &ran_enc_msg->common_id.last_eutran_plmn :
1263 NULL
1264 );
Harald Welte544a32f2020-06-21 22:15:53 +02001265
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001266 case RAN_MSG_CIPHER_MODE_COMMAND:
1267 return ran_a_make_cipher_mode_command(caller_fi, &ran_enc_msg->cipher_mode_command);
1268
1269 case RAN_MSG_HANDOVER_REQUIRED_REJECT:
1270 return gsm0808_create_handover_required_reject(&ran_enc_msg->handover_required_reject);
1271
1272 case RAN_MSG_HANDOVER_REQUEST:
1273 return ran_a_make_handover_request(caller_fi, &ran_enc_msg->handover_request);
1274
1275 case RAN_MSG_HANDOVER_REQUEST_ACK:
1276 return ran_a_make_handover_request_ack(caller_fi, &ran_enc_msg->handover_request_ack);
1277
1278 case RAN_MSG_HANDOVER_COMMAND:
1279 return ran_a_make_handover_command(caller_fi, &ran_enc_msg->handover_command);
1280
1281 case RAN_MSG_HANDOVER_SUCCEEDED:
1282 return gsm0808_create_handover_succeeded();
1283
1284 case RAN_MSG_HANDOVER_FAILURE:
1285 return ran_a_make_handover_failure(caller_fi, ran_enc_msg);
1286
1287 default:
1288 LOG_RAN_A_ENC(caller_fi, LOGL_ERROR, "Unimplemented RAN-encode message type: %s\n",
1289 ran_msg_type_name(ran_enc_msg->msg_type));
1290 return NULL;
1291 }
1292}
1293
1294struct msgb *ran_a_encode(struct osmo_fsm_inst *caller_fi, const struct ran_msg *ran_enc_msg)
1295{
1296 struct msgb *msg = _ran_a_encode(caller_fi, ran_enc_msg);
1297
1298 if (!msg)
1299 return NULL;
1300
1301 msg->l2h = msg->data;
1302
1303 /* some consistency checks to ensure we don't send invalid length */
1304 switch (msg->l2h[0]) {
1305 case BSSAP_MSG_DTAP:
1306 OSMO_ASSERT(msgb_l2len(msg) == msg->l2h[2] + 3);
1307 break;
1308 case BSSAP_MSG_BSS_MANAGEMENT:
1309 OSMO_ASSERT(msgb_l2len(msg) == msg->l2h[1] + 2);
1310 break;
1311 default:
1312 break;
1313 }
1314
1315 return msg;
1316}
1317
Neels Hofmeyrb6972742020-06-26 15:20:51 +02001318static void cl_parse_osmux(struct osmo_fsm_inst *log_fi, struct msgb *msg, int *supports_osmux)
1319{
1320 struct tlv_parsed tp;
1321 int rc;
1322
1323 if (supports_osmux == NULL)
1324 return;
1325
1326 rc = tlv_parse(&tp, gsm0808_att_tlvdef(), msgb_l3(msg) + 1, msgb_l3len(msg) - 1, 0, 0);
1327 if (rc < 0) {
1328 LOGPFSMSL(log_fi, DBSSAP, LOGL_ERROR, "BSSMAP: Failed parsing TLV looking for Osmux support\n");
1329 return;
1330 }
1331
1332 if (TLVP_PRESENT(&tp, GSM0808_IE_OSMO_OSMUX_SUPPORT)) {
1333 *supports_osmux = true;
1334 } else {
1335 *supports_osmux = false;
1336 }
1337}
1338
1339/* Return 1 for a RESET, 2 for a RESET ACK message, 0 otherwise.
1340 * In supports_osmux, return 0 for no information, 1 for support detected, -1 for non-support detected. */
1341enum reset_msg_type bssmap_is_reset_msg(const struct sccp_ran_inst *sri, struct osmo_fsm_inst *log_fi,
1342 struct msgb *l2, int *supports_osmux)
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001343{
1344 struct bssmap_header *bs = (struct bssmap_header *)msgb_l2(l2);
1345
Neels Hofmeyrb6972742020-06-26 15:20:51 +02001346 if (supports_osmux != NULL)
1347 *supports_osmux = 0;
1348
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001349 if (!bs
1350 || msgb_l2len(l2) < (sizeof(*bs) + 1)
1351 || bs->type != BSSAP_MSG_BSS_MANAGEMENT)
1352 return SCCP_RAN_MSG_NON_RESET;
1353
Neels Hofmeyrb6972742020-06-26 15:20:51 +02001354 l2->l3h = l2->l2h + sizeof(struct bssmap_header);
1355
1356 switch (l2->l3h[0]) {
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001357 case BSS_MAP_MSG_RESET:
Neels Hofmeyrb6972742020-06-26 15:20:51 +02001358 cl_parse_osmux(log_fi, l2, supports_osmux);
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001359 return SCCP_RAN_MSG_RESET;
1360 case BSS_MAP_MSG_RESET_ACKNOWLEDGE:
Neels Hofmeyrb6972742020-06-26 15:20:51 +02001361 cl_parse_osmux(log_fi, l2, supports_osmux);
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001362 return SCCP_RAN_MSG_RESET_ACK;
1363 default:
1364 return SCCP_RAN_MSG_NON_RESET;
1365 }
1366}
1367
Pau Espin Pedrolc9ba7542019-05-07 12:23:49 +02001368/* Patch regular BSSMAP RESET to add extra T to announce Osmux support (osmocom extension) */
1369static void _gsm0808_extend_announce_osmux(struct msgb *msg)
1370{
1371 OSMO_ASSERT(msg->l3h[1] == msgb_l3len(msg) - 2); /*TL not in len */
1372 msgb_put_u8(msg, GSM0808_IE_OSMO_OSMUX_SUPPORT);
1373 msg->l3h[1] = msgb_l3len(msg) - 2;
1374}
1375
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001376struct msgb *bssmap_make_reset_msg(const struct sccp_ran_inst *sri, enum reset_msg_type type)
1377{
Pau Espin Pedrolc9ba7542019-05-07 12:23:49 +02001378 struct gsm_network *net = sri->user_data;
1379 struct msgb *msg;
1380
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001381 switch (type) {
1382 case SCCP_RAN_MSG_RESET:
Pau Espin Pedrolc9ba7542019-05-07 12:23:49 +02001383 msg = gsm0808_create_reset();
1384 break;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001385 case SCCP_RAN_MSG_RESET_ACK:
Pau Espin Pedrolc9ba7542019-05-07 12:23:49 +02001386 msg = gsm0808_create_reset_ack();
1387 break;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001388 default:
1389 return NULL;
1390 }
Pau Espin Pedrolc9ba7542019-05-07 12:23:49 +02001391
1392 if (!msg)
1393 return NULL;
1394
1395 if (net->use_osmux != OSMUX_USAGE_OFF)
1396 _gsm0808_extend_announce_osmux(msg);
1397
1398 return msg;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001399}
1400
1401struct msgb *bssmap_make_paging_msg(const struct sccp_ran_inst *sri, const struct gsm0808_cell_id *page_cell_id,
1402 const char *imsi, uint32_t tmsi, enum paging_cause cause)
1403{
1404 struct gsm0808_cell_id_list2 cil;
1405 gsm0808_cell_id_to_list(&cil, page_cell_id);
1406 return gsm0808_create_paging2(imsi, tmsi == GSM_RESERVED_TMSI ? NULL : &tmsi, &cil, NULL);
1407}
1408
1409const char *bssmap_msg_name(const struct sccp_ran_inst *sri, const struct msgb *l2)
1410{
1411 struct bssmap_header *bs;
1412
1413 if (!l2->l2h)
1414 return "?";
1415
1416 bs = (struct bssmap_header *)msgb_l2(l2);
1417 switch (bs->type) {
1418 case BSSAP_MSG_BSS_MANAGEMENT:
1419 return gsm0808_bssmap_name(l2->l2h[0]);
1420 case BSSAP_MSG_DTAP:
1421 return "DTAP";
1422 default:
1423 return "?";
1424 }
1425}