blob: c49adf4747fa9b40a8efaad8d1f7bc2934bcf6d9 [file] [log] [blame]
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001/* BSSAP/BSSMAP encoding and decoding for MSC */
2/*
Vadim Yanitskiy999a5932023-05-18 17:22:26 +07003 * (C) 2019 by sysmocom - s.f.m.c. GmbH <info@sysmocom.de>
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01004 * 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) {
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100674 ran_dec_msg.handover_request_ack.chosen_speech_version = ie_chosen_speech_version->val[0];
675
676 /* the codec may be extrapolated from this Speech Version or below from Speech Codec */
Neels Hofmeyr7934e0d2022-10-31 18:13:47 +0100677 if (gsm0808_speech_codec_from_chan_type(&ran_dec_msg.handover_request_ack.codec,
678 ran_dec_msg.handover_request_ack.chosen_speech_version) == 0)
679 ran_dec_msg.handover_request_ack.codec_present = true;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100680 }
681
682 if (ie_aoip_transp_addr) {
Pau Espin Pedrol06327172020-09-04 16:37:14 +0200683 struct sockaddr_storage rtp_addr;
684 if (gsm0808_dec_aoip_trasp_addr(&rtp_addr, ie_aoip_transp_addr->val, ie_aoip_transp_addr->len) < 0) {
685 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "unable to decode AoIP transport address\n");
686 } else if (osmo_sockaddr_str_from_sockaddr(&ran_dec_msg.handover_request_ack.remote_rtp,
687 &rtp_addr)) {
688 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "unable to decode remote RTP IP address\n");
689 ran_dec_msg.handover_request_ack.remote_rtp = (struct osmo_sockaddr_str){};
690 }
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100691 }
692
693 if (ie_speech_codec) {
Neels Hofmeyr7934e0d2022-10-31 18:13:47 +0100694 /* the codec may be extrapolated from above Speech Version or from this Speech Codec */
695 if (gsm0808_dec_speech_codec(&ran_dec_msg.handover_request_ack.codec,
696 ie_speech_codec->val, ie_speech_codec->len) < 0)
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100697 LOG_RAN_A_DEC_MSG(LOGL_ERROR, "unable to decode IE Speech Codec (Chosen)\n");
Neels Hofmeyr7934e0d2022-10-31 18:13:47 +0100698 else
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100699 ran_dec_msg.handover_request_ack.codec_present = true;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100700 }
701
702 return ran_decoded(ran_dec, &ran_dec_msg);
703}
704
705static int ran_a_decode_handover_detect(struct ran_dec *ran_dec, const struct msgb *msg, const struct tlv_parsed *tp)
706{
707 struct ran_msg ran_dec_msg = {
708 .msg_type = RAN_MSG_HANDOVER_DETECT,
709 .msg_name = "BSSMAP Handover Detect",
710 };
711
712 return ran_decoded(ran_dec, &ran_dec_msg);
713}
714
715static int ran_a_decode_handover_succeeded(struct ran_dec *ran_dec, const struct msgb *msg, const struct tlv_parsed *tp)
716{
717 struct ran_msg ran_dec_msg = {
718 .msg_type = RAN_MSG_HANDOVER_SUCCEEDED,
719 .msg_name = "BSSMAP Handover Succeeded",
720 };
721
722 return ran_decoded(ran_dec, &ran_dec_msg);
723}
724
725static int ran_a_decode_handover_complete(struct ran_dec *ran_dec, const struct msgb *msg, const struct tlv_parsed *tp)
726{
727 struct ran_msg ran_dec_msg = {
728 .msg_type = RAN_MSG_HANDOVER_COMPLETE,
729 .msg_name = "BSSMAP Handover Complete",
730 };
731
732 return ran_decoded(ran_dec, &ran_dec_msg);
733}
734
735static int ran_a_decode_handover_failure(struct ran_dec *ran_dec, const struct msgb *msg, const struct tlv_parsed *tp)
736{
737 struct ran_msg ran_dec_msg = {
738 .msg_type = RAN_MSG_HANDOVER_FAILURE,
739 .msg_name = "BSSMAP Handover Failure",
740 };
741
742 return ran_decoded(ran_dec, &ran_dec_msg);
743}
744
745static int ran_a_decode_bssmap(struct ran_dec *ran_dec, struct msgb *bssmap)
746{
747 struct tlv_parsed tp[2];
748 int rc;
749 struct bssmap_header *h = msgb_l2(bssmap);
750 uint8_t msg_type;
751 bssmap->l3h = bssmap->l2h + sizeof(*h);
752
753 if (msgb_l3len(bssmap) < 1) {
754 LOG_RAN_A_DEC(ran_dec, LOGL_ERROR, "No data received, discarding message\n");
755 return -1;
756 }
757
758 if (msgb_l3len(bssmap) < h->length) {
Neels Hofmeyrf0923012019-08-22 17:19:49 +0200759 LOG_RAN_A_DEC(ran_dec, LOGL_ERROR, "BSSMAP data truncated, discarding message:"
760 " msgb_l3len(bssmap) == %u < bssmap_header->length == %u\n",
761 msgb_l3len(bssmap), h->length);
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100762 return -1;
763 }
764
765 if (msgb_l3len(bssmap) > h->length) {
Neels Hofmeyrf0923012019-08-22 17:19:49 +0200766 LOG_RAN_A_DEC(ran_dec, LOGL_NOTICE, "There are %u extra bytes after the BSSMAP data, truncating:"
767 " msgb_l3len(bssmap) == %u > bssmap_header->length == %u\n",
768 msgb_l3len(bssmap) - h->length,
769 msgb_l3len(bssmap), h->length);
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100770 msgb_l3trim(bssmap, h->length);
771 }
772
773 /* h->type == BSSAP_MSG_BSS_MANAGEMENT; h->length is the data length,
774 * which starts with the MAP msg_type, followed by IEs. */
775 msg_type = bssmap->l3h[0];
776 rc = osmo_bssap_tlv_parse2(tp, ARRAY_SIZE(tp), bssmap->l3h + 1, h->length - 1);
777 if (rc < 0) {
778 LOG_RAN_A_DEC(ran_dec, LOGL_ERROR, "Failed parsing TLV, discarding message\n");
779 return -EINVAL;
780 }
781
Neels Hofmeyr72fc7062019-10-08 06:24:17 +0200782 LOG_RAN_A_DEC(ran_dec, LOGL_DEBUG, "%s\n", gsm0808_bssmap_name(msg_type));
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100783
784 switch (msg_type) {
785 case BSS_MAP_MSG_COMPLETE_LAYER_3:
786 return ran_a_decode_l3_compl(ran_dec, bssmap, tp);
787 case BSS_MAP_MSG_CLEAR_RQST:
788 return ran_a_decode_clear_request(ran_dec, bssmap, tp);
789 case BSS_MAP_MSG_CLEAR_COMPLETE:
790 return ran_a_decode_clear_complete(ran_dec, bssmap, tp);
791 case BSS_MAP_MSG_CLASSMARK_UPDATE:
792 return ran_a_decode_classmark_update(ran_dec, bssmap, tp);
793 case BSS_MAP_MSG_CIPHER_MODE_COMPLETE:
794 return ran_a_decode_cipher_mode_complete(ran_dec, bssmap, tp);
795 case BSS_MAP_MSG_CIPHER_MODE_REJECT:
796 return ran_a_decode_cipher_mode_reject(ran_dec, bssmap, tp);
797 case BSS_MAP_MSG_ASSIGMENT_COMPLETE:
798 rc = ran_a_decode_assignment_complete(ran_dec, bssmap, tp);
799 if (rc < 0) {
800 struct ran_msg ran_dec_msg = {
801 .msg_type = RAN_MSG_ASSIGNMENT_FAILURE,
802 .msg_name = "BSSMAP Assignment Complete but failed to decode",
803 .clear_request = {
804 .bssap_cause = GSM0808_CAUSE_EQUIPMENT_FAILURE,
805 },
806 };
807 ran_decoded(ran_dec, &ran_dec_msg);
808 }
809 return rc;
810 case BSS_MAP_MSG_ASSIGMENT_FAILURE:
811 return ran_a_decode_assignment_failure(ran_dec, bssmap, tp);
812 case BSS_MAP_MSG_SAPI_N_REJECT:
813 return ran_a_decode_sapi_n_reject(ran_dec, bssmap, tp);
814 case BSS_MAP_MSG_LCLS_NOTIFICATION:
815 return ran_a_decode_lcls_notification(ran_dec, bssmap, tp);
816
817 /* From current RAN peer, the Handover origin: */
818 case BSS_MAP_MSG_HANDOVER_REQUIRED:
819 return ran_a_decode_handover_required(ran_dec, bssmap, tp);
820
821 /* From current MSC to remote handover target MSC */
822 case BSS_MAP_MSG_HANDOVER_RQST:
823 return ran_a_decode_handover_request(ran_dec, bssmap, tp);
824
825 /* From potential new RAN peer, the Handover target: */
826 case BSS_MAP_MSG_HANDOVER_RQST_ACKNOWLEDGE:
827 return ran_a_decode_handover_request_ack(ran_dec, bssmap, tp);
828 case BSS_MAP_MSG_HANDOVER_DETECT:
829 return ran_a_decode_handover_detect(ran_dec, bssmap, tp);
830 case BSS_MAP_MSG_HANDOVER_SUCCEEDED:
831 return ran_a_decode_handover_succeeded(ran_dec, bssmap, tp);
832 case BSS_MAP_MSG_HANDOVER_COMPLETE:
833 return ran_a_decode_handover_complete(ran_dec, bssmap, tp);
834
835 /* From any Handover peer: */
836 case BSS_MAP_MSG_HANDOVER_FAILURE:
837 return ran_a_decode_handover_failure(ran_dec, bssmap, tp);
838
839 default:
840 LOG_RAN_A_DEC(ran_dec, LOGL_ERROR, "Unimplemented msg type: %s\n", gsm0808_bssmap_name(msg_type));
841 return -EINVAL;
842 }
843
844 return -EINVAL;
845}
846
847static int ran_a_decode_l3(struct ran_dec *ran_dec, struct msgb *l3)
848{
849 struct dtap_header *dtap = msgb_l2(l3);
850 struct ran_msg ran_dec_msg = {
851 .msg_type = RAN_MSG_DTAP,
852 .msg_name = "BSSAP DTAP",
853 .dtap = l3,
854 };
855 l3->l3h = l3->l2h + sizeof(struct dtap_header);
856 OMSC_LINKID_CB(l3) = dtap->link_id;
857 return ran_decoded(ran_dec, &ran_dec_msg);
858}
859
860int ran_a_decode_l2(struct ran_dec *ran_dec, struct msgb *bssap)
861{
862 uint8_t bssap_type;
863 OSMO_ASSERT(bssap);
864
865 if (!msgb_l2(bssap) || !msgb_l2len(bssap)) {
866 LOG_RAN_A_DEC(ran_dec, LOGL_ERROR, "Cannot decode L2, msg->l2h is unset / empty: %s\n",
867 msgb_hexdump(bssap));
868 return -EINVAL;
869 }
870
871 if (msgb_l2len(bssap) < sizeof(struct bssmap_header)) {
872 LOG_RAN_A_DEC(ran_dec, LOGL_ERROR, "The header is too short -- discarding message\n");
873 return -EINVAL;
874 }
875
876 bssap_type = bssap->l2h[0];
877 switch (bssap_type) {
878 case BSSAP_MSG_BSS_MANAGEMENT:
879 return ran_a_decode_bssmap(ran_dec, bssap);
880 case BSSAP_MSG_DTAP:
881 return ran_a_decode_l3(ran_dec, bssap);
882 default:
883 LOG_RAN_A_DEC(ran_dec, LOGL_ERROR, "Unimplemented BSSAP msg type: %s\n", gsm0808_bssap_name(bssap_type));
884 return -EINVAL;
885 }
886}
887
888static struct msgb *ran_a_wrap_dtap(struct msgb *dtap)
889{
890 struct msgb *an_apdu;
891 dtap->l3h = dtap->data;
892 an_apdu = gsm0808_create_dtap(dtap, OMSC_LINKID_CB(dtap));
893 an_apdu->l2h = an_apdu->data;
894 msgb_free(dtap);
895 return an_apdu;
896}
897
898static int ran_a_channel_type_to_speech_codec_list(struct gsm0808_speech_codec_list *scl, const struct gsm0808_channel_type *ct)
899{
900 unsigned int i;
901 int rc;
902
903 memset(scl, 0, sizeof(*scl));
Oliver Smithb1a15882023-05-23 13:54:36 +0200904
905 switch (ct->ch_indctr) {
906 case GSM0808_CHAN_DATA:
907 scl->codec[0].type = GSM0808_SCT_CSD;
908 scl->len = 1;
909 break;
910 case GSM0808_CHAN_SPEECH:
911 for (i = 0; i < ct->perm_spch_len; i++) {
912 rc = gsm0808_speech_codec_from_chan_type(&scl->codec[i], ct->perm_spch[i]);
913 if (rc != 0)
914 return -EINVAL;
915 }
916 scl->len = i;
917 break;
918 default:
919 OSMO_ASSERT(0);
920 break;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100921 }
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100922
923 return 0;
924}
925
Pau Espin Pedrola3cdab42019-05-09 17:54:08 +0200926static void _gsm0808_assignment_extend_osmux(struct msgb *msg, uint8_t cid)
927{
928 OSMO_ASSERT(msg->l3h[1] == msgb_l3len(msg) - 2); /*TL not in len */
929 msgb_tv_put(msg, GSM0808_IE_OSMO_OSMUX_CID, cid);
930 msg->l3h[1] = msgb_l3len(msg) - 2;
931}
932
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100933/* Compose a BSSAP Assignment Command.
934 * Passing an RTP address is optional.
935 * The msub is passed merely for error logging. */
936static struct msgb *ran_a_make_assignment_command(struct osmo_fsm_inst *log_fi,
937 const struct ran_assignment_command *ac)
938{
939 struct gsm0808_speech_codec_list scl;
940 struct gsm0808_speech_codec_list *use_scl = NULL;
941 struct sockaddr_storage rtp_addr;
942 struct sockaddr_storage *use_rtp_addr = NULL;
Pau Espin Pedrola3cdab42019-05-09 17:54:08 +0200943 struct msgb *msg;
Philipp Maierf34d9452020-06-05 15:49:35 +0200944 const uint32_t *call_id = NULL;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100945 int rc;
946
947 if (!ac->channel_type) {
948 LOG_RAN_A_ENC(log_fi, LOGL_ERROR, "Assignment Command: missing Channel Type\n");
949 return NULL;
950 }
951
Oliver Smithb1a15882023-05-23 13:54:36 +0200952 if (ac->channel_type->ch_indctr == GSM0808_CHAN_SPEECH || ac->channel_type->ch_indctr == GSM0808_CHAN_DATA) {
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100953 rc = ran_a_channel_type_to_speech_codec_list(&scl, ac->channel_type);
954 if (rc < 0) {
955 LOG_RAN_A_ENC(log_fi, LOGL_ERROR, "Assignment Command: Cannot translate Channel Type to Speech Codec List\n");
956 return NULL;
957 }
958 use_scl = &scl;
959
960 /* Package RTP-Address data */
Neels Hofmeyr84ce2062019-10-05 05:15:25 +0200961 if (osmo_sockaddr_str_is_nonzero(ac->cn_rtp)) {
Pau Espin Pedrold35abfa2020-08-31 20:44:50 +0200962 struct sockaddr_in *sin;
963 struct sockaddr_in6 *sin6;
964 int family = osmo_ip_str_type(ac->cn_rtp->ip);
965 switch (family) {
966 case AF_INET:
967 sin = (struct sockaddr_in *)&rtp_addr;
968 sin->sin_family = AF_INET;
969 sin->sin_port = osmo_htons(ac->cn_rtp->port);
970 if (inet_pton(AF_INET, ac->cn_rtp->ip, &sin->sin_addr) != 1) {
971 LOG_RAN_A_ENC(log_fi, LOGL_ERROR,
972 "Assignment Command: Invalid RTP-Address %s\n",
973 ac->cn_rtp->ip);
974 return NULL;
975 }
976 if (sin->sin_port == 0) {
977 LOG_RAN_A_ENC(log_fi, LOGL_ERROR,
978 "Assignment Command: Invalid RTP-Port\n");
979 return NULL;
980 }
981 break;
982 case AF_INET6:
983 sin6 = (struct sockaddr_in6 *)&rtp_addr;
984 sin6->sin6_family = AF_INET6;
985 sin6->sin6_port = osmo_htons(ac->cn_rtp->port);
986 if (inet_pton(AF_INET6, ac->cn_rtp->ip, &sin6->sin6_addr) != 1) {
987 LOG_RAN_A_ENC(log_fi, LOGL_ERROR,
988 "Assignment Command: Invalid RTP-Address %s\n",
989 ac->cn_rtp->ip);
990 return NULL;
991 }
992 if (sin6->sin6_port == 0) {
993 LOG_RAN_A_ENC(log_fi, LOGL_ERROR,
994 "Assignment Command: Invalid RTP-Port\n");
995 return NULL;
996 }
997 break;
998 default:
999 LOG_RAN_A_ENC(log_fi, LOGL_ERROR,
1000 "Assignment Command: Invalid RTP-Address type for %s\n",
1001 ac->cn_rtp->ip);
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001002 return NULL;
1003 }
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001004 use_rtp_addr = &rtp_addr;
1005 }
1006 }
1007
Philipp Maierf34d9452020-06-05 15:49:35 +02001008 if(ac->call_id_present == true)
1009 call_id = &ac->call_id;
1010
Keith Whytea1a70be2021-05-16 02:59:52 +02001011 msg = gsm0808_create_ass2(ac->channel_type, NULL, use_rtp_addr, use_scl, call_id,
1012 NULL, ac->lcls);
Vadim Yanitskiy8284fb02022-12-14 04:47:58 +07001013 if (msg == NULL) {
1014 LOG_RAN_A_ENC(log_fi, LOGL_ERROR,
1015 "Failed to encode BSSMAP Assignment Request message\n");
1016 return NULL;
1017 }
1018
Pau Espin Pedrola3cdab42019-05-09 17:54:08 +02001019 if (ac->osmux_present)
1020 _gsm0808_assignment_extend_osmux(msg, ac->osmux_cid);
1021 return msg;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001022}
1023
1024/* For an A5/N number a5_n set dst to the matching GSM0808_ALG_ID_A5_<n>. */
1025static int a5_n_to_gsm0808_chosen_enc_alg(uint8_t *dst, int a5_n)
1026{
1027 switch (a5_n) {
1028 case 0:
1029 *dst = GSM0808_ALG_ID_A5_0;
1030 return 0;
1031 case 1:
1032 *dst = GSM0808_ALG_ID_A5_1;
1033 return 0;
1034 case 2:
1035 *dst = GSM0808_ALG_ID_A5_2;
1036 return 0;
1037 case 3:
1038 *dst = GSM0808_ALG_ID_A5_3;
1039 return 0;
Neels Hofmeyr6ce2edc2021-06-09 22:26:11 +02001040 case 4:
1041 *dst = GSM0808_ALG_ID_A5_4;
1042 return 0;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001043 default:
1044 return -ENOTSUP;
1045 }
1046}
1047
1048static int make_encrypt_info_perm_algo(struct osmo_fsm_inst *fi, struct gsm0808_encrypt_info *ei,
1049 uint8_t a5_encryption_mask, const struct osmo_gsm48_classmark *cm)
1050{
1051 int i;
1052 int j = 0;
1053 for (i = 0; i < 8; i++) {
1054 int supported;
1055
1056 /* A5/n permitted by osmo-msc.cfg? */
1057 if (!(a5_encryption_mask & (1 << i)))
1058 continue;
1059
1060 /* A5/n supported by MS? */
1061 supported = osmo_gsm48_classmark_supports_a5(cm, i);
1062 if (supported != 1)
1063 continue;
1064
1065 if (a5_n_to_gsm0808_chosen_enc_alg(&ei->perm_algo[j], i)) {
1066 LOG_RAN_A_ENC(fi, LOGL_ERROR, "Not supported: A5/%d algorithm\n", i);
1067 return -1;
1068 }
1069 j++;
1070 ei->perm_algo_len = j;
1071 }
1072 return 0;
1073}
1074
1075/* For ran_a_make_cipher_mode_command(), for
1076 * memcpy(ei.key, cm->vec->kc, sizeof(cm->vec->kc));
1077 */
1078osmo_static_assert(sizeof(((struct gsm0808_encrypt_info*)0)->key) >= sizeof(((struct osmo_auth_vector*)0)->kc),
1079 gsm0808_encrypt_info_key_fits_osmo_auth_vec_kc);
1080static struct msgb *ran_a_make_cipher_mode_command(struct osmo_fsm_inst *fi, const struct ran_cipher_mode_command *cm)
1081{
Neels Hofmeyrcdcfc802021-06-09 22:26:11 +02001082 struct gsm0808_cipher_mode_command cmc = {
1083 .cipher_response_mode_present = true,
1084 .cipher_response_mode = 1, /* 1: include IMEISV (3GPP TS 48.008 3.2.2.34) */
1085 };
1086 struct gsm0808_encrypt_info *ei = &cmc.ei;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001087 char buf[16 * 2 + 1];
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001088
Neels Hofmeyrcdcfc802021-06-09 22:26:11 +02001089 if (make_encrypt_info_perm_algo(fi, ei, cm->geran.a5_encryption_mask, cm->classmark))
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001090 return NULL;
1091
Neels Hofmeyrcdcfc802021-06-09 22:26:11 +02001092 if (ei->perm_algo_len == 0) {
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001093 LOG_RAN_A_ENC(fi, LOGL_ERROR, "cannot start ciphering, no intersection between MSC-configured"
1094 " and MS-supported A5 algorithms. MSC: 0x%02x MS: %s\n",
1095 cm->geran.a5_encryption_mask, osmo_gsm48_classmark_a5_name(cm->classmark));
1096 return NULL;
1097 }
1098
1099 /* In case of UMTS AKA, the Kc for ciphering must be derived from the 3G auth
1100 * tokens. vec->kc was calculated from the GSM algorithm and is not
1101 * necessarily a match for the UMTS AKA tokens. */
Neels Hofmeyr6ce2edc2021-06-09 22:26:11 +02001102 if (cm->geran.umts_aka) {
1103 int i;
Neels Hofmeyrcdcfc802021-06-09 22:26:11 +02001104 osmo_auth_c3(ei->key, cm->vec->ck, cm->vec->ik);
Neels Hofmeyr6ce2edc2021-06-09 22:26:11 +02001105
1106 for (i = 0; i < ei->perm_algo_len; i++) {
1107 if (ei->perm_algo[i] != GSM0808_ALG_ID_A5_4)
1108 continue;
1109 /* A5/4 is included, so need to generate Kc128 */
1110 osmo_kdf_kc128(cm->vec->ck, cm->vec->ik, cmc.kc128);
1111 cmc.kc128_present = true;
1112 break;
1113 }
1114 } else {
Neels Hofmeyrcdcfc802021-06-09 22:26:11 +02001115 memcpy(ei->key, cm->vec->kc, sizeof(cm->vec->kc));
Neels Hofmeyr6ce2edc2021-06-09 22:26:11 +02001116 }
Neels Hofmeyrcdcfc802021-06-09 22:26:11 +02001117 ei->key_len = sizeof(cm->vec->kc);
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001118
1119 /* Store chosen GERAN key where the caller asked it to be stored.
1120 * alg_id remains unknown until we receive a Cipher Mode Complete from the BSC */
1121 if (cm->geran.chosen_key) {
Neels Hofmeyr6ce2edc2021-06-09 22:26:11 +02001122 *cm->geran.chosen_key = (struct geran_encr){0};
1123
Neels Hofmeyrcdcfc802021-06-09 22:26:11 +02001124 if (ei->key_len > sizeof(cm->geran.chosen_key->key)) {
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001125 LOG_RAN_A_ENC(fi, LOGL_ERROR, "Chosen key is larger than I can store\n");
1126 return NULL;
1127 }
Neels Hofmeyrcdcfc802021-06-09 22:26:11 +02001128 memcpy(cm->geran.chosen_key->key, ei->key, ei->key_len);
1129 cm->geran.chosen_key->key_len = ei->key_len;
Neels Hofmeyr6ce2edc2021-06-09 22:26:11 +02001130
1131 if (cmc.kc128_present) {
1132 memcpy(cm->geran.chosen_key->kc128, cmc.kc128, 16);
1133 cm->geran.chosen_key->kc128_present = true;
1134 }
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001135 }
1136
1137 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 +02001138 ei->perm_algo_len, osmo_hexdump_nospc(ei->perm_algo, ei->perm_algo_len),
1139 osmo_hexdump_buf(buf, sizeof(buf), ei->key, ei->key_len, NULL, false));
1140 return gsm0808_create_cipher2(&cmc);
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001141}
1142
1143struct msgb *ran_a_make_handover_request(struct osmo_fsm_inst *log_fi, const struct ran_handover_request *n)
1144{
1145 struct sockaddr_storage ss;
1146 struct gsm0808_handover_request r = {
1147 .cell_identifier_serving = n->cell_id_serving,
1148 .cell_identifier_target = n->cell_id_target,
1149 .cause = n->bssap_cause,
1150 .current_channel_type_1_present = n->current_channel_type_1_present,
1151 .current_channel_type_1 = n->current_channel_type_1,
1152
1153 .speech_version_used = n->speech_version_used,
1154
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001155 .old_bss_to_new_bss_info_raw = n->old_bss_to_new_bss_info_raw,
1156 .old_bss_to_new_bss_info_raw_len = n->old_bss_to_new_bss_info_raw_len,
1157
1158 .imsi = n->imsi,
1159 .codec_list_msc_preferred = n->codec_list_msc_preferred,
Philipp Maier7da956e2020-06-09 14:34:40 +02001160 .call_id_present = n->call_id_present,
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001161 .call_id = n->call_id,
1162 .global_call_reference = n->global_call_reference,
1163 .global_call_reference_len = n->global_call_reference_len,
1164 };
1165
1166 if (!n->geran.channel_type) {
1167 LOG_RAN_A_ENC(log_fi, LOGL_ERROR, "Channel Type required for encoding Handover Request in BSSAP\n");
1168 return NULL;
1169 }
1170 r.channel_type = *n->geran.channel_type;
1171
1172 /* Encryption Information */
1173 make_encrypt_info_perm_algo(log_fi, &r.encryption_information, n->geran.a5_encryption_mask, n->classmark);
1174 if (n->geran.chosen_encryption && n->geran.chosen_encryption->key_len) {
Vadim Yanitskiy444771d2019-05-11 04:46:24 +07001175 /* Prevent both source / destination buffer overrun / overflow */
1176 if (n->geran.chosen_encryption->key_len > sizeof(r.encryption_information.key)
1177 || n->geran.chosen_encryption->key_len > sizeof(n->geran.chosen_encryption->key)) {
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001178 LOG_RAN_A_ENC(log_fi, LOGL_ERROR, "Handover Request: invalid chosen encryption key size %u\n",
1179 n->geran.chosen_encryption->key_len);
1180 return NULL;
1181 }
1182 memcpy(r.encryption_information.key,
1183 n->geran.chosen_encryption->key, n->geran.chosen_encryption->key_len);
1184 r.encryption_information.key_len = n->geran.chosen_encryption->key_len;
Vadim Yanitskiybfe8eb72019-05-11 03:52:28 +07001185 r.chosen_encryption_algorithm_serving = n->geran.chosen_encryption->alg_id;
Neels Hofmeyrdb07fdc2021-06-09 22:27:47 +02001186
1187 if (n->geran.chosen_encryption->kc128_present) {
1188 r.more_items = true;
1189 memcpy(r.kc128, n->geran.chosen_encryption->kc128, sizeof(r.kc128));
1190 r.kc128_present = true;
1191 }
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001192 }
1193
1194 if (n->classmark)
1195 r.classmark_information = *n->classmark;
1196
Neels Hofmeyr84ce2062019-10-05 05:15:25 +02001197 if (osmo_sockaddr_str_is_nonzero(n->rtp_ran_local)) {
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001198 if (osmo_sockaddr_str_to_sockaddr(n->rtp_ran_local, &ss)) {
1199 LOG_RAN_A_ENC(log_fi, LOGL_ERROR,
1200 "Handover Request: invalid AoIP Transport Layer address/port: "
1201 OSMO_SOCKADDR_STR_FMT "\n", OSMO_SOCKADDR_STR_FMT_ARGS(n->rtp_ran_local));
1202 return NULL;
1203 }
1204 r.aoip_transport_layer = &ss;
1205 }
1206
1207 return gsm0808_create_handover_request(&r);
1208}
1209
1210static struct msgb *ran_a_make_handover_request_ack(struct osmo_fsm_inst *caller_fi, const struct ran_handover_request_ack *r)
1211{
1212 struct sockaddr_storage ss;
1213 struct gsm0808_handover_request_ack params = {
1214 .l3_info = r->rr_ho_command,
1215 .l3_info_len = r->rr_ho_command_len,
1216 .chosen_channel_present = r->chosen_channel_present,
1217 .chosen_channel = r->chosen_channel,
1218 .chosen_encr_alg = r->chosen_encr_alg,
1219 .chosen_speech_version = r->chosen_speech_version,
1220 };
1221
Neels Hofmeyr84ce2062019-10-05 05:15:25 +02001222 if (osmo_sockaddr_str_is_nonzero(&r->remote_rtp)) {
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001223 osmo_sockaddr_str_to_sockaddr(&r->remote_rtp, &ss);
1224 params.aoip_transport_layer = &ss;
1225 }
1226
1227 return gsm0808_create_handover_request_ack2(&params);
1228}
1229
1230struct msgb *ran_a_make_handover_command(struct osmo_fsm_inst *log_fi, const struct ran_handover_command *n)
1231{
1232 struct gsm0808_handover_command c = {
1233 .l3_info = n->rr_ho_command,
1234 .l3_info_len = n->rr_ho_command_len,
1235 };
1236
1237 return gsm0808_create_handover_command(&c);
1238}
1239
1240struct msgb *ran_a_make_handover_failure(struct osmo_fsm_inst *log_fi, const struct ran_msg *msg)
1241{
1242 struct gsm0808_handover_failure params = {
1243 .cause = msg->handover_failure.cause,
1244 };
1245 return gsm0808_create_handover_failure(&params);
1246}
1247
1248static struct msgb *_ran_a_encode(struct osmo_fsm_inst *caller_fi, const struct ran_msg *ran_enc_msg)
1249{
1250
1251 LOG_RAN_A_ENC(caller_fi, LOGL_DEBUG, "%s\n", ran_msg_type_name(ran_enc_msg->msg_type));
1252
1253 switch (ran_enc_msg->msg_type) {
1254
1255 case RAN_MSG_DTAP:
1256 return ran_a_wrap_dtap(ran_enc_msg->dtap);
1257
1258 case RAN_MSG_CLASSMARK_REQUEST:
1259 return gsm0808_create_classmark_request();
1260
1261 case RAN_MSG_CLEAR_COMMAND:
1262 return gsm0808_create_clear_command2(ran_enc_msg->clear_command.gsm0808_cause,
1263 ran_enc_msg->clear_command.csfb_ind);
1264
1265 case RAN_MSG_ASSIGNMENT_COMMAND:
1266 return ran_a_make_assignment_command(caller_fi, &ran_enc_msg->assignment_command);
1267
Harald Welte544a32f2020-06-21 22:15:53 +02001268 case RAN_MSG_COMMON_ID:
Pau Espin Pedrol67106702021-04-27 18:20:15 +02001269 return gsm0808_create_common_id(ran_enc_msg->common_id.imsi, NULL,
1270 ran_enc_msg->common_id.last_eutran_plmn_present ?
1271 &ran_enc_msg->common_id.last_eutran_plmn :
1272 NULL
1273 );
Harald Welte544a32f2020-06-21 22:15:53 +02001274
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001275 case RAN_MSG_CIPHER_MODE_COMMAND:
1276 return ran_a_make_cipher_mode_command(caller_fi, &ran_enc_msg->cipher_mode_command);
1277
1278 case RAN_MSG_HANDOVER_REQUIRED_REJECT:
1279 return gsm0808_create_handover_required_reject(&ran_enc_msg->handover_required_reject);
1280
1281 case RAN_MSG_HANDOVER_REQUEST:
1282 return ran_a_make_handover_request(caller_fi, &ran_enc_msg->handover_request);
1283
1284 case RAN_MSG_HANDOVER_REQUEST_ACK:
1285 return ran_a_make_handover_request_ack(caller_fi, &ran_enc_msg->handover_request_ack);
1286
1287 case RAN_MSG_HANDOVER_COMMAND:
1288 return ran_a_make_handover_command(caller_fi, &ran_enc_msg->handover_command);
1289
1290 case RAN_MSG_HANDOVER_SUCCEEDED:
1291 return gsm0808_create_handover_succeeded();
1292
1293 case RAN_MSG_HANDOVER_FAILURE:
1294 return ran_a_make_handover_failure(caller_fi, ran_enc_msg);
1295
1296 default:
1297 LOG_RAN_A_ENC(caller_fi, LOGL_ERROR, "Unimplemented RAN-encode message type: %s\n",
1298 ran_msg_type_name(ran_enc_msg->msg_type));
1299 return NULL;
1300 }
1301}
1302
1303struct msgb *ran_a_encode(struct osmo_fsm_inst *caller_fi, const struct ran_msg *ran_enc_msg)
1304{
1305 struct msgb *msg = _ran_a_encode(caller_fi, ran_enc_msg);
1306
1307 if (!msg)
1308 return NULL;
1309
1310 msg->l2h = msg->data;
1311
1312 /* some consistency checks to ensure we don't send invalid length */
1313 switch (msg->l2h[0]) {
1314 case BSSAP_MSG_DTAP:
1315 OSMO_ASSERT(msgb_l2len(msg) == msg->l2h[2] + 3);
1316 break;
1317 case BSSAP_MSG_BSS_MANAGEMENT:
1318 OSMO_ASSERT(msgb_l2len(msg) == msg->l2h[1] + 2);
1319 break;
1320 default:
1321 break;
1322 }
1323
1324 return msg;
1325}
1326
Neels Hofmeyrb6972742020-06-26 15:20:51 +02001327static void cl_parse_osmux(struct osmo_fsm_inst *log_fi, struct msgb *msg, int *supports_osmux)
1328{
1329 struct tlv_parsed tp;
1330 int rc;
1331
1332 if (supports_osmux == NULL)
1333 return;
1334
1335 rc = tlv_parse(&tp, gsm0808_att_tlvdef(), msgb_l3(msg) + 1, msgb_l3len(msg) - 1, 0, 0);
1336 if (rc < 0) {
1337 LOGPFSMSL(log_fi, DBSSAP, LOGL_ERROR, "BSSMAP: Failed parsing TLV looking for Osmux support\n");
1338 return;
1339 }
1340
1341 if (TLVP_PRESENT(&tp, GSM0808_IE_OSMO_OSMUX_SUPPORT)) {
1342 *supports_osmux = true;
1343 } else {
1344 *supports_osmux = false;
1345 }
1346}
1347
1348/* Return 1 for a RESET, 2 for a RESET ACK message, 0 otherwise.
1349 * In supports_osmux, return 0 for no information, 1 for support detected, -1 for non-support detected. */
1350enum reset_msg_type bssmap_is_reset_msg(const struct sccp_ran_inst *sri, struct osmo_fsm_inst *log_fi,
1351 struct msgb *l2, int *supports_osmux)
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001352{
1353 struct bssmap_header *bs = (struct bssmap_header *)msgb_l2(l2);
1354
Neels Hofmeyrb6972742020-06-26 15:20:51 +02001355 if (supports_osmux != NULL)
1356 *supports_osmux = 0;
1357
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001358 if (!bs
1359 || msgb_l2len(l2) < (sizeof(*bs) + 1)
1360 || bs->type != BSSAP_MSG_BSS_MANAGEMENT)
1361 return SCCP_RAN_MSG_NON_RESET;
1362
Neels Hofmeyrb6972742020-06-26 15:20:51 +02001363 l2->l3h = l2->l2h + sizeof(struct bssmap_header);
1364
1365 switch (l2->l3h[0]) {
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001366 case BSS_MAP_MSG_RESET:
Neels Hofmeyrb6972742020-06-26 15:20:51 +02001367 cl_parse_osmux(log_fi, l2, supports_osmux);
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001368 return SCCP_RAN_MSG_RESET;
1369 case BSS_MAP_MSG_RESET_ACKNOWLEDGE:
Neels Hofmeyrb6972742020-06-26 15:20:51 +02001370 cl_parse_osmux(log_fi, l2, supports_osmux);
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001371 return SCCP_RAN_MSG_RESET_ACK;
1372 default:
1373 return SCCP_RAN_MSG_NON_RESET;
1374 }
1375}
1376
Pau Espin Pedrolc9ba7542019-05-07 12:23:49 +02001377/* Patch regular BSSMAP RESET to add extra T to announce Osmux support (osmocom extension) */
1378static void _gsm0808_extend_announce_osmux(struct msgb *msg)
1379{
1380 OSMO_ASSERT(msg->l3h[1] == msgb_l3len(msg) - 2); /*TL not in len */
1381 msgb_put_u8(msg, GSM0808_IE_OSMO_OSMUX_SUPPORT);
1382 msg->l3h[1] = msgb_l3len(msg) - 2;
1383}
1384
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001385struct msgb *bssmap_make_reset_msg(const struct sccp_ran_inst *sri, enum reset_msg_type type)
1386{
Pau Espin Pedrolc9ba7542019-05-07 12:23:49 +02001387 struct gsm_network *net = sri->user_data;
1388 struct msgb *msg;
1389
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001390 switch (type) {
1391 case SCCP_RAN_MSG_RESET:
Pau Espin Pedrolc9ba7542019-05-07 12:23:49 +02001392 msg = gsm0808_create_reset();
1393 break;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001394 case SCCP_RAN_MSG_RESET_ACK:
Pau Espin Pedrolc9ba7542019-05-07 12:23:49 +02001395 msg = gsm0808_create_reset_ack();
1396 break;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001397 default:
1398 return NULL;
1399 }
Pau Espin Pedrolc9ba7542019-05-07 12:23:49 +02001400
1401 if (!msg)
1402 return NULL;
1403
1404 if (net->use_osmux != OSMUX_USAGE_OFF)
1405 _gsm0808_extend_announce_osmux(msg);
1406
1407 return msg;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001408}
1409
1410struct msgb *bssmap_make_paging_msg(const struct sccp_ran_inst *sri, const struct gsm0808_cell_id *page_cell_id,
1411 const char *imsi, uint32_t tmsi, enum paging_cause cause)
1412{
1413 struct gsm0808_cell_id_list2 cil;
1414 gsm0808_cell_id_to_list(&cil, page_cell_id);
1415 return gsm0808_create_paging2(imsi, tmsi == GSM_RESERVED_TMSI ? NULL : &tmsi, &cil, NULL);
1416}
1417
1418const char *bssmap_msg_name(const struct sccp_ran_inst *sri, const struct msgb *l2)
1419{
1420 struct bssmap_header *bs;
1421
1422 if (!l2->l2h)
1423 return "?";
1424
1425 bs = (struct bssmap_header *)msgb_l2(l2);
1426 switch (bs->type) {
1427 case BSSAP_MSG_BSS_MANAGEMENT:
1428 return gsm0808_bssmap_name(l2->l2h[0]);
1429 case BSSAP_MSG_DTAP:
1430 return "DTAP";
1431 default:
1432 return "?";
1433 }
1434}