blob: 4d0485d435bb993b7570efc2bc2b7a43d0c76e91 [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;
87};
88
89struct ran_cipher_mode_command {
90 const struct osmo_auth_vector *vec;
91 const struct osmo_gsm48_classmark *classmark;
92 struct {
93 bool umts_aka;
94 bool retrieve_imeisv;
95 uint8_t a5_encryption_mask;
96
97 /* out-argument to return the key to the caller, pass NULL if not needed. */
98 struct geran_encr *chosen_key;
99 } geran;
100};
101
102struct ran_handover_request {
103 const char *imsi;
104 const struct osmo_gsm48_classmark *classmark;
105 /* A Handover Request on GERAN-A sends separate IEs for
106 * - permitted algorithms, here composed from the a5_encryption_mask,
107 * - the key, here taken from chosen_encryption->key iff chosen_encryption is present,
108 * - the actually chosen algorithm ("Serving"), here taken from chosen_encryption->alg_id.
109 */
110 struct {
111 struct gsm0808_channel_type *channel_type;
112 uint8_t a5_encryption_mask;
113 /*! chosen_encryption->alg_id is in encoded format:
114 * alg_id == 1 means A5/0 i.e. no encryption, alg_id == 4 means A5/3.
115 * alg_id == 0 means no such IE was present. */
116 struct geran_encr *chosen_encryption;
117 } geran;
118 struct gsm0808_cell_id cell_id_serving;
119 struct gsm0808_cell_id cell_id_target;
120
121 enum gsm0808_cause bssap_cause;
122
123 bool current_channel_type_1_present;
124 uint8_t current_channel_type_1;
125
126 enum gsm0808_permitted_speech speech_version_used;
127
128 const uint8_t *old_bss_to_new_bss_info_raw;
129 uint8_t old_bss_to_new_bss_info_raw_len;
130
131 struct osmo_sockaddr_str *rtp_ran_local;
132
133 struct gsm0808_speech_codec_list *codec_list_msc_preferred;
134
135 bool call_id_present;
136 uint32_t call_id;
137
138 const uint8_t *global_call_reference;
139 uint8_t global_call_reference_len;
140};
141
142struct ran_handover_request_ack {
143 const uint8_t *rr_ho_command;
144 uint8_t rr_ho_command_len;
145 bool chosen_channel_present;
146 uint8_t chosen_channel;
147 /*! chosen_encr_alg is in encoded format:
148 * chosen_encr_alg == 1 means A5/0 i.e. no encryption, chosen_encr_alg == 4 means A5/3.
149 * chosen_encr_alg == 0 means no such IE was present. */
150 uint8_t chosen_encr_alg;
151
152 /* chosen_speech_version == 0 means "not present" */
153 enum gsm0808_permitted_speech chosen_speech_version;
154
155 struct osmo_sockaddr_str remote_rtp;
156 bool codec_present;
157 enum mgcp_codecs codec;
158};
159
160struct ran_handover_command {
161 const uint8_t *rr_ho_command;
162 uint8_t rr_ho_command_len;
163
164 const uint8_t *new_bss_to_old_bss_info_raw;
165 uint8_t new_bss_to_old_bss_info_raw_len;
166};
167
168struct ran_handover_required {
169 uint16_t cause;
170 struct gsm0808_cell_id_list2 cil;
171
172 bool current_channel_type_1_present;
173 /*! See gsm0808_chosen_channel() */
174 uint8_t current_channel_type_1;
175
176 enum gsm0808_permitted_speech speech_version_used;
177
178 uint8_t *old_bss_to_new_bss_info_raw;
179 size_t old_bss_to_new_bss_info_raw_len;
180};
181
182struct ran_msg {
183 enum ran_msg_type msg_type;
184
185 /* Since different RAN implementations feed these messages, they should place here an implementation specific
186 * string constant to name the actual message (e.g. "BSSMAP Assignment Complete" vs. "RANAP RAB Assignment
187 * Response") */
188 const char *msg_name;
189
190 union {
191 struct {
192 const struct gsm0808_cell_id *cell_id;
193 struct msgb *msg;
194 } compl_l3;
195 struct msgb *dtap;
196 struct {
197 enum gsm0808_cause bssap_cause;
198#define RAN_MSG_BSSAP_CAUSE_UNSET 0xffff
199 } clear_request;
200 struct ran_clear_command clear_command;
201 struct {
202 const struct osmo_gsm48_classmark *classmark;
203 } classmark_update;
204 struct ran_cipher_mode_command cipher_mode_command;
205 struct {
206 /*! alg_id is in encoded format:
207 * alg_id == 1 means A5/0 i.e. no encryption, alg_id == 4 means A5/3.
208 * alg_id == 0 means no such IE was present. */
209 uint8_t alg_id;
210 const char *imeisv;
211 } cipher_mode_complete;
212 struct {
213 enum gsm0808_cause bssap_cause;
214 } cipher_mode_reject;
215 struct {
216 const char *imsi;
217 } common_id;
218 struct {
219 enum gsm48_reject_value cause;
220 } cm_service_reject;
221 struct ran_assignment_command assignment_command;
222 struct {
223 struct osmo_sockaddr_str remote_rtp;
224 bool codec_present;
225 enum mgcp_codecs codec;
226 } assignment_complete;
227 struct {
228 enum gsm0808_cause bssap_cause;
229 uint8_t rr_cause;
230 const struct gsm0808_speech_codec_list *scl_bss_supported;
231 } assignment_failure;
232 struct {
233 enum gsm0808_cause bssap_cause;
234 uint8_t dlci;
235 } sapi_n_reject;
236 struct {
237 enum gsm0808_lcls_status status;
238 } lcls_status;
239 struct {
240 int todo;
241 } lcls_break_req;
242 struct ran_handover_required handover_required;
243 struct gsm0808_handover_required_reject handover_required_reject;
244 struct ran_handover_command handover_command;
245 struct {
246 enum gsm0808_cause cause;
247 } handover_failure;
248 struct ran_handover_request handover_request;
249 struct ran_handover_request_ack handover_request_ack;
250 };
251};
252
253/* 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
254 * RAN type implementation. */
255typedef int (* ran_decode_cb_t )(struct osmo_fsm_inst *caller_fi, void *caller_data, const struct ran_msg *msg);
256
257struct ran_dec {
258 /* caller provided osmo_fsm_inst, used both for logging from within decoding of NAS events, as well as caller's
259 * context in decode_cb(). */
260 struct osmo_fsm_inst *caller_fi;
261 void *caller_data;
262
263 /* Callback receives the decoded NAS messages */
264 ran_decode_cb_t decode_cb;
265};
266
267/* NAS decoders (BSSAP/RANAP) implement this to turn a msgb into a struct ran_msg.
268 * An implementation typically calls ran_decoded() when done decoding.
269 * NAS decoding is modeled with a callback instead of a plain decoding, because some L2 messages by design contain more
270 * than one NAS event, e.g. Ciphering Mode Complete may include another L3 message for Identity Response, and LCLS
271 * Information messages can contain Status and Break Req events. */
272typedef int (* ran_dec_l2_t )(struct ran_dec *ran_dec, struct msgb *l2);
273
274int ran_decoded(struct ran_dec *ran_dec, struct ran_msg *msg);
275
276/* An MSC-A/I/T role that receives NAS events containing DTAP buffers may use this to detect DTAP duplicates as in TS
277 * 24.007 11.2.3.2 Message Type Octet / Duplicate Detection */
278bool ran_dec_dtap_undup_is_duplicate(struct osmo_fsm_inst *log_fi, uint8_t *n_sd_next, bool is_r99, struct msgb *l3);
279
280/* Implemented by individual RAN implementations, see ran_a_encode() and ran_iu_encode(). */
281typedef struct msgb *(* ran_encode_t )(struct osmo_fsm_inst *caller_fi, const struct ran_msg *ran_enc_msg);