blob: 52136069f15838020fe43e7cdff88f2474578514 [file] [log] [blame]
Harald Welte365f4ed2017-11-23 00:00:43 +01001module BSSMAP_Emulation {
2
Harald Welteb3414b22017-11-23 18:22:10 +01003import from SCCP_Emulation all;
Harald Welte365f4ed2017-11-23 00:00:43 +01004import from SCCPasp_Types all;
5import from BSSAP_Types all;
6import from BSSMAP_Templates all;
Harald Weltec82eef42017-11-24 20:40:12 +01007import from MGCP_Types all;
8import from MGCP_Templates all;
9import from IPA_Emulation all;
Harald Welte365f4ed2017-11-23 00:00:43 +010010
11/* General "base class" component definition, of which specific implementations
12 * derive themselves by means of the "extends" feature */
13type component BSSAP_ConnHdlr {
14 /* port towards MSC Emulator core / SCCP connection dispatchar */
15 port BSSAP_Conn_PT BSSAP;
16}
17
18/* Auxiliary primitive that can happen on the port between per-connection client and this dispatcher */
19type enumerated BSSAP_Conn_Prim {
20 /* SCCP tell us that connection was released */
21 MSC_CONN_PRIM_DISC_IND,
22 /* we tell SCCP to release connection */
23 MSC_CONN_PRIM_DISC_REQ
24}
25
Harald Welteb3414b22017-11-23 18:22:10 +010026type record BSSAP_Conn_Req {
27 SCCP_PAR_Address addr_peer,
28 SCCP_PAR_Address addr_own,
29 PDU_BSSAP bssap
30}
31
Harald Welte365f4ed2017-11-23 00:00:43 +010032/* port between individual per-connection components and this dispatcher */
33type port BSSAP_Conn_PT message {
Harald Weltec82eef42017-11-24 20:40:12 +010034 inout PDU_BSSAP, BSSAP_Conn_Prim, BSSAP_Conn_Req, MgcpCommand, MgcpResponse;
Harald Welte365f4ed2017-11-23 00:00:43 +010035} with { extension "internal" };
36
37
38/* represents a single BSSAP connection over SCCP */
39type record ConnectionData {
40 /* reference to the instance of the per-connection component */
41 BSSAP_ConnHdlr comp_ref,
Harald Weltec82eef42017-11-24 20:40:12 +010042 integer sccp_conn_id,
43 /* most recent MGCP transaction ID (Used on MSC side) */
44 MgcpTransId mgcp_trans_id optional,
45 /* CIC that has been used for voice of this channel (BSC side) */
46 integer cic optional
Harald Welte365f4ed2017-11-23 00:00:43 +010047}
48
49type component BSSMAP_Emulation_CT {
50 /* SCCP port on the bottom side, using ASP primitives */
51 port SCCPasp_PT SCCP;
52 /* BSSAP port to the per-connection clients */
53 port BSSAP_Conn_PT CLIENT;
Harald Weltec82eef42017-11-24 20:40:12 +010054 /* MGCP port */
55 port IPA_MGCP_PT MGCP;
Harald Welte365f4ed2017-11-23 00:00:43 +010056
57 /* use 16 as this is also the number of SCCP connections that SCCP_Emulation can handle */
58 var ConnectionData ConnectionTable[16];
Harald Welte66fecd42017-11-24 23:53:23 +010059
Harald Weltebe620f62017-11-25 00:23:54 +010060 var charstring g_bssmap_id;
Harald Welte66fecd42017-11-24 23:53:23 +010061 var integer g_next_e1_ts := 1;
Harald Welte365f4ed2017-11-23 00:00:43 +010062};
63
Harald Welteb3414b22017-11-23 18:22:10 +010064private function f_conn_id_known(integer sccp_conn_id)
65runs on BSSMAP_Emulation_CT return boolean {
66 var integer i;
67 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
68 if (ConnectionTable[i].sccp_conn_id == sccp_conn_id){
69 return true;
70 }
71 }
72 return false;
73}
74
75private function f_comp_known(BSSAP_ConnHdlr client)
76runs on BSSMAP_Emulation_CT return boolean {
77 var integer i;
78 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
79 if (ConnectionTable[i].comp_ref == client) {
80 return true;
81 }
82 }
83 return false;
84}
Harald Welte365f4ed2017-11-23 00:00:43 +010085
86/* resolve component reference by connection ID */
87private function f_comp_by_conn_id(integer sccp_conn_id)
88runs on BSSMAP_Emulation_CT return BSSAP_ConnHdlr {
89 var integer i;
90 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
91 if (ConnectionTable[i].sccp_conn_id == sccp_conn_id) {
92 return ConnectionTable[i].comp_ref;
93 }
94 }
95 log("BSSMAP Connection table not found by SCCP Connection ID ", sccp_conn_id);
96 self.stop;
97}
98
Harald Weltec82eef42017-11-24 20:40:12 +010099/* resolve component reference by CIC */
100private function f_comp_by_mgcp_tid(MgcpTransId tid)
101runs on BSSMAP_Emulation_CT return BSSAP_ConnHdlr {
102 var integer i;
103 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
104 if (ConnectionTable[i].mgcp_trans_id == tid) {
105 return ConnectionTable[i].comp_ref;
106 }
107 }
108 log("BSSMAP Connection table not found by MGCP Transaction ID ", tid);
109 self.stop;
110}
111
112private function f_comp_store_mgcp_tid(BSSAP_ConnHdlr client, MgcpTransId tid)
113runs on BSSMAP_Emulation_CT {
114 var integer i;
115 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
116 if (ConnectionTable[i].comp_ref == client) {
117 ConnectionTable[i].mgcp_trans_id := tid;
118 return;
119 }
120 }
121 log("BSSMAP Connection table not found by component ", client);
122 self.stop;
123}
124
125private function f_comp_by_cic(integer cic)
126runs on BSSMAP_Emulation_CT return BSSAP_ConnHdlr {
127 var integer i;
128 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
129 if (ConnectionTable[i].cic == cic) {
130 return ConnectionTable[i].comp_ref;
131 }
132 }
133 log("BSSMAP Connection table not found by CIC ", cic);
134 self.stop;
135}
136
137private function f_comp_store_cic(BSSAP_ConnHdlr client, integer cic)
138runs on BSSMAP_Emulation_CT {
139 var integer i;
140 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
141 if (ConnectionTable[i].comp_ref == client) {
142 ConnectionTable[i].cic := cic;
143 return;
144 }
145 }
146 log("BSSMAP Connection table not found by component ", client);
147}
148
Harald Welte365f4ed2017-11-23 00:00:43 +0100149/* resolve connection ID by component reference */
150private function f_conn_id_by_comp(BSSAP_ConnHdlr client)
151runs on BSSMAP_Emulation_CT return integer {
152 for (var integer i := 0; i < sizeof(ConnectionTable); i := i+1) {
153 if (ConnectionTable[i].comp_ref == client) {
154 return ConnectionTable[i].sccp_conn_id;
155 }
156 }
157 log("BSSMAP Connection table not found by component ", client);
158 self.stop;
159}
160
Harald Welteb3414b22017-11-23 18:22:10 +0100161private function f_gen_conn_id()
162runs on BSSMAP_Emulation_CT return integer {
163 var integer conn_id;
164
165 do {
166 conn_id := float2int(rnd()*SCCP_Emulation.tsp_max_ConnectionId);
167 } while (f_conn_id_known(conn_id) == true);
168
169 return conn_id;
170}
171
Harald Welte365f4ed2017-11-23 00:00:43 +0100172private function f_conn_table_init()
173runs on BSSMAP_Emulation_CT {
174 for (var integer i := 0; i < sizeof(ConnectionTable); i := i+1) {
175 ConnectionTable[i].comp_ref := null;
176 ConnectionTable[i].sccp_conn_id := -1;
Harald Weltec82eef42017-11-24 20:40:12 +0100177 ConnectionTable[i].mgcp_trans_id := omit;
178 ConnectionTable[i].cic := omit;
Harald Welte365f4ed2017-11-23 00:00:43 +0100179 }
180}
181
182private function f_conn_table_add(BSSAP_ConnHdlr comp_ref, integer sccp_conn_id)
183runs on BSSMAP_Emulation_CT {
184 for (var integer i := 0; i < sizeof(ConnectionTable); i := i+1) {
185 if (ConnectionTable[i].sccp_conn_id == -1) {
186 ConnectionTable[i].comp_ref := comp_ref;
187 ConnectionTable[i].sccp_conn_id := sccp_conn_id;
Harald Welteb3414b22017-11-23 18:22:10 +0100188 log("Added conn table entry ", i, comp_ref, sccp_conn_id);
Harald Welte365f4ed2017-11-23 00:00:43 +0100189 return;
190 }
191 }
192 log("BSSMAP Connection table full!");
193 self.stop;
194}
195
196private function f_conn_table_del(integer sccp_conn_id)
197runs on BSSMAP_Emulation_CT {
198 for (var integer i := 0; i < sizeof(ConnectionTable); i := i+1) {
199 if (ConnectionTable[i].sccp_conn_id == sccp_conn_id) {
Harald Welteb3414b22017-11-23 18:22:10 +0100200 log("Deleted conn table entry ", i,
201 ConnectionTable[i].comp_ref, sccp_conn_id);
Harald Welte365f4ed2017-11-23 00:00:43 +0100202 ConnectionTable[i].sccp_conn_id := -1;
203 ConnectionTable[i].comp_ref := null;
204 }
205 }
206 log("BSSMAP Connection table attempt to delete non-existant ", sccp_conn_id);
207 self.stop;
208}
209
210/* handle (optional) userData portion of various primitives and dispatch it to the client */
Harald Welte5cc4aa22017-11-23 18:51:28 +0100211private function f_handle_userData(BSSAP_ConnHdlr client, octetstring userdata)
Harald Welte365f4ed2017-11-23 00:00:43 +0100212runs on BSSMAP_Emulation_CT {
Harald Welte365f4ed2017-11-23 00:00:43 +0100213 /* decode + send decoded BSSAP to client */
214 var PDU_BSSAP bssap := dec_PDU_BSSAP(valueof(userdata));
Harald Welte1b2748e2017-11-24 23:40:16 +0100215
216 /* BSC Side: If this is an assignment command, store CIC */
217 if (ischosen(bssap.pdu.bssmap.assignmentRequest) and
218 ispresent(bssap.pdu.bssmap.assignmentRequest.circuitIdentityCode)) {
219 var BSSMAP_IE_CircuitIdentityCode cic_ie :=
220 bssap.pdu.bssmap.assignmentRequest.circuitIdentityCode;
221 var integer cic := (oct2int(cic_ie.cicHigh) * 256) + oct2int(cic_ie.cicLow);
222 f_comp_store_cic(client, cic);
223 }
224
Harald Welte365f4ed2017-11-23 00:00:43 +0100225 CLIENT.send(bssap) to client;
226}
227
228/* call-back type, to be provided by specific implementation; called when new SCCP connection
229 * arrives */
Harald Weltebe620f62017-11-25 00:23:54 +0100230type function BssmapCreateCallback(ASP_SCCP_N_CONNECT_ind conn_ind, charstring id)
Harald Welte365f4ed2017-11-23 00:00:43 +0100231runs on BSSMAP_Emulation_CT return BSSAP_ConnHdlr;
232
233type function BssmapUnitdataCallback(PDU_BSSAP bssap)
234runs on BSSMAP_Emulation_CT return template PDU_BSSAP;
235
236type record BssmapOps {
237 BssmapCreateCallback create_cb,
238 BssmapUnitdataCallback unitdata_cb
239}
240
Harald Weltebe620f62017-11-25 00:23:54 +0100241function main(BssmapOps ops, charstring id) runs on BSSMAP_Emulation_CT {
Harald Welte365f4ed2017-11-23 00:00:43 +0100242
Harald Weltebe620f62017-11-25 00:23:54 +0100243 g_bssmap_id := id;
Harald Welte365f4ed2017-11-23 00:00:43 +0100244 f_conn_table_init();
245
246 while (true) {
247 var ASP_SCCP_N_UNITDATA_ind ud_ind;
248 var ASP_SCCP_N_CONNECT_ind conn_ind;
Harald Welteb3414b22017-11-23 18:22:10 +0100249 var ASP_SCCP_N_CONNECT_cfm conn_cfm;
Harald Welte365f4ed2017-11-23 00:00:43 +0100250 var ASP_SCCP_N_DATA_ind data_ind;
251 var ASP_SCCP_N_DISCONNECT_ind disc_ind;
Harald Welteb3414b22017-11-23 18:22:10 +0100252 var BSSAP_Conn_Req creq;
Harald Welte365f4ed2017-11-23 00:00:43 +0100253 var BSSAP_ConnHdlr vc_conn;
254 var PDU_BSSAP bssap;
Harald Weltec82eef42017-11-24 20:40:12 +0100255 var MgcpCommand mgcp_req;
256 var MgcpResponse mgcp_resp;
Harald Welte365f4ed2017-11-23 00:00:43 +0100257
258 alt {
259 /* SCCP -> Client: UNIT-DATA (connectionless SCCP) from a BSC */
260 [] SCCP.receive(ASP_SCCP_N_UNITDATA_ind:?) -> value ud_ind {
261 /* Connectionless Procedures like RESET */
262 var template PDU_BSSAP resp;
263 bssap := dec_PDU_BSSAP(ud_ind.userData);
264 resp := ops.unitdata_cb.apply(bssap);
265 if (isvalue(resp)) {
266 var octetstring resp_ud := enc_PDU_BSSAP(valueof(resp));
267 SCCP.send(t_ASP_N_UNITDATA_req(ud_ind.callingAddress,
268 ud_ind.calledAddress, omit,
269 omit, resp_ud, omit));
270 }
271 }
272
273 /* SCCP -> Client: new connection from BSC */
274 [] SCCP.receive(ASP_SCCP_N_CONNECT_ind:?) -> value conn_ind {
Harald Weltebe620f62017-11-25 00:23:54 +0100275 vc_conn := ops.create_cb.apply(conn_ind, id);
Harald Welte365f4ed2017-11-23 00:00:43 +0100276 /* store mapping between client components and SCCP connectionId */
277 f_conn_table_add(vc_conn, conn_ind.connectionId);
278 /* handle user payload */
279 f_handle_userData(vc_conn, conn_ind.userData);
280 /* confirm connection establishment */
281 SCCP.send(t_ASP_N_CONNECT_res(omit, omit, omit, omit, conn_ind.connectionId, omit));
282 }
283
284 /* SCCP -> Client: connection-oriented data in existing connection */
285 [] SCCP.receive(ASP_SCCP_N_DATA_ind:?) -> value data_ind {
286 vc_conn := f_comp_by_conn_id(data_ind.connectionId);
Harald Welte5cc4aa22017-11-23 18:51:28 +0100287 if (ispresent(data_ind.userData)) {
288 f_handle_userData(vc_conn, data_ind.userData);
289 }
Harald Welte365f4ed2017-11-23 00:00:43 +0100290 }
291
292 /* SCCP -> Client: disconnect of an existing connection */
293 [] SCCP.receive(ASP_SCCP_N_DISCONNECT_ind:?) -> value disc_ind {
294 vc_conn := f_comp_by_conn_id(disc_ind.connectionId);
Harald Welte5cc4aa22017-11-23 18:51:28 +0100295 if (ispresent(disc_ind.userData)) {
296 f_handle_userData(vc_conn, disc_ind.userData);
297 }
Harald Welte365f4ed2017-11-23 00:00:43 +0100298 /* notify client about termination */
299 var BSSAP_Conn_Prim prim := MSC_CONN_PRIM_DISC_IND;
300 CLIENT.send(prim) to vc_conn;
301 f_conn_table_del(disc_ind.connectionId);
302 /* TOOD: return confirm to other side? */
303 }
304
Harald Welteb3414b22017-11-23 18:22:10 +0100305 /* SCCP -> Client: connection confirm for outbound connection */
306 [] SCCP.receive(ASP_SCCP_N_CONNECT_cfm:?) -> value conn_cfm {
307 /* handle user payload */
Harald Welte5cc4aa22017-11-23 18:51:28 +0100308 if (ispresent(conn_cfm.userData)) {
309 f_handle_userData(vc_conn, conn_cfm.userData);
310 }
Harald Welteb3414b22017-11-23 18:22:10 +0100311 }
312
Harald Welte365f4ed2017-11-23 00:00:43 +0100313 /* Disconnect request client -> SCCP */
314 [] CLIENT.receive(BSSAP_Conn_Prim:MSC_CONN_PRIM_DISC_REQ) -> sender vc_conn {
315 var integer conn_id := f_conn_id_by_comp(vc_conn);
316 SCCP.send(t_ASP_N_DISCONNECT_req(omit, 0, omit, conn_id, omit));
317 f_conn_table_del(conn_id);
318 }
319
320 /* BSSAP from client -> SCCP */
Harald Welteb3414b22017-11-23 18:22:10 +0100321 [] CLIENT.receive(BSSAP_Conn_Req:?) -> value creq sender vc_conn {
322 var integer conn_id;
323 /* encode + send to dispatcher */
324 var octetstring userdata := enc_PDU_BSSAP(creq.bssap);
325
326 if (f_comp_known(vc_conn) == false) {
327 /* unknown client, create new connection */
328 conn_id := f_gen_conn_id();
329
330 /* store mapping between client components and SCCP connectionId */
331 f_conn_table_add(vc_conn, conn_id);
332
333 SCCP.send(t_ASP_N_CONNECT_req(creq.addr_peer, creq.addr_own, omit, omit,
334 userdata, conn_id, omit));
335 } else {
336 /* known client, send via existing connection */
337 conn_id := f_conn_id_by_comp(vc_conn);
338 SCCP.send(t_ASP_N_DATA_req(userdata, conn_id, omit));
339 }
340
341 }
342
Harald Welte365f4ed2017-11-23 00:00:43 +0100343 [] CLIENT.receive(PDU_BSSAP:?) -> value bssap sender vc_conn {
344 var integer conn_id := f_conn_id_by_comp(vc_conn);
Harald Welteb3414b22017-11-23 18:22:10 +0100345 /* encode + send it to dispatcher */
Harald Welte365f4ed2017-11-23 00:00:43 +0100346 var octetstring userdata := enc_PDU_BSSAP(bssap);
347 SCCP.send(t_ASP_N_DATA_req(userdata, conn_id, omit));
348 }
349
Harald Weltec82eef42017-11-24 20:40:12 +0100350 /* Handling of MGCP in IPA SCCPLite case. This predates 3GPP AoIP
351 * and uses a MGCP session in parallel to BSSAP. BSSAP uses CIC
352 * as usual, and MGCP uses "CIC@mgw" endpoint naming, where CIC
353 * is printed as hex string, e.g. a@mgw for CIC 10 */
354
355 /* CLIENT -> MGCP */
356 [] CLIENT.receive(MgcpCommand:?) -> value mgcp_req sender vc_conn {
357 /* MGCP request from Handler (we're MSC) */
358 /* store the transaction ID we've seen */
359 f_comp_store_mgcp_tid(vc_conn, mgcp_req.line.trans_id);
360 /* simply forward any MGCP from the client to the port */
361 MGCP.send(mgcp_req);
362 }
363 [] CLIENT.receive(MgcpResponse:?) -> value mgcp_resp sender vc_conn {
364 /* MGCP response from Handler (we're BSC/MGW) */
365 /* simply forward any MGCP from the client to the port */
366 MGCP.send(mgcp_resp);
367 }
368
369 /* MGCP -> CLIENT */
370 [] MGCP.receive(MgcpCommand:?) -> value mgcp_req {
371 /* MGCP request from network side (we're BSC/MGW) */
372 /* Extract CIC from local part of endpoint name */
373 var integer cic := f_mgcp_ep_extract_cic(mgcp_req.line.ep);
374 /* Resolve the vc_conn by the CIC */
375 vc_conn := f_comp_by_cic(cic);
376 CLIENT.send(mgcp_req) to vc_conn;
377 }
378 [] MGCP.receive(MgcpResponse:?) -> value mgcp_resp {
379 /* MGCP response from network side (we're MSC) */
380 /* Resolve the vc_conn by the transaction ID */
381 vc_conn := f_comp_by_mgcp_tid(mgcp_resp.line.trans_id);
382 CLIENT.send(mgcp_resp) to vc_conn;
383 }
384
Harald Welte365f4ed2017-11-23 00:00:43 +0100385 }
386 }
387}
388
Harald Weltec82eef42017-11-24 20:40:12 +0100389private function f_mgcp_ep_extract_cic(charstring inp) return integer {
Harald Welte525a9c12017-11-24 23:40:41 +0100390 var charstring local_part := regexp(inp, "(*)@*", 0);
Harald Weltec82eef42017-11-24 20:40:12 +0100391 return hex2int(str2hex(local_part));
392
393}
Harald Welte365f4ed2017-11-23 00:00:43 +0100394
395}