blob: 5714fbf0deca5960d47025217b16381ba89e8d00 [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) {
830 setverdict(fail, "f_verify_vty_lac_ci(verify_vlr := false) called, which requires an active connection, but there is no 'Connection:' part to verify in ", result);
831 }
832}
833
Neels Hofmeyrc1f105a2018-03-01 20:00:19 +0100834function f_perform_lu()
Harald Weltea49e36e2018-01-21 19:29:33 +0100835runs on BSC_ConnHdlr {
836 var PDU_ML3_MS_NW l3_lu := f_build_lu_imsi(g_pars.imsi)
837 var PDU_DTAP_MT dtap_mt;
838
839 /* tell GSUP dispatcher to send this IMSI to us */
840 f_create_gsup_expect(hex2str(g_pars.imsi));
841
842 /* Send BSSAP_Conn_Req with COMPL L3 INFO to MSC */
Harald Welte9b751a62019-04-14 17:39:29 +0200843 if (g_pars.ran_is_geran) {
844 f_bssap_compl_l3(l3_lu);
845 if (g_pars.send_early_cm) {
846 BSSAP.send(ts_BSSMAP_ClassmarkUpd(g_pars.cm2, g_pars.cm3));
847 }
848 } else {
849 f_ranap_initial_ue(l3_lu);
Harald Welte8a121b32018-01-22 03:00:41 +0100850 }
Harald Welte5c2622c2018-01-21 20:45:20 +0100851
Neels Hofmeyr4e18ccc2020-06-24 19:08:17 +0200852 /* at this point the conn has been established, but the subscriber has not been authenticated, so the VLR does
853 * not yet reflect this conn's cell ID. */
854 f_verify_vty_lac_ci(verify_vlr := false);
855
Oliver Smith1d118ff2019-07-03 10:57:35 +0200856 f_mm_imei_early();
Harald Weltede371492018-01-27 23:44:41 +0100857 f_mm_common();
Stefan Sperlinga2d59c62018-12-18 16:32:44 +0100858 f_msc_lu_hlr();
Oliver Smith1d118ff2019-07-03 10:57:35 +0200859 f_mm_imei();
Neels Hofmeyre860fc42022-10-05 01:15:54 +0200860 as_accept_reject_lu(g_pars.net.expect_attach_success);
Stefan Sperlinga2d59c62018-12-18 16:32:44 +0100861 /* FIXME: there could be pending SMS or other common procedures by the MSC, let's ignore them */
Neels Hofmeyre860fc42022-10-05 01:15:54 +0200862 f_expect_clear(verify_vlr_cell_id := g_pars.net.expect_attach_success);
Harald Welte16114282018-01-24 22:41:21 +0100863
Stefan Sperlinga2d59c62018-12-18 16:32:44 +0100864 setverdict(pass);
865}
866
867function f_msc_lu_hlr() runs on BSC_ConnHdlr
868{
Neels Hofmeyre860fc42022-10-05 01:15:54 +0200869 if (not g_pars.net.expect_attach_success) {
870 return;
871 }
Harald Weltea49e36e2018-01-21 19:29:33 +0100872 /* Expect MSC to perform LU with HLR */
873 GSUP.receive(tr_GSUP_UL_REQ(g_pars.imsi));
874 GSUP.send(ts_GSUP_ISD_REQ(g_pars.imsi, g_pars.msisdn));
875 GSUP.receive(tr_GSUP_ISD_RES(g_pars.imsi));
876 GSUP.send(ts_GSUP_UL_RES(g_pars.imsi));
Stefan Sperlinga2d59c62018-12-18 16:32:44 +0100877}
878
Neels Hofmeyre860fc42022-10-05 01:15:54 +0200879altstep as_accept_reject_lu(boolean expect_accept := true) runs on BSC_ConnHdlr {
Stefan Sperlinga2d59c62018-12-18 16:32:44 +0100880 var PDU_DTAP_MT dtap_mt;
Harald Weltea49e36e2018-01-21 19:29:33 +0100881
Neels Hofmeyre860fc42022-10-05 01:15:54 +0200882 [expect_accept] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_LU_Acc)) -> value dtap_mt {
Harald Weltea49e36e2018-01-21 19:29:33 +0100883 var PDU_ML3_LocationUpdateAccept lu_acc := dtap_mt.dtap.msgs.mm.locationUpdateAccept;
Harald Weltede371492018-01-27 23:44:41 +0100884 if (g_pars.net.expect_tmsi) {
Harald Weltea49e36e2018-01-21 19:29:33 +0100885 if (not ispresent(lu_acc.mobileIdentityTLV) or
886 not ischosen(lu_acc.mobileIdentityTLV.mobileIdentityLV.mobileIdentityV.oddEvenInd_identity.tmsi_ptmsi)) {
887 setverdict(fail, "Expected TMSI but no TMSI was allocated");
Daniel Willmannafce8662018-07-06 23:11:32 +0200888 mtc.stop;
Harald Weltea49e36e2018-01-21 19:29:33 +0100889 } else {
Harald Welte256571e2018-01-24 18:47:19 +0100890 g_pars.tmsi := lu_acc.mobileIdentityTLV.mobileIdentityLV.mobileIdentityV.oddEvenInd_identity.tmsi_ptmsi.octets;
Harald Weltea49e36e2018-01-21 19:29:33 +0100891 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_TmsiRealloc_Cmpl));
892 }
893 } else {
894 if (ispresent(lu_acc.mobileIdentityTLV) and
895 ischosen(lu_acc.mobileIdentityTLV.mobileIdentityLV.mobileIdentityV.oddEvenInd_identity.tmsi_ptmsi)) {
896 setverdict(fail, "Expected no TMSI but TMSI was allocated");
Daniel Willmannafce8662018-07-06 23:11:32 +0200897 mtc.stop;
Harald Weltea49e36e2018-01-21 19:29:33 +0100898 }
899 }
Neels Hofmeyre860fc42022-10-05 01:15:54 +0200900
901 /* Wait for MM-Information (if enabled) */
902 f_expect_mm_info();
903 setverdict(pass);
904 }
905 [expect_accept] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_LU_Rej)) {
Harald Weltea49e36e2018-01-21 19:29:33 +0100906 setverdict(fail, "Expected LU ACK, but received LU REJ");
Daniel Willmannafce8662018-07-06 23:11:32 +0200907 mtc.stop;
Harald Weltea49e36e2018-01-21 19:29:33 +0100908 }
Philipp Maier9b690e42018-12-21 11:50:03 +0100909
Neels Hofmeyre860fc42022-10-05 01:15:54 +0200910 [not expect_accept] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_LU_Rej)) {
911 setverdict(pass);
912 }
913 [not expect_accept] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_LU_Acc)) -> value dtap_mt {
914 setverdict(fail, "Expected LU REJ, but received LU ACK");
915 mtc.stop;
916 }
Harald Weltea49e36e2018-01-21 19:29:33 +0100917}
918
Vadim Yanitskiy3c88c352024-04-02 21:21:51 +0700919function f_expect_lu_reject(template OCT1 cause := ?, float Tval := 5.0) runs on BSC_ConnHdlr {
Oliver Smith91bfa1c2019-07-19 15:01:15 +0200920 var PDU_DTAP_MT dtap_mt;
Vadim Yanitskiy3c88c352024-04-02 21:21:51 +0700921 timer T;
Oliver Smith91bfa1c2019-07-19 15:01:15 +0200922
Vadim Yanitskiy3c88c352024-04-02 21:21:51 +0700923 T.start(Tval);
Oliver Smith91bfa1c2019-07-19 15:01:15 +0200924 alt {
Pau Espin Pedrold3d54a92019-12-17 17:02:54 +0100925 [] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_LU_Rej(cause))) {
Oliver Smith91bfa1c2019-07-19 15:01:15 +0200926 setverdict(pass);
927 }
928 [] BSSAP.receive(tr_PDU_DTAP_MT(?)) -> value dtap_mt {
929 setverdict(fail, "Expected LU reject BSSAP message, got: ", dtap_mt);
930 }
931 [] T.timeout {
932 setverdict(fail, "Timeout waiting for LU reject");
933 }
934 }
935}
936
Harald Weltea49e36e2018-01-21 19:29:33 +0100937function f_foo() runs on BSC_ConnHdlr{
Harald Welte6811d102019-04-14 22:23:14 +0200938 /* SCCP CC handled by RAN_Emulation_CT.main() */
Harald Weltea49e36e2018-01-21 19:29:33 +0100939 /* Expect auth, if enabled */
940
941 /* TODO: ISD */
942 /* Expect encr, if enabled */
943 /* Expect encr, if enabled */
944 /* Expect ASS CMD, if chan_type != requested */
945 /* Send ASS CMPL in successful case */
946
947 /* Expect AoIP port/ip information for RTP stream */
948 /* Expect MSC-originated MGCP to our simulated MGW */
949 /* Verify Counters via CTRL */
950 /* re-configure MSC behaviour via VTY */
951}
952
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +0200953type record CrcxResponse {
954 integer resp, /* 1 = reply with OK, 0 = do not reply, -1 = reply with error */
955 HostName mgw_rtp_ip,
956 PortNumber mgw_rtp_port,
957 MgcpConnectionId mgcp_connection_id /* MGCP Connection ID BSS Side */
958}
959
Harald Welteb71901a2018-01-26 19:16:05 +0100960/* parameters related to a (MO?) voice call */
961type record CallParameters {
Harald Welteb71901a2018-01-26 19:16:05 +0100962 /* CC related parameters */
963 hexstring called_party, /* whom are we calling */
964 integer transaction_id optional, /* which TS 04.08 CC transaction ID to use */
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +0100965 boolean mo_call, /* For a MO call, the transaction_id was allocated by the MS,
966 important to set the TI flag properly */
Harald Welteb71901a2018-01-26 19:16:05 +0100967 BearerCapability_TLV bearer_cap, /* which bearer capabilities to claim */
Harald Welte0bef21e2018-02-10 09:48:23 +0100968 boolean emergency, /* is this an emergency call? */
Oliver Smith92b280c2023-04-20 13:13:23 +0200969 boolean csd, /* is this a circuit switched data call? */
Harald Welteb71901a2018-01-26 19:16:05 +0100970
971 /* MNCC related parameters */
972 uint32_t mncc_callref optional, /* call reference on the MNCC side */
973 MNCC_bearer_cap mncc_bearer_cap optional, /* MNCC-side bearer capabilities */
Pau Espin Pedrol563b3d02020-09-09 20:19:52 +0200974 HostName mncc_rtp_ip optional, /* MNCC Side RTP IP */
975 PortNumber mncc_rtp_port optional, /* MNCC Side RTP port */
Harald Welteb71901a2018-01-26 19:16:05 +0100976
977 /* RTP related parameters */
978 HostName bss_rtp_ip optional, /* BSS Side RTP IP */
979 PortNumber bss_rtp_port optional, /* BSS Side RTP Port */
980 HostName mss_rtp_ip optional, /* MSS Side RTP IP */
981 PortNumber mss_rtp_port optional, /* MSS Side RTP Port */
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +0200982 integer got_crcx_count,
983 CrcxResponse mgw_conn_1,
984 CrcxResponse mgw_conn_2,
Harald Welteb71901a2018-01-26 19:16:05 +0100985 uint7_t rtp_payload_type, /* dynamic RTP payload type */
986 charstring rtp_sdp_format, /* AMR/8000 or the like */
Philipp Maier2a98a732018-03-19 16:06:12 +0100987 boolean mgw_drop_dlcx optional, /* Provoke errors by not responding to DLCX
988 (f_mt_call and f_mt_call) */
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +0200989 boolean stop_after_cc_setup, /* Special case: stop call establish after CC Setup */
990 boolean ran_clear_when_alerting, /* Special case: send Clear upon CC Alerting */
Neels Hofmeyr8df69622019-11-02 19:16:03 +0100991 boolean expect_release, /* Special case: expect call establish to cause direct CC Rel */
Harald Welteb71901a2018-01-26 19:16:05 +0100992
Philipp Maiercd668572018-03-19 16:11:52 +0100993 MgcpCallId mgcp_call_id optional, /* MGCP Call ID; CallAgent allocated */
Harald Welteb71901a2018-01-26 19:16:05 +0100994 MgcpEndpoint mgcp_ep optional /* MGCP Endpoint, CallAgent or MGW allocated */,
Pau Espin Pedrola65697d2019-05-21 12:54:39 +0200995
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +0200996 boolean use_osmux, /* MSC is expected to use Osmux for this call */
997 integer got_osmux_count
Harald Welteb71901a2018-01-26 19:16:05 +0100998}
999
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001000template (value) CallParameters t_CallParams(hexstring called := '12345'H, integer tid := 0) := {
Harald Welteb71901a2018-01-26 19:16:05 +01001001 called_party := called,
1002 transaction_id := tid,
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001003 mo_call := false,
Harald Welteb71901a2018-01-26 19:16:05 +01001004 bearer_cap := valueof(ts_Bcap_voice),
Harald Welte0bef21e2018-02-10 09:48:23 +01001005 emergency := false,
Oliver Smithf89620d2023-06-21 18:21:25 +02001006 csd := false,
Harald Welteb71901a2018-01-26 19:16:05 +01001007 mncc_callref := omit,
1008 mncc_bearer_cap := valueof(ts_MNCC_bcap_voice),
Pau Espin Pedrol563b3d02020-09-09 20:19:52 +02001009 mncc_rtp_ip := "42.23.11.5",
1010 mncc_rtp_port := 423,
Harald Welte4017d552018-01-26 21:40:05 +01001011 bss_rtp_ip := "9.8.7.6",
1012 bss_rtp_port := 9000,
Harald Welteb71901a2018-01-26 19:16:05 +01001013 mss_rtp_ip := omit,
1014 mss_rtp_port := omit,
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001015 got_crcx_count := 0,
1016 mgw_conn_1 := {
1017 resp := 1,
1018 mgw_rtp_ip := "1.1.1.1",
1019 mgw_rtp_port := 10000,
1020 mgcp_connection_id := '11111'H
1021 },
1022 mgw_conn_2 := {
1023 resp := 1,
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +02001024 mgw_rtp_ip := "2.2.2.2",
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001025 mgw_rtp_port := 11000,
1026 mgcp_connection_id := '22222'H
1027 },
Harald Welteb71901a2018-01-26 19:16:05 +01001028 rtp_payload_type := 98,
1029 rtp_sdp_format := "AMR/8000",
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001030 mgw_drop_dlcx := false,
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001031 stop_after_cc_setup := false,
1032 ran_clear_when_alerting := false,
Neels Hofmeyr8df69622019-11-02 19:16:03 +01001033 expect_release := false,
Harald Welteb71901a2018-01-26 19:16:05 +01001034 mgcp_call_id := omit,
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001035 mgcp_ep := "rtpbridge/1@mgw",
1036 use_osmux := false,
1037 got_osmux_count := 0
Harald Welteb71901a2018-01-26 19:16:05 +01001038};
1039
Neels Hofmeyrf797d292021-07-27 22:33:09 +02001040template CallParameters tr_CallParams := {
1041 called_party := ?,
1042 transaction_id := ?,
1043 mo_call := ?,
1044 bearer_cap := ?,
1045 emergency := ?,
Oliver Smithf89620d2023-06-21 18:21:25 +02001046 csd := ?,
Neels Hofmeyrf797d292021-07-27 22:33:09 +02001047 mncc_callref := *,
1048 mncc_bearer_cap := ?,
1049 mncc_rtp_ip := ?,
1050 mncc_rtp_port := ?,
1051 bss_rtp_ip := ?,
1052 bss_rtp_port := ?,
1053 mss_rtp_ip := *,
1054 mss_rtp_port := *,
1055 got_crcx_count := ?,
1056 mgw_conn_1 := ?,
1057 mgw_conn_2 := ?,
1058 rtp_payload_type := ?,
1059 rtp_sdp_format := ?,
1060 mgw_drop_dlcx := ?,
1061 stop_after_cc_setup := ?,
1062 ran_clear_when_alerting := ?,
1063 expect_release := ?,
1064 mgcp_call_id := *,
1065 mgcp_ep := ?,
1066 use_osmux := ?,
1067 got_osmux_count := ?
1068};
1069
Harald Welte4263c522018-12-06 11:56:27 +01001070/* Allocate a call reference and send SETUP via MNCC to MSC */
Oliver Smith97dc91f2023-05-31 13:53:21 +02001071function f_mt_call_initiate(inout CallParameters cpars)
Harald Welte33ec09b2018-02-10 15:34:46 +01001072runs on BSC_ConnHdlr {
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001073 cpars.mo_call := false;
Harald Welte4263c522018-12-06 11:56:27 +01001074 cpars.mncc_callref := f_rnd_int(2147483648);
Oliver Smithc1dd36a2023-05-31 13:52:24 +02001075
Harald Welte4263c522018-12-06 11:56:27 +01001076 MNCC.send(ts_MNCC_SETUP_req(cpars.mncc_callref, hex2str(g_pars.msisdn),
Oliver Smith8cf75ab2023-06-21 16:19:51 +02001077 hex2str(cpars.called_party), hex2str(g_pars.imsi),
1078 cpars.mncc_bearer_cap));
Harald Welte4263c522018-12-06 11:56:27 +01001079}
Harald Welte33ec09b2018-02-10 15:34:46 +01001080
Harald Welte408a7ef2019-04-21 17:08:40 +02001081private template (value) SDP_Message ts_SDP_CRCX_CN(CallParameters cpars) :=
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001082 ts_SDP(cpars.mgw_conn_2.mgw_rtp_ip, cpars.mgw_conn_2.mgw_rtp_ip,
Harald Welte408a7ef2019-04-21 17:08:40 +02001083 hex2str(cpars.mgcp_call_id), "42",
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001084 cpars.mgw_conn_2.mgw_rtp_port,
Harald Welte408a7ef2019-04-21 17:08:40 +02001085 { int2str(cpars.rtp_payload_type) },
1086 { valueof(ts_SDP_rtpmap(cpars.rtp_payload_type,
1087 cpars.rtp_sdp_format)),
1088 valueof(ts_SDP_ptime(20)) });
1089
Harald Welte4263c522018-12-06 11:56:27 +01001090/* Complete call, begin with a paging response message via BSSAP */
1091function f_mt_call_complete(inout CallParameters cpars)
1092runs on BSC_ConnHdlr {
Harald Welte33ec09b2018-02-10 15:34:46 +01001093 var MNCC_PDU mncc;
1094 var MgcpCommand mgcp_cmd;
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001095 var template MgcpResponse mgcp_resp;
1096 var MgcpOsmuxCID osmux_cid;
1097 var PDU_BSSAP bssap;
Harald Welte33ec09b2018-02-10 15:34:46 +01001098
Harald Welte6811d102019-04-14 22:23:14 +02001099 f_ran_register_imsi(g_pars.imsi, g_pars.tmsi);
Harald Welte33ec09b2018-02-10 15:34:46 +01001100
Harald Welteb9e86fa2018-04-09 18:18:31 +02001101 f_establish_fully(EST_TYPE_PAG_RESP);
Harald Welte33ec09b2018-02-10 15:34:46 +01001102
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001103 log("f_mt_call_complete 1");
1104
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001105 cpars.got_osmux_count := 0;
1106
Harald Welte33ec09b2018-02-10 15:34:46 +01001107 /* MS <- MSC: Expect CC SETUP */
1108 BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_SETUP(cpars.transaction_id, *, cpars.called_party)));
1109
1110 /* MS -> MSC: ALERTING */
1111 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_CC_ALERTING(cpars.transaction_id)));
1112 MNCC.receive(tr_MNCC_ALERT_ind(cpars.mncc_callref));
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001113 log("f_mt_call_complete 2");
Harald Welte33ec09b2018-02-10 15:34:46 +01001114
Harald Welte33ec09b2018-02-10 15:34:46 +01001115 /* Create MGCP expect */
1116 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
1117 /* Ask MSC via MNCC to create the RTP socket on the MSC/MGW side */
1118 MNCC.send(ts_MNCC_RTP_CREATE(cpars.mncc_callref));
1119
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001120 /* First MGCP CRCX */
Harald Welte33ec09b2018-02-10 15:34:46 +01001121 MGCP.receive(tr_CRCX) -> value mgcp_cmd {
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001122 log("f_mt_call_complete 3");
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001123 if (not f_handle_crcx(cpars, mgcp_cmd)) {
1124 return;
Philipp Maier4b2692d2018-03-14 16:37:48 +01001125 }
Harald Welte33ec09b2018-02-10 15:34:46 +01001126 }
Neels Hofmeyr59e0c6f2019-03-06 15:21:20 +01001127
Neels Hofmeyr59e0c6f2019-03-06 15:21:20 +01001128
Harald Welte9b751a62019-04-14 17:39:29 +02001129 if (g_pars.ran_is_geran) {
Neels Hofmeyr02d513e2022-07-25 22:07:24 +02001130 var template BSSMAP_IE_AoIP_TransportLayerAddress tla_ass1 :=
Pau Espin Pedrol833174e2020-09-03 16:46:02 +02001131 f_tr_BSSMAP_IE_AoIP_TLA(cpars.mgw_conn_1.mgw_rtp_ip, ?);
Neels Hofmeyr02d513e2022-07-25 22:07:24 +02001132 var template BSSMAP_IE_AoIP_TransportLayerAddress tla_ass2 :=
1133 f_tr_BSSMAP_IE_AoIP_TLA(cpars.mgw_conn_2.mgw_rtp_ip, ?);
Harald Welte9b751a62019-04-14 17:39:29 +02001134
1135 interleave {
1136 /* Second MGCP CRCX (this time for MSS/CN side) */
1137 [] MGCP.receive(tr_CRCX(cpars.mgcp_ep)) -> value mgcp_cmd {
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001138 log("f_mt_call_complete 4");
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001139 if (not f_handle_crcx(cpars, mgcp_cmd)) {
1140 break;
1141 }
Harald Welte9b751a62019-04-14 17:39:29 +02001142 }
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001143
1144 /* MSC acknowledges the MNCC_CREATE to the MNCC handler */
1145 [] MNCC.receive(tr_MNCC_RTP_CREATE(cpars.mncc_callref)) {
1146 log("f_mt_call_complete 5");
1147 }
1148
Harald Welte9b751a62019-04-14 17:39:29 +02001149 /* expect the MSC to trigger a BSSMAP ASSIGNMENT */
Neels Hofmeyr02d513e2022-07-25 22:07:24 +02001150 [] BSSAP.receive(tr_BSSMAP_AssignmentReq(omit, (tla_ass1, tla_ass2))) -> value bssap {
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001151 var template BSSMAP_IE_AoIP_TransportLayerAddress tla;
Harald Welte9b751a62019-04-14 17:39:29 +02001152 var BSSMAP_IE_SpeechCodec codec;
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001153 var BSSMAP_IE_Osmo_OsmuxCID osmuxCID;
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001154 log("f_mt_call_complete 6");
Oliver Smith90f31bb2023-08-23 13:31:35 +02001155
1156 if (cpars.csd and not match(bssap.pdu.bssmap.assignmentRequest.codecList.codecElements,
1157 {ts_CodecCSData})) {
1158 setverdict(fail, "MSC sent Assignment Request with unexpected codec list for CSD ",
1159 bssap.pdu.bssmap.assignmentRequest.codecList);
1160 mtc.stop;
1161 }
1162
Pau Espin Pedrol833174e2020-09-03 16:46:02 +02001163 tla := f_ts_BSSMAP_IE_AoIP_TLA(cpars.bss_rtp_ip, cpars.bss_rtp_port);
Oliver Smith90f31bb2023-08-23 13:31:35 +02001164
1165 if (cpars.csd) {
1166 codec := valueof(ts_BSSMAP_IE_SpeechCodec({ts_CodecCSData}));
1167 } else {
1168 codec := valueof(ts_BSSMAP_IE_SpeechCodec({ts_CodecFR}));
1169 }
Harald Welte9b751a62019-04-14 17:39:29 +02001170
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001171 if (cpars.use_osmux) {
1172 if (not ispresent(bssap.pdu.bssmap.assignmentRequest.osmuxCID)) {
1173 setverdict(fail, "MSC sent AssignReq without expected OsmuxCID IE");
1174 mtc.stop;
1175 }
1176 osmuxCID := valueof(ts_OsmuxCID(0));
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001177 if (not match(bssap.pdu.bssmap.assignmentRequest.osmuxCID, osmuxCID)) {
1178 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 +02001179 mtc.stop;
1180 }
1181 bssap := valueof(ts_BSSMAP_AssignmentComplete(omit, tla, codec, osmuxCID));
1182 } else {
1183 bssap := valueof(ts_BSSMAP_AssignmentComplete(omit, tla, codec));
1184 }
1185 BSSAP.send(bssap);
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001186
1187 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_CC_CONNECT(cpars.transaction_id)));
Harald Welte9b751a62019-04-14 17:39:29 +02001188 }
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001189
1190 [] MNCC.receive(tr_MNCC_SETUP_cnf(cpars.mncc_callref)) {
1191 log("f_mt_call_complete 7");
Pau Espin Pedrol563b3d02020-09-09 20:19:52 +02001192 var octetstring ip;
1193 var boolean is_ipv6 := f_addr_is_ipv6(cpars.mncc_rtp_ip);
1194 if (is_ipv6) {
1195 ip := f_inet6_addr(cpars.mncc_rtp_ip);
1196 } else {
1197 ip := f_inet_addr(cpars.mncc_rtp_ip);
1198 }
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001199 MNCC.send(ts_MNCC_RTP_CONNECT(cpars.mncc_callref,
Pau Espin Pedrol563b3d02020-09-09 20:19:52 +02001200 is_ipv6, ip,
1201 cpars.mncc_rtp_port,
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001202 /* payload type 3 = GSM FR */ 3));
1203 }
1204
1205 /* MDCX setting up the RAN side remote RTP address received from Assignment Complete */
1206 [] MGCP.receive(tr_MDCX) -> value mgcp_cmd {
1207 log("f_mt_call_complete 8");
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +02001208 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 +01001209 hex2str(cpars.mgcp_call_id), "42",
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +02001210 cpars.mgw_conn_1.mgw_rtp_port,
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001211 { int2str(cpars.rtp_payload_type) },
1212 { valueof(ts_SDP_rtpmap(cpars.rtp_payload_type,
1213 cpars.rtp_sdp_format)),
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001214 valueof(ts_SDP_ptime(20)) }));
1215 if (cpars.use_osmux) {
1216 osmux_cid := f_MgcpCmd_extract_osmux_cid(mgcp_cmd);
1217 if (osmux_cid != 0) { /* we expect MSC to use specific CID here */
1218 setverdict(fail, "MSC using unexpected CID " & int2str(osmux_cid) & " != 0");
1219 mtc.stop;
1220 }
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001221 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 +02001222 } else {
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +02001223 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 +02001224 }
1225 MGCP.send(mgcp_resp);
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001226 }
1227
1228 /* MDCX setting up the CN side remote RTP address received from MNCC CONNECT */
1229 [] MGCP.receive(tr_MDCX) -> value mgcp_cmd {
Pau Espin Pedrol956bfd22020-09-10 18:03:08 +02001230 var SDP_Message sdp;
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001231 log("f_mt_call_complete 9");
Pau Espin Pedrol956bfd22020-09-10 18:03:08 +02001232
1233 if (isvalue(mgcp_cmd.sdp)) {
1234 sdp := mgcp_cmd.sdp;
1235 if (sdp.media_list[0].media_field.ports.port_number != cpars.mncc_rtp_port) {
1236 setverdict(fail, "Wrong MDCX Connection port received, expected ", cpars.mncc_rtp_port, " and received ", sdp.media_list[0].media_field.ports.port_number)
1237 mtc.stop;
1238 }
1239 if (sdp.connection.conn_addr.addr != cpars.mncc_rtp_ip) {
1240 setverdict(fail, "Wrong MDCX Connection address received, expected ", cpars.mncc_rtp_ip, " and received ", sdp.connection.conn_addr.addr)
1241 mtc.stop;
1242 }
1243 }
1244
1245 sdp := valueof(ts_SDP(cpars.mgw_conn_2.mgw_rtp_ip, cpars.mgw_conn_2.mgw_rtp_ip,
1246 hex2str(cpars.mgcp_call_id), "42",
1247 cpars.mgw_conn_2.mgw_rtp_port,
1248 { int2str(cpars.rtp_payload_type) },
1249 { valueof(ts_SDP_rtpmap(cpars.rtp_payload_type,
1250 cpars.rtp_sdp_format)),
1251 valueof(ts_SDP_ptime(20)) }));
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001252 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 +01001253 }
1254
Neels Hofmeyr59e0c6f2019-03-06 15:21:20 +01001255 }
Harald Welte9b751a62019-04-14 17:39:29 +02001256 } else {
Harald Welte9b751a62019-04-14 17:39:29 +02001257 interleave {
1258 [] MGCP.receive(tr_CRCX(cpars.mgcp_ep)) -> value mgcp_cmd {
Neels Hofmeyr8fe8a902019-11-03 05:51:03 +01001259 log("f_mt_call_complete 4.iu");
1260 if (not f_handle_crcx(cpars, mgcp_cmd)) {
1261 break;
Harald Welte9b751a62019-04-14 17:39:29 +02001262 }
Harald Welte9b751a62019-04-14 17:39:29 +02001263 }
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001264
Neels Hofmeyr8fe8a902019-11-03 05:51:03 +01001265 /* MSC acknowledges the MNCC_CREATE to the MNCC handler */
1266 [] MNCC.receive(tr_MNCC_RTP_CREATE(cpars.mncc_callref)) {
1267 log("f_mt_call_complete 5.iu");
1268 }
1269
1270 [] BSSAP.receive(tr_RANAP_RabAssReq(?)) {
1271 log("f_mt_call_complete 6.iu");
1272 var RAB_SetupOrModifiedList l := {
1273 {
1274 {
1275 id := id_RAB_SetupOrModifiedItem,
1276 criticality := ignore,
1277 value_ := {
1278 rAB_SetupOrModifiedItem := {
1279 rAB_ID := int2bit(23, 8),
1280 transportLayerAddress := hex2bit( '350001c0a8021500000000000000000000000000'H),
1281 iuTransportAssociation := {
1282 bindingID := '040c0000'O
1283 },
1284 dl_dataVolumes := omit,
1285 iE_Extensions := omit
1286 }
1287 }
1288 }
1289 }
1290 };
1291 BSSAP.send(ts_RANAP_RabAssResp(l));
1292
1293 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_CC_CONNECT(cpars.transaction_id)));
1294 }
1295
1296 [] MNCC.receive(tr_MNCC_SETUP_cnf(cpars.mncc_callref)) {
1297 log("f_mt_call_complete 7.iu");
Pau Espin Pedrol563b3d02020-09-09 20:19:52 +02001298 var octetstring ip;
1299 var boolean is_ipv6 := f_addr_is_ipv6(cpars.mncc_rtp_ip);
1300 if (is_ipv6) {
1301 ip := f_inet6_addr(cpars.mncc_rtp_ip);
1302 } else {
1303 ip := f_inet_addr(cpars.mncc_rtp_ip);
1304 }
Neels Hofmeyr8fe8a902019-11-03 05:51:03 +01001305 MNCC.send(ts_MNCC_RTP_CONNECT(cpars.mncc_callref,
Pau Espin Pedrol563b3d02020-09-09 20:19:52 +02001306 is_ipv6, ip,
1307 cpars.mncc_rtp_port,
Neels Hofmeyr8fe8a902019-11-03 05:51:03 +01001308 /* payload type 3 = GSM FR */ 3));
1309 }
1310
1311 /* MDCX setting up the RAN side remote RTP address received from Assignment Complete */
1312 [] MGCP.receive(tr_MDCX) -> value mgcp_cmd {
1313 log("f_mt_call_complete 8.iu");
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +02001314 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 +01001315 hex2str(cpars.mgcp_call_id), "42",
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +02001316 cpars.mgw_conn_1.mgw_rtp_port,
Neels Hofmeyr8fe8a902019-11-03 05:51:03 +01001317 { int2str(cpars.rtp_payload_type) },
1318 { valueof(ts_SDP_rtpmap(cpars.rtp_payload_type,
1319 cpars.rtp_sdp_format)),
1320 valueof(ts_SDP_ptime(20)) }));
1321 if (cpars.use_osmux) {
1322 osmux_cid := f_MgcpCmd_extract_osmux_cid(mgcp_cmd);
1323 if (osmux_cid != 0) { /* we expect MSC to use specific CID here */
1324 setverdict(fail, "MSC using unexpected CID " & int2str(osmux_cid) & " != 0");
1325 mtc.stop;
1326 }
1327 mgcp_resp := ts_MDCX_ACK_osmux(mgcp_cmd.line.trans_id, cpars.mgw_conn_1.mgcp_connection_id, osmux_cid, sdp);
1328 } else {
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +02001329 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 +01001330 }
1331 MGCP.send(mgcp_resp);
1332 }
1333
1334 /* MDCX setting up the CN side remote RTP address received from MNCC CONNECT */
1335 [] MGCP.receive(tr_MDCX) -> value mgcp_cmd {
1336 log("f_mt_call_complete 9.iu");
1337 var SDP_Message sdp := valueof(ts_SDP(cpars.mgw_conn_2.mgw_rtp_ip, cpars.mgw_conn_2.mgw_rtp_ip,
1338 hex2str(cpars.mgcp_call_id), "42",
1339 cpars.mgw_conn_2.mgw_rtp_port,
1340 { int2str(cpars.rtp_payload_type) },
1341 { valueof(ts_SDP_rtpmap(cpars.rtp_payload_type,
1342 cpars.rtp_sdp_format)),
1343 valueof(ts_SDP_ptime(20)) }));
1344 MGCP.send(ts_MDCX_ACK(mgcp_cmd.line.trans_id, cpars.mgw_conn_2.mgcp_connection_id, sdp));
1345 }
1346
Harald Welte33ec09b2018-02-10 15:34:46 +01001347 }
Neels Hofmeyr59e0c6f2019-03-06 15:21:20 +01001348 }
Harald Welte33ec09b2018-02-10 15:34:46 +01001349
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001350 if (cpars.use_osmux == (cpars.got_osmux_count != 0)) {
1351 log("Osmux ok: use_osmux = ", cpars.use_osmux, " got_osmux_count = ", cpars.got_osmux_count);
1352 } else {
1353 setverdict(fail, "Osmux failure: use_osmux = ", cpars.use_osmux, " got_osmux_count = ", cpars.got_osmux_count);
1354 mtc.stop;
1355 }
1356
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001357 log("f_mt_call_complete DONE");
Harald Welte4263c522018-12-06 11:56:27 +01001358}
1359
Vadim Yanitskiyeb81ca42024-04-14 18:55:02 +07001360function f_expect_paging_tmsi(template OCT4 tmsi := *, float Tval := 4.0)
Harald Weltee035e3e2019-04-21 17:32:05 +02001361runs on BSC_ConnHdlr {
Vadim Yanitskiyeb81ca42024-04-14 18:55:02 +07001362 timer T;
1363
1364 T.start(Tval);
1365 alt {
1366 [g_pars.ran_is_geran] BSSAP.receive(tr_BSSMAP_Paging(g_pars.imsi, tmsi));
1367 [g_pars.ran_is_geran] BSSAP.receive(tr_BSSMAP_Paging(?, *)) {
1368 setverdict(fail, "Paging message doesn't match expectations");
1369 mtc.stop;
1370 }
1371 [not g_pars.ran_is_geran] BSSAP.receive(tr_RANAP_Paging(cs_domain, imsi_hex2oct(g_pars.imsi)));
1372 [not g_pars.ran_is_geran] BSSAP.receive(tr_RANAP_Paging(?, ?)) {
1373 setverdict(fail, "Paging message doesn't match expectations");
1374 mtc.stop;
1375 }
1376 [] T.timeout {
1377 setverdict(fail, "Timeout waiting for paging");
1378 mtc.stop;
1379 }
Harald Welte9b751a62019-04-14 17:39:29 +02001380 }
Harald Weltee035e3e2019-04-21 17:32:05 +02001381}
1382
Vadim Yanitskiyeb81ca42024-04-14 18:55:02 +07001383function f_expect_paging(float Tval := 4.0)
Neels Hofmeyr1af4b0f2024-03-26 03:33:54 +01001384runs on BSC_ConnHdlr {
Vadim Yanitskiyeb81ca42024-04-14 18:55:02 +07001385 f_expect_paging_tmsi(g_pars.tmsi, Tval);
Neels Hofmeyr1af4b0f2024-03-26 03:33:54 +01001386}
1387
Harald Welte4263c522018-12-06 11:56:27 +01001388function f_mt_call_establish(inout CallParameters cpars)
1389runs on BSC_ConnHdlr {
1390
1391 /* Initiate the call via MNCC */
Oliver Smith97dc91f2023-05-31 13:53:21 +02001392 f_mt_call_initiate(cpars);
Harald Welte4263c522018-12-06 11:56:27 +01001393
1394 /* BSC <- MSC: Expect paging. FIXME: By TMSI or not? */
Harald Welte6811d102019-04-14 22:23:14 +02001395 f_ran_register_imsi(g_pars.imsi, g_pars.tmsi);
Harald Weltee035e3e2019-04-21 17:32:05 +02001396 f_expect_paging()
Harald Welte4263c522018-12-06 11:56:27 +01001397
1398 /* Complete the call via BSSAP */
1399 f_mt_call_complete(cpars);
Harald Welte33ec09b2018-02-10 15:34:46 +01001400
Harald Welte33ec09b2018-02-10 15:34:46 +01001401 setverdict(pass);
1402}
1403
Neels Hofmeyrc47ce852023-03-06 17:16:50 +01001404function f_call_keep_open(inout CallParameters cpars, float open_time := 5.0)
1405runs on BSC_ConnHdlr {
1406 log("Hold the call for some time");
1407
1408 timer T := open_time;
1409 T.start;
1410 alt {
1411 [] MNCC.receive(tr_MNCC_DISC_ind(cpars.mncc_callref));
1412 [] MNCC.receive(tr_MNCC_REL_ind(cpars.mncc_callref));
1413 [] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_DISC(cpars.transaction_id)));
1414 [] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_RELEASE(cpars.transaction_id)));
1415 [] BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_IND);
1416 [] BSSAP.receive(tr_BSSMAP_ClearCommand);
1417 [] BSSAP.receive(tr_BSSMAP_ClearCommandCSFB);
1418 [] BSSAP.receive(tr_RANAP_IuReleaseCommand(?));
1419
1420 [] T.timeout {
1421 log("Call stayed open for ", open_time, " seconds, all is well.")
1422 setverdict(pass);
1423 return;
1424 }
1425 }
1426
1427 setverdict(fail, "An unexpected release event disconnected the active call prematurely");
1428 mtc.stop;
1429}
1430
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001431/* Reply to a received CRCX with an OK (or the reply configured in cpars), using the given parameters.
1432 * Return true when an OK reply was sent, false otherwise.
1433 * Count occurence of Osmux, include Osmux parameters in the reply if necessary. */
1434function f_handle_crcx(inout CallParameters cpars, MgcpCommand mgcp_cmd)
1435runs on BSC_ConnHdlr
1436return boolean {
1437 var CrcxResponse conn := cpars.mgw_conn_1;
1438 if (cpars.got_crcx_count > 0) {
1439 conn := cpars.mgw_conn_2;
1440 }
1441 cpars.got_crcx_count := cpars.got_crcx_count + 1;
1442
1443 var MgcpMessage mgcp_msg := {
1444 command := mgcp_cmd
1445 }
1446 var template MgcpResponse mgcp_resp;
1447 var MgcpOsmuxCID osmux_cid;
1448 var MgcpCallId call_id := f_MgcpCmd_extract_call_id(mgcp_cmd);
1449 if (ispresent(cpars.mgcp_call_id)) {
1450 if (cpars.mgcp_call_id != call_id) {
1451 setverdict(fail, "CRCX contained unexpected call id. Expected:", cpars.mgcp_call_id, " got:", call_id);
1452 mtc.stop;
1453 }
1454 } else {
1455 cpars.mgcp_call_id := call_id;
1456 }
1457
1458 /* When the endpoint contains a wildcard we keep the endpoint
1459 * identifier we have set up in cpars. Otherwise we use the
1460 * endpoint name that the call agent has supplied */
1461 if (match(mgcp_cmd.line.ep, t_MGCP_EP_wildcard) == false) {
1462 cpars.mgcp_ep := mgcp_cmd.line.ep;
1463 }
1464
1465 if (conn.resp == -1) {
1466 /* Reply with error */
1467 var MgcpResponse mgcp_rsp := {
1468 line := {
1469 code := "542",
1470 trans_id := mgcp_cmd.line.trans_id,
1471 string := "FORCED_FAIL"
1472 },
1473 sdp := omit
1474
1475 }
1476 var MgcpParameter mgcp_rsp_param := {
1477 code := "Z",
1478 val := cpars.mgcp_ep
1479 };
1480 mgcp_rsp.params[0] := mgcp_rsp_param;
1481 MGCP.send(mgcp_rsp);
1482 return false;
1483 }
1484
1485 if (conn.resp == 0) {
1486 /* Do not reply at all */
1487 return false;
1488 }
1489
1490 if (conn.resp != 1) {
1491 setverdict(fail, "Unexpected value for cpars.mgw_conn_*.resp, expect -1, 0 or 1");
1492 mtc.stop;
1493 }
1494
1495 var SDP_Message sdp := valueof(ts_SDP(conn.mgw_rtp_ip, conn.mgw_rtp_ip,
1496 hex2str(cpars.mgcp_call_id), "42",
1497 conn.mgw_rtp_port,
1498 { int2str(cpars.rtp_payload_type) },
1499 { valueof(ts_SDP_rtpmap(cpars.rtp_payload_type,
1500 cpars.rtp_sdp_format)),
1501 valueof(ts_SDP_ptime(20)) }));
1502
1503 if (f_mgcp_contains_par(mgcp_msg, "X-OSMUX")) {
1504 if (not cpars.use_osmux) {
1505 setverdict(fail, "MSC sent X-Osmux parameter in MGCP, but not expecting any Osmux");
1506 mtc.stop;
1507 }
1508 cpars.got_osmux_count := cpars.got_osmux_count + 1;
1509 /* we expect MSC to use wildcard here, i.e. osmux_cid == -1 */
1510 osmux_cid := f_MgcpCmd_extract_osmux_cid(mgcp_cmd);
1511 log("f_handle_crcx(): got Osmux CID: ", osmux_cid);
1512 if (osmux_cid != -1) {
1513 setverdict(fail, "MSC using unexpected CID " & int2str(osmux_cid) & " != -1");
1514 mtc.stop;
1515 }
1516
1517 osmux_cid := 0;
1518 mgcp_resp := ts_CRCX_ACK_osmux(mgcp_cmd.line.trans_id, conn.mgcp_connection_id, osmux_cid, sdp);
1519 } else {
1520 mgcp_resp := ts_CRCX_ACK(mgcp_cmd.line.trans_id, conn.mgcp_connection_id, sdp);
1521 }
1522
1523 f_mgcp_par_append(mgcp_resp.params, ts_MgcpParSpecEP(cpars.mgcp_ep));
1524 MGCP.send(mgcp_resp);
1525 return true;
1526}
1527
1528
1529altstep as_optional_mgcp_crcx(CallParameters cpars) runs on BSC_ConnHdlr {
1530 var MgcpCommand mgcp_cmd;
1531 [] MGCP.receive(tr_CRCX) -> value mgcp_cmd {
1532 log("as_optional_mgcp_crcx: rx CRCX");
1533 f_handle_crcx(cpars, mgcp_cmd);
1534
1535 /* Without this 'repeat', the as_optional_mgcp_crcx() exits currently waiting interleaves as soon as an
1536 * CRCX is handled. */
1537 repeat;
1538 }
1539}
1540
Andreas Eversberg1733de32023-07-27 16:27:05 +02001541altstep as_optional_mgcp_mdcx(HostName mgw_rtp_ip, PortNumber mgw_rtp_port) runs on BSC_ConnHdlr {
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001542 var MgcpCommand mgcp_cmd;
1543 [] MGCP.receive(tr_MDCX) -> value mgcp_cmd {
1544 log("as_optional_mgcp_mdcx: rx MDCX");
1545 log(mgcp_cmd);
1546 var charstring conn_id;
1547 var charstring rtp_payload_type;
1548 f_mgcp_find_param_entry(mgcp_cmd.params, "I", conn_id);
1549 rtp_payload_type := mgcp_cmd.sdp.media_list[0].media_field.fmts[0];
1550
1551 var SDP_Message sdp := valueof(ts_SDP(mgw_rtp_ip, mgw_rtp_ip,
1552 mgcp_cmd.sdp.origin.session_id, "42",
1553 mgw_rtp_port,
1554 { rtp_payload_type },
1555 { valueof(ts_SDP_ptime(20)) }));
1556 MGCP.send(ts_MDCX_ACK(mgcp_cmd.line.trans_id, str2hex(conn_id), sdp));
1557
1558 /* Without this 'repeat', currently active other interleave and alt series exit as soon as an MDCX is
1559 * handled. */
1560 repeat;
1561 }
1562}
1563
Andreas Eversberg1733de32023-07-27 16:27:05 +02001564altstep as_optional_mgcp_dlcx(CallParameters cpars) runs on BSC_ConnHdlr {
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001565 var MgcpCommand mgcp_cmd;
1566 var boolean respond_to_dlcx := not (isbound(cpars.mgw_drop_dlcx) and valueof(cpars.mgw_drop_dlcx));
1567 [] MGCP.receive(tr_DLCX(?)) -> value mgcp_cmd {
1568 log("as_optional_mgcp_dlcx: rx MGCP DLCX");
1569 if (respond_to_dlcx) {
1570 MGCP.send(ts_DLCX_ACK2(mgcp_cmd.line.trans_id));
1571 }
1572 /* Without this 'repeat', currently active other interleave and alt series exit as soon as a
1573 * DLCX is handled. */
1574 repeat;
1575 }
1576}
1577
Philipp Maier3716a5e2018-03-21 15:53:35 +01001578function f_mo_call_establish(inout CallParameters cpars)
Harald Welteb71901a2018-01-26 19:16:05 +01001579runs on BSC_ConnHdlr {
1580
Harald Welteb71901a2018-01-26 19:16:05 +01001581 var MNCC_PDU mncc;
1582 var MgcpCommand mgcp_cmd;
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001583 var template MgcpResponse mgcp_resp;
Philipp Maier2a98a732018-03-19 16:06:12 +01001584 var boolean respond_to_dlcx;
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001585 var PDU_BSSAP bssap;
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001586 var RANAP_PDU ranap;
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001587 var MgcpOsmuxCID osmux_cid;
Harald Welteb71901a2018-01-26 19:16:05 +01001588
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001589 cpars.mo_call := true;
1590
Harald Welte0bef21e2018-02-10 09:48:23 +01001591 if (cpars.emergency) {
Harald Welteb9e86fa2018-04-09 18:18:31 +02001592 f_establish_fully(EST_TYPE_EMERG_CALL);
Oliver Smith92b280c2023-04-20 13:13:23 +02001593 } else if (cpars.csd) {
1594 f_establish_fully(EST_TYPE_MO_CSD);
Harald Welte0bef21e2018-02-10 09:48:23 +01001595 } else {
Harald Welteb9e86fa2018-04-09 18:18:31 +02001596 f_establish_fully(EST_TYPE_MO_CALL);
Harald Welte0bef21e2018-02-10 09:48:23 +01001597 }
Harald Welteb71901a2018-01-26 19:16:05 +01001598
1599 /* Create MNCC and MGCP expect */
1600 f_create_mncc_expect(hex2str(cpars.called_party));
1601 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
1602
Harald Welte0bef21e2018-02-10 09:48:23 +01001603 if (cpars.emergency) {
1604 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_CC_EMERG_SETUP(cpars.transaction_id)));
1605 } else {
Oliver Smith9c417f22023-07-07 13:25:11 +02001606 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_CC_SETUP(cpars.transaction_id, cpars.called_party,
1607 cpars.bearer_cap)));
Harald Welte0bef21e2018-02-10 09:48:23 +01001608 }
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001609
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001610 if (cpars.stop_after_cc_setup) {
1611 return;
1612 }
1613
Neels Hofmeyr02d513e2022-07-25 22:07:24 +02001614 var template BSSMAP_IE_AoIP_TransportLayerAddress tla_ass1 :=
Pau Espin Pedrol833174e2020-09-03 16:46:02 +02001615 f_tr_BSSMAP_IE_AoIP_TLA(cpars.mgw_conn_1.mgw_rtp_ip, ?);
Neels Hofmeyr02d513e2022-07-25 22:07:24 +02001616 var template BSSMAP_IE_AoIP_TransportLayerAddress tla_ass2 :=
1617 f_tr_BSSMAP_IE_AoIP_TLA(cpars.mgw_conn_2.mgw_rtp_ip, ?);
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001618
1619 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 +01001620 var boolean got_mncc_setup_compl_ind := false;
1621 var boolean got_cc_connect := false;
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001622
Harald Welteb71901a2018-01-26 19:16:05 +01001623 interleave {
1624 [] MNCC.receive(tr_MNCC_SETUP_ind(?, tr_MNCC_number(hex2str(cpars.called_party)))) -> value mncc {
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001625 log("f_mo_call_establish 1: rx MNCC SETUP ind");
Harald Welteb71901a2018-01-26 19:16:05 +01001626 cpars.mncc_callref := mncc.u.signal.callref;
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001627 MNCC.send(ts_MNCC_RTP_CREATE(cpars.mncc_callref));
1628 }
1629
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001630 /* First MGCP CRCX */
Harald Welteb71901a2018-01-26 19:16:05 +01001631 [] MGCP.receive(tr_CRCX) -> value mgcp_cmd {
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001632 log("f_mo_call_establish 2: rx 1st CRCX");
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001633 if (not f_handle_crcx(cpars, mgcp_cmd)) {
1634 break;
1635 }
Philipp Maierf1e02bb2018-03-15 16:30:00 +01001636 }
1637
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001638 /* Second MGCP CRCX */
1639 [] MGCP.receive(tr_CRCX(cpars.mgcp_ep)) -> value mgcp_cmd {
1640 log("f_mo_call_establish 6: rx 2nd CRCX");
1641 if (not f_handle_crcx(cpars, mgcp_cmd)) {
1642 break;
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001643 }
Harald Welteb71901a2018-01-26 19:16:05 +01001644 }
Neels Hofmeyr59e0c6f2019-03-06 15:21:20 +01001645
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001646 [] MNCC.receive(tr_MNCC_RTP_CREATE(cpars.mncc_callref)) {
1647 log("f_mo_call_establish 3: rx RTP CREATE");
1648 /* Call Proceeding */
1649 MNCC.send(ts_MNCC_CALL_PROC_req(cpars.mncc_callref, cpars.mncc_bearer_cap));
1650 BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_CALL_PROC(cpars.transaction_id)));
Harald Welteb71901a2018-01-26 19:16:05 +01001651
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001652 /* Alerting */
1653 MNCC.send(ts_MNCC_ALERT_req(cpars.mncc_callref));
Neels Hofmeyr59e0c6f2019-03-06 15:21:20 +01001654 }
Harald Welte9b751a62019-04-14 17:39:29 +02001655
Neels Hofmeyreccaa992019-10-15 16:42:21 +02001656 //[g_pars.ran_is_geran] BSSAP.receive(tr_BSSMAP_AssignmentReq(omit, tla_ass)) -> value bssap
Neels Hofmeyrd9d835d2019-09-17 18:19:08 +02001657 [] BSSAP.receive(tr_BSSMAP_AssignmentReq(omit)) -> value bssap {
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001658 log("f_mo_call_establish 4: rx Assignment Request");
1659 var BSSMAP_IE_AoIP_TransportLayerAddress tla;
1660 var BSSMAP_IE_SpeechCodec codec;
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001661 var BSSMAP_IE_Osmo_OsmuxCID osmuxCID;
1662
Oliver Smithd6c90062023-05-08 15:20:20 +02001663 if (not ispresent(bssap.pdu.bssmap.assignmentRequest.aoIPTransportLayer)) {
1664 setverdict(fail, "MSC sent Assignment Request without AoIP Transport Layer IE");
1665 mtc.stop;
1666 }
Neels Hofmeyr02d513e2022-07-25 22:07:24 +02001667 if (not match(bssap.pdu.bssmap.assignmentRequest.aoIPTransportLayer, tla_ass1)
1668 and not match(bssap.pdu.bssmap.assignmentRequest.aoIPTransportLayer, tla_ass2)) {
1669 log("Expected one of: 1:", tla_ass1, " 2:", tla_ass2);
Neels Hofmeyrd9d835d2019-09-17 18:19:08 +02001670 log("Got:", bssap.pdu.bssmap.assignmentRequest.aoIPTransportLayer);
1671 setverdict(fail, "MSC sent Assignment Request with unexpected AoIP Transport Layer IE");
1672 mtc.stop;
1673 }
1674
Oliver Smith90f31bb2023-08-23 13:31:35 +02001675 if (cpars.csd and not match(bssap.pdu.bssmap.assignmentRequest.codecList.codecElements,
1676 {ts_CodecCSData})) {
1677 setverdict(fail, "MSC sent Assignment Request with unexpected codec list for CSD ",
1678 bssap.pdu.bssmap.assignmentRequest.codecList);
1679 mtc.stop;
1680 }
1681
Pau Espin Pedrol833174e2020-09-03 16:46:02 +02001682 tla := valueof(f_ts_BSSMAP_IE_AoIP_TLA(cpars.bss_rtp_ip, cpars.bss_rtp_port));
Oliver Smith90f31bb2023-08-23 13:31:35 +02001683
1684 if (cpars.csd) {
1685 codec := valueof(ts_BSSMAP_IE_SpeechCodec({ts_CodecCSData}));
1686 } else {
1687 codec := valueof(ts_BSSMAP_IE_SpeechCodec({ts_CodecFR}));
1688 }
1689
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001690 if (cpars.use_osmux) {
1691 if (not ispresent(bssap.pdu.bssmap.assignmentRequest.osmuxCID)) {
1692 setverdict(fail, "MSC sent AssignReq without expected OsmuxCID IE");
1693 mtc.stop;
1694 }
1695 osmuxCID := valueof(ts_OsmuxCID(0));
1696 if (cpars.use_osmux and not match(bssap.pdu.bssmap.assignmentRequest.osmuxCID, osmuxCID)) {
1697 setverdict(fail, "MSC sent AssignReq without expected OsmuxCID IE");
1698 mtc.stop;
1699 }
1700 bssap := valueof(ts_BSSMAP_AssignmentComplete(omit, tla, codec, osmuxCID));
1701 } else {
1702 bssap := valueof(ts_BSSMAP_AssignmentComplete(omit, tla, codec));
1703 }
1704 BSSAP.send(bssap);
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001705 }
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001706 [] BSSAP.receive(tr_RANAP_RabAssReq(*)) -> value ranap {
1707 log("f_mo_call_establish 4.iu: rx RANAP RAB Assignment Request");
1708 var RAB_SetupOrModifiedList l := {
1709 {
1710 {
1711 id := id_RAB_SetupOrModifiedItem,
1712 criticality := ignore,
1713 value_ := {
1714 rAB_SetupOrModifiedItem := {
1715 rAB_ID := int2bit(23, 8),
1716 transportLayerAddress := hex2bit( '350001c0a8021500000000000000000000000000'H),
1717 iuTransportAssociation := {
1718 bindingID := '040c0000'O
1719 },
1720 dl_dataVolumes := omit,
1721 iE_Extensions := omit
1722 }
1723 }
1724 }
1725 }
1726 };
1727 BSSAP.send(ts_RANAP_RabAssResp(l));
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001728 }
Harald Welte9b751a62019-04-14 17:39:29 +02001729
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001730 /* MDCX setting up the RAN side remote RTP address received from Assignment Complete */
1731 [] MGCP.receive(tr_MDCX) -> value mgcp_cmd {
1732 log("f_mo_call_establish 5: rx MDCX for the RAN side");
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +02001733 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 +01001734 hex2str(cpars.mgcp_call_id), "42",
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +02001735 cpars.mgw_conn_1.mgw_rtp_port,
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001736 { int2str(cpars.rtp_payload_type) },
1737 { valueof(ts_SDP_rtpmap(cpars.rtp_payload_type,
1738 cpars.rtp_sdp_format)),
1739 valueof(ts_SDP_ptime(20)) }));
Pau Espin Pedrola65697d2019-05-21 12:54:39 +02001740
1741 if (cpars.use_osmux) {
1742 osmux_cid := f_MgcpCmd_extract_osmux_cid(mgcp_cmd);
1743 if (osmux_cid != 0) { /* we expect MSC to use specific CID here */
1744 setverdict(fail, "MSC using unexpected CID " & int2str(osmux_cid) & " != 0");
1745 mtc.stop;
1746 }
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001747 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 +02001748 } else {
Pau Espin Pedrolcb4c59d2020-09-03 20:55:57 +02001749 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 +02001750 }
1751 MGCP.send(mgcp_resp);
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001752 }
Harald Welte9b751a62019-04-14 17:39:29 +02001753
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001754 [] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_ALERTING(cpars.transaction_id))) {
1755 log("f_mo_call_establish 7: rx CC Alerting");
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001756
1757 if (cpars.ran_clear_when_alerting) {
1758 if (g_pars.ran_is_geran) {
1759 BSSAP.send(ts_BSSMAP_ClearRequest(0));
1760 } else {
1761 BSSAP.send(ts_RANAP_IuReleaseRequest(ts_RanapCause_om_intervention));
1762 }
1763 break;
1764 }
1765
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001766 cpars.mncc_callref := mncc.u.signal.callref;
1767 /* Call Proceeding */
Pau Espin Pedrol563b3d02020-09-09 20:19:52 +02001768 var octetstring ip;
1769 var boolean is_ipv6 := f_addr_is_ipv6(cpars.mncc_rtp_ip);
1770 if (is_ipv6) {
1771 ip := f_inet6_addr(cpars.mncc_rtp_ip);
1772 } else {
1773 ip := f_inet_addr(cpars.mncc_rtp_ip);
1774 }
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001775 MNCC.send(ts_MNCC_RTP_CONNECT(cpars.mncc_callref,
Pau Espin Pedrol563b3d02020-09-09 20:19:52 +02001776 is_ipv6, ip,
1777 cpars.mncc_rtp_port,
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001778 /* payload type 3 = GSM FR */ 3));
1779 MNCC.send(ts_MNCC_SETUP_rsp(cpars.mncc_callref));
1780 }
1781
1782 [] MNCC.receive(tr_MNCC_SETUP_COMPL_ind(?)) -> value mncc {
1783 log("f_mo_call_establish 8: rx MNCC SETUP COMPLETE ind");
Neels Hofmeyr8df69622019-11-02 19:16:03 +01001784 got_mncc_setup_compl_ind := true;
1785 if (not cpars.expect_release and got_cc_connect) {
1786 break;
1787 }
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001788 }
1789
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001790 [] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_CONNECT(cpars.transaction_id))) {
1791 log("f_mo_call_establish 10: rx CC CONNECT");
1792 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_CC_CONNECT_ACK(cpars.transaction_id)));
Neels Hofmeyr8df69622019-11-02 19:16:03 +01001793 got_cc_connect := true;
1794 if (not cpars.expect_release and got_mncc_setup_compl_ind) {
1795 break;
1796 }
Harald Welteb71901a2018-01-26 19:16:05 +01001797 }
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001798
1799 [] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_RELEASE(cpars.transaction_id))) {
1800 log("f_mo_call_establish 11: rx CC RELEASE");
Neels Hofmeyr8df69622019-11-02 19:16:03 +01001801 if (not cpars.expect_release) {
1802 setverdict(fail, "Got unexpected CC Release");
1803 mtc.stop;
1804 }
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001805 f_expect_clear();
1806 break;
1807 }
1808 }
1809
1810 f_sleep(0.5);
1811 deactivate(mdcx);
1812
1813 if (cpars.use_osmux == (cpars.got_osmux_count != 0)) {
1814 log("Osmux ok: use_osmux = ", cpars.use_osmux, " got_osmux_count = ", cpars.got_osmux_count);
1815 } else {
1816 setverdict(fail, "Osmux failure: use_osmux = ", cpars.use_osmux, " got_osmux_count = ", cpars.got_osmux_count);
1817 mtc.stop;
Harald Welteb71901a2018-01-26 19:16:05 +01001818 }
1819
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001820 log("f_mo_call_establish DONE");
Philipp Maier3716a5e2018-03-21 15:53:35 +01001821 setverdict(pass);
1822}
Harald Welteb71901a2018-01-26 19:16:05 +01001823
Harald Welte4c422b72019-02-17 16:27:10 +01001824function f_call_hangup(inout CallParameters cpars, boolean release_by_ms, boolean is_csfb := false)
Philipp Maier3716a5e2018-03-21 15:53:35 +01001825runs on BSC_ConnHdlr {
1826
1827 var MobileIdentityLV mi;
1828 var MNCC_PDU mncc;
1829 var MgcpCommand mgcp_cmd;
1830 var boolean respond_to_dlcx;
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001831 var boolean dlcx_contained_ci := false;
1832 var template PDU_BSSAP t_clear := tr_BSSMAP_ClearCommand;
1833
1834 if (is_csfb) {
1835 t_clear := tr_BSSMAP_ClearCommandCSFB;
1836 }
1837
Neels Hofmeyrba960a12019-11-02 19:17:38 +01001838 log("f_call_hangup 0: tx MNCC_DISC_REQ");
Harald Welteb71901a2018-01-26 19:16:05 +01001839 MNCC.send(ts_MNCC_DISC_req(cpars.mncc_callref, valueof(ts_MNCC_cause(23))));
1840 BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_DISC(cpars.transaction_id)));
1841
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001842 log("f_call_hangup 1: rx DTAP CC DISC");
1843
Philipp Maier3716a5e2018-03-21 15:53:35 +01001844 if (release_by_ms) {
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001845 var BIT1 tid_remote := '1'B;
1846 if (cpars.mo_call) {
1847 tid_remote := '0'B;
1848 }
Philipp Maier3716a5e2018-03-21 15:53:35 +01001849 /* B-side (MS) Release of call */
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001850 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 +01001851 MNCC.receive(tr_MNCC_REL_ind(cpars.mncc_callref));
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001852 log("f_call_hangup 2: rx MNCC REL ind");
Philipp Maier3716a5e2018-03-21 15:53:35 +01001853 BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_REL_COMPL(cpars.transaction_id)));
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001854 log("f_call_hangup 3: rx DTAP CC REL COMPL");
Philipp Maier3716a5e2018-03-21 15:53:35 +01001855 } else {
1856 /* A-side (PLMN) Release of call */
1857 MNCC.send(ts_MNCC_REL_req(cpars.mncc_callref, valueof(ts_MNCC_cause(42))));
1858 BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_CC_RELEASE(cpars.transaction_id)));
Oliver Smith6f546a92023-07-10 15:03:31 +02001859 log("f_call_hangup 2.a: rx DTAP CC RELEASE");
Philipp Maier3716a5e2018-03-21 15:53:35 +01001860 BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MO_CC_REL_COMPL(cpars.transaction_id)));
Oliver Smith6f546a92023-07-10 15:03:31 +02001861 log("f_call_hangup 3.a: rx MNCC REL cnf");
1862 MNCC.receive(tr_MNCC_REL_cnf(cpars.mncc_callref, cause := *));
Philipp Maier3716a5e2018-03-21 15:53:35 +01001863 }
Harald Welteb71901a2018-01-26 19:16:05 +01001864
Philipp Maier2a98a732018-03-19 16:06:12 +01001865 respond_to_dlcx := not (isbound(cpars.mgw_drop_dlcx) and valueof(cpars.mgw_drop_dlcx));
1866
Neels Hofmeyr3c89a6b2019-10-15 16:54:37 +02001867 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 +01001868 var default dlcx := activate(as_optional_mgcp_dlcx(cpars));
Harald Welte9b751a62019-04-14 17:39:29 +02001869
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001870 /* clearing of radio channel */
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001871 alt {
1872 [g_pars.ran_is_geran] BSSAP.receive(t_clear) {
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001873 log("f_call_hangup 5: rx BSSAP Clear Command");
1874 BSSAP.send(ts_BSSMAP_ClearComplete);
1875 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_IND);
1876 log("f_call_hangup 6: rx SCCP DISC");
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001877 setverdict(pass);
Philipp Maier2a98a732018-03-19 16:06:12 +01001878 }
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001879 [not g_pars.ran_is_geran] BSSAP.receive(tr_RANAP_IuReleaseCommand(?)) {
1880 log("f_call_hangup 5.iu: rx Iu Release Command");
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001881 BSSAP.send(ts_RANAP_IuReleaseComplete);
1882 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_IND);
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001883 log("f_call_hangup 6.iu: rx SCCP DISC");
1884 setverdict(pass);
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001885 }
1886 }
1887
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001888 f_sleep(1.0);
Neels Hofmeyr2ca1ab42019-03-08 03:45:43 +01001889 f_create_mgcp_delete_ep(cpars.mgcp_ep);
1890 log("f_call_hangup 9: done");
1891
1892 deactivate(mdcx);
Neels Hofmeyr0b16bf12019-11-03 05:10:12 +01001893 deactivate(dlcx);
Philipp Maier3716a5e2018-03-21 15:53:35 +01001894}
1895
Oliver Smith98e24bc2023-07-07 12:36:59 +02001896function f_mt_call(inout CallParameters cpars, float open_time := 5.0)
Philipp Maier3716a5e2018-03-21 15:53:35 +01001897runs on BSC_ConnHdlr {
1898
1899 f_mt_call_establish(cpars);
1900
Oliver Smith98e24bc2023-07-07 12:36:59 +02001901 f_call_keep_open(cpars, open_time);
Philipp Maier3716a5e2018-03-21 15:53:35 +01001902
Neels Hofmeyrba960a12019-11-02 19:17:38 +01001903 log("Hangup");
Philipp Maier3716a5e2018-03-21 15:53:35 +01001904 f_call_hangup(cpars, true);
1905
Oliver Smith3a33e552023-07-06 11:55:12 +02001906 /* Unregister the IMSI that was registered in f_mt_call_establish */
1907 f_ran_unregister_imsi(g_pars.imsi);
1908
Philipp Maier3716a5e2018-03-21 15:53:35 +01001909 setverdict(pass);
1910}
1911
Oliver Smith98e24bc2023-07-07 12:36:59 +02001912function f_mo_call(inout CallParameters cpars, float open_time := 5.0)
Philipp Maier3716a5e2018-03-21 15:53:35 +01001913runs on BSC_ConnHdlr {
1914
1915 f_mo_call_establish(cpars);
1916
Oliver Smith98e24bc2023-07-07 12:36:59 +02001917 f_call_keep_open(cpars, open_time);
Philipp Maier3716a5e2018-03-21 15:53:35 +01001918
Neels Hofmeyrba960a12019-11-02 19:17:38 +01001919 log("Hangup");
Philipp Maier3716a5e2018-03-21 15:53:35 +01001920 f_call_hangup(cpars, false);
1921
Harald Welteb71901a2018-01-26 19:16:05 +01001922 setverdict(pass);
1923}
Harald Weltea49e36e2018-01-21 19:29:33 +01001924
Daniel Willmann8b084372018-02-04 13:35:26 +01001925function f_mo_seq_dtmf_dup(inout CallParameters cpars)
1926runs on BSC_ConnHdlr {
1927
1928 timer T := 1.0;
Daniel Willmann8b084372018-02-04 13:35:26 +01001929 var MNCC_PDU mncc;
1930 var MgcpCommand mgcp_cmd;
1931 var template PDU_ML3_MS_NW dtmf_dtap;
1932
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001933 f_mo_call_establish(cpars);
Daniel Willmann8b084372018-02-04 13:35:26 +01001934
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001935 /* Send DTMF: send the exact same DTAP message twice, the dup should be filtered out by
1936 * 3GPP TS 24.007 11.2.3.2 Message Type Octet / Duplicate Detection. */
Daniel Willmann8b084372018-02-04 13:35:26 +01001937
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001938 /* Find out the next NSD that will be used, from RAN emulation. */
1939 var N_Sd_Array last_n_sd := f_bssmap_last_n_sd();
1940 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 +01001941
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001942 /* Compose DTAP with this correct NSD */
Daniel Willmann8b084372018-02-04 13:35:26 +01001943 dtmf_dtap := ts_ML3_MO_CC_START_DTMF(cpars.transaction_id, "2");
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001944
1945 /* Here, pass skip_seq_patching == false so that the RAN Emulation NSD increments after this message. */
1946 BSSAP.send(ts_PDU_DTAP_MO(dtmf_dtap, '00'O, false));
Daniel Willmann8b084372018-02-04 13:35:26 +01001947 T.start;
1948 alt {
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001949 [] MNCC.receive(tr_MNCC_START_DTMF_ind(cpars.mncc_callref, "2")) {
1950 log("f_mo_seq_dtmf_dup() 1: got first START_DTMF_ind");
1951 }
Daniel Willmann8b084372018-02-04 13:35:26 +01001952 [] T.timeout {
1953 setverdict(fail, "Timeout waiting for START_DTMF_ind");
Daniel Willmannafce8662018-07-06 23:11:32 +02001954 mtc.stop;
Daniel Willmann8b084372018-02-04 13:35:26 +01001955 }
1956 }
1957
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001958 /* Send the exact same DTAP with above NSD, which is now incorrect (has not incremented), so that this message
1959 * will get filtered by the duplicate detection. Write NSD into DTAP and pass skip_seq_patching == true. */
1960 dtmf_dtap.msgs.cc.startDTMF.nsd := int2bit(next_n_sd, 2);
Daniel Willmann92f66272018-02-06 15:50:52 +01001961 BSSAP.send(ts_PDU_DTAP_MO(dtmf_dtap, '00'O, true));
Daniel Willmann8b084372018-02-04 13:35:26 +01001962 T.start;
1963 alt {
1964 [] MNCC.receive(tr_MNCC_START_DTMF_ind(cpars.mncc_callref, "2")) {
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001965 setverdict(fail, "f_mo_seq_dtmf_dup() 2: Received duplicate START_DTMF_ind");
Daniel Willmannafce8662018-07-06 23:11:32 +02001966 mtc.stop;
Daniel Willmann8b084372018-02-04 13:35:26 +01001967 }
1968 [] T.timeout { }
1969 }
1970
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001971 /* Here the NSD should be correct again and we see a DTMF. */
Daniel Willmann8b084372018-02-04 13:35:26 +01001972 dtmf_dtap := ts_ML3_MO_CC_START_DTMF(cpars.transaction_id, "3");
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001973 BSSAP.send(ts_PDU_DTAP_MO(dtmf_dtap, '00'O, false));
Daniel Willmann8b084372018-02-04 13:35:26 +01001974 alt {
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001975 [] MNCC.receive(tr_MNCC_START_DTMF_ind(cpars.mncc_callref, "3")) {
1976 log("f_mo_seq_dtmf_dup() 3: got second START_DTMF_ind");
1977 }
Daniel Willmann8b084372018-02-04 13:35:26 +01001978 [] T.timeout {
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001979 setverdict(fail, "Timeout waiting for final START_DTMF_ind");
Daniel Willmannafce8662018-07-06 23:11:32 +02001980 mtc.stop;
Daniel Willmann8b084372018-02-04 13:35:26 +01001981 }
1982 }
1983
Neels Hofmeyr3d22e4a2019-10-03 04:07:47 +02001984 f_call_hangup(cpars, true);
Daniel Willmann8b084372018-02-04 13:35:26 +01001985 setverdict(pass);
1986}
Harald Welte9b751a62019-04-14 17:39:29 +02001987
Vadim Yanitskiyb3e42cf2024-03-27 16:23:30 +07001988/* expect a clear command (for GERAN only!) */
Vadim Yanitskiy7093a5d2024-03-27 16:10:25 +07001989altstep as_clear_cmd_compl_disc() runs on BSC_ConnHdlr {
Neels Hofmeyr6b468a42019-03-06 15:25:14 +01001990 var PDU_BSSAP bssap;
Harald Welte5946b332018-03-18 23:32:21 +01001991 [] BSSAP.receive(tr_BSSMAP_ClearCommand) {
1992 BSSAP.send(ts_BSSMAP_ClearComplete);
1993 alt {
Harald Welte6811d102019-04-14 22:23:14 +02001994 [] BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_IND) {
Harald Welte5946b332018-03-18 23:32:21 +01001995 setverdict(pass);
1996 }
1997 [] BSSAP.receive {
1998 setverdict(fail, "Unexpected BSSMAP while waiting for SCCP Release");
Daniel Willmannafce8662018-07-06 23:11:32 +02001999 mtc.stop;
Harald Welte5946b332018-03-18 23:32:21 +01002000 }
2001 }
2002 }
Neels Hofmeyr6b468a42019-03-06 15:25:14 +01002003 [] BSSAP.receive(tr_BSSAP_BSSMAP) -> value bssap {
2004 setverdict(fail, "Unexpected BSSMAP while waiting for ClearCommand", bssap);
Daniel Willmannafce8662018-07-06 23:11:32 +02002005 mtc.stop;
Harald Welte5946b332018-03-18 23:32:21 +01002006 }
2007}
2008
Vadim Yanitskiyb3e42cf2024-03-27 16:23:30 +07002009/* expect a BSSMAP Clear Command (for GERAN) or an Iu-ReleaseCommand (for UTRAN) */
2010altstep as_expect_clear() runs on BSC_ConnHdlr {
2011 [g_pars.ran_is_geran] as_clear_cmd_compl_disc();
2012 [not g_pars.ran_is_geran] as_iu_release_compl_disc();
2013}
2014
Neels Hofmeyr4e18ccc2020-06-24 19:08:17 +02002015function f_expect_clear(float t := 5.0, boolean verify_vlr_cell_id := true) runs on BSC_ConnHdlr {
Harald Welte1ddc7162018-01-27 14:25:46 +01002016 timer T := t;
2017
2018 T.start;
2019 alt {
Vadim Yanitskiyb3e42cf2024-03-27 16:23:30 +07002020 [] as_expect_clear() {
2021 if (verify_vlr_cell_id) {
2022 /* Now the conn is gone, but the VLR reflects the cell ID */
2023 f_verify_vty_lac_ci();
2024 }
2025 }
Harald Welte1ddc7162018-01-27 14:25:46 +01002026 [] T.timeout {
Harald Welte5946b332018-03-18 23:32:21 +01002027 setverdict(fail, "Timeout waiting for ClearCommand/Release");
Daniel Willmannafce8662018-07-06 23:11:32 +02002028 mtc.stop;
Harald Welte1ddc7162018-01-27 14:25:46 +01002029 }
2030 }
2031}
2032
Andreas Eversberge5a6ef12023-07-28 10:45:20 +02002033function f_create_bssmap_exp_n_connect(integer targetPointCode) runs on BSC_ConnHdlr {
2034 BSSAP_PROC.call(RAN_register_n_connect:{targetPointCode, self}) {
2035 [] BSSAP_PROC.getreply(RAN_register_n_connect:{?, ?}) {};
Neels Hofmeyr0ac63152019-05-07 01:20:17 +02002036 }
2037}
2038
2039function f_bssmap_last_n_sd() runs on BSC_ConnHdlr return N_Sd_Array {
2040 var N_Sd_Array last_n_sd;
2041 BSSAP_PROC.call(RAN_last_n_sd:{self, -}) {
2042 [] BSSAP_PROC.getreply(RAN_last_n_sd:{self, ?}) -> param(last_n_sd) {
2043 return last_n_sd;
2044 };
2045 }
2046}
2047
2048function f_bssmap_continue_after_n_sd(N_Sd_Array last_n_sd) runs on BSC_ConnHdlr {
2049 BSSAP_PROC.call(RAN_continue_after_n_sd:{last_n_sd, self}) {
2050 [] BSSAP_PROC.getreply(RAN_continue_after_n_sd:{last_n_sd, self});
2051 }
2052}
2053
Harald Weltef45efeb2018-04-09 18:19:24 +02002054type record SmsParametersTp {
2055 OCT1 msg_ref,
2056 TP_DA da,
2057 OCT1 pid,
2058 OCT1 dcs,
2059 integer udl,
2060 octetstring ud
2061}
2062type record SmsParametersRp {
2063 OCT1 msg_ref,
Vadim Yanitskiy437b5a62019-12-15 14:13:39 +09002064 RP_NumberingPlan_and_NumberDigits smsc_addr optional
Harald Weltef45efeb2018-04-09 18:19:24 +02002065}
2066type record SmsParameters {
2067 SmsParametersTp tp,
2068 SmsParametersRp rp,
2069 uint3_t tid,
2070 OCT1 dlci,
2071 uint7_t exp_rp_err optional
2072}
2073
2074template (value) TP_DA ts_TP_DA(BIT4 npl, BIT3 ton, hexstring addr) := {
2075 tP_DA_NoPad := {
2076 tP_LengthIndicator := 0, /* overwritten */
2077 tP_NumberingPlanID := npl,
2078 tP_TypeOfNumber := ton,
2079 tp_Spare := '0'B,
2080 tP_DAValue := addr
2081 }
2082}
2083
Vadim Yanitskiy437b5a62019-12-15 14:13:39 +09002084template RP_NumberingPlan_and_NumberDigits t_RP_Addr(template hexstring addr,
2085 template BIT4 npi := '0001'B,
2086 template BIT3 ton := '001'B,
2087 template BIT1 ext := '1'B) := {
2088 rP_NumberingPlanIdentification := npi,
2089 rP_TypeOfNumber := ton,
2090 rP_Ext := ext,
2091 rP_NumberDigits := addr
2092}
2093
Harald Weltef45efeb2018-04-09 18:19:24 +02002094template (value) SmsParameters t_SmsPars(hexstring tp_daddr := '12345'H) := {
2095 tp := {
2096 msg_ref := '23'O,
2097 da := ts_TP_DA('0000'B, '000'B, tp_daddr),
2098 pid := '00'O,
2099 dcs := '00'O,
2100 udl := 0,
2101 ud := ''O
2102 },
2103 rp := {
2104 msg_ref := '42'O,
Vadim Yanitskiy437b5a62019-12-15 14:13:39 +09002105 /* We don't really need to have both SM-RP-DA/OA here, because only one IE
Vadim Yanitskiyafb15a82020-01-05 14:04:53 +01002106 * is included in MO/MT SMS, and in the most cases it's the SMSC address.
2107 * NOTE: this address is currently hard-coded by OsmoMSC. */
2108 smsc_addr := t_RP_Addr('447785016005'H)
Harald Weltef45efeb2018-04-09 18:19:24 +02002109 },
2110 tid := 0,
2111 dlci := '03'O,
2112 exp_rp_err := omit
2113}
2114
2115private altstep as_other_sms() runs on BSC_ConnHdlr {
2116 [] BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_SMS(?, ?, ?), ?)) {
2117 setverdict(fail, "Unexpected SMS related PDU from MSC");
Daniel Willmannafce8662018-07-06 23:11:32 +02002118 mtc.stop;
Harald Weltef45efeb2018-04-09 18:19:24 +02002119 }
2120}
2121
Vadim Yanitskiy9cc019a2018-11-15 02:06:07 +07002122/* Submit a MO RP-SMMA over an already existing DTAP connection */
2123function f_mo_smma(inout SmsParameters spars)
2124runs on BSC_ConnHdlr {
2125 var template (value) RPDU_MS_SGSN rp_mo;
2126 var template (value) PDU_ML3_MS_NW l3_mo;
2127
2128 var default d := activate(as_other_sms());
2129
2130 /* just in case this is routed to SMPP.. */
2131 f_create_smpp_expect(hex2str(spars.tp.da.tP_DA_NoPad.tP_DAValue));
2132
2133 rp_mo := ts_RP_SMMA_MO(spars.rp.msg_ref);
2134 l3_mo := ts_ML3_MO_SMS(spars.tid, c_TIF_ORIG, ts_CP_DATA_MO(rp_mo));
2135 BSSAP.send(ts_PDU_DTAP_MO(l3_mo, spars.dlci, true));
2136 /* receive CP-ACK for CP-DATA above */
2137 BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_SMS(spars.tid, c_TIF_REPL, tr_CP_ACK_MT), spars.dlci));
2138
2139 deactivate(d);
2140 setverdict(pass);
2141}
2142
Vadim Yanitskiyd4cc1502018-11-12 01:46:21 +07002143/* Submit a MO-SMS over an already existing DTAP connection */
2144function f_mo_sms_submit(inout SmsParameters spars)
Harald Weltef45efeb2018-04-09 18:19:24 +02002145runs on BSC_ConnHdlr {
2146 var template (value) TPDU_RP_DATA_MS_SGSN tp_mo;
2147 var template (value) RPDU_MS_SGSN rp_mo;
2148 var template (value) PDU_ML3_MS_NW l3_mo;
2149
Harald Weltef45efeb2018-04-09 18:19:24 +02002150 var default d := activate(as_other_sms());
2151
Harald Weltef640a012018-04-14 17:49:21 +02002152 /* just in case this is routed to SMPP.. */
2153 f_create_smpp_expect(hex2str(spars.tp.da.tP_DA_NoPad.tP_DAValue));
2154
Harald Weltef45efeb2018-04-09 18:19:24 +02002155 tp_mo := ts_SMS_SUBMIT(spars.tp.msg_ref, spars.tp.da, spars.tp.pid, spars.tp.dcs,
2156 spars.tp.udl, spars.tp.ud);
Vadim Yanitskiy437b5a62019-12-15 14:13:39 +09002157 rp_mo := ts_RP_DATA_MO(spars.rp.msg_ref, omit, spars.rp.smsc_addr, tp_mo);
Harald Weltef45efeb2018-04-09 18:19:24 +02002158 l3_mo := ts_ML3_MO_SMS(spars.tid, c_TIF_ORIG, ts_CP_DATA_MO(rp_mo));
2159 BSSAP.send(ts_PDU_DTAP_MO(l3_mo, spars.dlci, true));
2160 /* receive CP-ACK for CP-DATA above */
2161 BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_SMS(spars.tid, c_TIF_REPL, tr_CP_ACK_MT), spars.dlci));
2162
Vadim Yanitskiyd4cc1502018-11-12 01:46:21 +07002163 deactivate(d);
2164 setverdict(pass);
2165}
2166
2167/* Wait RP-ACK for MO-SMS on an already existing DTAP connection */
2168function f_mo_sms_wait_rp_ack(inout SmsParameters spars)
2169runs on BSC_ConnHdlr {
2170 var template (value) PDU_ML3_MS_NW l3_mo;
2171
2172 var template TPDU_RP_DATA_SGSN_MS tp_mt;
2173 var template RPDU_SGSN_MS rp_mt;
2174 var template PDU_ML3_NW_MS l3_mt;
2175
2176 var default d := activate(as_other_sms());
2177
2178 /* just in case this is routed to SMPP.. */
2179 f_create_smpp_expect(hex2str(spars.tp.da.tP_DA_NoPad.tP_DAValue));
2180
Harald Weltef45efeb2018-04-09 18:19:24 +02002181 if (ispresent(spars.exp_rp_err)) {
2182 /* expect an RP-ERROR message from MSC with given cause */
2183 rp_mt := tr_RP_ERROR_MT(spars.rp.msg_ref, spars.exp_rp_err);
2184 l3_mt := tr_ML3_MT_SMS(spars.tid, c_TIF_REPL, tr_CP_DATA_MT(rp_mt));
2185 BSSAP.receive(tr_PDU_DTAP_MT(l3_mt, spars.dlci));
2186 /* send CP-ACK for CP-DATA just received */
2187 l3_mo := ts_ML3_MO_SMS(spars.tid, c_TIF_ORIG, ts_CP_ACK_MO);
2188 BSSAP.send(ts_PDU_DTAP_MO(l3_mo, spars.dlci, true));
2189 } else {
2190 /* expect RP-ACK for RP-DATA */
2191 rp_mt := tr_RP_ACK_MT(spars.rp.msg_ref);
2192 l3_mt := tr_ML3_MT_SMS(spars.tid, c_TIF_REPL, tr_CP_DATA_MT(rp_mt));
2193 BSSAP.receive(tr_PDU_DTAP_MT(l3_mt, spars.dlci));
2194 /* send CP-ACO for CP-DATA just received */
2195 l3_mo := ts_ML3_MO_SMS(spars.tid, c_TIF_ORIG, ts_CP_ACK_MO);
2196 BSSAP.send(ts_PDU_DTAP_MO(l3_mo, spars.dlci, true));
2197 }
Vadim Yanitskiyd4cc1502018-11-12 01:46:21 +07002198
Harald Weltef45efeb2018-04-09 18:19:24 +02002199 deactivate(d);
2200 setverdict(pass);
2201}
2202
Vadim Yanitskiyd4cc1502018-11-12 01:46:21 +07002203/* Submit a MO-SMS, and wait for RP-ACK on an existing
2204 * (and authenticated, ...) DTAP connection */
2205function f_mo_sms(inout SmsParameters spars)
2206runs on BSC_ConnHdlr {
2207 f_mo_sms_submit(spars);
2208 f_mo_sms_wait_rp_ack(spars);
2209}
2210
Neels Hofmeyrb58d9742019-11-27 18:44:54 +01002211function f_mt_sms_deliver_pdu(in SmsParameters spars)
2212runs on BSC_ConnHdlr
2213return template PDU_DTAP_MT {
2214 var template TPDU_RP_DATA_SGSN_MS tp_mt := tr_SMS_DELIVER(?, spars.tp.ud, spars.tp.pid, spars.tp.dcs, ?);
2215 var template RPDU_SGSN_MS rp_mt := tr_RP_DATA_MT(?, spars.rp.smsc_addr, omit, tp_mt);
2216 var template PDU_ML3_NW_MS l3_mt := tr_ML3_MT_SMS(?, c_TIF_ORIG, tr_CP_DATA_MT(rp_mt));
2217 return tr_PDU_DTAP_MT(l3_mt, spars.dlci);
2218}
2219
Vadim Yanitskiy2159acb2018-11-24 02:50:29 +07002220/* Wait for MT SMS on an already existing DTAP connection */
2221function f_mt_sms_expect(inout SmsParameters spars)
Harald Weltef45efeb2018-04-09 18:19:24 +02002222runs on BSC_ConnHdlr {
Harald Weltef45efeb2018-04-09 18:19:24 +02002223 var template (value) PDU_ML3_MS_NW l3_mo;
Harald Weltef45efeb2018-04-09 18:19:24 +02002224 var PDU_DTAP_MT dtap_mt;
2225
2226 var default d := activate(as_other_sms());
2227
2228 /* Expect CP-DATA(RP-DATA(SMS-DELIVER)) */
Neels Hofmeyrb58d9742019-11-27 18:44:54 +01002229 BSSAP.receive(f_mt_sms_deliver_pdu(spars)) -> value dtap_mt;
Vadim Yanitskiy2159acb2018-11-24 02:50:29 +07002230
Harald Weltef45efeb2018-04-09 18:19:24 +02002231 /* Extract relevant identifiers */
2232 spars.tid := bit2int(dtap_mt.dtap.tiOrSkip.transactionId.tio);
2233 spars.rp.msg_ref := dtap_mt.dtap.msgs.sms.cP_DATA.cP_User_Data.cP_RPDU.rP_DATA_SGSN_MS.rP_MessageReference;
2234
2235 /* send CP-ACK for CP-DATA just received */
2236 l3_mo := ts_ML3_MO_SMS(spars.tid, c_TIF_REPL, ts_CP_ACK_MO);
2237 BSSAP.send(ts_PDU_DTAP_MO(l3_mo, spars.dlci, true));
2238
Vadim Yanitskiy2159acb2018-11-24 02:50:29 +07002239 deactivate(d);
2240 setverdict(pass);
2241}
2242
2243/* Send RP-ACK for MT-SMS over an already existing DTAP connection */
2244function f_mt_sms_send_rp_ack(inout SmsParameters spars)
2245runs on BSC_ConnHdlr {
2246 var template (value) RPDU_MS_SGSN rp_mo;
2247 var template (value) PDU_ML3_MS_NW l3_mo;
2248 var template PDU_ML3_NW_MS l3_mt;
2249
2250 var default d := activate(as_other_sms());
2251
Harald Weltef45efeb2018-04-09 18:19:24 +02002252 /* send RP-ACK for RP-DATA */
2253 rp_mo := ts_RP_ACK_MO(spars.rp.msg_ref);
2254 l3_mo := ts_ML3_MO_SMS(spars.tid, c_TIF_REPL, ts_CP_DATA_MO(rp_mo));
2255 BSSAP.send(ts_PDU_DTAP_MO(l3_mo, spars.dlci, true));
2256
2257 /* expect CP-ACK for CP-DATA(RP-ACK) just sent */
Harald Weltee008eea2018-04-14 21:05:48 +02002258 l3_mt := tr_ML3_MT_SMS(spars.tid, c_TIF_ORIG, tr_CP_ACK_MT);
Harald Weltef45efeb2018-04-09 18:19:24 +02002259 BSSAP.receive(tr_PDU_DTAP_MT(l3_mt, spars.dlci));
2260
2261 deactivate(d);
2262 setverdict(pass);
2263}
2264
Vadim Yanitskiy56318522018-11-24 03:40:47 +07002265/* Send RP-ERROR for MT-SMS over an already existing DTAP connection */
2266function f_mt_sms_send_rp_error(inout SmsParameters spars, uint7_t cause)
2267runs on BSC_ConnHdlr {
2268 var template (value) RPDU_MS_SGSN rp_mo;
2269 var template (value) PDU_ML3_MS_NW l3_mo;
2270 var template PDU_ML3_NW_MS l3_mt;
2271
2272 var default d := activate(as_other_sms());
2273
2274 /* send RP-ACK for RP-DATA */
2275 rp_mo := ts_RP_ERROR_MO(spars.rp.msg_ref, cause);
2276 l3_mo := ts_ML3_MO_SMS(spars.tid, c_TIF_REPL, ts_CP_DATA_MO(rp_mo));
2277 BSSAP.send(ts_PDU_DTAP_MO(l3_mo, spars.dlci, true));
2278
2279 /* expect CP-ACK for CP-DATA(RP-ERROR) just sent */
2280 l3_mt := tr_ML3_MT_SMS(spars.tid, c_TIF_ORIG, tr_CP_ACK_MT);
2281 BSSAP.receive(tr_PDU_DTAP_MT(l3_mt, spars.dlci));
2282
2283 deactivate(d);
2284 setverdict(pass);
2285}
2286
Vadim Yanitskiy2159acb2018-11-24 02:50:29 +07002287/* Wait for a MT-SMS and send RP-ACK over an already existing
2288 * (and authenticated, ...) DTAP connection */
2289function f_mt_sms(inout SmsParameters spars)
2290runs on BSC_ConnHdlr {
2291 f_mt_sms_expect(spars);
2292 f_mt_sms_send_rp_ack(spars);
2293}
Harald Weltea49e36e2018-01-21 19:29:33 +01002294
2295
Harald Weltea49e36e2018-01-21 19:29:33 +01002296}