blob: dfdf10c06ae2d5f533d49beb8a5c5b9fce16aa9d [file] [log] [blame]
Harald Welte28d943e2017-11-25 15:00:50 +01001module MSC_ConnectionHandler {
2
3import from General_Types all;
4import from Osmocom_Types all;
Harald Weltec1a2fff2017-12-17 11:06:19 +01005import from GSM_Types all;
Harald Welte28d943e2017-11-25 15:00:50 +01006import from SCCPasp_Types all;
7import from BSSAP_Types all;
8import from BSSMAP_Emulation all;
9import from BSSMAP_Templates all;
10
Harald Welte211219e2018-01-29 22:03:36 +010011import from IPL4asp_Types all;
12import from Native_Functions all;
13
Harald Welte28d943e2017-11-25 15:00:50 +010014import from MGCP_Types all;
15import from MGCP_Templates all;
Daniel Willmann191e0d92018-01-17 12:44:35 +010016import from MGCP_Emulation all;
Harald Welte28d943e2017-11-25 15:00:50 +010017import from SDP_Types all;
18
Harald Weltec1a2fff2017-12-17 11:06:19 +010019import from RSL_Emulation all;
20import from RSL_Types all;
21
22import from MobileL3_Types all;
23import from MobileL3_CommonIE_Types all;
Harald Welte211219e2018-01-29 22:03:36 +010024import from MobileL3_RRM_Types all;
Harald Weltec1a2fff2017-12-17 11:06:19 +010025import from L3_Templates all;
26
Harald Weltec20b1c42018-02-12 20:50:08 +010027import from TELNETasp_PortType all;
28import from Osmocom_VTY_Functions all;
29
Harald Weltec1a2fff2017-12-17 11:06:19 +010030
Harald Welte211219e2018-01-29 22:03:36 +010031/***********************************************************************
32 * Media related handling
33 ***********************************************************************/
34
Philipp Maier11a58942018-06-25 16:40:48 +020035/* Get the matching payload type for a specified BSSAP codec type
36 * (see also: BSSAP_Types.ttcn */
37private function f_get_mgcp_pt(BSSMAP_FIELD_CodecType codecType) return SDP_FIELD_PayloadType {
38 if (codecType == GSM_FR) {
39 return PT_GSM;
40 } else if (codecType == GSM_HR) {
41 return PT_GSMHR;
42 } else if (codecType == GSM_EFR) {
43 return PT_GSMEFR;
44 } else if (codecType == FR_AMR or codecType == HR_AMR) {
45 return PT_AMR;
46 } else if (codecType == FR_AMR_WB or codecType == OHR_AMR or codecType == OFR_AMR_WB or codecType == OHR_AMR_WB) {
47 return PT_AMRWB;
48 }
49
50 return PT_PCMU;
51}
52
Harald Welte211219e2018-01-29 22:03:36 +010053/* Tuple containing host/ip and port */
54type record HostPort {
55 HostName host,
56 PortNumber port_nr
57};
58
59/* State encapsulating one MGCP Connection */
60type record MgcpConnState {
Philipp Maier3e2af5d2018-07-11 17:01:05 +020061 integer crcx_seen, /* Counts how many CRCX operations happend */
62 integer mdcx_seen, /* Counts how many MDCX operations happend C */
63 integer crcx_seen_exp, /* Sets the expected number of CRCX operations */
64 integer mdcx_seen_exp, /* Sets the expected number of MDCX operations */
Harald Welte211219e2018-01-29 22:03:36 +010065 MgcpConnectionId conn_id,
66 charstring mime_type, /* e.g. AMR */
67 integer sample_rate, /* 8000 */
68 integer ptime, /* 20 */
69 uint7_t rtp_pt, /* RTP Payload Type */
70 HostPort mgw, /* MGW side */
71 HostPort peer /* CA side */
72};
73
74/* BTS media state */
75type record BtsMediaState {
76 boolean ipa_crcx_seen,
Philipp Maierc1e95c82018-07-18 16:03:00 +020077 boolean ipa_mdcx_seen,
Harald Welte211219e2018-01-29 22:03:36 +010078 uint16_t conn_id,
79 uint7_t rtp_pt,
80 HostPort bts,
81 HostPort peer
82};
83
84type record MediaState {
85 MgcpEndpoint mgcp_ep,
86 MgcpConnState mgcp_conn[2],
Harald Welte261af4b2018-02-12 21:20:39 +010087 BtsMediaState bts,
88 BtsMediaState bts1 /* only during hand-over */
Harald Welte211219e2018-01-29 22:03:36 +010089};
90
Philipp Maier11a58942018-06-25 16:40:48 +020091function f_MediaState_init(inout MediaState g_media, integer nr, HostName bts, HostName mgw, BSSMAP_FIELD_CodecType codecType) {
Harald Welte211219e2018-01-29 22:03:36 +010092 /* BTS Side */
93 g_media.bts := {
94 ipa_crcx_seen := false,
Philipp Maierc1e95c82018-07-18 16:03:00 +020095 ipa_mdcx_seen := false,
Harald Welte211219e2018-01-29 22:03:36 +010096 conn_id := nr,
97 rtp_pt := 0,
98 bts := {
99 host := bts,
100 port_nr := 9000 + nr*2
101 },
102 peer := -
103 }
104
Harald Welte261af4b2018-02-12 21:20:39 +0100105 g_media.bts1 := {
106 ipa_crcx_seen := false,
Philipp Maierc1e95c82018-07-18 16:03:00 +0200107 ipa_mdcx_seen := false,
Harald Welte261af4b2018-02-12 21:20:39 +0100108 conn_id := nr,
109 rtp_pt := 0,
110 bts := {
111 host := bts, /* FIXME */
112 port_nr := 9000 + nr*2
113 },
114 peer := -
115 }
116
Harald Welte363cb0a2018-01-30 19:35:53 +0100117 g_media.mgcp_ep := "rtpbridge/" & int2str(nr) & "@mgw";
Harald Welte211219e2018-01-29 22:03:36 +0100118
119 for (var integer i:= 0; i < sizeof(g_media.mgcp_conn); i := i+1) {
Philipp Maier11a58942018-06-25 16:40:48 +0200120 g_media.mgcp_conn[i].mime_type := f_encoding_name_from_pt(f_get_mgcp_pt(codecType));
Harald Welte211219e2018-01-29 22:03:36 +0100121 g_media.mgcp_conn[i].sample_rate := 8000;
122 g_media.mgcp_conn[i].ptime := 20;
Philipp Maier11a58942018-06-25 16:40:48 +0200123 g_media.mgcp_conn[i].rtp_pt := enum2int(f_get_mgcp_pt(codecType));
Philipp Maier3e2af5d2018-07-11 17:01:05 +0200124 g_media.mgcp_conn[i].crcx_seen := 0;
125 g_media.mgcp_conn[i].mdcx_seen := 0;
126 g_media.mgcp_conn[i].crcx_seen_exp := 0;
127 g_media.mgcp_conn[i].mdcx_seen_exp := 0;
Harald Welte211219e2018-01-29 22:03:36 +0100128 g_media.mgcp_conn[i].conn_id := f_mgcp_alloc_conn_id();
129 }
130
131 g_media.mgcp_conn[0].mgw := {
132 host := mgw,
133 port_nr := 10000 + nr*2
134 }
135 g_media.mgcp_conn[1].mgw := {
136 host := mgw,
137 port_nr := 11000 + nr*2
138 }
139}
140
Philipp Maier3e2af5d2018-07-11 17:01:05 +0200141/* Helper function to get the next free MGCP connection identifier. We can
142 * recognize free connection identifiers by the fact that no CRCX happend yet */
Harald Welte211219e2018-01-29 22:03:36 +0100143private function f_get_free_mgcp_conn() runs on MSC_ConnHdlr return integer {
144 for (var integer i:= 0; i < sizeof(g_media.mgcp_conn); i := i+1) {
Philipp Maier3e2af5d2018-07-11 17:01:05 +0200145 if (not g_media.mgcp_conn[i].crcx_seen >= 1) {
Harald Welte211219e2018-01-29 22:03:36 +0100146 return i;
147 }
148 }
149 setverdict(fail, "Only 2 Connections per EP!");
Daniel Willmannafce8662018-07-06 23:11:32 +0200150 mtc.stop;
Harald Welte211219e2018-01-29 22:03:36 +0100151}
152
Philipp Maier3e2af5d2018-07-11 17:01:05 +0200153/* Helper function to pick a specific connection by its cid. Since we reach out
154 * for a connection that is in-use we also check if there was already exactly
155 * one CRCX happening on that connection. */
Harald Welte211219e2018-01-29 22:03:36 +0100156private function f_get_mgcp_conn(MgcpConnectionId cid) runs on MSC_ConnHdlr return integer {
157 for (var integer i:= 0; i < sizeof(g_media.mgcp_conn); i := i+1) {
Philipp Maier3e2af5d2018-07-11 17:01:05 +0200158 if (g_media.mgcp_conn[i].conn_id == cid and g_media.mgcp_conn[i].crcx_seen == 1) {
Harald Welte211219e2018-01-29 22:03:36 +0100159 return i;
160 }
161 }
162 setverdict(fail, "No Connection for ID ", cid);
Daniel Willmannafce8662018-07-06 23:11:32 +0200163 mtc.stop;
Harald Welte211219e2018-01-29 22:03:36 +0100164}
165
Philipp Maierb2422352018-07-11 10:36:57 +0200166/* altstep for handling of IPACC media related commands. Activated by as_Media() to test
167 * RSL level media handling */
168altstep as_Media_ipacc() runs on MSC_ConnHdlr {
Harald Welte211219e2018-01-29 22:03:36 +0100169 var RSL_Message rsl;
Harald Welte211219e2018-01-29 22:03:36 +0100170 var RSL_IE_Body ie;
Harald Welte930d0a72018-03-22 22:08:40 +0100171 var boolean b_unused;
Harald Welte211219e2018-01-29 22:03:36 +0100172 [not g_media.bts.ipa_crcx_seen] RSL.receive(tr_RSL_IPA_CRCX(g_chan_nr)) -> value rsl {
173 /* Extract parameters from request + use in response */
174 if (f_rsl_find_ie(rsl, RSL_IE_IPAC_RTP_PAYLOAD, ie)) {
175 g_media.bts.rtp_pt := ie.ipa_rtp_pt;
176 }
177 if (f_rsl_find_ie(rsl, RSL_IE_IPAC_RTP_PAYLOAD2, ie)) {
178 g_media.bts.rtp_pt := ie.ipa_rtp_pt2;
179 }
180 RSL.send(ts_RSL_IPA_CRCX_ACK(g_chan_nr, g_media.bts.conn_id,
181 oct2int(f_inet_addr(g_media.bts.bts.host)),
182 g_media.bts.bts.port_nr,
183 g_media.bts.rtp_pt));
184 g_media.bts.ipa_crcx_seen := true;
185 repeat;
186 }
187 [g_media.bts.ipa_crcx_seen] RSL.receive(tr_RSL_IPA_MDCX(g_chan_nr, ?)) -> value rsl{
188 /* Extract conn_id, ip, port, rtp_pt2 from request + use in response */
Harald Welte930d0a72018-03-22 22:08:40 +0100189 b_unused := f_rsl_find_ie(rsl, RSL_IE_IPAC_CONN_ID, ie);
Harald Welte211219e2018-01-29 22:03:36 +0100190 if (g_media.bts.conn_id != ie.ipa_conn_id) {
191 setverdict(fail, "IPA MDCX for unknown ConnId", rsl);
Daniel Willmannafce8662018-07-06 23:11:32 +0200192 mtc.stop;
Harald Welte211219e2018-01-29 22:03:36 +0100193 }
194 /* mandatory */
Harald Welte930d0a72018-03-22 22:08:40 +0100195 b_unused := f_rsl_find_ie(rsl, RSL_IE_IPAC_REMOTE_IP, ie);
Harald Welte211219e2018-01-29 22:03:36 +0100196 g_media.bts.peer.host := f_inet_ntoa(int2oct(ie.ipa_remote_ip, 4));
Harald Welte930d0a72018-03-22 22:08:40 +0100197 b_unused := f_rsl_find_ie(rsl, RSL_IE_IPAC_REMOTE_PORT, ie);
Harald Welte211219e2018-01-29 22:03:36 +0100198 g_media.bts.peer.port_nr := ie.ipa_remote_port;
199 /* optional */
200 if (f_rsl_find_ie(rsl, RSL_IE_IPAC_RTP_PAYLOAD, ie)) {
201 g_media.bts.rtp_pt := ie.ipa_rtp_pt;
202 }
203 if (f_rsl_find_ie(rsl, RSL_IE_IPAC_RTP_PAYLOAD2, ie)) {
204 g_media.bts.rtp_pt := ie.ipa_rtp_pt2;
205 }
206 RSL.send(ts_RSL_IPA_MDCX_ACK(g_chan_nr, g_media.bts.conn_id,
207 oct2int(f_inet_addr(g_media.bts.peer.host)),
208 g_media.bts.peer.port_nr,
209 g_media.bts.rtp_pt));
Philipp Maierc1e95c82018-07-18 16:03:00 +0200210 g_media.bts.ipa_mdcx_seen := true;
Harald Welte211219e2018-01-29 22:03:36 +0100211 repeat;
212 }
Harald Welte261af4b2018-02-12 21:20:39 +0100213
214 /* on second (new) BTS during hand-over */
215 [not g_media.bts1.ipa_crcx_seen] RSL1.receive(tr_RSL_IPA_CRCX(g_chan_nr)) -> value rsl {
216 /* Extract parameters from request + use in response */
217 if (f_rsl_find_ie(rsl, RSL_IE_IPAC_RTP_PAYLOAD, ie)) {
218 g_media.bts1.rtp_pt := ie.ipa_rtp_pt;
219 }
220 if (f_rsl_find_ie(rsl, RSL_IE_IPAC_RTP_PAYLOAD2, ie)) {
221 g_media.bts1.rtp_pt := ie.ipa_rtp_pt2;
222 }
223 RSL1.send(ts_RSL_IPA_CRCX_ACK(g_chan_nr, g_media.bts1.conn_id,
224 oct2int(f_inet_addr(g_media.bts1.bts.host)),
225 g_media.bts1.bts.port_nr,
226 g_media.bts1.rtp_pt));
227 g_media.bts1.ipa_crcx_seen := true;
228 repeat;
229 }
230 /* on second (new) BTS during hand-over */
231 [g_media.bts1.ipa_crcx_seen] RSL1.receive(tr_RSL_IPA_MDCX(g_chan_nr, ?)) -> value rsl{
232 /* Extract conn_id, ip, port, rtp_pt2 from request + use in response */
Harald Welte930d0a72018-03-22 22:08:40 +0100233 b_unused := f_rsl_find_ie(rsl, RSL_IE_IPAC_CONN_ID, ie);
Harald Welte261af4b2018-02-12 21:20:39 +0100234 if (g_media.bts1.conn_id != ie.ipa_conn_id) {
235 setverdict(fail, "IPA MDCX for unknown ConnId", rsl);
Daniel Willmannafce8662018-07-06 23:11:32 +0200236 mtc.stop;
Harald Welte261af4b2018-02-12 21:20:39 +0100237 }
238 /* mandatory */
Harald Welte930d0a72018-03-22 22:08:40 +0100239 b_unused := f_rsl_find_ie(rsl, RSL_IE_IPAC_REMOTE_IP, ie);
Harald Welte261af4b2018-02-12 21:20:39 +0100240 g_media.bts1.peer.host := f_inet_ntoa(int2oct(ie.ipa_remote_ip, 4));
Harald Welte930d0a72018-03-22 22:08:40 +0100241 b_unused := f_rsl_find_ie(rsl, RSL_IE_IPAC_REMOTE_PORT, ie);
Harald Welte261af4b2018-02-12 21:20:39 +0100242 g_media.bts1.peer.port_nr := ie.ipa_remote_port;
243 /* optional */
244 if (f_rsl_find_ie(rsl, RSL_IE_IPAC_RTP_PAYLOAD, ie)) {
245 g_media.bts1.rtp_pt := ie.ipa_rtp_pt;
246 }
247 if (f_rsl_find_ie(rsl, RSL_IE_IPAC_RTP_PAYLOAD2, ie)) {
248 g_media.bts1.rtp_pt := ie.ipa_rtp_pt2;
249 }
250 RSL1.send(ts_RSL_IPA_MDCX_ACK(g_chan_nr, g_media.bts1.conn_id,
251 oct2int(f_inet_addr(g_media.bts1.peer.host)),
252 g_media.bts1.peer.port_nr,
253 g_media.bts1.rtp_pt));
Philipp Maierc1e95c82018-07-18 16:03:00 +0200254 g_media.bts1.ipa_mdcx_seen := true;
Harald Welte261af4b2018-02-12 21:20:39 +0100255 repeat;
256 }
257
Philipp Maierb2422352018-07-11 10:36:57 +0200258
259}
260
261/* altstep for handling of MGCP media related commands. Activated by as_Media() to test
262 * MGW level media handling */
Philipp Maierc1e95c82018-07-18 16:03:00 +0200263altstep as_Media_mgw(boolean norepeat := false) runs on MSC_ConnHdlr {
Philipp Maierb2422352018-07-11 10:36:57 +0200264 var MgcpCommand mgcp_cmd;
265
Harald Welte211219e2018-01-29 22:03:36 +0100266 [] MGCP.receive(tr_CRCX) -> value mgcp_cmd {
267 var SDP_Message sdp;
268 var integer cid := f_get_free_mgcp_conn();
Harald Welte363cb0a2018-01-30 19:35:53 +0100269 if (match(mgcp_cmd.line.ep, t_MGCP_EP_wildcard)) {
270 if (cid != 0) {
271 setverdict(fail, "MGCP wildcard EP only works in first CRCX");
Daniel Willmannafce8662018-07-06 23:11:32 +0200272 mtc.stop;
Harald Welte363cb0a2018-01-30 19:35:53 +0100273 }
274 /* we keep the endpoint name allocated during MediaState_init */
275 } else {
276 /* Call Agent allocated endpoint, trust/use it always */
277 g_media.mgcp_ep := mgcp_cmd.line.ep;
278 }
Harald Welte211219e2018-01-29 22:03:36 +0100279 if (isvalue(mgcp_cmd.sdp)) {
280 sdp := mgcp_cmd.sdp;
281 g_media.mgcp_conn[cid].peer.host := sdp.connection.conn_addr.addr;
282 g_media.mgcp_conn[cid].peer.port_nr := sdp.media_list[0].media_field.ports.port_number;
283 }
284 var MgcpConnState mgcp_conn := g_media.mgcp_conn[cid];
285 sdp := valueof(ts_SDP(mgcp_conn.mgw.host, mgcp_conn.mgw.host, "foo", "21",
286 mgcp_conn.mgw.port_nr, { int2str(mgcp_conn.rtp_pt) },
287 {valueof(ts_SDP_rtpmap(mgcp_conn.rtp_pt,
288 mgcp_conn.mime_type & "/" &
289 int2str(mgcp_conn.sample_rate))),
290 valueof(ts_SDP_ptime(mgcp_conn.ptime)) } ));
Harald Welte363cb0a2018-01-30 19:35:53 +0100291 var template MgcpResponse mgcp_resp;
292 mgcp_resp := ts_CRCX_ACK(mgcp_cmd.line.trans_id, mgcp_conn.conn_id, sdp);
293 f_mgcp_par_append(mgcp_resp.params, ts_MgcpParSpecEP(g_media.mgcp_ep));
294 MGCP.send(mgcp_resp);
Philipp Maier3e2af5d2018-07-11 17:01:05 +0200295 g_media.mgcp_conn[cid].crcx_seen := g_media.mgcp_conn[cid].crcx_seen + 1;
Philipp Maierc1e95c82018-07-18 16:03:00 +0200296 if(norepeat == false) {
297 repeat;
298 }
Harald Welte211219e2018-01-29 22:03:36 +0100299 }
300 [] MGCP.receive(tr_MDCX) -> value mgcp_cmd {
301 var SDP_Message sdp;
302 var integer cid := f_get_mgcp_conn(f_MgcpCmd_extract_conn_id(mgcp_cmd));
303 if (isvalue(mgcp_cmd.sdp)) {
304 sdp := mgcp_cmd.sdp;
305 g_media.mgcp_conn[cid].peer.host := sdp.connection.conn_addr.addr;
306 g_media.mgcp_conn[cid].peer.port_nr := sdp.media_list[0].media_field.ports.port_number;
307 } else {
308 setverdict(fail, "MDCX has no [recognizable] SDP");
Harald Welte211219e2018-01-29 22:03:36 +0100309 }
310 var MgcpConnState mgcp_conn := g_media.mgcp_conn[cid];
311 sdp := valueof(ts_SDP(mgcp_conn.peer.host, mgcp_conn.peer.host, "foo", "21",
312 mgcp_conn.peer.port_nr, { int2str(mgcp_conn.rtp_pt) },
313 {valueof(ts_SDP_rtpmap(mgcp_conn.rtp_pt,
314 mgcp_conn.mime_type & "/" &
315 int2str(mgcp_conn.sample_rate))),
316 valueof(ts_SDP_ptime(mgcp_conn.ptime)) } ));
317 MGCP.send(ts_MDCX_ACK(mgcp_cmd.line.trans_id, mgcp_conn.conn_id, sdp));
Philipp Maier3e2af5d2018-07-11 17:01:05 +0200318 g_media.mgcp_conn[cid].mdcx_seen := g_media.mgcp_conn[cid].mdcx_seen + 1;
Philipp Maierc1e95c82018-07-18 16:03:00 +0200319 if(norepeat == false) {
320 repeat;
321 }
Harald Welte211219e2018-01-29 22:03:36 +0100322 }
323}
324
Philipp Maierb2422352018-07-11 10:36:57 +0200325/* Altsteps for handling of media related commands. Can be activated by a given
326 * test case if it expects to see media related handling (i.e. voice calls) */
327altstep as_Media() runs on MSC_ConnHdlr {
328 [] as_Media_ipacc();
329 [] as_Media_mgw();
330}
Harald Welte211219e2018-01-29 22:03:36 +0100331
Harald Welte28d943e2017-11-25 15:00:50 +0100332/* this component represents a single subscriber connection at the MSC.
333 * There is a 1:1 mapping between SCCP connections and BSSAP_ConnHdlr components.
334 * We inherit all component variables, ports, functions, ... from BSSAP_ConnHdlr */
Daniel Willmann191e0d92018-01-17 12:44:35 +0100335type component MSC_ConnHdlr extends BSSAP_ConnHdlr, RSL_DchanHdlr, MGCP_ConnHdlr {
Harald Welte28d943e2017-11-25 15:00:50 +0100336 /* SCCP Connecction Identifier for the underlying SCCP connection */
337 var integer g_sccp_conn_id;
338
Harald Weltec1a2fff2017-12-17 11:06:19 +0100339 /* procedure port back to our parent (BSSMAP_Emulation_CT) for control */
340 port BSSMAPEM_PROC_PT BSSMAPEM;
Harald Weltec20b1c42018-02-12 20:50:08 +0100341 port TELNETasp_PT BSCVTY;
Harald Welte28d943e2017-11-25 15:00:50 +0100342
Harald Welte211219e2018-01-29 22:03:36 +0100343 var MediaState g_media;
Harald Weltea0630032018-03-20 21:09:55 +0100344 var TestHdlrParams g_pars;
Harald Weltee97eab42018-03-21 18:46:06 +0100345
346 var boolean g_vty_initialized := false;
Harald Welte211219e2018-01-29 22:03:36 +0100347}
348
349/* initialize all parameters */
Philipp Maier11a58942018-06-25 16:40:48 +0200350function f_MscConnHdlr_init(integer i, HostName bts, HostName mgw, BSSMAP_FIELD_CodecType codecType) runs on MSC_ConnHdlr {
351 f_MediaState_init(g_media, i, bts, mgw, codecType);
Harald Weltee97eab42018-03-21 18:46:06 +0100352 if (not g_vty_initialized) {
353 map(self:BSCVTY, system:BSCVTY);
354 f_vty_set_prompts(BSCVTY);
355 f_vty_transceive(BSCVTY, "enable");
356 g_vty_initialized := true;
357 }
Harald Welte28d943e2017-11-25 15:00:50 +0100358}
359
360/* Callback function from general BSSMAP_Emulation whenever a connectionless
361 * BSSMAP message arrives. Can retunr a PDU_BSSAP that should be sent in return */
362private function UnitdataCallback(PDU_BSSAP bssap)
363runs on BSSMAP_Emulation_CT return template PDU_BSSAP {
364 var template PDU_BSSAP resp := omit;
365
Harald Weltec1a2fff2017-12-17 11:06:19 +0100366 /* answer all RESET with a RESET ACK */
Harald Welte28d943e2017-11-25 15:00:50 +0100367 if (match(bssap, tr_BSSMAP_Reset)) {
368 resp := ts_BSSMAP_ResetAck;
369 }
370
371 return resp;
372}
373
374const BssmapOps MSC_BssmapOps := {
Harald Weltec1a2fff2017-12-17 11:06:19 +0100375 create_cb := refers(BSSMAP_Emulation.ExpectedCreateCallback),
Harald Welte0b476062018-01-21 19:07:32 +0100376 unitdata_cb := refers(UnitdataCallback),
377 decode_dtap := false,
Harald Welte930d0a72018-03-22 22:08:40 +0100378 role_ms := false,
379 sccp_addr_local := omit,
380 sccp_addr_peer := omit
Harald Welte28d943e2017-11-25 15:00:50 +0100381}
382
Daniel Willmann191e0d92018-01-17 12:44:35 +0100383const MGCPOps MSC_MGCPOps := {
Harald Welte930d0a72018-03-22 22:08:40 +0100384 create_cb := refers(MGCP_Emulation.ExpectedCreateCallback),
385 unitdata_cb := refers(MGCP_Emulation.DummyUnitdataCallback)
Daniel Willmann191e0d92018-01-17 12:44:35 +0100386}
387
Harald Weltec1a2fff2017-12-17 11:06:19 +0100388/* register an expect with the BSSMAP core */
Daniel Willmann191e0d92018-01-17 12:44:35 +0100389private function f_create_bssmap_exp(octetstring l3_enc) runs on MSC_ConnHdlr {
Harald Weltec1a2fff2017-12-17 11:06:19 +0100390 BSSMAPEM.call(BSSMAPEM_register:{l3_enc, self}) {
391 [] BSSMAPEM.getreply(BSSMAPEM_register:{?, ?}) {};
Harald Welte28d943e2017-11-25 15:00:50 +0100392 }
393}
394
Harald Welte651fcdc2018-05-10 20:23:16 +0200395type record TestHdlrEncrParams {
396 OCT1 enc_alg,
397 octetstring enc_key
398};
399
400template (value) TestHdlrEncrParams t_EncrParams(OCT1 alg, octetstring key) := {
401 enc_alg := alg,
402 enc_key := key
403}
404
Harald Weltecc0b0142018-05-29 15:19:33 +0200405type record TestHdlrParamsLcls {
406 GlobalCallReferenceValue gcr optional,
407 /* LCLS Configuration */
408 BIT4 cfg optional,
409 /* LCLS Connection Status Control */
410 BIT4 csc optional,
411 BIT4 exp_sts optional
412}
413
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +0100414type record TestHdlrParamsHandover {
415 SCCP_PAR_Address sccp_addr_msc,
416 SCCP_PAR_Address sccp_addr_bsc
417}
418
Harald Weltec1a2fff2017-12-17 11:06:19 +0100419type record TestHdlrParams {
420 OCT1 ra,
421 GsmFrameNumber fn,
422 hexstring imsi,
Harald Welte60aa5762018-03-21 19:33:13 +0100423 RslLinkId link_id,
Harald Weltecbe911c2018-06-01 18:23:07 +0200424 integer media_nr, /* determins MGCP EP, port numbers */
Harald Welte651fcdc2018-05-10 20:23:16 +0200425 BSSMAP_IE_SpeechCodecList ass_codec_list optional,
Neels Hofmeyrbcf62bc2018-07-04 00:24:33 +0200426 RSL_IE_Body expect_mr_conf_ie optional, /* typically present for AMR codecs */
Harald Weltecc0b0142018-05-29 15:19:33 +0200427 TestHdlrEncrParams encr optional,
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +0100428 TestHdlrParamsLcls lcls,
Philipp Maier48604732018-10-09 15:00:37 +0200429 TestHdlrParamsHandover handover optional,
430 boolean aoip
Harald Weltec1a2fff2017-12-17 11:06:19 +0100431};
432
Philipp Maier48604732018-10-09 15:00:37 +0200433/* Note: Do not use valueof() to get a value of this template, use
434 * f_gen_test_hdlr_pars() instead in order to get a configuration that is
435 * matched to the current test sitation (aoio vs. sccplite) */
Harald Weltec1a2fff2017-12-17 11:06:19 +0100436template (value) TestHdlrParams t_def_TestHdlrPars := {
437 ra := '23'O,
438 fn := 23,
439 imsi := '001019876543210'H,
Harald Welte60aa5762018-03-21 19:33:13 +0100440 link_id := valueof(ts_RslLinkID_DCCH(0)),
Harald Weltecbe911c2018-06-01 18:23:07 +0200441 media_nr := 1,
Harald Welte651fcdc2018-05-10 20:23:16 +0200442 ass_codec_list := omit,
Neels Hofmeyrbcf62bc2018-07-04 00:24:33 +0200443 expect_mr_conf_ie := omit,
Harald Weltecc0b0142018-05-29 15:19:33 +0200444 encr := omit,
445 lcls := {
446 gcr := omit,
447 cfg := omit,
448 csc := omit,
449 exp_sts := omit
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +0100450 },
Philipp Maier48604732018-10-09 15:00:37 +0200451 handover := omit,
452 aoip := true
Harald Weltec1a2fff2017-12-17 11:06:19 +0100453}
454
Harald Weltea0630032018-03-20 21:09:55 +0100455function f_create_chan_and_exp() runs on MSC_ConnHdlr {
456 var MobileIdentityLV mi := valueof(ts_MI_IMSI_LV(g_pars.imsi));
Harald Welte6ed6bf92018-01-24 21:09:15 +0100457 var PDU_ML3_MS_NW l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, mi));
Harald Weltec1a2fff2017-12-17 11:06:19 +0100458 var octetstring l3_enc := enc_PDU_ML3_MS_NW(l3_info);
459
460 /* call helper function for CHAN_RQD -> IMM ASS ->EST_IND */
Harald Weltea0630032018-03-20 21:09:55 +0100461 RSL_Emulation.f_chan_est(g_pars.ra, l3_enc, g_pars.link_id, g_pars.fn);
Daniel Willmann191e0d92018-01-17 12:44:35 +0100462 f_create_bssmap_exp(l3_enc);
Harald Weltec1a2fff2017-12-17 11:06:19 +0100463}
464
Harald Welte898113b2018-01-31 18:32:21 +0100465function f_rsl_send_l3(template PDU_ML3_MS_NW l3, template (omit) RslLinkId link_id := omit,
466 template (omit) RslChannelNr chan_nr := omit) runs on MSC_ConnHdlr {
467 if (not isvalue(link_id)) {
468 link_id := ts_RslLinkID_DCCH(0);
469 }
470 if (not isvalue(chan_nr)) {
471 chan_nr := g_chan_nr;
472 }
473 RSL.send(ts_RSL_DATA_IND(valueof(chan_nr), valueof(link_id), enc_PDU_ML3_MS_NW(valueof(l3))));
474}
475
Harald Weltec1a2fff2017-12-17 11:06:19 +0100476function f_rsl_reply(template PDU_ML3_MS_NW l3, RSL_Message orig) runs on MSC_ConnHdlr {
477 var RslChannelNr chan_nr := orig.ies[0].body.chan_nr;
Harald Welte1a40de62017-12-23 02:28:34 +0100478 var RslLinkId link_id;
Harald Welte8d5eead2017-12-17 18:56:45 +0100479 if (orig.msg_type == RSL_MT_ENCR_CMD) {
480 link_id := orig.ies[2].body.link_id;
481 } else {
482 link_id := orig.ies[1].body.link_id;
483 }
Harald Welte898113b2018-01-31 18:32:21 +0100484 f_rsl_send_l3(l3, link_id, chan_nr);
Harald Weltec1a2fff2017-12-17 11:06:19 +0100485}
486
Philipp Maierb20c3dc2018-02-07 18:36:25 +0100487/* Convert the chipher representation on BSSMAP to the representation used on RSL */
Harald Weltee613f962018-04-18 22:38:16 +0200488function f_chipher_mode_bssmap_to_rsl(OCT1 alg_bssmap) return RSL_AlgId
Philipp Maierb20c3dc2018-02-07 18:36:25 +0100489{
490 /* A5 0 */
491 if (alg_bssmap == '01'O) {
Harald Weltee613f962018-04-18 22:38:16 +0200492 return RSL_ALG_ID_A5_0;
Philipp Maierb20c3dc2018-02-07 18:36:25 +0100493 }
494 /* A5 1 */
495 else if (alg_bssmap == '02'O) {
Harald Weltee613f962018-04-18 22:38:16 +0200496 return RSL_ALG_ID_A5_1;
Philipp Maierb20c3dc2018-02-07 18:36:25 +0100497 }
498 /* A5 2 */
499 else if (alg_bssmap == '04'O) {
Harald Weltee613f962018-04-18 22:38:16 +0200500 return RSL_ALG_ID_A5_2;
Philipp Maierb20c3dc2018-02-07 18:36:25 +0100501 }
502 /* A5 3 */
503 else if (alg_bssmap == '08'O) {
Harald Weltee613f962018-04-18 22:38:16 +0200504 return RSL_ALG_ID_A5_3;
Philipp Maierb20c3dc2018-02-07 18:36:25 +0100505 }
506 /* A5 4 */
507 else if (alg_bssmap == '10'O) {
Harald Weltee613f962018-04-18 22:38:16 +0200508 return RSL_ALG_ID_A5_4;
Philipp Maierb20c3dc2018-02-07 18:36:25 +0100509 }
510 /* A5 5 */
511 else if (alg_bssmap == '20'O) {
Harald Weltee613f962018-04-18 22:38:16 +0200512 return RSL_ALG_ID_A5_5;
Philipp Maierb20c3dc2018-02-07 18:36:25 +0100513 }
514 /* A5 6 */
515 else if (alg_bssmap == '40'O) {
Harald Weltee613f962018-04-18 22:38:16 +0200516 return RSL_ALG_ID_A5_6;
Philipp Maierb20c3dc2018-02-07 18:36:25 +0100517 }
518 /* A5 7 */
519 else if (alg_bssmap == '80'O) {
Harald Weltee613f962018-04-18 22:38:16 +0200520 return RSL_ALG_ID_A5_7;
Philipp Maierb20c3dc2018-02-07 18:36:25 +0100521 } else {
522 setverdict(fail, "Unexpected Encryption Algorithm");
Harald Weltee613f962018-04-18 22:38:16 +0200523 return RSL_ALG_ID_A5_0;
Philipp Maierb20c3dc2018-02-07 18:36:25 +0100524 }
525}
526
Harald Welte38b2a102017-12-23 02:42:58 +0100527function f_cipher_mode(OCT1 alg, OCT8 key, template OCT16 kc128 := omit, boolean exp_fail := false)
528runs on MSC_ConnHdlr {
Harald Welte73cd2712017-12-17 00:44:52 +0100529 var PDU_BSSAP bssap;
530 var RSL_Message rsl;
Harald Weltee613f962018-04-18 22:38:16 +0200531 var RSL_AlgId alg_rsl;
Harald Welte73cd2712017-12-17 00:44:52 +0100532
533 if (isvalue(kc128)) {
534 BSSAP.send(ts_BSSMAP_CipherModeCmdKc128(alg, key, valueof(kc128)));
535 } else {
536 BSSAP.send(ts_BSSMAP_CipherModeCmd(alg, key));
537 }
Philipp Maierb20c3dc2018-02-07 18:36:25 +0100538
539 /* RSL uses a different representation of the encryption algorithm,
540 * so we need to convert first */
541 alg_rsl := f_chipher_mode_bssmap_to_rsl(alg);
542
Harald Welte73cd2712017-12-17 00:44:52 +0100543 alt {
544 /* RSL/UE Side */
Philipp Maierb20c3dc2018-02-07 18:36:25 +0100545 [] RSL.receive(tr_RSL_ENCR_CMD(g_chan_nr, ?, alg_rsl, key)) -> value rsl {
Harald Welte73cd2712017-12-17 00:44:52 +0100546 var PDU_ML3_NW_MS l3 := dec_PDU_ML3_NW_MS(rsl.ies[3].body.l3_info.payload);
547 log("Rx L3 from net: ", l3);
548 if (ischosen(l3.msgs.rrm.cipheringModeCommand)) {
549 f_rsl_reply(ts_RRM_CiphModeCompl, rsl);
550 }
551 repeat;
552 }
553 [] BSSAP.receive(tr_BSSMAP_CipherModeCompl) -> value bssap {
554 // bssap.bssmap.cipherModeComplete.chosenEncryptionAlgorithm.algoritmhIdentifier
Harald Welte38b2a102017-12-23 02:42:58 +0100555 if (exp_fail == true) {
556 setverdict(fail, "Unexpected Cipher Mode Complete");
557 } else {
558 setverdict(pass);
559 }
Harald Welte73cd2712017-12-17 00:44:52 +0100560 }
561 [] BSSAP.receive(tr_BSSMAP_CipherModeRej) -> value bssap {
Harald Welte38b2a102017-12-23 02:42:58 +0100562 if (exp_fail == false) {
563 setverdict(fail, "Ciphering Mode Reject");
564 } else {
565 setverdict(pass);
566 }
Harald Welte73cd2712017-12-17 00:44:52 +0100567 }
568 }
569}
570
Harald Welte211219e2018-01-29 22:03:36 +0100571/* Convert from Ericsson ChanDesc2 format to Osmocom RslChannelNr format */
572function f_ChDesc2RslChanNr(ChannelDescription2_V ch_desc, out RslChannelNr chan_nr, out GsmArfcn arfcn) {
573 var BIT5 inp := ch_desc.channelTypeandTDMAOffset;
Harald Welte6fa1f732018-03-21 22:46:16 +0100574 var uint3_t tn := bit2int(ch_desc.timeslotNumber);
Harald Welte211219e2018-01-29 22:03:36 +0100575
576 if (match(inp, '00001'B)) { /* TCH/F */
Harald Welte6fa1f732018-03-21 22:46:16 +0100577 chan_nr := valueof(t_RslChanNr_Bm(tn));
Harald Welte211219e2018-01-29 22:03:36 +0100578 }
579 else if (match(inp, '0001?'B)) { /* TCH/H */
Harald Welte6fa1f732018-03-21 22:46:16 +0100580 chan_nr := valueof(t_RslChanNr_Lm(tn, bit2int(substr(inp, 4, 1))));
Harald Welte211219e2018-01-29 22:03:36 +0100581 }
582 else if (match(inp, '001??'B)) { /* SDCCH/4 */
Harald Welte6fa1f732018-03-21 22:46:16 +0100583 chan_nr := valueof(t_RslChanNr_SDCCH4(tn, bit2int(substr(inp, 3, 2))));
Harald Welte211219e2018-01-29 22:03:36 +0100584 }
585 else if (match(inp, '01???'B)) { /* SDCCH/8 */
Harald Welte6fa1f732018-03-21 22:46:16 +0100586 chan_nr := valueof(t_RslChanNr_SDCCH8(tn, bit2int(substr(inp, 2, 3))));
Harald Welte211219e2018-01-29 22:03:36 +0100587 }
588 else {
589 setverdict(fail, "Unknown ChDesc!");
Daniel Willmannafce8662018-07-06 23:11:32 +0200590 mtc.stop;
Harald Welte211219e2018-01-29 22:03:36 +0100591 }
592
593 if (ch_desc.octet3 and4b '10'O == '10'O) {
594 setverdict(fail, "No support for Hopping");
Daniel Willmannafce8662018-07-06 23:11:32 +0200595 mtc.stop;
Harald Welte211219e2018-01-29 22:03:36 +0100596 } else {
597 var OCT2 concat := ch_desc.octet3 & ch_desc.octet4;
598 arfcn := oct2int(concat);
599 }
600}
601
602type record AssignmentState {
603 /* global */
604 boolean voice_call,
605 boolean is_assignment,
606 /* Assignment related bits */
607 boolean rr_ass_cmpl_seen,
Harald Welte21583082018-01-29 22:28:26 +0100608 boolean assignment_done,
Harald Welte211219e2018-01-29 22:03:36 +0100609 RslChannelNr old_chan_nr,
610 /* Modify related bits */
611 boolean rr_modify_seen,
Harald Welte21583082018-01-29 22:28:26 +0100612 boolean modify_done
Harald Welte211219e2018-01-29 22:03:36 +0100613}
614
615template (value) AssignmentState ts_AssignmentStateInit := {
616 voice_call := false,
617 is_assignment := false,
618 rr_ass_cmpl_seen := false,
Harald Welte21583082018-01-29 22:28:26 +0100619 assignment_done := false,
Harald Welte211219e2018-01-29 22:03:36 +0100620 old_chan_nr := -,
621 rr_modify_seen := false,
Harald Welte21583082018-01-29 22:28:26 +0100622 modify_done := false
Harald Welte211219e2018-01-29 22:03:36 +0100623}
624
Harald Welte8a9bf6f2018-05-10 22:00:49 +0200625private template RSL_IE_Body tr_EncrInfo(template RSL_AlgId alg, template octetstring key) := {
626 encr_info := {
627 len := ?,
628 alg_id := alg,
629 key := key
630 }
631}
632
633/* ensure the RSL CHAN ACT (during assignment) contains values we expect depending on test case */
634private function f_check_chan_act(AssignmentState st, RSL_Message chan_act) runs on MSC_ConnHdlr {
635 var RSL_IE_Body encr_info;
636 if (ispresent(g_pars.encr) and g_pars.encr.enc_alg != '01'O) {
637 if (not f_rsl_find_ie(chan_act, RSL_IE_ENCR_INFO, encr_info)) {
638 setverdict(fail, "Missing Encryption IE in CHAN ACT");
639 } else {
640 var RSL_AlgId alg := f_chipher_mode_bssmap_to_rsl(g_pars.encr.enc_alg);
641 if (not match(encr_info, tr_EncrInfo(alg, g_pars.encr.enc_key))) {
642 setverdict(fail, "Wrong Encryption IE in CHAN ACT");
643 }
644 }
645 } else {
646 if (f_rsl_find_ie(chan_act, RSL_IE_ENCR_INFO, encr_info)) {
647 if (encr_info.encr_info.alg_id != RSL_ALG_ID_A5_0) {
648 setverdict(fail, "Unexpected Encryption in CHAN ACT");
649 }
650 }
651 }
652 /* FIXME: validate RSL_IE_ACT_TYPE, RSL_IE_CHAN_MODE, RSL_IE_CHAN_IDENT, RSL_IE_BS_POWER,
653 * RSL_IE_MS_POWER, RSL_IE_TIMING_ADVANCE */
654}
655
Harald Welte211219e2018-01-29 22:03:36 +0100656altstep as_assignment(inout AssignmentState st) runs on MSC_ConnHdlr {
Harald Weltec1a2fff2017-12-17 11:06:19 +0100657 var RSL_Message rsl;
Harald Welte211219e2018-01-29 22:03:36 +0100658 [not st.rr_ass_cmpl_seen] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr)) -> value rsl {
659 var PDU_ML3_NW_MS l3 := dec_PDU_ML3_NW_MS(rsl.ies[2].body.l3_info.payload);
660 log("Rx L3 from net: ", l3);
661 if (ischosen(l3.msgs.rrm.assignmentCommand)) {
662 var RslChannelNr new_chan_nr;
663 var GsmArfcn arfcn;
664 f_ChDesc2RslChanNr(l3.msgs.rrm.assignmentCommand.descrOf1stChAfterTime,
665 new_chan_nr, arfcn);
666 /* FIXME: Determine TRX NR by ARFCN, instead of hard-coded TRX0! */
Harald Weltec1a2fff2017-12-17 11:06:19 +0100667
Harald Welte211219e2018-01-29 22:03:36 +0100668 /* register our component for this channel number at the RSL Emulation */
669 f_rslem_register(0, new_chan_nr);
670 var PDU_ML3_MS_NW l3_tx := valueof(ts_RRM_AssignmentComplete('00'O));
671 /* send assignment complete over the new channel */
Neels Hofmeyrb0e73652018-07-14 21:56:51 +0200672 RSL.send(ts_RSL_EST_IND(new_chan_nr, valueof(ts_RslLinkID_DCCH(0)),
Harald Welte211219e2018-01-29 22:03:36 +0100673 enc_PDU_ML3_MS_NW(l3_tx)));
674 /* by default, send via the new channel from now */
675 st.old_chan_nr := g_chan_nr;
676 g_chan_nr := new_chan_nr;
677 st.rr_ass_cmpl_seen := true;
Harald Welte8a9bf6f2018-05-10 22:00:49 +0200678 /* obtain channel activation from RSL_Emulation for new channel */
679 var RSL_Message chan_act := f_rslem_get_last_act(RSL_PROC, 0, g_chan_nr);
680 /* check it (e.g. for correct ciphering parameters) */
681 f_check_chan_act(st, chan_act);
Harald Welte211219e2018-01-29 22:03:36 +0100682 repeat;
683 } else {
684 setverdict(fail, "Unexpected L3 received", l3);
Daniel Willmannafce8662018-07-06 23:11:32 +0200685 mtc.stop;
Harald Weltec1a2fff2017-12-17 11:06:19 +0100686 }
Harald Welte211219e2018-01-29 22:03:36 +0100687 }
688 [st.rr_ass_cmpl_seen] RSL.receive(tr_RSL_REL_REQ(st.old_chan_nr, tr_RslLinkID_DCCH(0))) {
689 RSL.send(ts_RSL_REL_CONF(st.old_chan_nr, valueof(ts_RslLinkID_DCCH(0))));
690 repeat;
691 }
692 [st.rr_ass_cmpl_seen] RSL.receive(tr_RSL_RF_CHAN_REL(st.old_chan_nr)) {
693 RSL.send(ts_RSL_RF_CHAN_REL_ACK(st.old_chan_nr));
Harald Welte1909f462018-01-29 22:29:29 +0100694 /* unregister for old channel number in RSL emulation */
695 /* FIXME: Determine TRX NR by ARFCN, instead of hard-coded TRX0! */
696 f_rslem_unregister(0, st.old_chan_nr);
Harald Welte21583082018-01-29 22:28:26 +0100697 st.assignment_done := true;
Harald Welte211219e2018-01-29 22:03:36 +0100698 repeat;
699 }
700}
701
702altstep as_modify(inout AssignmentState st) runs on MSC_ConnHdlr {
703 /* no assignment, just mode modify */
704 var RSL_Message rsl;
705
706 [st.voice_call and not st.rr_modify_seen] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr)) -> value rsl {
Harald Weltec1a2fff2017-12-17 11:06:19 +0100707 var PDU_ML3_NW_MS l3 := dec_PDU_ML3_NW_MS(rsl.ies[2].body.l3_info.payload);
708 log("Rx L3 from net: ", l3);
709 if (ischosen(l3.msgs.rrm.channelModeModify)) {
710 f_rsl_reply(ts_RRM_ModeModifyAck(l3.msgs.rrm.channelModeModify.channelDescription,
711 l3.msgs.rrm.channelModeModify.channelMode), rsl);
Harald Welte211219e2018-01-29 22:03:36 +0100712 st.rr_modify_seen := true;
Harald Weltec1a2fff2017-12-17 11:06:19 +0100713 }
714 repeat;
715 }
Harald Welte211219e2018-01-29 22:03:36 +0100716 [st.voice_call and st.rr_modify_seen] RSL.receive(tr_RSL_MsgTypeD(RSL_MT_MODE_MODIFY_REQ)) -> value rsl {
Harald Weltec1a2fff2017-12-17 11:06:19 +0100717 RSL.send(ts_RSL_MODE_MODIFY_ACK(g_chan_nr));
Harald Welte21583082018-01-29 22:28:26 +0100718 st.modify_done := true;
Harald Weltec1a2fff2017-12-17 11:06:19 +0100719 repeat;
720 }
Harald Welte211219e2018-01-29 22:03:36 +0100721}
Daniel Willmann191e0d92018-01-17 12:44:35 +0100722
Harald Welte211219e2018-01-29 22:03:36 +0100723/* Determine if given rsl_chan_nr is compatible with given BSSMAP ChannelType */
724function f_channel_compatible(BSSMAP_IE_ChannelType bssmap, RslChannelNr rsl_chan_nr)
725return boolean {
726 select (bssmap.speechOrDataIndicator) {
727 case ('0011'B) { /* Signalling */
728 /* all channels support signalling */
729 return true;
730 }
731 case else { /* Speech, Speech+CTM or CSD */
732 select (bssmap.channelRateAndType) {
733 case ('08'O) { /* TCH/F */
734 select (rsl_chan_nr) {
735 case (t_RslChanNr_Bm(?)) { return true; }
736 }
737 }
738 case ('09'O) { /* TCH/H */
739 select (rsl_chan_nr) {
740 case (t_RslChanNr_Lm(?, ?)) { return true; }
741 }
742 }
743 case else { /* full or half-rate */
744 select (rsl_chan_nr) {
745 case (t_RslChanNr_Bm(?)) { return true; }
746 case (t_RslChanNr_Lm(?, ?)) { return true; }
747 }
748 }
749 }
Harald Weltec1a2fff2017-12-17 11:06:19 +0100750 }
Harald Welte211219e2018-01-29 22:03:36 +0100751 }
752 return false;
753}
Daniel Willmann191e0d92018-01-17 12:44:35 +0100754
Philipp Maier8ef527e2018-05-18 11:12:50 +0200755/* Determine if the channel mode specified within rsl_chan_nr requires a
756 * MODE MODIFY in to match the channel mode specified by given BSSMAP
757 * ChannelType */
758function f_channel_needs_modify(BSSMAP_IE_ChannelType bssmap, RslChannelNr rsl_chan_nr)
759return boolean {
760
761 /* FIXME: This tests the rsl_chan_nr to determine if we are on a
762 * signalling channel or not. Unfortunately this may lead to false
763 * results if we are on a TCH. The problem is that a TCH may be also
764 * used in signalling mode, but this function assumes that only SDCCH4
765 * and SDCCH8 are used as signalling channels at all. */
766
767 var boolean current_signalling := false;
768 var boolean desired_signalling := false;
769
770 select (rsl_chan_nr) {
771 case (t_RslChanNr_SDCCH4(?, ?)) { current_signalling := true; }
772 case (t_RslChanNr_SDCCH8(?, ?)) { current_signalling := true; }
773 }
774
775 if (bssmap.speechOrDataIndicator == '0011'B) {
776 desired_signalling := true;
777 }
778
779 if (current_signalling == desired_signalling) {
780 /* The desired channel mode is equal to the one we currently
781 * have, there is no mode modification needed or expected */
782 return false;
783 } else {
784 /* The desired channel mode and the current channel mode do
785 * not match. A mode modification is required */
786 return true;
787 }
788}
789
Harald Weltecc0b0142018-05-29 15:19:33 +0200790/* patch an BSSMAP ASS REQ with LCLS related IEs, depending on g_params */
791function f_ass_patch_lcls(inout template (omit) PDU_BSSAP ass_tpl,
792 inout template PDU_BSSAP ass_cpl) runs on MSC_ConnHdlr {
793 if (istemplatekind(ass_tpl, "omit")) {
794 return;
795 }
796 if (ispresent(g_pars.lcls.gcr)) {
797 ass_tpl.pdu.bssmap.assignmentRequest.globalCallReference := ts_BSSMAP_IE_GCR(g_pars.lcls.gcr);
798 }
799 if (ispresent(g_pars.lcls.cfg)) {
800 ass_tpl.pdu.bssmap.assignmentRequest.lCLS_Configuration := ts_BSSMAP_IE_LclsCfg(g_pars.lcls.cfg);
801 }
802 if (ispresent(g_pars.lcls.csc)) {
803 ass_tpl.pdu.bssmap.assignmentRequest.lCLS_ConnectionStatusControl := ts_BSSMAP_IE_LclsCsc(g_pars.lcls.csc);
804 }
Harald Welte343b7742018-06-05 23:41:37 +0200805 if (ischosen(ass_cpl.pdu.bssmap.assignmentComplete)) {
806 if (ispresent(g_pars.lcls.exp_sts)) {
807 ass_cpl.pdu.bssmap.assignmentComplete.lCLS_BSS_Status := tr_BSSMAP_IE_LclsSts(g_pars.lcls.exp_sts);
808 } else {
809 ass_cpl.pdu.bssmap.assignmentComplete.lCLS_BSS_Status := omit;
810 }
Harald Weltecc0b0142018-05-29 15:19:33 +0200811 }
812}
813
Philipp Maier3e2af5d2018-07-11 17:01:05 +0200814/* Helper function to check if the activity on the MGCP matches what we
815 * expected */
816function f_check_mgcp_expectations() runs on MSC_ConnHdlr {
817 for (var integer i:= 0; i < sizeof(g_media.mgcp_conn); i := i+1) {
Philipp Maier0a5d7e72018-07-16 15:13:11 +0200818 log(testcasename(), ": Check MGCP test expectations for g_media.mgcp_conn[", i , "]:",
819 " crcx_seen=", g_media.mgcp_conn[i].crcx_seen, ", crcx_seen_exp=", g_media.mgcp_conn[i].crcx_seen_exp,
820 ", mdcx_seen=", g_media.mgcp_conn[i].mdcx_seen, ", mdcx_seen_exp=", g_media.mgcp_conn[i].mdcx_seen_exp);
821
Philipp Maier3e2af5d2018-07-11 17:01:05 +0200822 if(g_media.mgcp_conn[i].crcx_seen != g_media.mgcp_conn[i].crcx_seen_exp) {
823 setverdict(fail, "unexpected number of MGW-CRCX transactions");
824 }
825 if(g_media.mgcp_conn[i].mdcx_seen != g_media.mgcp_conn[i].mdcx_seen_exp) {
826 setverdict(fail, "unexpected number of MGW-MDCX transactions");
827 }
828 }
829}
830
Harald Welte211219e2018-01-29 22:03:36 +0100831/* establish a channel fully, expecting an assignment matching 'exp' */
Harald Welte7a14fd52018-05-10 22:26:55 +0200832function f_establish_fully(template (omit) PDU_BSSAP ass_tpl, template PDU_BSSAP exp_ass_cpl)
833runs on MSC_ConnHdlr {
Philipp Maier11a58942018-06-25 16:40:48 +0200834
835 var BSSMAP_FIELD_CodecType codecType;
Philipp Maier48aeeec2018-09-14 18:20:04 +0200836 timer T := 10.0;
Philipp Maier3e2af5d2018-07-11 17:01:05 +0200837
Philipp Maier11a58942018-06-25 16:40:48 +0200838 if (isvalue(ass_tpl.pdu.bssmap.assignmentRequest.codecList)) {
839 codecType := valueof(ass_tpl.pdu.bssmap.assignmentRequest.codecList.codecElements[0].codecType);
840 } else {
841 /* Make sure a meaningful default is assigned in case the
842 * codecList is not populated */
843 codecType := FR_AMR;
844 }
845
846 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", codecType);
Harald Welte7a14fd52018-05-10 22:26:55 +0200847
Harald Weltecc0b0142018-05-29 15:19:33 +0200848 /* patch in the LCLS related items, as needed */
849 f_ass_patch_lcls(ass_tpl, exp_ass_cpl);
850
Harald Welte7a14fd52018-05-10 22:26:55 +0200851 f_create_chan_and_exp();
852 /* we should now have a COMPL_L3 at the MSC */
Philipp Maier48aeeec2018-09-14 18:20:04 +0200853
854 var template PDU_BSSAP exp_l3_compl;
855 exp_l3_compl := tr_BSSMAP_ComplL3()
Philipp Maier48604732018-10-09 15:00:37 +0200856 if (g_pars.aoip == false) {
Philipp Maier48aeeec2018-09-14 18:20:04 +0200857 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := omit;
858 } else {
859 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := ?;
860 }
861 T.start;
862 alt {
863 [] BSSAP.receive(exp_l3_compl);
864 [] BSSAP.receive(tr_BSSMAP_ComplL3) {
865 setverdict(fail, "Received non-matching COMPLETE LAYER 3 INFORMATION");
866 all component.stop;
867 mtc.stop;
868 }
869 [] T.timeout {
870 setverdict(fail, "Timeout waiting for COMPLETE LAYER 3 INFORMATION");
871 all component.stop;
872 mtc.stop;
873 }
874 }
Harald Welte7a14fd52018-05-10 22:26:55 +0200875
876 /* start ciphering, if requested */
877 if (ispresent(g_pars.encr)) {
878 f_cipher_mode(g_pars.encr.enc_alg, g_pars.encr.enc_key);
879 }
880
881 /* bail out early if no assignment requested */
882 if (istemplatekind(ass_tpl, "omit")) {
883 return;
884 }
885
886 var PDU_BSSAP ass_cmd := valueof(ass_tpl);
Harald Welte211219e2018-01-29 22:03:36 +0100887 var PDU_BSSAP bssap;
Harald Welte211219e2018-01-29 22:03:36 +0100888 var boolean exp_compl := ischosen(exp_ass_cpl.pdu.bssmap.assignmentComplete);
Philipp Maier86f39202018-02-07 14:40:09 +0100889 var boolean exp_fail := ischosen(exp_ass_cpl.pdu.bssmap.assignmentFailure);
Philipp Maier8ef527e2018-05-18 11:12:50 +0200890 var boolean exp_modify;
Philipp Maier48aeeec2018-09-14 18:20:04 +0200891
Harald Welte211219e2018-01-29 22:03:36 +0100892 var ExpectCriteria mgcpcrit := {
893 connid := omit,
894 endpoint := omit,
895 transid := omit
896 };
897 var AssignmentState st := valueof(ts_AssignmentStateInit);
898 /* if the channel type is SIGNAL, we're not handling a voice call */
899 if (ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechOrDataIndicator != '0011'B) {
900 st.voice_call := true;
Philipp Maier8ef527e2018-05-18 11:12:50 +0200901 exp_modify := true;
Harald Welte211219e2018-01-29 22:03:36 +0100902 }
Philipp Maier8ef527e2018-05-18 11:12:50 +0200903
Harald Welte211219e2018-01-29 22:03:36 +0100904 /* determine if the current channel can support the given service or not */
905 if (not f_channel_compatible(ass_cmd.pdu.bssmap.assignmentRequest.channelType, g_chan_nr)) {
906 st.is_assignment := true;
Philipp Maier8ef527e2018-05-18 11:12:50 +0200907
908 /* We decided to assign a new channel, so we do not expect
909 * any mode modify messages on RSL */
910 exp_modify := false;
911 } else {
912 /* We will continue working with the currently assigned
913 * channel, we must now check if the mode of the current
914 * channel is compatible. If not we expect the BSC to modify
915 * the mode */
916 exp_modify := f_channel_needs_modify(ass_cmd.pdu.bssmap.assignmentRequest.channelType, g_chan_nr);
Harald Welte211219e2018-01-29 22:03:36 +0100917 }
918
Philipp Maier3e2af5d2018-07-11 17:01:05 +0200919 /* Some test situations will involve MGCP transactions on a media
920 * gateway. Depending on the situation, we set up how many of each MGCP
921 * message type are expected to be exchanged. */
922 if (isbound(exp_ass_cpl.pdu.bssmap.assignmentFailure)) {
923 /* For tests that expect the assignment to fail, assume that
924 * there will be no MGW communication as well. */
925 g_media.mgcp_conn[0].crcx_seen_exp := 0;
926 g_media.mgcp_conn[0].mdcx_seen_exp := 0;
927 g_media.mgcp_conn[1].crcx_seen_exp := 0;
928 g_media.mgcp_conn[1].mdcx_seen_exp := 0;
929 } else if (st.voice_call) {
930 /* For voice calls we expect the following MGCP activity */
Philipp Maier48604732018-10-09 15:00:37 +0200931 if (g_pars.aoip == false) {
Philipp Maier3e2af5d2018-07-11 17:01:05 +0200932 g_media.mgcp_conn[0].crcx_seen_exp := 1;
933 g_media.mgcp_conn[0].mdcx_seen_exp := 1;
934 g_media.mgcp_conn[1].crcx_seen_exp := 0;
935 g_media.mgcp_conn[1].mdcx_seen_exp := 0;
936 } else {
937 g_media.mgcp_conn[0].crcx_seen_exp := 1;
938 g_media.mgcp_conn[0].mdcx_seen_exp := 1;
939 g_media.mgcp_conn[1].crcx_seen_exp := 1;
940 g_media.mgcp_conn[1].mdcx_seen_exp := 0;
941 }
942 }
943
Harald Welte211219e2018-01-29 22:03:36 +0100944 f_create_mgcp_expect(mgcpcrit);
945 BSSAP.send(ass_cmd);
946
947 T.start;
948 alt {
949 /* assignment related bits */
950 [st.is_assignment] as_assignment(st);
951
952 /* modify related bits */
Philipp Maier8ef527e2018-05-18 11:12:50 +0200953 [not st.is_assignment and exp_modify] as_modify(st);
Harald Welte211219e2018-01-29 22:03:36 +0100954
955 /* voice call related bits (IPA CRCX/MDCX + MGCP) */
956 [st.voice_call] as_Media();
957
958 /* if we receive exactly what we expected, always return + pass */
Philipp Maier8ef527e2018-05-18 11:12:50 +0200959 [st.is_assignment and st.assignment_done or (not st.is_assignment and (st.modify_done or not exp_modify))] BSSAP.receive(exp_ass_cpl) -> value bssap {
Harald Welte211219e2018-01-29 22:03:36 +0100960 setverdict(pass);
961 }
Philipp Maier86f39202018-02-07 14:40:09 +0100962 [exp_fail] BSSAP.receive(exp_ass_cpl) -> value bssap {
963 setverdict(pass);
964 }
Harald Welte21583082018-01-29 22:28:26 +0100965 [(st.is_assignment and st.assignment_done or
Philipp Maier8ef527e2018-05-18 11:12:50 +0200966 (not st.is_assignment and (st.modify_done or not exp_modify))) and
Harald Welte21583082018-01-29 22:28:26 +0100967 exp_compl] BSSAP.receive(tr_BSSMAP_AssignmentComplete) {
Harald Weltec1a2fff2017-12-17 11:06:19 +0100968 setverdict(fail, "Received non-matching ASSIGNMENT COMPLETE");
Philipp Maier8aa5cb32018-09-12 17:09:37 +0200969 all component.stop;
970 mtc.stop;
Harald Weltec1a2fff2017-12-17 11:06:19 +0100971 }
972 [exp_compl] BSSAP.receive(tr_BSSMAP_AssignmentFail) {
973 setverdict(fail, "Received unexpected ASSIGNMENT FAIL");
Philipp Maier8aa5cb32018-09-12 17:09:37 +0200974 all component.stop;
975 mtc.stop;
Harald Weltec1a2fff2017-12-17 11:06:19 +0100976 }
977 [not exp_compl] BSSAP.receive(tr_BSSMAP_AssignmentComplete) {
978 setverdict(fail, "Received unexpected ASSIGNMENT COMPLETE");
Philipp Maier8aa5cb32018-09-12 17:09:37 +0200979 all component.stop;
980 mtc.stop;
Harald Weltec1a2fff2017-12-17 11:06:19 +0100981 }
982 [not exp_compl] BSSAP.receive(tr_BSSMAP_AssignmentFail) {
983 setverdict(fail, "Received non-matching ASSIGNMENT FAIL");
Philipp Maier8aa5cb32018-09-12 17:09:37 +0200984 all component.stop;
985 mtc.stop;
Harald Weltec1a2fff2017-12-17 11:06:19 +0100986 }
987 [] T.timeout {
Harald Welte458fd372018-03-21 11:26:23 +0100988 setverdict(fail, "Timeout waiting for ASSIGNMENT COMPLETE");
Philipp Maier8aa5cb32018-09-12 17:09:37 +0200989 all component.stop;
990 mtc.stop;
Harald Weltec1a2fff2017-12-17 11:06:19 +0100991 }
992 }
Harald Welte211219e2018-01-29 22:03:36 +0100993 log("g_media ", g_media);
994 if (not isbound(bssap)) {
Daniel Willmannafce8662018-07-06 23:11:32 +0200995 mtc.stop;
Harald Welte211219e2018-01-29 22:03:36 +0100996 }
Philipp Maier3e2af5d2018-07-11 17:01:05 +0200997
Philipp Maiera0976e92018-07-16 15:19:42 +0200998 /* When the BSC detects that LCLS is possible it will cross the
999 * connetions that point to the PBX side of the MGW. In our case this
1000 * is mgcp_conn[1]. The BSC performs this operation already before the
1001 * assignment complete is generated. This means we expect another MDCX
1002 * at mgcp_conn[1] when LCLS is expected. */
1003 if (ispresent(exp_ass_cpl.pdu.bssmap.assignmentComplete.lCLS_BSS_Status.lCLS_BSS_StatusValue)) {
1004 if (valueof(exp_ass_cpl.pdu.bssmap.assignmentComplete.lCLS_BSS_Status.lCLS_BSS_StatusValue) == LCLS_STS_locally_switched) {
1005 g_media.mgcp_conn[1].mdcx_seen_exp := g_media.mgcp_conn[1].mdcx_seen_exp + 1;
1006
1007 }
1008 }
1009
Philipp Maier3e2af5d2018-07-11 17:01:05 +02001010 f_check_mgcp_expectations();
Harald Welte930d0a72018-03-22 22:08:40 +01001011}
1012
Harald Welte261af4b2018-02-12 21:20:39 +01001013type record HandoverState {
1014 /* Assignment related bits */
1015 boolean rr_ho_cmpl_seen,
Philipp Maierc1e95c82018-07-18 16:03:00 +02001016 integer mdcx_seen_before_ho,
Harald Welte261af4b2018-02-12 21:20:39 +01001017 boolean handover_done,
1018 RslChannelNr old_chan_nr
1019};
1020
1021altstep as_handover(inout HandoverState st) runs on MSC_ConnHdlr {
1022 var RSL_Message rsl;
1023 [not st.rr_ho_cmpl_seen] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr)) -> value rsl {
1024 var PDU_ML3_NW_MS l3 := dec_PDU_ML3_NW_MS(rsl.ies[2].body.l3_info.payload);
1025 log("Rx L3 from net: ", l3);
1026 if (ischosen(l3.msgs.rrm.handoverCommand)) {
1027 var RslChannelNr new_chan_nr;
1028 var GsmArfcn arfcn;
1029 f_ChDesc2RslChanNr(l3.msgs.rrm.handoverCommand.channelDescription2,
1030 new_chan_nr, arfcn);
1031 /* FIXME: Determine TRX NR by ARFCN, instead of hard-coded TRX0! */
1032
1033 /* register our component for this channel number at the RSL Emulation */
1034 f_rslem_register(0, new_chan_nr, RSL1_PROC);
1035
1036 /* resume processing of RSL DChan messages, which was temporarily suspended
1037 * before performing a hand-over */
1038 f_rslem_resume(RSL1_PROC);
1039
Neels Hofmeyr378a49c2018-06-15 22:18:43 +02001040 /* send handover detect */
1041 RSL1.send(ts_RSL_HANDO_DET(new_chan_nr));
1042 f_sleep(0.3);
1043
Harald Welte261af4b2018-02-12 21:20:39 +01001044 /* send handover complete over the new channel */
1045 var PDU_ML3_MS_NW l3_tx := valueof(ts_RRM_HandoverComplete('00'O));
Neels Hofmeyrd07ee132018-07-14 22:28:29 +02001046 RSL1.send(ts_RSL_EST_IND(new_chan_nr, valueof(ts_RslLinkID_DCCH(0)),
Harald Welte261af4b2018-02-12 21:20:39 +01001047 enc_PDU_ML3_MS_NW(l3_tx)));
1048 /* by default, send via the new channel from now */
1049 st.old_chan_nr := g_chan_nr;
1050 g_chan_nr := new_chan_nr;
1051 st.rr_ho_cmpl_seen := true;
Philipp Maierc1e95c82018-07-18 16:03:00 +02001052
1053 /* Memorize how many MDCX we have seen before. We need this number to detect
1054 * that we have received the handover related MDCX */
1055 st.mdcx_seen_before_ho := g_media.mgcp_conn[0].mdcx_seen;
Harald Welte261af4b2018-02-12 21:20:39 +01001056 repeat;
1057 } else {
1058 setverdict(fail, "Unexpected L3 received", l3);
Daniel Willmannafce8662018-07-06 23:11:32 +02001059 mtc.stop;
Harald Welte261af4b2018-02-12 21:20:39 +01001060 }
1061 }
Philipp Maierc1e95c82018-07-18 16:03:00 +02001062 [st.rr_ho_cmpl_seen] as_Media_ipacc();
1063 [st.rr_ho_cmpl_seen] as_Media_mgw(true);
Harald Welte261af4b2018-02-12 21:20:39 +01001064 [st.rr_ho_cmpl_seen] RSL.receive(tr_RSL_REL_REQ(st.old_chan_nr, tr_RslLinkID_DCCH(0))) {
1065 RSL.send(ts_RSL_REL_CONF(st.old_chan_nr, valueof(ts_RslLinkID_DCCH(0))));
1066 repeat;
1067 }
1068 [st.rr_ho_cmpl_seen] RSL.receive(tr_RSL_RF_CHAN_REL(st.old_chan_nr)) {
1069 RSL.send(ts_RSL_RF_CHAN_REL_ACK(st.old_chan_nr));
1070 /* unregister for old channel number in RSL emulation */
1071 /* FIXME: Determine TRX NR by ARFCN, instead of hard-coded TRX0! */
1072 f_rslem_unregister(0, st.old_chan_nr);
Philipp Maierc1e95c82018-07-18 16:03:00 +02001073
1074 /* The channel release must not necessarly be synchronized to the RSL handover
1075 * procedure since those events may happen independently nearly at the same
1076 * time. When we receive the RSL_RF_CHAN_REL command the media negotiation on
1077 * IPACC or MGCP level may be still in progress. In order to make sure that
1078 * we do only stop when we have seen an MDCX on MGCP level and another a CRCX
1079 * as well as an MDCX on IPACC level. */
1080 if (g_media.mgcp_conn[0].mdcx_seen <= st.mdcx_seen_before_ho or
1081 g_media.bts1.ipa_mdcx_seen == false or g_media.bts1.ipa_crcx_seen == false) {
1082 repeat;
1083 } else {
1084 st.handover_done := true;
1085 }
Harald Welte261af4b2018-02-12 21:20:39 +01001086 }
1087}
1088
1089
Harald Weltec1a2fff2017-12-17 11:06:19 +01001090
Harald Welte28d943e2017-11-25 15:00:50 +01001091}