blob: 442e61471e87b35c2a87c1fd97c20001e641efda [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];
59};
60
Harald Welteb3414b22017-11-23 18:22:10 +010061private function f_conn_id_known(integer sccp_conn_id)
62runs on BSSMAP_Emulation_CT return boolean {
63 var integer i;
64 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
65 if (ConnectionTable[i].sccp_conn_id == sccp_conn_id){
66 return true;
67 }
68 }
69 return false;
70}
71
72private function f_comp_known(BSSAP_ConnHdlr client)
73runs on BSSMAP_Emulation_CT return boolean {
74 var integer i;
75 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
76 if (ConnectionTable[i].comp_ref == client) {
77 return true;
78 }
79 }
80 return false;
81}
Harald Welte365f4ed2017-11-23 00:00:43 +010082
83/* resolve component reference by connection ID */
84private function f_comp_by_conn_id(integer sccp_conn_id)
85runs on BSSMAP_Emulation_CT return BSSAP_ConnHdlr {
86 var integer i;
87 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
88 if (ConnectionTable[i].sccp_conn_id == sccp_conn_id) {
89 return ConnectionTable[i].comp_ref;
90 }
91 }
92 log("BSSMAP Connection table not found by SCCP Connection ID ", sccp_conn_id);
93 self.stop;
94}
95
Harald Weltec82eef42017-11-24 20:40:12 +010096/* resolve component reference by CIC */
97private function f_comp_by_mgcp_tid(MgcpTransId tid)
98runs on BSSMAP_Emulation_CT return BSSAP_ConnHdlr {
99 var integer i;
100 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
101 if (ConnectionTable[i].mgcp_trans_id == tid) {
102 return ConnectionTable[i].comp_ref;
103 }
104 }
105 log("BSSMAP Connection table not found by MGCP Transaction ID ", tid);
106 self.stop;
107}
108
109private function f_comp_store_mgcp_tid(BSSAP_ConnHdlr client, MgcpTransId tid)
110runs on BSSMAP_Emulation_CT {
111 var integer i;
112 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
113 if (ConnectionTable[i].comp_ref == client) {
114 ConnectionTable[i].mgcp_trans_id := tid;
115 return;
116 }
117 }
118 log("BSSMAP Connection table not found by component ", client);
119 self.stop;
120}
121
122private function f_comp_by_cic(integer cic)
123runs on BSSMAP_Emulation_CT return BSSAP_ConnHdlr {
124 var integer i;
125 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
126 if (ConnectionTable[i].cic == cic) {
127 return ConnectionTable[i].comp_ref;
128 }
129 }
130 log("BSSMAP Connection table not found by CIC ", cic);
131 self.stop;
132}
133
134private function f_comp_store_cic(BSSAP_ConnHdlr client, integer cic)
135runs on BSSMAP_Emulation_CT {
136 var integer i;
137 for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
138 if (ConnectionTable[i].comp_ref == client) {
139 ConnectionTable[i].cic := cic;
140 return;
141 }
142 }
143 log("BSSMAP Connection table not found by component ", client);
144}
145
Harald Welte365f4ed2017-11-23 00:00:43 +0100146/* resolve connection ID by component reference */
147private function f_conn_id_by_comp(BSSAP_ConnHdlr client)
148runs on BSSMAP_Emulation_CT return integer {
149 for (var integer i := 0; i < sizeof(ConnectionTable); i := i+1) {
150 if (ConnectionTable[i].comp_ref == client) {
151 return ConnectionTable[i].sccp_conn_id;
152 }
153 }
154 log("BSSMAP Connection table not found by component ", client);
155 self.stop;
156}
157
Harald Welteb3414b22017-11-23 18:22:10 +0100158private function f_gen_conn_id()
159runs on BSSMAP_Emulation_CT return integer {
160 var integer conn_id;
161
162 do {
163 conn_id := float2int(rnd()*SCCP_Emulation.tsp_max_ConnectionId);
164 } while (f_conn_id_known(conn_id) == true);
165
166 return conn_id;
167}
168
Harald Welte365f4ed2017-11-23 00:00:43 +0100169private function f_conn_table_init()
170runs on BSSMAP_Emulation_CT {
171 for (var integer i := 0; i < sizeof(ConnectionTable); i := i+1) {
172 ConnectionTable[i].comp_ref := null;
173 ConnectionTable[i].sccp_conn_id := -1;
Harald Weltec82eef42017-11-24 20:40:12 +0100174 ConnectionTable[i].mgcp_trans_id := omit;
175 ConnectionTable[i].cic := omit;
Harald Welte365f4ed2017-11-23 00:00:43 +0100176 }
177}
178
179private function f_conn_table_add(BSSAP_ConnHdlr comp_ref, integer sccp_conn_id)
180runs on BSSMAP_Emulation_CT {
181 for (var integer i := 0; i < sizeof(ConnectionTable); i := i+1) {
182 if (ConnectionTable[i].sccp_conn_id == -1) {
183 ConnectionTable[i].comp_ref := comp_ref;
184 ConnectionTable[i].sccp_conn_id := sccp_conn_id;
Harald Welteb3414b22017-11-23 18:22:10 +0100185 log("Added conn table entry ", i, comp_ref, sccp_conn_id);
Harald Welte365f4ed2017-11-23 00:00:43 +0100186 return;
187 }
188 }
189 log("BSSMAP Connection table full!");
190 self.stop;
191}
192
193private function f_conn_table_del(integer sccp_conn_id)
194runs on BSSMAP_Emulation_CT {
195 for (var integer i := 0; i < sizeof(ConnectionTable); i := i+1) {
196 if (ConnectionTable[i].sccp_conn_id == sccp_conn_id) {
Harald Welteb3414b22017-11-23 18:22:10 +0100197 log("Deleted conn table entry ", i,
198 ConnectionTable[i].comp_ref, sccp_conn_id);
Harald Welte365f4ed2017-11-23 00:00:43 +0100199 ConnectionTable[i].sccp_conn_id := -1;
200 ConnectionTable[i].comp_ref := null;
201 }
202 }
203 log("BSSMAP Connection table attempt to delete non-existant ", sccp_conn_id);
204 self.stop;
205}
206
207/* handle (optional) userData portion of various primitives and dispatch it to the client */
Harald Welte5cc4aa22017-11-23 18:51:28 +0100208private function f_handle_userData(BSSAP_ConnHdlr client, octetstring userdata)
Harald Welte365f4ed2017-11-23 00:00:43 +0100209runs on BSSMAP_Emulation_CT {
Harald Welte365f4ed2017-11-23 00:00:43 +0100210 /* decode + send decoded BSSAP to client */
211 var PDU_BSSAP bssap := dec_PDU_BSSAP(valueof(userdata));
Harald Welte1b2748e2017-11-24 23:40:16 +0100212
213 /* BSC Side: If this is an assignment command, store CIC */
214 if (ischosen(bssap.pdu.bssmap.assignmentRequest) and
215 ispresent(bssap.pdu.bssmap.assignmentRequest.circuitIdentityCode)) {
216 var BSSMAP_IE_CircuitIdentityCode cic_ie :=
217 bssap.pdu.bssmap.assignmentRequest.circuitIdentityCode;
218 var integer cic := (oct2int(cic_ie.cicHigh) * 256) + oct2int(cic_ie.cicLow);
219 f_comp_store_cic(client, cic);
220 }
221
Harald Welte365f4ed2017-11-23 00:00:43 +0100222 CLIENT.send(bssap) to client;
223}
224
225/* call-back type, to be provided by specific implementation; called when new SCCP connection
226 * arrives */
227type function BssmapCreateCallback(ASP_SCCP_N_CONNECT_ind conn_ind)
228runs on BSSMAP_Emulation_CT return BSSAP_ConnHdlr;
229
230type function BssmapUnitdataCallback(PDU_BSSAP bssap)
231runs on BSSMAP_Emulation_CT return template PDU_BSSAP;
232
233type record BssmapOps {
234 BssmapCreateCallback create_cb,
235 BssmapUnitdataCallback unitdata_cb
236}
237
238function main(BssmapOps ops) runs on BSSMAP_Emulation_CT {
239
240 f_conn_table_init();
241
242 while (true) {
243 var ASP_SCCP_N_UNITDATA_ind ud_ind;
244 var ASP_SCCP_N_CONNECT_ind conn_ind;
Harald Welteb3414b22017-11-23 18:22:10 +0100245 var ASP_SCCP_N_CONNECT_cfm conn_cfm;
Harald Welte365f4ed2017-11-23 00:00:43 +0100246 var ASP_SCCP_N_DATA_ind data_ind;
247 var ASP_SCCP_N_DISCONNECT_ind disc_ind;
Harald Welteb3414b22017-11-23 18:22:10 +0100248 var BSSAP_Conn_Req creq;
Harald Welte365f4ed2017-11-23 00:00:43 +0100249 var BSSAP_ConnHdlr vc_conn;
250 var PDU_BSSAP bssap;
Harald Weltec82eef42017-11-24 20:40:12 +0100251 var MgcpCommand mgcp_req;
252 var MgcpResponse mgcp_resp;
Harald Welte365f4ed2017-11-23 00:00:43 +0100253
254 alt {
255 /* SCCP -> Client: UNIT-DATA (connectionless SCCP) from a BSC */
256 [] SCCP.receive(ASP_SCCP_N_UNITDATA_ind:?) -> value ud_ind {
257 /* Connectionless Procedures like RESET */
258 var template PDU_BSSAP resp;
259 bssap := dec_PDU_BSSAP(ud_ind.userData);
260 resp := ops.unitdata_cb.apply(bssap);
261 if (isvalue(resp)) {
262 var octetstring resp_ud := enc_PDU_BSSAP(valueof(resp));
263 SCCP.send(t_ASP_N_UNITDATA_req(ud_ind.callingAddress,
264 ud_ind.calledAddress, omit,
265 omit, resp_ud, omit));
266 }
267 }
268
269 /* SCCP -> Client: new connection from BSC */
270 [] SCCP.receive(ASP_SCCP_N_CONNECT_ind:?) -> value conn_ind {
271 vc_conn := ops.create_cb.apply(conn_ind);
272 /* store mapping between client components and SCCP connectionId */
273 f_conn_table_add(vc_conn, conn_ind.connectionId);
274 /* handle user payload */
275 f_handle_userData(vc_conn, conn_ind.userData);
276 /* confirm connection establishment */
277 SCCP.send(t_ASP_N_CONNECT_res(omit, omit, omit, omit, conn_ind.connectionId, omit));
278 }
279
280 /* SCCP -> Client: connection-oriented data in existing connection */
281 [] SCCP.receive(ASP_SCCP_N_DATA_ind:?) -> value data_ind {
282 vc_conn := f_comp_by_conn_id(data_ind.connectionId);
Harald Welte5cc4aa22017-11-23 18:51:28 +0100283 if (ispresent(data_ind.userData)) {
284 f_handle_userData(vc_conn, data_ind.userData);
285 }
Harald Welte365f4ed2017-11-23 00:00:43 +0100286 }
287
288 /* SCCP -> Client: disconnect of an existing connection */
289 [] SCCP.receive(ASP_SCCP_N_DISCONNECT_ind:?) -> value disc_ind {
290 vc_conn := f_comp_by_conn_id(disc_ind.connectionId);
Harald Welte5cc4aa22017-11-23 18:51:28 +0100291 if (ispresent(disc_ind.userData)) {
292 f_handle_userData(vc_conn, disc_ind.userData);
293 }
Harald Welte365f4ed2017-11-23 00:00:43 +0100294 /* notify client about termination */
295 var BSSAP_Conn_Prim prim := MSC_CONN_PRIM_DISC_IND;
296 CLIENT.send(prim) to vc_conn;
297 f_conn_table_del(disc_ind.connectionId);
298 /* TOOD: return confirm to other side? */
299 }
300
Harald Welteb3414b22017-11-23 18:22:10 +0100301 /* SCCP -> Client: connection confirm for outbound connection */
302 [] SCCP.receive(ASP_SCCP_N_CONNECT_cfm:?) -> value conn_cfm {
303 /* handle user payload */
Harald Welte5cc4aa22017-11-23 18:51:28 +0100304 if (ispresent(conn_cfm.userData)) {
305 f_handle_userData(vc_conn, conn_cfm.userData);
306 }
Harald Welteb3414b22017-11-23 18:22:10 +0100307 }
308
Harald Welte365f4ed2017-11-23 00:00:43 +0100309 /* Disconnect request client -> SCCP */
310 [] CLIENT.receive(BSSAP_Conn_Prim:MSC_CONN_PRIM_DISC_REQ) -> sender vc_conn {
311 var integer conn_id := f_conn_id_by_comp(vc_conn);
312 SCCP.send(t_ASP_N_DISCONNECT_req(omit, 0, omit, conn_id, omit));
313 f_conn_table_del(conn_id);
314 }
315
316 /* BSSAP from client -> SCCP */
Harald Welteb3414b22017-11-23 18:22:10 +0100317 [] CLIENT.receive(BSSAP_Conn_Req:?) -> value creq sender vc_conn {
318 var integer conn_id;
319 /* encode + send to dispatcher */
320 var octetstring userdata := enc_PDU_BSSAP(creq.bssap);
321
322 if (f_comp_known(vc_conn) == false) {
323 /* unknown client, create new connection */
324 conn_id := f_gen_conn_id();
325
326 /* store mapping between client components and SCCP connectionId */
327 f_conn_table_add(vc_conn, conn_id);
328
329 SCCP.send(t_ASP_N_CONNECT_req(creq.addr_peer, creq.addr_own, omit, omit,
330 userdata, conn_id, omit));
331 } else {
332 /* known client, send via existing connection */
333 conn_id := f_conn_id_by_comp(vc_conn);
334 SCCP.send(t_ASP_N_DATA_req(userdata, conn_id, omit));
335 }
336
337 }
338
Harald Welte365f4ed2017-11-23 00:00:43 +0100339 [] CLIENT.receive(PDU_BSSAP:?) -> value bssap sender vc_conn {
340 var integer conn_id := f_conn_id_by_comp(vc_conn);
Harald Welteb3414b22017-11-23 18:22:10 +0100341 /* encode + send it to dispatcher */
Harald Welte365f4ed2017-11-23 00:00:43 +0100342 var octetstring userdata := enc_PDU_BSSAP(bssap);
343 SCCP.send(t_ASP_N_DATA_req(userdata, conn_id, omit));
344 }
345
Harald Weltec82eef42017-11-24 20:40:12 +0100346 /* Handling of MGCP in IPA SCCPLite case. This predates 3GPP AoIP
347 * and uses a MGCP session in parallel to BSSAP. BSSAP uses CIC
348 * as usual, and MGCP uses "CIC@mgw" endpoint naming, where CIC
349 * is printed as hex string, e.g. a@mgw for CIC 10 */
350
351 /* CLIENT -> MGCP */
352 [] CLIENT.receive(MgcpCommand:?) -> value mgcp_req sender vc_conn {
353 /* MGCP request from Handler (we're MSC) */
354 /* store the transaction ID we've seen */
355 f_comp_store_mgcp_tid(vc_conn, mgcp_req.line.trans_id);
356 /* simply forward any MGCP from the client to the port */
357 MGCP.send(mgcp_req);
358 }
359 [] CLIENT.receive(MgcpResponse:?) -> value mgcp_resp sender vc_conn {
360 /* MGCP response from Handler (we're BSC/MGW) */
361 /* simply forward any MGCP from the client to the port */
362 MGCP.send(mgcp_resp);
363 }
364
365 /* MGCP -> CLIENT */
366 [] MGCP.receive(MgcpCommand:?) -> value mgcp_req {
367 /* MGCP request from network side (we're BSC/MGW) */
368 /* Extract CIC from local part of endpoint name */
369 var integer cic := f_mgcp_ep_extract_cic(mgcp_req.line.ep);
370 /* Resolve the vc_conn by the CIC */
371 vc_conn := f_comp_by_cic(cic);
372 CLIENT.send(mgcp_req) to vc_conn;
373 }
374 [] MGCP.receive(MgcpResponse:?) -> value mgcp_resp {
375 /* MGCP response from network side (we're MSC) */
376 /* Resolve the vc_conn by the transaction ID */
377 vc_conn := f_comp_by_mgcp_tid(mgcp_resp.line.trans_id);
378 CLIENT.send(mgcp_resp) to vc_conn;
379 }
380
Harald Welte365f4ed2017-11-23 00:00:43 +0100381 }
382 }
383}
384
Harald Weltec82eef42017-11-24 20:40:12 +0100385private function f_mgcp_ep_extract_cic(charstring inp) return integer {
Harald Welte525a9c12017-11-24 23:40:41 +0100386 var charstring local_part := regexp(inp, "(*)@*", 0);
Harald Weltec82eef42017-11-24 20:40:12 +0100387 return hex2int(str2hex(local_part));
388
389}
Harald Welte365f4ed2017-11-23 00:00:43 +0100390
391}