blob: 24a56b2909659f98d50babe75051d7bf84650924 [file] [log] [blame]
Harald Welte34b5a952019-05-27 11:54:11 +02001/* BSC Connection Handler of MSC test suite in TTCN-3
2 * (C) 2018-2019 Harald Welte <laforge@gnumonks.org>
3 * (C) 2018-2019 sysmocom - s.f.m.c. GmbH
4 * (C) 2018 Vadim Yanitskiy <axilirator@gmail.com>
5 * All rights reserved.
6 *
7 * Released under the terms of GNU General Public License, Version 2 or
8 * (at your option) any later version.
9 *
10 * SPDX-License-Identifier: GPL-2.0-or-later
11 */
12
Harald Weltea49e36e2018-01-21 19:29:33 +010013module BSC_ConnectionHandler {
14
15import from General_Types all;
16import from Osmocom_Types all;
Harald Welteb71901a2018-01-26 19:16:05 +010017import from Native_Functions all;
Harald Weltea49e36e2018-01-21 19:29:33 +010018import from GSM_Types all;
Harald Welteb71901a2018-01-26 19:16:05 +010019import from IPL4asp_Types all;
Harald Weltea49e36e2018-01-21 19:29:33 +010020import from SCCPasp_Types all;
21import from BSSAP_Types all;
Harald Welte6811d102019-04-14 22:23:14 +020022import from RAN_Emulation all;
Harald Weltea49e36e2018-01-21 19:29:33 +010023import from BSSMAP_Templates all;
24
Harald Welte9b751a62019-04-14 17:39:29 +020025import from RANAP_Constants all;
26import from RANAP_IEs all;
27import from RANAP_PDU_Contents all;
28import from RANAP_PDU_Descriptions all;
29import from RANAP_Templates all;
30
Harald Weltea49e36e2018-01-21 19:29:33 +010031import from GSUP_Types all;
32import from GSUP_Emulation all;
33
34import from MNCC_Types all;
35import from MNCC_Emulation all;
36
Harald Welte4aa970c2018-01-26 10:38:09 +010037import from MGCP_Types all;
38import from MGCP_Emulation all;
Harald Welteb71901a2018-01-26 19:16:05 +010039import from MGCP_Templates all;
40import from SDP_Types all;
Harald Welte4aa970c2018-01-26 10:38:09 +010041
Harald Weltea49e36e2018-01-21 19:29:33 +010042import from MobileL3_Types all;
43import from MobileL3_CommonIE_Types all;
44import from MobileL3_MM_Types all;
Harald Welteb71901a2018-01-26 19:16:05 +010045import from MobileL3_CC_Types all;
Harald Weltef45efeb2018-04-09 18:19:24 +020046import from MobileL3_SMS_Types all;
Harald Weltea49e36e2018-01-21 19:29:33 +010047import from L3_Templates all;
Harald Welte158a7ca2018-02-16 18:11:31 +010048import from L3_Common all;
Harald Weltea49e36e2018-01-21 19:29:33 +010049
Harald Weltef640a012018-04-14 17:49:21 +020050import from SMPP_Emulation all;
51
Philipp Maieraeb29a82018-11-08 17:40:53 +010052import from IPA_Emulation all;
53import from Osmocom_CTRL_Functions all;
54import from Osmocom_CTRL_Types all;
55import from Osmocom_CTRL_Adapter all;
56
Philipp Maierc39a9d82018-11-09 11:21:08 +010057import from TELNETasp_PortType all;
58import from Osmocom_VTY_Functions all;
59
Harald Welte4263c522018-12-06 11:56:27 +010060import from SGsAP_Emulation all;
61
Neels Hofmeyr4e18ccc2020-06-24 19:08:17 +020062import from TCCConversion_Functions { function f_strstr };
63
Harald Welte79f1e452020-08-18 22:55:02 +020064modulepar {
65 boolean mp_expect_common_id := true;
66}
67
Harald Weltea49e36e2018-01-21 19:29:33 +010068/* this component represents a single subscriber connection */
Harald Welte6811d102019-04-14 22:23:14 +020069type component BSC_ConnHdlr extends RAN_ConnHdlr, MNCC_ConnHdlr, GSUP_ConnHdlr, MGCP_ConnHdlr, SMPP_ConnHdlr, CTRL_Adapter_CT, SGsAP_ConnHdlr {
Harald Weltea49e36e2018-01-21 19:29:33 +010070 var BSC_ConnHdlrPars g_pars;
Harald Weltea10db902018-01-27 12:44:49 +010071 timer g_Tguard := 60.0;
Philipp Maierc39a9d82018-11-09 11:21:08 +010072 port TELNETasp_PT MSCVTY;
Harald Weltea49e36e2018-01-21 19:29:33 +010073}
74
Harald Weltede371492018-01-27 23:44:41 +010075type record BSC_ConnHdlrNetworkPars {
76 OCT1 kc_support,
77 boolean expect_tmsi,
78 boolean expect_auth,
Oliver Smith1d118ff2019-07-03 10:57:35 +020079 boolean expect_ciph,
80 boolean expect_imei,
81 boolean expect_imei_early,
82 GSUP_IMEIResult check_imei_result,
83 boolean check_imei_error
Harald Weltede371492018-01-27 23:44:41 +010084}
85
Harald Weltea49e36e2018-01-21 19:29:33 +010086type record BSC_ConnHdlrPars {
87 SCCP_PAR_Address sccp_addr_own,
88 SCCP_PAR_Address sccp_addr_peer,
89 BSSMAP_IE_CellIdentifier cell_id,
Harald Welte256571e2018-01-24 18:47:19 +010090 hexstring imei,
Harald Weltea49e36e2018-01-21 19:29:33 +010091 hexstring imsi,
Harald Welte82600572018-01-21 20:54:08 +010092 hexstring msisdn,
Harald Welte256571e2018-01-24 18:47:19 +010093 OCT4 tmsi optional,
Harald Welte9de84792018-01-28 01:06:35 +010094 MobileStationClassmark1_V cm1,
Harald Welte82600572018-01-21 20:54:08 +010095 BSSMAP_IE_ClassmarkInformationType2 cm2,
Harald Welte16114282018-01-24 22:41:21 +010096 BSSMAP_IE_ClassmarkInformationType3 cm3 optional,
Harald Weltede371492018-01-27 23:44:41 +010097 AuthVector vec optional,
Neels Hofmeyrc1f105a2018-03-01 20:00:19 +010098 BSC_ConnHdlrNetworkPars net,
Philipp Maieraeb29a82018-11-08 17:40:53 +010099 boolean send_early_cm,
100 charstring ipa_ctrl_ip,
101 integer ipa_ctrl_port,
Philipp Maier9b690e42018-12-21 11:50:03 +0100102 boolean ipa_ctrl_enable,
Philipp Maier57865482019-01-07 18:33:13 +0100103 boolean mm_info,
Philipp Maierc09a1312019-04-09 16:05:26 +0200104 boolean sgsap_enable,
Harald Weltef9abf8d2019-04-21 13:07:17 +0200105 boolean gsup_enable,
Vadim Yanitskiy2dd96612020-01-07 21:48:29 +0100106 OCT4 gsup_sid,
Harald Weltec1f937a2019-04-21 21:19:23 +0200107 integer ran_idx,
Harald Welte9b751a62019-04-14 17:39:29 +0200108 boolean use_umts_aka,
Pau Espin Pedrola65697d2019-05-21 12:54:39 +0200109 boolean ran_is_geran,
Neels Hofmeyr4e18ccc2020-06-24 19:08:17 +0200110 boolean use_osmux,
Pau Espin Pedrol833174e2020-09-03 16:46:02 +0200111 boolean use_ipv6,
Neels Hofmeyr4e18ccc2020-06-24 19:08:17 +0200112 boolean verify_cell_id
Harald Weltea49e36e2018-01-21 19:29:33 +0100113};
114
Harald Welte9de84792018-01-28 01:06:35 +0100115/* get a one-octet bitmaks of supported algorithms based on Classmark information */
116function f_alg_mask_from_cm(BSSMAP_IE_ClassmarkInformationType2 cm2) return OCT1 {
117 var BIT8 res := '00000001'B; /* A5/0 always supported */
118
119 if (cm2.a5_1 == '0'B) {
120 res := res or4b '00000010'B;
121 }
122 if (cm2.classmarkInformationType2_oct5.a5_2 == '1'B ) {
123 res := res or4b '00000100'B;
124 }
125 if (cm2.classmarkInformationType2_oct5.a5_3 == '1'B) {
126 res := res or4b '00001000'B;
127 }
128 /* TODO: CM3 for A5/4 and beyond */
129 return bit2oct(res);
130}
131
132/* determine the best algorithm available within the bit-mask */
133function f_best_alg_from_mask(OCT1 alg_in) return OCT1 {
134 var BIT8 alg := oct2bit(alg_in);
135 var BIT8 ordered_algs[8] := {
136 '10000000'B, '01000000'B, '00100000'B, '00010000'B,
137 '00001000'B, /* A5/3 */
138 '00000010'B, /* A5/1 */
139 '00000100'B, /* A5/2 */
140 '00000001'B /* A5/0 */ }
141 for (var integer i := 0; i < sizeof(ordered_algs); i := i+1) {
142 if (alg and4b ordered_algs[i] != '00000000'B) {
143 return bit2oct(ordered_algs[i]);
144 }
145 }
146 return '00'O;
147}
148
149/* return an integer like '1' for A5/1 based on a mask (with only one bit set */
150function f_alg_from_mask(OCT1 mask_in) return integer {
151 var BIT8 mask := oct2bit(mask_in);
152 for (var integer i := 0; i < 8; i := i+1) {
153 if (mask and4b ('00000001'B << i) != '00000000'B) {
154 return i;
155 }
156 }
157 return -1;
158}
159
Harald Weltea10db902018-01-27 12:44:49 +0100160/* altstep for the global guard timer */
161private altstep as_Tguard() runs on BSC_ConnHdlr {
162 [] g_Tguard.timeout {
Daniel Willmann90829d62018-02-15 17:45:14 +0100163 setverdict(fail, "Tguard timeout");
Daniel Willmannafce8662018-07-06 23:11:32 +0200164 mtc.stop;
Harald Weltea10db902018-01-27 12:44:49 +0100165 }
166}
167
168/* init function, called as first function in new BSC_ConnHdlr */
Harald Weltead2952e2018-01-27 14:12:46 +0100169function f_init_handler(BSC_ConnHdlrPars pars, float t_guard := 60.0) runs on BSC_ConnHdlr {
Harald Weltea10db902018-01-27 12:44:49 +0100170 /* make parameters available via component variable */
171 g_pars := pars;
172 /* Start guard timer and activate it as default */
Harald Weltead2952e2018-01-27 14:12:46 +0100173 g_Tguard.start(t_guard);
Harald Weltea10db902018-01-27 12:44:49 +0100174 activate(as_Tguard());
Harald Weltef640a012018-04-14 17:49:21 +0200175 /* Route all SMPP messages for our MSISDN to us */
176 f_create_smpp_expect(hex2str(pars.msisdn));
Philipp Maier57865482019-01-07 18:33:13 +0100177
Harald Welte4263c522018-12-06 11:56:27 +0100178 /* Route all SGs message for our IMSI to us */
Philipp Maier57865482019-01-07 18:33:13 +0100179 if (g_pars.sgsap_enable == true) {
180 f_create_sgsap_expect(pars.imsi);
181 }
Philipp Maieraeb29a82018-11-08 17:40:53 +0100182
183 if (g_pars.ipa_ctrl_enable == true) {
184 f_ipa_ctrl_start(g_pars.ipa_ctrl_ip, g_pars.ipa_ctrl_port);
185 }
Philipp Maierc39a9d82018-11-09 11:21:08 +0100186
187 map(self:MSCVTY, system:MSCVTY);
188 f_vty_set_prompts(MSCVTY);
189 f_vty_transceive(MSCVTY, "enable");
Harald Weltea10db902018-01-27 12:44:49 +0100190}
191
Harald Weltea49e36e2018-01-21 19:29:33 +0100192
Harald Welte6811d102019-04-14 22:23:14 +0200193/* Callback function from general RAN_Emulation whenever a connectionless
Harald Weltea49e36e2018-01-21 19:29:33 +0100194 * BSSMAP message arrives. Canreturn a PDU_BSSAPthat should be sent in return */
195private function BscUnitdataCallback(PDU_BSSAP bssap)
Harald Welte6811d102019-04-14 22:23:14 +0200196runs on RAN_Emulation_CT return template PDU_BSSAP {
Harald Weltea49e36e2018-01-21 19:29:33 +0100197 var template PDU_BSSAP resp := omit;
198
199 log("BSSMAP_BscUnitdataCallback");
200 /* answer all RESET with RESET ACK */
Pau Espin Pedrola65697d2019-05-21 12:54:39 +0200201 if (match(bssap, tr_BSSMAP_Reset(g_ran_ops.use_osmux))){
Harald Weltea49e36e2018-01-21 19:29:33 +0100202 log("BSSMAP_BscUnitdataCallback: Responding to RESET with RESET-ACK");
Pau Espin Pedrola65697d2019-05-21 12:54:39 +0200203 resp := ts_BSSMAP_ResetAck(g_ran_ops.use_osmux);
Harald Weltea49e36e2018-01-21 19:29:33 +0100204 }
205
206 /* FIXME: Handle paging, etc. */
207 return resp;
208}
209
Harald Welte9b751a62019-04-14 17:39:29 +0200210private function RncUnitdataCallback(RANAP_PDU ranap)
211runs on RAN_Emulation_CT return template RANAP_PDU {
212 var template RANAP_PDU resp := omit;
213
214 log("RANAP_RncUnitdataCallback");
215 /* answer all RESET with RESET ACK */
Pau Espin Pedrola65697d2019-05-21 12:54:39 +0200216 if (match(ranap, tr_RANAP_Reset())) {
Harald Welte9b751a62019-04-14 17:39:29 +0200217 log("RANAP_RncUnitdataCallback: Responding to RESET with RESET-ACK");
218 var CN_DomainIndicator dom;
219 dom := ranap.initiatingMessage.value_.Reset.protocolIEs[1].value_.cN_DomainIndicator;
220 resp := ts_RANAP_ResetAck(dom);
221 }
222
223 /* FIXME: Handle paging, etc. */
224 return resp;
225}
226
227
Harald Welte6811d102019-04-14 22:23:14 +0200228const RanOps BSC_RanOps := {
Harald Weltea49e36e2018-01-21 19:29:33 +0100229 /* Create call-back for inbound connections from MSC (hand-over) */
Harald Welte6811d102019-04-14 22:23:14 +0200230 create_cb := refers(RAN_Emulation.ExpectedCreateCallback),
Harald Weltea49e36e2018-01-21 19:29:33 +0100231 unitdata_cb := refers(BscUnitdataCallback),
Harald Welte9b751a62019-04-14 17:39:29 +0200232 ranap_create_cb := refers(RAN_Emulation.RanapExpectedCreateCallback),
233 ranap_unitdata_cb := refers(RncUnitdataCallback),
234 ps_domain := false,
Harald Weltea49e36e2018-01-21 19:29:33 +0100235 decode_dtap := true,
Harald Weltea4ca4462018-02-09 00:17:14 +0100236 role_ms := true,
Harald Welte2fce7882019-04-15 11:48:05 +0200237 protocol := RAN_PROTOCOL_BSSAP,
Pau Espin Pedrolc6b78ff2019-06-06 15:58:17 +0200238 transport := BSSAP_TRANSPORT_AoIP,
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200239 use_osmux := false,
Harald Weltea4ca4462018-02-09 00:17:14 +0100240 sccp_addr_local := omit,
241 sccp_addr_peer := omit
Harald Weltea49e36e2018-01-21 19:29:33 +0100242}
243
244
245private function MnccUnitdataCallback(MNCC_PDU mncc)
246runs on MNCC_Emulation_CT return template MNCC_PDU {
247 log("Ignoring MNCC", mncc);
248 return omit;
249}
250
251const MnccOps BCC_MnccOps := {
252 create_cb := refers(MNCC_Emulation.ExpectedCreateCallback),
253 unitdata_cb := refers(MnccUnitdataCallback)
254}
255
256
257
Harald Welte6811d102019-04-14 22:23:14 +0200258/* Encode 'l3' and ask RAN_Emulation to create new connection with COMPL L3 INFO */
Harald Weltea49e36e2018-01-21 19:29:33 +0100259function f_bssap_compl_l3(PDU_ML3_MS_NW l3)
260runs on BSC_ConnHdlr {
261 log("Sending COMPL L3: ", l3);
262 var octetstring l3_enc := enc_PDU_ML3_MS_NW(l3);
263 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_peer, g_pars.sccp_addr_own,
264 valueof(ts_BSSMAP_ComplL3(g_pars.cell_id, l3_enc))));
Harald Welte71b69332018-01-21 20:43:53 +0100265 alt {
Harald Welte6811d102019-04-14 22:23:14 +0200266 [] BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND) {}
267 [] BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_IND) {
Harald Welte71b69332018-01-21 20:43:53 +0100268 setverdict(fail, "DISC.ind from SCCP");
Daniel Willmannafce8662018-07-06 23:11:32 +0200269 mtc.stop;
Harald Welte71b69332018-01-21 20:43:53 +0100270 }
271 }
Harald Weltea49e36e2018-01-21 19:29:33 +0100272}
273
Harald Welte9b751a62019-04-14 17:39:29 +0200274/* generate Iu LAI from BSSAP CGI */
275private function f_IuLAI_from_BssmapCI(BSSMAP_IE_CellIdentifier ci) return LAI {
276 var LAI lai;
277 if (ischosen(ci.cellIdentification.cI_CGI)) {
278 lai.pLMNidentity := ci.cellIdentification.cI_CGI.mcc_mnc;
279 lai.lAC := ci.cellIdentification.cI_CGI.lac;
280 } else if (ischosen(ci.cellIdentification.cI_SAI)) {
281 lai.pLMNidentity := ci.cellIdentification.cI_SAI.mcc_mnc;
282 lai.lAC := ci.cellIdentification.cI_SAI.lac;
283 } else if (ischosen(ci.cellIdentification.ci_LAC_RNC_CI)) {
284 lai.pLMNidentity := ci.cellIdentification.ci_LAC_RNC_CI.mcc_mnc;
285 lai.lAC := ci.cellIdentification.ci_LAC_RNC_CI.lac;
286 } else {
287 mtc.stop;
288 }
289 lai.iE_Extensions := omit;
290 return lai;
291}
292
293/* like f_bssap_compl_l3() but for 3G */
294function f_ranap_initial_ue(PDU_ML3_MS_NW l3)
295runs on BSC_ConnHdlr {
296 log("Sending InitialUE: ", l3);
297 var octetstring l3_enc := enc_PDU_ML3_MS_NW(l3);
298 var RANAP_PDU ranap;
299 var LAI lai := f_IuLAI_from_BssmapCI(g_pars.cell_id);
300 var SAI sai := {
301 pLMNidentity := lai.pLMNidentity,
302 lAC := lai.lAC,
303 sAC := '0000'O, /* FIXME */
304 iE_Extensions := omit
305 };
306 var IuSignallingConnectionIdentifier sigc_id := int2bit(23, 24);
307 var GlobalRNC_ID grnc_id := {
308 pLMNidentity := lai.pLMNidentity,
309 rNC_ID := 2342 /* FIXME */
310 };
311
312 ranap := valueof(ts_RANAP_initialUE_CS(lai, sai, l3_enc, sigc_id, grnc_id));
313 BSSAP.send(ts_RANAP_Conn_Req(g_pars.sccp_addr_peer, g_pars.sccp_addr_own, ranap));
314 alt {
315 [] BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND) {}
316 [] BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_IND) {
317 setverdict(fail, "DISC.ind from SCCP");
318 mtc.stop;
319 }
320 }
321}
322
Harald Weltedceacc72019-04-21 20:58:35 +0200323/* Send BSSMAP Complete L3 or RANAP Initial UE depending on 2G/3G RAN type */
324function f_cl3_or_initial_ue(PDU_ML3_MS_NW l3)
325runs on BSC_ConnHdlr {
326 if (g_pars.ran_is_geran) {
327 f_bssap_compl_l3(l3);
328 } else {
329 f_ranap_initial_ue(l3);
330 }
331}
332
Harald Welte081b19a2018-02-10 09:11:13 +0100333type enumerated EstablishType {
334 EST_TYPE_MO_CALL,
Harald Welte0bef21e2018-02-10 09:48:23 +0100335 EST_TYPE_EMERG_CALL,
Harald Weltef45efeb2018-04-09 18:19:24 +0200336 EST_TYPE_PAG_RESP,
Vadim Yanitskiy20ee5e42018-05-27 17:54:21 +0700337 EST_TYPE_MO_SMS,
338 EST_TYPE_SS_ACT
Harald Welte081b19a2018-02-10 09:11:13 +0100339};
340
Harald Weltea49e36e2018-01-21 19:29:33 +0100341/* helper function to fully establish a dedicated channel */
Harald Welteb9e86fa2018-04-09 18:18:31 +0200342function f_establish_fully(EstablishType etype := EST_TYPE_MO_CALL)
Harald Weltea49e36e2018-01-21 19:29:33 +0100343runs on BSC_ConnHdlr {
Harald Welte081b19a2018-02-10 09:11:13 +0100344 var PDU_ML3_MS_NW l3_info;
Harald Welteb9e86fa2018-04-09 18:18:31 +0200345 var MobileIdentityLV mi;
346
347 /* If we have a TMSI, use TMSI instead of IMSI */
348 if (ispresent(g_pars.tmsi)) {
349 mi := valueof(ts_MI_TMSI_LV(g_pars.tmsi));
350 } else {
351 mi := valueof(ts_MI_IMSI_LV(g_pars.imsi));
352 }
353
Harald Welte081b19a2018-02-10 09:11:13 +0100354 select (etype) {
355 case (EST_TYPE_MO_CALL) {
356 l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, mi));
357 }
Harald Welte0bef21e2018-02-10 09:48:23 +0100358 case (EST_TYPE_EMERG_CALL) {
359 l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_EMERG_CALL, mi));
360 }
Harald Welte081b19a2018-02-10 09:11:13 +0100361 case (EST_TYPE_PAG_RESP) {
362 l3_info := valueof(ts_PAG_RESP(mi));
363 }
Harald Weltef45efeb2018-04-09 18:19:24 +0200364 case (EST_TYPE_MO_SMS) {
365 l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_SMS, mi));
366 }
Vadim Yanitskiy20ee5e42018-05-27 17:54:21 +0700367 case (EST_TYPE_SS_ACT) {
368 l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_SS_ACT, mi));
369 }
Harald Welte081b19a2018-02-10 09:11:13 +0100370 }
Harald Weltea49e36e2018-01-21 19:29:33 +0100371
372 /* Send BSSAP_Conn_Req with COMPL L3 INFO to MSC */
Harald Weltedceacc72019-04-21 20:58:35 +0200373 f_cl3_or_initial_ue(l3_info);
Harald Weltea49e36e2018-01-21 19:29:33 +0100374
Neels Hofmeyr4e18ccc2020-06-24 19:08:17 +0200375 f_verify_vty_lac_ci(verify_vlr := false);
376
Harald Weltede371492018-01-27 23:44:41 +0100377 f_mm_common();
Pau Espin Pedrolf8034482019-06-03 13:15:58 +0200378 if (g_pars.net.expect_ciph or not g_pars.ran_is_geran) {
Harald Welte148a7082018-01-26 18:56:43 +0100379 /* implicit CM SERVICE ACCEPT? */
380 } else {
Harald Welte0bef21e2018-02-10 09:48:23 +0100381 if (etype != EST_TYPE_PAG_RESP) {
Harald Welte081b19a2018-02-10 09:11:13 +0100382 /* explicit CM SERVICE ACCEPT */
383 BSSAP.receive(tr_PDU_DTAP_MT(tr_CM_SERV_ACC));
384 }
Harald Weltea49e36e2018-01-21 19:29:33 +0100385 }
Harald Weltea49e36e2018-01-21 19:29:33 +0100386}
387
388/* build a PDU_ML3_MS_NW containing a Location Update by IMSI */
Harald Welte9de84792018-01-28 01:06:35 +0100389function f_build_lu_imsi(hexstring imsi) runs on BSC_ConnHdlr return PDU_ML3_MS_NW
Harald Weltea49e36e2018-01-21 19:29:33 +0100390{
391 var MobileIdentityLV mi := valueof(ts_MI_IMSI_LV(imsi));
392 return f_build_lu(mi);
393}
Harald Welte9de84792018-01-28 01:06:35 +0100394function f_build_lu_imei(hexstring imei) runs on BSC_ConnHdlr return PDU_ML3_MS_NW
Harald Welteba7b6d92018-01-23 21:32:34 +0100395{
396 var MobileIdentityLV mi := valueof(ts_MI_IMEI_LV(imei));
397 return f_build_lu(mi);
398}
Harald Welte9de84792018-01-28 01:06:35 +0100399function f_build_lu_tmsi(OCT4 tmsi) runs on BSC_ConnHdlr return PDU_ML3_MS_NW
Harald Welteba7b6d92018-01-23 21:32:34 +0100400{
401 var MobileIdentityLV mi := valueof(ts_MI_TMSI_LV(tmsi));
402 return f_build_lu(mi);
403}
Harald Welte9de84792018-01-28 01:06:35 +0100404private function f_build_lu(MobileIdentityLV mi) runs on BSC_ConnHdlr return PDU_ML3_MS_NW
Harald Weltea49e36e2018-01-21 19:29:33 +0100405{
406 var LocationAreaIdentification_V old_lai := { '62F220'O, '9999'O };
407 var PDU_ML3_MS_NW l3_info := valueof(ts_ML3_MO_LU_Req(valueof(ts_ML3_IE_LuType_Attach),
Harald Welte9de84792018-01-28 01:06:35 +0100408 old_lai, mi, g_pars.cm1));
Harald Weltea49e36e2018-01-21 19:29:33 +0100409 return l3_info;
410}
411
Harald Weltea183a5d2019-05-09 13:40:52 +0200412altstep as_GSUP_SAI() runs on BSC_ConnHdlr {
413var GSUP_IE auth_tuple;
414[] GSUP.receive(tr_GSUP_SAI_REQ(g_pars.imsi)) {
415 if (g_pars.use_umts_aka) {
416 g_pars.vec := f_gen_auth_vec_3g();
417 auth_tuple := valueof(ts_GSUP_IE_AuthTuple2G3G(g_pars.vec.rand,
418 g_pars.vec.sres,
419 g_pars.vec.kc,
420 g_pars.vec.ik,
421 g_pars.vec.ck,
422 g_pars.vec.autn,
423 g_pars.vec.res));
424 GSUP.send(ts_GSUP_SAI_RES(g_pars.imsi, auth_tuple));
425 } else {
426 g_pars.vec := f_gen_auth_vec_2g();
427 auth_tuple := valueof(ts_GSUP_IE_AuthTuple2G(g_pars.vec.rand,
428 g_pars.vec.sres,
429 g_pars.vec.kc));
430 GSUP.send(ts_GSUP_SAI_RES(g_pars.imsi, auth_tuple));
431 }
432 }
433}
434
Harald Welte9de84792018-01-28 01:06:35 +0100435function f_mm_auth() runs on BSC_ConnHdlr
Harald Welte148a7082018-01-26 18:56:43 +0100436{
Harald Weltede371492018-01-27 23:44:41 +0100437 if (g_pars.net.expect_auth) {
Harald Weltea183a5d2019-05-09 13:40:52 +0200438 as_GSUP_SAI();
Harald Weltec1f937a2019-04-21 21:19:23 +0200439 if (g_pars.use_umts_aka) {
Harald Weltec1f937a2019-04-21 21:19:23 +0200440 BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_MM_AUTH_REQ_3G(g_pars.vec.rand, g_pars.vec.autn)));
441 var OCT4 res := substr(g_pars.vec.res, 0, 4);
442 var OCT4 xres := substr(g_pars.vec.res, 4, 4);
443 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MT_MM_AUTH_RESP_3G(res, xres)));
444 } else {
Harald Weltec1f937a2019-04-21 21:19:23 +0200445 BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_MM_AUTH_REQ(g_pars.vec.rand)));
446 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MT_MM_AUTH_RESP_2G(g_pars.vec.sres)));
447 }
Harald Welte148a7082018-01-26 18:56:43 +0100448 }
Harald Welte9de84792018-01-28 01:06:35 +0100449}
Harald Welte148a7082018-01-26 18:56:43 +0100450
Oliver Smith1d118ff2019-07-03 10:57:35 +0200451function f_mm_imei() runs on BSC_ConnHdlr
452{
453 var PDU_DTAP_MT dtap_mt;
454 var GSUP_PDU gsup_msg;
Vadim Yanitskiy98bb2d52020-03-28 00:57:21 +0700455 var MobileIdentityLV mi;
Oliver Smith1d118ff2019-07-03 10:57:35 +0200456
457 if (not g_pars.net.expect_imei) {
458 return
459 }
460
461 /* MSC <-> BSC: ID req/rsp for IMEI */
462 alt {
463 [] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_MM_ID_Req(CM_ID_TYPE_IMEI))) {
464 mi := valueof(ts_MI_IMEI_LV(g_pars.imei));
465 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_MM_ID_Rsp(mi)));
466 }
467 [] BSSAP.receive(tr_PDU_DTAP_MT(?)) -> value dtap_mt {
468 setverdict(fail, "Expected ID REQ for IMEI DTAP MT message, but got: ", dtap_mt);
469 mtc.stop;
470 }
471 }
472
473 /* MSC <-> HLR: Check IMEI req/res/err */
474 alt {
475 [g_pars.net.check_imei_error] GSUP.receive(tr_GSUP_CHECK_IMEI_REQ(g_pars.imsi, g_pars.imei)) {
476 GSUP.send(ts_GSUP_CHECK_IMEI_ERR(g_pars.imsi, 96 /* Invalid Mandatory Information */));
477 }
478 [not g_pars.net.check_imei_error] GSUP.receive(tr_GSUP_CHECK_IMEI_REQ(g_pars.imsi, g_pars.imei)) {
479 GSUP.send(ts_GSUP_CHECK_IMEI_RES(g_pars.imsi, g_pars.net.check_imei_result));
480 }
481 [] GSUP.receive(?) -> value gsup_msg {
482 setverdict(fail, "Expected CHECK IMEI REQ GSUP message (with IMEI:", g_pars.imei, " and IMSI: ",
483 g_pars.imsi, "), but got: ", gsup_msg);
484 mtc.stop;
485 }
486 }
487}
488
489function f_mm_imei_early() runs on BSC_ConnHdlr
490{
491 var PDU_DTAP_MT dtap_mt;
492 var GSUP_PDU gsup_msg;
Vadim Yanitskiy98bb2d52020-03-28 00:57:21 +0700493 var MobileIdentityLV mi;
Oliver Smith1d118ff2019-07-03 10:57:35 +0200494
495 if (not g_pars.net.expect_imei_early) {
496 return
497 }
498
499 /* MSC <-> BSC: ID req/rsp for IMEISV */
500 alt {
501 [] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_MM_ID_Req(CM_ID_TYPE_IMEISV))) {
502 mi := valueof(ts_MI_IMEISV_LV(g_pars.imei));
503 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_MM_ID_Rsp(mi)));
504 }
505 [] BSSAP.receive(tr_PDU_DTAP_MT(?)) -> value dtap_mt {
506 setverdict(fail, "Expected ID REQ for IMEISV DTAP MT message, but got: ", dtap_mt);
507 mtc.stop;
508 }
509 }
510
511 /* MSC <-> HLR: Check IMEI req/res/err */
512 alt {
513 [g_pars.net.check_imei_error] GSUP.receive(tr_GSUP_CHECK_IMEI_REQ(g_pars.imsi, g_pars.imei)) {
514 GSUP.send(ts_GSUP_CHECK_IMEI_ERR(g_pars.imsi, 96 /* Invalid Mandatory Information */));
515 }
516 [not g_pars.net.check_imei_error] GSUP.receive(tr_GSUP_CHECK_IMEI_REQ(g_pars.imsi, g_pars.imei)) {
517 GSUP.send(ts_GSUP_CHECK_IMEI_RES(g_pars.imsi, g_pars.net.check_imei_result));
518 }
519 [] GSUP.receive(?) -> value gsup_msg {
520 setverdict(fail, "Expected CHECK IMEI REQ GSUP message (with IMEI:", g_pars.imei, " and IMSI: ",
521 g_pars.imsi, "), but got: ", gsup_msg);
522 mtc.stop;
523 }
524 }
525}
526
Harald Welte79f1e452020-08-18 22:55:02 +0200527function f_expect_common_id() runs on BSC_ConnHdlr
528{
529 if (g_pars.ran_is_geran) {
530 if (mp_expect_common_id) {
531 BSSAP.receive(tr_BSSMAP_CommonId(g_pars.imsi));
532 }
533 } else {
534 BSSAP.receive(tr_RANAP_CommonId(imsi_hex2oct(g_pars.imsi)));
535 }
536}
537
Harald Welte9de84792018-01-28 01:06:35 +0100538function f_mm_common() runs on BSC_ConnHdlr
539{
540 f_mm_auth();
Harald Welte9b751a62019-04-14 17:39:29 +0200541 if (g_pars.ran_is_geran) {
542 if (g_pars.net.expect_ciph) {
543 var OCT1 a5_net := f_alg_mask_from_cm(g_pars.cm2);
544 var OCT1 a5_intersect := g_pars.net.kc_support and4b a5_net;
545 alt {
546 [] BSSAP.receive(tr_BSSMAP_CipherModeCmd(a5_intersect, g_pars.vec.kc)) {
547 var OCT1 a5_chosen := f_best_alg_from_mask(a5_intersect);
548 var integer a5_nr := f_alg_from_mask(a5_chosen);
549 BSSAP.send(ts_BSSMAP_CipherModeCompl(int2oct(a5_nr+1, 1)));
550 }
551 [] BSSAP.receive(tr_BSSMAP_CipherModeCmd(?, g_pars.vec.kc)) {
552 setverdict(fail, "Wrong ciphering algorithm mask in CiphModCmd");
553 mtc.stop;
554 }
Harald Welte9de84792018-01-28 01:06:35 +0100555 }
Harald Welte9b751a62019-04-14 17:39:29 +0200556 /* FIXME: Send the best available algorithm */
557 }
Harald Welte79f1e452020-08-18 22:55:02 +0200558 f_expect_common_id();
Harald Welte9b751a62019-04-14 17:39:29 +0200559 } else { /* UTRAN */
560 alt {
561 [g_pars.net.expect_ciph] BSSAP.receive(tr_RANAP_SecurityModeCmdEnc(uia_algs := ?,
562 uia_key := oct2bit(g_pars.vec.ik),
563 key_sts := ?,
564 uea_algs := ?,
565 uea_key := oct2bit(g_pars.vec.ck))) {
566 var IntegrityProtectionAlgorithm uia_chosen := 0; /*standard_UMTS_integrity_algorithm_UIA1*/
567 var EncryptionAlgorithm uea_chosen := 1; /*standard_UMTS_encryption_algorith_UEA1*/
568 BSSAP.send(ts_RANAP_SecurityModeCompleteEnc(uia_chosen, uea_chosen));
Harald Welte79f1e452020-08-18 22:55:02 +0200569 f_expect_common_id();
Harald Welte9b751a62019-04-14 17:39:29 +0200570 }
571 [g_pars.net.expect_ciph] BSSAP.receive(tr_RANAP_SecurityModeCmdEnc(?,?,?,?,?)) {
572 setverdict(fail, "Invalid SecurityModeCommand (ciphering case)");
573 mtc.stop;
574 }
575 [not g_pars.net.expect_ciph] BSSAP.receive(tr_RANAP_SecurityModeCmd(uia_algs := ?,
576 uia_key := oct2bit(g_pars.vec.ik),
577 key_sts := ?)) {
578 var IntegrityProtectionAlgorithm uia_chosen := 0; /*standard_UMTS_integrity_algorithm_UIA1;*/
579 BSSAP.send(ts_RANAP_SecurityModeComplete(uia_chosen));
Harald Welte79f1e452020-08-18 22:55:02 +0200580 f_expect_common_id();
Harald Welte9b751a62019-04-14 17:39:29 +0200581 }
582 [not g_pars.net.expect_ciph] BSSAP.receive(tr_RANAP_SecurityModeCmd(?,?,?)) {
583 setverdict(fail, "Invalid SecurityModeCommand (non-ciphering case)");
Daniel Willmannafce8662018-07-06 23:11:32 +0200584 mtc.stop;
Harald Welte9de84792018-01-28 01:06:35 +0100585 }
586 }
Harald Welte148a7082018-01-26 18:56:43 +0100587 }
588}
589
Philipp Maier9b690e42018-12-21 11:50:03 +0100590function f_expect_mm_info() runs on BSC_ConnHdlr {
591 if (g_pars.mm_info == true) {
592 BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_MM_Info));
593 }
594}
595
Neels Hofmeyr4e18ccc2020-06-24 19:08:17 +0200596private function f_lac_ci_vty_str(BSSMAP_IE_CellIdentifier cell_id) return charstring
597{
598 return "LAC / cell ID: "
599 & int2str(oct2int(cell_id.cellIdentification.cI_CGI.lac)) & " / "
600 & int2str(oct2int(cell_id.cellIdentification.cI_CGI.ci));
601}
602
603/* Get an IMSI's info and verify that the g_pars.cell_id is reflected in the info.
604 * Verify both the "LAC / cell ID" in the VLR and the "LAC / cell ID" in the "Connection:" part, if any.
605 * If verify_vlr == false, then only verify the "Connection:" part, and fail if there is no "Connection:"; this is
606 * useful when a conn has been established, but the subscriber has not been authenticated, so the VLR does not yet
607 * reflect the new conn's cell ID.
608 */
609function f_verify_vty_lac_ci(boolean verify_vlr := true) runs on BSC_ConnHdlr {
610 if (not g_pars.ran_is_geran) {
611 log("Skipping f_verify_vty_lac_ci(), disabled for Iu");
612 setverdict(pass);
613 return;
614 }
615 if (not g_pars.verify_cell_id) {
616 /* Skip this verification; either the TC expects no cell id to end up being accepted, or this was
617 * disabled globally to test an older osmo-msc which doesn't store the cell id properly yet. */
618 log("Skipping f_verify_vty_lac_ci()");
619 setverdict(pass);
620 return;
621 }
622
623 var charstring vty_cmd := "show subscriber imsi " & hex2str(g_pars.imsi) & " conn";
624 var charstring result := f_vty_transceive_ret(MSCVTY, vty_cmd);
625 var charstring expect_lac_ci := "LAC / cell ID: "
626 & int2str(oct2int(g_pars.cell_id.cellIdentification.cI_CGI.lac)) & " / "
627 & int2str(oct2int(g_pars.cell_id.cellIdentification.cI_CGI.ci));
628
629 var boolean vlr_matches := false;
630 var boolean connection_present := false;
631 var boolean connection_matches := false;
632
633 /* There are two occurences of LAC / cell ID: once for the VLR record, and once for the active connection. The
634 * active connection part starts with 'Connection:'. If there is no active connection, that part is omitted.
635 * So, first find out whether there is a 'Connection:' part. Then verify the LAC / cell ID above 'Connection:'
636 * and below 'Connection:', separately.
637 */
638 var integer connection_start := f_strstr(result, "Connection:");
639 connection_present := (connection_start >= 0);
640
641 var integer lac_ci_match := f_strstr(result, expect_lac_ci);
642 if (connection_present) {
643 if (lac_ci_match > connection_start) {
644 /* The first match is below 'Connection:', so the VLR part above it did not match. */
645 vlr_matches := false;
646 connection_matches := true;
647 } else if (lac_ci_match >= 0) {
648 /* The first match is above 'Connection:', so the VLR part matches. */
649 vlr_matches := true;
650
651 /* Now find a match below 'Connection:' */
652 lac_ci_match := f_strstr(result, expect_lac_ci, connection_start);
653 connection_matches := (lac_ci_match > 0);
654 }
655 } else {
656 /* There is no 'Connection:', so a match, if any, is from the VLR part. */
657 vlr_matches := (lac_ci_match >= 0);
658 }
659
660 if (verify_vlr) {
661 if (not vlr_matches) {
662 setverdict(fail, vty_cmd, " shows mismatching LAC / cell ID in the VLR part, expecting: ",
663 expect_lac_ci, " -- got: ", result);
664 return;
665 } else {
666 log("f_verify_vty_lac_ci(): VLR record matches ", expect_lac_ci);
667 setverdict(pass);
668 }
669 }
670
671 if (connection_present) {
672 if (not connection_matches) {
673 setverdict(fail, vty_cmd, " shows mismatching LAC cell ID in the 'Connection' part, expecting: ",
674 expect_lac_ci, " -- got: ", result);
675 } else {
676 log("f_verify_vty_lac_ci(): Active connection matches ", expect_lac_ci);
677 setverdict(pass);
678 }
679 }
680
681 if (not verify_vlr and not connection_present) {
682 setverdict(fail, "f_verify_vty_lac_ci(verify_vlr := false) called, which requires an active connection, but there is no 'Connection:' part to verify in ", result);
683 }
684}
685
Neels Hofmeyrc1f105a2018-03-01 20:00:19 +0100686function f_perform_lu()
Harald Weltea49e36e2018-01-21 19:29:33 +0100687runs on BSC_ConnHdlr {
688 var PDU_ML3_MS_NW l3_lu := f_build_lu_imsi(g_pars.imsi)
689 var PDU_DTAP_MT dtap_mt;
690
691 /* tell GSUP dispatcher to send this IMSI to us */
692 f_create_gsup_expect(hex2str(g_pars.imsi));
693
694 /* Send BSSAP_Conn_Req with COMPL L3 INFO to MSC */
Harald Welte9b751a62019-04-14 17:39:29 +0200695 if (g_pars.ran_is_geran) {
696 f_bssap_compl_l3(l3_lu);
697 if (g_pars.send_early_cm) {
698 BSSAP.send(ts_BSSMAP_ClassmarkUpd(g_pars.cm2, g_pars.cm3));
699 }
700 } else {
701 f_ranap_initial_ue(l3_lu);
Harald Welte8a121b32018-01-22 03:00:41 +0100702 }
Harald Welte5c2622c2018-01-21 20:45:20 +0100703
Neels Hofmeyr4e18ccc2020-06-24 19:08:17 +0200704 /* at this point the conn has been established, but the subscriber has not been authenticated, so the VLR does
705 * not yet reflect this conn's cell ID. */
706 f_verify_vty_lac_ci(verify_vlr := false);
707
Oliver Smith1d118ff2019-07-03 10:57:35 +0200708 f_mm_imei_early();
Harald Weltede371492018-01-27 23:44:41 +0100709 f_mm_common();
Stefan Sperlinga2d59c62018-12-18 16:32:44 +0100710 f_msc_lu_hlr();
Oliver Smith1d118ff2019-07-03 10:57:35 +0200711 f_mm_imei();
Stefan Sperlinga2d59c62018-12-18 16:32:44 +0100712 f_accept_reject_lu();
713 /* FIXME: there could be pending SMS or other common procedures by the MSC, let's ignore them */
714 f_expect_clear();
Harald Welte16114282018-01-24 22:41:21 +0100715
Stefan Sperlinga2d59c62018-12-18 16:32:44 +0100716 setverdict(pass);
717}
718
719function f_msc_lu_hlr() runs on BSC_ConnHdlr
720{
Harald Weltea49e36e2018-01-21 19:29:33 +0100721 /* Expect MSC to perform LU with HLR */
722 GSUP.receive(tr_GSUP_UL_REQ(g_pars.imsi));
723 GSUP.send(ts_GSUP_ISD_REQ(g_pars.imsi, g_pars.msisdn));
724 GSUP.receive(tr_GSUP_ISD_RES(g_pars.imsi));
725 GSUP.send(ts_GSUP_UL_RES(g_pars.imsi));
Stefan Sperlinga2d59c62018-12-18 16:32:44 +0100726}
727
728function f_accept_reject_lu() runs on BSC_ConnHdlr {
729 var PDU_DTAP_MT dtap_mt;
Harald Weltea49e36e2018-01-21 19:29:33 +0100730
731 alt {
732 [] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_LU_Acc)) -> value dtap_mt {
733 var PDU_ML3_LocationUpdateAccept lu_acc := dtap_mt.dtap.msgs.mm.locationUpdateAccept;
Harald Weltede371492018-01-27 23:44:41 +0100734 if (g_pars.net.expect_tmsi) {
Harald Weltea49e36e2018-01-21 19:29:33 +0100735 if (not ispresent(lu_acc.mobileIdentityTLV) or
736 not ischosen(lu_acc.mobileIdentityTLV.mobileIdentityLV.mobileIdentityV.oddEvenInd_identity.tmsi_ptmsi)) {
737 setverdict(fail, "Expected TMSI but no TMSI was allocated");
Daniel Willmannafce8662018-07-06 23:11:32 +0200738 mtc.stop;
Harald Weltea49e36e2018-01-21 19:29:33 +0100739 } else {
Harald Welte256571e2018-01-24 18:47:19 +0100740 g_pars.tmsi := lu_acc.mobileIdentityTLV.mobileIdentityLV.mobileIdentityV.oddEvenInd_identity.tmsi_ptmsi.octets;
Harald Weltea49e36e2018-01-21 19:29:33 +0100741 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_TmsiRealloc_Cmpl));
742 }
743 } else {
744 if (ispresent(lu_acc.mobileIdentityTLV) and
745 ischosen(lu_acc.mobileIdentityTLV.mobileIdentityLV.mobileIdentityV.oddEvenInd_identity.tmsi_ptmsi)) {
746 setverdict(fail, "Expected no TMSI but TMSI was allocated");
Daniel Willmannafce8662018-07-06 23:11:32 +0200747 mtc.stop;
Harald Weltea49e36e2018-01-21 19:29:33 +0100748 }
749 }
750 }
751 [] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_LU_Rej)) {
752 setverdict(fail, "Expected LU ACK, but received LU REJ");
Daniel Willmannafce8662018-07-06 23:11:32 +0200753 mtc.stop;
Harald Weltea49e36e2018-01-21 19:29:33 +0100754 }
755 }
Philipp Maier9b690e42018-12-21 11:50:03 +0100756
757 /* Wait for MM-Information (if enabled) */
758 f_expect_mm_info();
Harald Weltea49e36e2018-01-21 19:29:33 +0100759 setverdict(pass);
760}
761
Pau Espin Pedrold3d54a92019-12-17 17:02:54 +0100762function f_expect_lu_reject(template OCT1 cause := ?) runs on BSC_ConnHdlr {
Oliver Smith91bfa1c2019-07-19 15:01:15 +0200763 var PDU_DTAP_MT dtap_mt;
764 timer T := 5.0;
765
766 T.start;
767 alt {
Pau Espin Pedrold3d54a92019-12-17 17:02:54 +0100768 [] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_LU_Rej(cause))) {
Oliver Smith91bfa1c2019-07-19 15:01:15 +0200769 setverdict(pass);
770 }
771 [] BSSAP.receive(tr_PDU_DTAP_MT(?)) -> value dtap_mt {
772 setverdict(fail, "Expected LU reject BSSAP message, got: ", dtap_mt);
773 }
774 [] T.timeout {
775 setverdict(fail, "Timeout waiting for LU reject");
776 }
777 }
778}
779
Harald Weltea49e36e2018-01-21 19:29:33 +0100780function f_foo() runs on BSC_ConnHdlr{
Harald Welte6811d102019-04-14 22:23:14 +0200781 /* SCCP CC handled by RAN_Emulation_CT.main() */
Harald Weltea49e36e2018-01-21 19:29:33 +0100782 /* Expect auth, if enabled */
783
784 /* TODO: ISD */
785 /* Expect encr, if enabled */
786 /* Expect encr, if enabled */
787 /* Expect ASS CMD, if chan_type != requested */
788 /* Send ASS CMPL in successful case */
789
790 /* Expect AoIP port/ip information for RTP stream */
791 /* Expect MSC-originated MGCP to our simulated MGW */
792 /* Verify Counters via CTRL */
793 /* re-configure MSC behaviour via VTY */
794}
795
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +0200796type record CrcxResponse {
797 integer resp, /* 1 = reply with OK, 0 = do not reply, -1 = reply with error */
798 HostName mgw_rtp_ip,
799 PortNumber mgw_rtp_port,
800 MgcpConnectionId mgcp_connection_id /* MGCP Connection ID BSS Side */
801}
802
Harald Welteb71901a2018-01-26 19:16:05 +0100803/* parameters related to a (MO?) voice call */
804type record CallParameters {
Harald Welteb71901a2018-01-26 19:16:05 +0100805 /* CC related parameters */
806 hexstring called_party, /* whom are we calling */
807 integer transaction_id optional, /* which TS 04.08 CC transaction ID to use */
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +0100808 boolean mo_call, /* For a MO call, the transaction_id was allocated by the MS,
809 important to set the TI flag properly */
Harald Welteb71901a2018-01-26 19:16:05 +0100810 BearerCapability_TLV bearer_cap, /* which bearer capabilities to claim */
Harald Welte0bef21e2018-02-10 09:48:23 +0100811 boolean emergency, /* is this an emergency call? */
Harald Welteb71901a2018-01-26 19:16:05 +0100812
813 /* MNCC related parameters */
814 uint32_t mncc_callref optional, /* call reference on the MNCC side */
815 MNCC_bearer_cap mncc_bearer_cap optional, /* MNCC-side bearer capabilities */
816
817 /* RTP related parameters */
818 HostName bss_rtp_ip optional, /* BSS Side RTP IP */
819 PortNumber bss_rtp_port optional, /* BSS Side RTP Port */
820 HostName mss_rtp_ip optional, /* MSS Side RTP IP */
821 PortNumber mss_rtp_port optional, /* MSS Side RTP Port */
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +0200822 integer got_crcx_count,
823 CrcxResponse mgw_conn_1,
824 CrcxResponse mgw_conn_2,
Harald Welteb71901a2018-01-26 19:16:05 +0100825 uint7_t rtp_payload_type, /* dynamic RTP payload type */
826 charstring rtp_sdp_format, /* AMR/8000 or the like */
Philipp Maier2a98a732018-03-19 16:06:12 +0100827 boolean mgw_drop_dlcx optional, /* Provoke errors by not responding to DLCX
828 (f_mt_call and f_mt_call) */
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +0200829 boolean stop_after_cc_setup, /* Special case: stop call establish after CC Setup */
830 boolean ran_clear_when_alerting, /* Special case: send Clear upon CC Alerting */
Neels Hofmeyr8df69622019-11-02 19:16:03 +0100831 boolean expect_release, /* Special case: expect call establish to cause direct CC Rel */
Harald Welteb71901a2018-01-26 19:16:05 +0100832
Philipp Maiercd668572018-03-19 16:11:52 +0100833 MgcpCallId mgcp_call_id optional, /* MGCP Call ID; CallAgent allocated */
Harald Welteb71901a2018-01-26 19:16:05 +0100834 MgcpEndpoint mgcp_ep optional /* MGCP Endpoint, CallAgent or MGW allocated */,
Pau Espin Pedrola65697d2019-05-21 12:54:39 +0200835
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +0200836 boolean use_osmux, /* MSC is expected to use Osmux for this call */
837 integer got_osmux_count
Harald Welteb71901a2018-01-26 19:16:05 +0100838}
839
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +0200840template (value) CallParameters t_CallParams(hexstring called := '12345'H, integer tid := 0) := {
Harald Welteb71901a2018-01-26 19:16:05 +0100841 called_party := called,
842 transaction_id := tid,
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +0100843 mo_call := false,
Harald Welteb71901a2018-01-26 19:16:05 +0100844 bearer_cap := valueof(ts_Bcap_voice),
Harald Welte0bef21e2018-02-10 09:48:23 +0100845 emergency := false,
Harald Welteb71901a2018-01-26 19:16:05 +0100846 mncc_callref := omit,
847 mncc_bearer_cap := valueof(ts_MNCC_bcap_voice),
Harald Welte4017d552018-01-26 21:40:05 +0100848 bss_rtp_ip := "9.8.7.6",
849 bss_rtp_port := 9000,
Harald Welteb71901a2018-01-26 19:16:05 +0100850 mss_rtp_ip := omit,
851 mss_rtp_port := omit,
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +0200852 got_crcx_count := 0,
853 mgw_conn_1 := {
854 resp := 1,
855 mgw_rtp_ip := "1.1.1.1",
856 mgw_rtp_port := 10000,
857 mgcp_connection_id := '11111'H
858 },
859 mgw_conn_2 := {
860 resp := 1,
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +0200861 mgw_rtp_ip := "2.2.2.2",
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +0200862 mgw_rtp_port := 11000,
863 mgcp_connection_id := '22222'H
864 },
Harald Welteb71901a2018-01-26 19:16:05 +0100865 rtp_payload_type := 98,
866 rtp_sdp_format := "AMR/8000",
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +0100867 mgw_drop_dlcx := false,
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +0200868 stop_after_cc_setup := false,
869 ran_clear_when_alerting := false,
Neels Hofmeyr8df69622019-11-02 19:16:03 +0100870 expect_release := false,
Harald Welteb71901a2018-01-26 19:16:05 +0100871 mgcp_call_id := omit,
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +0200872 mgcp_ep := "rtpbridge/1@mgw",
873 use_osmux := false,
874 got_osmux_count := 0
Harald Welteb71901a2018-01-26 19:16:05 +0100875};
876
Harald Welte4263c522018-12-06 11:56:27 +0100877/* Allocate a call reference and send SETUP via MNCC to MSC */
878function f_mt_call_initate(inout CallParameters cpars)
Harald Welte33ec09b2018-02-10 15:34:46 +0100879runs on BSC_ConnHdlr {
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +0200880 cpars.mo_call := false;
Harald Welte4263c522018-12-06 11:56:27 +0100881 cpars.mncc_callref := f_rnd_int(2147483648);
882 MNCC.send(ts_MNCC_SETUP_req(cpars.mncc_callref, hex2str(g_pars.msisdn),
883 hex2str(cpars.called_party), hex2str(g_pars.imsi)));
884}
Harald Welte33ec09b2018-02-10 15:34:46 +0100885
Harald Welte408a7ef2019-04-21 17:08:40 +0200886private template (value) SDP_Message ts_SDP_CRCX_CN(CallParameters cpars) :=
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +0200887 ts_SDP(cpars.mgw_conn_2.mgw_rtp_ip, cpars.mgw_conn_2.mgw_rtp_ip,
Harald Welte408a7ef2019-04-21 17:08:40 +0200888 hex2str(cpars.mgcp_call_id), "42",
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +0200889 cpars.mgw_conn_2.mgw_rtp_port,
Harald Welte408a7ef2019-04-21 17:08:40 +0200890 { int2str(cpars.rtp_payload_type) },
891 { valueof(ts_SDP_rtpmap(cpars.rtp_payload_type,
892 cpars.rtp_sdp_format)),
893 valueof(ts_SDP_ptime(20)) });
894
Harald Welte4263c522018-12-06 11:56:27 +0100895/* Complete call, begin with a paging response message via BSSAP */
896function f_mt_call_complete(inout CallParameters cpars)
897runs on BSC_ConnHdlr {
Harald Welte33ec09b2018-02-10 15:34:46 +0100898 var MNCC_PDU mncc;
899 var MgcpCommand mgcp_cmd;
Pau Espin Pedrola65697d2019-05-21 12:54:39 +0200900 var template MgcpResponse mgcp_resp;
901 var MgcpOsmuxCID osmux_cid;
902 var PDU_BSSAP bssap;
Harald Welte33ec09b2018-02-10 15:34:46 +0100903
Harald Welte6811d102019-04-14 22:23:14 +0200904 f_ran_register_imsi(g_pars.imsi, g_pars.tmsi);
Harald Welte33ec09b2018-02-10 15:34:46 +0100905
Harald Welteb9e86fa2018-04-09 18:18:31 +0200906 f_establish_fully(EST_TYPE_PAG_RESP);
Harald Welte33ec09b2018-02-10 15:34:46 +0100907
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +0100908 log("f_mt_call_complete 1");
909
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +0200910 cpars.got_osmux_count := 0;
911
Harald Welte33ec09b2018-02-10 15:34:46 +0100912 /* MS <- MSC: Expect CC SETUP */
913 BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_SETUP(cpars.transaction_id, *, cpars.called_party)));
914
915 /* MS -> MSC: ALERTING */
916 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_CC_ALERTING(cpars.transaction_id)));
917 MNCC.receive(tr_MNCC_ALERT_ind(cpars.mncc_callref));
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +0100918 log("f_mt_call_complete 2");
Harald Welte33ec09b2018-02-10 15:34:46 +0100919
Harald Welte33ec09b2018-02-10 15:34:46 +0100920 /* Create MGCP expect */
921 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
922 /* Ask MSC via MNCC to create the RTP socket on the MSC/MGW side */
923 MNCC.send(ts_MNCC_RTP_CREATE(cpars.mncc_callref));
924
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +0200925 /* First MGCP CRCX */
Harald Welte33ec09b2018-02-10 15:34:46 +0100926 MGCP.receive(tr_CRCX) -> value mgcp_cmd {
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +0100927 log("f_mt_call_complete 3");
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +0200928 if (not f_handle_crcx(cpars, mgcp_cmd)) {
929 return;
Philipp Maier4b2692d2018-03-14 16:37:48 +0100930 }
Harald Welte33ec09b2018-02-10 15:34:46 +0100931 }
Neels Hofmeyr59e0c6f2019-03-06 15:21:20 +0100932
Neels Hofmeyr59e0c6f2019-03-06 15:21:20 +0100933
Harald Welte9b751a62019-04-14 17:39:29 +0200934 if (g_pars.ran_is_geran) {
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +0200935 var template BSSMAP_IE_AoIP_TransportLayerAddress tla_ass :=
Pau Espin Pedrol833174e2020-09-03 16:46:02 +0200936 f_tr_BSSMAP_IE_AoIP_TLA(cpars.mgw_conn_1.mgw_rtp_ip, ?);
Harald Welte9b751a62019-04-14 17:39:29 +0200937
938 interleave {
939 /* Second MGCP CRCX (this time for MSS/CN side) */
940 [] MGCP.receive(tr_CRCX(cpars.mgcp_ep)) -> value mgcp_cmd {
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +0100941 log("f_mt_call_complete 4");
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +0200942 if (not f_handle_crcx(cpars, mgcp_cmd)) {
943 break;
944 }
Harald Welte9b751a62019-04-14 17:39:29 +0200945 }
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +0100946
947 /* MSC acknowledges the MNCC_CREATE to the MNCC handler */
948 [] MNCC.receive(tr_MNCC_RTP_CREATE(cpars.mncc_callref)) {
949 log("f_mt_call_complete 5");
950 }
951
Harald Welte9b751a62019-04-14 17:39:29 +0200952 /* expect the MSC to trigger a BSSMAP ASSIGNMENT */
Pau Espin Pedrola65697d2019-05-21 12:54:39 +0200953 [] BSSAP.receive(tr_BSSMAP_AssignmentReq(omit, tla_ass)) -> value bssap {
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +0200954 var template BSSMAP_IE_AoIP_TransportLayerAddress tla;
Harald Welte9b751a62019-04-14 17:39:29 +0200955 var BSSMAP_IE_SpeechCodec codec;
Pau Espin Pedrola65697d2019-05-21 12:54:39 +0200956 var BSSMAP_IE_Osmo_OsmuxCID osmuxCID;
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +0100957 log("f_mt_call_complete 6");
Pau Espin Pedrol833174e2020-09-03 16:46:02 +0200958 tla := f_ts_BSSMAP_IE_AoIP_TLA(cpars.bss_rtp_ip, cpars.bss_rtp_port);
Harald Welte9b751a62019-04-14 17:39:29 +0200959 codec := valueof(ts_BSSMAP_IE_SpeechCodec({ts_CodecFR}));
960
Pau Espin Pedrola65697d2019-05-21 12:54:39 +0200961 if (cpars.use_osmux) {
962 if (not ispresent(bssap.pdu.bssmap.assignmentRequest.osmuxCID)) {
963 setverdict(fail, "MSC sent AssignReq without expected OsmuxCID IE");
964 mtc.stop;
965 }
966 osmuxCID := valueof(ts_OsmuxCID(0));
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +0200967 if (not match(bssap.pdu.bssmap.assignmentRequest.osmuxCID, osmuxCID)) {
968 setverdict(fail, "MSC sent AssignReq without expected OsmuxCID IE. Expected ", osmuxCID, " Got ", bssap.pdu.bssmap.assignmentRequest.osmuxCID);
Pau Espin Pedrola65697d2019-05-21 12:54:39 +0200969 mtc.stop;
970 }
971 bssap := valueof(ts_BSSMAP_AssignmentComplete(omit, tla, codec, osmuxCID));
972 } else {
973 bssap := valueof(ts_BSSMAP_AssignmentComplete(omit, tla, codec));
974 }
975 BSSAP.send(bssap);
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +0100976
977 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_CC_CONNECT(cpars.transaction_id)));
Harald Welte9b751a62019-04-14 17:39:29 +0200978 }
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +0100979
980 [] MNCC.receive(tr_MNCC_SETUP_cnf(cpars.mncc_callref)) {
981 log("f_mt_call_complete 7");
982 MNCC.send(ts_MNCC_RTP_CONNECT(cpars.mncc_callref,
983 /* ip 42.23.11.5 */ hex2int('42231105'H),
984 /* port 423 */ 423,
985 /* payload type 3 = GSM FR */ 3));
986 }
987
988 /* MDCX setting up the RAN side remote RTP address received from Assignment Complete */
989 [] MGCP.receive(tr_MDCX) -> value mgcp_cmd {
990 log("f_mt_call_complete 8");
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +0200991 var SDP_Message sdp := valueof(ts_SDP(cpars.mgw_conn_1.mgw_rtp_ip, cpars.mgw_conn_1.mgw_rtp_ip,
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +0100992 hex2str(cpars.mgcp_call_id), "42",
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +0200993 cpars.mgw_conn_1.mgw_rtp_port,
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +0100994 { int2str(cpars.rtp_payload_type) },
995 { valueof(ts_SDP_rtpmap(cpars.rtp_payload_type,
996 cpars.rtp_sdp_format)),
Pau Espin Pedrola65697d2019-05-21 12:54:39 +0200997 valueof(ts_SDP_ptime(20)) }));
998 if (cpars.use_osmux) {
999 osmux_cid := f_MgcpCmd_extract_osmux_cid(mgcp_cmd);
1000 if (osmux_cid != 0) { /* we expect MSC to use specific CID here */
1001 setverdict(fail, "MSC using unexpected CID " & int2str(osmux_cid) & " != 0");
1002 mtc.stop;
1003 }
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001004 mgcp_resp := ts_MDCX_ACK_osmux(mgcp_cmd.line.trans_id, cpars.mgw_conn_1.mgcp_connection_id, osmux_cid, sdp);
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001005 } else {
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +02001006 mgcp_resp := ts_MDCX_ACK(mgcp_cmd.line.trans_id, cpars.mgw_conn_1.mgcp_connection_id, sdp);
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001007 }
1008 MGCP.send(mgcp_resp);
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001009 }
1010
1011 /* MDCX setting up the CN side remote RTP address received from MNCC CONNECT */
1012 [] MGCP.receive(tr_MDCX) -> value mgcp_cmd {
1013 log("f_mt_call_complete 9");
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001014 var SDP_Message sdp := valueof(ts_SDP(cpars.mgw_conn_2.mgw_rtp_ip, cpars.mgw_conn_2.mgw_rtp_ip,
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001015 hex2str(cpars.mgcp_call_id), "42",
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001016 cpars.mgw_conn_2.mgw_rtp_port,
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001017 { int2str(cpars.rtp_payload_type) },
1018 { valueof(ts_SDP_rtpmap(cpars.rtp_payload_type,
1019 cpars.rtp_sdp_format)),
1020 valueof(ts_SDP_ptime(20)) }));
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001021 MGCP.send(ts_MDCX_ACK(mgcp_cmd.line.trans_id, cpars.mgw_conn_2.mgcp_connection_id, sdp));
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001022 }
1023
Neels Hofmeyr59e0c6f2019-03-06 15:21:20 +01001024 }
Harald Welte9b751a62019-04-14 17:39:29 +02001025 } else {
Harald Welte9b751a62019-04-14 17:39:29 +02001026 interleave {
1027 [] MGCP.receive(tr_CRCX(cpars.mgcp_ep)) -> value mgcp_cmd {
Neels Hofmeyr8fe8a902019-11-03 05:51:03 +01001028 log("f_mt_call_complete 4.iu");
1029 if (not f_handle_crcx(cpars, mgcp_cmd)) {
1030 break;
Harald Welte9b751a62019-04-14 17:39:29 +02001031 }
Harald Welte9b751a62019-04-14 17:39:29 +02001032 }
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001033
Neels Hofmeyr8fe8a902019-11-03 05:51:03 +01001034 /* MSC acknowledges the MNCC_CREATE to the MNCC handler */
1035 [] MNCC.receive(tr_MNCC_RTP_CREATE(cpars.mncc_callref)) {
1036 log("f_mt_call_complete 5.iu");
1037 }
1038
1039 [] BSSAP.receive(tr_RANAP_RabAssReq(?)) {
1040 log("f_mt_call_complete 6.iu");
1041 var RAB_SetupOrModifiedList l := {
1042 {
1043 {
1044 id := id_RAB_SetupOrModifiedItem,
1045 criticality := ignore,
1046 value_ := {
1047 rAB_SetupOrModifiedItem := {
1048 rAB_ID := int2bit(23, 8),
1049 transportLayerAddress := hex2bit( '350001c0a8021500000000000000000000000000'H),
1050 iuTransportAssociation := {
1051 bindingID := '040c0000'O
1052 },
1053 dl_dataVolumes := omit,
1054 iE_Extensions := omit
1055 }
1056 }
1057 }
1058 }
1059 };
1060 BSSAP.send(ts_RANAP_RabAssResp(l));
1061
1062 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_CC_CONNECT(cpars.transaction_id)));
1063 }
1064
1065 [] MNCC.receive(tr_MNCC_SETUP_cnf(cpars.mncc_callref)) {
1066 log("f_mt_call_complete 7.iu");
1067 MNCC.send(ts_MNCC_RTP_CONNECT(cpars.mncc_callref,
1068 /* ip 42.23.11.5 */ hex2int('42231105'H),
1069 /* port 423 */ 423,
1070 /* payload type 3 = GSM FR */ 3));
1071 }
1072
1073 /* MDCX setting up the RAN side remote RTP address received from Assignment Complete */
1074 [] MGCP.receive(tr_MDCX) -> value mgcp_cmd {
1075 log("f_mt_call_complete 8.iu");
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +02001076 var SDP_Message sdp := valueof(ts_SDP(cpars.mgw_conn_1.mgw_rtp_ip, cpars.mgw_conn_1.mgw_rtp_ip,
Neels Hofmeyr8fe8a902019-11-03 05:51:03 +01001077 hex2str(cpars.mgcp_call_id), "42",
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +02001078 cpars.mgw_conn_1.mgw_rtp_port,
Neels Hofmeyr8fe8a902019-11-03 05:51:03 +01001079 { int2str(cpars.rtp_payload_type) },
1080 { valueof(ts_SDP_rtpmap(cpars.rtp_payload_type,
1081 cpars.rtp_sdp_format)),
1082 valueof(ts_SDP_ptime(20)) }));
1083 if (cpars.use_osmux) {
1084 osmux_cid := f_MgcpCmd_extract_osmux_cid(mgcp_cmd);
1085 if (osmux_cid != 0) { /* we expect MSC to use specific CID here */
1086 setverdict(fail, "MSC using unexpected CID " & int2str(osmux_cid) & " != 0");
1087 mtc.stop;
1088 }
1089 mgcp_resp := ts_MDCX_ACK_osmux(mgcp_cmd.line.trans_id, cpars.mgw_conn_1.mgcp_connection_id, osmux_cid, sdp);
1090 } else {
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +02001091 mgcp_resp := ts_MDCX_ACK(mgcp_cmd.line.trans_id, cpars.mgw_conn_1.mgcp_connection_id, sdp);
Neels Hofmeyr8fe8a902019-11-03 05:51:03 +01001092 }
1093 MGCP.send(mgcp_resp);
1094 }
1095
1096 /* MDCX setting up the CN side remote RTP address received from MNCC CONNECT */
1097 [] MGCP.receive(tr_MDCX) -> value mgcp_cmd {
1098 log("f_mt_call_complete 9.iu");
1099 var SDP_Message sdp := valueof(ts_SDP(cpars.mgw_conn_2.mgw_rtp_ip, cpars.mgw_conn_2.mgw_rtp_ip,
1100 hex2str(cpars.mgcp_call_id), "42",
1101 cpars.mgw_conn_2.mgw_rtp_port,
1102 { int2str(cpars.rtp_payload_type) },
1103 { valueof(ts_SDP_rtpmap(cpars.rtp_payload_type,
1104 cpars.rtp_sdp_format)),
1105 valueof(ts_SDP_ptime(20)) }));
1106 MGCP.send(ts_MDCX_ACK(mgcp_cmd.line.trans_id, cpars.mgw_conn_2.mgcp_connection_id, sdp));
1107 }
1108
Harald Welte33ec09b2018-02-10 15:34:46 +01001109 }
Neels Hofmeyr59e0c6f2019-03-06 15:21:20 +01001110 }
Harald Welte33ec09b2018-02-10 15:34:46 +01001111
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001112 if (cpars.use_osmux == (cpars.got_osmux_count != 0)) {
1113 log("Osmux ok: use_osmux = ", cpars.use_osmux, " got_osmux_count = ", cpars.got_osmux_count);
1114 } else {
1115 setverdict(fail, "Osmux failure: use_osmux = ", cpars.use_osmux, " got_osmux_count = ", cpars.got_osmux_count);
1116 mtc.stop;
1117 }
1118
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001119 log("f_mt_call_complete DONE");
Harald Welte4263c522018-12-06 11:56:27 +01001120}
1121
Harald Weltee035e3e2019-04-21 17:32:05 +02001122function f_expect_paging(boolean by_tmsi := true)
1123runs on BSC_ConnHdlr {
Harald Welte9b751a62019-04-14 17:39:29 +02001124 if (g_pars.ran_is_geran) {
1125 BSSAP.receive(tr_BSSMAP_Paging(g_pars.imsi));
1126 } else {
Harald Welte62113fc2019-05-09 13:04:02 +02001127 BSSAP.receive(tr_RANAP_Paging(cs_domain, imsi_hex2oct(g_pars.imsi)));
Harald Welte9b751a62019-04-14 17:39:29 +02001128 }
Harald Weltee035e3e2019-04-21 17:32:05 +02001129}
1130
Harald Welte4263c522018-12-06 11:56:27 +01001131function f_mt_call_establish(inout CallParameters cpars)
1132runs on BSC_ConnHdlr {
1133
1134 /* Initiate the call via MNCC */
1135 f_mt_call_initate(cpars);
1136
1137 /* BSC <- MSC: Expect paging. FIXME: By TMSI or not? */
Harald Welte6811d102019-04-14 22:23:14 +02001138 f_ran_register_imsi(g_pars.imsi, g_pars.tmsi);
Harald Weltee035e3e2019-04-21 17:32:05 +02001139 f_expect_paging()
Harald Welte4263c522018-12-06 11:56:27 +01001140
1141 /* Complete the call via BSSAP */
1142 f_mt_call_complete(cpars);
Harald Welte33ec09b2018-02-10 15:34:46 +01001143
Harald Welte33ec09b2018-02-10 15:34:46 +01001144 setverdict(pass);
1145}
1146
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001147/* Reply to a received CRCX with an OK (or the reply configured in cpars), using the given parameters.
1148 * Return true when an OK reply was sent, false otherwise.
1149 * Count occurence of Osmux, include Osmux parameters in the reply if necessary. */
1150function f_handle_crcx(inout CallParameters cpars, MgcpCommand mgcp_cmd)
1151runs on BSC_ConnHdlr
1152return boolean {
1153 var CrcxResponse conn := cpars.mgw_conn_1;
1154 if (cpars.got_crcx_count > 0) {
1155 conn := cpars.mgw_conn_2;
1156 }
1157 cpars.got_crcx_count := cpars.got_crcx_count + 1;
1158
1159 var MgcpMessage mgcp_msg := {
1160 command := mgcp_cmd
1161 }
1162 var template MgcpResponse mgcp_resp;
1163 var MgcpOsmuxCID osmux_cid;
1164 var MgcpCallId call_id := f_MgcpCmd_extract_call_id(mgcp_cmd);
1165 if (ispresent(cpars.mgcp_call_id)) {
1166 if (cpars.mgcp_call_id != call_id) {
1167 setverdict(fail, "CRCX contained unexpected call id. Expected:", cpars.mgcp_call_id, " got:", call_id);
1168 mtc.stop;
1169 }
1170 } else {
1171 cpars.mgcp_call_id := call_id;
1172 }
1173
1174 /* When the endpoint contains a wildcard we keep the endpoint
1175 * identifier we have set up in cpars. Otherwise we use the
1176 * endpoint name that the call agent has supplied */
1177 if (match(mgcp_cmd.line.ep, t_MGCP_EP_wildcard) == false) {
1178 cpars.mgcp_ep := mgcp_cmd.line.ep;
1179 }
1180
1181 if (conn.resp == -1) {
1182 /* Reply with error */
1183 var MgcpResponse mgcp_rsp := {
1184 line := {
1185 code := "542",
1186 trans_id := mgcp_cmd.line.trans_id,
1187 string := "FORCED_FAIL"
1188 },
1189 sdp := omit
1190
1191 }
1192 var MgcpParameter mgcp_rsp_param := {
1193 code := "Z",
1194 val := cpars.mgcp_ep
1195 };
1196 mgcp_rsp.params[0] := mgcp_rsp_param;
1197 MGCP.send(mgcp_rsp);
1198 return false;
1199 }
1200
1201 if (conn.resp == 0) {
1202 /* Do not reply at all */
1203 return false;
1204 }
1205
1206 if (conn.resp != 1) {
1207 setverdict(fail, "Unexpected value for cpars.mgw_conn_*.resp, expect -1, 0 or 1");
1208 mtc.stop;
1209 }
1210
1211 var SDP_Message sdp := valueof(ts_SDP(conn.mgw_rtp_ip, conn.mgw_rtp_ip,
1212 hex2str(cpars.mgcp_call_id), "42",
1213 conn.mgw_rtp_port,
1214 { int2str(cpars.rtp_payload_type) },
1215 { valueof(ts_SDP_rtpmap(cpars.rtp_payload_type,
1216 cpars.rtp_sdp_format)),
1217 valueof(ts_SDP_ptime(20)) }));
1218
1219 if (f_mgcp_contains_par(mgcp_msg, "X-OSMUX")) {
1220 if (not cpars.use_osmux) {
1221 setverdict(fail, "MSC sent X-Osmux parameter in MGCP, but not expecting any Osmux");
1222 mtc.stop;
1223 }
1224 cpars.got_osmux_count := cpars.got_osmux_count + 1;
1225 /* we expect MSC to use wildcard here, i.e. osmux_cid == -1 */
1226 osmux_cid := f_MgcpCmd_extract_osmux_cid(mgcp_cmd);
1227 log("f_handle_crcx(): got Osmux CID: ", osmux_cid);
1228 if (osmux_cid != -1) {
1229 setverdict(fail, "MSC using unexpected CID " & int2str(osmux_cid) & " != -1");
1230 mtc.stop;
1231 }
1232
1233 osmux_cid := 0;
1234 mgcp_resp := ts_CRCX_ACK_osmux(mgcp_cmd.line.trans_id, conn.mgcp_connection_id, osmux_cid, sdp);
1235 } else {
1236 mgcp_resp := ts_CRCX_ACK(mgcp_cmd.line.trans_id, conn.mgcp_connection_id, sdp);
1237 }
1238
1239 f_mgcp_par_append(mgcp_resp.params, ts_MgcpParSpecEP(cpars.mgcp_ep));
1240 MGCP.send(mgcp_resp);
1241 return true;
1242}
1243
1244
1245altstep as_optional_mgcp_crcx(CallParameters cpars) runs on BSC_ConnHdlr {
1246 var MgcpCommand mgcp_cmd;
1247 [] MGCP.receive(tr_CRCX) -> value mgcp_cmd {
1248 log("as_optional_mgcp_crcx: rx CRCX");
1249 f_handle_crcx(cpars, mgcp_cmd);
1250
1251 /* Without this 'repeat', the as_optional_mgcp_crcx() exits currently waiting interleaves as soon as an
1252 * CRCX is handled. */
1253 repeat;
1254 }
1255}
1256
1257private altstep as_optional_mgcp_mdcx(HostName mgw_rtp_ip, PortNumber mgw_rtp_port) runs on BSC_ConnHdlr {
1258 var MgcpCommand mgcp_cmd;
1259 [] MGCP.receive(tr_MDCX) -> value mgcp_cmd {
1260 log("as_optional_mgcp_mdcx: rx MDCX");
1261 log(mgcp_cmd);
1262 var charstring conn_id;
1263 var charstring rtp_payload_type;
1264 f_mgcp_find_param_entry(mgcp_cmd.params, "I", conn_id);
1265 rtp_payload_type := mgcp_cmd.sdp.media_list[0].media_field.fmts[0];
1266
1267 var SDP_Message sdp := valueof(ts_SDP(mgw_rtp_ip, mgw_rtp_ip,
1268 mgcp_cmd.sdp.origin.session_id, "42",
1269 mgw_rtp_port,
1270 { rtp_payload_type },
1271 { valueof(ts_SDP_ptime(20)) }));
1272 MGCP.send(ts_MDCX_ACK(mgcp_cmd.line.trans_id, str2hex(conn_id), sdp));
1273
1274 /* Without this 'repeat', currently active other interleave and alt series exit as soon as an MDCX is
1275 * handled. */
1276 repeat;
1277 }
1278}
1279
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001280private altstep as_optional_mgcp_dlcx(CallParameters cpars) runs on BSC_ConnHdlr {
1281 var MgcpCommand mgcp_cmd;
1282 var boolean respond_to_dlcx := not (isbound(cpars.mgw_drop_dlcx) and valueof(cpars.mgw_drop_dlcx));
1283 [] MGCP.receive(tr_DLCX(?)) -> value mgcp_cmd {
1284 log("as_optional_mgcp_dlcx: rx MGCP DLCX");
1285 if (respond_to_dlcx) {
1286 MGCP.send(ts_DLCX_ACK2(mgcp_cmd.line.trans_id));
1287 }
1288 /* Without this 'repeat', currently active other interleave and alt series exit as soon as a
1289 * DLCX is handled. */
1290 repeat;
1291 }
1292}
1293
Philipp Maier3716a5e2018-03-21 15:53:35 +01001294function f_mo_call_establish(inout CallParameters cpars)
Harald Welteb71901a2018-01-26 19:16:05 +01001295runs on BSC_ConnHdlr {
1296
Harald Welteb71901a2018-01-26 19:16:05 +01001297 var MNCC_PDU mncc;
1298 var MgcpCommand mgcp_cmd;
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001299 var template MgcpResponse mgcp_resp;
Philipp Maier2a98a732018-03-19 16:06:12 +01001300 var boolean respond_to_dlcx;
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001301 var PDU_BSSAP bssap;
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001302 var RANAP_PDU ranap;
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001303 var MgcpOsmuxCID osmux_cid;
Harald Welteb71901a2018-01-26 19:16:05 +01001304
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001305 cpars.mo_call := true;
1306
Harald Welte0bef21e2018-02-10 09:48:23 +01001307 if (cpars.emergency) {
Harald Welteb9e86fa2018-04-09 18:18:31 +02001308 f_establish_fully(EST_TYPE_EMERG_CALL);
Harald Welte0bef21e2018-02-10 09:48:23 +01001309 } else {
Harald Welteb9e86fa2018-04-09 18:18:31 +02001310 f_establish_fully(EST_TYPE_MO_CALL);
Harald Welte0bef21e2018-02-10 09:48:23 +01001311 }
Harald Welteb71901a2018-01-26 19:16:05 +01001312
1313 /* Create MNCC and MGCP expect */
1314 f_create_mncc_expect(hex2str(cpars.called_party));
1315 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
1316
Harald Welte0bef21e2018-02-10 09:48:23 +01001317 if (cpars.emergency) {
1318 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_CC_EMERG_SETUP(cpars.transaction_id)));
1319 } else {
1320 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_CC_SETUP(cpars.transaction_id, cpars.called_party)));
1321 }
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001322
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001323 if (cpars.stop_after_cc_setup) {
1324 return;
1325 }
1326
1327 var template BSSMAP_IE_AoIP_TransportLayerAddress tla_ass :=
Pau Espin Pedrol833174e2020-09-03 16:46:02 +02001328 f_tr_BSSMAP_IE_AoIP_TLA(cpars.mgw_conn_1.mgw_rtp_ip, ?);
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001329
1330 var default mdcx := activate(as_optional_mgcp_mdcx(cpars.mgw_conn_2.mgw_rtp_ip, cpars.mgw_conn_2.mgw_rtp_port));
Neels Hofmeyr8df69622019-11-02 19:16:03 +01001331 var boolean got_mncc_setup_compl_ind := false;
1332 var boolean got_cc_connect := false;
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001333
Harald Welteb71901a2018-01-26 19:16:05 +01001334 interleave {
1335 [] MNCC.receive(tr_MNCC_SETUP_ind(?, tr_MNCC_number(hex2str(cpars.called_party)))) -> value mncc {
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001336 log("f_mo_call_establish 1: rx MNCC SETUP ind");
Harald Welteb71901a2018-01-26 19:16:05 +01001337 cpars.mncc_callref := mncc.u.signal.callref;
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001338 MNCC.send(ts_MNCC_RTP_CREATE(cpars.mncc_callref));
1339 }
1340
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001341 /* First MGCP CRCX */
Harald Welteb71901a2018-01-26 19:16:05 +01001342 [] MGCP.receive(tr_CRCX) -> value mgcp_cmd {
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001343 log("f_mo_call_establish 2: rx 1st CRCX");
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001344 if (not f_handle_crcx(cpars, mgcp_cmd)) {
1345 break;
1346 }
Philipp Maierf1e02bb2018-03-15 16:30:00 +01001347 }
1348
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001349 /* Second MGCP CRCX */
1350 [] MGCP.receive(tr_CRCX(cpars.mgcp_ep)) -> value mgcp_cmd {
1351 log("f_mo_call_establish 6: rx 2nd CRCX");
1352 if (not f_handle_crcx(cpars, mgcp_cmd)) {
1353 break;
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001354 }
Harald Welteb71901a2018-01-26 19:16:05 +01001355 }
Neels Hofmeyr59e0c6f2019-03-06 15:21:20 +01001356
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001357 [] MNCC.receive(tr_MNCC_RTP_CREATE(cpars.mncc_callref)) {
1358 log("f_mo_call_establish 3: rx RTP CREATE");
1359 /* Call Proceeding */
1360 MNCC.send(ts_MNCC_CALL_PROC_req(cpars.mncc_callref, cpars.mncc_bearer_cap));
1361 BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_CALL_PROC(cpars.transaction_id)));
Harald Welteb71901a2018-01-26 19:16:05 +01001362
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001363 /* Alerting */
1364 MNCC.send(ts_MNCC_ALERT_req(cpars.mncc_callref));
Neels Hofmeyr59e0c6f2019-03-06 15:21:20 +01001365 }
Harald Welte9b751a62019-04-14 17:39:29 +02001366
Neels Hofmeyreccaa992019-10-15 16:42:21 +02001367 //[g_pars.ran_is_geran] BSSAP.receive(tr_BSSMAP_AssignmentReq(omit, tla_ass)) -> value bssap
Neels Hofmeyrd9d835d2019-09-17 18:19:08 +02001368 [] BSSAP.receive(tr_BSSMAP_AssignmentReq(omit)) -> value bssap {
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001369 log("f_mo_call_establish 4: rx Assignment Request");
1370 var BSSMAP_IE_AoIP_TransportLayerAddress tla;
1371 var BSSMAP_IE_SpeechCodec codec;
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001372 var BSSMAP_IE_Osmo_OsmuxCID osmuxCID;
1373
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001374 if (not match(bssap.pdu.bssmap.assignmentRequest.aoIPTransportLayer, tla_ass)) {
Neels Hofmeyrd9d835d2019-09-17 18:19:08 +02001375 log("Expected:", tla_ass);
1376 log("Got:", bssap.pdu.bssmap.assignmentRequest.aoIPTransportLayer);
1377 setverdict(fail, "MSC sent Assignment Request with unexpected AoIP Transport Layer IE");
1378 mtc.stop;
1379 }
1380
Pau Espin Pedrol833174e2020-09-03 16:46:02 +02001381 tla := valueof(f_ts_BSSMAP_IE_AoIP_TLA(cpars.bss_rtp_ip, cpars.bss_rtp_port));
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001382 codec := valueof(ts_BSSMAP_IE_SpeechCodec({ts_CodecFR}));
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001383 if (cpars.use_osmux) {
1384 if (not ispresent(bssap.pdu.bssmap.assignmentRequest.osmuxCID)) {
1385 setverdict(fail, "MSC sent AssignReq without expected OsmuxCID IE");
1386 mtc.stop;
1387 }
1388 osmuxCID := valueof(ts_OsmuxCID(0));
1389 if (cpars.use_osmux and not match(bssap.pdu.bssmap.assignmentRequest.osmuxCID, osmuxCID)) {
1390 setverdict(fail, "MSC sent AssignReq without expected OsmuxCID IE");
1391 mtc.stop;
1392 }
1393 bssap := valueof(ts_BSSMAP_AssignmentComplete(omit, tla, codec, osmuxCID));
1394 } else {
1395 bssap := valueof(ts_BSSMAP_AssignmentComplete(omit, tla, codec));
1396 }
1397 BSSAP.send(bssap);
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001398 }
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001399 [] BSSAP.receive(tr_RANAP_RabAssReq(*)) -> value ranap {
1400 log("f_mo_call_establish 4.iu: rx RANAP RAB Assignment Request");
1401 var RAB_SetupOrModifiedList l := {
1402 {
1403 {
1404 id := id_RAB_SetupOrModifiedItem,
1405 criticality := ignore,
1406 value_ := {
1407 rAB_SetupOrModifiedItem := {
1408 rAB_ID := int2bit(23, 8),
1409 transportLayerAddress := hex2bit( '350001c0a8021500000000000000000000000000'H),
1410 iuTransportAssociation := {
1411 bindingID := '040c0000'O
1412 },
1413 dl_dataVolumes := omit,
1414 iE_Extensions := omit
1415 }
1416 }
1417 }
1418 }
1419 };
1420 BSSAP.send(ts_RANAP_RabAssResp(l));
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001421 }
Harald Welte9b751a62019-04-14 17:39:29 +02001422
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001423 /* MDCX setting up the RAN side remote RTP address received from Assignment Complete */
1424 [] MGCP.receive(tr_MDCX) -> value mgcp_cmd {
1425 log("f_mo_call_establish 5: rx MDCX for the RAN side");
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +02001426 var SDP_Message sdp := valueof(ts_SDP(cpars.mgw_conn_1.mgw_rtp_ip, cpars.mgw_conn_1.mgw_rtp_ip,
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001427 hex2str(cpars.mgcp_call_id), "42",
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +02001428 cpars.mgw_conn_1.mgw_rtp_port,
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001429 { int2str(cpars.rtp_payload_type) },
1430 { valueof(ts_SDP_rtpmap(cpars.rtp_payload_type,
1431 cpars.rtp_sdp_format)),
1432 valueof(ts_SDP_ptime(20)) }));
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001433
1434 if (cpars.use_osmux) {
1435 osmux_cid := f_MgcpCmd_extract_osmux_cid(mgcp_cmd);
1436 if (osmux_cid != 0) { /* we expect MSC to use specific CID here */
1437 setverdict(fail, "MSC using unexpected CID " & int2str(osmux_cid) & " != 0");
1438 mtc.stop;
1439 }
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001440 mgcp_resp := ts_MDCX_ACK_osmux(mgcp_cmd.line.trans_id, cpars.mgw_conn_1.mgcp_connection_id, osmux_cid, sdp);
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001441 } else {
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +02001442 mgcp_resp := ts_MDCX_ACK(mgcp_cmd.line.trans_id, cpars.mgw_conn_1.mgcp_connection_id, sdp);
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001443 }
1444 MGCP.send(mgcp_resp);
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001445 }
Harald Welte9b751a62019-04-14 17:39:29 +02001446
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001447 [] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_ALERTING(cpars.transaction_id))) {
1448 log("f_mo_call_establish 7: rx CC Alerting");
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001449
1450 if (cpars.ran_clear_when_alerting) {
1451 if (g_pars.ran_is_geran) {
1452 BSSAP.send(ts_BSSMAP_ClearRequest(0));
1453 } else {
1454 BSSAP.send(ts_RANAP_IuReleaseRequest(ts_RanapCause_om_intervention));
1455 }
1456 break;
1457 }
1458
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001459 cpars.mncc_callref := mncc.u.signal.callref;
1460 /* Call Proceeding */
1461 MNCC.send(ts_MNCC_RTP_CONNECT(cpars.mncc_callref,
1462 /* ip 42.23.11.5 */ hex2int('42231105'H),
1463 /* port 423 */ 423,
1464 /* payload type 3 = GSM FR */ 3));
1465 MNCC.send(ts_MNCC_SETUP_rsp(cpars.mncc_callref));
1466 }
1467
1468 [] MNCC.receive(tr_MNCC_SETUP_COMPL_ind(?)) -> value mncc {
1469 log("f_mo_call_establish 8: rx MNCC SETUP COMPLETE ind");
Neels Hofmeyr8df69622019-11-02 19:16:03 +01001470 got_mncc_setup_compl_ind := true;
1471 if (not cpars.expect_release and got_cc_connect) {
1472 break;
1473 }
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001474 }
1475
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001476 [] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_CONNECT(cpars.transaction_id))) {
1477 log("f_mo_call_establish 10: rx CC CONNECT");
1478 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_CC_CONNECT_ACK(cpars.transaction_id)));
Neels Hofmeyr8df69622019-11-02 19:16:03 +01001479 got_cc_connect := true;
1480 if (not cpars.expect_release and got_mncc_setup_compl_ind) {
1481 break;
1482 }
Harald Welteb71901a2018-01-26 19:16:05 +01001483 }
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001484
1485 [] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_RELEASE(cpars.transaction_id))) {
1486 log("f_mo_call_establish 11: rx CC RELEASE");
Neels Hofmeyr8df69622019-11-02 19:16:03 +01001487 if (not cpars.expect_release) {
1488 setverdict(fail, "Got unexpected CC Release");
1489 mtc.stop;
1490 }
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001491 f_expect_clear();
1492 break;
1493 }
1494 }
1495
1496 f_sleep(0.5);
1497 deactivate(mdcx);
1498
1499 if (cpars.use_osmux == (cpars.got_osmux_count != 0)) {
1500 log("Osmux ok: use_osmux = ", cpars.use_osmux, " got_osmux_count = ", cpars.got_osmux_count);
1501 } else {
1502 setverdict(fail, "Osmux failure: use_osmux = ", cpars.use_osmux, " got_osmux_count = ", cpars.got_osmux_count);
1503 mtc.stop;
Harald Welteb71901a2018-01-26 19:16:05 +01001504 }
1505
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001506 log("f_mo_call_establish DONE");
Philipp Maier3716a5e2018-03-21 15:53:35 +01001507 setverdict(pass);
1508}
Harald Welteb71901a2018-01-26 19:16:05 +01001509
Harald Welte4c422b72019-02-17 16:27:10 +01001510function f_call_hangup(inout CallParameters cpars, boolean release_by_ms, boolean is_csfb := false)
Philipp Maier3716a5e2018-03-21 15:53:35 +01001511runs on BSC_ConnHdlr {
1512
1513 var MobileIdentityLV mi;
1514 var MNCC_PDU mncc;
1515 var MgcpCommand mgcp_cmd;
1516 var boolean respond_to_dlcx;
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001517 var boolean dlcx_contained_ci := false;
1518 var template PDU_BSSAP t_clear := tr_BSSMAP_ClearCommand;
1519
1520 if (is_csfb) {
1521 t_clear := tr_BSSMAP_ClearCommandCSFB;
1522 }
1523
Neels Hofmeyrba960a12019-11-02 19:17:38 +01001524 log("f_call_hangup 0: tx MNCC_DISC_REQ");
Harald Welteb71901a2018-01-26 19:16:05 +01001525 MNCC.send(ts_MNCC_DISC_req(cpars.mncc_callref, valueof(ts_MNCC_cause(23))));
1526 BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_DISC(cpars.transaction_id)));
1527
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001528 log("f_call_hangup 1: rx DTAP CC DISC");
1529
Philipp Maier3716a5e2018-03-21 15:53:35 +01001530 if (release_by_ms) {
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001531 var BIT1 tid_remote := '1'B;
1532 if (cpars.mo_call) {
1533 tid_remote := '0'B;
1534 }
Philipp Maier3716a5e2018-03-21 15:53:35 +01001535 /* B-side (MS) Release of call */
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001536 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_CC_RELEASE(cpars.transaction_id, tid_remote, '0000000'B)));
Philipp Maier3716a5e2018-03-21 15:53:35 +01001537 MNCC.receive(tr_MNCC_REL_ind(cpars.mncc_callref));
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001538 log("f_call_hangup 2: rx MNCC REL ind");
Philipp Maier3716a5e2018-03-21 15:53:35 +01001539 BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_REL_COMPL(cpars.transaction_id)));
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001540 log("f_call_hangup 3: rx DTAP CC REL COMPL");
Philipp Maier3716a5e2018-03-21 15:53:35 +01001541 } else {
1542 /* A-side (PLMN) Release of call */
1543 MNCC.send(ts_MNCC_REL_req(cpars.mncc_callref, valueof(ts_MNCC_cause(42))));
1544 BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_RELEASE(cpars.transaction_id)));
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001545 log("f_call_hangup 4: rx DTAP CC RELEASE");
Philipp Maier3716a5e2018-03-21 15:53:35 +01001546 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_CC_REL_COMPL(cpars.transaction_id)));
1547 }
Harald Welteb71901a2018-01-26 19:16:05 +01001548
Philipp Maier2a98a732018-03-19 16:06:12 +01001549 respond_to_dlcx := not (isbound(cpars.mgw_drop_dlcx) and valueof(cpars.mgw_drop_dlcx));
1550
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001551 var default mdcx := activate(as_optional_mgcp_mdcx(cpars.mgw_conn_2.mgw_rtp_ip, cpars.mgw_conn_2.mgw_rtp_port));
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001552 var default dlcx := activate(as_optional_mgcp_dlcx(cpars));
Harald Welte9b751a62019-04-14 17:39:29 +02001553
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001554 /* clearing of radio channel */
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001555 alt {
1556 [g_pars.ran_is_geran] BSSAP.receive(t_clear) {
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001557 log("f_call_hangup 5: rx BSSAP Clear Command");
1558 BSSAP.send(ts_BSSMAP_ClearComplete);
1559 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_IND);
1560 log("f_call_hangup 6: rx SCCP DISC");
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001561 setverdict(pass);
Philipp Maier2a98a732018-03-19 16:06:12 +01001562 }
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001563 [not g_pars.ran_is_geran] BSSAP.receive(tr_RANAP_IuReleaseCommand(?)) {
1564 log("f_call_hangup 5.iu: rx Iu Release Command");
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001565 BSSAP.send(ts_RANAP_IuReleaseComplete);
1566 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_IND);
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001567 log("f_call_hangup 6.iu: rx SCCP DISC");
1568 setverdict(pass);
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001569 }
1570 }
1571
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001572 f_sleep(1.0);
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001573 f_create_mgcp_delete_ep(cpars.mgcp_ep);
1574 log("f_call_hangup 9: done");
1575
1576 deactivate(mdcx);
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001577 deactivate(dlcx);
Philipp Maier3716a5e2018-03-21 15:53:35 +01001578}
1579
1580function f_mt_call(inout CallParameters cpars)
1581runs on BSC_ConnHdlr {
1582
1583 f_mt_call_establish(cpars);
1584
Neels Hofmeyrba960a12019-11-02 19:17:38 +01001585 log("Hold the call for some time");
Philipp Maier3716a5e2018-03-21 15:53:35 +01001586 f_sleep(3.0);
1587
Neels Hofmeyrba960a12019-11-02 19:17:38 +01001588 log("Hangup");
Philipp Maier3716a5e2018-03-21 15:53:35 +01001589 f_call_hangup(cpars, true);
1590
1591 setverdict(pass);
1592}
1593
1594function f_mo_call(inout CallParameters cpars)
1595runs on BSC_ConnHdlr {
1596
1597 f_mo_call_establish(cpars);
1598
Neels Hofmeyrba960a12019-11-02 19:17:38 +01001599 log("Hold the call for some time");
Philipp Maier3716a5e2018-03-21 15:53:35 +01001600 f_sleep(3.0);
1601
Neels Hofmeyrba960a12019-11-02 19:17:38 +01001602 log("Hangup");
Philipp Maier3716a5e2018-03-21 15:53:35 +01001603 f_call_hangup(cpars, false);
1604
Harald Welteb71901a2018-01-26 19:16:05 +01001605 setverdict(pass);
1606}
Harald Weltea49e36e2018-01-21 19:29:33 +01001607
Daniel Willmann8b084372018-02-04 13:35:26 +01001608function f_mo_seq_dtmf_dup(inout CallParameters cpars)
1609runs on BSC_ConnHdlr {
1610
1611 timer T := 1.0;
Daniel Willmann8b084372018-02-04 13:35:26 +01001612 var MNCC_PDU mncc;
1613 var MgcpCommand mgcp_cmd;
1614 var template PDU_ML3_MS_NW dtmf_dtap;
1615
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001616 f_mo_call_establish(cpars);
Daniel Willmann8b084372018-02-04 13:35:26 +01001617
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001618 /* Send DTMF: send the exact same DTAP message twice, the dup should be filtered out by
1619 * 3GPP TS 24.007 11.2.3.2 Message Type Octet / Duplicate Detection. */
Daniel Willmann8b084372018-02-04 13:35:26 +01001620
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001621 /* Find out the next NSD that will be used, from RAN emulation. */
1622 var N_Sd_Array last_n_sd := f_bssmap_last_n_sd();
1623 var uint2_t next_n_sd := f_next_n_sd(last_n_sd, 0 /* cc is index 0 */);
Daniel Willmann8b084372018-02-04 13:35:26 +01001624
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001625 /* Compose DTAP with this correct NSD */
Daniel Willmann8b084372018-02-04 13:35:26 +01001626 dtmf_dtap := ts_ML3_MO_CC_START_DTMF(cpars.transaction_id, "2");
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001627
1628 /* Here, pass skip_seq_patching == false so that the RAN Emulation NSD increments after this message. */
1629 BSSAP.send(ts_PDU_DTAP_MO(dtmf_dtap, '00'O, false));
Daniel Willmann8b084372018-02-04 13:35:26 +01001630 T.start;
1631 alt {
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001632 [] MNCC.receive(tr_MNCC_START_DTMF_ind(cpars.mncc_callref, "2")) {
1633 log("f_mo_seq_dtmf_dup() 1: got first START_DTMF_ind");
1634 }
Daniel Willmann8b084372018-02-04 13:35:26 +01001635 [] T.timeout {
1636 setverdict(fail, "Timeout waiting for START_DTMF_ind");
Daniel Willmannafce8662018-07-06 23:11:32 +02001637 mtc.stop;
Daniel Willmann8b084372018-02-04 13:35:26 +01001638 }
1639 }
1640
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001641 /* Send the exact same DTAP with above NSD, which is now incorrect (has not incremented), so that this message
1642 * will get filtered by the duplicate detection. Write NSD into DTAP and pass skip_seq_patching == true. */
1643 dtmf_dtap.msgs.cc.startDTMF.nsd := int2bit(next_n_sd, 2);
Daniel Willmann92f66272018-02-06 15:50:52 +01001644 BSSAP.send(ts_PDU_DTAP_MO(dtmf_dtap, '00'O, true));
Daniel Willmann8b084372018-02-04 13:35:26 +01001645 T.start;
1646 alt {
1647 [] MNCC.receive(tr_MNCC_START_DTMF_ind(cpars.mncc_callref, "2")) {
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001648 setverdict(fail, "f_mo_seq_dtmf_dup() 2: Received duplicate START_DTMF_ind");
Daniel Willmannafce8662018-07-06 23:11:32 +02001649 mtc.stop;
Daniel Willmann8b084372018-02-04 13:35:26 +01001650 }
1651 [] T.timeout { }
1652 }
1653
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001654 /* Here the NSD should be correct again and we see a DTMF. */
Daniel Willmann8b084372018-02-04 13:35:26 +01001655 dtmf_dtap := ts_ML3_MO_CC_START_DTMF(cpars.transaction_id, "3");
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001656 BSSAP.send(ts_PDU_DTAP_MO(dtmf_dtap, '00'O, false));
Daniel Willmann8b084372018-02-04 13:35:26 +01001657 alt {
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001658 [] MNCC.receive(tr_MNCC_START_DTMF_ind(cpars.mncc_callref, "3")) {
1659 log("f_mo_seq_dtmf_dup() 3: got second START_DTMF_ind");
1660 }
Daniel Willmann8b084372018-02-04 13:35:26 +01001661 [] T.timeout {
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001662 setverdict(fail, "Timeout waiting for final START_DTMF_ind");
Daniel Willmannafce8662018-07-06 23:11:32 +02001663 mtc.stop;
Daniel Willmann8b084372018-02-04 13:35:26 +01001664 }
1665 }
1666
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001667 f_call_hangup(cpars, true);
Daniel Willmann8b084372018-02-04 13:35:26 +01001668 setverdict(pass);
1669}
Harald Welte9b751a62019-04-14 17:39:29 +02001670
Harald Welte1ddc7162018-01-27 14:25:46 +01001671/* expect a clear command */
Harald Welte5946b332018-03-18 23:32:21 +01001672altstep as_clear_cmd_compl_disc(float t := 5.0) runs on BSC_ConnHdlr {
Neels Hofmeyr6b468a42019-03-06 15:25:14 +01001673 var PDU_BSSAP bssap;
Harald Welte5946b332018-03-18 23:32:21 +01001674 [] BSSAP.receive(tr_BSSMAP_ClearCommand) {
1675 BSSAP.send(ts_BSSMAP_ClearComplete);
1676 alt {
Harald Welte6811d102019-04-14 22:23:14 +02001677 [] BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_IND) {
Harald Welte5946b332018-03-18 23:32:21 +01001678 setverdict(pass);
1679 }
1680 [] BSSAP.receive {
1681 setverdict(fail, "Unexpected BSSMAP while waiting for SCCP Release");
Daniel Willmannafce8662018-07-06 23:11:32 +02001682 mtc.stop;
Harald Welte5946b332018-03-18 23:32:21 +01001683 }
1684 }
1685 }
Neels Hofmeyr6b468a42019-03-06 15:25:14 +01001686 [] BSSAP.receive(tr_BSSAP_BSSMAP) -> value bssap {
1687 setverdict(fail, "Unexpected BSSMAP while waiting for ClearCommand", bssap);
Daniel Willmannafce8662018-07-06 23:11:32 +02001688 mtc.stop;
Harald Welte5946b332018-03-18 23:32:21 +01001689 }
1690}
1691
Neels Hofmeyr4e18ccc2020-06-24 19:08:17 +02001692function f_expect_clear(float t := 5.0, boolean verify_vlr_cell_id := true) runs on BSC_ConnHdlr {
Harald Welte1ddc7162018-01-27 14:25:46 +01001693 timer T := t;
1694
1695 T.start;
1696 alt {
Harald Welte9b751a62019-04-14 17:39:29 +02001697 [g_pars.ran_is_geran] as_clear_cmd_compl_disc(t) { }
1698 [not g_pars.ran_is_geran] as_iu_release_compl_disc(t) { }
Harald Welte1ddc7162018-01-27 14:25:46 +01001699 [] T.timeout {
Harald Welte5946b332018-03-18 23:32:21 +01001700 setverdict(fail, "Timeout waiting for ClearCommand/Release");
Daniel Willmannafce8662018-07-06 23:11:32 +02001701 mtc.stop;
Harald Welte1ddc7162018-01-27 14:25:46 +01001702 }
1703 }
Neels Hofmeyr4e18ccc2020-06-24 19:08:17 +02001704
1705 if (verify_vlr_cell_id) {
1706 /* Now the conn is gone, but the VLR reflects the cell ID */
1707 f_verify_vty_lac_ci();
1708 }
Harald Welte1ddc7162018-01-27 14:25:46 +01001709}
1710
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02001711function f_create_bssmap_exp_handoverRequest(integer targetPointCode) runs on BSC_ConnHdlr {
1712 BSSAP_PROC.call(RAN_register_handoverRequest:{targetPointCode, self}) {
1713 [] BSSAP_PROC.getreply(RAN_register_handoverRequest:{?, ?}) {};
1714 }
1715}
1716
1717function f_bssmap_last_n_sd() runs on BSC_ConnHdlr return N_Sd_Array {
1718 var N_Sd_Array last_n_sd;
1719 BSSAP_PROC.call(RAN_last_n_sd:{self, -}) {
1720 [] BSSAP_PROC.getreply(RAN_last_n_sd:{self, ?}) -> param(last_n_sd) {
1721 return last_n_sd;
1722 };
1723 }
1724}
1725
1726function f_bssmap_continue_after_n_sd(N_Sd_Array last_n_sd) runs on BSC_ConnHdlr {
1727 BSSAP_PROC.call(RAN_continue_after_n_sd:{last_n_sd, self}) {
1728 [] BSSAP_PROC.getreply(RAN_continue_after_n_sd:{last_n_sd, self});
1729 }
1730}
1731
Harald Weltef45efeb2018-04-09 18:19:24 +02001732type record SmsParametersTp {
1733 OCT1 msg_ref,
1734 TP_DA da,
1735 OCT1 pid,
1736 OCT1 dcs,
1737 integer udl,
1738 octetstring ud
1739}
1740type record SmsParametersRp {
1741 OCT1 msg_ref,
Vadim Yanitskiy437b5a62019-12-15 14:13:39 +09001742 RP_NumberingPlan_and_NumberDigits smsc_addr optional
Harald Weltef45efeb2018-04-09 18:19:24 +02001743}
1744type record SmsParameters {
1745 SmsParametersTp tp,
1746 SmsParametersRp rp,
1747 uint3_t tid,
1748 OCT1 dlci,
1749 uint7_t exp_rp_err optional
1750}
1751
1752template (value) TP_DA ts_TP_DA(BIT4 npl, BIT3 ton, hexstring addr) := {
1753 tP_DA_NoPad := {
1754 tP_LengthIndicator := 0, /* overwritten */
1755 tP_NumberingPlanID := npl,
1756 tP_TypeOfNumber := ton,
1757 tp_Spare := '0'B,
1758 tP_DAValue := addr
1759 }
1760}
1761
Vadim Yanitskiy437b5a62019-12-15 14:13:39 +09001762template RP_NumberingPlan_and_NumberDigits t_RP_Addr(template hexstring addr,
1763 template BIT4 npi := '0001'B,
1764 template BIT3 ton := '001'B,
1765 template BIT1 ext := '1'B) := {
1766 rP_NumberingPlanIdentification := npi,
1767 rP_TypeOfNumber := ton,
1768 rP_Ext := ext,
1769 rP_NumberDigits := addr
1770}
1771
Harald Weltef45efeb2018-04-09 18:19:24 +02001772template (value) SmsParameters t_SmsPars(hexstring tp_daddr := '12345'H) := {
1773 tp := {
1774 msg_ref := '23'O,
1775 da := ts_TP_DA('0000'B, '000'B, tp_daddr),
1776 pid := '00'O,
1777 dcs := '00'O,
1778 udl := 0,
1779 ud := ''O
1780 },
1781 rp := {
1782 msg_ref := '42'O,
Vadim Yanitskiy437b5a62019-12-15 14:13:39 +09001783 /* We don't really need to have both SM-RP-DA/OA here, because only one IE
Vadim Yanitskiyafb15a82020-01-05 14:04:53 +01001784 * is included in MO/MT SMS, and in the most cases it's the SMSC address.
1785 * NOTE: this address is currently hard-coded by OsmoMSC. */
1786 smsc_addr := t_RP_Addr('447785016005'H)
Harald Weltef45efeb2018-04-09 18:19:24 +02001787 },
1788 tid := 0,
1789 dlci := '03'O,
1790 exp_rp_err := omit
1791}
1792
1793private altstep as_other_sms() runs on BSC_ConnHdlr {
1794 [] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_SMS(?, ?, ?), ?)) {
1795 setverdict(fail, "Unexpected SMS related PDU from MSC");
Daniel Willmannafce8662018-07-06 23:11:32 +02001796 mtc.stop;
Harald Weltef45efeb2018-04-09 18:19:24 +02001797 }
1798}
1799
Vadim Yanitskiy9cc019a2018-11-15 02:06:07 +07001800/* Submit a MO RP-SMMA over an already existing DTAP connection */
1801function f_mo_smma(inout SmsParameters spars)
1802runs on BSC_ConnHdlr {
1803 var template (value) RPDU_MS_SGSN rp_mo;
1804 var template (value) PDU_ML3_MS_NW l3_mo;
1805
1806 var default d := activate(as_other_sms());
1807
1808 /* just in case this is routed to SMPP.. */
1809 f_create_smpp_expect(hex2str(spars.tp.da.tP_DA_NoPad.tP_DAValue));
1810
1811 rp_mo := ts_RP_SMMA_MO(spars.rp.msg_ref);
1812 l3_mo := ts_ML3_MO_SMS(spars.tid, c_TIF_ORIG, ts_CP_DATA_MO(rp_mo));
1813 BSSAP.send(ts_PDU_DTAP_MO(l3_mo, spars.dlci, true));
1814 /* receive CP-ACK for CP-DATA above */
1815 BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_SMS(spars.tid, c_TIF_REPL, tr_CP_ACK_MT), spars.dlci));
1816
1817 deactivate(d);
1818 setverdict(pass);
1819}
1820
Vadim Yanitskiyd4cc1502018-11-12 01:46:21 +07001821/* Submit a MO-SMS over an already existing DTAP connection */
1822function f_mo_sms_submit(inout SmsParameters spars)
Harald Weltef45efeb2018-04-09 18:19:24 +02001823runs on BSC_ConnHdlr {
1824 var template (value) TPDU_RP_DATA_MS_SGSN tp_mo;
1825 var template (value) RPDU_MS_SGSN rp_mo;
1826 var template (value) PDU_ML3_MS_NW l3_mo;
1827
Harald Weltef45efeb2018-04-09 18:19:24 +02001828 var default d := activate(as_other_sms());
1829
Harald Weltef640a012018-04-14 17:49:21 +02001830 /* just in case this is routed to SMPP.. */
1831 f_create_smpp_expect(hex2str(spars.tp.da.tP_DA_NoPad.tP_DAValue));
1832
Harald Weltef45efeb2018-04-09 18:19:24 +02001833 tp_mo := ts_SMS_SUBMIT(spars.tp.msg_ref, spars.tp.da, spars.tp.pid, spars.tp.dcs,
1834 spars.tp.udl, spars.tp.ud);
Vadim Yanitskiy437b5a62019-12-15 14:13:39 +09001835 rp_mo := ts_RP_DATA_MO(spars.rp.msg_ref, omit, spars.rp.smsc_addr, tp_mo);
Harald Weltef45efeb2018-04-09 18:19:24 +02001836 l3_mo := ts_ML3_MO_SMS(spars.tid, c_TIF_ORIG, ts_CP_DATA_MO(rp_mo));
1837 BSSAP.send(ts_PDU_DTAP_MO(l3_mo, spars.dlci, true));
1838 /* receive CP-ACK for CP-DATA above */
1839 BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_SMS(spars.tid, c_TIF_REPL, tr_CP_ACK_MT), spars.dlci));
1840
Vadim Yanitskiyd4cc1502018-11-12 01:46:21 +07001841 deactivate(d);
1842 setverdict(pass);
1843}
1844
1845/* Wait RP-ACK for MO-SMS on an already existing DTAP connection */
1846function f_mo_sms_wait_rp_ack(inout SmsParameters spars)
1847runs on BSC_ConnHdlr {
1848 var template (value) PDU_ML3_MS_NW l3_mo;
1849
1850 var template TPDU_RP_DATA_SGSN_MS tp_mt;
1851 var template RPDU_SGSN_MS rp_mt;
1852 var template PDU_ML3_NW_MS l3_mt;
1853
1854 var default d := activate(as_other_sms());
1855
1856 /* just in case this is routed to SMPP.. */
1857 f_create_smpp_expect(hex2str(spars.tp.da.tP_DA_NoPad.tP_DAValue));
1858
Harald Weltef45efeb2018-04-09 18:19:24 +02001859 if (ispresent(spars.exp_rp_err)) {
1860 /* expect an RP-ERROR message from MSC with given cause */
1861 rp_mt := tr_RP_ERROR_MT(spars.rp.msg_ref, spars.exp_rp_err);
1862 l3_mt := tr_ML3_MT_SMS(spars.tid, c_TIF_REPL, tr_CP_DATA_MT(rp_mt));
1863 BSSAP.receive(tr_PDU_DTAP_MT(l3_mt, spars.dlci));
1864 /* send CP-ACK for CP-DATA just received */
1865 l3_mo := ts_ML3_MO_SMS(spars.tid, c_TIF_ORIG, ts_CP_ACK_MO);
1866 BSSAP.send(ts_PDU_DTAP_MO(l3_mo, spars.dlci, true));
1867 } else {
1868 /* expect RP-ACK for RP-DATA */
1869 rp_mt := tr_RP_ACK_MT(spars.rp.msg_ref);
1870 l3_mt := tr_ML3_MT_SMS(spars.tid, c_TIF_REPL, tr_CP_DATA_MT(rp_mt));
1871 BSSAP.receive(tr_PDU_DTAP_MT(l3_mt, spars.dlci));
1872 /* send CP-ACO for CP-DATA just received */
1873 l3_mo := ts_ML3_MO_SMS(spars.tid, c_TIF_ORIG, ts_CP_ACK_MO);
1874 BSSAP.send(ts_PDU_DTAP_MO(l3_mo, spars.dlci, true));
1875 }
Vadim Yanitskiyd4cc1502018-11-12 01:46:21 +07001876
Harald Weltef45efeb2018-04-09 18:19:24 +02001877 deactivate(d);
1878 setverdict(pass);
1879}
1880
Vadim Yanitskiyd4cc1502018-11-12 01:46:21 +07001881/* Submit a MO-SMS, and wait for RP-ACK on an existing
1882 * (and authenticated, ...) DTAP connection */
1883function f_mo_sms(inout SmsParameters spars)
1884runs on BSC_ConnHdlr {
1885 f_mo_sms_submit(spars);
1886 f_mo_sms_wait_rp_ack(spars);
1887}
1888
Neels Hofmeyrb58d9742019-11-27 18:44:54 +01001889function f_mt_sms_deliver_pdu(in SmsParameters spars)
1890runs on BSC_ConnHdlr
1891return template PDU_DTAP_MT {
1892 var template TPDU_RP_DATA_SGSN_MS tp_mt := tr_SMS_DELIVER(?, spars.tp.ud, spars.tp.pid, spars.tp.dcs, ?);
1893 var template RPDU_SGSN_MS rp_mt := tr_RP_DATA_MT(?, spars.rp.smsc_addr, omit, tp_mt);
1894 var template PDU_ML3_NW_MS l3_mt := tr_ML3_MT_SMS(?, c_TIF_ORIG, tr_CP_DATA_MT(rp_mt));
1895 return tr_PDU_DTAP_MT(l3_mt, spars.dlci);
1896}
1897
Vadim Yanitskiy2159acb2018-11-24 02:50:29 +07001898/* Wait for MT SMS on an already existing DTAP connection */
1899function f_mt_sms_expect(inout SmsParameters spars)
Harald Weltef45efeb2018-04-09 18:19:24 +02001900runs on BSC_ConnHdlr {
Harald Weltef45efeb2018-04-09 18:19:24 +02001901 var template (value) PDU_ML3_MS_NW l3_mo;
Harald Weltef45efeb2018-04-09 18:19:24 +02001902 var PDU_DTAP_MT dtap_mt;
1903
1904 var default d := activate(as_other_sms());
1905
1906 /* Expect CP-DATA(RP-DATA(SMS-DELIVER)) */
Neels Hofmeyrb58d9742019-11-27 18:44:54 +01001907 BSSAP.receive(f_mt_sms_deliver_pdu(spars)) -> value dtap_mt;
Vadim Yanitskiy2159acb2018-11-24 02:50:29 +07001908
Harald Weltef45efeb2018-04-09 18:19:24 +02001909 /* Extract relevant identifiers */
1910 spars.tid := bit2int(dtap_mt.dtap.tiOrSkip.transactionId.tio);
1911 spars.rp.msg_ref := dtap_mt.dtap.msgs.sms.cP_DATA.cP_User_Data.cP_RPDU.rP_DATA_SGSN_MS.rP_MessageReference;
1912
1913 /* send CP-ACK for CP-DATA just received */
1914 l3_mo := ts_ML3_MO_SMS(spars.tid, c_TIF_REPL, ts_CP_ACK_MO);
1915 BSSAP.send(ts_PDU_DTAP_MO(l3_mo, spars.dlci, true));
1916
Vadim Yanitskiy2159acb2018-11-24 02:50:29 +07001917 deactivate(d);
1918 setverdict(pass);
1919}
1920
1921/* Send RP-ACK for MT-SMS over an already existing DTAP connection */
1922function f_mt_sms_send_rp_ack(inout SmsParameters spars)
1923runs on BSC_ConnHdlr {
1924 var template (value) RPDU_MS_SGSN rp_mo;
1925 var template (value) PDU_ML3_MS_NW l3_mo;
1926 var template PDU_ML3_NW_MS l3_mt;
1927
1928 var default d := activate(as_other_sms());
1929
Harald Weltef45efeb2018-04-09 18:19:24 +02001930 /* send RP-ACK for RP-DATA */
1931 rp_mo := ts_RP_ACK_MO(spars.rp.msg_ref);
1932 l3_mo := ts_ML3_MO_SMS(spars.tid, c_TIF_REPL, ts_CP_DATA_MO(rp_mo));
1933 BSSAP.send(ts_PDU_DTAP_MO(l3_mo, spars.dlci, true));
1934
1935 /* expect CP-ACK for CP-DATA(RP-ACK) just sent */
Harald Weltee008eea2018-04-14 21:05:48 +02001936 l3_mt := tr_ML3_MT_SMS(spars.tid, c_TIF_ORIG, tr_CP_ACK_MT);
Harald Weltef45efeb2018-04-09 18:19:24 +02001937 BSSAP.receive(tr_PDU_DTAP_MT(l3_mt, spars.dlci));
1938
1939 deactivate(d);
1940 setverdict(pass);
1941}
1942
Vadim Yanitskiy56318522018-11-24 03:40:47 +07001943/* Send RP-ERROR for MT-SMS over an already existing DTAP connection */
1944function f_mt_sms_send_rp_error(inout SmsParameters spars, uint7_t cause)
1945runs on BSC_ConnHdlr {
1946 var template (value) RPDU_MS_SGSN rp_mo;
1947 var template (value) PDU_ML3_MS_NW l3_mo;
1948 var template PDU_ML3_NW_MS l3_mt;
1949
1950 var default d := activate(as_other_sms());
1951
1952 /* send RP-ACK for RP-DATA */
1953 rp_mo := ts_RP_ERROR_MO(spars.rp.msg_ref, cause);
1954 l3_mo := ts_ML3_MO_SMS(spars.tid, c_TIF_REPL, ts_CP_DATA_MO(rp_mo));
1955 BSSAP.send(ts_PDU_DTAP_MO(l3_mo, spars.dlci, true));
1956
1957 /* expect CP-ACK for CP-DATA(RP-ERROR) just sent */
1958 l3_mt := tr_ML3_MT_SMS(spars.tid, c_TIF_ORIG, tr_CP_ACK_MT);
1959 BSSAP.receive(tr_PDU_DTAP_MT(l3_mt, spars.dlci));
1960
1961 deactivate(d);
1962 setverdict(pass);
1963}
1964
Vadim Yanitskiy2159acb2018-11-24 02:50:29 +07001965/* Wait for a MT-SMS and send RP-ACK over an already existing
1966 * (and authenticated, ...) DTAP connection */
1967function f_mt_sms(inout SmsParameters spars)
1968runs on BSC_ConnHdlr {
1969 f_mt_sms_expect(spars);
1970 f_mt_sms_send_rp_ack(spars);
1971}
Harald Weltea49e36e2018-01-21 19:29:33 +01001972
1973
Harald Weltea49e36e2018-01-21 19:29:33 +01001974}