blob: 543df2b02a6d139e9d98be42dcf12499b9e1abc0 [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,
Neels Hofmeyra23f3b12022-03-02 19:57:12 +0100442 PDU_BSSAP bssap optional
Harald Welte2fce7882019-04-15 11:48:05 +0200443}
Neels Hofmeyra23f3b12022-03-02 19:57:12 +0100444template BSSAP_Conn_Req ts_BSSAP_Conn_Req(SCCP_PAR_Address peer, SCCP_PAR_Address own, template (omit) PDU_BSSAP bssap) := {
Harald Welte2fce7882019-04-15 11:48:05 +0200445 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();
Eric Wild49888a62022-03-30 03:16:11 +0200524 var integer attempts := g_ran_ops.bssap_reset_retries;
Harald Weltea4ca4462018-02-09 00:17:14 +0100525
Eric Wild49888a62022-03-30 03:16:11 +0200526 while (attempts > 0) {
527 attempts := attempts - 1;
528
529 BSSAP.send(ts_BSSAP_UNITDATA_req(peer, own, ts_BSSMAP_Reset(0, append_osmux_support)));
530 T.start;
531 alt {
532 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(own, peer, tr_BSSMAP_ResetAck(append_osmux_support))) {
533 log("BSSMAP: Received RESET-ACK in response to RESET, we're ready to go!");
534 return;
535 }
536 [] as_reset_ack(append_osmux_support);
537 [] BSSAP.receive { repeat };
538 [] T.timeout {
539 continue;
540 }
Daniel Willmanne4ff5372018-07-05 17:35:03 +0200541 }
Harald Weltea4ca4462018-02-09 00:17:14 +0100542 }
Eric Wild49888a62022-03-30 03:16:11 +0200543
544 setverdict(fail, "BSSMAP: Timeout waiting for RESET-ACK after sending RESET");
545 mtc.stop;
Harald Weltea4ca4462018-02-09 00:17:14 +0100546}
547
Harald Welte2fce7882019-04-15 11:48:05 +0200548private function f_bssap_l3_is_rr(PDU_BSSAP bssap) return boolean {
549 var template octetstring l3 := f_bssap_extract_l3(bssap);
550 return f_L3_is_rr(l3);
551}
552#endif
Harald Welte365f4ed2017-11-23 00:00:43 +0100553
Harald Welte5b027622019-04-14 23:40:17 +0200554#ifdef RAN_EMULATION_RANAP
555type record RANAP_Conn_Req {
556 SCCP_PAR_Address addr_peer,
557 SCCP_PAR_Address addr_own,
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +0200558 RANAP_PDU ranap optional
Harald Welte5b027622019-04-14 23:40:17 +0200559}
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +0200560template (value) RANAP_Conn_Req ts_RANAP_Conn_Req(SCCP_PAR_Address peer, SCCP_PAR_Address own,
561 template (omit) RANAP_PDU ranap) := {
562 addr_peer := peer,
563 addr_own := own,
564 ranap := ranap
565};
566
567template RANAP_Conn_Req tr_RANAP_Conn_Req(template SCCP_PAR_Address peer := ?,
568 template SCCP_PAR_Address own := ?,
569 template (omit) RANAP_PDU ranap := omit) := {
Harald Welte5b027622019-04-14 23:40:17 +0200570 addr_peer := peer,
571 addr_own := own,
572 ranap := ranap
573};
574
575private function fake_dlci_from_sapi(template (omit) SAPI sapi) return template (omit) OCT1
576{
577 if (istemplatekind(sapi, "omit")) {
578 return omit;
579 } else if (valueof(sapi) == sapi_3) {
580 return '03'O;
581 }
582 return '00'O;
583}
584
585private function f_handle_userData_RANAP(RAN_ConnHdlr client, RANAP_PDU ranap)
586runs on RAN_Emulation_CT {
587 /* decode + send decoded RANAP to client */
588 var template (omit) octetstring l3 := f_ranap_extract_l3(ranap);
Harald Welte0af76152022-01-11 23:02:38 +0100589 if (istemplatekind(l3, "omit") or not g_ran_ops.decode_dtap) {
Harald Welte5b027622019-04-14 23:40:17 +0200590 CLIENT.send(ranap) to client;
591 } else {
592 var template (omit) SAPI sapi := f_ranap_extract_sapi(ranap);
593 var template (omit) OCT1 dlci := fake_dlci_from_sapi(sapi);
594 if (g_ran_ops.role_ms) {
595 /* we are the MS, so any message to us must be MT */
Harald Welte717c7302019-04-23 20:31:55 +0200596 if (g_ran_ops.ps_domain) {
597 var PDU_DTAP_PS_MT mt := {
598 dlci := omit,
599 dtap := dec_PDU_L3_SGSN_MS(valueof(l3))
600 };
601 if (isvalue(dlci)) {
602 mt.dlci := valueof(dlci);
603 }
604 CLIENT.send(mt) to client;
605 } else {
606 var PDU_DTAP_MT mt := {
607 dlci := omit,
608 dtap := dec_PDU_ML3_NW_MS(valueof(l3))
609 };
610 if (isvalue(dlci)) {
611 mt.dlci := valueof(dlci)
612 }
613 CLIENT.send(mt) to client;
Harald Welte5b027622019-04-14 23:40:17 +0200614 }
Harald Welte5b027622019-04-14 23:40:17 +0200615 } else {
616 /* we are the Network, so any message to us must be MO */
Harald Welte717c7302019-04-23 20:31:55 +0200617 if (g_ran_ops.ps_domain) {
618 var PDU_DTAP_PS_MO mo := {
619 dlci := omit,
620 dtap := dec_PDU_L3_MS_SGSN(valueof(l3))
621 };
622 if (isvalue(dlci)) {
623 mo.dlci := valueof(dlci);
624 }
625 CLIENT.send(mo) to client;
626 } else {
627 var PDU_DTAP_MO mo := {
628 dlci := omit,
629 dtap := dec_PDU_ML3_MS_NW(valueof(l3))
630 };
631 if (isvalue(dlci)) {
632 mo.dlci := valueof(dlci)
633 }
634 CLIENT.send(mo) to client;
Harald Welte5b027622019-04-14 23:40:17 +0200635 }
Harald Welte5b027622019-04-14 23:40:17 +0200636 }
637 }
638}
639
640/* call-back type, to be provided by specific implementation; called when new SCCP connection
641 * arrives */
642type function RanapCreateCallback(RANAP_N_CONNECT_ind conn_ind, charstring id)
643runs on RAN_Emulation_CT return RAN_ConnHdlr;
644
645type function RanapUnitdataCallback(RANAP_PDU ranap)
646runs on RAN_Emulation_CT return template RANAP_PDU;
647
648private function CommonRanapUnitdataCallback(RANAP_PDU ranap)
649runs on RAN_Emulation_CT return template RANAP_PDU {
650 if (match(ranap, tr_RANAP_Paging(?, ?))) {
651 var RAN_ConnHdlr client := null;
652 /* extract IMSI and (if present) TMSI */
653 var IMSI imsi := ranap.initiatingMessage.value_.paging.protocolIEs[1].value_.permanentNAS_UE_ID.iMSI;
654 var template OCT4 tmsi := omit;
655 if (lengthof(ranap.initiatingMessage.value_.paging.protocolIEs) > 2 and
656 ranap.initiatingMessage.value_.paging.protocolIEs[2].id == id_TemporaryUE_ID) {
657 var TemporaryUE_ID ue_id;
658 ue_id := ranap.initiatingMessage.value_.paging.protocolIEs[2].value_.temporaryUE_ID;
659 if (ischosen(ue_id.tMSI)) {
660 tmsi := ue_id.tMSI;
661 } else {
662 tmsi := ue_id.p_TMSI;
663 }
664 }
665 client := f_imsi_table_find(oct2hex(imsi), tmsi);
Harald Welte03d4e2b2019-05-10 00:42:33 +0200666 if (client != null) {
Harald Welte5b027622019-04-14 23:40:17 +0200667 log("CommonRanapUnitdataCallback: IMSI/TMSI found in table, dispatching to ",
668 client);
669 CLIENT.send(ranap) to client;
670 return omit;
671 }
672 log("CommonRanapUnitdataCallback: IMSI/TMSI not found in table");
673 } else {
674 log("CommonRanapUnitdataCallback: Not a paging message");
675 }
676
677 /* ELSE: handle in user callback */
678 return g_ran_ops.ranap_unitdata_cb.apply(ranap);
679}
680
681private function f_ranap_l3_is_rr(RANAP_PDU ranap) return boolean {
682 var template (omit) SAPI sapi;
683 var template octetstring l3 := f_ranap_extract_l3(ranap);
684 return f_L3_is_rr(l3);
685}
686
687function f_ranap_reset(SCCP_PAR_Address peer, SCCP_PAR_Address own) runs on RAN_Emulation_CT {
688 timer T := 5.0;
689 var CN_DomainIndicator dom;
690 if (g_ran_ops.ps_domain) {
691 dom := ps_domain;
692 } else {
693 dom := cs_domain;
694 }
695
696 RANAP.send(ts_RANAP_UNITDATA_req(peer, own, ts_RANAP_Reset(ts_RanapCause_om_intervention, dom)));
697 T.start;
698 alt {
699 [] RANAP.receive(tr_RANAP_UNITDATA_ind(own, peer, tr_RANAP_ResetAck)) {
Neels Hofmeyr4f5d7be2020-10-16 16:28:16 +0200700 log("RANAP: Received RESET-ACK in response to RESET, we're ready to go!");
Harald Welte5b027622019-04-14 23:40:17 +0200701 }
702 [] as_reset_ack();
703 [] RANAP.receive { repeat };
704 [] T.timeout {
Neels Hofmeyr4f5d7be2020-10-16 16:28:16 +0200705 setverdict(fail, "RANAP: Timeout waiting for RESET-ACK after sending RESET");
Harald Welte5b027622019-04-14 23:40:17 +0200706 mtc.stop;
707 }
708 }
709}
710#endif
Harald Welte365f4ed2017-11-23 00:00:43 +0100711
Harald Welte2fce7882019-04-15 11:48:05 +0200712
713type enumerated RanProtocol {
Harald Welte5b027622019-04-14 23:40:17 +0200714 RAN_PROTOCOL_BSSAP,
715 RAN_PROTOCOL_RANAP
Harald Welte2fce7882019-04-15 11:48:05 +0200716}
717
718type record RanOps {
719#ifdef RAN_EMULATION_BSSAP
720 BssmapCreateCallback create_cb optional,
721 BssmapUnitdataCallback unitdata_cb optional,
722#endif
Harald Welte5b027622019-04-14 23:40:17 +0200723#ifdef RAN_EMULATION_RANAP
724 RanapCreateCallback ranap_create_cb optional,
725 RanapUnitdataCallback ranap_unitdata_cb optional,
726 boolean ps_domain,
727#endif
Harald Welte2fce7882019-04-15 11:48:05 +0200728 boolean decode_dtap,
729 boolean role_ms,
730 RanProtocol protocol,
Pau Espin Pedrolc6b78ff2019-06-06 15:58:17 +0200731 RAN_Transport transport,
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200732 boolean use_osmux,
Eric Wild49888a62022-03-30 03:16:11 +0200733 integer bssap_reset_retries,
Harald Welte2fce7882019-04-15 11:48:05 +0200734 /* needed for performing BSSMAP RESET */
735 SCCP_PAR_Address sccp_addr_local optional,
736 SCCP_PAR_Address sccp_addr_peer optional
737}
738
739template BIT4 t_ML3_DISC_CC_MM_SS := ('0011'B, '0101'B, '1011'B);
740
Harald Weltea803b722020-08-21 15:42:26 +0200741function f_L3_is_rr(template octetstring l3) return boolean {
Harald Welte2fce7882019-04-15 11:48:05 +0200742 if (not isvalue(l3)) {
743 return false;
Harald Weltea4ca4462018-02-09 00:17:14 +0100744 }
Harald Welte2fce7882019-04-15 11:48:05 +0200745 var octetstring l3v := valueof(l3);
746 if (lengthof(l3v) < 1) {
747 return false;
748 }
749 /* lower 4 bits of first octet are protocol discriminator */
750 if ((oct2bit(l3v[0]) and4b '00001111'B) == '00000110'B) {
751 return true;
752 }
753 return false;
754}
Harald Weltea4ca4462018-02-09 00:17:14 +0100755
Neels Hofmeyr0ac63152019-05-07 01:20:17 +0200756function 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 +0200757 var uint2_t seq_nr;
Neels Hofmeyr0ac63152019-05-07 01:20:17 +0200758 if (n_sd_idx == 0) {
759 seq_nr := n_sd[0];
760 n_sd[0] := (n_sd[0] + 1) mod 4;
761 } else if (n_sd_idx >= 1 and n_sd_idx <= 3) {
762 seq_nr := n_sd[n_sd_idx];
763 n_sd[n_sd_idx] := (n_sd[n_sd_idx] + 1) mod 2;
Harald Welte2fce7882019-04-15 11:48:05 +0200764 } else {
765 /* no sequence number to patch */
Neels Hofmeyr0ac63152019-05-07 01:20:17 +0200766 seq_nr := 0;
Harald Welte2fce7882019-04-15 11:48:05 +0200767 }
Neels Hofmeyr0ac63152019-05-07 01:20:17 +0200768 return seq_nr;
769}
770
771/* patch N(SD) into enc_l3, according to 24.007 11.2.3.2 */
772function f_ML3_patch_seq_nr(in uint2_t seq_nr, inout octetstring enc_l3) {
Harald Welte2fce7882019-04-15 11:48:05 +0200773 log("patching N(SD)=", seq_nr, " into dtap ", enc_l3);
774 enc_l3[1] := (enc_l3[1] and4b '3f'O) or4b bit2oct(int2bit(seq_nr, 8) << 6);
775 log("patched enc_l3: ", enc_l3);
776}
777
Neels Hofmeyr0ac63152019-05-07 01:20:17 +0200778function f_ML3_n_sd_idx(in PDU_ML3_MS_NW dtap) return integer {
779 var uint2_t seq_nr;
780 if (ischosen(dtap.msgs.cc) or ischosen(dtap.msgs.mm) or ischosen(dtap.msgs.ss)) {
781 return 0;
782 } else if (ischosen(dtap.msgs.gcc)) {
783 return 1;
784 } else if (ischosen(dtap.msgs.bcc)) {
785 return 2;
786 } else if (ischosen(dtap.msgs.loc)) {
787 return 3;
788 }
789 /* no sequence number to patch */
790 return -1;
791}
792
793/* patch N(SD) into enc_l3, according to 24.007 11.2.3.2 */
Harald Weltea803b722020-08-21 15:42:26 +0200794private 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 +0200795 var integer n_sd_idx := f_ML3_n_sd_idx(dtap);
796 if (n_sd_idx < 0) {
797 return;
798 }
799 var uint2_t seq_nr := f_next_n_sd(cd.n_sd, n_sd_idx);
800 f_ML3_patch_seq_nr(seq_nr, enc_l3);
801}
802
Pau Espin Pedrol95549182019-06-06 16:17:30 +0200803private altstep as_reset_ack(boolean append_osmux_support := false) runs on RAN_Emulation_CT {
Harald Welte2fce7882019-04-15 11:48:05 +0200804#ifdef RAN_EMULATION_BSSAP
805 var BSSAP_N_UNITDATA_ind ud_ind;
806#endif
Harald Welte5b027622019-04-14 23:40:17 +0200807#ifdef RAN_EMULATION_RANAP
808 var RANAP_N_UNITDATA_ind rud_ind;
809#endif
Harald Welte2fce7882019-04-15 11:48:05 +0200810#ifdef RAN_EMULATION_BSSAP
Pau Espin Pedrol95549182019-06-06 16:17:30 +0200811 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(?, ?, tr_BSSMAP_Reset(append_osmux_support))) -> value ud_ind {
Neels Hofmeyr4f5d7be2020-10-16 16:28:16 +0200812 log("BSSMAP: Responding to inbound RESET with RESET-ACK");
Harald Welte2fce7882019-04-15 11:48:05 +0200813 BSSAP.send(ts_BSSAP_UNITDATA_req(ud_ind.callingAddress, ud_ind.calledAddress,
Pau Espin Pedrol95549182019-06-06 16:17:30 +0200814 ts_BSSMAP_ResetAck(append_osmux_support)));
Harald Welte2fce7882019-04-15 11:48:05 +0200815 repeat;
816 }
817#endif
Harald Welte5b027622019-04-14 23:40:17 +0200818#ifdef RAN_EMULATION_RANAP
819 [] RANAP.receive(tr_RANAP_UNITDATA_ind(?, ?, tr_RANAP_Reset)) -> value rud_ind {
Neels Hofmeyr4f5d7be2020-10-16 16:28:16 +0200820 log("RANAP: Responding to inbound IuRESET with IuRESET-ACK");
Harald Welte5b027622019-04-14 23:40:17 +0200821 var CN_DomainIndicator dom;
822 dom := rud_ind.userData.initiatingMessage.value_.Reset.protocolIEs[1].value_.cN_DomainIndicator;
823 RANAP.send(ts_RANAP_UNITDATA_req(rud_ind.callingAddress, rud_ind.calledAddress,
824 ts_RANAP_ResetAck(dom)));
825 }
826#endif
Harald Welte2fce7882019-04-15 11:48:05 +0200827}
828
829
830private altstep as_main_bssap() runs on RAN_Emulation_CT {
831#ifdef RAN_EMULATION_BSSAP
Harald Welte004f5fb2017-12-16 17:54:40 +0100832 var BSSAP_N_UNITDATA_ind ud_ind;
833 var BSSAP_N_CONNECT_ind conn_ind;
834 var BSSAP_N_CONNECT_cfm conn_cfm;
835 var BSSAP_N_DATA_ind data_ind;
836 var BSSAP_N_DISCONNECT_ind disc_ind;
Harald Welteb3414b22017-11-23 18:22:10 +0100837 var BSSAP_Conn_Req creq;
Harald Welte365f4ed2017-11-23 00:00:43 +0100838 var PDU_BSSAP bssap;
Neels Hofmeyra8264612020-06-08 20:40:22 +0200839 var BSSAP_N_UNITDATA_req bssap_ud;
Harald Welte2fce7882019-04-15 11:48:05 +0200840 var RAN_ConnHdlr vc_conn;
Neels Hofmeyr0ac63152019-05-07 01:20:17 +0200841 var integer targetPointCode;
842 var N_Sd_Array last_n_sd;
Harald Welte365f4ed2017-11-23 00:00:43 +0100843
Harald Welte365f4ed2017-11-23 00:00:43 +0100844 /* SCCP -> Client: UNIT-DATA (connectionless SCCP) from a BSC */
Harald Welte004f5fb2017-12-16 17:54:40 +0100845 [] BSSAP.receive(BSSAP_N_UNITDATA_ind:?) -> value ud_ind {
Harald Welte365f4ed2017-11-23 00:00:43 +0100846 /* Connectionless Procedures like RESET */
847 var template PDU_BSSAP resp;
Harald Welte17d21152018-01-27 00:47:11 +0100848 resp := CommonBssmapUnitdataCallback(ud_ind.userData);
Harald Welte365f4ed2017-11-23 00:00:43 +0100849 if (isvalue(resp)) {
Harald Welte004f5fb2017-12-16 17:54:40 +0100850 BSSAP.send(ts_BSSAP_UNITDATA_req(ud_ind.callingAddress,
851 ud_ind.calledAddress, resp));
Harald Welte365f4ed2017-11-23 00:00:43 +0100852 }
853 }
Harald Welte365f4ed2017-11-23 00:00:43 +0100854 /* SCCP -> Client: new connection from BSC */
Harald Welte004f5fb2017-12-16 17:54:40 +0100855 [] BSSAP.receive(BSSAP_N_CONNECT_ind:?) -> value conn_ind {
Harald Welte2fce7882019-04-15 11:48:05 +0200856 vc_conn := g_ran_ops.create_cb.apply(conn_ind, g_ran_id);
Harald Welte365f4ed2017-11-23 00:00:43 +0100857 /* store mapping between client components and SCCP connectionId */
858 f_conn_table_add(vc_conn, conn_ind.connectionId);
859 /* handle user payload */
860 f_handle_userData(vc_conn, conn_ind.userData);
861 /* confirm connection establishment */
Harald Welte004f5fb2017-12-16 17:54:40 +0100862 BSSAP.send(ts_BSSAP_CONNECT_res(conn_ind.connectionId, omit));
Harald Welte365f4ed2017-11-23 00:00:43 +0100863 }
Harald Welte365f4ed2017-11-23 00:00:43 +0100864 /* SCCP -> Client: connection-oriented data in existing connection */
Harald Welte004f5fb2017-12-16 17:54:40 +0100865 [] BSSAP.receive(BSSAP_N_DATA_ind:?) -> value data_ind {
Harald Welte365f4ed2017-11-23 00:00:43 +0100866 vc_conn := f_comp_by_conn_id(data_ind.connectionId);
Harald Welte5cc4aa22017-11-23 18:51:28 +0100867 if (ispresent(data_ind.userData)) {
868 f_handle_userData(vc_conn, data_ind.userData);
869 }
Harald Welte365f4ed2017-11-23 00:00:43 +0100870 }
Harald Welte365f4ed2017-11-23 00:00:43 +0100871 /* SCCP -> Client: disconnect of an existing connection */
Harald Welte004f5fb2017-12-16 17:54:40 +0100872 [] BSSAP.receive(BSSAP_N_DISCONNECT_ind:?) -> value disc_ind {
Harald Welte365f4ed2017-11-23 00:00:43 +0100873 vc_conn := f_comp_by_conn_id(disc_ind.connectionId);
Harald Welte5cc4aa22017-11-23 18:51:28 +0100874 if (ispresent(disc_ind.userData)) {
875 f_handle_userData(vc_conn, disc_ind.userData);
876 }
Harald Welte365f4ed2017-11-23 00:00:43 +0100877 /* notify client about termination */
Harald Welte6811d102019-04-14 22:23:14 +0200878 var RAN_Conn_Prim prim := MSC_CONN_PRIM_DISC_IND;
Harald Welte365f4ed2017-11-23 00:00:43 +0100879 CLIENT.send(prim) to vc_conn;
880 f_conn_table_del(disc_ind.connectionId);
881 /* TOOD: return confirm to other side? */
882 }
Harald Welteb3414b22017-11-23 18:22:10 +0100883 /* SCCP -> Client: connection confirm for outbound connection */
Harald Welte004f5fb2017-12-16 17:54:40 +0100884 [] BSSAP.receive(BSSAP_N_CONNECT_cfm:?) -> value conn_cfm {
Harald Welte71b69332018-01-21 20:43:53 +0100885 vc_conn := f_comp_by_conn_id(conn_cfm.connectionId);
Harald Welte6811d102019-04-14 22:23:14 +0200886 var RAN_Conn_Prim prim := MSC_CONN_PRIM_CONF_IND;
Harald Welte71b69332018-01-21 20:43:53 +0100887 CLIENT.send(prim) to vc_conn;
Harald Welteb3414b22017-11-23 18:22:10 +0100888 /* handle user payload */
Harald Welte5cc4aa22017-11-23 18:51:28 +0100889 if (ispresent(conn_cfm.userData)) {
890 f_handle_userData(vc_conn, conn_cfm.userData);
891 }
Harald Welteb3414b22017-11-23 18:22:10 +0100892 }
Harald Welte2fce7882019-04-15 11:48:05 +0200893 [] CLIENT.receive(PDU_BSSAP:?) -> value bssap sender vc_conn {
894 var integer conn_id := f_conn_id_by_comp(vc_conn);
895 /* send it to dispatcher */
896 BSSAP.send(ts_BSSAP_DATA_req(conn_id, bssap));
897 }
Harald Welteb3414b22017-11-23 18:22:10 +0100898
Neels Hofmeyra8264612020-06-08 20:40:22 +0200899 [] CLIENT.receive(BSSAP_N_UNITDATA_req:?) -> value bssap_ud sender vc_conn {
900 BSSAP.send(bssap_ud);
901 }
902
Harald Welte365f4ed2017-11-23 00:00:43 +0100903 /* Disconnect request client -> SCCP */
Harald Welte6811d102019-04-14 22:23:14 +0200904 [] CLIENT.receive(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_REQ) -> sender vc_conn {
Harald Welte365f4ed2017-11-23 00:00:43 +0100905 var integer conn_id := f_conn_id_by_comp(vc_conn);
Harald Welte004f5fb2017-12-16 17:54:40 +0100906 BSSAP.send(ts_BSSAP_DISC_req(conn_id, 0));
Harald Welte365f4ed2017-11-23 00:00:43 +0100907 f_conn_table_del(conn_id);
908 }
909
910 /* BSSAP from client -> SCCP */
Harald Welteb3414b22017-11-23 18:22:10 +0100911 [] CLIENT.receive(BSSAP_Conn_Req:?) -> value creq sender vc_conn {
912 var integer conn_id;
Harald Welte004f5fb2017-12-16 17:54:40 +0100913 /* send to dispatcher */
Harald Welteb3414b22017-11-23 18:22:10 +0100914
915 if (f_comp_known(vc_conn) == false) {
916 /* unknown client, create new connection */
917 conn_id := f_gen_conn_id();
918
919 /* store mapping between client components and SCCP connectionId */
920 f_conn_table_add(vc_conn, conn_id);
921
Harald Welte004f5fb2017-12-16 17:54:40 +0100922 BSSAP.send(ts_BSSAP_CONNECT_req(creq.addr_peer, creq.addr_own, conn_id,
923 creq.bssap));
Harald Welteb3414b22017-11-23 18:22:10 +0100924 } else {
925 /* known client, send via existing connection */
926 conn_id := f_conn_id_by_comp(vc_conn);
Harald Welte004f5fb2017-12-16 17:54:40 +0100927 BSSAP.send(ts_BSSAP_DATA_req(conn_id, creq.bssap));
Harald Welteb3414b22017-11-23 18:22:10 +0100928 }
929
Harald Welte49518bf2018-02-10 11:39:19 +0100930 /* InitialL3 contains RR (PAG RESP) or MM (CM SRV REQ), we must increment
931 * counter only on MM/CC/SS, but not on RR */
Harald Welte6811d102019-04-14 22:23:14 +0200932 if (g_ran_ops.role_ms and not f_bssap_l3_is_rr(creq.bssap)) {
Harald Welte9dadc522018-02-06 13:56:04 +0100933 /* we have just sent the first MM message, increment the counter */
934 var integer idx := f_idx_by_comp(vc_conn);
935 ConnectionTable[idx].n_sd[0] := 1;
936 log("patch: N(SD) for ConnIdx ", idx, " set to 1");
937 }
Neels Hofmeyr0ac63152019-05-07 01:20:17 +0200938 }
Harald Welte9dadc522018-02-06 13:56:04 +0100939
Neels Hofmeyr0ac63152019-05-07 01:20:17 +0200940 [] PROC.getcall(RAN_last_n_sd:{?,-}) -> param(vc_conn) {
941 var integer idx := f_idx_by_comp(vc_conn);
942 last_n_sd := ConnectionTable[idx].n_sd;
943 PROC.reply(RAN_last_n_sd:{vc_conn, last_n_sd}) to vc_conn;
944 }
945
946 [] PROC.getcall(RAN_continue_after_n_sd:{?,?}) -> param(last_n_sd, vc_conn) {
947 var integer idx := f_idx_by_comp(vc_conn);
948 ConnectionTable[idx].n_sd := last_n_sd;
949 PROC.reply(RAN_continue_after_n_sd:{last_n_sd, vc_conn}) to vc_conn;
Harald Welteb3414b22017-11-23 18:22:10 +0100950 }
Harald Welte2fce7882019-04-15 11:48:05 +0200951#else
Harald Welte5b027622019-04-14 23:40:17 +0200952 [false] CLIENT.receive {}
953#endif
954}
955
956private altstep as_main_ranap() runs on RAN_Emulation_CT {
957#ifdef RAN_EMULATION_RANAP
958 var RANAP_N_UNITDATA_ind rud_ind;
959 var RANAP_N_CONNECT_ind rconn_ind;
960 var RANAP_N_CONNECT_cfm rconn_cfm;
961 var RANAP_N_DATA_ind rdata_ind;
962 var RANAP_N_DISCONNECT_ind rdisc_ind;
963 var RANAP_Conn_Req creq;
964 var RANAP_PDU ranap;
965 var RAN_ConnHdlr vc_conn;
Harald Welte717c7302019-04-23 20:31:55 +0200966 var PDU_DTAP_PS_MO ps_mo;
967 var PDU_DTAP_PS_MT ps_mt;
Harald Welte5b027622019-04-14 23:40:17 +0200968
969 /* SCCP -> Client: UNIT-DATA (connectionless SCCP) from a BSC */
970 [] RANAP.receive(RANAP_N_UNITDATA_ind:?) -> value rud_ind {
971 /* Connectionless Procedures like RESET */
972 var template RANAP_PDU resp;
973 resp := CommonRanapUnitdataCallback(rud_ind.userData);
974 if (isvalue(resp)) {
975 RANAP.send(ts_RANAP_UNITDATA_req(rud_ind.callingAddress,
976 rud_ind.calledAddress, resp));
977 }
978 }
979 /* SCCP -> Client: new connection from BSC */
980 [] RANAP.receive(RANAP_N_CONNECT_ind:?) -> value rconn_ind {
981 vc_conn := g_ran_ops.ranap_create_cb.apply(rconn_ind, g_ran_id);
982 /* store mapping between client components and SCCP connectionId */
983 f_conn_table_add(vc_conn, rconn_ind.connectionId);
984 /* handle user payload */
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +0200985 if (ispresent(rconn_ind.userData)) {
986 f_handle_userData_RANAP(vc_conn, rconn_ind.userData);
987 } else {
988 /* Notify client that we received an SCCP CR without user data */
989 CLIENT.send(ts_RANAP_Conn_Req(rconn_ind.callingAddress, rconn_ind.calledAddress, omit));
990 }
Harald Welte5b027622019-04-14 23:40:17 +0200991 /* confirm connection establishment */
992 RANAP.send(ts_RANAP_CONNECT_res(rconn_ind.connectionId, omit));
993 }
994 /* SCCP -> Client: connection-oriented data in existing connection */
995 [] RANAP.receive(RANAP_N_DATA_ind:?) -> value rdata_ind {
996 vc_conn := f_comp_by_conn_id(rdata_ind.connectionId);
997 if (ispresent(rdata_ind.userData)) {
998 f_handle_userData_RANAP(vc_conn, rdata_ind.userData);
999 }
1000 }
1001 /* SCCP -> Client: disconnect of an existing connection */
1002 [] RANAP.receive(RANAP_N_DISCONNECT_ind:?) -> value rdisc_ind {
1003 vc_conn := f_comp_by_conn_id(rdisc_ind.connectionId);
1004 if (ispresent(rdisc_ind.userData)) {
1005 f_handle_userData_RANAP(vc_conn, rdisc_ind.userData);
1006 }
1007 /* notify client about termination */
1008 var RAN_Conn_Prim prim := MSC_CONN_PRIM_DISC_IND;
1009 CLIENT.send(prim) to vc_conn;
1010 f_conn_table_del(rdisc_ind.connectionId);
1011 /* TOOD: return confirm to other side? */
1012 }
1013 /* SCCP -> Client: connection confirm for outbound connection */
1014 [] RANAP.receive(RANAP_N_CONNECT_cfm:?) -> value rconn_cfm {
1015 vc_conn := f_comp_by_conn_id(rconn_cfm.connectionId);
1016 var RAN_Conn_Prim prim := MSC_CONN_PRIM_CONF_IND;
1017 CLIENT.send(prim) to vc_conn;
1018 /* handle user payload */
1019 if (ispresent(rconn_cfm.userData)) {
1020 f_handle_userData_RANAP(vc_conn, rconn_cfm.userData);
1021 }
1022 }
1023
1024 [] CLIENT.receive(RANAP_PDU:?) -> value ranap sender vc_conn {
1025 var integer conn_id := f_conn_id_by_comp(vc_conn);
1026 /* send it to dispatcher */
1027 RANAP.send(ts_RANAP_DATA_req(conn_id, ranap));
1028 }
1029
1030 /* Disconnect request client -> SCCP */
1031 [] CLIENT.receive(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_REQ) -> sender vc_conn {
1032 var integer conn_id := f_conn_id_by_comp(vc_conn);
1033 RANAP.send(ts_RANAP_DISC_req(conn_id, 0));
1034 f_conn_table_del(conn_id);
1035 }
1036
1037 /* BSSAP from client -> SCCP */
1038 [] CLIENT.receive(RANAP_Conn_Req:?) -> value creq sender vc_conn {
1039 var integer conn_id;
1040 /* send to dispatcher */
1041
1042 if (f_comp_known(vc_conn) == false) {
1043 /* unknown client, create new connection */
1044 conn_id := f_gen_conn_id();
1045
1046 /* store mapping between client components and SCCP connectionId */
1047 f_conn_table_add(vc_conn, conn_id);
1048
1049 RANAP.send(ts_RANAP_CONNECT_req(creq.addr_peer, creq.addr_own, conn_id,
1050 creq.ranap));
1051 } else {
1052 /* known client, send via existing connection */
1053 conn_id := f_conn_id_by_comp(vc_conn);
1054 RANAP.send(ts_RANAP_DATA_req(conn_id, creq.ranap));
1055 }
1056
1057 /* InitialL3 contains RR (PAG RESP) or MM (CM SRV REQ), we must increment
1058 * counter only on MM/CC/SS, but not on RR */
1059 if (g_ran_ops.role_ms and not f_ranap_l3_is_rr(creq.ranap)) {
1060 /* we have just sent the first MM message, increment the counter */
1061 var integer idx := f_idx_by_comp(vc_conn);
1062 ConnectionTable[idx].n_sd[0] := 1;
1063 log("patch: N(SD) for ConnIdx ", idx, " set to 1");
1064 }
1065 }
1066
Harald Welte717c7302019-04-23 20:31:55 +02001067 [g_ran_ops.role_ms] CLIENT.receive(PDU_DTAP_PS_MO:?) -> value ps_mo sender vc_conn {
1068 var integer idx := f_idx_by_comp(vc_conn);
1069 /* convert from decoded DTAP to encoded DTAP */
1070 var octetstring l3_enc := enc_PDU_L3_MS_SGSN(ps_mo.dtap);
1071 /* patch correct L3 send sequence number N(SD) into l3_enc */
1072 if (ps_mo.skip_seq_patching == false) {
1073 //f_ML3_patch_seq(ConnectionTable[idx], ps_mo.dtap, l3_enc);
1074 }
1075 f_xmit_raw_l3(ConnectionTable[idx].sccp_conn_id, ps_mo.dlci, l3_enc);
1076 }
1077
1078 [not g_ran_ops.role_ms] CLIENT.receive(PDU_DTAP_PS_MT:?) -> value ps_mt sender vc_conn {
1079 var integer idx := f_idx_by_comp(vc_conn);
1080 /* convert from decoded DTAP to encoded DTAP */
1081 var octetstring l3_enc := enc_PDU_L3_SGSN_MS(ps_mt.dtap);
1082 f_xmit_raw_l3(ConnectionTable[idx].sccp_conn_id, ps_mt.dlci, l3_enc);
1083 }
1084
1085
Harald Welte5b027622019-04-14 23:40:17 +02001086#else
1087 [false] CLIENT.receive {}
Harald Welte2fce7882019-04-15 11:48:05 +02001088#endif
1089}
Harald Welteb3414b22017-11-23 18:22:10 +01001090
Harald Welte2fce7882019-04-15 11:48:05 +02001091private altstep as_main_mgcp() runs on RAN_Emulation_CT {
1092#ifdef RAN_EMULATION_MGCP
1093 var MgcpCommand mgcp_req;
1094 var MgcpResponse mgcp_resp;
1095 var RAN_ConnHdlr vc_conn;
Harald Welte0b476062018-01-21 19:07:32 +01001096
Harald Weltec82eef42017-11-24 20:40:12 +01001097 /* Handling of MGCP in IPA SCCPLite case. This predates 3GPP AoIP
1098 * and uses a MGCP session in parallel to BSSAP. BSSAP uses CIC
1099 * as usual, and MGCP uses "CIC@mgw" endpoint naming, where CIC
1100 * is printed as hex string, e.g. a@mgw for CIC 10 */
1101
1102 /* CLIENT -> MGCP */
1103 [] CLIENT.receive(MgcpCommand:?) -> value mgcp_req sender vc_conn {
1104 /* MGCP request from Handler (we're MSC) */
1105 /* store the transaction ID we've seen */
1106 f_comp_store_mgcp_tid(vc_conn, mgcp_req.line.trans_id);
1107 /* simply forward any MGCP from the client to the port */
1108 MGCP.send(mgcp_req);
1109 }
1110 [] CLIENT.receive(MgcpResponse:?) -> value mgcp_resp sender vc_conn {
1111 /* MGCP response from Handler (we're BSC/MGW) */
1112 /* simply forward any MGCP from the client to the port */
1113 MGCP.send(mgcp_resp);
1114 }
1115
1116 /* MGCP -> CLIENT */
1117 [] MGCP.receive(MgcpCommand:?) -> value mgcp_req {
1118 /* MGCP request from network side (we're BSC/MGW) */
1119 /* Extract CIC from local part of endpoint name */
1120 var integer cic := f_mgcp_ep_extract_cic(mgcp_req.line.ep);
Harald Weltee98bb2e2017-11-29 12:09:48 +01001121 if (match(mgcp_req, tr_RSIP) and f_cic_known(cic) == false) {
1122 /* ignore RSIP for unknown CIC */
1123 } else {
1124 /* Resolve the vc_conn by the CIC */
1125 vc_conn := f_comp_by_cic(cic);
1126 CLIENT.send(mgcp_req) to vc_conn;
1127 }
Harald Weltec82eef42017-11-24 20:40:12 +01001128 }
1129 [] MGCP.receive(MgcpResponse:?) -> value mgcp_resp {
1130 /* MGCP response from network side (we're MSC) */
1131 /* Resolve the vc_conn by the transaction ID */
1132 vc_conn := f_comp_by_mgcp_tid(mgcp_resp.line.trans_id);
1133 CLIENT.send(mgcp_resp) to vc_conn;
1134 }
Harald Welte2fce7882019-04-15 11:48:05 +02001135#else
1136 [false] CLIENT.receive {}
1137#endif
1138}
Harald Weltec82eef42017-11-24 20:40:12 +01001139
Pau Espin Pedrol4d0e5e52019-06-07 19:38:28 +02001140private altstep as_main_ctrl() runs on RAN_Emulation_CT {
1141#ifdef RAN_EMULATION_CTRL
1142 var CtrlMessage ctrl;
1143 var RAN_ConnHdlr vc_conn;
1144 var ASP_IPA_Event evt;
1145
1146 /* Handling of CTRL in IPA SCCPLite case. This predates 3GPP AoIP
1147 * and uses a CTRL session in parallel to BSSAP. */
1148
1149 /* CTRL_CLIENT -> CTRL */
1150 [] CTRL_CLIENT.receive(CtrlMessage:?) -> value ctrl sender vc_conn {
1151 CTRL.send(ctrl);
1152 }
1153
1154 /* CTRL -> CTRL_CLIENT */
1155 [] CTRL.receive(CtrlMessage:?) -> value ctrl {
1156 CTRL_CLIENT.send(ctrl);
1157 }
1158
Vadim Yanitskiya2afacc2020-05-18 21:16:19 +07001159 [] CTRL.receive(tr_ASP_IPA_EV(ASP_IPA_EVENT_UP)) -> value evt {
Pau Espin Pedrol4d0e5e52019-06-07 19:38:28 +02001160 CTRL_CLIENT.send(evt);
1161 }
Vadim Yanitskiya2afacc2020-05-18 21:16:19 +07001162 [] CTRL.receive(tr_ASP_IPA_EV(ASP_IPA_EVENT_DOWN)) {
Pau Espin Pedrol4d0e5e52019-06-07 19:38:28 +02001163 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Lost IPA connection!");
1164 }
Vadim Yanitskiya2afacc2020-05-18 21:16:19 +07001165 [] CTRL.receive(tr_ASP_IPA_EV(ASP_IPA_EVENT_ID_ACK)) {}
Pau Espin Pedrol4d0e5e52019-06-07 19:38:28 +02001166#else
1167 [false] CLIENT.receive {}
1168#endif
1169}
1170
Harald Welte2fce7882019-04-15 11:48:05 +02001171/* send a raw (encoded) L3 message over given SCCP connection */
1172private function f_xmit_raw_l3(integer sccp_conn_id, OCT1 dlci, octetstring l3_enc) runs on RAN_Emulation_CT
1173{
1174 select (g_ran_ops.protocol) {
1175#ifdef RAN_EMULATION_BSSAP
1176 case (RAN_PROTOCOL_BSSAP) {
1177 var PDU_BSSAP bssap;
1178 bssap := valueof(ts_BSSAP_DTAP(l3_enc, dlci));
1179 BSSAP.send(ts_BSSAP_DATA_req(sccp_conn_id, bssap));
1180 }
1181#endif
Harald Welte5b027622019-04-14 23:40:17 +02001182#ifdef RAN_EMULATION_RANAP
1183 case (RAN_PROTOCOL_RANAP) {
Vadim Yanitskiyf2c3fa92019-06-20 05:18:15 +07001184 var template (omit) RANAP_IEs.SAPI sapi := omit;
Harald Welte5b027622019-04-14 23:40:17 +02001185 var RANAP_PDU ranap;
Vadim Yanitskiyf2c3fa92019-06-20 05:18:15 +07001186
1187 /* Perform DLCI -> SAPI transformation (x & 0x07) */
1188 if (dlci and4b '07'O == '03'O) {
1189 sapi := sapi_3;
1190 }
1191
1192 ranap := valueof(ts_RANAP_DirectTransfer(l3_enc, sapi := sapi));
Harald Welte5b027622019-04-14 23:40:17 +02001193 RANAP.send(ts_RANAP_DATA_req(sccp_conn_id, ranap));
1194 }
1195#endif
Harald Welte2fce7882019-04-15 11:48:05 +02001196 }
1197}
1198
1199function main(RanOps ops, charstring id) runs on RAN_Emulation_CT {
1200
1201 g_ran_id := id;
1202 g_ran_ops := ops;
1203 f_conn_table_init();
1204 f_expect_table_init();
1205
1206 if (isvalue(ops.sccp_addr_peer) and isvalue(ops.sccp_addr_local)) {
1207 f_sleep(1.0); /* HACK to wait for M3UA/ASP to be ACTIVE */
Harald Welte5b027622019-04-14 23:40:17 +02001208 select (g_ran_ops.protocol) {
1209#ifdef RAN_EMULATION_BSSAP
1210 case (RAN_PROTOCOL_BSSAP) {
1211 f_bssap_reset(ops.sccp_addr_peer, ops.sccp_addr_local);
1212 }
1213#endif
1214#ifdef RAN_EMULATION_RANAP
1215 case (RAN_PROTOCOL_RANAP) {
1216 f_ranap_reset(ops.sccp_addr_peer, ops.sccp_addr_local);
1217 }
1218#endif
1219 }
Harald Welte2fce7882019-04-15 11:48:05 +02001220 }
1221
1222 while (true) {
1223 var RAN_ConnHdlr vc_conn;
1224 var PDU_DTAP_MO dtap_mo;
1225 var PDU_DTAP_MT dtap_mt;
1226 var RAN_ConnHdlr vc_hdlr;
1227 var octetstring l3_info;
1228 var hexstring imsi;
1229 var OCT4 tmsi;
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001230 var integer targetPointCode;
Harald Welte2fce7882019-04-15 11:48:05 +02001231
1232 alt {
1233 [g_ran_ops.protocol == RAN_PROTOCOL_BSSAP] as_main_bssap();
Harald Welte5b027622019-04-14 23:40:17 +02001234 [g_ran_ops.protocol == RAN_PROTOCOL_RANAP] as_main_ranap();
Harald Welte2fce7882019-04-15 11:48:05 +02001235
1236 [g_ran_ops.role_ms] CLIENT.receive(PDU_DTAP_MO:?) -> value dtap_mo sender vc_conn {
1237 var integer idx := f_idx_by_comp(vc_conn);
1238 /* convert from decoded DTAP to encoded DTAP */
1239 var octetstring l3_enc := enc_PDU_ML3_MS_NW(dtap_mo.dtap);
1240 /* patch correct L3 send sequence number N(SD) into l3_enc */
1241 if (dtap_mo.skip_seq_patching == false) {
1242 f_ML3_patch_seq(ConnectionTable[idx], dtap_mo.dtap, l3_enc);
1243 }
1244 f_xmit_raw_l3(ConnectionTable[idx].sccp_conn_id, dtap_mo.dlci, l3_enc);
1245 }
1246
1247 [not g_ran_ops.role_ms] CLIENT.receive(PDU_DTAP_MT:?) -> value dtap_mt sender vc_conn {
1248 var integer idx := f_idx_by_comp(vc_conn);
1249 /* convert from decoded DTAP to encoded DTAP */
1250 var octetstring l3_enc := enc_PDU_ML3_NW_MS(dtap_mt.dtap);
1251 f_xmit_raw_l3(ConnectionTable[idx].sccp_conn_id, dtap_mt.dlci, l3_enc);
1252 }
1253
1254 [] as_main_mgcp();
Pau Espin Pedrol4d0e5e52019-06-07 19:38:28 +02001255 [] as_main_ctrl();
Harald Welte624f9632017-12-16 19:26:04 +01001256
Harald Welte6811d102019-04-14 22:23:14 +02001257 [] PROC.getcall(RAN_register:{?,?}) -> param(l3_info, vc_hdlr) {
Harald Welte624f9632017-12-16 19:26:04 +01001258 f_create_expect(l3_info, vc_hdlr);
Harald Welte6811d102019-04-14 22:23:14 +02001259 PROC.reply(RAN_register:{l3_info, vc_hdlr}) to vc_hdlr;
Harald Welte624f9632017-12-16 19:26:04 +01001260 }
1261
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001262 [] PROC.getcall(RAN_register_handoverRequest:{?,?}) -> param(targetPointCode, vc_hdlr) {
1263 f_create_expect(omit, vc_hdlr, targetPointCode);
1264 PROC.reply(RAN_register_handoverRequest:{targetPointCode, vc_hdlr}) to vc_hdlr;
1265 }
1266
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +02001267 [] PROC.getcall(RAN_register_sccp_cr_without_payload:{?}) -> param(vc_hdlr) {
1268 f_create_expect(omit, vc_hdlr);
1269 PROC.reply(RAN_register_sccp_cr_without_payload:{vc_hdlr}) to vc_hdlr;
1270 }
1271
Harald Welte6811d102019-04-14 22:23:14 +02001272 [] PROC.getcall(RAN_register_imsi:{?,?,?}) -> param(imsi, tmsi, vc_hdlr) {
Harald Welte17d21152018-01-27 00:47:11 +01001273 f_create_imsi(imsi, tmsi, vc_hdlr);
Harald Welte6811d102019-04-14 22:23:14 +02001274 PROC.reply(RAN_register_imsi:{imsi, tmsi, vc_hdlr}) to vc_hdlr;
Harald Welte17d21152018-01-27 00:47:11 +01001275 }
Harald Welteee4d70c2022-05-16 21:29:19 +02001276 [] PROC.getcall(RAN_unregister_imsi:{?,?}) -> param(imsi, vc_hdlr) {
1277 f_destroy_imsi(imsi, vc_hdlr);
1278 PROC.reply(RAN_unregister_imsi:{imsi, vc_hdlr}) to vc_hdlr;
1279 }
Harald Welte17d21152018-01-27 00:47:11 +01001280
Harald Welte365f4ed2017-11-23 00:00:43 +01001281 }
1282 }
1283}
1284
Harald Welte2fce7882019-04-15 11:48:05 +02001285#ifdef RAN_EMULATION_MGCP
Harald Weltec82eef42017-11-24 20:40:12 +01001286private function f_mgcp_ep_extract_cic(charstring inp) return integer {
Harald Welte525a9c12017-11-24 23:40:41 +01001287 var charstring local_part := regexp(inp, "(*)@*", 0);
Harald Weltec82eef42017-11-24 20:40:12 +01001288 return hex2int(str2hex(local_part));
1289
1290}
Harald Welte2fce7882019-04-15 11:48:05 +02001291#endif
Harald Welte365f4ed2017-11-23 00:00:43 +01001292
Harald Welte624f9632017-12-16 19:26:04 +01001293/***********************************************************************
1294 * "Expect" Handling (mapping for expected incoming SCCP connections)
1295 ***********************************************************************/
1296
1297/* data about an expected future incoming connection */
1298type record ExpectData {
1299 /* L3 payload based on which we can match it */
1300 octetstring l3_payload optional,
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001301 integer handoverRequestPointCode optional,
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +02001302 boolean sccp_cr_without_payload,
Harald Welte624f9632017-12-16 19:26:04 +01001303 /* component reference for this connection */
Harald Welte6811d102019-04-14 22:23:14 +02001304 RAN_ConnHdlr vc_conn
Harald Welte624f9632017-12-16 19:26:04 +01001305}
1306
1307/* procedure based port to register for incoming connections */
Harald Welte6811d102019-04-14 22:23:14 +02001308signature RAN_register(in octetstring l3, in RAN_ConnHdlr hdlr);
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001309signature RAN_register_handoverRequest(in integer targetPointCode, in RAN_ConnHdlr hdlr);
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +02001310signature RAN_register_sccp_cr_without_payload(in RAN_ConnHdlr hdlr);
Harald Welte624f9632017-12-16 19:26:04 +01001311
Harald Welte17d21152018-01-27 00:47:11 +01001312/* procedure based port to register for incoming IMSI/TMSI */
Harald Welte6811d102019-04-14 22:23:14 +02001313signature RAN_register_imsi(in hexstring imsi, in OCT4 tmsi, in RAN_ConnHdlr hdlr);
Harald Welteee4d70c2022-05-16 21:29:19 +02001314signature RAN_unregister_imsi(in hexstring imsi, in RAN_ConnHdlr hdlr);
Harald Welte17d21152018-01-27 00:47:11 +01001315
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001316/* If DTAP happens across other channels (e.g. GSUP), provide manual advancing of the n_sd sequence number */
1317signature RAN_last_n_sd(in RAN_ConnHdlr hdlr, out N_Sd_Array last_n_sd);
1318
1319/* Update conn's n_sd sequence nr after the connection was taken over from elsewhere */
1320signature RAN_continue_after_n_sd(N_Sd_Array last_n_sd, in RAN_ConnHdlr hdlr);
1321
Harald Welte6811d102019-04-14 22:23:14 +02001322type port RAN_PROC_PT procedure {
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +02001323 inout RAN_register, RAN_register_imsi, RAN_unregister_imsi, RAN_register_handoverRequest,
1324 RAN_register_sccp_cr_without_payload, RAN_last_n_sd, RAN_continue_after_n_sd;
Harald Welte624f9632017-12-16 19:26:04 +01001325} with { extension "internal" };
1326
Harald Welte5b027622019-04-14 23:40:17 +02001327#ifdef RAN_EMULATION_BSSAP
Harald Welte624f9632017-12-16 19:26:04 +01001328/* CreateCallback that can be used as create_cb and will use the expectation table */
1329function ExpectedCreateCallback(BSSAP_N_CONNECT_ind conn_ind, charstring id)
Harald Welte6811d102019-04-14 22:23:14 +02001330runs on RAN_Emulation_CT return RAN_ConnHdlr {
1331 var RAN_ConnHdlr ret := null;
Harald Welte624f9632017-12-16 19:26:04 +01001332 var octetstring l3_info;
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001333 var boolean handoverRequest := false;
1334 var integer handoverRequestPointCode;
Harald Welte624f9632017-12-16 19:26:04 +01001335 var integer i;
1336
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001337 if (ischosen(conn_ind.userData.pdu.bssmap.completeLayer3Information)) {
1338 l3_info := conn_ind.userData.pdu.bssmap.completeLayer3Information.layer3Information.layer3info;
1339 log("ExpectedCreateCallback completeLayer3Information");
1340 } else if (ischosen(conn_ind.userData.pdu.bssmap.handoverRequest)) {
1341 handoverRequest := true;
1342 handoverRequestPointCode := bit2int(conn_ind.calledAddress.signPointCode);
1343 log("ExpectedCreateCallback handoverRequest ", handoverRequestPointCode);
1344 } else {
1345 setverdict(fail, "N-CONNECT.ind with L3 != COMPLETE L3 nor a Handover Request");
Daniel Willmanne4ff5372018-07-05 17:35:03 +02001346 mtc.stop;
Harald Welte624f9632017-12-16 19:26:04 +01001347 }
Harald Welte624f9632017-12-16 19:26:04 +01001348
1349 for (i := 0; i < sizeof(ExpectTable); i:= i+1) {
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001350 if (handoverRequest) {
1351 log("ExpectTable[", i, "].handoverRequestPointCode = ", ExpectTable[i].handoverRequestPointCode,
1352 " ==? ", handoverRequestPointCode);
1353 if (ExpectTable[i].handoverRequestPointCode == handoverRequestPointCode) {
1354 ret := ExpectTable[i].vc_conn;
1355 log("Found Expect[", i, "] for handoverRequest handled at ", ret);
1356 return ret;
1357 } else {
1358 continue;
1359 }
1360 }
Harald Welte624f9632017-12-16 19:26:04 +01001361 if (not ispresent(ExpectTable[i].l3_payload)) {
1362 continue;
1363 }
1364 if (l3_info == ExpectTable[i].l3_payload) {
1365 ret := ExpectTable[i].vc_conn;
1366 /* release this entry to be used again */
1367 ExpectTable[i].l3_payload := omit;
1368 ExpectTable[i].vc_conn := null;
1369 log("Found Expect[", i, "] for ", l3_info, " handled at ", ret);
1370 /* return the component reference */
1371 return ret;
1372 }
1373 }
1374 setverdict(fail, "Couldn't find Expect for incoming connection ", conn_ind);
Daniel Willmanne4ff5372018-07-05 17:35:03 +02001375 mtc.stop;
Harald Welte624f9632017-12-16 19:26:04 +01001376}
Harald Welte5b027622019-04-14 23:40:17 +02001377#endif
1378
1379#ifdef RAN_EMULATION_RANAP
1380/* CreateCallback that can be used as create_cb and will use the expectation table */
1381function RanapExpectedCreateCallback(RANAP_N_CONNECT_ind conn_ind, charstring id)
1382runs on RAN_Emulation_CT return RAN_ConnHdlr {
1383 var RAN_ConnHdlr ret := null;
1384 var template (omit) octetstring l3_info;
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +02001385 var boolean rx_sccp_cr_without_payload;
Harald Welte5b027622019-04-14 23:40:17 +02001386 var integer i;
1387
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +02001388 if (ispresent(conn_ind.userData)) {
1389 l3_info := f_ranap_extract_l3(conn_ind.userData);
1390 rx_sccp_cr_without_payload := false;
1391 if (istemplatekind(l3_info, "omit") and not rx_sccp_cr_without_payload) {
1392 setverdict(fail, "N-CONNECT.ind without NAS payload");
1393 mtc.stop;
1394 return ret;
1395 }
1396 } else {
1397 l3_info := omit;
1398 rx_sccp_cr_without_payload := true;
Harald Welte5b027622019-04-14 23:40:17 +02001399 }
1400
1401 for (i := 0; i < sizeof(ExpectTable); i:= i+1) {
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +02001402 if ((rx_sccp_cr_without_payload and ExpectTable[i].sccp_cr_without_payload)
1403 or (ispresent(ExpectTable[i].l3_payload) and valueof(l3_info) == ExpectTable[i].l3_payload)) {
Harald Welte5b027622019-04-14 23:40:17 +02001404 ret := ExpectTable[i].vc_conn;
1405 /* release this entry to be used again */
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +02001406 ExpectTable[i].sccp_cr_without_payload := false;
Harald Welte5b027622019-04-14 23:40:17 +02001407 ExpectTable[i].l3_payload := omit;
1408 ExpectTable[i].vc_conn := null;
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +02001409 log("Found Expect[", i, "] for l3=", l3_info, " handled at ", ret);
Harald Welte5b027622019-04-14 23:40:17 +02001410 /* return the component reference */
1411 return ret;
1412 }
1413 }
1414 setverdict(fail, "Couldn't find Expect for incoming connection ", conn_ind);
1415 mtc.stop;
1416 return ret;
1417}
1418#endif
Harald Welte624f9632017-12-16 19:26:04 +01001419
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001420private function f_create_expect(template octetstring l3, RAN_ConnHdlr hdlr,
1421 template integer handoverRequestPointCode := omit)
Harald Welte6811d102019-04-14 22:23:14 +02001422runs on RAN_Emulation_CT {
Harald Welte624f9632017-12-16 19:26:04 +01001423 var integer i;
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001424 log("f_create_expect(l3 := ", l3, ", handoverRequest := ", handoverRequestPointCode);
Harald Welte624f9632017-12-16 19:26:04 +01001425 for (i := 0; i < sizeof(ExpectTable); i := i+1) {
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001426 if (not ispresent(ExpectTable[i].l3_payload)
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +02001427 and not ExpectTable[i].sccp_cr_without_payload
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001428 and not ispresent(ExpectTable[i].handoverRequestPointCode)) {
1429 if (ispresent(l3)) {
1430 ExpectTable[i].l3_payload := valueof(l3);
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +02001431 } else {
1432 ExpectTable[i].sccp_cr_without_payload := true;
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001433 }
1434 if (ispresent(handoverRequestPointCode)) {
1435 ExpectTable[i].handoverRequestPointCode := valueof(handoverRequestPointCode);
1436 }
Harald Welte624f9632017-12-16 19:26:04 +01001437 ExpectTable[i].vc_conn := hdlr;
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001438 if (ispresent(handoverRequestPointCode)) {
1439 log("Created Expect[", i, "] for handoverRequest to be handled at ", hdlr);
1440 } else {
1441 log("Created Expect[", i, "] for ", l3, " to be handled at ", hdlr);
1442 }
Harald Welte624f9632017-12-16 19:26:04 +01001443 return;
1444 }
1445 }
Daniel Willmanne4ff5372018-07-05 17:35:03 +02001446 testcase.stop("No space left in ExpectTable");
Harald Welte624f9632017-12-16 19:26:04 +01001447}
1448
Harald Welte6811d102019-04-14 22:23:14 +02001449private function f_create_imsi(hexstring imsi, OCT4 tmsi, RAN_ConnHdlr hdlr)
1450runs on RAN_Emulation_CT {
Harald Welte17d21152018-01-27 00:47:11 +01001451 for (var integer i := 0; i < sizeof(ImsiTable); i := i+1) {
1452 if (not ispresent(ImsiTable[i].imsi)) {
1453 ImsiTable[i].imsi := imsi;
1454 ImsiTable[i].tmsi := tmsi;
1455 ImsiTable[i].comp_ref := hdlr;
1456 log("Created IMSI[", i, "] for ", imsi, tmsi, " to be handled at ", hdlr);
1457 return;
1458 }
1459 }
Daniel Willmanne4ff5372018-07-05 17:35:03 +02001460 testcase.stop("No space left in ImsiTable");
Harald Welte17d21152018-01-27 00:47:11 +01001461}
1462
Harald Welteee4d70c2022-05-16 21:29:19 +02001463private function f_destroy_imsi(hexstring imsi, RAN_ConnHdlr hdlr)
1464runs on RAN_Emulation_CT {
1465 for (var integer i := 0; i < sizeof(ImsiTable); i := i+1) {
1466 if (ImsiTable[i].imsi == imsi and ImsiTable[i].comp_ref == hdlr) {
1467 ImsiTable[i].comp_ref := null;
1468 ImsiTable[i].imsi := omit;
1469 ImsiTable[i].tmsi := 'FFFFFFFF'O;
1470 log("Removed IMSI[", i, "] for ", imsi, " to be handled at ", hdlr);
1471 return;
1472 }
1473 }
1474 testcase.stop("Unable to find to-be-destroyed IMSI in ImsiTable");
1475}
Harald Welte17d21152018-01-27 00:47:11 +01001476
Daniel Willmannd47106b2018-01-17 12:20:56 +01001477private function f_expect_table_init()
Harald Welte6811d102019-04-14 22:23:14 +02001478runs on RAN_Emulation_CT {
Daniel Willmannd47106b2018-01-17 12:20:56 +01001479 for (var integer i := 0; i < sizeof(ExpectTable); i := i+1) {
1480 ExpectTable[i].l3_payload := omit;
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001481 ExpectTable[i].handoverRequestPointCode := omit;
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +02001482 ExpectTable[i].sccp_cr_without_payload := false;
Daniel Willmannd47106b2018-01-17 12:20:56 +01001483 }
1484}
Harald Welte624f9632017-12-16 19:26:04 +01001485
Harald Welte17d21152018-01-27 00:47:11 +01001486/* helper function for clients to register their IMSI/TMSI */
Vadim Yanitskiyae747742020-01-10 00:23:10 +01001487function f_ran_register_imsi(hexstring imsi, template (omit) OCT4 tmsi_or_omit)
Harald Welte6811d102019-04-14 22:23:14 +02001488runs on RAN_ConnHdlr {
Vadim Yanitskiyae747742020-01-10 00:23:10 +01001489 var OCT4 tmsi;
1490
1491 /* Resolve omit to a special reserved value */
1492 if (istemplatekind(tmsi_or_omit, "omit")) {
1493 tmsi := 'FFFFFFFF'O;
1494 } else {
1495 tmsi := valueof(tmsi_or_omit);
1496 }
1497
Harald Welte6811d102019-04-14 22:23:14 +02001498 BSSAP_PROC.call(RAN_register_imsi:{imsi, tmsi, self}) {
1499 [] BSSAP_PROC.getreply(RAN_register_imsi:{?,?,?}) {};
Harald Welte17d21152018-01-27 00:47:11 +01001500 }
1501}
1502
Harald Welteee4d70c2022-05-16 21:29:19 +02001503/* helper function for clients to register their IMSI/TMSI */
1504function f_ran_unregister_imsi(hexstring imsi)
1505runs on RAN_ConnHdlr {
1506
1507 BSSAP_PROC.call(RAN_unregister_imsi:{imsi, self}) {
1508 [] BSSAP_PROC.getreply(RAN_unregister_imsi:{?,?}) {};
1509 }
1510}
1511
Harald Welte1e3bbbe2022-01-11 23:04:33 +01001512/* register an expect with the BSSMAP core */
1513function f_ran_register_exp(octetstring l3_enc) runs on RAN_ConnHdlr {
1514 BSSAP_PROC.call(RAN_register:{l3_enc, self}) {
1515 [] BSSAP_PROC.getreply(RAN_register:{?, ?}) {};
1516 }
1517}
1518
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +02001519function f_ran_register_sccp_cr_without_payload() runs on RAN_ConnHdlr {
1520 BSSAP_PROC.call(RAN_register_sccp_cr_without_payload:{self}) {
1521 [] BSSAP_PROC.getreply(RAN_register_sccp_cr_without_payload:{?}) {};
1522 }
1523}
1524
Harald Welte475a2c12019-05-02 19:05:48 +02001525#ifdef RAN_EMULATION_RANAP
1526/* expect a IuReleaseCommand; Confirm that; expect SCCP-level N-DISCONNET.ind */
1527altstep as_iu_release_compl_disc(float t := 5.0) runs on RAN_ConnHdlr {
1528 var RANAP_PDU ranap;
1529 [] BSSAP.receive(tr_RANAP_IuReleaseCommand(?)) {
1530 BSSAP.send(ts_RANAP_IuReleaseComplete);
1531 alt {
1532 [] BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_IND) {
1533 setverdict(pass);
1534 }
1535 [] BSSAP.receive {
1536 setverdict(fail, "Unexpected RANAP while waiting for SCCP Release ");
1537 mtc.stop;
1538 }
1539 }
1540 }
1541 [] BSSAP.receive(RANAP_PDU:?) -> value ranap{
1542 setverdict(fail, "Unexpected RANAP while waiting for IuReleaseCommand", ranap);
1543 mtc.stop;
1544 }
1545}
1546#endif
1547
Harald Welte17d21152018-01-27 00:47:11 +01001548
Harald Welte365f4ed2017-11-23 00:00:43 +01001549}