blob: 1b0e2e8b6279c30e69fa10c53afe09f496c877b3 [file] [log] [blame]
Neels Hofmeyrc4628a32018-12-07 14:47:34 +01001/* API to forward upcoming NAS events, e.g. from BSSAP and RANAP, to be handled by MSC-A or MSC-I. */
2/*
3 * (C) 2019 by sysmocom s.f.m.c. GmbH <info@sysmocom.de>
4 *
5 * Author: Neels Hofmeyr <neels@hofmeyr.de>
6 *
7 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
18 *
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 */
22#pragma once
23
24#include <osmocom/core/utils.h>
25#include <osmocom/core/fsm.h>
26#include <osmocom/core/sockaddr_str.h>
27#include <osmocom/gsm/protocol/gsm_08_08.h>
28#include <osmocom/mgcp_client/mgcp_client.h>
29
30#include <osmocom/msc/msc_common.h>
31
32struct msgb;
33struct osmo_fsm_inst;
34
35#define LOG_RAN_DEC(NAS_DEC, subsys, level, fmt, args...) \
36 LOGPFSMSL((NAS_DEC)? (NAS_DEC)->caller_fi : NULL, subsys, level, "RAN decode: " fmt, ## args)
37
38#define LOG_RAN_ENC(FI, subsys, level, fmt, args...) \
39 LOGPFSMSL(FI, subsys, level, "RAN encode: " fmt, ## args)
40
41/* These message types are named after the BSSAP procedures in nas_a.h; most are also used for RANAP procedures of
42 * similar meaning in nas_iu.h. */
43enum ran_msg_type {
44 RAN_MSG_NONE = 0,
45 RAN_MSG_COMPL_L3,
46 RAN_MSG_DTAP,
47 RAN_MSG_CLEAR_COMMAND,
48 RAN_MSG_CLEAR_REQUEST,
49 RAN_MSG_CLEAR_COMPLETE,
50 RAN_MSG_CLASSMARK_REQUEST,
51 RAN_MSG_CLASSMARK_UPDATE,
52 RAN_MSG_CIPHER_MODE_COMMAND,
53 RAN_MSG_CIPHER_MODE_COMPLETE,
54 RAN_MSG_CIPHER_MODE_REJECT,
55 RAN_MSG_COMMON_ID,
56 RAN_MSG_ASSIGNMENT_COMMAND,
57 RAN_MSG_ASSIGNMENT_COMPLETE,
58 RAN_MSG_ASSIGNMENT_FAILURE,
59 RAN_MSG_SAPI_N_REJECT,
60 RAN_MSG_LCLS_STATUS,
61 RAN_MSG_LCLS_BREAK_REQ,
62 RAN_MSG_HANDOVER_COMMAND,
63 RAN_MSG_HANDOVER_PERFORMED,
64 RAN_MSG_HANDOVER_REQUIRED,
65 RAN_MSG_HANDOVER_REQUIRED_REJECT,
66 RAN_MSG_HANDOVER_REQUEST,
67 RAN_MSG_HANDOVER_REQUEST_ACK,
68 RAN_MSG_HANDOVER_DETECT,
69 RAN_MSG_HANDOVER_SUCCEEDED,
70 RAN_MSG_HANDOVER_COMPLETE,
71 RAN_MSG_HANDOVER_FAILURE,
72};
73
74extern const struct value_string ran_msg_type_names[];
75static inline const char *ran_msg_type_name(enum ran_msg_type val)
76{ return get_value_string(ran_msg_type_names, val); }
77
78struct ran_clear_command {
79 enum gsm0808_cause gsm0808_cause;
80 bool csfb_ind;
81};
82
83struct ran_assignment_command {
84 const struct osmo_sockaddr_str *cn_rtp;
85 const struct gsm0808_channel_type *channel_type;
86 enum nsap_addr_enc rab_assign_addr_enc;
Pau Espin Pedrola3cdab42019-05-09 17:54:08 +020087 bool osmux_present;
88 uint8_t osmux_cid;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +010089};
90
91struct ran_cipher_mode_command {
92 const struct osmo_auth_vector *vec;
93 const struct osmo_gsm48_classmark *classmark;
94 struct {
95 bool umts_aka;
96 bool retrieve_imeisv;
97 uint8_t a5_encryption_mask;
98
99 /* out-argument to return the key to the caller, pass NULL if not needed. */
100 struct geran_encr *chosen_key;
101 } geran;
102};
103
104struct ran_handover_request {
105 const char *imsi;
106 const struct osmo_gsm48_classmark *classmark;
107 /* A Handover Request on GERAN-A sends separate IEs for
108 * - permitted algorithms, here composed from the a5_encryption_mask,
109 * - the key, here taken from chosen_encryption->key iff chosen_encryption is present,
110 * - the actually chosen algorithm ("Serving"), here taken from chosen_encryption->alg_id.
111 */
112 struct {
113 struct gsm0808_channel_type *channel_type;
114 uint8_t a5_encryption_mask;
115 /*! chosen_encryption->alg_id is in encoded format:
116 * alg_id == 1 means A5/0 i.e. no encryption, alg_id == 4 means A5/3.
117 * alg_id == 0 means no such IE was present. */
118 struct geran_encr *chosen_encryption;
119 } geran;
120 struct gsm0808_cell_id cell_id_serving;
121 struct gsm0808_cell_id cell_id_target;
122
123 enum gsm0808_cause bssap_cause;
124
125 bool current_channel_type_1_present;
126 uint8_t current_channel_type_1;
127
128 enum gsm0808_permitted_speech speech_version_used;
129
130 const uint8_t *old_bss_to_new_bss_info_raw;
131 uint8_t old_bss_to_new_bss_info_raw_len;
132
133 struct osmo_sockaddr_str *rtp_ran_local;
134
135 struct gsm0808_speech_codec_list *codec_list_msc_preferred;
136
137 bool call_id_present;
138 uint32_t call_id;
139
140 const uint8_t *global_call_reference;
141 uint8_t global_call_reference_len;
142};
143
144struct ran_handover_request_ack {
145 const uint8_t *rr_ho_command;
146 uint8_t rr_ho_command_len;
147 bool chosen_channel_present;
148 uint8_t chosen_channel;
149 /*! chosen_encr_alg is in encoded format:
150 * chosen_encr_alg == 1 means A5/0 i.e. no encryption, chosen_encr_alg == 4 means A5/3.
151 * chosen_encr_alg == 0 means no such IE was present. */
152 uint8_t chosen_encr_alg;
153
154 /* chosen_speech_version == 0 means "not present" */
155 enum gsm0808_permitted_speech chosen_speech_version;
156
157 struct osmo_sockaddr_str remote_rtp;
158 bool codec_present;
159 enum mgcp_codecs codec;
160};
161
162struct ran_handover_command {
163 const uint8_t *rr_ho_command;
164 uint8_t rr_ho_command_len;
165
166 const uint8_t *new_bss_to_old_bss_info_raw;
167 uint8_t new_bss_to_old_bss_info_raw_len;
168};
169
170struct ran_handover_required {
171 uint16_t cause;
172 struct gsm0808_cell_id_list2 cil;
173
174 bool current_channel_type_1_present;
175 /*! See gsm0808_chosen_channel() */
176 uint8_t current_channel_type_1;
177
178 enum gsm0808_permitted_speech speech_version_used;
179
180 uint8_t *old_bss_to_new_bss_info_raw;
181 size_t old_bss_to_new_bss_info_raw_len;
182};
183
184struct ran_msg {
185 enum ran_msg_type msg_type;
186
187 /* Since different RAN implementations feed these messages, they should place here an implementation specific
188 * string constant to name the actual message (e.g. "BSSMAP Assignment Complete" vs. "RANAP RAB Assignment
189 * Response") */
190 const char *msg_name;
191
192 union {
193 struct {
194 const struct gsm0808_cell_id *cell_id;
Neels Hofmeyr8a50cfb2019-10-21 03:01:00 +0200195 const struct gsm0808_speech_codec_list *codec_list_bss_supported;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100196 struct msgb *msg;
197 } compl_l3;
198 struct msgb *dtap;
199 struct {
200 enum gsm0808_cause bssap_cause;
201#define RAN_MSG_BSSAP_CAUSE_UNSET 0xffff
202 } clear_request;
203 struct ran_clear_command clear_command;
204 struct {
205 const struct osmo_gsm48_classmark *classmark;
206 } classmark_update;
207 struct ran_cipher_mode_command cipher_mode_command;
208 struct {
209 /*! alg_id is in encoded format:
210 * alg_id == 1 means A5/0 i.e. no encryption, alg_id == 4 means A5/3.
211 * alg_id == 0 means no such IE was present. */
212 uint8_t alg_id;
213 const char *imeisv;
Neels Hofmeyre9a39112019-08-29 00:10:49 +0200214 const struct tlv_p_entry *l3_msg;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100215 } cipher_mode_complete;
216 struct {
217 enum gsm0808_cause bssap_cause;
218 } cipher_mode_reject;
219 struct {
220 const char *imsi;
221 } common_id;
222 struct {
223 enum gsm48_reject_value cause;
224 } cm_service_reject;
225 struct ran_assignment_command assignment_command;
226 struct {
227 struct osmo_sockaddr_str remote_rtp;
228 bool codec_present;
229 enum mgcp_codecs codec;
Neels Hofmeyr8a50cfb2019-10-21 03:01:00 +0200230 const struct gsm0808_speech_codec_list *codec_list_bss_supported;
Pau Espin Pedrola3cdab42019-05-09 17:54:08 +0200231 bool osmux_present;
232 uint8_t osmux_cid;
Neels Hofmeyrc4628a32018-12-07 14:47:34 +0100233 } assignment_complete;
234 struct {
235 enum gsm0808_cause bssap_cause;
236 uint8_t rr_cause;
237 const struct gsm0808_speech_codec_list *scl_bss_supported;
238 } assignment_failure;
239 struct {
240 enum gsm0808_cause bssap_cause;
241 uint8_t dlci;
242 } sapi_n_reject;
243 struct {
244 enum gsm0808_lcls_status status;
245 } lcls_status;
246 struct {
247 int todo;
248 } lcls_break_req;
249 struct ran_handover_required handover_required;
250 struct gsm0808_handover_required_reject handover_required_reject;
251 struct ran_handover_command handover_command;
252 struct {
253 enum gsm0808_cause cause;
254 } handover_failure;
255 struct ran_handover_request handover_request;
256 struct ran_handover_request_ack handover_request_ack;
257 };
258};
259
260/* MSC-A/I/T roles implement this to receive decoded NAS messages, upon feeding an L2 msgb to a ran_dec_l2_t matching the
261 * RAN type implementation. */
262typedef int (* ran_decode_cb_t )(struct osmo_fsm_inst *caller_fi, void *caller_data, const struct ran_msg *msg);
263
264struct ran_dec {
265 /* caller provided osmo_fsm_inst, used both for logging from within decoding of NAS events, as well as caller's
266 * context in decode_cb(). */
267 struct osmo_fsm_inst *caller_fi;
268 void *caller_data;
269
270 /* Callback receives the decoded NAS messages */
271 ran_decode_cb_t decode_cb;
272};
273
274/* NAS decoders (BSSAP/RANAP) implement this to turn a msgb into a struct ran_msg.
275 * An implementation typically calls ran_decoded() when done decoding.
276 * NAS decoding is modeled with a callback instead of a plain decoding, because some L2 messages by design contain more
277 * than one NAS event, e.g. Ciphering Mode Complete may include another L3 message for Identity Response, and LCLS
278 * Information messages can contain Status and Break Req events. */
279typedef int (* ran_dec_l2_t )(struct ran_dec *ran_dec, struct msgb *l2);
280
281int ran_decoded(struct ran_dec *ran_dec, struct ran_msg *msg);
282
283/* An MSC-A/I/T role that receives NAS events containing DTAP buffers may use this to detect DTAP duplicates as in TS
284 * 24.007 11.2.3.2 Message Type Octet / Duplicate Detection */
285bool ran_dec_dtap_undup_is_duplicate(struct osmo_fsm_inst *log_fi, uint8_t *n_sd_next, bool is_r99, struct msgb *l3);
286
287/* Implemented by individual RAN implementations, see ran_a_encode() and ran_iu_encode(). */
288typedef struct msgb *(* ran_encode_t )(struct osmo_fsm_inst *caller_fi, const struct ran_msg *ran_enc_msg);