blob: 072f38d837a19d995dba4947cedbf416bfb36f86 [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
Eric Wild26f4a622021-05-17 15:27:05 +020015import from TCCOpenSecurity_Functions all;
Harald Weltea49e36e2018-01-21 19:29:33 +010016import from General_Types all;
17import from Osmocom_Types all;
Harald Welteb71901a2018-01-26 19:16:05 +010018import from Native_Functions all;
Pau Espin Pedrol563b3d02020-09-09 20:19:52 +020019import from Misc_Helpers all;
Harald Weltea49e36e2018-01-21 19:29:33 +010020import from GSM_Types all;
Harald Welteb71901a2018-01-26 19:16:05 +010021import from IPL4asp_Types all;
Harald Weltea49e36e2018-01-21 19:29:33 +010022import from SCCPasp_Types all;
23import from BSSAP_Types all;
Harald Welte6811d102019-04-14 22:23:14 +020024import from RAN_Emulation all;
Harald Weltea49e36e2018-01-21 19:29:33 +010025import from BSSMAP_Templates all;
26
Harald Welte9b751a62019-04-14 17:39:29 +020027import from RANAP_Constants all;
28import from RANAP_IEs all;
29import from RANAP_PDU_Contents all;
30import from RANAP_PDU_Descriptions all;
31import from RANAP_Templates all;
32
Harald Weltea49e36e2018-01-21 19:29:33 +010033import from GSUP_Types all;
Pau Espin Pedrol8f1403a2024-01-18 20:08:43 +010034import from GSUP_Templates all;
Harald Weltea49e36e2018-01-21 19:29:33 +010035import from GSUP_Emulation all;
36
37import from MNCC_Types all;
38import from MNCC_Emulation all;
39
Harald Welte4aa970c2018-01-26 10:38:09 +010040import from MGCP_Types all;
41import from MGCP_Emulation all;
Harald Welteb71901a2018-01-26 19:16:05 +010042import from MGCP_Templates all;
43import from SDP_Types all;
Pau Espin Pedrol1158cc62024-03-21 17:21:35 +010044import from SDP_Templates all;
Harald Welte4aa970c2018-01-26 10:38:09 +010045
Harald Weltea49e36e2018-01-21 19:29:33 +010046import from MobileL3_Types all;
47import from MobileL3_CommonIE_Types all;
48import from MobileL3_MM_Types all;
Harald Welteb71901a2018-01-26 19:16:05 +010049import from MobileL3_CC_Types all;
Harald Weltef45efeb2018-04-09 18:19:24 +020050import from MobileL3_SMS_Types all;
Harald Weltea49e36e2018-01-21 19:29:33 +010051import from L3_Templates all;
Harald Welte158a7ca2018-02-16 18:11:31 +010052import from L3_Common all;
Harald Weltea49e36e2018-01-21 19:29:33 +010053
Harald Weltef640a012018-04-14 17:49:21 +020054import from SMPP_Emulation all;
55
Philipp Maieraeb29a82018-11-08 17:40:53 +010056import from IPA_Emulation all;
57import from Osmocom_CTRL_Functions all;
58import from Osmocom_CTRL_Types all;
59import from Osmocom_CTRL_Adapter all;
60
Philipp Maierc39a9d82018-11-09 11:21:08 +010061import from TELNETasp_PortType all;
62import from Osmocom_VTY_Functions all;
63
Harald Welte4263c522018-12-06 11:56:27 +010064import from SGsAP_Emulation all;
65
Neels Hofmeyr4e18ccc2020-06-24 19:08:17 +020066import from TCCConversion_Functions { function f_strstr };
67
Neels Hofmeyrf797d292021-07-27 22:33:09 +020068type port BSC_ConnHdlr_Coord_PT message
69{
70 inout charstring, CallParameters;
71} with { extension "internal" };
72
73
Harald Weltea49e36e2018-01-21 19:29:33 +010074/* this component represents a single subscriber connection */
Harald Welte6811d102019-04-14 22:23:14 +020075type 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 +010076 var BSC_ConnHdlrPars g_pars;
Harald Weltea10db902018-01-27 12:44:49 +010077 timer g_Tguard := 60.0;
Philipp Maierc39a9d82018-11-09 11:21:08 +010078 port TELNETasp_PT MSCVTY;
Neels Hofmeyrf797d292021-07-27 22:33:09 +020079 port BSC_ConnHdlr_Coord_PT COORD;
Harald Weltea49e36e2018-01-21 19:29:33 +010080}
81
Harald Weltede371492018-01-27 23:44:41 +010082type record BSC_ConnHdlrNetworkPars {
Neels Hofmeyre860fc42022-10-05 01:15:54 +020083 /* Bitmask of expected A5 levels; in Ciphering, will expect use of the highest A5 remaining after masking this
84 * with A5 supported by the MS */
Harald Weltede371492018-01-27 23:44:41 +010085 OCT1 kc_support,
Neels Hofmeyre860fc42022-10-05 01:15:54 +020086 /* osmo-msc VTY cfg under 'network': If a test wants to temporarily modify auth and encr config, this is the
87 * original config to return to for this test (is *not* sent to vty before the test, but maybe it should).
88 * For example: { "authentication optional", "encryption a5 0 3" } */
89 rof_charstring net_config,
90 /* expect_attach_success == true: expect Location Updating / CM Service Request to succeed.
91 * expect_attach_success == false: expect the MSC to reject LU / CM Service. */
92 boolean expect_attach_success,
93 /* expect_tmsi == true: expect MSC to allocate a new TMSI.
94 * expect_tmsi == false: expect no TMSI to be assigned, operate with IMSI Mobile Identity. */
Harald Weltede371492018-01-27 23:44:41 +010095 boolean expect_tmsi,
Neels Hofmeyre860fc42022-10-05 01:15:54 +020096 /* expect_auth == true overrides expect_auth_attempt == false */
97 boolean expect_auth_attempt,
98 /* hlr_has_auth_info has an effect only when (expect_auth_attempt or expect_auth) == true.
99 * hlr_has_auth_info == false means the HLR responds to Send Auth Info Request with a NACK. */
100 boolean hlr_has_auth_info,
Harald Weltede371492018-01-27 23:44:41 +0100101 boolean expect_auth,
Oliver Smith1d118ff2019-07-03 10:57:35 +0200102 boolean expect_ciph,
103 boolean expect_imei,
104 boolean expect_imei_early,
105 GSUP_IMEIResult check_imei_result,
106 boolean check_imei_error
Harald Weltede371492018-01-27 23:44:41 +0100107}
108
Harald Weltea49e36e2018-01-21 19:29:33 +0100109type record BSC_ConnHdlrPars {
110 SCCP_PAR_Address sccp_addr_own,
111 SCCP_PAR_Address sccp_addr_peer,
112 BSSMAP_IE_CellIdentifier cell_id,
Harald Welte256571e2018-01-24 18:47:19 +0100113 hexstring imei,
Harald Weltea49e36e2018-01-21 19:29:33 +0100114 hexstring imsi,
Harald Welte82600572018-01-21 20:54:08 +0100115 hexstring msisdn,
Harald Welte256571e2018-01-24 18:47:19 +0100116 OCT4 tmsi optional,
Harald Welte9de84792018-01-28 01:06:35 +0100117 MobileStationClassmark1_V cm1,
Harald Welte82600572018-01-21 20:54:08 +0100118 BSSMAP_IE_ClassmarkInformationType2 cm2,
Harald Welte16114282018-01-24 22:41:21 +0100119 BSSMAP_IE_ClassmarkInformationType3 cm3 optional,
Harald Weltede371492018-01-27 23:44:41 +0100120 AuthVector vec optional,
Neels Hofmeyrb00c5b02021-06-23 20:05:25 +0200121 /* BSC_ConnectionHandler generates an auth vector in as_GSUP_SAI(). For tests that want control over which
122 * vector is used, pass vec_keep := true to not regenerate a new auth vector in as_GSUP_SAI(). */
123 boolean vec_keep,
Neels Hofmeyrc1f105a2018-03-01 20:00:19 +0100124 BSC_ConnHdlrNetworkPars net,
Philipp Maieraeb29a82018-11-08 17:40:53 +0100125 boolean send_early_cm,
126 charstring ipa_ctrl_ip,
127 integer ipa_ctrl_port,
Philipp Maier9b690e42018-12-21 11:50:03 +0100128 boolean ipa_ctrl_enable,
Philipp Maier57865482019-01-07 18:33:13 +0100129 boolean mm_info,
Philipp Maierc09a1312019-04-09 16:05:26 +0200130 boolean sgsap_enable,
Harald Weltef9abf8d2019-04-21 13:07:17 +0200131 boolean gsup_enable,
Vadim Yanitskiy2dd96612020-01-07 21:48:29 +0100132 OCT4 gsup_sid,
Harald Weltec1f937a2019-04-21 21:19:23 +0200133 integer ran_idx,
Harald Welte9b751a62019-04-14 17:39:29 +0200134 boolean use_umts_aka,
Pau Espin Pedrola65697d2019-05-21 12:54:39 +0200135 boolean ran_is_geran,
Neels Hofmeyr4e18ccc2020-06-24 19:08:17 +0200136 boolean use_osmux,
Pau Espin Pedrol833174e2020-09-03 16:46:02 +0200137 boolean use_ipv6,
Oliver Smith44424db2023-08-22 13:54:09 +0200138 boolean use_csd,
Pau Espin Pedrole979c402021-04-28 17:29:54 +0200139 boolean verify_cell_id,
140 OCT3 common_id_last_eutran_plmn optional
Harald Weltea49e36e2018-01-21 19:29:33 +0100141};
142
Harald Welte9de84792018-01-28 01:06:35 +0100143/* get a one-octet bitmaks of supported algorithms based on Classmark information */
Eric Wild26f4a622021-05-17 15:27:05 +0200144function f_alg_mask_from_cm(BSSMAP_IE_ClassmarkInformationType2 cm2, template (omit) BSSMAP_IE_ClassmarkInformationType3 cm3 := omit) return OCT1 {
Harald Welte9de84792018-01-28 01:06:35 +0100145 var BIT8 res := '00000001'B; /* A5/0 always supported */
146
147 if (cm2.a5_1 == '0'B) {
148 res := res or4b '00000010'B;
149 }
150 if (cm2.classmarkInformationType2_oct5.a5_2 == '1'B ) {
151 res := res or4b '00000100'B;
152 }
153 if (cm2.classmarkInformationType2_oct5.a5_3 == '1'B) {
154 res := res or4b '00001000'B;
155 }
Eric Wild26f4a622021-05-17 15:27:05 +0200156 if (not istemplatekind(cm3, "omit")) {
157 var BSSMAP_IE_ClassmarkInformationType3 v := valueof(cm3);
158 var BIT8 tmp := oct2bit(v.classmark3ValuePart[0]) and4b '00001111'B;
159 res := res or4b (tmp << 4);
160 }
161
Harald Welte9de84792018-01-28 01:06:35 +0100162 return bit2oct(res);
163}
164
165/* determine the best algorithm available within the bit-mask */
166function f_best_alg_from_mask(OCT1 alg_in) return OCT1 {
167 var BIT8 alg := oct2bit(alg_in);
168 var BIT8 ordered_algs[8] := {
169 '10000000'B, '01000000'B, '00100000'B, '00010000'B,
170 '00001000'B, /* A5/3 */
171 '00000010'B, /* A5/1 */
172 '00000100'B, /* A5/2 */
173 '00000001'B /* A5/0 */ }
174 for (var integer i := 0; i < sizeof(ordered_algs); i := i+1) {
175 if (alg and4b ordered_algs[i] != '00000000'B) {
176 return bit2oct(ordered_algs[i]);
177 }
178 }
179 return '00'O;
180}
181
182/* return an integer like '1' for A5/1 based on a mask (with only one bit set */
183function f_alg_from_mask(OCT1 mask_in) return integer {
184 var BIT8 mask := oct2bit(mask_in);
185 for (var integer i := 0; i < 8; i := i+1) {
186 if (mask and4b ('00000001'B << i) != '00000000'B) {
187 return i;
188 }
189 }
190 return -1;
191}
192
Eric Wild26f4a622021-05-17 15:27:05 +0200193/* return true for A5/x supported by OCT1 bitmask */
194function f_alg_supported_by_mask(OCT1 mask_in, integer whicha5) return boolean {
195 var BIT8 mask := oct2bit(mask_in);
196 if (mask and4b ('00000001'B << whicha5) != '00000000'B) {
197 return true;
198 }
199 return false;
200}
201
Harald Weltea10db902018-01-27 12:44:49 +0100202/* altstep for the global guard timer */
203private altstep as_Tguard() runs on BSC_ConnHdlr {
204 [] g_Tguard.timeout {
Daniel Willmann90829d62018-02-15 17:45:14 +0100205 setverdict(fail, "Tguard timeout");
Daniel Willmannafce8662018-07-06 23:11:32 +0200206 mtc.stop;
Harald Weltea10db902018-01-27 12:44:49 +0100207 }
208}
209
210/* init function, called as first function in new BSC_ConnHdlr */
Harald Weltead2952e2018-01-27 14:12:46 +0100211function f_init_handler(BSC_ConnHdlrPars pars, float t_guard := 60.0) runs on BSC_ConnHdlr {
Harald Weltea10db902018-01-27 12:44:49 +0100212 /* make parameters available via component variable */
213 g_pars := pars;
214 /* Start guard timer and activate it as default */
Harald Weltead2952e2018-01-27 14:12:46 +0100215 g_Tguard.start(t_guard);
Harald Weltea10db902018-01-27 12:44:49 +0100216 activate(as_Tguard());
Harald Weltef640a012018-04-14 17:49:21 +0200217 /* Route all SMPP messages for our MSISDN to us */
218 f_create_smpp_expect(hex2str(pars.msisdn));
Philipp Maier57865482019-01-07 18:33:13 +0100219
Harald Welte4263c522018-12-06 11:56:27 +0100220 /* Route all SGs message for our IMSI to us */
Philipp Maier57865482019-01-07 18:33:13 +0100221 if (g_pars.sgsap_enable == true) {
222 f_create_sgsap_expect(pars.imsi);
223 }
Philipp Maieraeb29a82018-11-08 17:40:53 +0100224
225 if (g_pars.ipa_ctrl_enable == true) {
Pau Espin Pedrol9a5b8ff2021-01-04 19:01:31 +0100226 f_ipa_ctrl_start_client(g_pars.ipa_ctrl_ip, g_pars.ipa_ctrl_port);
Philipp Maieraeb29a82018-11-08 17:40:53 +0100227 }
Philipp Maierc39a9d82018-11-09 11:21:08 +0100228
229 map(self:MSCVTY, system:MSCVTY);
230 f_vty_set_prompts(MSCVTY);
231 f_vty_transceive(MSCVTY, "enable");
Harald Weltea10db902018-01-27 12:44:49 +0100232}
233
Harald Weltea49e36e2018-01-21 19:29:33 +0100234
Harald Welte6811d102019-04-14 22:23:14 +0200235/* Callback function from general RAN_Emulation whenever a connectionless
Harald Weltea49e36e2018-01-21 19:29:33 +0100236 * BSSMAP message arrives. Canreturn a PDU_BSSAPthat should be sent in return */
237private function BscUnitdataCallback(PDU_BSSAP bssap)
Harald Welte6811d102019-04-14 22:23:14 +0200238runs on RAN_Emulation_CT return template PDU_BSSAP {
Harald Weltea49e36e2018-01-21 19:29:33 +0100239 var template PDU_BSSAP resp := omit;
240
241 log("BSSMAP_BscUnitdataCallback");
242 /* answer all RESET with RESET ACK */
Pau Espin Pedrola65697d2019-05-21 12:54:39 +0200243 if (match(bssap, tr_BSSMAP_Reset(g_ran_ops.use_osmux))){
Harald Weltea49e36e2018-01-21 19:29:33 +0100244 log("BSSMAP_BscUnitdataCallback: Responding to RESET with RESET-ACK");
Pau Espin Pedrola65697d2019-05-21 12:54:39 +0200245 resp := ts_BSSMAP_ResetAck(g_ran_ops.use_osmux);
Harald Weltea49e36e2018-01-21 19:29:33 +0100246 }
247
248 /* FIXME: Handle paging, etc. */
249 return resp;
250}
251
Harald Welte9b751a62019-04-14 17:39:29 +0200252private function RncUnitdataCallback(RANAP_PDU ranap)
253runs on RAN_Emulation_CT return template RANAP_PDU {
254 var template RANAP_PDU resp := omit;
255
256 log("RANAP_RncUnitdataCallback");
257 /* answer all RESET with RESET ACK */
Pau Espin Pedrola65697d2019-05-21 12:54:39 +0200258 if (match(ranap, tr_RANAP_Reset())) {
Harald Welte9b751a62019-04-14 17:39:29 +0200259 log("RANAP_RncUnitdataCallback: Responding to RESET with RESET-ACK");
260 var CN_DomainIndicator dom;
261 dom := ranap.initiatingMessage.value_.Reset.protocolIEs[1].value_.cN_DomainIndicator;
262 resp := ts_RANAP_ResetAck(dom);
263 }
264
265 /* FIXME: Handle paging, etc. */
266 return resp;
267}
268
269
Harald Welte6811d102019-04-14 22:23:14 +0200270const RanOps BSC_RanOps := {
Harald Weltea49e36e2018-01-21 19:29:33 +0100271 /* Create call-back for inbound connections from MSC (hand-over) */
Harald Welte6811d102019-04-14 22:23:14 +0200272 create_cb := refers(RAN_Emulation.ExpectedCreateCallback),
Harald Weltea49e36e2018-01-21 19:29:33 +0100273 unitdata_cb := refers(BscUnitdataCallback),
Harald Welte9b751a62019-04-14 17:39:29 +0200274 ranap_create_cb := refers(RAN_Emulation.RanapExpectedCreateCallback),
275 ranap_unitdata_cb := refers(RncUnitdataCallback),
276 ps_domain := false,
Harald Weltea49e36e2018-01-21 19:29:33 +0100277 decode_dtap := true,
Harald Weltea4ca4462018-02-09 00:17:14 +0100278 role_ms := true,
Harald Welte2fce7882019-04-15 11:48:05 +0200279 protocol := RAN_PROTOCOL_BSSAP,
Pau Espin Pedrolc6b78ff2019-06-06 15:58:17 +0200280 transport := BSSAP_TRANSPORT_AoIP,
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200281 use_osmux := false,
Eric Wild49888a62022-03-30 03:16:11 +0200282 bssap_reset_retries := 1,
Harald Weltea4ca4462018-02-09 00:17:14 +0100283 sccp_addr_local := omit,
284 sccp_addr_peer := omit
Harald Weltea49e36e2018-01-21 19:29:33 +0100285}
286
287
288private function MnccUnitdataCallback(MNCC_PDU mncc)
289runs on MNCC_Emulation_CT return template MNCC_PDU {
290 log("Ignoring MNCC", mncc);
291 return omit;
292}
293
294const MnccOps BCC_MnccOps := {
295 create_cb := refers(MNCC_Emulation.ExpectedCreateCallback),
296 unitdata_cb := refers(MnccUnitdataCallback)
297}
298
299
300
Harald Welte6811d102019-04-14 22:23:14 +0200301/* Encode 'l3' and ask RAN_Emulation to create new connection with COMPL L3 INFO */
Harald Weltea49e36e2018-01-21 19:29:33 +0100302function f_bssap_compl_l3(PDU_ML3_MS_NW l3)
303runs on BSC_ConnHdlr {
304 log("Sending COMPL L3: ", l3);
305 var octetstring l3_enc := enc_PDU_ML3_MS_NW(l3);
306 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_peer, g_pars.sccp_addr_own,
307 valueof(ts_BSSMAP_ComplL3(g_pars.cell_id, l3_enc))));
Harald Welte71b69332018-01-21 20:43:53 +0100308 alt {
Harald Welte6811d102019-04-14 22:23:14 +0200309 [] BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND) {}
310 [] BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_IND) {
Harald Welte71b69332018-01-21 20:43:53 +0100311 setverdict(fail, "DISC.ind from SCCP");
Daniel Willmannafce8662018-07-06 23:11:32 +0200312 mtc.stop;
Harald Welte71b69332018-01-21 20:43:53 +0100313 }
314 }
Harald Weltea49e36e2018-01-21 19:29:33 +0100315}
316
Harald Welte9b751a62019-04-14 17:39:29 +0200317/* generate Iu LAI from BSSAP CGI */
318private function f_IuLAI_from_BssmapCI(BSSMAP_IE_CellIdentifier ci) return LAI {
319 var LAI lai;
320 if (ischosen(ci.cellIdentification.cI_CGI)) {
321 lai.pLMNidentity := ci.cellIdentification.cI_CGI.mcc_mnc;
322 lai.lAC := ci.cellIdentification.cI_CGI.lac;
323 } else if (ischosen(ci.cellIdentification.cI_SAI)) {
324 lai.pLMNidentity := ci.cellIdentification.cI_SAI.mcc_mnc;
325 lai.lAC := ci.cellIdentification.cI_SAI.lac;
326 } else if (ischosen(ci.cellIdentification.ci_LAC_RNC_CI)) {
327 lai.pLMNidentity := ci.cellIdentification.ci_LAC_RNC_CI.mcc_mnc;
328 lai.lAC := ci.cellIdentification.ci_LAC_RNC_CI.lac;
329 } else {
330 mtc.stop;
331 }
332 lai.iE_Extensions := omit;
333 return lai;
334}
335
336/* like f_bssap_compl_l3() but for 3G */
337function f_ranap_initial_ue(PDU_ML3_MS_NW l3)
338runs on BSC_ConnHdlr {
339 log("Sending InitialUE: ", l3);
340 var octetstring l3_enc := enc_PDU_ML3_MS_NW(l3);
341 var RANAP_PDU ranap;
342 var LAI lai := f_IuLAI_from_BssmapCI(g_pars.cell_id);
343 var SAI sai := {
344 pLMNidentity := lai.pLMNidentity,
345 lAC := lai.lAC,
346 sAC := '0000'O, /* FIXME */
347 iE_Extensions := omit
348 };
349 var IuSignallingConnectionIdentifier sigc_id := int2bit(23, 24);
350 var GlobalRNC_ID grnc_id := {
351 pLMNidentity := lai.pLMNidentity,
352 rNC_ID := 2342 /* FIXME */
353 };
354
355 ranap := valueof(ts_RANAP_initialUE_CS(lai, sai, l3_enc, sigc_id, grnc_id));
356 BSSAP.send(ts_RANAP_Conn_Req(g_pars.sccp_addr_peer, g_pars.sccp_addr_own, ranap));
357 alt {
358 [] BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND) {}
359 [] BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_IND) {
360 setverdict(fail, "DISC.ind from SCCP");
361 mtc.stop;
362 }
363 }
364}
365
Harald Weltedceacc72019-04-21 20:58:35 +0200366/* Send BSSMAP Complete L3 or RANAP Initial UE depending on 2G/3G RAN type */
367function f_cl3_or_initial_ue(PDU_ML3_MS_NW l3)
368runs on BSC_ConnHdlr {
369 if (g_pars.ran_is_geran) {
370 f_bssap_compl_l3(l3);
371 } else {
372 f_ranap_initial_ue(l3);
373 }
374}
375
Harald Welte081b19a2018-02-10 09:11:13 +0100376type enumerated EstablishType {
377 EST_TYPE_MO_CALL,
Harald Welte0bef21e2018-02-10 09:48:23 +0100378 EST_TYPE_EMERG_CALL,
Harald Weltef45efeb2018-04-09 18:19:24 +0200379 EST_TYPE_PAG_RESP,
Vadim Yanitskiy20ee5e42018-05-27 17:54:21 +0700380 EST_TYPE_MO_SMS,
Oliver Smith92b280c2023-04-20 13:13:23 +0200381 EST_TYPE_SS_ACT,
Andreas Eversberg5ada75d2023-07-27 16:24:38 +0200382 EST_TYPE_MO_CSD,
383 EST_TYPE_VGCS,
384 EST_TYPE_VBS
Harald Welte081b19a2018-02-10 09:11:13 +0100385};
386
Harald Weltea49e36e2018-01-21 19:29:33 +0100387/* helper function to fully establish a dedicated channel */
Harald Welteb9e86fa2018-04-09 18:18:31 +0200388function f_establish_fully(EstablishType etype := EST_TYPE_MO_CALL)
Harald Weltea49e36e2018-01-21 19:29:33 +0100389runs on BSC_ConnHdlr {
Harald Welte081b19a2018-02-10 09:11:13 +0100390 var PDU_ML3_MS_NW l3_info;
Harald Welteb9e86fa2018-04-09 18:18:31 +0200391 var MobileIdentityLV mi;
392
393 /* If we have a TMSI, use TMSI instead of IMSI */
394 if (ispresent(g_pars.tmsi)) {
395 mi := valueof(ts_MI_TMSI_LV(g_pars.tmsi));
396 } else {
397 mi := valueof(ts_MI_IMSI_LV(g_pars.imsi));
398 }
399
Harald Welte081b19a2018-02-10 09:11:13 +0100400 select (etype) {
401 case (EST_TYPE_MO_CALL) {
402 l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, mi));
403 }
Oliver Smith92b280c2023-04-20 13:13:23 +0200404 case (EST_TYPE_MO_CSD) {
405 l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, mi));
406 }
Harald Welte0bef21e2018-02-10 09:48:23 +0100407 case (EST_TYPE_EMERG_CALL) {
408 l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_EMERG_CALL, mi));
409 }
Harald Welte081b19a2018-02-10 09:11:13 +0100410 case (EST_TYPE_PAG_RESP) {
411 l3_info := valueof(ts_PAG_RESP(mi));
412 }
Harald Weltef45efeb2018-04-09 18:19:24 +0200413 case (EST_TYPE_MO_SMS) {
414 l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_SMS, mi));
415 }
Vadim Yanitskiy20ee5e42018-05-27 17:54:21 +0700416 case (EST_TYPE_SS_ACT) {
417 l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_SS_ACT, mi));
418 }
Andreas Eversberg5ada75d2023-07-27 16:24:38 +0200419 case (EST_TYPE_VGCS) {
420 l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_VGCS, mi));
421 }
422 case (EST_TYPE_VBS) {
423 l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_VBS, mi));
424 }
Harald Welte081b19a2018-02-10 09:11:13 +0100425 }
Harald Weltea49e36e2018-01-21 19:29:33 +0100426
427 /* Send BSSAP_Conn_Req with COMPL L3 INFO to MSC */
Harald Weltedceacc72019-04-21 20:58:35 +0200428 f_cl3_or_initial_ue(l3_info);
Harald Weltea49e36e2018-01-21 19:29:33 +0100429
Neels Hofmeyr4e18ccc2020-06-24 19:08:17 +0200430 f_verify_vty_lac_ci(verify_vlr := false);
431
Harald Weltede371492018-01-27 23:44:41 +0100432 f_mm_common();
Pau Espin Pedrolf8034482019-06-03 13:15:58 +0200433 if (g_pars.net.expect_ciph or not g_pars.ran_is_geran) {
Harald Welte148a7082018-01-26 18:56:43 +0100434 /* implicit CM SERVICE ACCEPT? */
435 } else {
Harald Welte0bef21e2018-02-10 09:48:23 +0100436 if (etype != EST_TYPE_PAG_RESP) {
Harald Welte081b19a2018-02-10 09:11:13 +0100437 /* explicit CM SERVICE ACCEPT */
Neels Hofmeyre860fc42022-10-05 01:15:54 +0200438 if (g_pars.net.expect_attach_success) {
439 BSSAP.receive(tr_PDU_DTAP_MT(tr_CM_SERV_ACC));
440 } else {
441 BSSAP.receive(tr_PDU_DTAP_MT(tr_CM_SERV_REJ));
442 }
Harald Welte081b19a2018-02-10 09:11:13 +0100443 }
Harald Weltea49e36e2018-01-21 19:29:33 +0100444 }
Harald Weltea49e36e2018-01-21 19:29:33 +0100445}
446
447/* build a PDU_ML3_MS_NW containing a Location Update by IMSI */
Harald Welte9de84792018-01-28 01:06:35 +0100448function f_build_lu_imsi(hexstring imsi) runs on BSC_ConnHdlr return PDU_ML3_MS_NW
Harald Weltea49e36e2018-01-21 19:29:33 +0100449{
450 var MobileIdentityLV mi := valueof(ts_MI_IMSI_LV(imsi));
451 return f_build_lu(mi);
452}
Harald Welte9de84792018-01-28 01:06:35 +0100453function f_build_lu_imei(hexstring imei) runs on BSC_ConnHdlr return PDU_ML3_MS_NW
Harald Welteba7b6d92018-01-23 21:32:34 +0100454{
455 var MobileIdentityLV mi := valueof(ts_MI_IMEI_LV(imei));
456 return f_build_lu(mi);
457}
Harald Welte9de84792018-01-28 01:06:35 +0100458function f_build_lu_tmsi(OCT4 tmsi) runs on BSC_ConnHdlr return PDU_ML3_MS_NW
Harald Welteba7b6d92018-01-23 21:32:34 +0100459{
460 var MobileIdentityLV mi := valueof(ts_MI_TMSI_LV(tmsi));
461 return f_build_lu(mi);
462}
Harald Welte9de84792018-01-28 01:06:35 +0100463private function f_build_lu(MobileIdentityLV mi) runs on BSC_ConnHdlr return PDU_ML3_MS_NW
Harald Weltea49e36e2018-01-21 19:29:33 +0100464{
465 var LocationAreaIdentification_V old_lai := { '62F220'O, '9999'O };
466 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 +0100467 old_lai, mi, g_pars.cm1));
Harald Weltea49e36e2018-01-21 19:29:33 +0100468 return l3_info;
469}
470
Harald Weltea183a5d2019-05-09 13:40:52 +0200471altstep as_GSUP_SAI() runs on BSC_ConnHdlr {
472var GSUP_IE auth_tuple;
473[] GSUP.receive(tr_GSUP_SAI_REQ(g_pars.imsi)) {
Neels Hofmeyre860fc42022-10-05 01:15:54 +0200474 if (g_pars.net.hlr_has_auth_info) {
475 if (g_pars.use_umts_aka) {
476 if (not g_pars.vec_keep) {
477 g_pars.vec := f_gen_auth_vec_3g();
478 }
479 auth_tuple := valueof(ts_GSUP_IE_AuthTuple2G3G(g_pars.vec.rand,
480 g_pars.vec.sres,
481 g_pars.vec.kc,
482 g_pars.vec.ik,
483 g_pars.vec.ck,
484 g_pars.vec.autn,
485 g_pars.vec.res));
486 GSUP.send(ts_GSUP_SAI_RES(g_pars.imsi, auth_tuple));
487 } else {
488 if (not g_pars.vec_keep) {
489 g_pars.vec := f_gen_auth_vec_2g();
490 }
491 auth_tuple := valueof(ts_GSUP_IE_AuthTuple2G(g_pars.vec.rand,
492 g_pars.vec.sres,
493 g_pars.vec.kc));
494 GSUP.send(ts_GSUP_SAI_RES(g_pars.imsi, auth_tuple));
Neels Hofmeyrb00c5b02021-06-23 20:05:25 +0200495 }
Harald Weltea183a5d2019-05-09 13:40:52 +0200496 } else {
Neels Hofmeyre860fc42022-10-05 01:15:54 +0200497 log("XXX ts_GSUP_SAI_ERR");
498 /* HLR knows the IMSI but has no authentication info; osmo-hlr responds with GMM_CAUSE_IMSI_UNKNOWN=2 in
499 * this case, for SAI this merely means there is no auth entry for this IMSI. */
500 GSUP.send(ts_GSUP_SAI_ERR(g_pars.imsi, 2));
Harald Weltea183a5d2019-05-09 13:40:52 +0200501 }
502 }
503}
504
Harald Welte9de84792018-01-28 01:06:35 +0100505function f_mm_auth() runs on BSC_ConnHdlr
Harald Welte148a7082018-01-26 18:56:43 +0100506{
Neels Hofmeyre860fc42022-10-05 01:15:54 +0200507 if (g_pars.net.expect_auth or g_pars.net.expect_auth_attempt) {
Harald Weltea183a5d2019-05-09 13:40:52 +0200508 as_GSUP_SAI();
Neels Hofmeyre860fc42022-10-05 01:15:54 +0200509 }
510 if (g_pars.net.expect_auth) {
Harald Weltec1f937a2019-04-21 21:19:23 +0200511 if (g_pars.use_umts_aka) {
Harald Weltec1f937a2019-04-21 21:19:23 +0200512 BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_MM_AUTH_REQ_3G(g_pars.vec.rand, g_pars.vec.autn)));
513 var OCT4 res := substr(g_pars.vec.res, 0, 4);
514 var OCT4 xres := substr(g_pars.vec.res, 4, 4);
515 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MT_MM_AUTH_RESP_3G(res, xres)));
516 } else {
Harald Weltec1f937a2019-04-21 21:19:23 +0200517 BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_MM_AUTH_REQ(g_pars.vec.rand)));
518 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MT_MM_AUTH_RESP_2G(g_pars.vec.sres)));
519 }
Harald Welte148a7082018-01-26 18:56:43 +0100520 }
Harald Welte9de84792018-01-28 01:06:35 +0100521}
Harald Welte148a7082018-01-26 18:56:43 +0100522
Oliver Smith1d118ff2019-07-03 10:57:35 +0200523function f_mm_imei() runs on BSC_ConnHdlr
524{
525 var PDU_DTAP_MT dtap_mt;
526 var GSUP_PDU gsup_msg;
Vadim Yanitskiy98bb2d52020-03-28 00:57:21 +0700527 var MobileIdentityLV mi;
Oliver Smith1d118ff2019-07-03 10:57:35 +0200528
529 if (not g_pars.net.expect_imei) {
530 return
531 }
532
533 /* MSC <-> BSC: ID req/rsp for IMEI */
534 alt {
535 [] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_MM_ID_Req(CM_ID_TYPE_IMEI))) {
536 mi := valueof(ts_MI_IMEI_LV(g_pars.imei));
537 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_MM_ID_Rsp(mi)));
538 }
539 [] BSSAP.receive(tr_PDU_DTAP_MT(?)) -> value dtap_mt {
540 setverdict(fail, "Expected ID REQ for IMEI DTAP MT message, but got: ", dtap_mt);
541 mtc.stop;
542 }
543 }
544
545 /* MSC <-> HLR: Check IMEI req/res/err */
546 alt {
547 [g_pars.net.check_imei_error] GSUP.receive(tr_GSUP_CHECK_IMEI_REQ(g_pars.imsi, g_pars.imei)) {
548 GSUP.send(ts_GSUP_CHECK_IMEI_ERR(g_pars.imsi, 96 /* Invalid Mandatory Information */));
549 }
550 [not g_pars.net.check_imei_error] GSUP.receive(tr_GSUP_CHECK_IMEI_REQ(g_pars.imsi, g_pars.imei)) {
551 GSUP.send(ts_GSUP_CHECK_IMEI_RES(g_pars.imsi, g_pars.net.check_imei_result));
552 }
553 [] GSUP.receive(?) -> value gsup_msg {
554 setverdict(fail, "Expected CHECK IMEI REQ GSUP message (with IMEI:", g_pars.imei, " and IMSI: ",
555 g_pars.imsi, "), but got: ", gsup_msg);
556 mtc.stop;
557 }
558 }
559}
560
561function f_mm_imei_early() runs on BSC_ConnHdlr
562{
563 var PDU_DTAP_MT dtap_mt;
564 var GSUP_PDU gsup_msg;
Vadim Yanitskiy98bb2d52020-03-28 00:57:21 +0700565 var MobileIdentityLV mi;
Oliver Smith1d118ff2019-07-03 10:57:35 +0200566
567 if (not g_pars.net.expect_imei_early) {
568 return
569 }
570
571 /* MSC <-> BSC: ID req/rsp for IMEISV */
572 alt {
573 [] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_MM_ID_Req(CM_ID_TYPE_IMEISV))) {
574 mi := valueof(ts_MI_IMEISV_LV(g_pars.imei));
575 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_MM_ID_Rsp(mi)));
576 }
577 [] BSSAP.receive(tr_PDU_DTAP_MT(?)) -> value dtap_mt {
578 setverdict(fail, "Expected ID REQ for IMEISV DTAP MT message, but got: ", dtap_mt);
579 mtc.stop;
580 }
581 }
582
583 /* MSC <-> HLR: Check IMEI req/res/err */
584 alt {
585 [g_pars.net.check_imei_error] GSUP.receive(tr_GSUP_CHECK_IMEI_REQ(g_pars.imsi, g_pars.imei)) {
586 GSUP.send(ts_GSUP_CHECK_IMEI_ERR(g_pars.imsi, 96 /* Invalid Mandatory Information */));
587 }
588 [not g_pars.net.check_imei_error] GSUP.receive(tr_GSUP_CHECK_IMEI_REQ(g_pars.imsi, g_pars.imei)) {
589 GSUP.send(ts_GSUP_CHECK_IMEI_RES(g_pars.imsi, g_pars.net.check_imei_result));
590 }
591 [] GSUP.receive(?) -> value gsup_msg {
592 setverdict(fail, "Expected CHECK IMEI REQ GSUP message (with IMEI:", g_pars.imei, " and IMSI: ",
593 g_pars.imsi, "), but got: ", gsup_msg);
594 mtc.stop;
595 }
596 }
597}
598
Harald Welte79f1e452020-08-18 22:55:02 +0200599function f_expect_common_id() runs on BSC_ConnHdlr
600{
601 if (g_pars.ran_is_geran) {
Pau Espin Pedrole979c402021-04-28 17:29:54 +0200602 BSSAP.receive(tr_BSSMAP_CommonId(g_pars.imsi,
603 f_tr_BSSMAP_LastUsedEUTRANPLMNId(g_pars.common_id_last_eutran_plmn)));
Harald Welte79f1e452020-08-18 22:55:02 +0200604 } else {
605 BSSAP.receive(tr_RANAP_CommonId(imsi_hex2oct(g_pars.imsi)));
606 }
607}
608
Neels Hofmeyr0d6fd3e2021-06-23 23:24:09 +0200609/* For UMTS AKA on GERAN, calculate the specific kc from the UMTS AKA ck and ik vectors. */
610function f_auth3g_kc(AuthVector vec) return OCT8 {
Eric Wild26f4a622021-05-17 15:27:05 +0200611 var integer i;
Neels Hofmeyr0d6fd3e2021-06-23 23:24:09 +0200612 var octetstring res := vec.ck[0] xor4b vec.ck[0 + 8] xor4b vec.ik[0] xor4b vec.ik[0 + 8];
Eric Wild26f4a622021-05-17 15:27:05 +0200613 for (i := 1; i < 8; i := i + 1) {
Neels Hofmeyr0d6fd3e2021-06-23 23:24:09 +0200614 var octetstring a := vec.ck[i] xor4b vec.ck[i + 8] xor4b vec.ik[i] xor4b vec.ik[i + 8];
Eric Wild26f4a622021-05-17 15:27:05 +0200615 res := res & a;
616 }
617
618 return res;
619}
620
Neels Hofmeyrf7831cb2021-06-23 20:04:58 +0200621function f_get_expected_encryption(
622 out template BSSMAP_IE_EncryptionInformation encryptionInformation,
623 out template BSSMAP_IE_ChosenEncryptionAlgorithm chosenEncryptionAlgorithm,
624 out template BSSMAP_IE_KC128 kC128,
625 out OCT1 a5_perm_alg) runs on BSC_ConnHdlr
626{
627 var OCT1 a5_ms := f_alg_mask_from_cm(g_pars.cm2, g_pars.cm3);
628 a5_perm_alg := g_pars.net.kc_support and4b a5_ms;
629
630 if (not g_pars.net.expect_ciph) {
631 encryptionInformation := *;
632 chosenEncryptionAlgorithm := *;
633 kC128 := *;
634 return;
635 }
636
Neels Hofmeyrf6eff812021-06-23 23:29:39 +0200637 var OCT8 kc;
638 if (g_pars.use_umts_aka) {
639 kc := f_auth3g_kc(g_pars.vec);
640 } else {
641 kc := g_pars.vec.kc;
642 }
643 encryptionInformation := tr_BSSMAP_IE_EncrInfo(kc, a5_perm_alg);
Neels Hofmeyrf7831cb2021-06-23 20:04:58 +0200644
645 var OCT1 chosen_alg := int2oct(f_alg_from_mask(f_best_alg_from_mask(a5_perm_alg)) + 1, 1);
646 chosenEncryptionAlgorithm := tr_BSSMAP_IE_ChosenEncryptionAlgorithm(chosen_alg);
647
648 if (g_pars.use_umts_aka and f_alg_supported_by_mask(a5_perm_alg, 4)) {
649 /* A5/4 is permitted, expecting kc128 to be present */
650 var OCT32 full_sha256 := f_calculate_HMAC_SHA256(g_pars.vec.ck & g_pars.vec.ik, '32'O, 32);
651 var OCT16 expect_kc128 := substr(full_sha256, 0, 16);
652 kC128 := tr_BSSMAP_IE_Kc128(expect_kc128);
653 } else {
654 kC128 := omit
655 }
656}
657
Eric Wild26f4a622021-05-17 15:27:05 +0200658
Vadim Yanitskiy0649d1c2021-11-28 04:33:32 +0300659private function f_mm_ciph_geran() runs on BSC_ConnHdlr
660{
661 var template BSSMAP_IE_EncryptionInformation encryptionInformation;
662 var template BSSMAP_IE_ChosenEncryptionAlgorithm chosenEncryptionAlgorithm;
663 var template BSSMAP_IE_KC128 kC128;
664 var OCT1 a5_perm_alg;
665 var PDU_BSSAP pdu;
666
Vadim Yanitskiy172bc6e2021-12-06 17:54:57 +0300667 if (not g_pars.net.expect_ciph) {
Vadim Yanitskiy0649d1c2021-11-28 04:33:32 +0300668 /* There is nothing to do */
669 return;
670 }
671
672 f_get_expected_encryption(encryptionInformation, chosenEncryptionAlgorithm, kC128, a5_perm_alg);
673 alt {
674 [] BSSAP.receive(tr_BSSMAP_CipherModeCmd2(encryptionInformation, kC128)) -> value pdu {
675 var OCT1 a5_chosen := f_best_alg_from_mask(a5_perm_alg);
676 var integer a5_nr := f_alg_from_mask(a5_chosen);
677 BSSAP.send(ts_BSSMAP_CipherModeCompl(int2oct(a5_nr+1, 1)));
678 }
679 [] BSSAP.receive(tr_BSSMAP_CipherModeCmd2) -> value pdu {
680 log("Error: Ciphering Mode Command with unexpected content. Expected: ",
681 tr_BSSMAP_CipherModeCmd2(encryptionInformation, kC128), " got: ", pdu);
682 setverdict(fail, "Ciphering Mode Command with unexpected content.");
683 mtc.stop;
684 }
685 [] BSSAP.receive(tr_BSSMAP_ClassmarkRequest) {
686 BSSAP.send(ts_BSSMAP_ClassmarkUpd(g_pars.cm2, g_pars.cm3))
687 repeat;
688 }
689 }
690 /* FIXME: Send the best available algorithm */
691}
692
693private function f_mm_ciph_utran() runs on BSC_ConnHdlr
694{
695 alt {
696 [g_pars.net.expect_ciph] BSSAP.receive(tr_RANAP_SecurityModeCmdEnc(uia_algs := ?,
697 uia_key := oct2bit(g_pars.vec.ik),
698 key_sts := ?,
699 uea_algs := ?,
700 uea_key := oct2bit(g_pars.vec.ck))) {
701 var IntegrityProtectionAlgorithm uia_chosen := 0; /*standard_UMTS_integrity_algorithm_UIA1*/
702 var EncryptionAlgorithm uea_chosen := 1; /*standard_UMTS_encryption_algorith_UEA1*/
703 BSSAP.send(ts_RANAP_SecurityModeCompleteEnc(uia_chosen, uea_chosen));
704 }
705 [g_pars.net.expect_ciph] BSSAP.receive(tr_RANAP_SecurityModeCmdEnc(?,?,?,?,?)) {
706 setverdict(fail, "Invalid SecurityModeCommand (ciphering case)");
707 mtc.stop;
708 }
709 [not g_pars.net.expect_ciph] BSSAP.receive(tr_RANAP_SecurityModeCmd(uia_algs := ?,
710 uia_key := oct2bit(g_pars.vec.ik),
711 key_sts := ?)) {
712 var IntegrityProtectionAlgorithm uia_chosen := 0; /*standard_UMTS_integrity_algorithm_UIA1;*/
713 BSSAP.send(ts_RANAP_SecurityModeComplete(uia_chosen));
714 }
715 [not g_pars.net.expect_ciph] BSSAP.receive(tr_RANAP_SecurityModeCmd(?,?,?)) {
716 setverdict(fail, "Invalid SecurityModeCommand (non-ciphering case)");
717 mtc.stop;
718 }
719 }
720}
721
Harald Welte9de84792018-01-28 01:06:35 +0100722function f_mm_common() runs on BSC_ConnHdlr
723{
724 f_mm_auth();
Eric Wild26f4a622021-05-17 15:27:05 +0200725
Vadim Yanitskiy0649d1c2021-11-28 04:33:32 +0300726 if (g_pars.ran_is_geran) {
727 f_mm_ciph_geran();
728 } else {
729 f_mm_ciph_utran();
Harald Welte148a7082018-01-26 18:56:43 +0100730 }
Vadim Yanitskiy0649d1c2021-11-28 04:33:32 +0300731
Neels Hofmeyre860fc42022-10-05 01:15:54 +0200732 if (not g_pars.net.expect_attach_success) {
733 return;
734 }
Vadim Yanitskiy0649d1c2021-11-28 04:33:32 +0300735 f_expect_common_id();
Harald Welte148a7082018-01-26 18:56:43 +0100736}
737
Philipp Maier9b690e42018-12-21 11:50:03 +0100738function f_expect_mm_info() runs on BSC_ConnHdlr {
739 if (g_pars.mm_info == true) {
740 BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_MM_Info));
741 }
742}
743
Neels Hofmeyr4e18ccc2020-06-24 19:08:17 +0200744private function f_lac_ci_vty_str(BSSMAP_IE_CellIdentifier cell_id) return charstring
745{
746 return "LAC / cell ID: "
747 & int2str(oct2int(cell_id.cellIdentification.cI_CGI.lac)) & " / "
748 & int2str(oct2int(cell_id.cellIdentification.cI_CGI.ci));
749}
750
751/* Get an IMSI's info and verify that the g_pars.cell_id is reflected in the info.
752 * Verify both the "LAC / cell ID" in the VLR and the "LAC / cell ID" in the "Connection:" part, if any.
753 * If verify_vlr == false, then only verify the "Connection:" part, and fail if there is no "Connection:"; this is
754 * useful when a conn has been established, but the subscriber has not been authenticated, so the VLR does not yet
755 * reflect the new conn's cell ID.
756 */
757function f_verify_vty_lac_ci(boolean verify_vlr := true) runs on BSC_ConnHdlr {
758 if (not g_pars.ran_is_geran) {
759 log("Skipping f_verify_vty_lac_ci(), disabled for Iu");
760 setverdict(pass);
761 return;
762 }
763 if (not g_pars.verify_cell_id) {
764 /* Skip this verification; either the TC expects no cell id to end up being accepted, or this was
765 * disabled globally to test an older osmo-msc which doesn't store the cell id properly yet. */
766 log("Skipping f_verify_vty_lac_ci()");
767 setverdict(pass);
768 return;
769 }
770
771 var charstring vty_cmd := "show subscriber imsi " & hex2str(g_pars.imsi) & " conn";
772 var charstring result := f_vty_transceive_ret(MSCVTY, vty_cmd);
773 var charstring expect_lac_ci := "LAC / cell ID: "
774 & int2str(oct2int(g_pars.cell_id.cellIdentification.cI_CGI.lac)) & " / "
775 & int2str(oct2int(g_pars.cell_id.cellIdentification.cI_CGI.ci));
776
777 var boolean vlr_matches := false;
778 var boolean connection_present := false;
779 var boolean connection_matches := false;
780
781 /* There are two occurences of LAC / cell ID: once for the VLR record, and once for the active connection. The
782 * active connection part starts with 'Connection:'. If there is no active connection, that part is omitted.
783 * So, first find out whether there is a 'Connection:' part. Then verify the LAC / cell ID above 'Connection:'
784 * and below 'Connection:', separately.
785 */
786 var integer connection_start := f_strstr(result, "Connection:");
787 connection_present := (connection_start >= 0);
788
789 var integer lac_ci_match := f_strstr(result, expect_lac_ci);
790 if (connection_present) {
791 if (lac_ci_match > connection_start) {
792 /* The first match is below 'Connection:', so the VLR part above it did not match. */
793 vlr_matches := false;
794 connection_matches := true;
795 } else if (lac_ci_match >= 0) {
796 /* The first match is above 'Connection:', so the VLR part matches. */
797 vlr_matches := true;
798
799 /* Now find a match below 'Connection:' */
800 lac_ci_match := f_strstr(result, expect_lac_ci, connection_start);
801 connection_matches := (lac_ci_match > 0);
802 }
803 } else {
804 /* There is no 'Connection:', so a match, if any, is from the VLR part. */
805 vlr_matches := (lac_ci_match >= 0);
806 }
807
808 if (verify_vlr) {
809 if (not vlr_matches) {
810 setverdict(fail, vty_cmd, " shows mismatching LAC / cell ID in the VLR part, expecting: ",
811 expect_lac_ci, " -- got: ", result);
812 return;
813 } else {
814 log("f_verify_vty_lac_ci(): VLR record matches ", expect_lac_ci);
815 setverdict(pass);
816 }
817 }
818
819 if (connection_present) {
820 if (not connection_matches) {
821 setverdict(fail, vty_cmd, " shows mismatching LAC cell ID in the 'Connection' part, expecting: ",
822 expect_lac_ci, " -- got: ", result);
823 } else {
824 log("f_verify_vty_lac_ci(): Active connection matches ", expect_lac_ci);
825 setverdict(pass);
826 }
827 }
828
829 if (not verify_vlr and not connection_present) {
Neels Hofmeyra250d7e2024-03-26 03:51:59 +0100830 /* If the Compl L3 was done by TMSI, the VLR has no IMSI until the ID Request / Response for IMSI has
831 * been answered. So if verify_vlr == false, a "missing" connection is one of the expected scenarios. */
832 setverdict(pass);
Neels Hofmeyr4e18ccc2020-06-24 19:08:17 +0200833 }
834}
835
Neels Hofmeyrc1f105a2018-03-01 20:00:19 +0100836function f_perform_lu()
Harald Weltea49e36e2018-01-21 19:29:33 +0100837runs on BSC_ConnHdlr {
838 var PDU_ML3_MS_NW l3_lu := f_build_lu_imsi(g_pars.imsi)
839 var PDU_DTAP_MT dtap_mt;
840
841 /* tell GSUP dispatcher to send this IMSI to us */
842 f_create_gsup_expect(hex2str(g_pars.imsi));
843
844 /* Send BSSAP_Conn_Req with COMPL L3 INFO to MSC */
Harald Welte9b751a62019-04-14 17:39:29 +0200845 if (g_pars.ran_is_geran) {
846 f_bssap_compl_l3(l3_lu);
847 if (g_pars.send_early_cm) {
848 BSSAP.send(ts_BSSMAP_ClassmarkUpd(g_pars.cm2, g_pars.cm3));
849 }
850 } else {
851 f_ranap_initial_ue(l3_lu);
Harald Welte8a121b32018-01-22 03:00:41 +0100852 }
Harald Welte5c2622c2018-01-21 20:45:20 +0100853
Neels Hofmeyr4e18ccc2020-06-24 19:08:17 +0200854 /* at this point the conn has been established, but the subscriber has not been authenticated, so the VLR does
855 * not yet reflect this conn's cell ID. */
856 f_verify_vty_lac_ci(verify_vlr := false);
857
Oliver Smith1d118ff2019-07-03 10:57:35 +0200858 f_mm_imei_early();
Harald Weltede371492018-01-27 23:44:41 +0100859 f_mm_common();
Stefan Sperlinga2d59c62018-12-18 16:32:44 +0100860 f_msc_lu_hlr();
Oliver Smith1d118ff2019-07-03 10:57:35 +0200861 f_mm_imei();
Neels Hofmeyre860fc42022-10-05 01:15:54 +0200862 as_accept_reject_lu(g_pars.net.expect_attach_success);
Stefan Sperlinga2d59c62018-12-18 16:32:44 +0100863 /* FIXME: there could be pending SMS or other common procedures by the MSC, let's ignore them */
Neels Hofmeyre860fc42022-10-05 01:15:54 +0200864 f_expect_clear(verify_vlr_cell_id := g_pars.net.expect_attach_success);
Harald Welte16114282018-01-24 22:41:21 +0100865
Stefan Sperlinga2d59c62018-12-18 16:32:44 +0100866 setverdict(pass);
867}
868
869function f_msc_lu_hlr() runs on BSC_ConnHdlr
870{
Neels Hofmeyre860fc42022-10-05 01:15:54 +0200871 if (not g_pars.net.expect_attach_success) {
872 return;
873 }
Harald Weltea49e36e2018-01-21 19:29:33 +0100874 /* Expect MSC to perform LU with HLR */
875 GSUP.receive(tr_GSUP_UL_REQ(g_pars.imsi));
876 GSUP.send(ts_GSUP_ISD_REQ(g_pars.imsi, g_pars.msisdn));
877 GSUP.receive(tr_GSUP_ISD_RES(g_pars.imsi));
878 GSUP.send(ts_GSUP_UL_RES(g_pars.imsi));
Stefan Sperlinga2d59c62018-12-18 16:32:44 +0100879}
880
Neels Hofmeyre860fc42022-10-05 01:15:54 +0200881altstep as_accept_reject_lu(boolean expect_accept := true) runs on BSC_ConnHdlr {
Stefan Sperlinga2d59c62018-12-18 16:32:44 +0100882 var PDU_DTAP_MT dtap_mt;
Harald Weltea49e36e2018-01-21 19:29:33 +0100883
Neels Hofmeyre860fc42022-10-05 01:15:54 +0200884 [expect_accept] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_LU_Acc)) -> value dtap_mt {
Harald Weltea49e36e2018-01-21 19:29:33 +0100885 var PDU_ML3_LocationUpdateAccept lu_acc := dtap_mt.dtap.msgs.mm.locationUpdateAccept;
Harald Weltede371492018-01-27 23:44:41 +0100886 if (g_pars.net.expect_tmsi) {
Harald Weltea49e36e2018-01-21 19:29:33 +0100887 if (not ispresent(lu_acc.mobileIdentityTLV) or
888 not ischosen(lu_acc.mobileIdentityTLV.mobileIdentityLV.mobileIdentityV.oddEvenInd_identity.tmsi_ptmsi)) {
889 setverdict(fail, "Expected TMSI but no TMSI was allocated");
Daniel Willmannafce8662018-07-06 23:11:32 +0200890 mtc.stop;
Harald Weltea49e36e2018-01-21 19:29:33 +0100891 } else {
Harald Welte256571e2018-01-24 18:47:19 +0100892 g_pars.tmsi := lu_acc.mobileIdentityTLV.mobileIdentityLV.mobileIdentityV.oddEvenInd_identity.tmsi_ptmsi.octets;
Harald Weltea49e36e2018-01-21 19:29:33 +0100893 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_TmsiRealloc_Cmpl));
894 }
895 } else {
896 if (ispresent(lu_acc.mobileIdentityTLV) and
897 ischosen(lu_acc.mobileIdentityTLV.mobileIdentityLV.mobileIdentityV.oddEvenInd_identity.tmsi_ptmsi)) {
898 setverdict(fail, "Expected no TMSI but TMSI was allocated");
Daniel Willmannafce8662018-07-06 23:11:32 +0200899 mtc.stop;
Harald Weltea49e36e2018-01-21 19:29:33 +0100900 }
901 }
Neels Hofmeyre860fc42022-10-05 01:15:54 +0200902
903 /* Wait for MM-Information (if enabled) */
904 f_expect_mm_info();
905 setverdict(pass);
906 }
907 [expect_accept] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_LU_Rej)) {
Harald Weltea49e36e2018-01-21 19:29:33 +0100908 setverdict(fail, "Expected LU ACK, but received LU REJ");
Daniel Willmannafce8662018-07-06 23:11:32 +0200909 mtc.stop;
Harald Weltea49e36e2018-01-21 19:29:33 +0100910 }
Philipp Maier9b690e42018-12-21 11:50:03 +0100911
Neels Hofmeyre860fc42022-10-05 01:15:54 +0200912 [not expect_accept] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_LU_Rej)) {
913 setverdict(pass);
914 }
915 [not expect_accept] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_LU_Acc)) -> value dtap_mt {
916 setverdict(fail, "Expected LU REJ, but received LU ACK");
917 mtc.stop;
918 }
Harald Weltea49e36e2018-01-21 19:29:33 +0100919}
920
Vadim Yanitskiy3c88c352024-04-02 21:21:51 +0700921function f_expect_lu_reject(template OCT1 cause := ?, float Tval := 5.0) runs on BSC_ConnHdlr {
Oliver Smith91bfa1c2019-07-19 15:01:15 +0200922 var PDU_DTAP_MT dtap_mt;
Vadim Yanitskiy3c88c352024-04-02 21:21:51 +0700923 timer T;
Oliver Smith91bfa1c2019-07-19 15:01:15 +0200924
Vadim Yanitskiy3c88c352024-04-02 21:21:51 +0700925 T.start(Tval);
Oliver Smith91bfa1c2019-07-19 15:01:15 +0200926 alt {
Pau Espin Pedrold3d54a92019-12-17 17:02:54 +0100927 [] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_LU_Rej(cause))) {
Oliver Smith91bfa1c2019-07-19 15:01:15 +0200928 setverdict(pass);
929 }
930 [] BSSAP.receive(tr_PDU_DTAP_MT(?)) -> value dtap_mt {
931 setverdict(fail, "Expected LU reject BSSAP message, got: ", dtap_mt);
932 }
933 [] T.timeout {
934 setverdict(fail, "Timeout waiting for LU reject");
935 }
936 }
937}
938
Harald Weltea49e36e2018-01-21 19:29:33 +0100939function f_foo() runs on BSC_ConnHdlr{
Harald Welte6811d102019-04-14 22:23:14 +0200940 /* SCCP CC handled by RAN_Emulation_CT.main() */
Harald Weltea49e36e2018-01-21 19:29:33 +0100941 /* Expect auth, if enabled */
942
943 /* TODO: ISD */
944 /* Expect encr, if enabled */
945 /* Expect encr, if enabled */
946 /* Expect ASS CMD, if chan_type != requested */
947 /* Send ASS CMPL in successful case */
948
949 /* Expect AoIP port/ip information for RTP stream */
950 /* Expect MSC-originated MGCP to our simulated MGW */
951 /* Verify Counters via CTRL */
952 /* re-configure MSC behaviour via VTY */
953}
954
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +0200955type record CrcxResponse {
956 integer resp, /* 1 = reply with OK, 0 = do not reply, -1 = reply with error */
957 HostName mgw_rtp_ip,
958 PortNumber mgw_rtp_port,
959 MgcpConnectionId mgcp_connection_id /* MGCP Connection ID BSS Side */
960}
961
Harald Welteb71901a2018-01-26 19:16:05 +0100962/* parameters related to a (MO?) voice call */
963type record CallParameters {
Harald Welteb71901a2018-01-26 19:16:05 +0100964 /* CC related parameters */
965 hexstring called_party, /* whom are we calling */
966 integer transaction_id optional, /* which TS 04.08 CC transaction ID to use */
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +0100967 boolean mo_call, /* For a MO call, the transaction_id was allocated by the MS,
968 important to set the TI flag properly */
Harald Welteb71901a2018-01-26 19:16:05 +0100969 BearerCapability_TLV bearer_cap, /* which bearer capabilities to claim */
Harald Welte0bef21e2018-02-10 09:48:23 +0100970 boolean emergency, /* is this an emergency call? */
Oliver Smith92b280c2023-04-20 13:13:23 +0200971 boolean csd, /* is this a circuit switched data call? */
Harald Welteb71901a2018-01-26 19:16:05 +0100972
973 /* MNCC related parameters */
974 uint32_t mncc_callref optional, /* call reference on the MNCC side */
975 MNCC_bearer_cap mncc_bearer_cap optional, /* MNCC-side bearer capabilities */
Pau Espin Pedrol563b3d02020-09-09 20:19:52 +0200976 HostName mncc_rtp_ip optional, /* MNCC Side RTP IP */
977 PortNumber mncc_rtp_port optional, /* MNCC Side RTP port */
Harald Welteb71901a2018-01-26 19:16:05 +0100978
979 /* RTP related parameters */
980 HostName bss_rtp_ip optional, /* BSS Side RTP IP */
981 PortNumber bss_rtp_port optional, /* BSS Side RTP Port */
982 HostName mss_rtp_ip optional, /* MSS Side RTP IP */
983 PortNumber mss_rtp_port optional, /* MSS Side RTP Port */
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +0200984 integer got_crcx_count,
985 CrcxResponse mgw_conn_1,
986 CrcxResponse mgw_conn_2,
Harald Welteb71901a2018-01-26 19:16:05 +0100987 uint7_t rtp_payload_type, /* dynamic RTP payload type */
988 charstring rtp_sdp_format, /* AMR/8000 or the like */
Philipp Maier2a98a732018-03-19 16:06:12 +0100989 boolean mgw_drop_dlcx optional, /* Provoke errors by not responding to DLCX
990 (f_mt_call and f_mt_call) */
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +0200991 boolean stop_after_cc_setup, /* Special case: stop call establish after CC Setup */
992 boolean ran_clear_when_alerting, /* Special case: send Clear upon CC Alerting */
Neels Hofmeyr8df69622019-11-02 19:16:03 +0100993 boolean expect_release, /* Special case: expect call establish to cause direct CC Rel */
Harald Welteb71901a2018-01-26 19:16:05 +0100994
Philipp Maiercd668572018-03-19 16:11:52 +0100995 MgcpCallId mgcp_call_id optional, /* MGCP Call ID; CallAgent allocated */
Harald Welteb71901a2018-01-26 19:16:05 +0100996 MgcpEndpoint mgcp_ep optional /* MGCP Endpoint, CallAgent or MGW allocated */,
Pau Espin Pedrola65697d2019-05-21 12:54:39 +0200997
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +0200998 boolean use_osmux, /* MSC is expected to use Osmux for this call */
999 integer got_osmux_count
Harald Welteb71901a2018-01-26 19:16:05 +01001000}
1001
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001002template (value) CallParameters t_CallParams(hexstring called := '12345'H, integer tid := 0) := {
Harald Welteb71901a2018-01-26 19:16:05 +01001003 called_party := called,
1004 transaction_id := tid,
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001005 mo_call := false,
Harald Welteb71901a2018-01-26 19:16:05 +01001006 bearer_cap := valueof(ts_Bcap_voice),
Harald Welte0bef21e2018-02-10 09:48:23 +01001007 emergency := false,
Oliver Smithf89620d2023-06-21 18:21:25 +02001008 csd := false,
Harald Welteb71901a2018-01-26 19:16:05 +01001009 mncc_callref := omit,
1010 mncc_bearer_cap := valueof(ts_MNCC_bcap_voice),
Pau Espin Pedrol563b3d02020-09-09 20:19:52 +02001011 mncc_rtp_ip := "42.23.11.5",
1012 mncc_rtp_port := 423,
Harald Welte4017d552018-01-26 21:40:05 +01001013 bss_rtp_ip := "9.8.7.6",
1014 bss_rtp_port := 9000,
Harald Welteb71901a2018-01-26 19:16:05 +01001015 mss_rtp_ip := omit,
1016 mss_rtp_port := omit,
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001017 got_crcx_count := 0,
1018 mgw_conn_1 := {
1019 resp := 1,
1020 mgw_rtp_ip := "1.1.1.1",
1021 mgw_rtp_port := 10000,
1022 mgcp_connection_id := '11111'H
1023 },
1024 mgw_conn_2 := {
1025 resp := 1,
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +02001026 mgw_rtp_ip := "2.2.2.2",
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001027 mgw_rtp_port := 11000,
1028 mgcp_connection_id := '22222'H
1029 },
Harald Welteb71901a2018-01-26 19:16:05 +01001030 rtp_payload_type := 98,
1031 rtp_sdp_format := "AMR/8000",
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001032 mgw_drop_dlcx := false,
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001033 stop_after_cc_setup := false,
1034 ran_clear_when_alerting := false,
Neels Hofmeyr8df69622019-11-02 19:16:03 +01001035 expect_release := false,
Harald Welteb71901a2018-01-26 19:16:05 +01001036 mgcp_call_id := omit,
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001037 mgcp_ep := "rtpbridge/1@mgw",
1038 use_osmux := false,
1039 got_osmux_count := 0
Harald Welteb71901a2018-01-26 19:16:05 +01001040};
1041
Neels Hofmeyrf797d292021-07-27 22:33:09 +02001042template CallParameters tr_CallParams := {
1043 called_party := ?,
1044 transaction_id := ?,
1045 mo_call := ?,
1046 bearer_cap := ?,
1047 emergency := ?,
Oliver Smithf89620d2023-06-21 18:21:25 +02001048 csd := ?,
Neels Hofmeyrf797d292021-07-27 22:33:09 +02001049 mncc_callref := *,
1050 mncc_bearer_cap := ?,
1051 mncc_rtp_ip := ?,
1052 mncc_rtp_port := ?,
1053 bss_rtp_ip := ?,
1054 bss_rtp_port := ?,
1055 mss_rtp_ip := *,
1056 mss_rtp_port := *,
1057 got_crcx_count := ?,
1058 mgw_conn_1 := ?,
1059 mgw_conn_2 := ?,
1060 rtp_payload_type := ?,
1061 rtp_sdp_format := ?,
1062 mgw_drop_dlcx := ?,
1063 stop_after_cc_setup := ?,
1064 ran_clear_when_alerting := ?,
1065 expect_release := ?,
1066 mgcp_call_id := *,
1067 mgcp_ep := ?,
1068 use_osmux := ?,
1069 got_osmux_count := ?
1070};
1071
Harald Welte4263c522018-12-06 11:56:27 +01001072/* Allocate a call reference and send SETUP via MNCC to MSC */
Oliver Smith97dc91f2023-05-31 13:53:21 +02001073function f_mt_call_initiate(inout CallParameters cpars)
Harald Welte33ec09b2018-02-10 15:34:46 +01001074runs on BSC_ConnHdlr {
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001075 cpars.mo_call := false;
Harald Welte4263c522018-12-06 11:56:27 +01001076 cpars.mncc_callref := f_rnd_int(2147483648);
Oliver Smithc1dd36a2023-05-31 13:52:24 +02001077
Harald Welte4263c522018-12-06 11:56:27 +01001078 MNCC.send(ts_MNCC_SETUP_req(cpars.mncc_callref, hex2str(g_pars.msisdn),
Oliver Smith8cf75ab2023-06-21 16:19:51 +02001079 hex2str(cpars.called_party), hex2str(g_pars.imsi),
1080 cpars.mncc_bearer_cap));
Harald Welte4263c522018-12-06 11:56:27 +01001081}
Harald Welte33ec09b2018-02-10 15:34:46 +01001082
Harald Welte408a7ef2019-04-21 17:08:40 +02001083private template (value) SDP_Message ts_SDP_CRCX_CN(CallParameters cpars) :=
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001084 ts_SDP(cpars.mgw_conn_2.mgw_rtp_ip, cpars.mgw_conn_2.mgw_rtp_ip,
Harald Welte408a7ef2019-04-21 17:08:40 +02001085 hex2str(cpars.mgcp_call_id), "42",
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001086 cpars.mgw_conn_2.mgw_rtp_port,
Harald Welte408a7ef2019-04-21 17:08:40 +02001087 { int2str(cpars.rtp_payload_type) },
1088 { valueof(ts_SDP_rtpmap(cpars.rtp_payload_type,
1089 cpars.rtp_sdp_format)),
1090 valueof(ts_SDP_ptime(20)) });
1091
Harald Welte4263c522018-12-06 11:56:27 +01001092/* Complete call, begin with a paging response message via BSSAP */
1093function f_mt_call_complete(inout CallParameters cpars)
1094runs on BSC_ConnHdlr {
Harald Welte33ec09b2018-02-10 15:34:46 +01001095 var MNCC_PDU mncc;
1096 var MgcpCommand mgcp_cmd;
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001097 var template MgcpResponse mgcp_resp;
1098 var MgcpOsmuxCID osmux_cid;
1099 var PDU_BSSAP bssap;
Harald Welte33ec09b2018-02-10 15:34:46 +01001100
Harald Welte6811d102019-04-14 22:23:14 +02001101 f_ran_register_imsi(g_pars.imsi, g_pars.tmsi);
Harald Welte33ec09b2018-02-10 15:34:46 +01001102
Harald Welteb9e86fa2018-04-09 18:18:31 +02001103 f_establish_fully(EST_TYPE_PAG_RESP);
Harald Welte33ec09b2018-02-10 15:34:46 +01001104
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001105 log("f_mt_call_complete 1");
1106
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001107 cpars.got_osmux_count := 0;
1108
Harald Welte33ec09b2018-02-10 15:34:46 +01001109 /* MS <- MSC: Expect CC SETUP */
1110 BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_SETUP(cpars.transaction_id, *, cpars.called_party)));
1111
1112 /* MS -> MSC: ALERTING */
1113 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_CC_ALERTING(cpars.transaction_id)));
1114 MNCC.receive(tr_MNCC_ALERT_ind(cpars.mncc_callref));
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001115 log("f_mt_call_complete 2");
Harald Welte33ec09b2018-02-10 15:34:46 +01001116
Harald Welte33ec09b2018-02-10 15:34:46 +01001117 /* Create MGCP expect */
1118 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
1119 /* Ask MSC via MNCC to create the RTP socket on the MSC/MGW side */
1120 MNCC.send(ts_MNCC_RTP_CREATE(cpars.mncc_callref));
1121
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001122 /* First MGCP CRCX */
Harald Welte33ec09b2018-02-10 15:34:46 +01001123 MGCP.receive(tr_CRCX) -> value mgcp_cmd {
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001124 log("f_mt_call_complete 3");
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001125 if (not f_handle_crcx(cpars, mgcp_cmd)) {
1126 return;
Philipp Maier4b2692d2018-03-14 16:37:48 +01001127 }
Harald Welte33ec09b2018-02-10 15:34:46 +01001128 }
Neels Hofmeyr59e0c6f2019-03-06 15:21:20 +01001129
Neels Hofmeyr59e0c6f2019-03-06 15:21:20 +01001130
Harald Welte9b751a62019-04-14 17:39:29 +02001131 if (g_pars.ran_is_geran) {
Neels Hofmeyr02d513e2022-07-25 22:07:24 +02001132 var template BSSMAP_IE_AoIP_TransportLayerAddress tla_ass1 :=
Pau Espin Pedrol833174e2020-09-03 16:46:02 +02001133 f_tr_BSSMAP_IE_AoIP_TLA(cpars.mgw_conn_1.mgw_rtp_ip, ?);
Neels Hofmeyr02d513e2022-07-25 22:07:24 +02001134 var template BSSMAP_IE_AoIP_TransportLayerAddress tla_ass2 :=
1135 f_tr_BSSMAP_IE_AoIP_TLA(cpars.mgw_conn_2.mgw_rtp_ip, ?);
Harald Welte9b751a62019-04-14 17:39:29 +02001136
1137 interleave {
1138 /* Second MGCP CRCX (this time for MSS/CN side) */
1139 [] MGCP.receive(tr_CRCX(cpars.mgcp_ep)) -> value mgcp_cmd {
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001140 log("f_mt_call_complete 4");
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001141 if (not f_handle_crcx(cpars, mgcp_cmd)) {
1142 break;
1143 }
Harald Welte9b751a62019-04-14 17:39:29 +02001144 }
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001145
1146 /* MSC acknowledges the MNCC_CREATE to the MNCC handler */
1147 [] MNCC.receive(tr_MNCC_RTP_CREATE(cpars.mncc_callref)) {
1148 log("f_mt_call_complete 5");
1149 }
1150
Harald Welte9b751a62019-04-14 17:39:29 +02001151 /* expect the MSC to trigger a BSSMAP ASSIGNMENT */
Neels Hofmeyr02d513e2022-07-25 22:07:24 +02001152 [] BSSAP.receive(tr_BSSMAP_AssignmentReq(omit, (tla_ass1, tla_ass2))) -> value bssap {
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001153 var template BSSMAP_IE_AoIP_TransportLayerAddress tla;
Harald Welte9b751a62019-04-14 17:39:29 +02001154 var BSSMAP_IE_SpeechCodec codec;
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001155 var BSSMAP_IE_Osmo_OsmuxCID osmuxCID;
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001156 log("f_mt_call_complete 6");
Oliver Smith90f31bb2023-08-23 13:31:35 +02001157
1158 if (cpars.csd and not match(bssap.pdu.bssmap.assignmentRequest.codecList.codecElements,
1159 {ts_CodecCSData})) {
1160 setverdict(fail, "MSC sent Assignment Request with unexpected codec list for CSD ",
1161 bssap.pdu.bssmap.assignmentRequest.codecList);
1162 mtc.stop;
1163 }
1164
Pau Espin Pedrol833174e2020-09-03 16:46:02 +02001165 tla := f_ts_BSSMAP_IE_AoIP_TLA(cpars.bss_rtp_ip, cpars.bss_rtp_port);
Oliver Smith90f31bb2023-08-23 13:31:35 +02001166
1167 if (cpars.csd) {
1168 codec := valueof(ts_BSSMAP_IE_SpeechCodec({ts_CodecCSData}));
1169 } else {
1170 codec := valueof(ts_BSSMAP_IE_SpeechCodec({ts_CodecFR}));
1171 }
Harald Welte9b751a62019-04-14 17:39:29 +02001172
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001173 if (cpars.use_osmux) {
1174 if (not ispresent(bssap.pdu.bssmap.assignmentRequest.osmuxCID)) {
1175 setverdict(fail, "MSC sent AssignReq without expected OsmuxCID IE");
1176 mtc.stop;
1177 }
1178 osmuxCID := valueof(ts_OsmuxCID(0));
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001179 if (not match(bssap.pdu.bssmap.assignmentRequest.osmuxCID, osmuxCID)) {
1180 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 +02001181 mtc.stop;
1182 }
1183 bssap := valueof(ts_BSSMAP_AssignmentComplete(omit, tla, codec, osmuxCID));
1184 } else {
1185 bssap := valueof(ts_BSSMAP_AssignmentComplete(omit, tla, codec));
1186 }
1187 BSSAP.send(bssap);
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001188
1189 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_CC_CONNECT(cpars.transaction_id)));
Harald Welte9b751a62019-04-14 17:39:29 +02001190 }
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001191
1192 [] MNCC.receive(tr_MNCC_SETUP_cnf(cpars.mncc_callref)) {
1193 log("f_mt_call_complete 7");
Pau Espin Pedrol563b3d02020-09-09 20:19:52 +02001194 var octetstring ip;
1195 var boolean is_ipv6 := f_addr_is_ipv6(cpars.mncc_rtp_ip);
1196 if (is_ipv6) {
1197 ip := f_inet6_addr(cpars.mncc_rtp_ip);
1198 } else {
1199 ip := f_inet_addr(cpars.mncc_rtp_ip);
1200 }
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001201 MNCC.send(ts_MNCC_RTP_CONNECT(cpars.mncc_callref,
Pau Espin Pedrol563b3d02020-09-09 20:19:52 +02001202 is_ipv6, ip,
1203 cpars.mncc_rtp_port,
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001204 /* payload type 3 = GSM FR */ 3));
1205 }
1206
1207 /* MDCX setting up the RAN side remote RTP address received from Assignment Complete */
1208 [] MGCP.receive(tr_MDCX) -> value mgcp_cmd {
1209 log("f_mt_call_complete 8");
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +02001210 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 +01001211 hex2str(cpars.mgcp_call_id), "42",
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +02001212 cpars.mgw_conn_1.mgw_rtp_port,
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001213 { int2str(cpars.rtp_payload_type) },
1214 { valueof(ts_SDP_rtpmap(cpars.rtp_payload_type,
1215 cpars.rtp_sdp_format)),
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001216 valueof(ts_SDP_ptime(20)) }));
1217 if (cpars.use_osmux) {
1218 osmux_cid := f_MgcpCmd_extract_osmux_cid(mgcp_cmd);
1219 if (osmux_cid != 0) { /* we expect MSC to use specific CID here */
1220 setverdict(fail, "MSC using unexpected CID " & int2str(osmux_cid) & " != 0");
1221 mtc.stop;
1222 }
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001223 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 +02001224 } else {
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +02001225 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 +02001226 }
1227 MGCP.send(mgcp_resp);
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001228 }
1229
1230 /* MDCX setting up the CN side remote RTP address received from MNCC CONNECT */
1231 [] MGCP.receive(tr_MDCX) -> value mgcp_cmd {
Pau Espin Pedrol956bfd22020-09-10 18:03:08 +02001232 var SDP_Message sdp;
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001233 log("f_mt_call_complete 9");
Pau Espin Pedrol956bfd22020-09-10 18:03:08 +02001234
1235 if (isvalue(mgcp_cmd.sdp)) {
1236 sdp := mgcp_cmd.sdp;
1237 if (sdp.media_list[0].media_field.ports.port_number != cpars.mncc_rtp_port) {
1238 setverdict(fail, "Wrong MDCX Connection port received, expected ", cpars.mncc_rtp_port, " and received ", sdp.media_list[0].media_field.ports.port_number)
1239 mtc.stop;
1240 }
1241 if (sdp.connection.conn_addr.addr != cpars.mncc_rtp_ip) {
1242 setverdict(fail, "Wrong MDCX Connection address received, expected ", cpars.mncc_rtp_ip, " and received ", sdp.connection.conn_addr.addr)
1243 mtc.stop;
1244 }
1245 }
1246
1247 sdp := valueof(ts_SDP(cpars.mgw_conn_2.mgw_rtp_ip, cpars.mgw_conn_2.mgw_rtp_ip,
1248 hex2str(cpars.mgcp_call_id), "42",
1249 cpars.mgw_conn_2.mgw_rtp_port,
1250 { int2str(cpars.rtp_payload_type) },
1251 { valueof(ts_SDP_rtpmap(cpars.rtp_payload_type,
1252 cpars.rtp_sdp_format)),
1253 valueof(ts_SDP_ptime(20)) }));
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001254 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 +01001255 }
1256
Neels Hofmeyr59e0c6f2019-03-06 15:21:20 +01001257 }
Harald Welte9b751a62019-04-14 17:39:29 +02001258 } else {
Harald Welte9b751a62019-04-14 17:39:29 +02001259 interleave {
1260 [] MGCP.receive(tr_CRCX(cpars.mgcp_ep)) -> value mgcp_cmd {
Neels Hofmeyr8fe8a902019-11-03 05:51:03 +01001261 log("f_mt_call_complete 4.iu");
1262 if (not f_handle_crcx(cpars, mgcp_cmd)) {
1263 break;
Harald Welte9b751a62019-04-14 17:39:29 +02001264 }
Harald Welte9b751a62019-04-14 17:39:29 +02001265 }
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001266
Neels Hofmeyr8fe8a902019-11-03 05:51:03 +01001267 /* MSC acknowledges the MNCC_CREATE to the MNCC handler */
1268 [] MNCC.receive(tr_MNCC_RTP_CREATE(cpars.mncc_callref)) {
1269 log("f_mt_call_complete 5.iu");
1270 }
1271
1272 [] BSSAP.receive(tr_RANAP_RabAssReq(?)) {
1273 log("f_mt_call_complete 6.iu");
1274 var RAB_SetupOrModifiedList l := {
1275 {
1276 {
1277 id := id_RAB_SetupOrModifiedItem,
1278 criticality := ignore,
1279 value_ := {
1280 rAB_SetupOrModifiedItem := {
1281 rAB_ID := int2bit(23, 8),
1282 transportLayerAddress := hex2bit( '350001c0a8021500000000000000000000000000'H),
1283 iuTransportAssociation := {
1284 bindingID := '040c0000'O
1285 },
1286 dl_dataVolumes := omit,
1287 iE_Extensions := omit
1288 }
1289 }
1290 }
1291 }
1292 };
1293 BSSAP.send(ts_RANAP_RabAssResp(l));
1294
1295 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_CC_CONNECT(cpars.transaction_id)));
1296 }
1297
1298 [] MNCC.receive(tr_MNCC_SETUP_cnf(cpars.mncc_callref)) {
1299 log("f_mt_call_complete 7.iu");
Pau Espin Pedrol563b3d02020-09-09 20:19:52 +02001300 var octetstring ip;
1301 var boolean is_ipv6 := f_addr_is_ipv6(cpars.mncc_rtp_ip);
1302 if (is_ipv6) {
1303 ip := f_inet6_addr(cpars.mncc_rtp_ip);
1304 } else {
1305 ip := f_inet_addr(cpars.mncc_rtp_ip);
1306 }
Neels Hofmeyr8fe8a902019-11-03 05:51:03 +01001307 MNCC.send(ts_MNCC_RTP_CONNECT(cpars.mncc_callref,
Pau Espin Pedrol563b3d02020-09-09 20:19:52 +02001308 is_ipv6, ip,
1309 cpars.mncc_rtp_port,
Neels Hofmeyr8fe8a902019-11-03 05:51:03 +01001310 /* payload type 3 = GSM FR */ 3));
1311 }
1312
1313 /* MDCX setting up the RAN side remote RTP address received from Assignment Complete */
1314 [] MGCP.receive(tr_MDCX) -> value mgcp_cmd {
1315 log("f_mt_call_complete 8.iu");
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +02001316 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 +01001317 hex2str(cpars.mgcp_call_id), "42",
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +02001318 cpars.mgw_conn_1.mgw_rtp_port,
Neels Hofmeyr8fe8a902019-11-03 05:51:03 +01001319 { int2str(cpars.rtp_payload_type) },
1320 { valueof(ts_SDP_rtpmap(cpars.rtp_payload_type,
1321 cpars.rtp_sdp_format)),
1322 valueof(ts_SDP_ptime(20)) }));
1323 if (cpars.use_osmux) {
1324 osmux_cid := f_MgcpCmd_extract_osmux_cid(mgcp_cmd);
1325 if (osmux_cid != 0) { /* we expect MSC to use specific CID here */
1326 setverdict(fail, "MSC using unexpected CID " & int2str(osmux_cid) & " != 0");
1327 mtc.stop;
1328 }
1329 mgcp_resp := ts_MDCX_ACK_osmux(mgcp_cmd.line.trans_id, cpars.mgw_conn_1.mgcp_connection_id, osmux_cid, sdp);
1330 } else {
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +02001331 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 +01001332 }
1333 MGCP.send(mgcp_resp);
1334 }
1335
1336 /* MDCX setting up the CN side remote RTP address received from MNCC CONNECT */
1337 [] MGCP.receive(tr_MDCX) -> value mgcp_cmd {
1338 log("f_mt_call_complete 9.iu");
1339 var SDP_Message sdp := valueof(ts_SDP(cpars.mgw_conn_2.mgw_rtp_ip, cpars.mgw_conn_2.mgw_rtp_ip,
1340 hex2str(cpars.mgcp_call_id), "42",
1341 cpars.mgw_conn_2.mgw_rtp_port,
1342 { int2str(cpars.rtp_payload_type) },
1343 { valueof(ts_SDP_rtpmap(cpars.rtp_payload_type,
1344 cpars.rtp_sdp_format)),
1345 valueof(ts_SDP_ptime(20)) }));
1346 MGCP.send(ts_MDCX_ACK(mgcp_cmd.line.trans_id, cpars.mgw_conn_2.mgcp_connection_id, sdp));
1347 }
1348
Harald Welte33ec09b2018-02-10 15:34:46 +01001349 }
Neels Hofmeyr59e0c6f2019-03-06 15:21:20 +01001350 }
Harald Welte33ec09b2018-02-10 15:34:46 +01001351
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001352 if (cpars.use_osmux == (cpars.got_osmux_count != 0)) {
1353 log("Osmux ok: use_osmux = ", cpars.use_osmux, " got_osmux_count = ", cpars.got_osmux_count);
1354 } else {
1355 setverdict(fail, "Osmux failure: use_osmux = ", cpars.use_osmux, " got_osmux_count = ", cpars.got_osmux_count);
1356 mtc.stop;
1357 }
1358
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001359 log("f_mt_call_complete DONE");
Harald Welte4263c522018-12-06 11:56:27 +01001360}
1361
Vadim Yanitskiy53f2be62024-04-14 19:48:39 +07001362/* expect BSSMAP/RANAP Paging for any IMSI and/or TMSI */
1363altstep as_paging_any()
1364runs on BSC_ConnHdlr {
1365 [g_pars.ran_is_geran] BSSAP.receive(tr_BSSMAP_Paging(?, *));
1366 [not g_pars.ran_is_geran] BSSAP.receive(tr_RANAP_Paging(?, ?));
1367}
1368
1369/* expect BSSMAP/RANAP Paging for registered IMSI and the given TMSI */
1370altstep as_paging_tmsi(template OCT4 tmsi := *)
1371runs on BSC_ConnHdlr {
1372 [g_pars.ran_is_geran] BSSAP.receive(tr_BSSMAP_Paging(g_pars.imsi, tmsi));
1373 [not g_pars.ran_is_geran] BSSAP.receive(tr_RANAP_Paging(cs_domain, imsi_hex2oct(g_pars.imsi)));
1374}
1375
1376/* convenience wrapper for as_paging_tmsi() using g_pars.tmsi */
1377altstep as_paging()
1378runs on BSC_ConnHdlr {
1379 [] as_paging_tmsi(g_pars.tmsi);
1380}
1381
1382/* expect BSSMAP/RANAP Paging for registered IMSI and the given TMSI
1383 * fail on BSSMAP/RANAP Paging for non-matching IMSI/TMSI
1384 * wait up to Tval seconds before declaring timeout */
Vadim Yanitskiyeb81ca42024-04-14 18:55:02 +07001385function f_expect_paging_tmsi(template OCT4 tmsi := *, float Tval := 4.0)
Harald Weltee035e3e2019-04-21 17:32:05 +02001386runs on BSC_ConnHdlr {
Vadim Yanitskiyeb81ca42024-04-14 18:55:02 +07001387 timer T;
1388
1389 T.start(Tval);
1390 alt {
Vadim Yanitskiy53f2be62024-04-14 19:48:39 +07001391 [] as_paging_tmsi(tmsi) { setverdict(pass); }
1392 [] as_paging_any() {
Vadim Yanitskiyeb81ca42024-04-14 18:55:02 +07001393 setverdict(fail, "Paging message doesn't match expectations");
1394 mtc.stop;
1395 }
1396 [] T.timeout {
1397 setverdict(fail, "Timeout waiting for paging");
1398 mtc.stop;
1399 }
Harald Welte9b751a62019-04-14 17:39:29 +02001400 }
Harald Weltee035e3e2019-04-21 17:32:05 +02001401}
1402
Vadim Yanitskiy53f2be62024-04-14 19:48:39 +07001403/* convenience wrapper for f_expect_paging_tmsi() using g_pars.tmsi */
Vadim Yanitskiyeb81ca42024-04-14 18:55:02 +07001404function f_expect_paging(float Tval := 4.0)
Neels Hofmeyr1af4b0f2024-03-26 03:33:54 +01001405runs on BSC_ConnHdlr {
Vadim Yanitskiyeb81ca42024-04-14 18:55:02 +07001406 f_expect_paging_tmsi(g_pars.tmsi, Tval);
Neels Hofmeyr1af4b0f2024-03-26 03:33:54 +01001407}
1408
Harald Welte4263c522018-12-06 11:56:27 +01001409function f_mt_call_establish(inout CallParameters cpars)
1410runs on BSC_ConnHdlr {
1411
1412 /* Initiate the call via MNCC */
Oliver Smith97dc91f2023-05-31 13:53:21 +02001413 f_mt_call_initiate(cpars);
Harald Welte4263c522018-12-06 11:56:27 +01001414
1415 /* BSC <- MSC: Expect paging. FIXME: By TMSI or not? */
Harald Welte6811d102019-04-14 22:23:14 +02001416 f_ran_register_imsi(g_pars.imsi, g_pars.tmsi);
Harald Weltee035e3e2019-04-21 17:32:05 +02001417 f_expect_paging()
Harald Welte4263c522018-12-06 11:56:27 +01001418
1419 /* Complete the call via BSSAP */
1420 f_mt_call_complete(cpars);
Harald Welte33ec09b2018-02-10 15:34:46 +01001421
Harald Welte33ec09b2018-02-10 15:34:46 +01001422 setverdict(pass);
1423}
1424
Neels Hofmeyrc47ce852023-03-06 17:16:50 +01001425function f_call_keep_open(inout CallParameters cpars, float open_time := 5.0)
1426runs on BSC_ConnHdlr {
1427 log("Hold the call for some time");
1428
1429 timer T := open_time;
1430 T.start;
1431 alt {
1432 [] MNCC.receive(tr_MNCC_DISC_ind(cpars.mncc_callref));
1433 [] MNCC.receive(tr_MNCC_REL_ind(cpars.mncc_callref));
1434 [] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_DISC(cpars.transaction_id)));
1435 [] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_RELEASE(cpars.transaction_id)));
1436 [] BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_IND);
1437 [] BSSAP.receive(tr_BSSMAP_ClearCommand);
1438 [] BSSAP.receive(tr_BSSMAP_ClearCommandCSFB);
1439 [] BSSAP.receive(tr_RANAP_IuReleaseCommand(?));
1440
1441 [] T.timeout {
1442 log("Call stayed open for ", open_time, " seconds, all is well.")
1443 setverdict(pass);
1444 return;
1445 }
1446 }
1447
1448 setverdict(fail, "An unexpected release event disconnected the active call prematurely");
1449 mtc.stop;
1450}
1451
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001452/* Reply to a received CRCX with an OK (or the reply configured in cpars), using the given parameters.
1453 * Return true when an OK reply was sent, false otherwise.
1454 * Count occurence of Osmux, include Osmux parameters in the reply if necessary. */
1455function f_handle_crcx(inout CallParameters cpars, MgcpCommand mgcp_cmd)
1456runs on BSC_ConnHdlr
1457return boolean {
1458 var CrcxResponse conn := cpars.mgw_conn_1;
1459 if (cpars.got_crcx_count > 0) {
1460 conn := cpars.mgw_conn_2;
1461 }
1462 cpars.got_crcx_count := cpars.got_crcx_count + 1;
1463
1464 var MgcpMessage mgcp_msg := {
1465 command := mgcp_cmd
1466 }
1467 var template MgcpResponse mgcp_resp;
1468 var MgcpOsmuxCID osmux_cid;
1469 var MgcpCallId call_id := f_MgcpCmd_extract_call_id(mgcp_cmd);
1470 if (ispresent(cpars.mgcp_call_id)) {
1471 if (cpars.mgcp_call_id != call_id) {
1472 setverdict(fail, "CRCX contained unexpected call id. Expected:", cpars.mgcp_call_id, " got:", call_id);
1473 mtc.stop;
1474 }
1475 } else {
1476 cpars.mgcp_call_id := call_id;
1477 }
1478
1479 /* When the endpoint contains a wildcard we keep the endpoint
1480 * identifier we have set up in cpars. Otherwise we use the
1481 * endpoint name that the call agent has supplied */
1482 if (match(mgcp_cmd.line.ep, t_MGCP_EP_wildcard) == false) {
1483 cpars.mgcp_ep := mgcp_cmd.line.ep;
1484 }
1485
1486 if (conn.resp == -1) {
1487 /* Reply with error */
1488 var MgcpResponse mgcp_rsp := {
1489 line := {
1490 code := "542",
1491 trans_id := mgcp_cmd.line.trans_id,
1492 string := "FORCED_FAIL"
1493 },
1494 sdp := omit
1495
1496 }
1497 var MgcpParameter mgcp_rsp_param := {
1498 code := "Z",
1499 val := cpars.mgcp_ep
1500 };
1501 mgcp_rsp.params[0] := mgcp_rsp_param;
1502 MGCP.send(mgcp_rsp);
1503 return false;
1504 }
1505
1506 if (conn.resp == 0) {
1507 /* Do not reply at all */
1508 return false;
1509 }
1510
1511 if (conn.resp != 1) {
1512 setverdict(fail, "Unexpected value for cpars.mgw_conn_*.resp, expect -1, 0 or 1");
1513 mtc.stop;
1514 }
1515
1516 var SDP_Message sdp := valueof(ts_SDP(conn.mgw_rtp_ip, conn.mgw_rtp_ip,
1517 hex2str(cpars.mgcp_call_id), "42",
1518 conn.mgw_rtp_port,
1519 { int2str(cpars.rtp_payload_type) },
1520 { valueof(ts_SDP_rtpmap(cpars.rtp_payload_type,
1521 cpars.rtp_sdp_format)),
1522 valueof(ts_SDP_ptime(20)) }));
1523
1524 if (f_mgcp_contains_par(mgcp_msg, "X-OSMUX")) {
1525 if (not cpars.use_osmux) {
1526 setverdict(fail, "MSC sent X-Osmux parameter in MGCP, but not expecting any Osmux");
1527 mtc.stop;
1528 }
1529 cpars.got_osmux_count := cpars.got_osmux_count + 1;
1530 /* we expect MSC to use wildcard here, i.e. osmux_cid == -1 */
1531 osmux_cid := f_MgcpCmd_extract_osmux_cid(mgcp_cmd);
1532 log("f_handle_crcx(): got Osmux CID: ", osmux_cid);
1533 if (osmux_cid != -1) {
1534 setverdict(fail, "MSC using unexpected CID " & int2str(osmux_cid) & " != -1");
1535 mtc.stop;
1536 }
1537
1538 osmux_cid := 0;
1539 mgcp_resp := ts_CRCX_ACK_osmux(mgcp_cmd.line.trans_id, conn.mgcp_connection_id, osmux_cid, sdp);
1540 } else {
1541 mgcp_resp := ts_CRCX_ACK(mgcp_cmd.line.trans_id, conn.mgcp_connection_id, sdp);
1542 }
1543
1544 f_mgcp_par_append(mgcp_resp.params, ts_MgcpParSpecEP(cpars.mgcp_ep));
1545 MGCP.send(mgcp_resp);
1546 return true;
1547}
1548
1549
1550altstep as_optional_mgcp_crcx(CallParameters cpars) runs on BSC_ConnHdlr {
1551 var MgcpCommand mgcp_cmd;
1552 [] MGCP.receive(tr_CRCX) -> value mgcp_cmd {
1553 log("as_optional_mgcp_crcx: rx CRCX");
1554 f_handle_crcx(cpars, mgcp_cmd);
1555
1556 /* Without this 'repeat', the as_optional_mgcp_crcx() exits currently waiting interleaves as soon as an
1557 * CRCX is handled. */
1558 repeat;
1559 }
1560}
1561
Andreas Eversberg1733de32023-07-27 16:27:05 +02001562altstep as_optional_mgcp_mdcx(HostName mgw_rtp_ip, PortNumber mgw_rtp_port) runs on BSC_ConnHdlr {
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001563 var MgcpCommand mgcp_cmd;
1564 [] MGCP.receive(tr_MDCX) -> value mgcp_cmd {
1565 log("as_optional_mgcp_mdcx: rx MDCX");
1566 log(mgcp_cmd);
1567 var charstring conn_id;
1568 var charstring rtp_payload_type;
1569 f_mgcp_find_param_entry(mgcp_cmd.params, "I", conn_id);
1570 rtp_payload_type := mgcp_cmd.sdp.media_list[0].media_field.fmts[0];
1571
1572 var SDP_Message sdp := valueof(ts_SDP(mgw_rtp_ip, mgw_rtp_ip,
1573 mgcp_cmd.sdp.origin.session_id, "42",
1574 mgw_rtp_port,
1575 { rtp_payload_type },
1576 { valueof(ts_SDP_ptime(20)) }));
1577 MGCP.send(ts_MDCX_ACK(mgcp_cmd.line.trans_id, str2hex(conn_id), sdp));
1578
1579 /* Without this 'repeat', currently active other interleave and alt series exit as soon as an MDCX is
1580 * handled. */
1581 repeat;
1582 }
1583}
1584
Andreas Eversberg1733de32023-07-27 16:27:05 +02001585altstep as_optional_mgcp_dlcx(CallParameters cpars) runs on BSC_ConnHdlr {
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001586 var MgcpCommand mgcp_cmd;
1587 var boolean respond_to_dlcx := not (isbound(cpars.mgw_drop_dlcx) and valueof(cpars.mgw_drop_dlcx));
1588 [] MGCP.receive(tr_DLCX(?)) -> value mgcp_cmd {
1589 log("as_optional_mgcp_dlcx: rx MGCP DLCX");
1590 if (respond_to_dlcx) {
1591 MGCP.send(ts_DLCX_ACK2(mgcp_cmd.line.trans_id));
1592 }
1593 /* Without this 'repeat', currently active other interleave and alt series exit as soon as a
1594 * DLCX is handled. */
1595 repeat;
1596 }
1597}
1598
Philipp Maier3716a5e2018-03-21 15:53:35 +01001599function f_mo_call_establish(inout CallParameters cpars)
Harald Welteb71901a2018-01-26 19:16:05 +01001600runs on BSC_ConnHdlr {
1601
Harald Welteb71901a2018-01-26 19:16:05 +01001602 var MNCC_PDU mncc;
1603 var MgcpCommand mgcp_cmd;
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001604 var template MgcpResponse mgcp_resp;
Philipp Maier2a98a732018-03-19 16:06:12 +01001605 var boolean respond_to_dlcx;
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001606 var PDU_BSSAP bssap;
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001607 var RANAP_PDU ranap;
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001608 var MgcpOsmuxCID osmux_cid;
Harald Welteb71901a2018-01-26 19:16:05 +01001609
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001610 cpars.mo_call := true;
1611
Harald Welte0bef21e2018-02-10 09:48:23 +01001612 if (cpars.emergency) {
Harald Welteb9e86fa2018-04-09 18:18:31 +02001613 f_establish_fully(EST_TYPE_EMERG_CALL);
Oliver Smith92b280c2023-04-20 13:13:23 +02001614 } else if (cpars.csd) {
1615 f_establish_fully(EST_TYPE_MO_CSD);
Harald Welte0bef21e2018-02-10 09:48:23 +01001616 } else {
Harald Welteb9e86fa2018-04-09 18:18:31 +02001617 f_establish_fully(EST_TYPE_MO_CALL);
Harald Welte0bef21e2018-02-10 09:48:23 +01001618 }
Harald Welteb71901a2018-01-26 19:16:05 +01001619
1620 /* Create MNCC and MGCP expect */
1621 f_create_mncc_expect(hex2str(cpars.called_party));
1622 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
1623
Harald Welte0bef21e2018-02-10 09:48:23 +01001624 if (cpars.emergency) {
1625 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_CC_EMERG_SETUP(cpars.transaction_id)));
1626 } else {
Oliver Smith9c417f22023-07-07 13:25:11 +02001627 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_CC_SETUP(cpars.transaction_id, cpars.called_party,
1628 cpars.bearer_cap)));
Harald Welte0bef21e2018-02-10 09:48:23 +01001629 }
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001630
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001631 if (cpars.stop_after_cc_setup) {
1632 return;
1633 }
1634
Neels Hofmeyr02d513e2022-07-25 22:07:24 +02001635 var template BSSMAP_IE_AoIP_TransportLayerAddress tla_ass1 :=
Pau Espin Pedrol833174e2020-09-03 16:46:02 +02001636 f_tr_BSSMAP_IE_AoIP_TLA(cpars.mgw_conn_1.mgw_rtp_ip, ?);
Neels Hofmeyr02d513e2022-07-25 22:07:24 +02001637 var template BSSMAP_IE_AoIP_TransportLayerAddress tla_ass2 :=
1638 f_tr_BSSMAP_IE_AoIP_TLA(cpars.mgw_conn_2.mgw_rtp_ip, ?);
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001639
1640 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 +01001641 var boolean got_mncc_setup_compl_ind := false;
1642 var boolean got_cc_connect := false;
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001643
Harald Welteb71901a2018-01-26 19:16:05 +01001644 interleave {
1645 [] MNCC.receive(tr_MNCC_SETUP_ind(?, tr_MNCC_number(hex2str(cpars.called_party)))) -> value mncc {
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001646 log("f_mo_call_establish 1: rx MNCC SETUP ind");
Harald Welteb71901a2018-01-26 19:16:05 +01001647 cpars.mncc_callref := mncc.u.signal.callref;
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001648 MNCC.send(ts_MNCC_RTP_CREATE(cpars.mncc_callref));
1649 }
1650
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001651 /* First MGCP CRCX */
Harald Welteb71901a2018-01-26 19:16:05 +01001652 [] MGCP.receive(tr_CRCX) -> value mgcp_cmd {
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001653 log("f_mo_call_establish 2: rx 1st CRCX");
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001654 if (not f_handle_crcx(cpars, mgcp_cmd)) {
1655 break;
1656 }
Philipp Maierf1e02bb2018-03-15 16:30:00 +01001657 }
1658
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001659 /* Second MGCP CRCX */
1660 [] MGCP.receive(tr_CRCX(cpars.mgcp_ep)) -> value mgcp_cmd {
1661 log("f_mo_call_establish 6: rx 2nd CRCX");
1662 if (not f_handle_crcx(cpars, mgcp_cmd)) {
1663 break;
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001664 }
Harald Welteb71901a2018-01-26 19:16:05 +01001665 }
Neels Hofmeyr59e0c6f2019-03-06 15:21:20 +01001666
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001667 [] MNCC.receive(tr_MNCC_RTP_CREATE(cpars.mncc_callref)) {
1668 log("f_mo_call_establish 3: rx RTP CREATE");
1669 /* Call Proceeding */
1670 MNCC.send(ts_MNCC_CALL_PROC_req(cpars.mncc_callref, cpars.mncc_bearer_cap));
1671 BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_CALL_PROC(cpars.transaction_id)));
Harald Welteb71901a2018-01-26 19:16:05 +01001672
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001673 /* Alerting */
1674 MNCC.send(ts_MNCC_ALERT_req(cpars.mncc_callref));
Neels Hofmeyr59e0c6f2019-03-06 15:21:20 +01001675 }
Harald Welte9b751a62019-04-14 17:39:29 +02001676
Neels Hofmeyreccaa992019-10-15 16:42:21 +02001677 //[g_pars.ran_is_geran] BSSAP.receive(tr_BSSMAP_AssignmentReq(omit, tla_ass)) -> value bssap
Neels Hofmeyrd9d835d2019-09-17 18:19:08 +02001678 [] BSSAP.receive(tr_BSSMAP_AssignmentReq(omit)) -> value bssap {
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001679 log("f_mo_call_establish 4: rx Assignment Request");
1680 var BSSMAP_IE_AoIP_TransportLayerAddress tla;
1681 var BSSMAP_IE_SpeechCodec codec;
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001682 var BSSMAP_IE_Osmo_OsmuxCID osmuxCID;
1683
Oliver Smithd6c90062023-05-08 15:20:20 +02001684 if (not ispresent(bssap.pdu.bssmap.assignmentRequest.aoIPTransportLayer)) {
1685 setverdict(fail, "MSC sent Assignment Request without AoIP Transport Layer IE");
1686 mtc.stop;
1687 }
Neels Hofmeyr02d513e2022-07-25 22:07:24 +02001688 if (not match(bssap.pdu.bssmap.assignmentRequest.aoIPTransportLayer, tla_ass1)
1689 and not match(bssap.pdu.bssmap.assignmentRequest.aoIPTransportLayer, tla_ass2)) {
1690 log("Expected one of: 1:", tla_ass1, " 2:", tla_ass2);
Neels Hofmeyrd9d835d2019-09-17 18:19:08 +02001691 log("Got:", bssap.pdu.bssmap.assignmentRequest.aoIPTransportLayer);
1692 setverdict(fail, "MSC sent Assignment Request with unexpected AoIP Transport Layer IE");
1693 mtc.stop;
1694 }
1695
Oliver Smith90f31bb2023-08-23 13:31:35 +02001696 if (cpars.csd and not match(bssap.pdu.bssmap.assignmentRequest.codecList.codecElements,
1697 {ts_CodecCSData})) {
1698 setverdict(fail, "MSC sent Assignment Request with unexpected codec list for CSD ",
1699 bssap.pdu.bssmap.assignmentRequest.codecList);
1700 mtc.stop;
1701 }
1702
Pau Espin Pedrol833174e2020-09-03 16:46:02 +02001703 tla := valueof(f_ts_BSSMAP_IE_AoIP_TLA(cpars.bss_rtp_ip, cpars.bss_rtp_port));
Oliver Smith90f31bb2023-08-23 13:31:35 +02001704
1705 if (cpars.csd) {
1706 codec := valueof(ts_BSSMAP_IE_SpeechCodec({ts_CodecCSData}));
1707 } else {
1708 codec := valueof(ts_BSSMAP_IE_SpeechCodec({ts_CodecFR}));
1709 }
1710
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001711 if (cpars.use_osmux) {
1712 if (not ispresent(bssap.pdu.bssmap.assignmentRequest.osmuxCID)) {
1713 setverdict(fail, "MSC sent AssignReq without expected OsmuxCID IE");
1714 mtc.stop;
1715 }
1716 osmuxCID := valueof(ts_OsmuxCID(0));
1717 if (cpars.use_osmux and not match(bssap.pdu.bssmap.assignmentRequest.osmuxCID, osmuxCID)) {
1718 setverdict(fail, "MSC sent AssignReq without expected OsmuxCID IE");
1719 mtc.stop;
1720 }
1721 bssap := valueof(ts_BSSMAP_AssignmentComplete(omit, tla, codec, osmuxCID));
1722 } else {
1723 bssap := valueof(ts_BSSMAP_AssignmentComplete(omit, tla, codec));
1724 }
1725 BSSAP.send(bssap);
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001726 }
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001727 [] BSSAP.receive(tr_RANAP_RabAssReq(*)) -> value ranap {
1728 log("f_mo_call_establish 4.iu: rx RANAP RAB Assignment Request");
1729 var RAB_SetupOrModifiedList l := {
1730 {
1731 {
1732 id := id_RAB_SetupOrModifiedItem,
1733 criticality := ignore,
1734 value_ := {
1735 rAB_SetupOrModifiedItem := {
1736 rAB_ID := int2bit(23, 8),
1737 transportLayerAddress := hex2bit( '350001c0a8021500000000000000000000000000'H),
1738 iuTransportAssociation := {
1739 bindingID := '040c0000'O
1740 },
1741 dl_dataVolumes := omit,
1742 iE_Extensions := omit
1743 }
1744 }
1745 }
1746 }
1747 };
1748 BSSAP.send(ts_RANAP_RabAssResp(l));
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001749 }
Harald Welte9b751a62019-04-14 17:39:29 +02001750
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001751 /* MDCX setting up the RAN side remote RTP address received from Assignment Complete */
1752 [] MGCP.receive(tr_MDCX) -> value mgcp_cmd {
1753 log("f_mo_call_establish 5: rx MDCX for the RAN side");
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +02001754 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 +01001755 hex2str(cpars.mgcp_call_id), "42",
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +02001756 cpars.mgw_conn_1.mgw_rtp_port,
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001757 { int2str(cpars.rtp_payload_type) },
1758 { valueof(ts_SDP_rtpmap(cpars.rtp_payload_type,
1759 cpars.rtp_sdp_format)),
1760 valueof(ts_SDP_ptime(20)) }));
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001761
1762 if (cpars.use_osmux) {
1763 osmux_cid := f_MgcpCmd_extract_osmux_cid(mgcp_cmd);
1764 if (osmux_cid != 0) { /* we expect MSC to use specific CID here */
1765 setverdict(fail, "MSC using unexpected CID " & int2str(osmux_cid) & " != 0");
1766 mtc.stop;
1767 }
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001768 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 +02001769 } else {
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +02001770 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 +02001771 }
1772 MGCP.send(mgcp_resp);
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001773 }
Harald Welte9b751a62019-04-14 17:39:29 +02001774
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001775 [] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_ALERTING(cpars.transaction_id))) {
1776 log("f_mo_call_establish 7: rx CC Alerting");
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001777
1778 if (cpars.ran_clear_when_alerting) {
1779 if (g_pars.ran_is_geran) {
1780 BSSAP.send(ts_BSSMAP_ClearRequest(0));
1781 } else {
1782 BSSAP.send(ts_RANAP_IuReleaseRequest(ts_RanapCause_om_intervention));
1783 }
1784 break;
1785 }
1786
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001787 cpars.mncc_callref := mncc.u.signal.callref;
1788 /* Call Proceeding */
Pau Espin Pedrol563b3d02020-09-09 20:19:52 +02001789 var octetstring ip;
1790 var boolean is_ipv6 := f_addr_is_ipv6(cpars.mncc_rtp_ip);
1791 if (is_ipv6) {
1792 ip := f_inet6_addr(cpars.mncc_rtp_ip);
1793 } else {
1794 ip := f_inet_addr(cpars.mncc_rtp_ip);
1795 }
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001796 MNCC.send(ts_MNCC_RTP_CONNECT(cpars.mncc_callref,
Pau Espin Pedrol563b3d02020-09-09 20:19:52 +02001797 is_ipv6, ip,
1798 cpars.mncc_rtp_port,
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001799 /* payload type 3 = GSM FR */ 3));
1800 MNCC.send(ts_MNCC_SETUP_rsp(cpars.mncc_callref));
1801 }
1802
1803 [] MNCC.receive(tr_MNCC_SETUP_COMPL_ind(?)) -> value mncc {
1804 log("f_mo_call_establish 8: rx MNCC SETUP COMPLETE ind");
Neels Hofmeyr8df69622019-11-02 19:16:03 +01001805 got_mncc_setup_compl_ind := true;
1806 if (not cpars.expect_release and got_cc_connect) {
1807 break;
1808 }
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001809 }
1810
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001811 [] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_CONNECT(cpars.transaction_id))) {
1812 log("f_mo_call_establish 10: rx CC CONNECT");
1813 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_CC_CONNECT_ACK(cpars.transaction_id)));
Neels Hofmeyr8df69622019-11-02 19:16:03 +01001814 got_cc_connect := true;
1815 if (not cpars.expect_release and got_mncc_setup_compl_ind) {
1816 break;
1817 }
Harald Welteb71901a2018-01-26 19:16:05 +01001818 }
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001819
1820 [] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_RELEASE(cpars.transaction_id))) {
1821 log("f_mo_call_establish 11: rx CC RELEASE");
Neels Hofmeyr8df69622019-11-02 19:16:03 +01001822 if (not cpars.expect_release) {
1823 setverdict(fail, "Got unexpected CC Release");
1824 mtc.stop;
1825 }
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001826 f_expect_clear();
1827 break;
1828 }
1829 }
1830
1831 f_sleep(0.5);
1832 deactivate(mdcx);
1833
1834 if (cpars.use_osmux == (cpars.got_osmux_count != 0)) {
1835 log("Osmux ok: use_osmux = ", cpars.use_osmux, " got_osmux_count = ", cpars.got_osmux_count);
1836 } else {
1837 setverdict(fail, "Osmux failure: use_osmux = ", cpars.use_osmux, " got_osmux_count = ", cpars.got_osmux_count);
1838 mtc.stop;
Harald Welteb71901a2018-01-26 19:16:05 +01001839 }
1840
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001841 log("f_mo_call_establish DONE");
Philipp Maier3716a5e2018-03-21 15:53:35 +01001842 setverdict(pass);
1843}
Harald Welteb71901a2018-01-26 19:16:05 +01001844
Harald Welte4c422b72019-02-17 16:27:10 +01001845function f_call_hangup(inout CallParameters cpars, boolean release_by_ms, boolean is_csfb := false)
Philipp Maier3716a5e2018-03-21 15:53:35 +01001846runs on BSC_ConnHdlr {
1847
1848 var MobileIdentityLV mi;
1849 var MNCC_PDU mncc;
1850 var MgcpCommand mgcp_cmd;
1851 var boolean respond_to_dlcx;
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001852 var boolean dlcx_contained_ci := false;
1853 var template PDU_BSSAP t_clear := tr_BSSMAP_ClearCommand;
1854
1855 if (is_csfb) {
1856 t_clear := tr_BSSMAP_ClearCommandCSFB;
1857 }
1858
Neels Hofmeyrba960a12019-11-02 19:17:38 +01001859 log("f_call_hangup 0: tx MNCC_DISC_REQ");
Harald Welteb71901a2018-01-26 19:16:05 +01001860 MNCC.send(ts_MNCC_DISC_req(cpars.mncc_callref, valueof(ts_MNCC_cause(23))));
1861 BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_DISC(cpars.transaction_id)));
1862
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001863 log("f_call_hangup 1: rx DTAP CC DISC");
1864
Philipp Maier3716a5e2018-03-21 15:53:35 +01001865 if (release_by_ms) {
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001866 var BIT1 tid_remote := '1'B;
1867 if (cpars.mo_call) {
1868 tid_remote := '0'B;
1869 }
Philipp Maier3716a5e2018-03-21 15:53:35 +01001870 /* B-side (MS) Release of call */
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001871 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 +01001872 MNCC.receive(tr_MNCC_REL_ind(cpars.mncc_callref));
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001873 log("f_call_hangup 2: rx MNCC REL ind");
Philipp Maier3716a5e2018-03-21 15:53:35 +01001874 BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_REL_COMPL(cpars.transaction_id)));
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001875 log("f_call_hangup 3: rx DTAP CC REL COMPL");
Philipp Maier3716a5e2018-03-21 15:53:35 +01001876 } else {
1877 /* A-side (PLMN) Release of call */
1878 MNCC.send(ts_MNCC_REL_req(cpars.mncc_callref, valueof(ts_MNCC_cause(42))));
1879 BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_RELEASE(cpars.transaction_id)));
Oliver Smith6f546a92023-07-10 15:03:31 +02001880 log("f_call_hangup 2.a: rx DTAP CC RELEASE");
Philipp Maier3716a5e2018-03-21 15:53:35 +01001881 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_CC_REL_COMPL(cpars.transaction_id)));
Oliver Smith6f546a92023-07-10 15:03:31 +02001882 log("f_call_hangup 3.a: rx MNCC REL cnf");
1883 MNCC.receive(tr_MNCC_REL_cnf(cpars.mncc_callref, cause := *));
Philipp Maier3716a5e2018-03-21 15:53:35 +01001884 }
Harald Welteb71901a2018-01-26 19:16:05 +01001885
Philipp Maier2a98a732018-03-19 16:06:12 +01001886 respond_to_dlcx := not (isbound(cpars.mgw_drop_dlcx) and valueof(cpars.mgw_drop_dlcx));
1887
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001888 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 +01001889 var default dlcx := activate(as_optional_mgcp_dlcx(cpars));
Harald Welte9b751a62019-04-14 17:39:29 +02001890
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001891 /* clearing of radio channel */
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001892 alt {
1893 [g_pars.ran_is_geran] BSSAP.receive(t_clear) {
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001894 log("f_call_hangup 5: rx BSSAP Clear Command");
1895 BSSAP.send(ts_BSSMAP_ClearComplete);
1896 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_IND);
1897 log("f_call_hangup 6: rx SCCP DISC");
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001898 setverdict(pass);
Philipp Maier2a98a732018-03-19 16:06:12 +01001899 }
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001900 [not g_pars.ran_is_geran] BSSAP.receive(tr_RANAP_IuReleaseCommand(?)) {
1901 log("f_call_hangup 5.iu: rx Iu Release Command");
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001902 BSSAP.send(ts_RANAP_IuReleaseComplete);
1903 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_IND);
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001904 log("f_call_hangup 6.iu: rx SCCP DISC");
1905 setverdict(pass);
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001906 }
1907 }
1908
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001909 f_sleep(1.0);
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001910 f_create_mgcp_delete_ep(cpars.mgcp_ep);
1911 log("f_call_hangup 9: done");
1912
1913 deactivate(mdcx);
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001914 deactivate(dlcx);
Philipp Maier3716a5e2018-03-21 15:53:35 +01001915}
1916
Oliver Smith98e24bc2023-07-07 12:36:59 +02001917function f_mt_call(inout CallParameters cpars, float open_time := 5.0)
Philipp Maier3716a5e2018-03-21 15:53:35 +01001918runs on BSC_ConnHdlr {
1919
1920 f_mt_call_establish(cpars);
1921
Oliver Smith98e24bc2023-07-07 12:36:59 +02001922 f_call_keep_open(cpars, open_time);
Philipp Maier3716a5e2018-03-21 15:53:35 +01001923
Neels Hofmeyrba960a12019-11-02 19:17:38 +01001924 log("Hangup");
Philipp Maier3716a5e2018-03-21 15:53:35 +01001925 f_call_hangup(cpars, true);
1926
Oliver Smith3a33e552023-07-06 11:55:12 +02001927 /* Unregister the IMSI that was registered in f_mt_call_establish */
1928 f_ran_unregister_imsi(g_pars.imsi);
1929
Philipp Maier3716a5e2018-03-21 15:53:35 +01001930 setverdict(pass);
1931}
1932
Oliver Smith98e24bc2023-07-07 12:36:59 +02001933function f_mo_call(inout CallParameters cpars, float open_time := 5.0)
Philipp Maier3716a5e2018-03-21 15:53:35 +01001934runs on BSC_ConnHdlr {
1935
1936 f_mo_call_establish(cpars);
1937
Oliver Smith98e24bc2023-07-07 12:36:59 +02001938 f_call_keep_open(cpars, open_time);
Philipp Maier3716a5e2018-03-21 15:53:35 +01001939
Neels Hofmeyrba960a12019-11-02 19:17:38 +01001940 log("Hangup");
Philipp Maier3716a5e2018-03-21 15:53:35 +01001941 f_call_hangup(cpars, false);
1942
Harald Welteb71901a2018-01-26 19:16:05 +01001943 setverdict(pass);
1944}
Harald Weltea49e36e2018-01-21 19:29:33 +01001945
Daniel Willmann8b084372018-02-04 13:35:26 +01001946function f_mo_seq_dtmf_dup(inout CallParameters cpars)
1947runs on BSC_ConnHdlr {
1948
1949 timer T := 1.0;
Daniel Willmann8b084372018-02-04 13:35:26 +01001950 var MNCC_PDU mncc;
1951 var MgcpCommand mgcp_cmd;
1952 var template PDU_ML3_MS_NW dtmf_dtap;
1953
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001954 f_mo_call_establish(cpars);
Daniel Willmann8b084372018-02-04 13:35:26 +01001955
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001956 /* Send DTMF: send the exact same DTAP message twice, the dup should be filtered out by
1957 * 3GPP TS 24.007 11.2.3.2 Message Type Octet / Duplicate Detection. */
Daniel Willmann8b084372018-02-04 13:35:26 +01001958
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001959 /* Find out the next NSD that will be used, from RAN emulation. */
1960 var N_Sd_Array last_n_sd := f_bssmap_last_n_sd();
1961 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 +01001962
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001963 /* Compose DTAP with this correct NSD */
Daniel Willmann8b084372018-02-04 13:35:26 +01001964 dtmf_dtap := ts_ML3_MO_CC_START_DTMF(cpars.transaction_id, "2");
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001965
1966 /* Here, pass skip_seq_patching == false so that the RAN Emulation NSD increments after this message. */
1967 BSSAP.send(ts_PDU_DTAP_MO(dtmf_dtap, '00'O, false));
Daniel Willmann8b084372018-02-04 13:35:26 +01001968 T.start;
1969 alt {
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001970 [] MNCC.receive(tr_MNCC_START_DTMF_ind(cpars.mncc_callref, "2")) {
1971 log("f_mo_seq_dtmf_dup() 1: got first START_DTMF_ind");
1972 }
Daniel Willmann8b084372018-02-04 13:35:26 +01001973 [] T.timeout {
1974 setverdict(fail, "Timeout waiting for START_DTMF_ind");
Daniel Willmannafce8662018-07-06 23:11:32 +02001975 mtc.stop;
Daniel Willmann8b084372018-02-04 13:35:26 +01001976 }
1977 }
1978
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001979 /* Send the exact same DTAP with above NSD, which is now incorrect (has not incremented), so that this message
1980 * will get filtered by the duplicate detection. Write NSD into DTAP and pass skip_seq_patching == true. */
1981 dtmf_dtap.msgs.cc.startDTMF.nsd := int2bit(next_n_sd, 2);
Daniel Willmann92f66272018-02-06 15:50:52 +01001982 BSSAP.send(ts_PDU_DTAP_MO(dtmf_dtap, '00'O, true));
Daniel Willmann8b084372018-02-04 13:35:26 +01001983 T.start;
1984 alt {
1985 [] MNCC.receive(tr_MNCC_START_DTMF_ind(cpars.mncc_callref, "2")) {
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001986 setverdict(fail, "f_mo_seq_dtmf_dup() 2: Received duplicate START_DTMF_ind");
Daniel Willmannafce8662018-07-06 23:11:32 +02001987 mtc.stop;
Daniel Willmann8b084372018-02-04 13:35:26 +01001988 }
1989 [] T.timeout { }
1990 }
1991
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001992 /* Here the NSD should be correct again and we see a DTMF. */
Daniel Willmann8b084372018-02-04 13:35:26 +01001993 dtmf_dtap := ts_ML3_MO_CC_START_DTMF(cpars.transaction_id, "3");
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001994 BSSAP.send(ts_PDU_DTAP_MO(dtmf_dtap, '00'O, false));
Daniel Willmann8b084372018-02-04 13:35:26 +01001995 alt {
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001996 [] MNCC.receive(tr_MNCC_START_DTMF_ind(cpars.mncc_callref, "3")) {
1997 log("f_mo_seq_dtmf_dup() 3: got second START_DTMF_ind");
1998 }
Daniel Willmann8b084372018-02-04 13:35:26 +01001999 [] T.timeout {
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02002000 setverdict(fail, "Timeout waiting for final START_DTMF_ind");
Daniel Willmannafce8662018-07-06 23:11:32 +02002001 mtc.stop;
Daniel Willmann8b084372018-02-04 13:35:26 +01002002 }
2003 }
2004
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02002005 f_call_hangup(cpars, true);
Daniel Willmann8b084372018-02-04 13:35:26 +01002006 setverdict(pass);
2007}
Harald Welte9b751a62019-04-14 17:39:29 +02002008
Vadim Yanitskiyb3e42cf2024-03-27 16:23:30 +07002009/* expect a clear command (for GERAN only!) */
Vadim Yanitskiy7093a5d2024-03-27 16:10:25 +07002010altstep as_clear_cmd_compl_disc() runs on BSC_ConnHdlr {
Neels Hofmeyr6b468a42019-03-06 15:25:14 +01002011 var PDU_BSSAP bssap;
Harald Welte5946b332018-03-18 23:32:21 +01002012 [] BSSAP.receive(tr_BSSMAP_ClearCommand) {
2013 BSSAP.send(ts_BSSMAP_ClearComplete);
2014 alt {
Harald Welte6811d102019-04-14 22:23:14 +02002015 [] BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_IND) {
Harald Welte5946b332018-03-18 23:32:21 +01002016 setverdict(pass);
2017 }
2018 [] BSSAP.receive {
2019 setverdict(fail, "Unexpected BSSMAP while waiting for SCCP Release");
Daniel Willmannafce8662018-07-06 23:11:32 +02002020 mtc.stop;
Harald Welte5946b332018-03-18 23:32:21 +01002021 }
2022 }
2023 }
Neels Hofmeyr6b468a42019-03-06 15:25:14 +01002024 [] BSSAP.receive(tr_BSSAP_BSSMAP) -> value bssap {
2025 setverdict(fail, "Unexpected BSSMAP while waiting for ClearCommand", bssap);
Daniel Willmannafce8662018-07-06 23:11:32 +02002026 mtc.stop;
Harald Welte5946b332018-03-18 23:32:21 +01002027 }
2028}
2029
Vadim Yanitskiyb3e42cf2024-03-27 16:23:30 +07002030/* expect a BSSMAP Clear Command (for GERAN) or an Iu-ReleaseCommand (for UTRAN) */
2031altstep as_expect_clear() runs on BSC_ConnHdlr {
2032 [g_pars.ran_is_geran] as_clear_cmd_compl_disc();
2033 [not g_pars.ran_is_geran] as_iu_release_compl_disc();
2034}
2035
Neels Hofmeyr4e18ccc2020-06-24 19:08:17 +02002036function f_expect_clear(float t := 5.0, boolean verify_vlr_cell_id := true) runs on BSC_ConnHdlr {
Harald Welte1ddc7162018-01-27 14:25:46 +01002037 timer T := t;
2038
2039 T.start;
2040 alt {
Vadim Yanitskiyb3e42cf2024-03-27 16:23:30 +07002041 [] as_expect_clear() {
2042 if (verify_vlr_cell_id) {
2043 /* Now the conn is gone, but the VLR reflects the cell ID */
2044 f_verify_vty_lac_ci();
2045 }
2046 }
Harald Welte1ddc7162018-01-27 14:25:46 +01002047 [] T.timeout {
Harald Welte5946b332018-03-18 23:32:21 +01002048 setverdict(fail, "Timeout waiting for ClearCommand/Release");
Daniel Willmannafce8662018-07-06 23:11:32 +02002049 mtc.stop;
Harald Welte1ddc7162018-01-27 14:25:46 +01002050 }
2051 }
2052}
2053
Andreas Eversberge5a6ef12023-07-28 10:45:20 +02002054function f_create_bssmap_exp_n_connect(integer targetPointCode) runs on BSC_ConnHdlr {
2055 BSSAP_PROC.call(RAN_register_n_connect:{targetPointCode, self}) {
2056 [] BSSAP_PROC.getreply(RAN_register_n_connect:{?, ?}) {};
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02002057 }
2058}
2059
2060function f_bssmap_last_n_sd() runs on BSC_ConnHdlr return N_Sd_Array {
2061 var N_Sd_Array last_n_sd;
2062 BSSAP_PROC.call(RAN_last_n_sd:{self, -}) {
2063 [] BSSAP_PROC.getreply(RAN_last_n_sd:{self, ?}) -> param(last_n_sd) {
2064 return last_n_sd;
2065 };
2066 }
2067}
2068
2069function f_bssmap_continue_after_n_sd(N_Sd_Array last_n_sd) runs on BSC_ConnHdlr {
2070 BSSAP_PROC.call(RAN_continue_after_n_sd:{last_n_sd, self}) {
2071 [] BSSAP_PROC.getreply(RAN_continue_after_n_sd:{last_n_sd, self});
2072 }
2073}
2074
Harald Weltef45efeb2018-04-09 18:19:24 +02002075type record SmsParametersTp {
2076 OCT1 msg_ref,
2077 TP_DA da,
2078 OCT1 pid,
2079 OCT1 dcs,
2080 integer udl,
2081 octetstring ud
2082}
2083type record SmsParametersRp {
2084 OCT1 msg_ref,
Vadim Yanitskiy437b5a62019-12-15 14:13:39 +09002085 RP_NumberingPlan_and_NumberDigits smsc_addr optional
Harald Weltef45efeb2018-04-09 18:19:24 +02002086}
2087type record SmsParameters {
2088 SmsParametersTp tp,
2089 SmsParametersRp rp,
2090 uint3_t tid,
2091 OCT1 dlci,
2092 uint7_t exp_rp_err optional
2093}
2094
2095template (value) TP_DA ts_TP_DA(BIT4 npl, BIT3 ton, hexstring addr) := {
2096 tP_DA_NoPad := {
2097 tP_LengthIndicator := 0, /* overwritten */
2098 tP_NumberingPlanID := npl,
2099 tP_TypeOfNumber := ton,
2100 tp_Spare := '0'B,
2101 tP_DAValue := addr
2102 }
2103}
2104
Vadim Yanitskiy437b5a62019-12-15 14:13:39 +09002105template RP_NumberingPlan_and_NumberDigits t_RP_Addr(template hexstring addr,
2106 template BIT4 npi := '0001'B,
2107 template BIT3 ton := '001'B,
2108 template BIT1 ext := '1'B) := {
2109 rP_NumberingPlanIdentification := npi,
2110 rP_TypeOfNumber := ton,
2111 rP_Ext := ext,
2112 rP_NumberDigits := addr
2113}
2114
Harald Weltef45efeb2018-04-09 18:19:24 +02002115template (value) SmsParameters t_SmsPars(hexstring tp_daddr := '12345'H) := {
2116 tp := {
2117 msg_ref := '23'O,
2118 da := ts_TP_DA('0000'B, '000'B, tp_daddr),
2119 pid := '00'O,
2120 dcs := '00'O,
2121 udl := 0,
2122 ud := ''O
2123 },
2124 rp := {
2125 msg_ref := '42'O,
Vadim Yanitskiy437b5a62019-12-15 14:13:39 +09002126 /* We don't really need to have both SM-RP-DA/OA here, because only one IE
Vadim Yanitskiyafb15a82020-01-05 14:04:53 +01002127 * is included in MO/MT SMS, and in the most cases it's the SMSC address.
2128 * NOTE: this address is currently hard-coded by OsmoMSC. */
2129 smsc_addr := t_RP_Addr('447785016005'H)
Harald Weltef45efeb2018-04-09 18:19:24 +02002130 },
2131 tid := 0,
2132 dlci := '03'O,
2133 exp_rp_err := omit
2134}
2135
2136private altstep as_other_sms() runs on BSC_ConnHdlr {
2137 [] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_SMS(?, ?, ?), ?)) {
2138 setverdict(fail, "Unexpected SMS related PDU from MSC");
Daniel Willmannafce8662018-07-06 23:11:32 +02002139 mtc.stop;
Harald Weltef45efeb2018-04-09 18:19:24 +02002140 }
2141}
2142
Vadim Yanitskiy9cc019a2018-11-15 02:06:07 +07002143/* Submit a MO RP-SMMA over an already existing DTAP connection */
2144function f_mo_smma(inout SmsParameters spars)
2145runs on BSC_ConnHdlr {
2146 var template (value) RPDU_MS_SGSN rp_mo;
2147 var template (value) PDU_ML3_MS_NW l3_mo;
2148
2149 var default d := activate(as_other_sms());
2150
2151 /* just in case this is routed to SMPP.. */
2152 f_create_smpp_expect(hex2str(spars.tp.da.tP_DA_NoPad.tP_DAValue));
2153
2154 rp_mo := ts_RP_SMMA_MO(spars.rp.msg_ref);
2155 l3_mo := ts_ML3_MO_SMS(spars.tid, c_TIF_ORIG, ts_CP_DATA_MO(rp_mo));
2156 BSSAP.send(ts_PDU_DTAP_MO(l3_mo, spars.dlci, true));
2157 /* receive CP-ACK for CP-DATA above */
2158 BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_SMS(spars.tid, c_TIF_REPL, tr_CP_ACK_MT), spars.dlci));
2159
2160 deactivate(d);
2161 setverdict(pass);
2162}
2163
Vadim Yanitskiyd4cc1502018-11-12 01:46:21 +07002164/* Submit a MO-SMS over an already existing DTAP connection */
2165function f_mo_sms_submit(inout SmsParameters spars)
Harald Weltef45efeb2018-04-09 18:19:24 +02002166runs on BSC_ConnHdlr {
2167 var template (value) TPDU_RP_DATA_MS_SGSN tp_mo;
2168 var template (value) RPDU_MS_SGSN rp_mo;
2169 var template (value) PDU_ML3_MS_NW l3_mo;
2170
Harald Weltef45efeb2018-04-09 18:19:24 +02002171 var default d := activate(as_other_sms());
2172
Harald Weltef640a012018-04-14 17:49:21 +02002173 /* just in case this is routed to SMPP.. */
2174 f_create_smpp_expect(hex2str(spars.tp.da.tP_DA_NoPad.tP_DAValue));
2175
Harald Weltef45efeb2018-04-09 18:19:24 +02002176 tp_mo := ts_SMS_SUBMIT(spars.tp.msg_ref, spars.tp.da, spars.tp.pid, spars.tp.dcs,
2177 spars.tp.udl, spars.tp.ud);
Vadim Yanitskiy437b5a62019-12-15 14:13:39 +09002178 rp_mo := ts_RP_DATA_MO(spars.rp.msg_ref, omit, spars.rp.smsc_addr, tp_mo);
Harald Weltef45efeb2018-04-09 18:19:24 +02002179 l3_mo := ts_ML3_MO_SMS(spars.tid, c_TIF_ORIG, ts_CP_DATA_MO(rp_mo));
2180 BSSAP.send(ts_PDU_DTAP_MO(l3_mo, spars.dlci, true));
2181 /* receive CP-ACK for CP-DATA above */
2182 BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_SMS(spars.tid, c_TIF_REPL, tr_CP_ACK_MT), spars.dlci));
2183
Vadim Yanitskiyd4cc1502018-11-12 01:46:21 +07002184 deactivate(d);
2185 setverdict(pass);
2186}
2187
2188/* Wait RP-ACK for MO-SMS on an already existing DTAP connection */
2189function f_mo_sms_wait_rp_ack(inout SmsParameters spars)
2190runs on BSC_ConnHdlr {
2191 var template (value) PDU_ML3_MS_NW l3_mo;
2192
2193 var template TPDU_RP_DATA_SGSN_MS tp_mt;
2194 var template RPDU_SGSN_MS rp_mt;
2195 var template PDU_ML3_NW_MS l3_mt;
2196
2197 var default d := activate(as_other_sms());
2198
2199 /* just in case this is routed to SMPP.. */
2200 f_create_smpp_expect(hex2str(spars.tp.da.tP_DA_NoPad.tP_DAValue));
2201
Harald Weltef45efeb2018-04-09 18:19:24 +02002202 if (ispresent(spars.exp_rp_err)) {
2203 /* expect an RP-ERROR message from MSC with given cause */
2204 rp_mt := tr_RP_ERROR_MT(spars.rp.msg_ref, spars.exp_rp_err);
2205 l3_mt := tr_ML3_MT_SMS(spars.tid, c_TIF_REPL, tr_CP_DATA_MT(rp_mt));
2206 BSSAP.receive(tr_PDU_DTAP_MT(l3_mt, spars.dlci));
2207 /* send CP-ACK for CP-DATA just received */
2208 l3_mo := ts_ML3_MO_SMS(spars.tid, c_TIF_ORIG, ts_CP_ACK_MO);
2209 BSSAP.send(ts_PDU_DTAP_MO(l3_mo, spars.dlci, true));
2210 } else {
2211 /* expect RP-ACK for RP-DATA */
2212 rp_mt := tr_RP_ACK_MT(spars.rp.msg_ref);
2213 l3_mt := tr_ML3_MT_SMS(spars.tid, c_TIF_REPL, tr_CP_DATA_MT(rp_mt));
2214 BSSAP.receive(tr_PDU_DTAP_MT(l3_mt, spars.dlci));
2215 /* send CP-ACO for CP-DATA just received */
2216 l3_mo := ts_ML3_MO_SMS(spars.tid, c_TIF_ORIG, ts_CP_ACK_MO);
2217 BSSAP.send(ts_PDU_DTAP_MO(l3_mo, spars.dlci, true));
2218 }
Vadim Yanitskiyd4cc1502018-11-12 01:46:21 +07002219
Harald Weltef45efeb2018-04-09 18:19:24 +02002220 deactivate(d);
2221 setverdict(pass);
2222}
2223
Vadim Yanitskiyd4cc1502018-11-12 01:46:21 +07002224/* Submit a MO-SMS, and wait for RP-ACK on an existing
2225 * (and authenticated, ...) DTAP connection */
2226function f_mo_sms(inout SmsParameters spars)
2227runs on BSC_ConnHdlr {
2228 f_mo_sms_submit(spars);
2229 f_mo_sms_wait_rp_ack(spars);
2230}
2231
Neels Hofmeyrb58d9742019-11-27 18:44:54 +01002232function f_mt_sms_deliver_pdu(in SmsParameters spars)
2233runs on BSC_ConnHdlr
2234return template PDU_DTAP_MT {
2235 var template TPDU_RP_DATA_SGSN_MS tp_mt := tr_SMS_DELIVER(?, spars.tp.ud, spars.tp.pid, spars.tp.dcs, ?);
2236 var template RPDU_SGSN_MS rp_mt := tr_RP_DATA_MT(?, spars.rp.smsc_addr, omit, tp_mt);
2237 var template PDU_ML3_NW_MS l3_mt := tr_ML3_MT_SMS(?, c_TIF_ORIG, tr_CP_DATA_MT(rp_mt));
2238 return tr_PDU_DTAP_MT(l3_mt, spars.dlci);
2239}
2240
Vadim Yanitskiy2159acb2018-11-24 02:50:29 +07002241/* Wait for MT SMS on an already existing DTAP connection */
2242function f_mt_sms_expect(inout SmsParameters spars)
Harald Weltef45efeb2018-04-09 18:19:24 +02002243runs on BSC_ConnHdlr {
Harald Weltef45efeb2018-04-09 18:19:24 +02002244 var template (value) PDU_ML3_MS_NW l3_mo;
Harald Weltef45efeb2018-04-09 18:19:24 +02002245 var PDU_DTAP_MT dtap_mt;
2246
2247 var default d := activate(as_other_sms());
2248
2249 /* Expect CP-DATA(RP-DATA(SMS-DELIVER)) */
Neels Hofmeyrb58d9742019-11-27 18:44:54 +01002250 BSSAP.receive(f_mt_sms_deliver_pdu(spars)) -> value dtap_mt;
Vadim Yanitskiy2159acb2018-11-24 02:50:29 +07002251
Harald Weltef45efeb2018-04-09 18:19:24 +02002252 /* Extract relevant identifiers */
2253 spars.tid := bit2int(dtap_mt.dtap.tiOrSkip.transactionId.tio);
2254 spars.rp.msg_ref := dtap_mt.dtap.msgs.sms.cP_DATA.cP_User_Data.cP_RPDU.rP_DATA_SGSN_MS.rP_MessageReference;
2255
2256 /* send CP-ACK for CP-DATA just received */
2257 l3_mo := ts_ML3_MO_SMS(spars.tid, c_TIF_REPL, ts_CP_ACK_MO);
2258 BSSAP.send(ts_PDU_DTAP_MO(l3_mo, spars.dlci, true));
2259
Vadim Yanitskiy2159acb2018-11-24 02:50:29 +07002260 deactivate(d);
2261 setverdict(pass);
2262}
2263
2264/* Send RP-ACK for MT-SMS over an already existing DTAP connection */
2265function f_mt_sms_send_rp_ack(inout SmsParameters spars)
2266runs on BSC_ConnHdlr {
2267 var template (value) RPDU_MS_SGSN rp_mo;
2268 var template (value) PDU_ML3_MS_NW l3_mo;
2269 var template PDU_ML3_NW_MS l3_mt;
2270
2271 var default d := activate(as_other_sms());
2272
Harald Weltef45efeb2018-04-09 18:19:24 +02002273 /* send RP-ACK for RP-DATA */
2274 rp_mo := ts_RP_ACK_MO(spars.rp.msg_ref);
2275 l3_mo := ts_ML3_MO_SMS(spars.tid, c_TIF_REPL, ts_CP_DATA_MO(rp_mo));
2276 BSSAP.send(ts_PDU_DTAP_MO(l3_mo, spars.dlci, true));
2277
2278 /* expect CP-ACK for CP-DATA(RP-ACK) just sent */
Harald Weltee008eea2018-04-14 21:05:48 +02002279 l3_mt := tr_ML3_MT_SMS(spars.tid, c_TIF_ORIG, tr_CP_ACK_MT);
Harald Weltef45efeb2018-04-09 18:19:24 +02002280 BSSAP.receive(tr_PDU_DTAP_MT(l3_mt, spars.dlci));
2281
2282 deactivate(d);
2283 setverdict(pass);
2284}
2285
Vadim Yanitskiy56318522018-11-24 03:40:47 +07002286/* Send RP-ERROR for MT-SMS over an already existing DTAP connection */
2287function f_mt_sms_send_rp_error(inout SmsParameters spars, uint7_t cause)
2288runs on BSC_ConnHdlr {
2289 var template (value) RPDU_MS_SGSN rp_mo;
2290 var template (value) PDU_ML3_MS_NW l3_mo;
2291 var template PDU_ML3_NW_MS l3_mt;
2292
2293 var default d := activate(as_other_sms());
2294
2295 /* send RP-ACK for RP-DATA */
2296 rp_mo := ts_RP_ERROR_MO(spars.rp.msg_ref, cause);
2297 l3_mo := ts_ML3_MO_SMS(spars.tid, c_TIF_REPL, ts_CP_DATA_MO(rp_mo));
2298 BSSAP.send(ts_PDU_DTAP_MO(l3_mo, spars.dlci, true));
2299
2300 /* expect CP-ACK for CP-DATA(RP-ERROR) just sent */
2301 l3_mt := tr_ML3_MT_SMS(spars.tid, c_TIF_ORIG, tr_CP_ACK_MT);
2302 BSSAP.receive(tr_PDU_DTAP_MT(l3_mt, spars.dlci));
2303
2304 deactivate(d);
2305 setverdict(pass);
2306}
2307
Vadim Yanitskiy2159acb2018-11-24 02:50:29 +07002308/* Wait for a MT-SMS and send RP-ACK over an already existing
2309 * (and authenticated, ...) DTAP connection */
2310function f_mt_sms(inout SmsParameters spars)
2311runs on BSC_ConnHdlr {
2312 f_mt_sms_expect(spars);
2313 f_mt_sms_send_rp_ack(spars);
2314}
Harald Weltea49e36e2018-01-21 19:29:33 +01002315
2316
Harald Weltea49e36e2018-01-21 19:29:33 +01002317}