blob: 59e3e77c02b2d332b36efa4da01176fd1fb8cae4 [file] [log] [blame]
Harald Welte876bf9d2018-01-21 19:28:59 +01001module MNCC_Emulation {
2
3/* MNCC Emulation, runs on top of MNCC_CodecPort. It multiplexes/demultiplexes
4 * the individual calls, so there can be separate TTCN-3 components handling
5 * each of the calls
6 *
7 * The MNCC_Emulation.main() function processes MNCC primitives from the MNCC
8 * socket via the MNCC_CodecPort, and dispatches them to the per-connection components.
9 *
10 * Outbound MNCC connections are initiated by sending a MNCC_Call_Req primitive
11 * to the component running the MNCC_Emulation.main() function.
12 *
13 * For each new inbound connections, the MnccOps.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 call, it can
18 * do so by registering an "expect" with the expected destination phone number. This is e.g. useful
19 * if you are simulating BSC + MNCC, and first trigger a connection from BSC side in a
20 * component which then subsequently should also handle the MNCC emulation.
21 *
22 * Inbound Unit Data messages (such as are dispatched to the MnccOps.unitdata_cb() callback,
23 * which is registered with an argument to the main() function below.
24 *
25 * (C) 2018 by Harald Welte <laforge@gnumonks.org>
26 * 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
33import from Osmocom_Types all;
34import from MNCC_CodecPort all;
35import from MNCC_Types all;
36import from UD_Types all;
37
38/* General "base class" component definition, of which specific implementations
39 * derive themselves by means of the "extends" feature */
40type component MNCC_ConnHdlr {
41 /* ports towards MNCC Emulator core / call dispatchar */
42 port MNCC_Conn_PT MNCC;
43 port MNCCEM_PROC_PT MNCC_PROC;
44}
45
46/* Auxiliary primitive that can happen on the port between per-connection client and this dispatcher */
47type enumerated MNCC_Conn_Prim {
48 /* MNCC tell us that connection was released */
49 MNCC_CONN_PRIM_DISC_IND,
50 /* we tell MNCC to release connection */
51 MNCC_CONN_PRIM_DISC_REQ
52}
53
54type record MNCC_Conn_Req {
55 MNCC_PDU mncc
56}
57
58/* port between individual per-connection components and this dispatcher */
59type port MNCC_Conn_PT message {
60 inout MNCC_PDU, MNCC_Conn_Prim, MNCC_Conn_Req;
61} with { extension "internal" };
62
63
64/* represents a single MNCC call */
65type record ConnectionData {
66 /* reference to the instance of the per-connection component */
67 MNCC_ConnHdlr comp_ref,
68 integer mncc_call_id
69}
70
71type component MNCC_Emulation_CT {
72 /* UNIX DOMAIN socket on the bottom side, using primitives */
73 port MNCC_CODEC_PT MNCC;
74 /* MNCC port to the per-connection clients */
75 port MNCC_Conn_PT MNCC_CLIENT;
76
77 /* use 16 as this is also the number of SCCP connections that SCCP_Emulation can handle */
78 var ConnectionData MnccCallTable[16];
79
80 /* pending expected incoming connections */
81 var ExpectData MnccExpectTable[8];
82 /* procedure based port to register for incoming connections */
83 port MNCCEM_PROC_PT MNCC_PROC;
84
85 var integer g_mncc_ud_id;
86};
87
88private function f_call_id_known(uint32_t mncc_call_id)
89runs on MNCC_Emulation_CT return boolean {
90 var integer i;
91 for (i := 0; i < sizeof(MnccCallTable); i := i+1) {
92 if (MnccCallTable[i].mncc_call_id == mncc_call_id){
93 return true;
94 }
95 }
96 return false;
97}
98
99private function f_comp_known(MNCC_ConnHdlr client)
100runs on MNCC_Emulation_CT return boolean {
101 var integer i;
102 for (i := 0; i < sizeof(MnccCallTable); i := i+1) {
103 if (MnccCallTable[i].comp_ref == client) {
104 return true;
105 }
106 }
107 return false;
108}
109
110/* resolve component reference by connection ID */
111private function f_comp_by_call_id(uint32_t mncc_call_id)
112runs on MNCC_Emulation_CT return MNCC_ConnHdlr {
113 var integer i;
114 for (i := 0; i < sizeof(MnccCallTable); i := i+1) {
115 if (MnccCallTable[i].mncc_call_id == mncc_call_id) {
116 return MnccCallTable[i].comp_ref;
117 }
118 }
119 log("MNCC Call table not found by MNCC Call ID ", mncc_call_id);
120 setverdict(fail);
121 self.stop;
122}
123
124/* resolve connection ID by component reference */
125private function f_call_id_by_comp(MNCC_ConnHdlr client)
126runs on MNCC_Emulation_CT return integer {
127 for (var integer i := 0; i < sizeof(MnccCallTable); i := i+1) {
128 if (MnccCallTable[i].comp_ref == client) {
129 return MnccCallTable[i].mncc_call_id;
130 }
131 }
132 log("MNCC Call table not found by component ", client);
133 setverdict(fail);
134 self.stop;
135}
136
137private function f_gen_call_id()
138runs on MNCC_Emulation_CT return integer {
139 var uint32_t call_id;
140
141 do {
142 call_id := float2int(rnd()*4294967296.0);
143 } while (f_call_id_known(call_id) == true);
144
145 return call_id;
146}
147
Daniel Willmannff6abf02018-02-02 18:26:05 +0100148private function f_expect_table_init()
149runs on MNCC_Emulation_CT {
150 for (var integer i := 0; i < sizeof(MnccExpectTable); i := i+1) {
151 MnccExpectTable[i].dest_number := omit;
152 MnccExpectTable[i].vc_conn := null;
153 }
154}
155
Harald Welte876bf9d2018-01-21 19:28:59 +0100156private function f_call_table_init()
157runs on MNCC_Emulation_CT {
158 for (var integer i := 0; i < sizeof(MnccCallTable); i := i+1) {
159 MnccCallTable[i].comp_ref := null;
160 MnccCallTable[i].mncc_call_id := -1;
161 }
162}
163
164private function f_call_table_add(MNCC_ConnHdlr comp_ref, uint32_t mncc_call_id)
165runs on MNCC_Emulation_CT {
166 for (var integer i := 0; i < sizeof(MnccCallTable); i := i+1) {
167 if (MnccCallTable[i].mncc_call_id == -1) {
168 MnccCallTable[i].comp_ref := comp_ref;
169 MnccCallTable[i].mncc_call_id := mncc_call_id;
170 log("Added conn table entry ", i, comp_ref, mncc_call_id);
171 return;
172 }
173 }
174 log("MNCC Call table full!");
175 setverdict(fail);
176 self.stop;
177}
178
179private function f_call_table_del(uint32_t mncc_call_id)
180runs on MNCC_Emulation_CT {
181 for (var integer i := 0; i < sizeof(MnccCallTable); i := i+1) {
182 if (MnccCallTable[i].mncc_call_id == mncc_call_id) {
183 log("Deleted conn table entry ", i,
184 MnccCallTable[i].comp_ref, mncc_call_id);
185 MnccCallTable[i].mncc_call_id := -1;
186 MnccCallTable[i].comp_ref := null;
187 return
188 }
189 }
190 log("MNCC Call table attempt to delete non-existant ", mncc_call_id);
191 setverdict(fail);
192 self.stop;
193}
194
195
Harald Welteafec4712018-03-19 22:52:17 +0100196private function f_connect(charstring sock) runs on MNCC_Emulation_CT {
Harald Welte876bf9d2018-01-21 19:28:59 +0100197 var UD_connect_result res;
198 timer T := 5.0;
199
200 T.start;
201 MNCC.send(UD_connect:{sock, -1});
202 alt {
203 [] MNCC.receive(UD_connect_result:?) -> value res {
204 if (ispresent(res.result) and ispresent(res.result.result_code) and res.result.result_code == ERROR) {
205 setverdict(fail, "Error connecting to MNCC socket", res);
206 self.stop;
207 } else {
208 g_mncc_ud_id := res.id;
209 }
210 }
211 [] T.timeout {
212 setverdict(fail, "Timeout connecting to MNCC socket");
213 self.stop;
214 }
215 }
216}
217
Harald Welteafec4712018-03-19 22:52:17 +0100218private function f_listen(charstring sock) runs on MNCC_Emulation_CT {
219 var UD_listen_result res;
220 var UD_connected udc;
221 timer T := 5.0;
222
223 T.start;
224 MNCC.send(UD_listen:{sock});
225 alt {
226 [] MNCC.receive(UD_listen_result:?) -> value res {
227 if (ispresent(res.result) and ispresent(res.result.result_code) and res.result.result_code == ERROR) {
228 setverdict(fail, "Error listening to MNCC socket", res);
229 self.stop;
230 } else {
231 g_mncc_ud_id := res.id;
232 }
233 }
234 [] T.timeout {
235 setverdict(fail, "Timeout listening to MNCC socket");
236 self.stop;
237 }
238 }
239
240 T.start;
241 alt {
242 [] MNCC.receive(UD_connected:?) -> value udc {
243 g_mncc_ud_id := res.id;
244 }
245 [] T.timeout {
246 setverdict(fail, "Timeout waiting for MNCC connection");
247 self.stop;
248 }
249 }
250}
251
Harald Welte876bf9d2018-01-21 19:28:59 +0100252/* call-back type, to be provided by specific implementation; called when new SCCP connection
253 * arrives */
254type function MnccCreateCallback(MNCC_PDU conn_ind, charstring id)
255runs on MNCC_Emulation_CT return MNCC_ConnHdlr;
256
257type function MnccUnitdataCallback(MNCC_PDU mncc)
258runs on MNCC_Emulation_CT return template MNCC_PDU;
259
260type record MnccOps {
261 MnccCreateCallback create_cb,
262 MnccUnitdataCallback unitdata_cb
263}
264
Harald Welteafec4712018-03-19 22:52:17 +0100265function main(MnccOps ops, charstring id, charstring sock, boolean role_server := false)
266runs on MNCC_Emulation_CT {
Harald Welte876bf9d2018-01-21 19:28:59 +0100267
Harald Welteafec4712018-03-19 22:52:17 +0100268 if (role_server) {
269 f_listen(sock);
Harald Welte14509532018-03-24 22:32:01 +0100270 MNCC.send(t_SD_MNCC(g_mncc_ud_id, ts_MNCC_HELLO));
Harald Welteafec4712018-03-19 22:52:17 +0100271 } else {
272 f_connect(sock);
273 }
Daniel Willmannff6abf02018-02-02 18:26:05 +0100274 f_expect_table_init();
Harald Welte876bf9d2018-01-21 19:28:59 +0100275 f_call_table_init();
276
277 while (true) {
278 var MNCC_send_data sd;
279 var MNCC_Conn_Req creq;
280 var MNCC_ConnHdlr vc_conn;
281 var MNCC_PDU mncc;
282 var MNCC_ConnHdlr vc_hdlr;
283 var charstring dest_nr;
284
285 alt {
286 /* MNCC -> Client: UNIT-DATA (connectionless SCCP) from a BSC */
287 [] MNCC.receive(t_SD_MNCC_MSGT(g_mncc_ud_id, MNCC_SOCKET_HELLO)) -> value sd {
288 /* Connectionless Procedures like HELLO */
289 var template MNCC_PDU resp;
290 resp := ops.unitdata_cb.apply(sd.data);
291 if (isvalue(resp)) {
292 MNCC.send(t_SD_MNCC(g_mncc_ud_id, resp));
293 }
294 }
295
296 /* MNCC -> Client: Release Indication / confirmation */
297 [] MNCC.receive(t_SD_MNCC_MSGT(g_mncc_ud_id, (MNCC_REL_IND, MNCC_REL_CNF))) -> value sd {
298 var uint32_t call_id := f_mncc_get_call_id(sd.data);
299 /* forward to respective client */
300 vc_conn := f_comp_by_call_id(call_id);
301 MNCC_CLIENT.send(sd.data) to vc_conn;
302 /* remove from call table */
303 f_call_table_del(call_id);
304 }
305
306 /* MNCC -> Client: call related messages */
307 [] MNCC.receive(t_SD_MNCC_MSGT(g_mncc_ud_id, ?)) -> value sd {
308 var uint32_t call_id := f_mncc_get_call_id(sd.data);
309
310 if (f_call_id_known(call_id)) {
311 vc_conn := f_comp_by_call_id(call_id);
312 MNCC_CLIENT.send(sd.data) to vc_conn;
313 } else {
314 /* TODO: Only accept this for SETUP.req? */
315 vc_conn := ops.create_cb.apply(sd.data, id)
316 /* store mapping between client components and SCCP connectionId */
317 f_call_table_add(vc_conn, call_id);
318 /* handle user payload */
319 MNCC_CLIENT.send(sd.data) to vc_conn;
320 }
321 }
322
323 /* Client -> MNCC Socket: RELEASE.ind or RELEASE.cnf: forward + drop call table entry */
324 [] MNCC_CLIENT.receive(MNCC_PDU:{msg_type := (MNCC_REL_IND, MNCC_REL_CNF), u:=?}) -> value mncc sender vc_conn {
325 var integer call_id := f_call_id_by_comp(vc_conn);
326 /* forward to MNCC socket */
327 MNCC.send(t_SD_MNCC(g_mncc_ud_id, mncc));
328 /* remove from call table */
329 f_call_table_del(call_id);
330 }
331
Harald Welteafec4712018-03-19 22:52:17 +0100332 /* Client -> MNCC Socket: Normal message */
333 [] MNCC_CLIENT.receive(MNCC_PDU:?) -> value mncc sender vc_conn {
334 if (mncc.msg_type == MNCC_SETUP_REQ and not role_server) {
335 /* ConnHdlr -> MNCC Server: SETUP.req: add to call table */
336 f_call_table_add(vc_conn, f_mncc_get_call_id(mncc));
337 } else if (mncc.msg_type == MNCC_SETUP_IND and role_server) {
338 /* ConnHdlr -> MNCC Client: SETUP.ind: add to call table */
339 f_call_table_add(vc_conn, f_mncc_get_call_id(mncc));
340 }
Harald Welte812f7a42018-01-27 00:49:18 +0100341 /* forward to MNCC socket */
342 MNCC.send(t_SD_MNCC(g_mncc_ud_id, mncc));
343 }
344
Harald Welte876bf9d2018-01-21 19:28:59 +0100345 [] MNCC_CLIENT.receive(MNCC_PDU:?) -> value mncc sender vc_conn {
346 /* forward to MNCC socket */
347 MNCC.send(t_SD_MNCC(g_mncc_ud_id, mncc));
348 }
349
350
351 /* Client -> us: procedure call to register expect */
352 [] MNCC_PROC.getcall(MNCCEM_register:{?,?}) -> param(dest_nr, vc_hdlr) {
353 f_create_expect(dest_nr, vc_hdlr);
354 MNCC_PROC.reply(MNCCEM_register:{dest_nr, vc_hdlr});
355 }
356
357 }
358 }
359}
360
361private function f_mgcp_ep_extract_cic(charstring inp) return integer {
362 var charstring local_part := regexp(inp, "(*)@*", 0);
363 return hex2int(str2hex(local_part));
364
365}
366
367/***********************************************************************
368 * "Expect" Handling (mapping for expected incoming MNCC calls from IUT)
369 ***********************************************************************/
370
371/* data about an expected future incoming connection */
372type record ExpectData {
373 /* destination number based on which we can match it */
374 charstring dest_number optional,
375 /* component reference for this connection */
376 MNCC_ConnHdlr vc_conn
377}
378
379/* procedure based port to register for incoming calls */
380signature MNCCEM_register(in charstring dest_nr, in MNCC_ConnHdlr hdlr);
381
382type port MNCCEM_PROC_PT procedure {
383 inout MNCCEM_register;
384} with { extension "internal" };
385
386/* CreateCallback that can be used as create_cb and will use the expectation table */
387function ExpectedCreateCallback(MNCC_PDU conn_ind, charstring id)
388runs on MNCC_Emulation_CT return MNCC_ConnHdlr {
389 var MNCC_ConnHdlr ret := null;
390 var charstring dest_number;
391 var integer i;
392
Harald Welte9edea882018-03-24 22:32:20 +0100393 if (not ischosen(conn_ind.u.signal) or
394 (conn_ind.msg_type != MNCC_SETUP_IND and conn_ind.msg_type != MNCC_SETUP_REQ)) {
395 setverdict(fail, "MNCC ExpectedCreateCallback needs MNCC_SETUP_{IND,REQ}");
Harald Welte876bf9d2018-01-21 19:28:59 +0100396 return ret;
397 }
398 dest_number := conn_ind.u.signal.called.number;
399
400 for (i := 0; i < sizeof(MnccExpectTable); i:= i+1) {
401 if (not ispresent(MnccExpectTable[i].dest_number)) {
402 continue;
403 }
404 if (dest_number == MnccExpectTable[i].dest_number) {
405 ret := MnccExpectTable[i].vc_conn;
406 /* release this entry to be used again */
407 MnccExpectTable[i].dest_number := omit;
408 MnccExpectTable[i].vc_conn := null;
409 log("Found MnccExpect[", i, "] for ", dest_number, " handled at ", ret);
410 /* return the component reference */
411 return ret;
412 }
413 }
414 setverdict(fail, "Couldn't find MnccExpect for incoming call ", dest_number);
415 return ret;
416}
417
418/* server/emulation side function to create expect */
419private function f_create_expect(charstring dest_number, MNCC_ConnHdlr hdlr)
420runs on MNCC_Emulation_CT {
421 var integer i;
422 for (i := 0; i < sizeof(MnccExpectTable); i := i+1) {
423 if (not ispresent(MnccExpectTable[i].dest_number)) {
424 MnccExpectTable[i].dest_number := dest_number;
425 MnccExpectTable[i].vc_conn := hdlr;
426 log("Created MnccExpect[", i, "] for ", dest_number, " to be handled at ", hdlr);
427 return;
428 }
429 }
430 setverdict(fail, "No space left in MnccMnccExpectTable");
431}
432
433/* client/conn_hdlr side function to use procedure port to create expect in emulation */
434function f_create_mncc_expect(charstring dest_number) runs on MNCC_ConnHdlr {
435 MNCC_PROC.call(MNCCEM_register:{dest_number, self}) {
436 [] MNCC_PROC.getreply(MNCCEM_register:{?,?}) {};
437 }
438}
439
440function DummyUnitdataCallback(MNCC_PDU mncc)
441runs on MNCC_Emulation_CT return template MNCC_PDU {
442 log("Ignoring MNCC ", mncc);
443 return omit;
444}
445
446}