blob: 2d9effc413a10adfd7afacea7581d47aad4efb7a [file] [log] [blame]
Harald Welte365f4ed2017-11-23 00:00:43 +01001module BSSMAP_Emulation {
2
Harald Welte35bb7162018-01-03 21:07:52 +01003/* BSSMAP Emulation, runs on top of BSSAP_CodecPort. It multiplexes/demultiplexes
4 * the individual connections, so there can be separate TTCN-3 components handling
5 * each of the connections.
6 *
7 * The BSSMAP_Emulation.main() function processes SCCP primitives from the SCCP
8 * 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
11 * to the component running the BSSMAP_Emulation.main() function.
12 *
13 * For each new inbound connections, the BssmapOps.create_cb() is called. It can create
14 * 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 *
22 * Inbound Unit Data messages (such as are dispatched to the BssmapOps.unitdata_cb() callback,
23 * which is registered with an argument to the main() function below.
24 *
Harald Welte0b476062018-01-21 19:07:32 +010025 * (C) 2017-2018 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;
37import from BSSAP_Types all;
Harald Welte004f5fb2017-12-16 17:54:40 +010038import from BSSAP_CodecPort all;
Harald Welte365f4ed2017-11-23 00:00:43 +010039import from BSSMAP_Templates all;
Harald Weltec82eef42017-11-24 20:40:12 +010040import from MGCP_Types all;
41import from MGCP_Templates all;
42import from IPA_Emulation all;
Harald Welte0b476062018-01-21 19:07:32 +010043import from MobileL3_Types all;
Harald Welte365f4ed2017-11-23 00:00:43 +010044
45/* General "base class" component definition, of which specific implementations
46 * derive themselves by means of the "extends" feature */
47type component BSSAP_ConnHdlr {
48 /* port towards MSC Emulator core / SCCP connection dispatchar */
49 port BSSAP_Conn_PT BSSAP;
Harald Welteca519982018-01-21 19:28:26 +010050 /* procedure based port to register for incoming connections */
51 port BSSMAPEM_PROC_PT BSSAP_PROC;
Harald Welte365f4ed2017-11-23 00:00:43 +010052}
53
54/* Auxiliary primitive that can happen on the port between per-connection client and this dispatcher */
55type enumerated BSSAP_Conn_Prim {
56 /* SCCP tell us that connection was released */
57 MSC_CONN_PRIM_DISC_IND,
58 /* we tell SCCP to release connection */
Harald Welte71b69332018-01-21 20:43:53 +010059 MSC_CONN_PRIM_DISC_REQ,
60 /* Connection confirmed indication */
61 MSC_CONN_PRIM_CONF_IND
Harald Welte365f4ed2017-11-23 00:00:43 +010062}
63
Harald Welteb3414b22017-11-23 18:22:10 +010064type record BSSAP_Conn_Req {
65 SCCP_PAR_Address addr_peer,
66 SCCP_PAR_Address addr_own,
67 PDU_BSSAP bssap
68}
69
Harald Welte0b476062018-01-21 19:07:32 +010070/* similar to PDU_BSSAP with DTAP, but DTAP is already decoded! */
71type record PDU_DTAP_MO {
72 OCT1 dlci optional,
Daniel Willmann92f66272018-02-06 15:50:52 +010073 boolean skip_seq_patching optional,
Harald Welte0b476062018-01-21 19:07:32 +010074 PDU_ML3_MS_NW dtap
75}
76
77/* similar to PDU_BSSAP with DTAP, but DTAP is already decoded! */
78type record PDU_DTAP_MT {
79 OCT1 dlci optional,
80 PDU_ML3_NW_MS dtap
81}
82
83template PDU_DTAP_MT ts_PDU_DTAP_MT(template PDU_ML3_NW_MS dtap, template OCT1 dlci := omit) := {
84 dlci := dlci,
85 dtap := dtap
86}
87
Daniel Willmann92f66272018-02-06 15:50:52 +010088template 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 +010089 dlci := dlci,
Daniel Willmann92f66272018-02-06 15:50:52 +010090 skip_seq_patching := skip_seq_patching,
Harald Welte0b476062018-01-21 19:07:32 +010091 dtap := dtap
92}
93
94template PDU_DTAP_MT tr_PDU_DTAP_MT(template PDU_ML3_NW_MS dtap, template OCT1 dlci := *) := {
95 dlci := dlci,
96 dtap := dtap
97}
98
99template PDU_DTAP_MO tr_PDU_DTAP_MO(template PDU_ML3_MS_NW dtap, template OCT1 dlci := *) := {
100 dlci := dlci,
101 dtap := dtap
102}
103
104
Harald Welte365f4ed2017-11-23 00:00:43 +0100105/* port between individual per-connection components and this dispatcher */
106type port BSSAP_Conn_PT message {
Harald Weltea4ca4462018-02-09 00:17:14 +0100107 /* BSSAP or direct DTAP messages from/to clients */
108 inout PDU_BSSAP, PDU_DTAP_MO, PDU_DTAP_MT,
109 /* misc indications / requests between SCCP and client */
110 BSSAP_Conn_Prim,
111 /* Client requests us to create SCCP Connection */
112 BSSAP_Conn_Req,
113 /* MGCP, only used for IPA SCCPlite (MGCP in IPA mux) */
114 MgcpCommand, MgcpResponse;
Harald Welte365f4ed2017-11-23 00:00:43 +0100115} with { extension "internal" };
116
117
118/* represents a single BSSAP connection over SCCP */
119type record ConnectionData {
120 /* reference to the instance of the per-connection component */
121 BSSAP_ConnHdlr comp_ref,
Harald Weltec82eef42017-11-24 20:40:12 +0100122 integer sccp_conn_id,
123 /* most recent MGCP transaction ID (Used on MSC side) */
124 MgcpTransId mgcp_trans_id optional,
125 /* CIC that has been used for voice of this channel (BSC side) */
Harald Welte9dadc522018-02-06 13:56:04 +0100126 integer cic optional,
127 /* array of N(SD) values for MO DTAP messages, indexed by discriminator */
128 uint2_t n_sd[4]
Harald Welte365f4ed2017-11-23 00:00:43 +0100129}
130
Harald Welte17d21152018-01-27 00:47:11 +0100131type record ImsiMapping {
132 BSSAP_ConnHdlr comp_ref,
133 hexstring imsi optional,
134 OCT4 tmsi
135}
136
Harald Welte365f4ed2017-11-23 00:00:43 +0100137type component BSSMAP_Emulation_CT {
138 /* SCCP port on the bottom side, using ASP primitives */
Harald Welte004f5fb2017-12-16 17:54:40 +0100139 port BSSAP_CODEC_PT BSSAP;
Harald Welte365f4ed2017-11-23 00:00:43 +0100140 /* BSSAP port to the per-connection clients */
141 port BSSAP_Conn_PT CLIENT;
Harald Weltec82eef42017-11-24 20:40:12 +0100142 /* MGCP port */
143 port IPA_MGCP_PT MGCP;
Harald Welte365f4ed2017-11-23 00:00:43 +0100144
145 /* use 16 as this is also the number of SCCP connections that SCCP_Emulation can handle */
146 var ConnectionData ConnectionTable[16];
Harald Welte66fecd42017-11-24 23:53:23 +0100147
Harald Welte624f9632017-12-16 19:26:04 +0100148 /* pending expected incoming connections */
149 var ExpectData ExpectTable[8];
Harald Welte17d21152018-01-27 00:47:11 +0100150
151 /* tables for mapping inbound unitdata (like paging) */
152 var ImsiMapping ImsiTable[16];
153
Harald Welte624f9632017-12-16 19:26:04 +0100154 /* procedure based port to register for incoming connections */
155 port BSSMAPEM_PROC_PT PROC;
156
Harald Weltebe620f62017-11-25 00:23:54 +0100157 var charstring g_bssmap_id;
Harald Welte66fecd42017-11-24 23:53:23 +0100158 var integer g_next_e1_ts := 1;
Harald Welte0b476062018-01-21 19:07:32 +0100159 var BssmapOps g_bssmap_ops;
Harald Welte365f4ed2017-11-23 00:00:43 +0100160};
161
Harald Welteb3414b22017-11-23 18:22:10 +0100162private function f_conn_id_known(integer sccp_conn_id)
163runs on BSSMAP_Emulation_CT return boolean {
164 var integer i;
165 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
166 if (ConnectionTable[i].sccp_conn_id == sccp_conn_id){
167 return true;
168 }
169 }
170 return false;
171}
172
173private function f_comp_known(BSSAP_ConnHdlr client)
174runs on BSSMAP_Emulation_CT return boolean {
175 var integer i;
176 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
177 if (ConnectionTable[i].comp_ref == client) {
178 return true;
179 }
180 }
181 return false;
182}
Harald Welte365f4ed2017-11-23 00:00:43 +0100183
Harald Weltee98bb2e2017-11-29 12:09:48 +0100184private function f_cic_known(integer cic)
185runs on BSSMAP_Emulation_CT return boolean {
186 var integer i;
187 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
188 if (ConnectionTable[i].cic == cic) {
189 return true;
190 }
191 }
192 return false;
193}
194
Harald Welte365f4ed2017-11-23 00:00:43 +0100195/* resolve component reference by connection ID */
196private function f_comp_by_conn_id(integer sccp_conn_id)
197runs on BSSMAP_Emulation_CT return BSSAP_ConnHdlr {
198 var integer i;
199 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
200 if (ConnectionTable[i].sccp_conn_id == sccp_conn_id) {
201 return ConnectionTable[i].comp_ref;
202 }
203 }
204 log("BSSMAP Connection table not found by SCCP Connection ID ", sccp_conn_id);
Harald Welte9ca9eb12017-11-25 00:50:43 +0100205 setverdict(fail);
Harald Welte365f4ed2017-11-23 00:00:43 +0100206 self.stop;
207}
208
Harald Weltec82eef42017-11-24 20:40:12 +0100209/* resolve component reference by CIC */
210private function f_comp_by_mgcp_tid(MgcpTransId tid)
211runs on BSSMAP_Emulation_CT return BSSAP_ConnHdlr {
212 var integer i;
213 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
214 if (ConnectionTable[i].mgcp_trans_id == tid) {
215 return ConnectionTable[i].comp_ref;
216 }
217 }
218 log("BSSMAP Connection table not found by MGCP Transaction ID ", tid);
Harald Welte9ca9eb12017-11-25 00:50:43 +0100219 setverdict(fail);
Harald Weltec82eef42017-11-24 20:40:12 +0100220 self.stop;
221}
222
223private function f_comp_store_mgcp_tid(BSSAP_ConnHdlr client, MgcpTransId tid)
224runs on BSSMAP_Emulation_CT {
225 var integer i;
226 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
227 if (ConnectionTable[i].comp_ref == client) {
228 ConnectionTable[i].mgcp_trans_id := tid;
229 return;
230 }
231 }
232 log("BSSMAP Connection table not found by component ", client);
Harald Welte9ca9eb12017-11-25 00:50:43 +0100233 setverdict(fail);
Harald Weltec82eef42017-11-24 20:40:12 +0100234 self.stop;
235}
236
237private function f_comp_by_cic(integer cic)
238runs on BSSMAP_Emulation_CT return BSSAP_ConnHdlr {
239 var integer i;
240 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
241 if (ConnectionTable[i].cic == cic) {
242 return ConnectionTable[i].comp_ref;
243 }
244 }
245 log("BSSMAP Connection table not found by CIC ", cic);
Harald Welte9ca9eb12017-11-25 00:50:43 +0100246 setverdict(fail);
Harald Weltec82eef42017-11-24 20:40:12 +0100247 self.stop;
248}
249
250private function f_comp_store_cic(BSSAP_ConnHdlr client, integer cic)
251runs on BSSMAP_Emulation_CT {
252 var integer i;
253 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
254 if (ConnectionTable[i].comp_ref == client) {
255 ConnectionTable[i].cic := cic;
256 return;
257 }
258 }
259 log("BSSMAP Connection table not found by component ", client);
Harald Welte9ca9eb12017-11-25 00:50:43 +0100260 setverdict(fail);
Harald Weltec82eef42017-11-24 20:40:12 +0100261}
262
Harald Welte365f4ed2017-11-23 00:00:43 +0100263/* resolve connection ID by component reference */
264private function f_conn_id_by_comp(BSSAP_ConnHdlr client)
265runs on BSSMAP_Emulation_CT return integer {
266 for (var integer i := 0; i < sizeof(ConnectionTable); i := i+1) {
267 if (ConnectionTable[i].comp_ref == client) {
268 return ConnectionTable[i].sccp_conn_id;
269 }
270 }
271 log("BSSMAP Connection table not found by component ", client);
Harald Welte9ca9eb12017-11-25 00:50:43 +0100272 setverdict(fail);
Harald Welte365f4ed2017-11-23 00:00:43 +0100273 self.stop;
274}
275
Harald Welte9dadc522018-02-06 13:56:04 +0100276/* resolve ConnectionTable index component reference */
277private function f_idx_by_comp(BSSAP_ConnHdlr client)
278runs on BSSMAP_Emulation_CT return integer {
279 for (var integer i := 0; i < sizeof(ConnectionTable); i := i+1) {
280 if (ConnectionTable[i].comp_ref == client) {
281 return i;
282 }
283 }
284 log("BSSMAP Connection table not found by component ", client);
285 setverdict(fail);
286 self.stop;
287}
288
Harald Welteb3414b22017-11-23 18:22:10 +0100289private function f_gen_conn_id()
290runs on BSSMAP_Emulation_CT return integer {
291 var integer conn_id;
292
293 do {
294 conn_id := float2int(rnd()*SCCP_Emulation.tsp_max_ConnectionId);
295 } while (f_conn_id_known(conn_id) == true);
296
297 return conn_id;
298}
299
Harald Welte365f4ed2017-11-23 00:00:43 +0100300private function f_conn_table_init()
301runs on BSSMAP_Emulation_CT {
302 for (var integer i := 0; i < sizeof(ConnectionTable); i := i+1) {
303 ConnectionTable[i].comp_ref := null;
304 ConnectionTable[i].sccp_conn_id := -1;
Harald Weltec82eef42017-11-24 20:40:12 +0100305 ConnectionTable[i].mgcp_trans_id := omit;
306 ConnectionTable[i].cic := omit;
Harald Welte9dadc522018-02-06 13:56:04 +0100307 ConnectionTable[i].n_sd := { 0, 0, 0, 0 };
Harald Welte365f4ed2017-11-23 00:00:43 +0100308 }
Harald Welte17d21152018-01-27 00:47:11 +0100309 for (var integer i := 0; i < sizeof(ImsiTable); i := i+1) {
310 ImsiTable[i].comp_ref := null;
311 ImsiTable[i].imsi := omit;
312 ImsiTable[i].tmsi := 'FFFFFFFF'O;
313 }
Harald Welte365f4ed2017-11-23 00:00:43 +0100314}
315
316private function f_conn_table_add(BSSAP_ConnHdlr comp_ref, integer sccp_conn_id)
317runs on BSSMAP_Emulation_CT {
318 for (var integer i := 0; i < sizeof(ConnectionTable); i := i+1) {
319 if (ConnectionTable[i].sccp_conn_id == -1) {
320 ConnectionTable[i].comp_ref := comp_ref;
321 ConnectionTable[i].sccp_conn_id := sccp_conn_id;
Harald Welte9dadc522018-02-06 13:56:04 +0100322 ConnectionTable[i].n_sd := { 0, 0, 0, 0 };
Harald Welteb3414b22017-11-23 18:22:10 +0100323 log("Added conn table entry ", i, comp_ref, sccp_conn_id);
Harald Welte365f4ed2017-11-23 00:00:43 +0100324 return;
325 }
326 }
327 log("BSSMAP Connection table full!");
Harald Welte9ca9eb12017-11-25 00:50:43 +0100328 setverdict(fail);
Harald Welte365f4ed2017-11-23 00:00:43 +0100329 self.stop;
330}
331
332private function f_conn_table_del(integer sccp_conn_id)
333runs on BSSMAP_Emulation_CT {
334 for (var integer i := 0; i < sizeof(ConnectionTable); i := i+1) {
335 if (ConnectionTable[i].sccp_conn_id == sccp_conn_id) {
Harald Welteb3414b22017-11-23 18:22:10 +0100336 log("Deleted conn table entry ", i,
337 ConnectionTable[i].comp_ref, sccp_conn_id);
Harald Welte365f4ed2017-11-23 00:00:43 +0100338 ConnectionTable[i].sccp_conn_id := -1;
339 ConnectionTable[i].comp_ref := null;
Harald Welte0a4317a2017-11-25 00:32:46 +0100340 return
Harald Welte365f4ed2017-11-23 00:00:43 +0100341 }
342 }
343 log("BSSMAP Connection table attempt to delete non-existant ", sccp_conn_id);
Harald Welte9ca9eb12017-11-25 00:50:43 +0100344 setverdict(fail);
Harald Welte365f4ed2017-11-23 00:00:43 +0100345 self.stop;
346}
347
Harald Welte17d21152018-01-27 00:47:11 +0100348private function f_imsi_table_find(hexstring imsi, template OCT4 tmsi)
349runs on BSSMAP_Emulation_CT return BSSAP_ConnHdlr {
350 for (var integer i := 0; i < sizeof(ImsiTable); i := i+1) {
351 if (ImsiTable[i].imsi == imsi or
352 isvalue(tmsi) and match(ImsiTable[i].tmsi, tmsi)) {
353 return ImsiTable[i].comp_ref;
354 }
355 }
356 return null;
357}
358
Harald Welte365f4ed2017-11-23 00:00:43 +0100359/* handle (optional) userData portion of various primitives and dispatch it to the client */
Harald Welte004f5fb2017-12-16 17:54:40 +0100360private function f_handle_userData(BSSAP_ConnHdlr client, PDU_BSSAP bssap)
Harald Welte365f4ed2017-11-23 00:00:43 +0100361runs on BSSMAP_Emulation_CT {
Harald Welte365f4ed2017-11-23 00:00:43 +0100362 /* decode + send decoded BSSAP to client */
Harald Welte1b2748e2017-11-24 23:40:16 +0100363
Harald Welte473676b2018-01-27 20:38:01 +0100364 if (ischosen(bssap.pdu.bssmap)) {
365 /* BSC Side: If this is an assignment command, store CIC */
366 if (ischosen(bssap.pdu.bssmap.assignmentRequest) and
367 ispresent(bssap.pdu.bssmap.assignmentRequest.circuitIdentityCode)) {
368 var BSSMAP_IE_CircuitIdentityCode cic_ie :=
369 bssap.pdu.bssmap.assignmentRequest.circuitIdentityCode;
370 var integer cic := (oct2int(cic_ie.cicHigh) * 256) + oct2int(cic_ie.cicLow);
371 f_comp_store_cic(client, cic);
372 }
Harald Welte1b2748e2017-11-24 23:40:16 +0100373 }
374
Harald Welte0b476062018-01-21 19:07:32 +0100375 if (ischosen(bssap.pdu.dtap) and g_bssmap_ops.decode_dtap) {
376 if (g_bssmap_ops.role_ms) {
377 /* we are the MS, so any message to us must be MT */
378 var PDU_DTAP_MT mt := {
379 dlci := bssap.dlci,
380 dtap := dec_PDU_ML3_NW_MS(bssap.pdu.dtap)
381 };
382 CLIENT.send(mt) to client;
383 } else {
384 /* we are the Network, so any message to us must be MO */
385 var PDU_DTAP_MO mo := {
386 dlci := bssap.dlci,
387 dtap := dec_PDU_ML3_MS_NW(bssap.pdu.dtap)
388 };
389 CLIENT.send(mo) to client;
390 }
391 } else {
392 CLIENT.send(bssap) to client;
393 }
Harald Welte365f4ed2017-11-23 00:00:43 +0100394}
395
396/* call-back type, to be provided by specific implementation; called when new SCCP connection
397 * arrives */
Harald Welte004f5fb2017-12-16 17:54:40 +0100398type function BssmapCreateCallback(BSSAP_N_CONNECT_ind conn_ind, charstring id)
Harald Welte365f4ed2017-11-23 00:00:43 +0100399runs on BSSMAP_Emulation_CT return BSSAP_ConnHdlr;
400
401type function BssmapUnitdataCallback(PDU_BSSAP bssap)
402runs on BSSMAP_Emulation_CT return template PDU_BSSAP;
403
Harald Welte17d21152018-01-27 00:47:11 +0100404/* handle common Unitdata such as Paging */
405private function CommonBssmapUnitdataCallback(PDU_BSSAP bssap)
406runs on BSSMAP_Emulation_CT return template PDU_BSSAP {
407 if (match(bssap, tr_BSSMAP_Paging)) {
408 var BSSAP_ConnHdlr client := null;
409 client := f_imsi_table_find(bssap.pdu.bssmap.paging.iMSI.digits,
410 bssap.pdu.bssmap.paging.tMSI.tmsiOctets);
411 if (isvalue(client)) {
412 log("CommonBssmapUnitdataCallback: IMSI/TMSI found in table, dispatching to ",
413 client);
414 CLIENT.send(bssap) to client;
415 return omit;
416 }
417 log("CommonBssmapUnitdataCallback: IMSI/TMSI not found in table");
418 } else {
419 log("CommonBssmapUnitdataCallback: Not a paging message");
420 }
421 /* ELSE: handle in user callback */
422 return g_bssmap_ops.unitdata_cb.apply(bssap);
423}
424
Harald Welte365f4ed2017-11-23 00:00:43 +0100425type record BssmapOps {
426 BssmapCreateCallback create_cb,
Harald Welte0b476062018-01-21 19:07:32 +0100427 BssmapUnitdataCallback unitdata_cb,
428 boolean decode_dtap,
Harald Weltea4ca4462018-02-09 00:17:14 +0100429 boolean role_ms,
430 /* needed for performing BSSMAP RESET */
431 SCCP_PAR_Address sccp_addr_local optional,
432 SCCP_PAR_Address sccp_addr_peer optional
Harald Welte365f4ed2017-11-23 00:00:43 +0100433}
434
Harald Welte9dadc522018-02-06 13:56:04 +0100435template BIT4 t_ML3_DISC_CC_MM_SS := ('0011'B, '0101'B, '1011'B);
436
437/* patch N(SD) into enc_l3, according to 24.007 11.2.3.2 */
438function f_ML3_patch_seq(inout ConnectionData cd, in PDU_ML3_MS_NW dtap, inout octetstring enc_l3) {
439 var uint2_t seq_nr;
440 if (ischosen(dtap.msgs.cc) or ischosen(dtap.msgs.mm) or ischosen(dtap.msgs.ss)) {
441 seq_nr := cd.n_sd[0];
442 cd.n_sd[0] := (cd.n_sd[0] + 1) mod 4;
443 } else if (ischosen(dtap.msgs.gcc)) {
444 seq_nr := cd.n_sd[1];
445 cd.n_sd[1] := (cd.n_sd[1] + 1) mod 2;
446 } else if (ischosen(dtap.msgs.bcc)) {
447 seq_nr := cd.n_sd[2];
448 cd.n_sd[2] := (cd.n_sd[2] + 1) mod 2;
449 } else if (ischosen(dtap.msgs.loc)) {
450 seq_nr := cd.n_sd[3];
451 cd.n_sd[3] := (cd.n_sd[3] + 1) mod 2;
452 } else {
453 /* no sequence number to patch */
454 return;
455 }
456 log("patching N(SD)=", seq_nr, " into dtap ", enc_l3);
457 enc_l3[1] := (enc_l3[1] and4b '3f'O) or4b bit2oct(int2bit(seq_nr, 8) << 6);
458 log("patched enc_l3: ", enc_l3);
459}
460
Harald Welte49518bf2018-02-10 11:39:19 +0100461private function f_bssap_l3_is_rr(PDU_BSSAP bssap) return boolean {
462 var template octetstring l3 := f_bssap_extract_l3(bssap);
463 if (not isvalue(l3)) {
464 return false;
465 }
466 var octetstring l3v := valueof(l3);
Harald Welte96505f02018-03-18 21:31:07 +0100467 if (lengthof(l3v) < 1) {
468 return false;
469 }
Harald Welte49518bf2018-02-10 11:39:19 +0100470 /* lower 4 bits of first octet are protocol discriminator */
471 if ((oct2bit(l3v[0]) and4b '00001111'B) == '00000110'B) {
472 return true;
473 }
474 return false;
475}
476
Harald Weltea4ca4462018-02-09 00:17:14 +0100477private altstep as_reset_ack() runs on BSSMAP_Emulation_CT {
478 var BSSAP_N_UNITDATA_ind ud_ind;
479 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(?, ?, tr_BSSMAP_Reset)) -> value ud_ind {
480 log("Respoding to inbound RESET with RESET-ACK");
481 BSSAP.send(ts_BSSAP_UNITDATA_req(ud_ind.callingAddress, ud_ind.calledAddress,
482 ts_BSSMAP_ResetAck));
483 repeat;
484 }
485}
486
487
488private function f_bssap_wait_for_reset() runs on BSSMAP_Emulation_CT {
489 var BSSAP_N_UNITDATA_ind ud_ind;
490 timer T := 20.0;
491
492 T.start;
493 alt {
494 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(?, ?, tr_BSSMAP_Reset)) -> value ud_ind {
495 BSSAP.send(ts_BSSAP_UNITDATA_req(ud_ind.callingAddress, ud_ind.calledAddress,
496 ts_BSSMAP_ResetAck));
497 }
498 [] as_reset_ack();
499 [] BSSAP.receive {
500 repeat;
501 }
502 [] T.timeout {
503 setverdict(fail);
504 }
505 }
506}
507
508function f_bssap_reset(SCCP_PAR_Address peer, SCCP_PAR_Address own) runs on BSSMAP_Emulation_CT {
509 timer T := 5.0;
510
511 BSSAP.send(ts_BSSAP_UNITDATA_req(peer, own, ts_BSSMAP_Reset(0)));
512 T.start;
513 alt {
514 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(own, peer, tr_BSSMAP_ResetAck)) {
515 log("Received RESET-ACK in response to RESET, we're ready to go!");
516 }
517 [] as_reset_ack();
518 [] BSSAP.receive { repeat };
519 [] T.timeout { setverdict(fail, "Waiting for RESET-ACK after sending RESET"); }
520 }
521}
522
Harald Weltebe620f62017-11-25 00:23:54 +0100523function main(BssmapOps ops, charstring id) runs on BSSMAP_Emulation_CT {
Harald Welte365f4ed2017-11-23 00:00:43 +0100524
Harald Weltebe620f62017-11-25 00:23:54 +0100525 g_bssmap_id := id;
Harald Welte0b476062018-01-21 19:07:32 +0100526 g_bssmap_ops := ops;
Harald Welte365f4ed2017-11-23 00:00:43 +0100527 f_conn_table_init();
Daniel Willmannd47106b2018-01-17 12:20:56 +0100528 f_expect_table_init();
Harald Welte365f4ed2017-11-23 00:00:43 +0100529
Harald Weltea4ca4462018-02-09 00:17:14 +0100530 if (isvalue(ops.sccp_addr_peer) and isvalue(ops.sccp_addr_local)) {
Harald Welte7f582582018-02-14 20:20:11 +0100531 f_sleep(1.0); /* HACK to wait for M3UA/ASP to be ACTIVE */
Harald Weltea4ca4462018-02-09 00:17:14 +0100532 f_bssap_reset(ops.sccp_addr_peer, ops.sccp_addr_local);
533 }
534
Harald Welte365f4ed2017-11-23 00:00:43 +0100535 while (true) {
Harald Welte004f5fb2017-12-16 17:54:40 +0100536 var BSSAP_N_UNITDATA_ind ud_ind;
537 var BSSAP_N_CONNECT_ind conn_ind;
538 var BSSAP_N_CONNECT_cfm conn_cfm;
539 var BSSAP_N_DATA_ind data_ind;
540 var BSSAP_N_DISCONNECT_ind disc_ind;
Harald Welteb3414b22017-11-23 18:22:10 +0100541 var BSSAP_Conn_Req creq;
Harald Welte365f4ed2017-11-23 00:00:43 +0100542 var BSSAP_ConnHdlr vc_conn;
543 var PDU_BSSAP bssap;
Harald Welte0b476062018-01-21 19:07:32 +0100544 var PDU_DTAP_MO dtap_mo;
545 var PDU_DTAP_MT dtap_mt;
Harald Weltec82eef42017-11-24 20:40:12 +0100546 var MgcpCommand mgcp_req;
547 var MgcpResponse mgcp_resp;
Harald Welte624f9632017-12-16 19:26:04 +0100548 var BSSAP_ConnHdlr vc_hdlr;
549 var octetstring l3_info;
Harald Welte17d21152018-01-27 00:47:11 +0100550 var hexstring imsi;
551 var OCT4 tmsi;
Harald Welte365f4ed2017-11-23 00:00:43 +0100552
553 alt {
554 /* SCCP -> Client: UNIT-DATA (connectionless SCCP) from a BSC */
Harald Welte004f5fb2017-12-16 17:54:40 +0100555 [] BSSAP.receive(BSSAP_N_UNITDATA_ind:?) -> value ud_ind {
Harald Welte365f4ed2017-11-23 00:00:43 +0100556 /* Connectionless Procedures like RESET */
557 var template PDU_BSSAP resp;
Harald Welte17d21152018-01-27 00:47:11 +0100558 resp := CommonBssmapUnitdataCallback(ud_ind.userData);
Harald Welte365f4ed2017-11-23 00:00:43 +0100559 if (isvalue(resp)) {
Harald Welte004f5fb2017-12-16 17:54:40 +0100560 BSSAP.send(ts_BSSAP_UNITDATA_req(ud_ind.callingAddress,
561 ud_ind.calledAddress, resp));
Harald Welte365f4ed2017-11-23 00:00:43 +0100562 }
563 }
564
565 /* SCCP -> Client: new connection from BSC */
Harald Welte004f5fb2017-12-16 17:54:40 +0100566 [] BSSAP.receive(BSSAP_N_CONNECT_ind:?) -> value conn_ind {
Harald Weltebe620f62017-11-25 00:23:54 +0100567 vc_conn := ops.create_cb.apply(conn_ind, id);
Harald Welte365f4ed2017-11-23 00:00:43 +0100568 /* store mapping between client components and SCCP connectionId */
569 f_conn_table_add(vc_conn, conn_ind.connectionId);
570 /* handle user payload */
571 f_handle_userData(vc_conn, conn_ind.userData);
572 /* confirm connection establishment */
Harald Welte004f5fb2017-12-16 17:54:40 +0100573 BSSAP.send(ts_BSSAP_CONNECT_res(conn_ind.connectionId, omit));
Harald Welte365f4ed2017-11-23 00:00:43 +0100574 }
575
576 /* SCCP -> Client: connection-oriented data in existing connection */
Harald Welte004f5fb2017-12-16 17:54:40 +0100577 [] BSSAP.receive(BSSAP_N_DATA_ind:?) -> value data_ind {
Harald Welte365f4ed2017-11-23 00:00:43 +0100578 vc_conn := f_comp_by_conn_id(data_ind.connectionId);
Harald Welte5cc4aa22017-11-23 18:51:28 +0100579 if (ispresent(data_ind.userData)) {
580 f_handle_userData(vc_conn, data_ind.userData);
581 }
Harald Welte365f4ed2017-11-23 00:00:43 +0100582 }
583
584 /* SCCP -> Client: disconnect of an existing connection */
Harald Welte004f5fb2017-12-16 17:54:40 +0100585 [] BSSAP.receive(BSSAP_N_DISCONNECT_ind:?) -> value disc_ind {
Harald Welte365f4ed2017-11-23 00:00:43 +0100586 vc_conn := f_comp_by_conn_id(disc_ind.connectionId);
Harald Welte5cc4aa22017-11-23 18:51:28 +0100587 if (ispresent(disc_ind.userData)) {
588 f_handle_userData(vc_conn, disc_ind.userData);
589 }
Harald Welte365f4ed2017-11-23 00:00:43 +0100590 /* notify client about termination */
591 var BSSAP_Conn_Prim prim := MSC_CONN_PRIM_DISC_IND;
592 CLIENT.send(prim) to vc_conn;
593 f_conn_table_del(disc_ind.connectionId);
594 /* TOOD: return confirm to other side? */
595 }
596
Harald Welteb3414b22017-11-23 18:22:10 +0100597 /* SCCP -> Client: connection confirm for outbound connection */
Harald Welte004f5fb2017-12-16 17:54:40 +0100598 [] BSSAP.receive(BSSAP_N_CONNECT_cfm:?) -> value conn_cfm {
Harald Welte71b69332018-01-21 20:43:53 +0100599 vc_conn := f_comp_by_conn_id(conn_cfm.connectionId);
600 var BSSAP_Conn_Prim prim := MSC_CONN_PRIM_CONF_IND;
601 CLIENT.send(prim) to vc_conn;
Harald Welteb3414b22017-11-23 18:22:10 +0100602 /* handle user payload */
Harald Welte5cc4aa22017-11-23 18:51:28 +0100603 if (ispresent(conn_cfm.userData)) {
604 f_handle_userData(vc_conn, conn_cfm.userData);
605 }
Harald Welteb3414b22017-11-23 18:22:10 +0100606 }
607
Harald Welte365f4ed2017-11-23 00:00:43 +0100608 /* Disconnect request client -> SCCP */
609 [] CLIENT.receive(BSSAP_Conn_Prim:MSC_CONN_PRIM_DISC_REQ) -> sender vc_conn {
610 var integer conn_id := f_conn_id_by_comp(vc_conn);
Harald Welte004f5fb2017-12-16 17:54:40 +0100611 BSSAP.send(ts_BSSAP_DISC_req(conn_id, 0));
Harald Welte365f4ed2017-11-23 00:00:43 +0100612 f_conn_table_del(conn_id);
613 }
614
615 /* BSSAP from client -> SCCP */
Harald Welteb3414b22017-11-23 18:22:10 +0100616 [] CLIENT.receive(BSSAP_Conn_Req:?) -> value creq sender vc_conn {
617 var integer conn_id;
Harald Welte004f5fb2017-12-16 17:54:40 +0100618 /* send to dispatcher */
Harald Welteb3414b22017-11-23 18:22:10 +0100619
620 if (f_comp_known(vc_conn) == false) {
621 /* unknown client, create new connection */
622 conn_id := f_gen_conn_id();
623
624 /* store mapping between client components and SCCP connectionId */
625 f_conn_table_add(vc_conn, conn_id);
626
Harald Welte004f5fb2017-12-16 17:54:40 +0100627 BSSAP.send(ts_BSSAP_CONNECT_req(creq.addr_peer, creq.addr_own, conn_id,
628 creq.bssap));
Harald Welteb3414b22017-11-23 18:22:10 +0100629 } else {
630 /* known client, send via existing connection */
631 conn_id := f_conn_id_by_comp(vc_conn);
Harald Welte004f5fb2017-12-16 17:54:40 +0100632 BSSAP.send(ts_BSSAP_DATA_req(conn_id, creq.bssap));
Harald Welteb3414b22017-11-23 18:22:10 +0100633 }
634
Harald Welte49518bf2018-02-10 11:39:19 +0100635 /* InitialL3 contains RR (PAG RESP) or MM (CM SRV REQ), we must increment
636 * counter only on MM/CC/SS, but not on RR */
637 if (g_bssmap_ops.role_ms and not f_bssap_l3_is_rr(creq.bssap)) {
Harald Welte9dadc522018-02-06 13:56:04 +0100638 /* we have just sent the first MM message, increment the counter */
639 var integer idx := f_idx_by_comp(vc_conn);
640 ConnectionTable[idx].n_sd[0] := 1;
641 log("patch: N(SD) for ConnIdx ", idx, " set to 1");
642 }
643
Harald Welteb3414b22017-11-23 18:22:10 +0100644 }
645
Harald Welte365f4ed2017-11-23 00:00:43 +0100646 [] CLIENT.receive(PDU_BSSAP:?) -> value bssap sender vc_conn {
647 var integer conn_id := f_conn_id_by_comp(vc_conn);
Harald Welte004f5fb2017-12-16 17:54:40 +0100648 /* send it to dispatcher */
649 BSSAP.send(ts_BSSAP_DATA_req(conn_id, bssap));
Harald Welte365f4ed2017-11-23 00:00:43 +0100650 }
651
Harald Welte0b476062018-01-21 19:07:32 +0100652 [g_bssmap_ops.role_ms] CLIENT.receive(PDU_DTAP_MO:?) -> value dtap_mo sender vc_conn {
Harald Welte9dadc522018-02-06 13:56:04 +0100653 var integer idx := f_idx_by_comp(vc_conn);
Harald Welte0b476062018-01-21 19:07:32 +0100654 /* convert from decoded DTAP to encoded DTAP */
655 var octetstring l3_enc := enc_PDU_ML3_MS_NW(dtap_mo.dtap);
Harald Welte9dadc522018-02-06 13:56:04 +0100656 /* patch correct L3 send sequence number N(SD) into l3_enc */
Daniel Willmann92f66272018-02-06 15:50:52 +0100657 if (dtap_mo.skip_seq_patching == false) {
658 f_ML3_patch_seq(ConnectionTable[idx], dtap_mo.dtap, l3_enc);
659 }
Harald Welte0b476062018-01-21 19:07:32 +0100660 bssap := valueof(ts_BSSAP_DTAP(l3_enc, dtap_mo.dlci));
Harald Welte9dadc522018-02-06 13:56:04 +0100661 BSSAP.send(ts_BSSAP_DATA_req(ConnectionTable[idx].sccp_conn_id, bssap));
Harald Welte0b476062018-01-21 19:07:32 +0100662 }
663
664 [not g_bssmap_ops.role_ms] CLIENT.receive(PDU_DTAP_MT:?) -> value dtap_mt sender vc_conn {
665 var integer conn_id := f_conn_id_by_comp(vc_conn);
666 /* convert from decoded DTAP to encoded DTAP */
667 var octetstring l3_enc := enc_PDU_ML3_NW_MS(dtap_mt.dtap);
668 bssap := valueof(ts_BSSAP_DTAP(l3_enc, dtap_mo.dlci));
669 BSSAP.send(ts_BSSAP_DATA_req(conn_id, bssap));
670 }
671
672
Harald Weltec82eef42017-11-24 20:40:12 +0100673 /* Handling of MGCP in IPA SCCPLite case. This predates 3GPP AoIP
674 * and uses a MGCP session in parallel to BSSAP. BSSAP uses CIC
675 * as usual, and MGCP uses "CIC@mgw" endpoint naming, where CIC
676 * is printed as hex string, e.g. a@mgw for CIC 10 */
677
678 /* CLIENT -> MGCP */
679 [] CLIENT.receive(MgcpCommand:?) -> value mgcp_req sender vc_conn {
680 /* MGCP request from Handler (we're MSC) */
681 /* store the transaction ID we've seen */
682 f_comp_store_mgcp_tid(vc_conn, mgcp_req.line.trans_id);
683 /* simply forward any MGCP from the client to the port */
684 MGCP.send(mgcp_req);
685 }
686 [] CLIENT.receive(MgcpResponse:?) -> value mgcp_resp sender vc_conn {
687 /* MGCP response from Handler (we're BSC/MGW) */
688 /* simply forward any MGCP from the client to the port */
689 MGCP.send(mgcp_resp);
690 }
691
692 /* MGCP -> CLIENT */
693 [] MGCP.receive(MgcpCommand:?) -> value mgcp_req {
694 /* MGCP request from network side (we're BSC/MGW) */
695 /* Extract CIC from local part of endpoint name */
696 var integer cic := f_mgcp_ep_extract_cic(mgcp_req.line.ep);
Harald Weltee98bb2e2017-11-29 12:09:48 +0100697 if (match(mgcp_req, tr_RSIP) and f_cic_known(cic) == false) {
698 /* ignore RSIP for unknown CIC */
699 } else {
700 /* Resolve the vc_conn by the CIC */
701 vc_conn := f_comp_by_cic(cic);
702 CLIENT.send(mgcp_req) to vc_conn;
703 }
Harald Weltec82eef42017-11-24 20:40:12 +0100704 }
705 [] MGCP.receive(MgcpResponse:?) -> value mgcp_resp {
706 /* MGCP response from network side (we're MSC) */
707 /* Resolve the vc_conn by the transaction ID */
708 vc_conn := f_comp_by_mgcp_tid(mgcp_resp.line.trans_id);
709 CLIENT.send(mgcp_resp) to vc_conn;
710 }
711
Harald Welte624f9632017-12-16 19:26:04 +0100712
713 [] PROC.getcall(BSSMAPEM_register:{?,?}) -> param(l3_info, vc_hdlr) {
714 f_create_expect(l3_info, vc_hdlr);
715 PROC.reply(BSSMAPEM_register:{l3_info, vc_hdlr});
716 }
717
Harald Welte17d21152018-01-27 00:47:11 +0100718 [] PROC.getcall(BSSMAPEM_register_imsi:{?,?,?}) -> param(imsi, tmsi, vc_hdlr) {
719 f_create_imsi(imsi, tmsi, vc_hdlr);
720 PROC.reply(BSSMAPEM_register_imsi:{imsi, tmsi, vc_hdlr});
721 }
722
723
Harald Welte365f4ed2017-11-23 00:00:43 +0100724 }
725 }
726}
727
Harald Weltec82eef42017-11-24 20:40:12 +0100728private function f_mgcp_ep_extract_cic(charstring inp) return integer {
Harald Welte525a9c12017-11-24 23:40:41 +0100729 var charstring local_part := regexp(inp, "(*)@*", 0);
Harald Weltec82eef42017-11-24 20:40:12 +0100730 return hex2int(str2hex(local_part));
731
732}
Harald Welte365f4ed2017-11-23 00:00:43 +0100733
Harald Welte624f9632017-12-16 19:26:04 +0100734/***********************************************************************
735 * "Expect" Handling (mapping for expected incoming SCCP connections)
736 ***********************************************************************/
737
738/* data about an expected future incoming connection */
739type record ExpectData {
740 /* L3 payload based on which we can match it */
741 octetstring l3_payload optional,
742 /* component reference for this connection */
743 BSSAP_ConnHdlr vc_conn
744}
745
746/* procedure based port to register for incoming connections */
747signature BSSMAPEM_register(in octetstring l3, in BSSAP_ConnHdlr hdlr);
748
Harald Welte17d21152018-01-27 00:47:11 +0100749/* procedure based port to register for incoming IMSI/TMSI */
750signature BSSMAPEM_register_imsi(in hexstring imsi, in OCT4 tmsi, in BSSAP_ConnHdlr hdlr);
751
Harald Welte624f9632017-12-16 19:26:04 +0100752type port BSSMAPEM_PROC_PT procedure {
Harald Welte17d21152018-01-27 00:47:11 +0100753 inout BSSMAPEM_register, BSSMAPEM_register_imsi;
Harald Welte624f9632017-12-16 19:26:04 +0100754} with { extension "internal" };
755
756/* CreateCallback that can be used as create_cb and will use the expectation table */
757function ExpectedCreateCallback(BSSAP_N_CONNECT_ind conn_ind, charstring id)
758runs on BSSMAP_Emulation_CT return BSSAP_ConnHdlr {
759 var BSSAP_ConnHdlr ret := null;
760 var octetstring l3_info;
761 var integer i;
762
763 if (not ischosen(conn_ind.userData.pdu.bssmap.completeLayer3Information)) {
764 setverdict(fail, "N-CONNECT.ind with L3 != COMPLETE L3");
765 return ret;
766 }
767 l3_info := conn_ind.userData.pdu.bssmap.completeLayer3Information.layer3Information.layer3info;
768
769 for (i := 0; i < sizeof(ExpectTable); i:= i+1) {
770 if (not ispresent(ExpectTable[i].l3_payload)) {
771 continue;
772 }
773 if (l3_info == ExpectTable[i].l3_payload) {
774 ret := ExpectTable[i].vc_conn;
775 /* release this entry to be used again */
776 ExpectTable[i].l3_payload := omit;
777 ExpectTable[i].vc_conn := null;
778 log("Found Expect[", i, "] for ", l3_info, " handled at ", ret);
779 /* return the component reference */
780 return ret;
781 }
782 }
783 setverdict(fail, "Couldn't find Expect for incoming connection ", conn_ind);
784 return ret;
785}
786
787private function f_create_expect(octetstring l3, BSSAP_ConnHdlr hdlr)
788runs on BSSMAP_Emulation_CT {
789 var integer i;
790 for (i := 0; i < sizeof(ExpectTable); i := i+1) {
791 if (not ispresent(ExpectTable[i].l3_payload)) {
792 ExpectTable[i].l3_payload := l3;
793 ExpectTable[i].vc_conn := hdlr;
794 log("Created Expect[", i, "] for ", l3, " to be handled at ", hdlr);
795 return;
796 }
797 }
798 setverdict(fail, "No space left in ExpectTable");
799}
800
Harald Welte17d21152018-01-27 00:47:11 +0100801private function f_create_imsi(hexstring imsi, OCT4 tmsi, BSSAP_ConnHdlr hdlr)
802runs on BSSMAP_Emulation_CT {
803 for (var integer i := 0; i < sizeof(ImsiTable); i := i+1) {
804 if (not ispresent(ImsiTable[i].imsi)) {
805 ImsiTable[i].imsi := imsi;
806 ImsiTable[i].tmsi := tmsi;
807 ImsiTable[i].comp_ref := hdlr;
808 log("Created IMSI[", i, "] for ", imsi, tmsi, " to be handled at ", hdlr);
809 return;
810 }
811 }
812 setverdict(fail, "No space left in ImsiTable");
813 self.stop;
814}
815
816
Daniel Willmannd47106b2018-01-17 12:20:56 +0100817private function f_expect_table_init()
818runs on BSSMAP_Emulation_CT {
819 for (var integer i := 0; i < sizeof(ExpectTable); i := i+1) {
820 ExpectTable[i].l3_payload := omit;
821 }
822}
Harald Welte624f9632017-12-16 19:26:04 +0100823
Harald Welte17d21152018-01-27 00:47:11 +0100824/* helper function for clients to register their IMSI/TMSI */
825function f_bssmap_register_imsi(hexstring imsi, OCT4 tmsi)
826runs on BSSAP_ConnHdlr {
827 BSSAP_PROC.call(BSSMAPEM_register_imsi:{imsi, tmsi, self}) {
828 [] BSSAP_PROC.getreply(BSSMAPEM_register_imsi:{?,?,?}) {};
829 }
830}
831
832
Harald Welte365f4ed2017-11-23 00:00:43 +0100833}