blob: 515a723e6e62671d485ddebe47e8629a8c8f5da4 [file] [log] [blame]
Pau Espin Pedrol7c13cb72022-06-16 19:03:44 +02001module SBC_AP_Adapter {
2
3/* SBC_AP Adapter layer, sitting on top of SBC_AP_CodecPort.
4 * test suites can 'inherit' in order to have a SBC_AP connection to the IUT which they're testing
5 *
6 * (C) 2019 by Harald Welte <laforge@gnumonks.org>
7 * All rights reserved.
8 *
9 * Released under the terms of GNU General Public License, Version 2 or
10 * (at your option) any later version.
11 */
12
13
14import from Osmocom_Types all;
15import from General_Types all;
16import from SBC_AP_Types all;
17import from SBC_AP_PDU_Descriptions all;
18import from SBC_AP_Templates all;
19import from SBC_AP_CodecPort all;
20import from SBC_AP_CodecPort_CtrlFunct all;
21import from IPL4asp_Types all;
22import from IPL4asp_PortType all;
23import from Socket_API_Definitions all;
24import from Misc_Helpers all;
25
26
27const integer SBC_AP_HDR_LEN := 3;
28
29const integer NUM_SBC_AP := 3;
30
31type component SBC_AP_Adapter_CT {
32 /* down-facing port to SBC_AP Codec port */
33 port SBC_AP_CODEC_PT SBC_AP[NUM_SBC_AP];
34 var IPL4asp_Types.ConnectionId g_SBC_AP_conn_id[NUM_SBC_AP] := { -1, -1, -1 };
35}
36
37private template Socket_API_Definitions.PortEvent tr_SctpAssocChange_COMM_UP(IPL4asp_Types.ConnectionId id) := {
38 sctpEvent := {
39 sctpAssocChange := {
40 clientId := id,
41 proto := {
42 sctp := ?
43 },
44 sac_state := SCTP_COMM_UP
45 }
46 }
47}
48
49function f_connect(charstring remote_host, IPL4asp_Types.PortNumber remote_port,
50 charstring local_host, IPL4asp_Types.PortNumber local_port, integer idx := 0)
51runs on SBC_AP_Adapter_CT {
52 var IPL4asp_Types.Result res;
53 map(self:SBC_AP[idx], system:SBC_AP);
54 res := SBC_AP_CodecPort_CtrlFunct.f_IPL4_connect(SBC_AP[idx], remote_host, remote_port,
55 local_host, local_port, 0, { sctp := valueof(ts_SBC_AP_SctpTuple) });
56 if (not ispresent(res.connId)) {
57 setverdict(fail, "Could not connect to SBC_AP port, check your configuration");
58 mtc.stop;
59 }
60 g_SBC_AP_conn_id[idx] := res.connId;
61 timer Tcommup := 10.0;
62 Tcommup.start;
63 alt {
64 [] SBC_AP[idx].receive(tr_SctpAssocChange_COMM_UP(g_SBC_AP_conn_id[idx])) {}
65 [] Tcommup.timeout {
66 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting SCTP_COMM_UP");
67 }
68 }
69}
70
71/* Function to use to bind to a local port as IPA server, accepting remote clients */
72function f_bind(charstring local_host, IPL4asp_Types.PortNumber local_port, integer idx := 0)
73runs on SBC_AP_Adapter_CT {
74 var IPL4asp_Types.Result res;
75 map(self:SBC_AP[idx], system:SBC_AP);
76 res := SBC_AP_CodecPort_CtrlFunct.f_IPL4_listen(SBC_AP[idx], local_host, local_port, { sctp := valueof(ts_SBC_AP_SctpTuple) });
77 g_SBC_AP_conn_id[idx] := res.connId;
78}
79
Pau Espin Pedroldb247f82022-08-01 17:55:22 +020080function f_wait_client_connect(integer idx := 0) runs on SBC_AP_Adapter_CT {
81 var IPL4asp_Types.PortEvent rx_event;
82 SBC_AP[idx].receive(IPL4asp_Types.PortEvent:{connOpened:=?}) -> value rx_event {
83 log("Connection from ", rx_event.connOpened.remName, ":", rx_event.connOpened.remPort);
84 /* we want to store the client's connId, not the 'bind socket' one */
85 g_SBC_AP_conn_id[idx] := rx_event.connOpened.connId;
86 }
87 timer Tcommup := 10.0;
88 Tcommup.start;
89 alt {
90 [] SBC_AP[idx].receive(tr_SctpAssocChange_COMM_UP(g_SBC_AP_conn_id[idx])) {}
91 [] Tcommup.timeout {
92 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting SCTP_COMM_UP");
93 }
94 }
95}
96
Pau Espin Pedrol7c13cb72022-06-16 19:03:44 +020097function f_SBC_AP_send(template (value) SBC_AP_PDU pdu, integer idx := 0) runs on SBC_AP_Adapter_CT {
98 SBC_AP[idx].send(ts_SBC_AP_Send(g_SBC_AP_conn_id[idx], pdu));
99}
100
101function f_SBC_AP_exp(template SBC_AP_PDU exp, integer idx := 0) runs on SBC_AP_Adapter_CT return SBC_AP_PDU {
102 var SBC_AP_RecvFrom rf;
103 SBC_AP[idx].receive(tr_SBC_AP_Recv(g_SBC_AP_conn_id[idx], exp)) -> value rf;
104 return rf.msg;
105}
106
107
108}