blob: 25721e30ba35efd9b05f9bc6e4f00d54220536de [file] [log] [blame]
Harald Welte70767382018-02-21 12:16:40 +01001module BTS_Tests {
2
Harald Welte14906952019-05-27 09:19:49 +02003/* Integration Tests for OsmoBTS
Harald Welte34b5a952019-05-27 11:54:11 +02004 * (C) 2018-2019 by Harald Welte <laforge@gnumonks.org>
Harald Welte14906952019-05-27 09:19:49 +02005 * contributions by Vadim Yanitskiy and sysmocom - s.f.m.c. GmbH
6 * All rights reserved.
7 *
8 * Released under the terms of GNU General Public License, Version 2 or
9 * (at your option) any later version.
10 *
Harald Welte34b5a952019-05-27 11:54:11 +020011 * SPDX-License-Identifier: GPL-2.0-or-later
12 *
Harald Welte14906952019-05-27 09:19:49 +020013 * This test suite tests OsmoBTS by attaching to the external interfaces
14 * such as Abis RSL, PCU, VTY as well as by attaching to a MS L1 implementation
15 * using the L1CTL protocol/interface.
16 *
17 * You can run the tests with
18 * a) osmo-bts-trx + trxcon + fake_trx (without any hardware)
19 * b) any osmo-bts-* + OsmocomBB layer1 + osmocon (with real BTS hardware)
20 * c) osmo-bts-virtual + virt_phy (without any hardware)
21 *
22 * Some of the tests will only run on a subset of those three configurations
23 * due to limitations in the respective L1.
24 */
25
Daniel Willmann0fcc4d32018-10-23 20:32:19 +020026import from Misc_Helpers all;
Harald Welte70767382018-02-21 12:16:40 +010027import from General_Types all;
28import from GSM_Types all;
29import from GSM_RR_Types all;
30import from Osmocom_Types all;
31import from GSM_Types all;
Harald Welte82ccef72018-02-25 16:17:33 +010032import from GSM_SystemInformation all;
Harald Welte70767382018-02-21 12:16:40 +010033import from L1CTL_PortType all;
34import from L1CTL_Types all;
35import from LAPDm_Types all;
Harald Weltead033dc2019-05-25 17:28:16 +020036import from LAPDm_RAW_PT all;
Harald Welte70767382018-02-21 12:16:40 +010037import from Osmocom_CTRL_Adapter all;
Neels Hofmeyr6a84b232018-04-03 19:12:36 +020038import from Osmocom_CTRL_Functions all;
Harald Welte70767382018-02-21 12:16:40 +010039
40import from RSL_Types all;
Harald Welte7484fc42018-02-24 14:09:45 +010041import from IPA_Types all;
Harald Welte70767382018-02-21 12:16:40 +010042import from IPA_Emulation all;
Stefan Sperling0ec1c262018-10-15 15:12:52 +020043import from IPA_Testing all;
Harald Welte70767382018-02-21 12:16:40 +010044import from RSL_Emulation all;
45
46import from IPL4asp_Types all;
47import from TRXC_Types all;
48import from TRXC_CodecPort all;
49import from TRXC_CodecPort_CtrlFunct all;
50
Harald Welte883340c2018-02-28 18:59:29 +010051import from PCUIF_Types all;
52import from PCUIF_CodecPort all;
Harald Weltea2e0e942019-05-27 18:12:53 +020053import from UD_Types all;
Harald Welte883340c2018-02-28 18:59:29 +010054
Harald Welte7484fc42018-02-24 14:09:45 +010055import from MobileL3_CommonIE_Types all;
Harald Welte68e495b2018-02-25 00:05:57 +010056import from MobileL3_RRM_Types all;
57import from MobileL3_Types all;
58import from L3_Templates all;
Harald Welteeaa9a862019-05-26 23:01:08 +020059import from L3_Common all;
60import from MobileL3_GMM_SM_Types all;
Harald Welte7484fc42018-02-24 14:09:45 +010061
Harald Welte8da48242018-02-27 20:41:32 +010062import from Osmocom_VTY_Functions all;
63import from TELNETasp_PortType all;
Harald Welte2f2b2b72019-05-31 22:24:57 +020064import from BTS_Tests_LAPDm all;
Harald Welte8da48242018-02-27 20:41:32 +010065
Harald Welte505cf9b2018-09-15 17:47:23 +030066friend module BTS_Tests_SMSCB;
Harald Weltead033dc2019-05-25 17:28:16 +020067friend module BTS_Tests_virtphy;
Harald Welte2f2b2b72019-05-31 22:24:57 +020068friend module BTS_Tests_LAPDm;
Harald Welte505cf9b2018-09-15 17:47:23 +030069
Harald Welte70767382018-02-21 12:16:40 +010070/* The tests assume a BTS with the following timeslot configuration:
71 * TS0 : Combined CCCH + SDCCH/4
Harald Welte3d04ae62018-04-04 20:29:05 +020072 * TS1 : TCH/F
73 * TS2 : TCH/F
74 * TS3 : TCH/F_PDCH (IPA Style)
75 * TS4 : TCH/F_TCH/H_PDCH (Osmocom Style)
Harald Welte70767382018-02-21 12:16:40 +010076 * TS5 : TCH/H
77 * TS6 : SDCCH/8
78 * TS7 : PDCH
79 */
80
81modulepar {
82 charstring mp_rsl_ip := "127.0.0.2";
83 integer mp_rsl_port := 3003;
84 integer mp_trx0_arfcn := 871;
Vadim Yanitskiy44ff2142019-01-12 07:04:58 +070085 charstring mp_bts_trxc_ip := "127.0.0.1";
86 integer mp_bts_trxc_port := 5701;
Harald Welte883340c2018-02-28 18:59:29 +010087 charstring mp_pcu_socket := PCU_SOCK_DEFAULT;
Neels Hofmeyr6a84b232018-04-03 19:12:36 +020088 charstring mp_ctrl_ip := "127.0.0.1";
89 integer mp_ctrl_port := 4238;
Harald Welte07bd2d22019-05-25 11:03:30 +020090 charstring mp_bsc_ctrl_ip := "127.0.0.1";
91 integer mp_bsc_ctrl_port := 4249;
Pau Espin Pedrol121724c2018-09-28 15:58:12 +020092 integer mp_tolerance_rxqual := 1;
93 integer mp_tolerance_rxlev := 3;
94 integer mp_tolerance_timing_offset_256syms := 0;
Pau Espin Pedrol752ffd52018-06-07 13:55:45 +020095 integer mp_rxlev_exp := 57;
Pau Espin Pedrole9571aa2018-10-22 17:13:07 +020096 integer mp_ul_rxlev_exp := 10;
Pau Espin Pedroled359cb2018-09-28 16:08:24 +020097 integer mp_ms_power_level_exp := 7;
Pau Espin Pedrol121724c2018-09-28 15:58:12 +020098 integer mp_ms_actual_ta_exp := 0;
99 integer mp_timing_offset_256syms_exp := 512;
Pau Espin Pedrol315e4712018-11-01 16:27:07 +0100100 /* Time to wait for RSL conn from BTS during startup of test */
Philipp Maier12567e42019-04-17 14:10:05 +0200101 float mp_ipa_up_timeout := 15.0;
Philipp Maiere63229e2019-04-26 12:21:37 +0200102 float mp_ipa_up_delay := 0.0;
Harald Weltead033dc2019-05-25 17:28:16 +0200103 /* false for now, as only virtphy supports it, not calypso-l1 nor trxcon */
104 boolean mp_l1_supports_gprs := false;
Harald Welte70767382018-02-21 12:16:40 +0100105}
106
Harald Welte629cc6b2018-03-11 17:19:05 +0100107type record of RslChannelNr ChannelNrs;
108
Harald Welte70767382018-02-21 12:16:40 +0100109type component test_CT extends CTRL_Adapter_CT {
Harald Welte68e495b2018-02-25 00:05:57 +0100110 /* IPA Emulation component underneath RSL */
Harald Welte70767382018-02-21 12:16:40 +0100111 var IPA_Emulation_CT vc_IPA;
Harald Welte68e495b2018-02-25 00:05:57 +0100112 /* RSL Emulation component (for ConnHdlr tests) */
Harald Welte70767382018-02-21 12:16:40 +0100113 var RSL_Emulation_CT vc_RSL;
Harald Welte68e495b2018-02-25 00:05:57 +0100114 /* Direct RSL_CCHAN_PT */
Harald Welte70767382018-02-21 12:16:40 +0100115 port RSL_CCHAN_PT RSL_CCHAN;
Harald Welte68e495b2018-02-25 00:05:57 +0100116
117 /* L1CTL port (for classic tests) */
118 port L1CTL_PT L1CTL;
Harald Welte48494ca2018-02-25 16:59:50 +0100119
Vadim Yanitskiyf4e997c2019-06-04 21:40:33 +0700120 /* Optional TRXC connection to FakeTRX (BTS side) */
Vadim Yanitskiy44ff2142019-01-12 07:04:58 +0700121 port TRXC_CODEC_PT BTS_TRXC;
122 var integer g_bts_trxc_conn_id;
Harald Welte54a2a2d2018-02-26 09:14:05 +0100123
Harald Weltef50e3ae2018-09-10 10:27:56 +0200124 /* VTY connections to both BTS and BSC */
Harald Welte8da48242018-02-27 20:41:32 +0100125 port TELNETasp_PT BTSVTY;
Harald Weltef50e3ae2018-09-10 10:27:56 +0200126 port TELNETasp_PT BSCVTY;
Harald Welte8da48242018-02-27 20:41:32 +0100127
Harald Welte883340c2018-02-28 18:59:29 +0100128 /* PCU Interface of BTS */
129 port PCUIF_CODEC_PT PCU;
130 var integer g_pcu_conn_id;
131 /* Last PCU INFO IND we received */
132 var PCUIF_Message g_pcu_last_info;
133
Harald Welte48494ca2018-02-25 16:59:50 +0100134 /* SI configuration */
135 var SystemInformationConfig si_cfg := {
136 bcch_extended := false,
137 si1_present := false,
138 si2bis_present := false,
139 si2ter_present := false,
140 si2quater_present := false,
141 si7_present := false,
142 si8_present := false,
143 si9_present := false,
144 si13_present := false,
145 si13alt_present := false,
146 si15_present := false,
147 si16_present := false,
148 si17_present := false,
149 si2n_present := false,
150 si21_present := false,
151 si22_present := false
152 };
Harald Welte629cc6b2018-03-11 17:19:05 +0100153
154 /* all logical channels available on the BTS */
155 var ChannelNrs g_AllChannels;
Harald Welte0472ab42018-03-12 15:02:26 +0100156 var ChannelNrs g_AllChanTypes;
Harald Welte70767382018-02-21 12:16:40 +0100157}
158
159/* an individual call / channel */
Harald Welte2f2b2b72019-05-31 22:24:57 +0200160type component ConnHdlr extends RSL_DchanHdlr, lapdm_test_CT {
Harald Welte70767382018-02-21 12:16:40 +0100161 port L1CTL_PT L1CTL;
162
Vadim Yanitskiyf4e997c2019-06-04 21:40:33 +0700163 /* Optional TRXC connection to FakeTRX (BTS side) */
Vadim Yanitskiy44ff2142019-01-12 07:04:58 +0700164 port TRXC_CODEC_PT BTS_TRXC;
165 var integer g_bts_trxc_conn_id;
Harald Welte70767382018-02-21 12:16:40 +0100166
167 timer g_Tguard;
168 timer g_Tmeas_exp := 2.0; /* >= 103 SACCH multiframe ~ 500ms */
169
170 var ConnHdlrPars g_pars;
171 var uint8_t g_next_meas_res_nr := 0;
Harald Weltefa45e9e2018-03-10 18:59:03 +0100172 var boolean g_first_meas_res := true;
Harald Weltef26de0b2018-04-04 20:28:05 +0200173
174 /* PCU Interface of BTS */
175 port PCUIF_CODEC_PT PCU;
Harald Welte70767382018-02-21 12:16:40 +0100176}
177
178function f_init_rsl(charstring id) runs on test_CT {
179 vc_IPA := IPA_Emulation_CT.create(id & "-RSL-IPA");
180 vc_RSL := RSL_Emulation_CT.create(id & "-RSL");
181
182 map(vc_IPA:IPA_PORT, system:IPA_CODEC_PT);
183 connect(vc_IPA:IPA_RSL_PORT, vc_RSL:IPA_PT);
184 connect(self:RSL_CCHAN, vc_RSL:CCHAN_PT);
185
186 vc_IPA.start(IPA_Emulation.main_server(mp_rsl_ip, mp_rsl_port));
187 vc_RSL.start(RSL_Emulation.main(false));
188}
189
190type record ConnHdlrPars {
191 RslChannelNr chan_nr,
192 RSL_IE_ChannelMode chan_mode,
193 float t_guard,
Harald Welte0472ab42018-03-12 15:02:26 +0100194 ConnL1Pars l1_pars,
Harald Weltee613f962018-04-18 22:38:16 +0200195 TestSpecUnion spec optional,
Eric Wild61edb7e2019-06-03 12:38:31 +0200196 RSL_IE_EncryptionInfo encr optional,
197 BtsBand bts0_band optional
Harald Welte0472ab42018-03-12 15:02:26 +0100198}
199
200/* Test-specific parameters */
201type union TestSpecUnion {
202 RllTestCase rll
Harald Welte70767382018-02-21 12:16:40 +0100203}
204
Harald Welte82ccef72018-02-25 16:17:33 +0100205template (value) RachControlParameters ts_RachCtrl_default := {
Harald Welte0fd1fb02018-03-10 17:19:50 +0100206 max_retrans := RACH_MAX_RETRANS_7,
207 tx_integer := '1001'B, /* 12 slots */
Harald Welte82ccef72018-02-25 16:17:33 +0100208 cell_barr_access := false,
209 re_not_allowed := true,
Harald Welteb9585f82018-03-10 17:18:47 +0100210 acc := '0000010000000000'B
Harald Welte82ccef72018-02-25 16:17:33 +0100211};
212
Harald Weltef10153f2018-02-25 16:34:05 +0100213template (value) CellSelectionParameters ts_CellSelPar_default := {
Harald Welte0fd1fb02018-03-10 17:19:50 +0100214 cell_resel_hyst_2dB := 2,
Pau Espin Pedroled359cb2018-09-28 16:08:24 +0200215 ms_txpwr_max_cch := mp_ms_power_level_exp,
Harald Weltef10153f2018-02-25 16:34:05 +0100216 acs := '0'B,
217 neci := true,
218 rxlev_access_min := 0
219}
220
221template (value) LocationAreaIdentification ts_LAI_default := {
222 mcc_mnc := '262F42'H,
223 lac := 42
224}
225
Harald Welte7484fc42018-02-24 14:09:45 +0100226/* Default SYSTEM INFORMATION 3 */
Harald Weltef8df4cb2018-03-10 15:15:08 +0100227template (value) SystemInformation ts_SI3_default := {
228 header := ts_RrHeader(SYSTEM_INFORMATION_TYPE_3, 18),
Harald Welte7484fc42018-02-24 14:09:45 +0100229 payload := {
230 si3 := {
231 cell_id := 23,
Harald Weltef10153f2018-02-25 16:34:05 +0100232 lai := ts_LAI_default,
Harald Welte7484fc42018-02-24 14:09:45 +0100233 ctrl_chan_desc := {
234 msc_r99 := true,
235 att := true,
236 bs_ag_blks_res := 1,
237 ccch_conf := CCHAN_DESC_1CCCH_COMBINED,
Harald Welte82ccef72018-02-25 16:17:33 +0100238 si22ind := false,
Harald Welte7484fc42018-02-24 14:09:45 +0100239 cbq3 := CBQ3_IU_MODE_NOT_SUPPORTED,
240 spare := '00'B,
241 bs_pa_mfrms := 0, /* 2 multiframes */
242 t3212 := 1 /* 6 minutes */
243 },
Harald Welte82ccef72018-02-25 16:17:33 +0100244 cell_options := {
Harald Welte7484fc42018-02-24 14:09:45 +0100245 dn_ind := false,
246 pwrc := false,
247 dtx := MS_MAY_USE_UL_DTX,
Harald Welte0fd1fb02018-03-10 17:19:50 +0100248 radio_link_tout_div4 := (32/4)-1
Harald Welte7484fc42018-02-24 14:09:45 +0100249 },
Harald Weltef10153f2018-02-25 16:34:05 +0100250 cell_sel_par := ts_CellSelPar_default,
Harald Welte82ccef72018-02-25 16:17:33 +0100251 rach_control := ts_RachCtrl_default,
Harald Weltebe030482019-05-27 22:29:35 +0200252 rest_octets := '2C2B2B2B'O /* GPRS present */
Harald Welte7484fc42018-02-24 14:09:45 +0100253 }
254 }
255}
Harald Welte70767382018-02-21 12:16:40 +0100256
Harald Weltef8df4cb2018-03-10 15:15:08 +0100257template (value) SystemInformation ts_SI2_default := {
258 header := ts_RrHeader(SYSTEM_INFORMATION_TYPE_2, 22),
Harald Weltef10153f2018-02-25 16:34:05 +0100259 payload := {
260 si2 := {
261 bcch_freq_list := '00000000000000000000000000000000'O,
262 ncc_permitted := '11111111'B,
263 rach_control := ts_RachCtrl_default
264 }
265 }
266}
267
Harald Weltef8df4cb2018-03-10 15:15:08 +0100268template (value) SystemInformation ts_SI4_default := {
269 header := ts_RrHeader(SYSTEM_INFORMATION_TYPE_4, 12), /* no CBCH / restoct */
Harald Weltef10153f2018-02-25 16:34:05 +0100270 payload := {
271 si4 := {
272 lai := ts_LAI_default,
273 cell_sel_par := ts_CellSelPar_default,
274 rach_control := ts_RachCtrl_default,
275 cbch_chan_desc := omit,
276 cbch_mobile_alloc := omit,
277 rest_octets := ''O
278 }
279 }
280}
281
282function f_rsl_bcch_fill_raw(RSL_IE_SysinfoType rsl_si_type, octetstring si_enc)
283runs on test_CT {
284 log("Setting ", rsl_si_type, ": ", si_enc);
285 RSL_CCHAN.send(ts_RSL_UD(ts_RSL_BCCH_INFO(rsl_si_type, si_enc)));
286}
287
288function f_rsl_bcch_fill(RSL_IE_SysinfoType rsl_si_type, template (value) SystemInformation si_dec)
289runs on test_CT {
290 var octetstring si_enc := enc_SystemInformation(valueof(si_dec));
291 log("Setting ", rsl_si_type, ": ", si_dec);
292 f_rsl_bcch_fill_raw(rsl_si_type, si_enc);
293}
294
Harald Welte505cf9b2018-09-15 17:47:23 +0300295friend function f_init_vty(charstring id) runs on test_CT {
Harald Welte8da48242018-02-27 20:41:32 +0100296 map(self:BTSVTY, system:BTSVTY);
297 f_vty_set_prompts(BTSVTY);
298 f_vty_transceive(BTSVTY, "enable");
299}
300
Harald Welte505cf9b2018-09-15 17:47:23 +0300301friend function f_init_vty_bsc() runs on test_CT {
Harald Weltef50e3ae2018-09-10 10:27:56 +0200302 map(self:BSCVTY, system:BSCVTY);
303 f_vty_set_prompts(BSCVTY, "OsmoBSC");
304 f_vty_transceive(BSCVTY, "enable");
305}
306
Harald Welte883340c2018-02-28 18:59:29 +0100307/* PCU socket may at any time receive a new INFO.ind */
Harald Weltef26de0b2018-04-04 20:28:05 +0200308private altstep as_pcu_info_ind(PCUIF_CODEC_PT pt, integer pcu_conn_id,
309 out PCUIF_Message pcu_last_info) {
Harald Welte883340c2018-02-28 18:59:29 +0100310 var PCUIF_send_data sd;
Harald Weltef26de0b2018-04-04 20:28:05 +0200311 [] pt.receive(t_SD_PCUIF(pcu_conn_id, tr_PCUIF_INFO_IND(0, ?))) -> value sd {
312 pcu_last_info := sd.data;
Harald Welted378a252018-03-13 17:02:14 +0100313 }
Harald Weltef26de0b2018-04-04 20:28:05 +0200314 [] pt.receive(t_SD_PCUIF(pcu_conn_id, tr_PCUIF_INFO_IND(?, ?, ?))) -> value sd {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +0200315 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Invalid PCU Version/BTS Number received");
Harald Welte883340c2018-02-28 18:59:29 +0100316 }
317}
318
Harald Weltef26de0b2018-04-04 20:28:05 +0200319private function f_init_pcu(PCUIF_CODEC_PT pt, charstring id,
320 out integer pcu_conn_id, out PCUIF_Message pcu_last_info) {
Harald Welte883340c2018-02-28 18:59:29 +0100321 timer T := 2.0;
322 var PCUIF_send_data sd;
Harald Welte84271622018-03-10 17:21:03 +0100323 if (mp_pcu_socket == "") {
Harald Weltef26de0b2018-04-04 20:28:05 +0200324 pcu_conn_id := -1;
Harald Welte84271622018-03-10 17:21:03 +0100325 return;
326 }
Harald Weltef26de0b2018-04-04 20:28:05 +0200327 pcu_conn_id := f_pcuif_connect(pt, mp_pcu_socket);
Harald Welte883340c2018-02-28 18:59:29 +0100328
329 T.start;
330 alt {
Harald Weltef26de0b2018-04-04 20:28:05 +0200331 [] as_pcu_info_ind(pt, pcu_conn_id, pcu_last_info);
Harald Welte883340c2018-02-28 18:59:29 +0100332 [] T.timeout {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +0200333 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for PCU INFO_IND");
Harald Welte883340c2018-02-28 18:59:29 +0100334 }
335 }
336}
337
Vadim Yanitskiyf4e997c2019-06-04 21:40:33 +0700338private function f_init_trxc(TRXC_CODEC_PT pt, charstring id,
339 out integer trxc_conn_id) {
340 var Result res;
341
342 res := TRXC_CodecPort_CtrlFunct.f_IPL4_connect(pt, mp_bts_trxc_ip, mp_bts_trxc_port,
343 "", -1, -1, { udp := {} }, {});
344 if (not ispresent(res.connId)) {
345 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
346 "Could not connect to the control (TRXC) interface " &
347 "of FakeTRX, check your configuration");
348 }
349 trxc_conn_id := res.connId;
350}
351
Harald Welte70767382018-02-21 12:16:40 +0100352/* global init function */
Harald Welte10474062019-05-30 16:48:17 +0200353function f_init() runs on test_CT {
354 var charstring id := testcasename();
Pau Espin Pedrol315e4712018-11-01 16:27:07 +0100355 timer T := mp_ipa_up_timeout;
Harald Welte629cc6b2018-03-11 17:19:05 +0100356 g_AllChannels := {
357 /* TS 1..4: TCH/F */
358 valueof(ts_RslChanNr_Bm(1)), valueof(ts_RslChanNr_Bm(2)),
359 valueof(ts_RslChanNr_Bm(3)), valueof(ts_RslChanNr_Bm(4)),
360 /* TS 5: TCH/H */
361 valueof(ts_RslChanNr_Lm(5,0)), valueof(ts_RslChanNr_Lm(5,1)),
362 /* TS 0: SDCCH/4 */
363 valueof(ts_RslChanNr_SDCCH4(0,0)), valueof(ts_RslChanNr_SDCCH4(0,1)),
364 valueof(ts_RslChanNr_SDCCH4(0,2)), valueof(ts_RslChanNr_SDCCH4(0,3)),
365 /* TS 6: SDCCH/8 */
366 valueof(ts_RslChanNr_SDCCH8(6,0)), valueof(ts_RslChanNr_SDCCH8(6,1)),
367 valueof(ts_RslChanNr_SDCCH8(6,2)), valueof(ts_RslChanNr_SDCCH8(6,3)),
368 valueof(ts_RslChanNr_SDCCH8(6,4)), valueof(ts_RslChanNr_SDCCH8(6,5)),
369 valueof(ts_RslChanNr_SDCCH8(6,6)), valueof(ts_RslChanNr_SDCCH8(6,7))
370 };
371
Pau Espin Pedrol3dcf38f2018-10-22 14:07:54 +0200372 /* FIXME: FACCH/H is unreliable with calypso firmware, see OS#3653 */
Vadim Yanitskiy44ff2142019-01-12 07:04:58 +0700373 if (mp_bts_trxc_port != -1) {
Pau Espin Pedrol3dcf38f2018-10-22 14:07:54 +0200374 g_AllChanTypes := {
375 /* TS 1..4: TCH/F */
376 valueof(ts_RslChanNr_Bm(1)),
377 /* TS 5: TCH/H */
378 valueof(ts_RslChanNr_Lm(5,1)),
379 /* TS 0: SDCCH/4 */
380 valueof(ts_RslChanNr_SDCCH4(0,2)),
381 /* TS 6: SDCCH/8 */
382 valueof(ts_RslChanNr_SDCCH8(6,4))
383 };
384 } else {
385 g_AllChanTypes := {
386 /* TS 1..4: TCH/F */
387 valueof(ts_RslChanNr_Bm(1)),
388 /* TS 0: SDCCH/4 */
389 valueof(ts_RslChanNr_SDCCH4(0,2)),
390 /* TS 6: SDCCH/8 */
391 valueof(ts_RslChanNr_SDCCH8(6,4))
392 };
393 }
Harald Welte70767382018-02-21 12:16:40 +0100394 f_init_rsl(id);
Harald Welte83f6dbf2018-06-03 18:26:50 +0200395 T.start;
396 alt {
397 [] RSL_CCHAN.receive(ASP_IPA_Event:{up_down := ASP_IPA_EVENT_UP});
398 [] T.timeout {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +0200399 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for ASP_IPA_EVENT_UP");
Harald Welte83f6dbf2018-06-03 18:26:50 +0200400 }
401 }
Harald Welte2d142592018-02-25 13:19:44 +0100402 f_sleep(0.5); /* workaround for OS#3000 */
Harald Welte8da48242018-02-27 20:41:32 +0100403 f_init_vty(id);
Neels Hofmeyr6a84b232018-04-03 19:12:36 +0200404 f_ipa_ctrl_start(mp_ctrl_ip, mp_ctrl_port);
Harald Welte7484fc42018-02-24 14:09:45 +0100405
406 /* Send SI3 to the BTS, it is needed for various computations */
Harald Weltef10153f2018-02-25 16:34:05 +0100407 f_rsl_bcch_fill(RSL_SYSTEM_INFO_3, ts_SI3_default);
408 /* SI2 + SI4 are required for SI testing as they are mandatory defaults */
409 f_rsl_bcch_fill(RSL_SYSTEM_INFO_2, ts_SI2_default);
410 f_rsl_bcch_fill(RSL_SYSTEM_INFO_4, ts_SI4_default);
Harald Welte57fe8232018-02-26 17:52:50 +0100411
Harald Weltef26de0b2018-04-04 20:28:05 +0200412 map(self:PCU, system:PCU);
413 f_init_pcu(PCU, id, g_pcu_conn_id, g_pcu_last_info);
Harald Welte883340c2018-02-28 18:59:29 +0100414
Vadim Yanitskiy44ff2142019-01-12 07:04:58 +0700415 if (mp_bts_trxc_port != -1) {
Harald Welte84271622018-03-10 17:21:03 +0100416 var TrxcMessage ret;
Vadim Yanitskiyf4e997c2019-06-04 21:40:33 +0700417
418 /* Init TRXC interface to FakeTRX */
419 map(self:BTS_TRXC, system:BTS_TRXC);
420 f_init_trxc(BTS_TRXC, id, g_bts_trxc_conn_id);
421
Vadim Yanitskiy10d72462019-06-04 22:27:52 +0700422 /* Start with a default moderate timing offset equalling TA=2, and RSSI=-60 */
Vadim Yanitskiy44ff2142019-01-12 07:04:58 +0700423 ret := f_TRXC_transceive(BTS_TRXC, g_bts_trxc_conn_id, valueof(ts_TRXC_FAKE_TIMING(2*256)));
Vadim Yanitskiy10d72462019-06-04 22:27:52 +0700424 ret := f_TRXC_transceive(BTS_TRXC, g_bts_trxc_conn_id, valueof(ts_TRXC_FAKE_RSSI(-60)));
Vadim Yanitskiyde535e02019-07-26 16:29:27 +0700425 /* OsmoBTS may have different AB / NB threshold (see MIN_QUAL_NORM, MIN_QUAL_RACH) */
426 ret := f_TRXC_transceive(BTS_TRXC, g_bts_trxc_conn_id, valueof(ts_TRXC_FAKE_CI(60)));
Harald Welte84271622018-03-10 17:21:03 +0100427 }
Philipp Maierd95f3402019-04-18 17:50:52 +0200428
429 /* Wait some extra time to make sure the BTS emits a stable carrier.
430 * (this is only relevant when running the tests with a physical BTS.) */
431 f_sleep(mp_ipa_up_delay);
Harald Welte70767382018-02-21 12:16:40 +0100432}
433
Harald Welte68e495b2018-02-25 00:05:57 +0100434/* Attach L1CTL to master test_CT (classic tests, non-handler mode) */
435function f_init_l1ctl() runs on test_CT {
436 map(self:L1CTL, system:L1CTL);
437 f_connect_reset(L1CTL);
438}
439
Harald Welte70767382018-02-21 12:16:40 +0100440type function void_fn(charstring id) runs on ConnHdlr;
441
442/* create a new test component */
Vadim Yanitskiyf4e997c2019-06-04 21:40:33 +0700443function f_start_handler(void_fn fn, ConnHdlrPars pars,
444 boolean pcu_comp := false,
445 boolean trxc_comp := false)
Harald Welte70767382018-02-21 12:16:40 +0100446runs on test_CT return ConnHdlr {
447 var charstring id := testcasename();
448 var ConnHdlr vc_conn;
449
450 vc_conn := ConnHdlr.create(id);
451 /* connect to RSL Emulation main component */
452 connect(vc_conn:RSL, vc_RSL:CLIENT_PT);
453 connect(vc_conn:RSL_PROC, vc_RSL:RSL_PROC);
Vadim Yanitskiyf4e997c2019-06-04 21:40:33 +0700454
455 /* The ConnHdlr component may want to talk to some ports directly,
456 * so we disconnect it from the test_CT and connect it to the component.
457 * This obviously only works for one component, i.e. no concurrency. */
Harald Weltef26de0b2018-04-04 20:28:05 +0200458 if (pcu_comp) {
Harald Weltef26de0b2018-04-04 20:28:05 +0200459 unmap(self:PCU, system:PCU);
460 map(vc_conn:PCU, system:PCU);
461 }
Vadim Yanitskiyf4e997c2019-06-04 21:40:33 +0700462 if (trxc_comp) {
463 unmap(self:BTS_TRXC, system:BTS_TRXC);
464 map(vc_conn:BTS_TRXC, system:BTS_TRXC);
465 }
Harald Welte70767382018-02-21 12:16:40 +0100466
467 vc_conn.start(f_handler_init(fn, id, pars));
468 return vc_conn;
469}
470
Harald Welte7484fc42018-02-24 14:09:45 +0100471template ASP_RSL_Unitdata ts_RSL_UD(template RSL_Message rsl, IpaStreamId sid := IPAC_PROTO_RSL_TRX0) := {
472 streamId := sid,
473 rsl := rsl
474}
475
476template ASP_RSL_Unitdata tr_RSL_UD(template RSL_Message rsl,
477 template IpaStreamId sid := IPAC_PROTO_RSL_TRX0) := {
478 streamId := sid,
479 rsl := rsl
480}
481
Harald Welte70767382018-02-21 12:16:40 +0100482private altstep as_Tguard() runs on ConnHdlr {
483 [] g_Tguard.timeout {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +0200484 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Tguard timeout");
Harald Welte70767382018-02-21 12:16:40 +0100485 }
486}
487
Harald Welte990a3612019-05-27 14:02:13 +0200488friend function f_l1_tune(L1CTL_PT L1CTL, L1ctlCcchMode ccch_mode := CCCH_MODE_COMBINED) {
489 f_L1CTL_FBSB(L1CTL, { false, mp_trx0_arfcn }, ccch_mode, mp_rxlev_exp);
Harald Welte70767382018-02-21 12:16:40 +0100490}
491
Vadim Yanitskiy2f01fbd2019-06-01 01:32:48 +0700492private function f_trxc_fake_rssi(TRXC_RSSI rssi) runs on ConnHdlr {
Harald Weltef8df4cb2018-03-10 15:15:08 +0100493 var TrxcMessage ret;
Vadim Yanitskiy44ff2142019-01-12 07:04:58 +0700494 ret := f_TRXC_transceive(BTS_TRXC, g_bts_trxc_conn_id, valueof(ts_TRXC_FAKE_RSSI(rssi)));
Harald Welte70767382018-02-21 12:16:40 +0100495}
496
Vadim Yanitskiydc8db922019-06-04 21:58:15 +0700497private function f_trxc_fake_toffs256(int16_t toffs256) runs on ConnHdlr {
Harald Weltef8df4cb2018-03-10 15:15:08 +0100498 var TrxcMessage ret;
Vadim Yanitskiy44ff2142019-01-12 07:04:58 +0700499 ret := f_TRXC_transceive(BTS_TRXC, g_bts_trxc_conn_id, valueof(ts_TRXC_FAKE_TIMING(toffs256)));
Harald Welte70767382018-02-21 12:16:40 +0100500}
501
502/* first function started in ConnHdlr component */
503private function f_handler_init(void_fn fn, charstring id, ConnHdlrPars pars)
504runs on ConnHdlr {
505 g_pars := pars;
506 g_chan_nr := pars.chan_nr;
507
508 map(self:L1CTL, system:L1CTL);
509 f_connect_reset(L1CTL);
510
Harald Welted48c0c72019-06-05 10:01:15 +0200511 if (mp_bts_trxc_port != -1 and BTS_TRXC.checkstate("Mapped")) {
Vadim Yanitskiyf4e997c2019-06-04 21:40:33 +0700512 f_init_trxc(BTS_TRXC, id, g_bts_trxc_conn_id);
Harald Welte84271622018-03-10 17:21:03 +0100513 }
Harald Welte70767382018-02-21 12:16:40 +0100514
515 g_Tguard.start(pars.t_guard);
516 activate(as_Tguard());
517
518 f_rslem_register(0, pars.chan_nr);
519
520 /* call the user-supplied test case function */
521 fn.apply(id);
522}
523
Harald Welteb1726c92018-03-30 11:56:38 +0200524function f_rsl_transceive_ret(template RSL_Message tx, template RSL_Message exp_rx, charstring id,
525 boolean ignore_other := false)
526runs on ConnHdlr return RSL_Message {
527 var RSL_Message rx;
Harald Welte1eba3742018-02-25 12:48:14 +0100528 timer T := 3.0;
529 RSL.send(tx);
530 T.start;
Harald Welte70767382018-02-21 12:16:40 +0100531 alt {
Harald Welteb1726c92018-03-30 11:56:38 +0200532 [] RSL.receive(exp_rx) -> value rx {
Harald Welte1eba3742018-02-25 12:48:14 +0100533 T.stop;
534 setverdict(pass);
Harald Welte70767382018-02-21 12:16:40 +0100535 }
Harald Welte1eba3742018-02-25 12:48:14 +0100536 [] T.timeout {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +0200537 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout expecting " & id);
Harald Welte1eba3742018-02-25 12:48:14 +0100538 }
Harald Welte21240e62018-03-11 21:43:35 +0100539 [not ignore_other] as_l1_sacch();
540 [not ignore_other] as_meas_res();
541 [not ignore_other] as_l1_dcch();
542 [not ignore_other] RSL.receive {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +0200543 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Unexpected RSL message received");
Harald Welte70767382018-02-21 12:16:40 +0100544 }
Harald Welte21240e62018-03-11 21:43:35 +0100545 [ignore_other] RSL.receive { repeat; }
Harald Welte70767382018-02-21 12:16:40 +0100546 }
Harald Welteb1726c92018-03-30 11:56:38 +0200547 return rx;
548}
549
550function f_rsl_transceive(template RSL_Message tx, template RSL_Message exp_rx, charstring id,
551 boolean ignore_other := false)
552runs on ConnHdlr {
553 var RSL_Message rx := f_rsl_transceive_ret(tx, exp_rx, id, ignore_other);
Harald Welte70767382018-02-21 12:16:40 +0100554}
555
Harald Welte8b01c792019-05-19 22:51:25 +0200556function f_rsl_chan_act(RSL_IE_ChannelMode mode, boolean encr_enable := false, RSL_IE_List more_ies := {},
557 RSL_IE_ActivationType act_type := t_RSL_IE_ActType_IA) runs on ConnHdlr {
558 var RSL_Message ch_act := valueof(ts_RSL_CHAN_ACT(g_chan_nr, mode, act_type));
Harald Weltee613f962018-04-18 22:38:16 +0200559 if (encr_enable) {
560 /* append encryption related IEs, if requested */
561 var RSL_IE_EncryptionInfo encr_info;
562 encr_info := valueof(ts_RSL_IE_EncrInfo(g_pars.encr.alg_id, g_pars.encr.key));
563 ch_act.ies := ch_act.ies & { valueof(t_RSL_IE(RSL_IE_ENCR_INFO, RSL_IE_Body:{encr_info :=
564encr_info})) };
565 }
Harald Weltec8d363c2019-05-19 20:36:48 +0200566 ch_act.ies := ch_act.ies & more_ies;
Harald Weltee613f962018-04-18 22:38:16 +0200567 f_rsl_transceive(ch_act, tr_RSL_CHAN_ACT_ACK(g_chan_nr), "RSL CHAN ACT");
Harald Welte1eba3742018-02-25 12:48:14 +0100568}
569
Harald Welte70767382018-02-21 12:16:40 +0100570function f_rsl_chan_deact() runs on ConnHdlr {
Harald Welte1eba3742018-02-25 12:48:14 +0100571 f_rsl_transceive(ts_RSL_RF_CHAN_REL(g_chan_nr), tr_RSL_RF_CHAN_REL_ACK(g_chan_nr),
Harald Welte21240e62018-03-11 21:43:35 +0100572 "RF CHAN REL", true);
Harald Welte70767382018-02-21 12:16:40 +0100573}
574
Harald Welte2f2b2b72019-05-31 22:24:57 +0200575friend template ConnHdlrPars t_Pars(template RslChannelNr chan_nr,
Harald Welte70767382018-02-21 12:16:40 +0100576 template RSL_IE_ChannelMode chan_mode,
577 float t_guard := 20.0) := {
578 chan_nr := valueof(chan_nr),
579 chan_mode := valueof(chan_mode),
580 t_guard := t_guard,
581 l1_pars := {
582 dtx_enabled := false,
Harald Welte685d5982018-02-27 20:42:05 +0100583 toa256_enabled := false,
Harald Welte70767382018-02-21 12:16:40 +0100584 meas_ul := {
585 full := {
Pau Espin Pedrole9571aa2018-10-22 17:13:07 +0200586 rxlev := mp_ul_rxlev_exp,
Harald Welte70767382018-02-21 12:16:40 +0100587 rxqual := 0
588 },
589 sub := {
Pau Espin Pedrole9571aa2018-10-22 17:13:07 +0200590 rxlev := mp_ul_rxlev_exp,
Harald Welte70767382018-02-21 12:16:40 +0100591 rxqual := 0
592 }
593 },
Pau Espin Pedrol121724c2018-09-28 15:58:12 +0200594 timing_offset_256syms := mp_timing_offset_256syms_exp,
Harald Welte70767382018-02-21 12:16:40 +0100595 bs_power_level := 0,
Pau Espin Pedroled359cb2018-09-28 16:08:24 +0200596 ms_power_level := mp_ms_power_level_exp,
Pau Espin Pedrol121724c2018-09-28 15:58:12 +0200597 ms_actual_ta := mp_ms_actual_ta_exp
Harald Welte0472ab42018-03-12 15:02:26 +0100598 },
Harald Weltee613f962018-04-18 22:38:16 +0200599 spec := omit,
Eric Wild61edb7e2019-06-03 12:38:31 +0200600 encr := omit,
601 bts0_band := omit
Harald Welte70767382018-02-21 12:16:40 +0100602}
603
Harald Welte93640c62018-02-25 16:59:33 +0100604/***********************************************************************
605 * Channel Activation / Deactivation
606 ***********************************************************************/
607
Harald Welte70767382018-02-21 12:16:40 +0100608/* Stress test: Do 500 channel activations/deactivations in rapid succession */
609function f_TC_chan_act_stress(charstring id) runs on ConnHdlr {
610 for (var integer i := 0; i < 500; i := i+1) {
611 f_rsl_chan_act(g_pars.chan_mode);
612 f_rsl_chan_deact();
613 }
614 setverdict(pass);
615}
616testcase TC_chan_act_stress() runs on test_CT {
617 var ConnHdlr vc_conn;
618 var ConnHdlrPars pars := valueof(t_Pars(t_RslChanNr_Bm(1), ts_RSL_ChanMode_SIGN));
Harald Welte10474062019-05-30 16:48:17 +0200619 f_init();
Harald Welte70767382018-02-21 12:16:40 +0100620 vc_conn := f_start_handler(refers(f_TC_chan_act_stress), pars);
621 vc_conn.done;
Daniel Willmann0fcc4d32018-10-23 20:32:19 +0200622 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte70767382018-02-21 12:16:40 +0100623}
624
625/* Test if re-activation of an already active channel fails as expected */
626function f_TC_chan_act_react(charstring id) runs on ConnHdlr {
627 f_rsl_chan_act(g_pars.chan_mode);
628 /* attempt to activate the same lchan again -> expect reject */
629 RSL.send(ts_RSL_CHAN_ACT(g_chan_nr, g_pars.chan_mode));
630 alt {
631 [] RSL.receive(tr_RSL_CHAN_ACT_ACK(g_chan_nr)) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +0200632 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Unexpected CHAN ACT ACK on double activation");
Harald Welte70767382018-02-21 12:16:40 +0100633 }
634 [] RSL.receive(tr_RSL_CHAN_ACT_NACK(g_chan_nr)) {
635 setverdict(pass);
636 }
637 }
638 f_rsl_chan_deact();
639}
640testcase TC_chan_act_react() runs on test_CT {
641 var ConnHdlr vc_conn;
642 var ConnHdlrPars pars := valueof(t_Pars(t_RslChanNr_Bm(1), ts_RSL_ChanMode_SIGN));
Harald Welte294b0a22018-03-10 23:26:48 +0100643 f_init();
Harald Welte70767382018-02-21 12:16:40 +0100644 vc_conn := f_start_handler(refers(f_TC_chan_act_react), pars);
645 vc_conn.done;
Daniel Willmann0fcc4d32018-10-23 20:32:19 +0200646 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte70767382018-02-21 12:16:40 +0100647}
648
649/* Attempt to de-activate a channel that's not active */
650function f_TC_chan_deact_not_active(charstring id) runs on ConnHdlr {
651 timer T := 3.0;
652 RSL.send(ts_RSL_RF_CHAN_REL(g_chan_nr));
653 T.start;
654 alt {
655 [] RSL.receive(tr_RSL_RF_CHAN_REL_ACK(g_chan_nr)) {
656 setverdict(pass);
657 }
658 [] T.timeout {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +0200659 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout expecting RF_CHAN_REL_ACK");
Harald Welte70767382018-02-21 12:16:40 +0100660 }
661 }
662}
663testcase TC_chan_deact_not_active() runs on test_CT {
664 var ConnHdlrPars pars := valueof(t_Pars(t_RslChanNr_Bm(1), ts_RSL_ChanMode_SIGN));
Harald Welte294b0a22018-03-10 23:26:48 +0100665 f_init();
Harald Welte70767382018-02-21 12:16:40 +0100666 var ConnHdlr vc_conn := f_start_handler(refers(f_TC_chan_deact_not_active), pars);
667 vc_conn.done;
Daniel Willmann0fcc4d32018-10-23 20:32:19 +0200668 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte70767382018-02-21 12:16:40 +0100669}
670
671/* attempt to activate channel with wrong RSL Channel Nr IE; expect NACK */
672function f_TC_chan_act_wrong_nr(charstring id) runs on ConnHdlr {
673 RSL.send(ts_RSL_CHAN_ACT(g_chan_nr, g_pars.chan_mode));
674 alt {
675 [] RSL.receive(tr_RSL_CHAN_ACT_ACK(g_chan_nr)) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +0200676 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Unexpected CHAN ACT ACK");
Harald Welte70767382018-02-21 12:16:40 +0100677 }
678 [] RSL.receive(tr_RSL_CHAN_ACT_NACK(g_chan_nr)) {
679 setverdict(pass);
680 }
681 }
682}
683private type record WrongChanNrCase {
684 RslChannelNr chan_nr,
685 charstring description
686}
687private type record of WrongChanNrCase WrongChanNrCases;
688private template WrongChanNrCase t_WCN(template RslChannelNr chan_nr, charstring desc) := {
689 chan_nr := chan_nr,
690 description := desc
691}
692
693testcase TC_chan_act_wrong_nr() runs on test_CT {
694 var ConnHdlr vc_conn;
695 var ConnHdlrPars pars;
696
Harald Welte294b0a22018-03-10 23:26:48 +0100697 f_init();
Harald Welte70767382018-02-21 12:16:40 +0100698
699 var WrongChanNrCases wrong := {
700 valueof(t_WCN(t_RslChanNr_RACH(0), "RACH is not a dedicated channel")),
701 valueof(t_WCN(t_RslChanNr_RACH(1), "RACH doesn't exist on timeslot")),
702 valueof(t_WCN(t_RslChanNr_BCCH(0), "BCCH is not a dedicated channel")),
703 valueof(t_WCN(t_RslChanNr_PCH_AGCH(0), "PCH/AGCH is not a dedicated channel")),
704 valueof(t_WCN(t_RslChanNr_Bm(0), "TS0 cannot be TCH/F")),
705 valueof(t_WCN(t_RslChanNr_Lm(0, 0), "TS0 cannot be TCH/H")),
706 valueof(t_WCN(t_RslChanNr_Lm(0, 1), "TS0 cannot be TCH/H")),
707 valueof(t_WCN(t_RslChanNr_PDCH(0), "TS0 cannot be PDCH")),
708 valueof(t_WCN(t_RslChanNr_SDCCH8(0, 0), "TS0 cannot be SDCCH/8")),
709 valueof(t_WCN(t_RslChanNr_SDCCH8(0, 7), "TS0 cannot be SDCCH/8")),
710 valueof(t_WCN(t_RslChanNr_SDCCH4(7, 0), "TS7 cannot be SDCCH/4")),
711 valueof(t_WCN(t_RslChanNr_SDCCH4(7, 3), "TS7 cannot be SDCCH/4")),
712 valueof(t_WCN(t_RslChanNr_Lm(1, 0), "TS1 cannot be TCH/H"))
713 };
714
715 for (var integer i := 0; i < sizeof(wrong); i := i+1) {
716 pars := valueof(t_Pars(wrong[i].chan_nr, ts_RSL_ChanMode_SIGN));
717 vc_conn := f_start_handler(refers(f_TC_chan_act_wrong_nr), pars);
718 vc_conn.done;
719 }
Daniel Willmann0fcc4d32018-10-23 20:32:19 +0200720 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte70767382018-02-21 12:16:40 +0100721}
722
Harald Weltee613f962018-04-18 22:38:16 +0200723/* execute the same callback function on a variety of logical channels */
Harald Welte2f2b2b72019-05-31 22:24:57 +0200724friend function f_testmatrix_each_chan(ConnHdlrPars pars, void_fn fn) runs on test_CT {
Harald Weltee613f962018-04-18 22:38:16 +0200725 var ConnHdlr vc_conn;
Harald Welte10474062019-05-30 16:48:17 +0200726 f_init();
Harald Weltee613f962018-04-18 22:38:16 +0200727
728 /* test on each of the channels we have */
729 for (var integer i := 0; i < sizeof(g_AllChanTypes); i := i+1) {
730 pars.chan_nr := valueof(g_AllChanTypes[i]);
731
732 log(testcasename(), ": XXX Starting on ", g_AllChanTypes[i]);
733 vc_conn := f_start_handler(fn, pars);
734 vc_conn.done;
735 }
736
Daniel Willmann0fcc4d32018-10-23 20:32:19 +0200737 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Weltee613f962018-04-18 22:38:16 +0200738}
739
Harald Welte93640c62018-02-25 16:59:33 +0100740/***********************************************************************
Harald Welte629cc6b2018-03-11 17:19:05 +0100741 * SACCH handling
742 ***********************************************************************/
743
744private function f_exp_sacch(boolean exp) runs on ConnHdlr {
745 timer T_sacch := 3.0;
746 T_sacch.start;
747 alt {
748 [not exp] L1CTL.receive(tr_L1CTL_DATA_IND(g_chan_nr, tr_RslLinkID_SACCH(0))) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +0200749 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Received SACCH when not expecting it");
Harald Welte629cc6b2018-03-11 17:19:05 +0100750 }
751 [not exp] T_sacch.timeout {
752 setverdict(pass);
753 }
754 [exp] L1CTL.receive(tr_L1CTL_DATA_IND(g_chan_nr, tr_RslLinkID_SACCH(0))) {
755 setverdict(pass);
756 }
757 [exp] T_sacch.timeout {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +0200758 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, log2str("Timeout waiting for SACCH on ", g_chan_nr));
Harald Welte629cc6b2018-03-11 17:19:05 +0100759 }
760 [] L1CTL.receive { repeat; }
761 [] RSL.receive { repeat; }
762 }
763}
764
765/* Test if DEACTIVATE SACCH actualy deactivates its transmission (TS 48.058 4.6) */
766private function f_TC_deact_sacch(charstring id) runs on ConnHdlr {
767 f_l1_tune(L1CTL);
768 RSL.clear;
769
770 /* activate the logical channel */
771 f_est_dchan();
772 L1CTL.clear;
773
774 /* check that SACCH actually are received as expected */
775 f_exp_sacch(true);
776
777 /* deactivate SACCH on the logical channel */
778 RSL.send(ts_RSL_DEACT_SACCH(g_chan_nr));
779 f_sleep(1.0);
780 L1CTL.clear;
781
782 /* check that no SACCH are received anymore */
783 f_exp_sacch(false);
784
785 /* release the channel */
786 f_rsl_chan_deact();
787 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
788}
789testcase TC_deact_sacch() runs on test_CT {
790 var ConnHdlr vc_conn;
791 var ConnHdlrPars pars;
792 f_init();
793 for (var integer i := 0; i < sizeof(g_AllChannels); i := i+1) {
794 //for (var integer i := 0; i < 1; i := i+1) {
795 pars := valueof(t_Pars(g_AllChannels[i], ts_RSL_ChanMode_SIGN));
796 log(testcasename(), ": Starting for ", g_AllChannels[i]);
797 vc_conn := f_start_handler(refers(f_TC_deact_sacch), pars);
798 vc_conn.done;
799 }
800 /* TODO: do the above in parallel, rather than sequentially? */
Daniel Willmann0fcc4d32018-10-23 20:32:19 +0200801 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte629cc6b2018-03-11 17:19:05 +0100802}
803
Harald Welte55700662018-03-12 13:15:43 +0100804/* verify that given SACCH payload is present */
Harald Welteea17b912018-03-11 22:29:31 +0100805private function f_sacch_present(template octetstring l3_exp) runs on ConnHdlr {
806 var L1ctlDlMessage dl;
807 /* check that the specified SI5 value is actually sent */
808 timer T_sacch := 3.0;
809 L1CTL.clear;
810 T_sacch.start;
811 alt {
812 [] L1CTL.receive(tr_L1CTL_DATA_IND(g_chan_nr, tr_RslLinkID_SACCH(0))) -> value dl {
813 var octetstring l3 := substr(dl.payload.data_ind.payload, 4, 19);
814 if (match(l3, l3_exp)) {
815 setverdict(pass);
816 } else {
817 repeat;
818 }
819 }
820 [] L1CTL.receive { repeat; }
821 [] T_sacch.timeout {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +0200822 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, log2str("Timeout waiting for SACCH ", l3_exp));
Harald Welteea17b912018-03-11 22:29:31 +0100823 }
824 }
825}
826
Harald Welte55700662018-03-12 13:15:43 +0100827/* verify that given SACCH payload is not present */
828private function f_sacch_missing(template octetstring l3_exp) runs on ConnHdlr {
829 var L1ctlDlMessage dl;
830 /* check that the specified SI5 value is actually sent */
831 timer T_sacch := 3.0;
832 L1CTL.clear;
833 T_sacch.start;
834 alt {
835 [] L1CTL.receive(tr_L1CTL_DATA_IND(g_chan_nr, tr_RslLinkID_SACCH(0))) -> value dl {
836 var octetstring l3 := substr(dl.payload.data_ind.payload, 4, 19);
837 if (match(l3, l3_exp)) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +0200838 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, log2str("Received unexpected SACCH ", dl));
Harald Welte55700662018-03-12 13:15:43 +0100839 } else {
840 repeat;
841 }
842 }
843 [] L1CTL.receive { repeat; }
844 [] T_sacch.timeout {
845 setverdict(pass);
846 }
847 }
848}
849
Harald Welte629cc6b2018-03-11 17:19:05 +0100850/* Test for default SACCH FILL transmitted in DL SACCH (all channel types) */
Harald Welteea17b912018-03-11 22:29:31 +0100851private function f_TC_sacch_filling(charstring id) runs on ConnHdlr {
852 /* Set a known default SACCH filling for SI5 */
853 var octetstring si5 := f_rnd_octstring(19);
854 RSL.send(ts_RSL_SACCH_FILL(RSL_SYSTEM_INFO_5, si5));
855
856 f_l1_tune(L1CTL);
857 RSL.clear;
858
859 /* activate the logical channel */
860 f_est_dchan();
861
862 /* check that the specified SI5 value is actually sent */
863 f_sacch_present(si5);
864
865 /* release the channel */
866 RSL.clear;
867 f_rsl_chan_deact();
868 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
869}
870testcase TC_sacch_filling() runs on test_CT {
871 var ConnHdlr vc_conn;
872 var ConnHdlrPars pars;
873 f_init();
874 for (var integer i := 0; i < sizeof(g_AllChannels); i := i+1) {
875 pars := valueof(t_Pars(g_AllChannels[i], ts_RSL_ChanMode_SIGN));
876 log(testcasename(), ": Starting for ", g_AllChannels[i]);
877 vc_conn := f_start_handler(refers(f_TC_sacch_filling), pars);
878 vc_conn.done;
879 }
880 /* TODO: do the above in parallel, rather than sequentially? */
Daniel Willmann0fcc4d32018-10-23 20:32:19 +0200881 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welteea17b912018-03-11 22:29:31 +0100882}
883
Harald Welte629cc6b2018-03-11 17:19:05 +0100884/* Test for lchan-specific SACCH INFO MODIFY (TS 48.058 4.12) */
Harald Welteea17b912018-03-11 22:29:31 +0100885private function f_TC_sacch_info_mod(charstring id) runs on ConnHdlr {
886 /* Set a known default SACCH filling for SI5 */
887 var octetstring si5 := f_rnd_octstring(19);
888 var octetstring si5_diff := f_rnd_octstring(19);
889 RSL.send(ts_RSL_SACCH_FILL(RSL_SYSTEM_INFO_5, si5));
890
891 f_l1_tune(L1CTL);
892 RSL.clear;
893
894 log("Activating channel, expecting standard SI5");
895 /* activate the logical channel */
896 f_est_dchan();
897 /* check that the specified SI5 value is actually sent */
898 f_sacch_present(si5);
899
900 /* set channel-specific different SI5 */
901 log("Setting channel specific SACCH INFO, expecting it");
902 RSL.send(ts_RSL_SACCH_INF_MOD(g_chan_nr, RSL_SYSTEM_INFO_5, si5_diff))
903 /* check that the specified lchan-specific value is now used */
904 f_sacch_present(si5_diff);
905
906 /* deactivate the channel and re-activate it, this should result in default SI5 */
907 log("De-activating and re-activating channel, expecting standard SI5");
908 f_rsl_chan_deact();
909 f_rsl_chan_act(valueof(ts_RSL_ChanMode_SIGN));
910 /* Verify that the TRX-wide default SACCH filling is present again */
911 f_sacch_present(si5);
912
913 /* release the channel */
914 RSL.clear;
915 f_rsl_chan_deact();
916 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
917}
918testcase TC_sacch_info_mod() runs on test_CT {
919 var ConnHdlr vc_conn;
920 var ConnHdlrPars pars;
921 f_init();
922 for (var integer i := 0; i < sizeof(g_AllChannels); i := i+1) {
923 pars := valueof(t_Pars(g_AllChannels[i], ts_RSL_ChanMode_SIGN));
924 log(testcasename(), ": Starting for ", g_AllChannels[i]);
925 vc_conn := f_start_handler(refers(f_TC_sacch_info_mod), pars);
926 vc_conn.done;
927 }
928 /* TODO: do the above in parallel, rather than sequentially? */
Daniel Willmann0fcc4d32018-10-23 20:32:19 +0200929 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welteea17b912018-03-11 22:29:31 +0100930}
931
Harald Welte075d84c2018-03-12 13:07:24 +0100932/* Test SACCH scheduling of multiple different SI message types */
933private function f_TC_sacch_multi(charstring id) runs on ConnHdlr {
934 var octetstring si5 := f_rnd_octstring(19);
935 var octetstring si5bis := f_rnd_octstring(19);
936 var octetstring si5ter := f_rnd_octstring(19);
937 var octetstring si6 := f_rnd_octstring(19);
938
939 RSL.send(ts_RSL_SACCH_FILL(RSL_SYSTEM_INFO_5, si5));
940 RSL.send(ts_RSL_SACCH_FILL(RSL_SYSTEM_INFO_5bis, si5bis));
941 RSL.send(ts_RSL_SACCH_FILL(RSL_SYSTEM_INFO_5ter, si5ter));
942 RSL.send(ts_RSL_SACCH_FILL(RSL_SYSTEM_INFO_6, si6));
943
944 f_l1_tune(L1CTL);
945 RSL.clear;
946
947 /* activate the logical channel */
948 f_est_dchan();
949 L1CTL.clear;
950
951 /* check that SACCH actually are received as expected */
952 f_sacch_present(si5);
953 f_sacch_present(si5bis);
954 f_sacch_present(si5ter);
955 f_sacch_present(si6);
956
957 /* release the channel */
958 f_rsl_chan_deact();
959 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
960}
961testcase TC_sacch_multi() runs on test_CT {
962 var ConnHdlr vc_conn;
963 var ConnHdlrPars pars;
964 f_init();
965 for (var integer i := 0; i < sizeof(g_AllChannels); i := i+1) {
966 pars := valueof(t_Pars(g_AllChannels[i], ts_RSL_ChanMode_SIGN));
967 log(testcasename(), ": Starting for ", g_AllChannels[i]);
968 vc_conn := f_start_handler(refers(f_TC_sacch_multi), pars);
969 vc_conn.done;
970 }
971 /* TODO: do the above in parallel, rather than sequentially? */
Daniel Willmann0fcc4d32018-10-23 20:32:19 +0200972 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte075d84c2018-03-12 13:07:24 +0100973}
974
Harald Welte55700662018-03-12 13:15:43 +0100975/* Test if SACH information is modified as expected */
976private function f_TC_sacch_multi_chg(charstring id) runs on ConnHdlr {
977 var octetstring si5 := f_rnd_octstring(19);
978 var octetstring si6 := f_rnd_octstring(19);
979
980 /* First, configure both SI5 and SI6 to be transmitted */
981 RSL.send(ts_RSL_SACCH_FILL(RSL_SYSTEM_INFO_5, si5));
982 RSL.send(ts_RSL_SACCH_FILL(RSL_SYSTEM_INFO_6, si6));
983
984 f_l1_tune(L1CTL);
985 RSL.clear;
986
987 /* activate the logical channel */
988 f_est_dchan();
989 L1CTL.clear;
990
991 /* check that SACCH actually are received as expected */
992 f_sacch_present(si5);
993 f_sacch_present(si6);
994
995 /* disable SI6 */
996 RSL.send(ts_RSL_SACCH_FILL(RSL_SYSTEM_INFO_6, ''O));
997
998 /* check that SI5 is still transmitted */
999 f_sacch_present(si5);
1000 /* check if SI6 is now gone */
1001 f_sacch_missing(si6);
1002
1003 /* release the channel */
1004 f_rsl_chan_deact();
1005 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
1006}
1007testcase TC_sacch_multi_chg() runs on test_CT {
1008 var ConnHdlr vc_conn;
1009 var ConnHdlrPars pars;
1010 f_init();
1011 for (var integer i := 0; i < sizeof(g_AllChannels); i := i+1) {
1012 pars := valueof(t_Pars(g_AllChannels[i], ts_RSL_ChanMode_SIGN));
1013 log(testcasename(), ": Starting for ", g_AllChannels[i]);
1014 vc_conn := f_start_handler(refers(f_TC_sacch_multi_chg), pars);
1015 vc_conn.done;
1016 }
1017 /* TODO: do the above in parallel, rather than sequentially? */
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02001018 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte55700662018-03-12 13:15:43 +01001019}
1020
Harald Weltec8d363c2019-05-19 20:36:48 +02001021/* Test for SACCH information present in RSL CHAN ACT (overrides FILLING) */
1022private function f_TC_sacch_chan_act(charstring id) runs on ConnHdlr {
1023 var octetstring si5 := f_rnd_octstring(19);
1024 var octetstring si6 := f_rnd_octstring(19);
1025 var octetstring si5_specific := f_rnd_octstring(19);
1026 var octetstring si6_specific := f_rnd_octstring(19);
1027
1028 /* First, configure both SI5 and SI6 to be transmitted */
1029 RSL.send(ts_RSL_SACCH_FILL(RSL_SYSTEM_INFO_5, si5));
1030 RSL.send(ts_RSL_SACCH_FILL(RSL_SYSTEM_INFO_6, si6));
1031
1032 f_l1_tune(L1CTL);
1033 RSL.clear;
1034
1035 /* activate channel with different SACCH filling */
1036 var RSL_SacchInfo sacch_info := valueof(ts_RSL_SacchInfo({
1037 ts_RSL_SacchInfoElem(RSL_SYSTEM_INFO_5, si5_specific),
1038 ts_RSL_SacchInfoElem(RSL_SYSTEM_INFO_6, si6_specific)
1039 }));
1040 var RSL_IE_List addl_ies := { valueof(t_RSL_IE(RSL_IE_SACCH_INFO,
1041 RSL_IE_Body:{sacch_info := sacch_info})) };
1042 f_est_dchan(more_ies := addl_ies);
1043
1044 /* check that SACCH actually are received as expected */
1045 f_sacch_present(si5_specific);
1046 f_sacch_present(si6_specific);
1047
1048 /* release the channel */
1049 f_rsl_chan_deact();
1050 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
1051}
1052testcase TC_sacch_chan_act() runs on test_CT {
1053 var ConnHdlr vc_conn;
1054 var ConnHdlrPars pars;
1055 f_init();
1056
1057 for (var integer i := 0; i < sizeof(g_AllChannels); i := i+1) {
1058 pars := valueof(t_Pars(g_AllChannels[i], ts_RSL_ChanMode_SIGN));
1059 log(testcasename(), ": Starting for ", g_AllChannels[i]);
1060 vc_conn := f_start_handler(refers(f_TC_sacch_chan_act), pars);
1061 vc_conn.done;
1062 }
1063 /* TODO: do the above in parallel, rather than sequentially? */
1064 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
1065}
1066
Harald Welte8b01c792019-05-19 22:51:25 +02001067/* verify that SACCH DL transmission is started only if MS power IE present
1068 * see section 4.1.3 of 3GPP TS 48.058 */
1069private function f_TC_sacch_chan_act_ho_async(charstring id) runs on ConnHdlr {
1070 var octetstring si5 := f_rnd_octstring(19);
1071
1072 f_l1_tune(L1CTL);
1073 RSL.clear;
1074
1075 /* Step 1: Activate ASYNC HO channel without MS power IE */
1076
1077 /* Activate channel on BTS side */
1078 f_rsl_chan_act(g_pars.chan_mode, act_type := t_RSL_IE_ActType_HO_ASYNC);
1079 /* don't perform immediate assignment here, as we're testing non-IA case */
1080 /* enable dedicated mode */
1081 f_L1CTL_DM_EST_REQ(L1CTL, {false, mp_trx0_arfcn }, g_pars.chan_nr, 7);
1082
1083 /* Verify that no DL SACCH is being received */
1084 f_sacch_missing(?);
1085
1086 f_rsl_chan_deact();
1087 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
1088
1089
1090 /* Step 2: Activate ASYNC HO channel with MS power IE */
1091
1092 /* Activate channel on BTS side */
1093 var RSL_IE_List addl_ies := {
1094 valueof(t_RSL_IE(RSL_IE_MS_POWER, RSL_IE_Body:{ms_power := ts_RSL_IE_MS_Power(0)}))
1095 };
1096 f_rsl_chan_act(g_pars.chan_mode, more_ies := addl_ies, act_type := t_RSL_IE_ActType_HO_ASYNC);
1097 /* don't perform immediate assignment here, as we're testing non-IA case */
1098 /* enable dedicated mode */
1099 f_L1CTL_DM_EST_REQ(L1CTL, {false, mp_trx0_arfcn }, g_pars.chan_nr, 7);
1100
1101 /* Verify that DL SACCH is being received */
1102 f_sacch_present(si5);
1103
1104 f_rsl_chan_deact();
1105 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
1106}
1107testcase TC_sacch_chan_act_ho_async() runs on test_CT {
1108 var ConnHdlr vc_conn;
1109 var ConnHdlrPars pars;
1110 f_init();
1111
1112 for (var integer i := 0; i < sizeof(g_AllChannels); i := i+1) {
1113 pars := valueof(t_Pars(g_AllChannels[i], ts_RSL_ChanMode_SIGN));
1114 log(testcasename(), ": Starting for ", g_AllChannels[i]);
1115 vc_conn := f_start_handler(refers(f_TC_sacch_chan_act_ho_async), pars);
1116 vc_conn.done;
1117 }
1118 /* TODO: do the above in parallel, rather than sequentially? */
1119 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
1120}
1121
1122/* verify that SACCH DL transmission is started only if TA + MS power IEs present,
1123 * see section 4.1.4 of 3GPP TS 48.058 */
1124private function f_TC_sacch_chan_act_ho_sync(charstring id) runs on ConnHdlr {
1125 var octetstring si5 := f_rnd_octstring(19);
1126 var RSL_IE_List addl_ies;
1127
1128 f_l1_tune(L1CTL);
1129 RSL.clear;
1130
1131 /* Step 1: Activate SYNC HO channel without MS power IE */
1132
1133 /* Activate channel on BTS side */
1134 f_rsl_chan_act(g_pars.chan_mode, act_type := t_RSL_IE_ActType_HO_SYNC);
1135 /* don't perform immediate assignment here, as we're testing non-IA case */
1136 /* enable dedicated mode */
1137 f_L1CTL_DM_EST_REQ(L1CTL, {false, mp_trx0_arfcn }, g_pars.chan_nr, 7);
1138
1139 /* Verify that no DL SACCH is being received */
1140 f_sacch_missing(?);
1141
1142 f_rsl_chan_deact();
1143 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
1144
1145
1146 /* Step 2a: Activate SYNC HO channel with only MS power IE */
1147
1148 /* Activate channel on BTS side */
1149 addl_ies := {
1150 valueof(t_RSL_IE(RSL_IE_MS_POWER, RSL_IE_Body:{ms_power := ts_RSL_IE_MS_Power(0)}))
1151 };
1152 f_rsl_chan_act(g_pars.chan_mode, more_ies := addl_ies, act_type := t_RSL_IE_ActType_HO_SYNC);
1153 /* don't perform immediate assignment here, as we're testing non-IA case */
1154 /* enable dedicated mode */
1155 f_L1CTL_DM_EST_REQ(L1CTL, {false, mp_trx0_arfcn }, g_pars.chan_nr, 7);
1156
1157 /* Verify that no DL SACCH is being received */
1158 f_sacch_missing(?);
1159
1160 f_rsl_chan_deact();
1161 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
1162
1163
1164 /* Step 2b: Activate SYNC HO channel with TA IE */
1165
1166 /* Activate channel on BTS side */
1167 addl_ies := {
1168 valueof(t_RSL_IE(RSL_IE_TIMING_ADVANCE, RSL_IE_Body:{timing_adv := 0}))
1169 };
1170 f_rsl_chan_act(g_pars.chan_mode, more_ies := addl_ies, act_type := t_RSL_IE_ActType_HO_SYNC);
1171 /* don't perform immediate assignment here, as we're testing non-IA case */
1172 /* enable dedicated mode */
1173 f_L1CTL_DM_EST_REQ(L1CTL, {false, mp_trx0_arfcn }, g_pars.chan_nr, 7);
1174
1175 /* Verify that no DL SACCH is being received */
1176 f_sacch_missing(?);
1177
1178 f_rsl_chan_deact();
1179 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
1180
1181
1182 /* Step 3: Activate SYNC HO channel with MS power IE and TA IE */
1183
1184 /* Activate channel on BTS side */
1185 addl_ies := {
1186 valueof(t_RSL_IE(RSL_IE_TIMING_ADVANCE, RSL_IE_Body:{timing_adv := 0})),
1187 valueof(t_RSL_IE(RSL_IE_MS_POWER, RSL_IE_Body:{ms_power := ts_RSL_IE_MS_Power(0)}))
1188 };
1189 f_rsl_chan_act(g_pars.chan_mode, more_ies := addl_ies, act_type := t_RSL_IE_ActType_HO_SYNC);
1190 /* don't perform immediate assignment here, as we're testing non-IA case */
1191 /* enable dedicated mode */
1192 f_L1CTL_DM_EST_REQ(L1CTL, {false, mp_trx0_arfcn }, g_pars.chan_nr, 7);
1193
1194 /* Verify that DL SACCH is being received */
1195 f_sacch_present(si5);
1196
1197 f_rsl_chan_deact();
1198 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
1199}
1200testcase TC_sacch_chan_act_ho_sync() runs on test_CT {
1201 var ConnHdlr vc_conn;
1202 var ConnHdlrPars pars;
1203 f_init();
1204
1205 for (var integer i := 0; i < sizeof(g_AllChannels); i := i+1) {
1206 pars := valueof(t_Pars(g_AllChannels[i], ts_RSL_ChanMode_SIGN));
1207 log(testcasename(), ": Starting for ", g_AllChannels[i]);
1208 vc_conn := f_start_handler(refers(f_TC_sacch_chan_act_ho_sync), pars);
1209 vc_conn.done;
1210 }
1211 /* TODO: do the above in parallel, rather than sequentially? */
1212 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
1213}
Harald Welte629cc6b2018-03-11 17:19:05 +01001214
1215
1216/***********************************************************************
Harald Welte93640c62018-02-25 16:59:33 +01001217 * RACH Handling
1218 ***********************************************************************/
1219
Harald Welte8c24c2b2018-02-26 08:31:31 +01001220/* like L1SAP_IS_PACKET_RACH */
1221private function ra_is_ps(OCT1 ra) return boolean {
Harald Welte56c05802018-02-28 21:39:35 +01001222 if ((ra and4b 'F0'O == '70'O) and (ra and4b '0F'O != '0F'O)) {
Harald Welte8c24c2b2018-02-26 08:31:31 +01001223 return true;
1224 }
1225 return false;
1226}
1227
1228/* generate a random RACH for circuit-switched */
1229private function f_rnd_ra_cs() return OCT1 {
1230 var OCT1 ra;
1231 do {
1232 ra := f_rnd_octstring(1);
1233 } while (ra_is_ps(ra));
1234 return ra;
1235}
1236
Harald Welte883340c2018-02-28 18:59:29 +01001237/* generate a random RACH for packet-switched */
1238private function f_rnd_ra_ps() return OCT1 {
1239 var OCT1 ra;
1240 do {
1241 ra := f_rnd_octstring(1);
1242 } while (not ra_is_ps(ra));
1243 return ra;
1244}
1245
Vadim Yanitskiy51cbc102019-04-22 06:37:30 +07001246/* generate a random 11-bit RA (packet-switched only) */
1247private function f_rnd_ra11_ps() return BIT11 {
1248 var integer ra11 := f_rnd_int(bit2int('11111111111'B));
1249 return int2bit(ra11, 11);
1250}
1251
Harald Welte8c24c2b2018-02-26 08:31:31 +01001252/* Send 1000 RACH requests and check their RA+FN on the RSL side */
1253testcase TC_rach_content() runs on test_CT {
Harald Welte10474062019-05-30 16:48:17 +02001254 f_init();
Harald Welte8c24c2b2018-02-26 08:31:31 +01001255 f_init_l1ctl();
Harald Welte68e495b2018-02-25 00:05:57 +01001256 f_l1_tune(L1CTL);
Harald Welte70767382018-02-21 12:16:40 +01001257
Harald Welte8c24c2b2018-02-26 08:31:31 +01001258 var GsmFrameNumber fn_last := 0;
Maxa199a2e2019-02-25 16:31:11 +01001259 var boolean test_failed := false;
Harald Welte8c24c2b2018-02-26 08:31:31 +01001260 for (var integer i := 0; i < 1000; i := i+1) {
1261 var OCT1 ra := f_rnd_ra_cs();
1262 var GsmFrameNumber fn := f_L1CTL_RACH(L1CTL, oct2int(ra));
1263 if (fn == fn_last) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02001264 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Two RACH in same FN?!?");
Harald Welte8c24c2b2018-02-26 08:31:31 +01001265 }
1266 fn_last := fn;
1267
1268 timer T := 5.0;
Harald Welte56c05802018-02-28 21:39:35 +01001269 T.start;
Harald Welte8c24c2b2018-02-26 08:31:31 +01001270 alt {
Vadim Yanitskiyab448a52019-05-31 20:24:03 +07001271 [] RSL_CCHAN.receive(tr_RSL_UD(tr_RSL_CHAN_RQD(ra, fn, t_RslChanNr_RACH(0)))) {
Harald Welte8c24c2b2018-02-26 08:31:31 +01001272 T.stop;
1273 }
Vadim Yanitskiyab448a52019-05-31 20:24:03 +07001274 [] RSL_CCHAN.receive(tr_RSL_UD(tr_RSL_CHAN_RQD(?, ?, ?, ?))) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02001275 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Unexpected CHAN RQD");
Harald Welte8c24c2b2018-02-26 08:31:31 +01001276 }
1277 [] RSL_CCHAN.receive { repeat; }
1278 [] T.timeout {
Maxa199a2e2019-02-25 16:31:11 +01001279 test_failed := true;
1280 log("[", i, "] Timeout waiting for CHAN RQD FN=", fn, " RA=", ra);
Harald Welte8c24c2b2018-02-26 08:31:31 +01001281 }
1282 }
1283 }
Maxba06feb2019-03-05 10:52:46 +01001284 if (test_failed) {
1285 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, log2str("Some out of 1000 RACH requests timed out"));
Maxa199a2e2019-02-25 16:31:11 +01001286 }
Maxba06feb2019-03-05 10:52:46 +01001287 setverdict(pass);
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02001288 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte70767382018-02-21 12:16:40 +01001289}
Harald Welte8c24c2b2018-02-26 08:31:31 +01001290
1291/* Send 1000 RACH Requests (flood ~ 89/s) and count if count(Abis) == count(Um) */
1292testcase TC_rach_count() runs on test_CT {
Harald Welte294b0a22018-03-10 23:26:48 +01001293 f_init();
Harald Welte8c24c2b2018-02-26 08:31:31 +01001294 f_init_l1ctl();
Harald Welte294b0a22018-03-10 23:26:48 +01001295 f_sleep(1.0);
Harald Welte8c24c2b2018-02-26 08:31:31 +01001296 f_l1_tune(L1CTL);
1297
1298 var GsmFrameNumber fn_last := 0;
1299 for (var integer i := 0; i < 1000; i := i+1) {
1300 var OCT1 ra := f_rnd_ra_cs();
1301 var GsmFrameNumber fn := f_L1CTL_RACH(L1CTL, oct2int(ra));
1302 if (fn == fn_last) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02001303 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Two RACH in same FN?!?");
Harald Welte8c24c2b2018-02-26 08:31:31 +01001304 }
1305 fn_last := fn;
1306 }
1307 var integer rsl_chrqd := 0;
1308 timer T := 3.0;
Harald Welte56c05802018-02-28 21:39:35 +01001309 T.start;
Harald Welte8c24c2b2018-02-26 08:31:31 +01001310 alt {
1311 [] RSL_CCHAN.receive(tr_RSL_UD(tr_RSL_CHAN_RQD(?,?))) {
1312 rsl_chrqd := rsl_chrqd + 1;
Harald Weltec3a3f452018-02-26 17:37:47 +01001313 f_timer_safe_restart(T);
Harald Welte8c24c2b2018-02-26 08:31:31 +01001314 repeat;
1315 }
1316 [] RSL_CCHAN.receive { repeat; }
1317 [] T.timeout { }
1318 }
1319 if (rsl_chrqd == 1000) {
1320 setverdict(pass);
1321 } else {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02001322 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, log2str("Received only ", rsl_chrqd, " out of 1000 RACH"));
Harald Welte8c24c2b2018-02-26 08:31:31 +01001323 }
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02001324 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte70767382018-02-21 12:16:40 +01001325}
1326
Harald Welte3453ab42019-05-24 21:19:58 +02001327private function f_vty_load_ind_thresh(integer period := 10, integer bts_nr := 0) runs on test_CT {
1328 var charstring bts_str := "bts " & int2str(bts_nr);
1329 f_vty_config2(BSCVTY, {"network", bts_str}, "ccch load-indication-threshold " & int2str(period));
1330}
1331
1332/* empirical value: Number of RACH slots per reporting interval (1s) on combined CCCH */
1333private template integer tr_rach_slots_per_interval := (90 .. 130);
1334
1335/* Expect 0 RACH load on an idle BTS that has just started up */
1336testcase TC_rach_load_idle_thresh0() runs on test_CT {
1337 var ASP_RSL_Unitdata rx_ud;
1338
1339 f_init_vty_bsc();
1340 /* send load indications even at 0% load */
1341 f_vty_load_ind_thresh(0);
1342 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
1343 f_sleep(2.0);
1344
1345 f_init();
1346
1347 timer T := 5.0;
1348 T.start;
1349 alt {
1350 [] RSL_CCHAN.receive(tr_RSL_UD(tr_RSL_RACH_LOAD_IND(tr_rach_slots_per_interval, 0, 0))) {
1351 setverdict(pass);
1352 repeat;
1353 }
1354 [] RSL_CCHAN.receive(tr_RSL_UD(tr_RSL_RACH_LOAD_IND(?, ?, ?))) -> value rx_ud {
1355 setverdict(fail, "Unexpected RACH LOAD IND: ", rx_ud);
1356 repeat;
1357 }
1358 [] RSL_CCHAN.receive {
1359 repeat;
1360 }
1361 [] T.timeout { }
1362 }
1363
1364 f_vty_load_ind_thresh(10);
1365 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
1366}
1367
1368/* Expect no RACH load indications on an idle BTS that has just started up (default threshold 10%) */
1369testcase TC_rach_load_idle_below_thresh() runs on test_CT {
1370 var ASP_RSL_Unitdata rx_ud;
1371
1372 f_init_vty_bsc();
1373 f_init();
1374
1375 timer T := 5.0;
1376 T.start;
1377 alt {
1378 [] RSL_CCHAN.receive(tr_RSL_UD(tr_RSL_RACH_LOAD_IND(?, ?, ?))) -> value rx_ud {
1379 setverdict(fail, "Unexpected RACH LOAD IND: ", rx_ud);
1380 repeat;
1381 }
1382 [] RSL_CCHAN.receive {
1383 repeat;
1384 }
1385 [] T.timeout {
1386 setverdict(pass);
1387 }
1388 }
1389
1390 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
1391}
1392
1393/* Expect 0 RACH load on an idle BTS that has just started up */
1394testcase TC_rach_load_count() runs on test_CT {
1395 var ASP_RSL_Unitdata rx_ud;
1396 var integer load_access_count := 0;
1397
1398 f_init_vty_bsc();
1399 /* send load indications even at 0% load */
1400 f_vty_load_ind_thresh(0);
1401 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
1402 f_sleep(2.0);
1403 f_init();
1404
1405 f_init_l1ctl();
1406 f_sleep(1.0);
1407 f_l1_tune(L1CTL);
1408
1409 var GsmFrameNumber fn_last := 0;
1410 for (var integer i := 0; i < 1000; i := i+1) {
1411 var OCT1 ra := f_rnd_ra_cs();
1412 var GsmFrameNumber fn := f_L1CTL_RACH(L1CTL, oct2int(ra));
1413 if (fn == fn_last) {
1414 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Two RACH in same FN?!?");
1415 }
1416 fn_last := fn;
1417 }
1418
1419 timer T := 5.0;
1420 T.start;
1421 alt {
1422 [] RSL_CCHAN.receive(tr_RSL_UD(tr_RSL_RACH_LOAD_IND(tr_rach_slots_per_interval, ?, ?)))
1423 -> value rx_ud {
1424 var RSL_IE_Body ie;
1425 f_rsl_find_ie(rx_ud.rsl, RSL_IE_RACH_LOAD, ie);
1426 load_access_count := load_access_count + ie.rach_load.access_count;
1427 if (ie.rach_load.busy_count < ie.rach_load.access_count) {
1428 setverdict(fail, "Access count cannot be < Busy count");
1429 }
1430 repeat;
1431 }
1432 [] RSL_CCHAN.receive(tr_RSL_UD(tr_RSL_RACH_LOAD_IND(?, ?, ?))) -> value rx_ud {
1433 setverdict(fail, "Unexpected RACH LOAD IND: ", rx_ud);
1434 repeat;
1435 }
1436 [] RSL_CCHAN.receive {
1437 repeat;
1438 }
1439 [] T.timeout { }
1440 }
1441 if (load_access_count == 1000) {
1442 setverdict(pass);
1443 } else {
1444 setverdict(fail, "Load reports state ", load_access_count, " RACH, but we sent 1000");
1445 }
1446
1447 f_vty_load_ind_thresh(10);
1448 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
1449}
1450
Harald Welte54a2a2d2018-02-26 09:14:05 +01001451private function f_rach_toffs(int16_t toffs256, boolean expect_pass) runs on test_CT {
Harald Weltef8df4cb2018-03-10 15:15:08 +01001452 var TrxcMessage ret;
Harald Welte54a2a2d2018-02-26 09:14:05 +01001453 /* tell fake_trx to use a given timing offset for all bursts */
Vadim Yanitskiy44ff2142019-01-12 07:04:58 +07001454 ret := f_TRXC_transceive(BTS_TRXC, g_bts_trxc_conn_id, valueof(ts_TRXC_FAKE_TIMING(toffs256)));
Harald Welte54a2a2d2018-02-26 09:14:05 +01001455 f_sleep(0.5);
1456
1457 /* Transmit RACH request + wait for confirmation */
1458 var OCT1 ra := f_rnd_ra_cs();
1459 var GsmFrameNumber fn := f_L1CTL_RACH(L1CTL, oct2int(ra));
1460
1461 /* Check for expected result */
1462 timer T := 1.5;
1463 T.start;
1464 alt {
1465 [expect_pass] RSL_CCHAN.receive(tr_RSL_UD(tr_RSL_CHAN_RQD(ra, fn))) {
1466 setverdict(pass);
1467 }
1468 [not expect_pass] RSL_CCHAN.receive(tr_RSL_UD(tr_RSL_CHAN_RQD(ra, fn))) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02001469 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, log2str("RACH passed but was expected to be dropped: ", toffs256));
Harald Welte54a2a2d2018-02-26 09:14:05 +01001470 }
1471 [] RSL_CCHAN.receive { repeat; }
1472 [not expect_pass] T.timeout {
1473 setverdict(pass);
1474 }
1475 [expect_pass] T.timeout {
Max6e053042019-03-14 16:34:22 +01001476 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, log2str("Timeout waiting for CHAN RQD: FN=", fn, " RA=", ra));
Harald Welte54a2a2d2018-02-26 09:14:05 +01001477 }
1478 }
1479}
1480
1481/* Test if dropping of RACH Based on NM_ATT_MAX_TA works */
1482testcase TC_rach_max_ta() runs on test_CT {
Harald Welte10474062019-05-30 16:48:17 +02001483 f_init();
Harald Welte54a2a2d2018-02-26 09:14:05 +01001484 f_init_l1ctl();
1485 f_l1_tune(L1CTL);
Harald Welte54a2a2d2018-02-26 09:14:05 +01001486 f_sleep(1.0);
1487
1488 /* default max-ta is 63 (full range of GSM timing advance */
1489
Vadim Yanitskiyc81d6e42018-03-05 22:39:01 +07001490 /* We allow early arrival up to 2 symbols */
1491 f_rach_toffs(-1*256, true);
1492 f_rach_toffs(-2*256, true);
Harald Welte54a2a2d2018-02-26 09:14:05 +01001493 f_rach_toffs(-10*256, false);
1494
1495 /* 0 / 32 / 63 bits is legal / permitted */
1496 f_rach_toffs(0, true);
1497 f_rach_toffs(32*256, true);
1498 f_rach_toffs(63*256, true);
1499
1500 /* more than 63 bits is not legal / permitted */
1501 f_rach_toffs(64*256, false);
1502 f_rach_toffs(127*256, false);
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02001503 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte54a2a2d2018-02-26 09:14:05 +01001504}
Harald Welte8c24c2b2018-02-26 08:31:31 +01001505
Vadim Yanitskiy7c2c10c2019-05-31 20:42:01 +07001506function f_TC_ho_rach(charstring id) runs on ConnHdlr {
1507 var GsmFrameNumber fn;
1508 var RSL_Message rm;
1509
1510 f_l1_tune(L1CTL);
1511 RSL.clear;
1512
1513 /* Generate a random Handover Reference */
1514 var integer ho_ref := oct2int(f_rnd_octstring(1));
1515
1516 /* Handover Reference IE (see 3GPP TS 48.058, 9.3.9) */
1517 var RSL_IE ho_ref_ie := valueof(t_RSL_IE(RSL_IE_HANDO_REF,
1518 RSL_IE_Body:{ handover_ref := ho_ref }));
1519
1520 /* Activate a channel on the BTS side (no encryption) */
1521 f_rsl_chan_act(g_pars.chan_mode, more_ies := { ho_ref_ie },
1522 act_type := t_RSL_IE_ActType_HO_SYNC);
1523
1524 /* Switch the MS side (e.g. trxcon) to a dedicated channel without
1525 * waiting for Immediate Assignment and sending Access Burst */
1526 f_L1CTL_DM_EST_REQ(L1CTL, { false, mp_trx0_arfcn }, g_pars.chan_nr, 7);
1527
1528 /* Send handover Access Burst */
1529 fn := f_L1CTL_RACH(L1CTL, ho_ref, chan_nr := g_pars.chan_nr);
1530
1531 /* TODO: test mismatching Handover Reference, and missing IE */
1532
1533 /* Wait for handover detection */
1534 timer T := 3.0;
1535 T.start;
1536 alt {
1537 [] RSL.receive(tr_RSL_HANDO_DET(g_pars.chan_nr)) -> value rm {
1538 log("Handover RACH has been detected: ", rm);
1539 setverdict(pass);
1540 }
1541 [] RSL.receive(tr_RSL_CHAN_RQD(?, ?, ?, ?)) -> value rm {
1542 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
1543 log2str("RSL_CHAN_RQD was not expected: ", rm));
1544 }
1545 [] RSL.receive { repeat; }
1546 [] T.timeout {
1547 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
1548 log2str("Timeout waiting for handover RACH: FN=", fn, " RA=", ho_ref));
1549 }
1550 }
1551
1552 /* Release the channel */
1553 f_rsl_chan_deact();
1554 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
1555}
1556
1557/* Test handover RACH detection */
1558testcase TC_ho_rach() runs on test_CT {
1559 var ConnHdlrPars pars;
1560 var ConnHdlr vc_conn;
1561
1562 f_init();
1563
1564 for (var integer i := 0; i < sizeof(g_AllChannels); i := i + 1) {
1565 pars := valueof(t_Pars(g_AllChannels[i], ts_RSL_ChanMode_SIGN));
1566 log(testcasename(), ": Starting for ", g_AllChannels[i]);
1567 vc_conn := f_start_handler(refers(f_TC_ho_rach), pars);
1568 vc_conn.done;
1569 }
1570
1571 /* TODO: do the above in parallel, rather than sequentially? */
1572 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
1573}
1574
Harald Welte93640c62018-02-25 16:59:33 +01001575/***********************************************************************
1576 * Measurement Processing / Reporting
1577 ***********************************************************************/
1578
Harald Welte70767382018-02-21 12:16:40 +01001579template LapdmAddressField ts_LapdmAddr(LapdmSapi sapi, boolean c_r) := {
1580 spare := '0'B,
1581 lpd := 0,
1582 sapi := sapi,
1583 c_r := c_r,
1584 ea := true
1585}
1586
Harald Welted879bd92018-03-12 15:01:23 +01001587template LapdmFrameAB ts_LAPDm_AB(LapdmSapi sapi, boolean c_r, boolean p, octetstring pl) := {
Harald Welte70767382018-02-21 12:16:40 +01001588 addr := ts_LapdmAddr(sapi, c_r),
Harald Welted879bd92018-03-12 15:01:23 +01001589 ctrl := ts_LapdmCtrlUI(p),
Harald Welte70767382018-02-21 12:16:40 +01001590 len := 0, /* overwritten */
1591 m := false,
1592 el := 1,
1593 payload := pl
1594}
1595
1596/* handle incoming downlink SACCH and respond with uplink SACCH (meas res) */
1597altstep as_l1_sacch() runs on ConnHdlr {
1598 var L1ctlDlMessage l1_dl;
Harald Weltef8df4cb2018-03-10 15:15:08 +01001599 [] L1CTL.receive(tr_L1CTL_DATA_IND(g_chan_nr, tr_RslLinkID_SACCH(?))) -> value l1_dl {
Harald Welte70767382018-02-21 12:16:40 +01001600 log("SACCH received: ", l1_dl.payload.data_ind.payload);
Pau Espin Pedrole9571aa2018-10-22 17:13:07 +02001601 var GsmRrL3Message meas_rep := valueof(ts_MEAS_REP(true, mp_rxlev_exp, mp_rxlev_exp, 0, 0, omit));
Harald Welted879bd92018-03-12 15:01:23 +01001602 var LapdmFrameAB lb := valueof(ts_LAPDm_AB(0, false, false, enc_GsmRrL3Message(meas_rep)));
Harald Welte70767382018-02-21 12:16:40 +01001603 log("LAPDm: ", lb);
Pau Espin Pedroled359cb2018-09-28 16:08:24 +02001604
Vadim Yanitskiy0a8d6da2019-05-28 22:18:28 +07001605 var template (value) SacchL1Header l1h := ts_SacchL1Header(
1606 g_pars.l1_pars.ms_power_level, false,
1607 g_pars.l1_pars.ms_actual_ta);
1608
1609 /* TODO: we can use an extension of TTCN-3 for that, i.e. PADDING('2B'O) */
1610 var octetstring l2 := f_pad_oct(enc_LapdmFrameAB(lb), 21, '2B'O);
1611
1612 log("Sending Measurement Report: ", l1h, l2);
1613 L1CTL.send(ts_L1CTL_DATA_REQ_SACCH(g_chan_nr, ts_RslLinkID_SACCH(0), l1h, l2));
Harald Welte70767382018-02-21 12:16:40 +01001614 repeat;
1615 }
1616}
1617
1618altstep as_l1_dcch() runs on ConnHdlr {
1619 var L1ctlDlMessage l1_dl;
Harald Weltef8df4cb2018-03-10 15:15:08 +01001620 [] L1CTL.receive(tr_L1CTL_DATA_IND(g_chan_nr, tr_RslLinkID_DCCH(?))) -> value l1_dl {
Harald Welte70767382018-02-21 12:16:40 +01001621 log("DCCH received: ", l1_dl.payload.data_ind.payload);
1622 var octetstring pl := '010301'O;
Vadim Yanitskiy31e7c672018-07-27 02:23:16 +07001623 L1CTL.send(ts_L1CTL_DATA_REQ(g_chan_nr, ts_RslLinkID_DCCH(0),
1624 f_pad_oct(pl, 23, '2B'O)));
Harald Welte70767382018-02-21 12:16:40 +01001625 repeat;
1626 }
1627}
1628
1629type record MeasElem {
1630 uint6_t rxlev,
1631 uint3_t rxqual
1632}
1633
1634type record MeasElemFS {
1635 MeasElem full,
1636 MeasElem sub
1637}
1638
1639type record ConnL1Pars {
1640 boolean dtx_enabled,
Harald Welte685d5982018-02-27 20:42:05 +01001641 boolean toa256_enabled,
Harald Welte70767382018-02-21 12:16:40 +01001642 MeasElemFS meas_ul,
1643 int16_t timing_offset_256syms,
1644 uint5_t bs_power_level,
1645 uint5_t ms_power_level,
1646 uint8_t ms_actual_ta
1647}
1648
1649/* Convert tiing offset from 1/256th symbol to RSL Timing Offset */
1650private function toffs256s_to_rsl(int16_t toffs256s) return uint8_t {
1651 return 63 + (toffs256s/256);
1652}
1653
Harald Welted5684392018-03-10 18:22:04 +01001654private function f_max(integer a, integer b) return integer {
1655 if (a > b) {
1656 return a;
1657 } else {
1658 return b;
1659 }
1660}
1661
1662private function f_min(integer a, integer b) return integer {
1663 if (a < b) {
1664 return a;
1665 } else {
1666 return b;
1667 }
1668}
1669
1670/* compute negative tolerance val-tolerance, ensure >= min */
1671private function f_tolerance_neg(integer val, integer min, integer tolerance) return integer {
1672 val := val - tolerance;
1673 return f_max(val, min);
1674}
1675
1676/* compute positive tolerance val+tolerance, ensure <= max */
1677private function f_tolerance_pos(integer val, integer max, integer tolerance) return integer {
1678 val := val + tolerance;
1679 return f_min(val, max);
1680}
1681
1682/* return a template of (val-tolerance .. val+tolerance) ensuring it is within (min .. max) */
1683private function f_tolerance(integer val, integer min, integer max, integer tolerance)
1684return template integer {
1685 var template integer ret;
1686 ret := (f_tolerance_neg(val, min, tolerance) .. f_tolerance_pos(val, max, tolerance));
1687 return ret;
1688}
1689
1690
Harald Welte70767382018-02-21 12:16:40 +01001691/* build a template for matching measurement results against */
1692private function f_build_meas_res_tmpl() runs on ConnHdlr return template RSL_Message {
1693 var ConnL1Pars l1p := g_pars.l1_pars;
1694 var template RSL_IE_UplinkMeas ul_meas := {
1695 len := 3,
1696 rfu := '0'B,
1697 dtx_d := l1p.dtx_enabled,
Harald Welted5684392018-03-10 18:22:04 +01001698 rxlev_f_u := f_tolerance(l1p.meas_ul.full.rxlev, 0, 63, mp_tolerance_rxlev),
Harald Welte70767382018-02-21 12:16:40 +01001699 reserved1 := '00'B,
Harald Welted5684392018-03-10 18:22:04 +01001700 rxlev_s_u := f_tolerance(l1p.meas_ul.sub.rxlev, 0, 63, mp_tolerance_rxlev),
Harald Welte70767382018-02-21 12:16:40 +01001701 reserved2 := '00'B,
Harald Welted5684392018-03-10 18:22:04 +01001702 rxq_f_u := f_tolerance(l1p.meas_ul.full.rxqual, 0, 7, mp_tolerance_rxqual),
1703 rxq_s_u := f_tolerance(l1p.meas_ul.sub.rxqual, 0, 7, mp_tolerance_rxqual),
Harald Welte70767382018-02-21 12:16:40 +01001704 supp_meas_info := omit
1705 };
Harald Welte685d5982018-02-27 20:42:05 +01001706 if (l1p.toa256_enabled) {
Harald Welte15de8ba2018-06-29 08:51:42 +02001707 ul_meas.len := (3+8);
1708 ul_meas.supp_meas_info := {
Pau Espin Pedrol121724c2018-09-28 15:58:12 +02001709 toa256_mean := f_tolerance(l1p.timing_offset_256syms, -63*256, 192*256, mp_tolerance_timing_offset_256syms),
Harald Welte15de8ba2018-06-29 08:51:42 +02001710 toa256_min := ?,
1711 toa256_max := ?,
1712 toa256_std_dev := ?
1713 }
Harald Welte685d5982018-02-27 20:42:05 +01001714 }
Harald Welte70767382018-02-21 12:16:40 +01001715 var template RSL_IE_BS_Power bs_power := {
1716 reserved := 0,
1717 epc := false,
1718 fpc := false,
1719 power_level := l1p.bs_power_level
1720 };
1721 var template RSL_IE_L1Info l1_info := {
1722 ms_power_lvl := l1p.ms_power_level,
1723 fpc := false,
1724 reserved := 0,
Pau Espin Pedrol121724c2018-09-28 15:58:12 +02001725 actual_ta := f_tolerance(l1p.ms_actual_ta, 0, 63, mp_tolerance_timing_offset_256syms/256)
Harald Welte70767382018-02-21 12:16:40 +01001726 };
1727 var uint8_t offs := toffs256s_to_rsl(l1p.timing_offset_256syms);
Pau Espin Pedrol121724c2018-09-28 15:58:12 +02001728 var template uint8_t t_toffs := f_tolerance(offs, 0, 255, mp_tolerance_timing_offset_256syms/256);
Harald Welte70767382018-02-21 12:16:40 +01001729 return tr_RSL_MEAS_RES_OSMO(g_chan_nr, g_next_meas_res_nr, ul_meas, bs_power, l1_info,
1730 ?, t_toffs);
1731}
1732
1733/* verify we regularly receive measurement reports with incrementing numbers */
Vadim Yanitskiy41baf002018-10-04 17:44:50 +07001734altstep as_meas_res(boolean verify_meas := true) runs on ConnHdlr {
Harald Welte70767382018-02-21 12:16:40 +01001735 var RSL_Message rsl;
Vadim Yanitskiy41baf002018-10-04 17:44:50 +07001736 [not verify_meas] RSL.receive(tr_RSL_MEAS_RES(?)) { repeat; }
Harald Welte70767382018-02-21 12:16:40 +01001737 [] RSL.receive(f_build_meas_res_tmpl()) -> value rsl {
1738 /* increment counter of next to-be-expected meas rep */
1739 g_next_meas_res_nr := (g_next_meas_res_nr + 1) mod 256;
1740 /* Re-start the timer expecting the next MEAS RES */
Harald Weltec3a3f452018-02-26 17:37:47 +01001741 f_timer_safe_restart(g_Tmeas_exp);
Harald Welte70767382018-02-21 12:16:40 +01001742 repeat;
1743 }
1744 [] RSL.receive(tr_RSL_MEAS_RES(g_chan_nr, g_next_meas_res_nr)) -> value rsl {
Harald Weltefa45e9e2018-03-10 18:59:03 +01001745 /* increment counter of next to-be-expected meas rep */
1746 g_next_meas_res_nr := (g_next_meas_res_nr + 1) mod 256;
1747 if (g_first_meas_res) {
1748 g_first_meas_res := false;
1749 repeat;
1750 } else {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02001751 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, log2str("Received unspecific MEAS RES ", rsl));
Harald Weltefa45e9e2018-03-10 18:59:03 +01001752 }
Harald Welte70767382018-02-21 12:16:40 +01001753 }
1754 [] RSL.receive(tr_RSL_MEAS_RES(?)) -> value rsl {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02001755 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, log2str("Received unexpected MEAS RES ", rsl));
Harald Welte70767382018-02-21 12:16:40 +01001756 }
Pau Espin Pedrol425b62f2018-07-06 16:11:43 +02001757 [g_Tmeas_exp.running] g_Tmeas_exp.timeout {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02001758 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Didn't receive expected measurement result")
Harald Welte70767382018-02-21 12:16:40 +01001759 }
1760}
1761
Harald Weltee613f962018-04-18 22:38:16 +02001762private function f_alg_id_to_l1ctl(RSL_AlgId rsl_alg_id) return uint8_t {
1763 select (rsl_alg_id) {
1764 case (RSL_ALG_ID_A5_0) { return 0; }
1765 case (RSL_ALG_ID_A5_1) { return 1; }
1766 case (RSL_ALG_ID_A5_2) { return 2; }
1767 case (RSL_ALG_ID_A5_3) { return 3; }
1768 case (RSL_ALG_ID_A5_4) { return 4; }
1769 case (RSL_ALG_ID_A5_5) { return 5; }
1770 case (RSL_ALG_ID_A5_6) { return 6; }
1771 case (RSL_ALG_ID_A5_7) { return 7; }
1772 case else {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02001773 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Unknwon Algorithm ID");
1774 /* Make compiler happy by calling mtc.stop here. It is already
1775 * called in f_shutdown */
Daniel Willmann17ddd852018-07-05 17:33:20 +02001776 mtc.stop;
Harald Weltee613f962018-04-18 22:38:16 +02001777 }
1778 }
1779}
1780
1781private function f_alg_id_to_l3(RSL_AlgId rsl_alg_id) return BIT3 {
1782 select (rsl_alg_id) {
1783 case (RSL_ALG_ID_A5_1) { return '000'B; }
1784 case (RSL_ALG_ID_A5_2) { return '001'B; }
1785 case (RSL_ALG_ID_A5_3) { return '010'B; }
1786 case (RSL_ALG_ID_A5_4) { return '011'B; }
1787 case (RSL_ALG_ID_A5_5) { return '100'B; }
1788 case (RSL_ALG_ID_A5_6) { return '101'B; }
1789 case (RSL_ALG_ID_A5_7) { return '110'B; }
1790 case else {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02001791 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Unknwon Algorithm ID");
1792 /* Make compiler happy by calling mtc.stop here. It is already
1793 * called in f_shutdown */
Daniel Willmann17ddd852018-07-05 17:33:20 +02001794 mtc.stop;
Harald Weltee613f962018-04-18 22:38:16 +02001795 }
1796 }
1797}
1798
Pau Espin Pedrol6451b042018-10-24 20:36:16 +02001799/* Send RACH request through l1CTL and wait for ChanReq on RSL BST->BSC */
1800private function f_rach_req_wait_chan_rqd(integer ra) runs on ConnHdlr return GsmFrameNumber {
1801 var GsmFrameNumber fn;
1802 timer T := 8.0;
1803
1804 /* advertise to RSL Emulation that we expect to receive confirmation from RACH */
1805 RSL.send(ts_RSLDC_ChanRqd_anyFN(int2oct(ra,1)));
1806
1807 f_L1CTL_PARAM(L1CTL, g_pars.l1_pars.ms_actual_ta, g_pars.l1_pars.ms_power_level);
1808 /* Send the actual RACH */
1809 fn := f_L1CTL_RACH(L1CTL, ra);
1810
1811 T.start;
1812 alt {
1813 [] RSL.receive(tr_RSL_CHAN_RQD(int2oct(ra,1), fn)) { setverdict(pass, "Received CHAN-RQD from RACH REQ") }
1814 [] T.timeout {
1815 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, log2str("Timeout waiting for CHAN-RQD from RACH REQ <", ra, ", ", fn, ">"));
1816 }
1817 }
1818 T.stop
1819 return fn;
1820}
Harald Weltee613f962018-04-18 22:38:16 +02001821
Harald Welte70767382018-02-21 12:16:40 +01001822/* Establish dedicated channel: L1CTL + RSL side */
Harald Weltec8d363c2019-05-19 20:36:48 +02001823private function f_est_dchan(boolean encr_enable := false, RSL_IE_List more_ies := {}) runs on ConnHdlr {
Harald Welte70767382018-02-21 12:16:40 +01001824 var GsmFrameNumber fn;
1825 var ImmediateAssignment imm_ass;
1826 var integer ra := 23;
1827
Pau Espin Pedrol6451b042018-10-24 20:36:16 +02001828 /* Send RACH request and wait for ChanReq */
1829 fn := f_rach_req_wait_chan_rqd(ra);
Harald Welte70767382018-02-21 12:16:40 +01001830
1831 /* Activate channel on BTS side */
Harald Weltec8d363c2019-05-19 20:36:48 +02001832 f_rsl_chan_act(g_pars.chan_mode, encr_enable, more_ies);
Harald Welte70767382018-02-21 12:16:40 +01001833
1834 /* Send IMM.ASS via CCHAN */
1835 var ChannelDescription ch_desc := {
1836 chan_nr := g_pars.chan_nr,
1837 tsc := 7,
1838 h := false,
1839 arfcn := mp_trx0_arfcn,
1840 maio_hsn := omit
1841 };
1842 var MobileAllocation ma := {
1843 len := 0,
1844 ma := ''B
1845 };
1846 var GsmRrMessage rr_msg := valueof(ts_IMM_ASS(ra, fn, 0, ch_desc, ma));
1847 RSL.send(ts_RSL_IMM_ASSIGN(enc_GsmRrMessage(rr_msg)));
1848
1849 /* receive IMM.ASS on MS side */
1850 var ImmediateAssignment ia_um;
1851 ia_um := f_L1CTL_WAIT_IMM_ASS(L1CTL, ra, fn);
1852 /* enable dedicated mode */
1853 f_L1CTL_DM_EST_REQ_IA(L1CTL, ia_um);
Harald Weltee613f962018-04-18 22:38:16 +02001854 /* enable encryption, if requested */
1855 if (encr_enable) {
1856 var uint8_t alg_id := f_alg_id_to_l1ctl(g_pars.encr.alg_id);
1857 f_L1CTL_CRYPTO_REQ(L1CTL, g_pars.chan_nr, alg_id, g_pars.encr.key);
1858 }
Harald Weltefa45e9e2018-03-10 18:59:03 +01001859
1860 g_first_meas_res := true;
Harald Welte70767382018-02-21 12:16:40 +01001861}
1862
1863/* establish DChan, verify existance + contents of measurement reports */
1864function f_TC_meas_res_periodic(charstring id) runs on ConnHdlr {
Harald Welte68e495b2018-02-25 00:05:57 +01001865 f_l1_tune(L1CTL);
Harald Welte70767382018-02-21 12:16:40 +01001866 RSL.clear;
1867
Vadim Yanitskiy44ff2142019-01-12 07:04:58 +07001868 if (mp_bts_trxc_port != -1) {
Pau Espin Pedrole9571aa2018-10-22 17:13:07 +02001869 f_trxc_fake_rssi(rxlev2dbm(mp_ul_rxlev_exp));
Vadim Yanitskiydc8db922019-06-04 21:58:15 +07001870 f_trxc_fake_toffs256(g_pars.l1_pars.timing_offset_256syms);
Pau Espin Pedrol121724c2018-09-28 15:58:12 +02001871 }
Harald Welte70767382018-02-21 12:16:40 +01001872
1873 f_est_dchan();
1874
1875 /* run for a number of seconds, send SACCH + FACCH from MS side and verify
1876 * RSL measurement reports on Abis side */
1877 timer T := 8.0;
1878 T.start;
1879 alt {
1880 [] as_l1_sacch();
1881 [] as_meas_res();
1882 [] as_l1_dcch();
1883 [] L1CTL.receive { repeat; }
1884 [g_Tmeas_exp.running] T.timeout {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02001885 /* as_meas_res() would have done Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail) in case
Harald Welte70767382018-02-21 12:16:40 +01001886 * of any earlier errors, so if we reach this timeout, we're good */
1887 setverdict(pass);
1888 }
1889 [] T.timeout {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02001890 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "No MEAS RES received at all");
Harald Welte70767382018-02-21 12:16:40 +01001891 }
1892 }
1893 f_rsl_chan_deact();
Harald Welte3dc20462018-03-10 23:03:38 +01001894 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
Harald Welte70767382018-02-21 12:16:40 +01001895}
Harald Welte0472ab42018-03-12 15:02:26 +01001896
Eric Wildae8f2622019-06-18 17:05:11 +02001897function f_check_meas_bs_power_level(integer level) runs on ConnHdlr {
1898 timer T := 8.0;
1899 T.start;
1900 var RSL_Message rsl;
1901 alt {
1902 [] as_l1_sacch();
1903 [] L1CTL.receive { repeat; }
1904 [] RSL.receive(tr_RSL_MEAS_RES(g_chan_nr, ?, ?, ?)) -> value rsl {
1905 if (rsl.ies[3].body.bs_power.power_level == level) {
1906 setverdict(pass)
1907 } else {
1908 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, log2str("Received wrong BS power level in MEAS RES ", rsl));
1909 }
1910 }
1911 [] T.timeout {
1912 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "No MEAS RES received at all");
1913 }
1914 }
1915}
1916
1917/* see if the rsl meas res contains our expeced bs power level
1918bs power set during assignment */
1919function f_TC_rsl_bs_pwr_static_ass(charstring id) runs on ConnHdlr {
1920 f_l1_tune(L1CTL);
1921 RSL.clear;
1922
1923 if (mp_bts_trxc_port != -1) {
1924 f_trxc_fake_rssi(rxlev2dbm(mp_ul_rxlev_exp));
1925 f_trxc_fake_toffs256(g_pars.l1_pars.timing_offset_256syms);
1926 }
1927
1928 var uint5_t pwr_var := 1;
1929 var template (value) RSL_IE_BS_Power bs_power := ts_RSL_IE_BS_Power(pwr_var);
1930 var template (value) RSL_IE pwr := t_RSL_IE(RSL_IE_BS_POWER, RSL_IE_Body:{bs_power := bs_power});
1931
1932 f_est_dchan(more_ies :={valueof(pwr)});
1933
1934 f_check_meas_bs_power_level(pwr_var);
1935
1936 f_rsl_chan_deact();
1937 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
1938}
1939
1940/* see if the rsl meas res contains our expeced bs power level
1941bs power set after assignment */
1942function f_TC_rsl_bs_pwr_static_power_control(charstring id) runs on ConnHdlr {
1943 f_l1_tune(L1CTL);
1944 RSL.clear;
1945
1946 if (mp_bts_trxc_port != -1) {
1947 f_trxc_fake_rssi(rxlev2dbm(mp_ul_rxlev_exp));
1948 f_trxc_fake_toffs256(g_pars.l1_pars.timing_offset_256syms);
1949 }
1950
1951 var uint5_t pwr_var := 1;
1952 var template (value) RSL_IE_BS_Power bs_power := ts_RSL_IE_BS_Power(pwr_var);
1953
1954 f_est_dchan();
1955
1956 RSL.send(ts_RSL_BS_PWR_CTRL(g_chan_nr, bs_power));
1957
1958 f_check_meas_bs_power_level(pwr_var);
1959
1960 f_rsl_chan_deact();
1961 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
1962}
1963
1964testcase TC_rsl_bs_pwr_static_ass() runs on test_CT {
1965 var ConnHdlr vc_conn;
1966 var ConnHdlrPars pars;
1967 f_init();
1968 for (var integer tn := 1; tn <= 4; tn := tn+1) {
1969 pars := valueof(t_Pars(t_RslChanNr_Bm(tn), ts_RSL_ChanMode_SIGN));
1970 vc_conn := f_start_handler(refers(f_TC_rsl_bs_pwr_static_ass), pars,
1971 pcu_comp := false, trxc_comp := true);
1972 vc_conn.done;
1973 }
1974 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
1975}
1976
1977testcase TC_rsl_bs_pwr_static_power_control() runs on test_CT {
1978 var ConnHdlr vc_conn;
1979 var ConnHdlrPars pars;
1980 f_init();
1981 for (var integer tn := 1; tn <= 4; tn := tn+1) {
1982 pars := valueof(t_Pars(t_RslChanNr_Bm(tn), ts_RSL_ChanMode_SIGN));
1983 vc_conn := f_start_handler(refers(f_TC_rsl_bs_pwr_static_power_control), pars,
1984 pcu_comp := false, trxc_comp := true);
1985 vc_conn.done;
1986 }
1987 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
1988}
1989
Eric Wild61edb7e2019-06-03 12:38:31 +02001990/* target level -100, first rssi -90, ms power 7, expected increase to 7+6 within 6 seconds,
1991second rssi -110, ms power 7+6, expected decrease to 7 within 6 seconds,
1992These power levels are valid for all bands and require no special handling */
1993function f_TC_rsl_ms_pwr_dyn_ass_updown(charstring id) runs on ConnHdlr {
1994 var uint5_t pwr_var := 7;
1995 var L1ctlDlMessage l1_dl;
1996
1997 f_trxc_fake_rssi(rxlev2dbm(10));
1998 f_l1_tune(L1CTL);
1999 RSL.clear;
2000
2001 var RSL_IE_List addl_ies;
2002 var template (value) RSL_IE_MS_Power_Parameters pp := (ts_RSL_IE_MS_Power_Parameters(''O));
2003
2004 addl_ies := {
2005 valueof(t_RSL_IE(RSL_IE_MS_POWER, RSL_IE_Body:{ms_power := ts_RSL_IE_MS_Power(pwr_var)})),
2006 valueof(t_RSL_IE(RSL_IE_MS_POWER_PARAM, RSL_IE_Body:{ms_power_params := pp}))
2007 };
2008
2009 /* establish with power parameters */
2010 f_est_dchan(more_ies := addl_ies);
2011
2012 /* set a high value to ensure L1 power control level increases */
2013 f_trxc_fake_rssi(rxlev2dbm(20));
2014
2015 timer T2 := 6.0;
2016 T2.start;
2017 alt {
2018 [] L1CTL.receive(tr_L1CTL_DATA_IND(g_chan_nr, tr_RslLinkID_SACCH(?))) -> value l1_dl {
2019 if( not(oct2int(l1_dl.payload.data_ind.payload[0]) > (pwr_var+6))){
2020 repeat;
2021 }
2022 T2.stop;
2023 }
2024 [] L1CTL.receive { repeat; }
2025 [] T2.timeout {
2026 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
2027 "Power Level in L1 header has not increased sufficiently");
2028 }
2029 }
2030
2031 /* set a low value to ensure L1 power control level decreases */
2032 f_trxc_fake_rssi(rxlev2dbm(0));
2033
2034 timer T4 := 6.0;
2035 T4.start;
2036 alt {
2037 [] L1CTL.receive(tr_L1CTL_DATA_IND(g_chan_nr, tr_RslLinkID_SACCH(?))) -> value l1_dl {
2038 if( not(oct2int(l1_dl.payload.data_ind.payload[0]) <= (pwr_var))){
2039 repeat;
2040 }
2041 T4.stop;
2042 setverdict(pass, "Power level in L1 decreased/increased as expected");
2043 }
2044 [] L1CTL.receive { repeat; }
2045 [] T4.timeout {
2046 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
2047 "Power Level in L1 header has not decreased sufficiently");
2048 }
2049 }
2050
2051 f_rsl_chan_deact();
2052 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
2053
2054}
2055
2056/* check that we do not exceed the max power */
2057function f_TC_rsl_ms_pwr_dyn_max(charstring id) runs on ConnHdlr {
2058 var uint5_t pwr_var := 7;
2059 var L1ctlDlMessage l1_dl;
2060
2061 /* set a low value to ensure power increases */
2062 f_trxc_fake_rssi(rxlev2dbm(10));
2063 f_l1_tune(L1CTL);
2064 RSL.clear;
2065
2066 var RSL_IE_List addl_ies;
2067 var template (value) RSL_IE_MS_Power_Parameters pp := (ts_RSL_IE_MS_Power_Parameters(''O));
2068
2069 addl_ies := {
2070 valueof(t_RSL_IE(RSL_IE_MS_POWER, RSL_IE_Body:{ms_power := ts_RSL_IE_MS_Power(pwr_var)})),
2071 valueof(t_RSL_IE(RSL_IE_MS_POWER_PARAM, RSL_IE_Body:{ms_power_params := pp}))
2072 };
2073
2074 /* establish with power parameters */
2075 f_est_dchan(more_ies := addl_ies);
2076
2077 timer T1 := 10.0;
2078 T1.start;
2079 alt {
2080 [] L1CTL.receive(tr_L1CTL_DATA_IND(g_chan_nr, tr_RslLinkID_SACCH(?))) -> value l1_dl { repeat; }
2081 [] L1CTL.receive { repeat; }
2082 [] T1.timeout {
2083 if( oct2int(l1_dl.payload.data_ind.payload[0]) != pwr_var){
2084 setverdict(fail, "Power level in L1 header should not have changed");
2085 }
2086 }
2087 }
2088
2089 f_rsl_chan_deact();
2090 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
2091
2092}
2093
2094/* see if we reach the band max power */
2095function f_TC_rsl_ms_pwr_dyn_up(charstring id) runs on ConnHdlr {
2096 var L1ctlDlMessage l1_dl;
2097 var uint5_t pwr_var := 15;
2098 var uint5_t pwr_max_var := f_get_max_power_from_band();
2099
2100 /* set a low value to ensure power increases */
2101 f_trxc_fake_rssi(rxlev2dbm(10));
2102 f_l1_tune(L1CTL);
2103 RSL.clear;
2104
2105 var template (value) RSL_IE_MS_Power ms_power := ts_RSL_IE_MS_Power(pwr_var);
2106 var template (value) RSL_IE pwr := t_RSL_IE(RSL_IE_MS_POWER, RSL_IE_Body:{ms_power := ms_power});
2107
2108 /* establish with fixed power level */
2109 f_est_dchan(more_ies :={valueof(pwr)});
2110
2111 /* check our initial power level */
2112 f_wait_for_l1_power_level(pwr_var);
2113
2114 /* update power param to enable power loop
2115 48.058 The maximum power to be used is indicated in the BS and MS Power elements respectively. */
2116 RSL.send(ts_RSL_MS_PWR_CTRL_with_pp(g_chan_nr, pwr_max_var));
2117
2118 /* wait, then check that our power level was reduced */
2119 timer T1 := 10.0;
2120 T1.start;
2121 alt {
2122 [] L1CTL.receive(tr_L1CTL_DATA_IND(g_chan_nr, tr_RslLinkID_SACCH(?))) -> value l1_dl { repeat; }
2123 [] L1CTL.receive { repeat; }
2124 [] T1.timeout {
2125 var int8_t rcv := oct2int(l1_dl.payload.data_ind.payload[0]);
2126 if( f_power_level_is_highest_dbm(rcv) ){
2127 setverdict(pass, "Power level in L1 header reduced as expected");
2128 } else {
2129 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
2130 log2str("Power Level in L1 header did not reach the expected value, e:",pwr_max_var," r:",rcv));
2131 }
2132 }
2133 }
2134
2135 f_rsl_chan_deact();
2136 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
2137
2138}
2139
2140/* see if we reach the band min power */
2141function f_TC_rsl_ms_pwr_dyn_down(charstring id) runs on ConnHdlr {
2142 var L1ctlDlMessage l1_dl;
2143
2144 /* set a high value to ensure power decreases */
2145 f_trxc_fake_rssi(rxlev2dbm(50));
2146 f_l1_tune(L1CTL);
2147 RSL.clear;
2148
2149 var uint5_t pwr_var := 5;
2150 var uint5_t pwr_target_val := 15;
2151
2152 var template (value) RSL_IE_MS_Power ms_power := ts_RSL_IE_MS_Power(pwr_var);
2153 var template (value) RSL_IE pwr := t_RSL_IE(RSL_IE_MS_POWER, RSL_IE_Body:{ms_power := ms_power});
2154
2155 /* establish with fixed power level */
2156 f_est_dchan(more_ies :={valueof(pwr)});
2157
2158 /* check our initial power level */
2159 f_wait_for_l1_power_level(pwr_var);
2160
2161 /* update power param to enable power loop
2162 as per spec the supplied ms power IE should set the max allowed power...*/
2163 RSL.send(ts_RSL_MS_PWR_CTRL_with_pp(g_chan_nr, pwr_var));
2164
2165 /* wait, then check that our power level was increased */
2166 timer T1 := 10.0;
2167 T1.start;
2168 alt {
2169 [] L1CTL.receive(tr_L1CTL_DATA_IND(g_chan_nr, tr_RslLinkID_SACCH(?))) -> value l1_dl { repeat; }
2170 [] L1CTL.receive { repeat; }
2171 [] T1.timeout {
2172 if( f_power_level_is_lowest_dbm(oct2int(l1_dl.payload.data_ind.payload[0])) ){
2173 setverdict(pass, "Power level in L1 header increased to lowest power value");
2174 } else {
2175 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
2176 "Power level in L1 header NOT increased to lowest power value");
2177 }
2178 }
2179 }
2180
2181 f_rsl_chan_deact();
2182 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
2183
2184}
2185
Eric Wild095024b2019-06-17 15:08:57 +02002186/* see if we change the power level without receiving power parameters, which should not happen
2187rsl chan act WITHOUT power parameters */
Eric Wild280ccb82019-06-17 11:11:52 +02002188function f_TC_rsl_ms_pwr_dyn_active(charstring id) runs on ConnHdlr {
2189 var L1ctlDlMessage l1_dl;
2190
2191 /* set a high value to ensure power decreases */
2192 f_trxc_fake_rssi(rxlev2dbm(50));
2193 f_l1_tune(L1CTL);
2194 RSL.clear;
2195
2196 var uint5_t pwr_var := 5;
2197
2198 var template (value) RSL_IE_MS_Power ms_power := ts_RSL_IE_MS_Power(pwr_var);
2199 var template (value) RSL_IE pwr := t_RSL_IE(RSL_IE_MS_POWER, RSL_IE_Body:{ms_power := ms_power});
2200
2201 /* establish with fixed power level */
2202 f_est_dchan(more_ies :={valueof(pwr)});
2203
2204 /* check our initial power level */
2205 f_wait_for_l1_power_level(pwr_var);
2206
2207 /* wait, then check that our power level did not change */
2208 timer T1 := 10.0;
2209 T1.start;
2210 alt {
2211 [] L1CTL.receive(tr_L1CTL_DATA_IND(g_chan_nr, tr_RslLinkID_SACCH(?))) -> value l1_dl {
2212 if ( oct2int(l1_dl.payload.data_ind.payload[0]) != pwr_var) {
2213 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
2214 "BS power control should not be active unless we receive a power parameters IE!");
2215 }
2216 repeat;
2217 }
2218 [] L1CTL.receive { repeat; }
2219 [] T1.timeout { setverdict(pass); }
2220 }
2221
2222 f_rsl_chan_deact();
2223 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
2224
2225}
2226
Eric Wild095024b2019-06-17 15:08:57 +02002227/* see if we change the power level without receiving power parameters, which should not happen
2228ms power control WITHOUT power parameters */
2229function f_TC_rsl_ms_pwr_dyn_active2(charstring id) runs on ConnHdlr {
2230 var L1ctlDlMessage l1_dl;
2231
2232 /* set a high value to ensure power decreases */
2233 f_trxc_fake_rssi(rxlev2dbm(50));
2234 f_l1_tune(L1CTL);
2235 RSL.clear;
2236
2237 var uint5_t pwr_var := 5;
2238
2239 var template (value) RSL_IE_MS_Power ms_power := ts_RSL_IE_MS_Power(pwr_var);
2240 var template (value) RSL_IE pwr := t_RSL_IE(RSL_IE_MS_POWER, RSL_IE_Body:{ms_power := ms_power});
2241
2242 /* establish with fixed power level */
2243 f_est_dchan(more_ies :={valueof(pwr)});
2244
2245 /* check our initial power level */
2246 f_wait_for_l1_power_level(pwr_var);
2247
2248 /* pwr control without power params IE, should NOT activate MS power control*/
2249 RSL.send(ts_RSL_MS_PWR_CTRL(g_chan_nr, ms_power));
2250
2251 /* wait, then check that our power level did not change */
2252 timer T1 := 10.0;
2253 T1.start;
2254 alt {
2255 [] L1CTL.receive(tr_L1CTL_DATA_IND(g_chan_nr, tr_RslLinkID_SACCH(?))) -> value l1_dl {
2256 if ( oct2int(l1_dl.payload.data_ind.payload[0]) != pwr_var) {
2257 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
2258 "BS power control should not be active unless we receive a power parameters IE!");
2259 }
2260 repeat;
2261 }
2262 [] L1CTL.receive { repeat; }
2263 [] T1.timeout { setverdict(pass); }
2264 }
2265
2266 f_rsl_chan_deact();
2267 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
2268
2269}
2270
Eric Wild61edb7e2019-06-03 12:38:31 +02002271function f_wait_for_l1_power_level(integer level) runs on ConnHdlr {
2272 var L1ctlDlMessage l1_dl;
2273 timer T0 := 10.0;
2274 T0.start;
2275 alt {
2276 [] L1CTL.receive(tr_L1CTL_DATA_IND(g_chan_nr, tr_RslLinkID_SACCH(?))) -> value l1_dl {
2277 if (not (l1_dl.payload.data_ind.payload[0] == int2oct(level, 1))) {
2278 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
2279 "Power level in L1 header != signaled (RSL) power level.");
2280 }
2281 }
2282 [] L1CTL.receive { repeat; }
2283 [] T0.timeout {
2284 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
2285 "Timeout waiting for initial power level");
2286 }
2287 }
2288 T0.stop;
2289}
2290
2291private function f_power_level_is_lowest_dbm(integer level) runs on ConnHdlr return boolean {
2292 var IntegerRecord min_dbm_level;
2293 var IntegerRecord max_dbm_level;
2294 var IntegerRecord x := f_power_from_band(g_pars.bts0_band, min_dbm_level, max_dbm_level);
2295
2296 for (var integer i := 0; i < sizeof(min_dbm_level); i := i+1) {
2297 if (min_dbm_level[i] == level) {
2298 return true;
2299 }
2300 }
2301 return false;
2302}
2303
2304private function f_power_level_is_highest_dbm(integer level) runs on ConnHdlr return boolean {
2305 var IntegerRecord min_dbm_level;
2306 var IntegerRecord max_dbm_level;
2307 var IntegerRecord x := f_power_from_band(g_pars.bts0_band, min_dbm_level, max_dbm_level);
2308
2309 for (var integer i := 0; i < sizeof(max_dbm_level); i := i+1) {
2310 if (max_dbm_level[i] == level) {
2311 return true;
2312 }
2313 }
2314 return false;
2315}
2316
2317private function f_get_max_power_from_band() runs on ConnHdlr return integer {
2318 var IntegerRecord min_dbm_level;
2319 var IntegerRecord max_dbm_level;
2320 var IntegerRecord x := f_power_from_band(g_pars.bts0_band, min_dbm_level, max_dbm_level);
2321 return max_dbm_level[0];
2322}
2323
2324type charstring BtsBand ("GSM450","GSM480","GSM750","GSM810","GSM850","GSM900","DCS1800","PCS1900");
2325template charstring BtsBand_allGSM:= pattern "GSM???";
2326private function f_power_from_band(in BtsBand band, out IntegerRecord min_dbm_level, out IntegerRecord max_dbm_level) return IntegerRecord {
2327 // 45.005 4.1.1
2328 var IntegerRecord gsm_power :={31, 30, 29, 28, 27, 26, 25, 24, 23, 22, 21, 20, 19,
2329 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3,
2330 2, 1, 0};
2331 var IntegerRecord dcs_power :={28, 27, 26, 25, 24, 23, 22, 21, 20, 19, 18, 17, 16, 15,
2332 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0, 31, 30, 29};
2333 var IntegerRecord pcs_power :={15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0, 31, 30};
2334 var IntegerRecord rv;
2335
2336 select(band){
2337 case (BtsBand_allGSM){
2338 rv := gsm_power;
2339 min_dbm_level := {31, 30, 29, 28, 27, 26, 25, 24, 23, 22, 21, 20, 19} ;
2340 max_dbm_level := {2, 1, 0};
2341 }
2342 case("DCS1800"){
2343 rv := dcs_power;
2344 min_dbm_level := {28, 27, 26, 25, 24, 23, 22, 21, 20, 19, 18, 17, 16, 15};
2345 max_dbm_level := {0, 29}; // let's cheat here, assume MS_TXPWR_MAX_CCH might be being broadcast, so maybe no 29,30,31
2346 }
2347 case("PCS1900"){
2348 rv := pcs_power;
2349 min_dbm_level := {15};
2350 max_dbm_level := {30};
2351 }
2352 }
2353
2354 return rv;
2355}
2356
2357private function f_vty_get_bts0_band() runs on test_CT return BtsBand {
2358 return f_vty_transceive_match_regex(BTSVTY, "show bts 0", "BTS 0 is of \w+ type in band (\w+),*", 0);
2359}
2360
2361testcase TC_rsl_ms_pwr_dyn_ass_updown() runs on test_CT {
2362 var ConnHdlr vc_conn;
2363 var ConnHdlrPars pars;
2364 f_init();
2365 f_vty_config(BTSVTY, "phy 0", "osmotrx ms-power-loop -100");
2366 for (var integer tn := 1; tn <= 1; tn := tn+1) {
2367 pars := valueof(t_Pars(t_RslChanNr_Bm(tn), ts_RSL_ChanMode_SIGN));
2368 pars.bts0_band := f_vty_get_bts0_band();
2369 vc_conn := f_start_handler(refers(f_TC_rsl_ms_pwr_dyn_ass_updown), pars, trxc_comp := true);
2370 vc_conn.done;
2371 }
2372 f_vty_config(BTSVTY, "phy 0", "no osmotrx ms-power-loop");
2373 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
2374}
2375
2376testcase TC_rsl_ms_pwr_dyn_up() runs on test_CT {
2377 var ConnHdlr vc_conn;
2378 var ConnHdlrPars pars;
2379 f_init();
2380 f_vty_config(BTSVTY, "phy 0", "osmotrx ms-power-loop -10");
2381 for (var integer tn := 1; tn <= 1; tn := tn+1) {
2382 pars := valueof(t_Pars(t_RslChanNr_Bm(tn), ts_RSL_ChanMode_SIGN));
2383 pars.bts0_band := f_vty_get_bts0_band();
2384 vc_conn := f_start_handler(refers(f_TC_rsl_ms_pwr_dyn_up), pars, trxc_comp := true);
2385 vc_conn.done;
2386 }
2387 f_vty_config(BTSVTY, "phy 0", "no osmotrx ms-power-loop");
2388 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
2389}
2390
2391testcase TC_rsl_ms_pwr_dyn_max() runs on test_CT {
2392 var ConnHdlr vc_conn;
2393 var ConnHdlrPars pars;
2394 f_init();
2395 f_vty_config(BTSVTY, "phy 0", "osmotrx ms-power-loop -10");
2396 for (var integer tn := 1; tn <= 1; tn := tn+1) {
2397 pars := valueof(t_Pars(t_RslChanNr_Bm(tn), ts_RSL_ChanMode_SIGN));
2398 pars.bts0_band := f_vty_get_bts0_band();
2399 vc_conn := f_start_handler(refers(f_TC_rsl_ms_pwr_dyn_max), pars, trxc_comp := true);
2400 vc_conn.done;
2401 }
2402 f_vty_config(BTSVTY, "phy 0", "no osmotrx ms-power-loop");
2403 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
2404}
2405
2406testcase TC_rsl_ms_pwr_dyn_down() runs on test_CT {
2407 var ConnHdlr vc_conn;
2408 var ConnHdlrPars pars;
2409 f_init();
2410 f_vty_config(BTSVTY, "phy 0", "osmotrx ms-power-loop -100");
2411 for (var integer tn := 1; tn <= 1; tn := tn+1) {
2412 pars := valueof(t_Pars(t_RslChanNr_Bm(tn), ts_RSL_ChanMode_SIGN));
2413 pars.bts0_band := f_vty_get_bts0_band();
2414 vc_conn := f_start_handler(refers(f_TC_rsl_ms_pwr_dyn_down), pars, trxc_comp := true);
2415 vc_conn.done;
2416 }
2417 f_vty_config(BTSVTY, "phy 0", "no osmotrx ms-power-loop");
2418 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
2419}
2420
Eric Wild280ccb82019-06-17 11:11:52 +02002421testcase TC_rsl_ms_pwr_dyn_active() runs on test_CT {
2422 var ConnHdlr vc_conn;
2423 var ConnHdlrPars pars;
2424 f_init();
2425 f_vty_config(BTSVTY, "phy 0", "osmotrx ms-power-loop -100");
2426 for (var integer tn := 1; tn <= 1; tn := tn+1) {
2427 pars := valueof(t_Pars(t_RslChanNr_Bm(tn), ts_RSL_ChanMode_SIGN));
2428 pars.bts0_band := f_vty_get_bts0_band();
2429 vc_conn := f_start_handler(refers(f_TC_rsl_ms_pwr_dyn_active), pars, trxc_comp := true);
2430 vc_conn.done;
2431 }
2432 f_vty_config(BTSVTY, "phy 0", "no osmotrx ms-power-loop");
2433 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
2434}
2435
Eric Wild095024b2019-06-17 15:08:57 +02002436testcase TC_rsl_ms_pwr_dyn_active2() runs on test_CT {
2437 var ConnHdlr vc_conn;
2438 var ConnHdlrPars pars;
2439 f_init();
2440 f_vty_config(BTSVTY, "phy 0", "osmotrx ms-power-loop -100");
2441 for (var integer tn := 1; tn <= 1; tn := tn+1) {
2442 pars := valueof(t_Pars(t_RslChanNr_Bm(tn), ts_RSL_ChanMode_SIGN));
2443 pars.bts0_band := f_vty_get_bts0_band();
2444 vc_conn := f_start_handler(refers(f_TC_rsl_ms_pwr_dyn_active2), pars, trxc_comp := true);
2445 vc_conn.done;
2446 }
2447 f_vty_config(BTSVTY, "phy 0", "no osmotrx ms-power-loop");
2448 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
2449}
2450
Harald Welte70767382018-02-21 12:16:40 +01002451testcase TC_meas_res_sign_tchf() runs on test_CT {
2452 var ConnHdlr vc_conn;
2453 var ConnHdlrPars pars;
Harald Welte10474062019-05-30 16:48:17 +02002454 f_init();
Harald Welte70767382018-02-21 12:16:40 +01002455 for (var integer tn := 1; tn <= 4; tn := tn+1) {
2456 pars := valueof(t_Pars(t_RslChanNr_Bm(tn), ts_RSL_ChanMode_SIGN));
Vadim Yanitskiyf4e997c2019-06-04 21:40:33 +07002457 vc_conn := f_start_handler(refers(f_TC_meas_res_periodic), pars,
2458 pcu_comp := false, trxc_comp := true);
Harald Welte70767382018-02-21 12:16:40 +01002459 vc_conn.done;
2460 }
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02002461 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte70767382018-02-21 12:16:40 +01002462}
2463testcase TC_meas_res_sign_tchh() runs on test_CT {
2464 var ConnHdlr vc_conn;
2465 var ConnHdlrPars pars;
Harald Welte10474062019-05-30 16:48:17 +02002466 f_init();
Harald Welte70767382018-02-21 12:16:40 +01002467 for (var integer ss := 0; ss <= 1; ss := ss+1) {
2468 pars := valueof(t_Pars(t_RslChanNr_Lm(5, ss), ts_RSL_ChanMode_SIGN));
Eric Wild5b9ef142019-07-11 19:28:02 +02002469 vc_conn := f_start_handler(refers(f_TC_meas_res_periodic), pars,
2470 pcu_comp := false, trxc_comp := true);
Harald Welte70767382018-02-21 12:16:40 +01002471 vc_conn.done;
2472 }
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02002473 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte70767382018-02-21 12:16:40 +01002474}
2475testcase TC_meas_res_sign_sdcch4() runs on test_CT {
2476 var ConnHdlr vc_conn;
2477 var ConnHdlrPars pars;
Harald Welte10474062019-05-30 16:48:17 +02002478 f_init();
Harald Welte70767382018-02-21 12:16:40 +01002479 for (var integer ss := 0; ss <= 3; ss := ss+1) {
2480 pars := valueof(t_Pars(t_RslChanNr_SDCCH4(0, ss), ts_RSL_ChanMode_SIGN));
Eric Wild5b9ef142019-07-11 19:28:02 +02002481 vc_conn := f_start_handler(refers(f_TC_meas_res_periodic), pars,
2482 pcu_comp := false, trxc_comp := true);
Harald Welte70767382018-02-21 12:16:40 +01002483 vc_conn.done;
2484 }
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02002485 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte70767382018-02-21 12:16:40 +01002486}
2487testcase TC_meas_res_sign_sdcch8() runs on test_CT {
2488 var ConnHdlr vc_conn;
2489 var ConnHdlrPars pars;
Harald Welte10474062019-05-30 16:48:17 +02002490 f_init();
Harald Welte70767382018-02-21 12:16:40 +01002491 for (var integer ss := 0; ss <= 7; ss := ss+1) {
2492 pars := valueof(t_Pars(t_RslChanNr_SDCCH8(6, ss), ts_RSL_ChanMode_SIGN));
Eric Wild5b9ef142019-07-11 19:28:02 +02002493 vc_conn := f_start_handler(refers(f_TC_meas_res_periodic), pars,
2494 pcu_comp := false, trxc_comp := true);
Harald Welte70767382018-02-21 12:16:40 +01002495 vc_conn.done;
2496 }
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02002497 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte70767382018-02-21 12:16:40 +01002498}
Harald Welte685d5982018-02-27 20:42:05 +01002499testcase TC_meas_res_sign_tchh_toa256() runs on test_CT {
2500 var ConnHdlr vc_conn;
2501 var ConnHdlrPars pars;
Harald Welte10474062019-05-30 16:48:17 +02002502 f_init();
Harald Welte685d5982018-02-27 20:42:05 +01002503 f_vty_config(BTSVTY, "bts 0", "supp-meas-info toa256");
2504 for (var integer ss := 0; ss <= 1; ss := ss+1) {
2505 pars := valueof(t_Pars(t_RslChanNr_Lm(5, ss), ts_RSL_ChanMode_SIGN));
2506 pars.l1_pars.toa256_enabled := true;
2507 vc_conn := f_start_handler(refers(f_TC_meas_res_periodic), pars);
2508 vc_conn.done;
2509 }
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02002510 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte685d5982018-02-27 20:42:05 +01002511}
2512
Philipp Maier4d1e9c92018-12-20 11:11:56 +01002513/* establish DChan, and send MS POWER CONTROL messages via RSL, verify that
2514 * the BTS is forwarding those values to the MS via the SACCH L1 header. */
2515function f_tc_rsl_ms_pwr_ctrl(charstring id) runs on ConnHdlr {
2516 var L1ctlDlMessage l1_dl;
2517 var RSL_IE_MS_Power ms_power;
2518 var RSL_Message rsl;
2519 var uint5_t power_level := 0;
2520
2521 f_l1_tune(L1CTL);
2522 RSL.clear;
2523
2524 f_est_dchan();
2525
2526 ms_power.reserved := 0;
2527 ms_power.fpc_epc := false;
2528
2529 /* Send the first power control command. This will disable any BTS/TRX
2530 * internal power control and switch the MS (which is not in scope of
2531 * this test) to a constant power level. We start with a power level
2532 * of 0 */
2533 ms_power.power_level := power_level;
2534 rsl := valueof(ts_RSL_MS_PWR_CTRL(g_chan_nr, ms_power));
2535 RSL.send(rsl);
2536
2537 alt {
2538
2539 /* Pick all SACCH blocks for checking */
2540 [] L1CTL.receive(tr_L1CTL_DATA_IND(g_chan_nr, tr_RslLinkID_SACCH(?))) -> value l1_dl {
2541
2542 /* The first byte of the L1 header contains the power level.
2543 * The reserved bits and the fpc bit is set to 0, so we may
2544 * compare directly. */
2545 if (not (l1_dl.payload.data_ind.payload[0] == int2oct(power_level, 1))) {
2546 setverdict(fail, "Power level in L1 header does not match the signaled (RSL) power level.");
2547 }
2548
2549 /* Signal a new power level via RSL for the next turn. */
2550 if (power_level < 31) {
2551 power_level := power_level + 1;
2552 ms_power.power_level := power_level;
2553 rsl := valueof(ts_RSL_MS_PWR_CTRL(g_chan_nr, ms_power));
2554 RSL.send(rsl);
2555 repeat;
2556 }
2557
2558 }
2559
2560 /* Ignore all other blocks */
2561 [] L1CTL.receive { repeat; }
2562
2563 }
2564
2565 f_rsl_chan_deact();
2566 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
2567
2568 setverdict(pass);
2569}
2570
2571testcase TC_rsl_ms_pwr_ctrl() runs on test_CT {
2572 var ConnHdlr vc_conn;
2573 var ConnHdlrPars pars;
Harald Welte10474062019-05-30 16:48:17 +02002574 f_init();
Philipp Maier4d1e9c92018-12-20 11:11:56 +01002575
2576 for (var integer tn := 1; tn <= 4; tn := tn+1) {
2577 pars := valueof(t_Pars(t_RslChanNr_Bm(tn), ts_RSL_ChanMode_SIGN));
2578 vc_conn := f_start_handler(refers(f_tc_rsl_ms_pwr_ctrl), pars);
2579 vc_conn.done;
2580 }
2581 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
2582}
Harald Welte70767382018-02-21 12:16:40 +01002583
Eric Wild6833cc92019-05-23 19:34:44 +02002584/* establish DChan, verify that the BTS sets the TA in the first SACCH L1 header.
2585TA for the IMM ASS messages is still controlled by g_pars.l1_pars.ms_actual_ta! */
2586function f_tc_rsl_chan_initial_ta(charstring id) runs on ConnHdlr {
2587 var L1ctlDlMessage l1_dl;
2588 var uint5_t ta_to_test := 16;
2589
2590
2591 f_l1_tune(L1CTL);
2592 RSL.clear;
2593
2594 /* tell fake_trx to use a given timing offset for all bursts */
Vadim Yanitskiydc8db922019-06-04 21:58:15 +07002595 f_trxc_fake_toffs256(ta_to_test*256);
Eric Wild6833cc92019-05-23 19:34:44 +02002596
2597 f_est_dchan(more_ies :={valueof(t_RSL_IE(RSL_IE_TIMING_ADVANCE, RSL_IE_Body:{timing_adv := ta_to_test}))} );
2598
2599
2600 alt {
2601
2602 /* Pick all SACCH blocks for checking */
2603 [] L1CTL.receive(tr_L1CTL_DATA_IND(g_chan_nr, tr_RslLinkID_SACCH(?))) -> value l1_dl {
2604
2605 /* The second byte of the L1 header contains the TA. */
2606 if (not (l1_dl.payload.data_ind.payload[1] == int2oct(ta_to_test, 1))) {
2607 setverdict(fail, "TA in L1 header does not match the signaled (RSL) TA.");
2608 }
2609
2610 }
2611
2612 /* Ignore all other blocks */
2613 [] L1CTL.receive { repeat; }
2614
2615 }
2616
2617 f_rsl_chan_deact();
2618 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
2619
2620 setverdict(pass);
2621}
2622
2623testcase TC_rsl_chan_initial_ta() runs on test_CT {
2624 var ConnHdlr vc_conn;
2625 var ConnHdlrPars pars;
Harald Welte10474062019-05-30 16:48:17 +02002626 f_init();
Eric Wild6833cc92019-05-23 19:34:44 +02002627 pars := valueof(t_Pars(t_RslChanNr_Bm(1), ts_RSL_ChanMode_SIGN));
Vadim Yanitskiyf4e997c2019-06-04 21:40:33 +07002628 vc_conn := f_start_handler(refers(f_tc_rsl_chan_initial_ta), pars,
2629 pcu_comp := false, trxc_comp := true);
Eric Wild6833cc92019-05-23 19:34:44 +02002630 vc_conn.done;
2631 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
2632}
2633
Eric Wilde57e1a62019-05-28 13:30:55 +02002634/* establish DChan, verify that the BTS sets MS power in the first SACCH L1 header. */
2635function f_tc_rsl_chan_initial_ms_pwr(charstring id) runs on ConnHdlr {
2636 var L1ctlDlMessage l1_dl;
2637 var uint5_t ms_power_level := 7;
2638
2639 var RSL_IE_MS_Power ms_power;
2640 ms_power.reserved := 0;
2641 ms_power.fpc_epc := false;
2642 ms_power.power_level := ms_power_level;
2643
2644 f_l1_tune(L1CTL);
2645 RSL.clear;
2646
2647 f_est_dchan(more_ies :={valueof(t_RSL_IE(RSL_IE_MS_POWER, RSL_IE_Body:{ms_power := ms_power}))} );
2648
2649 timer T := 1.0;
2650 T.start;
2651 alt {
2652 /* Pick all SACCH blocks for checking */
2653 [] L1CTL.receive(tr_L1CTL_DATA_IND(g_chan_nr, tr_RslLinkID_SACCH(?))) -> value l1_dl {
2654 /* The first byte of the L1 header contains the power level.. */
2655 if (not (l1_dl.payload.data_ind.payload[0] == int2oct(ms_power_level, 1))) {
2656 setverdict(fail, "Power Level in L1 header does not match the signaled (RSL) MS Power Level.");
2657 }
2658 }
2659 /* Ignore all other blocks */
2660 [] L1CTL.receive { repeat; }
2661 [] T.timeout {
2662 setverdict(fail, "Power Level in L1 header does not match the signaled (RSL) MS Power Level.");
2663 }
2664 }
2665
2666 f_rsl_chan_deact();
2667 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
2668 setverdict(pass);
2669}
2670
2671testcase TC_rsl_chan_initial_ms_pwr() runs on test_CT {
2672 var ConnHdlrPars pars := valueof(t_Pars(t_RslChanNr_Bm(1), ts_RSL_ChanMode_SIGN));
2673 f_testmatrix_each_chan(pars, refers(f_tc_rsl_chan_initial_ms_pwr));
2674}
2675
Harald Welte0472ab42018-03-12 15:02:26 +01002676/* Test if a channel without valid uplink bursts generates RSL CONN FAIL IND (TS 48.058 4.10) */
Harald Welte70767382018-02-21 12:16:40 +01002677private function f_TC_conn_fail_crit(charstring id) runs on ConnHdlr {
Harald Welte68e495b2018-02-25 00:05:57 +01002678 f_l1_tune(L1CTL);
Harald Welte70767382018-02-21 12:16:40 +01002679 RSL.clear;
2680
2681 f_est_dchan();
2682 f_sleep(2.0);
Harald Weltef8df4cb2018-03-10 15:15:08 +01002683 L1CTL.send(ts_L1CTL_DM_REL_REQ(g_chan_nr));
Harald Welte70767382018-02-21 12:16:40 +01002684
2685 timer T := 40.0;
2686 T.start;
2687 alt {
2688 [] RSL.receive(tr_RSL_CONN_FAIL_IND(g_chan_nr, ?)) {
2689 setverdict(pass)
2690 }
2691 [] RSL.receive { repeat };
2692 [] T.timeout {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02002693 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "No CONN FAIL IND received");
Harald Welte70767382018-02-21 12:16:40 +01002694 }
2695 }
2696 f_rsl_chan_deact();
2697}
2698testcase TC_conn_fail_crit() runs on test_CT {
2699 var ConnHdlr vc_conn;
2700 var ConnHdlrPars pars;
Harald Welte10474062019-05-30 16:48:17 +02002701 f_init();
Harald Welte70767382018-02-21 12:16:40 +01002702 pars := valueof(t_Pars(t_RslChanNr_SDCCH8(6, 3), ts_RSL_ChanMode_SIGN));
2703 pars.t_guard := 60.0;
2704 vc_conn := f_start_handler(refers(f_TC_conn_fail_crit), pars);
2705 vc_conn.done;
2706}
2707
Harald Welte93640c62018-02-25 16:59:33 +01002708/***********************************************************************
2709 * Paging
2710 ***********************************************************************/
2711
Harald Welte68e495b2018-02-25 00:05:57 +01002712function tmsi_is_dummy(TMSIP_TMSI_V tmsi) return boolean {
2713 if (tmsi == 'FFFFFFFF'O) {
2714 return true;
2715 } else {
2716 return false;
2717 }
2718}
Harald Welte70767382018-02-21 12:16:40 +01002719
Philipp Maier82cb0b12018-08-31 14:41:39 +02002720type record allowedFn { integer frame_nr }
2721template allowedFn bs_ag_blks_res_0 := { frame_nr := (6, 12, 16, 22, 26, 32, 36, 42, 46) }
2722template allowedFn bs_ag_blks_res_1 := { frame_nr := (12, 16, 22, 26, 32, 36, 42, 46) }
2723template allowedFn bs_ag_blks_res_2 := { frame_nr := (16, 22, 26, 32, 36, 42, 46) }
2724template allowedFn bs_ag_blks_res_3 := { frame_nr := (22, 26, 32, 36, 42, 46) }
2725template allowedFn bs_ag_blks_res_4 := { frame_nr := (26, 32, 36, 42, 46) }
2726template allowedFn bs_ag_blks_res_5 := { frame_nr := (32, 36, 42, 46) }
2727template allowedFn bs_ag_blks_res_6 := { frame_nr := (36, 42, 46) }
2728template allowedFn bs_ag_blks_res_7 := { frame_nr := (42, 46) }
2729function check_pch_fn(integer frame_nr, integer bs_ag_blks_res) runs on test_CT
2730{
2731 var integer frame_nr_51;
2732 frame_nr_51 := frame_nr mod 51
2733
2734 var allowedFn fn_check;
2735 fn_check.frame_nr := frame_nr_51;
2736
2737 if (bs_ag_blks_res < 0 or bs_ag_blks_res > 7) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02002738 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "bs_ag_blks_res out of valid range (0..7)");
Philipp Maier82cb0b12018-08-31 14:41:39 +02002739 return;
2740 }
2741
2742 if (bs_ag_blks_res == 0 and match(fn_check, bs_ag_blks_res_0)) {
2743 return;
2744 }
2745 if (bs_ag_blks_res == 1 and match(fn_check, bs_ag_blks_res_1)) {
2746 return;
2747 }
2748 if (bs_ag_blks_res == 2 and match(fn_check, bs_ag_blks_res_2)) {
2749 return;
2750 }
2751 if (bs_ag_blks_res == 3 and match(fn_check, bs_ag_blks_res_3)) {
2752 return;
2753 }
2754 if (bs_ag_blks_res == 4 and match(fn_check, bs_ag_blks_res_4)) {
2755 return;
2756 }
2757 if (bs_ag_blks_res == 5 and match(fn_check, bs_ag_blks_res_5)) {
2758 return;
2759 }
2760 if (bs_ag_blks_res == 6 and match(fn_check, bs_ag_blks_res_6)) {
2761 return;
2762 }
2763 if (bs_ag_blks_res == 7 and match(fn_check, bs_ag_blks_res_7)) {
2764 return;
2765 }
2766
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02002767 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "received paging on AGCH");
Philipp Maier82cb0b12018-08-31 14:41:39 +02002768 return;
2769}
2770
2771altstep as_l1_count_paging(inout integer num_paging_rcv_msgs, inout integer num_paging_rcv_ids, PagingTestCfg cfg)
Harald Welte68e495b2018-02-25 00:05:57 +01002772runs on test_CT {
2773 var L1ctlDlMessage dl;
Harald Weltef8df4cb2018-03-10 15:15:08 +01002774 [] L1CTL.receive(tr_L1CTL_DATA_IND(t_RslChanNr_PCH_AGCH(0), ?, c_DummyUI)) {
Harald Welte68e495b2018-02-25 00:05:57 +01002775 repeat;
2776 }
Harald Weltef8df4cb2018-03-10 15:15:08 +01002777 [] L1CTL.receive(tr_L1CTL_DATA_IND(t_RslChanNr_PCH_AGCH(0))) -> value dl {
Harald Welte68e495b2018-02-25 00:05:57 +01002778 var octetstring without_plen :=
2779 substr(dl.payload.data_ind.payload, 1, lengthof(dl.payload.data_ind.payload)-1);
2780 var PDU_ML3_NW_MS rr := dec_PDU_ML3_NW_MS(without_plen);
Philipp Maier82cb0b12018-08-31 14:41:39 +02002781
2782 check_pch_fn(dl.dl_info.frame_nr, cfg.bs_ag_blks_res);
2783
Harald Welte68e495b2018-02-25 00:05:57 +01002784 if (match(rr, tr_PAGING_REQ1)) {
2785 num_paging_rcv_msgs := num_paging_rcv_msgs + 1;
2786 num_paging_rcv_ids := num_paging_rcv_ids + 1;
2787 if (isvalue(rr.msgs.rrm.pagingReq_Type1.mobileIdentity2)) {
2788 num_paging_rcv_ids := num_paging_rcv_ids + 1;
2789 }
2790 } else if (match(rr, tr_PAGING_REQ2)) {
2791 num_paging_rcv_msgs := num_paging_rcv_msgs + 1;
2792 if (not tmsi_is_dummy(rr.msgs.rrm.pagingReq_Type2.mobileIdentity1)) {
2793 num_paging_rcv_ids := num_paging_rcv_ids + 1;
2794 }
2795 if (not tmsi_is_dummy(rr.msgs.rrm.pagingReq_Type2.mobileIdentity2)) {
2796 num_paging_rcv_ids := num_paging_rcv_ids + 1;
2797 }
2798 if (isvalue(rr.msgs.rrm.pagingReq_Type2.mobileIdentity3)) {
2799 num_paging_rcv_ids := num_paging_rcv_ids + 1;
2800 }
2801 } else if (match(rr, tr_PAGING_REQ3)) {
2802 num_paging_rcv_msgs := num_paging_rcv_msgs + 1;
2803 if (not tmsi_is_dummy(rr.msgs.rrm.pagingReq_Type3.mobileIdentity1)) {
2804 num_paging_rcv_ids := num_paging_rcv_ids + 1;
2805 }
2806 if (not tmsi_is_dummy(rr.msgs.rrm.pagingReq_Type3.mobileIdentity2)) {
2807 num_paging_rcv_ids := num_paging_rcv_ids + 1;
2808 }
2809 if (not tmsi_is_dummy(rr.msgs.rrm.pagingReq_Type3.mobileIdentity3)) {
2810 num_paging_rcv_ids := num_paging_rcv_ids + 1;
2811 }
2812 if (not tmsi_is_dummy(rr.msgs.rrm.pagingReq_Type3.mobileIdentity4)) {
2813 num_paging_rcv_ids := num_paging_rcv_ids + 1;
2814 }
2815 }
2816 repeat;
2817 }
2818}
2819
2820type record PagingTestCfg {
2821 boolean combined_ccch,
2822 integer bs_ag_blks_res,
2823 float load_factor,
2824 boolean exp_load_ind,
2825 boolean exp_overload,
2826 boolean use_tmsi
2827}
2828
2829type record PagingTestState {
2830 integer num_paging_sent,
2831 integer num_paging_rcv_msgs,
2832 integer num_paging_rcv_ids,
2833 integer num_overload
2834}
2835
2836/* receive + ignore RSL RF RES IND */
2837altstep as_rsl_res_ind() runs on test_CT {
2838 [] RSL_CCHAN.receive(tr_RSL_UD(tr_RSL_RF_RES_IND)) {
2839 repeat;
2840 }
2841}
2842
2843/* Helper function for paging related testing */
2844private function f_TC_paging(PagingTestCfg cfg) runs on test_CT return PagingTestState {
Harald Welte10474062019-05-30 16:48:17 +02002845 f_init();
Harald Welte68e495b2018-02-25 00:05:57 +01002846 f_init_l1ctl();
2847 f_l1_tune(L1CTL);
2848
2849 var PagingTestState st := {
2850 num_paging_sent := 0,
2851 num_paging_rcv_msgs := 0,
2852 num_paging_rcv_ids := 0,
2853 num_overload := 0
2854 };
2855
2856 var float max_pch_blocks_per_sec := f_pch_block_rate_est(cfg.combined_ccch, cfg.bs_ag_blks_res);
2857 var float max_pch_imsi_per_sec;
2858 if (cfg.use_tmsi) {
2859 max_pch_imsi_per_sec := max_pch_blocks_per_sec * 4.0; /* Type 3 */
2860 } else {
2861 max_pch_imsi_per_sec := max_pch_blocks_per_sec * 2.0; /* Type 1 */
2862 }
2863 var float pch_blocks_per_sec := max_pch_imsi_per_sec * cfg.load_factor;
2864 var float interval := 1.0 / pch_blocks_per_sec;
Pau Espin Pedrol9c3ff4e2018-09-26 18:30:16 +02002865 var float time_total := 20.0;
2866 var integer pkt_total := float2int(time_total * pch_blocks_per_sec);
2867 log("pch_blocks_total=", pkt_total," pch_blocks_per_sec=", pch_blocks_per_sec, " interval=", interval);
Harald Welte68e495b2018-02-25 00:05:57 +01002868
Pau Espin Pedrol9c3ff4e2018-09-26 18:30:16 +02002869 timer T_total := 300.0; /* big value (far bigger than time_total), used to count elapsed time */
2870 T_total.start;
Harald Welte68e495b2018-02-25 00:05:57 +01002871
Pau Espin Pedrol9c3ff4e2018-09-26 18:30:16 +02002872 timer T_itv := 0.0;
2873 T_itv.start;
2874 while (st.num_paging_sent < pkt_total) {
Harald Welte68e495b2018-02-25 00:05:57 +01002875 alt {
2876 /* check for presence of CCCH LOAD IND (paging load) */
2877 [cfg.exp_overload] RSL_CCHAN.receive(tr_RSL_UD(tr_RSL_PAGING_LOAD_IND(0))) {
2878 st.num_overload := st.num_overload + 1;
2879 repeat;
2880 }
2881 [not cfg.exp_overload] RSL_CCHAN.receive(tr_RSL_UD(tr_RSL_PAGING_LOAD_IND(0))) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02002882 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Unexpected PCH Overload");
Harald Welte68e495b2018-02-25 00:05:57 +01002883 }
2884 [cfg.exp_load_ind] RSL_CCHAN.receive(tr_RSL_UD(tr_RSL_PAGING_LOAD_IND)) {
2885 log("Rx LOAD_IND");
2886 /* FIXME: analyze/verify interval + contents */
2887 repeat;
2888 }
2889 /* check if paging requests arrive on Um side */
Philipp Maier82cb0b12018-08-31 14:41:39 +02002890 [] as_l1_count_paging(st.num_paging_rcv_msgs, st.num_paging_rcv_ids, cfg);
Harald Welte68e495b2018-02-25 00:05:57 +01002891 [] L1CTL.receive { repeat; }
Pau Espin Pedrol9c3ff4e2018-09-26 18:30:16 +02002892 [] T_itv.timeout {
2893 /* Send paging cmds based on elapsed time */
2894 var integer new_sent := f_min(pkt_total, float2int(T_total.read * pch_blocks_per_sec) + 1);
2895 while (st.num_paging_sent < new_sent) {
2896 /* build mobile Identity */
2897 var MobileL3_CommonIE_Types.MobileIdentityLV mi;
2898 if (cfg.use_tmsi) {
2899 mi := valueof(ts_MI_TMSI_LV(f_rnd_octstring(4)));
2900 } else {
2901 mi := valueof(ts_MI_IMSI_LV(f_gen_imsi(st.num_paging_sent)));
2902 }
2903 var octetstring mi_enc_lv := enc_MobileIdentityLV(mi);
2904 var octetstring mi_enc := substr(mi_enc_lv, 1, lengthof(mi_enc_lv)-1);
2905
2906 /* Send RSL PAGING COMMAND */
2907 RSL_CCHAN.send(ts_RSL_UD(ts_RSL_PAGING_CMD(mi_enc, st.num_paging_sent mod 4)));
2908
2909 st.num_paging_sent := st.num_paging_sent + 1;
2910 }
2911 if (st.num_paging_sent < pkt_total) {
2912 /* Wait for interval to next PAGING COMMAND */
2913 var float time_now := T_total.read;
2914 var float next_sched := int2float(st.num_paging_sent)*interval;
2915 if (next_sched > time_now) {
2916 T_itv.start(next_sched - time_now);
2917 } else {
2918 T_itv.start(0.0);
2919 }
2920 } else {
2921 /* We are done, no need to keep counting */
2922 T_total.stop;
2923 }
2924 }
2925 [] T_total.timeout { }
Harald Welte68e495b2018-02-25 00:05:57 +01002926 [] as_rsl_res_ind();
2927 }
2928 }
2929
2930 /* wait for max 18s for paging queue to drain (size: 200, ~ 13 per s -> 15s) */
2931 timer T_wait := 18.0;
2932 T_wait.start;
2933 alt {
Philipp Maier82cb0b12018-08-31 14:41:39 +02002934 [] as_l1_count_paging(st.num_paging_rcv_msgs, st.num_paging_rcv_ids, cfg);
Harald Welte68e495b2018-02-25 00:05:57 +01002935 [] L1CTL.receive { repeat; }
2936 /* 65535 == empty paging queue, we can terminate*/
2937 [] RSL_CCHAN.receive(tr_RSL_UD(tr_RSL_PAGING_LOAD_IND(65535))) { }
2938 [] RSL_CCHAN.receive(tr_RSL_UD(tr_RSL_PAGING_LOAD_IND)) { repeat; }
2939 [] T_wait.timeout {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02002940 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Waiting for empty paging queue");
Harald Welte68e495b2018-02-25 00:05:57 +01002941 }
2942 [] as_rsl_res_ind();
2943 }
2944
2945 log("num_paging_sent=", st.num_paging_sent, " rcvd_msgs=", st.num_paging_rcv_msgs,
2946 " rcvd_ids=", st.num_paging_rcv_ids);
2947 return st;
2948}
2949
2950/* Create ~ 80% paging load (IMSI only) sustained for about 20s, verifying that
2951 * - the number of Mobile Identities on Um PCH match the number of pages on RSL
2952 * - that CCCH LOAD IND (PCH) are being generated
2953 * - that CCCH LOAD IND (PCH) [no load] is received after paging flood is over */
2954testcase TC_paging_imsi_80percent() runs on test_CT {
Philipp Maierd65d0562018-08-30 16:25:47 +02002955 var SystemInformation si3 := valueof(ts_SI3_default);
Harald Welte68e495b2018-02-25 00:05:57 +01002956 var PagingTestCfg cfg := {
2957 combined_ccch := true,
Philipp Maierd65d0562018-08-30 16:25:47 +02002958 bs_ag_blks_res := si3.payload.si3.ctrl_chan_desc.bs_ag_blks_res,
Harald Welte68e495b2018-02-25 00:05:57 +01002959 load_factor := 0.8,
2960 exp_load_ind := true,
2961 exp_overload := false,
2962 use_tmsi := false
2963 };
2964 var PagingTestState st := f_TC_paging(cfg);
2965 if (st.num_paging_sent != st.num_paging_rcv_ids) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02002966 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, log2str("Expected ", st.num_paging_sent, " pagings but have ",
2967 st.num_paging_rcv_ids));
Harald Welte68e495b2018-02-25 00:05:57 +01002968 } else {
2969 setverdict(pass);
2970 }
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02002971 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte68e495b2018-02-25 00:05:57 +01002972}
2973
2974/* Create ~ 80% paging load (TMSI only) sustained for about 20s, verifying that
2975 * - the number of Mobile Identities on Um PCH match the number of pages on RSL
2976 * - that CCCH LOAD IND (PCH) are being generated
2977 * - that CCCH LOAD IND (PCH) [no load] is received after paging flood is over */
2978testcase TC_paging_tmsi_80percent() runs on test_CT {
Philipp Maierd65d0562018-08-30 16:25:47 +02002979 var SystemInformation si3 := valueof(ts_SI3_default);
Harald Welte68e495b2018-02-25 00:05:57 +01002980 var PagingTestCfg cfg := {
2981 combined_ccch := true,
Philipp Maierd65d0562018-08-30 16:25:47 +02002982 bs_ag_blks_res := si3.payload.si3.ctrl_chan_desc.bs_ag_blks_res,
Harald Welte68e495b2018-02-25 00:05:57 +01002983 load_factor := 0.8,
2984 exp_load_ind := true,
2985 exp_overload := false,
2986 use_tmsi := true
2987 };
2988 var PagingTestState st := f_TC_paging(cfg);
2989 if (st.num_paging_sent != st.num_paging_rcv_ids) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02002990 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, log2str("Expected ", st.num_paging_sent, " pagings but have ",
2991 st.num_paging_rcv_ids));
Harald Welte68e495b2018-02-25 00:05:57 +01002992 } else {
2993 setverdict(pass);
2994 }
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02002995 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte68e495b2018-02-25 00:05:57 +01002996}
2997
2998/* Create ~ 200% paging load (IMSI only) sustained for about 20s, verifying that
2999 * - the number of Mobile Identities on Um PCH are ~ 82% of the number of pages on RSL
3000 * - that CCCH LOAD IND (PCH) are being generated and reach 0 at some point
3001 * - that CCCH LOAD IND (PCH) [no load] is received after paging flood is over */
3002testcase TC_paging_imsi_200percent() runs on test_CT {
Philipp Maierd65d0562018-08-30 16:25:47 +02003003 var SystemInformation si3 := valueof(ts_SI3_default);
Harald Welte68e495b2018-02-25 00:05:57 +01003004 var PagingTestCfg cfg := {
3005 combined_ccch := true,
Philipp Maierd65d0562018-08-30 16:25:47 +02003006 bs_ag_blks_res := si3.payload.si3.ctrl_chan_desc.bs_ag_blks_res,
Harald Welte68e495b2018-02-25 00:05:57 +01003007 load_factor := 2.0,
3008 exp_load_ind := true,
3009 exp_overload := true,
3010 use_tmsi := false
3011 };
3012 var PagingTestState st := f_TC_paging(cfg);
3013 /* We expect about 80-85% to pass, given that we can fill the paging buffer of 200
3014 * slots and will fully drain that buffer before returning */
Pau Espin Pedrol9c3ff4e2018-09-26 18:30:16 +02003015 var template integer tpl := (st.num_paging_sent*78/100 .. st.num_paging_sent *85/100);
Harald Welte68e495b2018-02-25 00:05:57 +01003016 if (not match(st.num_paging_rcv_ids, tpl)) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003017 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, log2str("Expected ", tpl, " pagings but have ", st.num_paging_rcv_ids));
Harald Welte68e495b2018-02-25 00:05:57 +01003018 } else {
3019 setverdict(pass);
3020 }
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003021 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte68e495b2018-02-25 00:05:57 +01003022}
3023
3024/* Create ~ 200% paging load (TMSI only) sustained for about 20s, verifying that
3025 * - the number of Mobile Identities on Um PCH are ~ 82% of the number of pages on RSL
3026 * - that CCCH LOAD IND (PCH) are being generated and reach 0 at some point
3027 * - that CCCH LOAD IND (PCH) [no load] is received after paging flood is over */
3028testcase TC_paging_tmsi_200percent() runs on test_CT {
Philipp Maierd65d0562018-08-30 16:25:47 +02003029 var SystemInformation si3 := valueof(ts_SI3_default);
Harald Welte68e495b2018-02-25 00:05:57 +01003030 var PagingTestCfg cfg := {
3031 combined_ccch := true,
Philipp Maierd65d0562018-08-30 16:25:47 +02003032 bs_ag_blks_res := si3.payload.si3.ctrl_chan_desc.bs_ag_blks_res,
Harald Welte68e495b2018-02-25 00:05:57 +01003033 load_factor := 2.0,
3034 exp_load_ind := true,
3035 exp_overload := true,
3036 use_tmsi := true
3037 };
3038 var PagingTestState st := f_TC_paging(cfg);
3039 /* We expect about 70% to pass, given that we can fill the paging buffer of 200
3040 * slots and will fully drain that buffer before returning */
Pau Espin Pedrol9c3ff4e2018-09-26 18:30:16 +02003041 var template integer tpl := (st.num_paging_sent*64/100 .. st.num_paging_sent *72/100);
Harald Welte68e495b2018-02-25 00:05:57 +01003042 if (not match(st.num_paging_rcv_ids, tpl)) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003043 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, log2str("Expected ", tpl, " pagings but have ", st.num_paging_rcv_ids));
Harald Welte68e495b2018-02-25 00:05:57 +01003044 } else {
3045 setverdict(pass);
3046 }
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003047 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte68e495b2018-02-25 00:05:57 +01003048}
3049
3050
Harald Welte93640c62018-02-25 16:59:33 +01003051/***********************************************************************
3052 * Immediate Assignment / AGCH
3053 ***********************************************************************/
Harald Weltee8d750e2018-06-10 21:41:35 +02003054const MobileAllocation c_MA_null := {
3055 len := 0,
3056 ma := ''B
3057}
Harald Welte93640c62018-02-25 16:59:33 +01003058
Harald Weltee8d750e2018-06-10 21:41:35 +02003059template (value) ChannelDescription ts_ChanDesc(template (value) RslChannelNr chan_nr, uint3_t tsc := 7,
3060 uint12_t arfcn := 871) := {
3061 chan_nr := chan_nr,
3062 tsc := tsc,
3063 h := false,
3064 arfcn := arfcn,
3065 maio_hsn := omit
3066}
3067
3068private function f_fmt_ia_stats(integer num_tx, integer num_rx, integer num_del) return charstring {
3069 return int2str(num_tx) & " sent, "
3070 & int2str(num_rx) & " received, "
3071 & int2str(num_del) & " deleted";
3072}
3073
3074private function f_TC_imm_ass(integer num_total, float sleep_s, float exp_pass) runs on test_CT {
3075 var L1ctlDlMessage l1_dl;
3076 timer T := 10.0;
3077 var integer num_tx := 0;
3078 var integer num_rx := 0;
3079 var integer num_del := 0;
3080 var charstring res_str;
3081 var float rx_ratio;
3082
Harald Welte10474062019-05-30 16:48:17 +02003083 f_init();
Harald Weltee8d750e2018-06-10 21:41:35 +02003084 f_init_l1ctl();
3085 f_l1_tune(L1CTL);
3086
3087 for (var integer i := 0; i < num_total; i := i+1) {
3088 var ChannelDescription ch_desc := valueof(ts_ChanDesc(valueof(t_RslChanNr_SDCCH4(0, 0))));
3089 var GsmRrMessage ia := valueof(ts_IMM_ASS(42, i, 5, ch_desc, c_MA_null));
3090 var octetstring ia_enc := enc_GsmRrMessage(ia);
Harald Welte68e495b2018-02-25 00:05:57 +01003091 RSL_CCHAN.send(ts_RSL_UD(ts_RSL_IMM_ASSIGN(ia_enc, 0)));
Harald Weltee8d750e2018-06-10 21:41:35 +02003092 num_tx := num_tx+1;
3093 f_sleep(sleep_s);
Harald Welte68e495b2018-02-25 00:05:57 +01003094 }
3095 /* FIXME: check if imm.ass arrive on Um side */
Harald Weltee8d750e2018-06-10 21:41:35 +02003096 T.start;
3097 alt {
3098 [] RSL_CCHAN.receive(tr_RSL_UD(tr_RSL_DELETE_IND(?, 0))) {
3099 num_del := num_del+1;
3100 repeat;
3101 }
3102 [] RSL_CCHAN.receive {
3103 repeat;
3104 }
3105 [] L1CTL.receive(tr_L1CTL_DATA_IND(t_RslChanNr_PCH_AGCH(0), ?)) -> value l1_dl {
3106 /* somehow dec_SystemInformation will try to decode even non-RR as SI */
3107 var GsmRrMessage rr := dec_GsmRrMessage(l1_dl.payload.data_ind.payload);
3108 if (not match(rr, tr_IMM_ASS(42, ?, 5, ?, ?))) {
3109 /* FIXME: Why are we seeing paging requests on PCH/AGCH? */
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003110 //Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, log2str("Unexpected IMM-ASS values on AGCH: ", rr));
Harald Weltee8d750e2018-06-10 21:41:35 +02003111 } else {
3112 num_rx := num_rx+1;
3113 }
3114 repeat;
3115 }
3116 [] L1CTL.receive { repeat; }
3117 [] T.timeout { }
3118 }
3119 res_str := f_fmt_ia_stats(num_tx, num_rx, num_del);
3120 log("AGCH test: " & res_str);
3121 if (num_rx + num_del != num_tx) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003122 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "RX + DEL != TX ?!?: " & res_str);
Harald Weltee8d750e2018-06-10 21:41:35 +02003123 }
3124 rx_ratio := int2float(num_rx) / int2float(num_tx);
3125 if (rx_ratio < exp_pass*0.8 or rx_ratio > exp_pass*1.2) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003126 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "RX ratio ("&float2str(rx_ratio)&") far from expected ("&float2str(exp_pass)&") " & res_str);
Harald Weltee8d750e2018-06-10 21:41:35 +02003127 } else {
3128 setverdict(pass);
3129 }
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003130 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte68e495b2018-02-25 00:05:57 +01003131}
3132
Harald Weltee8d750e2018-06-10 21:41:35 +02003133/* send a long burst of 1000 IMM.ASS with 20ms spacing (50 per s); expect 75% of them to be deleted */
3134testcase TC_imm_ass_1000_20ms() runs on test_CT {
3135 f_TC_imm_ass(1000, 0.02, 0.25);
3136}
3137
3138/* send a short burst of 200 IMM.ASS without any spacing; expect 95% of them to be deleted */
3139testcase TC_imm_ass_200_0ms() runs on test_CT {
3140 f_TC_imm_ass(200, 0.0, 0.05);
3141}
3142
3143/* send 150 IMM.ASS at rate of 13/s; expect none of them to be deleted */
3144testcase TC_imm_ass_200_76ms() runs on test_CT {
3145 f_TC_imm_ass(150, 0.076, 1.00);
3146}
3147
3148
3149
Harald Welte48494ca2018-02-25 16:59:50 +01003150/***********************************************************************
3151 * BCCH
3152 ***********************************************************************/
3153
3154/* tuple of Frame Number + decoded SI */
3155type record SystemInformationFn {
3156 GsmFrameNumber frame_number,
3157 SystemInformation si
3158}
3159
3160/* an arbitrary-length vector of decoded SI + gsmtap header */
3161type record of SystemInformationFn SystemInformationVector;
3162
3163/* an array of SI-vectors indexed by TC value */
3164type SystemInformationVector SystemInformationVectorPerTc[8];
3165
3166/* determine if a given SI vector contains given SI type at least once */
3167function f_si_vecslot_contains(SystemInformationVector arr, RrMessageType key, boolean bcch_ext := false) return boolean {
3168 for (var integer i:= 0; i< sizeof(arr); i := i + 1) {
3169 var integer fn_mod51 := arr[i].frame_number mod 51;
3170 if (not bcch_ext and fn_mod51 == 2 or
3171 bcch_ext and fn_mod51 == 6) {
3172 if (arr[i].si.header.message_type == key) {
3173 return true;
3174 }
3175 }
3176 }
3177 return false;
3178}
3179
3180/* ensure a given TC slot of the SI vector contains given SI type at least once at TC */
3181function f_ensure_si_vec_contains(SystemInformationVectorPerTc arr, integer tc, RrMessageType key, boolean ext_bcch := false) {
3182 if (not f_si_vecslot_contains(arr[tc], key, ext_bcch)) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003183 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, log2str("No ", key, " in TC=", tc, "!"));
Harald Welte48494ca2018-02-25 16:59:50 +01003184 }
3185}
3186
3187/* check if a given SI vector contains given SI type at least once on any TC */
3188function f_si_vec_contains(SystemInformationVectorPerTc arr, RrMessageType key) return boolean {
3189 for (var integer tc:= 0; tc < sizeof(arr); tc := tc + 1) {
3190 if (f_si_vecslot_contains(arr[tc], key) or
3191 f_si_vecslot_contains(arr[tc], key, true)) {
3192 return true;
3193 }
3194 }
3195 return false;
3196}
3197
3198/* determine if a given SI vector contains given SI type at least N of M times */
3199function f_si_vecslot_contains_n_of_m(SystemInformationVector arr, RrMessageType key, boolean bcch_ext := false, integer n := 1, integer m := 4) return boolean {
3200 var integer count := 0;
3201 if (sizeof(arr) < m) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003202 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Error: Insufficient SI in array");
Harald Welte48494ca2018-02-25 16:59:50 +01003203 }
3204 for (var integer i:= 0; i < m; i := i + 1) {
3205 var integer fn_mod51 := arr[i].frame_number mod 51;
3206 if (not bcch_ext and fn_mod51 == 2 or
3207 bcch_ext and fn_mod51 == 6) {
3208 if (arr[i].si.header.message_type == key) {
3209 count := count + 1;
3210 }
3211 }
3212 }
3213 if (count >= n) {
3214 return true;
3215 } else {
3216 return false;
3217 }
3218}
3219
3220/* ensure a given TC slot of the SI vector contains given SI type at least N out of M times at TC */
3221function f_ensure_si_vec_contains_n_of_m(SystemInformationVectorPerTc arr, integer tc, RrMessageType key, boolean ext_bcch := false, integer n, integer m) {
3222 if (not f_si_vecslot_contains_n_of_m(arr[tc], key, ext_bcch, n, m)) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003223 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, log2str("Not ", n, "/", m, " of ", key, " in TC=", tc, "!"));
Harald Welte48494ca2018-02-25 16:59:50 +01003224 }
3225}
3226
3227/* determine if a given SI vector contains given SI type at least once */
3228function f_si_vecslot_contains_only(SystemInformationVector arr, RrMessageType key, boolean bcch_ext := false) return boolean {
3229 for (var integer i:= 0; i< sizeof(arr); i := i + 1) {
3230 var integer fn_mod51 := arr[i].frame_number mod 51;
3231 if (not bcch_ext and fn_mod51 == 2 or
3232 bcch_ext and fn_mod51 == 6) {
3233 if (arr[i].si.header.message_type != key) {
3234 return false;
3235 }
3236 }
3237 }
3238 return true;
3239}
3240
3241/* ensure a given TC slot of the SI vector contains only given SI type */
3242function f_ensure_si_vec_contains_only(SystemInformationVectorPerTc arr, integer tc, RrMessageType key, boolean ext_bcch := false) {
3243 if (not f_si_vecslot_contains_only(arr[tc], key, ext_bcch)) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003244 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, log2str("Not all ", key, " in TC=", tc, "!"));
Harald Welte48494ca2018-02-25 16:59:50 +01003245 }
3246}
3247
3248/* SI configuration of cell, against which we validate actual SI messages */
3249type set SystemInformationConfig {
3250 boolean bcch_extended,
3251 boolean si1_present,
3252 boolean si2bis_present,
3253 boolean si2ter_present,
3254 boolean si2quater_present,
3255 boolean si7_present,
3256 boolean si8_present,
3257 boolean si9_present,
3258 boolean si13_present,
3259 boolean si13alt_present,
3260 boolean si15_present,
3261 boolean si16_present,
3262 boolean si17_present,
3263 boolean si2n_present,
3264 boolean si21_present,
3265 boolean si22_present
3266}
3267
3268/* validate the SI scheduling according to TS 45.002 version 14.1.0 Release 14, Section 6.3.1.3 */
3269function f_validate_si_scheduling(SystemInformationConfig cfg, SystemInformationVectorPerTc si_per_tc) {
3270 var integer i;
3271 for (i := 0; i < sizeof(si_per_tc); i := i + 1) {
3272 if (sizeof(si_per_tc[i]) == 0) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003273 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, log2str("No SI messages for TC=", i));
Harald Welte48494ca2018-02-25 16:59:50 +01003274 }
3275 }
3276 if (cfg.si1_present) {
3277 /* ii) System Information Type 1 needs to be sent if frequency hopping is in use or
3278 * when the NCH is present in a cell. If the MS finds another message on BCCH Norm
3279 * when TC = 0, it can assume that System Information Type 1 is not in use. */
3280 f_ensure_si_vec_contains(si_per_tc, 0, SYSTEM_INFORMATION_TYPE_1);
3281 /* make sure *ALL* contain SI1 */
3282 f_ensure_si_vec_contains_only(si_per_tc, 0, SYSTEM_INFORMATION_TYPE_1);
3283 }
3284 f_ensure_si_vec_contains(si_per_tc, 1, SYSTEM_INFORMATION_TYPE_2);
3285 /* iii) A SI 2 message will be sent at least every time TC = 1 */
3286 f_ensure_si_vec_contains(si_per_tc, 2, SYSTEM_INFORMATION_TYPE_3);
3287 f_ensure_si_vec_contains(si_per_tc, 6, SYSTEM_INFORMATION_TYPE_3);
3288 f_ensure_si_vec_contains(si_per_tc, 3, SYSTEM_INFORMATION_TYPE_4);
3289 f_ensure_si_vec_contains(si_per_tc, 7, SYSTEM_INFORMATION_TYPE_4);
3290
3291 /* iii) System information type 2 bis or 2 ter messages are sent if needed, as determined by the
3292 * system operator. If only one of them is needed, it is sent when TC = 5. If both are
3293 * needed, 2bis is sent when TC = 5 and 2ter is sent at least once within any of 4
3294 * consecutive occurrences of TC = 4. */
3295 if (cfg.si2bis_present and not cfg.si2ter_present) {
3296 f_ensure_si_vec_contains(si_per_tc, 5, SYSTEM_INFORMATION_TYPE_2bis);
3297 } else if (cfg.si2ter_present and not cfg.si2bis_present) {
3298 f_ensure_si_vec_contains(si_per_tc, 5, SYSTEM_INFORMATION_TYPE_2ter);
3299 } else if (cfg.si2ter_present and cfg.si2bis_present) {
3300 f_ensure_si_vec_contains(si_per_tc, 5, SYSTEM_INFORMATION_TYPE_2bis);
3301 f_ensure_si_vec_contains_n_of_m(si_per_tc, 4, SYSTEM_INFORMATION_TYPE_2ter, false, 1, 4);
3302 }
3303
3304 if (cfg.si7_present or cfg.si8_present) {
3305 /* vi) Use of System Information type 7 and 8 is not always necessary. It is necessary
3306 * if System Information type 4 does not contain all information needed for cell
3307 * selection and reselection. */
3308 if (not cfg.bcch_extended) {
3309 testcase.stop("Error: SI7/SI8 require BCCH Extd.");
3310 }
3311 if (cfg.si7_present) {
3312 f_ensure_si_vec_contains(si_per_tc, 7, SYSTEM_INFORMATION_TYPE_7, true);
3313 }
3314 if (cfg.si8_present) {
3315 f_ensure_si_vec_contains(si_per_tc, 3, SYSTEM_INFORMATION_TYPE_8, true);
3316 }
3317 }
3318
3319 if (cfg.si2quater_present) {
3320 /* iii) System information type 2 quater is sent if needed, as determined by the system
3321 * operator. If sent on BCCH Norm, it shall be sent when TC = 5 if neither of 2bis
3322 * and 2ter are used, otherwise it shall be sent at least once within any of 4
3323 * consecutive occurrences of TC = 4. If sent on BCCH Ext, it is sent at least once
3324 * within any of 4 consecutive occurrences of TC = 5. */
3325 if (not (cfg.bcch_extended)) {
3326 if (not (cfg.si2bis_present or cfg.si2ter_present)) {
3327 f_ensure_si_vec_contains(si_per_tc, 5, SYSTEM_INFORMATION_TYPE_2quater);
3328 } else {
3329 f_ensure_si_vec_contains_n_of_m(si_per_tc, 4, SYSTEM_INFORMATION_TYPE_2quater, false, 1, 4);
3330 }
3331 } else {
3332 f_ensure_si_vec_contains_n_of_m(si_per_tc, 5, SYSTEM_INFORMATION_TYPE_2quater, true, 1, 4);
3333 }
3334 }
3335 if (cfg.si9_present) {
3336 /* vi) System Information type 9 is sent in those blocks with TC = 4 which are specified
3337 * in system information type 3 as defined in 3GPP TS 44.018. */
3338 f_ensure_si_vec_contains(si_per_tc, 4, SYSTEM_INFORMATION_TYPE_9); // FIXME SI3
3339 }
3340 if (cfg.si13_present) {
3341 /* vii) System Information type 13 is only related to the GPRS service. System Information
3342 * Type 13 need only be sent if GPRS support is indicated in one or more of System
3343 * Information Type 3 or 4 or 7 or 8 messages. These messages also indicate if the
3344 * message is sent on the BCCH Norm or if the message is transmitted on the BCCH Ext.
3345 * In the case that the message is sent on the BCCH Norm, it is sent at least once
3346 * within any of 4 consecutive occurrences of TC=4. */
3347 if (not cfg.bcch_extended) {
3348 log("not-bccch-extended");
3349 f_ensure_si_vec_contains_n_of_m(si_per_tc, 4, SYSTEM_INFORMATION_TYPE_13, false, 1, 4);
3350 } else {
3351 log("bccch-extended");
3352 f_ensure_si_vec_contains(si_per_tc, 0, SYSTEM_INFORMATION_TYPE_13, true);
3353 }
3354 if (f_si_vec_contains(si_per_tc, SYSTEM_INFORMATION_TYPE_13alt)) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003355 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Cannot have SI13alt and SI13");
Harald Welte48494ca2018-02-25 16:59:50 +01003356 }
3357 }
3358 if (cfg.si16_present or cfg.si17_present) {
3359 /* viii) System Information type 16 and 17 are only related to the SoLSA service. They
3360 * should not be sent in a cell where network sharing is used (see rule xv). */
3361 if (cfg.si22_present) {
3362 testcase.stop("Error: Cannot have SI16/SI17 and SI22!");
3363 }
3364 if (f_si_vec_contains(si_per_tc, SYSTEM_INFORMATION_TYPE_22)) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003365 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Cannot have SI16/SI17 and SI22!");
Harald Welte48494ca2018-02-25 16:59:50 +01003366 }
3367 if (not cfg.bcch_extended) {
3368 testcase.stop("Error: SI16/SI17 requires BCCH Extd!");
3369 }
3370 if (cfg.si16_present) {
3371 f_ensure_si_vec_contains(si_per_tc, 6, SYSTEM_INFORMATION_TYPE_16, true);
3372 }
3373 if (cfg.si17_present) {
3374 f_ensure_si_vec_contains(si_per_tc, 2, SYSTEM_INFORMATION_TYPE_17, true);
3375 }
3376 }
3377
3378 /* ix) System Information type 18 and 20 are sent in order to transmit non-GSM
3379 * broadcast information. The frequency with which they are sent is determined by the
3380 * system operator. System Information type 9 identifies the scheduling of System
3381 * Information type 18 and 20 messages. */
3382
3383 /* x) System Information Type 19 is sent if COMPACT neighbours exist. If System
3384 * Information Type 19 is present, then its scheduling shall be indicated in System
3385 * Information Type 9. */
3386
3387 if (cfg.si15_present) {
3388 /* xi) System Information Type 15 is broadcast if dynamic ARFCN mapping is used in the
3389 * PLMN. If sent on BCCH Norm, it is sent at least once within any of 4 consecutive
3390 * occurrences of TC = 4. If sent on BCCH Ext, it is sent at least once within any of
3391 * 4 consecutive occurrences of TC = 1. */
3392 if (not cfg.bcch_extended) {
3393 f_ensure_si_vec_contains_n_of_m(si_per_tc, 4, SYSTEM_INFORMATION_TYPE_15, false, 1, 4);
3394 } else {
3395 f_ensure_si_vec_contains_n_of_m(si_per_tc, 1, SYSTEM_INFORMATION_TYPE_15, true, 1, 4);
3396 }
3397 }
3398 if (cfg.si13alt_present) {
3399 /* xii) System Information type 13 alt is only related to the GERAN Iu mode. System
3400 * Information Type 13 alt need only be sent if GERAN Iu mode support is indicated in
3401 * one or more of System Information Type 3 or 4 or 7 or 8 messages and SI 13 is not
3402 * broadcast. These messages also indicate if the message is sent on the BCCH Norm or
3403 * if the message is transmitted on the BCCH Ext. In the case that the message is sent
3404 * on the BCCH Norm, it is sent at least once within any of 4 consecutive occurrences
3405 * of TC = 4. */
3406 if (cfg.si13_present) {
3407 testcase.stop("Error: Cannot have SI13alt and SI13");
3408 }
3409 if (f_si_vec_contains(si_per_tc, SYSTEM_INFORMATION_TYPE_13)) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003410 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Cannot have SI13alt and SI13");
Harald Welte48494ca2018-02-25 16:59:50 +01003411 }
3412 if (not cfg.bcch_extended) {
3413 f_ensure_si_vec_contains_n_of_m(si_per_tc, 4, SYSTEM_INFORMATION_TYPE_13alt, false, 1, 4);
3414 } else {
3415 f_ensure_si_vec_contains(si_per_tc, 0, SYSTEM_INFORMATION_TYPE_13alt, true);
3416 }
3417 }
3418 if (cfg.si2n_present) {
3419 /* xiii) System Information Type 2n is optionally sent on BCCH Norm or BCCH Ext if needed,
3420 * as determined by the system operator. In the case that the message is sent on the
3421 * BCCH Norm, it is sent at least once within any of 4 consecutive occurrences of TC =
3422 * 4. If the message is sent on BCCH Ext, it is sent at least once within any of 2
3423 * consecutive occurrences of TC = 4. */
3424 if (not cfg.bcch_extended) {
3425 f_ensure_si_vec_contains_n_of_m(si_per_tc, 4, SYSTEM_INFORMATION_TYPE_2n, false, 1, 4);
3426 } else {
3427 f_ensure_si_vec_contains_n_of_m(si_per_tc, 4, SYSTEM_INFORMATION_TYPE_2n, true, 2, 4);
3428 }
3429 }
3430 if (cfg.si21_present) {
3431 /* xiv) System Information Type 21 is optionally sent on BCCH Norm or BCCH Ext, as
3432 * determined by the system operator. If Extended Access Barring is in use in the cell
3433 * then this message is sent at least once within any of 4 consecutive occurrences of
3434 * TC = 4 regardless if it is sent on BCCH Norm or BCCH Ext. If BCCH Ext is used in a
3435 * cell then this message shall only be sent on BCCH Ext. */
3436 if (not cfg.bcch_extended) {
3437 f_ensure_si_vec_contains_n_of_m(si_per_tc, 4, SYSTEM_INFORMATION_TYPE_21, false, 1, 4);
3438 } else {
3439 f_ensure_si_vec_contains_n_of_m(si_per_tc, 4, SYSTEM_INFORMATION_TYPE_21, true, 1, 4);
3440 if (f_si_vecslot_contains(si_per_tc[4], SYSTEM_INFORMATION_TYPE_21)) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003441 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Cannot have SI21 on BCCH Norm if BCCH Extd enabled!");
Harald Welte48494ca2018-02-25 16:59:50 +01003442 }
3443 }
3444 }
3445 if (cfg.si22_present) {
3446 /* xv) System Information Type 22 is sent if network sharing is in use in the cell. It
3447 * should not be sent in a cell where SoLSA is used (see rule viii). System
3448 * Information Type 22 instances shall be sent on BCCH Ext within any occurrence of TC
3449 * =2 and TC=6. */
3450 if (cfg.si16_present or cfg.si17_present) {
3451 testcase.stop("Error: Cannot have SI16/SI17 and SI22!");
3452 }
3453 if (f_si_vec_contains(si_per_tc, SYSTEM_INFORMATION_TYPE_16) or
3454 f_si_vec_contains(si_per_tc, SYSTEM_INFORMATION_TYPE_17)) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003455 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Cannot have SI16/SI17 and SI22!");
Harald Welte48494ca2018-02-25 16:59:50 +01003456 }
3457 if (not cfg.bcch_extended) {
3458 testcase.stop("Error: SI22 requires BCCH Extd!");
3459 } else {
3460 f_ensure_si_vec_contains_only(si_per_tc, 2, SYSTEM_INFORMATION_TYPE_22, true);
3461 f_ensure_si_vec_contains_only(si_per_tc, 6, SYSTEM_INFORMATION_TYPE_22, true);
3462 }
3463 }
3464}
3465
3466/* sample Systme Information for specified duration via L1CTL */
3467function f_l1_sample_si(L1CTL_PT pt, float duration := 8.0) return SystemInformationVectorPerTc {
3468 timer T := duration;
3469 var SystemInformationVectorPerTc si_per_tc;
3470 var L1ctlDlMessage l1_dl;
3471
3472 /* initialize all per-TC vectors empty */
3473 for (var integer i:= 0; i < sizeof(si_per_tc); i := i+1) {
3474 si_per_tc[i] := {};
3475 }
3476
3477 /* flush all previous L1 queued msgs */
3478 pt.clear;
3479
3480 T.start;
3481 alt {
Harald Weltef8df4cb2018-03-10 15:15:08 +01003482 [] pt.receive(tr_L1CTL_DATA_IND(t_RslChanNr_BCCH(0), ?)) -> value l1_dl {
Harald Welte48494ca2018-02-25 16:59:50 +01003483 /* somehow dec_SystemInformation will try to decode even non-RR as SI */
3484 if (not (l1_dl.payload.data_ind.payload[1] == '06'O)) {
3485 log("Ignoring non-RR SI ", l1_dl);
3486 repeat;
3487 }
3488 var SystemInformationFn sig := {
3489 frame_number := l1_dl.dl_info.frame_nr,
3490 si := dec_SystemInformation(l1_dl.payload.data_ind.payload)
3491 }
3492 var integer tc := f_gsm_compute_tc(sig.frame_number);
3493 log("SI received at TC=", tc, ": ", sig.si);
3494 /* append to the per-TC bucket */
3495 si_per_tc[tc] := si_per_tc[tc] & { sig };
3496 repeat;
3497 }
3498 [] pt.receive { repeat; }
3499 [] T.timeout { }
3500 }
3501
3502 for (var integer i:= 0; i < sizeof(si_per_tc); i := i+1) {
3503 log(testcasename(), ": TC=", i, " has #of SI=", sizeof(si_per_tc[i]));
3504 }
3505 log("si_per_tc=", si_per_tc);
3506 return si_per_tc;
3507}
3508
3509/* helper function: Set given SI via RSL + validate scheduling.
3510 * CALLER MUST MAKE SURE TO CHANGE GLOBAL si_cfg! */
3511function f_TC_si_sched() runs on test_CT {
3512 var SystemInformationVectorPerTc si_per_tc;
3513 f_init_l1ctl();
3514 f_l1_tune(L1CTL);
3515
3516 /* Sample + Validate Scheduling */
3517 si_per_tc := f_l1_sample_si(L1CTL);
3518 f_validate_si_scheduling(si_cfg, si_per_tc);
3519
3520 setverdict(pass);
3521}
3522
3523testcase TC_si_sched_default() runs on test_CT {
3524 f_init();
Harald Welte0cae4552018-03-09 22:20:26 +01003525 /* 2+3+4 are mandatory and set in f_init() */
3526 f_TC_si_sched();
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003527 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte0cae4552018-03-09 22:20:26 +01003528}
3529
3530testcase TC_si_sched_1() runs on test_CT {
3531 f_init();
3532 si_cfg.si1_present := true;
3533 f_rsl_bcch_fill_raw(RSL_SYSTEM_INFO_1, '5506198fb38000000000000000000000000000e504002b'O);
Harald Welte48494ca2018-02-25 16:59:50 +01003534 f_TC_si_sched();
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003535 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte48494ca2018-02-25 16:59:50 +01003536}
3537
3538testcase TC_si_sched_2bis() runs on test_CT {
3539 f_init();
3540 si_cfg.si2bis_present := true;
3541 f_rsl_bcch_fill_raw(RSL_SYSTEM_INFO_2bis, '550602bfe809b3ff00000000000000000000007900002b'O);
3542 f_TC_si_sched();
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003543 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte48494ca2018-02-25 16:59:50 +01003544}
3545
3546testcase TC_si_sched_2ter() runs on test_CT {
3547 f_init();
3548 si_cfg.si2ter_present := true;
3549 f_rsl_bcch_fill_raw(RSL_SYSTEM_INFO_2ter, '010603bf66b0aa0a00000002000000000000002b2b2b2b'O);
3550 f_TC_si_sched();
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003551 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte48494ca2018-02-25 16:59:50 +01003552}
3553
3554testcase TC_si_sched_2ter_2bis() runs on test_CT {
3555 f_init();
3556 si_cfg.si2bis_present := true;
3557 f_rsl_bcch_fill_raw(RSL_SYSTEM_INFO_2bis, '550602bfe809b3ff00000000000000000000007900002b'O);
3558 si_cfg.si2ter_present := true;
3559 f_rsl_bcch_fill_raw(RSL_SYSTEM_INFO_2ter, '010603bf66b0aa0a00000002000000000000002b2b2b2b'O);
3560 f_TC_si_sched();
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003561 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte48494ca2018-02-25 16:59:50 +01003562}
3563
3564testcase TC_si_sched_2quater() runs on test_CT {
3565 f_init();
3566 si_cfg.si2quater_present := true;
3567 f_rsl_bcch_fill_raw(RSL_SYSTEM_INFO_2quater, '050607a8a0364aa698d72ff424feee0506d5e7fff02043'O);
3568 f_TC_si_sched();
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003569 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte48494ca2018-02-25 16:59:50 +01003570}
3571
3572testcase TC_si_sched_13() runs on test_CT {
3573 f_init();
3574 si_cfg.si13_present := true;
Harald Welte5618c2a2018-04-15 16:24:46 +02003575 f_rsl_bcch_fill_raw(RSL_SYSTEM_INFO_13, '0106009000185a6fc9e08410ab2b2b2b2b2b2b2b2b2b2b'O);
Harald Welte48494ca2018-02-25 16:59:50 +01003576 f_TC_si_sched();
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003577 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte48494ca2018-02-25 16:59:50 +01003578}
3579
3580testcase TC_si_sched_13_2bis_2ter_2quater() runs on test_CT {
3581 f_init();
3582 si_cfg.si2bis_present := true;
3583 f_rsl_bcch_fill_raw(RSL_SYSTEM_INFO_2bis, '550602bfe809b3ff00000000000000000000007900002b'O);
3584 si_cfg.si2ter_present := true;
3585 f_rsl_bcch_fill_raw(RSL_SYSTEM_INFO_2ter, '010603bf66b0aa0a00000002000000000000002b2b2b2b'O);
3586 si_cfg.si2quater_present := true;
3587 f_rsl_bcch_fill_raw(RSL_SYSTEM_INFO_2quater, '050607a8a0364aa698d72ff424feee0506d5e7fff02043'O);
3588 si_cfg.si13_present := true;
Harald Welte5618c2a2018-04-15 16:24:46 +02003589 f_rsl_bcch_fill_raw(RSL_SYSTEM_INFO_13, '0106009000185a6fc9e08410ab2b2b2b2b2b2b2b2b2b2b'O);
Harald Welte48494ca2018-02-25 16:59:50 +01003590 f_TC_si_sched();
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003591 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte48494ca2018-02-25 16:59:50 +01003592}
3593
3594
Harald Welte68e495b2018-02-25 00:05:57 +01003595testcase TC_bcch_info() runs on test_CT {
Harald Welte10474062019-05-30 16:48:17 +02003596 f_init();
Harald Welte68e495b2018-02-25 00:05:57 +01003597 /* FIXME: enable / disable individual BCCH info */
3598 //ts_RSL_BCCH_INFO(si_type, info);
3599 /* expect no ERROR REPORT after either of them *
3600 /* negative test: ensure ERROR REPORT on unsupported types */
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003601 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte68e495b2018-02-25 00:05:57 +01003602}
3603
Harald Welte93640c62018-02-25 16:59:33 +01003604/***********************************************************************
3605 * Low-Level Protocol Errors / ERROR REPORT
3606 ***********************************************************************/
3607
Harald Welte01d982c2018-02-25 01:31:40 +01003608private function f_exp_err_rep(template RSL_Cause cause) runs on test_CT {
3609 timer T := 5.0;
3610 T.start;
3611 alt {
3612 [] RSL_CCHAN.receive(tr_RSL_UD(tr_RSL_ERROR_REPORT(cause))) {
3613 setverdict(pass);
3614 }
3615 [] RSL_CCHAN.receive(tr_RSL_UD(tr_RSL_ERROR_REPORT(?))) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003616 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Wrong cause in RSL ERR REP");
Harald Welte01d982c2018-02-25 01:31:40 +01003617 }
3618 [] RSL_CCHAN.receive {
3619 repeat;
3620 }
3621 [] T.timeout {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003622 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for RSL ERR REP");
Harald Welte01d982c2018-02-25 01:31:40 +01003623 }
3624 }
3625}
3626
3627/* Provoke a protocol error (message too short) and match on ERROR REPORT */
3628testcase TC_rsl_protocol_error() runs on test_CT {
Harald Welte10474062019-05-30 16:48:17 +02003629 f_init();
Harald Welte01d982c2018-02-25 01:31:40 +01003630 var RSL_Message rsl := valueof(ts_RSL_BCCH_INFO(RSL_SYSTEM_INFO_1, ''O));
3631 rsl.ies := omit;
3632 RSL_CCHAN.send(ts_RSL_UD(rsl));
3633
3634 f_exp_err_rep(RSL_ERR_PROTO);
3635}
3636
3637/* Provoke a mandatory IE error and match on ERROR REPORT */
3638testcase TC_rsl_mand_ie_error() runs on test_CT {
Harald Welte10474062019-05-30 16:48:17 +02003639 f_init();
Harald Welte01d982c2018-02-25 01:31:40 +01003640
3641 var RSL_Message rsl := valueof(ts_RSL_BCCH_INFO(RSL_SYSTEM_INFO_1, ''O));
3642 rsl.ies := { rsl.ies[0] };
3643 RSL_CCHAN.send(ts_RSL_UD(rsl));
3644
3645 f_exp_err_rep(RSL_ERR_MAND_IE_ERROR);
3646}
3647
3648/* Provoke an IE content error and match on ERROR REPORT */
3649testcase TC_rsl_ie_content_error() runs on test_CT {
Harald Welte10474062019-05-30 16:48:17 +02003650 f_init();
Harald Welte01d982c2018-02-25 01:31:40 +01003651 var RSL_Message rsl := valueof(ts_RSL_BCCH_INFO(RSL_SYSTEM_INFO_1, ''O));
3652 rsl.ies[1].body.sysinfo_type := RSL_SYSTEM_INFO_5;
3653 RSL_CCHAN.send(ts_RSL_UD(rsl));
3654
3655 f_exp_err_rep(RSL_ERR_IE_CONTENT);
3656}
3657
Harald Welteee25aae2019-05-19 14:32:37 +02003658/* attempt to activate channel with wrong RSL Message Discriminator IE */
3659function f_TC_chan_act_wrong_mdisc(charstring id) runs on ConnHdlr {
3660 var template RSL_Message rsl := ts_RSL_CHAN_ACT(g_chan_nr, g_pars.chan_mode);
3661 rsl.msg_disc := ts_RSL_MsgDisc(RSL_MDISC_RESERVED, false);
3662 RSL.send(rsl);
3663 f_rslem_unregister(0, g_chan_nr);
3664}
3665testcase TC_err_rep_wrong_mdisc() runs on test_CT {
3666 var ConnHdlr vc_conn;
3667 var ConnHdlrPars pars := valueof(t_Pars(ts_RslChanNr_SDCCH4(0,0), ts_RSL_ChanMode_SIGN));
3668
Harald Welte10474062019-05-30 16:48:17 +02003669 f_init();
Harald Welteee25aae2019-05-19 14:32:37 +02003670
3671 vc_conn := f_start_handler(refers(f_TC_chan_act_wrong_mdisc), pars);
3672 vc_conn.done;
3673 f_exp_err_rep(RSL_ERR_MSG_DISCR);
3674
3675 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
3676}
3677
3678/* Send messages with wrong message type */
3679function f_TC_wrong_msg_type_dchan(charstring id) runs on ConnHdlr {
3680 var template (value) RSL_Message rsl_tx;
3681 rsl_tx := ts_RSL_CHAN_ACT(g_chan_nr, g_pars.chan_mode);
3682 rsl_tx.msg_type := RSL_MT_NOT_CMD;
3683 RSL.send(rsl_tx);
3684 f_rslem_unregister(0, g_chan_nr);
3685}
3686function f_TC_wrong_msg_type_rll(charstring id) runs on ConnHdlr {
3687 var template (value) RSL_Message rsl_tx;
3688 /* we first have to activate the dedicated channel */
3689 f_rsl_chan_act(g_pars.chan_mode);
3690 /* ... to then send an invalid RLL message */
3691 rsl_tx := ts_RSL_UNITDATA_REQ(g_chan_nr, ts_RslLinkID_DCCH(0), '0102'O);
3692 rsl_tx.msg_type := RSL_MT_CBCH_LOAD_IND;
3693 RSL.send(rsl_tx);
3694 f_rslem_unregister(0, g_chan_nr);
3695}
3696testcase TC_err_rep_wrong_msg_type() runs on test_CT {
3697 var ConnHdlr vc_conn;
3698 var ConnHdlrPars pars := valueof(t_Pars(ts_RslChanNr_SDCCH4(0,0), ts_RSL_ChanMode_SIGN));
3699 var template (value) RSL_Message rsl_tx;
3700
Harald Welte10474062019-05-30 16:48:17 +02003701 f_init();
Harald Welteee25aae2019-05-19 14:32:37 +02003702
3703 /* Common Channel with wrong message type */
3704 RSL_CCHAN.clear;
3705 rsl_tx := valueof(ts_RSL_BCCH_INFO(RSL_SYSTEM_INFO_1, ''O));
3706 rsl_tx.msg_type := RSL_MT_LOCATION_INFO;
3707 RSL_CCHAN.send(ts_RSL_UD(rsl_tx));
3708 f_exp_err_rep(RSL_ERR_MSG_TYPE);
3709
3710 /* TRX Management */
3711 RSL_CCHAN.clear;
3712 rsl_tx := ts_RSL_SACCH_FILL(RSL_SYSTEM_INFO_5, ''O);
3713 rsl_tx.msg_type := RSL_MT_UNIT_DATA_IND;
3714 RSL_CCHAN.send(ts_RSL_UD(rsl_tx));
3715 f_exp_err_rep(RSL_ERR_MSG_TYPE);
3716
3717 /* Dedicated Channel */
3718 RSL_CCHAN.clear;
3719 vc_conn := f_start_handler(refers(f_TC_wrong_msg_type_dchan), pars);
3720 vc_conn.done;
3721 f_exp_err_rep(RSL_ERR_MSG_TYPE);
3722
3723 /* RLL */
3724 RSL_CCHAN.clear;
3725 vc_conn := f_start_handler(refers(f_TC_wrong_msg_type_rll), pars);
3726 vc_conn.done;
3727 f_exp_err_rep(RSL_ERR_MSG_TYPE);
3728}
3729
3730/* Send messages in wrong sequence (RLL to an inactive lchan) */
3731function f_TC_err_rep_wrong_sequence(charstring id) runs on ConnHdlr {
3732 RSL.send(ts_RSL_UNITDATA_REQ(g_chan_nr, ts_RslLinkID_DCCH(0), '0102'O));
3733 f_rslem_unregister(0, g_chan_nr);
3734}
3735testcase TC_err_rep_wrong_sequence() runs on test_CT {
3736 var ConnHdlr vc_conn;
3737 var ConnHdlrPars pars := valueof(t_Pars(ts_RslChanNr_SDCCH4(0,0), ts_RSL_ChanMode_SIGN));
3738
Harald Welte10474062019-05-30 16:48:17 +02003739 f_init();
Harald Welteee25aae2019-05-19 14:32:37 +02003740
3741 RSL_CCHAN.clear;
3742 vc_conn := f_start_handler(refers(f_TC_err_rep_wrong_sequence), pars);
3743 vc_conn.done;
3744 f_exp_err_rep(RSL_ERR_MSG_SEQ);
3745}
3746
Harald Welte93640c62018-02-25 16:59:33 +01003747/***********************************************************************
3748 * IPA CRCX/MDCX/DLCS media stream handling
3749 ***********************************************************************/
3750
Harald Weltea871a382018-02-25 02:03:14 +01003751/* Send IPA DLCX to inactive lchan */
3752function f_TC_ipa_dlcx_not_active(charstring id) runs on ConnHdlr {
Harald Welte1eba3742018-02-25 12:48:14 +01003753 f_rsl_transceive(ts_RSL_IPA_DLCX(g_chan_nr, 0), tr_RSL_IPA_DLCX_ACK(g_chan_nr, ?, ?),
3754 "IPA DLCX ACK");
Harald Weltea871a382018-02-25 02:03:14 +01003755}
3756testcase TC_ipa_dlcx_not_active() runs on test_CT {
3757 var ConnHdlrPars pars := valueof(t_Pars(t_RslChanNr_Bm(1), ts_RSL_ChanMode_SIGN));
Harald Welte10474062019-05-30 16:48:17 +02003758 f_init();
Harald Weltea871a382018-02-25 02:03:14 +01003759 var ConnHdlr vc_conn := f_start_handler(refers(f_TC_ipa_dlcx_not_active), pars);
3760 vc_conn.done;
3761}
Harald Welte68e495b2018-02-25 00:05:57 +01003762
Harald Weltea3f1df92018-02-25 12:49:55 +01003763/* Send IPA CRCX twice to inactive lchan */
3764function f_TC_ipa_crcx_twice_not_active(charstring id) runs on ConnHdlr {
3765 f_rsl_transceive(ts_RSL_IPA_CRCX(g_chan_nr), tr_RSL_IPA_CRCX_ACK(g_chan_nr, ?, ?, ?),
3766 "IPA CRCX ACK");
3767 f_rsl_transceive(ts_RSL_IPA_CRCX(g_chan_nr), tr_RSL_IPA_CRCX_NACK(g_chan_nr, RSL_ERR_RES_UNAVAIL),
3768 "IPA CRCX NACK");
3769}
3770testcase TC_ipa_crcx_twice_not_active() runs on test_CT {
3771 var ConnHdlrPars pars := valueof(t_Pars(t_RslChanNr_Bm(1), ts_RSL_ChanMode_SIGN));
Harald Welte10474062019-05-30 16:48:17 +02003772 f_init();
Harald Weltea3f1df92018-02-25 12:49:55 +01003773 var ConnHdlr vc_conn := f_start_handler(refers(f_TC_ipa_crcx_twice_not_active), pars);
3774 vc_conn.done;
3775}
3776
3777/* Regular sequence of CRCX/MDCX/DLCX */
3778function f_TC_ipa_crcx_mdcx_dlcx_not_active(charstring id) runs on ConnHdlr {
3779 f_rsl_transceive(ts_RSL_IPA_CRCX(g_chan_nr), tr_RSL_IPA_CRCX_ACK(g_chan_nr, ?, ?, ?),
3780 "IPA CRCX ACK");
3781 var uint32_t remote_ip := f_rnd_int(c_UINT32_MAX);
3782 var uint16_t remote_port := f_rnd_int(c_UINT16_MAX);
3783 var uint7_t rtp_pt2 := f_rnd_int(127);
3784 var uint16_t fake_conn_id := 23; /* we're too lazy to read it out from the CRCX ACK above */
3785 f_rsl_transceive(ts_RSL_IPA_MDCX(g_chan_nr, fake_conn_id, remote_ip, remote_port, rtp_pt2),
3786 tr_RSL_IPA_MDCX_ACK(g_chan_nr, ?, ?, ?, rtp_pt2),
3787 "IPA MDCX ACK");
3788 f_rsl_transceive(ts_RSL_IPA_DLCX(g_chan_nr, fake_conn_id), tr_RSL_IPA_DLCX_ACK(g_chan_nr, ?, ?),
3789 "IPA DLCX ACK");
3790}
3791testcase TC_ipa_crcx_mdcx_dlcx_not_active() runs on test_CT {
3792 var ConnHdlrPars pars := valueof(t_Pars(t_RslChanNr_Bm(1), ts_RSL_ChanMode_SIGN));
Harald Welte10474062019-05-30 16:48:17 +02003793 f_init();
Harald Weltea3f1df92018-02-25 12:49:55 +01003794 var ConnHdlr vc_conn := f_start_handler(refers(f_TC_ipa_crcx_mdcx_dlcx_not_active), pars);
3795 vc_conn.done;
3796}
3797
Harald Welte3ae11da2018-02-25 13:36:06 +01003798/* Sequence of CRCX, 2x MDCX, DLCX */
3799function f_TC_ipa_crcx_mdcx_mdcx_dlcx_not_active(charstring id) runs on ConnHdlr {
3800 f_rsl_transceive(ts_RSL_IPA_CRCX(g_chan_nr), tr_RSL_IPA_CRCX_ACK(g_chan_nr, ?, ?, ?),
3801 "IPA CRCX ACK");
3802 var uint32_t remote_ip := f_rnd_int(c_UINT32_MAX);
3803 var uint16_t remote_port := f_rnd_int(c_UINT16_MAX);
3804 var uint7_t rtp_pt2 := f_rnd_int(127);
3805 var uint16_t fake_conn_id := 23; /* we're too lazy to read it out from the CRCX ACK above */
3806 f_rsl_transceive(ts_RSL_IPA_MDCX(g_chan_nr, fake_conn_id, remote_ip, remote_port, rtp_pt2),
3807 tr_RSL_IPA_MDCX_ACK(g_chan_nr, ?, ?, ?, rtp_pt2),
3808 "IPA MDCX ACK");
3809 /* Second MDCX */
3810 remote_ip := f_rnd_int(c_UINT32_MAX);
3811 remote_port := f_rnd_int(c_UINT16_MAX);
3812 f_rsl_transceive(ts_RSL_IPA_MDCX(g_chan_nr, fake_conn_id, remote_ip, remote_port, rtp_pt2),
3813 tr_RSL_IPA_MDCX_ACK(g_chan_nr, ?, ?, ?, rtp_pt2),
3814 "IPA MDCX ACK");
3815 f_rsl_transceive(ts_RSL_IPA_DLCX(g_chan_nr, fake_conn_id), tr_RSL_IPA_DLCX_ACK(g_chan_nr, ?, ?),
3816 "IPA DLCX ACK");
3817}
3818testcase TC_ipa_crcx_mdcx_mdcx_dlcx_not_active() runs on test_CT {
3819 var ConnHdlrPars pars := valueof(t_Pars(t_RslChanNr_Bm(1), ts_RSL_ChanMode_SIGN));
Harald Welte10474062019-05-30 16:48:17 +02003820 f_init();
Harald Welte3ae11da2018-02-25 13:36:06 +01003821 var ConnHdlr vc_conn := f_start_handler(refers(f_TC_ipa_crcx_mdcx_mdcx_dlcx_not_active), pars);
3822 vc_conn.done;
3823}
3824
Harald Welte9912eb52018-02-25 13:30:15 +01003825/* IPA CRCX on SDCCH/4 and SDCCH/8 (doesn't make sense) */
3826function f_TC_ipa_crcx_sdcch_not_active(charstring id) runs on ConnHdlr {
3827 f_rsl_transceive(ts_RSL_IPA_CRCX(g_chan_nr), tr_RSL_IPA_CRCX_NACK(g_chan_nr, ?),
3828 "IPA CRCX NACK");
3829}
3830testcase TC_ipa_crcx_sdcch_not_active() runs on test_CT {
3831 var ConnHdlrPars pars;
3832 var ConnHdlr vc_conn;
Harald Welte10474062019-05-30 16:48:17 +02003833 f_init();
Harald Welte9912eb52018-02-25 13:30:15 +01003834
3835 pars := valueof(t_Pars(t_RslChanNr_SDCCH4(0,1), ts_RSL_ChanMode_SIGN));
3836 vc_conn := f_start_handler(refers(f_TC_ipa_crcx_sdcch_not_active), pars);
3837 vc_conn.done;
3838
3839 pars := valueof(t_Pars(t_RslChanNr_SDCCH8(6,5), ts_RSL_ChanMode_SIGN));
3840 vc_conn := f_start_handler(refers(f_TC_ipa_crcx_sdcch_not_active), pars);
3841 vc_conn.done;
3842}
3843
Harald Weltea3f1df92018-02-25 12:49:55 +01003844
Harald Welte883340c2018-02-28 18:59:29 +01003845/***********************************************************************
3846 * PCU Socket related tests
3847 ***********************************************************************/
3848
Harald Welte07bd2d22019-05-25 11:03:30 +02003849/* Verify no RTS before ACT_REQ; verify RTS after ACT_REQ */
Harald Weltead033dc2019-05-25 17:28:16 +02003850friend function f_TC_pcu_act_req(uint8_t bts_nr, uint8_t trx_nr, uint8_t ts_nr, boolean exp_success)
Harald Welte883340c2018-02-28 18:59:29 +01003851runs on test_CT {
3852 timer T := 3.0;
3853
3854 /* we don't expect any RTS.req before PDCH are active */
3855 T.start;
3856 alt {
3857 [] PCU.receive(t_SD_PCUIF(g_pcu_conn_id, tr_PCUIF_RTS_REQ(bts_nr))) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003858 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "PCU RTS.req before PDCH active?");
Harald Welte883340c2018-02-28 18:59:29 +01003859 }
3860 [] PCU.receive { repeat; }
3861 [] T.timeout { }
3862 }
3863
3864 /* Send PDCH activate request for known PDCH timeslot */
3865 PCU.send(t_SD_PCUIF(g_pcu_conn_id, ts_PCUIF_ACT_REQ(bts_nr, trx_nr, ts_nr)));
3866
3867 /* we now expect RTS.req for this timeslot (only) */
3868 T.start;
3869 alt {
3870 [exp_success] PCU.receive(t_SD_PCUIF(g_pcu_conn_id, tr_PCUIF_RTS_REQ(bts_nr, trx_nr, ts_nr))) {
3871 setverdict(pass);
3872 }
3873 [not exp_success] PCU.receive(t_SD_PCUIF(g_pcu_conn_id,
3874 tr_PCUIF_RTS_REQ(bts_nr, trx_nr, ts_nr))) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003875 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Unexpected RTS.req for supposedly failing activation");
Harald Welte883340c2018-02-28 18:59:29 +01003876 }
3877 [] PCU.receive(t_SD_PCUIF(g_pcu_conn_id, tr_PCUIF_RTS_REQ)) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003878 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "RTS.req for wrong TRX/TS");
Harald Welte883340c2018-02-28 18:59:29 +01003879 }
3880 [] PCU.receive { repeat; }
3881 [exp_success] T.timeout {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003882 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for PCU RTS.req");
Harald Welte883340c2018-02-28 18:59:29 +01003883 }
3884 [not exp_success] T.timeout {
3885 setverdict(pass);
3886 }
3887 }
3888}
3889
Harald Welte07bd2d22019-05-25 11:03:30 +02003890/* verify no more RTS after DEACT_REQ */
Harald Weltead033dc2019-05-25 17:28:16 +02003891friend function f_TC_pcu_deact_req(uint8_t bts_nr, uint8_t trx_nr, uint8_t ts_nr)
Harald Welte883340c2018-02-28 18:59:29 +01003892runs on test_CT {
3893 timer T := 3.0;
3894
3895 /* Send PDCH activate request for known PDCH timeslot */
3896 PCU.send(t_SD_PCUIF(g_pcu_conn_id, ts_PCUIF_DEACT_REQ(bts_nr, trx_nr, ts_nr)));
3897
3898 PCU.clear;
3899 /* we now expect no RTS.req for this timeslot */
3900 T.start;
3901 alt {
3902 [] PCU.receive(t_SD_PCUIF(g_pcu_conn_id, tr_PCUIF_RTS_REQ(bts_nr, trx_nr, ts_nr))) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003903 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Received unexpected PCU RTS.req");
Harald Welte883340c2018-02-28 18:59:29 +01003904 }
3905 [] PCU.receive { repeat; }
3906 [] T.timeout {
3907 setverdict(pass);
3908 }
3909 }
3910}
3911
Harald Weltead033dc2019-05-25 17:28:16 +02003912friend function f_init_pcu_test() runs on test_CT {
Max2c6f5632019-03-18 17:25:17 +01003913 f_init();
3914 PCU.send(t_SD_PCUIF(g_pcu_conn_id, ts_PCUIF_TXT_IND(0, PCU_VERSION, testcasename())));
3915}
3916
Harald Welte883340c2018-02-28 18:59:29 +01003917/* PDCH activation via PCU socket; check for presence of RTS.req */
3918testcase TC_pcu_act_req() runs on test_CT {
Max2c6f5632019-03-18 17:25:17 +01003919 f_init_pcu_test();
3920
Harald Welte883340c2018-02-28 18:59:29 +01003921 f_TC_pcu_act_req(0, 0, 7, true);
3922}
3923
3924/* PDCH activation via PCU socket on non-PDCU timeslot */
3925testcase TC_pcu_act_req_wrong_ts() runs on test_CT {
Max2c6f5632019-03-18 17:25:17 +01003926 f_init_pcu_test();
3927
Harald Welte883340c2018-02-28 18:59:29 +01003928 f_TC_pcu_act_req(0, 0, 1, false);
3929}
3930
3931/* PDCH activation via PCU socket on wrong BTS */
3932testcase TC_pcu_act_req_wrong_bts() runs on test_CT {
Max2c6f5632019-03-18 17:25:17 +01003933 f_init_pcu_test();
3934
Harald Welte883340c2018-02-28 18:59:29 +01003935 f_TC_pcu_act_req(23, 0, 7, false);
3936}
3937
3938/* PDCH activation via PCU socket on wrong TRX */
3939testcase TC_pcu_act_req_wrong_trx() runs on test_CT {
Max2c6f5632019-03-18 17:25:17 +01003940 f_init_pcu_test();
3941
Harald Welte883340c2018-02-28 18:59:29 +01003942 f_TC_pcu_act_req(0, 23, 7, false);
3943}
3944
3945/* PDCH deactivation via PCU socket; check for absence of RTS.req */
3946testcase TC_pcu_deact_req() runs on test_CT {
Max2c6f5632019-03-18 17:25:17 +01003947 f_init_pcu_test();
3948
Harald Welte883340c2018-02-28 18:59:29 +01003949 /* Activate PDCH */
3950 f_TC_pcu_act_req(0, 0, 7, true);
3951 f_sleep(1.0);
3952 /* and De-Activate again */
3953 f_TC_pcu_deact_req(0, 0, 7);
3954}
3955
3956/* Attempt to deactivate a PDCH on a non-PDCH timeslot */
3957testcase TC_pcu_deact_req_wrong_ts() runs on test_CT {
Max2c6f5632019-03-18 17:25:17 +01003958 f_init_pcu_test();
3959
Harald Welte883340c2018-02-28 18:59:29 +01003960 f_TC_pcu_deact_req(0, 0, 1);
3961}
3962
3963/* Test the PCU->BTS Version and BTS->PCU SI13 handshake */
3964testcase TC_pcu_ver_si13() runs on test_CT {
3965 const octetstring si13 := '00010203040506070909'O;
3966 var PCUIF_send_data sd;
3967 timer T:= 3.0;
Max2c6f5632019-03-18 17:25:17 +01003968 f_init_pcu_test();
Harald Welte883340c2018-02-28 18:59:29 +01003969
3970 /* Set SI13 via RSL */
3971 f_rsl_bcch_fill_raw(RSL_SYSTEM_INFO_13, si13);
Max2c6f5632019-03-18 17:25:17 +01003972
Harald Welte883340c2018-02-28 18:59:29 +01003973 T.start;
3974 alt {
3975 [] PCU.receive(t_SD_PCUIF(g_pcu_conn_id, tr_PCUIF_DATA_IND(0, 0, 0, ?, PCU_IF_SAPI_BCCH))) -> value sd {
3976 if (substr(sd.data.u.data_ind.data, 0, lengthof(si13)) == si13) {
3977 setverdict(pass);
3978 } else {
3979 repeat;
3980 }
3981 }
3982 [] PCU.receive { repeat; }
3983 [] T.timeout {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02003984 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for SI13");
Harald Welte883340c2018-02-28 18:59:29 +01003985 }
3986 }
3987}
3988
3989private const octetstring c_PCU_DATA := '000102030405060708090a0b0c0d0e0f10111213141516'O;
3990
3991/* helper function to send a PCU DATA.req */
Harald Weltead033dc2019-05-25 17:28:16 +02003992friend function f_pcu_data_req(uint8_t bts_nr, uint8_t trx_nr, uint8_t ts_nr,
Harald Welte883340c2018-02-28 18:59:29 +01003993 uint8_t block_nr, uint32_t fn, PCUIF_Sapi sapi, octetstring data)
3994runs on test_CT
3995{
3996 PCU.send(t_SD_PCUIF(g_pcu_conn_id,
3997 ts_PCUIF_DATA_REQ(bts_nr, trx_nr, ts_nr, block_nr, fn, sapi, data)));
3998}
3999
4000/* helper function to wait for RTS.ind for given SAPI on given BTS/TRX/TS and then send */
Harald Weltead033dc2019-05-25 17:28:16 +02004001friend function f_pcu_wait_rts_and_data_req(uint8_t bts_nr, uint8_t trx_nr, uint8_t ts_nr,
4002 PCUIF_Sapi sapi, octetstring data)
Harald Welte883340c2018-02-28 18:59:29 +01004003runs on test_CT
4004{
4005 var PCUIF_send_data sd;
4006
4007 timer T := 3.0;
4008 T.start;
4009 alt {
4010 [] PCU.receive(t_SD_PCUIF(g_pcu_conn_id,
4011 tr_PCUIF_RTS_REQ(bts_nr, trx_nr, ts_nr, sapi))) -> value sd {
4012 f_pcu_data_req(bts_nr, trx_nr, ts_nr, sd.data.u.rts_req.block_nr,
4013 sd.data.u.rts_req.fn, sapi, data);
4014 }
4015 [] PCU.receive { repeat; }
4016 [] T.timeout {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02004017 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for RTS.ind");
Harald Welte883340c2018-02-28 18:59:29 +01004018 }
4019 }
4020}
4021
4022/* Send DATA.req on invalid BTS */
4023testcase TC_pcu_data_req_wrong_bts() runs on test_CT {
Harald Welte7162a612019-05-26 12:56:09 +02004024 var TfiUsfArr tua := f_TfiUsfArrInit();
4025 var octetstring data := '0000'O & f_rnd_octstring(21);
4026
4027 f_virtphy_common();
Max2c6f5632019-03-18 17:25:17 +01004028
Harald Welte883340c2018-02-28 18:59:29 +01004029 f_TC_pcu_act_req(0, 0, 7, true);
Harald Welte7162a612019-05-26 12:56:09 +02004030 f_TfiUsfArrSet(tua, 7, 0);
4031 f_L1CTL_TBF_CFG(L1CTL, false, tua);
4032 f_sleep(1.0);
4033
4034 f_pcu_to_l1(23, 0, 7, PCU_IF_SAPI_PDTCH, data, false, false);
Harald Welte883340c2018-02-28 18:59:29 +01004035}
4036
4037/* Send DATA.req on invalid TRX */
4038testcase TC_pcu_data_req_wrong_trx() runs on test_CT {
Harald Welte7162a612019-05-26 12:56:09 +02004039 var TfiUsfArr tua := f_TfiUsfArrInit();
4040 var octetstring data := '0000'O & f_rnd_octstring(21);
4041
4042 f_virtphy_common();
Max2c6f5632019-03-18 17:25:17 +01004043
Harald Welte883340c2018-02-28 18:59:29 +01004044 f_TC_pcu_act_req(0, 0, 7, true);
Harald Welte7162a612019-05-26 12:56:09 +02004045 f_TfiUsfArrSet(tua, 7, 0);
4046 f_L1CTL_TBF_CFG(L1CTL, false, tua);
4047 f_sleep(1.0);
4048
4049 f_pcu_to_l1(0, 100, 7, PCU_IF_SAPI_PDTCH, data, false, false);
Harald Welte883340c2018-02-28 18:59:29 +01004050}
4051
4052/* Send DATA.req on invalid timeslot */
4053testcase TC_pcu_data_req_wrong_ts() runs on test_CT {
Harald Welte7162a612019-05-26 12:56:09 +02004054 var TfiUsfArr tua := f_TfiUsfArrInit();
4055 var octetstring data := '0000'O & f_rnd_octstring(21);
4056
4057 f_virtphy_common();
Max2c6f5632019-03-18 17:25:17 +01004058
Harald Welte883340c2018-02-28 18:59:29 +01004059 f_TC_pcu_act_req(0, 0, 7, true);
Harald Welte7162a612019-05-26 12:56:09 +02004060 f_TfiUsfArrSet(tua, 7, 0);
4061 f_L1CTL_TBF_CFG(L1CTL, false, tua);
4062 f_sleep(1.0);
4063
4064 f_pcu_to_l1(0, 0, 70, PCU_IF_SAPI_PDTCH, data, false, false);
Harald Welte883340c2018-02-28 18:59:29 +01004065}
4066
4067/* Send DATA.req on timeslot that hasn't been activated */
4068testcase TC_pcu_data_req_ts_inactive() runs on test_CT {
Harald Welte7162a612019-05-26 12:56:09 +02004069 var TfiUsfArr tua := f_TfiUsfArrInit();
4070 var octetstring data := '0000'O & f_rnd_octstring(21);
Max2c6f5632019-03-18 17:25:17 +01004071
Harald Welte7162a612019-05-26 12:56:09 +02004072 f_virtphy_common();
4073
4074 f_TfiUsfArrSet(tua, 7, 0);
4075 f_L1CTL_TBF_CFG(L1CTL, false, tua);
4076 f_sleep(1.0);
4077
4078 f_pcu_to_l1(0, 0, 7, PCU_IF_SAPI_PDTCH, data, false, false);
Harald Welte883340c2018-02-28 18:59:29 +01004079}
4080
Harald Weltead033dc2019-05-25 17:28:16 +02004081private function f_pcu_to_l1(uint8_t bts_nr, uint8_t trx_nr, uint8_t ts_nr,
Harald Welte7162a612019-05-26 12:56:09 +02004082 PCUIF_Sapi sapi, octetstring data, boolean expect_data := true,
4083 boolean wait_rts := true)
4084runs on test_CT {
Harald Weltead033dc2019-05-25 17:28:16 +02004085 timer T := 5.0;
Harald Welte7162a612019-05-26 12:56:09 +02004086 var L1ctlDlMessage rx_dl;
Harald Weltead033dc2019-05-25 17:28:16 +02004087
4088 PCU.clear;
Harald Welte7162a612019-05-26 12:56:09 +02004089 if (wait_rts) {
4090 f_pcu_wait_rts_and_data_req(bts_nr, trx_nr, ts_nr, sapi, data);
4091 } else {
4092 f_pcu_data_req(bts_nr, trx_nr, ts_nr, 0, 0, sapi, data);
4093 }
Harald Weltead033dc2019-05-25 17:28:16 +02004094
4095 T.start;
4096 alt {
Harald Welte7162a612019-05-26 12:56:09 +02004097 [expect_data] L1CTL.receive(tr_L1CTL_DATA_IND(t_RslChanNr_PDCH(ts_nr), ?, data)) {
Harald Weltead033dc2019-05-25 17:28:16 +02004098 /* FIXME: why is fn of DATA_IND different to fn of RTS / DATA_REQ above? */
4099 setverdict(pass);
4100 }
Harald Welte7162a612019-05-26 12:56:09 +02004101 [not expect_data] L1CTL.receive(tr_L1CTL_DATA_IND(t_RslChanNr_PDCH(ts_nr), ?, data)) -> value rx_dl {
4102 setverdict(fail, "Received unexpected ", rx_dl);
4103 }
Harald Weltead033dc2019-05-25 17:28:16 +02004104 [] L1CTL.receive {
4105 repeat;
4106 }
Harald Welte7162a612019-05-26 12:56:09 +02004107 [expect_data] T.timeout {
Harald Weltead033dc2019-05-25 17:28:16 +02004108 setverdict(fail, "Timeout waiting for ", data);
4109 }
Harald Welte7162a612019-05-26 12:56:09 +02004110 [not expect_data] T.timeout {
4111 setverdict(pass);
4112 }
Harald Weltead033dc2019-05-25 17:28:16 +02004113 }
4114}
4115
4116private function f_disable_dynamic_ts() runs on test_CT
4117{
4118 f_init_vty_bsc();
4119 /* I'm not quite sure why we need this with osmo-bts-virtual. Somehow it deosn't seem to
4120 * support dynamic timeslots? But it uses the same scheduler as osmo-bts-trx ?!? */
4121 f_vty_config2(BSCVTY, {"network", "bts 0", "trx 0", "timeslot 3"}, "phys_chan_config TCH/F");
4122 f_vty_config2(BSCVTY, {"network", "bts 0", "trx 0", "timeslot 4"}, "phys_chan_config TCH/F");
Max2c6f5632019-03-18 17:25:17 +01004123 f_init_pcu_test();
Harald Weltead033dc2019-05-25 17:28:16 +02004124}
4125
4126private function f_virtphy_common() runs on test_CT {
4127 f_disable_dynamic_ts();
4128 f_init_l1ctl();
4129 f_l1_tune(L1CTL);
4130}
4131
4132testcase TC_pcu_data_req_pdtch() runs on test_CT {
4133 var TfiUsfArr tua := f_TfiUsfArrInit();
4134 var octetstring data := '0000'O & f_rnd_octstring(21);
4135
4136 f_virtphy_common();
Max2c6f5632019-03-18 17:25:17 +01004137
Harald Welte883340c2018-02-28 18:59:29 +01004138 f_TC_pcu_act_req(0, 0, 7, true);
Harald Weltead033dc2019-05-25 17:28:16 +02004139 f_TfiUsfArrSet(tua, 7, 0);
4140 f_L1CTL_TBF_CFG(L1CTL, false, tua);
4141 f_sleep(1.0);
4142
4143 f_pcu_to_l1(0, 0, 7, PCU_IF_SAPI_PDTCH, data); //c_PCU_DATA);
Harald Welte883340c2018-02-28 18:59:29 +01004144}
4145
Vadim Yanitskiy8c242f02019-10-13 15:25:54 +07004146/* FIXME: PTTCH has nothing to do with TBFs */
Harald Welte883340c2018-02-28 18:59:29 +01004147testcase TC_pcu_data_req_ptcch() runs on test_CT {
Harald Weltead033dc2019-05-25 17:28:16 +02004148 var TfiUsfArr tua := f_TfiUsfArrInit();
4149 var octetstring data := '0000'O & f_rnd_octstring(21);
4150
4151 f_virtphy_common();
Max2c6f5632019-03-18 17:25:17 +01004152
Harald Welte883340c2018-02-28 18:59:29 +01004153 f_TC_pcu_act_req(0, 0, 7, true);
Harald Weltead033dc2019-05-25 17:28:16 +02004154 f_TfiUsfArrSet(tua, 7, 0);
4155 f_L1CTL_TBF_CFG(L1CTL, false, tua);
4156 f_sleep(1.0);
4157
4158 f_pcu_to_l1(0, 0, 7, PCU_IF_SAPI_PTCCH, data);
Harald Welte883340c2018-02-28 18:59:29 +01004159}
4160
Vadim Yanitskiy8c242f02019-10-13 15:25:54 +07004161private function f_TC_pcu_ptcch_ul(uint16_t ra)
4162runs on test_CT {
4163 var template PCUIF_Message pcu_rach_ind;
4164 var PCUIF_send_data sd;
4165 var GsmFrameNumber fn;
4166 timer T;
4167
4168 /* Send an Access Burst on PTCCH/U over the Um-interface */
4169 fn := f_L1CTL_RACH(L1CTL, ra := ra, combined := 0, offset := 0,
4170 chan_nr := ts_RslChanNr_PDCH(7),
4171 link_id := ts_RslLinkID_OSMO_PTCCH(0));
4172
4173 /* TODO: check time-slot and TRX number as soon as we extend the PCU interface */
4174 pcu_rach_ind := tr_PCUIF_RACH_IND(ra := ra, fn := fn, sapi := PCU_IF_SAPI_PTCCH);
4175
4176 /* Expect a RACH.ind on the PCU interface (timeout is one multi-frame) */
4177 T.start(52.0 * 4.615 / 1000.0);
4178 alt {
4179 [] PCU.receive(t_SD_PCUIF(g_pcu_conn_id, pcu_rach_ind)) -> value sd {
4180 log("Rx an Access Burst on the PCU interface: ", sd.data);
4181 setverdict(pass);
4182 T.stop;
4183 }
4184 [] PCU.receive { repeat; }
4185 [] T.timeout {
4186 setverdict(fail, "Timeout waiting for RACH.ind on the PCU interface");
4187 /* Keep going, that's not the end of the world */
4188 }
4189 }
4190}
4191
4192testcase TC_pcu_ptcch() runs on test_CT {
4193 var L1ctlDlMessage dl;
4194 var octetstring data;
4195 timer T;
4196
4197 f_init_pcu_test();
4198 f_init_l1ctl();
4199 f_l1_tune(L1CTL);
4200
4201 /* Activate PDCH channel on TS7 */
4202 f_TC_pcu_act_req(0, 0, 7, true);
4203
4204 /* Tune trxcon to that PDCH channel */
4205 L1CTL.send(ts_L1CTL_DM_EST_REQ(arfcn := { false, mp_trx0_arfcn },
4206 chan_nr := valueof(ts_RslChanNr_PDCH(7)),
4207 tsc := 7));
4208
4209 /* Verify PTCCH/U: send several access bursts, make sure they're received */
4210 for (var integer i := 0; i < 16; i := i + 1) {
4211 log("Sending an Access Burst towards the L1CTL interface");
4212 f_TC_pcu_ptcch_ul(oct2int(f_rnd_ra_ps()));
4213 }
4214
4215 /* Generate a random payload for PTCCH/D (23 octets, CS-1) */
4216 data := f_rnd_octstring(23);
4217
4218 /* Verify PTCCH/D: send a random data block, make sure it's received */
4219 log("Sending a PTCCH/D block towards the PCU interface: ", data);
4220 f_pcu_wait_rts_and_data_req(0, 0, 7, PCU_IF_SAPI_PTCCH, data);
4221
4222 /* PTCCH/D period is 2 multi-frames (2 * 52 * 4.615 ms), but
4223 * let's give it more time in case if we miss the beginning. */
4224 T.start(2.0 * 2.0 * 52.0 * 4.615 / 1000.0);
4225 alt {
4226 /* PDCH is considered as traffic in trxcon => expect TRAFFIC.ind */
4227 [] L1CTL.receive(tr_L1CTL_TRAFFIC_IND(chan_nr := t_RslChanNr_PDCH(7),
4228 link_id := tr_RslLinkID_OSMO_PTCCH(?),
4229 frame := data)) -> value dl {
4230 log("Rx PTCCH/D data (traffic) block on L1CTL: ", dl);
4231 setverdict(pass);
4232 T.stop;
4233 }
4234 /* Other PHYs (e.g. virt_phy) may consider PDCH as data => expect DATA.ind */
4235 [] L1CTL.receive(tr_L1CTL_DATA_IND(chan_nr := t_RslChanNr_PDCH(7),
4236 link_id := tr_RslLinkID_OSMO_PTCCH(?),
4237 l2_data := data)) -> value dl {
4238 log("Rx PTCCH/D data block on L1CTL: ", dl);
4239 setverdict(pass);
4240 T.stop;
4241 }
4242 [] L1CTL.receive { repeat; }
4243 [] T.timeout {
4244 setverdict(fail, "Timeout waiting for DATA.ind on L1CTL");
4245 }
4246 }
4247}
4248
Harald Welte883340c2018-02-28 18:59:29 +01004249/* Send AGCH from PCU; check it appears on Um side */
4250testcase TC_pcu_data_req_agch() runs on test_CT {
4251 timer T := 3.0;
Max2c6f5632019-03-18 17:25:17 +01004252 f_init_pcu_test();
Harald Welte883340c2018-02-28 18:59:29 +01004253 f_init_l1ctl();
4254 f_l1_tune(L1CTL);
4255
4256 f_TC_pcu_act_req(0, 0, 7, true);
4257 f_pcu_data_req(0, 0, 7, 0, 0, PCU_IF_SAPI_AGCH, c_PCU_DATA);
4258
4259 T.start;
4260 alt {
Harald Weltef8df4cb2018-03-10 15:15:08 +01004261 [] L1CTL.receive(tr_L1CTL_DATA_IND(t_RslChanNr_PCH_AGCH(0), ?, c_PCU_DATA)) {
Harald Welte883340c2018-02-28 18:59:29 +01004262 setverdict(pass);
4263 }
4264 [] L1CTL.receive { repeat; }
4265 [] T.timeout {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02004266 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for PCU-originated AGCH block on Um");
Harald Welte883340c2018-02-28 18:59:29 +01004267 }
4268 }
4269}
4270
Harald Welte928622b2019-05-26 13:22:59 +02004271/* Send AGCH from PCU; check it appears on Um side */
4272testcase TC_pcu_data_req_pch() runs on test_CT {
4273 timer T := 3.0;
4274 f_init_pcu_test();
4275 f_init_l1ctl();
4276 f_l1_tune(L1CTL);
4277
4278 f_TC_pcu_act_req(0, 0, 7, true);
4279 /* three characters prefix: last 3 digits of IMSI as ASCII */
4280 f_pcu_data_req(0, 0, 7, 0, 0, PCU_IF_SAPI_PCH, '313233'O & c_PCU_DATA);
4281
4282 T.start;
4283 alt {
4284 [] L1CTL.receive(tr_L1CTL_DATA_IND(t_RslChanNr_PCH_AGCH(0), ?, c_PCU_DATA)) {
4285 setverdict(pass);
4286 }
4287 [] L1CTL.receive { repeat; }
4288 [] T.timeout {
4289 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for PCU-originated PCH block on Um");
4290 }
4291 }
4292}
4293
Harald Welte883340c2018-02-28 18:59:29 +01004294/* Send IMM.ASS from PCU for PCH; check it appears on Um side */
4295testcase TC_pcu_data_req_imm_ass_pch() runs on test_CT {
4296 var octetstring imm_ass := f_rnd_octstring(23);
Max2c6f5632019-03-18 17:25:17 +01004297 f_init_pcu_test();
Harald Welte883340c2018-02-28 18:59:29 +01004298 f_init_l1ctl();
4299 f_l1_tune(L1CTL);
4300
4301 /* append 3 last imsi digits so BTS can compute pagng group */
4302 var uint32_t fn := f_PCUIF_tx_imm_ass_pch(PCU, g_pcu_conn_id, imm_ass, '123459987'H);
4303
4304 timer T := 0.5;
4305 T.start;
4306 alt {
Harald Weltef8df4cb2018-03-10 15:15:08 +01004307 [] L1CTL.receive(tr_L1CTL_DATA_IND(t_RslChanNr_PCH_AGCH(0), ?, imm_ass)) {
Harald Welte883340c2018-02-28 18:59:29 +01004308 /* TODO: verify paging group */
4309 setverdict(pass);
4310 }
4311 [] L1CTL.receive { repeat; }
4312 [] T.timeout {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02004313 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for PCU-originated AGCH block on Um");
Harald Welte883340c2018-02-28 18:59:29 +01004314 }
4315 }
4316}
4317
4318/* Send RACH from Um side, expect it to show up on PCU socket */
4319testcase TC_pcu_rach_content() runs on test_CT {
Max2c6f5632019-03-18 17:25:17 +01004320 f_init_pcu_test();
Harald Welte883340c2018-02-28 18:59:29 +01004321 f_init_l1ctl();
4322 f_l1_tune(L1CTL);
4323
4324 var GsmFrameNumber fn_last := 0;
4325 for (var integer i := 0; i < 1000; i := i+1) {
4326 var OCT1 ra := f_rnd_ra_ps();
4327 var GsmFrameNumber fn := f_L1CTL_RACH(L1CTL, oct2int(ra));
4328 if (fn == fn_last) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02004329 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Two RACH in same FN?!?");
Harald Welte883340c2018-02-28 18:59:29 +01004330 }
4331 fn_last := fn;
4332
4333 timer T := 2.0;
4334 T.start;
4335 alt {
4336 [] PCU.receive(t_SD_PCUIF(g_pcu_conn_id, tr_PCUIF_RACH_IND(0, oct2int(ra), 0, ?, fn))) {
4337 T.stop;
4338 }
4339 [] PCU.receive(t_SD_PCUIF(g_pcu_conn_id, tr_PCUIF_RACH_IND)) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02004340 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Unexpected RACH IND");
Harald Welte883340c2018-02-28 18:59:29 +01004341 }
4342 [] PCU.receive { repeat; }
4343 [] T.timeout {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02004344 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for RACH IND");
Harald Welte883340c2018-02-28 18:59:29 +01004345 }
4346 }
4347 }
4348 setverdict(pass);
4349}
4350
Vadim Yanitskiy51cbc102019-04-22 06:37:30 +07004351/* Send extended (11-bit, TS1 & TS2) RACH bursts from the Um side,
4352 * expect them to show up on PCU socket (with proper BURST_TYPE_*). */
4353testcase TC_pcu_ext_rach_content() runs on test_CT {
4354 var template PCUIF_Message pcu_rach_ind;
4355 var GsmFrameNumber fn_last := 0;
4356 var L1ctlRachSynchSeq synch_seq;
4357 var PCUIF_BurstType pcu_bt;
4358 var GsmFrameNumber fn;
4359 var BIT11 ra11;
4360
4361 f_init_pcu_test();
4362 f_init_l1ctl();
4363 f_l1_tune(L1CTL);
4364
4365 for (var integer i := 0; i < 1000; i := i+1) {
4366 /* We need to test both TS1 & TS2 */
4367 if (i rem 2 == 0) {
4368 synch_seq := RACH_SYNCH_SEQ_TS1;
4369 pcu_bt := BURST_TYPE_1;
4370 } else {
4371 synch_seq := RACH_SYNCH_SEQ_TS2;
4372 pcu_bt := BURST_TYPE_2;
4373 }
4374
4375 ra11 := f_rnd_ra11_ps();
4376 fn := f_L1CTL_EXT_RACH(L1CTL, bit2int(ra11), synch_seq);
4377 if (fn == fn_last) {
4378 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
4379 "Two RACH in same FN?!?");
4380 }
4381 fn_last := fn;
4382
4383 /* Compose the expected message */
4384 pcu_rach_ind := tr_PCUIF_RACH_IND(
4385 bts_nr := 0,
4386 ra := bit2int(ra11),
4387 is_11bit := 1,
4388 burst_type := pcu_bt,
4389 fn := fn);
4390
4391 timer T := 2.0;
4392 T.start;
4393 alt {
4394 [] PCU.receive(t_SD_PCUIF(g_pcu_conn_id, pcu_rach_ind)) {
4395 T.stop;
4396 }
4397 [] PCU.receive(t_SD_PCUIF(g_pcu_conn_id, tr_PCUIF_RACH_IND)) {
4398 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Unexpected RACH IND");
4399 }
4400 [] PCU.receive { repeat; }
4401 [] T.timeout {
4402 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for RACH IND");
4403 }
4404 }
4405 }
4406 setverdict(pass);
4407}
4408
Vadim Yanitskiya2c68e82019-07-03 13:07:20 +07004409private function f_TC_pcu_data_ind_lqual_cb(int16_t lqual_cb_exp, int16_t thresh)
4410runs on test_CT {
4411 var template PCUIF_send_data sdt;
4412 var PCUIF_send_data sd;
4413 var int16_t lqual_cb;
4414 timer T := 1.0;
4415
4416 /* PCUIF_DATA.ind is encapsulated into a supplementary record */
4417 sdt := t_SD_PCUIF_MSGT(g_pcu_conn_id, PCU_IF_MSG_DATA_IND);
4418
4419 /* Send a random PDTCH frame over Um */
4420 L1CTL.send(ts_L1CTL_TRAFFIC_REQ(ts_RslChanNr_PDCH(7), ts_RslLinkID_DCCH(0),
4421 '0000'O & f_rnd_octstring(21)));
4422
4423 T.start;
4424 alt {
4425 /* If expected link quality is above the threshold */
4426 [lqual_cb_exp >= thresh] PCU.receive(sdt) -> value sd {
4427 lqual_cb := sd.data.u.data_ind.lqual_cb;
4428 log("Rx PCUIF_DATA.ind (lqual_cb=", lqual_cb, ")");
4429
4430 /* Make sure the actual link quality matches the expected value */
4431 if (not match(lqual_cb, lqual_cb_exp)) {
4432 setverdict(fail, log2str("Link quality ", lqual_cb, " does not match ",
4433 "expected value ", lqual_cb_exp));
4434 } else {
4435 setverdict(pass);
4436 }
4437 }
4438 /* If expected link quality is below the threshold */
4439 [lqual_cb_exp < thresh] PCU.receive(sdt) -> value sd {
4440 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
4441 log2str("Rx unexpected PCUIF_DATA.ind: ", sd.data));
4442 }
4443 /* Ignore PCUIF_RTS.req and PCUIF_TIME.ind */
4444 [] PCU.receive { repeat; }
4445 [lqual_cb_exp < thresh] T.timeout {
4446 log("Rx nothing, as expected");
4447 setverdict(pass);
4448 }
4449 [lqual_cb_exp >= thresh] T.timeout {
4450 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
4451 "Timeout waiting for PCUIF_DATA.ind");
4452 }
4453 }
4454}
4455
4456/* Verify C/I (Carrier-to-Interference ratio) processing of PDTCH frames */
4457testcase TC_pcu_data_ind_lqual_cb() runs on test_CT {
4458 f_init_pcu_test();
4459 PCU.clear;
4460
4461 f_init_l1ctl();
4462 f_l1_tune(L1CTL);
4463
4464 /* Activate a PDCH channel on TS7 */
4465 f_TC_pcu_act_req(0, 0, 7, true);
4466
4467 /* Tune trxcon to that PDCH channel on TS7 */
4468 f_L1CTL_DM_EST_REQ(L1CTL, { false, mp_trx0_arfcn },
4469 valueof(ts_RslChanNr_PDCH(7)), 7);
4470
4471 /* C/I in centiBels, test range: -256 .. +1280, step 128 */
4472 for (var int16_t i := -256; i <= 1280; i := i + 128) {
4473 var TrxcMessage ret;
4474
4475 ret := f_TRXC_transceive(BTS_TRXC, g_bts_trxc_conn_id,
4476 valueof(ts_TRXC_FAKE_CI(i)));
4477
4478 /* FIXME: OsmoBTS may have different threshold (see MIN_QUAL_NORM) */
4479 f_TC_pcu_data_ind_lqual_cb(i, thresh := 0);
4480 }
4481}
4482
Harald Welte883340c2018-02-28 18:59:29 +01004483/* Send PAGING via RSL, expect it to shw up on PCU socket */
4484testcase TC_pcu_paging_from_rsl() runs on test_CT {
Max2c6f5632019-03-18 17:25:17 +01004485 f_init_pcu_test();
Harald Welte883340c2018-02-28 18:59:29 +01004486
4487 for (var integer i := 0; i < 100; i := i+1) {
4488 var MobileL3_CommonIE_Types.MobileIdentityLV mi;
4489 timer T := 3.0;
4490 if (i < 50) {
4491 mi := valueof(ts_MI_TMSI_LV(f_rnd_octstring(4)));
4492 } else {
4493 mi := valueof(ts_MI_IMSI_LV(f_gen_imsi(i)));
4494 }
4495 var octetstring mi_enc_lv := enc_MobileIdentityLV(mi);
4496 var octetstring mi_enc := substr(mi_enc_lv, 1, lengthof(mi_enc_lv)-1);
4497 var octetstring t_mi_lv := f_pad_oct(mi_enc_lv, 9, '00'O);
4498
4499 /* Send RSL PAGING COMMAND */
4500 RSL_CCHAN.send(ts_RSL_UD(ts_RSL_PAGING_CMD(mi_enc, i mod 4)));
4501 T.start;
4502 alt {
4503 [] PCU.receive(t_SD_PCUIF(g_pcu_conn_id, tr_PCUIF_PAG_REQ(0, t_mi_lv))) {
4504 }
4505 [] PCU.receive(t_SD_PCUIF(g_pcu_conn_id, tr_PCUIF_PAG_REQ)) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02004506 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Unexpected PAGING REQ");
Harald Welte883340c2018-02-28 18:59:29 +01004507 }
4508 [] PCU.receive { repeat; }
4509 [] T.timeout {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02004510 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for PAGING REQ");
Harald Welte883340c2018-02-28 18:59:29 +01004511 }
4512 }
4513 }
4514 setverdict(pass);
4515}
4516
Harald Welted66c9b82019-05-25 09:03:15 +02004517/* test for periodic TIME_IND; check number of FN expired and number of TIME_IND within frames */
4518testcase TC_pcu_time_ind() runs on test_CT {
4519 var PCUIF_send_data pcu_sd;
4520 var integer num_time_ind := 0;
4521 var integer first_fn, last_fn;
4522 var float test_duration := 5.0;
4523 timer T;
4524
4525 f_init_pcu_test();
4526 f_TC_pcu_act_req(0, 0, 7, true);
4527
4528 PCU.clear;
4529 T.start(test_duration);
4530 alt {
4531 [] PCU.receive(t_SD_PCUIF(g_pcu_conn_id, tr_PCUIF_TIME_IND(0, ?))) -> value pcu_sd {
4532 num_time_ind := num_time_ind + 1;
4533 if (not isbound(first_fn)) {
4534 first_fn := pcu_sd.data.u.time_ind.fn;
4535 }
4536 last_fn := pcu_sd.data.u.time_ind.fn;
4537 repeat;
4538 }
4539 [] PCU.receive(t_SD_PCUIF(g_pcu_conn_id, tr_PCUIF_TIME_IND(?, ?))) -> value pcu_sd {
4540 setverdict(fail, "Received unexpected PCUIF_TIME_IND: ", pcu_sd.data);
4541 repeat;
4542 }
4543 [] PCU.receive {
4544 repeat;
4545 }
4546 [] T.timeout {}
4547 }
4548 var integer fn_expired := last_fn - first_fn;
4549 log(fn_expired, " fn expired with ", num_time_ind, " PCU_TIME.ind");
4550
4551 /* verify the number of frames expired matches our expectation */
4552 const float c_GSM_FN_DURATION_MS := 4.61538;
4553 var float fn_expected := test_duration * 1000.0 / c_GSM_FN_DURATION_MS;
Harald Weltec761c542019-05-28 11:59:57 +02004554 var template integer t_fn_expected := f_tolerance(float2int(fn_expected), 1, 100000, 20);
Harald Welted66c9b82019-05-25 09:03:15 +02004555 if (not match(fn_expired, t_fn_expected)) {
4556 setverdict(fail, "Number of TDMA Frames (", fn_expired, ") not matching ", t_fn_expected);
4557 }
4558
4559 /* There are three TIME.ind in every fn MOD 13 */
4560 var float time_ind_expected := int2float(fn_expired) * 3.0 / 13.0;
4561 /* Add some tolerance */
4562 var template integer t_time_ind_exp := f_tolerance(float2int(time_ind_expected), 1, 100000, 5);
4563 if (not match(num_time_ind, t_time_ind_exp)) {
4564 setverdict(fail, "Number of TIME.ind (", num_time_ind, ") not matching ", t_time_ind_exp);
4565 }
4566
4567 setverdict(pass);
4568}
4569
Harald Welte4832c862019-05-25 14:57:18 +02004570/* test for periodic RTS_REQ; check number of FN expired and number of RTS_IND per SAPI */
4571testcase TC_pcu_rts_req() runs on test_CT {
4572 var PCUIF_send_data pcu_sd;
4573 var integer first_fn, last_fn;
4574 var integer num_rts_pdtch := 0;
4575 var integer num_rts_ptcch := 0;
4576 var float test_duration := 5.0;
4577 timer T;
4578
4579 f_init_pcu_test();
4580 f_TC_pcu_act_req(0, 0, 7, true);
4581
4582 PCU.clear;
4583 T.start(test_duration);
4584 alt {
4585 [] PCU.receive(t_SD_PCUIF(g_pcu_conn_id, tr_PCUIF_RTS_REQ(0, 0, 7, PCU_IF_SAPI_PDTCH, ?, ?)))
4586 -> value pcu_sd {
4587 num_rts_pdtch := num_rts_pdtch + 1;
4588 if (not isbound(first_fn)) {
4589 first_fn := pcu_sd.data.u.rts_req.fn;
4590 }
4591 last_fn := pcu_sd.data.u.rts_req.fn;
4592 repeat;
4593 }
4594 [] PCU.receive(t_SD_PCUIF(g_pcu_conn_id, tr_PCUIF_RTS_REQ(0, 0, 7, PCU_IF_SAPI_PTCCH, ?, ?)))
4595 -> value pcu_sd {
4596 num_rts_ptcch := num_rts_ptcch + 1;
4597 if (not isbound(first_fn)) {
4598 first_fn := pcu_sd.data.u.rts_req.fn;
4599 }
4600 last_fn := pcu_sd.data.u.rts_req.fn;
4601 repeat;
4602 }
4603 [] PCU.receive(t_SD_PCUIF(g_pcu_conn_id, tr_PCUIF_RTS_REQ)) -> value pcu_sd {
4604 setverdict(fail, "Received unexpected PCUIF_RTS_REQ: ", pcu_sd.data);
4605 repeat;
4606 }
4607 [] PCU.receive {
4608 repeat;
4609 }
4610 [] T.timeout {}
4611 }
4612 var integer fn_expired := last_fn - first_fn;
4613 log(fn_expired, " fn expired with num_rts_pdtch=", num_rts_pdtch,
4614 ", num_rts_ptcch=", num_rts_ptcch);
4615
4616 /* verify the number of frames expired matches our expectation */
4617 const float c_GSM_FN_DURATION_MS := 4.61538;
4618 var float fn_expected := test_duration * 1000.0 / c_GSM_FN_DURATION_MS;
Harald Weltec761c542019-05-28 11:59:57 +02004619 var template integer t_fn_expected := f_tolerance(float2int(fn_expected), 1, 100000, 20);
Harald Welte4832c862019-05-25 14:57:18 +02004620 if (not match(fn_expired, t_fn_expected)) {
4621 setverdict(fail, "Number of TDMA Frames (", fn_expired, ") not matching ", t_fn_expected);
4622 }
4623
4624 /* PTCCH is in pos. 12 + 38 of 52-multiframe, but four slots/bursts required per block */
4625 var float ptcch_expected := int2float(fn_expired) / 52.0 * 0.5;
4626 var template integer t_ptcch_exp := f_tolerance(float2int(ptcch_expected), 1, 100000, 1);
4627 if (not match(num_rts_ptcch, t_ptcch_exp)) {
4628 setverdict(fail, "Number of RTS.ind for PTCCH (", num_rts_ptcch, ") not matching ",
4629 t_ptcch_exp);
4630 }
4631
4632 /* We have 12 PDTCH blocks every 52-multiframe */
4633 var float pdtch_expected := int2float(fn_expired) / 52.0 * 12.0;
4634 var template integer t_pdtch_exp := f_tolerance(float2int(pdtch_expected), 1, 100000, 2);
4635 if (not match(num_rts_pdtch, t_pdtch_exp)) {
4636 setverdict(fail, "Number of RTS.ind for PDTCH (", num_rts_pdtch, ") not matching ",
4637 t_pdtch_exp);
4638 }
4639
4640 setverdict(pass);
4641}
4642
Harald Welte07bd2d22019-05-25 11:03:30 +02004643/* test for generating Abis side OML ALERT from the PCU */
4644testcase TC_pcu_oml_alert() runs on test_CT {
4645 var PCUIF_send_data pcu_sd;
4646 var integer num_time_ind := 0;
4647 var integer first_fn, last_fn;
4648 var float test_duration := 5.0;
4649 timer T;
4650
4651 f_init_pcu_test();
4652 f_TC_pcu_act_req(0, 0, 7, true);
4653
4654 /* re-connect CTRL port from BTS to BSC */
4655 f_ipa_ctrl_stop();
4656 f_ipa_ctrl_start(mp_bsc_ctrl_ip, mp_bsc_ctrl_port);
4657
4658 /* Send that OML Alert */
4659 PCU.send(t_SD_PCUIF(g_pcu_conn_id, ts_PCUIF_TXT_IND(0, PCU_OML_ALERT, testcasename())));
4660
4661 /* This requires https://gerrit.osmocom.org/#/c/osmo-bsc/+/14177 to be merged */
4662 f_ctrl_exp_trap(IPA_CTRL, "bts.0.oml_failure_report", ?);
4663 setverdict(pass);
4664}
4665
Harald Welteeaa9a862019-05-26 23:01:08 +02004666template (value) PDU_ML3_MS_NW ts_RRM_GprsSuspReq(template (value) OCT4 tlli,
4667 template (value) RoutingAreaIdentificationV rai,
4668 template (value) OCT1 cause) := {
4669 discriminator := '0000'B, /* overwritten */
4670 tiOrSkip := {
4671 skipIndicator := '0000'B
4672 },
4673 msgs := {
4674 rrm := {
4675 gPRS_suspensionRequest := {
4676 messageType := '00110100'B,
4677 tLLI := tlli,
4678 routingAreaIdentification := rai,
4679 suspensionCause := cause,
4680 service_Support := omit
4681 }
4682 }
4683 }
4684}
4685
4686/* test for forwarding of RR SUSPEND from CS lchan to PCU via PCU socket */
4687private function f_TC_rr_suspend_req(charstring id) runs on ConnHdlr {
4688 var PCUIF_Message first_info;
4689 var integer pcu_conn_id := -1;
4690 var RslLinkId link_id := valueof(ts_RslLinkID_DCCH(0));
4691 var RoutingAreaIdentificationV rai := f_RAI('262'H, '42F'H, '2342'O, '55'O);
4692 var OCT4 tlli := '01020304'O;
4693 var OCT1 cause := '23'O;
4694 timer T := 5.0;
4695
4696 f_init_pcu(PCU, id, pcu_conn_id, first_info);
4697
4698 f_l1_tune(L1CTL);
4699 RSL.clear;
4700
4701 f_est_dchan();
4702 L1CTL.clear;
4703
4704 f_est_rll_mo(link_id.sapi, link_id, '23420815'O);
4705
4706 var PDU_ML3_MS_NW susp_req := valueof(ts_RRM_GprsSuspReq(tlli, rai, cause));
4707 var octetstring l3 := enc_PDU_ML3_MS_NW(susp_req);
4708 f_tx_lapdm(ts_LAPDm_I(link_id.sapi, cr_MO_CMD, true, 1, 0, l3), link_id);
4709
4710 /* ConnHdlr has terminated after sending the RR SUSP REQ over a dedicaed channel */
4711 T.start;
4712 alt {
4713 [] PCU.receive(t_SD_PCUIF(pcu_conn_id, tr_PCUIF_SUSP_REQ(0, tlli, ?, oct2int(cause)))) {
4714 setverdict(pass);
4715 }
4716 [] PCU.receive(t_SD_PCUIF(pcu_conn_id, tr_PCUIF_SUSP_REQ(?, ?, ?, ?))) {
4717 setverdict(fail, "Received unexpected PCUIF SUSPE REQ: ");
4718 }
4719 [] PCU.receive {
4720 repeat;
4721 }
4722 [] T.timeout {
4723 setverdict(fail, "Timeout waiting for SUSP REQ on PCUIF");
4724 }
4725 }
Alexander Couzensa0634832019-06-07 00:28:56 +02004726
4727 /* release the channel */
4728 f_rsl_chan_deact();
4729 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
4730 f_rslem_unregister(0, g_chan_nr);
Harald Welteeaa9a862019-05-26 23:01:08 +02004731}
4732testcase TC_pcu_rr_suspend() runs on test_CT {
4733 var ConnHdlrPars pars;
4734 var ConnHdlr vc_conn;
4735
4736 f_init();
4737
4738 pars := valueof(t_Pars(t_RslChanNr_SDCCH4(0,3), ts_RSL_ChanMode_SIGN));
4739 vc_conn := f_start_handler(refers(f_TC_rr_suspend_req), pars, true);
4740 vc_conn.done;
4741}
Harald Welte07bd2d22019-05-25 11:03:30 +02004742
Harald Weltea2e0e942019-05-27 18:12:53 +02004743/* Ensure that PCUIF socket can accept only a single connection */
4744testcase TC_pcu_socket_connect_multi() runs on test_CT {
4745 timer T := 5.0;
4746
4747 /* this (among other things) establishes the first connection to the PCUIF socket */
4748 f_init();
4749
4750 /* try to establish a second connection, expect it to fail */
4751 PCU.send(UD_connect:{mp_pcu_socket, -1});
4752 T.start;
4753 alt {
4754 [] PCU.receive(UD_connect_result:{id := ?, result := { result_code := ERROR, err := ? }}) {
4755 setverdict(pass);
4756 }
4757 [] PCU.receive(UD_connect_result:?) {
4758 setverdict(fail, "Unexpected unix domain connect result");
4759 }
4760 [] T.timeout {
4761 setverdict(pass);
4762 }
4763 }
4764 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
4765}
4766
Harald Weltec8effb72019-05-27 18:23:04 +02004767/* Ensure that PCUIF socket can disconnect + reconnect */
4768testcase TC_pcu_socket_reconnect() runs on test_CT {
4769 /* this (among other things) establishes the first connection to the PCUIF socket */
4770 f_init();
4771
4772 f_sleep(1.0);
4773
4774 f_pcuif_close(PCU, g_pcu_conn_id);
4775 g_pcu_conn_id := -1;
4776
4777 f_sleep(1.0);
4778
4779 /* re-connect */
4780 PCU.clear;
4781 f_init_pcu(PCU, testcasename(), g_pcu_conn_id, g_pcu_last_info);
4782 setverdict(pass);
4783
4784 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
4785}
4786
Harald Weltebe030482019-05-27 22:29:35 +02004787/* Ensure that GPRS capability is not advertised before PCU socket conncet */
4788private function f_get_si3(L1CTL_PT pt) runs on test_CT return SystemInformationType3 {
4789 var L1ctlDlMessage l1_dl;
4790 var SystemInformation si;
4791 timer T := 5.0;
4792 T.start;
4793 alt {
4794 [] pt.receive(tr_L1CTL_DATA_IND(t_RslChanNr_BCCH(0), ?)) -> value l1_dl {
4795 /* somehow dec_SystemInformation will try to decode even non-RR as SI */
4796 if (not (l1_dl.payload.data_ind.payload[1] == '06'O)) {
4797 log("Ignoring non-RR SI ", l1_dl);
4798 repeat;
4799 }
4800 si := dec_SystemInformation(l1_dl.payload.data_ind.payload)
4801 if (not ischosen(si.payload.si3)) {
4802 repeat;
4803 }
4804 }
4805 [] pt.receive {
4806 repeat;
4807 }
4808 [] T.timeout {
4809 setverdict(fail, "Timeout waiting for SI3");
4810 }
4811 }
4812 return si.payload.si3;
4813}
4814
4815/* CSN.1 L/H logic: is the bit at the current position using "inverted logic" (true) or not? */
4816private function f_bitpos_is_inv(integer idx) return boolean {
4817 select (idx mod 8) {
4818 case ((2, 4, 6, 7)) { return true; } /* 1-bits of 0x2B */
4819 case else { return false; } /* 0-bits of 0x2B */
4820 }
4821}
4822/* determine if the bit at position 'idx' in 'str' is a CSN.1 'H' (true) or 'L' (false) */
4823private function f_bit_is_high(bitstring str, integer idx) return boolean {
4824 var boolean invert := f_bitpos_is_inv(idx);
4825 if (invert) {
4826 if (str[idx] == '1'B) {
4827 return false;
4828 } else {
4829 return true;
4830 }
4831 } else {
4832 if (str[idx] == '1'B) {
4833 return true;
4834 } else {
4835 return false;
4836 }
4837 }
4838}
4839/* As the TITAN RAW codec cannot expres the CSN.1 L/H concept yet, we have to do this
4840 manually. Let's hope https://www.eclipse.org/forums/index.php/t/1099087/ takes off and
4841 we can replace this piece of code soon ... */
4842private function f_si3_has_gprs_indicator(OCT4 si3_restoctets) return boolean {
4843 var bitstring bits := oct2bit(si3_restoctets);
4844 var integer idx := 0;
4845
4846 if (f_bit_is_high(bits, idx)) {
4847 /* skip Optional selection parameters */
4848 idx := idx + 16;
4849 } else {
4850 idx := idx + 1;
4851 }
4852
4853 if (f_bit_is_high(bits, idx)) {
4854 /* skip Optional power offset */
4855 idx := idx + 3;
4856 } else {
4857 idx := idx + 1;
4858 }
4859
4860 /* skip SI2ter Indicator */
4861 idx := idx + 1;
4862
4863 /* skip Early CM Sending Control */
4864 idx := idx + 1;
4865
4866 /* skip Scheduling if and where */
4867 if (f_bit_is_high(bits, idx)) {
4868 idx := idx + 4;
4869 } else {
4870 idx := idx + 1;
4871 }
4872
4873 return f_bit_is_high(bits, idx);
4874}
4875
4876testcase TC_pcu_socket_noconnect_nosi3gprs() runs on test_CT {
4877 var SystemInformationType3 si3;
4878 timer T := 5.0;
4879
4880 /* don't call f_init() as this would connect PCU socket */
4881 f_init_rsl(testcasename());
4882 T.start;
4883 alt {
4884 [] RSL_CCHAN.receive(ASP_IPA_Event:{up_down := ASP_IPA_EVENT_UP});
4885 [] T.timeout {
4886 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for ASP_IPA_EVENT_UP");
4887 }
4888 }
4889 f_rsl_bcch_fill(RSL_SYSTEM_INFO_3, ts_SI3_default);
4890
4891 f_init_l1ctl();
4892 f_l1_tune(L1CTL);
4893
4894 f_sleep(2.0);
4895 L1CTL.clear;
4896 si3 := f_get_si3(L1CTL);
4897 if (f_si3_has_gprs_indicator(si3.rest_octets)) {
4898 setverdict(fail, "SI3 indicates GPRS even before PCU socket connected");
4899 } else {
4900 setverdict(pass);
4901 }
4902 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
4903}
4904
4905/* Ensure that GPRS capability is advertised after PCU socket connect */
4906testcase TC_pcu_socket_connect_si3gprs() runs on test_CT {
4907 var SystemInformationType3 si3;
4908
4909 /* this (among other things) establishes the first connection to the PCUIF socket */
4910 f_init();
4911 f_init_l1ctl();
4912 f_l1_tune(L1CTL);
4913
4914 f_sleep(2.0);
4915 L1CTL.clear;
4916 si3 := f_get_si3(L1CTL);
4917 if (not f_si3_has_gprs_indicator(si3.rest_octets)) {
4918 setverdict(fail, "SI3 indicates no GPRS despite PCU socket connected");
4919 } else {
4920 setverdict(pass);
4921 }
4922 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
4923}
4924
4925/* Ensure that GPRS capability is no longer advertised after PCU socket disconnect */
4926testcase TC_pcu_socket_disconnect_nosi3gprs() runs on test_CT {
4927 var SystemInformationType3 si3;
4928
4929 /* this (among other things) establishes the first connection to the PCUIF socket */
4930 f_init();
4931 f_init_l1ctl();
4932 f_l1_tune(L1CTL);
4933
4934 f_pcuif_close(PCU, g_pcu_conn_id);
4935 g_pcu_conn_id := -1;
4936
4937 f_sleep(1.0);
4938
4939 /* re-connect */
4940 PCU.clear;
4941 f_init_pcu(PCU, testcasename(), g_pcu_conn_id, g_pcu_last_info);
4942
4943 f_sleep(2.0);
4944 L1CTL.clear;
4945 si3 := f_get_si3(L1CTL);
4946 if (f_si3_has_gprs_indicator(si3.rest_octets)) {
4947 setverdict(fail, "SI3 indicates GPRS after PCU socket disconnected");
4948 } else {
4949 setverdict(pass);
4950 }
4951
4952 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
4953}
4954
Oliver Smithf5239c72019-08-28 10:01:25 +02004955/* Verify that the cell_id of SI3 (TS 04.08 9.1.35) and other values are passed properly to the PCU socket (OS#3854) */
4956testcase TC_pcu_socket_verify_info_ind() runs on test_CT {
4957 var SystemInformation si3 := valueof(ts_SI3_default);
4958
4959 f_init();
4960
4961 /* Verify cell_id */
4962 var uint16_t cell_id_si3 := si3.payload.si3.cell_id;
4963 var uint16_t cell_id_pcu := g_pcu_last_info.u.info_ind.cell_id;
4964 if (cell_id_si3 != cell_id_pcu) {
Oliver Smithe1c00f02019-09-04 11:35:56 +02004965 setverdict(fail, "Expected cell_id '", cell_id_si3, "' and got '", cell_id_pcu, "'. This either means,",
4966 " that the BTS is sending the wrong cell_id, or that the BTS sent it too early",
4967 " (OS#4179)");
Oliver Smithf5239c72019-08-28 10:01:25 +02004968 }
4969
4970 /* Verify LAC */
4971 var uint16_t lac_si3 := si3.payload.si3.lai.lac;
4972 var uint16_t lac_pcu := g_pcu_last_info.u.info_ind.lac;
4973 if (lac_si3 != lac_pcu) {
4974 setverdict(fail, "Expected LAC ", lac_si3, " got: ", lac_pcu);
4975 }
4976
4977 setverdict(pass);
4978}
Harald Welted66c9b82019-05-25 09:03:15 +02004979
Harald Welte3d04ae62018-04-04 20:29:05 +02004980/***********************************************************************
Harald Welte9bbbfb52018-04-05 09:33:19 +02004981 * Osmocom Style Dynamic Timeslot Support
Harald Welte3d04ae62018-04-04 20:29:05 +02004982 ***********************************************************************/
4983
4984private function f_dyn_osmo_pdch_act(integer pcu_conn_id, integer bts_nr, integer trx_nr)
4985runs on ConnHdlr {
4986 var PCUIF_send_data sd;
4987 /* Expect BTS to immediately acknowledge activation as PDCH */
4988 PCU.clear;
4989 f_rsl_chan_act(g_pars.chan_mode);
4990 /* expect INFO_IND on PCU interface listing TS as PDCH */
Pau Espin Pedrol202c2f72019-10-08 13:11:05 +02004991 timer T_wait := 2.0;
4992 T_wait.start;
Harald Welte3d04ae62018-04-04 20:29:05 +02004993 alt {
4994 [] PCU.receive(t_SD_PCUIF(pcu_conn_id, tr_PCUIF_INFO_IND(bts_nr, ?))) -> value sd {
4995 if (substr(sd.data.u.info_ind.trx[trx_nr].pdch_mask, g_chan_nr.tn, 1) != '1'B) {
Pau Espin Pedrol202c2f72019-10-08 13:11:05 +02004996 log("PCUIF_INFO_IND PDCH_MASK not yet '1' after PDCH ACT on TS", g_chan_nr.tn,
4997 " mask:", sd.data.u.info_ind.trx[trx_nr].pdch_mask);
4998 repeat;
Harald Welte3d04ae62018-04-04 20:29:05 +02004999 }
5000 }
5001 [] PCU.receive { repeat; }
Pau Espin Pedrol202c2f72019-10-08 13:11:05 +02005002 [] T_wait.timeout {
5003 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
5004 log2str("Timeout waiting for PCUIF_INFO_IND PDCH_MASK to be '1' on TS", g_chan_nr.tn));
5005 }
Harald Welte3d04ae62018-04-04 20:29:05 +02005006 }
5007 /* try to activate this PDCH from the PCU point of view */
5008 PCU.send(t_SD_PCUIF(pcu_conn_id, ts_PCUIF_ACT_REQ(bts_nr, trx_nr, g_chan_nr.tn)));
5009 /* FIXME: is there a response? */
5010}
5011
5012private function f_dyn_osmo_pdch_deact(integer pcu_conn_id, integer bts_nr, integer trx_nr)
5013runs on ConnHdlr {
5014 var PCUIF_send_data sd;
5015 /* Send RSL CHAN REL (deactivate) */
5016 PCU.clear;
5017 RSL.send(ts_RSL_RF_CHAN_REL(g_chan_nr));
5018 /* expect BTS to ask PCU to deactivate the channel */
Pau Espin Pedrol202c2f72019-10-08 13:11:05 +02005019 timer T_wait := 2.0;
5020 T_wait.start;
Harald Welte3d04ae62018-04-04 20:29:05 +02005021 alt {
5022 [] PCU.receive(t_SD_PCUIF(pcu_conn_id, tr_PCUIF_INFO_IND(bts_nr, ?))) -> value sd {
5023 if (substr(sd.data.u.info_ind.trx[trx_nr].pdch_mask, g_chan_nr.tn, 1) != '0'B) {
Pau Espin Pedrol202c2f72019-10-08 13:11:05 +02005024 log("PCUIF_INFO_IND PDCH_MASK not yet '0' after PDCH DEACT on TS", g_chan_nr.tn,
5025 " mask:", sd.data.u.info_ind.trx[trx_nr].pdch_mask);
5026 repeat;
Harald Welte3d04ae62018-04-04 20:29:05 +02005027 }
5028 }
5029 [] PCU.receive { repeat; }
Pau Espin Pedrol202c2f72019-10-08 13:11:05 +02005030 [] T_wait.timeout {
5031 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
5032 log2str("Timeout waiting for PCUIF_INFO_IND PDCH_MASK to be '0' on TS", g_chan_nr.tn));
5033 }
Harald Welte3d04ae62018-04-04 20:29:05 +02005034 }
5035 /* Emulate PCU asking BTS to deactivate PDCH */
5036 PCU.send(t_SD_PCUIF(pcu_conn_id, ts_PCUIF_DEACT_REQ(bts_nr, trx_nr, g_chan_nr.tn)));
5037 alt {
5038 [] RSL.receive(tr_RSL_RF_CHAN_REL_ACK(g_chan_nr)) {
5039 setverdict(pass);
5040 }
5041 [] RSL.receive { repeat; }
5042 }
5043}
5044
5045/* Activate Osmocom-style dynamic PDCH from BSC side */
5046function f_TC_dyn_osmo_pdch_act_deact(charstring id) runs on ConnHdlr {
5047 var PCUIF_Message first_info;
5048 var integer ts_nr := g_chan_nr.tn;
5049 var integer trx_nr := 0;
5050 var integer bts_nr := 0;
5051 var integer pcu_conn_id := -1;
5052
5053 f_init_pcu(PCU, id, pcu_conn_id, first_info);
5054
5055 f_dyn_osmo_pdch_act(pcu_conn_id, bts_nr, trx_nr);
5056 f_sleep(3.0);
5057 f_dyn_osmo_pdch_deact(pcu_conn_id, bts_nr, trx_nr);
5058 setverdict(pass);
5059}
5060testcase TC_dyn_osmo_pdch_act_deact() runs on test_CT {
5061 var ConnHdlrPars pars;
5062 var ConnHdlr vc_conn;
Harald Welte10474062019-05-30 16:48:17 +02005063 f_init();
Harald Welte3d04ae62018-04-04 20:29:05 +02005064
5065 pars := valueof(t_Pars(t_RslChanNr_PDCH(4), ts_RSL_ChanMode_SIGN));
5066 vc_conn := f_start_handler(refers(f_TC_dyn_osmo_pdch_act_deact), pars, true);
5067 vc_conn.done;
5068}
5069
5070/* send a RF CHAN REL for PDCH on an osmocom dynamci PDCH that's already inactive */
5071function f_TC_dyn_osmo_pdch_unsol_deact(charstring id) runs on ConnHdlr {
5072 var PCUIF_Message first_info;
Harald Welte3d04ae62018-04-04 20:29:05 +02005073 var integer pcu_conn_id := -1;
5074
5075 f_init_pcu(PCU, id, pcu_conn_id, first_info);
5076
Neels Hofmeyr9c50ca52018-05-08 20:37:54 +02005077 RSL.send(ts_RSL_RF_CHAN_REL(g_chan_nr));
5078 /* since the lchan is already released, we don't expect any PCU changes, just a rel ack. */
5079 RSL.receive(tr_RSL_RF_CHAN_REL_ACK(g_chan_nr));
Harald Welte3d04ae62018-04-04 20:29:05 +02005080 setverdict(pass);
5081}
5082testcase TC_dyn_osmo_pdch_unsol_deact() runs on test_CT {
5083 var ConnHdlrPars pars;
5084 var ConnHdlr vc_conn;
Harald Welte10474062019-05-30 16:48:17 +02005085 f_init();
Harald Welte3d04ae62018-04-04 20:29:05 +02005086
5087 pars := valueof(t_Pars(t_RslChanNr_PDCH(4), ts_RSL_ChanMode_SIGN));
5088 vc_conn := f_start_handler(refers(f_TC_dyn_osmo_pdch_unsol_deact), pars, true);
5089 vc_conn.done;
5090}
5091
5092/* try to RSL CHAN ACT a PDCH on an osmocom-style PDCH that's already active */
5093function f_TC_dyn_osmo_pdch_double_act(charstring id) runs on ConnHdlr {
5094 var PCUIF_Message first_info;
5095 var integer ts_nr := g_chan_nr.tn;
5096 var integer trx_nr := 0;
5097 var integer bts_nr := 0;
5098 var integer pcu_conn_id := -1;
5099
5100 f_init_pcu(PCU, id, pcu_conn_id, first_info);
5101
5102 f_dyn_osmo_pdch_act(pcu_conn_id, bts_nr, trx_nr);
Neels Hofmeyrdf936a22018-05-08 22:07:57 +02005103 /* Send a second Chan Activ and expect it to be NACKed */
5104 f_rsl_transceive(ts_RSL_CHAN_ACT(g_chan_nr, g_pars.chan_mode), tr_RSL_CHAN_ACT_NACK(g_chan_nr),
5105 "RSL CHAN ACT NACK");
Harald Welte3d04ae62018-04-04 20:29:05 +02005106 setverdict(pass);
5107}
5108testcase TC_dyn_osmo_pdch_double_act() runs on test_CT {
5109 var ConnHdlrPars pars;
5110 var ConnHdlr vc_conn;
Harald Welte10474062019-05-30 16:48:17 +02005111 f_init();
Harald Welte3d04ae62018-04-04 20:29:05 +02005112
5113 pars := valueof(t_Pars(t_RslChanNr_PDCH(4), ts_RSL_ChanMode_SIGN));
5114 vc_conn := f_start_handler(refers(f_TC_dyn_osmo_pdch_double_act), pars, true);
5115 vc_conn.done;
5116}
5117
5118/* try to RSL CHAN ACT a TCH/F on an osmocom-style PDCH */
5119function f_TC_dyn_osmo_pdch_tchf_act(charstring id) runs on ConnHdlr {
5120 var PCUIF_Message first_info;
5121 var integer ts_nr := g_chan_nr.tn;
5122 var integer trx_nr := 0;
5123 var integer bts_nr := 0;
5124 var integer pcu_conn_id := -1;
5125 var RslChannelNr chan_nr := valueof(t_RslChanNr_Bm(g_chan_nr.tn));
5126
5127 /* register for the TCH/F channel number */
5128 f_rslem_register(0, chan_nr);
5129
5130 f_init_pcu(PCU, id, pcu_conn_id, first_info);
5131
5132 f_rsl_transceive(ts_RSL_CHAN_ACT(chan_nr, g_pars.chan_mode), tr_RSL_CHAN_ACT_ACK(chan_nr),
5133 "RSL CHAN ACT");
5134 setverdict(pass);
5135}
5136testcase TC_dyn_osmo_pdch_tchf_act() runs on test_CT {
5137 var ConnHdlrPars pars;
5138 var ConnHdlr vc_conn;
Harald Welte10474062019-05-30 16:48:17 +02005139 f_init();
Harald Welte3d04ae62018-04-04 20:29:05 +02005140
5141 pars := valueof(t_Pars(t_RslChanNr_PDCH(4), ts_RSL_ChanMode_SIGN));
5142 vc_conn := f_start_handler(refers(f_TC_dyn_osmo_pdch_tchf_act), pars, true);
5143 vc_conn.done;
5144}
5145
5146/* try to RSL CHAN ACT the TCH/H on an osmocom-style PDCH */
5147function f_TC_dyn_osmo_pdch_tchh_act(charstring id) runs on ConnHdlr {
5148 var PCUIF_Message first_info;
5149 var integer ts_nr := g_chan_nr.tn;
5150 var integer trx_nr := 0;
5151 var integer bts_nr := 0;
5152 var integer pcu_conn_id := -1;
5153 var RslChannelNr chan_nr[2] := { valueof(t_RslChanNr_Lm(g_chan_nr.tn, 0)),
5154 valueof(t_RslChanNr_Lm(g_chan_nr.tn, 1)) };
5155
5156 /* register for the TCH/H channel numbers */
5157 f_rslem_register(0, chan_nr[0]);
5158 f_rslem_register(0, chan_nr[1]);
5159
5160 f_init_pcu(PCU, id, pcu_conn_id, first_info);
5161
5162 f_rsl_transceive(ts_RSL_CHAN_ACT(chan_nr[1], g_pars.chan_mode),
5163 tr_RSL_CHAN_ACT_ACK(chan_nr[1]), "RSL CHAN ACT [1]");
5164 f_rsl_transceive(ts_RSL_CHAN_ACT(chan_nr[0], g_pars.chan_mode),
5165 tr_RSL_CHAN_ACT_ACK(chan_nr[0]), "RSL CHAN ACT [0]");
5166 setverdict(pass);
5167}
5168testcase TC_dyn_osmo_pdch_tchh_act() runs on test_CT {
5169 var ConnHdlrPars pars;
5170 var ConnHdlr vc_conn;
Harald Welte10474062019-05-30 16:48:17 +02005171 f_init();
Harald Welte3d04ae62018-04-04 20:29:05 +02005172
5173 pars := valueof(t_Pars(t_RslChanNr_PDCH(4), ts_RSL_ChanMode_SIGN));
5174 vc_conn := f_start_handler(refers(f_TC_dyn_osmo_pdch_tchh_act), pars, true);
5175 vc_conn.done;
5176}
5177
Harald Welte9bbbfb52018-04-05 09:33:19 +02005178/***********************************************************************
5179 * IPA Style Dynamic Timeslot Support
5180 ***********************************************************************/
5181
5182private function f_dyn_ipa_pdch_act(integer pcu_conn_id, integer bts_nr, integer trx_nr)
5183runs on ConnHdlr {
5184 var PCUIF_send_data sd;
5185 /* Expect BTS to immediately acknowledge activation as PDCH */
5186 PCU.clear;
5187 RSL.send(ts_RSL_IPA_PDCH_ACT(g_chan_nr));
5188 /* expect INFO_IND on PCU interface listing TS as PDCH */
Pau Espin Pedrol446e07b2019-02-18 21:18:36 +01005189 timer T_wait := 2.0;
5190 T_wait.start;
Harald Welte9bbbfb52018-04-05 09:33:19 +02005191 alt {
5192 [] PCU.receive(t_SD_PCUIF(pcu_conn_id, tr_PCUIF_INFO_IND(bts_nr, ?))) -> value sd {
5193 if (substr(sd.data.u.info_ind.trx[trx_nr].pdch_mask, g_chan_nr.tn, 1) != '1'B) {
Pau Espin Pedrol446e07b2019-02-18 21:18:36 +01005194 log("PCUIF_INFO_IND PDCH_MASK not yet '1' after PDCH ACT on TS", g_chan_nr.tn,
5195 " mask:", sd.data.u.info_ind.trx[trx_nr].pdch_mask);
5196 repeat;
Harald Welte9bbbfb52018-04-05 09:33:19 +02005197 }
5198 }
5199 [] PCU.receive { repeat; }
Pau Espin Pedrol446e07b2019-02-18 21:18:36 +01005200 [] T_wait.timeout {
5201 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
5202 log2str("Timeout waiting for PCUIF_INFO_IND PDCH_MASK to be '1' on TS", g_chan_nr.tn));
5203 }
Harald Welte9bbbfb52018-04-05 09:33:19 +02005204 }
5205 /* try to activate this PDCH from the PCU point of view */
5206 PCU.send(t_SD_PCUIF(pcu_conn_id, ts_PCUIF_ACT_REQ(bts_nr, trx_nr, g_chan_nr.tn)));
5207 /* FIXME: is there a response? */
5208
5209 RSL.receive(tr_RSL_IPA_PDCH_ACT_ACK(g_chan_nr, ?));
5210}
5211
5212private function f_dyn_ipa_pdch_deact(integer pcu_conn_id, integer bts_nr, integer trx_nr)
5213runs on ConnHdlr {
5214 var PCUIF_send_data sd;
5215 /* Send RSL CHAN REL (deactivate) */
5216 RSL.send(ts_RSL_IPA_PDCH_DEACT(g_chan_nr));
5217 PCU.clear;
5218 /* expect BTS to ask PCU to deactivate the channel */
Pau Espin Pedrol446e07b2019-02-18 21:18:36 +01005219 timer T_wait := 2.0;
5220 T_wait.start;
Harald Welte9bbbfb52018-04-05 09:33:19 +02005221 alt {
5222 [] PCU.receive(t_SD_PCUIF(pcu_conn_id, tr_PCUIF_INFO_IND(bts_nr, ?))) -> value sd {
5223 if (substr(sd.data.u.info_ind.trx[trx_nr].pdch_mask, g_chan_nr.tn, 1) != '0'B) {
Pau Espin Pedrol446e07b2019-02-18 21:18:36 +01005224 log("PCUIF_INFO_IND PDCH_MASK not yet '0' after PDCH DEACT on TS", g_chan_nr.tn,
5225 " mask:", sd.data.u.info_ind.trx[trx_nr].pdch_mask);
5226 repeat;
Harald Welte9bbbfb52018-04-05 09:33:19 +02005227 }
5228 }
5229 [] PCU.receive { repeat; }
Pau Espin Pedrol446e07b2019-02-18 21:18:36 +01005230 [] T_wait.timeout {
5231 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,
5232 log2str("Timeout waiting for PCUIF_INFO_IND PDCH_MASK to be '0' on TS", g_chan_nr.tn));
5233 }
Harald Welte9bbbfb52018-04-05 09:33:19 +02005234 }
5235 /* Emulate PCU asking BTS to deactivate PDCH */
5236 PCU.send(t_SD_PCUIF(pcu_conn_id, ts_PCUIF_DEACT_REQ(bts_nr, trx_nr, g_chan_nr.tn)));
5237 alt {
5238 [] RSL.receive(tr_RSL_IPA_PDCH_DEACT_ACK(g_chan_nr)) {
5239 setverdict(pass);
5240 }
5241 [] RSL.receive { repeat; }
5242 }
5243}
5244
5245/* Activate and de-activate an IPA-style dynamic TCH/F + PDCH */
5246function f_TC_dyn_ipa_pdch_act_deact(charstring id) runs on ConnHdlr {
5247 var PCUIF_Message first_info;
5248 var integer ts_nr := g_chan_nr.tn;
5249 var integer trx_nr := 0;
5250 var integer bts_nr := 0;
5251 var integer pcu_conn_id := -1;
5252
5253 f_init_pcu(PCU, id, pcu_conn_id, first_info);
5254
5255 f_dyn_ipa_pdch_act(pcu_conn_id, bts_nr, trx_nr);
5256 f_sleep(3.0);
5257 f_dyn_ipa_pdch_deact(pcu_conn_id, bts_nr, trx_nr);
5258
5259 setverdict(pass);
5260
5261}
5262testcase TC_dyn_ipa_pdch_act_deact() runs on test_CT {
5263 var ConnHdlrPars pars;
5264 var ConnHdlr vc_conn;
5265 f_init();
5266
5267 pars := valueof(t_Pars(t_RslChanNr_Bm(3), ts_RSL_ChanMode_SIGN));
5268 vc_conn := f_start_handler(refers(f_TC_dyn_ipa_pdch_act_deact), pars, true);
5269 vc_conn.done;
5270}
5271
5272/* try to RSL CHAN ACT a TCH/F on an IPA-style PDCH */
5273function f_TC_dyn_ipa_pdch_tchf_act(charstring id) runs on ConnHdlr {
5274 var PCUIF_Message first_info;
5275 var integer ts_nr := g_chan_nr.tn;
5276 var integer trx_nr := 0;
5277 var integer bts_nr := 0;
5278 var integer pcu_conn_id := -1;
5279
5280 f_init_pcu(PCU, id, pcu_conn_id, first_info);
5281
5282 f_rsl_transceive(ts_RSL_CHAN_ACT(g_chan_nr, g_pars.chan_mode), tr_RSL_CHAN_ACT_ACK(g_chan_nr),
5283 "RSL CHAN ACT");
5284 f_rsl_transceive(ts_RSL_RF_CHAN_REL(g_chan_nr), tr_RSL_RF_CHAN_REL_ACK(g_chan_nr),
5285 "RF CHAN REL", true);
5286 setverdict(pass);
5287}
5288testcase TC_dyn_ipa_pdch_tchf_act() runs on test_CT {
5289 var ConnHdlrPars pars;
5290 var ConnHdlr vc_conn;
Harald Welte10474062019-05-30 16:48:17 +02005291 f_init();
Harald Welte9bbbfb52018-04-05 09:33:19 +02005292
5293 pars := valueof(t_Pars(t_RslChanNr_Bm(3), ts_RSL_ChanMode_SIGN));
5294 vc_conn := f_start_handler(refers(f_TC_dyn_ipa_pdch_tchf_act), pars, true);
5295 vc_conn.done;
5296}
5297
5298/* Activate IPA style dyn PDCH as TCH/F and then illegally try to activate it as PDCH, too */
5299function f_TC_dyn_ipa_pdch_tchf_act_pdch_act_nack(charstring id) runs on ConnHdlr {
5300 var PCUIF_Message first_info;
5301 var integer ts_nr := g_chan_nr.tn;
5302 var integer trx_nr := 0;
5303 var integer bts_nr := 0;
5304 var integer pcu_conn_id := -1;
5305
5306 f_init_pcu(PCU, id, pcu_conn_id, first_info);
5307
5308 f_rsl_transceive(ts_RSL_CHAN_ACT(g_chan_nr, g_pars.chan_mode), tr_RSL_CHAN_ACT_ACK(g_chan_nr),
5309 "RSL CHAN ACT");
5310
5311 RSL.send(ts_RSL_IPA_PDCH_ACT(g_chan_nr));
5312 alt {
5313 [] RSL.receive(tr_RSL_IPA_PDCH_ACT_NACK(g_chan_nr, ?));
5314 [] RSL.receive(tr_RSL_IPA_PDCH_ACT_ACK(g_chan_nr, ?)) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02005315 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Unexpected PDCH ACT ACK");
Harald Welte9bbbfb52018-04-05 09:33:19 +02005316 }
5317 [] RSL.receive { repeat; }
5318 }
5319
5320 f_rsl_transceive(ts_RSL_RF_CHAN_REL(g_chan_nr), tr_RSL_RF_CHAN_REL_ACK(g_chan_nr),
5321 "RF CHAN REL", true);
5322 setverdict(pass);
5323}
5324testcase TC_dyn_ipa_pdch_tchf_act_pdch_act_nack() runs on test_CT {
5325 var ConnHdlrPars pars;
5326 var ConnHdlr vc_conn;
Harald Welte10474062019-05-30 16:48:17 +02005327 f_init();
Harald Welte9bbbfb52018-04-05 09:33:19 +02005328
5329 pars := valueof(t_Pars(t_RslChanNr_Bm(3), ts_RSL_ChanMode_SIGN));
5330 vc_conn := f_start_handler(refers(f_TC_dyn_ipa_pdch_tchf_act_pdch_act_nack), pars, true);
5331 vc_conn.done;
5332}
5333
5334/* try to RSL CHAN ACT a TCH/F on an IPA-style PDCH that's already in PDCH mode; expect NACK */
5335function f_TC_dyn_ipa_pdch_act_tchf_act_nack(charstring id) runs on ConnHdlr {
5336 var PCUIF_Message first_info;
5337 var integer ts_nr := g_chan_nr.tn;
5338 var integer trx_nr := 0;
5339 var integer bts_nr := 0;
5340 var integer pcu_conn_id := -1;
5341
5342 /* register for the TCH/F channel number */
5343 f_rslem_register(0, g_chan_nr);
5344
5345 f_init_pcu(PCU, id, pcu_conn_id, first_info);
5346
5347 f_dyn_ipa_pdch_act(pcu_conn_id, bts_nr, trx_nr);
5348
5349 f_rsl_transceive(ts_RSL_CHAN_ACT(g_chan_nr, g_pars.chan_mode), tr_RSL_CHAN_ACT_NACK(g_chan_nr),
5350 "RSL CHAN ACT");
5351
5352 f_dyn_ipa_pdch_deact(pcu_conn_id, bts_nr, trx_nr);
5353
5354 setverdict(pass);
5355}
5356testcase TC_dyn_ipa_pdch_act_tchf_act_nack() runs on test_CT {
5357 var ConnHdlrPars pars;
5358 var ConnHdlr vc_conn;
Harald Welte10474062019-05-30 16:48:17 +02005359 f_init();
Harald Welte9bbbfb52018-04-05 09:33:19 +02005360
5361 pars := valueof(t_Pars(t_RslChanNr_Bm(3), ts_RSL_ChanMode_SIGN));
5362 vc_conn := f_start_handler(refers(f_TC_dyn_ipa_pdch_act_tchf_act_nack), pars, true);
5363 vc_conn.done;
5364}
5365
5366
Harald Welte0472ab42018-03-12 15:02:26 +01005367/***********************************************************************
5368 * LAPDm / RLL related
5369 ***********************************************************************/
5370
5371private function f_tx_lapdm(template (value) LapdmFrame l,
5372 template (value) RslLinkId link_id) runs on ConnHdlr {
5373 var octetstring l2 := enc_LapdmFrame(valueof(l));
Vadim Yanitskiy0a8d6da2019-05-28 22:18:28 +07005374 var template (value) SacchL1Header l1h;
5375
5376 /* TODO: we can use an extension of TTCN-3 for padding, i.e. PADDING('2B'O) */
Harald Welte0472ab42018-03-12 15:02:26 +01005377 if (valueof(link_id.c) == SACCH) {
Vadim Yanitskiy0a8d6da2019-05-28 22:18:28 +07005378 /* Compose dummy L1 header */
5379 l1h := ts_SacchL1Header(g_pars.l1_pars.ms_power_level, false, g_pars.l1_pars.ms_actual_ta);
5380 L1CTL.send(ts_L1CTL_DATA_REQ_SACCH(g_chan_nr, link_id, l1h, f_pad_oct(l2, 21, '2B'O)));
Pau Espin Pedrola0fb42a2018-10-10 15:56:39 +02005381 } else {
5382 /* If required, pad L2 frame with constant 0x2b filling */
Vadim Yanitskiy0a8d6da2019-05-28 22:18:28 +07005383 L1CTL.send(ts_L1CTL_DATA_REQ(g_chan_nr, link_id, f_pad_oct(l2, 23, '2B'O)));
Harald Welte0472ab42018-03-12 15:02:26 +01005384 }
Harald Welte0472ab42018-03-12 15:02:26 +01005385}
5386
5387type record RllTestCase {
5388 uint3_t sapi,
5389 RslLinkId link_id,
5390 octetstring l3,
5391 boolean exp
5392}
5393type record of RllTestCase RllTestCases;
5394template RllTestCase t_EITC(uint3_t sapi, RslLinkId id, octetstring l3, boolean exp) := {
5395 sapi := sapi,
5396 link_id := id,
5397 l3 := l3,
5398 exp := exp
5399}
5400
5401/* execute the same callback function with a set of different parameters (tcs) on a
5402 * variety of logical channels */
5403private function f_rll_testmatrix(RllTestCases tcs, void_fn fn) runs on test_CT {
5404 var ConnHdlrPars pars;
5405 var ConnHdlr vc_conn;
Harald Welte10474062019-05-30 16:48:17 +02005406 f_init();
Harald Welte0472ab42018-03-12 15:02:26 +01005407
5408 /* test on each of the channels we have */
5409 for (var integer i := 0; i < sizeof(g_AllChanTypes); i := i+1) {
5410 pars := valueof(t_Pars(g_AllChanTypes[i], ts_RSL_ChanMode_SIGN));
5411
5412 /* test each of the test cases on the current channel */
5413 for (var integer j := 0; j < sizeof(tcs); j := j+1) {
5414 pars.spec.rll := tcs[j];
5415 log(testcasename(), ": XXX Starting ", tcs[j] , " on ", g_AllChanTypes[i]);
5416 vc_conn := f_start_handler(fn, pars);
5417 vc_conn.done;
5418 }
5419 }
5420
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02005421 Misc_Helpers.f_shutdown(__BFILE__, __LINE__);
Harald Welte0472ab42018-03-12 15:02:26 +01005422}
5423
5424/* test if SABM on Um triggers EST IND (TS 48.058 3.1) */
5425private function f_TC_rll_est_ind(charstring id) runs on ConnHdlr {
5426 var RllTestCase tc := g_pars.spec.rll;
5427 timer T := 3.0;
5428
5429 f_l1_tune(L1CTL);
5430 RSL.clear;
5431
5432 /* activate the logical channel */
5433 f_est_dchan();
5434 L1CTL.clear;
5435
5436 f_tx_lapdm(ts_LAPDm_SABM(tc.sapi, cr_MO_CMD, true, tc.l3), tc.link_id);
5437 T.start;
5438 alt {
5439 [tc.l3 != ''O] RSL.receive(tr_RSL_EST_IND(g_chan_nr, tc.link_id, tc.l3)) {
5440 if (tc.exp) {
5441 setverdict(pass);
5442 } else {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02005443 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, log2str("Unexpected EST IND with L3 in ", tc));
Harald Welte0472ab42018-03-12 15:02:26 +01005444 }
5445 }
5446 [tc.l3 == ''O] RSL.receive(tr_RSL_EST_IND_NOL3(g_chan_nr, tc.link_id)) {
5447 if (tc.exp) {
5448 setverdict(pass);
5449 } else {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02005450 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, log2str("Unexpected EST IND without L3 in ", tc));
Harald Welte0472ab42018-03-12 15:02:26 +01005451 }
5452 }
Vadim Yanitskiy35677872018-10-04 17:30:21 +07005453 /* We also expect to receive the measurements */
5454 [] as_meas_res(verify_meas := false);
Harald Welte0472ab42018-03-12 15:02:26 +01005455 [tc.exp] T.timeout {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02005456 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for EST IND");
Harald Welte0472ab42018-03-12 15:02:26 +01005457 }
5458 [not tc.exp] T.timeout {
5459 setverdict(pass);
5460 }
5461 }
5462
5463 f_rsl_chan_deact();
5464 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
5465 f_rslem_unregister(0, g_chan_nr);
5466}
5467testcase TC_rll_est_ind() runs on test_CT {
5468 var RllTestCases tcs := {
Harald Welte7aacbbf2018-05-09 16:56:41 +02005469 /* SAPI0 establishment (contention resolution) */
Harald Welte0472ab42018-03-12 15:02:26 +01005470 valueof(t_EITC(0, valueof(ts_RslLinkID_DCCH(0)), '01020304'O, true)),
Harald Welte7aacbbf2018-05-09 16:56:41 +02005471 /* normal SAPI0 establishment */
5472 valueof(t_EITC(0, valueof(ts_RslLinkID_DCCH(0)), ''O, true)),
Harald Welte0472ab42018-03-12 15:02:26 +01005473 /* SAPI 3 doesn't support contention resolution */
5474 valueof(t_EITC(3, valueof(ts_RslLinkID_DCCH(3)), '01020304'O, false)),
5475 valueof(t_EITC(3, valueof(ts_RslLinkID_SACCH(3)), '01020304'O, false)),
5476 /* normal SAPI3 establishment on main DCCH */
5477 valueof(t_EITC(3, valueof(ts_RslLinkID_DCCH(3)), ''O, true)),
5478 /* normal SAPI3 establishment on SACCH */
5479 valueof(t_EITC(3, valueof(ts_RslLinkID_SACCH(3)), ''O, true))
5480 };
5481 f_rll_testmatrix(tcs, refers(f_TC_rll_est_ind));
5482}
5483
5484/* test if RLL EST REQ trigeres SABM on Um; UA on Um triggers EST CONF (TS 48.058 3.2) */
5485private function f_TC_rll_est_req(charstring id) runs on ConnHdlr {
5486 var RllTestCase tc := g_pars.spec.rll;
5487 var L1ctlDlMessage dl;
5488 timer T := 3.0;
5489
5490 f_l1_tune(L1CTL);
5491 RSL.clear;
5492
5493 /* activate the logical channel */
5494 f_est_dchan();
5495 L1CTL.clear;
5496
5497 /* Send a RSL EST REQ for SAPI3 on main DCCH */
5498 RSL.send(ts_RSL_EST_REQ(g_chan_nr, tc.link_id));
5499 T.start;
5500 alt {
5501 [] L1CTL.receive(tr_L1CTL_DATA_IND(g_chan_nr, ?)) -> value dl {
5502 var LapdmFrame lapdm;
5503 var octetstring l2 := dl.payload.data_ind.payload;
5504 if (dl.dl_info.link_id.c == SACCH) {
5505 /* remove L1 header */
5506 l2 := substr(l2, 2, lengthof(l2)-2);
5507 }
5508 lapdm.ab := dec_LapdmFrameAB(l2);
5509 if (match(lapdm, tr_LAPDm_SABM(tc.sapi, cr_MT_CMD, true, ''O))) {
5510 setverdict(pass);
5511 } else {
5512 repeat;
5513 }
5514 }
5515 [] L1CTL.receive { repeat; }
5516 [] T.timeout {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02005517 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for SABM");
Harald Welte0472ab42018-03-12 15:02:26 +01005518 }
5519 }
5520
5521 f_rsl_chan_deact();
5522 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
5523 f_rslem_unregister(0, g_chan_nr);
5524}
5525testcase TC_rll_est_req_DCCH_3() runs on test_CT {
5526 var RllTestCases tcs := {
5527 /* normal SAPI3 establishment on main DCCH */
5528 valueof(t_EITC(3, valueof(ts_RslLinkID_DCCH(3)), ''O, true))//,
5529 };
5530 f_rll_testmatrix(tcs, refers(f_TC_rll_est_req));
5531}
5532testcase TC_rll_est_req_ACCH_3() runs on test_CT {
5533 var RllTestCases tcs := {
5534 /* normal SAPI3 establishment on SACCH */
5535 valueof(t_EITC(3, valueof(ts_RslLinkID_SACCH(3)), ''O, true))
5536 }
5537 f_rll_testmatrix(tcs, refers(f_TC_rll_est_req));
5538}
5539
5540/* altstep to receive a LAPDm frame matching the given template */
5541private altstep as_l1_exp_lapdm(template LapdmFrame exp) runs on ConnHdlr {
5542 var L1ctlDlMessage dl;
5543 [] L1CTL.receive(tr_L1CTL_DATA_IND(g_chan_nr, ?)) -> value dl {
5544 var LapdmFrame lapdm;
5545 var octetstring l2 := dl.payload.data_ind.payload;
5546 if (dl.dl_info.link_id.c == SACCH) {
5547 /* remove L1 header */
5548 l2 := substr(l2, 2, lengthof(l2)-2);
5549 }
5550 if (ischosen(exp.ab)) {
5551 lapdm.ab := dec_LapdmFrameAB(l2);
5552 } else if (ischosen(exp.b4)) {
5553 lapdm.b4 := dec_LapdmFrameB4(l2);
5554 } else if (ischosen(exp.bbis)) {
5555 lapdm.bbis := dec_LapdmFrameBbis(l2);
5556 }
5557 log("Rx LAPDm ", lapdm);
5558 if (match(lapdm, exp)) {
5559 setverdict(pass);
5560 } else {
5561 repeat;
5562 }
5563 }
5564 [] L1CTL.receive { repeat; }
5565}
5566private function f_l1_exp_lapdm(template LapdmFrame exp, float t := 3.0) runs on ConnHdlr {
5567 timer T := t;
5568 T.start;
5569 alt {
5570 [] T.timeout {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02005571 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, log2str("Timeout waiting for LAPDm ", exp));
Harald Welte0472ab42018-03-12 15:02:26 +01005572 }
5573 [] as_l1_exp_lapdm(exp);
5574 }
5575}
5576
5577/* establish one Radio Link Layer via SABM -> UA. Use l3 for contention resolution */
5578private function f_est_rll_mo(uint3_t sapi, RslLinkId link_id, octetstring l3) runs on ConnHdlr {
5579 /* send SABM from MS -> BTS */
5580 f_tx_lapdm(ts_LAPDm_SABM(sapi, cr_MO_CMD, true, l3), link_id);
5581 /* expect RLL EST IND on Abis */
5582 alt {
5583 [l3 != ''O] RSL.receive(tr_RSL_EST_IND(g_chan_nr, link_id, l3));
5584 [l3 == ''O] RSL.receive(tr_RSL_EST_IND_NOL3(g_chan_nr, link_id));
5585 [] RSL.receive(tr_RSL_ERROR_IND(g_chan_nr, link_id, ?)) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02005586 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Failing due to RSL_ERROR_IND");
Harald Welte0472ab42018-03-12 15:02:26 +01005587 }
5588 [] RSL.receive { repeat; }
5589 }
5590 /* expect UA from BTS -> MS */
5591 f_l1_exp_lapdm(tr_LAPDm_UA(sapi, cr_MT_RSP, true, l3));
5592}
5593
5594/* test if DISC on Um triggers RLL REL IND (TS 48.058 3.3) */
5595private function f_TC_rll_rel_ind(charstring id) runs on ConnHdlr {
5596 var RllTestCase tc := g_pars.spec.rll;
5597
5598 f_l1_tune(L1CTL);
5599 RSL.clear;
5600
5601 /* activate the logical channel */
5602 f_est_dchan();
5603 L1CTL.clear;
5604
5605 /* first establish the link-layer */
5606 f_est_rll_mo(tc.sapi, tc.link_id, tc.l3);
5607
5608 /* then send the DISC */
5609 f_tx_lapdm(ts_LAPDm_DISC(tc.sapi, cr_MO_CMD, true), tc.link_id);
5610 /* ... and expect the REL IND on the RSL side */
5611 alt {
5612 [] RSL.receive(tr_RSL_REL_IND(g_chan_nr, tc.link_id)) {
5613 setverdict(pass);
5614 }
Vadim Yanitskiy35677872018-10-04 17:30:21 +07005615 /* We also expect to receive the measurements */
5616 [] as_meas_res(verify_meas := false);
Harald Welte0472ab42018-03-12 15:02:26 +01005617 }
5618
5619 /* release the channel */
5620 f_rsl_chan_deact();
5621 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
5622 f_rslem_unregister(0, g_chan_nr);
5623}
5624testcase TC_rll_rel_ind_DCCH_0() runs on test_CT {
5625 var RllTestCases tcs := {
5626 valueof(t_EITC(0, valueof(ts_RslLinkID_DCCH(0)), '01020304'O, true))
5627 };
5628 f_rll_testmatrix(tcs, refers(f_TC_rll_rel_ind));
5629}
5630
5631testcase TC_rll_rel_ind_ACCH_0() runs on test_CT {
5632 var RllTestCases tcs := {
5633 valueof(t_EITC(0, valueof(ts_RslLinkID_SACCH(0)), ''O, true))
5634 };
5635 f_rll_testmatrix(tcs, refers(f_TC_rll_rel_ind));
5636}
5637testcase TC_rll_rel_ind_DCCH_3() runs on test_CT {
5638 var RllTestCases tcs := {
5639 valueof(t_EITC(3, valueof(ts_RslLinkID_DCCH(3)), ''O, true))
5640 };
5641 f_rll_testmatrix(tcs, refers(f_TC_rll_rel_ind));
5642}
5643testcase TC_rll_rel_ind_ACCH_3() runs on test_CT {
5644 var RllTestCases tcs := {
5645 valueof(t_EITC(3, valueof(ts_RslLinkID_SACCH(3)), ''O, true))
5646 };
5647 f_rll_testmatrix(tcs, refers(f_TC_rll_rel_ind));
5648}
5649
5650/* test if RLL REL REQ triggers DISC on Um; UA/DM triggers RLL REL CONF (TS 48.058 3.4) */
5651private function f_TC_rll_rel_req(charstring id) runs on ConnHdlr {
5652 var RllTestCase tc := g_pars.spec.rll;
5653 f_l1_tune(L1CTL);
5654 RSL.clear;
5655
5656 /* activate the logical channel */
5657 f_est_dchan();
5658 L1CTL.clear;
5659
5660 /* first establish the link-layer */
5661 f_est_rll_mo(tc.sapi, tc.link_id, tc.l3);
5662
5663 /* then send the REL REQ via RSL */
5664 RSL.send(ts_RSL_REL_REQ(g_chan_nr, tc.link_id, RSL_REL_MODE_NORMAL));
5665 /* ... and expect the DISC on the Um side */
5666 alt {
Harald Weltebc6199f2018-05-10 19:38:18 +02005667 [] as_l1_exp_lapdm(tr_LAPDm_DISC(tc.sapi, cr_MT_CMD, true)) {
Harald Welte0472ab42018-03-12 15:02:26 +01005668 /* FIXME: send a UA in resposne to the DISC */
5669 }
5670 }
5671
5672 /* release the channel */
5673 f_rsl_chan_deact();
5674 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
5675 f_rslem_unregister(0, g_chan_nr);
5676}
5677testcase TC_rll_rel_req() runs on test_CT {
5678 var RllTestCases tcs := {
5679 valueof(t_EITC(0, valueof(ts_RslLinkID_DCCH(0)), '01020304'O, true)),
5680 valueof(t_EITC(0, valueof(ts_RslLinkID_SACCH(0)), ''O, true)),
5681 valueof(t_EITC(3, valueof(ts_RslLinkID_DCCH(3)), ''O, true)),
5682 valueof(t_EITC(3, valueof(ts_RslLinkID_SACCH(3)), ''O, true))
5683 };
5684 f_rll_testmatrix(tcs, refers(f_TC_rll_rel_req));
5685}
5686
5687/* test if RLL DATA REQ triggers I-frames on Um (TS 48.058 3.5) */
5688testcase TC_rll_data_req() runs on test_CT {
5689}
5690
5691/* test if I-frames on Um trigger RLL DATA IND (TS 48.058 3.6) */
5692testcase TC_rll_data_ind() runs on test_CT {
5693}
5694
5695/* test if RLL UNIT DATA REQ triggers UI-frame on Um (TS 48.058 3.7) */
5696private function f_TC_rll_ud_req(charstring id) runs on ConnHdlr {
5697 var RllTestCase tc := g_pars.spec.rll;
5698
5699 f_l1_tune(L1CTL);
5700 RSL.clear;
5701
5702 f_est_dchan();
5703 L1CTL.clear;
5704
5705 /* Send UNITDATA REQ on RSL side */
5706 RSL.send(ts_RSL_UNITDATA_REQ(g_chan_nr, tc.link_id, tc.l3));
5707 /* Expect it to arrive on the other side */
5708 if (tc.link_id.c == SACCH) {
Harald Weltee613f962018-04-18 22:38:16 +02005709 f_l1_exp_lapdm(tr_LAPDm_B4_UI(tc.sapi, cr_MT_CMD, tc.l3));
Harald Welte0472ab42018-03-12 15:02:26 +01005710 } else {
Harald Weltee613f962018-04-18 22:38:16 +02005711 f_l1_exp_lapdm(tr_LAPDm_UI(tc.sapi, cr_MT_CMD, tc.l3));
Harald Welte0472ab42018-03-12 15:02:26 +01005712 }
5713
5714 /* release the channel */
5715 f_rsl_chan_deact();
5716 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
5717 f_rslem_unregister(0, g_chan_nr);
5718}
5719testcase TC_rll_unit_data_req_DCCH() runs on test_CT {
5720 var octetstring l3 := f_rnd_octstring(15);
5721 var RllTestCases tcs := {
5722 valueof(t_EITC(0, valueof(ts_RslLinkID_DCCH(0)), l3, true)),
5723 valueof(t_EITC(3, valueof(ts_RslLinkID_DCCH(3)), l3, true))
5724 };
5725 f_rll_testmatrix(tcs, refers(f_TC_rll_ud_req));
5726}
5727testcase TC_rll_unit_data_req_ACCH() runs on test_CT {
5728 var octetstring l3 := f_rnd_octstring(19);
5729 var RllTestCases tcs := {
5730 valueof(t_EITC(0, valueof(ts_RslLinkID_SACCH(0)), l3, true)),
5731 valueof(t_EITC(3, valueof(ts_RslLinkID_SACCH(3)), l3, true))
5732 };
5733 f_rll_testmatrix(tcs, refers(f_TC_rll_ud_req));
5734}
5735
5736/* test if UI-frames on Um trigger RLL UNIT DATA IND (TS 48.058 3.8) */
5737private function f_TC_rll_ud_ind(charstring id) runs on ConnHdlr {
5738 var RllTestCase tc := g_pars.spec.rll;
5739
5740 f_l1_tune(L1CTL);
5741 RSL.clear;
5742
5743 f_est_dchan();
5744 L1CTL.clear;
5745
5746 /* Send LAPDm UI frame. There is no B4 format in uplink! */
Harald Weltee613f962018-04-18 22:38:16 +02005747 f_tx_lapdm(ts_LAPDm_UI(tc.sapi, cr_MO_CMD, tc.l3), tc.link_id);
Harald Welte0472ab42018-03-12 15:02:26 +01005748 /* Expdct RLL UNITDATA IND on RSL side */
5749 alt {
5750 [] RSL.receive(tr_RSL_UNITDATA_IND(g_chan_nr, tc.link_id, tc.l3)) {
5751 setverdict(pass);
5752 }
5753 [] RSL.receive { repeat; }
5754 }
5755
5756 /* release the channel */
5757 f_rsl_chan_deact();
5758 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
5759 f_rslem_unregister(0, g_chan_nr);
5760}
5761testcase TC_rll_unit_data_ind_DCCH() runs on test_CT {
Stefan Sperlingc4181912018-07-25 17:03:08 +02005762 var octetstring l3 := f_rnd_octstring(20);
Harald Welte0472ab42018-03-12 15:02:26 +01005763 var RllTestCases tcs := {
5764 valueof(t_EITC(0, valueof(ts_RslLinkID_DCCH(0)), l3, true)),
5765 valueof(t_EITC(3, valueof(ts_RslLinkID_DCCH(3)), l3, true))
5766 };
5767 f_rll_testmatrix(tcs, refers(f_TC_rll_ud_ind));
5768}
5769testcase TC_rll_unit_data_ind_ACCH() runs on test_CT {
5770 var octetstring l3 := f_rnd_octstring(18);
5771 var RllTestCases tcs := {
5772 valueof(t_EITC(0, valueof(ts_RslLinkID_SACCH(0)), l3, true)),
5773 valueof(t_EITC(3, valueof(ts_RslLinkID_SACCH(3)), l3, true))
5774 };
5775 f_rll_testmatrix(tcs, refers(f_TC_rll_ud_ind));
5776}
5777
Harald Weltee613f962018-04-18 22:38:16 +02005778/***********************************************************************
5779 * Encryption Related
5780 ***********************************************************************/
5781
5782/* send UNITDATA_REQ from BTS to MS and expect it to arrive */
5783function f_unitdata_mt(RslLinkId link_id, octetstring l3) runs on ConnHdlr {
5784 RSL.send(ts_RSL_UNITDATA_REQ(g_chan_nr, link_id, l3));
5785 if (link_id.c == SACCH) {
5786 f_l1_exp_lapdm(tr_LAPDm_B4_UI(link_id.sapi, cr_MT_CMD, l3));
5787 } else {
5788 f_l1_exp_lapdm(tr_LAPDm_UI(link_id.sapi, cr_MT_CMD, l3));
5789 }
5790}
5791
Vadim Yanitskiyad131c82018-10-04 06:18:59 +07005792/* Expect (or not expect) other kinds of messages */
5793private altstep as_rsl_any_ind(boolean exp_any) runs on ConnHdlr {
5794 [exp_any] RSL.receive { repeat; }
5795 [not exp_any] RSL.receive {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02005796 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Unexpected RSL message!");
Vadim Yanitskiyad131c82018-10-04 06:18:59 +07005797 }
5798}
5799
Harald Weltee613f962018-04-18 22:38:16 +02005800/* Send UI frame from MS and expect it to arrive as RLL UNITDATA IND on Abis */
Vadim Yanitskiy8d8f91c2018-10-04 06:19:45 +07005801private function f_unitdata_mo(
Vadim Yanitskiy98e03152018-10-03 18:06:06 +07005802 RslLinkId link_id,
5803 octetstring l3,
5804 boolean exp_sacch := true, /* Should tolerate SACCH messages? */
Vadim Yanitskiyb9920502018-10-03 18:29:51 +07005805 boolean exp_any := false /* Should tolerate any other RSL messages? */
Vadim Yanitskiy98e03152018-10-03 18:06:06 +07005806) runs on ConnHdlr {
Harald Weltee613f962018-04-18 22:38:16 +02005807 timer T := 3.0;
5808 f_tx_lapdm(ts_LAPDm_UI(link_id.sapi, cr_MO_CMD, l3), link_id);
5809 T.start;
5810 /* Expect RLL UNITDATA IND on RSL side */
5811 alt {
5812 [] RSL.receive(tr_RSL_UNITDATA_IND(g_chan_nr, link_id, l3)) {
5813 setverdict(pass);
5814 }
Vadim Yanitskiye0b91a72018-10-04 15:44:40 +07005815 [exp_sacch] as_meas_res(verify_meas := false);
Vadim Yanitskiyad131c82018-10-04 06:18:59 +07005816 [] as_rsl_any_ind(exp_any);
Harald Weltee613f962018-04-18 22:38:16 +02005817 [] T.timeout {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02005818 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for UNIT_DATA_IND");
Harald Weltee613f962018-04-18 22:38:16 +02005819 }
Harald Weltee613f962018-04-18 22:38:16 +02005820 }
5821}
5822
Vadim Yanitskiy4d78a702018-10-03 03:59:34 +07005823/* Send I-frame from MS and expect it to arrive as RLL DATA IND on Abis */
5824private function f_data_mo(
5825 RslLinkId link_id,
5826 boolean p, uint3_t nr, uint3_t ns,
5827 octetstring l3,
5828 boolean exp_sacch := true, /* Should tolerate SACCH messages? */
Vadim Yanitskiyb9920502018-10-03 18:29:51 +07005829 boolean exp_any := false /* Should tolerate any other RSL messages? */
Vadim Yanitskiy4d78a702018-10-03 03:59:34 +07005830) runs on ConnHdlr {
5831 timer T := 3.0;
5832 f_tx_lapdm(ts_LAPDm_I(link_id.sapi, cr_MO_CMD, p, nr, ns, l3), link_id);
5833 T.start;
5834 /* Expect RLL DATA IND on RSL side */
5835 alt {
5836 [] RSL.receive(tr_RSL_DATA_IND(g_chan_nr, link_id, l3)) {
5837 setverdict(pass);
5838 }
Vadim Yanitskiye0b91a72018-10-04 15:44:40 +07005839 [exp_sacch] as_meas_res(verify_meas := false);
Vadim Yanitskiy4d78a702018-10-03 03:59:34 +07005840 [] as_rsl_any_ind(exp_any);
5841 [] T.timeout {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02005842 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for DATA_IND");
Vadim Yanitskiy4d78a702018-10-03 03:59:34 +07005843 }
5844 }
5845}
5846
Harald Weltee613f962018-04-18 22:38:16 +02005847/* Test channel activation with A5/n right from the beginning (like in assignment + hand-over) */
5848function f_TC_chan_act_encr(charstring id) runs on ConnHdlr {
5849 f_l1_tune(L1CTL);
5850 f_est_dchan(true);
5851
5852 /* now we actually need to transmit some data both ways to check if the encryption works */
5853 var L1ctlDlMessage dl;
5854
Stefan Sperling603d98e2018-07-25 16:47:28 +02005855 var octetstring l3 := f_rnd_octstring(20);
Harald Weltee613f962018-04-18 22:38:16 +02005856 var RslLinkId link_id := valueof(ts_RslLinkID_DCCH(0));
5857
5858 /* send UNITDATA_REQ from BTS to MS and expect it to arrive */
5859 f_unitdata_mt(link_id, l3);
5860
5861 /* Send UI frame from MS and expect it to arrive as RLL UNITDATA IND on Abis */
5862 f_unitdata_mo(link_id, l3);
5863
5864 /* release the channel */
5865 f_rsl_chan_deact();
5866 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
5867 f_rslem_unregister(0, g_chan_nr);
5868}
5869testcase TC_chan_act_a51() runs on test_CT {
5870 var ConnHdlrPars pars := valueof(t_Pars(t_RslChanNr_Bm(1), ts_RSL_ChanMode_SIGN));
5871 pars.encr := valueof(ts_RSL_IE_EncrInfo(RSL_ALG_ID_A5_1, f_rnd_octstring(8)));
5872 f_testmatrix_each_chan(pars, refers(f_TC_chan_act_encr));
5873}
5874testcase TC_chan_act_a52() runs on test_CT {
5875 var ConnHdlrPars pars := valueof(t_Pars(t_RslChanNr_Bm(1), ts_RSL_ChanMode_SIGN));
5876 pars.encr := valueof(ts_RSL_IE_EncrInfo(RSL_ALG_ID_A5_2, f_rnd_octstring(8)));
5877 f_testmatrix_each_chan(pars, refers(f_TC_chan_act_encr));
5878}
5879testcase TC_chan_act_a53() runs on test_CT {
5880 var ConnHdlrPars pars := valueof(t_Pars(t_RslChanNr_Bm(1), ts_RSL_ChanMode_SIGN));
5881 pars.encr := valueof(ts_RSL_IE_EncrInfo(RSL_ALG_ID_A5_3, f_rnd_octstring(8)));
5882 f_testmatrix_each_chan(pars, refers(f_TC_chan_act_encr));
5883}
5884
Eric Wildf1827a72019-05-28 17:37:35 +02005885/* Test channel activation with A5/n right from the beginning and RSL MODE MODIFY
5886 which should break the en/decryption on purpose by supplying a new key that is unknown to the MS*/
5887function f_TC_rsl_modify_encr(charstring id) runs on ConnHdlr {
5888 f_l1_tune(L1CTL);
5889 f_est_dchan(true);
5890
5891 /* now we actually need to transmit some data both ways to check if the encryption works */
5892 var L1ctlDlMessage dl;
5893
5894 var octetstring l3 := f_rnd_octstring(20);
5895 var RslLinkId link_id := valueof(ts_RslLinkID_DCCH(0));
5896
5897 /* send UNITDATA_REQ from BTS to MS and expect it to arrive */
5898 f_unitdata_mt(link_id, l3);
5899
5900 /* Send UI frame from MS and expect it to arrive as RLL UNITDATA IND on Abis */
5901 f_unitdata_mo(link_id, l3);
5902
5903 var RSL_Message rsl;
5904 rsl := valueof(ts_RSL_MODE_MODIFY_REQ(g_chan_nr, valueof(ts_RSL_ChanMode_SIGN(false))));
5905
5906 /* modify key to break proper encryption */
5907 g_pars.encr.key := f_rnd_octstring(8);
5908 var RSL_IE ei := valueof(t_RSL_IE(RSL_IE_ENCR_INFO, RSL_IE_Body:{encr_info := g_pars.encr}));
5909 rsl.ies := rsl.ies & { ei };
5910 RSL.send(rsl);
5911
5912 timer T0 := 1.0;
5913 T0.start;
5914 /* Expect RSL MODIFY ACK */
5915 alt {
5916 [] RSL.receive(tr_RSL_MODE_MODIFY_ACK(g_chan_nr)) {}
5917 [] RSL.receive(tr_RSL_MODE_MODIFY_NACK(g_chan_nr, ?)) {
5918 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail,"MODE MODIFY NACK");
5919 }
5920 [] T0.timeout {
5921 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for MODE MODIFY (N)ACK");
5922 }
5923 }
5924
5925 var octetstring l3msg := f_rnd_octstring(15);
5926 timer T1 := 3.0;
5927 /* Send UI frame from MS, do not expect it to arrive as RLL UNITDATA IND on Abis
5928 due to broken encryption */
5929 f_tx_lapdm(ts_LAPDm_UI(link_id.sapi, cr_MO_CMD, l3msg), link_id);
5930 T1.start;
5931 alt {
5932 [] RSL.receive(tr_RSL_UNITDATA_IND(g_chan_nr, link_id, l3msg)) {
5933 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "BTS shouldn't be able to decrypt after key change")
5934 }
5935 [] T1.timeout {
5936 setverdict(pass);
5937 }
5938 }
5939
5940 /* release the channel */
5941 f_rsl_chan_deact();
5942 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
5943 f_rslem_unregister(0, g_chan_nr);
5944}
5945testcase TC_rsl_modify_encr() runs on test_CT {
5946 var ConnHdlrPars pars := valueof(t_Pars(t_RslChanNr_Bm(1), ts_RSL_ChanMode_SIGN));
5947 pars.encr := valueof(ts_RSL_IE_EncrInfo(RSL_ALG_ID_A5_1, f_rnd_octstring(8)));
5948 f_testmatrix_each_chan(pars, refers(f_TC_rsl_modify_encr));
5949}
Harald Weltee613f962018-04-18 22:38:16 +02005950
5951/* Test unencrypted channel activation followed by explicit ENCR CMD later */
5952function f_TC_encr_cmd(charstring id) runs on ConnHdlr {
5953 /* L3 payload doesn't matter, as it is passed transparently */
5954 var BIT3 l3_alg_id := f_alg_id_to_l3(g_pars.encr.alg_id);
5955 var octetstring l3 := enc_PDU_ML3_NW_MS(valueof(ts_RRM_CiphModeCmd(l3_alg_id)));
5956 var RslLinkId link_id := valueof(ts_RslLinkID_DCCH(0));
5957
5958 f_l1_tune(L1CTL);
5959
5960 /* first establish a dedicated channel in the clear */
5961 f_est_dchan(false);
5962
5963 /* Establish ABM */
5964 f_est_rll_mo(link_id.sapi, link_id, '23420815'O);
5965
5966 /* then send the RSL ENCR CMD with an actual RR CIPH MOD CMD inside */
5967 RSL.send(ts_RSL_ENCR_CMD(g_chan_nr, link_id, g_pars.encr.alg_id, g_pars.encr.key, l3));
5968 /* expect the L3 to arrive still unencrypted on the MS side */
5969 f_l1_exp_lapdm(tr_LAPDm_I(link_id.sapi, cr_MT_CMD, ?, ?, ?, l3));
5970
5971 /* configure L1 to apply ciphering */
5972 var uint8_t alg_id := f_alg_id_to_l1ctl(g_pars.encr.alg_id);
5973 f_L1CTL_CRYPTO_REQ(L1CTL, g_pars.chan_nr, alg_id, g_pars.encr.key);
5974
Vadim Yanitskiy4d78a702018-10-03 03:59:34 +07005975 /* send first ciphered I-frame in response and expect it on RSL */
5976 f_data_mo(link_id, true, 1, 0, '0a0b0c0d'O, exp_sacch := true);
Harald Weltee613f962018-04-18 22:38:16 +02005977
5978 /* now the BTS code should have detected the first properly encrypted uplink I-frame,
5979 * and hence enable encryption also on the downlink */
5980
5981 /* expect bi-directional communication work in encrypted mode */
5982 f_unitdata_mo(link_id, f_rnd_octstring(15));
5983 f_unitdata_mt(link_id, f_rnd_octstring(15));
5984
5985 /* release the channel */
5986 f_rsl_chan_deact();
5987 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
5988 f_rslem_unregister(0, g_chan_nr);
5989}
5990testcase TC_encr_cmd_a51() runs on test_CT {
5991 var ConnHdlrPars pars := valueof(t_Pars(t_RslChanNr_Bm(1), ts_RSL_ChanMode_SIGN));
5992 pars.encr := valueof(ts_RSL_IE_EncrInfo(RSL_ALG_ID_A5_1, f_rnd_octstring(8)));
5993 f_testmatrix_each_chan(pars, refers(f_TC_encr_cmd));
5994}
5995testcase TC_encr_cmd_a52() runs on test_CT {
5996 var ConnHdlrPars pars := valueof(t_Pars(t_RslChanNr_Bm(1), ts_RSL_ChanMode_SIGN));
5997 pars.encr := valueof(ts_RSL_IE_EncrInfo(RSL_ALG_ID_A5_2, f_rnd_octstring(8)));
5998 f_testmatrix_each_chan(pars, refers(f_TC_encr_cmd));
5999}
6000testcase TC_encr_cmd_a53() runs on test_CT {
6001 var ConnHdlrPars pars := valueof(t_Pars(t_RslChanNr_Bm(1), ts_RSL_ChanMode_SIGN));
6002 pars.encr := valueof(ts_RSL_IE_EncrInfo(RSL_ALG_ID_A5_3, f_rnd_octstring(8)));
6003 f_testmatrix_each_chan(pars, refers(f_TC_encr_cmd));
6004}
6005
6006private function f_assert_lapdm(octetstring enc, template LapdmFrame exp_match, charstring name := "") {
6007 var LapdmFrame lf;
6008 var octetstring reenc;
6009
6010 /* decode the LAPDm frame */
6011 if (ischosen(exp_match.ab)) {
6012 lf.ab := dec_LapdmFrameAB(enc);
6013 } else {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02006014 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "unsupported frame type");
Harald Weltee613f962018-04-18 22:38:16 +02006015 }
6016
6017 /* check if decoder result matches expectation */
6018 if (not match(lf, exp_match)) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02006019 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, log2str(name, ": decoded LAPDm doesn't match"));
Harald Weltee613f962018-04-18 22:38:16 +02006020 } else {
6021 log(name, ": matched");
6022 setverdict(pass);
6023 }
6024
6025 /* test if re-encoded frame equals original input */
6026 reenc := enc_LapdmFrame(lf);
6027 if (enc != reenc) {
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02006028 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, log2str(name, ": re-encoded LAPDm frame doesn't match"));
Harald Weltee613f962018-04-18 22:38:16 +02006029 } else {
6030 setverdict(pass);
6031 }
6032}
6033
6034testcase TC_lapdm_selftest() runs on test_CT {
6035 f_assert_lapdm('030301'O, tr_LAPDm_UI(0, true, ''O), "ui_s0_empty");
6036 f_assert_lapdm('0F0301'O, tr_LAPDm_UI(3, true, ''O), "ui_s3_empty");
6037 f_assert_lapdm('013F01'O, tr_LAPDm_SABM(0, false, true, ''O), "sabm_s0_empty");
6038 f_assert_lapdm('013F1123420815'O, tr_LAPDm_SABM(0, false, true, '23420815'O), "sabm_s0_l3");
6039 f_assert_lapdm('03E101'O, tr_LAPDm_RR(0, true, false, 7), "rr_s0_7");
6040 f_assert_lapdm('03000d063505'O, tr_LAPDm_I(0, true, false, 0, 0, '063505'O), "I/0/0");
6041 f_assert_lapdm('03e00d063505'O, tr_LAPDm_I(0, true, false, 7, 0, '063505'O), "I/7/0");
6042}
6043
Stefan Sperling4880be42018-08-07 18:12:59 +02006044/***********************************************************************
6045 * DTX Related (see GSM 05.08, section 8.3)
6046 ***********************************************************************/
6047
6048/* XXX These functions must be kept in sync with g_AllChannels defined on test_CT. */
6049function f_g_chan_is_tchf() runs on ConnHdlr return boolean {
6050 return (g_chan_nr == valueof(ts_RslChanNr_Bm(1)) or
6051 g_chan_nr == valueof(ts_RslChanNr_Bm(2)) or
6052 g_chan_nr == valueof(ts_RslChanNr_Bm(3)) or
6053 g_chan_nr == valueof(ts_RslChanNr_Bm(4)));
6054}
6055function f_g_chan_is_tchh() runs on ConnHdlr return boolean {
6056 return (g_chan_nr == valueof(ts_RslChanNr_Lm(5,0)) or
6057 g_chan_nr == valueof(ts_RslChanNr_Lm(5,1)));
6058}
6059function f_g_chan_is_sdcch4() runs on ConnHdlr return boolean {
6060 return (g_chan_nr == valueof(ts_RslChanNr_SDCCH4(0,0)) or
6061 g_chan_nr == valueof(ts_RslChanNr_SDCCH4(0,1)) or
6062 g_chan_nr == valueof(ts_RslChanNr_SDCCH4(0,2)) or
6063 g_chan_nr == valueof(ts_RslChanNr_SDCCH4(0,3)));
6064}
6065function f_g_chan_is_sdcch8() runs on ConnHdlr return boolean {
6066 return (g_chan_nr == valueof(ts_RslChanNr_SDCCH8(6,0)) or
6067 g_chan_nr == valueof(ts_RslChanNr_SDCCH8(6,1)) or
6068 g_chan_nr == valueof(ts_RslChanNr_SDCCH8(6,2)) or
6069 g_chan_nr == valueof(ts_RslChanNr_SDCCH8(6,3)) or
6070 g_chan_nr == valueof(ts_RslChanNr_SDCCH8(6,4)) or
6071 g_chan_nr == valueof(ts_RslChanNr_SDCCH8(6,5)) or
6072 g_chan_nr == valueof(ts_RslChanNr_SDCCH8(6,6)) or
6073 g_chan_nr == valueof(ts_RslChanNr_SDCCH8(6,7)));
6074}
6075
6076function f_test_l2_fill_frames(boolean dtxd) runs on ConnHdlr {
6077 var L1ctlDlMessage dl;
6078 var octetstring l2_fill_frame := '0303012B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B'O;
6079 var octetstring l2_fill_frame_sacch := substr(l2_fill_frame, 0, lengthof(l2_fill_frame) - 2);
6080 var GsmFrameNumber first_fn;
6081 var boolean is_first_frame := true;
Stefan Sperling91d4c9d2018-08-09 20:03:08 +02006082 var integer nfill_frames_sacch := 0;
6083 var integer nfill_frames_nonsacch := 0;
6084 var integer expected_fill_frames := 10000; /* initial value causes test failure if not overridden */
Stefan Sperling4880be42018-08-07 18:12:59 +02006085 /* Frames numbers (mod 104) for which a fill frame is expected on TCHF if DTX is enabled. */
6086 var Integers required_tdma_frames_dtx_tchf := { 52, 53, 54, 55, 56, 57, 58, 59 };
Stefan Sperling91d4c9d2018-08-09 20:03:08 +02006087 const integer frame_dtx_tchf_mod := 104;
6088 /* Frame numbers (mod 104) for which a fill frame is expected at the L1SAP level,
6089 * which operates in terms of blocks rather than frames. */
6090 var Integers required_tdma_blocks_dtx_tchf := { 52, 56 };
6091 const integer block_dtx_tchf_mod := 26;
Stefan Sperling4880be42018-08-07 18:12:59 +02006092 timer T := 5.0;
6093
6094 f_l1_tune(L1CTL);
6095 RSL.clear;
6096 L1CTL.clear;
6097
6098 /* activate TCHF signalling channel */
6099 f_est_dchan(false);
6100
6101 T.start;
6102 alt {
6103 [] L1CTL.receive(tr_L1CTL_DATA_IND(g_chan_nr, ?)) -> value dl {
6104 var GsmFrameNumber fn := dl.dl_info.frame_nr;
6105 var octetstring l2 := dl.payload.data_ind.payload;
6106
6107 if (is_first_frame) {
6108 is_first_frame := false;
6109 first_fn := dl.dl_info.frame_nr;
6110 }
6111
6112 if (dl.dl_info.link_id.c == SACCH) {
6113 l2 := substr(l2, 2, lengthof(l2) - 2); /* remove L1 header */
6114 if (not match(l2_fill_frame_sacch, l2)) {
6115 repeat;
6116 }
6117 } else if (not match(l2_fill_frame, l2)) {
6118 repeat;
6119 }
6120
6121 if (dtxd) {
6122 if (not f_g_chan_is_tchf()) {
6123 T.stop;
6124 f_rsl_chan_deact();
6125 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02006126 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Received fill frame on non-TCH/F channel; DTX is only allowed on TCH/F!");
Stefan Sperling4880be42018-08-07 18:12:59 +02006127 }
Stefan Sperling91d4c9d2018-08-09 20:03:08 +02006128 if (fn > first_fn + frame_dtx_tchf_mod) {
Stefan Sperling4880be42018-08-07 18:12:59 +02006129 T.stop;
6130 f_rsl_chan_deact();
6131 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
Stefan Sperling91d4c9d2018-08-09 20:03:08 +02006132
6133 /* With DTX enabled we can expect at least 3 fill frames for every 104 frames.
6134 * 2 SACCH, 1 TCH/F */
6135 expected_fill_frames := 3;
6136
6137 if (nfill_frames_sacch + nfill_frames_nonsacch < expected_fill_frames) {
6138 log("received only ", nfill_frames_sacch, "+", nfill_frames_nonsacch,
6139 " (SACCH+other) out of ", expected_fill_frames, " expected fill frames");
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02006140 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Not enough fill frames received");
Stefan Sperling4880be42018-08-07 18:12:59 +02006141 } else {
6142 setverdict(pass);
6143 }
Stefan Sperling91d4c9d2018-08-09 20:03:08 +02006144 } else {
6145 if (dl.dl_info.link_id.c == SACCH) {
6146 nfill_frames_sacch := nfill_frames_sacch + 1;
Stefan Sperling4880be42018-08-07 18:12:59 +02006147 repeat;
6148 }
Stefan Sperling91d4c9d2018-08-09 20:03:08 +02006149 /* On DTX TCH/F channels, fill frames occur only for specific frame numbers mod 104.
6150 * Furthermore, the L1SAP layer gives us frame numbers for the start of a block so
6151 * we should only see the subset of frames numbers which correspond to a block boundary.
6152 * TCH/F blocks are defined to start at 0,4,8,13,17,21 (modulo 26) */
6153 for (var integer i := 0; i < lengthof(required_tdma_blocks_dtx_tchf); i := i + 1) {
6154 if (fn mod frame_dtx_tchf_mod == required_tdma_blocks_dtx_tchf[i]) {
6155 nfill_frames_nonsacch := nfill_frames_nonsacch + 1;
6156 repeat;
6157 }
6158 }
6159 log("Received DTX TCH fill frame with bad frame number: ", fn,
6160 " (mod ", frame_dtx_tchf_mod, ": ", fn mod frame_dtx_tchf_mod, ")",
6161 " (mod ", block_dtx_tchf_mod, ": ", fn mod block_dtx_tchf_mod, ")");
6162 f_rsl_chan_deact();
6163 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02006164 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Unexpected L2 fill frame received on Um");
Stefan Sperling4880be42018-08-07 18:12:59 +02006165 }
Stefan Sperling4880be42018-08-07 18:12:59 +02006166 } else {
Stefan Sperling91d4c9d2018-08-09 20:03:08 +02006167 if (dl.dl_info.link_id.c == SACCH) {
6168 nfill_frames_sacch := nfill_frames_sacch + 1;
6169 } else {
6170 nfill_frames_nonsacch := nfill_frames_nonsacch + 1;
6171 }
6172 if (fn > first_fn + frame_dtx_tchf_mod) {
Stefan Sperling4880be42018-08-07 18:12:59 +02006173 T.stop;
6174 if (f_g_chan_is_tchf()) {
6175 /* Without DTX we can expect 25 fill frames for every 104 frames.
6176 * (24 FACCH + 1 SACCH filling) */
6177 expected_fill_frames := 25;
6178 } else if (f_g_chan_is_tchh()) {
6179 /* We can expect 2 fill frames for every 104 frames. */
6180 expected_fill_frames := 2;
6181 } else if (f_g_chan_is_sdcch4() or f_g_chan_is_sdcch8()) {
6182 /* We can expect 5 fill frames for every 104 frames. */
6183 expected_fill_frames := 5;
6184 } else {
6185 f_rsl_chan_deact();
6186 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02006187 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Unknown channel type");
Stefan Sperling4880be42018-08-07 18:12:59 +02006188 }
6189
6190 f_rsl_chan_deact();
6191 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
Stefan Sperling91d4c9d2018-08-09 20:03:08 +02006192
6193 if (nfill_frames_sacch + nfill_frames_nonsacch >= expected_fill_frames) {
Stefan Sperling4880be42018-08-07 18:12:59 +02006194 setverdict(pass);
6195 } else {
Stefan Sperling91d4c9d2018-08-09 20:03:08 +02006196 log("received only ", nfill_frames_sacch, "+", nfill_frames_nonsacch,
6197 " (SACCH+other) out of ", expected_fill_frames, " expected fill frames");
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02006198 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Not enough fill frames received");
Stefan Sperling4880be42018-08-07 18:12:59 +02006199 }
6200 } else {
6201 repeat;
6202 }
6203 }
6204 }
6205 [] L1CTL.receive { repeat; }
6206 [] T.timeout {
6207 f_rsl_chan_deact();
6208 f_L1CTL_DM_REL_REQ(L1CTL, g_chan_nr);
Daniel Willmann0fcc4d32018-10-23 20:32:19 +02006209 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for L2 fill frames on Um");
Stefan Sperling4880be42018-08-07 18:12:59 +02006210 }
6211 }
6212}
6213
6214function f_TC_tch_sign_l2_fill_frame(charstring id) runs on ConnHdlr {
6215 f_test_l2_fill_frames(false);
6216}
6217
6218function f_TC_tch_sign_l2_fill_frame_dtxd(charstring id) runs on ConnHdlr {
6219 f_test_l2_fill_frames(true);
6220}
6221
6222function f_tch_sign_l2_fill_frame(boolean dtxd) runs on test_CT {
6223 var ConnHdlr vc_conn;
6224 var ConnHdlrPars pars;
6225 pars.t_guard := 60.0;
Harald Welte10474062019-05-30 16:48:17 +02006226 f_init();
Stefan Sperling4880be42018-08-07 18:12:59 +02006227 for (var integer i := 0; i < sizeof(g_AllChannels); i := i + 1) {
6228 pars := valueof(t_Pars(g_AllChannels[i], ts_RSL_ChanMode_SIGN(dtxd)));
6229 if (dtxd) {
6230 if (i >= 4) { /* DTX is only allowed on TCH/F */
6231 break;
6232 }
6233 vc_conn := f_start_handler(refers(f_TC_tch_sign_l2_fill_frame_dtxd), pars);
6234 } else {
6235 vc_conn := f_start_handler(refers(f_TC_tch_sign_l2_fill_frame), pars);
6236 }
6237 vc_conn.done;
6238 }
6239}
6240
6241/* Verify that L2 fill frames are sent on TCH in signaling mode if
6242 * there is nothing to transmit while DTX is disabled on downlink. */
6243testcase TC_tch_sign_l2_fill_frame() runs on test_CT {
6244 f_tch_sign_l2_fill_frame(false);
6245}
6246
6247/* Verify that particular L2 fill frames are sent on TCH in signaling mode if
6248 * there is nothing to transmit while DTX is enabled on downlink. */
6249testcase TC_tch_sign_l2_fill_frame_dtxd() runs on test_CT {
6250 f_tch_sign_l2_fill_frame(true);
6251}
Harald Welte0472ab42018-03-12 15:02:26 +01006252
Stefan Sperling0ec1c262018-10-15 15:12:52 +02006253testcase TC_chopped_ipa_ping() runs on test_CT {
6254 IPA_Testing.f_run_TC_chopped_ipa_ping(mp_rsl_ip, mp_rsl_port, LISTEN_FOR_CLIENT);
6255}
6256
Stefan Sperlingaa1e60f2018-10-15 16:34:07 +02006257testcase TC_chopped_ipa_payload() runs on test_CT {
6258 IPA_Testing.f_run_TC_chopped_ipa_payload(mp_rsl_ip, mp_rsl_port, LISTEN_FOR_CLIENT);
6259}
6260
Harald Welte0472ab42018-03-12 15:02:26 +01006261/* test generation of RLL ERR IND based on Um errors (TS 48.058 3.9) */
6262/* protocol error as per 44.006 */
6263/* link layer failure (repetition of I-frame N200 times without ACK */
6264/* repetition of SABM or DISC N200 times without ACK */
6265/* receptiom of SABM in multi-frame established state */
6266
6267
Harald Welte68e495b2018-02-25 00:05:57 +01006268/* TODO Areas:
6269
6270* channel activation
6271** with BS_Power / MS_Power, bypassing power control loop
6272** on primary vs. secondary TRX
Harald Welte68e495b2018-02-25 00:05:57 +01006273** with timing advance from initial activation on
6274* mode modify
6275** encryption
6276** multirate
6277* check DEACTIVATE SACCH
Harald Welte68e495b2018-02-25 00:05:57 +01006278** unsupported algorithm
6279* handover detection
Harald Welte68e495b2018-02-25 00:05:57 +01006280* BS Power Control
6281* Physical Context
Harald Welte68e495b2018-02-25 00:05:57 +01006282* RF resource ind
Harald Welte68e495b2018-02-25 00:05:57 +01006283* error handling
Harald Welte68e495b2018-02-25 00:05:57 +01006284** IE duplicated?
Harald Welte883340c2018-02-28 18:59:29 +01006285* PCU interface
Harald Welte883340c2018-02-28 18:59:29 +01006286** DATA_IND from BTS->PCU
6287** verification of PCU-originated DATA_REQ arrival on Um/MS side
Harald Welte68e495b2018-02-25 00:05:57 +01006288
6289*/
Harald Welte70767382018-02-21 12:16:40 +01006290
6291control {
6292 execute( TC_chan_act_stress() );
6293 execute( TC_chan_act_react() );
6294 execute( TC_chan_deact_not_active() );
6295 execute( TC_chan_act_wrong_nr() );
Harald Welte629cc6b2018-03-11 17:19:05 +01006296 execute( TC_deact_sacch() );
Harald Welteea17b912018-03-11 22:29:31 +01006297 execute( TC_sacch_filling() );
6298 execute( TC_sacch_info_mod() );
Harald Welte075d84c2018-03-12 13:07:24 +01006299 execute( TC_sacch_multi() );
Harald Welte55700662018-03-12 13:15:43 +01006300 execute( TC_sacch_multi_chg() );
Harald Weltec8d363c2019-05-19 20:36:48 +02006301 execute( TC_sacch_chan_act() );
Harald Welte8b01c792019-05-19 22:51:25 +02006302 execute( TC_sacch_chan_act_ho_async() );
6303 execute( TC_sacch_chan_act_ho_sync() );
Harald Welte8c24c2b2018-02-26 08:31:31 +01006304 execute( TC_rach_content() );
6305 execute( TC_rach_count() );
Harald Welte54a2a2d2018-02-26 09:14:05 +01006306 execute( TC_rach_max_ta() );
Vadim Yanitskiy7c2c10c2019-05-31 20:42:01 +07006307 execute( TC_ho_rach() );
Harald Welte3453ab42019-05-24 21:19:58 +02006308 execute( TC_rach_load_idle_thresh0() );
6309 execute( TC_rach_load_idle_below_thresh() );
6310 execute( TC_rach_load_count() );
Harald Welte70767382018-02-21 12:16:40 +01006311 execute( TC_meas_res_sign_tchf() );
6312 execute( TC_meas_res_sign_tchh() );
6313 execute( TC_meas_res_sign_sdcch4() );
6314 execute( TC_meas_res_sign_sdcch8() );
Harald Welte685d5982018-02-27 20:42:05 +01006315 execute( TC_meas_res_sign_tchh_toa256() );
Eric Wildae8f2622019-06-18 17:05:11 +02006316 execute( TC_rsl_bs_pwr_static_ass() );
6317 execute( TC_rsl_bs_pwr_static_power_control() );
Philipp Maier4d1e9c92018-12-20 11:11:56 +01006318 execute( TC_rsl_ms_pwr_ctrl() );
Eric Wild280ccb82019-06-17 11:11:52 +02006319 execute( TC_rsl_ms_pwr_dyn_active() );
Eric Wild095024b2019-06-17 15:08:57 +02006320 execute( TC_rsl_ms_pwr_dyn_active2() );
Eric Wild61edb7e2019-06-03 12:38:31 +02006321 execute( TC_rsl_ms_pwr_dyn_up() );
6322 execute( TC_rsl_ms_pwr_dyn_down() );
6323 execute( TC_rsl_ms_pwr_dyn_ass_updown() );
6324 execute( TC_rsl_ms_pwr_dyn_max() );
Eric Wilde57e1a62019-05-28 13:30:55 +02006325 execute( TC_rsl_chan_initial_ms_pwr() );
Eric Wild6833cc92019-05-23 19:34:44 +02006326 execute( TC_rsl_chan_initial_ta() );
Eric Wildf1827a72019-05-28 17:37:35 +02006327 execute( TC_rsl_modify_encr() );
Harald Welte70767382018-02-21 12:16:40 +01006328 execute( TC_conn_fail_crit() );
Harald Welte68e495b2018-02-25 00:05:57 +01006329 execute( TC_paging_imsi_80percent() );
6330 execute( TC_paging_tmsi_80percent() );
6331 execute( TC_paging_imsi_200percent() );
6332 execute( TC_paging_tmsi_200percent() );
Harald Welte01d982c2018-02-25 01:31:40 +01006333 execute( TC_rsl_protocol_error() );
6334 execute( TC_rsl_mand_ie_error() );
6335 execute( TC_rsl_ie_content_error() );
Harald Welte48494ca2018-02-25 16:59:50 +01006336 execute( TC_si_sched_default() );
Harald Welte0cae4552018-03-09 22:20:26 +01006337 execute( TC_si_sched_1() );
Harald Welte48494ca2018-02-25 16:59:50 +01006338 execute( TC_si_sched_2bis() );
6339 execute( TC_si_sched_2ter() );
6340 execute( TC_si_sched_2ter_2bis() );
6341 execute( TC_si_sched_2quater() );
6342 execute( TC_si_sched_13() );
6343 execute( TC_si_sched_13_2bis_2ter_2quater() );
Harald Weltea871a382018-02-25 02:03:14 +01006344 execute( TC_ipa_dlcx_not_active() );
Harald Weltea3f1df92018-02-25 12:49:55 +01006345 execute( TC_ipa_crcx_twice_not_active() );
6346 execute( TC_ipa_crcx_mdcx_dlcx_not_active() );
Harald Welte3ae11da2018-02-25 13:36:06 +01006347 execute( TC_ipa_crcx_mdcx_mdcx_dlcx_not_active() );
Harald Welte9912eb52018-02-25 13:30:15 +01006348 execute( TC_ipa_crcx_sdcch_not_active() );
Harald Welte883340c2018-02-28 18:59:29 +01006349
Pau Espin Pedrola14a8af2018-11-20 13:12:22 +01006350 if (mp_pcu_socket != "") {
6351 execute( TC_pcu_act_req() );
6352 execute( TC_pcu_act_req_wrong_ts() );
6353 execute( TC_pcu_act_req_wrong_bts() );
6354 execute( TC_pcu_act_req_wrong_trx() );
6355 execute( TC_pcu_deact_req() );
6356 execute( TC_pcu_deact_req_wrong_ts() );
6357 execute( TC_pcu_ver_si13() );
Harald Weltead033dc2019-05-25 17:28:16 +02006358 if (mp_l1_supports_gprs) {
6359 execute( TC_pcu_data_req_pdtch() );
6360 execute( TC_pcu_data_req_ptcch() );
Harald Welte7162a612019-05-26 12:56:09 +02006361 execute( TC_pcu_data_req_wrong_bts() );
6362 execute( TC_pcu_data_req_wrong_trx() );
6363 execute( TC_pcu_data_req_wrong_ts() );
6364 execute( TC_pcu_data_req_ts_inactive() );
Harald Weltead033dc2019-05-25 17:28:16 +02006365 }
Vadim Yanitskiy970b1532019-10-24 15:22:19 +07006366 execute( TC_pcu_ptcch() );
Pau Espin Pedrola14a8af2018-11-20 13:12:22 +01006367 execute( TC_pcu_data_req_agch() );
Harald Welte928622b2019-05-26 13:22:59 +02006368 execute( TC_pcu_data_req_pch() );
Pau Espin Pedrola14a8af2018-11-20 13:12:22 +01006369 execute( TC_pcu_data_req_imm_ass_pch() );
6370 execute( TC_pcu_rach_content() );
Vadim Yanitskiy51cbc102019-04-22 06:37:30 +07006371 execute( TC_pcu_ext_rach_content() );
Vadim Yanitskiya2c68e82019-07-03 13:07:20 +07006372 execute( TC_pcu_data_ind_lqual_cb() );
Pau Espin Pedrola14a8af2018-11-20 13:12:22 +01006373 execute( TC_pcu_paging_from_rsl() );
Harald Welted66c9b82019-05-25 09:03:15 +02006374 execute( TC_pcu_time_ind() );
Harald Welte4832c862019-05-25 14:57:18 +02006375 execute( TC_pcu_rts_req() );
Harald Welte07bd2d22019-05-25 11:03:30 +02006376 execute( TC_pcu_oml_alert() );
Harald Welteeaa9a862019-05-26 23:01:08 +02006377 execute( TC_pcu_rr_suspend() );
Harald Weltea2e0e942019-05-27 18:12:53 +02006378 execute( TC_pcu_socket_connect_multi() );
Harald Weltec8effb72019-05-27 18:23:04 +02006379 execute( TC_pcu_socket_reconnect() );
Harald Weltebe030482019-05-27 22:29:35 +02006380 execute( TC_pcu_socket_noconnect_nosi3gprs() );
6381 execute( TC_pcu_socket_connect_si3gprs() );
6382 execute( TC_pcu_socket_disconnect_nosi3gprs() );
Oliver Smithf5239c72019-08-28 10:01:25 +02006383 execute( TC_pcu_socket_verify_info_ind() );
Pau Espin Pedrola14a8af2018-11-20 13:12:22 +01006384 } else {
6385 log("PCU socket path not available, skipping PCU tests");
6386 }
Harald Welte3d04ae62018-04-04 20:29:05 +02006387
6388 execute( TC_dyn_osmo_pdch_act_deact() );
6389 execute( TC_dyn_osmo_pdch_unsol_deact() );
6390 execute( TC_dyn_osmo_pdch_double_act() );
6391 execute( TC_dyn_osmo_pdch_tchf_act() );
6392 execute( TC_dyn_osmo_pdch_tchh_act() );
Harald Welte9bbbfb52018-04-05 09:33:19 +02006393 execute( TC_dyn_ipa_pdch_act_deact() );
6394 execute( TC_dyn_ipa_pdch_tchf_act() );
6395 execute( TC_dyn_ipa_pdch_tchf_act_pdch_act_nack() );
6396 execute( TC_dyn_ipa_pdch_act_tchf_act_nack() );
Harald Welte0472ab42018-03-12 15:02:26 +01006397
6398 execute( TC_rll_est_ind() );
6399 execute( TC_rll_est_req_DCCH_3() );
6400 execute( TC_rll_est_req_ACCH_3() );
6401 execute( TC_rll_rel_ind_DCCH_0() );
6402 execute( TC_rll_rel_ind_DCCH_3() );
6403 execute( TC_rll_rel_ind_ACCH_0() );
6404 execute( TC_rll_rel_ind_ACCH_3() );
6405 execute( TC_rll_rel_req() );
6406 execute( TC_rll_unit_data_req_DCCH() );
6407 execute( TC_rll_unit_data_req_ACCH() );
6408 execute( TC_rll_unit_data_ind_DCCH() );
6409 execute( TC_rll_unit_data_ind_ACCH() );
Harald Weltee613f962018-04-18 22:38:16 +02006410
6411 execute( TC_chan_act_a51() );
6412 execute( TC_chan_act_a52() );
6413 execute( TC_chan_act_a53() );
6414 execute( TC_encr_cmd_a51() );
6415 execute( TC_encr_cmd_a52() );
6416 execute( TC_encr_cmd_a53() );
6417
Harald Welteee25aae2019-05-19 14:32:37 +02006418 execute( TC_err_rep_wrong_mdisc() );
6419 execute( TC_err_rep_wrong_msg_type() );
6420 execute( TC_err_rep_wrong_sequence() );
6421
Harald Weltee613f962018-04-18 22:38:16 +02006422 execute( TC_lapdm_selftest() );
Stefan Sperling4880be42018-08-07 18:12:59 +02006423
6424 execute( TC_tch_sign_l2_fill_frame() );
6425 execute( TC_tch_sign_l2_fill_frame_dtxd() );
Stefan Sperling0ec1c262018-10-15 15:12:52 +02006426
6427 execute( TC_chopped_ipa_ping() );
Stefan Sperlingaa1e60f2018-10-15 16:34:07 +02006428 execute( TC_chopped_ipa_payload() );
Harald Welte70767382018-02-21 12:16:40 +01006429}
6430
6431
6432}