blob: 5f8fe4fae36775e0d78ecb9384706d310127ba06 [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);
467 /* lower 4 bits of first octet are protocol discriminator */
468 if ((oct2bit(l3v[0]) and4b '00001111'B) == '00000110'B) {
469 return true;
470 }
471 return false;
472}
473
Harald Weltea4ca4462018-02-09 00:17:14 +0100474private altstep as_reset_ack() runs on BSSMAP_Emulation_CT {
475 var BSSAP_N_UNITDATA_ind ud_ind;
476 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(?, ?, tr_BSSMAP_Reset)) -> value ud_ind {
477 log("Respoding to inbound RESET with RESET-ACK");
478 BSSAP.send(ts_BSSAP_UNITDATA_req(ud_ind.callingAddress, ud_ind.calledAddress,
479 ts_BSSMAP_ResetAck));
480 repeat;
481 }
482}
483
484
485private function f_bssap_wait_for_reset() runs on BSSMAP_Emulation_CT {
486 var BSSAP_N_UNITDATA_ind ud_ind;
487 timer T := 20.0;
488
489 T.start;
490 alt {
491 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(?, ?, tr_BSSMAP_Reset)) -> value ud_ind {
492 BSSAP.send(ts_BSSAP_UNITDATA_req(ud_ind.callingAddress, ud_ind.calledAddress,
493 ts_BSSMAP_ResetAck));
494 }
495 [] as_reset_ack();
496 [] BSSAP.receive {
497 repeat;
498 }
499 [] T.timeout {
500 setverdict(fail);
501 }
502 }
503}
504
505function f_bssap_reset(SCCP_PAR_Address peer, SCCP_PAR_Address own) runs on BSSMAP_Emulation_CT {
506 timer T := 5.0;
507
508 BSSAP.send(ts_BSSAP_UNITDATA_req(peer, own, ts_BSSMAP_Reset(0)));
509 T.start;
510 alt {
511 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(own, peer, tr_BSSMAP_ResetAck)) {
512 log("Received RESET-ACK in response to RESET, we're ready to go!");
513 }
514 [] as_reset_ack();
515 [] BSSAP.receive { repeat };
516 [] T.timeout { setverdict(fail, "Waiting for RESET-ACK after sending RESET"); }
517 }
518}
519
Harald Weltebe620f62017-11-25 00:23:54 +0100520function main(BssmapOps ops, charstring id) runs on BSSMAP_Emulation_CT {
Harald Welte365f4ed2017-11-23 00:00:43 +0100521
Harald Weltebe620f62017-11-25 00:23:54 +0100522 g_bssmap_id := id;
Harald Welte0b476062018-01-21 19:07:32 +0100523 g_bssmap_ops := ops;
Harald Welte365f4ed2017-11-23 00:00:43 +0100524 f_conn_table_init();
Daniel Willmannd47106b2018-01-17 12:20:56 +0100525 f_expect_table_init();
Harald Welte365f4ed2017-11-23 00:00:43 +0100526
Harald Weltea4ca4462018-02-09 00:17:14 +0100527 if (isvalue(ops.sccp_addr_peer) and isvalue(ops.sccp_addr_local)) {
Harald Welte7f582582018-02-14 20:20:11 +0100528 f_sleep(1.0); /* HACK to wait for M3UA/ASP to be ACTIVE */
Harald Weltea4ca4462018-02-09 00:17:14 +0100529 f_bssap_reset(ops.sccp_addr_peer, ops.sccp_addr_local);
530 }
531
Harald Welte365f4ed2017-11-23 00:00:43 +0100532 while (true) {
Harald Welte004f5fb2017-12-16 17:54:40 +0100533 var BSSAP_N_UNITDATA_ind ud_ind;
534 var BSSAP_N_CONNECT_ind conn_ind;
535 var BSSAP_N_CONNECT_cfm conn_cfm;
536 var BSSAP_N_DATA_ind data_ind;
537 var BSSAP_N_DISCONNECT_ind disc_ind;
Harald Welteb3414b22017-11-23 18:22:10 +0100538 var BSSAP_Conn_Req creq;
Harald Welte365f4ed2017-11-23 00:00:43 +0100539 var BSSAP_ConnHdlr vc_conn;
540 var PDU_BSSAP bssap;
Harald Welte0b476062018-01-21 19:07:32 +0100541 var PDU_DTAP_MO dtap_mo;
542 var PDU_DTAP_MT dtap_mt;
Harald Weltec82eef42017-11-24 20:40:12 +0100543 var MgcpCommand mgcp_req;
544 var MgcpResponse mgcp_resp;
Harald Welte624f9632017-12-16 19:26:04 +0100545 var BSSAP_ConnHdlr vc_hdlr;
546 var octetstring l3_info;
Harald Welte17d21152018-01-27 00:47:11 +0100547 var hexstring imsi;
548 var OCT4 tmsi;
Harald Welte365f4ed2017-11-23 00:00:43 +0100549
550 alt {
551 /* SCCP -> Client: UNIT-DATA (connectionless SCCP) from a BSC */
Harald Welte004f5fb2017-12-16 17:54:40 +0100552 [] BSSAP.receive(BSSAP_N_UNITDATA_ind:?) -> value ud_ind {
Harald Welte365f4ed2017-11-23 00:00:43 +0100553 /* Connectionless Procedures like RESET */
554 var template PDU_BSSAP resp;
Harald Welte17d21152018-01-27 00:47:11 +0100555 resp := CommonBssmapUnitdataCallback(ud_ind.userData);
Harald Welte365f4ed2017-11-23 00:00:43 +0100556 if (isvalue(resp)) {
Harald Welte004f5fb2017-12-16 17:54:40 +0100557 BSSAP.send(ts_BSSAP_UNITDATA_req(ud_ind.callingAddress,
558 ud_ind.calledAddress, resp));
Harald Welte365f4ed2017-11-23 00:00:43 +0100559 }
560 }
561
562 /* SCCP -> Client: new connection from BSC */
Harald Welte004f5fb2017-12-16 17:54:40 +0100563 [] BSSAP.receive(BSSAP_N_CONNECT_ind:?) -> value conn_ind {
Harald Weltebe620f62017-11-25 00:23:54 +0100564 vc_conn := ops.create_cb.apply(conn_ind, id);
Harald Welte365f4ed2017-11-23 00:00:43 +0100565 /* store mapping between client components and SCCP connectionId */
566 f_conn_table_add(vc_conn, conn_ind.connectionId);
567 /* handle user payload */
568 f_handle_userData(vc_conn, conn_ind.userData);
569 /* confirm connection establishment */
Harald Welte004f5fb2017-12-16 17:54:40 +0100570 BSSAP.send(ts_BSSAP_CONNECT_res(conn_ind.connectionId, omit));
Harald Welte365f4ed2017-11-23 00:00:43 +0100571 }
572
573 /* SCCP -> Client: connection-oriented data in existing connection */
Harald Welte004f5fb2017-12-16 17:54:40 +0100574 [] BSSAP.receive(BSSAP_N_DATA_ind:?) -> value data_ind {
Harald Welte365f4ed2017-11-23 00:00:43 +0100575 vc_conn := f_comp_by_conn_id(data_ind.connectionId);
Harald Welte5cc4aa22017-11-23 18:51:28 +0100576 if (ispresent(data_ind.userData)) {
577 f_handle_userData(vc_conn, data_ind.userData);
578 }
Harald Welte365f4ed2017-11-23 00:00:43 +0100579 }
580
581 /* SCCP -> Client: disconnect of an existing connection */
Harald Welte004f5fb2017-12-16 17:54:40 +0100582 [] BSSAP.receive(BSSAP_N_DISCONNECT_ind:?) -> value disc_ind {
Harald Welte365f4ed2017-11-23 00:00:43 +0100583 vc_conn := f_comp_by_conn_id(disc_ind.connectionId);
Harald Welte5cc4aa22017-11-23 18:51:28 +0100584 if (ispresent(disc_ind.userData)) {
585 f_handle_userData(vc_conn, disc_ind.userData);
586 }
Harald Welte365f4ed2017-11-23 00:00:43 +0100587 /* notify client about termination */
588 var BSSAP_Conn_Prim prim := MSC_CONN_PRIM_DISC_IND;
589 CLIENT.send(prim) to vc_conn;
590 f_conn_table_del(disc_ind.connectionId);
591 /* TOOD: return confirm to other side? */
592 }
593
Harald Welteb3414b22017-11-23 18:22:10 +0100594 /* SCCP -> Client: connection confirm for outbound connection */
Harald Welte004f5fb2017-12-16 17:54:40 +0100595 [] BSSAP.receive(BSSAP_N_CONNECT_cfm:?) -> value conn_cfm {
Harald Welte71b69332018-01-21 20:43:53 +0100596 vc_conn := f_comp_by_conn_id(conn_cfm.connectionId);
597 var BSSAP_Conn_Prim prim := MSC_CONN_PRIM_CONF_IND;
598 CLIENT.send(prim) to vc_conn;
Harald Welteb3414b22017-11-23 18:22:10 +0100599 /* handle user payload */
Harald Welte5cc4aa22017-11-23 18:51:28 +0100600 if (ispresent(conn_cfm.userData)) {
601 f_handle_userData(vc_conn, conn_cfm.userData);
602 }
Harald Welteb3414b22017-11-23 18:22:10 +0100603 }
604
Harald Welte365f4ed2017-11-23 00:00:43 +0100605 /* Disconnect request client -> SCCP */
606 [] CLIENT.receive(BSSAP_Conn_Prim:MSC_CONN_PRIM_DISC_REQ) -> sender vc_conn {
607 var integer conn_id := f_conn_id_by_comp(vc_conn);
Harald Welte004f5fb2017-12-16 17:54:40 +0100608 BSSAP.send(ts_BSSAP_DISC_req(conn_id, 0));
Harald Welte365f4ed2017-11-23 00:00:43 +0100609 f_conn_table_del(conn_id);
610 }
611
612 /* BSSAP from client -> SCCP */
Harald Welteb3414b22017-11-23 18:22:10 +0100613 [] CLIENT.receive(BSSAP_Conn_Req:?) -> value creq sender vc_conn {
614 var integer conn_id;
Harald Welte004f5fb2017-12-16 17:54:40 +0100615 /* send to dispatcher */
Harald Welteb3414b22017-11-23 18:22:10 +0100616
617 if (f_comp_known(vc_conn) == false) {
618 /* unknown client, create new connection */
619 conn_id := f_gen_conn_id();
620
621 /* store mapping between client components and SCCP connectionId */
622 f_conn_table_add(vc_conn, conn_id);
623
Harald Welte004f5fb2017-12-16 17:54:40 +0100624 BSSAP.send(ts_BSSAP_CONNECT_req(creq.addr_peer, creq.addr_own, conn_id,
625 creq.bssap));
Harald Welteb3414b22017-11-23 18:22:10 +0100626 } else {
627 /* known client, send via existing connection */
628 conn_id := f_conn_id_by_comp(vc_conn);
Harald Welte004f5fb2017-12-16 17:54:40 +0100629 BSSAP.send(ts_BSSAP_DATA_req(conn_id, creq.bssap));
Harald Welteb3414b22017-11-23 18:22:10 +0100630 }
631
Harald Welte49518bf2018-02-10 11:39:19 +0100632 /* InitialL3 contains RR (PAG RESP) or MM (CM SRV REQ), we must increment
633 * counter only on MM/CC/SS, but not on RR */
634 if (g_bssmap_ops.role_ms and not f_bssap_l3_is_rr(creq.bssap)) {
Harald Welte9dadc522018-02-06 13:56:04 +0100635 /* we have just sent the first MM message, increment the counter */
636 var integer idx := f_idx_by_comp(vc_conn);
637 ConnectionTable[idx].n_sd[0] := 1;
638 log("patch: N(SD) for ConnIdx ", idx, " set to 1");
639 }
640
Harald Welteb3414b22017-11-23 18:22:10 +0100641 }
642
Harald Welte365f4ed2017-11-23 00:00:43 +0100643 [] CLIENT.receive(PDU_BSSAP:?) -> value bssap sender vc_conn {
644 var integer conn_id := f_conn_id_by_comp(vc_conn);
Harald Welte004f5fb2017-12-16 17:54:40 +0100645 /* send it to dispatcher */
646 BSSAP.send(ts_BSSAP_DATA_req(conn_id, bssap));
Harald Welte365f4ed2017-11-23 00:00:43 +0100647 }
648
Harald Welte0b476062018-01-21 19:07:32 +0100649 [g_bssmap_ops.role_ms] CLIENT.receive(PDU_DTAP_MO:?) -> value dtap_mo sender vc_conn {
Harald Welte9dadc522018-02-06 13:56:04 +0100650 var integer idx := f_idx_by_comp(vc_conn);
Harald Welte0b476062018-01-21 19:07:32 +0100651 /* convert from decoded DTAP to encoded DTAP */
652 var octetstring l3_enc := enc_PDU_ML3_MS_NW(dtap_mo.dtap);
Harald Welte9dadc522018-02-06 13:56:04 +0100653 /* patch correct L3 send sequence number N(SD) into l3_enc */
Daniel Willmann92f66272018-02-06 15:50:52 +0100654 if (dtap_mo.skip_seq_patching == false) {
655 f_ML3_patch_seq(ConnectionTable[idx], dtap_mo.dtap, l3_enc);
656 }
Harald Welte0b476062018-01-21 19:07:32 +0100657 bssap := valueof(ts_BSSAP_DTAP(l3_enc, dtap_mo.dlci));
Harald Welte9dadc522018-02-06 13:56:04 +0100658 BSSAP.send(ts_BSSAP_DATA_req(ConnectionTable[idx].sccp_conn_id, bssap));
Harald Welte0b476062018-01-21 19:07:32 +0100659 }
660
661 [not g_bssmap_ops.role_ms] CLIENT.receive(PDU_DTAP_MT:?) -> value dtap_mt sender vc_conn {
662 var integer conn_id := f_conn_id_by_comp(vc_conn);
663 /* convert from decoded DTAP to encoded DTAP */
664 var octetstring l3_enc := enc_PDU_ML3_NW_MS(dtap_mt.dtap);
665 bssap := valueof(ts_BSSAP_DTAP(l3_enc, dtap_mo.dlci));
666 BSSAP.send(ts_BSSAP_DATA_req(conn_id, bssap));
667 }
668
669
Harald Weltec82eef42017-11-24 20:40:12 +0100670 /* Handling of MGCP in IPA SCCPLite case. This predates 3GPP AoIP
671 * and uses a MGCP session in parallel to BSSAP. BSSAP uses CIC
672 * as usual, and MGCP uses "CIC@mgw" endpoint naming, where CIC
673 * is printed as hex string, e.g. a@mgw for CIC 10 */
674
675 /* CLIENT -> MGCP */
676 [] CLIENT.receive(MgcpCommand:?) -> value mgcp_req sender vc_conn {
677 /* MGCP request from Handler (we're MSC) */
678 /* store the transaction ID we've seen */
679 f_comp_store_mgcp_tid(vc_conn, mgcp_req.line.trans_id);
680 /* simply forward any MGCP from the client to the port */
681 MGCP.send(mgcp_req);
682 }
683 [] CLIENT.receive(MgcpResponse:?) -> value mgcp_resp sender vc_conn {
684 /* MGCP response from Handler (we're BSC/MGW) */
685 /* simply forward any MGCP from the client to the port */
686 MGCP.send(mgcp_resp);
687 }
688
689 /* MGCP -> CLIENT */
690 [] MGCP.receive(MgcpCommand:?) -> value mgcp_req {
691 /* MGCP request from network side (we're BSC/MGW) */
692 /* Extract CIC from local part of endpoint name */
693 var integer cic := f_mgcp_ep_extract_cic(mgcp_req.line.ep);
Harald Weltee98bb2e2017-11-29 12:09:48 +0100694 if (match(mgcp_req, tr_RSIP) and f_cic_known(cic) == false) {
695 /* ignore RSIP for unknown CIC */
696 } else {
697 /* Resolve the vc_conn by the CIC */
698 vc_conn := f_comp_by_cic(cic);
699 CLIENT.send(mgcp_req) to vc_conn;
700 }
Harald Weltec82eef42017-11-24 20:40:12 +0100701 }
702 [] MGCP.receive(MgcpResponse:?) -> value mgcp_resp {
703 /* MGCP response from network side (we're MSC) */
704 /* Resolve the vc_conn by the transaction ID */
705 vc_conn := f_comp_by_mgcp_tid(mgcp_resp.line.trans_id);
706 CLIENT.send(mgcp_resp) to vc_conn;
707 }
708
Harald Welte624f9632017-12-16 19:26:04 +0100709
710 [] PROC.getcall(BSSMAPEM_register:{?,?}) -> param(l3_info, vc_hdlr) {
711 f_create_expect(l3_info, vc_hdlr);
712 PROC.reply(BSSMAPEM_register:{l3_info, vc_hdlr});
713 }
714
Harald Welte17d21152018-01-27 00:47:11 +0100715 [] PROC.getcall(BSSMAPEM_register_imsi:{?,?,?}) -> param(imsi, tmsi, vc_hdlr) {
716 f_create_imsi(imsi, tmsi, vc_hdlr);
717 PROC.reply(BSSMAPEM_register_imsi:{imsi, tmsi, vc_hdlr});
718 }
719
720
Harald Welte365f4ed2017-11-23 00:00:43 +0100721 }
722 }
723}
724
Harald Weltec82eef42017-11-24 20:40:12 +0100725private function f_mgcp_ep_extract_cic(charstring inp) return integer {
Harald Welte525a9c12017-11-24 23:40:41 +0100726 var charstring local_part := regexp(inp, "(*)@*", 0);
Harald Weltec82eef42017-11-24 20:40:12 +0100727 return hex2int(str2hex(local_part));
728
729}
Harald Welte365f4ed2017-11-23 00:00:43 +0100730
Harald Welte624f9632017-12-16 19:26:04 +0100731/***********************************************************************
732 * "Expect" Handling (mapping for expected incoming SCCP connections)
733 ***********************************************************************/
734
735/* data about an expected future incoming connection */
736type record ExpectData {
737 /* L3 payload based on which we can match it */
738 octetstring l3_payload optional,
739 /* component reference for this connection */
740 BSSAP_ConnHdlr vc_conn
741}
742
743/* procedure based port to register for incoming connections */
744signature BSSMAPEM_register(in octetstring l3, in BSSAP_ConnHdlr hdlr);
745
Harald Welte17d21152018-01-27 00:47:11 +0100746/* procedure based port to register for incoming IMSI/TMSI */
747signature BSSMAPEM_register_imsi(in hexstring imsi, in OCT4 tmsi, in BSSAP_ConnHdlr hdlr);
748
Harald Welte624f9632017-12-16 19:26:04 +0100749type port BSSMAPEM_PROC_PT procedure {
Harald Welte17d21152018-01-27 00:47:11 +0100750 inout BSSMAPEM_register, BSSMAPEM_register_imsi;
Harald Welte624f9632017-12-16 19:26:04 +0100751} with { extension "internal" };
752
753/* CreateCallback that can be used as create_cb and will use the expectation table */
754function ExpectedCreateCallback(BSSAP_N_CONNECT_ind conn_ind, charstring id)
755runs on BSSMAP_Emulation_CT return BSSAP_ConnHdlr {
756 var BSSAP_ConnHdlr ret := null;
757 var octetstring l3_info;
758 var integer i;
759
760 if (not ischosen(conn_ind.userData.pdu.bssmap.completeLayer3Information)) {
761 setverdict(fail, "N-CONNECT.ind with L3 != COMPLETE L3");
762 return ret;
763 }
764 l3_info := conn_ind.userData.pdu.bssmap.completeLayer3Information.layer3Information.layer3info;
765
766 for (i := 0; i < sizeof(ExpectTable); i:= i+1) {
767 if (not ispresent(ExpectTable[i].l3_payload)) {
768 continue;
769 }
770 if (l3_info == ExpectTable[i].l3_payload) {
771 ret := ExpectTable[i].vc_conn;
772 /* release this entry to be used again */
773 ExpectTable[i].l3_payload := omit;
774 ExpectTable[i].vc_conn := null;
775 log("Found Expect[", i, "] for ", l3_info, " handled at ", ret);
776 /* return the component reference */
777 return ret;
778 }
779 }
780 setverdict(fail, "Couldn't find Expect for incoming connection ", conn_ind);
781 return ret;
782}
783
784private function f_create_expect(octetstring l3, BSSAP_ConnHdlr hdlr)
785runs on BSSMAP_Emulation_CT {
786 var integer i;
787 for (i := 0; i < sizeof(ExpectTable); i := i+1) {
788 if (not ispresent(ExpectTable[i].l3_payload)) {
789 ExpectTable[i].l3_payload := l3;
790 ExpectTable[i].vc_conn := hdlr;
791 log("Created Expect[", i, "] for ", l3, " to be handled at ", hdlr);
792 return;
793 }
794 }
795 setverdict(fail, "No space left in ExpectTable");
796}
797
Harald Welte17d21152018-01-27 00:47:11 +0100798private function f_create_imsi(hexstring imsi, OCT4 tmsi, BSSAP_ConnHdlr hdlr)
799runs on BSSMAP_Emulation_CT {
800 for (var integer i := 0; i < sizeof(ImsiTable); i := i+1) {
801 if (not ispresent(ImsiTable[i].imsi)) {
802 ImsiTable[i].imsi := imsi;
803 ImsiTable[i].tmsi := tmsi;
804 ImsiTable[i].comp_ref := hdlr;
805 log("Created IMSI[", i, "] for ", imsi, tmsi, " to be handled at ", hdlr);
806 return;
807 }
808 }
809 setverdict(fail, "No space left in ImsiTable");
810 self.stop;
811}
812
813
Daniel Willmannd47106b2018-01-17 12:20:56 +0100814private function f_expect_table_init()
815runs on BSSMAP_Emulation_CT {
816 for (var integer i := 0; i < sizeof(ExpectTable); i := i+1) {
817 ExpectTable[i].l3_payload := omit;
818 }
819}
Harald Welte624f9632017-12-16 19:26:04 +0100820
Harald Welte17d21152018-01-27 00:47:11 +0100821/* helper function for clients to register their IMSI/TMSI */
822function f_bssmap_register_imsi(hexstring imsi, OCT4 tmsi)
823runs on BSSAP_ConnHdlr {
824 BSSAP_PROC.call(BSSMAPEM_register_imsi:{imsi, tmsi, self}) {
825 [] BSSAP_PROC.getreply(BSSMAPEM_register_imsi:{?,?,?}) {};
826 }
827}
828
829
Harald Welte365f4ed2017-11-23 00:00:43 +0100830}