blob: 295876e42b802beceb5a2efe11ea2cf2c14484f5 [file] [log] [blame]
Harald Welte6811d102019-04-14 22:23:14 +02001module RAN_Emulation {
Harald Welte365f4ed2017-11-23 00:00:43 +01002
Harald Welte6811d102019-04-14 22:23:14 +02003/* RAN Emulation, runs on top of BSSAP_CodecPort. It multiplexes/demultiplexes
Harald Welte35bb7162018-01-03 21:07:52 +01004 * the individual connections, so there can be separate TTCN-3 components handling
5 * each of the connections.
6 *
Harald Welte6811d102019-04-14 22:23:14 +02007 * The RAN_Emulation.main() function processes SCCP primitives from the SCCP
Harald Welte35bb7162018-01-03 21:07:52 +01008 * stack via the BSSAP_CodecPort, and dispatches them to the per-connection components.
9 *
10 * Outbound BSSAP/SCCP connections are initiated by sending a BSSAP_Conn_Req primitive
Harald Welte6811d102019-04-14 22:23:14 +020011 * to the component running the RAN_Emulation.main() function.
Harald Welte35bb7162018-01-03 21:07:52 +010012 *
Harald Welte6811d102019-04-14 22:23:14 +020013 * For each new inbound connections, the RanOps.create_cb() is called. It can create
Harald Welte35bb7162018-01-03 21:07:52 +010014 * or resolve a TTCN-3 component, and returns a component reference to which that inbound
15 * connection is routed/dispatched.
16 *
17 * If a pre-existing component wants to register to handle a future inbound connection, it can
18 * do so by registering an "expect" with the expected Layer 3 (DTAP) payload. This is e.g. useful
19 * if you are simulating BTS + MSC, and first trigger a connection from BTS/RSL side in a
20 * component which then subsequently should also handle the MSC emulation.
21 *
Harald Welte6811d102019-04-14 22:23:14 +020022 * Inbound Unit Data messages (such as are dispatched to the RanOps.unitdata_cb() callback,
Harald Welte35bb7162018-01-03 21:07:52 +010023 * which is registered with an argument to the main() function below.
24 *
Harald Welte2fce7882019-04-15 11:48:05 +020025 * (C) 2017-2019 by Harald Welte <laforge@gnumonks.org>
Harald Welte35bb7162018-01-03 21:07:52 +010026 * All rights reserved.
27 *
28 * Released under the terms of GNU General Public License, Version 2 or
29 * (at your option) any later version.
30 */
31
32
Harald Welte0b476062018-01-21 19:07:32 +010033import from General_Types all;
Harald Welte9dadc522018-02-06 13:56:04 +010034import from Osmocom_Types all;
Harald Welteb3414b22017-11-23 18:22:10 +010035import from SCCP_Emulation all;
Harald Welte365f4ed2017-11-23 00:00:43 +010036import from SCCPasp_Types all;
Harald Welte2fce7882019-04-15 11:48:05 +020037import from IPA_Emulation all;
38import from MobileL3_Types all;
Pau Espin Pedrol4d0e5e52019-06-07 19:38:28 +020039import from Misc_Helpers all;
Harald Welte2fce7882019-04-15 11:48:05 +020040
41#ifdef RAN_EMULATION_BSSAP
Harald Welte365f4ed2017-11-23 00:00:43 +010042import from BSSAP_Types all;
Harald Welte004f5fb2017-12-16 17:54:40 +010043import from BSSAP_CodecPort all;
Harald Welte365f4ed2017-11-23 00:00:43 +010044import from BSSMAP_Templates all;
Harald Welte2fce7882019-04-15 11:48:05 +020045#endif
46
47#ifdef RAN_EMULATION_MGCP
Harald Weltec82eef42017-11-24 20:40:12 +010048import from MGCP_Types all;
49import from MGCP_Templates all;
Harald Welte2fce7882019-04-15 11:48:05 +020050#endif
Harald Welte365f4ed2017-11-23 00:00:43 +010051
Pau Espin Pedrol4d0e5e52019-06-07 19:38:28 +020052#ifdef RAN_EMULATION_CTRL
53import from Osmocom_CTRL_Types all;
54import from Osmocom_CTRL_Adapter all;
55#endif
56
Harald Welte5b027622019-04-14 23:40:17 +020057#ifdef RAN_EMULATION_RANAP
58import from RANAP_CodecPort all;
59import from RANAP_PDU_Descriptions all;
60import from RANAP_Constants all;
61import from RANAP_IEs all;
62import from RANAP_Templates all;
63#endif
64
Harald Welte365f4ed2017-11-23 00:00:43 +010065/* General "base class" component definition, of which specific implementations
66 * derive themselves by means of the "extends" feature */
Harald Welte6811d102019-04-14 22:23:14 +020067type component RAN_ConnHdlr {
Harald Welte365f4ed2017-11-23 00:00:43 +010068 /* port towards MSC Emulator core / SCCP connection dispatchar */
Harald Welte6811d102019-04-14 22:23:14 +020069 port RAN_Conn_PT BSSAP;
Harald Welteca519982018-01-21 19:28:26 +010070 /* procedure based port to register for incoming connections */
Harald Welte6811d102019-04-14 22:23:14 +020071 port RAN_PROC_PT BSSAP_PROC;
Harald Welte365f4ed2017-11-23 00:00:43 +010072}
73
74/* Auxiliary primitive that can happen on the port between per-connection client and this dispatcher */
Harald Welte6811d102019-04-14 22:23:14 +020075type enumerated RAN_Conn_Prim {
Harald Welte365f4ed2017-11-23 00:00:43 +010076 /* SCCP tell us that connection was released */
77 MSC_CONN_PRIM_DISC_IND,
78 /* we tell SCCP to release connection */
Harald Welte71b69332018-01-21 20:43:53 +010079 MSC_CONN_PRIM_DISC_REQ,
80 /* Connection confirmed indication */
81 MSC_CONN_PRIM_CONF_IND
Harald Welte365f4ed2017-11-23 00:00:43 +010082}
83
Pau Espin Pedrolc6b78ff2019-06-06 15:58:17 +020084type enumerated RAN_Transport {
85 BSSAP_TRANSPORT_AoIP, /* 3GPP AoIP: SCCP over M3UA over SCTP */
86 BSSAP_TRANSPORT_SCCPlite_SERVER, /* SCCPlite: SCCP over IPA over TCP */
87 BSSAP_TRANSPORT_SCCPlite_CLIENT, /* SCCPlite: SCCP over IPA over TCP */
88 RANAP_TRANSPORT_IuCS /* 3GPP IuCS: SCCP over M3UA over SCTP */
89};
90
Harald Welte0b476062018-01-21 19:07:32 +010091/* similar to PDU_BSSAP with DTAP, but DTAP is already decoded! */
92type record PDU_DTAP_MO {
93 OCT1 dlci optional,
Daniel Willmann92f66272018-02-06 15:50:52 +010094 boolean skip_seq_patching optional,
Harald Welte0b476062018-01-21 19:07:32 +010095 PDU_ML3_MS_NW dtap
96}
97
98/* similar to PDU_BSSAP with DTAP, but DTAP is already decoded! */
99type record PDU_DTAP_MT {
100 OCT1 dlci optional,
101 PDU_ML3_NW_MS dtap
102}
103
Harald Welte717c7302019-04-23 20:31:55 +0200104type record PDU_DTAP_PS_MO {
105 OCT1 dlci optional,
106 boolean skip_seq_patching optional,
107 PDU_L3_MS_SGSN dtap
108}
109
110type record PDU_DTAP_PS_MT {
111 OCT1 dlci optional,
112 PDU_L3_SGSN_MS dtap
113}
114
Harald Welte0b476062018-01-21 19:07:32 +0100115template PDU_DTAP_MT ts_PDU_DTAP_MT(template PDU_ML3_NW_MS dtap, template OCT1 dlci := omit) := {
116 dlci := dlci,
117 dtap := dtap
118}
119
Daniel Willmann92f66272018-02-06 15:50:52 +0100120template PDU_DTAP_MO ts_PDU_DTAP_MO(template PDU_ML3_MS_NW dtap, template OCT1 dlci := '00'O, boolean skip_seq_patching := false) := {
Harald Welte0b476062018-01-21 19:07:32 +0100121 dlci := dlci,
Daniel Willmann92f66272018-02-06 15:50:52 +0100122 skip_seq_patching := skip_seq_patching,
Harald Welte0b476062018-01-21 19:07:32 +0100123 dtap := dtap
124}
125
126template PDU_DTAP_MT tr_PDU_DTAP_MT(template PDU_ML3_NW_MS dtap, template OCT1 dlci := *) := {
127 dlci := dlci,
128 dtap := dtap
129}
130
131template PDU_DTAP_MO tr_PDU_DTAP_MO(template PDU_ML3_MS_NW dtap, template OCT1 dlci := *) := {
132 dlci := dlci,
Harald Welte930d0a72018-03-22 22:08:40 +0100133 skip_seq_patching := ?,
Harald Welte0b476062018-01-21 19:07:32 +0100134 dtap := dtap
135}
136
Harald Welte717c7302019-04-23 20:31:55 +0200137template (value) PDU_DTAP_PS_MT ts_PDU_DTAP_PS_MT(template (value) PDU_L3_SGSN_MS dtap, template (omit) OCT1 dlci := omit) := {
138 dlci := dlci,
139 dtap := dtap
140}
141
142template (value) PDU_DTAP_PS_MO ts_PDU_DTAP_PS_MO(template (value) PDU_L3_MS_SGSN dtap, template (value) OCT1 dlci := '00'O,
143 boolean skip_seq_patching := false) := {
144 dlci := dlci,
145 skip_seq_patching := skip_seq_patching,
146 dtap := dtap
147}
148
149template PDU_DTAP_PS_MT tr_PDU_DTAP_PS_MT(template PDU_L3_SGSN_MS dtap, template OCT1 dlci := *) := {
150 dlci := dlci,
151 dtap := dtap
152}
153
154template PDU_DTAP_PS_MO tr_PDU_DTAP_PS_MO(template PDU_L3_MS_SGSN dtap, template OCT1 dlci := *) := {
155 dlci := dlci,
156 skip_seq_patching := ?,
157 dtap := dtap
158}
159
Harald Welte365f4ed2017-11-23 00:00:43 +0100160/* port between individual per-connection components and this dispatcher */
Harald Welte6811d102019-04-14 22:23:14 +0200161type port RAN_Conn_PT message {
Harald Welte2fce7882019-04-15 11:48:05 +0200162 inout
163#ifdef RAN_EMULATION_BSSAP
164 PDU_BSSAP,
Neels Hofmeyra8264612020-06-08 20:40:22 +0200165 BSSAP_N_UNITDATA_req,
Harald Weltea4ca4462018-02-09 00:17:14 +0100166 /* Client requests us to create SCCP Connection */
167 BSSAP_Conn_Req,
Harald Welte2fce7882019-04-15 11:48:05 +0200168#endif
Harald Welte5b027622019-04-14 23:40:17 +0200169#ifdef RAN_EMULATION_RANAP
170 RANAP_PDU,
171 /* Client requests us to create SCCP Connection */
172 RANAP_Conn_Req,
173#endif
Harald Welte2fce7882019-04-15 11:48:05 +0200174#ifdef RAN_EMULATION_MGCP
Harald Weltea4ca4462018-02-09 00:17:14 +0100175 /* MGCP, only used for IPA SCCPlite (MGCP in IPA mux) */
Harald Welte2fce7882019-04-15 11:48:05 +0200176 MgcpCommand, MgcpResponse,
177#endif
178 /* direct DTAP messages from/to clients */
179 PDU_DTAP_MO, PDU_DTAP_MT,
Harald Welte717c7302019-04-23 20:31:55 +0200180 PDU_DTAP_PS_MO, PDU_DTAP_PS_MT,
Harald Welte2fce7882019-04-15 11:48:05 +0200181 /* misc indications / requests between SCCP and client */
182 RAN_Conn_Prim;
Harald Welte365f4ed2017-11-23 00:00:43 +0100183} with { extension "internal" };
184
Neels Hofmeyr0ac63152019-05-07 01:20:17 +0200185type uint2_t N_Sd_Array[4];
Harald Welte365f4ed2017-11-23 00:00:43 +0100186
187/* represents a single BSSAP connection over SCCP */
188type record ConnectionData {
189 /* reference to the instance of the per-connection component */
Harald Welte6811d102019-04-14 22:23:14 +0200190 RAN_ConnHdlr comp_ref,
Harald Weltec82eef42017-11-24 20:40:12 +0100191 integer sccp_conn_id,
Harald Welte2fce7882019-04-15 11:48:05 +0200192#ifdef RAN_EMULATION_MGCP
Harald Weltec82eef42017-11-24 20:40:12 +0100193 /* most recent MGCP transaction ID (Used on MSC side) */
194 MgcpTransId mgcp_trans_id optional,
Harald Welte2fce7882019-04-15 11:48:05 +0200195#endif
Harald Weltec82eef42017-11-24 20:40:12 +0100196 /* CIC that has been used for voice of this channel (BSC side) */
Harald Welte9dadc522018-02-06 13:56:04 +0100197 integer cic optional,
198 /* array of N(SD) values for MO DTAP messages, indexed by discriminator */
Neels Hofmeyr0ac63152019-05-07 01:20:17 +0200199 N_Sd_Array n_sd
Harald Welte365f4ed2017-11-23 00:00:43 +0100200}
201
Harald Welte17d21152018-01-27 00:47:11 +0100202type record ImsiMapping {
Harald Welte6811d102019-04-14 22:23:14 +0200203 RAN_ConnHdlr comp_ref,
Harald Welte17d21152018-01-27 00:47:11 +0100204 hexstring imsi optional,
205 OCT4 tmsi
206}
207
Harald Welte6811d102019-04-14 22:23:14 +0200208type component RAN_Emulation_CT {
Harald Welte2fce7882019-04-15 11:48:05 +0200209 /* SCCP ports on the bottom side, using ASP primitives */
210#ifdef RAN_EMULATION_BSSAP
Harald Welte004f5fb2017-12-16 17:54:40 +0100211 port BSSAP_CODEC_PT BSSAP;
Harald Welte2fce7882019-04-15 11:48:05 +0200212#endif
Harald Welte5b027622019-04-14 23:40:17 +0200213#ifdef RAN_EMULATION_RANAP
214 port RANAP_CODEC_PT RANAP;
215#endif
Harald Welte365f4ed2017-11-23 00:00:43 +0100216 /* BSSAP port to the per-connection clients */
Harald Welte6811d102019-04-14 22:23:14 +0200217 port RAN_Conn_PT CLIENT;
Harald Welte2fce7882019-04-15 11:48:05 +0200218#ifdef RAN_EMULATION_MGCP
Harald Weltec82eef42017-11-24 20:40:12 +0100219 /* MGCP port */
220 port IPA_MGCP_PT MGCP;
Harald Welte2fce7882019-04-15 11:48:05 +0200221#endif
Pau Espin Pedrol4d0e5e52019-06-07 19:38:28 +0200222#ifdef RAN_EMULATION_CTRL
223 /* CTRL port */
224 port IPA_CTRL_PT CTRL;
225 port IPA_CTRL_PT CTRL_CLIENT;
226#endif
Harald Welte365f4ed2017-11-23 00:00:43 +0100227
228 /* use 16 as this is also the number of SCCP connections that SCCP_Emulation can handle */
229 var ConnectionData ConnectionTable[16];
Harald Welte66fecd42017-11-24 23:53:23 +0100230
Harald Welte624f9632017-12-16 19:26:04 +0100231 /* pending expected incoming connections */
232 var ExpectData ExpectTable[8];
Harald Welte17d21152018-01-27 00:47:11 +0100233
234 /* tables for mapping inbound unitdata (like paging) */
235 var ImsiMapping ImsiTable[16];
236
Harald Welte624f9632017-12-16 19:26:04 +0100237 /* procedure based port to register for incoming connections */
Harald Welte6811d102019-04-14 22:23:14 +0200238 port RAN_PROC_PT PROC;
Harald Welte624f9632017-12-16 19:26:04 +0100239
Harald Welte6811d102019-04-14 22:23:14 +0200240 var charstring g_ran_id;
Harald Welte66fecd42017-11-24 23:53:23 +0100241 var integer g_next_e1_ts := 1;
Harald Welte6811d102019-04-14 22:23:14 +0200242 var RanOps g_ran_ops;
Harald Welte365f4ed2017-11-23 00:00:43 +0100243};
244
Harald Welteb3414b22017-11-23 18:22:10 +0100245private function f_conn_id_known(integer sccp_conn_id)
Harald Welte6811d102019-04-14 22:23:14 +0200246runs on RAN_Emulation_CT return boolean {
Harald Welteb3414b22017-11-23 18:22:10 +0100247 var integer i;
248 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
249 if (ConnectionTable[i].sccp_conn_id == sccp_conn_id){
250 return true;
251 }
252 }
253 return false;
254}
255
Harald Welte6811d102019-04-14 22:23:14 +0200256private function f_comp_known(RAN_ConnHdlr client)
257runs on RAN_Emulation_CT return boolean {
Harald Welteb3414b22017-11-23 18:22:10 +0100258 var integer i;
259 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
260 if (ConnectionTable[i].comp_ref == client) {
261 return true;
262 }
263 }
264 return false;
265}
Harald Welte365f4ed2017-11-23 00:00:43 +0100266
Harald Weltee98bb2e2017-11-29 12:09:48 +0100267private function f_cic_known(integer cic)
Harald Welte6811d102019-04-14 22:23:14 +0200268runs on RAN_Emulation_CT return boolean {
Harald Weltee98bb2e2017-11-29 12:09:48 +0100269 var integer i;
270 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
271 if (ConnectionTable[i].cic == cic) {
272 return true;
273 }
274 }
275 return false;
276}
277
Harald Welte365f4ed2017-11-23 00:00:43 +0100278/* resolve component reference by connection ID */
279private function f_comp_by_conn_id(integer sccp_conn_id)
Harald Welte6811d102019-04-14 22:23:14 +0200280runs on RAN_Emulation_CT return RAN_ConnHdlr {
Harald Welte365f4ed2017-11-23 00:00:43 +0100281 var integer i;
282 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
283 if (ConnectionTable[i].sccp_conn_id == sccp_conn_id) {
284 return ConnectionTable[i].comp_ref;
285 }
286 }
Harald Welte6811d102019-04-14 22:23:14 +0200287 setverdict(fail, "RAN Connection table not found by SCCP Connection ID ", sccp_conn_id);
Daniel Willmanne4ff5372018-07-05 17:35:03 +0200288 mtc.stop;
Harald Welte365f4ed2017-11-23 00:00:43 +0100289}
290
Harald Welte2fce7882019-04-15 11:48:05 +0200291
292#ifdef RAN_EMULATION_MGCP
Harald Weltec82eef42017-11-24 20:40:12 +0100293/* resolve component reference by CIC */
294private function f_comp_by_mgcp_tid(MgcpTransId tid)
Harald Welte6811d102019-04-14 22:23:14 +0200295runs on RAN_Emulation_CT return RAN_ConnHdlr {
Harald Weltec82eef42017-11-24 20:40:12 +0100296 var integer i;
297 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
298 if (ConnectionTable[i].mgcp_trans_id == tid) {
299 return ConnectionTable[i].comp_ref;
300 }
301 }
Harald Welte6811d102019-04-14 22:23:14 +0200302 setverdict(fail, "RAN Connection table not found by MGCP Transaction ID ", tid);
Daniel Willmanne4ff5372018-07-05 17:35:03 +0200303 mtc.stop;
Harald Weltec82eef42017-11-24 20:40:12 +0100304}
305
Harald Welte6811d102019-04-14 22:23:14 +0200306private function f_comp_store_mgcp_tid(RAN_ConnHdlr client, MgcpTransId tid)
307runs on RAN_Emulation_CT {
Harald Weltec82eef42017-11-24 20:40:12 +0100308 var integer i;
309 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
310 if (ConnectionTable[i].comp_ref == client) {
311 ConnectionTable[i].mgcp_trans_id := tid;
312 return;
313 }
314 }
Harald Welte6811d102019-04-14 22:23:14 +0200315 setverdict(fail, "RAN Connection table not found by component ", client);
Daniel Willmanne4ff5372018-07-05 17:35:03 +0200316 mtc.stop;
Harald Weltec82eef42017-11-24 20:40:12 +0100317}
Harald Welte2fce7882019-04-15 11:48:05 +0200318#endif
Harald Weltec82eef42017-11-24 20:40:12 +0100319
320private function f_comp_by_cic(integer cic)
Harald Welte6811d102019-04-14 22:23:14 +0200321runs on RAN_Emulation_CT return RAN_ConnHdlr {
Harald Weltec82eef42017-11-24 20:40:12 +0100322 var integer i;
323 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
324 if (ConnectionTable[i].cic == cic) {
325 return ConnectionTable[i].comp_ref;
326 }
327 }
Harald Welte6811d102019-04-14 22:23:14 +0200328 setverdict(fail, "RAN Connection table not found by CIC ", cic);
Daniel Willmanne4ff5372018-07-05 17:35:03 +0200329 mtc.stop;
Harald Weltec82eef42017-11-24 20:40:12 +0100330}
331
Harald Welte6811d102019-04-14 22:23:14 +0200332private function f_comp_store_cic(RAN_ConnHdlr client, integer cic)
333runs on RAN_Emulation_CT {
Harald Weltec82eef42017-11-24 20:40:12 +0100334 var integer i;
335 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
336 if (ConnectionTable[i].comp_ref == client) {
337 ConnectionTable[i].cic := cic;
338 return;
339 }
340 }
Harald Welte6811d102019-04-14 22:23:14 +0200341 setverdict(fail, "RAN Connection table not found by component ", client);
Daniel Willmanne4ff5372018-07-05 17:35:03 +0200342 mtc.stop;
Harald Weltec82eef42017-11-24 20:40:12 +0100343}
344
Harald Welte365f4ed2017-11-23 00:00:43 +0100345/* resolve connection ID by component reference */
Harald Welte6811d102019-04-14 22:23:14 +0200346private function f_conn_id_by_comp(RAN_ConnHdlr client)
347runs on RAN_Emulation_CT return integer {
Harald Welte365f4ed2017-11-23 00:00:43 +0100348 for (var integer i := 0; i < sizeof(ConnectionTable); i := i+1) {
349 if (ConnectionTable[i].comp_ref == client) {
350 return ConnectionTable[i].sccp_conn_id;
351 }
352 }
Harald Welte6811d102019-04-14 22:23:14 +0200353 setverdict(fail, "RAN Connection table not found by component ", client);
Daniel Willmanne4ff5372018-07-05 17:35:03 +0200354 mtc.stop;
Harald Welte365f4ed2017-11-23 00:00:43 +0100355}
356
Harald Welte9dadc522018-02-06 13:56:04 +0100357/* resolve ConnectionTable index component reference */
Harald Welte6811d102019-04-14 22:23:14 +0200358private function f_idx_by_comp(RAN_ConnHdlr client)
359runs on RAN_Emulation_CT return integer {
Harald Welte9dadc522018-02-06 13:56:04 +0100360 for (var integer i := 0; i < sizeof(ConnectionTable); i := i+1) {
361 if (ConnectionTable[i].comp_ref == client) {
362 return i;
363 }
364 }
Harald Welte6811d102019-04-14 22:23:14 +0200365 setverdict(fail, "RAN Connection table not found by component ", client);
Daniel Willmanne4ff5372018-07-05 17:35:03 +0200366 mtc.stop;
Harald Welte9dadc522018-02-06 13:56:04 +0100367}
368
Harald Welteb3414b22017-11-23 18:22:10 +0100369private function f_gen_conn_id()
Harald Welte6811d102019-04-14 22:23:14 +0200370runs on RAN_Emulation_CT return integer {
Harald Welteb3414b22017-11-23 18:22:10 +0100371 var integer conn_id;
372
373 do {
374 conn_id := float2int(rnd()*SCCP_Emulation.tsp_max_ConnectionId);
375 } while (f_conn_id_known(conn_id) == true);
376
377 return conn_id;
378}
379
Harald Welte365f4ed2017-11-23 00:00:43 +0100380private function f_conn_table_init()
Harald Welte6811d102019-04-14 22:23:14 +0200381runs on RAN_Emulation_CT {
Harald Welte365f4ed2017-11-23 00:00:43 +0100382 for (var integer i := 0; i < sizeof(ConnectionTable); i := i+1) {
383 ConnectionTable[i].comp_ref := null;
384 ConnectionTable[i].sccp_conn_id := -1;
Harald Welte2fce7882019-04-15 11:48:05 +0200385#ifdef RAN_EMULATION_MGCP
Harald Weltec82eef42017-11-24 20:40:12 +0100386 ConnectionTable[i].mgcp_trans_id := omit;
Harald Welte2fce7882019-04-15 11:48:05 +0200387#endif
Harald Weltec82eef42017-11-24 20:40:12 +0100388 ConnectionTable[i].cic := omit;
Harald Welte9dadc522018-02-06 13:56:04 +0100389 ConnectionTable[i].n_sd := { 0, 0, 0, 0 };
Harald Welte365f4ed2017-11-23 00:00:43 +0100390 }
Harald Welte17d21152018-01-27 00:47:11 +0100391 for (var integer i := 0; i < sizeof(ImsiTable); i := i+1) {
392 ImsiTable[i].comp_ref := null;
393 ImsiTable[i].imsi := omit;
394 ImsiTable[i].tmsi := 'FFFFFFFF'O;
395 }
Harald Welte365f4ed2017-11-23 00:00:43 +0100396}
397
Harald Welte6811d102019-04-14 22:23:14 +0200398private function f_conn_table_add(RAN_ConnHdlr comp_ref, integer sccp_conn_id)
399runs on RAN_Emulation_CT {
Harald Welte365f4ed2017-11-23 00:00:43 +0100400 for (var integer i := 0; i < sizeof(ConnectionTable); i := i+1) {
401 if (ConnectionTable[i].sccp_conn_id == -1) {
402 ConnectionTable[i].comp_ref := comp_ref;
403 ConnectionTable[i].sccp_conn_id := sccp_conn_id;
Harald Welte9dadc522018-02-06 13:56:04 +0100404 ConnectionTable[i].n_sd := { 0, 0, 0, 0 };
Harald Welteb3414b22017-11-23 18:22:10 +0100405 log("Added conn table entry ", i, comp_ref, sccp_conn_id);
Harald Welte365f4ed2017-11-23 00:00:43 +0100406 return;
407 }
408 }
Harald Welte6811d102019-04-14 22:23:14 +0200409 testcase.stop("RAN Connection table full!");
Harald Welte365f4ed2017-11-23 00:00:43 +0100410}
411
412private function f_conn_table_del(integer sccp_conn_id)
Harald Welte6811d102019-04-14 22:23:14 +0200413runs on RAN_Emulation_CT {
Harald Welte365f4ed2017-11-23 00:00:43 +0100414 for (var integer i := 0; i < sizeof(ConnectionTable); i := i+1) {
415 if (ConnectionTable[i].sccp_conn_id == sccp_conn_id) {
Harald Welteb3414b22017-11-23 18:22:10 +0100416 log("Deleted conn table entry ", i,
417 ConnectionTable[i].comp_ref, sccp_conn_id);
Harald Welte365f4ed2017-11-23 00:00:43 +0100418 ConnectionTable[i].sccp_conn_id := -1;
419 ConnectionTable[i].comp_ref := null;
Harald Welte0a4317a2017-11-25 00:32:46 +0100420 return
Harald Welte365f4ed2017-11-23 00:00:43 +0100421 }
422 }
Harald Welte6811d102019-04-14 22:23:14 +0200423 setverdict(fail, "RAN Connection table attempt to delete non-existant ", sccp_conn_id);
Daniel Willmanne4ff5372018-07-05 17:35:03 +0200424 mtc.stop;
Harald Welte365f4ed2017-11-23 00:00:43 +0100425}
426
Harald Welte17d21152018-01-27 00:47:11 +0100427private function f_imsi_table_find(hexstring imsi, template OCT4 tmsi)
Harald Welte6811d102019-04-14 22:23:14 +0200428runs on RAN_Emulation_CT return RAN_ConnHdlr {
Harald Welte17d21152018-01-27 00:47:11 +0100429 for (var integer i := 0; i < sizeof(ImsiTable); i := i+1) {
430 if (ImsiTable[i].imsi == imsi or
431 isvalue(tmsi) and match(ImsiTable[i].tmsi, tmsi)) {
432 return ImsiTable[i].comp_ref;
433 }
434 }
435 return null;
436}
437
Harald Welte2fce7882019-04-15 11:48:05 +0200438#ifdef RAN_EMULATION_BSSAP
439type record BSSAP_Conn_Req {
440 SCCP_PAR_Address addr_peer,
441 SCCP_PAR_Address addr_own,
442 PDU_BSSAP bssap
443}
444template BSSAP_Conn_Req ts_BSSAP_Conn_Req(SCCP_PAR_Address peer, SCCP_PAR_Address own, PDU_BSSAP bssap) := {
445 addr_peer := peer,
446 addr_own := own,
447 bssap := bssap
448};
449
Harald Welte365f4ed2017-11-23 00:00:43 +0100450/* handle (optional) userData portion of various primitives and dispatch it to the client */
Harald Welte6811d102019-04-14 22:23:14 +0200451private function f_handle_userData(RAN_ConnHdlr client, PDU_BSSAP bssap)
452runs on RAN_Emulation_CT {
Harald Welte365f4ed2017-11-23 00:00:43 +0100453 /* decode + send decoded BSSAP to client */
Harald Welte1b2748e2017-11-24 23:40:16 +0100454
Harald Welte473676b2018-01-27 20:38:01 +0100455 if (ischosen(bssap.pdu.bssmap)) {
456 /* BSC Side: If this is an assignment command, store CIC */
457 if (ischosen(bssap.pdu.bssmap.assignmentRequest) and
458 ispresent(bssap.pdu.bssmap.assignmentRequest.circuitIdentityCode)) {
459 var BSSMAP_IE_CircuitIdentityCode cic_ie :=
460 bssap.pdu.bssmap.assignmentRequest.circuitIdentityCode;
Pau Espin Pedrol43021cb2019-06-18 17:32:15 +0200461 var integer cic := f_bssmap_ie_cic_2_int(cic_ie);
Harald Welte473676b2018-01-27 20:38:01 +0100462 f_comp_store_cic(client, cic);
463 }
Harald Welte1b2748e2017-11-24 23:40:16 +0100464 }
465
Harald Welte6811d102019-04-14 22:23:14 +0200466 if (ischosen(bssap.pdu.dtap) and g_ran_ops.decode_dtap) {
467 if (g_ran_ops.role_ms) {
Harald Welte0b476062018-01-21 19:07:32 +0100468 /* we are the MS, so any message to us must be MT */
469 var PDU_DTAP_MT mt := {
470 dlci := bssap.dlci,
471 dtap := dec_PDU_ML3_NW_MS(bssap.pdu.dtap)
472 };
473 CLIENT.send(mt) to client;
474 } else {
475 /* we are the Network, so any message to us must be MO */
476 var PDU_DTAP_MO mo := {
477 dlci := bssap.dlci,
478 dtap := dec_PDU_ML3_MS_NW(bssap.pdu.dtap)
479 };
480 CLIENT.send(mo) to client;
481 }
482 } else {
483 CLIENT.send(bssap) to client;
484 }
Harald Welte365f4ed2017-11-23 00:00:43 +0100485}
486
487/* call-back type, to be provided by specific implementation; called when new SCCP connection
488 * arrives */
Harald Welte004f5fb2017-12-16 17:54:40 +0100489type function BssmapCreateCallback(BSSAP_N_CONNECT_ind conn_ind, charstring id)
Harald Welte6811d102019-04-14 22:23:14 +0200490runs on RAN_Emulation_CT return RAN_ConnHdlr;
Harald Welte365f4ed2017-11-23 00:00:43 +0100491
492type function BssmapUnitdataCallback(PDU_BSSAP bssap)
Harald Welte6811d102019-04-14 22:23:14 +0200493runs on RAN_Emulation_CT return template PDU_BSSAP;
Harald Welte365f4ed2017-11-23 00:00:43 +0100494
Pau Espin Pedrol95549182019-06-06 16:17:30 +0200495private function append_osmux_ie()
496runs on RAN_Emulation_CT return boolean {
497 return g_ran_ops.use_osmux and (g_ran_ops.transport == BSSAP_TRANSPORT_AoIP);
498}
499
Harald Welte17d21152018-01-27 00:47:11 +0100500/* handle common Unitdata such as Paging */
501private function CommonBssmapUnitdataCallback(PDU_BSSAP bssap)
Harald Welte6811d102019-04-14 22:23:14 +0200502runs on RAN_Emulation_CT return template PDU_BSSAP {
Harald Welte17d21152018-01-27 00:47:11 +0100503 if (match(bssap, tr_BSSMAP_Paging)) {
Harald Welte6811d102019-04-14 22:23:14 +0200504 var RAN_ConnHdlr client := null;
Harald Welte17d21152018-01-27 00:47:11 +0100505 client := f_imsi_table_find(bssap.pdu.bssmap.paging.iMSI.digits,
506 bssap.pdu.bssmap.paging.tMSI.tmsiOctets);
Daniel Willmannabc73e12019-04-15 17:25:56 +0200507 if (client != null) {
Harald Welte17d21152018-01-27 00:47:11 +0100508 log("CommonBssmapUnitdataCallback: IMSI/TMSI found in table, dispatching to ",
509 client);
510 CLIENT.send(bssap) to client;
511 return omit;
512 }
513 log("CommonBssmapUnitdataCallback: IMSI/TMSI not found in table");
514 } else {
515 log("CommonBssmapUnitdataCallback: Not a paging message");
516 }
517 /* ELSE: handle in user callback */
Harald Welte6811d102019-04-14 22:23:14 +0200518 return g_ran_ops.unitdata_cb.apply(bssap);
Harald Welte17d21152018-01-27 00:47:11 +0100519}
520
Harald Welte6811d102019-04-14 22:23:14 +0200521function f_bssap_reset(SCCP_PAR_Address peer, SCCP_PAR_Address own) runs on RAN_Emulation_CT {
Harald Weltea4ca4462018-02-09 00:17:14 +0100522 timer T := 5.0;
Pau Espin Pedrol95549182019-06-06 16:17:30 +0200523 var boolean append_osmux_support := append_osmux_ie();
Harald Weltea4ca4462018-02-09 00:17:14 +0100524
Pau Espin Pedrol95549182019-06-06 16:17:30 +0200525 BSSAP.send(ts_BSSAP_UNITDATA_req(peer, own, ts_BSSMAP_Reset(0, append_osmux_support)));
Harald Weltea4ca4462018-02-09 00:17:14 +0100526 T.start;
527 alt {
Pau Espin Pedrol95549182019-06-06 16:17:30 +0200528 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(own, peer, tr_BSSMAP_ResetAck(append_osmux_support))) {
Neels Hofmeyr4f5d7be2020-10-16 16:28:16 +0200529 log("BSSMAP: Received RESET-ACK in response to RESET, we're ready to go!");
Harald Weltea4ca4462018-02-09 00:17:14 +0100530 }
Pau Espin Pedrol95549182019-06-06 16:17:30 +0200531 [] as_reset_ack(append_osmux_support);
Harald Weltea4ca4462018-02-09 00:17:14 +0100532 [] BSSAP.receive { repeat };
Daniel Willmanne4ff5372018-07-05 17:35:03 +0200533 [] T.timeout {
Neels Hofmeyr4f5d7be2020-10-16 16:28:16 +0200534 setverdict(fail, "BSSMAP: Timeout waiting for RESET-ACK after sending RESET");
Daniel Willmanne4ff5372018-07-05 17:35:03 +0200535 mtc.stop;
536 }
Harald Weltea4ca4462018-02-09 00:17:14 +0100537 }
538}
539
Harald Welte2fce7882019-04-15 11:48:05 +0200540private function f_bssap_l3_is_rr(PDU_BSSAP bssap) return boolean {
541 var template octetstring l3 := f_bssap_extract_l3(bssap);
542 return f_L3_is_rr(l3);
543}
544#endif
Harald Welte365f4ed2017-11-23 00:00:43 +0100545
Harald Welte5b027622019-04-14 23:40:17 +0200546#ifdef RAN_EMULATION_RANAP
547type record RANAP_Conn_Req {
548 SCCP_PAR_Address addr_peer,
549 SCCP_PAR_Address addr_own,
550 RANAP_PDU ranap
551}
552template (value) RANAP_Conn_Req ts_RANAP_Conn_Req(SCCP_PAR_Address peer, SCCP_PAR_Address own, RANAP_PDU ranap) := {
553 addr_peer := peer,
554 addr_own := own,
555 ranap := ranap
556};
557
558private function fake_dlci_from_sapi(template (omit) SAPI sapi) return template (omit) OCT1
559{
560 if (istemplatekind(sapi, "omit")) {
561 return omit;
562 } else if (valueof(sapi) == sapi_3) {
563 return '03'O;
564 }
565 return '00'O;
566}
567
568private function f_handle_userData_RANAP(RAN_ConnHdlr client, RANAP_PDU ranap)
569runs on RAN_Emulation_CT {
570 /* decode + send decoded RANAP to client */
571 var template (omit) octetstring l3 := f_ranap_extract_l3(ranap);
Harald Welte0af76152022-01-11 23:02:38 +0100572 if (istemplatekind(l3, "omit") or not g_ran_ops.decode_dtap) {
Harald Welte5b027622019-04-14 23:40:17 +0200573 CLIENT.send(ranap) to client;
574 } else {
575 var template (omit) SAPI sapi := f_ranap_extract_sapi(ranap);
576 var template (omit) OCT1 dlci := fake_dlci_from_sapi(sapi);
577 if (g_ran_ops.role_ms) {
578 /* we are the MS, so any message to us must be MT */
Harald Welte717c7302019-04-23 20:31:55 +0200579 if (g_ran_ops.ps_domain) {
580 var PDU_DTAP_PS_MT mt := {
581 dlci := omit,
582 dtap := dec_PDU_L3_SGSN_MS(valueof(l3))
583 };
584 if (isvalue(dlci)) {
585 mt.dlci := valueof(dlci);
586 }
587 CLIENT.send(mt) to client;
588 } else {
589 var PDU_DTAP_MT mt := {
590 dlci := omit,
591 dtap := dec_PDU_ML3_NW_MS(valueof(l3))
592 };
593 if (isvalue(dlci)) {
594 mt.dlci := valueof(dlci)
595 }
596 CLIENT.send(mt) to client;
Harald Welte5b027622019-04-14 23:40:17 +0200597 }
Harald Welte5b027622019-04-14 23:40:17 +0200598 } else {
599 /* we are the Network, so any message to us must be MO */
Harald Welte717c7302019-04-23 20:31:55 +0200600 if (g_ran_ops.ps_domain) {
601 var PDU_DTAP_PS_MO mo := {
602 dlci := omit,
603 dtap := dec_PDU_L3_MS_SGSN(valueof(l3))
604 };
605 if (isvalue(dlci)) {
606 mo.dlci := valueof(dlci);
607 }
608 CLIENT.send(mo) to client;
609 } else {
610 var PDU_DTAP_MO mo := {
611 dlci := omit,
612 dtap := dec_PDU_ML3_MS_NW(valueof(l3))
613 };
614 if (isvalue(dlci)) {
615 mo.dlci := valueof(dlci)
616 }
617 CLIENT.send(mo) to client;
Harald Welte5b027622019-04-14 23:40:17 +0200618 }
Harald Welte5b027622019-04-14 23:40:17 +0200619 }
620 }
621}
622
623/* call-back type, to be provided by specific implementation; called when new SCCP connection
624 * arrives */
625type function RanapCreateCallback(RANAP_N_CONNECT_ind conn_ind, charstring id)
626runs on RAN_Emulation_CT return RAN_ConnHdlr;
627
628type function RanapUnitdataCallback(RANAP_PDU ranap)
629runs on RAN_Emulation_CT return template RANAP_PDU;
630
631private function CommonRanapUnitdataCallback(RANAP_PDU ranap)
632runs on RAN_Emulation_CT return template RANAP_PDU {
633 if (match(ranap, tr_RANAP_Paging(?, ?))) {
634 var RAN_ConnHdlr client := null;
635 /* extract IMSI and (if present) TMSI */
636 var IMSI imsi := ranap.initiatingMessage.value_.paging.protocolIEs[1].value_.permanentNAS_UE_ID.iMSI;
637 var template OCT4 tmsi := omit;
638 if (lengthof(ranap.initiatingMessage.value_.paging.protocolIEs) > 2 and
639 ranap.initiatingMessage.value_.paging.protocolIEs[2].id == id_TemporaryUE_ID) {
640 var TemporaryUE_ID ue_id;
641 ue_id := ranap.initiatingMessage.value_.paging.protocolIEs[2].value_.temporaryUE_ID;
642 if (ischosen(ue_id.tMSI)) {
643 tmsi := ue_id.tMSI;
644 } else {
645 tmsi := ue_id.p_TMSI;
646 }
647 }
648 client := f_imsi_table_find(oct2hex(imsi), tmsi);
Harald Welte03d4e2b2019-05-10 00:42:33 +0200649 if (client != null) {
Harald Welte5b027622019-04-14 23:40:17 +0200650 log("CommonRanapUnitdataCallback: IMSI/TMSI found in table, dispatching to ",
651 client);
652 CLIENT.send(ranap) to client;
653 return omit;
654 }
655 log("CommonRanapUnitdataCallback: IMSI/TMSI not found in table");
656 } else {
657 log("CommonRanapUnitdataCallback: Not a paging message");
658 }
659
660 /* ELSE: handle in user callback */
661 return g_ran_ops.ranap_unitdata_cb.apply(ranap);
662}
663
664private function f_ranap_l3_is_rr(RANAP_PDU ranap) return boolean {
665 var template (omit) SAPI sapi;
666 var template octetstring l3 := f_ranap_extract_l3(ranap);
667 return f_L3_is_rr(l3);
668}
669
670function f_ranap_reset(SCCP_PAR_Address peer, SCCP_PAR_Address own) runs on RAN_Emulation_CT {
671 timer T := 5.0;
672 var CN_DomainIndicator dom;
673 if (g_ran_ops.ps_domain) {
674 dom := ps_domain;
675 } else {
676 dom := cs_domain;
677 }
678
679 RANAP.send(ts_RANAP_UNITDATA_req(peer, own, ts_RANAP_Reset(ts_RanapCause_om_intervention, dom)));
680 T.start;
681 alt {
682 [] RANAP.receive(tr_RANAP_UNITDATA_ind(own, peer, tr_RANAP_ResetAck)) {
Neels Hofmeyr4f5d7be2020-10-16 16:28:16 +0200683 log("RANAP: Received RESET-ACK in response to RESET, we're ready to go!");
Harald Welte5b027622019-04-14 23:40:17 +0200684 }
685 [] as_reset_ack();
686 [] RANAP.receive { repeat };
687 [] T.timeout {
Neels Hofmeyr4f5d7be2020-10-16 16:28:16 +0200688 setverdict(fail, "RANAP: Timeout waiting for RESET-ACK after sending RESET");
Harald Welte5b027622019-04-14 23:40:17 +0200689 mtc.stop;
690 }
691 }
692}
693#endif
Harald Welte365f4ed2017-11-23 00:00:43 +0100694
Harald Welte2fce7882019-04-15 11:48:05 +0200695
696type enumerated RanProtocol {
Harald Welte5b027622019-04-14 23:40:17 +0200697 RAN_PROTOCOL_BSSAP,
698 RAN_PROTOCOL_RANAP
Harald Welte2fce7882019-04-15 11:48:05 +0200699}
700
701type record RanOps {
702#ifdef RAN_EMULATION_BSSAP
703 BssmapCreateCallback create_cb optional,
704 BssmapUnitdataCallback unitdata_cb optional,
705#endif
Harald Welte5b027622019-04-14 23:40:17 +0200706#ifdef RAN_EMULATION_RANAP
707 RanapCreateCallback ranap_create_cb optional,
708 RanapUnitdataCallback ranap_unitdata_cb optional,
709 boolean ps_domain,
710#endif
Harald Welte2fce7882019-04-15 11:48:05 +0200711 boolean decode_dtap,
712 boolean role_ms,
713 RanProtocol protocol,
Pau Espin Pedrolc6b78ff2019-06-06 15:58:17 +0200714 RAN_Transport transport,
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200715 boolean use_osmux,
Harald Welte2fce7882019-04-15 11:48:05 +0200716 /* needed for performing BSSMAP RESET */
717 SCCP_PAR_Address sccp_addr_local optional,
718 SCCP_PAR_Address sccp_addr_peer optional
719}
720
721template BIT4 t_ML3_DISC_CC_MM_SS := ('0011'B, '0101'B, '1011'B);
722
Harald Weltea803b722020-08-21 15:42:26 +0200723function f_L3_is_rr(template octetstring l3) return boolean {
Harald Welte2fce7882019-04-15 11:48:05 +0200724 if (not isvalue(l3)) {
725 return false;
Harald Weltea4ca4462018-02-09 00:17:14 +0100726 }
Harald Welte2fce7882019-04-15 11:48:05 +0200727 var octetstring l3v := valueof(l3);
728 if (lengthof(l3v) < 1) {
729 return false;
730 }
731 /* lower 4 bits of first octet are protocol discriminator */
732 if ((oct2bit(l3v[0]) and4b '00001111'B) == '00000110'B) {
733 return true;
734 }
735 return false;
736}
Harald Weltea4ca4462018-02-09 00:17:14 +0100737
Neels Hofmeyr0ac63152019-05-07 01:20:17 +0200738function f_next_n_sd(inout N_Sd_Array n_sd, in integer n_sd_idx) return uint2_t {
Harald Welte2fce7882019-04-15 11:48:05 +0200739 var uint2_t seq_nr;
Neels Hofmeyr0ac63152019-05-07 01:20:17 +0200740 if (n_sd_idx == 0) {
741 seq_nr := n_sd[0];
742 n_sd[0] := (n_sd[0] + 1) mod 4;
743 } else if (n_sd_idx >= 1 and n_sd_idx <= 3) {
744 seq_nr := n_sd[n_sd_idx];
745 n_sd[n_sd_idx] := (n_sd[n_sd_idx] + 1) mod 2;
Harald Welte2fce7882019-04-15 11:48:05 +0200746 } else {
747 /* no sequence number to patch */
Neels Hofmeyr0ac63152019-05-07 01:20:17 +0200748 seq_nr := 0;
Harald Welte2fce7882019-04-15 11:48:05 +0200749 }
Neels Hofmeyr0ac63152019-05-07 01:20:17 +0200750 return seq_nr;
751}
752
753/* patch N(SD) into enc_l3, according to 24.007 11.2.3.2 */
754function f_ML3_patch_seq_nr(in uint2_t seq_nr, inout octetstring enc_l3) {
Harald Welte2fce7882019-04-15 11:48:05 +0200755 log("patching N(SD)=", seq_nr, " into dtap ", enc_l3);
756 enc_l3[1] := (enc_l3[1] and4b '3f'O) or4b bit2oct(int2bit(seq_nr, 8) << 6);
757 log("patched enc_l3: ", enc_l3);
758}
759
Neels Hofmeyr0ac63152019-05-07 01:20:17 +0200760function f_ML3_n_sd_idx(in PDU_ML3_MS_NW dtap) return integer {
761 var uint2_t seq_nr;
762 if (ischosen(dtap.msgs.cc) or ischosen(dtap.msgs.mm) or ischosen(dtap.msgs.ss)) {
763 return 0;
764 } else if (ischosen(dtap.msgs.gcc)) {
765 return 1;
766 } else if (ischosen(dtap.msgs.bcc)) {
767 return 2;
768 } else if (ischosen(dtap.msgs.loc)) {
769 return 3;
770 }
771 /* no sequence number to patch */
772 return -1;
773}
774
775/* patch N(SD) into enc_l3, according to 24.007 11.2.3.2 */
Harald Weltea803b722020-08-21 15:42:26 +0200776private function f_ML3_patch_seq(inout ConnectionData cd, in PDU_ML3_MS_NW dtap, inout octetstring enc_l3) {
Neels Hofmeyr0ac63152019-05-07 01:20:17 +0200777 var integer n_sd_idx := f_ML3_n_sd_idx(dtap);
778 if (n_sd_idx < 0) {
779 return;
780 }
781 var uint2_t seq_nr := f_next_n_sd(cd.n_sd, n_sd_idx);
782 f_ML3_patch_seq_nr(seq_nr, enc_l3);
783}
784
Pau Espin Pedrol95549182019-06-06 16:17:30 +0200785private altstep as_reset_ack(boolean append_osmux_support := false) runs on RAN_Emulation_CT {
Harald Welte2fce7882019-04-15 11:48:05 +0200786#ifdef RAN_EMULATION_BSSAP
787 var BSSAP_N_UNITDATA_ind ud_ind;
788#endif
Harald Welte5b027622019-04-14 23:40:17 +0200789#ifdef RAN_EMULATION_RANAP
790 var RANAP_N_UNITDATA_ind rud_ind;
791#endif
Harald Welte2fce7882019-04-15 11:48:05 +0200792#ifdef RAN_EMULATION_BSSAP
Pau Espin Pedrol95549182019-06-06 16:17:30 +0200793 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(?, ?, tr_BSSMAP_Reset(append_osmux_support))) -> value ud_ind {
Neels Hofmeyr4f5d7be2020-10-16 16:28:16 +0200794 log("BSSMAP: Responding to inbound RESET with RESET-ACK");
Harald Welte2fce7882019-04-15 11:48:05 +0200795 BSSAP.send(ts_BSSAP_UNITDATA_req(ud_ind.callingAddress, ud_ind.calledAddress,
Pau Espin Pedrol95549182019-06-06 16:17:30 +0200796 ts_BSSMAP_ResetAck(append_osmux_support)));
Harald Welte2fce7882019-04-15 11:48:05 +0200797 repeat;
798 }
799#endif
Harald Welte5b027622019-04-14 23:40:17 +0200800#ifdef RAN_EMULATION_RANAP
801 [] RANAP.receive(tr_RANAP_UNITDATA_ind(?, ?, tr_RANAP_Reset)) -> value rud_ind {
Neels Hofmeyr4f5d7be2020-10-16 16:28:16 +0200802 log("RANAP: Responding to inbound IuRESET with IuRESET-ACK");
Harald Welte5b027622019-04-14 23:40:17 +0200803 var CN_DomainIndicator dom;
804 dom := rud_ind.userData.initiatingMessage.value_.Reset.protocolIEs[1].value_.cN_DomainIndicator;
805 RANAP.send(ts_RANAP_UNITDATA_req(rud_ind.callingAddress, rud_ind.calledAddress,
806 ts_RANAP_ResetAck(dom)));
807 }
808#endif
Harald Welte2fce7882019-04-15 11:48:05 +0200809}
810
811
812private altstep as_main_bssap() runs on RAN_Emulation_CT {
813#ifdef RAN_EMULATION_BSSAP
Harald Welte004f5fb2017-12-16 17:54:40 +0100814 var BSSAP_N_UNITDATA_ind ud_ind;
815 var BSSAP_N_CONNECT_ind conn_ind;
816 var BSSAP_N_CONNECT_cfm conn_cfm;
817 var BSSAP_N_DATA_ind data_ind;
818 var BSSAP_N_DISCONNECT_ind disc_ind;
Harald Welteb3414b22017-11-23 18:22:10 +0100819 var BSSAP_Conn_Req creq;
Harald Welte365f4ed2017-11-23 00:00:43 +0100820 var PDU_BSSAP bssap;
Neels Hofmeyra8264612020-06-08 20:40:22 +0200821 var BSSAP_N_UNITDATA_req bssap_ud;
Harald Welte2fce7882019-04-15 11:48:05 +0200822 var RAN_ConnHdlr vc_conn;
Neels Hofmeyr0ac63152019-05-07 01:20:17 +0200823 var integer targetPointCode;
824 var N_Sd_Array last_n_sd;
Harald Welte365f4ed2017-11-23 00:00:43 +0100825
Harald Welte365f4ed2017-11-23 00:00:43 +0100826 /* SCCP -> Client: UNIT-DATA (connectionless SCCP) from a BSC */
Harald Welte004f5fb2017-12-16 17:54:40 +0100827 [] BSSAP.receive(BSSAP_N_UNITDATA_ind:?) -> value ud_ind {
Harald Welte365f4ed2017-11-23 00:00:43 +0100828 /* Connectionless Procedures like RESET */
829 var template PDU_BSSAP resp;
Harald Welte17d21152018-01-27 00:47:11 +0100830 resp := CommonBssmapUnitdataCallback(ud_ind.userData);
Harald Welte365f4ed2017-11-23 00:00:43 +0100831 if (isvalue(resp)) {
Harald Welte004f5fb2017-12-16 17:54:40 +0100832 BSSAP.send(ts_BSSAP_UNITDATA_req(ud_ind.callingAddress,
833 ud_ind.calledAddress, resp));
Harald Welte365f4ed2017-11-23 00:00:43 +0100834 }
835 }
Harald Welte365f4ed2017-11-23 00:00:43 +0100836 /* SCCP -> Client: new connection from BSC */
Harald Welte004f5fb2017-12-16 17:54:40 +0100837 [] BSSAP.receive(BSSAP_N_CONNECT_ind:?) -> value conn_ind {
Harald Welte2fce7882019-04-15 11:48:05 +0200838 vc_conn := g_ran_ops.create_cb.apply(conn_ind, g_ran_id);
Harald Welte365f4ed2017-11-23 00:00:43 +0100839 /* store mapping between client components and SCCP connectionId */
840 f_conn_table_add(vc_conn, conn_ind.connectionId);
841 /* handle user payload */
842 f_handle_userData(vc_conn, conn_ind.userData);
843 /* confirm connection establishment */
Harald Welte004f5fb2017-12-16 17:54:40 +0100844 BSSAP.send(ts_BSSAP_CONNECT_res(conn_ind.connectionId, omit));
Harald Welte365f4ed2017-11-23 00:00:43 +0100845 }
Harald Welte365f4ed2017-11-23 00:00:43 +0100846 /* SCCP -> Client: connection-oriented data in existing connection */
Harald Welte004f5fb2017-12-16 17:54:40 +0100847 [] BSSAP.receive(BSSAP_N_DATA_ind:?) -> value data_ind {
Harald Welte365f4ed2017-11-23 00:00:43 +0100848 vc_conn := f_comp_by_conn_id(data_ind.connectionId);
Harald Welte5cc4aa22017-11-23 18:51:28 +0100849 if (ispresent(data_ind.userData)) {
850 f_handle_userData(vc_conn, data_ind.userData);
851 }
Harald Welte365f4ed2017-11-23 00:00:43 +0100852 }
Harald Welte365f4ed2017-11-23 00:00:43 +0100853 /* SCCP -> Client: disconnect of an existing connection */
Harald Welte004f5fb2017-12-16 17:54:40 +0100854 [] BSSAP.receive(BSSAP_N_DISCONNECT_ind:?) -> value disc_ind {
Harald Welte365f4ed2017-11-23 00:00:43 +0100855 vc_conn := f_comp_by_conn_id(disc_ind.connectionId);
Harald Welte5cc4aa22017-11-23 18:51:28 +0100856 if (ispresent(disc_ind.userData)) {
857 f_handle_userData(vc_conn, disc_ind.userData);
858 }
Harald Welte365f4ed2017-11-23 00:00:43 +0100859 /* notify client about termination */
Harald Welte6811d102019-04-14 22:23:14 +0200860 var RAN_Conn_Prim prim := MSC_CONN_PRIM_DISC_IND;
Harald Welte365f4ed2017-11-23 00:00:43 +0100861 CLIENT.send(prim) to vc_conn;
862 f_conn_table_del(disc_ind.connectionId);
863 /* TOOD: return confirm to other side? */
864 }
Harald Welteb3414b22017-11-23 18:22:10 +0100865 /* SCCP -> Client: connection confirm for outbound connection */
Harald Welte004f5fb2017-12-16 17:54:40 +0100866 [] BSSAP.receive(BSSAP_N_CONNECT_cfm:?) -> value conn_cfm {
Harald Welte71b69332018-01-21 20:43:53 +0100867 vc_conn := f_comp_by_conn_id(conn_cfm.connectionId);
Harald Welte6811d102019-04-14 22:23:14 +0200868 var RAN_Conn_Prim prim := MSC_CONN_PRIM_CONF_IND;
Harald Welte71b69332018-01-21 20:43:53 +0100869 CLIENT.send(prim) to vc_conn;
Harald Welteb3414b22017-11-23 18:22:10 +0100870 /* handle user payload */
Harald Welte5cc4aa22017-11-23 18:51:28 +0100871 if (ispresent(conn_cfm.userData)) {
872 f_handle_userData(vc_conn, conn_cfm.userData);
873 }
Harald Welteb3414b22017-11-23 18:22:10 +0100874 }
Harald Welte2fce7882019-04-15 11:48:05 +0200875 [] CLIENT.receive(PDU_BSSAP:?) -> value bssap sender vc_conn {
876 var integer conn_id := f_conn_id_by_comp(vc_conn);
877 /* send it to dispatcher */
878 BSSAP.send(ts_BSSAP_DATA_req(conn_id, bssap));
879 }
Harald Welteb3414b22017-11-23 18:22:10 +0100880
Neels Hofmeyra8264612020-06-08 20:40:22 +0200881 [] CLIENT.receive(BSSAP_N_UNITDATA_req:?) -> value bssap_ud sender vc_conn {
882 BSSAP.send(bssap_ud);
883 }
884
Harald Welte365f4ed2017-11-23 00:00:43 +0100885 /* Disconnect request client -> SCCP */
Harald Welte6811d102019-04-14 22:23:14 +0200886 [] CLIENT.receive(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_REQ) -> sender vc_conn {
Harald Welte365f4ed2017-11-23 00:00:43 +0100887 var integer conn_id := f_conn_id_by_comp(vc_conn);
Harald Welte004f5fb2017-12-16 17:54:40 +0100888 BSSAP.send(ts_BSSAP_DISC_req(conn_id, 0));
Harald Welte365f4ed2017-11-23 00:00:43 +0100889 f_conn_table_del(conn_id);
890 }
891
892 /* BSSAP from client -> SCCP */
Harald Welteb3414b22017-11-23 18:22:10 +0100893 [] CLIENT.receive(BSSAP_Conn_Req:?) -> value creq sender vc_conn {
894 var integer conn_id;
Harald Welte004f5fb2017-12-16 17:54:40 +0100895 /* send to dispatcher */
Harald Welteb3414b22017-11-23 18:22:10 +0100896
897 if (f_comp_known(vc_conn) == false) {
898 /* unknown client, create new connection */
899 conn_id := f_gen_conn_id();
900
901 /* store mapping between client components and SCCP connectionId */
902 f_conn_table_add(vc_conn, conn_id);
903
Harald Welte004f5fb2017-12-16 17:54:40 +0100904 BSSAP.send(ts_BSSAP_CONNECT_req(creq.addr_peer, creq.addr_own, conn_id,
905 creq.bssap));
Harald Welteb3414b22017-11-23 18:22:10 +0100906 } else {
907 /* known client, send via existing connection */
908 conn_id := f_conn_id_by_comp(vc_conn);
Harald Welte004f5fb2017-12-16 17:54:40 +0100909 BSSAP.send(ts_BSSAP_DATA_req(conn_id, creq.bssap));
Harald Welteb3414b22017-11-23 18:22:10 +0100910 }
911
Harald Welte49518bf2018-02-10 11:39:19 +0100912 /* InitialL3 contains RR (PAG RESP) or MM (CM SRV REQ), we must increment
913 * counter only on MM/CC/SS, but not on RR */
Harald Welte6811d102019-04-14 22:23:14 +0200914 if (g_ran_ops.role_ms and not f_bssap_l3_is_rr(creq.bssap)) {
Harald Welte9dadc522018-02-06 13:56:04 +0100915 /* we have just sent the first MM message, increment the counter */
916 var integer idx := f_idx_by_comp(vc_conn);
917 ConnectionTable[idx].n_sd[0] := 1;
918 log("patch: N(SD) for ConnIdx ", idx, " set to 1");
919 }
Neels Hofmeyr0ac63152019-05-07 01:20:17 +0200920 }
Harald Welte9dadc522018-02-06 13:56:04 +0100921
Neels Hofmeyr0ac63152019-05-07 01:20:17 +0200922 [] PROC.getcall(RAN_last_n_sd:{?,-}) -> param(vc_conn) {
923 var integer idx := f_idx_by_comp(vc_conn);
924 last_n_sd := ConnectionTable[idx].n_sd;
925 PROC.reply(RAN_last_n_sd:{vc_conn, last_n_sd}) to vc_conn;
926 }
927
928 [] PROC.getcall(RAN_continue_after_n_sd:{?,?}) -> param(last_n_sd, vc_conn) {
929 var integer idx := f_idx_by_comp(vc_conn);
930 ConnectionTable[idx].n_sd := last_n_sd;
931 PROC.reply(RAN_continue_after_n_sd:{last_n_sd, vc_conn}) to vc_conn;
Harald Welteb3414b22017-11-23 18:22:10 +0100932 }
Harald Welte2fce7882019-04-15 11:48:05 +0200933#else
Harald Welte5b027622019-04-14 23:40:17 +0200934 [false] CLIENT.receive {}
935#endif
936}
937
938private altstep as_main_ranap() runs on RAN_Emulation_CT {
939#ifdef RAN_EMULATION_RANAP
940 var RANAP_N_UNITDATA_ind rud_ind;
941 var RANAP_N_CONNECT_ind rconn_ind;
942 var RANAP_N_CONNECT_cfm rconn_cfm;
943 var RANAP_N_DATA_ind rdata_ind;
944 var RANAP_N_DISCONNECT_ind rdisc_ind;
945 var RANAP_Conn_Req creq;
946 var RANAP_PDU ranap;
947 var RAN_ConnHdlr vc_conn;
Harald Welte717c7302019-04-23 20:31:55 +0200948 var PDU_DTAP_PS_MO ps_mo;
949 var PDU_DTAP_PS_MT ps_mt;
Harald Welte5b027622019-04-14 23:40:17 +0200950
951 /* SCCP -> Client: UNIT-DATA (connectionless SCCP) from a BSC */
952 [] RANAP.receive(RANAP_N_UNITDATA_ind:?) -> value rud_ind {
953 /* Connectionless Procedures like RESET */
954 var template RANAP_PDU resp;
955 resp := CommonRanapUnitdataCallback(rud_ind.userData);
956 if (isvalue(resp)) {
957 RANAP.send(ts_RANAP_UNITDATA_req(rud_ind.callingAddress,
958 rud_ind.calledAddress, resp));
959 }
960 }
961 /* SCCP -> Client: new connection from BSC */
962 [] RANAP.receive(RANAP_N_CONNECT_ind:?) -> value rconn_ind {
963 vc_conn := g_ran_ops.ranap_create_cb.apply(rconn_ind, g_ran_id);
964 /* store mapping between client components and SCCP connectionId */
965 f_conn_table_add(vc_conn, rconn_ind.connectionId);
966 /* handle user payload */
967 f_handle_userData_RANAP(vc_conn, rconn_ind.userData);
968 /* confirm connection establishment */
969 RANAP.send(ts_RANAP_CONNECT_res(rconn_ind.connectionId, omit));
970 }
971 /* SCCP -> Client: connection-oriented data in existing connection */
972 [] RANAP.receive(RANAP_N_DATA_ind:?) -> value rdata_ind {
973 vc_conn := f_comp_by_conn_id(rdata_ind.connectionId);
974 if (ispresent(rdata_ind.userData)) {
975 f_handle_userData_RANAP(vc_conn, rdata_ind.userData);
976 }
977 }
978 /* SCCP -> Client: disconnect of an existing connection */
979 [] RANAP.receive(RANAP_N_DISCONNECT_ind:?) -> value rdisc_ind {
980 vc_conn := f_comp_by_conn_id(rdisc_ind.connectionId);
981 if (ispresent(rdisc_ind.userData)) {
982 f_handle_userData_RANAP(vc_conn, rdisc_ind.userData);
983 }
984 /* notify client about termination */
985 var RAN_Conn_Prim prim := MSC_CONN_PRIM_DISC_IND;
986 CLIENT.send(prim) to vc_conn;
987 f_conn_table_del(rdisc_ind.connectionId);
988 /* TOOD: return confirm to other side? */
989 }
990 /* SCCP -> Client: connection confirm for outbound connection */
991 [] RANAP.receive(RANAP_N_CONNECT_cfm:?) -> value rconn_cfm {
992 vc_conn := f_comp_by_conn_id(rconn_cfm.connectionId);
993 var RAN_Conn_Prim prim := MSC_CONN_PRIM_CONF_IND;
994 CLIENT.send(prim) to vc_conn;
995 /* handle user payload */
996 if (ispresent(rconn_cfm.userData)) {
997 f_handle_userData_RANAP(vc_conn, rconn_cfm.userData);
998 }
999 }
1000
1001 [] CLIENT.receive(RANAP_PDU:?) -> value ranap sender vc_conn {
1002 var integer conn_id := f_conn_id_by_comp(vc_conn);
1003 /* send it to dispatcher */
1004 RANAP.send(ts_RANAP_DATA_req(conn_id, ranap));
1005 }
1006
1007 /* Disconnect request client -> SCCP */
1008 [] CLIENT.receive(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_REQ) -> sender vc_conn {
1009 var integer conn_id := f_conn_id_by_comp(vc_conn);
1010 RANAP.send(ts_RANAP_DISC_req(conn_id, 0));
1011 f_conn_table_del(conn_id);
1012 }
1013
1014 /* BSSAP from client -> SCCP */
1015 [] CLIENT.receive(RANAP_Conn_Req:?) -> value creq sender vc_conn {
1016 var integer conn_id;
1017 /* send to dispatcher */
1018
1019 if (f_comp_known(vc_conn) == false) {
1020 /* unknown client, create new connection */
1021 conn_id := f_gen_conn_id();
1022
1023 /* store mapping between client components and SCCP connectionId */
1024 f_conn_table_add(vc_conn, conn_id);
1025
1026 RANAP.send(ts_RANAP_CONNECT_req(creq.addr_peer, creq.addr_own, conn_id,
1027 creq.ranap));
1028 } else {
1029 /* known client, send via existing connection */
1030 conn_id := f_conn_id_by_comp(vc_conn);
1031 RANAP.send(ts_RANAP_DATA_req(conn_id, creq.ranap));
1032 }
1033
1034 /* InitialL3 contains RR (PAG RESP) or MM (CM SRV REQ), we must increment
1035 * counter only on MM/CC/SS, but not on RR */
1036 if (g_ran_ops.role_ms and not f_ranap_l3_is_rr(creq.ranap)) {
1037 /* we have just sent the first MM message, increment the counter */
1038 var integer idx := f_idx_by_comp(vc_conn);
1039 ConnectionTable[idx].n_sd[0] := 1;
1040 log("patch: N(SD) for ConnIdx ", idx, " set to 1");
1041 }
1042 }
1043
Harald Welte717c7302019-04-23 20:31:55 +02001044 [g_ran_ops.role_ms] CLIENT.receive(PDU_DTAP_PS_MO:?) -> value ps_mo sender vc_conn {
1045 var integer idx := f_idx_by_comp(vc_conn);
1046 /* convert from decoded DTAP to encoded DTAP */
1047 var octetstring l3_enc := enc_PDU_L3_MS_SGSN(ps_mo.dtap);
1048 /* patch correct L3 send sequence number N(SD) into l3_enc */
1049 if (ps_mo.skip_seq_patching == false) {
1050 //f_ML3_patch_seq(ConnectionTable[idx], ps_mo.dtap, l3_enc);
1051 }
1052 f_xmit_raw_l3(ConnectionTable[idx].sccp_conn_id, ps_mo.dlci, l3_enc);
1053 }
1054
1055 [not g_ran_ops.role_ms] CLIENT.receive(PDU_DTAP_PS_MT:?) -> value ps_mt sender vc_conn {
1056 var integer idx := f_idx_by_comp(vc_conn);
1057 /* convert from decoded DTAP to encoded DTAP */
1058 var octetstring l3_enc := enc_PDU_L3_SGSN_MS(ps_mt.dtap);
1059 f_xmit_raw_l3(ConnectionTable[idx].sccp_conn_id, ps_mt.dlci, l3_enc);
1060 }
1061
1062
Harald Welte5b027622019-04-14 23:40:17 +02001063#else
1064 [false] CLIENT.receive {}
Harald Welte2fce7882019-04-15 11:48:05 +02001065#endif
1066}
Harald Welteb3414b22017-11-23 18:22:10 +01001067
Harald Welte2fce7882019-04-15 11:48:05 +02001068private altstep as_main_mgcp() runs on RAN_Emulation_CT {
1069#ifdef RAN_EMULATION_MGCP
1070 var MgcpCommand mgcp_req;
1071 var MgcpResponse mgcp_resp;
1072 var RAN_ConnHdlr vc_conn;
Harald Welte0b476062018-01-21 19:07:32 +01001073
Harald Weltec82eef42017-11-24 20:40:12 +01001074 /* Handling of MGCP in IPA SCCPLite case. This predates 3GPP AoIP
1075 * and uses a MGCP session in parallel to BSSAP. BSSAP uses CIC
1076 * as usual, and MGCP uses "CIC@mgw" endpoint naming, where CIC
1077 * is printed as hex string, e.g. a@mgw for CIC 10 */
1078
1079 /* CLIENT -> MGCP */
1080 [] CLIENT.receive(MgcpCommand:?) -> value mgcp_req sender vc_conn {
1081 /* MGCP request from Handler (we're MSC) */
1082 /* store the transaction ID we've seen */
1083 f_comp_store_mgcp_tid(vc_conn, mgcp_req.line.trans_id);
1084 /* simply forward any MGCP from the client to the port */
1085 MGCP.send(mgcp_req);
1086 }
1087 [] CLIENT.receive(MgcpResponse:?) -> value mgcp_resp sender vc_conn {
1088 /* MGCP response from Handler (we're BSC/MGW) */
1089 /* simply forward any MGCP from the client to the port */
1090 MGCP.send(mgcp_resp);
1091 }
1092
1093 /* MGCP -> CLIENT */
1094 [] MGCP.receive(MgcpCommand:?) -> value mgcp_req {
1095 /* MGCP request from network side (we're BSC/MGW) */
1096 /* Extract CIC from local part of endpoint name */
1097 var integer cic := f_mgcp_ep_extract_cic(mgcp_req.line.ep);
Harald Weltee98bb2e2017-11-29 12:09:48 +01001098 if (match(mgcp_req, tr_RSIP) and f_cic_known(cic) == false) {
1099 /* ignore RSIP for unknown CIC */
1100 } else {
1101 /* Resolve the vc_conn by the CIC */
1102 vc_conn := f_comp_by_cic(cic);
1103 CLIENT.send(mgcp_req) to vc_conn;
1104 }
Harald Weltec82eef42017-11-24 20:40:12 +01001105 }
1106 [] MGCP.receive(MgcpResponse:?) -> value mgcp_resp {
1107 /* MGCP response from network side (we're MSC) */
1108 /* Resolve the vc_conn by the transaction ID */
1109 vc_conn := f_comp_by_mgcp_tid(mgcp_resp.line.trans_id);
1110 CLIENT.send(mgcp_resp) to vc_conn;
1111 }
Harald Welte2fce7882019-04-15 11:48:05 +02001112#else
1113 [false] CLIENT.receive {}
1114#endif
1115}
Harald Weltec82eef42017-11-24 20:40:12 +01001116
Pau Espin Pedrol4d0e5e52019-06-07 19:38:28 +02001117private altstep as_main_ctrl() runs on RAN_Emulation_CT {
1118#ifdef RAN_EMULATION_CTRL
1119 var CtrlMessage ctrl;
1120 var RAN_ConnHdlr vc_conn;
1121 var ASP_IPA_Event evt;
1122
1123 /* Handling of CTRL in IPA SCCPLite case. This predates 3GPP AoIP
1124 * and uses a CTRL session in parallel to BSSAP. */
1125
1126 /* CTRL_CLIENT -> CTRL */
1127 [] CTRL_CLIENT.receive(CtrlMessage:?) -> value ctrl sender vc_conn {
1128 CTRL.send(ctrl);
1129 }
1130
1131 /* CTRL -> CTRL_CLIENT */
1132 [] CTRL.receive(CtrlMessage:?) -> value ctrl {
1133 CTRL_CLIENT.send(ctrl);
1134 }
1135
Vadim Yanitskiya2afacc2020-05-18 21:16:19 +07001136 [] CTRL.receive(tr_ASP_IPA_EV(ASP_IPA_EVENT_UP)) -> value evt {
Pau Espin Pedrol4d0e5e52019-06-07 19:38:28 +02001137 CTRL_CLIENT.send(evt);
1138 }
Vadim Yanitskiya2afacc2020-05-18 21:16:19 +07001139 [] CTRL.receive(tr_ASP_IPA_EV(ASP_IPA_EVENT_DOWN)) {
Pau Espin Pedrol4d0e5e52019-06-07 19:38:28 +02001140 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Lost IPA connection!");
1141 }
Vadim Yanitskiya2afacc2020-05-18 21:16:19 +07001142 [] CTRL.receive(tr_ASP_IPA_EV(ASP_IPA_EVENT_ID_ACK)) {}
Pau Espin Pedrol4d0e5e52019-06-07 19:38:28 +02001143#else
1144 [false] CLIENT.receive {}
1145#endif
1146}
1147
Harald Welte2fce7882019-04-15 11:48:05 +02001148/* send a raw (encoded) L3 message over given SCCP connection */
1149private function f_xmit_raw_l3(integer sccp_conn_id, OCT1 dlci, octetstring l3_enc) runs on RAN_Emulation_CT
1150{
1151 select (g_ran_ops.protocol) {
1152#ifdef RAN_EMULATION_BSSAP
1153 case (RAN_PROTOCOL_BSSAP) {
1154 var PDU_BSSAP bssap;
1155 bssap := valueof(ts_BSSAP_DTAP(l3_enc, dlci));
1156 BSSAP.send(ts_BSSAP_DATA_req(sccp_conn_id, bssap));
1157 }
1158#endif
Harald Welte5b027622019-04-14 23:40:17 +02001159#ifdef RAN_EMULATION_RANAP
1160 case (RAN_PROTOCOL_RANAP) {
Vadim Yanitskiyf2c3fa92019-06-20 05:18:15 +07001161 var template (omit) RANAP_IEs.SAPI sapi := omit;
Harald Welte5b027622019-04-14 23:40:17 +02001162 var RANAP_PDU ranap;
Vadim Yanitskiyf2c3fa92019-06-20 05:18:15 +07001163
1164 /* Perform DLCI -> SAPI transformation (x & 0x07) */
1165 if (dlci and4b '07'O == '03'O) {
1166 sapi := sapi_3;
1167 }
1168
1169 ranap := valueof(ts_RANAP_DirectTransfer(l3_enc, sapi := sapi));
Harald Welte5b027622019-04-14 23:40:17 +02001170 RANAP.send(ts_RANAP_DATA_req(sccp_conn_id, ranap));
1171 }
1172#endif
Harald Welte2fce7882019-04-15 11:48:05 +02001173 }
1174}
1175
1176function main(RanOps ops, charstring id) runs on RAN_Emulation_CT {
1177
1178 g_ran_id := id;
1179 g_ran_ops := ops;
1180 f_conn_table_init();
1181 f_expect_table_init();
1182
1183 if (isvalue(ops.sccp_addr_peer) and isvalue(ops.sccp_addr_local)) {
1184 f_sleep(1.0); /* HACK to wait for M3UA/ASP to be ACTIVE */
Harald Welte5b027622019-04-14 23:40:17 +02001185 select (g_ran_ops.protocol) {
1186#ifdef RAN_EMULATION_BSSAP
1187 case (RAN_PROTOCOL_BSSAP) {
1188 f_bssap_reset(ops.sccp_addr_peer, ops.sccp_addr_local);
1189 }
1190#endif
1191#ifdef RAN_EMULATION_RANAP
1192 case (RAN_PROTOCOL_RANAP) {
1193 f_ranap_reset(ops.sccp_addr_peer, ops.sccp_addr_local);
1194 }
1195#endif
1196 }
Harald Welte2fce7882019-04-15 11:48:05 +02001197 }
1198
1199 while (true) {
1200 var RAN_ConnHdlr vc_conn;
1201 var PDU_DTAP_MO dtap_mo;
1202 var PDU_DTAP_MT dtap_mt;
1203 var RAN_ConnHdlr vc_hdlr;
1204 var octetstring l3_info;
1205 var hexstring imsi;
1206 var OCT4 tmsi;
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001207 var integer targetPointCode;
Harald Welte2fce7882019-04-15 11:48:05 +02001208
1209 alt {
1210 [g_ran_ops.protocol == RAN_PROTOCOL_BSSAP] as_main_bssap();
Harald Welte5b027622019-04-14 23:40:17 +02001211 [g_ran_ops.protocol == RAN_PROTOCOL_RANAP] as_main_ranap();
Harald Welte2fce7882019-04-15 11:48:05 +02001212
1213 [g_ran_ops.role_ms] CLIENT.receive(PDU_DTAP_MO:?) -> value dtap_mo sender vc_conn {
1214 var integer idx := f_idx_by_comp(vc_conn);
1215 /* convert from decoded DTAP to encoded DTAP */
1216 var octetstring l3_enc := enc_PDU_ML3_MS_NW(dtap_mo.dtap);
1217 /* patch correct L3 send sequence number N(SD) into l3_enc */
1218 if (dtap_mo.skip_seq_patching == false) {
1219 f_ML3_patch_seq(ConnectionTable[idx], dtap_mo.dtap, l3_enc);
1220 }
1221 f_xmit_raw_l3(ConnectionTable[idx].sccp_conn_id, dtap_mo.dlci, l3_enc);
1222 }
1223
1224 [not g_ran_ops.role_ms] CLIENT.receive(PDU_DTAP_MT:?) -> value dtap_mt sender vc_conn {
1225 var integer idx := f_idx_by_comp(vc_conn);
1226 /* convert from decoded DTAP to encoded DTAP */
1227 var octetstring l3_enc := enc_PDU_ML3_NW_MS(dtap_mt.dtap);
1228 f_xmit_raw_l3(ConnectionTable[idx].sccp_conn_id, dtap_mt.dlci, l3_enc);
1229 }
1230
1231 [] as_main_mgcp();
Pau Espin Pedrol4d0e5e52019-06-07 19:38:28 +02001232 [] as_main_ctrl();
Harald Welte624f9632017-12-16 19:26:04 +01001233
Harald Welte6811d102019-04-14 22:23:14 +02001234 [] PROC.getcall(RAN_register:{?,?}) -> param(l3_info, vc_hdlr) {
Harald Welte624f9632017-12-16 19:26:04 +01001235 f_create_expect(l3_info, vc_hdlr);
Harald Welte6811d102019-04-14 22:23:14 +02001236 PROC.reply(RAN_register:{l3_info, vc_hdlr}) to vc_hdlr;
Harald Welte624f9632017-12-16 19:26:04 +01001237 }
1238
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001239 [] PROC.getcall(RAN_register_handoverRequest:{?,?}) -> param(targetPointCode, vc_hdlr) {
1240 f_create_expect(omit, vc_hdlr, targetPointCode);
1241 PROC.reply(RAN_register_handoverRequest:{targetPointCode, vc_hdlr}) to vc_hdlr;
1242 }
1243
Harald Welte6811d102019-04-14 22:23:14 +02001244 [] PROC.getcall(RAN_register_imsi:{?,?,?}) -> param(imsi, tmsi, vc_hdlr) {
Harald Welte17d21152018-01-27 00:47:11 +01001245 f_create_imsi(imsi, tmsi, vc_hdlr);
Harald Welte6811d102019-04-14 22:23:14 +02001246 PROC.reply(RAN_register_imsi:{imsi, tmsi, vc_hdlr}) to vc_hdlr;
Harald Welte17d21152018-01-27 00:47:11 +01001247 }
1248
1249
Harald Welte365f4ed2017-11-23 00:00:43 +01001250 }
1251 }
1252}
1253
Harald Welte2fce7882019-04-15 11:48:05 +02001254#ifdef RAN_EMULATION_MGCP
Harald Weltec82eef42017-11-24 20:40:12 +01001255private function f_mgcp_ep_extract_cic(charstring inp) return integer {
Harald Welte525a9c12017-11-24 23:40:41 +01001256 var charstring local_part := regexp(inp, "(*)@*", 0);
Harald Weltec82eef42017-11-24 20:40:12 +01001257 return hex2int(str2hex(local_part));
1258
1259}
Harald Welte2fce7882019-04-15 11:48:05 +02001260#endif
Harald Welte365f4ed2017-11-23 00:00:43 +01001261
Harald Welte624f9632017-12-16 19:26:04 +01001262/***********************************************************************
1263 * "Expect" Handling (mapping for expected incoming SCCP connections)
1264 ***********************************************************************/
1265
1266/* data about an expected future incoming connection */
1267type record ExpectData {
1268 /* L3 payload based on which we can match it */
1269 octetstring l3_payload optional,
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001270 integer handoverRequestPointCode optional,
Harald Welte624f9632017-12-16 19:26:04 +01001271 /* component reference for this connection */
Harald Welte6811d102019-04-14 22:23:14 +02001272 RAN_ConnHdlr vc_conn
Harald Welte624f9632017-12-16 19:26:04 +01001273}
1274
1275/* procedure based port to register for incoming connections */
Harald Welte6811d102019-04-14 22:23:14 +02001276signature RAN_register(in octetstring l3, in RAN_ConnHdlr hdlr);
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001277signature RAN_register_handoverRequest(in integer targetPointCode, in RAN_ConnHdlr hdlr);
Harald Welte624f9632017-12-16 19:26:04 +01001278
Harald Welte17d21152018-01-27 00:47:11 +01001279/* procedure based port to register for incoming IMSI/TMSI */
Harald Welte6811d102019-04-14 22:23:14 +02001280signature RAN_register_imsi(in hexstring imsi, in OCT4 tmsi, in RAN_ConnHdlr hdlr);
Harald Welte17d21152018-01-27 00:47:11 +01001281
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001282/* If DTAP happens across other channels (e.g. GSUP), provide manual advancing of the n_sd sequence number */
1283signature RAN_last_n_sd(in RAN_ConnHdlr hdlr, out N_Sd_Array last_n_sd);
1284
1285/* Update conn's n_sd sequence nr after the connection was taken over from elsewhere */
1286signature RAN_continue_after_n_sd(N_Sd_Array last_n_sd, in RAN_ConnHdlr hdlr);
1287
Harald Welte6811d102019-04-14 22:23:14 +02001288type port RAN_PROC_PT procedure {
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001289 inout RAN_register, RAN_register_imsi, RAN_register_handoverRequest, RAN_last_n_sd, RAN_continue_after_n_sd;
Harald Welte624f9632017-12-16 19:26:04 +01001290} with { extension "internal" };
1291
Harald Welte5b027622019-04-14 23:40:17 +02001292#ifdef RAN_EMULATION_BSSAP
Harald Welte624f9632017-12-16 19:26:04 +01001293/* CreateCallback that can be used as create_cb and will use the expectation table */
1294function ExpectedCreateCallback(BSSAP_N_CONNECT_ind conn_ind, charstring id)
Harald Welte6811d102019-04-14 22:23:14 +02001295runs on RAN_Emulation_CT return RAN_ConnHdlr {
1296 var RAN_ConnHdlr ret := null;
Harald Welte624f9632017-12-16 19:26:04 +01001297 var octetstring l3_info;
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001298 var boolean handoverRequest := false;
1299 var integer handoverRequestPointCode;
Harald Welte624f9632017-12-16 19:26:04 +01001300 var integer i;
1301
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001302 if (ischosen(conn_ind.userData.pdu.bssmap.completeLayer3Information)) {
1303 l3_info := conn_ind.userData.pdu.bssmap.completeLayer3Information.layer3Information.layer3info;
1304 log("ExpectedCreateCallback completeLayer3Information");
1305 } else if (ischosen(conn_ind.userData.pdu.bssmap.handoverRequest)) {
1306 handoverRequest := true;
1307 handoverRequestPointCode := bit2int(conn_ind.calledAddress.signPointCode);
1308 log("ExpectedCreateCallback handoverRequest ", handoverRequestPointCode);
1309 } else {
1310 setverdict(fail, "N-CONNECT.ind with L3 != COMPLETE L3 nor a Handover Request");
Daniel Willmanne4ff5372018-07-05 17:35:03 +02001311 mtc.stop;
Harald Welte624f9632017-12-16 19:26:04 +01001312 }
Harald Welte624f9632017-12-16 19:26:04 +01001313
1314 for (i := 0; i < sizeof(ExpectTable); i:= i+1) {
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001315 if (handoverRequest) {
1316 log("ExpectTable[", i, "].handoverRequestPointCode = ", ExpectTable[i].handoverRequestPointCode,
1317 " ==? ", handoverRequestPointCode);
1318 if (ExpectTable[i].handoverRequestPointCode == handoverRequestPointCode) {
1319 ret := ExpectTable[i].vc_conn;
1320 log("Found Expect[", i, "] for handoverRequest handled at ", ret);
1321 return ret;
1322 } else {
1323 continue;
1324 }
1325 }
Harald Welte624f9632017-12-16 19:26:04 +01001326 if (not ispresent(ExpectTable[i].l3_payload)) {
1327 continue;
1328 }
1329 if (l3_info == ExpectTable[i].l3_payload) {
1330 ret := ExpectTable[i].vc_conn;
1331 /* release this entry to be used again */
1332 ExpectTable[i].l3_payload := omit;
1333 ExpectTable[i].vc_conn := null;
1334 log("Found Expect[", i, "] for ", l3_info, " handled at ", ret);
1335 /* return the component reference */
1336 return ret;
1337 }
1338 }
1339 setverdict(fail, "Couldn't find Expect for incoming connection ", conn_ind);
Daniel Willmanne4ff5372018-07-05 17:35:03 +02001340 mtc.stop;
Harald Welte624f9632017-12-16 19:26:04 +01001341}
Harald Welte5b027622019-04-14 23:40:17 +02001342#endif
1343
1344#ifdef RAN_EMULATION_RANAP
1345/* CreateCallback that can be used as create_cb and will use the expectation table */
1346function RanapExpectedCreateCallback(RANAP_N_CONNECT_ind conn_ind, charstring id)
1347runs on RAN_Emulation_CT return RAN_ConnHdlr {
1348 var RAN_ConnHdlr ret := null;
1349 var template (omit) octetstring l3_info;
1350 var integer i;
1351
1352 l3_info := f_ranap_extract_l3(conn_ind.userData);
1353 if (istemplatekind(l3_info, "omit")) {
1354 setverdict(fail, "N-CONNECT.ind without NAS payload");
1355 mtc.stop;
1356 return ret;
1357 }
1358
1359 for (i := 0; i < sizeof(ExpectTable); i:= i+1) {
1360 if (not ispresent(ExpectTable[i].l3_payload)) {
1361 continue;
1362 }
1363 if (valueof(l3_info) == ExpectTable[i].l3_payload) {
1364 ret := ExpectTable[i].vc_conn;
1365 /* release this entry to be used again */
1366 ExpectTable[i].l3_payload := omit;
1367 ExpectTable[i].vc_conn := null;
1368 log("Found Expect[", i, "] for ", l3_info, " handled at ", ret);
1369 /* return the component reference */
1370 return ret;
1371 }
1372 }
1373 setverdict(fail, "Couldn't find Expect for incoming connection ", conn_ind);
1374 mtc.stop;
1375 return ret;
1376}
1377#endif
Harald Welte624f9632017-12-16 19:26:04 +01001378
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001379private function f_create_expect(template octetstring l3, RAN_ConnHdlr hdlr,
1380 template integer handoverRequestPointCode := omit)
Harald Welte6811d102019-04-14 22:23:14 +02001381runs on RAN_Emulation_CT {
Harald Welte624f9632017-12-16 19:26:04 +01001382 var integer i;
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001383 log("f_create_expect(l3 := ", l3, ", handoverRequest := ", handoverRequestPointCode);
Harald Welte624f9632017-12-16 19:26:04 +01001384 for (i := 0; i < sizeof(ExpectTable); i := i+1) {
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001385 if (not ispresent(ExpectTable[i].l3_payload)
1386 and not ispresent(ExpectTable[i].handoverRequestPointCode)) {
1387 if (ispresent(l3)) {
1388 ExpectTable[i].l3_payload := valueof(l3);
1389 }
1390 if (ispresent(handoverRequestPointCode)) {
1391 ExpectTable[i].handoverRequestPointCode := valueof(handoverRequestPointCode);
1392 }
Harald Welte624f9632017-12-16 19:26:04 +01001393 ExpectTable[i].vc_conn := hdlr;
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001394 if (ispresent(handoverRequestPointCode)) {
1395 log("Created Expect[", i, "] for handoverRequest to be handled at ", hdlr);
1396 } else {
1397 log("Created Expect[", i, "] for ", l3, " to be handled at ", hdlr);
1398 }
Harald Welte624f9632017-12-16 19:26:04 +01001399 return;
1400 }
1401 }
Daniel Willmanne4ff5372018-07-05 17:35:03 +02001402 testcase.stop("No space left in ExpectTable");
Harald Welte624f9632017-12-16 19:26:04 +01001403}
1404
Harald Welte6811d102019-04-14 22:23:14 +02001405private function f_create_imsi(hexstring imsi, OCT4 tmsi, RAN_ConnHdlr hdlr)
1406runs on RAN_Emulation_CT {
Harald Welte17d21152018-01-27 00:47:11 +01001407 for (var integer i := 0; i < sizeof(ImsiTable); i := i+1) {
1408 if (not ispresent(ImsiTable[i].imsi)) {
1409 ImsiTable[i].imsi := imsi;
1410 ImsiTable[i].tmsi := tmsi;
1411 ImsiTable[i].comp_ref := hdlr;
1412 log("Created IMSI[", i, "] for ", imsi, tmsi, " to be handled at ", hdlr);
1413 return;
1414 }
1415 }
Daniel Willmanne4ff5372018-07-05 17:35:03 +02001416 testcase.stop("No space left in ImsiTable");
Harald Welte17d21152018-01-27 00:47:11 +01001417}
1418
1419
Daniel Willmannd47106b2018-01-17 12:20:56 +01001420private function f_expect_table_init()
Harald Welte6811d102019-04-14 22:23:14 +02001421runs on RAN_Emulation_CT {
Daniel Willmannd47106b2018-01-17 12:20:56 +01001422 for (var integer i := 0; i < sizeof(ExpectTable); i := i+1) {
1423 ExpectTable[i].l3_payload := omit;
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001424 ExpectTable[i].handoverRequestPointCode := omit;
Daniel Willmannd47106b2018-01-17 12:20:56 +01001425 }
1426}
Harald Welte624f9632017-12-16 19:26:04 +01001427
Harald Welte17d21152018-01-27 00:47:11 +01001428/* helper function for clients to register their IMSI/TMSI */
Vadim Yanitskiyae747742020-01-10 00:23:10 +01001429function f_ran_register_imsi(hexstring imsi, template (omit) OCT4 tmsi_or_omit)
Harald Welte6811d102019-04-14 22:23:14 +02001430runs on RAN_ConnHdlr {
Vadim Yanitskiyae747742020-01-10 00:23:10 +01001431 var OCT4 tmsi;
1432
1433 /* Resolve omit to a special reserved value */
1434 if (istemplatekind(tmsi_or_omit, "omit")) {
1435 tmsi := 'FFFFFFFF'O;
1436 } else {
1437 tmsi := valueof(tmsi_or_omit);
1438 }
1439
Harald Welte6811d102019-04-14 22:23:14 +02001440 BSSAP_PROC.call(RAN_register_imsi:{imsi, tmsi, self}) {
1441 [] BSSAP_PROC.getreply(RAN_register_imsi:{?,?,?}) {};
Harald Welte17d21152018-01-27 00:47:11 +01001442 }
1443}
1444
Harald Welte1e3bbbe2022-01-11 23:04:33 +01001445/* register an expect with the BSSMAP core */
1446function f_ran_register_exp(octetstring l3_enc) runs on RAN_ConnHdlr {
1447 BSSAP_PROC.call(RAN_register:{l3_enc, self}) {
1448 [] BSSAP_PROC.getreply(RAN_register:{?, ?}) {};
1449 }
1450}
1451
Harald Welte475a2c12019-05-02 19:05:48 +02001452#ifdef RAN_EMULATION_RANAP
1453/* expect a IuReleaseCommand; Confirm that; expect SCCP-level N-DISCONNET.ind */
1454altstep as_iu_release_compl_disc(float t := 5.0) runs on RAN_ConnHdlr {
1455 var RANAP_PDU ranap;
1456 [] BSSAP.receive(tr_RANAP_IuReleaseCommand(?)) {
1457 BSSAP.send(ts_RANAP_IuReleaseComplete);
1458 alt {
1459 [] BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_IND) {
1460 setverdict(pass);
1461 }
1462 [] BSSAP.receive {
1463 setverdict(fail, "Unexpected RANAP while waiting for SCCP Release ");
1464 mtc.stop;
1465 }
1466 }
1467 }
1468 [] BSSAP.receive(RANAP_PDU:?) -> value ranap{
1469 setverdict(fail, "Unexpected RANAP while waiting for IuReleaseCommand", ranap);
1470 mtc.stop;
1471 }
1472}
1473#endif
1474
Harald Welte17d21152018-01-27 00:47:11 +01001475
Harald Welte365f4ed2017-11-23 00:00:43 +01001476}