blob: 6a1f784546d26ee40a84a480a940a28048251e0d [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 */
Neels Hofmeyr79896c02023-06-23 03:45:40 +0200518 if (not ispresent(g_ran_ops.unitdata_cb)) {
519 return omit;
520 }
Harald Welte6811d102019-04-14 22:23:14 +0200521 return g_ran_ops.unitdata_cb.apply(bssap);
Harald Welte17d21152018-01-27 00:47:11 +0100522}
523
Harald Welte6811d102019-04-14 22:23:14 +0200524function f_bssap_reset(SCCP_PAR_Address peer, SCCP_PAR_Address own) runs on RAN_Emulation_CT {
Harald Weltea4ca4462018-02-09 00:17:14 +0100525 timer T := 5.0;
Pau Espin Pedrol95549182019-06-06 16:17:30 +0200526 var boolean append_osmux_support := append_osmux_ie();
Eric Wild49888a62022-03-30 03:16:11 +0200527 var integer attempts := g_ran_ops.bssap_reset_retries;
Harald Weltea4ca4462018-02-09 00:17:14 +0100528
Eric Wild49888a62022-03-30 03:16:11 +0200529 while (attempts > 0) {
530 attempts := attempts - 1;
531
532 BSSAP.send(ts_BSSAP_UNITDATA_req(peer, own, ts_BSSMAP_Reset(0, append_osmux_support)));
533 T.start;
534 alt {
535 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(own, peer, tr_BSSMAP_ResetAck(append_osmux_support))) {
536 log("BSSMAP: Received RESET-ACK in response to RESET, we're ready to go!");
537 return;
538 }
539 [] as_reset_ack(append_osmux_support);
540 [] BSSAP.receive { repeat };
541 [] T.timeout {
542 continue;
543 }
Daniel Willmanne4ff5372018-07-05 17:35:03 +0200544 }
Harald Weltea4ca4462018-02-09 00:17:14 +0100545 }
Eric Wild49888a62022-03-30 03:16:11 +0200546
547 setverdict(fail, "BSSMAP: Timeout waiting for RESET-ACK after sending RESET");
548 mtc.stop;
Harald Weltea4ca4462018-02-09 00:17:14 +0100549}
550
Harald Welte2fce7882019-04-15 11:48:05 +0200551private function f_bssap_l3_is_rr(PDU_BSSAP bssap) return boolean {
552 var template octetstring l3 := f_bssap_extract_l3(bssap);
553 return f_L3_is_rr(l3);
554}
555#endif
Harald Welte365f4ed2017-11-23 00:00:43 +0100556
Harald Welte5b027622019-04-14 23:40:17 +0200557#ifdef RAN_EMULATION_RANAP
558type record RANAP_Conn_Req {
559 SCCP_PAR_Address addr_peer,
560 SCCP_PAR_Address addr_own,
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +0200561 RANAP_PDU ranap optional
Harald Welte5b027622019-04-14 23:40:17 +0200562}
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +0200563template (value) RANAP_Conn_Req ts_RANAP_Conn_Req(SCCP_PAR_Address peer, SCCP_PAR_Address own,
564 template (omit) RANAP_PDU ranap) := {
565 addr_peer := peer,
566 addr_own := own,
567 ranap := ranap
568};
569
570template RANAP_Conn_Req tr_RANAP_Conn_Req(template SCCP_PAR_Address peer := ?,
571 template SCCP_PAR_Address own := ?,
572 template (omit) RANAP_PDU ranap := omit) := {
Harald Welte5b027622019-04-14 23:40:17 +0200573 addr_peer := peer,
574 addr_own := own,
575 ranap := ranap
576};
577
578private function fake_dlci_from_sapi(template (omit) SAPI sapi) return template (omit) OCT1
579{
580 if (istemplatekind(sapi, "omit")) {
581 return omit;
582 } else if (valueof(sapi) == sapi_3) {
583 return '03'O;
584 }
585 return '00'O;
586}
587
588private function f_handle_userData_RANAP(RAN_ConnHdlr client, RANAP_PDU ranap)
589runs on RAN_Emulation_CT {
590 /* decode + send decoded RANAP to client */
591 var template (omit) octetstring l3 := f_ranap_extract_l3(ranap);
Harald Welte0af76152022-01-11 23:02:38 +0100592 if (istemplatekind(l3, "omit") or not g_ran_ops.decode_dtap) {
Harald Welte5b027622019-04-14 23:40:17 +0200593 CLIENT.send(ranap) to client;
594 } else {
595 var template (omit) SAPI sapi := f_ranap_extract_sapi(ranap);
596 var template (omit) OCT1 dlci := fake_dlci_from_sapi(sapi);
597 if (g_ran_ops.role_ms) {
598 /* we are the MS, so any message to us must be MT */
Harald Welte717c7302019-04-23 20:31:55 +0200599 if (g_ran_ops.ps_domain) {
600 var PDU_DTAP_PS_MT mt := {
601 dlci := omit,
602 dtap := dec_PDU_L3_SGSN_MS(valueof(l3))
603 };
604 if (isvalue(dlci)) {
605 mt.dlci := valueof(dlci);
606 }
607 CLIENT.send(mt) to client;
608 } else {
609 var PDU_DTAP_MT mt := {
610 dlci := omit,
611 dtap := dec_PDU_ML3_NW_MS(valueof(l3))
612 };
613 if (isvalue(dlci)) {
614 mt.dlci := valueof(dlci)
615 }
616 CLIENT.send(mt) to client;
Harald Welte5b027622019-04-14 23:40:17 +0200617 }
Harald Welte5b027622019-04-14 23:40:17 +0200618 } else {
619 /* we are the Network, so any message to us must be MO */
Harald Welte717c7302019-04-23 20:31:55 +0200620 if (g_ran_ops.ps_domain) {
621 var PDU_DTAP_PS_MO mo := {
622 dlci := omit,
623 dtap := dec_PDU_L3_MS_SGSN(valueof(l3))
624 };
625 if (isvalue(dlci)) {
626 mo.dlci := valueof(dlci);
627 }
628 CLIENT.send(mo) to client;
629 } else {
630 var PDU_DTAP_MO mo := {
631 dlci := omit,
632 dtap := dec_PDU_ML3_MS_NW(valueof(l3))
633 };
634 if (isvalue(dlci)) {
635 mo.dlci := valueof(dlci)
636 }
637 CLIENT.send(mo) to client;
Harald Welte5b027622019-04-14 23:40:17 +0200638 }
Harald Welte5b027622019-04-14 23:40:17 +0200639 }
640 }
641}
642
643/* call-back type, to be provided by specific implementation; called when new SCCP connection
644 * arrives */
645type function RanapCreateCallback(RANAP_N_CONNECT_ind conn_ind, charstring id)
646runs on RAN_Emulation_CT return RAN_ConnHdlr;
647
648type function RanapUnitdataCallback(RANAP_PDU ranap)
649runs on RAN_Emulation_CT return template RANAP_PDU;
650
651private function CommonRanapUnitdataCallback(RANAP_PDU ranap)
652runs on RAN_Emulation_CT return template RANAP_PDU {
653 if (match(ranap, tr_RANAP_Paging(?, ?))) {
654 var RAN_ConnHdlr client := null;
655 /* extract IMSI and (if present) TMSI */
656 var IMSI imsi := ranap.initiatingMessage.value_.paging.protocolIEs[1].value_.permanentNAS_UE_ID.iMSI;
657 var template OCT4 tmsi := omit;
658 if (lengthof(ranap.initiatingMessage.value_.paging.protocolIEs) > 2 and
659 ranap.initiatingMessage.value_.paging.protocolIEs[2].id == id_TemporaryUE_ID) {
660 var TemporaryUE_ID ue_id;
661 ue_id := ranap.initiatingMessage.value_.paging.protocolIEs[2].value_.temporaryUE_ID;
662 if (ischosen(ue_id.tMSI)) {
663 tmsi := ue_id.tMSI;
664 } else {
665 tmsi := ue_id.p_TMSI;
666 }
667 }
668 client := f_imsi_table_find(oct2hex(imsi), tmsi);
Harald Welte03d4e2b2019-05-10 00:42:33 +0200669 if (client != null) {
Harald Welte5b027622019-04-14 23:40:17 +0200670 log("CommonRanapUnitdataCallback: IMSI/TMSI found in table, dispatching to ",
671 client);
672 CLIENT.send(ranap) to client;
673 return omit;
674 }
675 log("CommonRanapUnitdataCallback: IMSI/TMSI not found in table");
676 } else {
677 log("CommonRanapUnitdataCallback: Not a paging message");
678 }
679
680 /* ELSE: handle in user callback */
Neels Hofmeyr79896c02023-06-23 03:45:40 +0200681 if (not ispresent(g_ran_ops.ranap_unitdata_cb)) {
682 return omit;
683 }
Harald Welte5b027622019-04-14 23:40:17 +0200684 return g_ran_ops.ranap_unitdata_cb.apply(ranap);
685}
686
687private function f_ranap_l3_is_rr(RANAP_PDU ranap) return boolean {
688 var template (omit) SAPI sapi;
689 var template octetstring l3 := f_ranap_extract_l3(ranap);
690 return f_L3_is_rr(l3);
691}
692
693function f_ranap_reset(SCCP_PAR_Address peer, SCCP_PAR_Address own) runs on RAN_Emulation_CT {
694 timer T := 5.0;
695 var CN_DomainIndicator dom;
696 if (g_ran_ops.ps_domain) {
697 dom := ps_domain;
698 } else {
699 dom := cs_domain;
700 }
701
702 RANAP.send(ts_RANAP_UNITDATA_req(peer, own, ts_RANAP_Reset(ts_RanapCause_om_intervention, dom)));
703 T.start;
704 alt {
705 [] RANAP.receive(tr_RANAP_UNITDATA_ind(own, peer, tr_RANAP_ResetAck)) {
Neels Hofmeyr4f5d7be2020-10-16 16:28:16 +0200706 log("RANAP: Received RESET-ACK in response to RESET, we're ready to go!");
Harald Welte5b027622019-04-14 23:40:17 +0200707 }
708 [] as_reset_ack();
709 [] RANAP.receive { repeat };
710 [] T.timeout {
Neels Hofmeyr4f5d7be2020-10-16 16:28:16 +0200711 setverdict(fail, "RANAP: Timeout waiting for RESET-ACK after sending RESET");
Harald Welte5b027622019-04-14 23:40:17 +0200712 mtc.stop;
713 }
714 }
715}
716#endif
Harald Welte365f4ed2017-11-23 00:00:43 +0100717
Harald Welte2fce7882019-04-15 11:48:05 +0200718
719type enumerated RanProtocol {
Harald Welte5b027622019-04-14 23:40:17 +0200720 RAN_PROTOCOL_BSSAP,
721 RAN_PROTOCOL_RANAP
Harald Welte2fce7882019-04-15 11:48:05 +0200722}
723
724type record RanOps {
725#ifdef RAN_EMULATION_BSSAP
726 BssmapCreateCallback create_cb optional,
727 BssmapUnitdataCallback unitdata_cb optional,
728#endif
Harald Welte5b027622019-04-14 23:40:17 +0200729#ifdef RAN_EMULATION_RANAP
730 RanapCreateCallback ranap_create_cb optional,
731 RanapUnitdataCallback ranap_unitdata_cb optional,
732 boolean ps_domain,
733#endif
Harald Welte2fce7882019-04-15 11:48:05 +0200734 boolean decode_dtap,
735 boolean role_ms,
736 RanProtocol protocol,
Pau Espin Pedrolc6b78ff2019-06-06 15:58:17 +0200737 RAN_Transport transport,
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200738 boolean use_osmux,
Eric Wild49888a62022-03-30 03:16:11 +0200739 integer bssap_reset_retries,
Harald Welte2fce7882019-04-15 11:48:05 +0200740 /* needed for performing BSSMAP RESET */
741 SCCP_PAR_Address sccp_addr_local optional,
742 SCCP_PAR_Address sccp_addr_peer optional
743}
744
745template BIT4 t_ML3_DISC_CC_MM_SS := ('0011'B, '0101'B, '1011'B);
746
Harald Weltea803b722020-08-21 15:42:26 +0200747function f_L3_is_rr(template octetstring l3) return boolean {
Harald Welte2fce7882019-04-15 11:48:05 +0200748 if (not isvalue(l3)) {
749 return false;
Harald Weltea4ca4462018-02-09 00:17:14 +0100750 }
Harald Welte2fce7882019-04-15 11:48:05 +0200751 var octetstring l3v := valueof(l3);
752 if (lengthof(l3v) < 1) {
753 return false;
754 }
755 /* lower 4 bits of first octet are protocol discriminator */
756 if ((oct2bit(l3v[0]) and4b '00001111'B) == '00000110'B) {
757 return true;
758 }
759 return false;
760}
Harald Weltea4ca4462018-02-09 00:17:14 +0100761
Neels Hofmeyr0ac63152019-05-07 01:20:17 +0200762function 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 +0200763 var uint2_t seq_nr;
Neels Hofmeyr0ac63152019-05-07 01:20:17 +0200764 if (n_sd_idx == 0) {
765 seq_nr := n_sd[0];
766 n_sd[0] := (n_sd[0] + 1) mod 4;
767 } else if (n_sd_idx >= 1 and n_sd_idx <= 3) {
768 seq_nr := n_sd[n_sd_idx];
769 n_sd[n_sd_idx] := (n_sd[n_sd_idx] + 1) mod 2;
Harald Welte2fce7882019-04-15 11:48:05 +0200770 } else {
771 /* no sequence number to patch */
Neels Hofmeyr0ac63152019-05-07 01:20:17 +0200772 seq_nr := 0;
Harald Welte2fce7882019-04-15 11:48:05 +0200773 }
Neels Hofmeyr0ac63152019-05-07 01:20:17 +0200774 return seq_nr;
775}
776
777/* patch N(SD) into enc_l3, according to 24.007 11.2.3.2 */
778function f_ML3_patch_seq_nr(in uint2_t seq_nr, inout octetstring enc_l3) {
Harald Welte2fce7882019-04-15 11:48:05 +0200779 log("patching N(SD)=", seq_nr, " into dtap ", enc_l3);
780 enc_l3[1] := (enc_l3[1] and4b '3f'O) or4b bit2oct(int2bit(seq_nr, 8) << 6);
781 log("patched enc_l3: ", enc_l3);
782}
783
Neels Hofmeyr0ac63152019-05-07 01:20:17 +0200784function f_ML3_n_sd_idx(in PDU_ML3_MS_NW dtap) return integer {
785 var uint2_t seq_nr;
786 if (ischosen(dtap.msgs.cc) or ischosen(dtap.msgs.mm) or ischosen(dtap.msgs.ss)) {
787 return 0;
788 } else if (ischosen(dtap.msgs.gcc)) {
789 return 1;
790 } else if (ischosen(dtap.msgs.bcc)) {
791 return 2;
792 } else if (ischosen(dtap.msgs.loc)) {
793 return 3;
794 }
795 /* no sequence number to patch */
796 return -1;
797}
798
799/* patch N(SD) into enc_l3, according to 24.007 11.2.3.2 */
Harald Weltea803b722020-08-21 15:42:26 +0200800private 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 +0200801 var integer n_sd_idx := f_ML3_n_sd_idx(dtap);
802 if (n_sd_idx < 0) {
803 return;
804 }
805 var uint2_t seq_nr := f_next_n_sd(cd.n_sd, n_sd_idx);
806 f_ML3_patch_seq_nr(seq_nr, enc_l3);
807}
808
Pau Espin Pedrol95549182019-06-06 16:17:30 +0200809private altstep as_reset_ack(boolean append_osmux_support := false) runs on RAN_Emulation_CT {
Harald Welte2fce7882019-04-15 11:48:05 +0200810#ifdef RAN_EMULATION_BSSAP
811 var BSSAP_N_UNITDATA_ind ud_ind;
812#endif
Harald Welte5b027622019-04-14 23:40:17 +0200813#ifdef RAN_EMULATION_RANAP
814 var RANAP_N_UNITDATA_ind rud_ind;
815#endif
Harald Welte2fce7882019-04-15 11:48:05 +0200816#ifdef RAN_EMULATION_BSSAP
Pau Espin Pedrol95549182019-06-06 16:17:30 +0200817 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(?, ?, tr_BSSMAP_Reset(append_osmux_support))) -> value ud_ind {
Neels Hofmeyr4f5d7be2020-10-16 16:28:16 +0200818 log("BSSMAP: Responding to inbound RESET with RESET-ACK");
Harald Welte2fce7882019-04-15 11:48:05 +0200819 BSSAP.send(ts_BSSAP_UNITDATA_req(ud_ind.callingAddress, ud_ind.calledAddress,
Pau Espin Pedrol95549182019-06-06 16:17:30 +0200820 ts_BSSMAP_ResetAck(append_osmux_support)));
Harald Welte2fce7882019-04-15 11:48:05 +0200821 repeat;
822 }
823#endif
Harald Welte5b027622019-04-14 23:40:17 +0200824#ifdef RAN_EMULATION_RANAP
825 [] RANAP.receive(tr_RANAP_UNITDATA_ind(?, ?, tr_RANAP_Reset)) -> value rud_ind {
Neels Hofmeyr4f5d7be2020-10-16 16:28:16 +0200826 log("RANAP: Responding to inbound IuRESET with IuRESET-ACK");
Harald Welte5b027622019-04-14 23:40:17 +0200827 var CN_DomainIndicator dom;
828 dom := rud_ind.userData.initiatingMessage.value_.Reset.protocolIEs[1].value_.cN_DomainIndicator;
829 RANAP.send(ts_RANAP_UNITDATA_req(rud_ind.callingAddress, rud_ind.calledAddress,
830 ts_RANAP_ResetAck(dom)));
831 }
832#endif
Harald Welte2fce7882019-04-15 11:48:05 +0200833}
834
835
836private altstep as_main_bssap() runs on RAN_Emulation_CT {
837#ifdef RAN_EMULATION_BSSAP
Harald Welte004f5fb2017-12-16 17:54:40 +0100838 var BSSAP_N_UNITDATA_ind ud_ind;
839 var BSSAP_N_CONNECT_ind conn_ind;
840 var BSSAP_N_CONNECT_cfm conn_cfm;
841 var BSSAP_N_DATA_ind data_ind;
842 var BSSAP_N_DISCONNECT_ind disc_ind;
Harald Welteb3414b22017-11-23 18:22:10 +0100843 var BSSAP_Conn_Req creq;
Harald Welte365f4ed2017-11-23 00:00:43 +0100844 var PDU_BSSAP bssap;
Neels Hofmeyra8264612020-06-08 20:40:22 +0200845 var BSSAP_N_UNITDATA_req bssap_ud;
Harald Welte2fce7882019-04-15 11:48:05 +0200846 var RAN_ConnHdlr vc_conn;
Neels Hofmeyr0ac63152019-05-07 01:20:17 +0200847 var integer targetPointCode;
848 var N_Sd_Array last_n_sd;
Harald Welte365f4ed2017-11-23 00:00:43 +0100849
Harald Welte365f4ed2017-11-23 00:00:43 +0100850 /* SCCP -> Client: UNIT-DATA (connectionless SCCP) from a BSC */
Harald Welte004f5fb2017-12-16 17:54:40 +0100851 [] BSSAP.receive(BSSAP_N_UNITDATA_ind:?) -> value ud_ind {
Harald Welte365f4ed2017-11-23 00:00:43 +0100852 /* Connectionless Procedures like RESET */
853 var template PDU_BSSAP resp;
Harald Welte17d21152018-01-27 00:47:11 +0100854 resp := CommonBssmapUnitdataCallback(ud_ind.userData);
Harald Welte365f4ed2017-11-23 00:00:43 +0100855 if (isvalue(resp)) {
Harald Welte004f5fb2017-12-16 17:54:40 +0100856 BSSAP.send(ts_BSSAP_UNITDATA_req(ud_ind.callingAddress,
857 ud_ind.calledAddress, resp));
Harald Welte365f4ed2017-11-23 00:00:43 +0100858 }
859 }
Harald Welte365f4ed2017-11-23 00:00:43 +0100860 /* SCCP -> Client: new connection from BSC */
Harald Welte004f5fb2017-12-16 17:54:40 +0100861 [] BSSAP.receive(BSSAP_N_CONNECT_ind:?) -> value conn_ind {
Harald Welte2fce7882019-04-15 11:48:05 +0200862 vc_conn := g_ran_ops.create_cb.apply(conn_ind, g_ran_id);
Harald Welte365f4ed2017-11-23 00:00:43 +0100863 /* store mapping between client components and SCCP connectionId */
864 f_conn_table_add(vc_conn, conn_ind.connectionId);
865 /* handle user payload */
866 f_handle_userData(vc_conn, conn_ind.userData);
867 /* confirm connection establishment */
Harald Welte004f5fb2017-12-16 17:54:40 +0100868 BSSAP.send(ts_BSSAP_CONNECT_res(conn_ind.connectionId, omit));
Harald Welte365f4ed2017-11-23 00:00:43 +0100869 }
Harald Welte365f4ed2017-11-23 00:00:43 +0100870 /* SCCP -> Client: connection-oriented data in existing connection */
Harald Welte004f5fb2017-12-16 17:54:40 +0100871 [] BSSAP.receive(BSSAP_N_DATA_ind:?) -> value data_ind {
Harald Welte365f4ed2017-11-23 00:00:43 +0100872 vc_conn := f_comp_by_conn_id(data_ind.connectionId);
Harald Welte5cc4aa22017-11-23 18:51:28 +0100873 if (ispresent(data_ind.userData)) {
874 f_handle_userData(vc_conn, data_ind.userData);
875 }
Harald Welte365f4ed2017-11-23 00:00:43 +0100876 }
Harald Welte365f4ed2017-11-23 00:00:43 +0100877 /* SCCP -> Client: disconnect of an existing connection */
Harald Welte004f5fb2017-12-16 17:54:40 +0100878 [] BSSAP.receive(BSSAP_N_DISCONNECT_ind:?) -> value disc_ind {
Harald Welte365f4ed2017-11-23 00:00:43 +0100879 vc_conn := f_comp_by_conn_id(disc_ind.connectionId);
Harald Welte5cc4aa22017-11-23 18:51:28 +0100880 if (ispresent(disc_ind.userData)) {
881 f_handle_userData(vc_conn, disc_ind.userData);
882 }
Harald Welte365f4ed2017-11-23 00:00:43 +0100883 /* notify client about termination */
Harald Welte6811d102019-04-14 22:23:14 +0200884 var RAN_Conn_Prim prim := MSC_CONN_PRIM_DISC_IND;
Harald Welte365f4ed2017-11-23 00:00:43 +0100885 CLIENT.send(prim) to vc_conn;
886 f_conn_table_del(disc_ind.connectionId);
887 /* TOOD: return confirm to other side? */
888 }
Harald Welteb3414b22017-11-23 18:22:10 +0100889 /* SCCP -> Client: connection confirm for outbound connection */
Harald Welte004f5fb2017-12-16 17:54:40 +0100890 [] BSSAP.receive(BSSAP_N_CONNECT_cfm:?) -> value conn_cfm {
Harald Welte71b69332018-01-21 20:43:53 +0100891 vc_conn := f_comp_by_conn_id(conn_cfm.connectionId);
Harald Welte6811d102019-04-14 22:23:14 +0200892 var RAN_Conn_Prim prim := MSC_CONN_PRIM_CONF_IND;
Harald Welte71b69332018-01-21 20:43:53 +0100893 CLIENT.send(prim) to vc_conn;
Harald Welteb3414b22017-11-23 18:22:10 +0100894 /* handle user payload */
Harald Welte5cc4aa22017-11-23 18:51:28 +0100895 if (ispresent(conn_cfm.userData)) {
896 f_handle_userData(vc_conn, conn_cfm.userData);
897 }
Harald Welteb3414b22017-11-23 18:22:10 +0100898 }
Harald Welte2fce7882019-04-15 11:48:05 +0200899 [] CLIENT.receive(PDU_BSSAP:?) -> value bssap sender vc_conn {
900 var integer conn_id := f_conn_id_by_comp(vc_conn);
901 /* send it to dispatcher */
902 BSSAP.send(ts_BSSAP_DATA_req(conn_id, bssap));
903 }
Harald Welteb3414b22017-11-23 18:22:10 +0100904
Neels Hofmeyra8264612020-06-08 20:40:22 +0200905 [] CLIENT.receive(BSSAP_N_UNITDATA_req:?) -> value bssap_ud sender vc_conn {
906 BSSAP.send(bssap_ud);
907 }
908
Harald Welte365f4ed2017-11-23 00:00:43 +0100909 /* Disconnect request client -> SCCP */
Harald Welte6811d102019-04-14 22:23:14 +0200910 [] CLIENT.receive(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_REQ) -> sender vc_conn {
Harald Welte365f4ed2017-11-23 00:00:43 +0100911 var integer conn_id := f_conn_id_by_comp(vc_conn);
Harald Welte004f5fb2017-12-16 17:54:40 +0100912 BSSAP.send(ts_BSSAP_DISC_req(conn_id, 0));
Harald Welte365f4ed2017-11-23 00:00:43 +0100913 f_conn_table_del(conn_id);
914 }
915
916 /* BSSAP from client -> SCCP */
Harald Welteb3414b22017-11-23 18:22:10 +0100917 [] CLIENT.receive(BSSAP_Conn_Req:?) -> value creq sender vc_conn {
918 var integer conn_id;
Harald Welte004f5fb2017-12-16 17:54:40 +0100919 /* send to dispatcher */
Harald Welteb3414b22017-11-23 18:22:10 +0100920
921 if (f_comp_known(vc_conn) == false) {
922 /* unknown client, create new connection */
923 conn_id := f_gen_conn_id();
924
925 /* store mapping between client components and SCCP connectionId */
926 f_conn_table_add(vc_conn, conn_id);
927
Harald Welte004f5fb2017-12-16 17:54:40 +0100928 BSSAP.send(ts_BSSAP_CONNECT_req(creq.addr_peer, creq.addr_own, conn_id,
929 creq.bssap));
Harald Welteb3414b22017-11-23 18:22:10 +0100930 } else {
931 /* known client, send via existing connection */
932 conn_id := f_conn_id_by_comp(vc_conn);
Harald Welte004f5fb2017-12-16 17:54:40 +0100933 BSSAP.send(ts_BSSAP_DATA_req(conn_id, creq.bssap));
Harald Welteb3414b22017-11-23 18:22:10 +0100934 }
935
Harald Welte49518bf2018-02-10 11:39:19 +0100936 /* InitialL3 contains RR (PAG RESP) or MM (CM SRV REQ), we must increment
937 * counter only on MM/CC/SS, but not on RR */
Harald Welte6811d102019-04-14 22:23:14 +0200938 if (g_ran_ops.role_ms and not f_bssap_l3_is_rr(creq.bssap)) {
Harald Welte9dadc522018-02-06 13:56:04 +0100939 /* we have just sent the first MM message, increment the counter */
940 var integer idx := f_idx_by_comp(vc_conn);
941 ConnectionTable[idx].n_sd[0] := 1;
942 log("patch: N(SD) for ConnIdx ", idx, " set to 1");
943 }
Neels Hofmeyr0ac63152019-05-07 01:20:17 +0200944 }
Harald Welte9dadc522018-02-06 13:56:04 +0100945
Neels Hofmeyr0ac63152019-05-07 01:20:17 +0200946 [] PROC.getcall(RAN_last_n_sd:{?,-}) -> param(vc_conn) {
947 var integer idx := f_idx_by_comp(vc_conn);
948 last_n_sd := ConnectionTable[idx].n_sd;
949 PROC.reply(RAN_last_n_sd:{vc_conn, last_n_sd}) to vc_conn;
950 }
951
952 [] PROC.getcall(RAN_continue_after_n_sd:{?,?}) -> param(last_n_sd, vc_conn) {
953 var integer idx := f_idx_by_comp(vc_conn);
954 ConnectionTable[idx].n_sd := last_n_sd;
955 PROC.reply(RAN_continue_after_n_sd:{last_n_sd, vc_conn}) to vc_conn;
Harald Welteb3414b22017-11-23 18:22:10 +0100956 }
Harald Welte2fce7882019-04-15 11:48:05 +0200957#else
Harald Welte5b027622019-04-14 23:40:17 +0200958 [false] CLIENT.receive {}
959#endif
960}
961
962private altstep as_main_ranap() runs on RAN_Emulation_CT {
963#ifdef RAN_EMULATION_RANAP
964 var RANAP_N_UNITDATA_ind rud_ind;
965 var RANAP_N_CONNECT_ind rconn_ind;
966 var RANAP_N_CONNECT_cfm rconn_cfm;
967 var RANAP_N_DATA_ind rdata_ind;
968 var RANAP_N_DISCONNECT_ind rdisc_ind;
969 var RANAP_Conn_Req creq;
970 var RANAP_PDU ranap;
971 var RAN_ConnHdlr vc_conn;
Harald Welte717c7302019-04-23 20:31:55 +0200972 var PDU_DTAP_PS_MO ps_mo;
973 var PDU_DTAP_PS_MT ps_mt;
Harald Welte5b027622019-04-14 23:40:17 +0200974
975 /* SCCP -> Client: UNIT-DATA (connectionless SCCP) from a BSC */
976 [] RANAP.receive(RANAP_N_UNITDATA_ind:?) -> value rud_ind {
977 /* Connectionless Procedures like RESET */
978 var template RANAP_PDU resp;
979 resp := CommonRanapUnitdataCallback(rud_ind.userData);
980 if (isvalue(resp)) {
981 RANAP.send(ts_RANAP_UNITDATA_req(rud_ind.callingAddress,
982 rud_ind.calledAddress, resp));
983 }
984 }
985 /* SCCP -> Client: new connection from BSC */
986 [] RANAP.receive(RANAP_N_CONNECT_ind:?) -> value rconn_ind {
987 vc_conn := g_ran_ops.ranap_create_cb.apply(rconn_ind, g_ran_id);
988 /* store mapping between client components and SCCP connectionId */
989 f_conn_table_add(vc_conn, rconn_ind.connectionId);
990 /* handle user payload */
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +0200991 if (ispresent(rconn_ind.userData)) {
992 f_handle_userData_RANAP(vc_conn, rconn_ind.userData);
993 } else {
994 /* Notify client that we received an SCCP CR without user data */
995 CLIENT.send(ts_RANAP_Conn_Req(rconn_ind.callingAddress, rconn_ind.calledAddress, omit));
996 }
Harald Welte5b027622019-04-14 23:40:17 +0200997 /* confirm connection establishment */
998 RANAP.send(ts_RANAP_CONNECT_res(rconn_ind.connectionId, omit));
999 }
1000 /* SCCP -> Client: connection-oriented data in existing connection */
1001 [] RANAP.receive(RANAP_N_DATA_ind:?) -> value rdata_ind {
1002 vc_conn := f_comp_by_conn_id(rdata_ind.connectionId);
1003 if (ispresent(rdata_ind.userData)) {
1004 f_handle_userData_RANAP(vc_conn, rdata_ind.userData);
1005 }
1006 }
1007 /* SCCP -> Client: disconnect of an existing connection */
1008 [] RANAP.receive(RANAP_N_DISCONNECT_ind:?) -> value rdisc_ind {
1009 vc_conn := f_comp_by_conn_id(rdisc_ind.connectionId);
1010 if (ispresent(rdisc_ind.userData)) {
1011 f_handle_userData_RANAP(vc_conn, rdisc_ind.userData);
1012 }
1013 /* notify client about termination */
1014 var RAN_Conn_Prim prim := MSC_CONN_PRIM_DISC_IND;
1015 CLIENT.send(prim) to vc_conn;
1016 f_conn_table_del(rdisc_ind.connectionId);
1017 /* TOOD: return confirm to other side? */
1018 }
1019 /* SCCP -> Client: connection confirm for outbound connection */
1020 [] RANAP.receive(RANAP_N_CONNECT_cfm:?) -> value rconn_cfm {
1021 vc_conn := f_comp_by_conn_id(rconn_cfm.connectionId);
1022 var RAN_Conn_Prim prim := MSC_CONN_PRIM_CONF_IND;
1023 CLIENT.send(prim) to vc_conn;
1024 /* handle user payload */
1025 if (ispresent(rconn_cfm.userData)) {
1026 f_handle_userData_RANAP(vc_conn, rconn_cfm.userData);
1027 }
1028 }
1029
1030 [] CLIENT.receive(RANAP_PDU:?) -> value ranap sender vc_conn {
1031 var integer conn_id := f_conn_id_by_comp(vc_conn);
1032 /* send it to dispatcher */
1033 RANAP.send(ts_RANAP_DATA_req(conn_id, ranap));
1034 }
1035
1036 /* Disconnect request client -> SCCP */
1037 [] CLIENT.receive(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_REQ) -> sender vc_conn {
1038 var integer conn_id := f_conn_id_by_comp(vc_conn);
1039 RANAP.send(ts_RANAP_DISC_req(conn_id, 0));
1040 f_conn_table_del(conn_id);
1041 }
1042
1043 /* BSSAP from client -> SCCP */
1044 [] CLIENT.receive(RANAP_Conn_Req:?) -> value creq sender vc_conn {
1045 var integer conn_id;
1046 /* send to dispatcher */
1047
1048 if (f_comp_known(vc_conn) == false) {
1049 /* unknown client, create new connection */
1050 conn_id := f_gen_conn_id();
1051
1052 /* store mapping between client components and SCCP connectionId */
1053 f_conn_table_add(vc_conn, conn_id);
1054
1055 RANAP.send(ts_RANAP_CONNECT_req(creq.addr_peer, creq.addr_own, conn_id,
1056 creq.ranap));
1057 } else {
1058 /* known client, send via existing connection */
1059 conn_id := f_conn_id_by_comp(vc_conn);
1060 RANAP.send(ts_RANAP_DATA_req(conn_id, creq.ranap));
1061 }
1062
1063 /* InitialL3 contains RR (PAG RESP) or MM (CM SRV REQ), we must increment
1064 * counter only on MM/CC/SS, but not on RR */
1065 if (g_ran_ops.role_ms and not f_ranap_l3_is_rr(creq.ranap)) {
1066 /* we have just sent the first MM message, increment the counter */
1067 var integer idx := f_idx_by_comp(vc_conn);
1068 ConnectionTable[idx].n_sd[0] := 1;
1069 log("patch: N(SD) for ConnIdx ", idx, " set to 1");
1070 }
1071 }
1072
Harald Welte717c7302019-04-23 20:31:55 +02001073 [g_ran_ops.role_ms] CLIENT.receive(PDU_DTAP_PS_MO:?) -> value ps_mo sender vc_conn {
1074 var integer idx := f_idx_by_comp(vc_conn);
1075 /* convert from decoded DTAP to encoded DTAP */
1076 var octetstring l3_enc := enc_PDU_L3_MS_SGSN(ps_mo.dtap);
1077 /* patch correct L3 send sequence number N(SD) into l3_enc */
1078 if (ps_mo.skip_seq_patching == false) {
1079 //f_ML3_patch_seq(ConnectionTable[idx], ps_mo.dtap, l3_enc);
1080 }
1081 f_xmit_raw_l3(ConnectionTable[idx].sccp_conn_id, ps_mo.dlci, l3_enc);
1082 }
1083
1084 [not g_ran_ops.role_ms] CLIENT.receive(PDU_DTAP_PS_MT:?) -> value ps_mt sender vc_conn {
1085 var integer idx := f_idx_by_comp(vc_conn);
1086 /* convert from decoded DTAP to encoded DTAP */
1087 var octetstring l3_enc := enc_PDU_L3_SGSN_MS(ps_mt.dtap);
1088 f_xmit_raw_l3(ConnectionTable[idx].sccp_conn_id, ps_mt.dlci, l3_enc);
1089 }
1090
1091
Harald Welte5b027622019-04-14 23:40:17 +02001092#else
1093 [false] CLIENT.receive {}
Harald Welte2fce7882019-04-15 11:48:05 +02001094#endif
1095}
Harald Welteb3414b22017-11-23 18:22:10 +01001096
Harald Welte2fce7882019-04-15 11:48:05 +02001097private altstep as_main_mgcp() runs on RAN_Emulation_CT {
1098#ifdef RAN_EMULATION_MGCP
1099 var MgcpCommand mgcp_req;
1100 var MgcpResponse mgcp_resp;
1101 var RAN_ConnHdlr vc_conn;
Harald Welte0b476062018-01-21 19:07:32 +01001102
Harald Weltec82eef42017-11-24 20:40:12 +01001103 /* Handling of MGCP in IPA SCCPLite case. This predates 3GPP AoIP
1104 * and uses a MGCP session in parallel to BSSAP. BSSAP uses CIC
1105 * as usual, and MGCP uses "CIC@mgw" endpoint naming, where CIC
1106 * is printed as hex string, e.g. a@mgw for CIC 10 */
1107
1108 /* CLIENT -> MGCP */
1109 [] CLIENT.receive(MgcpCommand:?) -> value mgcp_req sender vc_conn {
1110 /* MGCP request from Handler (we're MSC) */
1111 /* store the transaction ID we've seen */
1112 f_comp_store_mgcp_tid(vc_conn, mgcp_req.line.trans_id);
1113 /* simply forward any MGCP from the client to the port */
1114 MGCP.send(mgcp_req);
1115 }
1116 [] CLIENT.receive(MgcpResponse:?) -> value mgcp_resp sender vc_conn {
1117 /* MGCP response from Handler (we're BSC/MGW) */
1118 /* simply forward any MGCP from the client to the port */
1119 MGCP.send(mgcp_resp);
1120 }
1121
1122 /* MGCP -> CLIENT */
1123 [] MGCP.receive(MgcpCommand:?) -> value mgcp_req {
1124 /* MGCP request from network side (we're BSC/MGW) */
1125 /* Extract CIC from local part of endpoint name */
1126 var integer cic := f_mgcp_ep_extract_cic(mgcp_req.line.ep);
Harald Weltee98bb2e2017-11-29 12:09:48 +01001127 if (match(mgcp_req, tr_RSIP) and f_cic_known(cic) == false) {
1128 /* ignore RSIP for unknown CIC */
1129 } else {
1130 /* Resolve the vc_conn by the CIC */
1131 vc_conn := f_comp_by_cic(cic);
1132 CLIENT.send(mgcp_req) to vc_conn;
1133 }
Harald Weltec82eef42017-11-24 20:40:12 +01001134 }
1135 [] MGCP.receive(MgcpResponse:?) -> value mgcp_resp {
1136 /* MGCP response from network side (we're MSC) */
1137 /* Resolve the vc_conn by the transaction ID */
1138 vc_conn := f_comp_by_mgcp_tid(mgcp_resp.line.trans_id);
1139 CLIENT.send(mgcp_resp) to vc_conn;
1140 }
Harald Welte2fce7882019-04-15 11:48:05 +02001141#else
1142 [false] CLIENT.receive {}
1143#endif
1144}
Harald Weltec82eef42017-11-24 20:40:12 +01001145
Pau Espin Pedrol4d0e5e52019-06-07 19:38:28 +02001146private altstep as_main_ctrl() runs on RAN_Emulation_CT {
1147#ifdef RAN_EMULATION_CTRL
1148 var CtrlMessage ctrl;
1149 var RAN_ConnHdlr vc_conn;
1150 var ASP_IPA_Event evt;
1151
1152 /* Handling of CTRL in IPA SCCPLite case. This predates 3GPP AoIP
1153 * and uses a CTRL session in parallel to BSSAP. */
1154
1155 /* CTRL_CLIENT -> CTRL */
1156 [] CTRL_CLIENT.receive(CtrlMessage:?) -> value ctrl sender vc_conn {
1157 CTRL.send(ctrl);
1158 }
1159
1160 /* CTRL -> CTRL_CLIENT */
1161 [] CTRL.receive(CtrlMessage:?) -> value ctrl {
1162 CTRL_CLIENT.send(ctrl);
1163 }
1164
Vadim Yanitskiya2afacc2020-05-18 21:16:19 +07001165 [] CTRL.receive(tr_ASP_IPA_EV(ASP_IPA_EVENT_UP)) -> value evt {
Pau Espin Pedrol4d0e5e52019-06-07 19:38:28 +02001166 CTRL_CLIENT.send(evt);
1167 }
Vadim Yanitskiya2afacc2020-05-18 21:16:19 +07001168 [] CTRL.receive(tr_ASP_IPA_EV(ASP_IPA_EVENT_DOWN)) {
Pau Espin Pedrol4d0e5e52019-06-07 19:38:28 +02001169 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Lost IPA connection!");
1170 }
Vadim Yanitskiya2afacc2020-05-18 21:16:19 +07001171 [] CTRL.receive(tr_ASP_IPA_EV(ASP_IPA_EVENT_ID_ACK)) {}
Pau Espin Pedrol4d0e5e52019-06-07 19:38:28 +02001172#else
1173 [false] CLIENT.receive {}
1174#endif
1175}
1176
Harald Welte2fce7882019-04-15 11:48:05 +02001177/* send a raw (encoded) L3 message over given SCCP connection */
1178private function f_xmit_raw_l3(integer sccp_conn_id, OCT1 dlci, octetstring l3_enc) runs on RAN_Emulation_CT
1179{
1180 select (g_ran_ops.protocol) {
1181#ifdef RAN_EMULATION_BSSAP
1182 case (RAN_PROTOCOL_BSSAP) {
1183 var PDU_BSSAP bssap;
1184 bssap := valueof(ts_BSSAP_DTAP(l3_enc, dlci));
1185 BSSAP.send(ts_BSSAP_DATA_req(sccp_conn_id, bssap));
1186 }
1187#endif
Harald Welte5b027622019-04-14 23:40:17 +02001188#ifdef RAN_EMULATION_RANAP
1189 case (RAN_PROTOCOL_RANAP) {
Vadim Yanitskiyf2c3fa92019-06-20 05:18:15 +07001190 var template (omit) RANAP_IEs.SAPI sapi := omit;
Harald Welte5b027622019-04-14 23:40:17 +02001191 var RANAP_PDU ranap;
Vadim Yanitskiyf2c3fa92019-06-20 05:18:15 +07001192
1193 /* Perform DLCI -> SAPI transformation (x & 0x07) */
1194 if (dlci and4b '07'O == '03'O) {
1195 sapi := sapi_3;
1196 }
1197
1198 ranap := valueof(ts_RANAP_DirectTransfer(l3_enc, sapi := sapi));
Harald Welte5b027622019-04-14 23:40:17 +02001199 RANAP.send(ts_RANAP_DATA_req(sccp_conn_id, ranap));
1200 }
1201#endif
Harald Welte2fce7882019-04-15 11:48:05 +02001202 }
1203}
1204
1205function main(RanOps ops, charstring id) runs on RAN_Emulation_CT {
1206
1207 g_ran_id := id;
1208 g_ran_ops := ops;
1209 f_conn_table_init();
1210 f_expect_table_init();
1211
1212 if (isvalue(ops.sccp_addr_peer) and isvalue(ops.sccp_addr_local)) {
1213 f_sleep(1.0); /* HACK to wait for M3UA/ASP to be ACTIVE */
Harald Welte5b027622019-04-14 23:40:17 +02001214 select (g_ran_ops.protocol) {
1215#ifdef RAN_EMULATION_BSSAP
1216 case (RAN_PROTOCOL_BSSAP) {
1217 f_bssap_reset(ops.sccp_addr_peer, ops.sccp_addr_local);
1218 }
1219#endif
1220#ifdef RAN_EMULATION_RANAP
1221 case (RAN_PROTOCOL_RANAP) {
1222 f_ranap_reset(ops.sccp_addr_peer, ops.sccp_addr_local);
1223 }
1224#endif
1225 }
Harald Welte2fce7882019-04-15 11:48:05 +02001226 }
1227
1228 while (true) {
1229 var RAN_ConnHdlr vc_conn;
1230 var PDU_DTAP_MO dtap_mo;
1231 var PDU_DTAP_MT dtap_mt;
1232 var RAN_ConnHdlr vc_hdlr;
1233 var octetstring l3_info;
1234 var hexstring imsi;
1235 var OCT4 tmsi;
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001236 var integer targetPointCode;
Harald Welte2fce7882019-04-15 11:48:05 +02001237
1238 alt {
1239 [g_ran_ops.protocol == RAN_PROTOCOL_BSSAP] as_main_bssap();
Harald Welte5b027622019-04-14 23:40:17 +02001240 [g_ran_ops.protocol == RAN_PROTOCOL_RANAP] as_main_ranap();
Harald Welte2fce7882019-04-15 11:48:05 +02001241
1242 [g_ran_ops.role_ms] CLIENT.receive(PDU_DTAP_MO:?) -> value dtap_mo sender vc_conn {
1243 var integer idx := f_idx_by_comp(vc_conn);
1244 /* convert from decoded DTAP to encoded DTAP */
1245 var octetstring l3_enc := enc_PDU_ML3_MS_NW(dtap_mo.dtap);
1246 /* patch correct L3 send sequence number N(SD) into l3_enc */
1247 if (dtap_mo.skip_seq_patching == false) {
1248 f_ML3_patch_seq(ConnectionTable[idx], dtap_mo.dtap, l3_enc);
1249 }
1250 f_xmit_raw_l3(ConnectionTable[idx].sccp_conn_id, dtap_mo.dlci, l3_enc);
1251 }
1252
1253 [not g_ran_ops.role_ms] CLIENT.receive(PDU_DTAP_MT:?) -> value dtap_mt sender vc_conn {
1254 var integer idx := f_idx_by_comp(vc_conn);
1255 /* convert from decoded DTAP to encoded DTAP */
1256 var octetstring l3_enc := enc_PDU_ML3_NW_MS(dtap_mt.dtap);
1257 f_xmit_raw_l3(ConnectionTable[idx].sccp_conn_id, dtap_mt.dlci, l3_enc);
1258 }
1259
1260 [] as_main_mgcp();
Pau Espin Pedrol4d0e5e52019-06-07 19:38:28 +02001261 [] as_main_ctrl();
Harald Welte624f9632017-12-16 19:26:04 +01001262
Harald Welte6811d102019-04-14 22:23:14 +02001263 [] PROC.getcall(RAN_register:{?,?}) -> param(l3_info, vc_hdlr) {
Harald Welte624f9632017-12-16 19:26:04 +01001264 f_create_expect(l3_info, vc_hdlr);
Harald Welte6811d102019-04-14 22:23:14 +02001265 PROC.reply(RAN_register:{l3_info, vc_hdlr}) to vc_hdlr;
Harald Welte624f9632017-12-16 19:26:04 +01001266 }
1267
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001268 [] PROC.getcall(RAN_register_handoverRequest:{?,?}) -> param(targetPointCode, vc_hdlr) {
1269 f_create_expect(omit, vc_hdlr, targetPointCode);
1270 PROC.reply(RAN_register_handoverRequest:{targetPointCode, vc_hdlr}) to vc_hdlr;
1271 }
1272
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +02001273 [] PROC.getcall(RAN_register_sccp_cr_without_payload:{?}) -> param(vc_hdlr) {
1274 f_create_expect(omit, vc_hdlr);
1275 PROC.reply(RAN_register_sccp_cr_without_payload:{vc_hdlr}) to vc_hdlr;
1276 }
1277
Harald Welte6811d102019-04-14 22:23:14 +02001278 [] PROC.getcall(RAN_register_imsi:{?,?,?}) -> param(imsi, tmsi, vc_hdlr) {
Harald Welte17d21152018-01-27 00:47:11 +01001279 f_create_imsi(imsi, tmsi, vc_hdlr);
Harald Welte6811d102019-04-14 22:23:14 +02001280 PROC.reply(RAN_register_imsi:{imsi, tmsi, vc_hdlr}) to vc_hdlr;
Harald Welte17d21152018-01-27 00:47:11 +01001281 }
Harald Welteee4d70c2022-05-16 21:29:19 +02001282 [] PROC.getcall(RAN_unregister_imsi:{?,?}) -> param(imsi, vc_hdlr) {
1283 f_destroy_imsi(imsi, vc_hdlr);
1284 PROC.reply(RAN_unregister_imsi:{imsi, vc_hdlr}) to vc_hdlr;
1285 }
Harald Welte17d21152018-01-27 00:47:11 +01001286
Harald Welte365f4ed2017-11-23 00:00:43 +01001287 }
1288 }
1289}
1290
Harald Welte2fce7882019-04-15 11:48:05 +02001291#ifdef RAN_EMULATION_MGCP
Harald Weltec82eef42017-11-24 20:40:12 +01001292private function f_mgcp_ep_extract_cic(charstring inp) return integer {
Harald Welte525a9c12017-11-24 23:40:41 +01001293 var charstring local_part := regexp(inp, "(*)@*", 0);
Harald Weltec82eef42017-11-24 20:40:12 +01001294 return hex2int(str2hex(local_part));
1295
1296}
Harald Welte2fce7882019-04-15 11:48:05 +02001297#endif
Harald Welte365f4ed2017-11-23 00:00:43 +01001298
Harald Welte624f9632017-12-16 19:26:04 +01001299/***********************************************************************
1300 * "Expect" Handling (mapping for expected incoming SCCP connections)
1301 ***********************************************************************/
1302
1303/* data about an expected future incoming connection */
1304type record ExpectData {
1305 /* L3 payload based on which we can match it */
1306 octetstring l3_payload optional,
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001307 integer handoverRequestPointCode optional,
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +02001308 boolean sccp_cr_without_payload,
Harald Welte624f9632017-12-16 19:26:04 +01001309 /* component reference for this connection */
Harald Welte6811d102019-04-14 22:23:14 +02001310 RAN_ConnHdlr vc_conn
Harald Welte624f9632017-12-16 19:26:04 +01001311}
1312
1313/* procedure based port to register for incoming connections */
Harald Welte6811d102019-04-14 22:23:14 +02001314signature RAN_register(in octetstring l3, in RAN_ConnHdlr hdlr);
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001315signature RAN_register_handoverRequest(in integer targetPointCode, in RAN_ConnHdlr hdlr);
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +02001316signature RAN_register_sccp_cr_without_payload(in RAN_ConnHdlr hdlr);
Harald Welte624f9632017-12-16 19:26:04 +01001317
Harald Welte17d21152018-01-27 00:47:11 +01001318/* procedure based port to register for incoming IMSI/TMSI */
Harald Welte6811d102019-04-14 22:23:14 +02001319signature RAN_register_imsi(in hexstring imsi, in OCT4 tmsi, in RAN_ConnHdlr hdlr);
Harald Welteee4d70c2022-05-16 21:29:19 +02001320signature RAN_unregister_imsi(in hexstring imsi, in RAN_ConnHdlr hdlr);
Harald Welte17d21152018-01-27 00:47:11 +01001321
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001322/* If DTAP happens across other channels (e.g. GSUP), provide manual advancing of the n_sd sequence number */
1323signature RAN_last_n_sd(in RAN_ConnHdlr hdlr, out N_Sd_Array last_n_sd);
1324
1325/* Update conn's n_sd sequence nr after the connection was taken over from elsewhere */
1326signature RAN_continue_after_n_sd(N_Sd_Array last_n_sd, in RAN_ConnHdlr hdlr);
1327
Harald Welte6811d102019-04-14 22:23:14 +02001328type port RAN_PROC_PT procedure {
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +02001329 inout RAN_register, RAN_register_imsi, RAN_unregister_imsi, RAN_register_handoverRequest,
1330 RAN_register_sccp_cr_without_payload, RAN_last_n_sd, RAN_continue_after_n_sd;
Harald Welte624f9632017-12-16 19:26:04 +01001331} with { extension "internal" };
1332
Harald Welte5b027622019-04-14 23:40:17 +02001333#ifdef RAN_EMULATION_BSSAP
Harald Welte624f9632017-12-16 19:26:04 +01001334/* CreateCallback that can be used as create_cb and will use the expectation table */
1335function ExpectedCreateCallback(BSSAP_N_CONNECT_ind conn_ind, charstring id)
Harald Welte6811d102019-04-14 22:23:14 +02001336runs on RAN_Emulation_CT return RAN_ConnHdlr {
1337 var RAN_ConnHdlr ret := null;
Harald Welte624f9632017-12-16 19:26:04 +01001338 var octetstring l3_info;
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001339 var boolean handoverRequest := false;
1340 var integer handoverRequestPointCode;
Harald Welte624f9632017-12-16 19:26:04 +01001341 var integer i;
1342
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001343 if (ischosen(conn_ind.userData.pdu.bssmap.completeLayer3Information)) {
1344 l3_info := conn_ind.userData.pdu.bssmap.completeLayer3Information.layer3Information.layer3info;
1345 log("ExpectedCreateCallback completeLayer3Information");
1346 } else if (ischosen(conn_ind.userData.pdu.bssmap.handoverRequest)) {
1347 handoverRequest := true;
1348 handoverRequestPointCode := bit2int(conn_ind.calledAddress.signPointCode);
1349 log("ExpectedCreateCallback handoverRequest ", handoverRequestPointCode);
1350 } else {
1351 setverdict(fail, "N-CONNECT.ind with L3 != COMPLETE L3 nor a Handover Request");
Daniel Willmanne4ff5372018-07-05 17:35:03 +02001352 mtc.stop;
Harald Welte624f9632017-12-16 19:26:04 +01001353 }
Harald Welte624f9632017-12-16 19:26:04 +01001354
1355 for (i := 0; i < sizeof(ExpectTable); i:= i+1) {
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001356 if (handoverRequest) {
1357 log("ExpectTable[", i, "].handoverRequestPointCode = ", ExpectTable[i].handoverRequestPointCode,
1358 " ==? ", handoverRequestPointCode);
1359 if (ExpectTable[i].handoverRequestPointCode == handoverRequestPointCode) {
1360 ret := ExpectTable[i].vc_conn;
1361 log("Found Expect[", i, "] for handoverRequest handled at ", ret);
1362 return ret;
1363 } else {
1364 continue;
1365 }
1366 }
Harald Welte624f9632017-12-16 19:26:04 +01001367 if (not ispresent(ExpectTable[i].l3_payload)) {
1368 continue;
1369 }
1370 if (l3_info == ExpectTable[i].l3_payload) {
1371 ret := ExpectTable[i].vc_conn;
1372 /* release this entry to be used again */
1373 ExpectTable[i].l3_payload := omit;
1374 ExpectTable[i].vc_conn := null;
1375 log("Found Expect[", i, "] for ", l3_info, " handled at ", ret);
1376 /* return the component reference */
1377 return ret;
1378 }
1379 }
1380 setverdict(fail, "Couldn't find Expect for incoming connection ", conn_ind);
Daniel Willmanne4ff5372018-07-05 17:35:03 +02001381 mtc.stop;
Harald Welte624f9632017-12-16 19:26:04 +01001382}
Harald Welte5b027622019-04-14 23:40:17 +02001383#endif
1384
1385#ifdef RAN_EMULATION_RANAP
1386/* CreateCallback that can be used as create_cb and will use the expectation table */
1387function RanapExpectedCreateCallback(RANAP_N_CONNECT_ind conn_ind, charstring id)
1388runs on RAN_Emulation_CT return RAN_ConnHdlr {
1389 var RAN_ConnHdlr ret := null;
1390 var template (omit) octetstring l3_info;
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +02001391 var boolean rx_sccp_cr_without_payload;
Harald Welte5b027622019-04-14 23:40:17 +02001392 var integer i;
1393
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +02001394 if (ispresent(conn_ind.userData)) {
1395 l3_info := f_ranap_extract_l3(conn_ind.userData);
1396 rx_sccp_cr_without_payload := false;
1397 if (istemplatekind(l3_info, "omit") and not rx_sccp_cr_without_payload) {
1398 setverdict(fail, "N-CONNECT.ind without NAS payload");
1399 mtc.stop;
1400 return ret;
1401 }
1402 } else {
1403 l3_info := omit;
1404 rx_sccp_cr_without_payload := true;
Harald Welte5b027622019-04-14 23:40:17 +02001405 }
1406
1407 for (i := 0; i < sizeof(ExpectTable); i:= i+1) {
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +02001408 if ((rx_sccp_cr_without_payload and ExpectTable[i].sccp_cr_without_payload)
1409 or (ispresent(ExpectTable[i].l3_payload) and valueof(l3_info) == ExpectTable[i].l3_payload)) {
Harald Welte5b027622019-04-14 23:40:17 +02001410 ret := ExpectTable[i].vc_conn;
1411 /* release this entry to be used again */
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +02001412 ExpectTable[i].sccp_cr_without_payload := false;
Harald Welte5b027622019-04-14 23:40:17 +02001413 ExpectTable[i].l3_payload := omit;
1414 ExpectTable[i].vc_conn := null;
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +02001415 log("Found Expect[", i, "] for l3=", l3_info, " handled at ", ret);
Harald Welte5b027622019-04-14 23:40:17 +02001416 /* return the component reference */
1417 return ret;
1418 }
1419 }
1420 setverdict(fail, "Couldn't find Expect for incoming connection ", conn_ind);
1421 mtc.stop;
1422 return ret;
1423}
1424#endif
Harald Welte624f9632017-12-16 19:26:04 +01001425
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001426private function f_create_expect(template octetstring l3, RAN_ConnHdlr hdlr,
1427 template integer handoverRequestPointCode := omit)
Harald Welte6811d102019-04-14 22:23:14 +02001428runs on RAN_Emulation_CT {
Harald Welte624f9632017-12-16 19:26:04 +01001429 var integer i;
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001430 log("f_create_expect(l3 := ", l3, ", handoverRequest := ", handoverRequestPointCode);
Harald Welte624f9632017-12-16 19:26:04 +01001431 for (i := 0; i < sizeof(ExpectTable); i := i+1) {
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001432 if (not ispresent(ExpectTable[i].l3_payload)
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +02001433 and not ExpectTable[i].sccp_cr_without_payload
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001434 and not ispresent(ExpectTable[i].handoverRequestPointCode)) {
1435 if (ispresent(l3)) {
1436 ExpectTable[i].l3_payload := valueof(l3);
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +02001437 } else {
1438 ExpectTable[i].sccp_cr_without_payload := true;
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001439 }
1440 if (ispresent(handoverRequestPointCode)) {
1441 ExpectTable[i].handoverRequestPointCode := valueof(handoverRequestPointCode);
1442 }
Harald Welte624f9632017-12-16 19:26:04 +01001443 ExpectTable[i].vc_conn := hdlr;
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001444 if (ispresent(handoverRequestPointCode)) {
1445 log("Created Expect[", i, "] for handoverRequest to be handled at ", hdlr);
1446 } else {
1447 log("Created Expect[", i, "] for ", l3, " to be handled at ", hdlr);
1448 }
Harald Welte624f9632017-12-16 19:26:04 +01001449 return;
1450 }
1451 }
Daniel Willmanne4ff5372018-07-05 17:35:03 +02001452 testcase.stop("No space left in ExpectTable");
Harald Welte624f9632017-12-16 19:26:04 +01001453}
1454
Harald Welte6811d102019-04-14 22:23:14 +02001455private function f_create_imsi(hexstring imsi, OCT4 tmsi, RAN_ConnHdlr hdlr)
1456runs on RAN_Emulation_CT {
Harald Welte17d21152018-01-27 00:47:11 +01001457 for (var integer i := 0; i < sizeof(ImsiTable); i := i+1) {
1458 if (not ispresent(ImsiTable[i].imsi)) {
1459 ImsiTable[i].imsi := imsi;
1460 ImsiTable[i].tmsi := tmsi;
1461 ImsiTable[i].comp_ref := hdlr;
1462 log("Created IMSI[", i, "] for ", imsi, tmsi, " to be handled at ", hdlr);
1463 return;
1464 }
1465 }
Daniel Willmanne4ff5372018-07-05 17:35:03 +02001466 testcase.stop("No space left in ImsiTable");
Harald Welte17d21152018-01-27 00:47:11 +01001467}
1468
Harald Welteee4d70c2022-05-16 21:29:19 +02001469private function f_destroy_imsi(hexstring imsi, RAN_ConnHdlr hdlr)
1470runs on RAN_Emulation_CT {
1471 for (var integer i := 0; i < sizeof(ImsiTable); i := i+1) {
1472 if (ImsiTable[i].imsi == imsi and ImsiTable[i].comp_ref == hdlr) {
1473 ImsiTable[i].comp_ref := null;
1474 ImsiTable[i].imsi := omit;
1475 ImsiTable[i].tmsi := 'FFFFFFFF'O;
1476 log("Removed IMSI[", i, "] for ", imsi, " to be handled at ", hdlr);
1477 return;
1478 }
1479 }
1480 testcase.stop("Unable to find to-be-destroyed IMSI in ImsiTable");
1481}
Harald Welte17d21152018-01-27 00:47:11 +01001482
Daniel Willmannd47106b2018-01-17 12:20:56 +01001483private function f_expect_table_init()
Harald Welte6811d102019-04-14 22:23:14 +02001484runs on RAN_Emulation_CT {
Daniel Willmannd47106b2018-01-17 12:20:56 +01001485 for (var integer i := 0; i < sizeof(ExpectTable); i := i+1) {
1486 ExpectTable[i].l3_payload := omit;
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001487 ExpectTable[i].handoverRequestPointCode := omit;
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +02001488 ExpectTable[i].sccp_cr_without_payload := false;
Daniel Willmannd47106b2018-01-17 12:20:56 +01001489 }
1490}
Harald Welte624f9632017-12-16 19:26:04 +01001491
Harald Welte17d21152018-01-27 00:47:11 +01001492/* helper function for clients to register their IMSI/TMSI */
Vadim Yanitskiyae747742020-01-10 00:23:10 +01001493function f_ran_register_imsi(hexstring imsi, template (omit) OCT4 tmsi_or_omit)
Harald Welte6811d102019-04-14 22:23:14 +02001494runs on RAN_ConnHdlr {
Vadim Yanitskiyae747742020-01-10 00:23:10 +01001495 var OCT4 tmsi;
1496
1497 /* Resolve omit to a special reserved value */
1498 if (istemplatekind(tmsi_or_omit, "omit")) {
1499 tmsi := 'FFFFFFFF'O;
1500 } else {
1501 tmsi := valueof(tmsi_or_omit);
1502 }
1503
Harald Welte6811d102019-04-14 22:23:14 +02001504 BSSAP_PROC.call(RAN_register_imsi:{imsi, tmsi, self}) {
1505 [] BSSAP_PROC.getreply(RAN_register_imsi:{?,?,?}) {};
Harald Welte17d21152018-01-27 00:47:11 +01001506 }
1507}
1508
Harald Welteee4d70c2022-05-16 21:29:19 +02001509/* helper function for clients to register their IMSI/TMSI */
1510function f_ran_unregister_imsi(hexstring imsi)
1511runs on RAN_ConnHdlr {
1512
1513 BSSAP_PROC.call(RAN_unregister_imsi:{imsi, self}) {
1514 [] BSSAP_PROC.getreply(RAN_unregister_imsi:{?,?}) {};
1515 }
1516}
1517
Harald Welte1e3bbbe2022-01-11 23:04:33 +01001518/* register an expect with the BSSMAP core */
1519function f_ran_register_exp(octetstring l3_enc) runs on RAN_ConnHdlr {
1520 BSSAP_PROC.call(RAN_register:{l3_enc, self}) {
1521 [] BSSAP_PROC.getreply(RAN_register:{?, ?}) {};
1522 }
1523}
1524
Neels Hofmeyrf0b9ed12022-06-07 17:46:32 +02001525function f_ran_register_sccp_cr_without_payload() runs on RAN_ConnHdlr {
1526 BSSAP_PROC.call(RAN_register_sccp_cr_without_payload:{self}) {
1527 [] BSSAP_PROC.getreply(RAN_register_sccp_cr_without_payload:{?}) {};
1528 }
1529}
1530
Harald Welte475a2c12019-05-02 19:05:48 +02001531#ifdef RAN_EMULATION_RANAP
1532/* expect a IuReleaseCommand; Confirm that; expect SCCP-level N-DISCONNET.ind */
1533altstep as_iu_release_compl_disc(float t := 5.0) runs on RAN_ConnHdlr {
1534 var RANAP_PDU ranap;
1535 [] BSSAP.receive(tr_RANAP_IuReleaseCommand(?)) {
1536 BSSAP.send(ts_RANAP_IuReleaseComplete);
1537 alt {
1538 [] BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_IND) {
1539 setverdict(pass);
1540 }
1541 [] BSSAP.receive {
1542 setverdict(fail, "Unexpected RANAP while waiting for SCCP Release ");
1543 mtc.stop;
1544 }
1545 }
1546 }
1547 [] BSSAP.receive(RANAP_PDU:?) -> value ranap{
1548 setverdict(fail, "Unexpected RANAP while waiting for IuReleaseCommand", ranap);
1549 mtc.stop;
1550 }
1551}
1552#endif
1553
Harald Welte17d21152018-01-27 00:47:11 +01001554
Harald Welte365f4ed2017-11-23 00:00:43 +01001555}