blob: cc387f64729f9fc9412dcd038dba80a723af0945 [file] [log] [blame]
Harald Welte28d943e2017-11-25 15:00:50 +01001module BSC_Tests {
2
Harald Welte21b46bd2017-12-17 19:46:32 +01003/* Integration Tests for OsmoBSC
Harald Weltea0630032018-03-20 21:09:55 +01004 * (C) 2017-2018 by Harald Welte <laforge@gnumonks.org>
Harald Welte21b46bd2017-12-17 19:46:32 +01005 * All rights reserved.
6 *
7 * Released under the terms of GNU General Public License, Version 2 or
8 * (at your option) any later version.
9 *
Harald Welte34b5a952019-05-27 11:54:11 +020010 * SPDX-License-Identifier: GPL-2.0-or-later
11 *
Harald Welte21b46bd2017-12-17 19:46:32 +010012 * This test suite tests OsmoBSC while emulating both multiple BTS + MS as
13 * well as the MSC. See README for more details.
14 *
15 * There are test cases that run in so-called 'handler mode' and test cases
16 * that run directly on top of the BSSAP and RSL CodecPorts. The "handler mode"
17 * tests abstract the multiplexing/demultiplexing of multiple SCCP connections
18 * and/or RSL channels and are hence suitable for higher-level test cases, while
19 * the "raw" tests directly on top of the CodecPorts are more suitable for lower-
20 * level testing.
21 */
22
Neels Hofmeyr9f3e6ac2021-04-08 23:09:24 +020023friend module BSC_Tests_VAMOS;
24
Neels Hofmeyr4f118412020-06-04 15:25:10 +020025import from Misc_Helpers all;
Harald Welte4003d112017-12-09 22:35:39 +010026import from General_Types all;
Harald Welte28d943e2017-11-25 15:00:50 +010027import from Osmocom_Types all;
Harald Welteae026692017-12-09 01:03:01 +010028import from GSM_Types all;
Harald Welte28d943e2017-11-25 15:00:50 +010029import from IPL4asp_Types all;
30
Harald Welte6f521d82017-12-11 19:52:02 +010031import from BSSAP_Types all;
Harald Welte6811d102019-04-14 22:23:14 +020032import from RAN_Adapter all;
Harald Welte47cd0e32020-08-21 12:39:11 +020033import from BSSAP_LE_Adapter all;
34import from BSSAP_LE_CodecPort all;
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +020035import from BSSAP_LE_Types all;
36import from BSSLAP_Types all;
Harald Welteae026692017-12-09 01:03:01 +010037import from BSSAP_CodecPort all;
38import from BSSMAP_Templates all;
Harald Welte28d943e2017-11-25 15:00:50 +010039import from IPA_Emulation all;
Stefan Sperling830dc9d2018-02-12 21:08:28 +010040import from IPA_CodecPort all;
Harald Welteae026692017-12-09 01:03:01 +010041import from IPA_Types all;
Stefan Sperling0796a822018-10-05 13:01:39 +020042import from IPA_Testing all;
Harald Welteae026692017-12-09 01:03:01 +010043import from RSL_Types all;
Harald Welte624f9632017-12-16 19:26:04 +010044import from RSL_Emulation all;
Daniel Willmann191e0d92018-01-17 12:44:35 +010045import from MGCP_Emulation all;
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +010046import from MGCP_Templates all;
47import from MGCP_Types all;
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +020048import from MGCP_CodecPort all;
Harald Welte28d943e2017-11-25 15:00:50 +010049
Harald Welte96c94412017-12-09 03:12:45 +010050import from Osmocom_CTRL_Functions all;
Harald Weltea5d2ab22017-12-09 14:21:42 +010051import from Osmocom_CTRL_Types all;
Harald Welteffe55fc2018-01-17 22:39:54 +010052import from Osmocom_CTRL_Adapter all;
Harald Welte96c94412017-12-09 03:12:45 +010053
Daniel Willmannebdecc02020-08-12 15:30:17 +020054import from StatsD_Types all;
55import from StatsD_CodecPort all;
56import from StatsD_CodecPort_CtrlFunct all;
57import from StatsD_Checker all;
58
Harald Weltebc03c762018-02-12 18:09:38 +010059import from Osmocom_VTY_Functions all;
60import from TELNETasp_PortType all;
61
Harald Welte6f521d82017-12-11 19:52:02 +010062import from MobileL3_CommonIE_Types all;
Harald Weltee3bd6582018-01-31 22:51:25 +010063import from MobileL3_Types all;
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +010064import from MobileL3_RRM_Types all;
Harald Welte6f521d82017-12-11 19:52:02 +010065import from L3_Templates all;
66import from GSM_RR_Types all;
67
Stefan Sperlingc307e682018-06-14 15:15:46 +020068import from SCCP_Templates all;
Neels Hofmeyr4ff93282018-03-12 04:25:35 +010069import from BSSMAP_Templates all;
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +020070import from BSSMAP_LE_Templates all;
Neels Hofmeyr4ff93282018-03-12 04:25:35 +010071
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +010072import from SCCPasp_Types all;
73
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +020074import from GSM_SystemInformation all;
75import from GSM_RestOctets all;
Neels Hofmeyrad132f22020-07-08 02:20:16 +020076import from TCCConversion_Functions all;
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +020077
Neels Hofmeyrbf720202021-10-02 12:58:24 +020078type record of integer integer_list;
79
Harald Welte5d1a2202017-12-13 19:51:29 +010080const integer NUM_BTS := 3;
Neels Hofmeyr5ce3ae42021-08-29 15:32:00 +020081const integer NUM_BTS_CFG := 4; /* we have 4 BTS in the osmo-bsc.cfg (for inter-BSC HO tests) but use only 3 */
Neels Hofmeyrf246a922020-05-13 02:27:10 +020082const integer NUM_MSC := 3;
Harald Welteae026692017-12-09 01:03:01 +010083const float T3101_MAX := 12.0;
Harald Welte28d943e2017-11-25 15:00:50 +010084
Harald Welte799c97b2017-12-14 17:50:30 +010085/* make sure to sync this with the osmo-bts.cfg you're using */
Philipp Maiercb6cc482018-03-26 13:08:00 +020086const integer NUM_TCHH_PER_BTS := 2;
87const integer NUM_TCHF_PER_BTS := 4;
Neels Hofmeyr74083c22020-07-29 00:43:01 +020088const integer NUM_SDCCH_PER_BTS := 3;
Harald Welte799c97b2017-12-14 17:50:30 +010089
Neels Hofmeyrbf720202021-10-02 12:58:24 +020090/* Default Training Sequence Code expected for bts[i]:
91 * BTS 0 has BSIC 10 (and no explicit timeslot training_sequence_code config), so expecting TSC = (BSIC & 7) = 2.
92 * BTS 1 has BSIC 11, TSC = (BSIC & 7) = 3.
93 * BTS 2 has BSIC 12, TSC = (BSIC & 7) = 4.
94 * BTS 2 has BSIC 12, TSC = (BSIC & 7) = 4.
95 */
96const integer_list BTS_TSC := {
97 2,
98 3,
99 4,
100 4
101}
Harald Welte4003d112017-12-09 22:35:39 +0100102
Harald Welte21b46bd2017-12-17 19:46:32 +0100103/* per-BTS state which we keep */
Harald Welte96c94412017-12-09 03:12:45 +0100104type record BTS_State {
Harald Welte21b46bd2017-12-17 19:46:32 +0100105 /* component reference to the IPA_Client component used for RSL */
Harald Weltea5d2ab22017-12-09 14:21:42 +0100106 IPA_Client rsl
Harald Welte96c94412017-12-09 03:12:45 +0100107}
108
Neels Hofmeyr22c3f792020-06-17 02:49:28 +0200109/* Default list of counters for an 'msc' entity. */
110const CounterNameVals counternames_msc_mscpool := {
111 { "mscpool:subscr:new", 0 },
112 { "mscpool:subscr:known", 0 },
113 { "mscpool:subscr:reattach", 0 },
114 { "mscpool:subscr:attach_lost", 0 },
115 { "mscpool:subscr:paged", 0 }
116};
117
Neels Hofmeyrbf037052020-10-28 22:52:02 +0000118/* List of global mscpool counters, not related to a specific 'msc' entity. */
119const CounterNameVals counternames_bsc_mscpool := {
120 { "mscpool:subscr:no_msc", 0 }
121};
122
Neels Hofmeyr12941bd2020-08-29 03:21:26 +0000123/* Default list of counters for 'bsc' and 'bts' entities. */
124const CounterNameVals counternames_bsc_bts_handover := {
125 { "assignment:attempted", 0 },
126 { "assignment:completed", 0 },
127 { "assignment:stopped", 0 },
128 { "assignment:no_channel", 0 },
129 { "assignment:timeout", 0 },
130 { "assignment:failed", 0 },
131 { "assignment:error", 0 },
132
133 { "handover:attempted", 0 },
134 { "handover:completed", 0 },
135 { "handover:stopped", 0 },
136 { "handover:no_channel", 0 },
137 { "handover:timeout", 0 },
138 { "handover:failed", 0 },
139 { "handover:error", 0 },
140
141 { "intra_cell_ho:attempted", 0 },
142 { "intra_cell_ho:completed", 0 },
143 { "intra_cell_ho:stopped", 0 },
144 { "intra_cell_ho:no_channel", 0 },
145 { "intra_cell_ho:timeout", 0 },
146 { "intra_cell_ho:failed", 0 },
147 { "intra_cell_ho:error", 0 },
148
149 { "intra_bsc_ho:attempted", 0 },
150 { "intra_bsc_ho:completed", 0 },
151 { "intra_bsc_ho:stopped", 0 },
152 { "intra_bsc_ho:no_channel", 0 },
153 { "intra_bsc_ho:timeout", 0 },
154 { "intra_bsc_ho:failed", 0 },
155 { "intra_bsc_ho:error", 0 },
156
157 { "interbsc_ho_out:attempted", 0 },
158 { "interbsc_ho_out:completed", 0 },
159 { "interbsc_ho_out:stopped", 0 },
160 { "interbsc_ho_out:timeout", 0 },
161 { "interbsc_ho_out:failed", 0 },
162 { "interbsc_ho_out:error", 0 },
163
164 { "interbsc_ho_in:attempted", 0 },
165 { "interbsc_ho_in:completed", 0 },
166 { "interbsc_ho_in:stopped", 0 },
167 { "interbsc_ho_in:no_channel", 0 },
168 { "interbsc_ho_in:timeout", 0 },
169 { "interbsc_ho_in:failed", 0 },
170 { "interbsc_ho_in:error", 0 }
171};
172
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200173/* Set of all System Information received during one RSL port's startup.
174 * Note that some System Information may be sent on RSL, but lacking actual SI data, to indicate that the BTS should not
175 * broadcast that SI type. That will be reflected as 'omit' here.
176 */
177type record SystemInformationConfig {
178 SystemInformationType1 si1 optional,
179 SystemInformationType2 si2 optional,
180 SystemInformationType2bis si2bis optional,
181 SystemInformationType2ter si2ter optional,
Neels Hofmeyrad132f22020-07-08 02:20:16 +0200182 SI2quaterRestOctetsList si2quater optional,
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200183 SystemInformationType3 si3 optional,
184 SystemInformationType4 si4 optional,
Pau Espin Pedrol28652d82021-02-09 20:20:17 +0100185 SystemInformationType13 si13 optional,
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200186 SystemInformationType5 si5 optional,
187 SystemInformationType5bis si5bis optional,
188 SystemInformationType5ter si5ter optional,
189 SystemInformationType6 si6 optional
190};
191
192const SystemInformationConfig SystemInformationConfig_omit := {
193 si1 := omit,
194 si2 := omit,
195 si2bis := omit,
196 si2ter := omit,
197 si2quater := omit,
198 si3 := omit,
199 si4 := omit,
200 si13 := omit,
201 si5 := omit,
202 si5bis := omit,
203 si5ter := omit,
204 si6 := omit
205};
206
207/* tr_EUTRAN_CellDesc with defaults used in BSC_Tests.ttcn */
208template EUTRAN_CellDesc tr_EUTRAN_CellDesc_default(template (present) uint16_t e_arfcn := ?,
209 template uint3_t meas_bw := 3)
210:= tr_EUTRAN_CellDesc(e_arfcn := e_arfcn,
211 meas_bw_presence := '1'B,
212 meas_bw := meas_bw);
213
214/* tr_EUTRAN_NeighbourCells with defaults used in BSC_Tests.ttcn */
Harald Welte65e419a2020-08-21 12:38:33 +0200215template EUTRAN_NeighbourCells tr_EUTRAN_NeighbourCells_default(template (present) EUTRAN_CellDescs cell_desc_list := { tr_EUTRAN_CellDesc_default },
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200216 template uint3_t prio := 3,
217 template (present) uint5_t thresh_high := 20,
218 template uint5_t thresh_low := 10,
219 template uint5_t qrxlevmin := 22)
220:= tr_EUTRAN_NeighbourCells(
221 cell_desc_list := cell_desc_list,
222 prio_presence := '1'B,
223 prio := prio,
224 thresh_high := thresh_high,
225 thresh_low_presence := '1'B,
226 thresh_low := thresh_low,
227 qrxlevmin_presence := '1'B,
228 qrxlevmin := qrxlevmin);
229
230template SystemInformationConfig SystemInformationConfig_default := {
231 si1 := {
232 cell_chan_desc := '8FB38000000000000000000000000000'O,
233 rach_control := {
234 max_retrans := RACH_MAX_RETRANS_7,
235 tx_integer := '1001'B,
236 cell_barr_access := false,
237 re_not_allowed := true,
238 acc := '0000010000000000'B
239 },
240 rest_octets := ?
241 },
242 si2 := {
243 bcch_freq_list := '00000000000000000000000000000000'O,
244 ncc_permitted := '11111111'B,
245 rach_control := {
246 max_retrans := RACH_MAX_RETRANS_7,
247 tx_integer := '1001'B,
248 cell_barr_access := false,
249 re_not_allowed := true,
250 acc := '0000010000000000'B
251 }
252 },
253 si2bis := omit,
254 si2ter := {
255 extd_bcch_freq_list := '8E320000000000000000000000000800'O,
256 rest_octets := ?
257 },
258 si2quater := {
259 tr_SI2quaterRestOctets_EUTRAN( repeated_neigh_cells := { tr_EUTRAN_NeighbourCells_default } )
260 },
261 si3 := {
262 cell_id := 0,
263 lai := {
264 mcc_mnc := '001F01'H,
265 lac := 1
266 },
267 ctrl_chan_desc := {
268 msc_r99 := true,
269 att := true,
270 bs_ag_blks_res := 1,
271 ccch_conf := CCHAN_DESC_1CCCH_COMBINED,
272 si22ind := false,
273 cbq3 := CBQ3_IU_MODE_NOT_SUPPORTED,
274 spare := '00'B,
275 bs_pa_mfrms := 3,
276 t3212 := 30
277 },
278 cell_options := {
279 dn_ind := false,
280 pwrc := false,
281 dtx := MS_SHALL_USE_UL_DTX,
282 radio_link_tout_div4 := 7
283 },
284 cell_sel_par := {
285 cell_resel_hyst_2dB := 2,
286 ms_txpwr_max_cch := 7,
287 acs := '0'B,
288 neci := true,
289 rxlev_access_min := 0
290 },
291 rach_control := {
292 max_retrans := RACH_MAX_RETRANS_7,
293 tx_integer := '1001'B,
294 cell_barr_access := false,
295 re_not_allowed := true,
296 acc := '0000010000000000'B
297 },
298 rest_octets := {
299 sel_params := {
300 presence := '0'B,
301 params := omit
302 },
303 pwr_offset := {
304 presence := '0'B,
305 offset := omit
306 },
307 si_2ter_ind := '1'B,
308 early_cm_ind := '0'B,
309 sched_where := {
310 presence := '0'B,
311 where := omit
312 },
313 gprs_ind := {
314 presence := '1'B,
315 ind := {
316 ra_colour := 0,
317 si13_pos := '0'B
318 }
319 },
320 umts_early_cm_ind := '1'B,
321 si2_quater_ind := {
322 presence := '1'B,
323 ind := '0'B
324 },
325 iu_mode_ind := omit,
326 si21_ind := {
327 presence := '0'B,
328 pos := omit
329 }
330 }
331 },
332 si4 := {
333 lai := {
334 mcc_mnc := '001F01'H,
335 lac := 1
336 },
337 cell_sel_par := {
338 cell_resel_hyst_2dB := 2,
339 ms_txpwr_max_cch := 7,
340 acs := '0'B,
341 neci := true,
342 rxlev_access_min := 0
343 },
344 rach_control := {
345 max_retrans := RACH_MAX_RETRANS_7,
346 tx_integer := '1001'B,
347 cell_barr_access := false,
348 re_not_allowed := true,
349 acc := '0000010000000000'B
350 },
Neels Hofmeyr74083c22020-07-29 00:43:01 +0200351 cbch_chan_desc := {
352 iei := '64'O,
353 v := {
354 chan_nr := {
355 u := {
356 sdcch4 := {
357 tag := '001'B,
358 sub_chan := 2
359 }
360 },
361 tn := 0
362 },
363 tsc := 2,
364 h := false,
365 arfcn := 871,
366 maio_hsn := omit
367 }
368 },
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200369 cbch_mobile_alloc := omit,
370 rest_octets := {
371 sel_params := {
372 presence := '0'B,
373 params := omit
374 },
375 pwr_offset := {
376 presence := '0'B,
377 offset := omit
378 },
379 gprs_ind := {
380 presence := '1'B,
381 ind := {
382 ra_colour := 0,
383 si13_pos := '0'B
384 }
385 },
386 s_presence := '0'B,
387 s := omit
388 }
389 },
Pau Espin Pedrol28652d82021-02-09 20:20:17 +0100390 si13 := {
391 rest_octets := {
392 presence := '1'B,
393 bcch_change_mark := ?,
394 si_change_field := '0000'B,
395 presence2 := '0'B,
396 si13_change_mark := omit,
397 gprs_ma := omit,
398 zero := '0'B, /* PBCCH not present in cell */
399 rac := 0,
400 spgc_ccch_sup := '0'B,
401 priority_access_thr := '110'B,
402 network_control_order := '00'B,
403 gprs_cell_opts := {
404 nmo := '01'B,
405 t3168 := '011'B,
406 t3192 := '010'B,
407 drx_timer_max := '011'B,
408 access_burst_type := '0'B,
409 control_ack_type := '1'B,
410 bs_cv_max := 15,
411 pan_presence := '1'B,
412 pan_dec := 1,
413 pan_inc := 1,
414 pan_max := '111'B,
415 ext_info_presence := ?,
416 ext_info_length := *,
417 ext_info := *
418 },
419 gprs_pwr_ctrl_params := {
420 alpha := 0,
421 t_avg_w := '10000'B,
422 t_avg_t := '10000'B,
423 pc_meas_chan := '0'B,
424 n_avg_i := '1000'B
425 }
426 }
427 },
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200428 si5 := {
429 bcch_freq_list := '10000000000000000000000000000000'O
430 },
431 si5bis := omit,
432 si5ter := {
433 extd_bcch_freq_list := '9E050020000000000000000000000000'O
434 },
435 si6 := {
436 cell_id := 0,
437 lai := {
438 mcc_mnc := '001F01'H,
439 lac := 1
440 },
441 cell_options := {
442 dtx_ext := '1'B,
443 pwrc := false,
444 dtx := '01'B,
445 radio_link_timeout := '0111'B
446 },
447 ncc_permitted := '11111111'B,
448 rest_octets := ?
449 }
450 };
451
452
453/* List of all the System Information received on all RSL ports */
454type record of SystemInformationConfig SystemInformationConfig_list;
455
456function f_sysinfo_dec_raw(inout SystemInformationConfig si, RSL_Message rsl)
457{
458 var RSL_IE_Body sysinfo_type_ie;
459 var RSL_IE_SysinfoType si_type;
460 var octetstring data;
461
462 if (f_rsl_find_ie(rsl, RSL_IE_SYSINFO_TYPE, sysinfo_type_ie) == false) {
463 setverdict(fail, "Cannot find RSL_IE_SYSINFO_TYPE");
464 mtc.stop;
465 }
466 si_type := sysinfo_type_ie.sysinfo_type;
467
468 if (rsl.msg_type == RSL_MT_BCCH_INFO) {
469 var RSL_IE_Body bcch_ie;
470 if (f_rsl_find_ie(rsl, RSL_IE_FULL_BCCH_INFO, bcch_ie)) {
471 data := bcch_ie.other.payload;
472 }
473 } else if (rsl.msg_type == RSL_MT_SACCH_FILL) {
474 var RSL_IE_Body l3_ie;
475 if (f_rsl_find_ie(rsl, RSL_IE_L3_INFO, l3_ie)) {
476 data := l3_ie.l3_info.payload;
477 }
478 } else {
479 setverdict(fail, "Don't understand this System Information message");
480 mtc.stop;
481 }
482
483 var boolean handled := false;
484
485 if (rsl.msg_type == RSL_MT_BCCH_INFO) {
486 handled := true;
487
488 if (si_type == RSL_SYSTEM_INFO_1) {
489 if (not isbound(data)) {
490 si.si1 := omit;
491 } else {
492 si.si1 := dec_SystemInformation(data).payload.si1;
493 }
494 } else if (si_type == RSL_SYSTEM_INFO_2) {
495 if (not isbound(data)) {
496 si.si2 := omit;
497 } else {
498 si.si2 := dec_SystemInformation(data).payload.si2;
499 }
500 } else if (si_type == RSL_SYSTEM_INFO_2bis) {
501 if (not isbound(data)) {
502 si.si2bis := omit;
503 } else {
504 si.si2bis := dec_SystemInformation(data).payload.si2bis;
505 }
506 } else if (si_type == RSL_SYSTEM_INFO_2ter) {
507 if (not isbound(data)) {
508 si.si2ter := omit;
509 } else {
510 si.si2ter := dec_SystemInformation(data).payload.si2ter;
511 }
512 } else if (si_type == RSL_SYSTEM_INFO_2quater) {
513 if (not isbound(data)) {
514 si.si2quater := {};
515 } else {
516 var SystemInformationType2quater decoded := dec_SystemInformation(data).payload.si2quater;
517 /* this is a *record* of SI2quaterRestOctets! (multiplexed) */
518 si.si2quater[decoded.rest_octets.si2quater_index] := decoded.rest_octets;
519 }
520 } else if (si_type == RSL_SYSTEM_INFO_3) {
521 if (not isbound(data)) {
522 si.si3 := omit;
523 } else {
524 si.si3 := dec_SystemInformation(data).payload.si3;
525 }
526 } else if (si_type == RSL_SYSTEM_INFO_4) {
527 if (not isbound(data)) {
528 si.si4 := omit;
529 } else {
530 si.si4 := dec_SystemInformation(data).payload.si4;
531 }
532 } else if (si_type == RSL_SYSTEM_INFO_13) {
533 if (not isbound(data)) {
534 si.si13 := omit;
535 } else {
Pau Espin Pedrol28652d82021-02-09 20:20:17 +0100536 si.si13 := dec_SystemInformation(data).payload.si13;
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200537 }
538 } else {
539 handled := false;
540 }
541 } else if (rsl.msg_type == RSL_MT_SACCH_FILL) {
542 handled := true;
543
544 if (si_type == RSL_SYSTEM_INFO_5) {
545 if (not isbound(data)) {
546 si.si5 := omit;
547 } else {
548 si.si5 := dec_SystemInformation(data).payload.si5;
549 }
550 } else if (si_type == RSL_SYSTEM_INFO_5bis) {
551 if (not isbound(data)) {
552 si.si5bis := omit;
553 } else {
554 si.si5bis := dec_SystemInformation(data).payload.si5bis;
555 }
556 } else if (si_type == RSL_SYSTEM_INFO_5ter) {
557 if (not isbound(data)) {
558 si.si5ter := omit;
559 } else {
560 si.si5ter := dec_SystemInformation(data).payload.si5ter;
561 }
562 } else if (si_type == RSL_SYSTEM_INFO_6) {
563 if (not isbound(data)) {
564 si.si6 := omit;
565 } else {
566 si.si6 := dec_SystemInformation(data).payload.si6;
567 }
568 } else {
569 handled := false;
570 }
571 }
572
573 if (not handled) {
574 setverdict(fail, "Unexpected SI type in ", rsl.msg_type, " message: ", si_type);
575 }
576}
577
Harald Weltea4ca4462018-02-09 00:17:14 +0100578type component test_CT extends CTRL_Adapter_CT {
Harald Welte21b46bd2017-12-17 19:46:32 +0100579 /* Array of per-BTS state */
Harald Welte96c94412017-12-09 03:12:45 +0100580 var BTS_State bts[NUM_BTS];
Harald Welte89ab1912018-02-23 18:56:29 +0100581 /* RSL common Channel Port (for RSL_Emulation) */
582 port RSL_CCHAN_PT RSL_CCHAN[NUM_BTS];
Harald Welte21b46bd2017-12-17 19:46:32 +0100583 /* array of per-BTS RSL test ports */
Harald Welteae026692017-12-09 01:03:01 +0100584 port IPA_RSL_PT IPA_RSL[NUM_BTS];
Stefan Sperling830dc9d2018-02-12 21:08:28 +0100585 port IPA_CODEC_PT IPA; /* Required for compilation of TC_rsl_unknown_unit_id() */
Pau Espin Pedrol5a2d7432019-06-07 19:43:45 +0200586 /* CTRL muxed over IPA in SCCPlite conn BSC<->MSC (or BSC-NAT) */
587 port IPA_CTRL_PT SCCPLITE_IPA_CTRL;
Harald Weltea5d2ab22017-12-09 14:21:42 +0100588
Daniel Willmann191e0d92018-01-17 12:44:35 +0100589 var MGCP_Emulation_CT vc_MGCP;
Harald Weltebc03c762018-02-12 18:09:38 +0100590 port TELNETasp_PT BSCVTY;
Daniel Willmann191e0d92018-01-17 12:44:35 +0100591
Daniel Willmannebdecc02020-08-12 15:30:17 +0200592 /* StatsD */
593 var StatsD_Checker_CT vc_STATSD;
594
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200595 var RAN_Adapter g_bssap[NUM_MSC];
Harald Welte47cd0e32020-08-21 12:39:11 +0200596 var BSSAP_LE_Adapter g_bssap_le;
Harald Weltea4ca4462018-02-09 00:17:14 +0100597 /* for old legacy-tests only */
598 port BSSAP_CODEC_PT BSSAP;
Harald Welte47cd0e32020-08-21 12:39:11 +0200599 port BSSAP_LE_CODEC_PT BSSAP_LE;
Harald Weltea4ca4462018-02-09 00:17:14 +0100600
Harald Welte21b46bd2017-12-17 19:46:32 +0100601 /* are we initialized yet */
Harald Welte28d943e2017-11-25 15:00:50 +0100602 var boolean g_initialized := false;
Harald Welte21b46bd2017-12-17 19:46:32 +0100603
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200604 /* Osmux is enabled through VTY */
605 var boolean g_osmux_enabled := false;
606
Pau Espin Pedrolc675b612020-01-09 19:55:40 +0100607 /*Configure T(tias) over VTY, seconds */
608 var integer g_bsc_sccp_timer_ias := 7 * 60;
609 /*Configure T(tiar) over VTY, seconds */
610 var integer g_bsc_sccp_timer_iar := 15 * 60;
611
Neels Hofmeyr4fbad7f2020-06-16 00:30:47 +0200612 /* global test case guard timer (actual timeout value is set in f_init()) */
Harald Welteae026692017-12-09 01:03:01 +0100613 timer T_guard := 30.0;
614
Neels Hofmeyr22c3f792020-06-17 02:49:28 +0200615 var CounterNameValsList g_ctr_msc;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +0000616 var CounterNameValsList g_ctr_bsc;
617 var CounterNameValsList g_ctr_bts;
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200618
619 /* System Information bytes as received during RSL startup, for each RSL[idx]. */
620 var SystemInformationConfig_list g_system_information := {};
Harald Welte28d943e2017-11-25 15:00:50 +0100621}
622
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +0200623type record of charstring phys_chan_configs;
Harald Welte28d943e2017-11-25 15:00:50 +0100624modulepar {
Harald Welte21b46bd2017-12-17 19:46:32 +0100625 /* IP address at which the BSC can be reached */
Harald Welte696ddb62017-12-08 14:01:43 +0100626 charstring mp_bsc_ip := "127.0.0.1";
Stefan Sperling830dc9d2018-02-12 21:08:28 +0100627 /* port number to which to establish the IPA OML connections */
628 integer mp_bsc_oml_port := 3002;
Harald Welte21b46bd2017-12-17 19:46:32 +0100629 /* port number to which to establish the IPA RSL connections */
Harald Welte696ddb62017-12-08 14:01:43 +0100630 integer mp_bsc_rsl_port := 3003;
Harald Welte21b46bd2017-12-17 19:46:32 +0100631 /* port number to which to establish the IPA CTRL connection */
Harald Welte96c94412017-12-09 03:12:45 +0100632 integer mp_bsc_ctrl_port := 4249;
Daniel Willmannebdecc02020-08-12 15:30:17 +0200633 /* port number to which to listen for STATSD metrics */
634 integer mp_bsc_statsd_port := 8125;
Daniel Willmann191e0d92018-01-17 12:44:35 +0100635 /* IP address at which the test binds */
636 charstring mp_test_ip := "127.0.0.1";
Harald Weltea4ca4462018-02-09 00:17:14 +0100637
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200638 RAN_Configurations mp_bssap_cfg := {
639 {
640 transport := BSSAP_TRANSPORT_AoIP,
641 sccp_service_type := "mtp3_itu",
642 sctp_addr := { 23905, "127.0.0.1", 2905, "127.0.0.1" },
643 own_pc := 185, /* 0.23.1 first MSC emulation */
644 own_ssn := 254,
645 peer_pc := 187, /* 0.23.3 osmo-bsc */
646 peer_ssn := 254,
647 sio := '83'O,
Harald Weltecb0cc432020-06-21 19:42:31 +0200648 rctx := 1
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200649 },
650 {
651 transport := BSSAP_TRANSPORT_AoIP,
652 sccp_service_type := "mtp3_itu",
653 sctp_addr := { 23906, "127.0.0.1", 2905, "127.0.0.1" },
654 own_pc := 2, /* 0.0.2 second MSC emulation */
655 own_ssn := 254,
656 peer_pc := 187, /* 0.23.3 osmo-bsc */
657 peer_ssn := 254,
658 sio := '83'O,
659 rctx := 2
660 },
661 {
662 transport := BSSAP_TRANSPORT_AoIP,
663 sccp_service_type := "mtp3_itu",
664 sctp_addr := { 23907, "127.0.0.1", 2905, "127.0.0.1" },
665 own_pc := 3, /* 0.0.3 third MSC emulation */
666 own_ssn := 254,
667 peer_pc := 187, /* 0.23.3 osmo-bsc */
668 peer_ssn := 254,
669 sio := '83'O,
670 rctx := 3
671 }
Harald Weltea4ca4462018-02-09 00:17:14 +0100672 };
Pau Espin Pedrol58cf6822019-05-28 18:11:33 +0200673
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +0200674 /* Must match per BTS config in osmo-bsc.cfg */
675 phys_chan_configs phys_chan_config := {
676 "CCCH+SDCCH4+CBCH",
677 "TCH/F",
678 "TCH/F",
679 "TCH/F",
680 "TCH/F",
Vadim Yanitskiy343c9eb2021-07-16 18:36:01 +0600681 "TCH/H",
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +0200682 "PDCH",
683 "PDCH"
684 };
685
Harald Welte47cd0e32020-08-21 12:39:11 +0200686 BSSAP_LE_Configuration mp_bssap_le_cfg := {
687 sccp_service_type := "mtp3_itu",
688 sctp_addr := { 23908, "127.0.0.1", 2905, "127.0.0.1" },
Neels Hofmeyrac086c12020-09-18 23:46:42 +0200689 own_pc := 190, /* 0.23.6 SMLC emulation */
Harald Welte47cd0e32020-08-21 12:39:11 +0200690 own_ssn := 252, /* SMLC side SSN */
691 peer_pc := 187, /* 0.23.3 osmo-bsc */
692 peer_ssn := 250, /* BSC side SSN */
693 sio := '83'O,
694 rctx := 6
695 };
Neels Hofmeyrcfe44062020-10-15 02:28:08 +0200696 boolean mp_enable_lcs_tests := true;
Harald Welte47cd0e32020-08-21 12:39:11 +0200697
Pau Espin Pedrole076b3f2021-07-20 16:45:57 +0200698 /* Whether to enable dyn TS SDCCH8 tests. Can be dropped completely and enable
699 unconditionally once new version of osmo-bsc is released (current
700 version: 1.7.0) */
701 boolean mp_enable_dyn_sdcch8_test := true;
Pau Espin Pedrol8f30ccd2019-11-01 17:30:57 +0100702 /* Value set in osmo-bsc.cfg "ms max power" */
703 uint8_t mp_exp_ms_power_level := 7;
Harald Weltea4ca4462018-02-09 00:17:14 +0100704}
705
Neels Hofmeyr9f3e6ac2021-04-08 23:09:24 +0200706friend function f_gen_test_hdlr_pars(integer bssap_idx := 0) return TestHdlrParams {
Philipp Maier48604732018-10-09 15:00:37 +0200707
708 var TestHdlrParams pars := valueof(t_def_TestHdlrPars);
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200709 if (mp_bssap_cfg[bssap_idx].transport == BSSAP_TRANSPORT_AoIP) {
Philipp Maier48604732018-10-09 15:00:37 +0200710 pars.aoip := true;
711 } else {
712 pars.aoip := false;
713 }
Pau Espin Pedrol8f30ccd2019-11-01 17:30:57 +0100714 pars.exp_ms_power_level := mp_exp_ms_power_level;
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200715 pars.mscpool.bssap_idx := bssap_idx;
Neels Hofmeyrbf720202021-10-02 12:58:24 +0200716 pars.expect_tsc := BTS_TSC[0];
Neels Hofmeyrb5b7a6e2021-06-04 19:03:45 +0200717
Philipp Maier48604732018-10-09 15:00:37 +0200718 return pars;
719}
720
Neels Hofmeyr22c3f792020-06-17 02:49:28 +0200721/* Convenience functions for rate counters using g_ctr_msc. */
722
723private function f_ctrs_msc_init(integer mscs_count := NUM_MSC, CounterNameVals counternames := counternames_msc_mscpool) runs on test_CT {
724 g_ctr_msc := f_counter_name_vals_get_n(IPA_CTRL, "msc", mscs_count, counternames);
725 log("initial msc rate counters: ", g_ctr_msc);
726}
727
728private function f_ctrs_msc_add(integer msc_nr, charstring countername, integer val := 1) runs on test_CT {
Neels Hofmeyr9656e922020-06-30 01:27:01 +0200729 f_counter_name_vals_list_add(g_ctr_msc, msc_nr, countername, val);
Neels Hofmeyr22c3f792020-06-17 02:49:28 +0200730}
731
732/* f_ctrs_msc_init();
733 * f_do_thing(on_msc := 0);
734 * f_do_thing(on_msc := 0);
735 * f_do_other(on_msc := 1);
736 * f_ctrs_msc_add(0, "thing", 2);
737 * f_ctrs_msc_add(1, "other");
738 * f_ctrs_msc_verify();
739 */
740private function f_ctrs_msc_verify() runs on test_CT {
741 log("verifying msc rate counters: ", g_ctr_msc);
742 f_counter_name_vals_expect_n(IPA_CTRL, "msc", g_ctr_msc);
743}
744
745/* convenience: f_ctrs_msc_add() and f_ctrs_msc_verify() in one call.
746 * f_ctrs_msc_init();
747 * f_do_thing(on_msc := 0);
748 * f_do_thing(on_msc := 0);
749 * f_do_thing(on_msc := 0);
750 * f_ctrs_msc_expect(0, "thing", 3);
751 */
752private function f_ctrs_msc_expect(integer msc_nr, charstring countername, integer val := 1) runs on test_CT {
753 f_ctrs_msc_add(msc_nr, countername, val);
754 f_ctrs_msc_verify();
755}
756
Neels Hofmeyr12941bd2020-08-29 03:21:26 +0000757/* Convenience functions for rate counters using g_ctr_bts, always also including g_ctr_bsc. */
758
759private function f_ctrs_bsc_and_bts_init(integer bts_count := NUM_BTS, CounterNameVals counternames := counternames_bsc_bts_handover) runs on test_CT {
760 g_ctr_bts := f_counter_name_vals_get_n(IPA_CTRL, "bts", bts_count, counternames);
761 log("initial bts rate counters: ", g_ctr_bts);
762 f_ctrs_bsc_init(counternames);
763}
764
765private function f_ctrs_bsc_and_bts_add(integer bts_nr, charstring countername, integer val := 1) runs on test_CT {
766 f_counter_name_vals_list_add(g_ctr_bts, bts_nr, countername, val);
767 f_ctrs_bsc_add(countername, val);
768}
769
770/* f_ctrs_bsc_and_bts_init();
771 * f_do_thing(on_bts := 0);
772 * f_do_thing(on_bts := 0);
773 * f_do_other(on_bts := 1);
774 * f_ctrs_bsc_and_bts_add(0, "thing", 2);
775 * f_ctrs_bsc_and_bts_add(1, "other");
776 * f_ctrs_bsc_and_bts_verify();
777 */
778private function f_ctrs_bsc_and_bts_verify() runs on test_CT {
779 f_counter_name_vals_expect_n(IPA_CTRL, "bts", g_ctr_bts);
780 f_ctrs_bsc_verify();
781}
782
783/* convenience: f_ctrs_bsc_and_bts_add() and f_ctrs_bsc_and_bts_verify() in one call.
784 * f_ctrs_bsc_and_bts_init();
785 * f_do_thing(on_bts := 0);
786 * f_do_thing(on_bts := 0);
787 * f_do_thing(on_bts := 0);
788 * f_ctrs_bsc_and_bts_expect(0, "thing", 3);
789 */
790private function f_ctrs_bsc_and_bts_expect(integer bts_nr, charstring countername, integer val := 1) runs on test_CT {
791 f_ctrs_bsc_and_bts_add(bts_nr, countername, val);
792 f_ctrs_bsc_and_bts_verify();
793}
794
795
796/* Convenience functions for rate counters using g_ctr_bsc. */
797
798private function f_ctrs_bsc_init(CounterNameVals counternames := counternames_bsc_bts_handover) runs on test_CT {
799 g_ctr_bsc := f_counter_name_vals_get_n(IPA_CTRL, "bsc", 1, counternames);
800 log("initial bsc rate counters: ", g_ctr_bsc);
801}
802
803private function f_ctrs_bsc_add(charstring countername, integer val := 1) runs on test_CT {
804 f_counter_name_vals_list_add(g_ctr_bsc, 0, countername, val);
805}
806
807/* f_ctrs_bsc_init();
808 * f_do_thing();
809 * f_do_thing();
810 * f_do_other();
811 * f_ctrs_bsc_add("thing", 2);
812 * f_ctrs_bsc_add("other");
813 * f_ctrs_bsc_verify();
814 */
815private function f_ctrs_bsc_verify() runs on test_CT {
816 f_counter_name_vals_expect_n(IPA_CTRL, "bsc", g_ctr_bsc);
817}
818
819/* convenience: f_ctrs_bsc_add() and f_ctrs_bsc_verify() in one call.
820 * f_ctrs_bsc_init();
821 * f_do_thing();
822 * f_ctrs_bsc_expect("thing", 1);
823 */
824private function f_ctrs_bsc_expect(charstring countername, integer val := 1) runs on test_CT {
825 f_ctrs_bsc_add(countername, val);
826 f_ctrs_bsc_verify();
827}
828
Neels Hofmeyr22c3f792020-06-17 02:49:28 +0200829
Neels Hofmeyr9f3e6ac2021-04-08 23:09:24 +0200830friend function f_shutdown_helper() runs on test_CT {
Daniel Willmann637ef6c2018-07-25 10:49:09 +0200831 all component.stop;
Philipp Maier282ca4b2018-02-27 17:17:00 +0100832 setverdict(pass);
Daniel Willmannafce8662018-07-06 23:11:32 +0200833 mtc.stop;
Philipp Maier282ca4b2018-02-27 17:17:00 +0100834}
835
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200836private function f_legacy_bssap_reset(integer bssap_idx := 0) runs on test_CT {
Harald Weltea4ca4462018-02-09 00:17:14 +0100837 var BSSAP_N_UNITDATA_ind ud_ind;
Pau Espin Pedrol24c05992020-09-01 12:54:12 +0200838 var boolean reset_received := false;
Harald Weltea4ca4462018-02-09 00:17:14 +0100839 timer T := 5.0;
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200840 BSSAP.send(ts_BSSAP_UNITDATA_req(g_bssap[bssap_idx].sccp_addr_peer, g_bssap[bssap_idx].sccp_addr_own,
841 ts_BSSMAP_Reset(0, g_osmux_enabled)));
Harald Weltea4ca4462018-02-09 00:17:14 +0100842 T.start;
843 alt {
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200844 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(g_bssap[bssap_idx].sccp_addr_own, g_bssap[bssap_idx].sccp_addr_peer,
845 tr_BSSMAP_ResetAck(g_osmux_enabled))) {
Neels Hofmeyr4f5d7be2020-10-16 16:28:16 +0200846 log("BSSMAP: Received RESET-ACK in response to RESET, we're ready to go!");
Harald Weltea4ca4462018-02-09 00:17:14 +0100847 }
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200848 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(?, ?, tr_BSSMAP_Reset(g_osmux_enabled))) -> value ud_ind {
Neels Hofmeyr4f5d7be2020-10-16 16:28:16 +0200849 log("BSSMAP: Respoding to inbound RESET with RESET-ACK");
Harald Weltea4ca4462018-02-09 00:17:14 +0100850 BSSAP.send(ts_BSSAP_UNITDATA_req(ud_ind.callingAddress, ud_ind.calledAddress,
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200851 ts_BSSMAP_ResetAck(g_osmux_enabled)));
Pau Espin Pedrol24c05992020-09-01 12:54:12 +0200852 reset_received := true;
Harald Weltea4ca4462018-02-09 00:17:14 +0100853 repeat;
854 }
855 [] BSSAP.receive { repeat; }
Pau Espin Pedrol24c05992020-09-01 12:54:12 +0200856 [] T.timeout {
Neels Hofmeyr4f5d7be2020-10-16 16:28:16 +0200857 log("BSSMAP: Timeout waiting for RESET-ACK after sending RESET");
Pau Espin Pedrol24c05992020-09-01 12:54:12 +0200858 /* If we received a RESET after ours was sent, it
859 may be a race condition where the other peer beacame
860 available after we sent it, but we are in a desired
861 state anyway, so go forward. */
862 if (not reset_received) {
863 setverdict(fail);
864 }
865 }
Harald Weltea4ca4462018-02-09 00:17:14 +0100866 }
Harald Welte28d943e2017-11-25 15:00:50 +0100867}
868
Harald Welteae026692017-12-09 01:03:01 +0100869type record IPA_Client {
Harald Welte21b46bd2017-12-17 19:46:32 +0100870 /* IPA Emulation component reference */
Harald Welteae026692017-12-09 01:03:01 +0100871 IPA_Emulation_CT vc_IPA,
Harald Welte21b46bd2017-12-17 19:46:32 +0100872 /* Unit-ID and other CCM parameters to use for IPA client emulation */
Harald Welteae026692017-12-09 01:03:01 +0100873 IPA_CCM_Parameters ccm_pars,
Harald Welte21b46bd2017-12-17 19:46:32 +0100874 /* String identifier for this IPA Client */
Harald Welte624f9632017-12-16 19:26:04 +0100875 charstring id,
Harald Welte21b46bd2017-12-17 19:46:32 +0100876 /* Associated RSL Emulation Component (if any). Only used in "Handler mode" */
Harald Welte624f9632017-12-16 19:26:04 +0100877 RSL_Emulation_CT vc_RSL optional
Harald Welte28d943e2017-11-25 15:00:50 +0100878}
879
Harald Welte21b46bd2017-12-17 19:46:32 +0100880/*! Start the IPA/RSL related bits for one IPA_Client.
881 * \param clnt IPA_Client for which to establish
882 * \param bsc_host IP address / hostname of the BSC
883 * \param bsc_port TCP port number of the BSC
884 * \param i number identifying this BTS
885 * \param handler_mode Start an RSL_Emulation_CT component (true) or not (false) */
Harald Welte624f9632017-12-16 19:26:04 +0100886function f_ipa_rsl_start(inout IPA_Client clnt, charstring bsc_host, PortNumber bsc_port, integer i,
887 boolean handler_mode := false)
Harald Welte28d943e2017-11-25 15:00:50 +0100888runs on test_CT {
Harald Welteae026692017-12-09 01:03:01 +0100889 timer T := 10.0;
890
Harald Welte96c94412017-12-09 03:12:45 +0100891 clnt.id := "IPA" & int2str(i) & "-RSL";
Harald Welteae026692017-12-09 01:03:01 +0100892 clnt.vc_IPA := IPA_Emulation_CT.create(clnt.id & "-IPA");
893 clnt.ccm_pars := c_IPA_default_ccm_pars;
894 clnt.ccm_pars.name := "Osmocom TTCN-3 BTS Simulator";
895 clnt.ccm_pars.unit_id := int2str(1234+i) & "/0/0";
Harald Welte624f9632017-12-16 19:26:04 +0100896 if (handler_mode) {
897 clnt.vc_RSL := RSL_Emulation_CT.create(clnt.id & "-RSL");
Harald Welte89ab1912018-02-23 18:56:29 +0100898 connect(clnt.vc_RSL:CCHAN_PT, self:RSL_CCHAN[i]);
Harald Welte624f9632017-12-16 19:26:04 +0100899 }
Harald Welteae026692017-12-09 01:03:01 +0100900
901 map(clnt.vc_IPA:IPA_PORT, system:IPA_CODEC_PT);
Harald Welte624f9632017-12-16 19:26:04 +0100902 if (handler_mode) {
903 connect(clnt.vc_IPA:IPA_RSL_PORT, clnt.vc_RSL:IPA_PT);
904 } else {
905 connect(clnt.vc_IPA:IPA_RSL_PORT, self:IPA_RSL[i]);
906 }
Harald Welteae026692017-12-09 01:03:01 +0100907
Harald Welte5d1a2202017-12-13 19:51:29 +0100908 clnt.vc_IPA.start(IPA_Emulation.main_client(bsc_host, bsc_port, "", 10000+i, clnt.ccm_pars));
Harald Welte624f9632017-12-16 19:26:04 +0100909 if (handler_mode) {
910 clnt.vc_RSL.start(RSL_Emulation.main());
911 return;
912 }
Harald Welteae026692017-12-09 01:03:01 +0100913
914 /* wait for IPA RSL link to connect and send ID ACK */
915 T.start;
916 alt {
Vadim Yanitskiya2afacc2020-05-18 21:16:19 +0700917 [] IPA_RSL[i].receive(tr_ASP_IPA_EV(ASP_IPA_EVENT_ID_ACK)) {
Harald Welteae026692017-12-09 01:03:01 +0100918 T.stop;
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +0700919 IPA_RSL[i].send(ts_ASP_RSL_UD(ts_RSL_PAGING_LOAD_IND(23)));
Harald Welteae026692017-12-09 01:03:01 +0100920 }
Harald Welte60e823a2017-12-10 14:10:59 +0100921 [] IPA_RSL[i].receive(ASP_IPA_Event:?) { repeat }
Harald Welteae026692017-12-09 01:03:01 +0100922 [] IPA_RSL[i].receive { repeat }
923 [] T.timeout {
Harald Welte96c94412017-12-09 03:12:45 +0100924 setverdict(fail, "Timeout RSL waiting for ASP_IPA_EVENT_ID_ACK");
Daniel Willmannafce8662018-07-06 23:11:32 +0200925 mtc.stop;
Harald Welteae026692017-12-09 01:03:01 +0100926 }
927 }
928}
929
Harald Welte12055472018-03-17 20:10:08 +0100930function f_ipa_rsl_stop(inout IPA_Client clnt) runs on test_CT {
931 if (not isbound(clnt) or not isbound(clnt.vc_IPA)) {
932 return;
933 }
934 clnt.vc_IPA.stop;
935 if (isbound(clnt.vc_RSL)) {
936 clnt.vc_RSL.stop;
937 }
938}
939
Harald Welte21b46bd2017-12-17 19:46:32 +0100940/* Wait for the OML connection to be brought up by the external osmo-bts-omldummy */
Harald Weltea5d2ab22017-12-09 14:21:42 +0100941function f_wait_oml(integer bts_nr, charstring status, float secs_max) runs on test_CT {
942 timer T := secs_max;
943 T.start;
944 while (true) {
945 if (f_ctrl_get_bts(IPA_CTRL, bts_nr, "oml-connection-state") == status) {
946 T.stop;
Harald Weltebd868bd2017-12-10 18:28:40 +0100947 /* the 'degraded' state exists from OML connection time, and we have to wait
948 * until all MO's are initialized */
949 T.start(1.0);
950 T.timeout;
Harald Weltea5d2ab22017-12-09 14:21:42 +0100951 return;
952 }
Harald Weltef0d6ac62017-12-17 17:02:21 +0100953 f_sleep(0.1);
Harald Weltea5d2ab22017-12-09 14:21:42 +0100954 if (not T.running) {
Max99253902018-11-16 17:57:39 +0100955 setverdict(fail, "Timeout waiting for BTS" & int2str(bts_nr) & " oml-connection-state ", status);
Daniel Willmannafce8662018-07-06 23:11:32 +0200956 mtc.stop;
Harald Weltea5d2ab22017-12-09 14:21:42 +0100957 }
958 }
959}
960
Harald Welte21b46bd2017-12-17 19:46:32 +0100961/* global altstep for global guard timer; also takes care of responding RESET witH RESET-ACK */
Harald Welteae026692017-12-09 01:03:01 +0100962altstep as_Tguard() runs on test_CT {
Harald Welte60e823a2017-12-10 14:10:59 +0100963 var BSSAP_N_UNITDATA_ind ud_ind;
Neels Hofmeyrcc3f76a2018-03-12 01:43:25 +0100964 [] T_guard.timeout {
965 setverdict(fail, "Timeout of T_guard");
Daniel Willmannafce8662018-07-06 23:11:32 +0200966 mtc.stop;
Neels Hofmeyrcc3f76a2018-03-12 01:43:25 +0100967 }
Harald Welte60e823a2017-12-10 14:10:59 +0100968 /* always respond with RESET ACK to RESET */
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200969 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(?, ?, tr_BSSMAP_Reset(g_osmux_enabled))) -> value ud_ind {
Harald Welte60e823a2017-12-10 14:10:59 +0100970 BSSAP.send(ts_BSSAP_UNITDATA_req(ud_ind.callingAddress, ud_ind.calledAddress,
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200971 ts_BSSMAP_ResetAck(g_osmux_enabled)));
Harald Welte69c1c262017-12-13 21:02:08 +0100972 repeat;
Harald Welte60e823a2017-12-10 14:10:59 +0100973 }
Harald Welte28d943e2017-11-25 15:00:50 +0100974}
975
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +0100976altstep no_bssmap_reset() runs on test_CT {
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200977 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(?, ?, tr_BSSMAP_Reset(g_osmux_enabled))) {
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +0100978 setverdict(fail, "unexpected BSSMAP Reset");
Daniel Willmannafce8662018-07-06 23:11:32 +0200979 mtc.stop;
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +0100980 }
981}
982
Daniel Willmann191e0d92018-01-17 12:44:35 +0100983function f_init_mgcp(charstring id) runs on test_CT {
984 id := id & "-MGCP";
985
986 var MGCPOps ops := {
987 create_cb := refers(MGCP_Emulation.ExpectedCreateCallback),
988 unitdata_cb := refers(MGCP_Emulation.DummyUnitdataCallback)
989 };
990 var MGCP_conn_parameters mgcp_pars := {
991 callagent_ip := mp_bsc_ip,
Harald Welte9e4273e2018-01-29 22:01:22 +0100992 callagent_udp_port := -1,
Daniel Willmann191e0d92018-01-17 12:44:35 +0100993 mgw_ip := mp_test_ip,
Pau Espin Pedrol1a026a52019-06-18 17:21:52 +0200994 mgw_udp_port := 2427,
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +0200995 /* Enable it for SCCPlite, since we have 2 MGCP sockets towards MGW (UDP one +
996 the on with MGCP over IPA forwarded from MSC one) */
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200997 multi_conn_mode := (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_SCCPlite_SERVER)
Daniel Willmann191e0d92018-01-17 12:44:35 +0100998 };
999
1000 vc_MGCP := MGCP_Emulation_CT.create(id);
1001 vc_MGCP.start(MGCP_Emulation.main(ops, mgcp_pars, id));
1002}
1003
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02001004/* Enable or disable (current default) Osmux. When enabling, BSSMAP Reset
1005 * contains extra IE (OsmuxSupport) and osmo-bsc will handle AssignReq with
1006 * OsmuxCID IE.
1007 */
1008private function f_vty_allow_osmux(boolean allow) runs on test_CT {
1009 f_vty_enter_cfg_msc(BSCVTY, 0);
1010 if (allow) {
1011 f_vty_transceive(BSCVTY, "osmux on");
1012 } else {
1013 f_vty_transceive(BSCVTY, "osmux off");
1014 }
1015 f_vty_transceive(BSCVTY, "exit");
1016 f_vty_transceive(BSCVTY, "exit");
1017 g_osmux_enabled := allow;
1018}
1019
Max2253c0b2018-11-06 19:28:05 +01001020function f_init_vty(charstring id := "foo") runs on test_CT {
Harald Welte94e0c342018-04-07 11:33:23 +02001021 if (BSCVTY.checkstate("Mapped")) {
1022 /* skip initialization if already executed once */
1023 return;
1024 }
Harald Weltebc03c762018-02-12 18:09:38 +01001025 map(self:BSCVTY, system:BSCVTY);
1026 f_vty_set_prompts(BSCVTY);
1027 f_vty_transceive(BSCVTY, "enable");
Pau Espin Pedrolc675b612020-01-09 19:55:40 +01001028 f_cs7_inst_0_cfg(BSCVTY, {"sccp-timer ias " & int2str(g_bsc_sccp_timer_ias),
1029 "sccp-timer iar " & int2str(g_bsc_sccp_timer_iar)});
Harald Weltebc03c762018-02-12 18:09:38 +01001030}
1031
Neels Hofmeyr9f3e6ac2021-04-08 23:09:24 +02001032friend function f_logp(TELNETasp_PT pt, charstring log_msg)
Neels Hofmeyr4f118412020-06-04 15:25:10 +02001033{
1034 // log on TTCN3 log output
1035 log(log_msg);
1036 // log in stderr log
Neels Hofmeyr767548a2020-08-09 20:26:07 +00001037 f_vty_transceive(pt, "logp lglobal notice TTCN3 f_logp(): " & log_msg);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02001038}
1039
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +02001040private function f_sysinfo_seen(integer rsl_idx, RSL_Message rsl) runs on test_CT
1041{
1042 if (rsl_idx >= lengthof(g_system_information)) {
1043 g_system_information[rsl_idx] := SystemInformationConfig_omit
1044 }
1045 f_sysinfo_dec_raw(g_system_information[rsl_idx], rsl);
1046}
1047
1048altstep as_catch_RSL_sysinfo(integer rsl_idx) runs on test_CT {
1049 var ASP_RSL_Unitdata rx_rsl_ud;
1050
1051 /* For handler_mode := false, receiving the RSL bootstrap messages directly on IPA_RSL */
1052 [] IPA_RSL[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_NO_BCCH_INFO)) -> value rx_rsl_ud {
1053 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1054 repeat;
1055 }
1056 [] IPA_RSL[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_BCCH_INFO)) -> value rx_rsl_ud {
1057 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1058 repeat;
1059 }
1060 [] IPA_RSL[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_NO_SACCH_FILL)) -> value rx_rsl_ud {
1061 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1062 repeat;
1063 }
1064 [] IPA_RSL[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_SACCH_FILL)) -> value rx_rsl_ud {
1065 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1066 repeat;
1067 }
1068
1069 /* For handler_mode := true, receiving the RSL bootstrap messages via RSL_Emulation */
1070 [] RSL_CCHAN[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_NO_BCCH_INFO)) -> value rx_rsl_ud {
1071 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1072 repeat;
1073 }
1074 [] RSL_CCHAN[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_BCCH_INFO)) -> value rx_rsl_ud {
1075 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1076 repeat;
1077 }
1078 [] RSL_CCHAN[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_NO_SACCH_FILL)) -> value rx_rsl_ud {
1079 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1080 repeat;
1081 }
1082 [] RSL_CCHAN[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_SACCH_FILL)) -> value rx_rsl_ud {
1083 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1084 repeat;
1085 }
1086}
1087
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00001088/* TODO: use BooleanList from COMMON/src/General_Types.ttcn */
1089private type record of boolean my_BooleanList;
1090
1091private function f_vty_msc_allow_attach(TELNETasp_PT pt, my_BooleanList allow_attach_list)
1092{
Neels Hofmeyr8f576712020-08-12 22:49:53 +00001093 var charstring config := f_vty_transceive_ret(pt, "show running-config");
1094
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00001095 for (var integer msc_nr := 0; msc_nr < sizeof(allow_attach_list); msc_nr := msc_nr+1) {
Neels Hofmeyr8f576712020-08-12 22:49:53 +00001096 if (f_strstr(config, "\nmsc " & int2str(msc_nr) & "\n") < 0) {
1097 /* There is no 'msc N' for this msc_nr in the running config, so don't create an empty msc by
1098 * stepping into that config node. */
1099 log("msc ", msc_nr, " is not configured, skipping");
1100 continue;
1101 }
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00001102 f_vty_enter_cfg_msc(pt, msc_nr);
1103 if (allow_attach_list[msc_nr]) {
1104 /* strict := false: ignore if osmo-bsc does not support this config option (latest build) */
1105 f_vty_transceive(pt, "allow-attach", strict := false);
1106 } else {
1107 f_vty_transceive(pt, "no allow-attach", strict := false);
1108 }
1109 f_vty_transceive(pt, "exit");
1110 f_vty_transceive(pt, "exit");
1111 }
1112}
1113
Harald Welte21b46bd2017-12-17 19:46:32 +01001114/* global initialization function
1115 * \param nr_bts Number of BTSs we should start/bring up
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001116 * \param handler_mode Start an RSL_Emulation_CT component (true) or not (false).
1117 * \param nr_msc Number of virtual MSCs to bring up to connect to osmo-bsc.
1118 */
1119function f_init(integer nr_bts := NUM_BTS, boolean handler_mode := false, boolean allow_osmux := false,
Neels Hofmeyr4fbad7f2020-06-16 00:30:47 +02001120 integer nr_msc := 1, float guard_timeout := 30.0) runs on test_CT {
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001121 var integer bssap_idx;
Harald Welte28d943e2017-11-25 15:00:50 +01001122
Harald Welteae026692017-12-09 01:03:01 +01001123 if (g_initialized) {
1124 return;
Harald Welte28d943e2017-11-25 15:00:50 +01001125 }
Harald Welteae026692017-12-09 01:03:01 +01001126 g_initialized := true;
1127
Neels Hofmeyr4fbad7f2020-06-16 00:30:47 +02001128 T_guard.start(guard_timeout);
Daniel Willmanne68f9272018-11-27 15:15:28 +01001129 activate(as_Tguard());
1130
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02001131 f_init_vty("VirtMSC");
Pau Espin Pedrol23510fb2021-07-20 17:00:38 +02001132 f_vty_allow_osmux(allow_osmux);
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02001133
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00001134 var my_BooleanList allow_attach := { false, false, false };
Daniel Willmannebdecc02020-08-12 15:30:17 +02001135 f_init_statsd("VirtMSC", vc_STATSD, mp_test_ip, mp_bsc_statsd_port);
1136
Neels Hofmeyr9db8e0e2021-08-23 20:45:58 +02001137 /* Make sure each MSC's internal state is "DISCONNECTED" at first */
1138 for (bssap_idx := 0; bssap_idx < NUM_MSC; bssap_idx := bssap_idx+1) {
1139 f_vty_transceive(BSCVTY, "msc " & int2str(bssap_idx) & " bssmap reset", strict := false);
1140 }
1141
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001142 for (bssap_idx := 0; bssap_idx < nr_msc; bssap_idx := bssap_idx+1) {
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00001143 allow_attach[bssap_idx] := true;
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001144 /* Call a function of our 'parent component' RAN_Adapter_CT to start the
1145 * MSC-side BSSAP emulation */
1146 if (handler_mode) {
1147 var RanOps ranops := MSC_RanOps;
1148 ranops.use_osmux := g_osmux_enabled;
1149 f_ran_adapter_init(g_bssap[bssap_idx], mp_bssap_cfg[bssap_idx], "VirtMSC", ranops);
1150 connect(self:SCCPLITE_IPA_CTRL, g_bssap[bssap_idx].vc_RAN:CTRL_CLIENT);
1151 f_ran_adapter_start(g_bssap[bssap_idx]);
1152 } else {
1153 f_ran_adapter_init(g_bssap[bssap_idx], mp_bssap_cfg[bssap_idx], "VirtMSC", omit);
1154 connect(self:BSSAP, g_bssap[bssap_idx].vc_SCCP:SCCP_SP_PORT);
1155 f_ran_adapter_start(g_bssap[bssap_idx]);
1156 f_legacy_bssap_reset();
1157 }
Harald Welte67089ee2018-01-17 22:19:03 +01001158 }
Harald Welted5833a82018-05-27 16:52:56 +02001159
Neels Hofmeyrcfe44062020-10-15 02:28:08 +02001160 if (mp_enable_lcs_tests) {
1161 if (handler_mode) {
1162 f_bssap_le_adapter_init(g_bssap_le, mp_bssap_le_cfg, "VirtSMLC", SMLC_BssapLeOps);
1163 } else {
1164 f_bssap_le_adapter_init(g_bssap_le, mp_bssap_le_cfg, "VirtSMLC", omit);
1165 connect(self:BSSAP_LE, g_bssap_le.vc_SCCP:SCCP_SP_PORT);
1166 }
1167 f_bssap_le_adapter_start(g_bssap_le);
Harald Welte47cd0e32020-08-21 12:39:11 +02001168 }
Harald Welte47cd0e32020-08-21 12:39:11 +02001169
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00001170 /* start the test with exactly all enabled MSCs allowed to attach */
1171 f_vty_msc_allow_attach(BSCVTY, allow_attach);
1172
Pau Espin Pedrol9a5b8ff2021-01-04 19:01:31 +01001173 f_ipa_ctrl_start_client(mp_bsc_ip, mp_bsc_ctrl_port);
Harald Welte28d943e2017-11-25 15:00:50 +01001174
Daniel Willmann191e0d92018-01-17 12:44:35 +01001175 f_init_mgcp("VirtMSC");
1176
Neels Hofmeyr0b7365b2020-07-04 00:52:34 +02001177 for (var integer i := 0; i < nr_bts; i := i+1) {
1178 f_init_bts(i, handler_mode);
Harald Welte696ddb62017-12-08 14:01:43 +01001179 }
Neels Hofmeyr0b7365b2020-07-04 00:52:34 +02001180}
Harald Welte696ddb62017-12-08 14:01:43 +01001181
Neels Hofmeyr0b7365b2020-07-04 00:52:34 +02001182function f_init_bts(integer bts_idx := 0, boolean handler_mode := false)
1183runs on test_CT {
1184 /* wait until osmo-bts-omldummy has respawned */
1185 f_wait_oml(bts_idx, "degraded", 5.0);
1186
1187 /* start RSL connection */
1188 f_ipa_rsl_start(bts[bts_idx].rsl, mp_bsc_ip, mp_bsc_rsl_port, bts_idx, handler_mode);
1189 /* wait until BSC tells us "connected" */
1190 f_wait_oml(bts_idx, "connected", 5.0);
Harald Welte28d943e2017-11-25 15:00:50 +01001191}
1192
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +02001193function f_init_bts_and_check_sysinfo(integer bts_idx := 0, boolean handler_mode := false,
1194 template SystemInformationConfig expect_si)
1195runs on test_CT {
1196 var default sysinfo := activate(as_catch_RSL_sysinfo(bts_idx));
1197
1198 f_init_bts(bts_idx, handler_mode);
1199
1200 /* Give some time to (hopefully/most likely) collect all system informations from RSL startup.
1201 * We could stop as soon as all expected SI are received, but then we might miss SI that we don't expect and
1202 * that might be sent afterwards. So rather give a generous timeout and be quite sure to catch all SI.
1203 */
1204 f_sleep(5.0);
1205 log("RSL ", bts_idx, " SYSTEM INFORMATION: ", g_system_information[bts_idx]);
1206
1207 deactivate(sysinfo);
1208
1209 if (match(g_system_information[bts_idx], expect_si)) {
1210 setverdict(pass);
1211 } else {
1212 log("RSL ", bts_idx, ": EXPECTED SI: ", expect_si);
1213 log("RSL ", bts_idx, ": GOT SI: ", g_system_information[bts_idx]);
1214 setverdict(fail, "received SI does not match expectations");
1215 return;
1216 }
1217}
1218
Maxd4e56962018-10-31 19:08:25 +01001219/* expect to receive a RSL message matching a specified template on a given BTS / stream */
Harald Welte65e419a2020-08-21 12:38:33 +02001220function f_exp_ipa_rx(integer bts_nr, template (present) RSL_Message t_rx, float t_secs := 2.0, IpaStreamId sid := IPAC_PROTO_RSL_TRX0)
Harald Welteae026692017-12-09 01:03:01 +01001221runs on test_CT return RSL_Message {
1222 var ASP_RSL_Unitdata rx_rsl_ud;
1223 timer T := t_secs;
1224
1225 T.start;
1226 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001227 [] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(t_rx, sid)) -> value rx_rsl_ud {
Harald Welteae026692017-12-09 01:03:01 +01001228 T.stop;
1229 }
1230 [] IPA_RSL[bts_nr].receive { repeat; }
Harald Welteb2917702017-12-10 15:48:52 +01001231 [] T.timeout {
1232 setverdict(fail, "Timeout expecting ", t_rx);
Daniel Willmannafce8662018-07-06 23:11:32 +02001233 mtc.stop;
Harald Welteb2917702017-12-10 15:48:52 +01001234 }
Harald Welteae026692017-12-09 01:03:01 +01001235 }
1236 return rx_rsl_ud.rsl;
1237}
1238
Harald Welte21b46bd2017-12-17 19:46:32 +01001239/* helper function to transmit RSL on a given BTS/stream */
Harald Welte65e419a2020-08-21 12:38:33 +02001240function f_ipa_tx(integer bts_nr, template (value) RSL_Message t_tx, IpaStreamId sid := IPAC_PROTO_RSL_TRX0)
Harald Welteae026692017-12-09 01:03:01 +01001241runs on test_CT {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001242 IPA_RSL[bts_nr].send(ts_ASP_RSL_UD(t_tx, sid));
Harald Welteae026692017-12-09 01:03:01 +01001243}
1244
1245
Harald Welte4003d112017-12-09 22:35:39 +01001246/* verify we get a CHAN_ACT after CHAN RQD */
Harald Welteae026692017-12-09 01:03:01 +01001247testcase TC_chan_act_noreply() runs on test_CT {
1248 var BSSAP_N_UNITDATA_ind ud_ind;
Harald Welte930d0a72018-03-22 22:08:40 +01001249 var RSL_Message rsl_unused;
Harald Welte28d943e2017-11-25 15:00:50 +01001250
Harald Welte89d42e82017-12-17 16:42:41 +01001251 f_init(1);
Harald Welte28d943e2017-11-25 15:00:50 +01001252
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001253 IPA_RSL[0].send(ts_ASP_RSL_UD(ts_RSL_CHAN_RQD('23'O, 23)));
Harald Welte930d0a72018-03-22 22:08:40 +01001254 rsl_unused := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001255 f_shutdown_helper();
Harald Welte28d943e2017-11-25 15:00:50 +01001256}
1257
Harald Welte4003d112017-12-09 22:35:39 +01001258/* verify if the "chreq:total" counter increments as expected */
1259testcase TC_chan_act_counter() runs on test_CT {
1260 var BSSAP_N_UNITDATA_ind ud_ind;
1261 var integer chreq_total;
Harald Welte930d0a72018-03-22 22:08:40 +01001262 var RSL_Message rsl_unused;
Harald Welte4003d112017-12-09 22:35:39 +01001263
Harald Welte89d42e82017-12-17 16:42:41 +01001264 f_init(1);
Harald Welte4003d112017-12-09 22:35:39 +01001265
1266 chreq_total := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total");
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001267 IPA_RSL[0].send(ts_ASP_RSL_UD(ts_RSL_CHAN_RQD('23'O, 23)));
Harald Welte930d0a72018-03-22 22:08:40 +01001268 rsl_unused := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
Harald Welte4003d112017-12-09 22:35:39 +01001269 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total", chreq_total+1);
1270
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001271 f_shutdown_helper();
Harald Welte4003d112017-12-09 22:35:39 +01001272}
1273
Harald Welteae026692017-12-09 01:03:01 +01001274/* CHAN RQD -> CHAN ACT -> CHAN ACT ACK -> RF CHAN REL */
Philipp Maier9c60a622020-07-09 15:08:46 +02001275private function f_TC_chan_act_ack_noest(OCT1 ra := '23'O) runs on test_CT {
Harald Welteae026692017-12-09 01:03:01 +01001276 var RSL_Message rx_rsl;
1277
Harald Welteae026692017-12-09 01:03:01 +01001278 /* Send CHAN RQD and wait for allocation; acknowledge it */
Philipp Maier9c60a622020-07-09 15:08:46 +02001279 var RslChannelNr chan_nr := f_chreq_act_ack(ra);
Harald Welteae026692017-12-09 01:03:01 +01001280
1281 /* expect BSC to disable the channel again if there's no RLL EST IND */
1282 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_RF_CHAN_REL), T3101_MAX);
1283
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001284 f_shutdown_helper();
Harald Welteae026692017-12-09 01:03:01 +01001285}
1286
Philipp Maier9c60a622020-07-09 15:08:46 +02001287/* Normal variant */
1288testcase TC_chan_act_ack_noest() runs on test_CT {
Philipp Maieraf58db22020-08-12 17:24:40 +02001289 f_init(1);
Philipp Maier9c60a622020-07-09 15:08:46 +02001290 f_TC_chan_act_ack_noest();
1291}
1292
1293/* Emergency call variant */
1294testcase TC_chan_act_ack_noest_emerg() runs on test_CT {
1295 /* See also: 3GPP TS 04.08, Table 9.9, ra=101xxxxx */
Philipp Maieraf58db22020-08-12 17:24:40 +02001296 f_init(1);
1297 f_vty_allow_emerg_bts(true, 0);
Philipp Maier9c60a622020-07-09 15:08:46 +02001298 f_TC_chan_act_ack_noest(ra := 'A5'O);
1299}
1300
Philipp Maier606f07d2020-08-12 17:21:58 +02001301/* Emergency call variant, but emergency calls are not allowed */
1302testcase TC_chan_rqd_emerg_deny() runs on test_CT {
1303 /* See also: 3GPP TS 04.08, Table 9.9, ra=101xxxxx */
1304
1305 var RSL_Message rx_rsl;
1306 var GsmRrMessage rr;
1307
1308 f_init(1);
1309 f_vty_allow_emerg_bts(false, 0);
1310
1311 IPA_RSL[0].clear;
1312 f_ipa_tx(0, ts_RSL_CHAN_RQD('A5'O, 23));
1313
1314 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeC(RSL_MT_IMMEDIATE_ASSIGN_CMD));
1315 rr := dec_GsmRrMessage(rx_rsl.ies[1].body.full_imm_ass_info.payload);
1316 if (rr.header.message_type == IMMEDIATE_ASSIGNMENT_REJECT) {
1317 setverdict(pass);
1318 } else {
1319 setverdict(fail, "immediate assignment not rejected");
1320 }
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01001321
1322 f_shutdown_helper();
Philipp Maier606f07d2020-08-12 17:21:58 +02001323}
1324
Harald Welteae026692017-12-09 01:03:01 +01001325/* Test behavior if MSC never answers to CR */
1326testcase TC_chan_act_ack_est_ind_noreply() runs on test_CT {
Harald Weltef77aef62018-01-28 15:35:42 +01001327 var RslLinkId main_dcch := valueof(ts_RslLinkID_DCCH(0));
1328 var IpaStreamId sid := IPAC_PROTO_RSL_TRX0;
Harald Welteae026692017-12-09 01:03:01 +01001329 var RSL_Message rx_rsl;
Harald Weltef77aef62018-01-28 15:35:42 +01001330 var ASP_RSL_Unitdata rx_rsl_ud;
Harald Welteae026692017-12-09 01:03:01 +01001331
Harald Welte89d42e82017-12-17 16:42:41 +01001332 f_init(1);
Harald Welteae026692017-12-09 01:03:01 +01001333
1334 /* Send CHAN RQD and wait for allocation; acknowledge it */
Harald Welted6939652017-12-13 21:02:46 +01001335 var RslChannelNr chan_nr := f_chreq_act_ack();
Harald Welteae026692017-12-09 01:03:01 +01001336
1337 var octetstring l3 := '00010203040506'O
1338 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
1339
1340 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3)));
1341
1342 /* expect BSC to disable the channel again if there's no response from MSC */
Harald Weltef77aef62018-01-28 15:35:42 +01001343 /* MS waits 20s (T3210) at LU; 10s (T3230) at CM SERV REQ and 5s (T3220) AT detach */
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001344 f_expect_chan_rel(0, chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001345 f_shutdown_helper();
Harald Welteae026692017-12-09 01:03:01 +01001346}
1347
1348/* Test behavior if MSC answers with CREF to CR */
1349testcase TC_chan_act_ack_est_ind_refused() runs on test_CT {
1350 var BSSAP_N_CONNECT_ind rx_c_ind;
1351 var RSL_Message rx_rsl;
1352
Harald Welte89d42e82017-12-17 16:42:41 +01001353 f_init(1);
Harald Welteae026692017-12-09 01:03:01 +01001354
1355 /* Send CHAN RQD and wait for allocation; acknowledge it */
Harald Welted6939652017-12-13 21:02:46 +01001356 var RslChannelNr chan_nr := f_chreq_act_ack();
Harald Welteae026692017-12-09 01:03:01 +01001357
1358 var octetstring l3 := '00010203040506'O
1359 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
1360
1361 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
1362 BSSAP.send(ts_BSSAP_DISC_req(rx_c_ind.connectionId, 0));
1363
1364 /* expect BSC to disable the channel */
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001365 f_expect_chan_rel(0, chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001366 f_shutdown_helper();
Harald Welteae026692017-12-09 01:03:01 +01001367}
1368
Harald Welte618ef642017-12-14 14:58:20 +01001369/* CHAN RQD -> CHAN ACT -> CHAN ACT NACK -> RF CHAN REL */
1370testcase TC_chan_act_nack() runs on test_CT {
1371 var RSL_Message rx_rsl;
1372 var integer chact_nack;
1373
Harald Welte89d42e82017-12-17 16:42:41 +01001374 f_init(1);
Harald Welte618ef642017-12-14 14:58:20 +01001375
1376 chact_nack := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "chan_act:nack");
1377
1378 f_ipa_tx(0, ts_RSL_CHAN_RQD('33'O, 33));
1379 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
1380 var RslChannelNr chan_nr := rx_rsl.ies[0].body.chan_nr;
1381
1382 f_ipa_tx(0, ts_RSL_CHAN_ACT_NACK(chan_nr, RSL_ERR_EQUIPMENT_FAIL));
1383
1384 /* wait for some time to hope the NACK arrives before the CTRL GET below */
1385 f_sleep(0.5);
1386
1387 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "chan_act:nack", chact_nack+1);
1388
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001389 f_shutdown_helper();
Harald Welte618ef642017-12-14 14:58:20 +01001390}
1391
Harald Welte799c97b2017-12-14 17:50:30 +01001392/* Test for channel exhaustion due to RACH overload */
1393testcase TC_chan_exhaustion() runs on test_CT {
1394 var ASP_RSL_Unitdata rsl_ud;
1395 var integer i;
1396 var integer chreq_total, chreq_nochan;
1397
Harald Welte89d42e82017-12-17 16:42:41 +01001398 f_init(1);
Harald Welte799c97b2017-12-14 17:50:30 +01001399
1400 chreq_total := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total");
1401 chreq_nochan := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:no_channel");
1402
Pau Espin Pedrolfe200d72018-12-10 12:41:04 +01001403 /* GSM 04.08 Table 9.9a:
1404 * RA = '33'O -> Establishment cause = 0011xxxx (MS dual rate capable and asks for "TCH/H or TCH/F").
1405 * With current setup, expect 4xSDCCH + 4xTCH/F + 1xTCH/H to succeed */
Philipp Maiercb6cc482018-03-26 13:08:00 +02001406 for (i := 0; i < NUM_TCHF_PER_BTS + NUM_TCHH_PER_BTS + NUM_SDCCH_PER_BTS; i := i+1) {
Pau Espin Pedrolfe200d72018-12-10 12:41:04 +01001407 var RslChannelNr chan_nr := f_chreq_act_ack('33'O, i);
Harald Welte799c97b2017-12-14 17:50:30 +01001408 }
1409
1410 IPA_RSL[0].clear;
1411
Harald Weltedd8cbf32018-01-28 12:07:52 +01001412 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total",
Philipp Maiercb6cc482018-03-26 13:08:00 +02001413 chreq_total + NUM_TCHF_PER_BTS + NUM_TCHH_PER_BTS + NUM_SDCCH_PER_BTS);
Harald Welte799c97b2017-12-14 17:50:30 +01001414
1415 /* now expect additional channel activations to fail */
1416 f_ipa_tx(0, ts_RSL_CHAN_RQD('42'O, 42));
1417
1418 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001419 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV))) {
Harald Welte799c97b2017-12-14 17:50:30 +01001420 setverdict(fail, "Received CHAN ACT ACK without resources?!?");
1421 }
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001422 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_IMM_ASSIGN(?))) -> value rsl_ud {
Harald Welte799c97b2017-12-14 17:50:30 +01001423 var GsmRrMessage rr;
1424 /* match on IMM ASS REJ */
1425 rr := dec_GsmRrMessage(rsl_ud.rsl.ies[1].body.full_imm_ass_info.payload);
1426 if (rr.header.message_type == IMMEDIATE_ASSIGNMENT_REJECT) {
1427 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total",
Philipp Maiercb6cc482018-03-26 13:08:00 +02001428 chreq_total + NUM_TCHF_PER_BTS + NUM_TCHH_PER_BTS + NUM_SDCCH_PER_BTS+1);
Harald Welte799c97b2017-12-14 17:50:30 +01001429 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:no_channel",
1430 chreq_nochan+1);
1431 setverdict(pass);
1432 } else {
1433 repeat;
1434 }
1435 }
1436 [] IPA_RSL[0].receive { repeat; }
1437 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001438 f_shutdown_helper();
Harald Welte799c97b2017-12-14 17:50:30 +01001439}
1440
Vadim Yanitskiy1ff1fdf2018-11-27 01:32:57 +07001441/* Test channel deactivation due to silence from MS */
1442testcase TC_chan_deact_silence() runs on test_CT {
1443 var RslChannelNr chan_nr;
1444
1445 f_init(1);
1446
1447 /* Request for a dedicated channel */
1448 chan_nr := f_chreq_act_ack('23'O);
1449
1450 /* Wait some time until the channel is released */
1451 f_sleep(2.0);
1452
1453 /* Expect CHANnel RELease */
1454 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001455 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_MsgTypeD(RSL_MT_RF_CHAN_REL))) {
Vadim Yanitskiy1ff1fdf2018-11-27 01:32:57 +07001456 log("Received CHANnel RELease");
1457 setverdict(pass);
1458 }
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001459 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_IMM_ASSIGN(?))) {
Vadim Yanitskiy1ff1fdf2018-11-27 01:32:57 +07001460 /* See OS#3709, OsmoBSC should not send Immediate
1461 * Assignment Reject since a dedicated channel was
1462 * already allocated, and Immediate Assignment was
1463 * already sent. */
1464 setverdict(fail, "Unexpected Immediate Assignment!");
1465 }
1466 [] IPA_RSL[0].receive {
1467 setverdict(fail, "Unexpected RSL message!");
1468 }
1469 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001470 f_shutdown_helper();
Vadim Yanitskiy1ff1fdf2018-11-27 01:32:57 +07001471}
1472
Harald Weltecfe2c962017-12-15 12:09:32 +01001473/***********************************************************************
1474 * Assignment Testing
1475 ***********************************************************************/
1476
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02001477/* Verify that the BSC refuses any BSSAP connection from the MSC (They are all BSC->MSC direction,
1478 * except for the inter-BSC handover, MT side) */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001479testcase TC_outbound_connect(integer bssap_idx := 0) runs on test_CT {
Harald Welte89d42e82017-12-17 16:42:41 +01001480 f_init(1);
Harald Weltecfe2c962017-12-15 12:09:32 +01001481
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001482 BSSAP.send(ts_BSSAP_CONNECT_req(g_bssap[bssap_idx].sccp_addr_peer, g_bssap[bssap_idx].sccp_addr_own,
1483 2342, ts_BSSMAP_AssignmentReq));
Harald Weltecfe2c962017-12-15 12:09:32 +01001484 BSSAP.receive(tr_BSSAP_DISC_ind(2342, ?, ?));
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001485 f_shutdown_helper();
Harald Weltecfe2c962017-12-15 12:09:32 +01001486}
1487
Harald Welte16a4adf2017-12-14 18:54:01 +01001488/* Test behavior if MSC answers with CREF to CR */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001489testcase TC_assignment_cic_only(integer bssap_idx := 0) runs on test_CT {
Harald Welte16a4adf2017-12-14 18:54:01 +01001490 var BSSAP_N_CONNECT_ind rx_c_ind;
1491 var RSL_Message rx_rsl;
1492 var DchanTuple dt;
1493
Harald Welte89d42e82017-12-17 16:42:41 +01001494 f_init(1);
Harald Welte16a4adf2017-12-14 18:54:01 +01001495
1496 dt := f_est_dchan('23'O, 23, '00000000'O);
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001497 if (mp_bssap_cfg[bssap_idx].transport == BSSAP_TRANSPORT_AoIP) {
Harald Welte17b27da2018-05-25 20:33:53 +02001498 /* send assignment without AoIP IEs */
1499 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_AssignmentReq(ts_BSSMAP_IE_CIC(0, 1))));
1500 } else {
1501 /* Send assignmetn without CIC in IPA case */
1502 var BSSMAP_IE_AoIP_TransportLayerAddress tla :=
1503 valueof(ts_BSSMAP_IE_AoIP_TLA4('01020304'O, 2342));
1504 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_AssignmentReq(omit, tla)));
1505 }
Harald Welte16a4adf2017-12-14 18:54:01 +01001506 alt {
1507 [] BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_AssignmentComplete)) {
1508 setverdict(fail, "AoIP BSC cannot accept ASSIGNMENT without AoIP Transport IE");
1509 }
Harald Welte235ebf12017-12-15 14:18:16 +01001510 /* TODO: Actually expect GSM0808_CAUSE_REQ_A_IF_TYPE_NOT_SUPP */
Harald Welte16a4adf2017-12-14 18:54:01 +01001511 [] BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_AssignmentFail)) {
1512 setverdict(pass);
1513 }
1514 [] BSSAP.receive { repeat; }
1515 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001516 f_shutdown_helper();
Harald Welte16a4adf2017-12-14 18:54:01 +01001517}
1518
Harald Welteed848512018-05-24 22:27:58 +02001519/* generate an assignment request for either AoIP or SCCPlite */
Pau Espin Pedrol07866632020-09-03 19:10:55 +02001520function f_gen_ass_req(boolean osmux_enabled := false, integer bssap_idx := 0, charstring aoip_tla := "1.2.3.4") return PDU_BSSAP {
Harald Welteed848512018-05-24 22:27:58 +02001521 var PDU_BSSAP ass_cmd;
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02001522 var BSSMAP_IE_Osmo_OsmuxCID osmux_cid := valueof(ts_OsmuxCID(0));
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001523 if (mp_bssap_cfg[bssap_idx].transport == BSSAP_TRANSPORT_AoIP) {
Harald Welteed848512018-05-24 22:27:58 +02001524 var BSSMAP_IE_AoIP_TransportLayerAddress tla :=
Pau Espin Pedrol07866632020-09-03 19:10:55 +02001525 valueof(f_ts_BSSMAP_IE_AoIP_TLA(aoip_tla, 2342));
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02001526 if (osmux_enabled) {
1527 ass_cmd := valueof(ts_BSSMAP_AssignmentReq(omit, tla, osmux_cid));
1528 } else {
1529 ass_cmd := valueof(ts_BSSMAP_AssignmentReq(omit, tla));
1530 }
Harald Welteed848512018-05-24 22:27:58 +02001531 } else {
1532 var BSSMAP_IE_CircuitIdentityCode cic := valueof(ts_BSSMAP_IE_CIC(0,1));
Pau Espin Pedrol096d73d2019-06-06 12:49:17 +02001533 ass_cmd := valueof(ts_BSSMAP_AssignmentReq(cic, omit));
Harald Welteed848512018-05-24 22:27:58 +02001534 }
1535 return ass_cmd;
1536}
1537
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02001538function f_gen_handover_req(integer bssap_idx := 0, charstring aoip_tla := "1.2.3.4",
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02001539 template (omit) BSSMAP_oldToNewBSSIEs oldToNewBSSIEs := omit,
1540 template (omit) TestHdlrEncrParams enc := omit) return PDU_BSSAP {
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01001541 var PDU_BSSAP ho_req;
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02001542
1543 var BSSMAP_IE_EncryptionInformation encryptionInformation :=
1544 valueof(ts_BSSMAP_IE_EncrInfo('0000000000000000'O,'01'O));
1545 var template BSSMAP_IE_ChosenEncryptionAlgorithm chosenEncryptionAlgorithm := omit;
1546 var template BSSMAP_IE_KC128 kc128 := omit;
1547 if (ispresent(enc)) {
1548 var TestHdlrEncrParams v_enc := valueof(enc);
1549 encryptionInformation := valueof(ts_BSSMAP_IE_EncrInfo(v_enc.enc_key, v_enc.enc_alg));
1550 chosenEncryptionAlgorithm := valueof(
1551 ts_BSSMAP_IE_ChosenEncryptionAlgorithm(int2oct(enum2int(
Oliver Smith598e1ed2021-07-09 10:28:40 +02001552 f_cipher_mode_bssmap_to_rsl(v_enc.enc_alg)), 1)));
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02001553 if (ispresent(v_enc.enc_kc128)) {
1554 kc128 := ts_BSSMAP_IE_Kc128(v_enc.enc_kc128);
1555 }
1556 }
1557
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001558 if (mp_bssap_cfg[bssap_idx].transport == BSSAP_TRANSPORT_AoIP) {
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01001559 var BSSMAP_IE_AoIP_TransportLayerAddress tla :=
Pau Espin Pedrol07866632020-09-03 19:10:55 +02001560 valueof(f_ts_BSSMAP_IE_AoIP_TLA(aoip_tla, 2342));
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02001561 ho_req := valueof(ts_BSSMAP_HandoverRequest(omit, tla, oldToNewBSSIEs := oldToNewBSSIEs,
1562 encryptionInformation := encryptionInformation,
1563 chosenEncryptionAlgorithm := chosenEncryptionAlgorithm,
1564 kC128 := kc128));
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01001565 } else {
1566 var BSSMAP_IE_CircuitIdentityCode cic := valueof(ts_BSSMAP_IE_CIC(0,1));
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02001567 ho_req := valueof(ts_BSSMAP_HandoverRequest(cic, omit, oldToNewBSSIEs := oldToNewBSSIEs,
1568 encryptionInformation := encryptionInformation,
1569 chosenEncryptionAlgorithm := chosenEncryptionAlgorithm,
1570 kC128 := kc128));
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01001571 }
1572 return ho_req;
1573}
1574
Harald Welteed848512018-05-24 22:27:58 +02001575/* generate an assignment complete template for either AoIP or SCCPlite */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001576function f_gen_exp_compl(boolean expect_osmux := false, integer bssap_idx := 0) return template PDU_BSSAP {
Harald Welteed848512018-05-24 22:27:58 +02001577 var template PDU_BSSAP exp_compl;
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02001578 var BSSMAP_IE_Osmo_OsmuxCID osmux_cid := valueof(ts_OsmuxCID(0));
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001579 if (mp_bssap_cfg[bssap_idx].transport == BSSAP_TRANSPORT_AoIP) {
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02001580 if (expect_osmux) {
1581 exp_compl := tr_BSSMAP_AssignmentComplete(omit, ?, osmux_cid);
1582 } else {
1583 exp_compl := tr_BSSMAP_AssignmentComplete(omit, ?, omit);
1584 }
Harald Welteed848512018-05-24 22:27:58 +02001585 } else {
1586 /* CIC is optional "*" as the MSC allocated it */
Pau Espin Pedrol096d73d2019-06-06 12:49:17 +02001587 exp_compl := tr_BSSMAP_AssignmentComplete(*, omit);
Harald Welteed848512018-05-24 22:27:58 +02001588 }
1589 return exp_compl;
1590}
1591
Harald Welte235ebf12017-12-15 14:18:16 +01001592/* Run everything required up to sending a caller-specified assignment command and expect response */
1593function f_assignment_exp(PDU_BSSAP ass_cmd, template PDU_BSSAP exp, charstring fail_text)
1594runs on test_CT {
1595 var BSSAP_N_CONNECT_ind rx_c_ind;
1596 var RSL_Message rx_rsl;
1597 var DchanTuple dt;
1598
Harald Welte89d42e82017-12-17 16:42:41 +01001599 f_init(1);
Harald Welte235ebf12017-12-15 14:18:16 +01001600
1601 dt := f_est_dchan('23'O, 23, '00000000'O);
1602 /* send assignment without AoIP IEs */
1603 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ass_cmd));
1604 alt {
1605 [] BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_AssignmentComplete)) {
1606 if (ischosen(exp.pdu.bssmap.assignmentComplete)) {
1607 setverdict(pass);
1608 } else {
1609 setverdict(fail, fail_text);
1610 }
1611 }
1612 [] BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_AssignmentFail)) {
1613 if (ischosen(exp.pdu.bssmap.assignmentFailure)) {
1614 setverdict(pass);
1615 } else {
1616 setverdict(fail, fail_text);
1617 }
1618 }
1619 [] BSSAP.receive { repeat; }
1620 }
1621}
1622testcase TC_assignment_csd() runs on test_CT {
1623 var template PDU_BSSAP exp_fail := tr_BSSMAP_AssignmentFail;
Harald Welteed848512018-05-24 22:27:58 +02001624 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Welte235ebf12017-12-15 14:18:16 +01001625 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelTypeCSD);
1626 //exp_fail.pdu.bssmap.assignmentFailure.cause.causeValue := int2bit(enum2int(GSM0808_CAUSE_REQ_CODEC_TYPE_OR_CONFIG_UNAVAIL), 7);
1627 f_assignment_exp(ass_cmd, exp_fail, "BSC accepted Assignment for CSD");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001628 f_shutdown_helper();
Harald Welte235ebf12017-12-15 14:18:16 +01001629}
1630
1631testcase TC_assignment_ctm() runs on test_CT {
1632 var template PDU_BSSAP exp_fail := tr_BSSMAP_AssignmentFail;
Harald Welteed848512018-05-24 22:27:58 +02001633 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Welte235ebf12017-12-15 14:18:16 +01001634 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelTypeCTM);
1635 //exp_fail.pdu.bssmap.assignmentFailure.cause.causeValue := int2bit(enum2int(GSM0808_CAUSE_REQ_CODEC_TYPE_OR_CONFIG_UNAVAIL), 7);
1636 f_assignment_exp(ass_cmd, exp_fail, "BSC accepted Assignment for Speech+CTM");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001637 f_shutdown_helper();
Harald Welte235ebf12017-12-15 14:18:16 +01001638}
1639
Harald Welte4003d112017-12-09 22:35:39 +01001640type record DchanTuple {
1641 integer sccp_conn_id,
1642 RslChannelNr rsl_chan_nr
Harald Weltea5d2ab22017-12-09 14:21:42 +01001643}
1644
Harald Welted6939652017-12-13 21:02:46 +01001645/* Send CHAN RQD and wait for allocation; acknowledge it */
1646private function f_chreq_act_ack(OCT1 ra := '23'O, GsmFrameNumber fn := 23)
1647runs on test_CT return RslChannelNr {
1648 var RSL_Message rx_rsl;
1649 f_ipa_tx(0, ts_RSL_CHAN_RQD(ra, fn));
1650 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
1651 var RslChannelNr chan_nr := rx_rsl.ies[0].body.chan_nr;
1652 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, fn+10));
Daniel Willmannf4ac4ce2018-08-02 14:06:30 +02001653 rx_rsl := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
Harald Welted6939652017-12-13 21:02:46 +01001654 return chan_nr;
1655}
1656
Harald Welte4003d112017-12-09 22:35:39 +01001657/* helper function to establish a dedicated channel via BTS and MSC */
1658function f_est_dchan(OCT1 ra, GsmFrameNumber fn, octetstring l3)
1659runs on test_CT return DchanTuple {
1660 var BSSAP_N_CONNECT_ind rx_c_ind;
Harald Welte4003d112017-12-09 22:35:39 +01001661 var DchanTuple dt;
Harald Weltea5d2ab22017-12-09 14:21:42 +01001662
Harald Welte4003d112017-12-09 22:35:39 +01001663 /* Send CHAN RQD and wait for allocation; acknowledge it */
Harald Welted6939652017-12-13 21:02:46 +01001664 dt.rsl_chan_nr := f_chreq_act_ack(ra, fn);
Harald Welte4003d112017-12-09 22:35:39 +01001665
1666 f_ipa_tx(0, ts_RSL_EST_IND(dt.rsl_chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
1667
1668 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
1669 dt.sccp_conn_id := rx_c_ind.connectionId;
1670 BSSAP.send(ts_BSSAP_CONNECT_res(dt.sccp_conn_id));
1671
1672 return dt;
Harald Weltea5d2ab22017-12-09 14:21:42 +01001673}
1674
Harald Welte641fcbe2018-06-14 10:58:35 +02001675/* expect RF CAN REL from BTS, acknowledge it and clear the MSC side */
1676private function f_exp_chan_rel_and_clear(DchanTuple dt, integer bts_nr := 0) runs on test_CT {
1677 var RSL_Message rx_rsl;
1678 /* expect BSC to disable the channel */
1679 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_RF_CHAN_REL), T3101_MAX);
1680 /* respond with CHAN REL ACK */
1681 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(dt.rsl_chan_nr));
1682
1683 /* expect Clear Complete from BSC */
1684 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete));
1685
1686 /* MSC disconnects as instructed. */
1687 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
1688}
1689
Harald Welte4003d112017-12-09 22:35:39 +01001690/* Test behavior of channel release after unilateral RLL REL IND (DISC from MS) */
1691testcase TC_chan_rel_rll_rel_ind() runs on test_CT {
Neels Hofmeyr27f64362018-03-12 01:44:00 +01001692 var BSSAP_N_DATA_ind rx_di;
Harald Welte4003d112017-12-09 22:35:39 +01001693 var DchanTuple dt;
Harald Welte96c94412017-12-09 03:12:45 +01001694
Harald Welte89d42e82017-12-17 16:42:41 +01001695 f_init(1);
Harald Welte96c94412017-12-09 03:12:45 +01001696
Harald Welte4003d112017-12-09 22:35:39 +01001697 dt := f_est_dchan('23'O, 23, '00010203040506'O);
1698
1699 /* simulate RLL REL IND */
1700 f_ipa_tx(0, ts_RSL_REL_IND(dt.rsl_chan_nr, valueof(ts_RslLinkID_DCCH(0))));
1701
Neels Hofmeyr27f64362018-03-12 01:44:00 +01001702 /* expect Clear Request on MSC side */
1703 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearRequest)) -> value rx_di;
1704
1705 /* Instruct BSC to clear channel */
1706 var BssmapCause cause := bit2int(rx_di.userData.pdu.bssmap.clearRequest.cause.causeValue);
1707 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
1708
Harald Welte4003d112017-12-09 22:35:39 +01001709 /* expect BSC to disable the channel */
Harald Welte641fcbe2018-06-14 10:58:35 +02001710 f_exp_chan_rel_and_clear(dt, 0);
Neels Hofmeyr27f64362018-03-12 01:44:00 +01001711
1712 /* wait for SCCP emulation to do its job */
1713 f_sleep(1.0);
Harald Welte4003d112017-12-09 22:35:39 +01001714
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001715 f_shutdown_helper();
Harald Welte4003d112017-12-09 22:35:39 +01001716}
1717
1718/* Test behavior of channel release after CONN FAIL IND from BTS */
1719testcase TC_chan_rel_conn_fail() runs on test_CT {
1720 var BSSAP_N_DATA_ind rx_di;
Harald Welte4003d112017-12-09 22:35:39 +01001721 var DchanTuple dt;
1722
Harald Welte89d42e82017-12-17 16:42:41 +01001723 f_init(1);
Harald Welte4003d112017-12-09 22:35:39 +01001724
1725 dt := f_est_dchan('23'O, 23, '00010203040506'O);
1726
1727 /* simulate CONN FAIL IND */
Harald Weltea8ed9062017-12-14 09:46:01 +01001728 f_ipa_tx(0, ts_RSL_CONN_FAIL_IND(dt.rsl_chan_nr, RSL_ERR_RADIO_LINK_FAIL));
Harald Welte4003d112017-12-09 22:35:39 +01001729 /* TODO: different cause values? */
1730
Harald Welte4003d112017-12-09 22:35:39 +01001731 /* expect Clear Request from BSC */
1732 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearRequest)) -> value rx_di;
1733
1734 /* Instruct BSC to clear channel */
1735 var BssmapCause cause := bit2int(rx_di.userData.pdu.bssmap.clearRequest.cause.causeValue);
1736 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
1737
Harald Welte6ff76ea2018-01-28 13:08:01 +01001738 /* expect BSC to disable the channel */
Harald Welte641fcbe2018-06-14 10:58:35 +02001739 f_exp_chan_rel_and_clear(dt, 0);
Harald Welte4003d112017-12-09 22:35:39 +01001740
1741 /* wait for SCCP emulation to do its job */
1742 f_sleep(1.0);
1743
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001744 f_shutdown_helper();
Harald Welte4003d112017-12-09 22:35:39 +01001745}
1746
Harald Welte99f3ca02018-06-14 13:40:29 +02001747/* Test behavior of early CONN FAIL IND from BTS (before EST IND!) */
1748/* See also https://www.osmocom.org/issues/3182 */
1749testcase TC_early_conn_fail() runs on test_CT {
1750 var RSL_Message rx_rsl;
1751 var DchanTuple dt;
1752
1753 f_init(1);
1754
1755 /* BTS->BSC: Send CHAN RQD and wait for allocation; acknowledge it */
Harald Weltec46ea3c2020-10-10 18:46:12 +02001756 dt.rsl_chan_nr := f_chreq_act_ack(f_rnd_ra_cs(), 23);
Harald Welte99f3ca02018-06-14 13:40:29 +02001757
1758 /* BTS->BSC: simulate CONN FAIL IND */
1759 f_ipa_tx(0, ts_RSL_CONN_FAIL_IND(dt.rsl_chan_nr, RSL_ERR_RADIO_LINK_FAIL));
1760
1761 /* BTS->BSC: Expect RF channel release from BSC on Abis */
1762 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_RF_CHAN_REL), 10.0);
1763
1764 /* BTS<-BSC: respond with CHAN REL ACK */
1765 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(dt.rsl_chan_nr));
1766
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001767 f_shutdown_helper();
Harald Welte99f3ca02018-06-14 13:40:29 +02001768}
1769
1770/* Test behavior of late CONN FAIL IND from BTS (ater REL IND!) */
1771/* See also https://www.osmocom.org/issues/3182 */
1772testcase TC_late_conn_fail() runs on test_CT {
1773 var RSL_Message rx_rsl;
1774 var DchanTuple dt;
1775
1776 f_init(1);
1777
1778 dt := f_est_dchan('23'O, 23, '00010203040506'O);
1779
1780 /* BSC<-MSC: Instruct BSC to clear connection */
1781 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(0)));
1782
1783 /* BTS->BSC: expect BSC to deactivate SACCH */
1784 rx_rsl := f_exp_ipa_rx(0, tr_RSL_DEACT_SACCH(dt.rsl_chan_nr));
1785
1786 /* BTS->BSC: simulate a late CONN FAIL IND from BTS */
1787 f_ipa_tx(0, ts_RSL_CONN_FAIL_IND(dt.rsl_chan_nr, RSL_ERR_RADIO_LINK_FAIL));
1788
1789 /* BTS<-BSC: Expect RF channel release from BSC on Abis */
1790 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_RF_CHAN_REL), 10.0);
1791 /* BTS->BSC: respond with CHAN REL ACK */
1792 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(dt.rsl_chan_nr));
1793
1794 /* BSC->MSC: expect Clear Complete from BSC */
1795 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete));
1796
1797 /* BSC<-MSC: MSC disconnects as requested. */
1798 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
1799
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001800 f_shutdown_helper();
Harald Welte99f3ca02018-06-14 13:40:29 +02001801}
1802
Oliver Smithaf03bef2021-08-24 15:34:51 +02001803private function f_TC_stats_conn_fail(charstring id) runs on MSC_ConnHdlr {
1804 var template PDU_BSSAP exp_fail := tr_BSSMAP_AssignmentFail;
1805 var PDU_BSSAP ass_cmd := f_gen_ass_req();
1806
1807 f_statsd_reset();
1808
1809 /* Establish SDCCH */
1810 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelTypeCSD);
1811 f_establish_fully(ass_cmd, exp_fail);
1812
1813 /* Expect stats to be 0 */
1814 var StatsDExpects expect := {
1815 {name := "TTCN3.bts.0.chan.rf_fail", mtype := "c", min := 0, max := 0},
1816 {name := "TTCN3.bts.0.chan.rf_fail_sdcch", mtype := "c", min := 0, max := 0}
1817 };
1818 f_statsd_expect(expect);
1819
1820 /* Simulate CONN FAIL IND on SDCCH */
1821 RSL.send(ts_ASP_RSL_UD(
1822 ts_RSL_CONN_FAIL_IND(g_chan_nr, RSL_ERR_RADIO_LINK_FAIL),
1823 IPAC_PROTO_RSL_TRX0));
1824
Neels Hofmeyr58be48a2021-09-07 18:39:21 +02001825 f_sleep(1.0);
1826
Oliver Smithaf03bef2021-08-24 15:34:51 +02001827 /* Expect stats to be 1 */
1828 expect := {
1829 {name := "TTCN3.bts.0.chan.rf_fail", mtype := "c", min := 1, max := 1},
1830 {name := "TTCN3.bts.0.chan.rf_fail_sdcch", mtype := "c", min := 1, max := 1}
1831 };
1832 f_statsd_expect(expect);
1833}
1834testcase TC_stats_conn_fail() runs on test_CT {
1835 var TestHdlrParams pars := f_gen_test_hdlr_pars();
1836 var MSC_ConnHdlr vc_conn;
1837
1838 f_init(1, true);
1839 f_sleep(1.0);
1840
1841 vc_conn := f_start_handler(refers(f_TC_stats_conn_fail), pars);
1842 vc_conn.done;
1843
1844 f_shutdown_helper();
1845}
1846
Neels Hofmeyrf44ccd12018-11-05 19:15:23 +01001847function f_expect_chan_rel(integer bts_nr, RslChannelNr rsl_chan_nr,
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001848 boolean expect_deact_sacch := true,
1849 boolean expect_rr_chan_rel := true,
1850 boolean expect_rll_rel_req := true,
Harald Welte99787102019-02-04 10:41:36 +01001851 boolean handle_rll_rel := true,
Pau Espin Pedrol36bd4fa2021-04-15 13:00:24 +02001852 template CellSelIndValue expect_cells := omit,
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02001853 template RR_Cause expect_rr_cause := ?
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001854 ) runs on test_CT {
Harald Welte91d54a52018-01-28 15:35:07 +01001855
1856 var RslLinkId main_dcch := valueof(ts_RslLinkID_DCCH(0));
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001857 var boolean got_deact_sacch := false;
1858 var boolean got_rr_chan_rel := false;
1859 var boolean got_rll_rel_req := false;
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02001860 var ASP_RSL_Unitdata ud;
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02001861 var RSL_IE_Body l3_ie;
1862 var PDU_ML3_NW_MS l3;
1863 var RR_Cause got_cause;
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001864 log("f_expect_chan_rel() expecting: expect_deact_sacch=", expect_deact_sacch, " expect_rr_chan_rel=", expect_rr_chan_rel,
1865 " expect_rll_rel_req=", expect_rll_rel_req);
Harald Welte91d54a52018-01-28 15:35:07 +01001866 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001867 [] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(tr_RSL_DEACT_SACCH(rsl_chan_nr))) {
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001868 got_deact_sacch := true;
Harald Welte91d54a52018-01-28 15:35:07 +01001869 repeat;
1870 }
Pau Espin Pedrol841b90d2021-04-15 16:42:52 +02001871 [not istemplatekind(expect_cells, "omit")] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(tr_RSL_DATA_REQ(rsl_chan_nr, ?, decmatch tr_RRM_RR_RELEASE_CellSelectInd))) -> value ud {
Harald Welte99787102019-02-04 10:41:36 +01001872 got_rr_chan_rel := true;
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02001873
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02001874 if (f_rsl_find_ie(ud.rsl, RSL_IE_L3_INFO, l3_ie) == false) {
1875 setverdict(fail, "cannot find L3");
1876 mtc.stop;
1877 }
1878 l3 := dec_PDU_ML3_NW_MS(l3_ie.l3_info.payload);
1879
Pau Espin Pedrol36bd4fa2021-04-15 13:00:24 +02001880 if (not istemplatekind(expect_cells, "omit")) {
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02001881 var CellSelIndValue cells := dec_CellSelIndValue(
1882 l3.msgs.rrm.channelRelease.cellSelectionIndicator.cellSelectionIndicatorValue);
1883
Pau Espin Pedrol36bd4fa2021-04-15 13:00:24 +02001884 log("GOT RR CHANNEL RELEASE WITH CELLS: ", cells);
1885 if (match(cells, expect_cells)) {
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02001886 setverdict(pass);
1887 } else {
Pau Espin Pedrol36bd4fa2021-04-15 13:00:24 +02001888 log("EXPECTED CELLS: ", expect_cells);
1889 setverdict(fail, "Received cells list on RR Channel Release does not match expectations");
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02001890 }
1891 }
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02001892
1893 if (not istemplatekind(expect_rr_cause, "omit")) {
1894 int2enum(oct2int(l3.msgs.rrm.channelRelease.rRCause.valuePart), got_cause);
1895 log("GOT CAUSE CODE: ", l3.msgs.rrm.channelRelease.rRCause.valuePart, " = ", got_cause);
1896 if (match(got_cause, expect_rr_cause)) {
1897 setverdict(pass);
1898 } else {
1899 log("EXPECTED CAUSE CODE: ", expect_rr_cause);
1900 setverdict(fail, "Received RR Channel Release Cause code does not match expectations");
1901 }
1902 }
Harald Welte99787102019-02-04 10:41:36 +01001903 repeat;
1904 }
Pau Espin Pedrol841b90d2021-04-15 16:42:52 +02001905 [istemplatekind(expect_cells, "omit")] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(tr_RSL_DATA_REQ(rsl_chan_nr, ?, decmatch tr_RRM_RR_RELEASE))) -> value ud {
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001906 got_rr_chan_rel := true;
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02001907
1908 if (not istemplatekind(expect_rr_cause, "omit")) {
1909 if (f_rsl_find_ie(ud.rsl, RSL_IE_L3_INFO, l3_ie) == false) {
1910 setverdict(fail, "cannot find L3");
1911 mtc.stop;
1912 }
1913 l3 := dec_PDU_ML3_NW_MS(l3_ie.l3_info.payload);
1914
1915 int2enum(oct2int(l3.msgs.rrm.channelRelease.rRCause.valuePart), got_cause);
1916 log("GOT CAUSE CODE: ", l3.msgs.rrm.channelRelease.rRCause.valuePart, " = ", got_cause);
1917 if (match(got_cause, expect_rr_cause)) {
1918 setverdict(pass);
1919 } else {
1920 log("EXPECTED CAUSE CODE: ", expect_rr_cause);
1921 setverdict(fail, "Received RR Channel Release Cause code does not match expectations");
1922 }
1923 }
Neels Hofmeyr211169d2018-11-07 00:37:29 +01001924 repeat;
1925 }
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001926 [] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(tr_RSL_REL_REQ(rsl_chan_nr, ?))) {
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001927 got_rll_rel_req := true;
Harald Welte91d54a52018-01-28 15:35:07 +01001928 /* FIXME: Why are we getting this for LinkID SACCH? */
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001929 if (handle_rll_rel) {
1930 f_ipa_tx(0, ts_RSL_REL_CONF(rsl_chan_nr, main_dcch));
1931 }
Harald Welte91d54a52018-01-28 15:35:07 +01001932 repeat;
1933 }
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001934 [] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(tr_RSL_MsgTypeD(RSL_MT_RF_CHAN_REL))) {
Harald Welte91d54a52018-01-28 15:35:07 +01001935 /* respond with CHAN REL ACK */
1936 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(rsl_chan_nr));
1937 }
1938 /* ignore any user data */
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001939 [] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(tr_RSL_MsgTypeR(?))) {
Harald Welte91d54a52018-01-28 15:35:07 +01001940 repeat;
1941 }
1942 }
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001943
1944 log("f_expect_chan_rel() summary: got_deact_sacch=", got_deact_sacch, " got_rr_chan_rel=", got_rr_chan_rel,
1945 " got_rll_rel_req=", got_rll_rel_req);
1946
1947 if (expect_deact_sacch != got_deact_sacch) {
1948 setverdict(fail, "f_expect_chan_rel(): expect_deact_sacch=", expect_deact_sacch, " got_deact_sacch=", got_deact_sacch);
1949 }
1950 if (expect_rr_chan_rel != got_rr_chan_rel) {
1951 setverdict(fail, "f_expect_chan_rel(): expect_rr_chan_rel=", expect_rr_chan_rel, " got_rr_chan_rel=", got_rr_chan_rel);
1952 }
1953 if (expect_rll_rel_req != got_rll_rel_req) {
1954 setverdict(fail, "f_expect_chan_rel(): expect_rll_rel_req=", expect_rll_rel_req, " got_rll_rel_req=", got_rll_rel_req);
1955 }
Harald Welte91d54a52018-01-28 15:35:07 +01001956}
1957
Harald Welte4003d112017-12-09 22:35:39 +01001958/* Test behavior of channel release after hard Clear Command from MSC */
1959testcase TC_chan_rel_hard_clear() runs on test_CT {
1960 var BSSAP_N_DATA_ind rx_di;
Harald Welte4003d112017-12-09 22:35:39 +01001961 var DchanTuple dt;
Harald Welte4003d112017-12-09 22:35:39 +01001962
Harald Welte89d42e82017-12-17 16:42:41 +01001963 f_init(1);
Harald Welte4003d112017-12-09 22:35:39 +01001964
1965 dt := f_est_dchan('23'O, 23, '00010203040506'O);
1966
1967 /* Instruct BSC to clear channel */
1968 var BssmapCause cause := 0;
1969 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
1970
1971 /* expect Clear Complete from BSC on A */
1972 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete)) {
1973 /* release the SCCP connection */
1974 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
1975 }
1976
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001977 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001978 f_shutdown_helper();
Harald Welte4003d112017-12-09 22:35:39 +01001979}
1980
Pau Espin Pedrol841b90d2021-04-15 16:42:52 +02001981function f_TC_chan_rel_last_eutran_plmn_hard_clear(boolean tx_csfb_ind) runs on test_CT {
1982 var BSSAP_N_DATA_ind rx_di;
1983 var DchanTuple dt;
1984
1985 f_init(1);
1986
1987 dt := f_est_dchan('23'O, 23, '00010203040506'O);
1988 /* Send CommonID with some random PLMN (BSC doesn't take it into account
1989 /* yet when generating the EUTRAN neigh list in RR CHannel Release) */
1990 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_CommonId('001019876543210'H, '323454'O)));
1991
1992 /* Instruct BSC to clear channel */
1993 var BssmapCause cause := 0;
1994 if (tx_csfb_ind) {
1995 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommandCSFB(cause)));
1996 } else {
1997 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
1998 }
1999
2000 /* expect Clear Complete from BSC on A */
2001 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete)) {
2002 /* release the SCCP connection */
2003 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2004 }
2005
2006 /* 1 neighbor is added by default in osmo-bts.cfg and
2007 SystemInformationConfig_default, use that: */
2008 var template CellSelIndValue exp_cells := f_tr_rr_chan_rel_earfcns(1);
2009
2010 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false, expect_cells := exp_cells);
2011 f_shutdown_helper();
2012}
2013
2014/* Test behavior of RR Channel rRelease after Clear Command without CSFB indicator
2015 from MSC, previously receiving any CommonID containing the "Last Used E-UTRAN
2016 PLMN Id". According to spec (3GPP TS 48.008 sec 3.1.30) that's the bit requesting
2017 EUTRAN neighbor list sent later on by BSC in RR Channel, so receiving CSFB
2018 Indicator or not shouldn't matter at all. */
2019testcase TC_chan_rel_last_eutran_plmn_hard_clear_no_csfb() runs on test_CT {
2020 f_TC_chan_rel_last_eutran_plmn_hard_clear(false);
2021}
2022
2023/* Test behavior of RR Channel rRelease after Clear Command with CSFB indicator from
2024 MSC, previously receiving any CommonID containing the "Last Used E-UTRAN PLMN
2025 Id". According to spec (3GPP TS 48.008 sec 3.1.30) that's the bit requesting
2026 EUTRAN neighbor list sent later on by BSC in RR Channel. */
2027testcase TC_chan_rel_last_eutran_plmn_hard_clear_csfb() runs on test_CT {
2028 f_TC_chan_rel_last_eutran_plmn_hard_clear(true);
2029}
2030
2031/* Test behavior of RR Channel Release after Clear Command with CSFB indicator from
2032 MSC, without receiving any CommonID containing the "Last Used E-UTRAN PLMN
2033 Id". According to spec (TS 48.008 version 16.0.0 Release 16 "3.2.1.21") the
2034 CSFB Indicator should not be used anymore, and hence, there should be no
2035 EUTRAN neighbor list sent by BSC in RR Channel release since no CommonId with
2036 Last Used E-UTRAN PLMN Id" IE was sent for this conn. */
Harald Welte99787102019-02-04 10:41:36 +01002037testcase TC_chan_rel_hard_clear_csfb() runs on test_CT {
2038 var BSSAP_N_DATA_ind rx_di;
2039 var DchanTuple dt;
2040
2041 f_init(1);
2042
2043 dt := f_est_dchan('23'O, 23, '00010203040506'O);
2044
2045 /* Instruct BSC to clear channel */
2046 var BssmapCause cause := 0;
2047 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommandCSFB(cause)));
2048
2049 /* expect Clear Complete from BSC on A */
2050 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete)) {
2051 /* release the SCCP connection */
2052 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2053 }
2054
Pau Espin Pedrol841b90d2021-04-15 16:42:52 +02002055 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002056 f_shutdown_helper();
Harald Welte99787102019-02-04 10:41:36 +01002057}
2058
Harald Welted8c36cd2017-12-09 23:05:31 +01002059/* Test behavior of channel release after hard RLSD from MSC */
2060testcase TC_chan_rel_hard_rlsd() runs on test_CT {
Harald Welted8c36cd2017-12-09 23:05:31 +01002061 var DchanTuple dt;
Harald Welted8c36cd2017-12-09 23:05:31 +01002062
Harald Welte89d42e82017-12-17 16:42:41 +01002063 f_init(1);
Harald Welted8c36cd2017-12-09 23:05:31 +01002064
2065 dt := f_est_dchan('23'O, 23, '00010203040506'O);
2066
2067 /* release the SCCP connection */
2068 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2069
Neels Hofmeyra5302c82018-11-04 23:09:58 +01002070 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002071 f_shutdown_helper();
Harald Welted8c36cd2017-12-09 23:05:31 +01002072}
2073
Harald Welte550daf92018-06-11 19:22:13 +02002074/* Test behavior of channel release after hard RLSD from MSC and MS is not responding to RLL REL REQ */
2075testcase TC_chan_rel_hard_rlsd_ms_dead() runs on test_CT {
2076 var DchanTuple dt;
2077
2078 f_init(1);
2079
2080 dt := f_est_dchan('23'O, 23, '00010203040506'O);
2081
2082 /* release the SCCP connection */
2083 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2084
Neels Hofmeyra5302c82018-11-04 23:09:58 +01002085 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002086 f_shutdown_helper();
Harald Welte550daf92018-06-11 19:22:13 +02002087}
2088
Harald Welte85804d42017-12-10 14:11:58 +01002089/* Test behavior of channel release after BSSMAP RESET from MSC */
2090testcase TC_chan_rel_a_reset() runs on test_CT {
Harald Welte85804d42017-12-10 14:11:58 +01002091 var DchanTuple dt;
Harald Welte85804d42017-12-10 14:11:58 +01002092
Harald Welte89d42e82017-12-17 16:42:41 +01002093 f_init(1);
Harald Welte85804d42017-12-10 14:11:58 +01002094
2095 dt := f_est_dchan('23'O, 23, '00010203040506'O);
2096
2097 /* Clear the queue, it might still contain stuff like IMMEDIATE ASSIGN */
2098 IPA_RSL[0].clear;
2099
2100 /* perform BSSAP RESET, expect RESET ACK and DISC.ind on connection */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02002101 BSSAP.send(ts_BSSAP_UNITDATA_req(g_bssap[0].sccp_addr_peer, g_bssap[0].sccp_addr_own, ts_BSSMAP_Reset(0, g_osmux_enabled)));
Harald Welte85804d42017-12-10 14:11:58 +01002102 interleave {
Neels Hofmeyrf246a922020-05-13 02:27:10 +02002103 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(g_bssap[0].sccp_addr_own, g_bssap[0].sccp_addr_peer, tr_BSSMAP_ResetAck(g_osmux_enabled))) { }
Harald Welte85804d42017-12-10 14:11:58 +01002104 [] BSSAP.receive(tr_BSSAP_DISC_ind(dt.sccp_conn_id, ?, ?)) { }
2105 }
2106
Neels Hofmeyra5302c82018-11-04 23:09:58 +01002107 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002108 f_shutdown_helper();
Harald Welte85804d42017-12-10 14:11:58 +01002109}
2110
Pau Espin Pedrolc675b612020-01-09 19:55:40 +01002111/* Verify T(iar) triggers and releases the channel */
2112testcase TC_chan_rel_sccp_tiar_timeout() runs on test_CT {
2113 var DchanTuple dt;
2114
2115 /* Set T(iar) in BSC low enough that it will trigger before other side
2116 has time to keep alive with a T(ias). Keep recommended ratio of
2117 T(iar) >= T(ias)*2 */
2118 g_bsc_sccp_timer_ias := 2;
2119 g_bsc_sccp_timer_iar := 5;
2120
2121 f_init(1);
2122
2123 dt := f_est_dchan('23'O, 23, '00010203040506'O);
2124 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002125 f_shutdown_helper();
Pau Espin Pedrolc675b612020-01-09 19:55:40 +01002126}
2127
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02002128private function f_tc_chan_rel_rr_cause(myBSSMAP_Cause clear_cmd_cause, template RR_Cause expect_rr_cause)
2129runs on test_CT
2130{
2131 var DchanTuple dt;
2132
2133 dt := f_est_dchan('23'O, 23, '00010203040506'O);
2134 var BssmapCause cause := 0;
2135 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(enum2int(clear_cmd_cause))));
2136 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete)) {
2137 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2138 }
2139
2140 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false, expect_rr_cause := expect_rr_cause);
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02002141}
2142
2143/* Test that Clear Command cause codes affect the RR Channel Release cause code */
2144testcase TC_chan_rel_rr_cause() runs on test_CT {
2145 f_init(1);
2146
2147 f_tc_chan_rel_rr_cause(GSM0808_CAUSE_CALL_CONTROL, GSM48_RR_CAUSE_NORMAL);
2148 f_tc_chan_rel_rr_cause(GSM0808_CAUSE_HANDOVER_SUCCESSFUL, GSM48_RR_CAUSE_NORMAL);
2149 f_tc_chan_rel_rr_cause(GSM0808_CAUSE_PREEMPTION, GSM48_RR_CAUSE_PREMPTIVE_REL);
2150 f_tc_chan_rel_rr_cause(GSM0808_CAUSE_RADIO_INTERFACE_MESSAGE_FAILURE, GSM48_RR_CAUSE_PROT_ERROR_UNSPC);
2151 f_tc_chan_rel_rr_cause(GSM0808_CAUSE_RADIO_INTERFACE_FAILURE, GSM48_RR_CAUSE_ABNORMAL_UNSPEC);
2152 f_tc_chan_rel_rr_cause(GSM0808_CAUSE_EQUIPMENT_FAILURE, GSM48_RR_CAUSE_ABNORMAL_UNSPEC);
Vadim Yanitskiye18aebb2021-01-03 13:10:43 +01002153
2154 f_shutdown_helper();
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02002155}
2156
Harald Welte5cd20ed2017-12-13 21:03:20 +01002157/* Test behavior if RSL EST IND for non-active channel */
2158testcase TC_rll_est_ind_inact_lchan() runs on test_CT {
2159 timer T := 2.0;
2160
Harald Welte89d42e82017-12-17 16:42:41 +01002161 f_init(1);
Harald Welte5cd20ed2017-12-13 21:03:20 +01002162
2163 var octetstring l3 := '00010203040506'O;
2164 var RslChannelNr chan_nr := valueof(t_RslChanNr_Bm(6));
2165 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
2166
2167 T.start;
2168 alt {
2169 [] BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) {
2170 setverdict(fail, "MSC received COMPL L3 for non-active lchan");
2171 }
2172 [] BSSAP.receive {}
2173 [] IPA_RSL[0].receive {}
2174 [] T.timeout {}
2175 }
2176
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002177 f_shutdown_helper();
Harald Welte5cd20ed2017-12-13 21:03:20 +01002178}
2179
2180/* Test behavior if RSL EST IND for invalid SAPI */
2181testcase TC_rll_est_ind_inval_sapi1() runs on test_CT {
2182 var RslChannelNr chan_nr;
2183
Harald Welte89d42e82017-12-17 16:42:41 +01002184 f_init(1);
Harald Welte5cd20ed2017-12-13 21:03:20 +01002185
2186 chan_nr := f_chreq_act_ack()
2187
2188 var octetstring l3 := '00010203040506'O;
2189 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(1)), l3));
2190
2191 timer T := 2.0;
2192 T.start;
2193 alt {
2194 [] BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) {
2195 setverdict(fail, "MSC received COMPL L3 for invalid SAPI 1");
2196 }
2197 [] BSSAP.receive { repeat; }
2198 [] IPA_RSL[0].receive { repeat; }
2199 [] T.timeout {}
2200 }
2201
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002202 f_shutdown_helper();
Harald Welte5cd20ed2017-12-13 21:03:20 +01002203}
2204
2205/* Test behavior if RSL EST IND for invalid SAPI */
2206testcase TC_rll_est_ind_inval_sapi3() runs on test_CT {
2207 timer T := 2.0;
2208
Harald Welte89d42e82017-12-17 16:42:41 +01002209 f_init(1);
Harald Welte5cd20ed2017-12-13 21:03:20 +01002210
2211 var RslChannelNr chan_nr := f_chreq_act_ack();
2212
2213 var octetstring l3 := '00010203040506'O;
2214 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(3)), l3));
2215
2216 T.start;
2217 alt {
2218 [] BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) {
2219 setverdict(fail, "MSC received COMPL L3 for invalid SAPI 3");
2220 }
2221 [] BSSAP.receive { repeat; }
2222 [] IPA_RSL[0].receive { repeat; }
2223 [] T.timeout {}
2224 }
2225
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002226 f_shutdown_helper();
Harald Welte5cd20ed2017-12-13 21:03:20 +01002227}
2228
2229/* Test behavior if RSL EST IND for invalid SACCH */
2230testcase TC_rll_est_ind_inval_sacch() runs on test_CT {
2231 timer T := 2.0;
2232
Harald Welte89d42e82017-12-17 16:42:41 +01002233 f_init(1);
Harald Welte5cd20ed2017-12-13 21:03:20 +01002234
2235 var RslChannelNr chan_nr := f_chreq_act_ack();
2236
2237 var octetstring l3 := '00010203040506'O;
2238 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_SACCH(0)), l3));
2239
2240 T.start;
2241 alt {
2242 [] BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) {
2243 setverdict(fail, "MSC received COMPL L3 for invalid Link SACCH");
2244 }
2245 [] BSSAP.receive { repeat; }
2246 [] IPA_RSL[0].receive { repeat; }
2247 [] T.timeout {}
2248 }
2249
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002250 f_shutdown_helper();
Harald Welte5cd20ed2017-12-13 21:03:20 +01002251}
2252
Vadim Yanitskiy61f784a2020-10-01 21:12:19 +07002253/* Verify DLCI / RSL Link ID conversion for MO/MT messages on SAPI0/SAPI3 */
2254private function f_TC_tch_dlci_link_id_sapi(charstring id) runs on MSC_ConnHdlr {
2255 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
2256 var PDU_BSSAP ass_cmd := f_gen_ass_req();
2257
2258 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
2259 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
2260
2261 f_establish_fully(ass_cmd, exp_compl);
2262
2263 /* SAPI0 has already been established by f_establish_fully(), establish SAPI3 */
2264 RSL.send(ts_RSL_EST_IND(g_chan_nr, ts_RslLinkID_SACCH(3), '0904'O));
2265 /* Expect BSSAP/DTAP on SAPI3 (DLCI IE) */
2266 BSSAP.receive(PDU_BSSAP:{
2267 discriminator := '1'B,
2268 spare := '0000000'B,
2269 dlci := 'C3'O,
2270 lengthIndicator := ?,
2271 pdu := { dtap := '0904'O }
2272 });
2273
2274 /* Send messages on DCCH/SAPI0 and ACCH/SAPI3 */
2275 for (var integer i := 0; i < 32; i := i + 1) {
2276 var octetstring l3 := '09'O & f_rnd_octstring(14);
2277 var template (value) RslLinkId link_id;
2278 var template (value) OCT1 dlci;
2279
2280 if (i mod 2 == 0) {
2281 /* SAPI0 on FACCH or SDCCH */
2282 link_id := ts_RslLinkID_DCCH(0);
2283 dlci := '80'O;
2284 } else {
2285 /* SAPI3 on SACCH */
2286 link_id := ts_RslLinkID_SACCH(3);
2287 dlci := 'C3'O;
2288 }
2289
2290 /* Send MO message: RSL -> BSSAP */
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00002291 f_mo_l3_transceive(RSL, link_id, dlci, l3);
Vadim Yanitskiy61f784a2020-10-01 21:12:19 +07002292 /* Send MT message: BSSAP -> RSL */
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00002293 f_mt_l3_transceive(RSL, link_id, dlci, l3);
Vadim Yanitskiy61f784a2020-10-01 21:12:19 +07002294 }
2295}
2296testcase TC_tch_dlci_link_id_sapi() runs on test_CT {
2297 var TestHdlrParams pars := f_gen_test_hdlr_pars();
2298 var MSC_ConnHdlr vc_conn;
2299
2300 f_init(1, true);
2301 f_sleep(1.0);
2302
2303 vc_conn := f_start_handler(refers(f_TC_tch_dlci_link_id_sapi), pars);
2304 vc_conn.done;
2305
2306 f_shutdown_helper();
2307}
2308
Vadim Yanitskiy6ef5dfa2020-08-28 18:04:41 +07002309private function f_exp_sapi_n_reject(template (present) GsmSapi sapi := ?,
2310 template myBSSMAP_Cause cause := ?,
2311 float T_val := 2.0)
2312runs on test_CT {
2313 var BSSAP_N_DATA_ind rx_di;
2314 timer T;
2315
2316 var template BSSMAP_IE_Cause tr_cause := tr_BSSMAP_IE_Cause(cause);
2317 var template PDU_BSSAP tr_pdu := tr_BSSMAP_SAPInReject(sapi);
2318
2319 T.start(T_val);
2320 alt {
2321 [] BSSAP.receive(tr_BSSAP_DATA_ind(?, tr_pdu)) -> value rx_di {
2322 var BSSMAP_IE_Cause rx_cause := rx_di.userData.pdu.bssmap.sAPInReject.cause;
2323 if (not match(rx_cause, tr_cause)) {
2324 setverdict(fail, "Rx unexpected Cause IE: ",
2325 rx_cause, " vs expected ", tr_cause);
2326 }
2327 setverdict(pass);
2328 }
2329 [] BSSAP.receive(BSSAP_N_DATA_ind:?) -> value rx_di {
2330 setverdict(fail, "Rx unexpected BSSAP PDU: ", rx_di);
2331 }
2332 [] T.timeout {
2333 setverdict(fail, "Timeout waiting for BSSMAP SAPI N Reject");
2334 }
2335 }
2336}
2337
2338/* Check if we get SAPI N Reject on receipt of unexpected RLL RELease INDication */
2339testcase TC_rll_rel_ind_sapi_n_reject() runs on test_CT {
2340 var octetstring rnd_data := f_rnd_octstring(16);
2341 var RSL_Message rx_rsl;
2342 var DchanTuple dt;
2343
2344 f_init(1);
2345
2346 /* MS establishes a SAPI=0 link on DCCH */
2347 dt := f_est_dchan(f_rnd_ra_cs(), 23, rnd_data);
2348
2349 /* MSC sends some data on (not yet established) SAPI=3 link */
2350 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSAP_DTAP(rnd_data, '03'O)));
2351 /* BSC attempts to establish a SAPI=3 link on DCCH */
2352 rx_rsl := f_exp_ipa_rx(0, tr_RSL_EST_REQ(dt.rsl_chan_nr, tr_RslLinkID_DCCH(3)));
2353
2354 /* MS sends unexpected RELease INDication on SAPI=3 */
2355 f_ipa_tx(0, ts_RSL_REL_IND(dt.rsl_chan_nr, ts_RslLinkID_DCCH(3)));
2356 /* We expect to receive BSSMAP SAPI N Reject message from the BSC */
2357 f_exp_sapi_n_reject(3, GSM0808_CAUSE_MS_NOT_EQUIPPED);
2358
2359 /* Clean up the connection */
2360 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2361 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
2362
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002363 f_shutdown_helper();
Vadim Yanitskiy6ef5dfa2020-08-28 18:04:41 +07002364}
2365
2366/* Check if we get SAPI N Reject on receipt of unexpected RLL ERROR INDication */
2367testcase TC_rll_err_ind_sapi_n_reject() runs on test_CT {
2368 var octetstring rnd_data := f_rnd_octstring(16);
2369 var RSL_Message rx_rsl;
2370 var DchanTuple dt;
2371
2372 f_init(1);
2373
2374 /* MS establishes a SAPI=0 link on DCCH */
2375 dt := f_est_dchan(f_rnd_ra_cs(), 23, rnd_data);
2376
2377 /* MSC sends some data on (not yet established) SAPI=3 link */
2378 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSAP_DTAP(rnd_data, '03'O)));
2379 /* BSC attempts to establish a SAPI=3 link on DCCH */
2380 rx_rsl := f_exp_ipa_rx(0, tr_RSL_EST_REQ(dt.rsl_chan_nr, tr_RslLinkID_DCCH(3)));
2381
2382 /* BTS sends unexpected ERROR INDication on SAPI=3 */
2383 f_ipa_tx(0, ts_RSL_ERROR_IND(dt.rsl_chan_nr, ts_RslLinkID_DCCH(3), ''O));
2384 /* We expect to receive BSSMAP SAPI N Reject message from the BSC */
2385 f_exp_sapi_n_reject(3, GSM0808_CAUSE_BSS_NOT_EQUIPPED);
2386
2387 /* Clean up the connection */
2388 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2389 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
2390
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002391 f_shutdown_helper();
Vadim Yanitskiy6ef5dfa2020-08-28 18:04:41 +07002392}
2393
2394/* Check if we get SAPI N Reject due to a SAPI=3 link establishment timeout */
2395testcase TC_rll_timeout_sapi_n_reject() runs on test_CT {
2396 var octetstring rnd_data := f_rnd_octstring(16);
2397 var RSL_Message rx_rsl;
2398 var DchanTuple dt;
2399
2400 f_init(1);
2401
2402 /* MS establishes a SAPI=0 link on DCCH */
2403 dt := f_est_dchan(f_rnd_ra_cs(), 23, rnd_data);
2404
2405 /* MSC sends some data on (not yet established) SAPI=3 link */
2406 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSAP_DTAP(rnd_data, '03'O)));
2407 /* BSC attempts to establish a SAPI=3 link on DCCH */
2408 rx_rsl := f_exp_ipa_rx(0, tr_RSL_EST_REQ(dt.rsl_chan_nr, tr_RslLinkID_DCCH(3)));
2409
2410 /* MS does not respond, so the link establishment timeout triggers SAPI N Reject */
2411 f_exp_sapi_n_reject(3, GSM0808_CAUSE_BSS_NOT_EQUIPPED, T_val := 8.0);
2412
2413 /* Clean up the connection */
2414 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2415 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
2416
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002417 f_shutdown_helper();
Vadim Yanitskiy6ef5dfa2020-08-28 18:04:41 +07002418}
2419
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +02002420testcase TC_si_default() runs on test_CT {
2421 f_init(0);
2422 f_init_bts_and_check_sysinfo(0, expect_si := SystemInformationConfig_default);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002423 f_shutdown_helper();
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +02002424}
Harald Welte4003d112017-12-09 22:35:39 +01002425
Neels Hofmeyr56f24782020-07-09 00:50:49 +02002426/* We're testing SI2quater with lists of EARFCNs. Instead of just incrementing EARFCNs, also pick some from the edges of
2427 * the entire value range. This function provides the same EARFCN numbers for the same earfcn_index */
2428private function f_test_si2quater_earfcn_by_idx(integer earfcn_index) return uint16_t
2429{
2430 select (earfcn_index) {
2431 case (0) {
2432 /* E-ARFCN 111 is already added in the osmo-bsc.cfg */
2433 return 111;
2434 }
2435 case (1) {
2436 return 1;
2437 }
2438 case (2) {
2439 return 0;
2440 }
2441 case (3) {
2442 return 65535;
2443 }
2444 case else {
2445 return 23 * (earfcn_index - 3);
2446 }
2447 }
2448}
2449
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002450function f_test_si2quater(integer total_earfcns, template SystemInformationConfig expect_si,
2451 template CellSelIndValue expect_cells := omit) runs on test_CT {
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002452
2453 f_init(0);
2454
2455 /* E-ARFCN 111 is already added in the osmo-bsc.cfg, so only add more arfcns if total_earfcns > 1 */
2456 for (var integer i := 1; i < total_earfcns; i := i + 1) {
Neels Hofmeyr56f24782020-07-09 00:50:49 +02002457 f_bts_0_cfg(BSCVTY, {"si2quater neighbor-list add earfcn " & int2str(f_test_si2quater_earfcn_by_idx(i))
2458 & " thresh-hi 20 thresh-lo 10 prio 3 qrxlv 22 meas 3"});
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002459 }
2460
2461 f_init_bts_and_check_sysinfo(0, expect_si := expect_si);
2462
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002463 if (not istemplatekind(expect_cells, "omit")) {
2464 /* Also check that RR Channel Release contains these EARFCNs.
2465 * (copied code from TC_chan_rel_hard_clear_csfb) */
2466 var BSSAP_N_DATA_ind rx_di;
2467 var DchanTuple dt;
2468
2469 dt := f_est_dchan('23'O, 23, '00010203040506'O);
Pau Espin Pedrold0046312021-04-19 16:35:58 +02002470 /* Send CommonID with some random PLMN (BSC doesn't take it into account
2471 * yet when generating the EUTRAN neigh list in RR CHannel Release) */
2472 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_CommonId('001019876543210'H, '323454'O)));
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002473
2474 /* Instruct BSC to clear channel */
2475 var BssmapCause cause := 0;
2476 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommandCSFB(cause)));
2477
2478 /* expect Clear Complete from BSC on A */
2479 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete)) {
2480 /* release the SCCP connection */
2481 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2482 }
2483
Pau Espin Pedrol841b90d2021-04-15 16:42:52 +02002484 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false, expect_cells := expect_cells);
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002485 }
2486
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002487 for (var integer i := 1; i < total_earfcns; i := i + 1) {
Neels Hofmeyr56f24782020-07-09 00:50:49 +02002488 f_bts_0_cfg(BSCVTY, {"si2quater neighbor-list del earfcn " & int2str(f_test_si2quater_earfcn_by_idx(i))});
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002489 }
2490}
2491
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002492private function f_tr_si2quater_earfcns(integer count) return template SI2quaterRestOctetsList
2493{
2494 var template SI2quaterRestOctetsList si2quater := {};
2495 var integer si2quater_count := (count + 2) / 3;
2496
2497 for (var integer i := 0; i < count; i := i + 1) {
Neels Hofmeyr56f24782020-07-09 00:50:49 +02002498 var integer earfcn := f_test_si2quater_earfcn_by_idx(i);
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002499 var integer index := i / 3;
2500 var integer earfcn_index := i mod 3;
2501 if (index >= lengthof(si2quater)) {
2502 si2quater[index] := tr_SI2quaterRestOctets_EUTRAN(index := index, count := si2quater_count - 1);
2503 }
2504 si2quater[index].rel_additions.rel5.rel6.rel7.rel8.prio_eutran_params_desc.desc.eutran_params_desc.desc.repeated_neigh_cells[0].cell_desc_list[earfcn_index] := tr_EUTRAN_CellDesc_default(e_arfcn := earfcn);
2505 }
2506
2507 return si2quater;
2508}
2509
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002510private function f_tr_rr_chan_rel_earfcns(integer count) return template CellSelIndValue
2511{
2512 var template CellSelIndValue_EUTRAN_Descrs cells := {};
2513
Alexander Couzensf74b5cb2020-09-10 22:28:40 +02002514 /* the lte neighbors must match the config & vty to pass this test */
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002515 for (var integer i := 0; i < count; i := i + 1) {
2516 var integer earfcn := f_test_si2quater_earfcn_by_idx(i);
Alexander Couzensf74b5cb2020-09-10 22:28:40 +02002517 cells[i] := tr_CellSelIndValue_EUTRAN_Descr(earfcn, '1'B, 3);
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002518 }
2519
2520 return tr_CellSelIndValue_EUTRAN(cells);
2521}
2522
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002523private function f_tc_si2quater_n_earfcns(integer n) runs on test_CT
2524{
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002525 var template SystemInformationConfig sic := SystemInformationConfig_default;
Pau Espin Pedrol8ab62e42020-12-18 16:19:11 +01002526 sic.si2quater := f_tr_si2quater_earfcns(n);
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002527 var template CellSelIndValue cells := f_tr_rr_chan_rel_earfcns(n);
2528 f_test_si2quater(n, sic, cells);
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002529}
2530
2531testcase TC_si2quater_2_earfcns() runs on test_CT {
2532 f_tc_si2quater_n_earfcns(2);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002533 f_shutdown_helper();
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002534}
2535
2536testcase TC_si2quater_3_earfcns() runs on test_CT {
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002537 f_tc_si2quater_n_earfcns(3);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002538 f_shutdown_helper();
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002539}
2540
2541testcase TC_si2quater_4_earfcns() runs on test_CT {
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002542 f_tc_si2quater_n_earfcns(4);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002543 f_shutdown_helper();
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002544}
2545
2546testcase TC_si2quater_5_earfcns() runs on test_CT {
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002547 f_tc_si2quater_n_earfcns(5);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002548 f_shutdown_helper();
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002549}
2550
2551testcase TC_si2quater_6_earfcns() runs on test_CT {
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002552 f_tc_si2quater_n_earfcns(6);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002553 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002554}
2555
2556testcase TC_si2quater_12_earfcns() runs on test_CT {
2557 f_tc_si2quater_n_earfcns(12);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002558 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002559}
2560
2561testcase TC_si2quater_23_earfcns() runs on test_CT {
2562 f_tc_si2quater_n_earfcns(23);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002563 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002564}
2565
2566testcase TC_si2quater_32_earfcns() runs on test_CT {
2567 f_tc_si2quater_n_earfcns(32);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002568 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002569}
2570
2571testcase TC_si2quater_33_earfcns() runs on test_CT {
2572 f_tc_si2quater_n_earfcns(33);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002573 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002574}
2575
2576testcase TC_si2quater_42_earfcns() runs on test_CT {
2577 f_tc_si2quater_n_earfcns(42);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002578 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002579}
2580
2581testcase TC_si2quater_48_earfcns() runs on test_CT {
2582 f_tc_si2quater_n_earfcns(48);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002583 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002584}
2585
2586/* verify the VTY error response when adding too many EARFCNs, and showing that osmo-bsc still sends 16 SI2quater with
2587 * 48 EARFCNs. */
2588testcase TC_si2quater_49_earfcns() runs on test_CT {
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002589 var template SystemInformationConfig sic := SystemInformationConfig_default;
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002590 sic.si2quater := f_tr_si2quater_earfcns(48); /* 48, not 49! */
2591 f_init(0);
2592
2593 for (var integer i := 1; i < 48; i := i + 1) {
Neels Hofmeyr56f24782020-07-09 00:50:49 +02002594 f_bts_0_cfg(BSCVTY, {"si2quater neighbor-list add earfcn " & int2str(f_test_si2quater_earfcn_by_idx(i))
2595 & " thresh-hi 20 thresh-lo 10 prio 3 qrxlv 22 meas 3"});
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002596 }
2597
2598 /* The 49th EARFCN no longer fits, expect VTY error */
2599 f_vty_enter_cfg_bts(BSCVTY, 0);
2600 var charstring vty_error;
2601 vty_error := f_vty_transceive_ret(BSCVTY,
2602 "si2quater neighbor-list add earfcn 70 thresh-hi 20 thresh-lo 10 prio 3 qrxlv 22 meas 3")
2603 f_vty_transceive(BSCVTY, "end");
2604
2605 if (f_strstr(vty_error, "Unable to add ARFCN 70") >= 0) {
2606 log("Got expected VTY error: ", vty_error);
2607 setverdict(pass);
2608 } else {
2609 setverdict(fail, "Expected the 49th EUTRAN ARFCN to be rejected by vty config, got: ", vty_error);
2610 }
2611
2612 f_init_bts_and_check_sysinfo(0, expect_si := sic);
2613
2614 for (var integer i := 1; i < 48; i := i + 1) {
Neels Hofmeyr56f24782020-07-09 00:50:49 +02002615 f_bts_0_cfg(BSCVTY, {"si2quater neighbor-list del earfcn " & int2str(f_test_si2quater_earfcn_by_idx(i))});
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002616 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002617 f_shutdown_helper();
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002618}
2619
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002620private function f_acc09_count_allowed(AccessControlClass acc) return uint8_t
2621{
2622 var uint8_t count := 0;
2623 for (var integer i := 5; i < 16; i := i + 1) {
2624 if (acc[i] == '0'B) { /* the list marks barred, we count allowed */
2625 count := count + 1;
2626 }
2627 }
2628 return count;
2629}
2630
Pau Espin Pedrolc6136cd2020-07-24 13:20:02 +02002631private function f_recv_next_si1(integer rsl_idx := 0) runs on test_CT return SystemInformationType1
2632{
2633 var ASP_RSL_Unitdata rx_rsl_ud;
2634 var SystemInformationType1 last_si1;
2635
2636 timer T := 30.0;
2637 T.start;
2638 alt {
2639 [] IPA_RSL[rsl_idx].receive(tr_ASP_RSL_UD((tr_RSL_NO_BCCH_INFO,
2640 tr_RSL_BCCH_INFO,
2641 tr_RSL_NO_SACCH_FILL,
2642 tr_RSL_SACCH_FILL))
2643 ) -> value rx_rsl_ud {
2644 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
2645 if (g_system_information[rsl_idx].si1 == omit) {
2646 repeat;
2647 }
2648 last_si1 := g_system_information[rsl_idx].si1;
2649 g_system_information[rsl_idx].si1 := omit;
2650 T.stop;
2651 }
Vadim Yanitskiy79ebd5e2021-01-04 00:12:55 +01002652 [] IPA_RSL[rsl_idx].receive { repeat; }
Pau Espin Pedrolc6136cd2020-07-24 13:20:02 +02002653 [] T.timeout { setverdict(fail, "Timeout receiving next SI1"); }
2654 }
2655 return last_si1;
2656}
2657
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002658/* verify ACC rotate feature */
2659testcase TC_si_acc_rotate() runs on test_CT {
2660 var template SystemInformationConfig sic := SystemInformationConfig_default;
Pau Espin Pedrolc6136cd2020-07-24 13:20:02 +02002661 var SystemInformationType1 last_si1;
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002662 var AccessControlClass acc;
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002663 var uint8_t count;
2664 var integer times_allowed[10] := { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
2665
2666 f_init(0, guard_timeout := 60.0);
2667
2668 f_bts_0_cfg(BSCVTY, {"rach access-control-class 5 barred",
2669 "access-control-class-rotate 3",
2670 "access-control-class-rotate-quantum 1"});
2671
2672 /* Init and get first sysinfo */
2673 f_init_bts_and_check_sysinfo(0, expect_si := ?);
2674
Pau Espin Pedrolc6136cd2020-07-24 13:20:02 +02002675 for (var integer i:= 0; i < 20; i := i + 1) {
2676 last_si1 := f_recv_next_si1(0);
2677 acc := last_si1.rach_control.acc;
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002678 count := f_acc09_count_allowed(acc);
2679 log("RSL: GOT SI1 ACC len=", count, ": ", acc);
2680
2681 if (count != 3) {
2682 log("RSL: EXPECTED SI ACC len=3");
2683 setverdict(fail, "received SI does not match expectations");
2684 break;
2685 }
2686
2687 for (var integer j := 0; j < 10; j := j + 1) {
2688 if (acc[16 - 1 - j] == '0'B) { /* the list marks barred, we count allowed */
2689 times_allowed[j] := times_allowed[j] + 1;
2690 }
2691 }
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002692 }
2693
2694 for (var integer j := 0; j < 10; j := j + 1) {
2695 log("ACC", j, " allowed ", times_allowed[j], " times" );
2696 if (j != 5 and times_allowed[j] < 3) {
2697 setverdict(fail, "ACC", j, " ERROR: allowed ", times_allowed[j], " < 1 times");
2698 } else if (j == 5 and times_allowed[j] > 0) {
2699 setverdict(fail, "ACC", j, " ERROR: allowed ", times_allowed[j], " > 0 times");
2700 }
2701 }
2702
2703 f_bts_0_cfg(BSCVTY, {"access-control-class-rotate 10",
2704 "rach access-control-class 5 allowed"});
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002705 f_shutdown_helper();
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002706}
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002707
Pau Espin Pedrolc6136cd2020-07-24 13:20:02 +02002708/* verify ACC startup ramp+rotate feature */
2709testcase TC_si_acc_ramp_rotate() runs on test_CT {
2710 var template SystemInformationConfig sic := SystemInformationConfig_default;
2711 var SystemInformationType1 last_si1;
2712 var AccessControlClass acc;
2713 var ASP_RSL_Unitdata rx_rsl_ud;
2714 var uint8_t count;
2715 var uint8_t prev_count;
2716 var integer times_allowed[10] := { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
2717
2718 f_init(0, guard_timeout := 80.0);
2719
2720 f_bts_0_cfg(BSCVTY, {"rach access-control-class 4 barred",
2721 "access-control-class-rotate 0",
2722 "access-control-class-rotate-quantum 1",
2723 "access-control-class-ramping",
2724 "access-control-class-ramping-step-interval 5",
2725 "access-control-class-ramping-step-size 5"});
2726
2727 /* Init and get first sysinfo */
2728 f_init_bts_and_check_sysinfo(0, expect_si := ?);
2729 last_si1 := g_system_information[0].si1;
2730 acc := last_si1.rach_control.acc;
2731 count := f_acc09_count_allowed(acc);
2732 /* Adm subset size was set to 0 above, so wait until all ACC are barred */
2733 while (count > 0) {
2734 last_si1 := f_recv_next_si1(0);
2735 acc := last_si1.rach_control.acc;
2736 count := f_acc09_count_allowed(acc);
2737 log("RSL: wait len()=0: GOT SI1 ACC len=", count, ": ", acc);
2738 }
2739
2740 /* Increase adm subset size, we should see ramping start up */
2741 f_bts_0_cfg(BSCVTY, {"access-control-class-rotate 10"});
2742 prev_count := 0;
2743 while (true) {
2744 last_si1 := f_recv_next_si1(0);
2745 acc := last_si1.rach_control.acc;
2746 count := f_acc09_count_allowed(acc);
2747 log("RSL: GOT SI1 ACC len=", count, ": ", acc);
2748
2749 if (prev_count > count) {
2750 setverdict(fail, "ACC allowed count dropped while expecting grow: ", prev_count, " -> ", count);
2751 break;
2752 }
2753
2754 if (count == 9) {
2755 break; /* Maximum reached (10 - 1 perm barred), done here */
2756 }
2757
2758 prev_count := count;
2759 }
2760
2761 setverdict(pass);
2762
2763 f_bts_0_cfg(BSCVTY, {"access-control-class-rotate 10",
2764 "rach access-control-class 4 allowed",
2765 "no access-control-class-ramping"});
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002766 f_shutdown_helper();
Pau Espin Pedrolc6136cd2020-07-24 13:20:02 +02002767}
2768
Harald Welte4003d112017-12-09 22:35:39 +01002769testcase TC_ctrl_msc_connection_status() runs on test_CT {
2770 var charstring ctrl_resp;
2771
Harald Welte89d42e82017-12-17 16:42:41 +01002772 f_init(1);
Harald Welte4003d112017-12-09 22:35:39 +01002773
2774 /* See https://osmocom.org/issues/2729 */
2775 f_ctrl_get_exp(IPA_CTRL, "msc_connection_status", "connected");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002776 f_shutdown_helper();
Harald Welte4003d112017-12-09 22:35:39 +01002777}
2778
Stefan Sperlingb041b3d2018-01-03 17:14:55 +01002779testcase TC_ctrl_msc0_connection_status() runs on test_CT {
2780 var charstring ctrl_resp;
2781
2782 f_init(1);
Stefan Sperlingb041b3d2018-01-03 17:14:55 +01002783
2784 f_ctrl_get_exp(IPA_CTRL, "msc.0.connection_status", "connected");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002785 f_shutdown_helper();
Stefan Sperlingb041b3d2018-01-03 17:14:55 +01002786}
2787
Neels Hofmeyr0bc470d2021-08-21 13:37:13 +02002788/* Verify correct stats on the number of configured and connected MSCs */
2789private function f_tc_stat_num_msc_connected_msc_connhdlr(integer expect_num_msc_connected) runs on MSC_ConnHdlr {
2790 g_pars := f_gen_test_hdlr_pars();
2791 var StatsDExpects expect := {
2792 { name := "TTCN3.bsc.0.num_msc.connected", mtype := "g", min := expect_num_msc_connected, max := expect_num_msc_connected },
2793 { name := "TTCN3.bsc.0.num_msc.total", mtype := "g", min := NUM_MSC, max := NUM_MSC }
2794 };
2795 f_statsd_expect(expect);
2796}
2797
2798private function f_tc_stat_num_msc_connected_test_ct(void_fn tc_fn, integer nr_msc) runs on test_CT
2799{
2800 var MSC_ConnHdlr vc_conn;
2801
2802 f_init(nr_bts := 1, handler_mode := true, nr_msc := nr_msc);
2803 f_sleep(1.0);
2804 vc_conn := f_start_handler(tc_fn);
2805 vc_conn.done;
2806
2807 /* Also verify stat exposed on CTRL interface */
2808 f_ctrl_get_exp(IPA_CTRL, "stat_item.last.bsc.0.num_msc:connected", int2str(nr_msc));
2809 f_ctrl_get_exp(IPA_CTRL, "stat_item.last.bsc.0.num_msc:total", int2str(NUM_MSC));
2810
2811 f_shutdown_helper();
2812}
2813
2814/* Verify that when 1 MSC is active, that num_msc:connected reports 1. */
2815private function f_tc_stat_num_msc_connected_1(charstring id) runs on MSC_ConnHdlr {
2816 f_tc_stat_num_msc_connected_msc_connhdlr(1);
2817}
2818testcase TC_stat_num_msc_connected_1() runs on test_CT {
2819 f_tc_stat_num_msc_connected_test_ct(refers(f_tc_stat_num_msc_connected_1), 1);
2820}
2821
2822/* Verify that when 2 MSCs are active, that num_msc:connected reports 2. */
2823private function f_tc_stat_num_msc_connected_2(charstring id) runs on MSC_ConnHdlr {
2824 f_tc_stat_num_msc_connected_msc_connhdlr(2);
2825}
2826testcase TC_stat_num_msc_connected_2() runs on test_CT {
2827 f_tc_stat_num_msc_connected_test_ct(refers(f_tc_stat_num_msc_connected_2), 2);
2828}
2829
2830/* Verify that when 3 MSCs are active, that num_msc:connected reports 3. */
2831private function f_tc_stat_num_msc_connected_3(charstring id) runs on MSC_ConnHdlr {
2832 f_tc_stat_num_msc_connected_msc_connhdlr(3);
2833}
2834testcase TC_stat_num_msc_connected_3() runs on test_CT {
2835 f_tc_stat_num_msc_connected_test_ct(refers(f_tc_stat_num_msc_connected_3), 3);
2836}
2837
Neels Hofmeyr5ce3ae42021-08-29 15:32:00 +02002838/* Verify correct stats on the number of configured and connected MSCs */
2839private function f_tc_stat_num_bts_connected_msc_connhdlr(integer expect_num_bts_connected) runs on MSC_ConnHdlr {
2840 g_pars := f_gen_test_hdlr_pars();
2841 var StatsDExpects expect := {
2842 { name := "TTCN3.bsc.0.num_bts.oml_connected", mtype := "g", min := expect_num_bts_connected, max := NUM_BTS_CFG },
2843 { name := "TTCN3.bsc.0.num_bts.all_trx_rsl_connected", mtype := "g", min := expect_num_bts_connected, max := expect_num_bts_connected },
2844 { name := "TTCN3.bsc.0.num_bts.total", mtype := "g", min := NUM_BTS_CFG, max := NUM_BTS_CFG },
2845 { name := "TTCN3.bsc.0.num_trx.rsl_connected", mtype := "g", min := expect_num_bts_connected, max := expect_num_bts_connected },
2846 { name := "TTCN3.bsc.0.num_trx.total", mtype := "g", min := NUM_BTS_CFG, max := NUM_BTS_CFG }
2847 };
2848 f_statsd_expect(expect);
2849}
2850
2851private function f_tc_stat_num_bts_connected_test_ct(void_fn tc_fn, integer nr_bts) runs on test_CT {
2852 var MSC_ConnHdlr vc_conn;
2853
2854 f_init(nr_bts := nr_bts, handler_mode := true, nr_msc := 1);
2855 f_sleep(1.0);
2856 vc_conn := f_start_handler(tc_fn);
2857 vc_conn.done;
2858
2859 /* Also verify stat exposed on CTRL interface */
2860 f_ctrl_get_exp(IPA_CTRL, "stat_item.last.bsc.0.num_bts:all_trx_rsl_connected", int2str(nr_bts));
2861 f_ctrl_get_exp(IPA_CTRL, "stat_item.last.bsc.0.num_bts:total", int2str(NUM_BTS_CFG));
2862 f_ctrl_get_exp(IPA_CTRL, "stat_item.last.bsc.0.num_trx:rsl_connected", int2str(nr_bts));
2863 f_ctrl_get_exp(IPA_CTRL, "stat_item.last.bsc.0.num_trx:total", int2str(NUM_BTS_CFG));
2864
Neels Hofmeyra41ae302021-09-06 22:06:02 +02002865 /* Verify rf_states exposed on CTRL interface */
2866 var charstring expect_net_rf_states := "";
2867 for (var integer i := 0; i < NUM_BTS_CFG; i := i + 1) {
2868 var charstring expect_bts_rf_states := int2str(i) & ",0,";
2869 if (i < NUM_BTS) {
2870 /* In these tests, OML for the first NUM_BTS are always connected via osmo-bts-omldummy */
2871 expect_bts_rf_states := expect_bts_rf_states & "operational,unlocked,";
2872 } else {
2873 /* For remaining i < NUM_BTS_CFG, OML is not connected, i.e. inoperational */
2874 expect_bts_rf_states := expect_bts_rf_states & "inoperational,locked,";
2875 }
2876 /* The RF policy is still global in osmo-bsc, i.e. always "on" */
2877 expect_bts_rf_states := expect_bts_rf_states & "on,";
2878 if (i < nr_bts) {
2879 /* For BTS where RSL is connected, the RSL state will be "up" */
2880 expect_bts_rf_states := expect_bts_rf_states & "rsl-up;";
2881 } else {
2882 expect_bts_rf_states := expect_bts_rf_states & "rsl-down;";
2883 }
2884
2885 f_ctrl_get_exp(IPA_CTRL, "bts." & int2str(i) & ".rf_states", expect_bts_rf_states);
2886 expect_net_rf_states := expect_net_rf_states & expect_bts_rf_states;
2887 }
2888 f_ctrl_get_exp(IPA_CTRL, "rf_states", expect_net_rf_states);
2889
Neels Hofmeyr5ce3ae42021-08-29 15:32:00 +02002890 f_shutdown_helper();
2891}
2892
2893/* Verify that when 1 BTS is connected, that num_{bts,trx}:*_connected reports 1. */
2894private function f_tc_stat_num_bts_connected_1(charstring id) runs on MSC_ConnHdlr {
2895 f_tc_stat_num_bts_connected_msc_connhdlr(1);
2896}
2897testcase TC_stat_num_bts_connected_1() runs on test_CT {
2898 f_tc_stat_num_bts_connected_test_ct(refers(f_tc_stat_num_bts_connected_1), 1);
2899}
2900
2901/* Verify that when 2 BTS is connected, that num_{bts,trx}:*_connected reports 2. */
2902private function f_tc_stat_num_bts_connected_2(charstring id) runs on MSC_ConnHdlr {
2903 f_tc_stat_num_bts_connected_msc_connhdlr(2);
2904}
2905testcase TC_stat_num_bts_connected_2() runs on test_CT {
2906 f_tc_stat_num_bts_connected_test_ct(refers(f_tc_stat_num_bts_connected_2), 2);
2907}
2908
2909/* Verify that when 3 BTS is connected, that num_{bts,trx}:*_connected reports 3. */
2910private function f_tc_stat_num_bts_connected_3(charstring id) runs on MSC_ConnHdlr {
2911 f_tc_stat_num_bts_connected_msc_connhdlr(3);
2912}
2913testcase TC_stat_num_bts_connected_3() runs on test_CT {
2914 f_tc_stat_num_bts_connected_test_ct(refers(f_tc_stat_num_bts_connected_3), 3);
2915}
2916
Harald Welte4003d112017-12-09 22:35:39 +01002917testcase TC_ctrl() runs on test_CT {
2918 var charstring ctrl_resp;
2919
Harald Welte89d42e82017-12-17 16:42:41 +01002920 f_init(1);
Harald Welte4003d112017-12-09 22:35:39 +01002921
2922 /* all below values must match the osmo-bsc.cfg config file used */
2923
Harald Welte6a129692018-03-17 17:30:14 +01002924 f_ctrl_get_exp(IPA_CTRL, "mcc", "001");
2925 f_ctrl_get_exp(IPA_CTRL, "mnc", "01");
Oliver Smith75aa0202019-08-19 14:17:50 +02002926 f_ctrl_get_exp(IPA_CTRL, "number-of-bts", "4");
Harald Welte4003d112017-12-09 22:35:39 +01002927
2928 var integer bts_nr := 0;
2929 f_ctrl_get_exp_bts(IPA_CTRL, bts_nr, "location-area-code", "1");
2930 f_ctrl_get_exp_bts(IPA_CTRL, bts_nr, "cell-identity", "0");
2931 f_ctrl_get_exp_bts(IPA_CTRL, bts_nr, "oml-connection-state", "connected");
2932 f_ctrl_get_exp_bts(IPA_CTRL, bts_nr, "gprs-mode", "gprs");
2933 f_ctrl_get_exp_bts(IPA_CTRL, bts_nr, "rf_state", "operational,unlocked,on");
2934 f_ctrl_get_exp_trx(IPA_CTRL, bts_nr, 0, "arfcn", "871");
2935 f_ctrl_get_exp_trx(IPA_CTRL, bts_nr, 0, "max-power-reduction", "20");
2936
2937 var integer uptime := str2int(f_ctrl_get_bts(IPA_CTRL, bts_nr, "oml-uptime"));
2938 f_sleep(2.0);
2939 if (str2int(f_ctrl_get_bts(IPA_CTRL, bts_nr, "oml-uptime")) < uptime+1) {
2940 setverdict(fail, "oml-uptime not incrementing as expected");
2941 }
2942 /* TODO: Disconnect RSL, imply that OML is disconnected and check for uptime zero? */
2943
2944 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bsc", 0, "paging:attempted", 0);
2945
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002946 f_shutdown_helper();
Harald Welte96c94412017-12-09 03:12:45 +01002947}
2948
Pau Espin Pedrol5a2d7432019-06-07 19:43:45 +02002949/* Verify that Upon receival of SET "location", BSC forwards a TRAP
2950 "location-state" over the SCCPlite IPA conn */
2951testcase TC_ctrl_location() runs on test_CT {
2952 var MSC_ConnHdlr vc_conn;
2953 var integer bts_nr := 0;
2954
2955 f_init(1, true);
2956 f_sleep(1.0);
2957
2958 f_ctrl_set_bts(IPA_CTRL, bts_nr, "location", "1234567,fix3d,0.340000,0.560000,0.780000");
2959 f_ctrl_exp_trap(SCCPLITE_IPA_CTRL, "bts." & int2str(bts_nr) & ".location-state",
2960 "1234567,fix3d,0.340000,0.560000,0.780000,operational,unlocked,on,001,01");
2961
2962 f_ctrl_set(SCCPLITE_IPA_CTRL, "rf_locked", "1");
2963 f_sleep(2.0);
2964
2965 f_ctrl_set_bts(IPA_CTRL, bts_nr, "location", "1234888,fix3d,0.350000,0.570000,0.790000");
2966 f_ctrl_exp_trap(SCCPLITE_IPA_CTRL, "bts." & int2str(bts_nr) & ".location-state",
2967 "1234888,fix3d,0.350000,0.570000,0.790000,operational,locked,off,001,01");
2968
2969 /* should match the one from config */
2970 f_ctrl_set(SCCPLITE_IPA_CTRL, "rf_locked", "0");
2971
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002972 f_shutdown_helper();
Pau Espin Pedrol5a2d7432019-06-07 19:43:45 +02002973}
2974
Harald Welte6f521d82017-12-11 19:52:02 +01002975
2976/***********************************************************************
2977 * Paging Testing
2978 ***********************************************************************/
2979
2980type record Cell_Identity {
2981 GsmMcc mcc,
2982 GsmMnc mnc,
2983 GsmLac lac,
2984 GsmCellId ci
2985};
Harald Welte24135bd2018-03-17 19:27:53 +01002986private const Cell_Identity cid := { '001'H, '01'H, 1, 0 };
Stefan Sperling049a86e2018-03-20 15:51:00 +01002987private const Cell_Identity unknown_cid := { '678'H, 'f90'H, 1, 0 };
Harald Welte6f521d82017-12-11 19:52:02 +01002988
Harald Welte5d1a2202017-12-13 19:51:29 +01002989type set of integer BtsIdList;
2990
2991private function f_bts_in_list(integer bts_id, BtsIdList bts_ids) return boolean {
2992 for (var integer j := 0; j < sizeof(bts_ids); j := j + 1) {
2993 if (bts_id == bts_ids[j]) {
2994 return true;
2995 }
2996 }
2997 return false;
2998}
Harald Welte6f521d82017-12-11 19:52:02 +01002999
3000/* core paging test helper function; used by most paging test cases */
3001private function f_pageing_helper(hexstring imsi,
3002 template BSSMAP_FIELD_CellIdentificationList cid_list,
Harald Welte5d1a2202017-12-13 19:51:29 +01003003 BtsIdList bts_ids := { 0 },
Harald Welte6f521d82017-12-11 19:52:02 +01003004 template RSL_ChanNeeded rsl_chneed := omit,
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07003005 template (omit) OCT4 tmsi := omit) runs on test_CT
Harald Welte6f521d82017-12-11 19:52:02 +01003006{
3007 var template BSSMAP_IE_ChannelNeeded bssmap_chneed;
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07003008 var template MobileIdentityV mi;
Harald Welte6f521d82017-12-11 19:52:02 +01003009 var RSL_Message rx_rsl;
3010 var integer paging_group := hex2int(imsi[lengthof(imsi)-1]);
Harald Welte5d1a2202017-12-13 19:51:29 +01003011 var integer i;
Harald Welte6f521d82017-12-11 19:52:02 +01003012
3013 f_init();
Harald Welte6f521d82017-12-11 19:52:02 +01003014
3015 /* Clear the queue, it might still contain stuff like BCCH FILLING */
Harald Weltec3068592018-03-17 19:55:31 +01003016 for (i := 0; i < NUM_BTS; i := i + 1) {
3017 IPA_RSL[i].clear;
Harald Welte5d1a2202017-12-13 19:51:29 +01003018 }
Harald Welte6f521d82017-12-11 19:52:02 +01003019
3020 if (isvalue(rsl_chneed)) {
3021 /* The values of 08.08 3.2.2.36 and 08.58 9.3.40 are luckily identical */
3022 bssmap_chneed := ts_BSSMAP_IE_ChanNeeded(int2bit(enum2int(valueof(rsl_chneed)),2));
3023 } else {
3024 bssmap_chneed := omit;
3025 }
3026
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003027 BSSAP.send(ts_BSSAP_UNITDATA_req(g_bssap[0].sccp_addr_peer, g_bssap[0].sccp_addr_own,
3028 ts_BSSMAP_Paging(imsi, cid_list, tmsi, bssmap_chneed)));
Harald Welte6f521d82017-12-11 19:52:02 +01003029
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07003030 if (not istemplatekind(tmsi, "omit")) {
3031 mi := t_MI_TMSI(tmsi);
Harald Welte6f521d82017-12-11 19:52:02 +01003032 } else {
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07003033 mi := tr_MI_IMSI(imsi);
Harald Welte6f521d82017-12-11 19:52:02 +01003034 }
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07003035
Harald Welte5d1a2202017-12-13 19:51:29 +01003036 for (i := 0; i < sizeof(bts_ids); i := i + 1) {
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07003037 rx_rsl := f_exp_ipa_rx(bts_ids[i], tr_RSL_PAGING_CMD(mi));
Harald Welte5d1a2202017-12-13 19:51:29 +01003038 /* check channel type, paging group */
3039 if (rx_rsl.ies[1].body.paging_group != paging_group) {
3040 setverdict(fail, "Paging for wrong paging group");
3041 }
3042 if (ispresent(rsl_chneed) and
3043 rx_rsl.ies[3].body.chan_needed.chan_needed != valueof(rsl_chneed)) {
3044 setverdict(fail, "RSL Channel Needed != BSSMAP Channel Needed");
3045 }
Harald Welte6f521d82017-12-11 19:52:02 +01003046 }
Harald Welte2fccd982018-01-31 15:48:19 +01003047 f_sleep(2.0);
Harald Welte5d1a2202017-12-13 19:51:29 +01003048 /* do a quick check on all not-included BTSs if they received paging */
3049 for (i := 0; i < NUM_BTS; i := i + 1) {
3050 timer T := 0.1;
3051 if (f_bts_in_list(i, bts_ids)) {
3052 continue;
3053 }
3054 T.start;
3055 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07003056 [] IPA_RSL[i].receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD(mi))) {
Harald Welte5d1a2202017-12-13 19:51:29 +01003057 setverdict(fail, "Paging on BTS ", i, " which is not part of ", bts_ids);
3058 }
3059 [] IPA_RSL[i].receive { repeat; }
3060 [] T.timeout { }
3061 }
Harald Welte6f521d82017-12-11 19:52:02 +01003062 }
3063
3064 setverdict(pass);
3065}
3066
Harald Welte5d1a2202017-12-13 19:51:29 +01003067const BtsIdList c_BtsId_all := { 0, 1, 2 };
Harald Welte751d3eb2018-01-31 15:51:06 +01003068const BtsIdList c_BtsId_none := { };
Harald Welte5d1a2202017-12-13 19:51:29 +01003069const BtsIdList c_BtsId_LAC1 := { 0, 1 };
3070const BtsIdList c_BtsId_LAC2 := { 2 };
3071
Harald Welte6f521d82017-12-11 19:52:02 +01003072/* PAGING by IMSI + TMSI */
3073testcase TC_paging_imsi_nochan() runs on test_CT {
3074 var BSSMAP_FIELD_CellIdentificationList cid_list;
3075 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Philipp Maier8c04b0a2018-02-23 13:48:48 +01003076 f_pageing_helper('001010100000001'H, cid_list, c_BtsId_all, omit, omit);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003077 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003078}
3079
3080/* PAGING by IMSI + TMSI */
3081testcase TC_paging_tmsi_nochan() runs on test_CT {
3082 var BSSMAP_FIELD_CellIdentificationList cid_list;
3083 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01003084 f_pageing_helper('001010100000001'H, cid_list, c_BtsId_all, omit, 'A1B2C301'O);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003085 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003086}
3087
3088/* Paging with different "channel needed' values */
3089testcase TC_paging_tmsi_any() runs on test_CT {
3090 var BSSMAP_FIELD_CellIdentificationList cid_list;
3091 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01003092 f_pageing_helper('001010100000002'H, cid_list, c_BtsId_all, RSL_CHANNEED_ANY, 'A1B2C302'O);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003093 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003094}
3095testcase TC_paging_tmsi_sdcch() runs on test_CT {
3096 var BSSMAP_FIELD_CellIdentificationList cid_list;
3097 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01003098 f_pageing_helper('001010100000003'H, cid_list, c_BtsId_all, RSL_CHANNEED_SDCCH, 'A1B2C303'O);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003099 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003100}
3101testcase TC_paging_tmsi_tch_f() runs on test_CT {
3102 var BSSMAP_FIELD_CellIdentificationList cid_list;
3103 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01003104 f_pageing_helper('001010000000004'H, cid_list, c_BtsId_all, RSL_CHANNEED_TCH_F, 'A1B2C304'O);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003105 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003106}
3107testcase TC_paging_tmsi_tch_hf() runs on test_CT {
3108 var BSSMAP_FIELD_CellIdentificationList cid_list;
3109 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01003110 f_pageing_helper('001010000000005'H, cid_list, c_BtsId_all, RSL_CHANNEED_TCH_ForH, 'A1B2C305'O);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003111 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003112}
3113
3114/* Paging by CGI */
3115testcase TC_paging_imsi_nochan_cgi() runs on test_CT {
3116 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3117 cid_list := { cIl_CGI := { ts_BSSMAP_CI_CGI(cid.mcc, cid.mnc, cid.lac, cid.ci) } };
Harald Welte5d1a2202017-12-13 19:51:29 +01003118 f_pageing_helper('001010000000006'H, cid_list, { 0 });
Philipp Maier282ca4b2018-02-27 17:17:00 +01003119 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003120}
3121
3122/* Paging by LAC+CI */
3123testcase TC_paging_imsi_nochan_lac_ci() runs on test_CT {
3124 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3125 cid_list := { cIl_LAC_CI := { ts_BSSMAP_CI_LAC_CI(cid.lac, cid.ci) } };
Harald Welte5d1a2202017-12-13 19:51:29 +01003126 f_pageing_helper('001010000000007'H, cid_list, { 0 });
Philipp Maier282ca4b2018-02-27 17:17:00 +01003127 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003128}
3129
3130/* Paging by CI */
3131testcase TC_paging_imsi_nochan_ci() runs on test_CT {
3132 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3133 cid_list := { cIl_CI := { ts_BSSMAP_CI_CI(cid.ci) } };
Harald Welte5d1a2202017-12-13 19:51:29 +01003134 f_pageing_helper('001010000000008'H, cid_list, { 0 });
Philipp Maier282ca4b2018-02-27 17:17:00 +01003135 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003136}
3137
3138/* Paging by LAI */
3139testcase TC_paging_imsi_nochan_lai() runs on test_CT {
3140 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3141 cid_list := { cIl_LAI := { ts_BSSMAP_CI_LAI(cid.mcc, cid.mnc, cid.lac) } };
Harald Welte5d1a2202017-12-13 19:51:29 +01003142 f_pageing_helper('001010000000009'H, cid_list, c_BtsId_LAC1);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003143 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003144}
3145
3146/* Paging by LAC */
3147testcase TC_paging_imsi_nochan_lac() runs on test_CT {
3148 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3149 cid_list := { cIl_LAC := { ts_BSSMAP_CI_LAC(cid.lac) } };
Harald Welte5d1a2202017-12-13 19:51:29 +01003150 f_pageing_helper('001010000000010'H, cid_list, c_BtsId_LAC1);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003151 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003152}
3153
3154/* Paging by "all in BSS" */
3155testcase TC_paging_imsi_nochan_all() runs on test_CT {
3156 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3157 cid_list := { cIl_allInBSS := ''O };
Harald Welte5d1a2202017-12-13 19:51:29 +01003158 f_pageing_helper('001010000000011'H, cid_list, c_BtsId_all);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003159 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003160}
3161
Stefan Sperling7b5e1782018-03-20 19:32:43 +01003162/* Paging by PLMN+LAC+RNC; We do not implement this; Verify nothing is paged */
Harald Welte751d3eb2018-01-31 15:51:06 +01003163testcase TC_paging_imsi_nochan_plmn_lac_rnc() runs on test_CT {
3164 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3165 cid_list := { cIl_PLMN_LAC_RNC := { ts_BSSMAP_CI_PLMN_LAC_RNC(cid.mcc, cid.mnc, cid.lac, 12) } };
Stefan Sperling7b5e1782018-03-20 19:32:43 +01003166 f_pageing_helper('001010000000012'H, cid_list, c_BtsId_none);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003167 f_shutdown_helper();
Harald Welte751d3eb2018-01-31 15:51:06 +01003168}
Harald Welte6f521d82017-12-11 19:52:02 +01003169
Stefan Sperling7b5e1782018-03-20 19:32:43 +01003170/* Paging by RNC; We do not implement this; Verify nothing is paged */
Harald Welte751d3eb2018-01-31 15:51:06 +01003171testcase TC_paging_imsi_nochan_rnc() runs on test_CT {
3172 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3173 cid_list := { cIl_RNC := { int2oct(13, 2) } };
Stefan Sperling7b5e1782018-03-20 19:32:43 +01003174 f_pageing_helper('001010000000013'H, cid_list, c_BtsId_none);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003175 f_shutdown_helper();
Harald Welte751d3eb2018-01-31 15:51:06 +01003176}
3177
Stefan Sperling7b5e1782018-03-20 19:32:43 +01003178/* Paging by LAC+RNC; We do not implement; Verify nothing is paged */
Harald Welte751d3eb2018-01-31 15:51:06 +01003179testcase TC_paging_imsi_nochan_lac_rnc() runs on test_CT {
3180 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3181 cid_list := { cIl_LAC_RNC := { ts_BSSMAP_CI_LAC_RNC(cid.lac, 14) } };
Stefan Sperling7b5e1782018-03-20 19:32:43 +01003182 f_pageing_helper('001010000000014'H, cid_list, c_BtsId_none);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003183 f_shutdown_helper();
Harald Welte751d3eb2018-01-31 15:51:06 +01003184}
3185
Harald Welte6f521d82017-12-11 19:52:02 +01003186/* Paging on multiple cells (multiple entries in list): Verify all of them page */
Harald Welte751d3eb2018-01-31 15:51:06 +01003187testcase TC_paging_imsi_nochan_lacs() runs on test_CT {
3188 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3189 cid_list := { cIl_LAC := { ts_BSSMAP_CI_LAC(1), ts_BSSMAP_CI_LAC(2) } };
3190 f_pageing_helper('001010000000015'H, cid_list, c_BtsId_all);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003191 f_shutdown_helper();
Harald Welte751d3eb2018-01-31 15:51:06 +01003192}
3193
3194/* Paging on empty list: Verify none of them page */
3195testcase TC_paging_imsi_nochan_lacs_empty() runs on test_CT {
3196 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3197 cid_list := { cIl_LAC := { } };
3198 f_pageing_helper('001010000000016'H, cid_list, c_BtsId_none);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003199 f_shutdown_helper();
Harald Welte751d3eb2018-01-31 15:51:06 +01003200}
3201
Stefan Sperling049a86e2018-03-20 15:51:00 +01003202/* Paging by CGI with unknown MCC/MNC: Verify nothing is paged. */
3203testcase TC_paging_imsi_nochan_cgi_unknown_cid() runs on test_CT {
3204 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3205 cid_list := { cIl_CGI := { ts_BSSMAP_CI_CGI(unknown_cid.mcc, unknown_cid.mnc, unknown_cid.lac, unknown_cid.ci) } };
3206 f_pageing_helper('001010000000006'H, cid_list, c_BtsId_none);
3207 f_shutdown_helper();
3208}
3209
Harald Welte6f521d82017-12-11 19:52:02 +01003210/* Verify paging retransmission interval + count */
3211/* Verify paging stops after channel establishment */
Harald Welte6f521d82017-12-11 19:52:02 +01003212/* Test behavior under paging overload */
Harald Welteae026692017-12-09 01:03:01 +01003213
Harald Weltee65d40e2017-12-13 00:09:06 +01003214/* Verify PCH load */
3215testcase TC_paging_imsi_load() runs on test_CT {
3216 var BSSMAP_FIELD_CellIdentificationList cid_list;
3217 timer T := 4.0;
Harald Welte2caa1062018-03-17 18:19:05 +01003218 timer T_retrans := 1.0;
Harald Weltee65d40e2017-12-13 00:09:06 +01003219 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01003220 f_pageing_helper('001010123456789'H, cid_list, c_BtsId_all);
Harald Weltee65d40e2017-12-13 00:09:06 +01003221
3222 /* tell BSC there is no paging space anymore */
3223 f_ipa_tx(0, ts_RSL_PAGING_LOAD_IND(0));
Harald Welte3b57ab52018-03-17 18:01:10 +01003224 f_sleep(0.2);
3225 IPA_RSL[0].clear;
Harald Weltee65d40e2017-12-13 00:09:06 +01003226
3227 /* Wait for 4 seconds if any more PAGING CMD are received on RSL. Normally,
3228 * there would be 8 retransmissions during 4 seconds */
3229 T.start;
Harald Welte2caa1062018-03-17 18:19:05 +01003230 T_retrans.start;
Harald Weltee65d40e2017-12-13 00:09:06 +01003231 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07003232 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD(?))) {
Harald Weltee65d40e2017-12-13 00:09:06 +01003233 setverdict(fail, "Received PAGING after LOAD_IND(0)");
Daniel Willmannafce8662018-07-06 23:11:32 +02003234 mtc.stop;
Harald Weltee65d40e2017-12-13 00:09:06 +01003235 }
Harald Welte2caa1062018-03-17 18:19:05 +01003236 [] T_retrans.timeout {
3237 /* re-trnsmit the zero-space LOAD IND to avoid BSC 'auto credit' */
3238 f_ipa_tx(0, ts_RSL_PAGING_LOAD_IND(0));
3239 T_retrans.start;
3240 repeat;
3241 }
Harald Weltee65d40e2017-12-13 00:09:06 +01003242 [] T.timeout {
3243 setverdict(pass);
3244 }
3245 }
Philipp Maier282ca4b2018-02-27 17:17:00 +01003246
3247 f_shutdown_helper();
Harald Weltee65d40e2017-12-13 00:09:06 +01003248}
3249
Harald Welte235ebf12017-12-15 14:18:16 +01003250/* Verify Paging Counter */
Harald Welte1ff69992017-12-14 12:31:17 +01003251testcase TC_paging_counter() runs on test_CT {
3252 var BSSMAP_FIELD_CellIdentificationList cid_list;
3253 timer T := 4.0;
3254 var integer i;
3255 var integer paging_attempted_bsc;
3256 var integer paging_attempted_bts[NUM_BTS];
3257 var integer paging_expired_bts[NUM_BTS];
3258 cid_list := valueof(ts_BSSMAP_CIL_noCell);
3259
3260 f_init();
3261
3262 /* read counters before paging */
3263 paging_attempted_bsc := f_ctrl_get_ratectr_abs(IPA_CTRL, "bsc", 0, "paging:attempted");
3264 for (i := 0; i < NUM_BTS; i := i+1) {
3265 paging_attempted_bts[i] := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", i, "paging:attempted");
3266 paging_expired_bts[i] := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", i, "paging:expired");
3267 }
3268
3269 f_pageing_helper('001230000000001'H, cid_list, c_BtsId_all);
3270
3271 /* expect the attempted pages on BSC and each BTSs to have incremented by one */
3272 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bsc", 0, "paging:attempted", paging_attempted_bsc+1);
3273 for (i := 0; i < NUM_BTS; i := i+1) {
3274 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", i, "paging:attempted",
3275 paging_attempted_bts[i]+1);
3276 }
3277
3278 /* assume that 12s later the paging on all BTSs have expired and hence incremented by 1 */
3279 f_sleep(12.0);
3280 for (i := 0; i < NUM_BTS; i := i+1) {
3281 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", i, "paging:expired",
3282 paging_expired_bts[i]+1);
3283 }
Harald Welte1ff69992017-12-14 12:31:17 +01003284
Philipp Maier282ca4b2018-02-27 17:17:00 +01003285 f_shutdown_helper();
Harald Welte1ff69992017-12-14 12:31:17 +01003286}
3287
3288
Harald Welte10985002017-12-12 09:29:15 +01003289/* Verify paging stops after A-RESET */
3290testcase TC_paging_imsi_a_reset() runs on test_CT {
3291 var BSSMAP_FIELD_CellIdentificationList cid_list;
3292 timer T := 3.0;
3293 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01003294 f_pageing_helper('001010123456789'H, cid_list, c_BtsId_all);
Harald Welte10985002017-12-12 09:29:15 +01003295
3296 /* Perform a BSSMAP Reset and wait for ACK */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003297 BSSAP.send(ts_BSSAP_UNITDATA_req(g_bssap[0].sccp_addr_peer, g_bssap[0].sccp_addr_own, ts_BSSMAP_Reset(0, g_osmux_enabled)));
Harald Welte10985002017-12-12 09:29:15 +01003298 alt {
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003299 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(g_bssap[0].sccp_addr_own, g_bssap[0].sccp_addr_peer, tr_BSSMAP_ResetAck(g_osmux_enabled))) { }
Harald Welte10985002017-12-12 09:29:15 +01003300 [] BSSAP.receive { repeat; }
3301 }
3302
Daniel Willmanncbef3982018-07-30 09:22:40 +02003303 /* Wait to avoid a possible race condition if a paging message is
3304 * received right before the reset ACK. */
3305 f_sleep(0.2);
3306
Harald Welte10985002017-12-12 09:29:15 +01003307 /* Clear the queue, it might still contain stuff like BCCH FILLING */
Philipp Maier1e6b4422018-02-23 14:02:13 +01003308 for (var integer i := 0; i < sizeof(IPA_RSL); i := i+1) {
3309 IPA_RSL[i].clear;
3310 }
Harald Welte10985002017-12-12 09:29:15 +01003311
3312 /* Wait for 3 seconds if any more PAGING CMD are received on RSL */
3313 T.start;
3314 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07003315 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD(?))) {
Harald Welte10985002017-12-12 09:29:15 +01003316 setverdict(fail, "Received PAGING after A-RESET");
Daniel Willmannafce8662018-07-06 23:11:32 +02003317 mtc.stop;
Harald Welte10985002017-12-12 09:29:15 +01003318 }
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07003319 [] IPA_RSL[1].receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD(?))) {
Harald Welte5d1a2202017-12-13 19:51:29 +01003320 setverdict(fail, "Received PAGING after A-RESET");
Daniel Willmannafce8662018-07-06 23:11:32 +02003321 mtc.stop;
Harald Welte5d1a2202017-12-13 19:51:29 +01003322 }
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07003323 [] IPA_RSL[2].receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD(?))) {
Harald Welte5d1a2202017-12-13 19:51:29 +01003324 setverdict(fail, "Received PAGING after A-RESET");
Daniel Willmannafce8662018-07-06 23:11:32 +02003325 mtc.stop;
Harald Welte5d1a2202017-12-13 19:51:29 +01003326 }
Harald Welte10985002017-12-12 09:29:15 +01003327 [] T.timeout {
3328 setverdict(pass);
3329 }
3330 }
Philipp Maier282ca4b2018-02-27 17:17:00 +01003331
3332 f_shutdown_helper();
Harald Welte10985002017-12-12 09:29:15 +01003333}
Harald Welteae026692017-12-09 01:03:01 +01003334
Philipp Maierf45824a2019-08-14 14:44:10 +02003335/* Verify how we handle unsolicited Paging Response. In case of an unsolicit
3336 * paging response we can not know which MSC is in charge, so we will blindly
3337 * pick the first configured MSC. This behavior is required in order to make
3338 * MT-CSFB calls working because in those cases the BSC can not know that the
3339 * MSC has already paged the subscriver via SGs. So any MT-CSFB call will look
3340 * like an unsolicited Paging Response to the MSC.
Pau Espin Pedrol3466cc52018-11-05 12:41:05 +01003341 */
3342testcase TC_paging_resp_unsol() runs on test_CT {
3343
3344 f_init(1);
Philipp Maierf45824a2019-08-14 14:44:10 +02003345 timer T := 5.0;
Pau Espin Pedrol3466cc52018-11-05 12:41:05 +01003346
3347 var BSSAP_N_CONNECT_ind rx_c_ind;
3348 var DchanTuple dt;
3349 var PDU_ML3_MS_NW l3 := valueof(ts_PAG_RESP(valueof(ts_MI_IMSI_LV('001010008880018'H))));
Philipp Maierf45824a2019-08-14 14:44:10 +02003350 var octetstring rr_pag_resp := enc_PDU_ML3_MS_NW(l3);
Pau Espin Pedrol3466cc52018-11-05 12:41:05 +01003351
3352 /* Send CHAN RQD and wait for allocation; acknowledge it */
3353 dt.rsl_chan_nr := f_chreq_act_ack();
3354
3355 /* Send unsolicited Paging response (no matching Paging CMD stored in BSC) */
3356 f_ipa_tx(0, ts_RSL_EST_IND(dt.rsl_chan_nr, valueof(ts_RslLinkID_DCCH(0)), enc_PDU_ML3_MS_NW(l3)));
3357
Pau Espin Pedrol3466cc52018-11-05 12:41:05 +01003358
Philipp Maierf45824a2019-08-14 14:44:10 +02003359 /* Expevct a CR with a matching Paging response on the A-Interface */
3360 T.start;
3361 alt {
3362 [] BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(rr_pag_resp))) {
3363 setverdict(pass);
3364 }
3365 [] BSSAP.receive {
3366 setverdict(fail, "Received unexpected message on A-Interface!");
3367 }
3368 [] T.timeout {
3369 setverdict(fail, "Received nothing on A-Interface!");
3370 }
3371 }
3372
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003373 f_shutdown_helper();
Pau Espin Pedrol3466cc52018-11-05 12:41:05 +01003374}
3375
Harald Welte4e9b9cc2017-12-14 18:31:02 +01003376/* Test RSL link drop causes counter increment */
3377testcase TC_rsl_drop_counter() runs on test_CT {
3378 var integer rsl_fail;
3379
Harald Welte89d42e82017-12-17 16:42:41 +01003380 f_init(1);
Harald Welte4e9b9cc2017-12-14 18:31:02 +01003381
3382 rsl_fail := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "rsl_fail");
3383
3384 bts[0].rsl.vc_IPA.stop;
3385
3386 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "rsl_fail", rsl_fail+1);
3387
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003388 f_shutdown_helper();
Harald Welte4e9b9cc2017-12-14 18:31:02 +01003389}
3390
3391/* TODO: Test OML link drop causes counter increment */
3392
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003393/* The body of TC_rsl_unknown_unit_id() and TC_oml_unknown_unit_id() tests. */
3394function f_ipa_unknown_unit_id(integer mp_bsc_ipa_port) runs on test_CT return boolean {
3395 timer T := 10.0;
3396
3397 bts[0].rsl.id := "IPA-0-RSL";
3398 bts[0].rsl.vc_IPA := IPA_Emulation_CT.create(bts[0].rsl.id & "-IPA");
3399 bts[0].rsl.ccm_pars := c_IPA_default_ccm_pars;
3400 bts[0].rsl.ccm_pars.name := "Osmocom TTCN-3 BTS Simulator";
Oliver Smith92c2bdb2019-08-20 15:11:24 +02003401 bts[0].rsl.ccm_pars.unit_id := "99/0/0"; /* value which is unknown at BTS */
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003402
Pau Espin Pedrol9a5b8ff2021-01-04 19:01:31 +01003403 f_ipa_ctrl_start_client(mp_bsc_ip, mp_bsc_ctrl_port);
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003404
3405 f_init_mgcp("VirtMSC");
3406
3407 /* start RSL/OML connection (XXX re-uses RSL port/protocol definitions for OML) */
3408 map(bts[0].rsl.vc_IPA:IPA_PORT, system:IPA);
3409 connect(bts[0].rsl.vc_IPA:IPA_RSL_PORT, self:IPA_RSL[0]);
3410 bts[0].rsl.vc_IPA.start(IPA_Emulation.main_client(mp_bsc_ip, mp_bsc_ipa_port, "", 10000, bts[0].rsl.ccm_pars));
3411
3412 /* wait for IPA OML link to connect and then disconnect */
3413 T.start;
3414 alt {
Vadim Yanitskiya2afacc2020-05-18 21:16:19 +07003415 [] IPA_RSL[0].receive(tr_ASP_IPA_EV(ASP_IPA_EVENT_DOWN)) {
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003416 T.stop;
3417 return true;
3418 }
3419 [] IPA_RSL[0].receive { repeat }
3420 [] T.timeout {
Daniel Willmannafce8662018-07-06 23:11:32 +02003421 return false;
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003422 }
3423 }
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003424 return false;
3425}
3426
3427/* BSC should close an RSL connection from a BTS with unknown unit ID (OS#2714). */
3428testcase TC_rsl_unknown_unit_id() runs on test_CT {
3429 if (f_ipa_unknown_unit_id(mp_bsc_rsl_port)) {
3430 setverdict(pass);
3431 } else {
3432 setverdict(fail, "Timeout RSL waiting for connection to close");
3433 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003434 f_shutdown_helper();
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003435}
3436
3437
3438/* BSC should close an RSL connection from a BTS with unknown unit ID (OS#2714). */
3439testcase TC_oml_unknown_unit_id() runs on test_CT {
3440 if (f_ipa_unknown_unit_id(mp_bsc_oml_port)) {
3441 setverdict(pass);
3442 } else {
3443 setverdict(fail, "Timeout OML waiting for connection to close");
3444 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003445 f_shutdown_helper();
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003446}
3447
3448
Harald Weltec1a2fff2017-12-17 11:06:19 +01003449/***********************************************************************
Harald Welte6811d102019-04-14 22:23:14 +02003450 * "New world" test cases using RSL_Emulation + RAN_Emulation
Harald Weltec1a2fff2017-12-17 11:06:19 +01003451 ***********************************************************************/
3452
Harald Welte6811d102019-04-14 22:23:14 +02003453import from RAN_Emulation all;
Harald Welte47cd0e32020-08-21 12:39:11 +02003454import from BSSAP_LE_Emulation all;
Harald Weltec1a2fff2017-12-17 11:06:19 +01003455import from RSL_Emulation all;
3456import from MSC_ConnectionHandler all;
3457
3458type function void_fn(charstring id) runs on MSC_ConnHdlr;
3459
Harald Welte336820c2018-05-31 20:34:52 +02003460/* helper function to create and connect a MSC_ConnHdlr component */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003461private function f_connect_handler(inout MSC_ConnHdlr vc_conn, integer bssap_idx := 0) runs on test_CT {
3462 connect(vc_conn:RAN, g_bssap[bssap_idx].vc_RAN:PROC);
Daniel Willmann191e0d92018-01-17 12:44:35 +01003463 connect(vc_conn:MGCP_PROC, vc_MGCP:MGCP_PROC);
Harald Weltec1a2fff2017-12-17 11:06:19 +01003464 connect(vc_conn:RSL, bts[0].rsl.vc_RSL:CLIENT_PT);
Harald Weltef70df652018-01-29 22:00:23 +01003465 connect(vc_conn:RSL_PROC, bts[0].rsl.vc_RSL:RSL_PROC);
Philipp Maier88f4ae82018-03-01 14:00:58 +01003466 if (isvalue(bts[1])) {
Philipp Maier956a92f2018-02-16 10:58:07 +01003467 connect(vc_conn:RSL1, bts[1].rsl.vc_RSL:CLIENT_PT);
3468 connect(vc_conn:RSL1_PROC, bts[1].rsl.vc_RSL:RSL_PROC);
3469 }
Neels Hofmeyr91401012019-07-11 00:42:35 +02003470 if (isvalue(bts[2])) {
3471 connect(vc_conn:RSL2, bts[2].rsl.vc_RSL:CLIENT_PT);
3472 connect(vc_conn:RSL2_PROC, bts[2].rsl.vc_RSL:RSL_PROC);
3473 }
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003474 connect(vc_conn:BSSAP, g_bssap[bssap_idx].vc_RAN:CLIENT);
Neels Hofmeyrcfe44062020-10-15 02:28:08 +02003475 if (mp_enable_lcs_tests) {
3476 connect(vc_conn:BSSAP_LE, g_bssap_le.vc_BSSAP_LE:CLIENT);
3477 connect(vc_conn:BSSAP_LE_PROC, g_bssap_le.vc_BSSAP_LE:PROC);
3478 }
Daniel Willmann191e0d92018-01-17 12:44:35 +01003479 connect(vc_conn:MGCP, vc_MGCP:MGCP_CLIENT);
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +02003480 connect(vc_conn:MGCP_MULTI, vc_MGCP:MGCP_CLIENT_MULTI);
Daniel Willmannebdecc02020-08-12 15:30:17 +02003481 connect(vc_conn:STATSD_PROC, vc_STATSD:STATSD_PROC);
Harald Welte336820c2018-05-31 20:34:52 +02003482}
3483
Neels Hofmeyrda436782021-07-20 22:09:06 +02003484function f_start_handler_create(template (omit) TestHdlrParams pars := omit)
Harald Welte336820c2018-05-31 20:34:52 +02003485runs on test_CT return MSC_ConnHdlr {
3486 var charstring id := testcasename();
3487 var MSC_ConnHdlr vc_conn;
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003488 var integer bssap_idx := 0;
3489 if (isvalue(pars)) {
3490 bssap_idx := valueof(pars).mscpool.bssap_idx;
3491 }
Harald Welte336820c2018-05-31 20:34:52 +02003492 vc_conn := MSC_ConnHdlr.create(id);
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003493 f_connect_handler(vc_conn, bssap_idx);
Neels Hofmeyrda436782021-07-20 22:09:06 +02003494 return vc_conn;
3495}
3496
3497function f_start_handler_run(MSC_ConnHdlr vc_conn, void_fn fn, template (omit) TestHdlrParams pars := omit)
3498runs on test_CT return MSC_ConnHdlr {
3499 var charstring id := testcasename();
Neels Hofmeyr1708d1b2020-10-10 16:56:48 +02003500 /* Emit a marker to appear in the SUT's own logging output */
Neels Hofmeyrda436782021-07-20 22:09:06 +02003501 f_logp(BSCVTY, id & "() start");
Harald Weltea0630032018-03-20 21:09:55 +01003502 vc_conn.start(f_handler_init(fn, id, pars));
Harald Weltec1a2fff2017-12-17 11:06:19 +01003503 return vc_conn;
3504}
3505
Neels Hofmeyrda436782021-07-20 22:09:06 +02003506function f_start_handler(void_fn fn, template (omit) TestHdlrParams pars := omit)
3507runs on test_CT return MSC_ConnHdlr {
3508 return f_start_handler_run(f_start_handler_create(pars), fn, pars);
3509}
3510
Harald Weltea0630032018-03-20 21:09:55 +01003511/* first function inside ConnHdlr component; sets g_pars + starts function */
3512private function f_handler_init(void_fn fn, charstring id, template (omit) TestHdlrParams pars := omit)
3513runs on MSC_ConnHdlr {
3514 if (isvalue(pars)) {
3515 g_pars := valueof(pars);
3516 }
3517 fn.apply(id);
3518}
3519
Oliver Smith26a3db72021-07-09 13:51:29 +02003520private function f_vty_encryption_a5(charstring options) runs on test_CT {
3521 f_vty_transceive(BSCVTY, "configure terminal");
3522 f_vty_transceive(BSCVTY, "network");
3523 f_vty_transceive(BSCVTY, "encryption a5 " & options);
3524 f_vty_transceive(BSCVTY, "exit");
3525 f_vty_transceive(BSCVTY, "exit");
3526}
3527
3528private function f_vty_encryption_a5_reset() runs on test_CT {
3529 /* keep in sync with docker-playground.git ttcn3-bsc-test/osmo-bsc.cfg */
3530 f_vty_encryption_a5("0 1 3");
3531}
3532
Harald Welte3c86ea02018-05-10 22:28:05 +02003533/* Establish signalling channel (non-assignment case) followed by cipher mode */
3534private function f_tc_ciph_mode_a5(charstring id) runs on MSC_ConnHdlr {
Harald Welteed848512018-05-24 22:27:58 +02003535 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
3536 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Welte3c86ea02018-05-10 22:28:05 +02003537 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelTypeSIGNAL);
Philipp Maier23000732018-05-18 11:25:37 +02003538 ass_cmd.pdu.bssmap.assignmentRequest.circuitIdentityCode := omit;
3539 ass_cmd.pdu.bssmap.assignmentRequest.aoIPTransportLayer := omit;
3540 exp_compl.pdu.bssmap.assignmentComplete.circuitIdentityCode := omit;
3541 exp_compl.pdu.bssmap.assignmentComplete.aoIPTransportLayer := omit;
Harald Welte3c86ea02018-05-10 22:28:05 +02003542
Philipp Maier23000732018-05-18 11:25:37 +02003543 f_establish_fully(ass_cmd, exp_compl);
Harald Welte3c86ea02018-05-10 22:28:05 +02003544}
3545testcase TC_ciph_mode_a5_0() runs on test_CT {
3546 var MSC_ConnHdlr vc_conn;
Philipp Maier48604732018-10-09 15:00:37 +02003547 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte3c86ea02018-05-10 22:28:05 +02003548 pars.encr := valueof(t_EncrParams('01'O, f_rnd_octstring(8)));
3549
3550 f_init(1, true);
3551 f_sleep(1.0);
3552 vc_conn := f_start_handler(refers(f_tc_ciph_mode_a5), pars);
3553 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003554 f_shutdown_helper();
Harald Welte3c86ea02018-05-10 22:28:05 +02003555}
3556testcase TC_ciph_mode_a5_1() runs on test_CT {
3557 var MSC_ConnHdlr vc_conn;
Philipp Maier48604732018-10-09 15:00:37 +02003558 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte3c86ea02018-05-10 22:28:05 +02003559 pars.encr := valueof(t_EncrParams('02'O, f_rnd_octstring(8)));
3560
3561 f_init(1, true);
3562 f_sleep(1.0);
3563 vc_conn := f_start_handler(refers(f_tc_ciph_mode_a5), pars);
3564 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003565 f_shutdown_helper();
Harald Welte3c86ea02018-05-10 22:28:05 +02003566}
Oliver Smith50b98122021-07-09 15:00:28 +02003567/* OS#4975: verify that A5/2 is preferred over A5/0 */
3568testcase TC_ciph_mode_a5_2_0() runs on test_CT {
3569 var MSC_ConnHdlr vc_conn;
3570 var TestHdlrParams pars := f_gen_test_hdlr_pars();
3571
3572 pars.encr := valueof(t_EncrParams('05'O, f_rnd_octstring(8))); /* A5/0 and A5/2 (0x01|0x04)*/
3573 pars.encr_exp_enc_alg := '04'O; /* A5/2 */
3574
3575 f_init(1, true);
3576 f_vty_encryption_a5("0 1 2 3");
3577 f_sleep(1.0);
3578 vc_conn := f_start_handler(refers(f_tc_ciph_mode_a5), pars);
3579 vc_conn.done;
3580 f_vty_encryption_a5_reset();
3581 f_shutdown_helper();
3582}
Oliver Smith1dff88d2021-07-09 08:45:51 +02003583/* OS#4975: verify that A5/1 is preferred over A5/2 */
3584testcase TC_ciph_mode_a5_2_1() runs on test_CT {
3585 var MSC_ConnHdlr vc_conn;
3586 var TestHdlrParams pars := f_gen_test_hdlr_pars();
3587
3588 pars.encr := valueof(t_EncrParams('06'O, f_rnd_octstring(8))); /* A5/1 and A5/2 (0x02|0x04)*/
3589 pars.encr_exp_enc_alg := '02'O; /* A5/1 */
3590
3591 f_init(1, true);
3592 f_vty_encryption_a5("1 2");
3593 f_sleep(1.0);
3594 vc_conn := f_start_handler(refers(f_tc_ciph_mode_a5), pars);
3595 vc_conn.done;
3596 f_vty_encryption_a5_reset();
3597 f_shutdown_helper();
3598}
Harald Welte3c86ea02018-05-10 22:28:05 +02003599testcase TC_ciph_mode_a5_3() runs on test_CT {
3600 var MSC_ConnHdlr vc_conn;
Philipp Maier48604732018-10-09 15:00:37 +02003601 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte3c86ea02018-05-10 22:28:05 +02003602 pars.encr := valueof(t_EncrParams('08'O, f_rnd_octstring(8)));
3603
3604 f_init(1, true);
3605 f_sleep(1.0);
3606 vc_conn := f_start_handler(refers(f_tc_ciph_mode_a5), pars);
3607 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003608 f_shutdown_helper();
Harald Welte3c86ea02018-05-10 22:28:05 +02003609}
Neels Hofmeyr81ad27f2021-06-11 00:09:40 +02003610/* Establish a Signalling channel with A5/4 encryption. */
3611testcase TC_ciph_mode_a5_4() runs on test_CT {
3612 var MSC_ConnHdlr vc_conn;
3613 var TestHdlrParams pars := f_gen_test_hdlr_pars();
3614 pars.encr := valueof(t_EncrParams('10'O, f_rnd_octstring(8), f_rnd_octstring(16)));
Harald Welte3c86ea02018-05-10 22:28:05 +02003615
Neels Hofmeyr81ad27f2021-06-11 00:09:40 +02003616 f_init(1, true);
Oliver Smith26a3db72021-07-09 13:51:29 +02003617 f_vty_encryption_a5("0 1 3 4");
Neels Hofmeyr81ad27f2021-06-11 00:09:40 +02003618 f_sleep(1.0);
3619 vc_conn := f_start_handler(refers(f_tc_ciph_mode_a5), pars);
3620 vc_conn.done;
Oliver Smith26a3db72021-07-09 13:51:29 +02003621 f_vty_encryption_a5_reset();
Neels Hofmeyr81ad27f2021-06-11 00:09:40 +02003622 f_shutdown_helper();
3623}
Pau Espin Pedrol07866632020-09-03 19:10:55 +02003624/* establish initial channel, enable ciphering followed by assignment to ciphered channel */
3625private function f_tc_assignment_aoip_tla_v6(charstring id) runs on MSC_ConnHdlr {
3626 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
3627 var PDU_BSSAP ass_cmd := f_gen_ass_req(aoip_tla := "::3");
3628 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
3629 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
3630
3631 f_establish_fully(ass_cmd, exp_compl);
3632}
3633testcase TC_assignment_aoip_tla_v6() runs on test_CT {
3634 var MSC_ConnHdlr vc_conn;
3635 var TestHdlrParams pars := f_gen_test_hdlr_pars();
3636
3637 f_init(1, true);
3638 f_sleep(1.0);
3639 vc_conn := f_start_handler(refers(f_tc_assignment_aoip_tla_v6), pars);
3640 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003641 f_shutdown_helper();
Pau Espin Pedrol07866632020-09-03 19:10:55 +02003642}
3643
Harald Welte3c86ea02018-05-10 22:28:05 +02003644
3645/* establish initial channel, enable ciphering followed by assignment to ciphered channel */
Harald Welte651fcdc2018-05-10 20:23:16 +02003646private function f_tc_assignment_fr_a5(charstring id) runs on MSC_ConnHdlr {
Harald Welteed848512018-05-24 22:27:58 +02003647 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
3648 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Weltec1a2fff2017-12-17 11:06:19 +01003649
Harald Welte552620d2017-12-16 23:21:36 +01003650 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
3651 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
Harald Welte73cd2712017-12-17 00:44:52 +01003652
Harald Weltea0630032018-03-20 21:09:55 +01003653 f_establish_fully(ass_cmd, exp_compl);
Harald Welte552620d2017-12-16 23:21:36 +01003654}
Harald Welte552620d2017-12-16 23:21:36 +01003655testcase TC_assignment_fr_a5_0() runs on test_CT {
3656 var MSC_ConnHdlr vc_conn;
Philipp Maier48604732018-10-09 15:00:37 +02003657 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte651fcdc2018-05-10 20:23:16 +02003658 pars.encr := valueof(t_EncrParams('01'O, f_rnd_octstring(8)));
Harald Welte552620d2017-12-16 23:21:36 +01003659
Harald Welte89d42e82017-12-17 16:42:41 +01003660 f_init(1, true);
Harald Welte552620d2017-12-16 23:21:36 +01003661 f_sleep(1.0);
Harald Welte651fcdc2018-05-10 20:23:16 +02003662 vc_conn := f_start_handler(refers(f_tc_assignment_fr_a5), pars);
Harald Welte552620d2017-12-16 23:21:36 +01003663 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003664 f_shutdown_helper();
Harald Welte552620d2017-12-16 23:21:36 +01003665}
Harald Welte552620d2017-12-16 23:21:36 +01003666testcase TC_assignment_fr_a5_1() runs on test_CT {
Harald Weltec1a2fff2017-12-17 11:06:19 +01003667 var MSC_ConnHdlr vc_conn;
Philipp Maier48604732018-10-09 15:00:37 +02003668 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte651fcdc2018-05-10 20:23:16 +02003669 pars.encr := valueof(t_EncrParams('02'O, f_rnd_octstring(8)));
Harald Weltec1a2fff2017-12-17 11:06:19 +01003670
Harald Welte89d42e82017-12-17 16:42:41 +01003671 f_init(1, true);
Harald Weltec1a2fff2017-12-17 11:06:19 +01003672 f_sleep(1.0);
Harald Welte651fcdc2018-05-10 20:23:16 +02003673 vc_conn := f_start_handler(refers(f_tc_assignment_fr_a5), pars);
3674 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003675 f_shutdown_helper();
Harald Welte651fcdc2018-05-10 20:23:16 +02003676}
3677testcase TC_assignment_fr_a5_3() runs on test_CT {
3678 var MSC_ConnHdlr vc_conn;
Philipp Maier48604732018-10-09 15:00:37 +02003679 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte651fcdc2018-05-10 20:23:16 +02003680 pars.encr := valueof(t_EncrParams('08'O, f_rnd_octstring(8)));
Harald Weltec1a2fff2017-12-17 11:06:19 +01003681
Harald Welte651fcdc2018-05-10 20:23:16 +02003682 f_init(1, true);
3683 f_sleep(1.0);
3684 vc_conn := f_start_handler(refers(f_tc_assignment_fr_a5), pars);
Harald Weltec1a2fff2017-12-17 11:06:19 +01003685 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003686 f_shutdown_helper();
Harald Weltec1a2fff2017-12-17 11:06:19 +01003687}
Neels Hofmeyr0d8ec532021-06-11 00:09:48 +02003688/* Establish a Signalling channel and re-assign to TCH/F with A5/4 encryption. */
3689testcase TC_assignment_fr_a5_4() runs on test_CT {
3690 var MSC_ConnHdlr vc_conn;
3691 var TestHdlrParams pars := f_gen_test_hdlr_pars();
3692 pars.encr := valueof(t_EncrParams('10'O, f_rnd_octstring(8), f_rnd_octstring(16)));
3693
3694 f_init(1, true);
Oliver Smith7eabd312021-07-12 14:18:56 +02003695 f_vty_encryption_a5("0 1 3 4");
Neels Hofmeyr0d8ec532021-06-11 00:09:48 +02003696 f_sleep(1.0);
3697 vc_conn := f_start_handler(refers(f_tc_assignment_fr_a5), pars);
3698 vc_conn.done;
Oliver Smith7eabd312021-07-12 14:18:56 +02003699 f_vty_encryption_a5_reset();
Neels Hofmeyr0d8ec532021-06-11 00:09:48 +02003700 f_shutdown_helper();
3701}
Harald Weltec1a2fff2017-12-17 11:06:19 +01003702
Neels Hofmeyr0faeb7a2021-06-10 23:59:35 +02003703/* Allow only A5/4, but omit the Kc128 IE from MSC's msg. Expect Cipher Mode Reject. */
3704testcase TC_assignment_fr_a5_4_fail() runs on test_CT {
3705 var TestHdlrParams pars := f_gen_test_hdlr_pars();
3706 var MSC_ConnHdlr vc_conn;
3707
3708 f_init(1, true);
3709 f_sleep(1.0);
3710
3711 pars.encr := valueof(t_EncrParams('10'O, f_rnd_octstring(8))); // A5/4 support, but Kc128 missing!
3712 vc_conn := f_start_handler(refers(f_TC_assignment_a5_not_sup), pars);
3713 vc_conn.done;
3714 f_shutdown_helper();
3715}
3716
Harald Welte552620d2017-12-16 23:21:36 +01003717/* Expect ASSIGNMENT FAIL if mandatory IE is missing */
3718private function f_tc_assignment_fr_a5_1_codec_missing(charstring id) runs on MSC_ConnHdlr {
Philipp Maier48604732018-10-09 15:00:37 +02003719 g_pars := f_gen_test_hdlr_pars();
Harald Welte552620d2017-12-16 23:21:36 +01003720 var template PDU_BSSAP exp_fail := tr_BSSMAP_AssignmentFail;
Harald Welteed848512018-05-24 22:27:58 +02003721 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Welte552620d2017-12-16 23:21:36 +01003722
3723 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02003724 /* Omit: ass_cmd.pdu.bssmap.assignmentRequest.codecList */
3725
Harald Weltea0630032018-03-20 21:09:55 +01003726 f_establish_fully(ass_cmd, exp_fail);
Harald Welte552620d2017-12-16 23:21:36 +01003727}
Harald Welte552620d2017-12-16 23:21:36 +01003728testcase TC_assignment_fr_a5_1_codec_missing() runs on test_CT {
3729 var MSC_ConnHdlr vc_conn;
3730
Harald Welte89d42e82017-12-17 16:42:41 +01003731 f_init(1, true);
Harald Welte552620d2017-12-16 23:21:36 +01003732 f_sleep(1.0);
3733
Harald Welte8863fa12018-05-10 20:15:27 +02003734 vc_conn := f_start_handler(refers(f_tc_assignment_fr_a5_1_codec_missing));
Harald Welte552620d2017-12-16 23:21:36 +01003735 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003736 f_shutdown_helper();
Harald Welte552620d2017-12-16 23:21:36 +01003737}
3738
Neels Hofmeyr04d6e6a2021-06-11 00:10:02 +02003739private function f_TC_assignment_a5_not_sup(charstring id) runs on MSC_ConnHdlr {
3740 var template PDU_BSSAP exp_ass_cpl := f_gen_exp_compl();
3741 var PDU_BSSAP exp_ass_req := f_gen_ass_req();
Harald Welte552620d2017-12-16 23:21:36 +01003742
Neels Hofmeyr04d6e6a2021-06-11 00:10:02 +02003743 exp_ass_req.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
3744 exp_ass_req.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
3745
3746 /* this is like the beginning of f_establish_fully(), but only up to ciphering reject */
3747
3748 var BSSMAP_FIELD_CodecType codecType;
3749 timer T := 10.0;
3750
3751 codecType := exp_ass_req.pdu.bssmap.assignmentRequest.codecList.codecElements[0].codecType;
3752 f_MscConnHdlr_init(g_pars.media_nr, host_bts, host_mgw_mgcp, codecType);
3753
3754 f_create_chan_and_exp();
3755 /* we should now have a COMPL_L3 at the MSC */
3756
3757 var template PDU_BSSAP exp_l3_compl;
3758 exp_l3_compl := tr_BSSMAP_ComplL3()
3759 if (g_pars.aoip == false) {
3760 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := omit;
3761 } else {
3762 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := ?;
3763 }
3764 T.start;
3765 alt {
3766 [] BSSAP.receive(exp_l3_compl);
3767 [] BSSAP.receive(tr_BSSMAP_ComplL3) {
3768 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Received non-matching COMPLETE LAYER 3 INFORMATION");
3769 }
3770 [] T.timeout {
3771 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for COMPLETE LAYER 3 INFORMATION");
3772 }
3773 }
3774
3775 /* Start ciphering, expect Cipher Mode Reject */
Neels Hofmeyr6c388f22021-06-11 02:36:56 +02003776 f_cipher_mode(g_pars.encr, exp_fail := true);
Harald Welte552620d2017-12-16 23:21:36 +01003777}
Neels Hofmeyr04d6e6a2021-06-11 00:10:02 +02003778testcase TC_assignment_fr_a5_not_sup() runs on test_CT {
3779 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte552620d2017-12-16 23:21:36 +01003780 var MSC_ConnHdlr vc_conn;
3781
Harald Welte89d42e82017-12-17 16:42:41 +01003782 f_init(1, true);
Harald Welte552620d2017-12-16 23:21:36 +01003783 f_sleep(1.0);
3784
Neels Hofmeyr0588cad2021-06-11 01:38:18 +02003785 pars.encr := valueof(t_EncrParams('20'O, f_rnd_octstring(8), f_rnd_octstring(16)));
Neels Hofmeyr04d6e6a2021-06-11 00:10:02 +02003786 vc_conn := f_start_handler(refers(f_TC_assignment_a5_not_sup), pars);
Harald Welte552620d2017-12-16 23:21:36 +01003787 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003788 f_shutdown_helper();
Harald Welte552620d2017-12-16 23:21:36 +01003789}
3790
3791
Harald Welte4532e0a2017-12-23 02:05:44 +01003792private function f_tc_assignment_sign(charstring id) runs on MSC_ConnHdlr {
Philipp Maier48604732018-10-09 15:00:37 +02003793 g_pars := f_gen_test_hdlr_pars();
Harald Welte4532e0a2017-12-23 02:05:44 +01003794 var template PDU_BSSAP exp_compl := tr_BSSMAP_AssignmentComplete(omit, omit);
Philipp Maier48604732018-10-09 15:00:37 +02003795 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Welte4532e0a2017-12-23 02:05:44 +01003796 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelTypeSIGNAL);
Daniel Willmannebdecc02020-08-12 15:30:17 +02003797
3798 f_statsd_reset();
Harald Weltea0630032018-03-20 21:09:55 +01003799 f_establish_fully(ass_cmd, exp_compl);
Daniel Willmannebdecc02020-08-12 15:30:17 +02003800
3801 var StatsDExpects expect := {
Daniel Willmannc5398f72020-09-21 10:41:35 +02003802 { name := "TTCN3.bts.0.chreq.total", mtype := "c", min := 1, max := 1},
3803 { name := "TTCN3.bts.0.chreq.successful", mtype := "c", min := 1, max := 1},
Daniel Willmannebdecc02020-08-12 15:30:17 +02003804 { name := "TTCN3.bsc.0.assignment.attempted", mtype := "c", min := 1, max := 1},
3805 { name := "TTCN3.bsc.0.assignment.completed", mtype := "c", min := 1, max := 1}
3806 };
3807 f_statsd_expect(expect);
Harald Welte4532e0a2017-12-23 02:05:44 +01003808}
3809
3810testcase TC_assignment_sign() runs on test_CT {
3811 var MSC_ConnHdlr vc_conn;
3812
3813 f_init(1, true);
3814 f_sleep(1.0);
3815
Harald Welte8863fa12018-05-10 20:15:27 +02003816 vc_conn := f_start_handler(refers(f_tc_assignment_sign));
Harald Welte4532e0a2017-12-23 02:05:44 +01003817 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003818 f_shutdown_helper();
Harald Welte4532e0a2017-12-23 02:05:44 +01003819}
3820
Harald Welte60aa5762018-03-21 19:33:13 +01003821/***********************************************************************
3822 * Codec (list) testing
3823 ***********************************************************************/
3824
3825/* check if the given rsl_mode is compatible with the a_elem */
3826private function f_match_codec(BSSMAP_FIELD_CodecElement a_elem, RSL_IE_ChannelMode rsl_mode)
3827return boolean {
3828 select (a_elem.codecType) {
3829 case (GSM_FR) {
3830 if (match(rsl_mode, tr_RSL_ChanMode(RSL_CHRT_TCH_F, RSL_CMOD_SP_GSM1))) {
3831 return true;
3832 }
3833 }
3834 case (GSM_HR) {
3835 if (match(rsl_mode, tr_RSL_ChanMode(RSL_CHRT_TCH_H, RSL_CMOD_SP_GSM1))) {
3836 return true;
3837 }
3838 }
3839 case (GSM_EFR) {
3840 if (match(rsl_mode, tr_RSL_ChanMode(RSL_CHRT_TCH_F, RSL_CMOD_SP_GSM2))) {
3841 return true;
3842 }
3843 }
3844 case (FR_AMR) {
3845 if (match(rsl_mode, tr_RSL_ChanMode(RSL_CHRT_TCH_F, RSL_CMOD_SP_GSM3))) {
3846 return true;
3847 }
3848 }
3849 case (HR_AMR) {
3850 if (match(rsl_mode, tr_RSL_ChanMode(RSL_CHRT_TCH_H, RSL_CMOD_SP_GSM3))) {
3851 return true;
3852 }
3853 }
3854 case else { }
3855 }
3856 return false;
3857}
3858
3859/* check if the given rsl_mode is compatible with the a_list */
3860private function f_match_codecs(BSSMAP_IE_SpeechCodecList a_list, RSL_IE_ChannelMode rsl_mode)
3861return boolean {
3862 for (var integer i := 0; i < sizeof(a_list); i := i+1) {
3863 if (f_match_codec(a_list.codecElements[i], rsl_mode)) {
3864 return true;
3865 }
3866 }
3867 return false;
3868}
3869
3870/* determine BSSMAP_IE_ChannelType from *first* element of BSSMAP_FIELD_CodecElement */
Philipp Maier61f6b572018-07-06 14:03:38 +02003871function f_BSSMAP_chtype_from_codec(BSSMAP_FIELD_CodecElement a_elem)
Harald Welte60aa5762018-03-21 19:33:13 +01003872return BSSMAP_IE_ChannelType {
3873 /* FIXME: actually look at all elements of BSSMAP_IE_SpeechCodecList */
3874 var BSSMAP_IE_ChannelType ret := valueof(ts_BSSMAP_IE_ChannelType);
3875 select (a_elem.codecType) {
3876 case (GSM_FR) {
3877 ret.channelRateAndType := ChRate_TCHF;
3878 ret.speechId_DataIndicator := Spdi_TCHF_FR;
3879 }
3880 case (GSM_HR) {
3881 ret.channelRateAndType := ChRate_TCHH;
3882 ret.speechId_DataIndicator := Spdi_TCHH_HR;
3883 }
3884 case (GSM_EFR) {
3885 ret.channelRateAndType := ChRate_TCHF;
3886 ret.speechId_DataIndicator := Spdi_TCHF_EFR;
3887 }
3888 case (FR_AMR) {
3889 ret.channelRateAndType := ChRate_TCHF;
3890 ret.speechId_DataIndicator := Spdi_TCHF_AMR;
3891 }
3892 case (HR_AMR) {
3893 ret.channelRateAndType := ChRate_TCHH;
3894 ret.speechId_DataIndicator := Spdi_TCHH_AMR;
3895 }
3896 case else {
3897 setverdict(fail, "Unsupported codec ", a_elem);
Daniel Willmannafce8662018-07-06 23:11:32 +02003898 mtc.stop;
Harald Welte60aa5762018-03-21 19:33:13 +01003899 }
3900 }
3901 return ret;
3902}
3903
Harald Weltea63b9102018-03-22 20:36:16 +01003904private function f_rsl_chmod_tmpl_from_codec(BSSMAP_FIELD_CodecElement a_elem)
3905return template RSL_IE_Body {
3906 var template RSL_IE_Body mode_ie := {
3907 chan_mode := {
3908 len := ?,
3909 reserved := ?,
3910 dtx_d := ?,
3911 dtx_u := ?,
3912 spd_ind := RSL_SPDI_SPEECH,
3913 ch_rate_type := -,
3914 coding_alg_rate := -
3915 }
3916 }
3917
3918 select (a_elem.codecType) {
3919 case (GSM_FR) {
3920 mode_ie.chan_mode.ch_rate_type := RSL_CHRT_TCH_F;
3921 mode_ie.chan_mode.coding_alg_rate := RSL_CMOD_SP_GSM1;
3922 }
3923 case (GSM_HR) {
3924 mode_ie.chan_mode.ch_rate_type := RSL_CHRT_TCH_H;
3925 mode_ie.chan_mode.coding_alg_rate := RSL_CMOD_SP_GSM1;
3926 }
3927 case (GSM_EFR) {
3928 mode_ie.chan_mode.ch_rate_type := RSL_CHRT_TCH_F;
3929 mode_ie.chan_mode.coding_alg_rate := RSL_CMOD_SP_GSM2;
3930 }
3931 case (FR_AMR) {
3932 mode_ie.chan_mode.ch_rate_type := RSL_CHRT_TCH_F;
3933 mode_ie.chan_mode.coding_alg_rate := RSL_CMOD_SP_GSM3;
3934 }
3935 case (HR_AMR) {
3936 mode_ie.chan_mode.ch_rate_type := RSL_CHRT_TCH_H;
3937 mode_ie.chan_mode.coding_alg_rate := RSL_CMOD_SP_GSM3;
3938 }
3939 }
3940 return mode_ie;
3941}
3942
Harald Welte60aa5762018-03-21 19:33:13 +01003943type record CodecListTest {
3944 BSSMAP_IE_SpeechCodecList codec_list,
3945 charstring id
3946}
3947type record of CodecListTest CodecListTests
3948
3949private function f_TC_assignment_codec(charstring id) runs on MSC_ConnHdlr {
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02003950 var PDU_BSSAP ass_cmd := f_gen_ass_req(g_pars.use_osmux);
3951 var template PDU_BSSAP exp_compl := f_gen_exp_compl(g_pars.use_osmux);
Harald Welte60aa5762018-03-21 19:33:13 +01003952
3953 /* puzzle together the ASSIGNMENT REQ for given codec[s] */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003954 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
Harald Welte79f3f542018-05-25 20:02:37 +02003955 ass_cmd.pdu.bssmap.assignmentRequest.codecList := g_pars.ass_codec_list;
3956 exp_compl.pdu.bssmap.assignmentComplete.speechCodec.codecElements[0] :=
3957 g_pars.ass_codec_list.codecElements[0];
Philipp Maierd0e64b02019-03-13 14:15:23 +01003958 if (isvalue(g_pars.expect_mr_s0_s7)) {
3959 exp_compl.pdu.bssmap.assignmentComplete.speechCodec.codecElements[0].s0_7 :=
3960 g_pars.expect_mr_s0_s7;
3961 }
Harald Welte79f3f542018-05-25 20:02:37 +02003962 }
Harald Welte60aa5762018-03-21 19:33:13 +01003963 ass_cmd.pdu.bssmap.assignmentRequest.channelType :=
3964 f_BSSMAP_chtype_from_codec(g_pars.ass_codec_list.codecElements[0]);
Harald Welte60aa5762018-03-21 19:33:13 +01003965 log("expecting ASS COMPL like this: ", exp_compl);
3966
3967 f_establish_fully(ass_cmd, exp_compl);
Harald Weltea63b9102018-03-22 20:36:16 +01003968
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02003969 if (not g_pars.expect_channel_mode_modify) {
3970 /* Verify that the RSL-side activation actually matches our expectations */
3971 var RSL_Message rsl := f_rslem_get_last_act(RSL_PROC, 0, g_chan_nr);
Harald Weltea63b9102018-03-22 20:36:16 +01003972
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02003973 var RSL_IE_Body mode_ie;
3974 if (f_rsl_find_ie(rsl, RSL_IE_CHAN_MODE, mode_ie) == false) {
3975 setverdict(fail, "Couldn't find CHAN_MODE IE");
Daniel Willmannafce8662018-07-06 23:11:32 +02003976 mtc.stop;
Neels Hofmeyrbcf62bc2018-07-04 00:24:33 +02003977 }
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02003978 var template RSL_IE_Body t_mode_ie := f_rsl_chmod_tmpl_from_codec(g_pars.ass_codec_list.codecElements[0]);
3979 if (not match(mode_ie, t_mode_ie)) {
3980 log("mode_ie ", mode_ie, " != t_mode_ie ", t_mode_ie);
3981 setverdict(fail, "RSL Channel Mode IE doesn't match expectation");
Neels Hofmeyrbcf62bc2018-07-04 00:24:33 +02003982 }
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02003983
3984 var RSL_IE_Body mr_conf;
3985 if (g_pars.expect_mr_conf_ie != omit) {
3986 if (f_rsl_find_ie(rsl, RSL_IE_MR_CONFIG, mr_conf) == false) {
3987 setverdict(fail, "Missing MR CONFIG IE in RSL Chan Activ");
3988 mtc.stop;
3989 }
Neels Hofmeyrbcf62bc2018-07-04 00:24:33 +02003990 log("found RSL MR CONFIG IE: ", mr_conf);
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02003991
3992 if (not match(mr_conf, g_pars.expect_mr_conf_ie)) {
3993 setverdict(fail, "RSL MR CONFIG IE does not match expectation. Expected: ",
3994 g_pars.expect_mr_conf_ie);
3995 }
3996 } else {
3997 if (f_rsl_find_ie(rsl, RSL_IE_MR_CONFIG, mr_conf) == true) {
3998 log("found RSL MR CONFIG IE: ", mr_conf);
3999 setverdict(fail, "Found MR CONFIG IE in RSL Chan Activ, expecting omit");
4000 mtc.stop;
4001 }
Neels Hofmeyrbcf62bc2018-07-04 00:24:33 +02004002 }
4003 }
Harald Welte60aa5762018-03-21 19:33:13 +01004004}
4005
Philipp Maierd0e64b02019-03-13 14:15:23 +01004006private function f_TC_assignment_codec_fail(charstring id) runs on MSC_ConnHdlr {
4007
4008 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4009 var template PDU_BSSAP exp_fail := tr_BSSMAP_AssignmentFail;
4010
4011 /* puzzle together the ASSIGNMENT REQ for given codec[s] */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02004012 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
Philipp Maierd0e64b02019-03-13 14:15:23 +01004013 ass_cmd.pdu.bssmap.assignmentRequest.codecList := g_pars.ass_codec_list;
4014 }
4015 ass_cmd.pdu.bssmap.assignmentRequest.channelType :=
4016 f_BSSMAP_chtype_from_codec(g_pars.ass_codec_list.codecElements[0]);
4017 log("expecting ASS FAIL like this: ", exp_fail);
4018
4019 f_establish_fully(ass_cmd, exp_fail);
4020}
4021
Harald Welte60aa5762018-03-21 19:33:13 +01004022testcase TC_assignment_codec_fr() runs on test_CT {
Philipp Maier48604732018-10-09 15:00:37 +02004023 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte60aa5762018-03-21 19:33:13 +01004024 var MSC_ConnHdlr vc_conn;
4025
4026 f_init(1, true);
4027 f_sleep(1.0);
4028
4029 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
Harald Welte8863fa12018-05-10 20:15:27 +02004030 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
Harald Welte60aa5762018-03-21 19:33:13 +01004031 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004032 f_shutdown_helper();
Harald Welte60aa5762018-03-21 19:33:13 +01004033}
4034
4035testcase TC_assignment_codec_hr() runs on test_CT {
Philipp Maier48604732018-10-09 15:00:37 +02004036 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte60aa5762018-03-21 19:33:13 +01004037 var MSC_ConnHdlr vc_conn;
4038
4039 f_init(1, true);
4040 f_sleep(1.0);
4041
4042 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecHR}));
Harald Welte8863fa12018-05-10 20:15:27 +02004043 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
Harald Welte60aa5762018-03-21 19:33:13 +01004044 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004045 f_shutdown_helper();
Harald Welte60aa5762018-03-21 19:33:13 +01004046}
4047
4048testcase TC_assignment_codec_efr() runs on test_CT {
Philipp Maier48604732018-10-09 15:00:37 +02004049 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte60aa5762018-03-21 19:33:13 +01004050 var MSC_ConnHdlr vc_conn;
4051
4052 f_init(1, true);
4053 f_sleep(1.0);
4054
4055 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecEFR}));
Harald Welte8863fa12018-05-10 20:15:27 +02004056 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
Harald Welte60aa5762018-03-21 19:33:13 +01004057 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004058 f_shutdown_helper();
Harald Welte60aa5762018-03-21 19:33:13 +01004059}
4060
Philipp Maierd0e64b02019-03-13 14:15:23 +01004061/* Allow 5,90k only (current default config) */
4062private function f_allow_amr_rate_5_90k() runs on test_CT {
Neels Hofmeyr2a5670b2020-11-25 23:39:57 +00004063 f_vty_cfg_msc(BSCVTY, 0, {
4064 "amr-config 12_2k forbidden",
4065 "amr-config 10_2k forbidden",
4066 "amr-config 7_95k forbidden",
4067 "amr-config 7_40k forbidden",
4068 "amr-config 6_70k forbidden",
4069 "amr-config 5_90k allowed",
4070 "amr-config 5_15k forbidden",
4071 "amr-config 4_75k forbidden"
4072 });
Philipp Maierd0e64b02019-03-13 14:15:23 +01004073}
4074
4075/* Allow 4,75k, 5,90k, 4,70k and 12,2k, which are the most common rates
4076 * ("Config-NB-Code = 1") */
4077private function f_allow_amr_rate_4_75k_5_90k_7_40k_12_20k() runs on test_CT {
Neels Hofmeyr2a5670b2020-11-25 23:39:57 +00004078 f_vty_cfg_msc(BSCVTY, 0, {
4079 "amr-config 12_2k allowed",
4080 "amr-config 10_2k forbidden",
4081 "amr-config 7_95k forbidden",
4082 "amr-config 7_40k allowed",
4083 "amr-config 6_70k forbidden",
4084 "amr-config 5_90k allowed",
4085 "amr-config 5_15k forbidden",
4086 "amr-config 4_75k allowed"
4087 });
Philipp Maierd0e64b02019-03-13 14:15:23 +01004088}
4089
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004090private function f_vty_amr_start_mode_set(boolean fr, charstring startmode) runs on test_CT {
4091 var charstring tch;
4092 if (fr) {
4093 tch := "tch-f";
4094 } else {
4095 tch := "tch-h";
4096 }
4097 f_vty_cfg_bts(BSCVTY, 0, { "amr " & tch & " start-mode " & startmode });
4098}
4099
4100/* Set the AMR start-mode for this TCH back to the default configuration. */
4101private function f_vty_amr_start_mode_restore(boolean fr) runs on test_CT {
4102 f_vty_amr_start_mode_set(fr, "auto");
4103}
4104
Harald Welte60aa5762018-03-21 19:33:13 +01004105testcase TC_assignment_codec_amr_f() runs on test_CT {
Philipp Maier48604732018-10-09 15:00:37 +02004106 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte60aa5762018-03-21 19:33:13 +01004107 var MSC_ConnHdlr vc_conn;
Philipp Maier7695a0d2018-09-27 17:52:14 +02004108
4109 /* Note: This setups the codec configuration. The parameter payload in
4110 * mr_conf must be consistant with the parameter codecElements in pars
4111 * and also must match the amr-config in osmo-bsc.cfg! */
Neels Hofmeyrbcf62bc2018-07-04 00:24:33 +02004112 var RSL_IE_Body mr_conf := {
4113 other := {
4114 len := 2,
4115 payload := '2804'O
4116 }
4117 };
Harald Welte60aa5762018-03-21 19:33:13 +01004118
Philipp Maier7695a0d2018-09-27 17:52:14 +02004119 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_F}));
Philipp Maier806f8f12019-03-12 12:13:41 +01004120 pars.ass_codec_list.codecElements[0].s0_7 := '00000100'B; /* 5,90k */
Philipp Maier7695a0d2018-09-27 17:52:14 +02004121 pars.ass_codec_list.codecElements[0].s8_15 := '01010111'B;
4122 pars.expect_mr_conf_ie := mr_conf;
4123
Harald Welte60aa5762018-03-21 19:33:13 +01004124 f_init(1, true);
4125 f_sleep(1.0);
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004126 f_vty_amr_start_mode_set(true, "1");
Harald Welte60aa5762018-03-21 19:33:13 +01004127
Harald Welte8863fa12018-05-10 20:15:27 +02004128 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
Harald Welte60aa5762018-03-21 19:33:13 +01004129 vc_conn.done;
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004130
4131 f_vty_amr_start_mode_restore(true);
Vadim Yanitskiy292e5962021-01-03 14:18:47 +01004132 f_shutdown_helper();
Harald Welte60aa5762018-03-21 19:33:13 +01004133}
4134
4135testcase TC_assignment_codec_amr_h() runs on test_CT {
Philipp Maier48604732018-10-09 15:00:37 +02004136 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte60aa5762018-03-21 19:33:13 +01004137 var MSC_ConnHdlr vc_conn;
Philipp Maier7695a0d2018-09-27 17:52:14 +02004138
4139 /* See note above */
Neels Hofmeyrbcf62bc2018-07-04 00:24:33 +02004140 var RSL_IE_Body mr_conf := {
4141 other := {
4142 len := 2,
4143 payload := '2804'O
4144 }
4145 };
Harald Welte60aa5762018-03-21 19:33:13 +01004146
Philipp Maier7695a0d2018-09-27 17:52:14 +02004147 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_H}));
Philipp Maier806f8f12019-03-12 12:13:41 +01004148 pars.ass_codec_list.codecElements[0].s0_7 := '00000100'B; /* 5,90k */
Philipp Maier7695a0d2018-09-27 17:52:14 +02004149 pars.ass_codec_list.codecElements[0].s8_15 := '00000111'B;
4150 pars.expect_mr_conf_ie := mr_conf;
4151
Harald Welte60aa5762018-03-21 19:33:13 +01004152 f_init(1, true);
4153 f_sleep(1.0);
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004154 f_vty_amr_start_mode_set(false, "1");
Harald Welte60aa5762018-03-21 19:33:13 +01004155
Harald Welte8863fa12018-05-10 20:15:27 +02004156 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
Harald Welte60aa5762018-03-21 19:33:13 +01004157 vc_conn.done;
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004158
4159 f_vty_amr_start_mode_restore(false);
Vadim Yanitskiy292e5962021-01-03 14:18:47 +01004160 f_shutdown_helper();
Harald Welte60aa5762018-03-21 19:33:13 +01004161}
4162
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02004163/* Establish signalling on a TCH/F lchan, and then switch to speech mode without a new Assignment. */
4164testcase TC_assignment_codec_fr_by_mode_modify() runs on test_CT {
4165 var TestHdlrParams pars := f_gen_test_hdlr_pars();
4166 var MSC_ConnHdlr vc_conn;
4167
4168 f_init(1, true);
4169 f_sleep(1.0);
4170
4171 /* By disabling all SDCCH, the MS should be given a TCH/F for signalling. Then activating an FR codec should
4172 * merely do a Channel Mode Modify, and not assign to a new lchan. f_establish_fully() already accounts for
4173 * expecting a Channel Mode Modify if the channel type is compatible. */
4174 f_disable_all_sdcch();
4175 f_disable_all_tch_h();
4176
4177 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
4178 pars.expect_channel_mode_modify := true;
4179 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
4180 vc_conn.done;
4181
4182 f_enable_all_sdcch();
4183 f_enable_all_tch();
4184 f_shutdown_helper();
4185}
4186
Neels Hofmeyr454d7922020-11-26 02:24:57 +00004187/* 'amr start-mode auto' should not keep the (unused) 'smod' bits from previous configuration */
4188testcase TC_assignment_codec_amr_startmode_cruft() runs on test_CT {
4189 var TestHdlrParams pars := f_gen_test_hdlr_pars();
4190 var MSC_ConnHdlr vc_conn;
4191
4192 var RSL_IE_Body mr_conf := {
4193 other := {
4194 len := 2,
4195 payload := '2004'O /* <- expect ICMI=0, smod=00 */
4196 }
4197 };
4198
4199 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_F}));
4200 pars.ass_codec_list.codecElements[0].s0_7 := '00000100'B; /* 5,90k */
4201 pars.ass_codec_list.codecElements[0].s8_15 := '01010111'B;
4202 pars.expect_mr_conf_ie := mr_conf;
4203
4204 f_init(1, true);
4205 f_sleep(1.0);
4206
4207 /* First set nonzero start mode bits */
4208 f_vty_amr_start_mode_set(true, "4");
4209 /* Now set to auto, and expect the startmode bits to be zero in the message, i.e. ensure that osmo-bsc does not
4210 * let the startmode bits stick around and has deterministic MultiRate config for 'start-mode auto'; that is
4211 * ensured by above '2004'O, where 'x0xx'O indicates ICMI = 0, spare = 0, smod = 00. */
4212 f_vty_amr_start_mode_set(true, "auto");
4213
4214 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
4215 vc_conn.done;
Neels Hofmeyr454d7922020-11-26 02:24:57 +00004216
4217 /* Clear the startmode bits to not affect subsequent tests, in case the bits should indeed stick around. */
4218 f_vty_amr_start_mode_set(true, "1");
4219 f_vty_amr_start_mode_restore(true);
Vadim Yanitskiy292e5962021-01-03 14:18:47 +01004220 f_shutdown_helper();
Neels Hofmeyr454d7922020-11-26 02:24:57 +00004221}
4222
Neels Hofmeyr21863562020-11-26 00:34:33 +00004223function f_TC_assignment_codec_amr(boolean fr, octetstring mrconf, bitstring s8_s0, bitstring exp_s8_s0,
4224 charstring start_mode := "1")
Philipp Maierd0e64b02019-03-13 14:15:23 +01004225runs on test_CT {
4226
4227 var TestHdlrParams pars := f_gen_test_hdlr_pars();
4228 var MSC_ConnHdlr vc_conn;
4229
4230 /* See note above */
4231 var RSL_IE_Body mr_conf := {
4232 other := {
4233 len := lengthof(mrconf),
4234 payload := mrconf
4235 }
4236 };
4237
4238 if (fr) {
4239 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_F}));
4240 } else {
4241 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_H}));
4242 }
4243 pars.ass_codec_list.codecElements[0].s0_7 := s8_s0;
4244 pars.ass_codec_list.codecElements[0].s8_15 := '00000111'B;
4245 pars.expect_mr_conf_ie := mr_conf;
4246 pars.expect_mr_s0_s7 := exp_s8_s0;
4247
4248 f_init(1, true);
4249 f_allow_amr_rate_4_75k_5_90k_7_40k_12_20k();
Neels Hofmeyr21863562020-11-26 00:34:33 +00004250 f_vty_amr_start_mode_set(fr, start_mode);
Philipp Maierd0e64b02019-03-13 14:15:23 +01004251 f_sleep(1.0);
4252
4253 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
4254 vc_conn.done;
4255 f_allow_amr_rate_5_90k();
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004256 f_vty_amr_start_mode_restore(fr);
Philipp Maierd0e64b02019-03-13 14:15:23 +01004257}
4258
4259function f_TC_assignment_codec_amr_fail(boolean fr, bitstring s8_s0)
4260runs on test_CT {
4261
4262 var TestHdlrParams pars := f_gen_test_hdlr_pars();
4263 var MSC_ConnHdlr vc_conn;
4264
4265 if (fr) {
4266 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_F}));
4267 } else {
4268 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_H}));
4269 }
4270 pars.ass_codec_list.codecElements[0].s0_7 := s8_s0;
4271 pars.ass_codec_list.codecElements[0].s8_15 := '00000111'B;
4272
4273 f_init(1, true);
4274 f_allow_amr_rate_4_75k_5_90k_7_40k_12_20k();
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004275 f_vty_amr_start_mode_set(fr, "1");
Philipp Maierd0e64b02019-03-13 14:15:23 +01004276 f_sleep(1.0);
4277
4278 vc_conn := f_start_handler(refers(f_TC_assignment_codec_fail), pars);
4279 vc_conn.done;
4280 f_allow_amr_rate_5_90k();
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004281 f_vty_amr_start_mode_restore(fr);
Philipp Maierd0e64b02019-03-13 14:15:23 +01004282}
4283
4284
4285/* Set S1, we expect an AMR multirate configuration IE with all four rates
4286 * set. */
4287testcase TC_assignment_codec_amr_f_S1() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004288 f_TC_assignment_codec_amr(true, '289520882208'O, '00000010'B, '00000010'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004289 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004290}
4291
4292/* Set S1, we expect an AMR multirate configuration IE with the lower three
4293 * rates set. */
4294testcase TC_assignment_codec_amr_h_S1() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004295 f_TC_assignment_codec_amr(false, '2815208820'O, '00000010'B, '00000010'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004296 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004297}
4298
4299/* Set S1 and two other rates, we expect an AMR MULTIRATE CONFIGURATION IE with
4300 * all four rates (and only S1 set in the ASSIGNMENT COMPLETE) */
4301testcase TC_assignment_codec_amr_f_S124() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004302 f_TC_assignment_codec_amr(true, '289520882208'O, '00010110'B, '00000010'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004303 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004304}
4305
4306/* Set S1 and two other rates, we expect an AMR MULTIRATE CONFIGURATION IE with
4307 * all four rates (and only S1 set in the ASSIGNMENT COMPLETE) */
4308testcase TC_assignment_codec_amr_h_S124() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004309 f_TC_assignment_codec_amr(false, '2815208820'O, '00010110'B, '00000010'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004310 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004311}
4312
4313/* The following block of tests selects more and more rates until all four
4314 * possible rates are in the active set (full rate) */
4315testcase TC_assignment_codec_amr_f_S0() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004316 f_TC_assignment_codec_amr(true, '2801'O, '00000001'B, '00000001'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004317 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004318}
4319
4320testcase TC_assignment_codec_amr_f_S02() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004321 f_TC_assignment_codec_amr(true, '28052080'O, '00000101'B, '00000101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004322 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004323}
4324
4325testcase TC_assignment_codec_amr_f_S024() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004326 f_TC_assignment_codec_amr(true, '2815208820'O, '00010101'B, '00010101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004327 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004328}
4329
4330testcase TC_assignment_codec_amr_f_S0247() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004331 f_TC_assignment_codec_amr(true, '289520882208'O, '10010101'B, '10010101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004332 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004333}
4334
4335/* The following block of tests selects more and more rates until all three
4336 * possible rates are in the active set (half rate) */
4337testcase TC_assignment_codec_amr_h_S0() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004338 f_TC_assignment_codec_amr(false, '2801'O, '00000001'B, '00000001'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004339 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004340}
4341
4342testcase TC_assignment_codec_amr_h_S02() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004343 f_TC_assignment_codec_amr(false, '28052080'O, '00000101'B, '00000101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004344 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004345}
4346
4347testcase TC_assignment_codec_amr_h_S024() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004348 f_TC_assignment_codec_amr(false, '2815208820'O, '00010101'B, '00010101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004349 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004350}
4351
4352/* The following block tests what happens when the MSC does offer rate
4353 * configurations that are not supported by the BSC. Normally such situations
4354 * should not happen because the MSC gets informed by the BSC in advance via
4355 * the L3 COMPLETE message which rates are applicable. The MSC should not try
4356 * to offer rates that are not applicable anyway. */
4357
4358testcase TC_assignment_codec_amr_h_S0247() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004359 /* Try to include 12,2k in into the active set even though the channel
4360 * is half rate only. The BSC is expected to remove the 12,0k */
4361 f_TC_assignment_codec_amr(false, '2815208820'O, '10010101'B, '00010101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004362 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004363}
4364
4365testcase TC_assignment_codec_amr_f_S01234567() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004366 /* See what happens when all rates are selected at once. Since then
4367 * Also S1 is selected, this setting will be prefered and we should
4368 * get 12.2k, 7,40k, 5,90k, and 4,75k in the active set. */
4369 f_TC_assignment_codec_amr(true, '289520882208'O, '11111111'B, '00000010'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004370 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004371}
4372
4373testcase TC_assignment_codec_amr_f_S0234567() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004374 /* Same as above, but with S1 missing, the MSC is then expected to
4375 * select the currently supported rates, which are also 12.2k, 7,40k,
4376 * 5,90k, and 4,75k, into the active set. */
4377 f_TC_assignment_codec_amr(true, '289520882208'O, '11111101'B, '10010101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004378 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004379}
4380
4381testcase TC_assignment_codec_amr_f_zero() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004382 /* Try to select no rates at all */
4383 f_TC_assignment_codec_amr_fail(true, '00000000'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004384 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004385}
4386
4387testcase TC_assignment_codec_amr_f_unsupp() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004388 /* Try to select only unsupported rates */
4389 f_TC_assignment_codec_amr_fail(true, '01101000'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004390 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004391}
4392
4393testcase TC_assignment_codec_amr_h_S7() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004394 /* Try to select 12,2k for half rate */
4395 f_TC_assignment_codec_amr_fail(false, '10000000'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004396 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004397}
4398
Neels Hofmeyr21863562020-11-26 00:34:33 +00004399testcase TC_assignment_codec_amr_f_start_mode_auto() runs on test_CT {
4400 f_TC_assignment_codec_amr(true, '209520882208'O, '11111111'B, '00000010'B,
4401 start_mode := "auto");
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01004402 f_shutdown_helper();
Neels Hofmeyr21863562020-11-26 00:34:33 +00004403}
4404
4405testcase TC_assignment_codec_amr_h_start_mode_auto() runs on test_CT {
4406 f_TC_assignment_codec_amr(false, '2015208820'O, '10010101'B, '00010101'B,
4407 start_mode := "auto");
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01004408 f_shutdown_helper();
Neels Hofmeyr21863562020-11-26 00:34:33 +00004409}
4410
Neels Hofmeyr3eb94562020-11-26 02:40:26 +00004411testcase TC_assignment_codec_amr_f_start_mode_4() runs on test_CT {
Vadim Yanitskiy7815f482021-01-03 17:07:37 +01004412 /* "amr tch-f modes 0 2 4 7" => total 4 modes and start mode 4 => '11'B on the wire */
Neels Hofmeyr3eb94562020-11-26 02:40:26 +00004413 f_TC_assignment_codec_amr(true, '2b9520882208'O, '11111111'B, '00000010'B,
4414 start_mode := "4");
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01004415 f_shutdown_helper();
Neels Hofmeyr3eb94562020-11-26 02:40:26 +00004416}
4417
4418testcase TC_assignment_codec_amr_h_start_mode_4() runs on test_CT {
Vadim Yanitskiy7815f482021-01-03 17:07:37 +01004419 /* "amr tch-h modes 0 2 4" => total 3 modes and start mode 4 => '10'B on the wire */
4420 f_TC_assignment_codec_amr(false, '2a15208820'O, '10010101'B, '00010101'B,
Neels Hofmeyr3eb94562020-11-26 02:40:26 +00004421 start_mode := "4");
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01004422 f_shutdown_helper();
Neels Hofmeyr3eb94562020-11-26 02:40:26 +00004423}
4424
Philipp Maierac09bfc2019-01-08 13:41:39 +01004425private function f_disable_all_tch_f() runs on test_CT {
Philipp Maierc704a882019-01-29 15:58:52 +01004426 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 1 sub-slot 0 borken");
4427 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 2 sub-slot 0 borken");
4428 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 3 sub-slot 0 borken");
4429 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 4 sub-slot 0 borken");
Philipp Maierac09bfc2019-01-08 13:41:39 +01004430}
4431
4432private function f_disable_all_tch_h() runs on test_CT {
Philipp Maierc704a882019-01-29 15:58:52 +01004433 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 5 sub-slot 0 borken");
4434 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 5 sub-slot 1 borken");
Philipp Maierac09bfc2019-01-08 13:41:39 +01004435}
4436
4437private function f_enable_all_tch() runs on test_CT {
Philipp Maierc704a882019-01-29 15:58:52 +01004438 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 1 sub-slot 0 unused");
4439 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 2 sub-slot 0 unused");
4440 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 3 sub-slot 0 unused");
4441 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 4 sub-slot 0 unused");
4442 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 5 sub-slot 0 unused");
4443 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 5 sub-slot 1 unused");
Philipp Maierac09bfc2019-01-08 13:41:39 +01004444}
4445
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02004446private function f_disable_all_sdcch() runs on test_CT {
4447 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 0 borken");
4448 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 1 borken");
4449 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 2 borken");
4450 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 3 borken");
4451}
4452
4453private function f_enable_all_sdcch() runs on test_CT {
4454 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 0 unused");
4455 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 1 unused");
4456 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 2 unused");
4457 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 3 unused");
4458}
4459
Philipp Maierac09bfc2019-01-08 13:41:39 +01004460/* Allow HR only */
4461private function f_TC_assignment_codec_xr_exhausted_req_hr(charstring id) runs on MSC_ConnHdlr {
4462 g_pars := f_gen_test_hdlr_pars();
4463 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4464 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4465 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4466 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '09'O;
4467 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '05'O;
4468 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecHR}));
4469 f_establish_fully(ass_cmd, exp_compl);
4470}
4471
4472/* Allow FR only */
4473private function f_TC_assignment_codec_xr_exhausted_req_fr(charstring id) runs on MSC_ConnHdlr {
4474 g_pars := f_gen_test_hdlr_pars();
4475 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4476 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4477 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4478 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '08'O;
4479 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '01'O;
4480 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
4481 f_establish_fully(ass_cmd, exp_compl);
4482}
4483
4484/* Allow HR only (expect assignment failure) */
4485private function f_TC_assignment_codec_xr_exhausted_req_hr_fail(charstring id) runs on MSC_ConnHdlr {
4486 g_pars := f_gen_test_hdlr_pars();
4487 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4488 var template PDU_BSSAP exp_fail := tr_BSSMAP_AssignmentFail;
4489 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4490 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '09'O;
4491 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '05'O;
4492 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecHR}));
4493 f_establish_fully(ass_cmd, exp_fail);
4494}
4495
4496/* Allow FR only (expect assignment failure) */
4497private function f_TC_assignment_codec_xr_exhausted_req_fr_fail(charstring id) runs on MSC_ConnHdlr {
4498 g_pars := f_gen_test_hdlr_pars();
4499 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4500 var template PDU_BSSAP exp_fail := tr_BSSMAP_AssignmentFail;
4501 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4502 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '08'O;
4503 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '01'O;
4504 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
4505 f_establish_fully(ass_cmd, exp_fail);
4506}
4507
4508/* Allow FR and HR, but prefer FR */
4509private function f_TC_assignment_codec_fr_exhausted_req_fr_hr(charstring id) runs on MSC_ConnHdlr {
4510 g_pars := f_gen_test_hdlr_pars();
4511 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4512 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4513 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4514 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '0A'O; /* Prefer FR */
4515 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '8105'O;
4516 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR, ts_CodecHR}));
4517 exp_compl.pdu.bssmap.assignmentComplete.speechVersion.speechVersionIdentifier := '0000101'B; /* Expect HR */
4518 f_establish_fully(ass_cmd, exp_compl);
4519}
4520
4521/* Allow FR and HR, but prefer HR */
4522private function f_TC_assignment_codec_fr_exhausted_req_hr_fr(charstring id) runs on MSC_ConnHdlr {
4523 g_pars := f_gen_test_hdlr_pars();
4524 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4525 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4526 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4527 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '0B'O; /* Prefer HR */
4528 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '8501'O;
4529 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecHR, ts_CodecFR}));
4530 exp_compl.pdu.bssmap.assignmentComplete.speechVersion.speechVersionIdentifier := '0000101'B; /* Expect HR */
4531 f_establish_fully(ass_cmd, exp_compl);
4532}
4533
4534/* Allow FR and HR, but prefer FR */
4535private function f_TC_assignment_codec_hr_exhausted_req_fr_hr(charstring id) runs on MSC_ConnHdlr {
4536 g_pars := f_gen_test_hdlr_pars();
4537 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4538 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4539 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4540 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '0A'O; /* Prefer FR */
4541 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '8105'O;
4542 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR, ts_CodecHR}));
4543 exp_compl.pdu.bssmap.assignmentComplete.speechVersion.speechVersionIdentifier := '0000001'B; /* Expect FR */
4544 f_establish_fully(ass_cmd, exp_compl);
4545}
4546
4547/* Allow FR and HR, but prefer HR */
4548private function f_TC_assignment_codec_hr_exhausted_req_hr_fr(charstring id) runs on MSC_ConnHdlr {
4549 g_pars := f_gen_test_hdlr_pars();
4550 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4551 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4552 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4553 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '0B'O; /* Prefer HR */
4554 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '8501'O;
4555 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecHR, ts_CodecFR}));
4556 exp_compl.pdu.bssmap.assignmentComplete.speechVersion.speechVersionIdentifier := '0000001'B; /* Expect FR */
4557 f_establish_fully(ass_cmd, exp_compl);
4558}
4559
4560/* Request a HR channel while all FR channels are exhausted, this is expected
4561 * to work without conflicts */
4562testcase TC_assignment_codec_fr_exhausted_req_hr() runs on test_CT {
4563 var MSC_ConnHdlr vc_conn;
4564 f_init(1, true);
4565 f_sleep(1.0);
4566 f_enable_all_tch();
4567 f_disable_all_tch_f();
4568 vc_conn := f_start_handler(refers(f_TC_assignment_codec_xr_exhausted_req_hr));
4569 vc_conn.done;
4570 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004571 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004572}
4573
4574/* Request a FR channel while all FR channels are exhausted, this is expected
4575 * to fail. */
4576testcase TC_assignment_codec_fr_exhausted_req_fr() runs on test_CT {
4577 var MSC_ConnHdlr vc_conn;
4578 f_init(1, true);
4579 f_sleep(1.0);
4580 f_enable_all_tch();
4581 f_disable_all_tch_f();
4582 vc_conn := f_start_handler(refers(f_TC_assignment_codec_xr_exhausted_req_fr_fail));
4583 vc_conn.done;
4584 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004585 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004586}
4587
4588/* Request a FR (prefered) or alternatively a HR channel while all FR channels
4589 * are exhausted, this is expected to be resolved by selecting a HR channel. */
4590testcase TC_assignment_codec_fr_exhausted_req_fr_hr() runs on test_CT {
4591 var MSC_ConnHdlr vc_conn;
4592 f_init(1, true);
4593 f_sleep(1.0);
4594 f_enable_all_tch();
4595 f_disable_all_tch_f();
4596 vc_conn := f_start_handler(refers(f_TC_assignment_codec_fr_exhausted_req_fr_hr));
4597 vc_conn.done;
4598 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004599 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004600}
4601
4602/* Request a HR (prefered) or alternatively a FR channel while all FR channels
4603 * are exhausted, this is expected to work without conflicts. */
4604testcase TC_assignment_codec_fr_exhausted_req_hr_fr() runs on test_CT {
4605 var MSC_ConnHdlr vc_conn;
4606 f_init(1, true);
4607 f_sleep(1.0);
4608 f_enable_all_tch();
4609 f_disable_all_tch_f();
4610 vc_conn := f_start_handler(refers(f_TC_assignment_codec_fr_exhausted_req_hr_fr));
4611 vc_conn.done;
4612 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004613 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004614}
4615
4616/* Request a FR channel while all HR channels are exhausted, this is expected
4617 * to work without conflicts */
4618testcase TC_assignment_codec_hr_exhausted_req_fr() runs on test_CT {
4619 var MSC_ConnHdlr vc_conn;
4620 f_init(1, true);
4621 f_sleep(1.0);
4622 f_enable_all_tch();
4623 f_disable_all_tch_h();
4624 vc_conn := f_start_handler(refers(f_TC_assignment_codec_xr_exhausted_req_fr));
4625 vc_conn.done;
4626 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004627 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004628}
4629
4630/* Request a HR channel while all HR channels are exhausted, this is expected
4631 * to fail. */
4632testcase TC_assignment_codec_hr_exhausted_req_hr() runs on test_CT {
4633 var MSC_ConnHdlr vc_conn;
4634 f_init(1, true);
4635 f_sleep(1.0);
4636 f_enable_all_tch();
4637 f_disable_all_tch_h();
4638 vc_conn := f_start_handler(refers(f_TC_assignment_codec_xr_exhausted_req_hr_fail));
4639 vc_conn.done;
4640 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004641 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004642}
4643
4644/* Request a HR (prefered) or alternatively a FR channel while all HR channels
4645 * are exhausted, this is expected to be resolved by selecting a FR channel. */
4646testcase TC_assignment_codec_hr_exhausted_req_hr_fr() runs on test_CT {
4647 var MSC_ConnHdlr vc_conn;
4648 f_init(1, true);
4649 f_sleep(1.0);
4650 f_enable_all_tch();
4651 f_disable_all_tch_h();
4652 vc_conn := f_start_handler(refers(f_TC_assignment_codec_hr_exhausted_req_hr_fr));
4653 vc_conn.done;
4654 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004655 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004656}
4657
4658/* Request a FR (prefered) or alternatively a HR channel while all HR channels
4659 * are exhausted, this is expected to work without conflicts. */
4660testcase TC_assignment_codec_hr_exhausted_req_fr_hr() runs on test_CT {
4661 var MSC_ConnHdlr vc_conn;
4662 f_init(1, true);
4663 f_sleep(1.0);
4664 f_enable_all_tch();
4665 f_disable_all_tch_h();
4666 vc_conn := f_start_handler(refers(f_TC_assignment_codec_hr_exhausted_req_fr_hr));
4667 vc_conn.done;
4668 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004669 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004670}
4671
4672/* Allow FR and HR, but prefer HR */
4673private function f_TC_assignment_codec_req_hr_fr(charstring id) runs on MSC_ConnHdlr {
4674 g_pars := f_gen_test_hdlr_pars();
4675 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4676 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4677 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4678 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '0B'O; /* Prefer HR */
4679 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '8501'O;
4680 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecHR, ts_CodecFR}));
4681 exp_compl.pdu.bssmap.assignmentComplete.speechVersion.speechVersionIdentifier := '0000101'B; /* Expect HR */
4682 f_establish_fully(ass_cmd, exp_compl);
4683}
4684
4685/* Allow FR and HR, but prefer FR */
4686private function f_TC_assignment_codec_req_fr_hr(charstring id) runs on MSC_ConnHdlr {
4687 g_pars := f_gen_test_hdlr_pars();
4688 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4689 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4690 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4691 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '0A'O; /* Prefer FR */
4692 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '8105'O;
4693 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR, ts_CodecHR}));
4694 exp_compl.pdu.bssmap.assignmentComplete.speechVersion.speechVersionIdentifier := '0000001'B; /* Expect FR */
4695 f_establish_fully(ass_cmd, exp_compl);
4696}
4697
4698/* Request a HR (prefered) or alternatively a FR channel, it is expected that
4699 * HR, which is the prefered type, is selected. */
4700testcase TC_assignment_codec_req_hr_fr() runs on test_CT {
4701 var MSC_ConnHdlr vc_conn;
4702 f_init(1, true);
4703 f_sleep(1.0);
4704 f_enable_all_tch();
4705 vc_conn := f_start_handler(refers(f_TC_assignment_codec_req_hr_fr));
4706 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004707 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004708}
4709
4710/* Request a FR (prefered) or alternatively a HR channel, it is expected that
4711 * FR, which is the prefered type, is selected. */
4712testcase TC_assignment_codec_req_fr_hr() runs on test_CT {
4713 var MSC_ConnHdlr vc_conn;
4714 f_init(1, true);
4715 f_sleep(1.0);
4716 f_enable_all_tch();
4717 vc_conn := f_start_handler(refers(f_TC_assignment_codec_req_fr_hr));
4718 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004719 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004720}
4721
Pau Espin Pedrol14475352021-07-22 15:48:16 +02004722/* request a signalling channel with all SDCCH exhausted, it is expected that a TCH will be selected */
4723private function f_TC_assignment_sdcch_exhausted_req_signalling(charstring id) runs on MSC_ConnHdlr {
4724 g_pars := f_gen_test_hdlr_pars();
4725 g_pars.ra := '02'O; /* RA containing reason=LU */
4726
4727 var MobileIdentityLV mi := valueof(ts_MI_IMSI_LV(g_pars.imsi));
4728 var PDU_ML3_MS_NW l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, mi));
4729 var octetstring l3_enc := enc_PDU_ML3_MS_NW(l3_info);
4730 var template uint3_t tsc := ?;
4731
4732 f_MscConnHdlr_init(g_pars.media_nr, host_bts, host_mgw_mgcp, FR_AMR);
4733 f_create_bssmap_exp(l3_enc);
4734 /* call helper function for CHAN_RQD -> IMM ASS ->EST_IND */
4735 RSL_Emulation.f_chan_est(g_pars.ra, l3_enc, g_pars.link_id, g_pars.fn, tsc);
4736
4737 /* we should now have a COMPL_L3 at the MSC */
4738 timer T := 10.0;
4739 T.start;
4740 alt {
4741 [] BSSAP.receive(tr_BSSMAP_ComplL3);
4742 [] T.timeout {
4743 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for COMPLETE LAYER 3 INFORMATION");
4744 }
4745 }
4746}
4747testcase TC_assignment_sdcch_exhausted_req_signalling() runs on test_CT {
4748 var MSC_ConnHdlr vc_conn;
4749 f_init(1, true);
4750 f_sleep(1.0);
4751 f_disable_all_sdcch();
4752 vc_conn := f_start_handler(refers(f_TC_assignment_sdcch_exhausted_req_signalling));
4753 vc_conn.done;
4754 f_enable_all_sdcch();
4755 f_shutdown_helper();
4756}
4757
4758/* Request a signalling channel with all SDCCH exhausted, it is
4759 expected that no TCH will be selected for signalling and assigment will fail
4760 because it's dictated by VTY config */
4761testcase TC_assignment_sdcch_exhausted_req_signalling_tch_forbidden() runs on test_CT {
4762 var RSL_Message rsl_unused, rsl_msg;
4763 var GsmRrMessage rr;
4764 f_init(1, false);
4765 f_sleep(1.0);
4766 f_vty_allow_tch_for_signalling(false, 0);
4767 f_disable_all_sdcch();
4768
4769 /* RA containing reason=LU */
4770 f_ipa_tx(0, ts_RSL_CHAN_RQD('02'O, 2342));
4771 rsl_msg := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
4772 rr := dec_GsmRrMessage(rsl_msg.ies[1].body.full_imm_ass_info.payload);
4773 if (rr.header.message_type != IMMEDIATE_ASSIGNMENT_REJECT) {
4774 setverdict(fail, "Expected reject");
4775 }
4776
4777 f_vty_allow_tch_for_signalling(true, 0);
4778 f_enable_all_sdcch();
4779 f_shutdown_helper();
4780}
4781
4782/* Request a voice channel with all SDCCH exhausted, it is
4783 * expected that TCH channel will be allocated since the VTY option is only
4784 * aimed at signalling requests */
4785private function f_TC_assignment_sdcch_exhausted_req_voice_tch_forbidden(charstring id) runs on MSC_ConnHdlr {
4786 g_pars := f_gen_test_hdlr_pars();
4787 g_pars.ra := '43'O; /* RA containing reason=originating speech call*/
4788
4789 var MobileIdentityLV mi := valueof(ts_MI_IMSI_LV(g_pars.imsi));
4790 var PDU_ML3_MS_NW l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, mi));
4791 var octetstring l3_enc := enc_PDU_ML3_MS_NW(l3_info);
4792 var template uint3_t tsc := ?;
4793
4794 f_MscConnHdlr_init(g_pars.media_nr, host_bts, host_mgw_mgcp, FR_AMR);
4795 f_create_bssmap_exp(l3_enc);
4796 /* call helper function for CHAN_RQD -> IMM ASS ->EST_IND */
4797 RSL_Emulation.f_chan_est(g_pars.ra, l3_enc, g_pars.link_id, g_pars.fn, tsc);
4798
4799 /* we should now have a COMPL_L3 at the MSC */
4800 timer T := 10.0;
4801 T.start;
4802 alt {
4803 [] BSSAP.receive(tr_BSSMAP_ComplL3);
4804 [] T.timeout {
4805 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for COMPLETE LAYER 3 INFORMATION");
4806 }
4807 }
4808}
4809testcase TC_assignment_sdcch_exhausted_req_voice_tch_forbidden() runs on test_CT {
4810 var MSC_ConnHdlr vc_conn;
4811 f_init(1, true);
4812 f_sleep(1.0);
4813 f_vty_allow_tch_for_signalling(false, 0);
4814 f_disable_all_sdcch();
4815
4816 vc_conn := f_start_handler(refers(f_TC_assignment_sdcch_exhausted_req_voice_tch_forbidden));
4817 vc_conn.done;
4818
4819 f_vty_allow_tch_for_signalling(true, 0);
4820 f_enable_all_sdcch();
4821 f_shutdown_helper();
4822}
4823
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02004824testcase TC_assignment_osmux() runs on test_CT {
4825 var TestHdlrParams pars := f_gen_test_hdlr_pars();
4826 var MSC_ConnHdlr vc_conn;
4827
4828 /* See note above */
4829 var RSL_IE_Body mr_conf := {
4830 other := {
4831 len := 2,
4832 payload := '2804'O
4833 }
4834 };
4835
4836 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_H}));
4837 pars.ass_codec_list.codecElements[0].s0_7 := '00000100'B; /* 5,90k */
4838 pars.ass_codec_list.codecElements[0].s8_15 := '00000111'B;
4839 pars.expect_mr_conf_ie := mr_conf;
4840 pars.use_osmux := true;
4841
4842 f_init(1, true, true);
4843 f_sleep(1.0);
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004844 f_vty_amr_start_mode_set(false, "1");
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02004845
4846 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
4847 vc_conn.done;
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004848
4849 f_vty_amr_start_mode_restore(false);
Vadim Yanitskiy292e5962021-01-03 14:18:47 +01004850 f_shutdown_helper();
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02004851}
4852
Neels Hofmeyr92b12b72018-09-18 14:30:23 +02004853/* test the procedure of the MSC requesting a Classmark Update:
4854 * a) BSSMAP Classmark Request should result in RR CLASSMARK ENQUIRY,
4855 * b) L3 RR CLASSMARK CHANGE should result in BSSMAP CLASSMARK UPDATE */
Harald Welte898113b2018-01-31 18:32:21 +01004856private function f_tc_classmark(charstring id) runs on MSC_ConnHdlr {
Philipp Maier48604732018-10-09 15:00:37 +02004857 g_pars := f_gen_test_hdlr_pars();
4858
Harald Weltea0630032018-03-20 21:09:55 +01004859 f_create_chan_and_exp();
Harald Welte898113b2018-01-31 18:32:21 +01004860 /* we should now have a COMPL_L3 at the MSC */
4861 BSSAP.receive(tr_BSSMAP_ComplL3);
4862
Neels Hofmeyr92b12b72018-09-18 14:30:23 +02004863 BSSAP.send(ts_BSSMAP_ClassmarkRequest);
4864 RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_CM_ENQUIRY));
4865
Harald Welte898113b2018-01-31 18:32:21 +01004866 f_rsl_send_l3(ts_RRM_CM_CHG(valueof(ts_CM2)));
4867 BSSAP.receive(tr_BSSMAP_ClassmarkUpd(?, omit));
4868 setverdict(pass);
4869}
4870testcase TC_classmark() runs on test_CT {
4871 var MSC_ConnHdlr vc_conn;
4872 f_init(1, true);
4873 f_sleep(1.0);
Harald Welte8863fa12018-05-10 20:15:27 +02004874 vc_conn := f_start_handler(refers(f_tc_classmark));
Harald Welte898113b2018-01-31 18:32:21 +01004875 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004876 f_shutdown_helper();
Harald Welte898113b2018-01-31 18:32:21 +01004877}
4878
Harald Welteeddf0e92020-06-21 19:42:15 +02004879/* Send a CommonID from the simulated MSC and verify that the information is used to
4880 * fill BSC-internal data structures (specifically, bsc_subscr associated with subscr_conn) */
4881private function f_tc_common_id(charstring id) runs on MSC_ConnHdlr {
4882 g_pars := f_gen_test_hdlr_pars();
4883 f_MscConnHdlr_init_vty();
4884
4885 f_create_chan_and_exp();
4886 /* we should now have a COMPL_L3 at the MSC */
4887 BSSAP.receive(tr_BSSMAP_ComplL3);
4888
4889 /* Send CommonID */
4890 BSSAP.send(ts_BSSMAP_CommonId(g_pars.imsi));
4891
4892 /* Use VTY to verify that the IMSI of the subscr_conn is set */
4893 var charstring regex := "*(IMSI: " & hex2str(g_pars.imsi) & ")*";
4894 f_vty_transceive_match_regexp_retry(BSCVTY, "show conns", regex, 0, 4, 1.0);
4895
4896 setverdict(pass);
4897}
4898testcase TC_common_id() runs on test_CT {
4899 var MSC_ConnHdlr vc_conn;
4900 f_init(1, true);
4901 f_sleep(1.0);
4902 vc_conn := f_start_handler(refers(f_tc_common_id));
4903 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004904 f_shutdown_helper();
Harald Welteeddf0e92020-06-21 19:42:15 +02004905}
4906
Harald Weltee3bd6582018-01-31 22:51:25 +01004907private function f_est_single_l3(template PDU_ML3_MS_NW l3) runs on MSC_ConnHdlr {
Philipp Maier48604732018-10-09 15:00:37 +02004908 g_pars := f_gen_test_hdlr_pars();
Harald Weltea0630032018-03-20 21:09:55 +01004909 f_create_chan_and_exp();
Harald Welte898113b2018-01-31 18:32:21 +01004910 /* we should now have a COMPL_L3 at the MSC */
4911 BSSAP.receive(tr_BSSMAP_ComplL3);
4912
Harald Weltee3bd6582018-01-31 22:51:25 +01004913 /* send the single message we want to send */
4914 f_rsl_send_l3(l3);
4915}
4916
4917private function f_bssap_expect_nothing(float sec := 5.00) runs on MSC_ConnHdlr {
4918 timer T := sec;
4919 var PDU_BSSAP bssap;
Harald Welte898113b2018-01-31 18:32:21 +01004920 T.start;
4921 alt {
Harald Weltee3bd6582018-01-31 22:51:25 +01004922 [] BSSAP.receive(PDU_BSSAP:?) -> value bssap {
4923 setverdict(fail, "Unexpected BSSMAP ", bssap);
Daniel Willmannafce8662018-07-06 23:11:32 +02004924 mtc.stop;
Harald Welte898113b2018-01-31 18:32:21 +01004925 }
4926 [] T.timeout {
4927 setverdict(pass);
4928 }
4929 }
4930}
4931
Harald Weltee3bd6582018-01-31 22:51:25 +01004932/* unsolicited ASSIGNMENT FAIL (without ASSIGN) from MS shouldn't bring BSC down */
4933private function f_tc_unsol_ass_fail(charstring id) runs on MSC_ConnHdlr {
4934 f_est_single_l3(ts_RRM_AssignmentFailure('00'O));
4935 f_bssap_expect_nothing();
4936}
Harald Welte898113b2018-01-31 18:32:21 +01004937testcase TC_unsol_ass_fail() runs on test_CT {
4938 var MSC_ConnHdlr vc_conn;
4939 f_init(1, true);
4940 f_sleep(1.0);
Harald Welte8863fa12018-05-10 20:15:27 +02004941 vc_conn := f_start_handler(refers(f_tc_unsol_ass_fail));
Harald Welte898113b2018-01-31 18:32:21 +01004942 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004943 f_shutdown_helper();
Harald Welte898113b2018-01-31 18:32:21 +01004944}
Harald Welte552620d2017-12-16 23:21:36 +01004945
Harald Welteea99a002018-01-31 20:46:43 +01004946
4947/* unsolicited ASSIGNMENT COMPLETE (without ASSIGN) from MS shouldn't bring BSC down */
4948private function f_tc_unsol_ass_compl(charstring id) runs on MSC_ConnHdlr {
Harald Weltee3bd6582018-01-31 22:51:25 +01004949 f_est_single_l3(ts_RRM_AssignmentComplete('00'O));
4950 f_bssap_expect_nothing();
Harald Welteea99a002018-01-31 20:46:43 +01004951}
4952testcase TC_unsol_ass_compl() runs on test_CT {
4953 var MSC_ConnHdlr vc_conn;
4954 f_init(1, true);
4955 f_sleep(1.0);
Harald Welte8863fa12018-05-10 20:15:27 +02004956 vc_conn := f_start_handler(refers(f_tc_unsol_ass_compl));
Harald Welteea99a002018-01-31 20:46:43 +01004957 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004958 f_shutdown_helper();
Harald Welteea99a002018-01-31 20:46:43 +01004959}
4960
4961
Harald Weltefbf9b5e2018-01-31 20:41:23 +01004962/* unsolicited HANDOVER FAIL (without ASSIGN) from MS shouldn't bring BSC down */
4963private function f_tc_unsol_ho_fail(charstring id) runs on MSC_ConnHdlr {
Harald Weltee3bd6582018-01-31 22:51:25 +01004964 f_est_single_l3(ts_RRM_HandoverFailure('00'O));
4965 f_bssap_expect_nothing();
Harald Weltefbf9b5e2018-01-31 20:41:23 +01004966}
Harald Weltefbf9b5e2018-01-31 20:41:23 +01004967testcase TC_unsol_ho_fail() runs on test_CT {
4968 var MSC_ConnHdlr vc_conn;
4969 f_init(1, true);
4970 f_sleep(1.0);
Harald Welte8863fa12018-05-10 20:15:27 +02004971 vc_conn := f_start_handler(refers(f_tc_unsol_ho_fail));
Harald Weltefbf9b5e2018-01-31 20:41:23 +01004972 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004973 f_shutdown_helper();
Harald Weltefbf9b5e2018-01-31 20:41:23 +01004974}
4975
4976
Harald Weltee3bd6582018-01-31 22:51:25 +01004977/* short message from MS should be ignored */
4978private function f_tc_err_82_short_msg(charstring id) runs on MSC_ConnHdlr {
Philipp Maier48604732018-10-09 15:00:37 +02004979 g_pars := f_gen_test_hdlr_pars();
Harald Weltea0630032018-03-20 21:09:55 +01004980 f_create_chan_and_exp();
Harald Weltee3bd6582018-01-31 22:51:25 +01004981 /* we should now have a COMPL_L3 at the MSC */
4982 BSSAP.receive(tr_BSSMAP_ComplL3);
4983
4984 /* send short message */
4985 RSL.send(ts_RSL_DATA_IND(g_chan_nr, valueof(ts_RslLinkID_DCCH(0)), ''O));
4986 f_bssap_expect_nothing();
4987}
4988testcase TC_err_82_short_msg() runs on test_CT {
4989 var MSC_ConnHdlr vc_conn;
4990 f_init(1, true);
4991 f_sleep(1.0);
Harald Welte8863fa12018-05-10 20:15:27 +02004992 vc_conn := f_start_handler(refers(f_tc_err_82_short_msg));
Harald Weltee3bd6582018-01-31 22:51:25 +01004993 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004994 f_shutdown_helper();
Harald Weltee3bd6582018-01-31 22:51:25 +01004995}
4996
4997
Harald Weltee9e02e42018-01-31 23:36:25 +01004998/* 24.008 8.4 Unknown message must trigger RR STATUS */
4999private function f_tc_err_84_unknown_msg(charstring id) runs on MSC_ConnHdlr {
5000 f_est_single_l3(ts_RRM_UL_REL('00'O));
5001 timer T := 3.0
5002 alt {
5003 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_STATUS)) {
5004 setverdict(pass);
5005 }
5006 [] BSSAP.receive { setverdict(fail, "unexpected BSSAP"); }
Harald Welte458fd372018-03-21 11:26:23 +01005007 [] T.timeout { setverdict(fail, "Timeout waiting for RR STATUS"); }
Harald Weltee9e02e42018-01-31 23:36:25 +01005008 }
5009}
5010testcase TC_err_84_unknown_msg() runs on test_CT {
5011 var MSC_ConnHdlr vc_conn;
5012 f_init(1, true);
5013 f_sleep(1.0);
Harald Welte8863fa12018-05-10 20:15:27 +02005014 vc_conn := f_start_handler(refers(f_tc_err_84_unknown_msg));
Harald Weltee9e02e42018-01-31 23:36:25 +01005015 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005016 f_shutdown_helper();
Harald Weltee9e02e42018-01-31 23:36:25 +01005017}
5018
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005019/***********************************************************************
5020 * Handover
5021 ***********************************************************************/
5022
Harald Welte94e0c342018-04-07 11:33:23 +02005023/* execute a "bts <0-255> trx <0-255> timeslot <0-7> " command on given Dchan */
5024private function f_vty_ts_action(charstring suffix, integer bts_nr, integer trx_nr, integer ts_nr)
5025runs on test_CT {
5026 var charstring cmd := "bts "&int2str(bts_nr)&" trx "&int2str(trx_nr)&
5027 " timeslot "&int2str(ts_nr)&" ";
5028 f_vty_transceive(BSCVTY, cmd & suffix);
5029}
5030
Harald Welte261af4b2018-02-12 21:20:39 +01005031/* execute a "bts <0-255> trx <0-255> timeslot <0-7> sub-slot <0-7>" command on given Dchan */
Vadim Yanitskiy00070722020-09-02 17:27:57 +07005032private function f_vty_ss_action(TELNETasp_PT pt, charstring suffix,
5033 uint8_t bts_nr, uint8_t trx_nr,
5034 in RslChannelNr chan_nr)
5035{
Harald Welte261af4b2018-02-12 21:20:39 +01005036 /* FIXME: resolve those from component-global state */
5037 var integer ts_nr := chan_nr.tn;
5038 var integer ss_nr;
5039 if (ischosen(chan_nr.u.ch0)) {
5040 ss_nr := 0;
5041 } else if (ischosen(chan_nr.u.lm)) {
5042 ss_nr := chan_nr.u.lm.sub_chan;
5043 } else if (ischosen(chan_nr.u.sdcch4)) {
5044 ss_nr := chan_nr.u.sdcch4.sub_chan;
5045 } else if (ischosen(chan_nr.u.sdcch8)) {
5046 ss_nr := chan_nr.u.sdcch8.sub_chan;
5047 } else {
5048 setverdict(fail, "Invalid ChanNr ", chan_nr);
Daniel Willmannafce8662018-07-06 23:11:32 +02005049 mtc.stop;
Harald Welte261af4b2018-02-12 21:20:39 +01005050 }
5051
5052 var charstring cmd := "bts "&int2str(bts_nr)&" trx "&int2str(trx_nr)&
5053 " timeslot "&int2str(ts_nr)&" sub-slot "&int2str(ss_nr)&" ";
Vadim Yanitskiy00070722020-09-02 17:27:57 +07005054 f_vty_transceive(pt, cmd & suffix);
Harald Welte261af4b2018-02-12 21:20:39 +01005055}
5056
Neels Hofmeyr91401012019-07-11 00:42:35 +02005057/* Even though the VTY command to trigger handover takes a new BTS number as argument, behind the scenes osmo-bsc always
5058 * translates that to a target ARFCN+BSIC first. See bsc_vty.c trigger_ho_or_as(), which puts the selected BTS' neighbor
5059 * ident key (ARFCN + BSIC) in the struct passed on to handover_request(). handover_start() then resolves that to a
5060 * viable actual neighbor cell. So from the internal osmo-bsc perspective, we always request handover to an ARFCN + BSIC
5061 * pair, not really to a specific BTS number. */
Vadim Yanitskiy00070722020-09-02 17:27:57 +07005062private function f_vty_handover(TELNETasp_PT pt, uint8_t bts_nr, uint8_t trx_nr,
5063 in RslChannelNr chan_nr, uint8_t new_bts_nr)
5064{
5065 f_vty_ss_action(pt, "handover " & int2str(new_bts_nr), bts_nr, trx_nr, chan_nr);
Harald Welte261af4b2018-02-12 21:20:39 +01005066}
5067
5068/* intra-BSC hand-over between BTS0 and BTS1 */
5069private function f_tc_ho_int(charstring id) runs on MSC_ConnHdlr {
Harald Welteed848512018-05-24 22:27:58 +02005070 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
5071 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Welte261af4b2018-02-12 21:20:39 +01005072
5073 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
5074 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
5075
Harald Weltea0630032018-03-20 21:09:55 +01005076 f_establish_fully(ass_cmd, exp_compl);
Neels Hofmeyr666f0432020-07-04 00:53:07 +02005077 f_bts_0_cfg(BSCVTY, {"neighbor bts 1"});
Harald Welte261af4b2018-02-12 21:20:39 +01005078
5079 var HandoverState hs := {
5080 rr_ho_cmpl_seen := false,
5081 handover_done := false,
Neels Hofmeyrc741fcb2021-10-02 14:52:28 +02005082 old_chan_nr := -,
5083 expect_target_tsc := BTS_TSC[1]
Harald Welte261af4b2018-02-12 21:20:39 +01005084 };
Neels Hofmeyrc2cf4542021-10-02 12:26:38 +02005085 /* issue hand-over command on VTY, from BTS 0 to BTS 1 */
Vadim Yanitskiy00070722020-09-02 17:27:57 +07005086 f_vty_handover(BSCVTY, 0, 0, g_chan_nr, 1);
Harald Welte261af4b2018-02-12 21:20:39 +01005087 /* temporarily suspend DChan processing on BTS1 to avoid race with RSLEM_register */
5088 f_rslem_suspend(RSL1_PROC);
Philipp Maier3e2af5d2018-07-11 17:01:05 +02005089
5090 /* From the MGW perspective, a handover is is characterized by
5091 * performing one MDCX operation with the MGW. So we expect to see
5092 * one more MDCX during handover. */
5093 g_media.mgcp_conn[0].mdcx_seen_exp := g_media.mgcp_conn[0].crcx_seen_exp + 1;
5094
Harald Welte261af4b2018-02-12 21:20:39 +01005095 alt {
5096 [] as_handover(hs);
Harald Welte261af4b2018-02-12 21:20:39 +01005097 }
Philipp Maier3e2af5d2018-07-11 17:01:05 +02005098
Philipp Maier4dae0652018-11-12 12:03:26 +01005099 /* Since this is an internal handover we expect the BSC to inform the
5100 * MSC about the event */
5101 BSSAP.receive(tr_BSSMAP_HandoverPerformed);
5102
Philipp Maier3e2af5d2018-07-11 17:01:05 +02005103 /* Check the amount of MGCP transactions is still consistant with the
5104 * test expectation */
5105 f_check_mgcp_expectations()
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02005106
Neels Hofmeyrc2cf4542021-10-02 12:26:38 +02005107 var RSL_Message chan_act := f_rslem_get_last_act(RSL1_PROC, 0, g_chan_nr);
5108
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02005109 /* Ensure the Channel Activation for the new channel contained the right encryption params. as_handover() set
5110 * g_chan_nr to the new lchan that was handed over to. It lives in bts 1, so look it up at RSL1_PROC. */
Neels Hofmeyrc2cf4542021-10-02 12:26:38 +02005111 f_verify_encr_info(chan_act);
5112
5113 f_chan_act_verify_tsc(chan_act, BTS_TSC[1]);
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02005114
Neels Hofmeyr861a4c12018-11-07 01:23:17 +01005115 f_sleep(0.5);
Harald Welte261af4b2018-02-12 21:20:39 +01005116}
5117
5118testcase TC_ho_int() runs on test_CT {
Neels Hofmeyr5f7a9df2021-06-21 01:30:43 +02005119 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte261af4b2018-02-12 21:20:39 +01005120 var MSC_ConnHdlr vc_conn;
5121 f_init(2, true);
5122 f_sleep(1.0);
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005123
Neels Hofmeyrc2cf4542021-10-02 12:26:38 +02005124 pars.expect_tsc := BTS_TSC[0];
5125
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005126 f_ctrs_bsc_and_bts_init();
5127
Neels Hofmeyr5f7a9df2021-06-21 01:30:43 +02005128 vc_conn := f_start_handler(refers(f_tc_ho_int), pars);
Harald Welte261af4b2018-02-12 21:20:39 +01005129 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005130
5131 /* from f_establish_fully() */
5132 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5133 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5134 /* from handover */
5135 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5136 f_ctrs_bsc_and_bts_add(0, "handover:completed");
5137 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
5138 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:completed");
5139 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005140 f_shutdown_helper();
Harald Welte261af4b2018-02-12 21:20:39 +01005141}
Harald Weltee9e02e42018-01-31 23:36:25 +01005142
Oliver Smith7eabd312021-07-12 14:18:56 +02005143function f_tc_ho_int_a5(OCT1 encr_alg, charstring enc_a5 := "0 1 3") runs on test_CT {
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02005144 var MSC_ConnHdlr vc_conn;
5145 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5146 pars.encr := valueof(t_EncrParams(encr_alg, f_rnd_octstring(8), f_rnd_octstring(16)));
5147
5148 f_init(2, true);
Oliver Smith7eabd312021-07-12 14:18:56 +02005149 f_vty_encryption_a5(enc_a5);
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02005150 f_sleep(1.0);
5151
5152 f_ctrs_bsc_and_bts_init();
5153
5154 vc_conn := f_start_handler(refers(f_tc_ho_int), pars);
5155 vc_conn.done;
5156
5157 /* from f_establish_fully() */
5158 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5159 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5160 /* from handover */
5161 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5162 f_ctrs_bsc_and_bts_add(0, "handover:completed");
5163 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
5164 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:completed");
5165 f_ctrs_bsc_and_bts_verify();
Oliver Smith7eabd312021-07-12 14:18:56 +02005166 f_vty_encryption_a5_reset();
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02005167 f_shutdown_helper();
5168}
5169
5170testcase TC_ho_int_a5_0() runs on test_CT {
5171 f_tc_ho_int_a5('01'O);
5172}
5173
5174testcase TC_ho_int_a5_1() runs on test_CT {
5175 f_tc_ho_int_a5('02'O);
5176}
5177
5178testcase TC_ho_int_a5_3() runs on test_CT {
5179 f_tc_ho_int_a5('08'O);
5180}
5181
5182testcase TC_ho_int_a5_4() runs on test_CT {
Oliver Smith7eabd312021-07-12 14:18:56 +02005183 f_tc_ho_int_a5('10'O, "0 1 3 4");
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02005184}
5185
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005186/* intra-BSC hand-over with CONNection FAILure and cause Radio Link Failure: check RR release cause */
5187private function f_tc_ho_int_radio_link_failure(charstring id) runs on MSC_ConnHdlr {
5188 g_pars := f_gen_test_hdlr_pars();
5189 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
5190 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005191
5192 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
5193 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
5194
5195 f_establish_fully(ass_cmd, exp_compl);
5196 f_bts_0_cfg(BSCVTY, {"neighbor bts 1"});
5197
5198 var HandoverState hs := {
5199 rr_ho_cmpl_seen := false,
5200 handover_done := false,
Neels Hofmeyrc741fcb2021-10-02 14:52:28 +02005201 old_chan_nr := -,
5202 expect_target_tsc := BTS_TSC[1]
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005203 };
5204 /* issue hand-over command on VTY */
5205 f_vty_handover(BSCVTY, 0, 0, g_chan_nr, 1);
5206 /* temporarily suspend DChan processing on BTS1 to avoid race with RSLEM_register */
5207 f_rslem_suspend(RSL1_PROC);
5208
5209 /* From the MGW perspective, a handover is is characterized by
5210 * performing one MDCX operation with the MGW. So we expect to see
5211 * one more MDCX during handover. */
5212 g_media.mgcp_conn[0].mdcx_seen_exp := g_media.mgcp_conn[0].crcx_seen_exp + 1;
5213
5214 var RSL_Message rsl;
5215 var PDU_ML3_NW_MS l3;
5216 var RslChannelNr new_chan_nr;
5217 var GsmArfcn arfcn;
5218 RSL.receive(tr_RSL_DATA_REQ(g_chan_nr)) -> value rsl {
5219 l3 := dec_PDU_ML3_NW_MS(rsl.ies[2].body.l3_info.payload);
5220 if (not ischosen(l3.msgs.rrm.handoverCommand)) {
5221 setverdict(fail, "Expected handoverCommand");
5222 mtc.stop;
5223 }
5224 }
5225 f_ChDesc2RslChanNr(l3.msgs.rrm.handoverCommand.channelDescription2,
5226 new_chan_nr, arfcn);
5227
5228 f_rslem_register(0, new_chan_nr, RSL1_PROC);
5229
5230 /* resume processing of RSL DChan messages, which was temporarily suspended
5231 * before performing a hand-over */
5232 f_rslem_resume(RSL1_PROC);
5233 RSL1.receive(tr_RSL_IPA_CRCX(new_chan_nr));
5234
5235 f_sleep(1.0);
5236
5237 /* Handover fails because no HANDO DET appears on the new lchan,
5238 * and the old lchan reports a Radio Link Failure. */
5239 RSL.send(ts_RSL_CONN_FAIL_IND(g_chan_nr, RSL_ERR_RADIO_LINK_FAIL));
5240
5241 var PDU_BSSAP rx_clear_request;
5242 BSSAP.receive(tr_BSSMAP_ClearRequest) -> value rx_clear_request;
5243 var BssmapCause cause := bit2int(rx_clear_request.pdu.bssmap.clearRequest.cause.causeValue);
5244 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
5245
5246 var RR_Cause rr_cause := GSM48_RR_CAUSE_ABNORMAL_UNSPEC;
5247
5248 var MgcpCommand mgcp;
5249 interleave {
5250 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE(int2oct(enum2int(rr_cause), 1)))) {}
5251 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {}
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02005252 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005253 RSL.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
Neels Hofmeyre680b012021-07-22 19:19:09 +02005254 f_rslem_unregister(0, g_chan_nr);
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005255 }
5256 [] RSL1.receive(tr_RSL_DEACT_SACCH(new_chan_nr)) {}
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02005257 [] RSL1.receive(tr_RSL_RF_CHAN_REL(new_chan_nr)) {
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005258 RSL1.send(ts_RSL_RF_CHAN_REL_ACK(new_chan_nr));
Neels Hofmeyre680b012021-07-22 19:19:09 +02005259 f_rslem_unregister(0, g_chan_nr, PT := RSL1_PROC);
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005260 }
5261 [] BSSAP.receive(tr_BSSMAP_ClearComplete) {}
5262 }
5263
5264 f_sleep(0.5);
5265 setverdict(pass);
5266}
5267testcase TC_ho_int_radio_link_failure() runs on test_CT {
5268 var MSC_ConnHdlr vc_conn;
5269 f_init(2, true);
5270 f_sleep(1.0);
5271
5272 f_ctrs_bsc_and_bts_init();
5273
5274 vc_conn := f_start_handler(refers(f_tc_ho_int_radio_link_failure));
5275 vc_conn.done;
5276
5277 /* from f_establish_fully() */
5278 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5279 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5280 /* from handover */
5281 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5282 f_ctrs_bsc_and_bts_add(0, "handover:stopped");
5283 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
5284 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:stopped");
5285 f_ctrs_bsc_and_bts_verify();
5286 f_shutdown_helper();
5287}
5288
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005289/* Expecting MGCP to DLCX the endpoint's two connections: towards BTS and towards MSC */
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02005290private function f_expect_dlcx_conns() runs on MSC_ConnHdlr {
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005291 var MgcpCommand mgcp;
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +02005292 var template MgcpResponse mgcp_resp;
5293 var MGCP_RecvFrom mrf;
5294 var template MgcpMessage msg_resp;
5295 var template MgcpMessage msg_dlcx := {
5296 command := tr_DLCX()
5297 }
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005298
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +02005299 if (g_pars.aoip) {
5300 MGCP.receive(tr_DLCX()) -> value mgcp {
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005301 log("Got first DLCX: ", mgcp);
5302 MGCP.send(ts_DLCX_ACK2(mgcp.line.trans_id));
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +02005303 };
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005304
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005305 MGCP.receive(tr_DLCX()) -> value mgcp {
5306 log("Got second DLCX: ", mgcp);
5307 MGCP.send(ts_DLCX_ACK2(mgcp.line.trans_id));
5308 };
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +02005309 } else {
5310 /* For SCCPLite, BSC doesn't handle the MSC-side */
5311 MGCP_MULTI.receive(tr_MGCP_RecvFrom_any(msg_dlcx)) -> value mrf {
5312 log("Got first DLCX: ", mrf.msg.command);
5313 msg_resp := {
5314 response := ts_DLCX_ACK2(mrf.msg.command.line.trans_id)
5315 }
5316 MGCP_MULTI.send(t_MGCP_SendToMrf(mrf, msg_resp));
5317 };
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005318 }
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005319}
5320
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005321private function f_ho_out_of_this_bsc(template (omit) BSSMAP_oldToNewBSSIEs exp_oldToNewBSSIEs := omit) runs on MSC_ConnHdlr {
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005322
Neels Hofmeyr666f0432020-07-04 00:53:07 +02005323 f_bts_0_cfg(BSCVTY, {"neighbor lac 99 arfcn 123 bsic any"});
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005324 f_vty_transceive(BSCVTY, "handover any to arfcn 123 bsic any");
5325
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005326 BSSAP.receive(tr_BSSMAP_HandoverRequired(exp_oldToNewBSSIEs));
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005327
5328 f_sleep(0.5);
5329 /* The MSC negotiates Handover Request and Handover Request Ack with
5330 * the other BSS and comes back with a BSSMAP Handover Command
5331 * containing an RR Handover Command coming from the target BSS... */
5332
5333 var PDU_ML3_NW_MS rr_ho_cmd := valueof(ts_RR_HandoverCommand);
5334 log("Remote cell's RR Handover Command passed through as L3 Info: ", rr_ho_cmd);
5335 var octetstring rr_ho_cmd_enc := enc_PDU_ML3_NW_MS(rr_ho_cmd);
5336 log("Remote cell's RR Handover Command passed through as L3 Info, encoded: ", rr_ho_cmd_enc);
5337 BSSAP.send(ts_BSSMAP_HandoverCommand(rr_ho_cmd_enc));
5338
5339 /* expect the Handover Command to go out on RR */
5340 var RSL_Message rsl_ho_cmd
5341 RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, ?)) -> value rsl_ho_cmd;
5342 log("RSL Data Req went out to first BTS: ", rsl_ho_cmd);
5343 var RSL_IE_Body rsl_ho_cmd_l3;
5344 if (not f_rsl_find_ie(rsl_ho_cmd, RSL_IE_L3_INFO, rsl_ho_cmd_l3)) {
5345 log("RSL message contains no L3 Info IE, expected RR Handover Command");
5346 setverdict(fail);
5347 } else {
5348 log("Found L3 Info: ", rsl_ho_cmd_l3);
5349 if (rsl_ho_cmd_l3.l3_info.payload != rr_ho_cmd_enc) {
5350 log("FAIL: the BSC sent out a different L3 Info, not matching the RR Handover Command the other BSS forwarded.");
5351 setverdict(fail);
5352 } else {
5353 log("Success: the BSC sent out the same RR Handover Command the other BSS forwarded.");
5354 setverdict(pass);
5355 }
5356 }
5357
5358 /* When the other BSS has reported a completed handover, this side is
5359 * torn down. */
5360
5361 var myBSSMAP_Cause cause_val := GSM0808_CAUSE_HANDOVER_SUCCESSFUL;
5362 var BssmapCause cause := enum2int(cause_val);
5363 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
5364
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02005365 f_expect_dlcx_conns();
Pau Espin Pedrol06199952021-06-15 11:30:00 +02005366
5367 interleave {
5368 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE));
5369 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr));
5370 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr));
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02005371 [] BSSAP.receive(tr_BSSMAP_ClearComplete);
Pau Espin Pedrol06199952021-06-15 11:30:00 +02005372 }
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005373 setverdict(pass);
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005374}
5375
5376private function f_tc_ho_out_of_this_bsc(charstring id) runs on MSC_ConnHdlr {
5377 g_pars := f_gen_test_hdlr_pars();
5378 var PDU_BSSAP ass_req := f_gen_ass_req();
5379 ass_req.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
5380 ass_req.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
5381 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
5382 f_establish_fully(ass_req, exp_compl);
5383
5384 f_ho_out_of_this_bsc();
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005385}
5386testcase TC_ho_out_of_this_bsc() runs on test_CT {
5387 var MSC_ConnHdlr vc_conn;
5388
5389 f_init(1, true);
5390 f_sleep(1.0);
5391
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005392 f_ctrs_bsc_and_bts_init();
5393
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005394 vc_conn := f_start_handler(refers(f_tc_ho_out_of_this_bsc));
5395 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005396
5397 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5398 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5399 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5400 f_ctrs_bsc_and_bts_add(0, "handover:completed");
5401 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
5402 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:completed");
5403 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005404 f_shutdown_helper();
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005405}
5406
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00005407private function f_mo_l3_transceive(RSL_DCHAN_PT rsl := RSL,
5408 template (value) RslLinkId link_id := ts_RslLinkID_DCCH(0),
Vadim Yanitskiy2ef6a2f2020-10-08 23:17:32 +07005409 template (present) OCT1 dlci := ?,
Vadim Yanitskiyb93aa432020-10-01 14:23:11 +07005410 octetstring l3 := '0123456789'O)
5411runs on MSC_ConnHdlr {
Neels Hofmeyr43654812020-09-25 01:35:35 +02005412 /* The old lchan and conn should still be active. See that arbitrary L3
5413 * is still going through. */
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00005414 rsl.send(ts_RSL_DATA_IND(g_chan_nr, link_id, l3));
Neels Hofmeyr43654812020-09-25 01:35:35 +02005415 var template PDU_BSSAP exp_data := {
5416 discriminator := '1'B,
5417 spare := '0000000'B,
Vadim Yanitskiyb93aa432020-10-01 14:23:11 +07005418 dlci := dlci,
5419 lengthIndicator := lengthof(l3),
Neels Hofmeyr43654812020-09-25 01:35:35 +02005420 pdu := {
5421 dtap := l3
5422 }
5423 };
5424 BSSAP.receive(exp_data);
5425 setverdict(pass);
5426}
5427
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00005428private function f_mt_l3_transceive(RSL_DCHAN_PT rsl := RSL,
5429 template (present) RslLinkId link_id := tr_RslLinkID_DCCH(0),
Vadim Yanitskiy0033a3b2020-10-01 22:21:16 +07005430 template (value) OCT1 dlci := '00'O,
5431 octetstring l3 := '0123456789'O)
5432runs on MSC_ConnHdlr {
5433 BSSAP.send(PDU_BSSAP:{
5434 discriminator := '1'B,
5435 spare := '0000000'B,
5436 dlci := dlci,
5437 lengthIndicator := lengthof(l3),
5438 pdu := {
5439 dtap := l3
5440 }
5441 });
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00005442 rsl.receive(tr_RSL_DATA_REQ(g_chan_nr, link_id, l3));
Vadim Yanitskiy0033a3b2020-10-01 22:21:16 +07005443 setverdict(pass);
5444}
5445
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005446/* BSC asks for inter-BSC HO, but the MSC decides that it won't happen and
5447 * simply never sends a BSSMAP Handover Command. */
5448private function f_tc_ho_out_fail_no_msc_response(charstring id) runs on MSC_ConnHdlr {
Daniel Willmann3b59eb52018-10-29 15:40:55 +01005449 g_pars := f_gen_test_hdlr_pars();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005450
5451 var PDU_BSSAP ass_req := f_gen_ass_req();
5452 ass_req.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
5453 ass_req.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
5454 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
5455 f_establish_fully(ass_req, exp_compl);
5456
Neels Hofmeyr666f0432020-07-04 00:53:07 +02005457 f_bts_0_cfg(BSCVTY, {"neighbor lac 99 arfcn 123 bsic any"});
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005458 f_vty_transceive(BSCVTY, "handover any to arfcn 123 bsic any");
5459
5460 BSSAP.receive(tr_BSSMAP_HandoverRequired);
5461
5462 /* osmo-bsc should time out 10 seconds after the handover started.
5463 * Let's give it a bit extra. */
5464 f_sleep(15.0);
5465
Vadim Yanitskiy74ae5eb2020-10-01 22:13:29 +07005466 f_mo_l3_transceive();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005467 f_sleep(1.0);
5468}
5469testcase TC_ho_out_fail_no_msc_response() runs on test_CT {
5470 var MSC_ConnHdlr vc_conn;
5471
5472 f_init(1, true);
5473 f_sleep(1.0);
5474
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005475 f_ctrs_bsc_and_bts_init();
5476
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005477 vc_conn := f_start_handler(refers(f_tc_ho_out_fail_no_msc_response));
5478 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005479
5480 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5481 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5482 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5483 f_ctrs_bsc_and_bts_add(0, "handover:timeout");
5484 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
5485 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:timeout");
5486 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005487 f_shutdown_helper();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005488}
5489
5490/* BSC asks for inter-BSC HO, receives BSSMAP Handover Command, but MS reports
5491 * RR Handover Failure. */
5492private function f_tc_ho_out_fail_rr_ho_failure(charstring id) runs on MSC_ConnHdlr {
Daniel Willmann3b59eb52018-10-29 15:40:55 +01005493 g_pars := f_gen_test_hdlr_pars();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005494
5495 var PDU_BSSAP ass_req := f_gen_ass_req();
5496 ass_req.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
5497 ass_req.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
5498 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
5499 f_establish_fully(ass_req, exp_compl);
5500
Neels Hofmeyr666f0432020-07-04 00:53:07 +02005501 f_bts_0_cfg(BSCVTY, {"neighbor lac 99 arfcn 123 bsic any"});
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005502 f_vty_transceive(BSCVTY, "handover any to arfcn 123 bsic any");
5503
5504 BSSAP.receive(tr_BSSMAP_HandoverRequired);
5505
5506 f_sleep(0.5);
5507 /* The MSC negotiates Handover Request and Handover Request Ack with
5508 * the other BSS and comes back with a BSSMAP Handover Command
5509 * containing an RR Handover Command coming from the target BSS... */
5510
5511 var PDU_ML3_NW_MS rr_ho_cmd := valueof(ts_RR_HandoverCommand);
5512 log("Remote cell's RR Handover Command passed through as L3 Info: ", rr_ho_cmd);
5513 var octetstring rr_ho_cmd_enc := enc_PDU_ML3_NW_MS(rr_ho_cmd);
5514 log("Remote cell's RR Handover Command passed through as L3 Info, encoded: ", rr_ho_cmd_enc);
5515 BSSAP.send(ts_BSSMAP_HandoverCommand(rr_ho_cmd_enc));
5516
5517 /* expect the Handover Command to go out on RR */
5518 var RSL_Message rsl_ho_cmd
5519 RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, ?)) -> value rsl_ho_cmd;
5520 log("RSL Data Req went out to first BTS: ", rsl_ho_cmd);
5521 var RSL_IE_Body rsl_ho_cmd_l3;
5522 if (not f_rsl_find_ie(rsl_ho_cmd, RSL_IE_L3_INFO, rsl_ho_cmd_l3)) {
5523 log("RSL message contains no L3 Info IE, expected RR Handover Command");
5524 setverdict(fail);
5525 } else {
5526 log("Found L3 Info: ", rsl_ho_cmd_l3);
5527 if (rsl_ho_cmd_l3.l3_info.payload != rr_ho_cmd_enc) {
5528 log("FAIL: the BSC sent out a different L3 Info, not matching the RR Handover Command the other BSS forwarded.");
5529 setverdict(fail);
5530 } else {
5531 log("Success: the BSC sent out the same RR Handover Command the other BSS forwarded.");
5532 setverdict(pass);
5533 }
5534 }
5535
5536 f_sleep(0.2);
5537 f_rsl_send_l3(ts_RRM_HandoverFailure('00'O));
5538
5539 /* Should tell the MSC about the failure */
5540 BSSAP.receive(tr_BSSMAP_HandoverFailure);
5541
5542 f_sleep(1.0);
5543
Vadim Yanitskiy74ae5eb2020-10-01 22:13:29 +07005544 f_mo_l3_transceive();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005545 f_sleep(1.0);
5546
5547 setverdict(pass);
5548 f_sleep(1.0);
5549}
5550testcase TC_ho_out_fail_rr_ho_failure() runs on test_CT {
5551 var MSC_ConnHdlr vc_conn;
5552
5553 f_init(1, true);
5554 f_sleep(1.0);
5555
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005556 f_ctrs_bsc_and_bts_init();
5557
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005558 vc_conn := f_start_handler(refers(f_tc_ho_out_fail_rr_ho_failure));
5559 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005560
5561 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5562 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5563 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5564 f_ctrs_bsc_and_bts_add(0, "handover:failed");
5565 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
5566 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:failed");
5567 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005568 f_shutdown_helper();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005569}
5570
Neels Hofmeyr10f2bfa2019-07-09 19:33:29 +02005571/* BSC asks for inter-BSC-out HO, receives BSSMAP Handover Command, but then no reply is received about HO outcome
5572 * (neither BSSMAP Clear Command for success nor RR Handover Failure). 48.008 3.1.5.3.3 "Abnormal Conditions" applies
Neels Hofmeyrd8a602c2019-07-09 19:46:01 +02005573 * and the lchan is released. */
5574private function f_tc_ho_out_fail_no_result_after_ho_cmd(charstring id) runs on MSC_ConnHdlr {
Daniel Willmann3b59eb52018-10-29 15:40:55 +01005575 g_pars := f_gen_test_hdlr_pars();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005576
5577 var PDU_BSSAP ass_req := f_gen_ass_req();
5578 ass_req.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
5579 ass_req.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
5580 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
5581 f_establish_fully(ass_req, exp_compl);
5582
Neels Hofmeyr666f0432020-07-04 00:53:07 +02005583 f_bts_0_cfg(BSCVTY, {"neighbor lac 99 arfcn 123 bsic any"});
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005584 f_vty_transceive(BSCVTY, "handover any to arfcn 123 bsic any");
5585
5586 BSSAP.receive(tr_BSSMAP_HandoverRequired);
5587
5588 f_sleep(0.5);
5589 /* The MSC negotiates Handover Request and Handover Request Ack with
5590 * the other BSS and comes back with a BSSMAP Handover Command
5591 * containing an RR Handover Command coming from the target BSS... */
5592
5593 var PDU_ML3_NW_MS rr_ho_cmd := valueof(ts_RR_HandoverCommand);
5594 log("Remote cell's RR Handover Command passed through as L3 Info: ", rr_ho_cmd);
5595 var octetstring rr_ho_cmd_enc := enc_PDU_ML3_NW_MS(rr_ho_cmd);
5596 log("Remote cell's RR Handover Command passed through as L3 Info, encoded: ", rr_ho_cmd_enc);
5597 BSSAP.send(ts_BSSMAP_HandoverCommand(rr_ho_cmd_enc));
5598
5599 /* expect the Handover Command to go out on RR */
5600 var RSL_Message rsl_ho_cmd
5601 RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, ?)) -> value rsl_ho_cmd;
5602 log("RSL Data Req went out to first BTS: ", rsl_ho_cmd);
5603 var RSL_IE_Body rsl_ho_cmd_l3;
5604 if (not f_rsl_find_ie(rsl_ho_cmd, RSL_IE_L3_INFO, rsl_ho_cmd_l3)) {
5605 log("RSL message contains no L3 Info IE, expected RR Handover Command");
5606 setverdict(fail);
5607 } else {
5608 log("Found L3 Info: ", rsl_ho_cmd_l3);
5609 if (rsl_ho_cmd_l3.l3_info.payload != rr_ho_cmd_enc) {
5610 log("FAIL: the BSC sent out a different L3 Info, not matching the RR Handover Command the other BSS forwarded.");
5611 setverdict(fail);
5612 } else {
5613 log("Success: the BSC sent out the same RR Handover Command the other BSS forwarded.");
5614 setverdict(pass);
5615 }
5616 }
5617
Neels Hofmeyr10f2bfa2019-07-09 19:33:29 +02005618 /* We get neither success nor failure report from the remote BSS. Eventually T8 times out and we run into 3GPP
5619 * TS 48.008 3.1.5.3.3 "Abnormal Conditions": Clear Request should go to the MSC, and RR should be released
5620 * after Clear Command */
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005621
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02005622 var PDU_BSSAP rx_clear_request;
Neels Hofmeyre1797aa2019-07-09 19:34:04 +02005623 BSSAP.receive(tr_BSSMAP_ClearRequest) -> value rx_clear_request;
5624 log("Got BSSMAP Clear Request");
5625 /* Instruct BSC to clear channel */
5626 var BssmapCause cause := bit2int(rx_clear_request.pdu.bssmap.clearRequest.cause.causeValue);
5627 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
5628
5629 var MgcpCommand mgcp;
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005630 interleave {
Neels Hofmeyr861a4c12018-11-07 01:23:17 +01005631 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {
5632 log("Got Deact SACCH");
5633 }
Harald Welte924b6ea2019-02-04 01:05:34 +01005634 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE)) {
Neels Hofmeyr211169d2018-11-07 00:37:29 +01005635 log("Got RR Release");
5636 }
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02005637 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005638 log("Got RF Chan Rel");
5639 RSL.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
Neels Hofmeyre680b012021-07-22 19:19:09 +02005640 f_rslem_unregister(0, g_chan_nr);
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005641 }
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005642 }
5643
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02005644 f_expect_dlcx_conns();
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02005645 BSSAP.receive(tr_BSSMAP_ClearComplete);
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005646
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005647 setverdict(pass);
5648 f_sleep(1.0);
5649}
Neels Hofmeyrd8a602c2019-07-09 19:46:01 +02005650testcase TC_ho_out_fail_no_result_after_ho_cmd() runs on test_CT {
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005651 var MSC_ConnHdlr vc_conn;
5652
5653 f_init(1, true);
5654 f_sleep(1.0);
5655
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005656 f_ctrs_bsc_and_bts_init();
5657
Neels Hofmeyrd8a602c2019-07-09 19:46:01 +02005658 vc_conn := f_start_handler(refers(f_tc_ho_out_fail_no_result_after_ho_cmd));
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005659 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005660
5661 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5662 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5663 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5664 f_ctrs_bsc_and_bts_add(0, "handover:timeout");
5665 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
5666 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:timeout");
5667 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005668 f_shutdown_helper();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005669}
5670
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005671private function f_ho_into_this_bsc(charstring id, template (omit) BSSMAP_oldToNewBSSIEs oldToNewBSSIEs := omit) runs on MSC_ConnHdlr {
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005672 /* Hack: the proper way would be to wait for the BSSMAP Handover Request ACK and extract the
5673 * actual assigned chan_nr from its L3 (RR Handover Command) message. But osmo-bsc starts acting
5674 * on the lchan even before we get a chance to evaluate the BSSMAP Handover Request ACK. So we
5675 * need to assume that osmo-bsc will activate TS 1 and already set up this lchan's RSL emulation
5676 * before we get started. */
5677 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
5678 f_rslem_register(0, new_chan_nr);
5679 g_chan_nr := new_chan_nr;
5680 f_sleep(1.0);
5681
5682 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
5683 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
5684 activate(as_Media());
5685
Neels Hofmeyr90f80962020-06-12 16:16:55 +02005686 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005687 f_gen_handover_req(aoip_tla := g_pars.host_aoip_tla,
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02005688 oldToNewBSSIEs := oldToNewBSSIEs,
5689 enc := g_pars.encr)));
Harald Welte6811d102019-04-14 22:23:14 +02005690 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005691
5692 /* The RSL Emulation magically accepts the Chan Activ behind the scenes. */
5693
5694 var PDU_BSSAP rx_bssap;
5695 var octetstring ho_command_str;
5696
5697 BSSAP.receive(tr_BSSMAP_HandoverRequestAcknowledge(?)) -> value rx_bssap;
Pau Espin Pedrol76ba5412019-06-10 11:00:33 +02005698
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02005699 /* we're sure that the channel activation is done now, verify the encryption parameters in it */
5700 f_verify_encr_info(f_rslem_get_last_act(RSL_PROC, 0, g_chan_nr));
5701
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005702 ho_command_str := rx_bssap.pdu.bssmap.handoverRequestAck.layer3Information.layer3info;
5703 log("Received L3 Info in HO Request Ack: ", ho_command_str);
5704 var PDU_ML3_NW_MS ho_command := dec_PDU_ML3_NW_MS(ho_command_str);
5705 log("L3 Info in HO Request Ack is ", ho_command);
5706
5707 var GsmArfcn arfcn;
5708 var RslChannelNr actual_new_chan_nr;
5709 f_ChDesc2RslChanNr(ho_command.msgs.rrm.handoverCommand.channelDescription2,
5710 actual_new_chan_nr, arfcn);
5711
5712 if (actual_new_chan_nr != new_chan_nr) {
5713 log("ERROR: osmo-bsc assigned a different lchan than we assumed above -- this test will fail now.",
5714 " Assumed: ", new_chan_nr, " Assigned: ", actual_new_chan_nr);
5715 setverdict(fail);
5716 return;
5717 }
5718 log("Handover Command chan_nr is", actual_new_chan_nr);
5719
5720 /* Now the MSC forwards the RR Handover Command to the other BSC, which
5721 * tells the MS to handover to the new lchan. Here comes the new MS on
5722 * the new lchan with a Handover RACH: */
5723
5724 /* send handover detect */
5725
5726 RSL.send(ts_RSL_HANDO_DET(new_chan_nr));
5727
5728 BSSAP.receive(tr_BSSMAP_HandoverDetect);
5729
5730 /* send handover complete over the new channel */
5731
5732 var PDU_ML3_MS_NW l3_tx := valueof(ts_RRM_HandoverComplete('00'O));
5733 RSL.send(ts_RSL_EST_IND(new_chan_nr, valueof(ts_RslLinkID_DCCH(0)),
5734 enc_PDU_ML3_MS_NW(l3_tx)));
5735
5736 BSSAP.receive(tr_BSSMAP_HandoverComplete);
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005737 setverdict(pass);
5738}
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005739
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005740private function f_tc_ho_into_this_bsc(charstring id) runs on MSC_ConnHdlr {
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005741 var template PDU_ML3_NW_MS exp_rr_rel_tmpl;
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005742 var template (omit) BSSMAP_oldToNewBSSIEs oldToNewBSSIEs := omit;
5743 if (not istemplatekind(g_pars.last_used_eutran_plmn, "omit")) {
5744 oldToNewBSSIEs := f_ts_BSSMAP_oldToNewBSSIEs(ts_BSSMAP_LastUsedEUTRANPLMNId(g_pars.last_used_eutran_plmn));
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005745 }
5746 if (g_pars.exp_fast_return) {
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005747 exp_rr_rel_tmpl := tr_RRM_RR_RELEASE_CellSelectInd;
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005748 } else {
5749 exp_rr_rel_tmpl := tr_RRM_RR_RELEASE;
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005750 }
5751 f_ho_into_this_bsc(id, oldToNewBSSIEs);
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02005752 f_perform_clear(exp_rr_rel_tmpl := exp_rr_rel_tmpl);
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005753 setverdict(pass);
5754}
Pau Espin Pedrol07866632020-09-03 19:10:55 +02005755function f_tc_ho_into_this_bsc_main(TestHdlrParams pars) runs on test_CT {
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005756 var MSC_ConnHdlr vc_conn;
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005757
5758 f_init(1, true);
5759 f_sleep(1.0);
5760
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005761 f_ctrs_bsc_and_bts_init();
5762
Neels Hofmeyr90f80962020-06-12 16:16:55 +02005763 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
5764 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005765
5766 vc_conn := f_start_handler(refers(f_tc_ho_into_this_bsc), pars);
5767 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005768
5769 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5770 f_ctrs_bsc_and_bts_add(0, "handover:completed");
5771 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted");
5772 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:completed");
5773 f_ctrs_bsc_and_bts_verify();
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005774}
5775
Pau Espin Pedrol07866632020-09-03 19:10:55 +02005776testcase TC_ho_into_this_bsc() runs on test_CT {
5777 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5778 f_tc_ho_into_this_bsc_main(pars);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005779 f_shutdown_helper();
Pau Espin Pedrol07866632020-09-03 19:10:55 +02005780}
5781
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02005782function f_tc_ho_into_this_bsc_a5(OCT1 encr_alg) runs on test_CT {
5783 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5784 pars.encr := valueof(t_EncrParams(encr_alg, f_rnd_octstring(8), f_rnd_octstring(16)));
5785 f_tc_ho_into_this_bsc_main(pars);
5786 f_shutdown_helper();
5787}
5788
5789testcase TC_ho_into_this_bsc_a5_0() runs on test_CT {
5790 f_tc_ho_into_this_bsc_a5('01'O);
5791}
5792
5793testcase TC_ho_into_this_bsc_a5_1() runs on test_CT {
5794 f_tc_ho_into_this_bsc_a5('02'O);
5795}
5796
5797testcase TC_ho_into_this_bsc_a5_3() runs on test_CT {
5798 f_tc_ho_into_this_bsc_a5('08'O);
5799}
5800
5801testcase TC_ho_into_this_bsc_a5_4() runs on test_CT {
5802 f_tc_ho_into_this_bsc_a5('10'O);
5803}
5804
Pau Espin Pedrol07866632020-09-03 19:10:55 +02005805testcase TC_ho_into_this_bsc_tla_v6() runs on test_CT {
5806 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5807 pars.host_aoip_tla := "::6";
5808 f_tc_ho_into_this_bsc_main(pars);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005809 f_shutdown_helper();
Pau Espin Pedrol07866632020-09-03 19:10:55 +02005810}
5811
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005812/* Similar to TC_ho_into_this_bsc, but when in SRVCC, HO Req contains "Old BSS
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005813 to New BSS Information" IE with "Last Used E-UTRAN PLMN Id", which, when the
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005814 channel is later released (RR CHannel Release), should trigger inclusion of
5815 IE "Cell Selection Indicator after Release of all TCH and SDCCH" with E-UTRAN
5816 neighbors. */
5817testcase TC_srvcc_eutran_to_geran() runs on test_CT {
5818 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5819 pars.last_used_eutran_plmn := '323454'O;
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005820 pars.exp_fast_return := true;
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005821 f_tc_ho_into_this_bsc_main(pars);
Pau Espin Pedrol211a7142021-06-15 16:43:03 +02005822
5823 f_ctrs_bsc_and_bts_add(0, "srvcc:attempted");
5824 f_ctrs_bsc_and_bts_add(0, "srvcc:completed");
5825 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005826 f_shutdown_helper();
5827}
5828
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005829/* Same as TC_srvcc_eutran_to_geran, but test explicitly forbiding fast return
5830 on the BTS. As a result, RR Release shouldn't contain the EUTRAN neighbor
5831 list when the channel is released. */
5832testcase TC_srvcc_eutran_to_geran_forbid_fast_return() runs on test_CT {
5833 f_init_vty();
5834 f_vty_allow_srvcc_fast_return(true, 0)
5835
5836 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5837 pars.last_used_eutran_plmn := '323454'O;
5838 pars.exp_fast_return := false;
5839 f_tc_ho_into_this_bsc_main(pars);
5840 f_vty_allow_srvcc_fast_return(false, 0);
5841 f_shutdown_helper();
5842}
5843
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005844private function f_tc_srvcc_eutran_to_geran_ho_out(charstring id) runs on MSC_ConnHdlr {
5845 var template (omit) BSSMAP_oldToNewBSSIEs oldToNewBSSIEs;
5846 oldToNewBSSIEs := f_ts_BSSMAP_oldToNewBSSIEs(ts_BSSMAP_LastUsedEUTRANPLMNId(g_pars.last_used_eutran_plmn));
5847 f_ho_into_this_bsc(id, oldToNewBSSIEs);
5848 f_ho_out_of_this_bsc(oldToNewBSSIEs);
5849 setverdict(pass);
5850}
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005851
5852private function f_tc_srvcc_eutran_to_geran_ho_out_main(boolean disable_fast_return)
5853 runs on test_CT {
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005854 var MSC_ConnHdlr vc_conn;
5855 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5856
5857 f_init(1, true);
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005858 if (disable_fast_return) {
5859 f_vty_allow_srvcc_fast_return(true, 0);
5860 }
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005861 f_sleep(1.0);
5862
5863 f_ctrs_bsc_and_bts_init();
5864
5865 pars.last_used_eutran_plmn := '323454'O;
5866 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
5867 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
5868
5869 vc_conn := f_start_handler(refers(f_tc_srvcc_eutran_to_geran_ho_out), pars);
5870 vc_conn.done;
5871
5872 f_ctrs_bsc_and_bts_add(0, "handover:attempted", 2);
5873 f_ctrs_bsc_and_bts_add(0, "handover:completed", 2);
5874 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted", 1);
5875 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:completed", 1);
5876 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted", 1);
5877 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:completed", 1);
Pau Espin Pedrol211a7142021-06-15 16:43:03 +02005878
5879 f_ctrs_bsc_and_bts_add(0, "srvcc:attempted", 1);
5880 f_ctrs_bsc_and_bts_add(0, "srvcc:completed", 1);
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005881 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005882
5883 if (disable_fast_return) {
5884 f_vty_allow_srvcc_fast_return(false, 0);
5885 }
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005886 f_shutdown_helper();
5887}
5888
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005889/* First, HO into BSC from EUTRAN (SRVCC): HO Request contains "Old BSS to New
5890 BSS Information" IE with "Last Used E-UTRAN PLMN Id".
5891 Second, HO to another BSC: HO Required contains "Old BSS to New BSS Information"
5892 IE with "Last Used E-UTRAN PLMN Id" from first step. */
5893testcase TC_srvcc_eutran_to_geran_ho_out() runs on test_CT {
5894 f_tc_srvcc_eutran_to_geran_ho_out_main(false);
5895}
5896/* Validate subsequent intra-GSM-HO works the same (with OldBSSToNewBSSInfo IE)
5897 * independently of fast-reture allowed/forbidden in local BTS */
5898testcase TC_srvcc_eutran_to_geran_ho_out_forbid_fast_return() runs on test_CT {
5899 f_tc_srvcc_eutran_to_geran_ho_out_main(true);
5900}
5901
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005902private function f_tc_ho_in_fail_msc_clears(charstring id) runs on MSC_ConnHdlr {
5903 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
5904 f_rslem_register(0, new_chan_nr);
5905 g_chan_nr := new_chan_nr;
5906 f_sleep(1.0);
5907
5908 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
5909 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
5910 activate(as_Media());
5911
Neels Hofmeyr90f80962020-06-12 16:16:55 +02005912 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005913 f_gen_handover_req()));
Harald Welte6811d102019-04-14 22:23:14 +02005914 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005915
5916 /* The RSL Emulation magically accepts the Chan Activ behind the scenes. */
5917
5918 var PDU_BSSAP rx_bssap;
5919 var octetstring ho_command_str;
5920
5921 BSSAP.receive(tr_BSSMAP_HandoverRequestAcknowledge(?)) -> value rx_bssap;
5922
5923 ho_command_str := rx_bssap.pdu.bssmap.handoverRequestAck.layer3Information.layer3info;
5924 log("Received L3 Info in HO Request Ack: ", ho_command_str);
5925 var PDU_ML3_NW_MS ho_command := dec_PDU_ML3_NW_MS(ho_command_str);
5926 log("L3 Info in HO Request Ack is ", ho_command);
5927
5928 var GsmArfcn arfcn;
5929 var RslChannelNr actual_new_chan_nr;
5930 f_ChDesc2RslChanNr(ho_command.msgs.rrm.handoverCommand.channelDescription2,
5931 actual_new_chan_nr, arfcn);
5932
5933 if (actual_new_chan_nr != new_chan_nr) {
5934 log("ERROR: osmo-bsc assigned a different lchan than we assumed above -- this test will fail now.",
5935 " Assumed: ", new_chan_nr, " Assigned: ", actual_new_chan_nr);
5936 setverdict(fail);
5937 return;
5938 }
5939 log("Handover Command chan_nr is", actual_new_chan_nr);
5940
Neels Hofmeyr61ca08d2019-05-06 23:52:22 +02005941 /* For deterministic test results, give some time for the MGW endpoint to be configured */
5942 f_sleep(1.0);
5943
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005944 /* Now the MSC forwards the RR Handover Command to the other BSC, which
5945 * tells the MS to handover to the new lchan. In this case, the MS
5946 * reports a Handover Failure to the old BSS, which forwards a BSSMAP
5947 * Handover Failure to the MSC. The procedure according to 3GPP TS
5948 * 48.008 3.1.5.3.2 "Handover Failure" is then that the MSC sends a
5949 * BSSMAP Clear Command: */
5950
5951 var myBSSMAP_Cause cause_val := GSM0808_CAUSE_RADIO_INTERFACE_FAILURE_REVERSION;
5952 var BssmapCause cause := enum2int(cause_val);
5953 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
5954
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02005955 f_expect_dlcx_conns();
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02005956 BSSAP.receive(tr_BSSMAP_ClearComplete);
5957
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005958 setverdict(pass);
5959 f_sleep(1.0);
5960
5961 setverdict(pass);
5962}
5963testcase TC_ho_in_fail_msc_clears() runs on test_CT {
5964 var MSC_ConnHdlr vc_conn;
5965 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5966
5967 f_init(1, true);
5968 f_sleep(1.0);
5969
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005970 f_ctrs_bsc_and_bts_init();
5971
Neels Hofmeyr90f80962020-06-12 16:16:55 +02005972 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
5973 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005974
5975 vc_conn := f_start_handler(refers(f_tc_ho_in_fail_msc_clears), pars);
5976 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005977
5978 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5979 f_ctrs_bsc_and_bts_add(0, "handover:stopped");
5980 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted");
5981 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:stopped");
5982 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005983 f_shutdown_helper();
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005984}
5985
5986private function f_tc_ho_in_fail_msc_clears_after_ho_detect(charstring id) runs on MSC_ConnHdlr {
5987 /* Hack: the proper way would be to wait for the BSSMAP Handover Request ACK and extract the
5988 * actual assigned chan_nr from its L3 (RR Handover Command) message. But osmo-bsc starts acting
5989 * on the lchan even before we get a chance to evaluate the BSSMAP Handover Request ACK. So we
5990 * need to assume that osmo-bsc will activate TS 1 and already set up this lchan's RSL emulation
5991 * before we get started. */
5992 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
5993 f_rslem_register(0, new_chan_nr);
5994 g_chan_nr := new_chan_nr;
5995 f_sleep(1.0);
5996
5997 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
5998 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
5999 activate(as_Media());
6000
Neels Hofmeyr90f80962020-06-12 16:16:55 +02006001 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006002 f_gen_handover_req()));
Harald Welte6811d102019-04-14 22:23:14 +02006003 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006004
6005 /* The RSL Emulation magically accepts the Chan Activ behind the scenes. */
6006
6007 var PDU_BSSAP rx_bssap;
6008 var octetstring ho_command_str;
6009
6010 BSSAP.receive(tr_BSSMAP_HandoverRequestAcknowledge(?)) -> value rx_bssap;
6011
6012 ho_command_str := rx_bssap.pdu.bssmap.handoverRequestAck.layer3Information.layer3info;
6013 log("Received L3 Info in HO Request Ack: ", ho_command_str);
6014 var PDU_ML3_NW_MS ho_command := dec_PDU_ML3_NW_MS(ho_command_str);
6015 log("L3 Info in HO Request Ack is ", ho_command);
6016
6017 var GsmArfcn arfcn;
6018 var RslChannelNr actual_new_chan_nr;
6019 f_ChDesc2RslChanNr(ho_command.msgs.rrm.handoverCommand.channelDescription2,
6020 actual_new_chan_nr, arfcn);
6021
6022 if (actual_new_chan_nr != new_chan_nr) {
6023 log("ERROR: osmo-bsc assigned a different lchan than we assumed above -- this test will fail now.",
6024 " Assumed: ", new_chan_nr, " Assigned: ", actual_new_chan_nr);
6025 setverdict(fail);
6026 return;
6027 }
6028 log("Handover Command chan_nr is", actual_new_chan_nr);
6029
6030 /* Now the MSC forwards the RR Handover Command to the other BSC, which
6031 * tells the MS to handover to the new lchan. Here comes the new MS on
6032 * the new lchan with a Handover RACH: */
6033
6034 /* send handover detect */
6035
6036 RSL.send(ts_RSL_HANDO_DET(new_chan_nr));
6037
6038 BSSAP.receive(tr_BSSMAP_HandoverDetect);
6039
6040 /* The MSC chooses to clear the connection now, maybe we got the
6041 * Handover RACH on the new cell but the MS still signaled Handover
6042 * Failure to the old BSS? */
6043
6044 var myBSSMAP_Cause cause_val := GSM0808_CAUSE_RADIO_INTERFACE_FAILURE_REVERSION;
6045 var BssmapCause cause := enum2int(cause_val);
6046 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
6047
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02006048 f_expect_dlcx_conns();
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02006049 BSSAP.receive(tr_BSSMAP_ClearComplete);
6050
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006051 f_sleep(1.0);
6052}
6053testcase TC_ho_in_fail_msc_clears_after_ho_detect() runs on test_CT {
6054 var MSC_ConnHdlr vc_conn;
6055 var TestHdlrParams pars := f_gen_test_hdlr_pars();
6056
6057 f_init(1, true);
6058 f_sleep(1.0);
6059
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006060 f_ctrs_bsc_and_bts_init();
6061
Neels Hofmeyr90f80962020-06-12 16:16:55 +02006062 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
6063 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006064
6065 vc_conn := f_start_handler(refers(f_tc_ho_in_fail_msc_clears_after_ho_detect), pars);
6066 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006067
6068 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6069 f_ctrs_bsc_and_bts_add(0, "handover:stopped");
6070 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted");
6071 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:stopped");
6072 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006073 f_shutdown_helper();
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006074}
6075
6076/* The new BSS's lchan times out before the MSC decides that handover failed. */
6077private function f_tc_ho_in_fail_no_detect(charstring id) runs on MSC_ConnHdlr {
6078 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
6079 f_rslem_register(0, new_chan_nr);
6080 g_chan_nr := new_chan_nr;
6081 f_sleep(1.0);
6082
6083 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
6084 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
6085 activate(as_Media());
6086
Neels Hofmeyr90f80962020-06-12 16:16:55 +02006087 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006088 f_gen_handover_req()));
Harald Welte6811d102019-04-14 22:23:14 +02006089 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006090
6091 /* The RSL Emulation magically accepts the Chan Activ behind the scenes. */
6092
6093 var PDU_BSSAP rx_bssap;
6094 var octetstring ho_command_str;
6095
6096 BSSAP.receive(tr_BSSMAP_HandoverRequestAcknowledge(?)) -> value rx_bssap;
6097
6098 ho_command_str := rx_bssap.pdu.bssmap.handoverRequestAck.layer3Information.layer3info;
6099 log("Received L3 Info in HO Request Ack: ", ho_command_str);
6100 var PDU_ML3_NW_MS ho_command := dec_PDU_ML3_NW_MS(ho_command_str);
6101 log("L3 Info in HO Request Ack is ", ho_command);
6102
6103 var GsmArfcn arfcn;
6104 var RslChannelNr actual_new_chan_nr;
6105 f_ChDesc2RslChanNr(ho_command.msgs.rrm.handoverCommand.channelDescription2,
6106 actual_new_chan_nr, arfcn);
6107
6108 if (actual_new_chan_nr != new_chan_nr) {
6109 log("ERROR: osmo-bsc assigned a different lchan than we assumed above -- this test will fail now.",
6110 " Assumed: ", new_chan_nr, " Assigned: ", actual_new_chan_nr);
6111 setverdict(fail);
6112 return;
6113 }
6114 log("Handover Command chan_nr is", actual_new_chan_nr);
6115
6116 /* Now the MSC forwards the RR Handover Command to the other BSC, which
6117 * tells the MS to handover to the new lchan. But the MS never shows up
6118 * on the new lchan. */
6119
6120 BSSAP.receive(tr_BSSMAP_HandoverFailure);
6121
6122 /* Did osmo-bsc also send a Clear Request? */
6123 timer T := 0.5;
6124 T.start;
6125 alt {
6126 [] BSSAP.receive(tr_BSSMAP_ClearRequest);
6127 [] T.timeout { }
6128 }
6129
6130 /* MSC plays along with a Clear Command (no matter whether osmo-bsc
6131 * asked for it, this is a Handover Failure after all). */
6132
6133 var myBSSMAP_Cause cause_val := GSM0808_CAUSE_RADIO_INTERFACE_FAILURE_REVERSION;
6134 var BssmapCause cause := enum2int(cause_val);
6135 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
6136
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02006137 f_expect_dlcx_conns();
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02006138 BSSAP.receive(tr_BSSMAP_ClearComplete);
6139
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006140 f_sleep(1.0);
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006141}
6142testcase TC_ho_in_fail_no_detect() runs on test_CT {
6143 var MSC_ConnHdlr vc_conn;
6144 var TestHdlrParams pars := f_gen_test_hdlr_pars();
6145
6146 f_init(1, true);
6147 f_sleep(1.0);
6148
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006149 f_ctrs_bsc_and_bts_init();
6150
Neels Hofmeyr90f80962020-06-12 16:16:55 +02006151 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
6152 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006153
6154 vc_conn := f_start_handler(refers(f_tc_ho_in_fail_no_detect), pars);
6155 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006156
6157 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6158 f_ctrs_bsc_and_bts_add(0, "handover:error");
6159 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted");
6160 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:error");
6161 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006162 f_shutdown_helper();
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006163}
6164
6165/* Same as f_tc_ho_in_fail_no_detect, but MSC fails to send a Clear Command */
6166private function f_tc_ho_in_fail_no_detect2(charstring id) runs on MSC_ConnHdlr {
6167 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
6168 f_rslem_register(0, new_chan_nr);
6169 g_chan_nr := new_chan_nr;
6170 f_sleep(1.0);
6171
6172 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
6173 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
6174 activate(as_Media());
6175
Neels Hofmeyr90f80962020-06-12 16:16:55 +02006176 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006177 f_gen_handover_req()));
Harald Welte6811d102019-04-14 22:23:14 +02006178 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006179
6180 /* The RSL Emulation magically accepts the Chan Activ behind the scenes. */
6181
6182 var PDU_BSSAP rx_bssap;
6183 var octetstring ho_command_str;
6184
6185 BSSAP.receive(tr_BSSMAP_HandoverRequestAcknowledge(?)) -> value rx_bssap;
6186
6187 ho_command_str := rx_bssap.pdu.bssmap.handoverRequestAck.layer3Information.layer3info;
6188 log("Received L3 Info in HO Request Ack: ", ho_command_str);
6189 var PDU_ML3_NW_MS ho_command := dec_PDU_ML3_NW_MS(ho_command_str);
6190 log("L3 Info in HO Request Ack is ", ho_command);
6191
6192 var GsmArfcn arfcn;
6193 var RslChannelNr actual_new_chan_nr;
6194 f_ChDesc2RslChanNr(ho_command.msgs.rrm.handoverCommand.channelDescription2,
6195 actual_new_chan_nr, arfcn);
6196
6197 if (actual_new_chan_nr != new_chan_nr) {
6198 log("ERROR: osmo-bsc assigned a different lchan than we assumed above -- this test will fail now.",
6199 " Assumed: ", new_chan_nr, " Assigned: ", actual_new_chan_nr);
6200 setverdict(fail);
6201 return;
6202 }
6203 log("Handover Command chan_nr is", actual_new_chan_nr);
6204
6205 /* Now the MSC forwards the RR Handover Command to the other BSC, which
6206 * tells the MS to handover to the new lchan. But the MS never shows up
6207 * on the new lchan. */
6208
6209 BSSAP.receive(tr_BSSMAP_HandoverFailure);
6210
6211 /* MSC plays dumb and sends no Clear Command */
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006212 var PDU_BSSAP rx_clear_request;
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02006213
6214 BSSAP.receive(tr_BSSMAP_ClearRequest) -> value rx_clear_request {
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006215 var BssmapCause cause := bit2int(rx_clear_request.pdu.bssmap.clearRequest.cause.causeValue);
6216 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
6217 };
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02006218 f_expect_dlcx_conns();
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02006219 BSSAP.receive(tr_BSSMAP_ClearComplete);
6220
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006221 f_sleep(1.0);
6222}
6223testcase TC_ho_in_fail_no_detect2() runs on test_CT {
6224 var MSC_ConnHdlr vc_conn;
6225 var TestHdlrParams pars := f_gen_test_hdlr_pars();
6226
6227 f_init(1, true);
6228 f_sleep(1.0);
6229
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006230 f_ctrs_bsc_and_bts_init();
6231
Neels Hofmeyr90f80962020-06-12 16:16:55 +02006232 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
6233 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006234
6235 vc_conn := f_start_handler(refers(f_tc_ho_in_fail_no_detect2), pars);
6236 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006237
6238 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6239 f_ctrs_bsc_and_bts_add(0, "handover:error");
6240 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted");
6241 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:error");
6242 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006243 f_shutdown_helper();
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006244}
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01006245
Neels Hofmeyr91401012019-07-11 00:42:35 +02006246type record of charstring Commands;
6247
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006248private function f_bts_0_cfg(TELNETasp_PT pt, Commands cmds := {})
Neels Hofmeyr91401012019-07-11 00:42:35 +02006249{
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006250 f_vty_enter_cfg_bts(pt, 0);
Neels Hofmeyr91401012019-07-11 00:42:35 +02006251 for (var integer i := 0; i < sizeof(cmds); i := i+1) {
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006252 f_vty_transceive(pt, cmds[i]);
Neels Hofmeyr91401012019-07-11 00:42:35 +02006253 }
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006254 f_vty_transceive(pt, "end");
Neels Hofmeyr91401012019-07-11 00:42:35 +02006255}
6256
Pau Espin Pedrolc675b612020-01-09 19:55:40 +01006257private function f_cs7_inst_0_cfg(TELNETasp_PT pt, Commands cmds := {})
6258{
6259 f_vty_enter_cfg_cs7_inst(pt, 0);
6260 for (var integer i := 0; i < sizeof(cmds); i := i+1) {
6261 f_vty_transceive(pt, cmds[i]);
6262 }
6263 f_vty_transceive(pt, "end");
6264}
6265
Neels Hofmeyr91401012019-07-11 00:42:35 +02006266private function f_probe_for_handover(charstring log_label,
6267 charstring log_descr,
6268 charstring handover_vty_cmd,
6269 boolean expect_handover,
Neels Hofmeyr6a955cc2021-10-02 14:53:48 +02006270 boolean is_inter_bsc_handover := false,
6271 template uint3_t expect_target_tsc := ?)
Neels Hofmeyr91401012019-07-11 00:42:35 +02006272runs on MSC_ConnHdlr
6273{
Neels Hofmeyrb3fc8982020-05-11 00:16:42 +02006274 /* We're going to thwart any and all handover attempts, just be ready to handle (and ignore) handover target
6275 * lchans to be established on bts 1 or bts 2. */
6276 f_rslem_suspend(RSL1_PROC);
6277 f_rslem_suspend(RSL2_PROC);
6278
Neels Hofmeyr91401012019-07-11 00:42:35 +02006279 var RSL_Message rsl;
6280
6281 var charstring log_msg := " (expecting handover)"
6282 if (not expect_handover) {
6283 log_msg := " (expecting NO handover)";
6284 }
6285 log("f_probe_for_handover starting: " & log_label & ": " & log_descr & log_msg);
6286 f_vty_transceive(BSCVTY, handover_vty_cmd);
6287
Neels Hofmeyr91401012019-07-11 00:42:35 +02006288 timer T := 2.0;
6289 T.start;
6290
6291 alt {
6292 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr)) -> value rsl {
6293 var PDU_ML3_NW_MS l3 := dec_PDU_ML3_NW_MS(rsl.ies[2].body.l3_info.payload);
6294 log("Rx L3 from net: ", l3);
6295 if (ischosen(l3.msgs.rrm.handoverCommand)) {
6296 var RslChannelNr new_chan_nr;
6297 var GsmArfcn arfcn;
6298 f_ChDesc2RslChanNr(l3.msgs.rrm.handoverCommand.channelDescription2,
6299 new_chan_nr, arfcn);
6300 log("Handover to new chan ", new_chan_nr, " on ARFCN ", arfcn);
6301 log(l3.msgs.rrm.handoverCommand);
6302
Neels Hofmeyr6a955cc2021-10-02 14:53:48 +02006303 /* Verify correct TSC in handoverCommand */
6304 var uint3_t got_tsc := rr_chan_desc_tsc(l3.msgs.rrm.handoverCommand.channelDescription2);
6305 if (not match(got_tsc, expect_target_tsc)) {
6306 setverdict(fail, "RR Handover Command: unexpected TSC in Channel Description: expected ",
6307 expect_target_tsc, " got ", got_tsc);
6308 mtc.stop;
6309 } else {
6310 log("handoverCommand: verified TSC = ", got_tsc, " (matches ",
6311 expect_target_tsc, ")");
6312 }
6313
Neels Hofmeyr91401012019-07-11 00:42:35 +02006314 /* Need to register for new lchan on new BTS -- it's either bts 1 or bts 2. It doesn't really
6315 * matter on which BTS it really is, we're not going to follow through an entire handover
6316 * anyway. */
6317 f_rslem_register(0, new_chan_nr, RSL1_PROC);
6318 f_rslem_resume(RSL1_PROC);
6319 f_rslem_register(0, new_chan_nr, RSL2_PROC);
6320 f_rslem_resume(RSL2_PROC);
6321
6322 if (expect_handover and not is_inter_bsc_handover) {
6323 setverdict(pass);
6324 log("f_probe_for_handover(" & log_label & "): Got RSL Handover Command as expected.");
6325 } else {
6326 setverdict(fail, "f_probe_for_handover(" & log_label & "): Expected none, but got RSL Handover Command. "
6327 & log_label & ": " & log_descr);
6328 }
6329
6330 log("f_probe_for_handover(" & log_label & "): Ending the test: Handover Failure stops the procedure.");
6331 /* osmo-bsc has triggered Handover. That's all we need to know for this test, reply with
6332 * Handover Failure. */
6333 f_rsl_send_l3(ts_RRM_HandoverFailure('00'O));
6334
6335 /* target BTS is told to release lchan again; don't care which BTS nor what messages. */
6336 f_sleep(0.5);
6337 RSL1.clear;
6338 RSL2.clear;
6339 log("f_probe_for_handover(" & log_label & "): done (got RSL Handover Command)");
6340 break;
6341 } else {
6342 repeat;
6343 }
6344 }
6345 [] BSSAP.receive(tr_BSSMAP_HandoverRequired) {
6346 if (expect_handover and is_inter_bsc_handover) {
6347 setverdict(pass);
6348 log("f_probe_for_handover(" & log_label & "): Got BSSMAP Handover Required as expected.");
6349 } else {
6350 setverdict(fail, "f_probe_for_handover(" & log_label & "): Expected none, but got BSSMAP Handover Required. "
6351 & log_label & ": " & log_descr);
6352 }
6353
6354 log("f_probe_for_handover(" & log_label & "): done (got BSSMAP Handover Required)");
6355
6356 /* Note: f_tc_ho_neighbor_config_start() sets T7, the timeout for BSSMAP Handover Required, to
6357 * 1 second. There is no legal way to quickly abort a handover after a BSSMAP Handover Required,
6358 * setting a short timeout and waiting is the only way. */
6359 log("f_probe_for_handover(" & log_label & "): waiting for inter-BSC HO to time out...");
6360 f_sleep(1.5);
6361 log("f_probe_for_handover(" & log_label & "): ...done");
6362
6363 break;
6364 }
6365 [] T.timeout {
6366 if (expect_handover) {
6367 setverdict(fail, "f_probe_for_handover(" & log_label & "): Expected Handover, but got none. "
6368 & log_label & ": " & log_descr);
6369 } else {
6370 setverdict(pass);
6371 log("f_probe_for_handover(" & log_label & "): Got no Handover, as expected.");
6372 }
6373 log("f_probe_for_handover(" & log_label & "): done (got no Handover)");
6374 break;
6375 }
6376 }
6377
6378 f_rslem_resume(RSL1_PROC);
6379 f_rslem_resume(RSL2_PROC);
6380 f_sleep(3.0);
6381 RSL.clear;
6382
6383 log("f_probe_for_handover(" & log_label & "): done clearing");
6384}
6385
6386/* Test the effect of various neighbor configuration scenarios:
6387 *
6388 * To avoid complexity, block off any actual handover operation, and always remain on the lchan at bts 0.
6389 * Reconfigure the neighbors for bts 0, trigger a Handover, and probe whether osmo-bsc does or doesn't start HO.
6390 */
6391private function f_tc_ho_neighbor_config_start() runs on MSC_ConnHdlr {
6392 g_pars := f_gen_test_hdlr_pars();
6393 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
6394 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Neels Hofmeyr91401012019-07-11 00:42:35 +02006395
6396 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
6397 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
6398
6399 /* Establish lchan at bts 0 */
6400 f_establish_fully(ass_cmd, exp_compl);
6401
6402 /* Shorten the inter-BSC Handover timeout, to not wait so long for inter-BSC Handovers */
6403 f_vty_enter_cfg_network(BSCVTY);
6404 f_vty_transceive(BSCVTY, "timer T7 1");
6405 f_vty_transceive(BSCVTY, "end");
6406}
6407
6408private function f_tc_ho_neighbor_config_1(charstring id) runs on MSC_ConnHdlr {
6409 f_tc_ho_neighbor_config_start();
6410
6411 /*
6412 * bts 0 ARFCN 871 BSIC 10
6413 * bts 1 ARFCN 871 BSIC 11
6414 * bts 2 ARFCN 871 BSIC 12
6415 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6416 */
6417
6418 log("f_tc_ho_neighbor_config: 1. No 'neighbor' config");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006419 f_bts_0_cfg(BSCVTY, {"no neighbors"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006420 f_probe_for_handover("1.a", "HO to bts 1 works, implicitly listed as neighbor (legacy behavior when none are configured)",
6421 "handover any to arfcn 871 bsic 11",
Neels Hofmeyr6a955cc2021-10-02 14:53:48 +02006422 true, expect_target_tsc := BTS_TSC[1]);
Neels Hofmeyr91401012019-07-11 00:42:35 +02006423
6424 f_probe_for_handover("1.b", "HO to unknown cell does not start",
6425 "handover any to arfcn 13 bsic 39",
6426 false);
6427
6428 f_probe_for_handover("1.c", "HO to 871-12 is ambiguous = error",
6429 "handover any to arfcn 871 bsic 12",
6430 false);
6431
6432 f_probe_for_handover("1.d", "HO to 871-11 still works (verify that this test properly cleans up)",
6433 "handover any to arfcn 871 bsic 11",
Neels Hofmeyr6a955cc2021-10-02 14:53:48 +02006434 true, expect_target_tsc := BTS_TSC[1]);
Neels Hofmeyr91401012019-07-11 00:42:35 +02006435}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006436testcase TC_ho_neighbor_config_1() runs on test_CT {
6437 var MSC_ConnHdlr vc_conn;
6438 f_init(3, true, guard_timeout := 60.0);
6439 f_sleep(1.0);
6440 f_ctrs_bsc_and_bts_init();
6441 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_1));
6442 vc_conn.done;
6443
6444 /* f_tc_ho_neighbor_config_start() */
6445 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6446 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6447
6448 /* 1.a */
6449 /* "failed" means a handover was triggered and started (which is all this test aims for) and the test ended the
6450 * handover quickly by sending a Handover Failure message. */
6451 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6452 f_ctrs_bsc_and_bts_add(0, "handover:failed");
6453 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
6454 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:failed");
6455
6456 /* 1.b */
6457 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6458 f_ctrs_bsc_and_bts_add(0, "handover:error");
6459
6460 /* 1.c */
6461 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6462 f_ctrs_bsc_and_bts_add(0, "handover:error");
6463
6464 /* 1.d */
6465 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6466 f_ctrs_bsc_and_bts_add(0, "handover:failed");
6467 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
6468 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:failed");
6469
6470 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006471 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006472}
6473
Neels Hofmeyr91401012019-07-11 00:42:35 +02006474private function f_tc_ho_neighbor_config_2(charstring id) runs on MSC_ConnHdlr {
6475 f_tc_ho_neighbor_config_start();
6476
6477 /*
6478 * bts 0 ARFCN 871 BSIC 10
6479 * bts 1 ARFCN 871 BSIC 11
6480 * bts 2 ARFCN 871 BSIC 12
6481 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6482 */
6483
6484 log("f_tc_ho_neighbor_config: 2. explicit local neighbor: 'neighbor bts 1'");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006485 f_bts_0_cfg(BSCVTY, {"neighbor bts 1"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006486 f_sleep(0.5);
6487
6488 f_probe_for_handover("2.a", "HO to bts 1 works, explicitly listed as neighbor",
6489 "handover any to arfcn 871 bsic 11",
Neels Hofmeyr6a955cc2021-10-02 14:53:48 +02006490 true, expect_target_tsc := BTS_TSC[1]);
Neels Hofmeyr91401012019-07-11 00:42:35 +02006491
6492 f_probe_for_handover("2.b", "HO to bts 2 doesn't work, not listed as neighbor",
6493 "handover any to arfcn 871 bsic 12",
6494 false);
6495}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006496testcase TC_ho_neighbor_config_2() runs on test_CT {
6497 var MSC_ConnHdlr vc_conn;
6498 f_init(3, true, guard_timeout := 50.0);
6499 f_sleep(1.0);
6500 f_ctrs_bsc_and_bts_init();
6501 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_2));
6502 vc_conn.done;
6503
6504 /* f_tc_ho_neighbor_config_start() */
6505 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6506 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6507
6508 /* 2.a */
6509 /* "failed" means a handover was triggered and started (which is all this test aims for) and the test ended the
6510 * handover quickly by sending a Handover Failure message. */
6511 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6512 f_ctrs_bsc_and_bts_add(0, "handover:failed");
6513 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
6514 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:failed");
6515
6516 /* 2.b */
6517 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6518 f_ctrs_bsc_and_bts_add(0, "handover:error");
6519
6520 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006521 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006522}
6523
Neels Hofmeyr91401012019-07-11 00:42:35 +02006524private function f_tc_ho_neighbor_config_3(charstring id) runs on MSC_ConnHdlr {
6525 f_tc_ho_neighbor_config_start();
6526
6527 /*
6528 * bts 0 ARFCN 871 BSIC 10
6529 * bts 1 ARFCN 871 BSIC 11
6530 * bts 2 ARFCN 871 BSIC 12
6531 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6532 */
6533
6534 log("f_tc_ho_neighbor_config: 3. explicit local neighbor: 'neighbor bts 2'");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006535 f_bts_0_cfg(BSCVTY, {"no neighbors", "neighbor bts 2"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006536 f_sleep(0.5);
6537
6538 f_probe_for_handover("3.a", "HO to bts 1 doesn't work, not listed as neighbor",
6539 "handover any to arfcn 871 bsic 11",
6540 false);
6541 f_probe_for_handover("3.b", "HO to bts 2 works, explicitly listed as neighbor; no ambiguity because bts 3 is not listed as neighbor",
6542 "handover any to arfcn 871 bsic 12",
Neels Hofmeyr6a955cc2021-10-02 14:53:48 +02006543 true, expect_target_tsc := BTS_TSC[2]);
Neels Hofmeyr91401012019-07-11 00:42:35 +02006544}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006545testcase TC_ho_neighbor_config_3() runs on test_CT {
6546 var MSC_ConnHdlr vc_conn;
6547 f_init(3, true, guard_timeout := 50.0);
6548 f_sleep(1.0);
6549 f_ctrs_bsc_and_bts_init();
6550 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_3));
6551 vc_conn.done;
6552
6553 /* f_tc_ho_neighbor_config_start() */
6554 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6555 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6556
6557 /* 3.a */
6558 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6559 f_ctrs_bsc_and_bts_add(0, "handover:error");
6560
6561 /* 3.b */
6562 /* "failed" means a handover was triggered and started (which is all this test aims for) and the test ended the
6563 * handover quickly by sending a Handover Failure message. */
6564 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6565 f_ctrs_bsc_and_bts_add(0, "handover:failed");
6566 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
6567 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:failed");
6568
6569 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006570 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006571}
6572
Neels Hofmeyr91401012019-07-11 00:42:35 +02006573private function f_tc_ho_neighbor_config_4(charstring id) runs on MSC_ConnHdlr {
6574 f_tc_ho_neighbor_config_start();
6575
6576 /*
6577 * bts 0 ARFCN 871 BSIC 10
6578 * bts 1 ARFCN 871 BSIC 11
6579 * bts 2 ARFCN 871 BSIC 12
6580 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6581 */
6582
6583 log("f_tc_ho_neighbor_config: 4. explicit remote neighbor: 'neighbor lac 99 arfcn 123 bsic 45'");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006584 f_bts_0_cfg(BSCVTY, {"no neighbors", "neighbor lac 99 arfcn 123 bsic 45"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006585 f_sleep(0.5);
6586
6587 f_probe_for_handover("4.a", "HO to bts 1 doesn't work, not listed as neighbor",
6588 "handover any to arfcn 871 bsic 11",
6589 false);
6590 f_probe_for_handover("4.b", "HO to bts 2 doesn't work, not listed as neighbor",
6591 "handover any to arfcn 871 bsic 12",
6592 false);
6593 f_probe_for_handover("4.c", "HO to 123-45 triggers inter-BSC HO",
6594 "handover any to arfcn 123 bsic 45",
6595 true, true);
6596}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006597testcase TC_ho_neighbor_config_4() runs on test_CT {
6598 var MSC_ConnHdlr vc_conn;
6599 f_init(3, true, guard_timeout := 50.0);
6600 f_sleep(1.0);
6601 f_ctrs_bsc_and_bts_init();
6602 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_4));
6603 vc_conn.done;
6604
6605 /* f_tc_ho_neighbor_config_start() */
6606 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6607 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6608
6609 /* 4.a */
6610 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6611 f_ctrs_bsc_and_bts_add(0, "handover:error");
6612
6613 /* 4.b */
6614 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6615 f_ctrs_bsc_and_bts_add(0, "handover:error");
6616
6617 /* 4.c */
6618 /* "timeout" means a handover was triggered and started (which is all this test aims for) and the test ended the
6619 * handover quickly by timing out after the Handover Required message */
6620 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6621 f_ctrs_bsc_and_bts_add(0, "handover:timeout");
6622 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
6623 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:timeout");
6624
6625 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006626 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006627}
6628
Neels Hofmeyr91401012019-07-11 00:42:35 +02006629private function f_tc_ho_neighbor_config_5(charstring id) runs on MSC_ConnHdlr {
6630 f_tc_ho_neighbor_config_start();
6631
6632 /*
6633 * bts 0 ARFCN 871 BSIC 10
6634 * bts 1 ARFCN 871 BSIC 11
6635 * bts 2 ARFCN 871 BSIC 12
6636 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6637 */
6638
6639 log("f_tc_ho_neighbor_config: 5. explicit remote neighbor re-using ARFCN+BSIC: 'neighbor lac 99 arfcn 871 bsic 12'");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006640 f_bts_0_cfg(BSCVTY, {"no neighbors", "neighbor lac 99 arfcn 871 bsic 12"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006641 f_sleep(0.5);
6642
6643 f_probe_for_handover("5.a", "HO to 871-12 triggers inter-BSC HO (ignoring local cells with same ARFCN+BSIC)",
6644 "handover any to arfcn 871 bsic 12",
6645 true, true);
6646}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006647testcase TC_ho_neighbor_config_5() runs on test_CT {
6648 var MSC_ConnHdlr vc_conn;
6649 f_init(3, true);
6650 f_sleep(1.0);
6651 f_ctrs_bsc_and_bts_init();
6652 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_5));
6653 vc_conn.done;
6654
6655 /* f_tc_ho_neighbor_config_start() */
6656 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6657 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6658
6659 /* 5 */
6660 /* "timeout" means a handover was triggered and started (which is all this test aims for) and the test ended the
6661 * handover quickly by timing out after the Handover Required message */
6662 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6663 f_ctrs_bsc_and_bts_add(0, "handover:timeout");
6664 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
6665 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:timeout");
6666
6667 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006668 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006669}
6670
Neels Hofmeyr91401012019-07-11 00:42:35 +02006671private function f_tc_ho_neighbor_config_6(charstring id) runs on MSC_ConnHdlr {
6672 f_tc_ho_neighbor_config_start();
6673
6674 /*
6675 * bts 0 ARFCN 871 BSIC 10
6676 * bts 1 ARFCN 871 BSIC 11
6677 * bts 2 ARFCN 871 BSIC 12
6678 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6679 */
6680
6681 log("f_tc_ho_neighbor_config: 6. config error: explicit local and remote neighbors with ambiguous ARFCN+BSIC:"
6682 & " 'neighbor bts 2; neighbor lac 99 arfcn 871 bsic 12'");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006683 f_bts_0_cfg(BSCVTY, {"no neighbors", "neighbor bts 2", "neighbor lac 99 arfcn 871 bsic 12"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006684 f_sleep(0.5);
6685
6686 f_probe_for_handover("6.a", "HO to 871-12 is ambiguous = error",
6687 "handover any to arfcn 871 bsic 12",
6688 false);
6689}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006690testcase TC_ho_neighbor_config_6() runs on test_CT {
6691 var MSC_ConnHdlr vc_conn;
6692 f_init(3, true);
6693 f_sleep(1.0);
6694 f_ctrs_bsc_and_bts_init();
6695 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_6));
6696 vc_conn.done;
6697
6698 /* f_tc_ho_neighbor_config_start() */
6699 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6700 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6701
6702 /* 6.a */
6703 /* "timeout" means a handover was triggered and started (which is all this test aims for) and the test ended the
6704 * handover quickly by timing out after the Handover Required message */
6705 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6706 f_ctrs_bsc_and_bts_add(0, "handover:error");
6707
6708 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006709 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006710}
6711
Neels Hofmeyr91401012019-07-11 00:42:35 +02006712private function f_tc_ho_neighbor_config_7(charstring id) runs on MSC_ConnHdlr {
6713 f_tc_ho_neighbor_config_start();
6714
6715 /*
6716 * bts 0 ARFCN 871 BSIC 10
6717 * bts 1 ARFCN 871 BSIC 11
6718 * bts 2 ARFCN 871 BSIC 12
6719 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6720 */
6721
6722 log("f_tc_ho_neighbor_config: 7. explicit local and remote neighbors:"
6723 & " 'neighbor bts 2; neighbor lac 99 arfcn 123 bsic 45'");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006724 f_bts_0_cfg(BSCVTY, {"no neighbors", "neighbor bts 2", "neighbor lac 99 arfcn 123 bsic 45"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006725 f_sleep(0.5);
6726
6727 f_probe_for_handover("7.a", "HO to 871-12 does HO to bts 2",
6728 "handover any to arfcn 871 bsic 12",
Neels Hofmeyr6a955cc2021-10-02 14:53:48 +02006729 true, expect_target_tsc := BTS_TSC[2]);
Neels Hofmeyr91401012019-07-11 00:42:35 +02006730 f_probe_for_handover("7.b", "HO to 123-45 triggers inter-BSC HO",
6731 "handover any to arfcn 123 bsic 45",
6732 true, true);
6733}
Neels Hofmeyr91401012019-07-11 00:42:35 +02006734testcase TC_ho_neighbor_config_7() runs on test_CT {
6735 var MSC_ConnHdlr vc_conn;
Neels Hofmeyrf2b88032020-06-16 00:35:04 +02006736 f_init(3, true, guard_timeout := 50.0);
Neels Hofmeyr91401012019-07-11 00:42:35 +02006737 f_sleep(1.0);
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006738 f_ctrs_bsc_and_bts_init();
Neels Hofmeyr91401012019-07-11 00:42:35 +02006739 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_7));
6740 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006741
6742 /* f_tc_ho_neighbor_config_start() */
6743 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6744 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6745
6746 /* 7.a */
6747 /* "failed" means a handover was triggered and started (which is all this test aims for) and the test ended the
6748 * handover quickly by sending a Handover Failure message. */
6749 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6750 f_ctrs_bsc_and_bts_add(0, "handover:failed");
6751 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
6752 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:failed");
6753
6754 /* 7.b */
6755 /* "timeout" means a handover was triggered and started (which is all this test aims for) and the test ended the
6756 * handover quickly by timing out after the Handover Required message */
6757 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6758 f_ctrs_bsc_and_bts_add(0, "handover:timeout");
6759 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
6760 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:timeout");
6761
6762 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006763 f_shutdown_helper();
Neels Hofmeyr91401012019-07-11 00:42:35 +02006764}
6765
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +01006766/* OS#3041: Open and close N connections in a normal fashion, and expect no
6767 * BSSMAP Reset just because of that. */
6768testcase TC_bssap_rlsd_does_not_cause_bssmap_reset() runs on test_CT {
6769 var default d;
6770 var integer i;
6771 var DchanTuple dt;
6772
6773 f_init();
6774
6775 /* Wait for initial BSSMAP Reset to pass */
6776 f_sleep(4.0);
6777
6778 d := activate(no_bssmap_reset());
6779
6780 /* Setup up a number of connections and RLSD them again from the MSC
6781 * side. In the buggy behavior, the fourth one triggers BSSMAP Reset.
6782 * Let's do it some more times for good measure. */
Harald Weltec3260d92018-06-11 17:48:16 +02006783 for (i := 0; i < 4; i := i+1) {
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +01006784 /* Since we're doing a lot of runs, give each one a fresh
6785 * T_guard from the top. */
6786 T_guard.start;
6787
6788 /* Setup a BSSAP connection and clear it right away. This is
6789 * the MSC telling the BSC about a planned release, it's not an
6790 * erratic loss of a connection. */
Harald Weltea1897182018-06-11 13:53:09 +02006791 dt := f_est_dchan(int2oct(i,1), 23+i, '00010203040506'O);
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +01006792
6793 /* MSC disconnects (RLSD). */
6794 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
6795 }
6796
6797 /* In the buggy behavior, a timeout of 2 seconds happens between above
6798 * trigger (logs "SIGTRAN connection down, reconnecting...") and the
6799 * actual BSSMAP Reset. Wait a bit longer just to make sure. */
6800 f_sleep(4.0);
6801
6802 deactivate(d);
6803 f_shutdown_helper();
6804}
Harald Welte552620d2017-12-16 23:21:36 +01006805
Neels Hofmeyr4ff93282018-03-12 04:25:35 +01006806/* OS#3041: Open and close N connections in a normal fashion, and expect no
6807 * BSSMAP Reset just because of that. Invoke the release by a BSSMAP Clear from
6808 * the MSC. */
6809testcase TC_bssmap_clear_does_not_cause_bssmap_reset() runs on test_CT {
6810 var default d;
6811 var integer i;
6812 var DchanTuple dt;
6813 var BSSAP_N_DATA_ind rx_di;
Neels Hofmeyr4ff93282018-03-12 04:25:35 +01006814 var myBSSMAP_Cause cause_val := GSM0808_CAUSE_CALL_CONTROL;
6815 var BssmapCause cause := enum2int(cause_val);
6816
6817 f_init();
6818
6819 /* Wait for initial BSSMAP Reset to pass */
6820 f_sleep(4.0);
6821
6822 d := activate(no_bssmap_reset());
6823
6824 /* Setup up a number of connections and RLSD them again from the MSC
6825 * side. In the buggy behavior, the fourth one triggers BSSMAP Reset.
6826 * Let's do it some more times for good measure. */
6827 for (i := 0; i < 8; i := i+1) {
6828 /* Since we're doing a lot of runs, give each one a fresh
6829 * T_guard from the top. */
6830 T_guard.start;
6831
6832 /* Setup a BSSAP connection and clear it right away. This is
6833 * the MSC telling the BSC about a planned release, it's not an
6834 * erratic loss of a connection. */
Harald Weltea1897182018-06-11 13:53:09 +02006835 dt := f_est_dchan(int2oct(i,1), 23+i, '00010203040506'O);
Neels Hofmeyr4ff93282018-03-12 04:25:35 +01006836
6837 /* Instruct BSC to clear channel */
6838 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
6839
6840 /* expect BSC to disable the channel */
Harald Welte641fcbe2018-06-14 10:58:35 +02006841 f_exp_chan_rel_and_clear(dt, 0);
Neels Hofmeyr4ff93282018-03-12 04:25:35 +01006842 }
6843
6844 /* In the buggy behavior, a timeout of 2 seconds happens between above
6845 * trigger (logs "SIGTRAN connection down, reconnecting...") and the
6846 * actual BSSMAP Reset. Wait a bit longer just to make sure. */
6847 f_sleep(4.0);
6848
6849 deactivate(d);
6850 f_shutdown_helper();
6851}
6852
Neels Hofmeyrfd445c32018-03-09 15:39:31 +01006853/* OS#3041: Open and close N connections in a normal fashion, and expect no
6854 * BSSMAP Reset just because of that. Close connections from the MS side with a
6855 * Release Ind on RSL. */
6856testcase TC_ms_rel_ind_does_not_cause_bssmap_reset() runs on test_CT {
6857 var default d;
6858 var integer i;
6859 var DchanTuple dt;
6860 var BSSAP_N_DATA_ind rx_di;
Neels Hofmeyrfd445c32018-03-09 15:39:31 +01006861 var integer j;
6862
6863 f_init();
6864
6865 /* Wait for initial BSSMAP Reset to pass */
6866 f_sleep(4.0);
6867
6868 d := activate(no_bssmap_reset());
6869
6870 /* Setup up a number of connections and RLSD them again from the MSC
6871 * side. In the buggy behavior, the fourth one triggers BSSMAP Reset.
6872 * Let's do it some more times for good measure. */
6873 for (i := 0; i < 8; i := i+1) {
6874 /* Since we're doing a lot of runs, give each one a fresh
6875 * T_guard from the top. */
6876 T_guard.start;
6877
6878 /* Setup a BSSAP connection and clear it right away. This is
6879 * the MSC telling the BSC about a planned release, it's not an
6880 * erratic loss of a connection. */
6881 dt := f_est_dchan('23'O, 23, '00010203040506'O);
6882
6883 /* simulate RLL REL IND */
6884 f_ipa_tx(0, ts_RSL_REL_IND(dt.rsl_chan_nr, valueof(ts_RslLinkID_DCCH(0))));
6885
6886 /* expect Clear Request on MSC side */
6887 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearRequest)) -> value rx_di;
6888
6889 /* Instruct BSC to clear channel */
6890 var BssmapCause cause := bit2int(rx_di.userData.pdu.bssmap.clearRequest.cause.causeValue);
6891 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
6892
6893 /* expect BSC to disable the channel */
Harald Welte641fcbe2018-06-14 10:58:35 +02006894 f_exp_chan_rel_and_clear(dt, 0);
Neels Hofmeyrfd445c32018-03-09 15:39:31 +01006895 }
6896
6897 /* In the buggy behavior, a timeout of 2 seconds happens between above
6898 * trigger (logs "SIGTRAN connection down, reconnecting...") and the
6899 * actual BSSMAP Reset. Wait a bit longer just to make sure. */
6900 f_sleep(4.0);
6901
6902 deactivate(d);
6903 f_shutdown_helper();
6904}
6905
Harald Welte94e0c342018-04-07 11:33:23 +02006906/***********************************************************************
6907 * IPA style dynamic PDCH
6908 ***********************************************************************/
6909
6910private function f_dyn_ipa_pdch_act(integer bts_nr, integer trx_nr, integer ts_nr,
6911 template (omit) RSL_Cause nack := omit)
6912runs on test_CT {
6913 var RslChannelNr chan_nr := valueof(t_RslChanNr_Bm(ts_nr));
6914 var RSL_Message rsl_unused;
6915 /* ask BSC via VTY to activate a given IPA style chan as PDCH */
6916 f_vty_ts_action("pdch activate", bts_nr, trx_nr, ts_nr);
6917 /* expect the BSC to issue the related RSL command */
6918 rsl_unused := f_exp_ipa_rx(0, tr_RSL_IPA_PDCH_ACT(chan_nr));
6919 if (istemplatekind(nack, "omit")) {
6920 /* respond with a related acknowledgement */
6921 f_ipa_tx(0, ts_RSL_IPA_PDCH_ACT_ACK(chan_nr, ts_RSL_IE_FrameNumber(2342)));
6922 } else {
6923 f_ipa_tx(0, ts_RSL_IPA_PDCH_ACT_NACK(chan_nr, valueof(nack)));
6924 }
6925}
6926
6927private function f_dyn_ipa_pdch_deact(integer bts_nr, integer trx_nr, integer ts_nr,
6928 template (omit) RSL_Cause nack := omit)
6929runs on test_CT {
6930 var RslChannelNr chan_nr := valueof(t_RslChanNr_Bm(ts_nr));
6931 var RSL_Message rsl_unused;
6932 /* ask BSC via VTY to activate a given IPA style chan as PDCH */
6933 f_vty_ts_action("pdch deactivate", bts_nr, trx_nr, ts_nr);
6934 /* expect the BSC to issue the related RSL command */
6935 rsl_unused := f_exp_ipa_rx(0, tr_RSL_IPA_PDCH_DEACT(chan_nr));
6936 if (istemplatekind(nack, "omit")) {
6937 /* respond with a related acknowledgement */
6938 f_ipa_tx(0, ts_RSL_IPA_PDCH_DEACT_ACK(chan_nr));
6939 } else {
6940 f_ipa_tx(0, ts_RSL_IPA_PDCH_DEACT_NACK(chan_nr, valueof(nack)));
6941 }
6942}
6943
6944private function f_ts_dyn_mode_get(integer bts_nr, integer trx_nr, integer ts_nr)
6945runs on test_CT return charstring {
6946 var charstring cmd, resp;
6947 cmd := "show timeslot "&int2str(bts_nr)&" "&int2str(trx_nr)&" "&int2str(ts_nr);
Stefan Sperlingcff13562018-11-13 15:24:06 +01006948 return f_vty_transceive_match_regexp_retry(BSCVTY, cmd, "*\((*)\)*", 0, 4, 1.0);
Harald Welte94e0c342018-04-07 11:33:23 +02006949}
6950
6951private function f_ts_dyn_mode_assert(integer bts_nr, integer trx_nr, integer ts_nr,
6952 template charstring exp)
6953runs on test_CT {
6954 var charstring mode := f_ts_dyn_mode_get(bts_nr, trx_nr, ts_nr);
6955 if (not match(mode, exp)) {
6956 setverdict(fail, "Unexpected TS Mode: ", mode);
Daniel Willmannafce8662018-07-06 23:11:32 +02006957 mtc.stop;
Harald Welte94e0c342018-04-07 11:33:23 +02006958 }
6959}
6960
6961private function f_ts_set_chcomb(integer bts_nr, integer trx_nr, integer ts_nr, charstring chcomb)
6962runs on test_CT {
6963 f_vty_enter_cfg_ts(BSCVTY, bts_nr, trx_nr, ts_nr);
6964 f_vty_transceive(BSCVTY, "phys_chan_config " & chcomb);
6965 f_vty_transceive(BSCVTY, "end");
6966}
6967
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +02006968
6969private function f_ts_reset_chcomb(integer bts_nr) runs on test_CT {
6970 var integer i;
6971 for (i := 0; i < 8; i := i + 1) {
6972 f_ts_set_chcomb(bts_nr, 0, i, phys_chan_config[i]);
6973 }
6974}
6975
Harald Welte94e0c342018-04-07 11:33:23 +02006976private const charstring TCHF_MODE := "TCH/F mode";
6977private const charstring TCHH_MODE := "TCH/H mode";
6978private const charstring PDCH_MODE := "PDCH mode";
6979private const charstring NONE_MODE := "NONE mode";
Pau Espin Pedrol5b381082021-06-28 17:14:03 +02006980private const charstring SDCCH8_MODE := "SDCCH8 mode";
Harald Welte94e0c342018-04-07 11:33:23 +02006981
6982/* Test IPA PDCH activation / deactivation triggered by VTY */
6983testcase TC_dyn_pdch_ipa_act_deact() runs on test_CT {
6984 var RSL_Message rsl_unused;
6985
6986 /* change Timeslot 6 before f_init() starts RSL */
6987 f_init_vty();
6988 f_ts_set_chcomb(0, 0, 6, "TCH/F_PDCH");
6989 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
6990
6991 f_init(1, false);
6992 f_sleep(1.0);
6993
6994 var RslChannelNr chan_nr := valueof(t_RslChanNr_Bm(6));
6995
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02006996 log("TCH/F_PDCH pchan starts out in TCH/F mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02006997 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
6998 /* The BSC will activate the dynamic PDCH by default, so confirm that */
6999 rsl_unused := f_exp_ipa_rx(0, tr_RSL_IPA_PDCH_ACT(chan_nr));
7000 f_ipa_tx(0, ts_RSL_IPA_PDCH_ACT_ACK(chan_nr, ts_RSL_IE_FrameNumber(2342)));
7001 f_sleep(1.0);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02007002 log("TCH/F_PDCH pchan, PDCH ACT was ACKed, so now in PDCH mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02007003 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, PDCH_MODE);
7004
7005 /* De-activate it via VTY */
7006 f_dyn_ipa_pdch_deact(0, 0, chan_nr.tn);
7007 f_sleep(1.0);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02007008 log("TCH/F_PDCH pchan, PDCH DEACT via VTY, so now back in TCH/F mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02007009 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
7010
7011 /* re-activate it via VTY */
7012 f_dyn_ipa_pdch_act(0, 0, chan_nr.tn);
7013 f_sleep(1.0);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02007014 log("TCH/F_PDCH pchan, PDCH ACT via VTY, so now in PDCH mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02007015 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, PDCH_MODE);
7016
7017 /* and finally de-activate it again */
7018 f_dyn_ipa_pdch_deact(0, 0, chan_nr.tn);
7019 f_sleep(1.0);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02007020 log("TCH/F_PDCH pchan, PDCH DEACT via VTY, so now back in TCH/F mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02007021 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
7022
Neels Hofmeyr887e8f12018-06-27 01:01:55 +02007023 /* clean up config */
7024 f_ts_set_chcomb(0, 0, 6, "PDCH");
7025
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007026 f_shutdown_helper();
Harald Welte94e0c342018-04-07 11:33:23 +02007027}
7028
7029/* Test IPA PDCH activation NACK */
7030testcase TC_dyn_pdch_ipa_act_nack() runs on test_CT {
7031 var RSL_Message rsl_unused;
7032
7033 /* change Timeslot 6 before f_init() starts RSL */
7034 f_init_vty();
7035 f_ts_set_chcomb(0, 0, 6, "TCH/F_PDCH");
7036 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
7037
7038 f_init(1, false);
7039 f_sleep(1.0);
7040
7041 var RslChannelNr chan_nr := valueof(t_RslChanNr_Bm(6));
7042
7043 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
7044 /* The BSC will activate the dynamic PDCH by default, so confirm that */
7045 rsl_unused := f_exp_ipa_rx(0, tr_RSL_IPA_PDCH_ACT(chan_nr));
7046 f_ipa_tx(0, ts_RSL_IPA_PDCH_ACT_ACK(chan_nr, ts_RSL_IE_FrameNumber(2342)));
7047 f_sleep(1.0);
7048 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, PDCH_MODE);
7049
7050 /* De-activate it via VTY */
7051 f_dyn_ipa_pdch_deact(0, 0, chan_nr.tn);
7052 f_sleep(1.0);
7053 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
7054
7055 /* re-activate it via VTY, but fail that; check BSC still assumes TCH/F mode */
7056 f_dyn_ipa_pdch_act(0, 0, chan_nr.tn, RSL_ERR_EQUIPMENT_FAIL);
7057 f_sleep(1.0);
7058 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
7059
Neels Hofmeyr887e8f12018-06-27 01:01:55 +02007060 /* clean up config */
7061 f_ts_set_chcomb(0, 0, 6, "PDCH");
7062
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007063 f_shutdown_helper();
Harald Welte94e0c342018-04-07 11:33:23 +02007064}
7065
7066
7067/***********************************************************************
7068 * Osmocom style dynamic PDCH
7069 ***********************************************************************/
7070
7071private function f_dyn_osmo_pdch_act(integer bts_nr, integer trx_nr, integer ts_nr,
7072 template (omit) RSL_Cause nack := omit)
7073runs on test_CT {
7074 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(ts_nr));
7075 var RSL_Message rsl_unused;
Pau Espin Pedrol64adf372021-06-28 16:25:47 +02007076 /* ask BSC via VTY to activate a given OSMO style chan as PDCH */
Harald Welte94e0c342018-04-07 11:33:23 +02007077 /* FIXME: no VTY command to activate Osmocom PDCH !! */
7078 /* expect the BSC to issue the related RSL command */
7079 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT(chan_nr, ?));
7080 if (istemplatekind(nack, "omit")) {
7081 /* respond with a related acknowledgement */
7082 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, 2342));
7083 } else {
7084 f_ipa_tx(0, ts_RSL_CHAN_ACT_NACK(chan_nr, valueof(nack)));
7085 }
7086}
7087
7088private function f_dyn_osmo_pdch_deact(integer bts_nr, integer trx_nr, integer ts_nr,
7089 template (omit) RSL_Cause nack := omit)
7090runs on test_CT {
7091 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(ts_nr));
7092 var RSL_Message rsl_unused;
Pau Espin Pedrol64adf372021-06-28 16:25:47 +02007093 /* ask BSC via VTY to activate a given OSMO style chan as PDCH */
Harald Welte94e0c342018-04-07 11:33:23 +02007094 /* FIXME: no VTY command to activate Osmocom PDCH !! */
7095 /* expect the BSC to issue the related RSL command */
7096 rsl_unused := f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(chan_nr));
7097 if (istemplatekind(nack, "omit")) {
7098 /* respond with a related acknowledgement */
7099 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(chan_nr));
7100 } else {
7101 //f_ipa_tx(0, ts_RSL_RF_CHAN_REL_NACK(chan_nr, valueof(nack)));
7102 }
7103}
7104
7105/* Test Osmocom dyn PDCH activation / deactivation triggered by VTY */
7106testcase TC_dyn_pdch_osmo_act_deact() runs on test_CT {
7107 var RSL_Message rsl_unused;
7108
7109 /* change Timeslot 6 before f_init() starts RSL */
7110 f_init_vty();
7111 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_PDCH");
7112 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
7113
7114 f_init(1, false);
7115 f_sleep(1.0);
7116
7117 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(6));
7118
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02007119 log("TCH/F_TCH/H_PDCH pchan starts out in disabled mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02007120 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, NONE_MODE);
7121 /* The BSC will activate the dynamic PDCH by default, so confirm that */
7122 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(chan_nr, ?));
7123
7124 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, 2342));
7125 f_sleep(1.0);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02007126 log("TCH/F_TCH/H_PDCH requested to PDCH ACT on startup, which was ACKed, so now in PDCH:");
Harald Welte94e0c342018-04-07 11:33:23 +02007127 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, PDCH_MODE);
7128
Neels Hofmeyr887e8f12018-06-27 01:01:55 +02007129 /* clean up config */
7130 f_ts_set_chcomb(0, 0, 6, "PDCH");
7131
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007132 f_shutdown_helper();
Harald Welte94e0c342018-04-07 11:33:23 +02007133}
7134
7135/* Test Osmocom dyn PDCH activation NACK behavior */
7136testcase TC_dyn_pdch_osmo_act_nack() runs on test_CT {
7137 var RSL_Message rsl_unused;
7138
7139 /* change Timeslot 6 before f_init() starts RSL */
7140 f_init_vty();
7141 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_PDCH");
7142 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
7143
7144 f_init(1, false);
7145 f_sleep(1.0);
7146
7147 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(6));
7148
7149 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, NONE_MODE);
7150 /* The BSC will activate the dynamic PDCH by default, so confirm that */
7151 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(chan_nr, ?));
7152
7153 /* NACK this activation and expect the "show timeslot" mode still to be NONE */
7154 f_ipa_tx(0, ts_RSL_CHAN_ACT_NACK(chan_nr, RSL_ERR_EQUIPMENT_FAIL));
7155 f_sleep(1.0);
7156 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, NONE_MODE);
7157
Neels Hofmeyr887e8f12018-06-27 01:01:55 +02007158 /* clean up config */
7159 f_ts_set_chcomb(0, 0, 6, "PDCH");
7160
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007161 f_shutdown_helper();
Harald Welte94e0c342018-04-07 11:33:23 +02007162}
7163
Pau Espin Pedrol5b381082021-06-28 17:14:03 +02007164/* Test Osmocom dyn TS SDCCH8 activation / deactivation */
7165testcase TC_dyn_ts_sdcch8_act_deact() runs on test_CT {
7166 var RSL_Message rsl_unused, rsl_msg;
7167 var DchanTuple dt;
7168 var BSSAP_N_CONNECT_ind rx_c_ind;
7169
7170 /* change Timeslot 6 before f_init() starts RSL */
7171 f_init_vty();
7172 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_SDCCH8_PDCH");
7173 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
7174
7175 f_init(1, false);
7176 f_sleep(1.0);
7177
7178 var RslChannelNr pdch_chan_nr := valueof(t_RslChanNr_PDCH(6));
7179
7180 log("TCH/F_TCH/H_SDCCH8_PDCH pchan starts out in disabled mode:");
7181 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, NONE_MODE);
7182 /* The BSC will activate the dynamic PDCH by default, so confirm that */
7183 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7184
7185 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7186 f_sleep(1.0);
7187 log("TCH/F_TCH/H_SDCCH8_PDC requested to PDCH ACT on startup, which was ACKed, so now in PDCH:");
7188 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE);
7189
7190 /* Fill TS0 SDCCH channels (NOTE: only 3 SDCCH/4 channels are available
7191 * on CCCH+SDCCH4+CBCH) */
7192 var integer i;
7193 for (i := 0; i < 3; i := i + 1) {
7194 dt := f_est_dchan('23'O, i, '00010203040506'O);
7195 }
7196
7197 /* Now the dyn ts is selected. First PDCH is released, then sdcch chan is activated */
7198 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(oct2int('23'O) + i, 1), 2342));
7199 rsl_unused := f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(pdch_chan_nr));
7200 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(pdch_chan_nr));
7201
7202 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
7203 dt.rsl_chan_nr := rsl_msg.ies[0].body.chan_nr;
7204
7205 f_ts_dyn_mode_assert(0, 0, dt.rsl_chan_nr.tn, SDCCH8_MODE);
7206 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(dt.rsl_chan_nr, 2342));
7207 rsl_msg := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
7208 f_ts_dyn_mode_assert(0, 0, dt.rsl_chan_nr.tn, SDCCH8_MODE);
7209
7210 f_ipa_tx(0, ts_RSL_EST_IND(dt.rsl_chan_nr, valueof(ts_RslLinkID_DCCH(0)), '1234'O));
7211 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3('1234'O))) -> value rx_c_ind;
7212 dt.sccp_conn_id := rx_c_ind.connectionId;
7213 BSSAP.send(ts_BSSAP_CONNECT_res(dt.sccp_conn_id));
7214
7215 /* Instruct BSC to clear channel */
7216 var BssmapCause cause := 0;
7217 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
7218 f_exp_chan_rel_and_clear(dt, 0);
7219
7220 /* The BSC will switch the TS back to PDCH once the only lchan using it is released: */
7221 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7222 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7223 f_sleep(1.0);
7224 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE);
7225
7226 /* clean up config */
7227 f_ts_set_chcomb(0, 0, 6, "PDCH");
7228
7229 f_shutdown_helper();
7230}
7231
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +02007232/* Test Osmocom dyn TS SDCCH8 activation / deactivation: If activating dyn TS as
7233 SDCCH8 would end up in having no free TCH, then BSC should decide to activate
7234 it as TCH directly instead. SYS#5309. */
7235testcase TC_dyn_ts_sdcch8_tch_call_act_deact() runs on test_CT {
7236 var RSL_Message rsl_unused, rsl_msg;
7237 var DchanTuple dt;
7238 var BSSAP_N_CONNECT_ind rx_c_ind;
7239 var integer i;
7240
7241 /* change Timeslot 6 before f_init() starts RSL */
7242 f_init_vty();
7243 for (i := 1; i < 8; i := i + 1) {
7244 if (i == 6) {
7245 f_ts_set_chcomb(0, 0, i, "TCH/F_TCH/H_SDCCH8_PDCH");
7246 } else {
7247 f_ts_set_chcomb(0, 0, i, "PDCH");
7248 }
7249 }
7250 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
7251
7252 f_init(1, false);
7253 f_sleep(1.0);
7254
7255 var RslChannelNr pdch_chan_nr := valueof(t_RslChanNr_PDCH(6));
7256
7257 log("TCH/F_TCH/H_SDCCH8_PDCH pchan starts out in disabled mode:");
7258 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, NONE_MODE);
7259 /* The BSC will activate the dynamic PDCH by default, so confirm that */
7260 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7261
7262 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7263 f_sleep(1.0);
7264 log("TCH/F_TCH/H_SDCCH8_PDC requested to PDCH ACT on startup, which was ACKed, so now in PDCH:");
7265 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE);
7266
7267 /* Fill TS0 SDCCH channels (NOTE: only 3 SDCCH/4 channels are available
7268 * on CCCH+SDCCH4+CBCH) */
Pau Espin Pedrol2ebbe7c2021-07-23 16:17:09 +02007269 var OCT1 ra := '43'O; /* RA containing reason=originating speech call*/
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +02007270 for (i := 0; i < 3; i := i + 1) {
Pau Espin Pedrol2ebbe7c2021-07-23 16:17:09 +02007271 dt := f_est_dchan(ra, i, '00010203040506'O);
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +02007272 }
7273
7274 /* Now the dyn ts is selected. First PDCH is released, then TCH chan is activated */
Pau Espin Pedrol2ebbe7c2021-07-23 16:17:09 +02007275 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(oct2int(ra) + i, 1), 2342));
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +02007276 rsl_unused := f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(pdch_chan_nr));
7277 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(pdch_chan_nr));
7278
7279 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
7280 dt.rsl_chan_nr := rsl_msg.ies[0].body.chan_nr;
7281
7282 f_ts_dyn_mode_assert(0, 0, dt.rsl_chan_nr.tn, TCHH_MODE);
7283 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(dt.rsl_chan_nr, 2342));
7284 rsl_msg := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
7285 f_ts_dyn_mode_assert(0, 0, dt.rsl_chan_nr.tn, TCHH_MODE);
7286
7287 f_ipa_tx(0, ts_RSL_EST_IND(dt.rsl_chan_nr, valueof(ts_RslLinkID_DCCH(0)), '1234'O));
7288 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3('1234'O))) -> value rx_c_ind;
7289 dt.sccp_conn_id := rx_c_ind.connectionId;
7290 BSSAP.send(ts_BSSAP_CONNECT_res(dt.sccp_conn_id));
7291
7292 /* Instruct BSC to clear channel */
7293 var BssmapCause cause := 0;
7294 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
7295 f_exp_chan_rel_and_clear(dt, 0);
7296
7297 /* The BSC will switch the TS back to PDCH once the only lchan using it is released: */
7298 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7299 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7300 f_sleep(1.0);
7301 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE);
7302
7303 /* clean up config */
7304 f_ts_reset_chcomb(0);
7305 /* TODO: clean up other channels? */
7306
7307 f_shutdown_helper();
7308}
7309
Pau Espin Pedrolcdf26142021-06-28 17:14:03 +02007310/* Test Osmocom dyn TS SDCCH8 activation / deactivation when SDCCH fails at BTS */
7311testcase TC_dyn_ts_sdcch8_act_nack() runs on test_CT {
7312 var RSL_Message rsl_unused, rsl_msg;
7313 var DchanTuple dt;
7314 var BSSAP_N_CONNECT_ind rx_c_ind;
7315 var GsmRrMessage rr;
7316
7317 /* change Timeslot 6 before f_init() starts RSL */
7318 f_init_vty();
7319 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_SDCCH8_PDCH");
7320 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
7321
7322 f_init(1, false);
7323 f_sleep(1.0);
7324
7325 var RslChannelNr pdch_chan_nr := valueof(t_RslChanNr_PDCH(6));
7326
7327 log("TCH/F_TCH/H_SDCCH8_PDCH pchan starts out in disabled mode:");
7328 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, NONE_MODE);
7329 /* The BSC will activate the dynamic PDCH by default, so confirm that */
7330 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7331
7332 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7333 f_sleep(1.0);
7334 log("TCH/F_TCH/H_SDCCH8_PDC requested to PDCH ACT on startup, which was ACKed, so now in PDCH:");
7335 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE);
7336
7337 /* Fill TS0 SDCCH channels (NOTE: only 3 SDCCH/4 channels are available
7338 * on CCCH+SDCCH4+CBCH) */
7339 var integer i;
7340 for (i := 0; i < 3; i := i + 1) {
7341 dt := f_est_dchan('23'O, i, '00010203040506'O);
7342 }
7343
7344 /* Now the dyn ts is selected. First PDCH is released, then sdcch chan is activated */
7345 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(oct2int('23'O) + i, 1), 2342));
7346 rsl_unused := f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(pdch_chan_nr));
7347 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(pdch_chan_nr));
7348
7349 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
7350 dt.rsl_chan_nr := rsl_msg.ies[0].body.chan_nr;
7351
7352 f_ts_dyn_mode_assert(0, 0, dt.rsl_chan_nr.tn, SDCCH8_MODE);
7353 f_ipa_tx(0, ts_RSL_CHAN_ACT_NACK(dt.rsl_chan_nr, RSL_ERR_EQUIPMENT_FAIL));
7354 rsl_msg := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
7355 rr := dec_GsmRrMessage(rsl_msg.ies[1].body.full_imm_ass_info.payload);
7356 if (rr.header.message_type != IMMEDIATE_ASSIGNMENT_REJECT) {
7357 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Expected reject");
7358 }
7359
7360 /* FIXME? Currently the TS stays in state BORKEN: */
7361
7362 /* The BSC will switch the TS back to PDCH once the only lchan using it is released: */
7363 /* rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7364 * f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7365 * f_sleep(1.0);
7366 * f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE)
7367 */
7368
7369 /* clean up config */
7370 f_ts_set_chcomb(0, 0, 6, "PDCH");
7371
7372 f_shutdown_helper();
7373}
7374
Stefan Sperling0796a822018-10-05 13:01:39 +02007375testcase TC_chopped_ipa_ping() runs on test_CT {
Stefan Sperling554123f2018-10-09 14:12:30 +02007376 const Integers bsc_ipa_ports := {mp_bsc_rsl_port, mp_bsc_oml_port, mp_bsc_ctrl_port};
Stefan Sperling0796a822018-10-05 13:01:39 +02007377 for (var integer i := 0; i < lengthof(bsc_ipa_ports); i := i + 1) {
7378 IPA_Testing.f_run_TC_chopped_ipa_ping(mp_bsc_ip, bsc_ipa_ports[i], CONNECT_TO_SERVER);
7379 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007380 f_shutdown_helper();
Stefan Sperling0796a822018-10-05 13:01:39 +02007381}
7382
Stefan Sperlingaa1e60f2018-10-15 16:34:07 +02007383testcase TC_chopped_ipa_payload() runs on test_CT {
7384 const Integers bsc_ipa_ports := {mp_bsc_rsl_port, mp_bsc_oml_port
7385 /* TODO: mp_bsc_ctrl_port does not work yet */};
7386 for (var integer i := 0; i < lengthof(bsc_ipa_ports); i := i + 1) {
7387 IPA_Testing.f_run_TC_chopped_ipa_payload(mp_bsc_ip, bsc_ipa_ports[i], CONNECT_TO_SERVER);
7388 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007389 f_shutdown_helper();
Stefan Sperlingaa1e60f2018-10-15 16:34:07 +02007390}
7391
Pau Espin Pedrol8f773632019-11-05 11:46:53 +01007392/* Verify the BSC sends the MS Power Parameters IE during CHAN ACT to make sure
7393 the BTS does autonomous MS power control loop */
7394testcase TC_assignment_verify_ms_power_params_ie() runs on test_CT {
7395 var MSC_ConnHdlr vc_conn;
7396 var TestHdlrParams pars := f_gen_test_hdlr_pars();
7397 //pars.encr := valueof(t_EncrParams('01'O, f_rnd_octstring(8)));
7398 pars.exp_ms_power_params := true;
7399
7400 f_init(1, true);
7401 f_sleep(1.0);
7402 vc_conn := f_start_handler(refers(f_tc_assignment_fr_a5), pars);
7403 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007404 f_shutdown_helper();
Pau Espin Pedrol8f773632019-11-05 11:46:53 +01007405}
Stefan Sperlingaa1e60f2018-10-15 16:34:07 +02007406
Vadim Yanitskiy4b233042021-06-30 00:58:43 +02007407/* Verify activation and deactivation of the BCCH carrier power reduction mode */
7408testcase TC_c0_power_red_mode() runs on test_CT {
7409 f_init(1);
7410
7411 for (var integer red := 6; red >= 0; red := red - 2) {
7412 /* Configure BCCH carrier power reduction mode via the VTY */
7413 f_vty_transceive(BSCVTY, "bts 0 c0-power-reduction " & int2str(red));
7414
7415 /* Expect Osmocom specific BS Power Control message on the RSL */
7416 var template RSL_Message tr_rsl_pdu := tr_RSL_BS_PWR_CTRL(
7417 chan_nr := t_RslChanNr_BCCH(0),
7418 bs_power := tr_RSL_IE_BS_Power(red / 2));
7419 tr_rsl_pdu.msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false);
7420 var RSL_Message unused := f_exp_ipa_rx(0, tr_rsl_pdu);
7421
7422 /* Additionally verify the applied value over the CTRL interface */
7423 var CtrlValue cred := f_ctrl_get_bts(IPA_CTRL, 0, "c0-power-reduction");
7424 if (cred != int2str(red)) {
7425 setverdict(fail, "Unexpected BCCH carrier power reduction value ",
7426 cred, " (expected ", red, ")");
7427 }
7428 }
7429
7430 f_shutdown_helper();
7431}
7432
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007433/***********************************************************************
7434 * MSC Pooling
7435 ***********************************************************************/
7436
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007437template MobileIdentityLV ts_MI_TMSI_NRI_LV(integer nri_v, integer nri_bitlen := 10) :=
Harald Weltebf397612021-01-14 20:39:46 +01007438 ts_MI_TMSI_LV(tmsi := f_gen_tmsi(suffix := 0, nri_v := nri_v, nri_bitlen := nri_bitlen));
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007439
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007440private function f_expect_lchan_rel(RSL_DCHAN_PT rsl_pt, RSLEM_PROC_PT rsl_proc_pt, template PDU_ML3_NW_MS exp_rr_rel_tmpl := tr_RRM_RR_RELEASE)
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02007441runs on MSC_ConnHdlr {
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02007442 interleave {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007443 [] rsl_pt.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch exp_rr_rel_tmpl)) {
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02007444 f_logp(BSCVTY, "Got RSL RR Release");
7445 }
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007446 [] rsl_pt.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02007447 f_logp(BSCVTY, "Got RSL Deact SACCH");
7448 }
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02007449 [] rsl_pt.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02007450 f_logp(BSCVTY, "Got RSL RF Chan Rel, sending Rel Ack");
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007451 rsl_pt.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
7452 f_rslem_unregister(0, g_chan_nr, PT := rsl_proc_pt);
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02007453 break;
7454 }
7455 }
7456}
7457
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007458friend function f_perform_clear(RSL_DCHAN_PT rsl_pt := RSL, RSLEM_PROC_PT rsl_proc_pt := RSL_PROC,
7459 template PDU_ML3_NW_MS exp_rr_rel_tmpl := tr_RRM_RR_RELEASE)
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02007460runs on MSC_ConnHdlr {
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007461 f_logp(BSCVTY, "MSC instructs BSC to clear channel");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007462 BSSAP.send(ts_BSSMAP_ClearCommand(0));
7463 interleave {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007464 [] rsl_pt.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch exp_rr_rel_tmpl)) {
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007465 f_logp(BSCVTY, "Got RSL RR Release");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007466 }
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007467 [] rsl_pt.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007468 f_logp(BSCVTY, "Got RSL Deact SACCH");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007469 }
7470 [] BSSAP.receive(tr_BSSMAP_ClearComplete) {
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007471 f_logp(BSCVTY, "Got BSSMAP Clear Complete");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007472 /* Also drop the SCCP connection */
7473 BSSAP.send(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_REQ);
7474 }
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02007475 [] rsl_pt.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007476 f_logp(BSCVTY, "Got RSL RF Chan Rel, sending Rel Ack");
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007477 rsl_pt.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
7478 f_rslem_unregister(0, g_chan_nr, PT := rsl_proc_pt);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007479 }
7480 }
7481}
7482
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007483private function f_perform_compl_l3(RSL_DCHAN_PT rsl_pt, RSLEM_PROC_PT rsl_proc_pt,
7484 template PDU_ML3_MS_NW l3_info, boolean do_clear := true, boolean expect_bssmap_l3 := true)
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007485runs on MSC_ConnHdlr {
7486 timer T := 10.0;
7487 var octetstring l3_enc := enc_PDU_ML3_MS_NW(valueof(l3_info));
7488
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007489 f_logp(BSCVTY, "establish channel, send Complete Layer 3 Info");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007490 f_create_bssmap_exp(l3_enc);
7491
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007492 /* RSL_Emulation.f_chan_est() on rsl_pt:
7493 * This is basically code dup with s/RSL/rsl_pt from:
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007494 * RSL_Emulation.f_chan_est(g_pars.ra, l3_enc, g_pars.link_id, g_pars.fn);
7495 */
7496 var RSL_Message rx_rsl;
7497 var GsmRrMessage rr;
7498
7499 /* request a channel to be established */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007500 rsl_pt.send(ts_RSLDC_ChanRqd(g_pars.ra, g_pars.fn));
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007501 /* expect immediate assignment.
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007502 * Code dup with s/RSL/rsl_pt from:
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007503 * rx_rsl := f_rx_or_fail(tr_RSL_IMM_ASSIGN);
7504 */
7505 timer Tt := 10.0;
7506
7507 /* request a channel to be established */
7508 Tt.start;
7509 alt {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007510 [] rsl_pt.receive(tr_RSL_IMM_ASSIGN) -> value rx_rsl {
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007511 Tt.stop;
7512 }
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007513 [] rsl_pt.receive {
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007514 setverdict(fail, "Unexpected RSL message on DCHAN");
7515 mtc.stop;
7516 }
7517 [] Tt.timeout {
7518 setverdict(fail, "Timeout waiting for RSL on DCHAN");
7519 mtc.stop;
7520 }
7521 }
7522 rr := dec_GsmRrMessage(rx_rsl.ies[1].body.full_imm_ass_info.payload);
7523 g_chan_nr := rr.payload.imm_ass.chan_desc.chan_nr;
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007524 rsl_pt.send(ts_RSL_EST_IND(g_chan_nr, valueof(g_pars.link_id), l3_enc));
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007525
7526
Neels Hofmeyr66e15092020-10-12 18:44:41 +00007527 if (expect_bssmap_l3) {
7528 f_logp(BSCVTY, "expect BSSAP Complete Layer 3 Info at MSC");
7529 var template PDU_BSSAP exp_l3_compl;
7530 exp_l3_compl := tr_BSSMAP_ComplL3()
7531 if (g_pars.aoip == false) {
7532 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := omit;
7533 } else {
7534 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := ?;
7535 }
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007536
Neels Hofmeyr66e15092020-10-12 18:44:41 +00007537 var PDU_BSSAP bssap;
7538 T.start;
7539 alt {
7540 [] BSSAP.receive(exp_l3_compl) -> value bssap {
7541 f_logp(BSCVTY, "received expected Complete Layer 3 Info at MSC");
7542 log("rx exp_l3_compl = ", bssap);
7543 }
7544 [] BSSAP.receive(tr_BSSMAP_ComplL3) {
7545 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Received non-matching COMPLETE LAYER 3 INFORMATION");
7546 }
7547 [] T.timeout {
7548 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for COMPLETE LAYER 3 INFORMATION");
7549 }
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007550 }
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007551
Neels Hofmeyr66e15092020-10-12 18:44:41 +00007552 /* start ciphering, if requested */
7553 if (ispresent(g_pars.encr)) {
7554 f_logp(BSCVTY, "start ciphering");
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007555 f_cipher_mode(g_pars.encr, rsl_pt := rsl_pt, rsl_proc_pt := rsl_proc_pt);
Neels Hofmeyr66e15092020-10-12 18:44:41 +00007556 }
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007557 }
7558
7559 if (do_clear) {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007560 f_perform_clear(rsl_pt, rsl_proc_pt);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007561 }
7562 setverdict(pass);
7563 f_sleep(1.0);
7564}
7565
7566private function f_tc_mscpool_compl_l3(charstring id) runs on MSC_ConnHdlr {
7567 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
7568 if (g_pars.mscpool.rsl_idx == 0) {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007569 f_perform_compl_l3(RSL, RSL_PROC, g_pars.mscpool.l3_info);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007570 } else if (g_pars.mscpool.rsl_idx == 1) {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007571 f_perform_compl_l3(RSL1, RSL1_PROC, g_pars.mscpool.l3_info);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007572 } else if (g_pars.mscpool.rsl_idx == 2) {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007573 f_perform_compl_l3(RSL2, RSL2_PROC, g_pars.mscpool.l3_info);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007574 }
7575}
7576
7577/* Various Complete Layer 3 by IMSI all end up with the first MSC, because the other MSCs are not connected. */
7578private function f_tc_mscpool_L3Compl_on_1_msc(charstring id) runs on MSC_ConnHdlr {
7579 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007580 f_perform_compl_l3(RSL, RSL_PROC, ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_IMSI_LV('001010000000001'H)), '00F110'O) );
7581 f_perform_compl_l3(RSL, RSL_PROC, ts_CM_SERV_REQ(CM_TYPE_MO_SMS, valueof(ts_MI_IMSI_LV('001010000000002'H))) );
7582 f_perform_compl_l3(RSL, RSL_PROC, ts_PAG_RESP(valueof(ts_MI_IMSI_LV('001010000000003'H))) );
7583 f_perform_compl_l3(RSL, RSL_PROC, ts_ML3_MO_MM_IMSI_DET_Ind(valueof(ts_MI_IMSI_LV('001010000000004'H))) );
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007584}
7585testcase TC_mscpool_L3Compl_on_1_msc() runs on test_CT {
7586
7587 f_init(1, true);
7588 f_sleep(1.0);
7589 var MSC_ConnHdlr vc_conn;
7590 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007591
7592 f_ctrs_msc_init();
7593
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007594 vc_conn := f_start_handler(refers(f_tc_mscpool_L3Compl_on_1_msc), pars);
7595 vc_conn.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007596
7597 f_ctrs_msc_expect(0, "mscpool:subscr:new", 4);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007598 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007599}
7600
7601/* Three Layer 3 Complete by IMSI are round-robin'ed across two connected MSCs */
7602/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7603 * just as well using only RSL. */
7604testcase TC_mscpool_L3Complete_by_imsi_round_robin() runs on test_CT {
7605
7606 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7607 f_sleep(1.0);
7608
7609 /* Control which MSC gets chosen next by the round-robin, otherwise
7610 * would be randomly affected by which other tests ran before this. */
7611 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7612
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007613 f_ctrs_msc_init();
7614
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007615 var MSC_ConnHdlr vc_conn1;
7616 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7617 pars1.mscpool.rsl_idx := 0;
7618 pars1.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_IMSI_LV('001010000000001'H)), '00F110'O));
7619 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7620 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007621 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007622
7623 var MSC_ConnHdlr vc_conn2;
7624 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7625 pars2.mscpool.rsl_idx := 1;
7626 pars2.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, valueof(ts_MI_IMSI_LV('001010000000002'H))));
7627 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7628 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007629 f_ctrs_msc_expect(1, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007630
7631 /* Test round-robin wrap to the first MSC */
7632 var MSC_ConnHdlr vc_conn3;
7633 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
7634 pars3.mscpool.rsl_idx := 2;
7635 pars3.mscpool.l3_info := valueof(ts_PAG_RESP(valueof(ts_MI_IMSI_LV('001010000000003'H))));
7636 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7637 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007638 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007639 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007640}
7641
7642/* Three LU by TMSI are round-robin'ed across two connected MSCs, because they contain the NULL-NRI 0
7643 * (configured in osmo-bsc.cfg). */
7644/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7645 * just as well using only RSL. */
7646testcase TC_mscpool_LU_by_tmsi_null_nri_0_round_robin() runs on test_CT {
7647
7648 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7649 f_sleep(1.0);
7650
7651 /* Control which MSC gets chosen next by the round-robin, otherwise
7652 * would be randomly affected by which other tests ran before this. */
7653 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7654
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007655 f_ctrs_msc_init();
7656
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007657 var MSC_ConnHdlr vc_conn1;
7658 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7659 pars1.mscpool.rsl_idx := 0;
7660 pars1.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(0)), '00F110'O));
7661 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7662 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007663 f_ctrs_msc_expect(0, "mscpool:subscr:reattach");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007664
7665 var MSC_ConnHdlr vc_conn2;
7666 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7667 pars2.mscpool.rsl_idx := 1;
7668 pars2.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(0)), '00F110'O));
7669 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7670 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007671 f_ctrs_msc_expect(1, "mscpool:subscr:reattach");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007672
7673 /* Test round-robin wrap to the first MSC */
7674 var MSC_ConnHdlr vc_conn3;
7675 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
7676 pars3.mscpool.rsl_idx := 2;
7677 pars3.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(0)), '00F110'O));
7678 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7679 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007680 f_ctrs_msc_expect(0, "mscpool:subscr:reattach");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007681 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007682}
7683
7684/* Three LU by TMSI are round-robin'ed across two connected MSCs, because they contain the NULL-NRI 1
7685 * (configured in osmo-bsc.cfg). In this case, one of the MSC also has the NULL-NRI as part of its owned NRIs, but the
7686 * NULL-NRI setting is stronger than that. */
7687/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7688 * just as well using only RSL. */
7689testcase TC_mscpool_LU_by_tmsi_null_nri_1_round_robin() runs on test_CT {
7690
7691 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7692 f_sleep(1.0);
7693
7694 /* Control which MSC gets chosen next by the round-robin, otherwise
7695 * would be randomly affected by which other tests ran before this. */
7696 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7697
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007698 f_ctrs_msc_init();
7699
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007700 var MSC_ConnHdlr vc_conn1;
7701 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7702 pars1.mscpool.rsl_idx := 0;
7703 pars1.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(1)), '00F110'O));
7704 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7705 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007706 f_ctrs_msc_expect(0, "mscpool:subscr:reattach");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007707
7708 var MSC_ConnHdlr vc_conn2;
7709 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7710 pars2.mscpool.rsl_idx := 1;
7711 pars2.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(1)), '00F110'O));
7712 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7713 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007714 f_ctrs_msc_expect(1, "mscpool:subscr:reattach");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007715
7716 /* Test round-robin wrap to the first MSC */
7717 var MSC_ConnHdlr vc_conn3;
7718 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
7719 pars3.mscpool.rsl_idx := 2;
7720 pars3.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(1)), '00F110'O));
7721 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7722 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007723 f_ctrs_msc_expect(0, "mscpool:subscr:reattach");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007724 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007725}
7726
7727/* Three Layer 3 Complete by TMSI are round-robin'ed across two connected MSCs, because they contain an NRI not
7728 * assigned to any MSC (configured in osmo-bsc.cfg). */
7729/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7730 * just as well using only RSL. */
7731testcase TC_mscpool_L3Complete_by_tmsi_unassigned_nri_round_robin() runs on test_CT {
7732
7733 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7734 f_sleep(1.0);
7735
7736 /* Control which MSC gets chosen next by the round-robin, otherwise
7737 * would be randomly affected by which other tests ran before this. */
7738 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7739
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007740 f_ctrs_msc_init();
7741
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007742 var MSC_ConnHdlr vc_conn1;
7743 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7744 pars1.mscpool.rsl_idx := 0;
7745 /* An NRI that is not assigned to any MSC */
7746 pars1.mscpool.l3_info := valueof(ts_ML3_MO_MM_IMSI_DET_Ind(valueof(ts_MI_TMSI_NRI_LV(1023))));
7747 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7748 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007749 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007750
7751 var MSC_ConnHdlr vc_conn2;
7752 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7753 pars2.mscpool.rsl_idx := 1;
7754 /* An NRI that is not assigned to any MSC */
7755 pars2.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(768)), '00F110'O));
7756 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7757 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007758 f_ctrs_msc_expect(1, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007759
7760 /* Test round-robin wrap to the first MSC */
7761 var MSC_ConnHdlr vc_conn3;
7762 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
7763 pars3.mscpool.rsl_idx := 2;
7764 /* An NRI that is not assigned to any MSC */
7765 pars3.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_SS_ACT, valueof(ts_MI_TMSI_NRI_LV(819))));
7766 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7767 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007768 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007769 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007770}
7771
7772/* Three Layer 3 Complete by TMSI are round-robin'ed across two connected MSCs, because they contain an NRI
7773 * assigned to an MSC that is currently not connected (configured in osmo-bsc.cfg). */
7774/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7775 * just as well using only RSL. */
7776testcase TC_mscpool_L3Complete_by_tmsi_valid_nri_msc_not_connected_round_robin() runs on test_CT {
7777
7778 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7779 f_sleep(1.0);
7780
7781 /* Control which MSC gets chosen next by the round-robin, otherwise
7782 * would be randomly affected by which other tests ran before this. */
7783 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7784
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007785 f_ctrs_msc_init();
7786
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007787 var MSC_ConnHdlr vc_conn1;
7788 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7789 pars1.mscpool.rsl_idx := 0;
7790 /* An NRI that is assigned to an unconnected MSC */
7791 pars1.mscpool.l3_info := valueof(ts_PAG_RESP(valueof(ts_MI_TMSI_NRI_LV(512))));
7792 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7793 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007794 f_ctrs_msc_add(2, "mscpool:subscr:attach_lost");
7795 f_ctrs_msc_add(0, "mscpool:subscr:new");
7796 f_ctrs_msc_verify();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007797
7798 var MSC_ConnHdlr vc_conn2;
7799 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7800 pars2.mscpool.rsl_idx := 1;
7801 /* An NRI that is assigned to an unconnected MSC */
7802 pars2.mscpool.l3_info := valueof(ts_ML3_MO_MM_IMSI_DET_Ind(valueof(ts_MI_TMSI_NRI_LV(767))));
7803 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7804 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007805 f_ctrs_msc_add(2, "mscpool:subscr:attach_lost");
7806 f_ctrs_msc_add(1, "mscpool:subscr:new");
7807 f_ctrs_msc_verify();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007808
7809 /* Test round-robin wrap to the first MSC */
7810 var MSC_ConnHdlr vc_conn3;
7811 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
7812 pars3.mscpool.rsl_idx := 2;
7813 /* An NRI that is assigned to an unconnected MSC */
7814 pars3.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(750)), '00F110'O));
7815 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7816 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007817 f_ctrs_msc_add(2, "mscpool:subscr:attach_lost");
7818 f_ctrs_msc_add(0, "mscpool:subscr:new");
7819 f_ctrs_msc_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007820 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007821}
7822
7823/* Three Layer 3 Complete by TMSI with valid NRI for the second MSC are all directed to the second MSC (configured in
7824 * osmo-bsc.cfg). */
7825/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7826 * just as well using only RSL. */
7827testcase TC_mscpool_L3Complete_by_tmsi_valid_nri_1() runs on test_CT {
7828
7829 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7830 f_sleep(1.0);
7831
7832 /* All TMSIs in this test point at the second MSC, set the round robin to point at the first MSC to make sure
7833 * this is not using round-robin. */
7834 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7835
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007836 f_ctrs_msc_init();
7837
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007838 var MSC_ConnHdlr vc_conn1;
7839 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 1);
7840 pars1.mscpool.rsl_idx := 0;
7841 /* An NRI of the second MSC's range (256-511) */
7842 pars1.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_SMS, valueof(ts_MI_TMSI_NRI_LV(256))));
7843 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7844 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007845 f_ctrs_msc_expect(1, "mscpool:subscr:known");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007846
7847 var MSC_ConnHdlr vc_conn2;
7848 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7849 pars2.mscpool.rsl_idx := 1;
7850 /* An NRI of the second MSC's range (256-511) */
7851 pars2.mscpool.l3_info := valueof(ts_PAG_RESP(valueof(ts_MI_TMSI_NRI_LV(260))));
7852 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7853 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007854 f_ctrs_msc_expect(1, "mscpool:subscr:known");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007855
7856 var MSC_ConnHdlr vc_conn3;
7857 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 1);
7858 pars3.mscpool.rsl_idx := 2;
7859 /* An NRI of the second MSC's range (256-511) */
7860 pars3.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(511)), '00F110'O));
7861 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7862 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007863 f_ctrs_msc_expect(1, "mscpool:subscr:known");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007864 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007865}
7866
7867/* Layer 3 Complete by TMSI with valid NRI for the third MSC are directed to the third MSC (configured in osmo-bsc.cfg),
7868 * while a round-robin remains unaffected by that. */
7869/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7870 * just as well using only RSL. */
7871testcase TC_mscpool_L3Complete_by_tmsi_valid_nri_2() runs on test_CT {
7872
7873 f_init(nr_bts := 3, handler_mode := true, nr_msc := 3);
7874 f_sleep(1.0);
7875
7876 /* All TMSIs in this test point at the third MSC, set the round robin to point at the second MSC to make sure
7877 * this is not using round-robin. */
7878 f_vty_transceive(BSCVTY, "mscpool roundrobin next 1");
7879
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007880 f_ctrs_msc_init();
7881
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007882 var MSC_ConnHdlr vc_conn1;
7883 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 2);
7884 pars1.mscpool.rsl_idx := 0;
7885 /* An NRI of the third MSC's range (512-767) */
7886 pars1.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_SMS, valueof(ts_MI_TMSI_NRI_LV(512))));
7887 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7888 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007889 f_ctrs_msc_expect(2, "mscpool:subscr:known");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007890
7891 var MSC_ConnHdlr vc_conn2;
7892 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 2);
7893 pars2.mscpool.rsl_idx := 1;
7894 /* An NRI of the third MSC's range (512-767) */
7895 pars2.mscpool.l3_info := valueof(ts_PAG_RESP(valueof(ts_MI_TMSI_NRI_LV(678))));
7896 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7897 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007898 f_ctrs_msc_expect(2, "mscpool:subscr:known");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007899
7900 /* The above forwardings to third MSC have not affected the round robin, which still points at the second MSC */
7901 var MSC_ConnHdlr vc_conn3;
7902 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 1);
7903 pars3.mscpool.rsl_idx := 2;
7904 pars3.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_IMSI_LV('001010000000013'H)), '00F110'O));
7905 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7906 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007907 f_ctrs_msc_expect(1, "mscpool:subscr:new");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007908 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007909}
7910
7911/* LU with a TMSI but indicating a different PLMN in its previous LAI: ignore the NRI. */
7912/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7913 * just as well using only RSL. */
7914testcase TC_mscpool_LU_by_tmsi_from_other_PLMN() runs on test_CT {
7915
7916 f_init(nr_bts := 3, handler_mode := true, nr_msc := 3);
7917 f_sleep(1.0);
7918
7919 /* The TMSIs in this test points at the second MSC, but since it is from a different PLMN, round-robin is used
7920 * instead, and hits msc 0. */
7921 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7922
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007923 f_ctrs_msc_init();
7924
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007925 /* An NRI of the second MSC's range (256-511), but a PLMN that doesn't match with osmo-bsc.cfg */
7926 var MSC_ConnHdlr vc_conn1;
7927 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7928 pars1.mscpool.rsl_idx := 0;
7929 pars1.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(260)), '99F999'O));
7930 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7931 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007932 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007933
7934 /* An NRI of the third MSC's range (512-767) and a matching PLMN gets directed by NRI. */
7935 var MSC_ConnHdlr vc_conn2;
7936 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 2);
7937 pars2.mscpool.rsl_idx := 1;
7938 pars2.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(555)), '00F110'O));
7939 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7940 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007941 f_ctrs_msc_expect(2, "mscpool:subscr:known");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007942 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007943}
7944
7945/* Make sure that whichever MSC paged a subscriber will also get the Paging Response. Page by IMSI, which would be
7946 * round-robined to another MSC, to make sure the Paging->Response relation is stronger than the NRI->MSC mapping. */
7947private function f_tc_mscpool_paging_imsi(charstring id) runs on MSC_ConnHdlr {
7948 var template BSSMAP_FIELD_CellIdentificationList cid_list := { cIl_CI := { ts_BSSMAP_CI_CI(0) } };
7949 //cid_list := { cIl_allInBSS := ''O };
7950 var RSL_ChanNeeded rsl_chneed := RSL_CHANNEED_SDCCH;
7951 var template BSSMAP_IE_ChannelNeeded bssmap_chneed := ts_BSSMAP_IE_ChanNeeded(int2bit(enum2int(valueof(rsl_chneed)),2));
7952 var BSSAP_N_UNITDATA_req paging;
7953 var hexstring imsi := '001010000000123'H;
7954
7955 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
7956
Neels Hofmeyr90f80962020-06-12 16:16:55 +02007957 paging := valueof(ts_BSSAP_UNITDATA_req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007958 valueof(ts_BSSMAP_Paging(imsi, cid_list, omit, bssmap_chneed))));
7959 BSSAP.send(paging);
7960
7961 /* Register any RSL conn so that the Paging Command gets received here. With the current RSL_Emulation's main()
7962 * handling of '[bts_role] IPA_PT.receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD()))' it doesn't matter at all which
7963 * channel number is picked here. */
7964 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(0, RSL_CHAN_NR_INVALID));
7965 f_rslem_register(0, new_chan_nr);
7966 RSL.receive(tr_RSL_PAGING_CMD(tr_MI_IMSI(imsi)));
7967 f_rslem_unregister(0, new_chan_nr);
7968
7969 /* Despite the round robin pointing at the second MSC ('roundrobin next 1'), the earlier Paging for the same IMSI
7970 * causes this Paging Response to go to the first MSC (bssap_idx := 0). */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007971 f_perform_compl_l3(RSL, RSL_PROC, ts_PAG_RESP(valueof(ts_MI_IMSI_LV(imsi))) );
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007972 f_sleep(1.0);
7973}
7974testcase TC_mscpool_paging_and_response_imsi() runs on test_CT {
7975 f_init(nr_bts := 1, handler_mode := true, nr_msc := 3);
7976 f_sleep(1.0);
7977
7978 /* Testing a Paging on the first MSC to get a Paging Response back to the first MSC. Set round robin to the
7979 * second MSC to make sure we're getting the Paging logic, not a coincidental round robin match. */
7980 f_vty_transceive(BSCVTY, "mscpool roundrobin next 1");
7981
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007982 f_ctrs_msc_init();
7983
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007984 var MSC_ConnHdlr vc_conn1;
7985 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7986 pars1.mscpool.rsl_idx := 0;
Neels Hofmeyr90f80962020-06-12 16:16:55 +02007987 pars1.sccp_addr_bsc := g_bssap[pars1.mscpool.bssap_idx].sccp_addr_peer;
7988 pars1.sccp_addr_msc := g_bssap[pars1.mscpool.bssap_idx].sccp_addr_own;
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007989 vc_conn1 := f_start_handler(refers(f_tc_mscpool_paging_imsi), pars1);
7990 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007991 f_ctrs_msc_expect(0, "mscpool:subscr:paged");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007992 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007993}
7994
7995/* Make sure that whichever MSC paged a subscriber will also get the Paging Response. Page by TMSI with an NRI value
7996 * that matches a different MSC, to make sure the Paging->Response relation is stronger than the NRI->MSC mapping. */
7997private function f_tc_mscpool_paging_tmsi(charstring id) runs on MSC_ConnHdlr {
7998 var template BSSMAP_FIELD_CellIdentificationList cid_list := { cIl_CI := { ts_BSSMAP_CI_CI(0) } };
7999 //cid_list := { cIl_allInBSS := ''O };
8000 var RSL_ChanNeeded rsl_chneed := RSL_CHANNEED_SDCCH;
8001 var template BSSMAP_IE_ChannelNeeded bssmap_chneed := ts_BSSMAP_IE_ChanNeeded(int2bit(enum2int(valueof(rsl_chneed)),2));
8002 var integer nri_v := 300; /* <-- second MSC's NRI */
Harald Weltebf397612021-01-14 20:39:46 +01008003 var octetstring tmsi := f_gen_tmsi(suffix := 0, nri_v := nri_v);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008004 var BSSAP_N_UNITDATA_req paging;
8005
8006 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
8007
Neels Hofmeyr90f80962020-06-12 16:16:55 +02008008 paging := valueof(ts_BSSAP_UNITDATA_req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008009 valueof(ts_BSSMAP_Paging('001010000000011'H, cid_list, tmsi, bssmap_chneed))));
8010 BSSAP.send(paging);
8011
8012 /* Register any RSL conn so that the Paging Command gets received here. With the current RSL_Emulation's main()
8013 * handling of '[bts_role] IPA_PT.receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD()))' it doesn't matter at all which
8014 * channel number is picked here. */
8015 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(0, RSL_CHAN_NR_INVALID));
8016 f_rslem_register(0, new_chan_nr);
8017 RSL.receive(tr_RSL_PAGING_CMD(t_MI_TMSI(tmsi)));
8018 f_rslem_unregister(0, new_chan_nr);
8019
8020 /* Despite the NRI matching the second MSC (NRI from 'msc 1' in osmo-bsc.cfg) and round robin pointing at the
8021 * third MSC ('roundrobin next 2'), the earlier Paging for the same TMSI causes this Paging Response to go to
8022 * the first MSC (bssap_idx := 0). */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02008023 f_perform_compl_l3(RSL, RSL_PROC, ts_PAG_RESP(valueof(ts_MI_TMSI_NRI_LV(nri_v))) );
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008024 f_sleep(1.0);
8025}
8026testcase TC_mscpool_paging_and_response_tmsi() runs on test_CT {
8027 f_init(nr_bts := 1, handler_mode := true, nr_msc := 3);
8028 f_sleep(1.0);
8029
8030 /* Testing a Paging on the first MSC to get a Paging Response back to the first MSC. Set round robin to the
8031 * third MSC to make sure we're getting the Paging logic, not a coincidental round robin match. */
8032 f_vty_transceive(BSCVTY, "mscpool roundrobin next 2");
8033
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008034 f_ctrs_msc_init();
8035
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008036 var MSC_ConnHdlr vc_conn1;
8037 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
8038 pars1.mscpool.rsl_idx := 0;
Neels Hofmeyr90f80962020-06-12 16:16:55 +02008039 pars1.sccp_addr_bsc := g_bssap[pars1.mscpool.bssap_idx].sccp_addr_peer;
8040 pars1.sccp_addr_msc := g_bssap[pars1.mscpool.bssap_idx].sccp_addr_own;
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008041 vc_conn1 := f_start_handler(refers(f_tc_mscpool_paging_tmsi), pars1);
8042 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008043 f_ctrs_msc_expect(0, "mscpool:subscr:paged");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008044 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008045}
8046
8047/* For round-robin, skip an MSC that has 'no allow-attach' set. */
8048/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
8049 * just as well using only RSL. */
8050testcase TC_mscpool_no_allow_attach_round_robin() runs on test_CT {
8051
8052 f_init(nr_bts := 3, handler_mode := true, nr_msc := 3);
8053 f_sleep(1.0);
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00008054 /* Mark the second MSC as offloading, round-robin should skip this MSC now. */
8055 f_vty_msc_allow_attach(BSCVTY, {true, false, true});
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008056
8057 /* Control which MSC gets chosen next by the round-robin, otherwise
8058 * would be randomly affected by which other tests ran before this. */
8059 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
8060
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008061 f_ctrs_msc_init();
8062
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008063 var MSC_ConnHdlr vc_conn1;
8064 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
8065 pars1.mscpool.rsl_idx := 0;
8066 pars1.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_IMSI_LV('001010000000001'H)), '00F110'O));
8067 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
8068 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008069 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008070
8071 var MSC_ConnHdlr vc_conn2;
8072 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 2);
8073 pars2.mscpool.rsl_idx := 1;
8074 pars2.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, valueof(ts_MI_IMSI_LV('001010000000002'H))));
8075 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
8076 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008077 f_ctrs_msc_expect(2, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008078
8079 var MSC_ConnHdlr vc_conn3;
8080 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
8081 pars3.mscpool.rsl_idx := 2;
8082 pars3.mscpool.l3_info := valueof(ts_PAG_RESP(valueof(ts_MI_IMSI_LV('001010000000003'H))));
8083 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
8084 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008085 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008086 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008087}
8088
8089/* An MSC that has 'no allow-attach' set should still serve subscribers that are already attached according to their
8090 * TMSI NRI. */
8091testcase TC_mscpool_no_allow_attach_valid_nri() runs on test_CT {
8092
8093 f_init(nr_bts := 3, handler_mode := true, nr_msc := 3);
8094 f_sleep(1.0);
8095
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00008096 /* Mark the second MSC as offloading, round-robin should skip this MSC now. */
8097 f_vty_msc_allow_attach(BSCVTY, {true, false, true});
8098
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008099 /* Control which MSC gets chosen next by the round-robin, otherwise
8100 * would be randomly affected by which other tests ran before this. */
8101 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
8102
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008103 f_ctrs_msc_init();
8104
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008105 /* Round robin points at msc 0, but the valid NRI directs to msc 1, even though msc 1 has 'no allow-attach'. */
8106 var MSC_ConnHdlr vc_conn1;
8107 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 1);
8108 pars1.mscpool.rsl_idx := 0;
8109 /* An NRI of the second MSC's range (256-511) */
8110 pars1.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, valueof(ts_MI_TMSI_NRI_LV(260))));
8111 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
8112 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008113 f_ctrs_msc_expect(1, "mscpool:subscr:known");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008114
8115 var MSC_ConnHdlr vc_conn2;
8116 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 0);
8117 pars2.mscpool.rsl_idx := 1;
8118 pars2.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, valueof(ts_MI_IMSI_LV('001010000000002'H))));
8119 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
8120 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008121 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008122
8123 var MSC_ConnHdlr vc_conn3;
8124 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 2);
8125 pars3.mscpool.rsl_idx := 2;
8126 pars3.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, valueof(ts_MI_IMSI_LV('001010000000003'H))));
8127 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
8128 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008129 f_ctrs_msc_expect(2, "mscpool:subscr:new");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008130 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008131}
8132
Philipp Maier783681c2020-07-16 16:47:06 +02008133/* Allow/Deny emergency calls globally via VTY */
8134private function f_vty_allow_emerg_msc(boolean allow) runs on test_CT {
8135 f_vty_enter_cfg_msc(BSCVTY, 0);
8136 if (allow) {
8137 f_vty_transceive(BSCVTY, "allow-emergency allow");
8138 } else {
8139 f_vty_transceive(BSCVTY, "allow-emergency deny");
8140 }
8141 f_vty_transceive(BSCVTY, "exit");
8142 f_vty_transceive(BSCVTY, "exit");
8143}
8144
8145/* Allow/Deny emergency calls per BTS via VTY */
8146private function f_vty_allow_emerg_bts(boolean allow, integer bts_nr) runs on test_CT {
8147 f_vty_enter_cfg_bts(BSCVTY, bts_nr);
8148 if (allow) {
8149 f_vty_transceive(BSCVTY, "rach emergency call allowed 1");
8150 } else {
8151 f_vty_transceive(BSCVTY, "rach emergency call allowed 0");
8152 }
8153 f_vty_transceive(BSCVTY, "exit");
8154 f_vty_transceive(BSCVTY, "exit");
Neels Hofmeyrb6ed80c2020-10-12 22:52:39 +00008155 f_vty_transceive(BSCVTY, "exit");
Philipp Maier783681c2020-07-16 16:47:06 +02008156}
8157
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02008158/* Allow/Forbid Fast Return after SRVCC on a given BTS via VTY */
8159private function f_vty_allow_srvcc_fast_return(boolean allow, integer bts_nr) runs on test_CT {
8160 f_vty_enter_cfg_bts(BSCVTY, bts_nr);
8161 if (allow) {
8162 f_vty_transceive(BSCVTY, "srvcc fast-return allow");
8163 } else {
8164 f_vty_transceive(BSCVTY, "srvcc fast-return forbid");
8165 }
8166 f_vty_transceive(BSCVTY, "exit");
8167 f_vty_transceive(BSCVTY, "exit");
8168 f_vty_transceive(BSCVTY, "exit");
8169}
8170
Pau Espin Pedrol14475352021-07-22 15:48:16 +02008171/* Allow/Forbid TCH for signalling if SDCCH exhausted on a given BTS via VTY */
8172private function f_vty_allow_tch_for_signalling(boolean allow, integer bts_nr) runs on test_CT {
8173 f_vty_enter_cfg_bts(BSCVTY, bts_nr);
8174 if (allow) {
8175 f_vty_transceive(BSCVTY, "channel allocator allow-tch-for-signalling 1");
8176 } else {
8177 f_vty_transceive(BSCVTY, "channel allocator allow-tch-for-signalling 0");
8178 }
8179 f_vty_transceive(BSCVTY, "exit");
8180 f_vty_transceive(BSCVTY, "exit");
8181 f_vty_transceive(BSCVTY, "exit");
8182}
8183
Philipp Maier783681c2020-07-16 16:47:06 +02008184/* Begin assignmet procedure and send an EMERGENCY SETUP (RR) */
8185private function f_assignment_emerg_setup() runs on MSC_ConnHdlr {
8186 var PDU_ML3_MS_NW emerg_setup;
8187 var octetstring emerg_setup_enc;
8188 var RSL_Message emerg_setup_data_ind;
8189
8190 f_establish_fully(omit, omit);
8191
8192 emerg_setup := valueof(ts_ML3_MO_CC_EMERG_SETUP(1, valueof(ts_Bcap_voice)));
8193 emerg_setup_enc := enc_PDU_ML3_MS_NW(emerg_setup);
8194 emerg_setup_data_ind := valueof(ts_RSL_DATA_IND(g_chan_nr, valueof(ts_RslLinkID_DCCH(0)), emerg_setup_enc));
8195
8196 RSL.send(emerg_setup_data_ind);
8197}
8198
8199/* Test if the EMERGENCY SETUP gets passed on to the MSC via A when EMERGENCY
8200 * CALLS are permitted by the BSC config. */
8201private function f_TC_assignment_emerg_setup_allow(charstring id) runs on MSC_ConnHdlr {
8202 var PDU_BSSAP emerg_setup_data_ind_bssap;
8203 var PDU_ML3_MS_NW emerg_setup;
8204 timer T := 3.0;
8205
8206 f_assignment_emerg_setup()
8207
8208 T.start;
8209 alt {
8210 [] BSSAP.receive(tr_BSSAP_DTAP) -> value emerg_setup_data_ind_bssap {
8211 emerg_setup := dec_PDU_ML3_MS_NW(emerg_setup_data_ind_bssap.pdu.dtap);
8212 if (not isbound(emerg_setup.msgs.cc.emergencySetup)) {
8213 setverdict(fail, "no emergency setup");
8214 }
8215 }
8216 [] BSSAP.receive {
8217 setverdict(fail, "unexpected BSSAP message!");
8218 }
8219 [] T.timeout {
8220 setverdict(fail, "timout waiting for EMERGENCY SETUP!");
8221 }
8222 }
8223
8224 setverdict(pass);
8225}
8226
8227/* Test if the EMERGENCY SETUP gets blocked by the BSC if EMERGENCY CALLS are
8228 * forbidden by the BSC config. */
8229private function f_TC_assignment_emerg_setup_deny(charstring id) runs on MSC_ConnHdlr {
8230 var PDU_BSSAP emerg_setup_data_ind_bssap;
8231 timer T := 3.0;
8232
8233 f_assignment_emerg_setup()
8234
8235 T.start;
8236 alt {
8237 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE)) {
8238 setverdict(pass);
8239 }
8240 [] RSL.receive {
8241 setverdict(fail, "unexpected RSL message!");
8242 }
8243 [] T.timeout {
8244 setverdict(fail, "timout waiting for RR CHANNEL RELEASE!");
8245 }
8246 }
8247}
8248
8249/* EMERGENCY CALL situation #1, allowed globally and by BTS */
8250testcase TC_assignment_emerg_setup_allow() runs on test_CT {
8251 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8252 var MSC_ConnHdlr vc_conn;
8253
8254 f_init(1, true);
8255 f_sleep(1.0);
8256
8257 f_vty_allow_emerg_msc(true);
8258 f_vty_allow_emerg_bts(true, 0);
8259 vc_conn := f_start_handler(refers(f_TC_assignment_emerg_setup_allow), pars);
8260 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008261 f_shutdown_helper();
Philipp Maier783681c2020-07-16 16:47:06 +02008262}
8263
8264/* EMERGENCY CALL situation #2, forbidden globally but allowed by BTS */
8265testcase TC_assignment_emerg_setup_deny_msc() runs on test_CT {
8266 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8267 var MSC_ConnHdlr vc_conn;
8268
8269 f_init(1, true);
8270 f_sleep(1.0);
8271
8272 f_vty_allow_emerg_msc(false);
8273 f_vty_allow_emerg_bts(true, 0);
8274 vc_conn := f_start_handler(refers(f_TC_assignment_emerg_setup_deny), pars);
8275 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008276 f_shutdown_helper();
Philipp Maier783681c2020-07-16 16:47:06 +02008277}
8278
8279/* EMERGENCY CALL situation #3, allowed globally but forbidden by BTS */
8280testcase TC_assignment_emerg_setup_deny_bts() runs on test_CT {
8281 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8282 var MSC_ConnHdlr vc_conn;
8283
8284 /* Note: This simulates a spec violation by the MS, correct MS
8285 * implementations would not try to establish an emergency call because
8286 * the system information tells in advance that emergency calls are
8287 * not forbidden */
8288
8289 f_init(1, true);
8290 f_sleep(1.0);
8291
8292 f_vty_allow_emerg_msc(true);
8293 f_vty_allow_emerg_bts(false, 0);
8294 vc_conn := f_start_handler(refers(f_TC_assignment_emerg_setup_deny), pars);
8295 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008296 f_shutdown_helper();
Philipp Maier783681c2020-07-16 16:47:06 +02008297}
8298
Philipp Maier82812002020-08-13 18:48:27 +02008299/* Test what happens when an emergency call arrives while all TCH channels are
8300 * busy, the BSC is expected to terminate one call in favor of the incoming
8301 * emergency call */
8302testcase TC_emerg_premption() runs on test_CT {
8303 var ASP_RSL_Unitdata rsl_ud;
8304 var integer i;
8305 var integer chreq_total, chreq_nochan;
8306 var RSL_Message rx_rsl;
8307 var RslChannelNr chan_nr;
8308
8309 f_init(1);
8310 f_sleep(1.0);
8311
8312 f_vty_allow_emerg_msc(true);
8313 f_vty_allow_emerg_bts(true, 0);
8314
8315 /* Fill up all channels on the BTS */
8316 chreq_total := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total");
8317 chreq_nochan := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:no_channel");
8318 for (i := 0; i < NUM_TCHF_PER_BTS + NUM_TCHH_PER_BTS + NUM_SDCCH_PER_BTS; i := i+1) {
8319 chan_nr := f_chreq_act_ack('33'O, i);
8320 }
8321 IPA_RSL[0].clear;
8322 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total",
8323 chreq_total + NUM_TCHF_PER_BTS + NUM_TCHH_PER_BTS + NUM_SDCCH_PER_BTS);
8324
8325 /* Send Channel request for emegergency call */
8326 f_ipa_tx(0, ts_RSL_CHAN_RQD('A5'O, 23));
8327
8328 /* Expect the BSC to release one (the first) TCH/F on the BTS */
8329 chan_nr := valueof(t_RslChanNr_Bm(1));
8330 f_expect_chan_rel(0, chan_nr, expect_rr_chan_rel := false, expect_rll_rel_req := false);
8331
8332 /* Expect the BSC to send activate/assign the a channel for the emergency call */
8333 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
8334 chan_nr := rx_rsl.ies[0].body.chan_nr;
8335 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, 33));
8336 rx_rsl := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
Philipp Maier104f4c02020-09-11 18:12:18 +02008337
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008338 f_shutdown_helper();
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008339}
8340
8341/* Hopping parameters per a timeslot */
Vadim Yanitskiybc6654a2020-09-13 01:27:40 +07008342private type record length(0..64) of GsmArfcn ArfcnList;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008343private type record FHParamsTs {
8344 boolean enabled,
8345 uint6_t hsn,
8346 uint6_t maio,
8347 ArfcnList ma
8348};
8349
8350/* Hopping parameters per a transceiver */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008351private type record FHParamsTrx {
8352 GsmArfcn arfcn,
8353 FHParamsTs ts[8]
8354};
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008355
8356/* Randomly generate the hopping parameters for the given timeslot numbers */
8357private function f_TC_fh_params_gen(template integer tr_tn := (1, 3, 5))
8358runs on test_CT return FHParamsTrx {
8359 var FHParamsTrx fhp;
8360
Vadim Yanitskiy3e997362020-09-05 21:08:34 +07008361 /* Generate a random ARFCN, including ARFCN 0 */
8362 fhp.arfcn := f_rnd_int(3);
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008363
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008364 for (var integer tn := 0; tn < 8; tn := tn + 1) {
8365 if (not match(tn, tr_tn)) {
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008366 fhp.ts[tn].enabled := false;
8367 fhp.ts[tn].ma := { };
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008368 continue;
8369 }
8370
8371 /* Random HSN / MAIO values: 0..63 */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008372 fhp.ts[tn].hsn := f_rnd_int(64);
8373 fhp.ts[tn].maio := f_rnd_int(64);
8374 fhp.ts[tn].ma := { };
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008375
8376 /* Random Mobile Allocation (hopping channels) */
8377 var integer ma_len := 2 + f_rnd_int(9); /* 2..10 channels */
8378 var integer step := 3 + f_rnd_int(4); /* 3..6 stepping */
8379 for (var integer i := 1; i <= ma_len; i := i + 1) {
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008380 fhp.ts[tn].ma := fhp.ts[tn].ma & { i * step };
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008381 }
8382
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008383 fhp.ts[tn].enabled := true;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008384 }
8385
8386 log("f_TC_fh_params_gen(): ", fhp);
8387 return fhp;
8388}
8389
8390/* Make sure that the given Channel Description IE matches the hopping configuration */
8391private function f_TC_fh_params_match_chan_desc(in FHParamsTrx fhp, in ChannelDescription cd)
8392{
8393 var template (present) ChannelDescription tr_cd;
8394 var template (present) MaioHsn tr_maio_hsn;
8395 var uint3_t tn := cd.chan_nr.tn;
8396
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008397 if (fhp.ts[tn].enabled) {
8398 tr_maio_hsn := tr_HsnMaio(fhp.ts[tn].hsn, fhp.ts[tn].maio);
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008399 tr_cd := tr_ChanDescH1(cd.chan_nr, tr_maio_hsn);
8400 } else {
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008401 tr_cd := tr_ChanDescH0(cd.chan_nr, fhp.arfcn);
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008402 }
8403
8404 if (not match(cd, tr_cd)) {
8405 setverdict(fail, "Channel Description IE does not match: ",
8406 cd, " vs expected ", tr_cd);
8407 }
8408}
8409
8410/* Make sure that the given Mobile Allocation IE matches the hopping configuration */
8411private function f_TC_fh_params_match_ma(in FHParamsTrx fhp, uint3_t tn,
8412 in MobileAllocationLV ma)
8413{
8414 var template MobileAllocationLV tr_ma := f_TC_fh_params_gen_tr_ma(fhp, tn, ma);
8415
8416 if (not match(ma, tr_ma)) {
8417 setverdict(fail, "Mobile Allocation IE does not match (tn := ",
8418 tn, "): ", ma, " vs expected: ", tr_ma);
8419 } else {
8420 setverdict(pass);
8421 }
8422}
8423
8424private function f_TC_fh_params_gen_tr_ma(in FHParamsTrx fhp, uint3_t tn,
8425 in MobileAllocationLV ma)
8426return template MobileAllocationLV {
8427 /* Mobile Allocation IE is expected to be empty if hopping is not enabled */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008428 if (not fhp.ts[tn].enabled) {
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008429 return { len := 0, ma := ''B };
8430 }
8431
8432 var bitstring full_mask := f_pad_bit(''B, 1024, '0'B);
8433 var bitstring slot_mask := f_pad_bit(''B, 1024, '0'B);
8434 var bitstring ma_mask := ''B;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008435
8436 /* Compose the full bit-mask (all channels, up to 1024 entries) */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008437 for (var integer i := 0; i < lengthof(fhp.ts); i := i + 1) {
8438 for (var integer j := 0; j < lengthof(fhp.ts[i].ma); j := j + 1) {
8439 if (full_mask[fhp.ts[i].ma[j]] == '1'B)
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008440 { continue; }
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008441 full_mask[fhp.ts[i].ma[j]] := '1'B;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008442 }
8443 }
8444
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008445 /* Take ARFCN of the TRX itself into account */
8446 full_mask[fhp.arfcn] := '1'B;
8447
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008448 /* Compose a bit-mask for the given timeslot number */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008449 for (var integer i := 0; i < lengthof(fhp.ts[tn].ma); i := i + 1) {
8450 slot_mask[fhp.ts[tn].ma[i]] := '1'B;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008451 }
8452
8453 /* Finally, compose the Mobile Allocation bit-mask */
Vadim Yanitskiy3e997362020-09-05 21:08:34 +07008454 for (var integer i := 1; i < lengthof(full_mask); i := i + 1) {
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008455 if (full_mask[i] != '1'B)
8456 { continue; }
8457
8458 /* FIXME: ma_mask := ma_mask & slot_mask[i]; // triggers a bug in TITAN */
8459 if (slot_mask[i] == '1'B) {
8460 ma_mask := ma_mask & '1'B;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008461 } else {
8462 ma_mask := ma_mask & '0'B;
8463 }
8464 }
8465
Vadim Yanitskiy3e997362020-09-05 21:08:34 +07008466 /* ARFCN 0 (if present) goes to the last position of the bit-mask */
8467 if (full_mask[0] == '1'B) {
8468 /* FIXME: ma_mask := ma_mask & slot_mask[0]; // triggers a bug in TITAN */
8469 if (slot_mask[0] == '1'B) {
8470 ma_mask := ma_mask & '1'B;
8471 } else {
8472 ma_mask := ma_mask & '0'B;
8473 }
8474 }
8475
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008476 /* Ensure that ma_mask is octet-aligned */
Vadim Yanitskiy2aa02522020-09-06 14:05:23 +07008477 var integer ma_mask_len := (lengthof(ma_mask) + 8 - 1) / 8;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008478 ma_mask := f_pad_bit(ma_mask, ma_mask_len * 8, '0'B);
8479
8480 return { len := ma_mask_len, ma := ma_mask };
8481}
8482
8483/* Configure the hopping parameters in accordance with the given record */
8484private function f_TC_fh_params_set(in FHParamsTrx fhp,
8485 uint8_t bts_nr := 0,
8486 uint8_t trx_nr := 0)
8487runs on test_CT {
8488 /* Enter the configuration node for the given BTS/TRX numbers */
8489 f_vty_enter_cfg_trx(BSCVTY, bts_nr, trx_nr);
8490
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008491 f_vty_transceive(BSCVTY, "arfcn " & int2str(fhp.arfcn));
8492
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008493 for (var integer tn := 0; tn < lengthof(fhp.ts); tn := tn + 1) {
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008494 f_vty_transceive(BSCVTY, "timeslot " & int2str(tn));
8495
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008496 if (not fhp.ts[tn].enabled) {
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008497 f_vty_transceive(BSCVTY, "hopping enabled 0");
8498 f_vty_transceive(BSCVTY, "exit"); /* go back */
8499 continue;
8500 }
8501
8502 /* Configure HSN / MAIO values */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008503 f_vty_transceive(BSCVTY, "hopping sequence-number " & int2str(fhp.ts[tn].hsn));
8504 f_vty_transceive(BSCVTY, "hopping maio " & int2str(fhp.ts[tn].maio));
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008505
8506 /* Configure the Mobile Allocation (hopping channels) */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008507 for (var integer i := 0; i < lengthof(fhp.ts[tn].ma); i := i + 1) {
8508 f_vty_transceive(BSCVTY, "hopping arfcn add " & int2str(fhp.ts[tn].ma[i]));
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008509 }
8510
8511 f_vty_transceive(BSCVTY, "hopping enabled 1");
8512 f_vty_transceive(BSCVTY, "exit"); /* go back */
8513 }
8514
8515 f_vty_transceive(BSCVTY, "end");
8516}
8517
8518/* Disable frequency hopping on all timeslots */
8519private function f_TC_fh_params_unset(in FHParamsTrx fhp,
8520 uint8_t bts_nr := 0,
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008521 uint8_t trx_nr := 0,
8522 GsmArfcn arfcn := 871)
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008523runs on test_CT {
8524 /* Enter the configuration node for the given BTS/TRX numbers */
8525 f_vty_enter_cfg_trx(BSCVTY, bts_nr, trx_nr);
8526
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008527 f_vty_transceive(BSCVTY, "arfcn " & int2str(arfcn));
8528
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008529 for (var integer tn := 0; tn < lengthof(fhp.ts); tn := tn + 1) {
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008530 f_vty_transceive(BSCVTY, "timeslot " & int2str(tn));
8531
8532 /* Delete all ARFCNs from the Mobile Allocation (if any) */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008533 for (var integer i := 0; i < lengthof(fhp.ts[tn].ma); i := i + 1) {
8534 f_vty_transceive(BSCVTY, "hopping arfcn del " & int2str(fhp.ts[tn].ma[i]));
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008535 }
8536
8537 f_vty_transceive(BSCVTY, "hopping enabled 0");
8538 f_vty_transceive(BSCVTY, "exit"); /* go back */
8539 }
8540
8541 f_vty_transceive(BSCVTY, "end");
8542 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
8543}
8544
8545/* Verify presence and correctness of the hopping parameters (HSN, MAIO)
8546 * in the Channel Identification IE of the RSL CHANnel ACTIVation message. */
8547testcase TC_fh_params_chan_activ() runs on test_CT {
8548 var FHParamsTrx fhp := f_TC_fh_params_gen();
8549 var RSL_Message rsl_msg;
8550 var RSL_IE_Body ie;
8551
8552 f_init_vty();
8553
8554 f_TC_fh_params_set(fhp); /* Enable frequency hopping */
8555 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
8556
8557 f_init(1);
8558
8559 /* CS domain: 3 (SDCCH/4+CBCH) + 4 (TCH/F) + 2 (TCH/H) channels available */
8560 for (var integer i := 0; i < 9; i := i + 1) {
8561 f_ipa_tx(0, ts_RSL_CHAN_RQD(f_rnd_ra_cs(), 23));
8562 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
8563
8564 /* Make sure that Channel Identification IE is present */
8565 if (not f_rsl_find_ie(rsl_msg, RSL_IE_CHAN_IDENT, ie)) {
8566 setverdict(fail, "RSL Channel Identification IE is absent");
8567 continue;
8568 }
8569
8570 /* Make sure that hopping parameters (HSN/MAIO) match */
8571 f_TC_fh_params_match_chan_desc(fhp, ie.chan_ident.ch_desc.v);
8572
8573 /* "Mobile Allocation shall be included but empty" - let's check this */
8574 if (ie.chan_ident.ma.v.len != 0) {
8575 setverdict(fail, "Mobile Allocation IE is not empty: ",
8576 ie.chan_ident.ma, ", despite it shall be");
8577 continue;
8578 }
8579 }
8580
8581 /* Disable frequency hopping */
8582 f_TC_fh_params_unset(fhp);
8583
Vadim Yanitskiy21726312020-09-04 01:45:36 +07008584 f_shutdown_helper();
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008585}
8586
8587/* Verify the hopping parameters (HSN, MAIO, MA) in (RR) Immediate Assignment */
8588testcase TC_fh_params_imm_ass() runs on test_CT {
8589 var FHParamsTrx fhp := f_TC_fh_params_gen();
8590 var RSL_Message rsl_msg;
8591 var RSL_IE_Body ie;
8592
8593 f_init_vty();
8594
8595 f_TC_fh_params_set(fhp); /* Enable frequency hopping */
8596 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
8597
8598 f_init(1);
8599
8600 /* CS domain: 3 (SDCCH/4+CBCH) + 4 (TCH/F) + 2 (TCH/H) channels available */
8601 for (var integer i := 0; i < 9; i := i + 1) {
8602 f_ipa_tx(0, ts_RSL_CHAN_RQD(f_rnd_ra_cs(), 23));
8603 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
8604
8605 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(rsl_msg.ies[0].body.chan_nr, 33));
8606 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeC(RSL_MT_IMMEDIATE_ASSIGN_CMD));
8607
8608 /* Make sure that Full Immediate Assign Info IE is present */
8609 if (not f_rsl_find_ie(rsl_msg, RSL_IE_FULL_IMM_ASS_INFO, ie)) {
8610 setverdict(fail, "RSL Full Immediate Assign Info IE is absent");
8611 continue;
8612 }
8613
8614 /* Decode the actual Immediate Assignment message */
8615 var GsmRrMessage rr_msg := dec_GsmRrMessage(ie.full_imm_ass_info.payload);
8616 if (not match(rr_msg.header, t_RrHeader(IMMEDIATE_ASSIGNMENT, ?))) {
8617 setverdict(fail, "Failed to match Immediate Assignment: ", rr_msg);
8618 continue;
8619 }
8620
8621 /* Make sure that hopping parameters (HSN/MAIO) match */
8622 f_TC_fh_params_match_chan_desc(fhp, rr_msg.payload.imm_ass.chan_desc);
8623
8624 /* Make sure that the Mobile Allocation IE matches */
8625 f_TC_fh_params_match_ma(fhp, rr_msg.payload.imm_ass.chan_desc.chan_nr.tn,
8626 rr_msg.payload.imm_ass.mobile_allocation);
8627 }
8628
8629 /* Disable frequency hopping */
8630 f_TC_fh_params_unset(fhp);
Philipp Maier82812002020-08-13 18:48:27 +02008631
Vadim Yanitskiy21726312020-09-04 01:45:36 +07008632 f_shutdown_helper();
Philipp Maier82812002020-08-13 18:48:27 +02008633}
8634
Vadim Yanitskiyaeb54a22020-09-01 06:25:25 +07008635/* Verify the hopping parameters (HSN, MAIO, MA) in (RR) Assignment Command */
8636testcase TC_fh_params_assignment_cmd() runs on test_CT {
8637 var FHParamsTrx fhp := f_TC_fh_params_gen();
8638 var RSL_Message rsl_msg;
8639 var RSL_IE_Body ie;
8640
8641 f_init_vty();
8642
8643 f_TC_fh_params_set(fhp); /* Enable frequency hopping */
8644 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
8645
8646 f_init(1);
8647
8648 /* HACK: work around "Couldn't find Expect for CRCX" */
8649 vc_MGCP.stop;
8650
8651 var template PDU_BSSAP ass_cmd := f_gen_ass_req();
8652 ass_cmd.pdu.bssmap.assignmentRequest.codecList := ts_BSSMAP_IE_CodecList({ts_CodecFR});
8653
8654 /* CS domain (TCH): 4 (TCH/F) + 2 (TCH/H) channels available
8655 * NOTE: only 3 SDCCH/4 channels are available on CCCH+SDCCH4+CBCH */
8656 for (var integer i := 0; i < 3; i := i + 1) {
8657 /* Establish a dedicated channel, so we can trigger (late) TCH assignment */
8658 var DchanTuple dt := f_est_dchan(f_rnd_ra_cs(), 23, f_rnd_octstring(16));
8659
8660 /* Send a BSSMAP Assignment Command, expect CHANnel ACTIVation */
8661 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ass_cmd));
8662 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
8663
8664 /* ACKnowledge CHANnel ACTIVation, expect RSL DATA REQuest */
8665 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(rsl_msg.ies[0].body.chan_nr, 33));
8666 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeR(RSL_MT_DATA_REQ));
8667
8668 /* Make sure that L3 Information IE is present */
8669 if (not f_rsl_find_ie(rsl_msg, RSL_IE_L3_INFO, ie)) {
8670 setverdict(fail, "RSL L3 Information IE is absent");
8671 continue;
8672 }
8673
8674 /* Decode the L3 message and make sure it is (RR) Assignment Command */
8675 var GsmRrL3Message l3_msg := dec_GsmRrL3Message(ie.l3_info.payload);
8676 if (not match(l3_msg.header, t_RrL3Header(ASSIGNMENT_COMMAND))) {
8677 setverdict(fail, "Failed to match Assignment Command: ", l3_msg);
8678 continue;
8679 }
8680
8681 /* Make sure that hopping parameters (HSN/MAIO) match */
8682 var ChannelDescription chan_desc := l3_msg.payload.ass_cmd.chan_desc;
8683 f_TC_fh_params_match_chan_desc(fhp, chan_desc);
8684
8685 /* Make sure that Cell Channel Description IE is present if FH is enabled */
8686 if (chan_desc.h and not ispresent(l3_msg.payload.ass_cmd.cell_chan_desc)) {
Vadim Yanitskiy38d069d2020-09-02 17:18:57 +07008687 setverdict(fail, "FH enabled, but Cell Channel Description IE is absent");
Vadim Yanitskiyaeb54a22020-09-01 06:25:25 +07008688 continue;
8689 }
8690
8691 /* Make sure that the Mobile Allocation IE matches (if present) */
8692 var boolean ma_present := ispresent(l3_msg.payload.ass_cmd.mobile_allocation);
8693 if (chan_desc.h and ma_present) {
8694 f_TC_fh_params_match_ma(fhp, chan_desc.chan_nr.tn,
8695 l3_msg.payload.ass_cmd.mobile_allocation.v);
8696 } else if (chan_desc.h and not ma_present) {
8697 setverdict(fail, "FH enabled, but Mobile Allocation IE is absent");
8698 continue;
8699 } else if (not chan_desc.h and ma_present) {
8700 setverdict(fail, "FH disabled, but Mobile Allocation IE is present");
8701 continue;
8702 }
8703 }
8704
8705 /* Give the IUT some time to release all channels */
8706 f_sleep(3.0);
8707
8708 /* Disable frequency hopping */
8709 f_TC_fh_params_unset(fhp);
8710
Vadim Yanitskiy21726312020-09-04 01:45:36 +07008711 f_shutdown_helper();
Vadim Yanitskiyaeb54a22020-09-01 06:25:25 +07008712}
8713
Vadim Yanitskiy8f5430d2020-09-02 18:51:38 +07008714/* Verify the hopping parameters (HSN, MAIO, MA) in (RR) Handover Command */
8715private function f_TC_fh_params_handover_cmd(in FHParamsTrx fhp)
8716runs on test_CT {
8717 var RSL_Message rsl_msg;
8718 var RSL_IE_Body ie;
8719 var DchanTuple dt;
8720
8721 /* Establish a dedicated channel, so we can trigger handover */
8722 dt := f_est_dchan(f_rnd_ra_cs(), 23, f_rnd_octstring(16));
8723
8724 /* Trigger handover from BTS0 to BTS1 */
8725 f_bts_0_cfg(BSCVTY, { "neighbor bts 1" });
8726 f_vty_handover(BSCVTY, 0, 0, dt.rsl_chan_nr, 1);
8727
8728 /* Expect RSL CHANnel ACTIVation on BTS1/TRX0/TS1 */
8729 rsl_msg := f_exp_ipa_rx(1, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
8730
8731 /* ACKnowledge channel activation and expect (RR) Handover Command */
8732 f_ipa_tx(1, ts_RSL_CHAN_ACT_ACK(rsl_msg.ies[0].body.chan_nr, 33));
8733 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeR(RSL_MT_DATA_REQ));
8734
8735 /* Make sure that L3 Information IE is present */
8736 if (not f_rsl_find_ie(rsl_msg, RSL_IE_L3_INFO, ie)) {
8737 setverdict(fail, "RSL L3 Information IE is absent");
8738 return;
8739 }
8740
8741 /* Decode the L3 message and make sure it is (RR) Handover Command */
8742 var GsmRrL3Message l3_msg := dec_GsmRrL3Message(ie.l3_info.payload);
8743 if (not match(l3_msg.header, t_RrL3Header(HANDOVER_COMMAND))) {
8744 setverdict(fail, "Failed to match Handover Command: ", l3_msg);
8745 return;
8746 }
8747
8748 /* Make sure that we've got SDCCH/8 on TS1 (expected to be hopping) */
8749 var ChannelDescription chan_desc := l3_msg.payload.ho_cmd.chan_desc;
8750 if (not match(chan_desc.chan_nr, t_RslChanNr_SDCCH8(1, ?))) {
8751 setverdict(fail, "Unexpected channel number: ", chan_desc.chan_nr);
8752 return;
8753 }
8754
8755 /* Make sure that hopping parameters (HSN/MAIO) match */
8756 f_TC_fh_params_match_chan_desc(fhp, chan_desc);
8757
8758 /* Make sure that Cell Channel Description IE is present */
8759 if (not ispresent(l3_msg.payload.ho_cmd.cell_chan_desc)) {
8760 setverdict(fail, "FH enabled, but Cell Channel Description IE is absent");
8761 return;
8762 }
8763
8764 /* Make sure that the Mobile Allocation (after time) IE is present and matches */
8765 var boolean ma_present := ispresent(l3_msg.payload.ho_cmd.mobile_allocation);
8766 if (ma_present) {
8767 f_TC_fh_params_match_ma(fhp, chan_desc.chan_nr.tn,
8768 l3_msg.payload.ho_cmd.mobile_allocation.v);
8769 } else {
8770 setverdict(fail, "FH enabled, but Mobile Allocation IE is absent");
8771 return;
8772 }
8773}
8774testcase TC_fh_params_handover_cmd() runs on test_CT {
8775 var FHParamsTrx fhp := f_TC_fh_params_gen();
8776
8777 f_init_vty();
8778
8779 /* (Re)configure TS0 as BCCH and TS1 as SDCCH8 on BTS1/TRX0 */
8780 f_vty_enter_cfg_trx(BSCVTY, bts := 1, trx := 0);
8781
8782 f_vty_transceive(BSCVTY, "timeslot 0");
8783 f_vty_transceive(BSCVTY, "phys_chan_config ccch");
8784 f_vty_transceive(BSCVTY, "exit"); /* go back */
8785
8786 f_vty_transceive(BSCVTY, "timeslot 1");
8787 f_vty_transceive(BSCVTY, "phys_chan_config sdcch8");
8788 f_vty_transceive(BSCVTY, "end"); /* we're done */
8789
8790 f_TC_fh_params_set(fhp, 1); /* Enable frequency hopping on BTS1 */
8791 f_vty_transceive(BSCVTY, "drop bts connection 1 oml");
8792
8793 f_init(2);
8794
8795 f_TC_fh_params_handover_cmd(fhp);
8796
8797 /* Disable frequency hopping on BTS1 */
8798 f_TC_fh_params_unset(fhp, 1);
8799
8800 /* (Re)configure TS0 as CCCH+SDCCH4+CBCH and TS1 as TCH/F */
8801 f_vty_enter_cfg_trx(BSCVTY, bts := 1, trx := 0);
8802
8803 f_vty_transceive(BSCVTY, "timeslot 0");
8804 f_vty_transceive(BSCVTY, "phys_chan_config ccch+sdcch4+cbch");
8805 f_vty_transceive(BSCVTY, "exit"); /* go back */
8806
8807 f_vty_transceive(BSCVTY, "timeslot 1");
8808 f_vty_transceive(BSCVTY, "phys_chan_config tch/f");
8809 f_vty_transceive(BSCVTY, "end"); /* we're done */
8810
8811 f_shutdown_helper();
8812}
8813
Vadim Yanitskiyca974032020-09-01 07:20:39 +07008814/* Verify the hopping parameters in System Information Type 4 */
8815testcase TC_fh_params_si4_cbch() runs on test_CT {
8816 var FHParamsTrx fhp := f_TC_fh_params_gen(tr_tn := 1);
8817 var ASP_RSL_Unitdata rx_rsl_ud;
8818 timer T := 5.0;
8819
8820 f_init_vty();
8821
8822 /* (Re)configure TS0 as BCCH and TS1 as SDCCH8+CBCH */
8823 f_vty_enter_cfg_trx(BSCVTY, trx := 0);
8824
8825 f_vty_transceive(BSCVTY, "timeslot 0");
8826 f_vty_transceive(BSCVTY, "phys_chan_config ccch");
8827 f_vty_transceive(BSCVTY, "exit"); /* go back */
8828
8829 f_vty_transceive(BSCVTY, "timeslot 1");
8830 f_vty_transceive(BSCVTY, "phys_chan_config sdcch8+cbch");
8831 f_vty_transceive(BSCVTY, "end"); /* we're done */
8832
8833 f_TC_fh_params_set(fhp); /* Enable frequency hopping */
8834 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
8835
8836 f_init(1);
8837
8838 T.start;
8839 alt {
8840 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_BCCH_INFO(RSL_SYSTEM_INFO_4))) -> value rx_rsl_ud {
8841 var RSL_IE_Body ie := rx_rsl_ud.rsl.ies[2].body; /* FULL BCCH Information IE */
8842 var SystemInformation si := dec_SystemInformation(ie.other.payload);
8843
8844 /* Make sure that what we decoded is System Information Type 4 */
8845 if (si.header.message_type != SYSTEM_INFORMATION_TYPE_4) {
8846 setverdict(fail, "RSL FULL BCCH Information IE contains: ", si);
8847 repeat;
8848 }
8849
8850 /* Make sure that CBCH Channel Description IE is present */
8851 if (not ispresent(si.payload.si4.cbch_chan_desc)) {
8852 setverdict(fail, "CBCH Channel Description IE is absent");
8853 break;
8854 }
8855
8856 /* Finally, check the hopping parameters (HSN, MAIO) */
8857 var ChannelDescription chan_desc := si.payload.si4.cbch_chan_desc.v;
8858 f_TC_fh_params_match_chan_desc(fhp, chan_desc);
8859
8860 /* 3GPP TS 44.018, section 9.1.36.2 "CBCH Mobile Allocation":
8861 * The CBCH Mobile Allocation IE *shall* be present if FH is enabled. */
8862 if (chan_desc.h and not ispresent(si.payload.si4.cbch_mobile_alloc)) {
8863 setverdict(fail, "FH enabled, but Mobile Allocation IE is absent");
8864 break;
8865 } else if (chan_desc.h and ispresent(si.payload.si4.cbch_mobile_alloc)) {
8866 f_TC_fh_params_match_ma(fhp, chan_desc.chan_nr.tn,
8867 si.payload.si4.cbch_mobile_alloc.v);
8868 }
8869 }
8870 [] IPA_RSL[0].receive { repeat; }
8871 [] T.timeout {
8872 setverdict(fail, "Timeout waiting for RSL BCCH INFOrmation (SI4)");
8873 }
8874 }
8875
8876 /* Disable frequency hopping */
8877 f_TC_fh_params_unset(fhp);
8878
Vadim Yanitskiy8bc46012020-09-06 12:38:01 +07008879 /* (Re)configure TS0 as CCCH+SDCCH4+CBCH and TS1 as TCH/F */
Vadim Yanitskiyca974032020-09-01 07:20:39 +07008880 f_vty_enter_cfg_trx(BSCVTY, trx := 0);
8881
8882 f_vty_transceive(BSCVTY, "timeslot 0");
Vadim Yanitskiy8bc46012020-09-06 12:38:01 +07008883 f_vty_transceive(BSCVTY, "phys_chan_config ccch+sdcch4+cbch");
Vadim Yanitskiyca974032020-09-01 07:20:39 +07008884 f_vty_transceive(BSCVTY, "exit"); /* go back */
8885
8886 f_vty_transceive(BSCVTY, "timeslot 1");
8887 f_vty_transceive(BSCVTY, "phys_chan_config tch/f");
8888 f_vty_transceive(BSCVTY, "end"); /* we're done */
8889
Vadim Yanitskiy21726312020-09-04 01:45:36 +07008890 f_shutdown_helper();
Vadim Yanitskiyca974032020-09-01 07:20:39 +07008891}
8892
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02008893template (value) PDU_BSSAP_LE ts_BSSMAP_LE_BSSLAP(template (value) BSSLAP_PDU bsslap)
8894 := ts_BSSMAP_LE_ConnInfo(BSSMAP_LE_PROT_BSSLAP, data := enc_BSSLAP_PDU(valueof(bsslap)));
8895
8896private function f_match_bsslap(PDU_BSSAP_LE got_bsslap_msg,
8897 template (present) BSSLAP_PDU expect_bsslap)
8898{
8899 var BSSLAP_PDU bsslap := dec_BSSLAP_PDU(got_bsslap_msg.pdu.bssmap.co_info.bsslap_apdu.data);
8900 if (not match(bsslap, expect_bsslap)) {
8901 log("EXPECTING BSSLAP: ", expect_bsslap);
8902 log("GOT BSSLAP: ", bsslap);
8903 setverdict(fail, "BSSLAP is not as expected");
8904 mtc.stop;
8905 }
8906 setverdict(pass);
8907}
8908
8909/* GAD: this is an Ellipsoid point with uncertainty circle, encoded as in 3GPP TS 23.032 §7.3.2. */
8910const octetstring gad_ell_point_unc_circle := '10b0646d0d5f6627'O;
8911
8912private function f_expect_bsslap(template (present) BSSLAP_PDU expect_rx_bsslap) runs on MSC_ConnHdlr {
8913 var PDU_BSSAP_LE rx_bsslap;
8914 BSSAP_LE.receive(tr_BSSMAP_LE_ConnInfo(BSSMAP_LE_PROT_BSSLAP, ?)) -> value(rx_bsslap);
8915 f_match_bsslap(rx_bsslap, expect_rx_bsslap);
8916}
8917
8918/* With an active lchan, start BSSMAP Perform Location Request on A interface, starting BSSMAP-LE Perform Location
8919 * Request on Lb interface. Either with or without the SMLC doing a BSSLAP TA Request. */
8920private function f_lcs_loc_req_for_active_ms(boolean do_ta_request := false) runs on MSC_ConnHdlr {
8921 f_sleep(1.0);
8922
8923 f_establish_fully(omit, omit);
8924 f_bssap_le_register_imsi(g_pars.imsi, omit);
8925
8926 BSSAP.send(valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
8927 ts_CellId_CGI('262'H, '42'H, 23, 42))));
8928
8929 var PDU_BSSAP_LE plr;
8930 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
8931
8932 if (not do_ta_request) {
8933 /* verify TA Layer 3 in APDU. First the APDU type (BSSLAP), then the BSSLAP data contents. */
8934 var template BSSMAP_LE_IE_APDU expect_apdu := tr_BSSMAP_LE_APDU(BSSMAP_LE_PROT_BSSLAP, ?);
8935 if (not match(plr.pdu.bssmap.perf_loc_req.bsslap_apdu, expect_apdu)) {
8936 log("EXPECTING BSSMAP-LE APDU IE ", expect_apdu);
8937 log("GOT BSSMAP-LE APDU IE ", plr.pdu.bssmap.perf_loc_req.bsslap_apdu);
8938 setverdict(fail, "BSSMAP-LE APDU IE is not as expected");
8939 mtc.stop;
8940 }
8941 var template BSSLAP_PDU expect_ta_layer3 := tr_BSSLAP_TA_Layer3(tr_BSSLAP_IE_TA(0));
8942 var BSSLAP_PDU bsslap := dec_BSSLAP_PDU(plr.pdu.bssmap.perf_loc_req.bsslap_apdu.data);
8943 if (not match(bsslap, expect_ta_layer3)) {
8944 log("EXPECTING BSSLAP TA Layer 3: ", expect_ta_layer3);
8945 log("GOT BSSLAP: ", bsslap);
8946 setverdict(fail, "BSSLAP is not as expected");
8947 mtc.stop;
8948 }
8949 /* OsmoBSC directly sent the TA as BSSLAP APDU in the BSSMAP-LE Perform Location Request to the SMLC. The SMLC
8950 * has no need to request the TA from the BSC and directly responds. */
8951 } else {
8952 /* SMLC wants to ask the TA from the BSC explicitly in a BSSLAP TA Request message */
8953 BSSAP_LE.send(ts_BSSMAP_LE_BSSLAP(ts_BSSLAP_TA_Req));
8954 f_expect_bsslap(tr_BSSLAP_TA_Resp(?, ?));
8955 }
8956
8957 /* SMLC got the TA from the BSC, now responds with geo information data. */
8958 BSSAP_LE.send(ts_BSSMAP_LE_PerfLocResp(gad_ell_point_unc_circle, omit));
8959 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
8960 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(tr_BSSMAP_IE_LocationEstimate(gad_ell_point_unc_circle)));
8961
8962 /* The LCS was using an active A-interface conn. It should still remain active after this. */
8963 f_mo_l3_transceive();
8964
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02008965 f_perform_clear();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02008966
8967 f_sleep(2.0);
8968 setverdict(pass);
8969}
8970
8971/* With an active lchan, start BSSMAP Perform Location Request on A interface, starting BSSMAP-LE Perform Location
8972 * Request on Lb interface. Without the SMLC doing a BSSLAP TA Request. */
8973private function f_tc_lcs_loc_req_for_active_ms(charstring id) runs on MSC_ConnHdlr {
8974 f_lcs_loc_req_for_active_ms(false);
8975}
8976testcase TC_lcs_loc_req_for_active_ms() runs on test_CT {
8977 var MSC_ConnHdlr vc_conn;
8978 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8979
8980 f_init(1, true);
8981 f_sleep(1.0);
8982 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_active_ms), pars);
8983 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01008984 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02008985}
8986
8987/* With an active lchan, start BSSMAP Perform Location Request on A interface, starting BSSMAP-LE Perform Location
8988 * Request on Lb interface. With the SMLC doing a BSSLAP TA Request. */
8989private function f_tc_lcs_loc_req_for_active_ms_ta_req(charstring id) runs on MSC_ConnHdlr {
8990 f_lcs_loc_req_for_active_ms(true);
8991}
8992testcase TC_lcs_loc_req_for_active_ms_ta_req() runs on test_CT {
8993 var MSC_ConnHdlr vc_conn;
8994 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8995
8996 f_init(1, true);
8997 f_sleep(1.0);
8998 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_active_ms_ta_req), pars);
8999 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009000 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009001}
9002
9003/* Clear the A-interface conn only, without doing anything on Abis. Useful for LCS, for cases where there is only an A
9004 * conn without an active lchan. */
9005private function f_clear_A_conn() runs on MSC_ConnHdlr
9006{
9007 var BssmapCause cause := 0;
9008 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
9009 BSSAP.receive(tr_BSSMAP_ClearComplete);
9010 BSSAP.send(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_REQ);
9011
9012 timer no_more_bssap := 5.0;
9013 no_more_bssap.start;
9014 alt {
9015 [] no_more_bssap.timeout { break; }
9016 [] BSSAP.receive(tr_BSSAP_BSSMAP) {
9017 setverdict(fail, "Expected no more BSSAP after Clear Complete");
9018 mtc.stop;
9019 }
9020 }
9021 setverdict(pass);
9022}
9023
9024/* Verify that the A-interface connection is still working, and then clear it, without doing anything on Abis. Useful
9025 * for LCS, for cases where there is only an A conn without an active lchan. */
9026private function f_verify_active_A_conn_and_clear() runs on MSC_ConnHdlr
9027{
9028 f_logp(BSCVTY, "f_verify_active_A_conn_and_clear: test A link, then clear");
9029
9030 /* When an lchan is active, we can send some L3 data from the BTS side and verify that it shows up on the other
9031 * side towards the MSC. When there is no lchan, this is not possible. To probe whether the A-interface
9032 * connection is still up, we need something that echos back on the A-interface. Another LCS request! */
9033 BSSAP.send(valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
9034 ts_CellId_CGI('262'H, '42'H, 23, 42))));
9035 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?));
9036
9037 /* Right, the Perform Location Request showed up on Lb, now we can clear the A conn. */
9038 f_clear_A_conn();
9039 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocAbort(BSSMAP_LE_LCS_CAUSE_REQUEST_ABORTED));
9040 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
9041}
9042
9043/* With *no* active lchan, start BSSMAP Perform Location Request on A interface, starting BSSMAP-LE Perform Location
9044 * Request on Lb interface. BSC will Page for the subscriber as soon as we (virtual SMLC) request the TA via BSSLAP.
9045 */
9046private function f_tc_lcs_loc_req_for_idle_ms(charstring id) runs on MSC_ConnHdlr {
9047 f_sleep(1.0);
9048
9049 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
9050 f_bssap_le_register_imsi(g_pars.imsi, omit);
9051
9052 /* Register to receive the Paging Command */
9053 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
9054 g_chan_nr := new_chan_nr;
9055 f_rslem_register(0, g_chan_nr);
9056
9057 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
9058 valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
9059 ts_CellId_CGI('001'H, '01'H, 1, 0)))));
9060 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
9061
9062 var PDU_BSSAP_LE plr;
9063 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
9064
9065 /* SMLC wants to ask the TA from the BSC explicitly in a BSSLAP TA Request message */
9066 BSSAP_LE.send(ts_BSSMAP_LE_BSSLAP(ts_BSSLAP_TA_Req));
9067
9068 /* OsmoBSC needs to Page */
9069 RSL.receive(tr_RSL_PAGING_CMD(tr_MI_IMSI(g_pars.imsi)));
9070 f_logp(BSCVTY, "got Paging Command");
9071
9072 /* MS requests channel. Since the Paging was for LCS, the Paging Response does not trigger a Complete Layer 3 to
9073 * the MSC, and releases the lchan directly. */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02009074 f_perform_compl_l3(RSL, RSL_PROC, ts_PAG_RESP(valueof(ts_MI_IMSI_LV(g_pars.imsi))), do_clear := false, expect_bssmap_l3 := false);
9075 f_expect_lchan_rel(RSL, RSL_PROC);
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009076
9077 /* From the Paging Response, the TA is now known to the BSC, and it responds to the SMLC. */
9078
9079 f_expect_bsslap(tr_BSSLAP_TA_Resp(?, ?));
9080
9081 /* SMLC got the TA from the BSC, now responds with geo information data. */
9082 BSSAP_LE.send(ts_BSSMAP_LE_PerfLocResp(gad_ell_point_unc_circle, omit));
9083 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
9084
9085 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(tr_BSSMAP_IE_LocationEstimate(gad_ell_point_unc_circle)));
9086
9087 /* The lchan is gone, the A-interface conn was created for the LCS only.
9088 * Still it is clearly the MSC's job to decide whether to tear down the conn or not. */
9089 f_verify_active_A_conn_and_clear();
9090
9091 f_sleep(2.0);
9092 setverdict(pass);
9093}
9094testcase TC_lcs_loc_req_for_idle_ms() runs on test_CT {
9095 var MSC_ConnHdlr vc_conn;
9096 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9097
9098 f_init(1, true);
9099 f_sleep(1.0);
9100
9101 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
9102 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
9103
9104 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_idle_ms), pars);
9105 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009106 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009107}
9108
9109/* With no active lchan, start BSSMAP Perform Location Request on A interface, but omit IMSI; expect failure response.
9110 */
9111private function f_tc_lcs_loc_req_no_subscriber(charstring id) runs on MSC_ConnHdlr {
9112 f_sleep(1.0);
9113
9114 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
9115 f_bssap_le_register_imsi(g_pars.imsi, omit);
9116
9117 /* provoke an abort by omitting both IMSI and IMEI */
9118 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
9119 valueof(ts_BSSMAP_Perform_Location_Request(omit,
9120 ts_CellId_CGI('262'H, '42'H, 23, 42)))));
9121 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
9122
9123 /* BSC tells MSC about failure */
9124 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(
9125 locationEstimate := omit, positioningData := omit,
9126 lCS_Cause := tr_BSSMAP_LcsCause(BSSMAP_LCS_CAUSE_DATA_MISSING_IN_REQ)));
9127
9128 /* There is no lchan. Still the MSC's job to decide whether to tear down the conn or not. */
9129 f_verify_active_A_conn_and_clear();
9130
9131 f_sleep(2.0);
9132 setverdict(pass);
9133}
9134testcase TC_lcs_loc_req_no_subscriber() runs on test_CT {
9135 var MSC_ConnHdlr vc_conn;
9136 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9137
9138 f_init(1, true);
9139 f_sleep(1.0);
9140
9141 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
9142 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
9143
9144 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_no_subscriber), pars);
9145 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009146 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009147}
9148
9149/* With an active lchan, start a Perform Location Request on the A-interface, but virtual SMLC does not answer with
9150 * BSSMAP-LE Perform Location Response (before or after sending a BSSLAP TA Request) */
9151private function f_lcs_loc_req_for_active_ms_le_timeout(boolean do_ta) runs on MSC_ConnHdlr {
9152 f_sleep(1.0);
9153
9154 f_establish_fully(omit, omit);
9155 f_bssap_le_register_imsi(g_pars.imsi, omit);
9156
9157 BSSAP.send(valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
9158 ts_CellId_CGI('262'H, '42'H, 23, 42))));
9159
9160 var PDU_BSSAP_LE plr;
9161 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
9162
9163 if (do_ta) {
9164 /* SMLC wants to ask the TA from the BSC explicitly in a BSSLAP TA Request message */
9165 BSSAP_LE.send(ts_BSSMAP_LE_BSSLAP(ts_BSSLAP_TA_Req));
9166 f_expect_bsslap(tr_BSSLAP_TA_Resp(?, ?));
9167 }
9168
9169 /* SMLC fails to respond, BSC runs into timeout */
9170 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocAbort(BSSMAP_LE_LCS_CAUSE_SYSTEM_FAILURE));
9171 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
9172
9173 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(
9174 locationEstimate := omit, positioningData := omit,
9175 lCS_Cause := tr_BSSMAP_LcsCause(BSSMAP_LCS_CAUSE_SYSTEM_FAILURE)));
9176
9177 /* There is no lchan. Still the MSC's job to decide whether to tear down the conn or not. */
9178 f_verify_active_A_conn_and_clear();
9179
9180 f_sleep(2.0);
9181 setverdict(pass);
9182}
9183
9184/* With an active lchan, start a Perform Location Request on the A-interface, but virtual SMLC does not answer with
9185 * BSSMAP-LE Perform Location Response, without sending a BSSLAP TA Request. */
9186private function f_tc_lcs_loc_req_for_active_ms_le_timeout(charstring id) runs on MSC_ConnHdlr {
9187 f_lcs_loc_req_for_active_ms_le_timeout(false);
9188}
9189
9190testcase TC_lcs_loc_req_for_active_ms_le_timeout() runs on test_CT {
9191 var MSC_ConnHdlr vc_conn;
9192 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9193
9194 f_init(1, true);
9195 f_sleep(1.0);
9196 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_active_ms_le_timeout), pars);
9197 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009198 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009199}
9200
9201/* With an active lchan, start a Perform Location Request on the A-interface, but virtual SMLC does not answer with
9202 * BSSMAP-LE Perform Location Response, after sending a BSSLAP TA Request. */
9203private function f_tc_lcs_loc_req_for_active_ms_le_timeout2(charstring id) runs on MSC_ConnHdlr {
9204 f_lcs_loc_req_for_active_ms_le_timeout(true);
9205}
9206
9207testcase TC_lcs_loc_req_for_active_ms_le_timeout2() runs on test_CT {
9208 var MSC_ConnHdlr vc_conn;
9209 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9210
9211 f_init(1, true);
9212 f_sleep(1.0);
9213 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_active_ms_le_timeout2), pars);
9214 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009215 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009216}
9217
9218/* With *no* active lchan, start a Perform Location Request, expecting that the MS will be Paged. */
9219private function f_tc_lcs_loc_req_for_idle_ms_no_pag_resp(charstring id) runs on MSC_ConnHdlr {
9220 f_sleep(1.0);
9221
9222 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
9223 f_bssap_le_register_imsi(g_pars.imsi, omit);
9224
9225 /* Register to receive the Paging Command */
9226 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
9227 g_chan_nr := new_chan_nr;
9228 f_rslem_register(0, g_chan_nr);
9229
9230 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
9231 valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
9232 ts_CellId_CGI('001'H, '01'H, 1, 0)))));
9233 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
9234
9235 var PDU_BSSAP_LE plr;
9236 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
9237
9238 /* SMLC wants to ask the TA from the BSC explicitly in a BSSLAP TA Request message */
9239 BSSAP_LE.send(ts_BSSMAP_LE_BSSLAP(ts_BSSLAP_TA_Req));
9240
9241 /* OsmoBSC needs to Page */
9242 var PDU_BSSAP_LE rx_bsslap;
9243 alt {
9244 [] RSL.receive(tr_RSL_PAGING_CMD(tr_MI_IMSI(g_pars.imsi))) {
9245 f_logp(BSCVTY, "got Paging Command");
9246 repeat;
9247 }
9248 [] BSSAP_LE.receive(tr_BSSMAP_LE_ConnInfo(BSSMAP_LE_PROT_BSSLAP, ?)) -> value(rx_bsslap) {
9249 /* MS does not respond to Paging, TA Req runs into timeout. */
9250 f_match_bsslap(rx_bsslap, tr_BSSLAP_Abort(?));
9251 }
9252 }
9253
9254 /* SMLC responds with failure */
9255 BSSAP_LE.send(ts_BSSMAP_LE_PerfLocResp(omit, BSSMAP_LE_LCS_CAUSE_REQUEST_ABORTED));
9256 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
9257
9258 /* BSC tells MSC about failure */
9259 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(
9260 locationEstimate := omit, positioningData := omit,
9261 lCS_Cause := tr_BSSMAP_LcsCause(BSSMAP_LCS_CAUSE_REQUEST_ABORTED)));
9262
9263 /* There is no lchan. Still the MSC's job to decide whether to tear down the conn or not. */
9264 f_verify_active_A_conn_and_clear();
9265
9266 f_sleep(2.0);
9267 setverdict(pass);
9268}
9269testcase TC_lcs_loc_req_for_idle_ms_no_pag_resp() runs on test_CT {
9270 var MSC_ConnHdlr vc_conn;
9271 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9272
9273 f_init(1, true);
9274 f_sleep(1.0);
9275
9276 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
9277 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
9278
9279 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_idle_ms_no_pag_resp), pars);
9280 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009281 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009282}
9283
9284/* During an ongoing Location Request, the MS sends a CM Service Request. Expect the same A-conn to be re-used / taken
9285 * over. */
9286private function f_tc_cm_service_during_lcs_loc_req(charstring id) runs on MSC_ConnHdlr {
9287 f_sleep(1.0);
9288
9289 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
9290 f_bssap_le_register_imsi(g_pars.imsi, omit);
9291
9292 /* Register to receive the Paging Command */
9293 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
9294 g_chan_nr := new_chan_nr;
9295 f_rslem_register(0, g_chan_nr);
9296
9297 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
9298 valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
9299 ts_CellId_CGI('001'H, '01'H, 1, 0)))));
9300 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
9301
9302 var PDU_BSSAP_LE plr;
9303 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
9304
9305 /* As the A-interface conn was established for LCS, the MS coincidentally decides to issue a CM Service Request
9306 * and establish Layer 3. It should use the existing A-interface conn. */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02009307 f_perform_compl_l3(RSL, RSL_PROC, valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, valueof(ts_MI_IMSI_LV(g_pars.imsi)))),
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009308 do_clear := false, expect_bssmap_l3 := true);
9309
9310 /* SMLC wants to ask the TA from the BSC explicitly in a BSSLAP TA Request message */
9311 BSSAP_LE.send(ts_BSSMAP_LE_BSSLAP(ts_BSSLAP_TA_Req));
9312
9313 /* OsmoBSC already has an lchan, no need to Page, just returns the TA */
9314 f_expect_bsslap(tr_BSSLAP_TA_Resp(?, ?));
9315
9316 /* SMLC got the TA from the BSC, now responds with geo information data. */
9317 BSSAP_LE.send(ts_BSSMAP_LE_PerfLocResp(gad_ell_point_unc_circle, omit));
9318 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
9319 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(tr_BSSMAP_IE_LocationEstimate(gad_ell_point_unc_circle)));
9320
9321 /* The lchan should still exist, it was from a CM Service Request. */
9322 f_mo_l3_transceive();
9323
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02009324 f_perform_clear();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009325
9326 f_sleep(2.0);
9327 setverdict(pass);
9328}
9329testcase TC_cm_service_during_lcs_loc_req() runs on test_CT {
9330 var MSC_ConnHdlr vc_conn;
9331 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9332
9333 f_init(1, true);
9334 f_sleep(1.0);
9335
9336 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
9337 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
9338
9339 vc_conn := f_start_handler(refers(f_tc_cm_service_during_lcs_loc_req), pars);
9340 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009341 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009342}
9343
9344/* During an ongoing Perform Location Request, do a Handover, an expect a BSSLAP Reset message from the BSC to indicate
9345 * the new lchan after handover. */
9346private function f_tc_ho_during_lcs_loc_req(charstring id) runs on MSC_ConnHdlr {
9347 f_sleep(1.0);
9348
9349 f_establish_fully(omit, omit);
9350 f_bssap_le_register_imsi(g_pars.imsi, omit);
9351
9352 BSSAP.send(valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
9353 ts_CellId_CGI('262'H, '42'H, 23, 42))));
9354
9355 var PDU_BSSAP_LE plr;
9356 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
9357
9358 /* SMLC ponders the Location Request, in the meantime the BSC decides to handover */
9359 f_bts_0_cfg(BSCVTY, {"neighbor bts 1"});
9360
9361 var HandoverState hs := {
9362 rr_ho_cmpl_seen := false,
9363 handover_done := false,
Neels Hofmeyrc741fcb2021-10-02 14:52:28 +02009364 old_chan_nr := -,
9365 expect_target_tsc := BTS_TSC[1]
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009366 };
9367 /* issue hand-over command on VTY */
9368 f_vty_handover(BSCVTY, 0, 0, g_chan_nr, 1);
9369 /* temporarily suspend DChan processing on BTS1 to avoid race with RSLEM_register */
9370 f_rslem_suspend(RSL1_PROC);
9371
9372 /* From the MGW perspective, a handover is is characterized by
9373 * performing one MDCX operation with the MGW. So we expect to see
9374 * one more MDCX during handover. */
9375 g_media.mgcp_conn[0].mdcx_seen_exp := g_media.mgcp_conn[0].crcx_seen_exp + 1;
9376
9377 alt {
9378 [] as_handover(hs);
9379 }
9380
9381 var PDU_BSSAP_LE rx_bsslap;
9382
9383 interleave {
9384 /* Expect the BSC to inform the MSC about the handover */
9385 [] BSSAP.receive(tr_BSSMAP_HandoverPerformed);
9386
9387 /* Expect the BSC to inform the SMLC about the handover */
9388 [] BSSAP_LE.receive(tr_BSSMAP_LE_ConnInfo(BSSMAP_LE_PROT_BSSLAP, ?)) -> value(rx_bsslap) {
9389 f_match_bsslap(rx_bsslap, tr_BSSLAP_Reset(BSSLAP_CAUSE_INTRA_BSS_HO));
9390 }
9391 }
9392
9393 /* SMLC now responds with geo information data. */
9394 BSSAP_LE.send(ts_BSSMAP_LE_PerfLocResp(gad_ell_point_unc_circle, omit));
9395 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
9396 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(tr_BSSMAP_IE_LocationEstimate(gad_ell_point_unc_circle)));
9397
9398 /* lchan still active */
9399 f_mo_l3_transceive(RSL1);
9400
9401 /* MSC decides it is done now. */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02009402 f_perform_clear(RSL1, RSL1_PROC);
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009403
9404 f_sleep(2.0);
9405 setverdict(pass);
9406}
9407testcase TC_ho_during_lcs_loc_req() runs on test_CT {
9408 var MSC_ConnHdlr vc_conn;
9409 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9410
9411 f_init(2, true);
9412 f_sleep(1.0);
9413 vc_conn := f_start_handler(refers(f_tc_ho_during_lcs_loc_req), pars);
9414 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009415 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009416}
9417
Neels Hofmeyrbf037052020-10-28 22:52:02 +00009418/* Attempt Complete Layer 3 without any MSC available (OS#4832) */
9419private function f_tc_no_msc(charstring id) runs on MSC_ConnHdlr {
9420 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
9421
9422 /* Also disable attach for the single connected MSC */
9423 f_vty_msc_allow_attach(BSCVTY, { false });
9424
9425 var octetstring l3_enc := enc_PDU_ML3_MS_NW(valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_IMSI_LV('001010000100001'H)), '00F110'O) ));
9426 f_chan_est(g_pars.ra, l3_enc, g_pars.link_id, g_pars.fn);
9427
9428 /* No MSC is found, expecting a proper release on RSL */
9429 interleave {
9430 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE)) {
9431 f_logp(BSCVTY, "Got RSL RR Release");
9432 }
9433 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {
9434 f_logp(BSCVTY, "Got RSL Deact SACCH");
9435 }
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02009436 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyrbf037052020-10-28 22:52:02 +00009437 f_logp(BSCVTY, "Got RSL RF Chan Rel, sending Rel Ack");
9438 RSL.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
Neels Hofmeyre680b012021-07-22 19:19:09 +02009439 f_rslem_unregister(0, g_chan_nr);
Neels Hofmeyrbf037052020-10-28 22:52:02 +00009440 }
9441 }
9442 setverdict(pass);
9443}
9444testcase TC_no_msc() runs on test_CT {
9445
9446 f_init(1, true);
9447 f_sleep(1.0);
9448 var MSC_ConnHdlr vc_conn;
9449 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9450
9451 f_ctrs_bsc_init(counternames_bsc_mscpool);
9452
9453 vc_conn := f_start_handler(refers(f_tc_no_msc), pars);
9454 vc_conn.done;
9455
9456 f_ctrs_bsc_add("mscpool:subscr:no_msc");
9457 f_ctrs_bsc_verify();
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009458 f_shutdown_helper();
Neels Hofmeyrbf037052020-10-28 22:52:02 +00009459}
9460
Harald Welte0ea2d5e2018-04-07 21:40:29 +02009461/* Dyn PDCH todo:
9462 * activate OSMO as TCH/F
9463 * activate OSMO as TCH/H
9464 * does the BSC-located PCU socket get the updated INFO?
9465 * what if no PCU is connected at the time?
9466 * is the info correct on delayed PCU (re)connect?
9467 */
Harald Welte94e0c342018-04-07 11:33:23 +02009468
Neels Hofmeyr87857ec2021-04-25 16:17:47 +00009469private function f_TC_refuse_mode_modif_to_vamos(charstring id) runs on MSC_ConnHdlr {
9470 var PDU_BSSAP ass_cmd := f_gen_ass_req(g_pars.use_osmux);
9471 var template PDU_BSSAP exp_compl := f_gen_exp_compl(g_pars.use_osmux);
9472
9473 /* puzzle together the ASSIGNMENT REQ for given codec[s] */
9474 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
9475 ass_cmd.pdu.bssmap.assignmentRequest.codecList := g_pars.ass_codec_list;
9476 exp_compl.pdu.bssmap.assignmentComplete.speechCodec.codecElements[0] :=
9477 g_pars.ass_codec_list.codecElements[0];
9478 if (isvalue(g_pars.expect_mr_s0_s7)) {
9479 exp_compl.pdu.bssmap.assignmentComplete.speechCodec.codecElements[0].s0_7 :=
9480 g_pars.expect_mr_s0_s7;
9481 }
9482 }
9483 ass_cmd.pdu.bssmap.assignmentRequest.channelType :=
9484 f_BSSMAP_chtype_from_codec(g_pars.ass_codec_list.codecElements[0]);
9485 log("expecting ASS COMPL like this: ", exp_compl);
9486
9487 f_establish_fully(ass_cmd, exp_compl);
9488
Neels Hofmeyr8746b0d2021-06-01 17:25:39 +02009489 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 1 sub-slot 0 modify vamos tsc 2 3");
Neels Hofmeyr87857ec2021-04-25 16:17:47 +00009490
9491 var RSL_Message rsl;
9492
9493 timer T := 5.0;
9494 T.start;
9495 alt {
9496 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr)) -> value rsl {
9497 var PDU_ML3_NW_MS l3 := dec_PDU_ML3_NW_MS(rsl.ies[2].body.l3_info.payload);
9498 log("Rx L3 from net: ", l3);
9499 if (ischosen(l3.msgs.rrm.channelModeModify)) {
9500 setverdict(fail, "Mode Modify to VAMOS succeeded even though BTS does not support VAMOS");
9501 mtc.stop;
9502 }
9503 }
9504 [] RSL.receive(tr_RSL_MODE_MODIFY_REQ(g_chan_nr, ?)) -> value rsl {
9505 setverdict(fail, "Mode Modify to VAMOS succeeded even though BTS does not support VAMOS");
9506 mtc.stop;
9507 }
9508 [] T.timeout {
9509 /* The BTS does not exhibit BTS_FEAT_VAMOS, so no VAMOS related Mode Modify should happen. */
9510 setverdict(pass);
9511 }
9512 }
9513 T.stop;
9514}
9515
9516/* The BSC does *not* indicate BTS_FEAT_VAMOS; make sure that a channel Mode Modify to VAMOS mode is refused by
9517 * osmo-bsc. */
9518testcase TC_refuse_mode_modif_to_vamos() runs on test_CT {
9519 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9520 var MSC_ConnHdlr vc_conn;
9521
9522 f_init(1, true);
9523 f_sleep(1.0);
9524
9525 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
9526 vc_conn := f_start_handler(refers(f_TC_refuse_mode_modif_to_vamos), pars);
9527 vc_conn.done;
9528 f_shutdown_helper();
9529}
9530
9531/* The BSC does *not* indicate BTS_FEAT_VAMOS; make sure that a channel activation to VAMOS mode is refused by osmo-bsc.
9532 */
9533testcase TC_refuse_chan_act_to_vamos() runs on test_CT {
9534 f_init_vty();
9535
9536 f_init(1, false);
9537 f_sleep(1.0);
9538
9539 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 1 sub-slot 0 activate-vamos fr");
9540
9541 var ASP_RSL_Unitdata rx_rsl_ud;
9542 timer T := 5.0;
9543
9544 T.start;
9545 alt {
9546 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(?, IPAC_PROTO_RSL_TRX0)) -> value rx_rsl_ud {
9547 if (rx_rsl_ud.rsl.msg_type == RSL_MT_CHAN_ACTIV) {
9548 T.stop;
9549 setverdict(fail, "CHANnel ACTivate in VAMOS mode succeeded even though BTS does not support VAMOS");
9550 mtc.stop;
9551 }
9552 repeat;
9553 }
9554 [] T.timeout {
9555 /* The BTS does not exhibit BTS_FEAT_VAMOS, so no VAMOS related CHANnel ACTivate should happen. */
9556 setverdict(pass);
9557 }
9558 }
9559}
9560
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +00009561private function f_TC_reassignment_codec(charstring id) runs on MSC_ConnHdlr {
9562 /* First fully set up a speech lchan */
9563 f_TC_assignment_codec(id);
9564
9565 /* Trigger re-assignment to another lchan */
9566 var AssignmentState assignment_st := valueof(ts_AssignmentStateInit);
9567
9568 /* Re-Assignment should tell the MGW endpoint the new lchan's RTP address and port, so expecting to see exactly
9569 * one MDCX on MGCP. */
9570 g_media.mgcp_conn[0].mdcx_seen_exp := g_media.mgcp_conn[0].mdcx_seen_exp + 1;
9571
9572 /* The new lchan will see all-new IPAC_CRCX and IPAC_MDCX messages telling the BTS the same RTP address and port
9573 * as the old lchan used. */
9574 g_media.bts.ipa_crcx_seen := false;
9575 g_media.bts.ipa_mdcx_seen := false;
9576
9577 /* Send different BTS side RTP port number for the new lchan */
9578 g_media.bts.bts.port_nr := 4223;
9579
9580 f_rslem_register(0, valueof(ts_RslChanNr_Bm(2))); /* <-- FIXME: can we somehow infer the timeslot that will be used? */
9581
9582 /* Trigger re-assignment. */
9583 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot " & int2str(g_chan_nr.tn) & " sub-slot 0 assignment");
9584
9585 timer T := 5.0;
9586 T.start;
9587 alt {
9588 [] as_assignment(assignment_st);
9589 [] as_Media();
9590 [] T.timeout {
9591 break;
9592 }
9593 }
9594
9595 if (not assignment_st.assignment_done) {
9596 setverdict(fail, "Assignment did not complete");
9597 mtc.stop;
9598 }
9599
9600 f_check_mgcp_expectations()
9601 setverdict(pass);
9602
9603 f_sleep(2.0);
9604 log("show lchan summary: ", f_vty_transceive_ret(BSCVTY, "show lchan summary"));
9605
9606 /* Instruct BSC to clear channel */
9607 var BssmapCause cause := 0;
9608 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
9609 interleave {
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +00009610 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE)) {}
9611 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {}
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02009612 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +00009613 RSL.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
Neels Hofmeyre680b012021-07-22 19:19:09 +02009614 f_rslem_unregister(0, g_chan_nr);
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +00009615 }
9616 [] BSSAP.receive(tr_BSSMAP_ClearComplete) {
9617 BSSAP.send(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_REQ);
9618 }
9619 }
Neels Hofmeyr40a45d12021-09-23 22:57:12 +02009620 f_expect_dlcx_conns();
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +00009621
9622 f_sleep(0.5);
9623}
9624
9625testcase TC_reassignment_fr() runs on test_CT {
9626 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9627 var MSC_ConnHdlr vc_conn;
9628
9629 f_init(1, true);
9630 f_sleep(1.0);
9631
9632 f_ctrs_bsc_and_bts_init();
9633
9634 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
9635 vc_conn := f_start_handler(refers(f_TC_reassignment_codec), pars);
9636 vc_conn.done;
9637
9638 /* from f_establish_fully() */
9639 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
9640 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
9641 /* from re-assignment */
9642 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
9643 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
9644 f_ctrs_bsc_and_bts_verify();
9645 f_shutdown_helper();
9646}
9647
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009648const charstring REEST_LOST_CONNECTION := "REEST_LOST_CONNECTION";
9649const charstring REEST_CLEAR := "REEST_CLEAR";
9650const charstring REEST_CLEAR_DONE := "REEST_CLEAR_DONE";
9651
9652/* CM Re-Establishment, 3GPP TS 24.008 4.5.1.6.
9653 * The MS <-> BTS loses radio connection, MS shows up on second BTS and asks for CM Re-Establishment.
9654 * BSC should establish a separate A conn for the same MS, the original A conn is then cleared by
9655 * the MSC as the CM Re-Establishment is handled.
9656 *
9657 * MS bts0 bts1 bsc msc test-component
9658 * |<----->|<----------------->|<-0-->| _1 Establish channel on bts 0
9659 * | | _1 wait a bit, to settle down
9660 * |<-x x--| | _1 "lose connection"
9661 * | | REEST_LOST_CONNECTION
9662 * |----------------->|------->|--1-->| _2 new A-conn: Chan Rqd, Imm Ass, Compl L3 with CM Re-Establishment Req
9663 * | | REEST_CLEAR
9664 * | |<-0---| _1 Clear Command on first A-conn
9665 * | |--0-->| _1 Clear Complete
9666 * | |<----------------->| | _1 Release first channel
9667 * | | REEST_CLEAR_DONE
9668 * |<-----------------|<-------|<-1---| _2 Chan Activ, Assignment Command
9669 * |<-----------------|<-------|<-1---| _2 Clear Command, Release
9670 *
9671 */
9672private function f_tc_cm_reestablishment_1(charstring id) runs on MSC_ConnHdlr {
9673 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
9674 var PDU_BSSAP ass_cmd := f_gen_ass_req();
9675
9676 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
9677 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
9678
9679 f_establish_fully(ass_cmd, exp_compl);
9680
9681 /* The original channel loses connection, MS attemts CM Re-Establishment on another cell, see
9682 * f_tc_cm_reestablishment_2(). This established channel stays active until MSC sends a Clear Command. The time
9683 * when exactly that happens is determined by f_tc_cm_reestablishment_2(). */
9684 f_sleep(2.0);
9685 COORD.send(REEST_LOST_CONNECTION);
9686
9687 alt {
9688 [] COORD.receive(REEST_CLEAR);
9689 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {
9690 setverdict(fail, "Unexpected channel release");
9691 mtc.stop;
9692 }
9693 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
9694 setverdict(fail, "Unexpected channel release");
9695 mtc.stop;
9696 }
9697 }
9698 f_perform_clear()
9699 f_expect_dlcx_conns();
Neels Hofmeyr969abd02021-09-23 22:24:08 +02009700 f_create_mgcp_delete_ep(g_media.mgcp_ep);
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009701 COORD.send(REEST_CLEAR_DONE);
9702}
9703
9704private function f_tc_cm_reestablishment_2(charstring id) runs on MSC_ConnHdlr {
9705 f_MscConnHdlr_init(g_pars.media_nr, host_bts, host_mgw_mgcp, FR_AMR);
9706
9707 /* The MS lost the connection on the first channel, now establishes another one */
9708 COORD.receive(REEST_LOST_CONNECTION);
9709
9710 var MobileIdentityLV mi := valueof(ts_MI_IMSI_LV(g_pars.imsi));
9711 var PDU_ML3_MS_NW l3_info := valueof(ts_CM_REESTABL_REQ(mi));
9712 var octetstring l3_enc := enc_PDU_ML3_MS_NW(l3_info);
9713
9714 f_create_bssmap_exp(l3_enc);
Neels Hofmeyrc7b1f6d2021-07-20 23:21:36 +02009715 RSL_Emulation.f_chan_est(g_pars.ra, l3_enc, g_pars.link_id, g_pars.fn, rsl_pt := RSL1, rsl_proc_pt := RSL1_PROC);
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009716 BSSAP.receive(tr_BSSMAP_ComplL3(l3_enc));
9717
9718 /* MSC got the CM Re-Establishment request and first off clears the previous conn. */
9719 COORD.send(REEST_CLEAR);
9720 COORD.receive(REEST_CLEAR_DONE);
9721
9722 f_sleep(2.0);
9723
9724 /* Answer the CM Re-Establishment with an Assignment Command. */
9725 var template PDU_BSSAP expect_assignment_compl := f_gen_exp_compl();
9726 var PDU_BSSAP ass_cmd := f_gen_ass_req();
9727 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
9728 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
9729
9730 var AssignmentState st := valueof(ts_AssignmentStateInit);
9731 st.voice_call := true;
9732 st.is_assignment := true;
9733
9734 var ExpectCriteria mgcpcrit := {
9735 connid := omit,
9736 endpoint := omit,
9737 transid := omit
9738 };
9739 f_create_mgcp_expect(mgcpcrit);
9740
Neels Hofmeyrc7b1f6d2021-07-20 23:21:36 +02009741 f_rslem_dchan_queue_enable(RSL1_PROC);
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009742
9743 BSSAP.send(ass_cmd);
9744
9745 var PDU_BSSAP bssap;
9746
9747 alt {
Neels Hofmeyrc7b1f6d2021-07-20 23:21:36 +02009748 [] as_assignment(st, rsl_pt := RSL1, rsl_proc_pt := RSL1_PROC);
9749 [] as_Media_ipacc(RSL1, RSL2);
9750 [] as_Media_mgw();
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009751 [st.assignment_done] BSSAP.receive(expect_assignment_compl) {
9752 break;
9753 }
9754 }
9755
9756 f_sleep(3.0);
9757
9758 f_logp(BSCVTY, "f_tc_cm_reestablishment_2 clearing");
Neels Hofmeyrc7b1f6d2021-07-20 23:21:36 +02009759 f_perform_clear(RSL1, RSL1_PROC);
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009760 f_expect_dlcx_conns();
9761}
9762
9763testcase TC_cm_reestablishment() runs on test_CT {
9764 var TestHdlrParams pars1 := f_gen_test_hdlr_pars();
9765 var MSC_ConnHdlr vc_conn1;
9766
9767 var TestHdlrParams pars2 := f_gen_test_hdlr_pars();
9768 var MSC_ConnHdlr vc_conn2;
9769 pars2.imsi := pars1.imsi;
9770 pars2.media_nr := 2;
Neels Hofmeyrbf720202021-10-02 12:58:24 +02009771 pars2.expect_tsc := BTS_TSC[1];
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009772
9773 f_init(2, true, guard_timeout := 40.0);
9774 f_sleep(1.0);
9775
9776 vc_conn1 := f_start_handler_create(pars1);
9777 vc_conn2 := f_start_handler_create(pars2);
9778 connect(vc_conn1:COORD, vc_conn2:COORD);
9779 f_start_handler_run(vc_conn1, refers(f_tc_cm_reestablishment_1), pars1);
9780 f_start_handler_run(vc_conn2, refers(f_tc_cm_reestablishment_2), pars2);
9781 vc_conn1.done;
9782 vc_conn2.done;
9783
9784 f_shutdown_helper();
9785}
Neels Hofmeyr87857ec2021-04-25 16:17:47 +00009786
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009787function f_exp_ipa_rx_nonfatal(integer bts_nr, template (present) RSL_Message t_rx, float t_secs := 2.0,
9788 IpaStreamId sid := IPAC_PROTO_RSL_TRX0, boolean ignore_other_rx := true)
9789runs on test_CT return template (omit) RSL_Message {
9790 var ASP_RSL_Unitdata rx_rsl_ud;
9791 timer T := t_secs;
9792
9793 T.start;
9794 alt {
9795 [] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(t_rx, sid)) -> value rx_rsl_ud {
9796 T.stop;
9797 }
9798 [ignore_other_rx] IPA_RSL[bts_nr].receive { repeat; }
9799 [not ignore_other_rx] IPA_RSL[bts_nr].receive {
9800 log("f_exp_ipa_rx_nonfatal(): Got different message than ", t_rx);
9801 T.stop;
9802 return omit;
9803 }
9804 [] T.timeout {
9805 return omit;
9806 }
9807 }
9808 return rx_rsl_ud.rsl;
9809}
9810
9811private function f_vty_set_imm_ass(TELNETasp_PT pt, BtsNr bts_nr := 0, charstring imm_ass_setting := "post-chan-ack") {
9812 f_vty_enter_cfg_bts(pt, bts_nr);
9813 f_vty_transceive(pt, "immediate-assignment " & imm_ass_setting);
9814 f_vty_transceive(pt, "exit");
9815 f_vty_transceive(pt, "exit");
9816 f_vty_transceive(pt, "exit");
9817}
9818
9819private function f_verify_imm_ass(RSL_Message imm_ass, template uint8_t ra := ?, template GsmFrameNumber fn := ?,
Neels Hofmeyr07603cf2021-09-07 19:05:52 +02009820 template RslChannelNr chan_nr := ?,
9821 template (present) uint12_t arfcn := ?,
9822 template (present) uint3_t tsc := ?)
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009823{
9824 var RSL_IE_Body full_imm_ass_info;
9825 if (not f_rsl_find_ie(imm_ass, RSL_IE_FULL_IMM_ASS_INFO, full_imm_ass_info)) {
9826 setverdict(fail, "RSL Full Immediate Assign Info IE is absent");
9827 mtc.stop;
9828 }
9829
9830 var GsmRrMessage rr_imm_ass := dec_GsmRrMessage(full_imm_ass_info.full_imm_ass_info.payload);
9831 var template GsmRrMessage expect_imm_ass := tr_IMM_ASS(ra := ra,
9832 fn := fn,
Neels Hofmeyr07603cf2021-09-07 19:05:52 +02009833 ch_desc := tr_ChanDescH0(chan_nr, arfcn, tsc),
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009834 page_mode := ?);
9835 if (not match(rr_imm_ass, expect_imm_ass)) {
9836 log("Error: expected ", expect_imm_ass, " got ", rr_imm_ass);
9837 setverdict(fail, "Failed to match Immediate Assignment");
9838 mtc.stop;
9839 }
9840}
9841
9842testcase TC_imm_ass_post_chan_ack() runs on test_CT {
9843 var RSL_Message chan_act;
9844 var RSL_Message imm_ass;
9845
9846 f_init(1, false);
9847 f_sleep(1.0);
9848
9849 /* (should be the default anyway, just to make things clear) */
9850 f_vty_set_imm_ass(BSCVTY, 0, "post-chan-ack");
9851
9852 /* RA containing reason=LU */
9853 var GsmFrameNumber fn := 2342;
9854 var uint8_t ra := 2;
9855 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(ra, 1), fn));
9856
9857 chan_act := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
9858
9859 /* First send the Chan Act ACK */
9860 var RslChannelNr chan_nr := chan_act.ies[0].body.chan_nr;
Neels Hofmeyr07603cf2021-09-07 19:05:52 +02009861 var RSL_IE_Body chan_ident_ie;
9862 if (not f_rsl_find_ie(chan_act, RSL_IE_CHAN_IDENT, chan_ident_ie)) {
9863 setverdict(fail, "RSL Channel Identification IE is absent");
9864 mtc.stop;
9865 }
9866
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009867 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, fn + 10));
9868
9869 /* Then expect the Immediate Assignment, after we ACKed the chan act */
9870 imm_ass := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
9871
Neels Hofmeyr07603cf2021-09-07 19:05:52 +02009872 f_verify_imm_ass(imm_ass, ra, fn, chan_nr, chan_ident_ie.chan_ident.ch_desc.v.arfcn,
9873 chan_ident_ie.chan_ident.ch_desc.v.tsc);
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009874
9875 /* Check that the lchan is working */
9876 var octetstring l3 := '00010203040506'O;
9877 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
9878
9879 var BSSAP_N_CONNECT_ind rx_c_ind;
9880 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
9881 BSSAP.send(ts_BSSAP_CONNECT_res(rx_c_ind.connectionId));
9882
9883 f_sleep(1.0);
9884 f_shutdown_helper();
9885}
9886
9887testcase TC_imm_ass_pre_chan_ack() runs on test_CT {
9888 var RSL_Message chan_act;
9889 var RSL_Message imm_ass;
9890
9891 f_init(1, false);
9892 f_sleep(1.0);
9893
9894 f_vty_set_imm_ass(BSCVTY, 0, "pre-chan-ack");
9895
9896 /* RA containing reason=LU */
9897 var GsmFrameNumber fn := 2342;
9898 var uint8_t ra := 2;
9899 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(ra, 1), fn));
9900
9901 /* (set bts 0 cfg back to default) */
9902 f_vty_set_imm_ass(BSCVTY);
9903
9904 chan_act := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
9905 var RslChannelNr chan_nr := chan_act.ies[0].body.chan_nr;
Neels Hofmeyr07603cf2021-09-07 19:05:52 +02009906 var RSL_IE_Body chan_ident_ie;
9907 if (not f_rsl_find_ie(chan_act, RSL_IE_CHAN_IDENT, chan_ident_ie)) {
9908 setverdict(fail, "RSL Channel Identification IE is absent");
9909 mtc.stop;
9910 }
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009911
9912 /* *FIRST* expect the Immediate Assignment, before we ACK the chan act */
9913 imm_ass := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
Neels Hofmeyr07603cf2021-09-07 19:05:52 +02009914 f_verify_imm_ass(imm_ass, ra, fn, chan_nr, chan_ident_ie.chan_ident.ch_desc.v.arfcn,
9915 chan_ident_ie.chan_ident.ch_desc.v.tsc);
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009916
9917 /* Only now send the Chan Act ACK */
9918 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, fn+10));
9919
9920 /* Check that the lchan is working */
9921 var octetstring l3 := '00010203040506'O;
9922 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
9923
9924 var BSSAP_N_CONNECT_ind rx_c_ind;
9925 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
9926 BSSAP.send(ts_BSSAP_CONNECT_res(rx_c_ind.connectionId));
9927
9928 f_sleep(1.0);
9929 f_shutdown_helper();
9930}
9931
Neels Hofmeyr23158742021-09-07 19:08:07 +02009932testcase TC_imm_ass_pre_ts_ack() runs on test_CT {
9933 var RSL_Message chan_act;
9934 var RSL_Message imm_ass;
9935
9936 f_init(1, false);
9937 f_sleep(1.0);
9938
9939 f_vty_set_imm_ass(BSCVTY, 0, "pre-ts-ack");
9940
9941 /* RA containing reason=LU */
9942 var GsmFrameNumber fn := 2342;
9943 var uint8_t ra := 2;
9944 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(ra, 1), fn));
9945
9946 /* (set bts 0 cfg back to default) */
9947 f_vty_set_imm_ass(BSCVTY);
9948
9949 chan_act := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
9950 var RslChannelNr chan_nr := chan_act.ies[0].body.chan_nr;
9951 var RSL_IE_Body chan_ident_ie;
9952 if (not f_rsl_find_ie(chan_act, RSL_IE_CHAN_IDENT, chan_ident_ie)) {
9953 setverdict(fail, "RSL Channel Identification IE is absent");
9954 mtc.stop;
9955 }
9956
9957 /* *FIRST* expect the Immediate Assignment, before we ACK the chan act */
9958 imm_ass := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
9959 f_verify_imm_ass(imm_ass, ra, fn, chan_nr, chan_ident_ie.chan_ident.ch_desc.v.arfcn,
9960 chan_ident_ie.chan_ident.ch_desc.v.tsc);
9961
9962 /* Only now send the Chan Act ACK */
9963 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, fn+10));
9964
9965 /* Check that the lchan is working */
9966 var octetstring l3 := '00010203040506'O;
9967 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
9968
9969 var BSSAP_N_CONNECT_ind rx_c_ind;
9970 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
9971 BSSAP.send(ts_BSSAP_CONNECT_res(rx_c_ind.connectionId));
9972
9973 f_sleep(1.0);
9974 f_shutdown_helper();
9975}
9976
Neels Hofmeyr7a6d0602021-08-07 04:23:50 +02009977testcase TC_imm_ass_pre_chan_ack_dyn_ts() runs on test_CT {
9978 /* change Timeslot 6 before f_init() starts RSL */
9979 f_init_vty();
9980 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_PDCH");
9981 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
9982
9983 f_init(1, false);
9984 f_sleep(1.0);
9985
9986 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(6));
9987 /* The BSC will activate the dynamic PDCH by default, so confirm that */
9988 f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(chan_nr, ?));
9989 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, 2323));
9990
9991 /* clean up timeslot 6 config, will only take effect when the OML drops the next time */
9992 f_ts_set_chcomb(0, 0, 6, "PDCH");
9993
9994 /* block all static timeslots so that the dyn TS will be used */
9995 f_disable_all_tch_f();
9996 f_disable_all_tch_h();
9997 f_disable_all_sdcch();
9998
9999 var RSL_Message chan_act;
10000 var RSL_Message imm_ass;
10001
10002 f_init(1, false);
10003 f_sleep(1.0);
10004
10005 f_vty_set_imm_ass(BSCVTY, 0, "pre-chan-ack");
10006
10007 /* RA containing reason=LU */
10008 var GsmFrameNumber fn := 2342;
10009 var uint8_t ra := 2;
10010 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(ra, 1), fn));
10011
10012 /* (set bts 0 cfg back to default) */
10013 f_vty_set_imm_ass(BSCVTY);
10014
10015 /* Expect the dyn TS to deactivate PDCH first */
10016 f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(chan_nr));
10017 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(chan_nr));
10018
10019 /* Now activation as SDCCH8 */
10020 chan_nr := valueof(t_RslChanNr_SDCCH8(tn := 6, sub_slot := 0));
10021
10022 chan_act := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
Neels Hofmeyr07603cf2021-09-07 19:05:52 +020010023 var RSL_IE_Body chan_ident_ie;
10024 if (not f_rsl_find_ie(chan_act, RSL_IE_CHAN_IDENT, chan_ident_ie)) {
10025 setverdict(fail, "RSL Channel Identification IE is absent");
10026 mtc.stop;
10027 }
Neels Hofmeyr7a6d0602021-08-07 04:23:50 +020010028
10029 /* *FIRST* expect the Immediate Assignment, before we ACK the chan act */
10030 imm_ass := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
Neels Hofmeyr07603cf2021-09-07 19:05:52 +020010031 f_verify_imm_ass(imm_ass, ra, fn, chan_nr, chan_ident_ie.chan_ident.ch_desc.v.arfcn,
10032 chan_ident_ie.chan_ident.ch_desc.v.tsc);
Neels Hofmeyr7a6d0602021-08-07 04:23:50 +020010033
10034 /* Only now send the Chan Act ACK */
10035 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, fn+10));
10036
10037 /* Check that the lchan is working */
10038 var octetstring l3 := '00010203040506'O;
10039 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
10040
10041 var BSSAP_N_CONNECT_ind rx_c_ind;
10042 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
10043 BSSAP.send(ts_BSSAP_CONNECT_res(rx_c_ind.connectionId));
10044
10045 f_sleep(1.0);
10046 f_shutdown_helper();
10047}
10048
Neels Hofmeyrc8b95c12021-08-07 04:24:02 +020010049testcase TC_imm_ass_pre_ts_ack_dyn_ts() runs on test_CT {
10050 /* change Timeslot 6 before f_init() starts RSL */
10051 f_init_vty();
10052 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_PDCH");
10053 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
10054
10055 f_init(1, false);
10056 f_sleep(1.0);
10057
10058 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(6));
10059 /* The BSC will activate the dynamic PDCH by default, so confirm that */
10060 f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(chan_nr, ?));
10061 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, 2323));
10062
10063 /* clean up timeslot 6 config, will only take effect when the OML drops the next time */
10064 f_ts_set_chcomb(0, 0, 6, "PDCH");
10065
10066 /* block all static timeslots so that the dyn TS will be used */
10067 f_disable_all_tch_f();
10068 f_disable_all_tch_h();
10069 f_disable_all_sdcch();
10070
10071 var RSL_Message chan_act;
10072 var RSL_Message imm_ass;
10073
10074 f_init(1, false);
10075 f_sleep(1.0);
10076
10077 f_vty_set_imm_ass(BSCVTY, 0, "pre-ts-ack");
10078
10079 /* RA containing reason=LU */
10080 var GsmFrameNumber fn := 2342;
10081 var uint8_t ra := 2;
10082 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(ra, 1), fn));
10083
10084 /* (set bts 0 cfg back to default) */
10085 f_vty_set_imm_ass(BSCVTY);
10086
10087 /* Expect the dyn TS to deactivate PDCH first */
10088 f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(chan_nr));
10089
10090 /* And already the Immediate Assignment even before the PDCH Deact ACK */
10091 imm_ass := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
10092
10093 /* continue the Osmo style PDCH Deact (usual chan rel) */
10094 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(chan_nr));
10095
10096 /* Now activation as SDCCH8 */
10097 chan_nr := valueof(t_RslChanNr_SDCCH8(tn := 6, sub_slot := 0));
10098
10099 chan_act := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
Neels Hofmeyr07603cf2021-09-07 19:05:52 +020010100 var RSL_IE_Body chan_ident_ie;
10101 if (not f_rsl_find_ie(chan_act, RSL_IE_CHAN_IDENT, chan_ident_ie)) {
10102 setverdict(fail, "RSL Channel Identification IE is absent");
10103 mtc.stop;
10104 }
Neels Hofmeyrc8b95c12021-08-07 04:24:02 +020010105 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, fn+10));
10106
Neels Hofmeyr07603cf2021-09-07 19:05:52 +020010107 f_verify_imm_ass(imm_ass, ra, fn, chan_nr, chan_ident_ie.chan_ident.ch_desc.v.arfcn,
10108 chan_ident_ie.chan_ident.ch_desc.v.tsc);
Neels Hofmeyrc8b95c12021-08-07 04:24:02 +020010109
10110 /* Check that the lchan is working */
10111 var octetstring l3 := '00010203040506'O;
10112 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
10113
10114 var BSSAP_N_CONNECT_ind rx_c_ind;
10115 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
10116 BSSAP.send(ts_BSSAP_CONNECT_res(rx_c_ind.connectionId));
10117
10118 f_sleep(1.0);
10119 f_shutdown_helper();
10120}
10121
Neels Hofmeyr5d7d13f2021-09-07 14:44:36 +020010122/* GET and SET the bts.N.trx.M.rf_locked CTRL variable */
10123testcase TC_ctrl_trx_rf_locked() runs on test_CT {
10124 var MSC_ConnHdlr vc_conn;
10125
10126 f_init(nr_bts := 2, handler_mode := true, nr_msc := 1);
10127 f_sleep(1.0);
10128
10129 /* BTS 0, 1, 2 are OML unlocked, only BTS 0, 1 are actually connected to RSL. */
10130 f_ctrl_get_exp(IPA_CTRL, "rf_states",
10131 "0,0,operational,unlocked,on,rsl-up;" &
10132 "1,0,operational,unlocked,on,rsl-up;" &
10133 "2,0,operational,unlocked,on,rsl-down;" &
10134 "3,0,inoperational,locked,on,rsl-down;");
10135
10136 f_logp(BSCVTY, "TC_ctrl_trx_rf_locked: lock BTS 1 TRX 0");
10137 f_ctrl_set(IPA_CTRL, "bts.1.trx.0.rf_locked", "1");
10138 /* give it a moment to settle the FSM status */
10139 f_sleep(1.0);
10140
10141 /* Now BTS 1 TRX 0 should reflect "locked". Note the RF policy stays "on", because this is still handled
10142 * globally in osmo-bsc. Probably after sending "rf_locked 1" for a TRX, that TRX should reflect an RF policy
10143 * of "off"? But that's for a future patch if at all. */
10144 f_ctrl_get_exp(IPA_CTRL, "rf_states",
10145 "0,0,operational,unlocked,on,rsl-up;" &
10146 "1,0,operational,locked,on,rsl-up;" &
10147 "2,0,operational,unlocked,on,rsl-down;" &
10148 "3,0,inoperational,locked,on,rsl-down;");
10149
10150 f_logp(BSCVTY, "TC_ctrl_trx_rf_locked: lock the already locked TRX, nothing should change");
10151 f_ctrl_set(IPA_CTRL, "bts.1.trx.0.rf_locked", "1");
10152 f_sleep(1.0);
10153 f_ctrl_get_exp(IPA_CTRL, "rf_states",
10154 "0,0,operational,unlocked,on,rsl-up;" &
10155 "1,0,operational,locked,on,rsl-up;" &
10156 "2,0,operational,unlocked,on,rsl-down;" &
10157 "3,0,inoperational,locked,on,rsl-down;");
10158
10159 f_logp(BSCVTY, "TC_ctrl_trx_rf_locked: unlock BTS 1 TRX 0");
10160 f_ctrl_set(IPA_CTRL, "bts.1.trx.0.rf_locked", "0");
10161 f_sleep(1.0);
10162 f_ctrl_get_exp(IPA_CTRL, "rf_states",
10163 "0,0,operational,unlocked,on,rsl-up;" &
10164 "1,0,operational,unlocked,on,rsl-up;" &
10165 "2,0,operational,unlocked,on,rsl-down;" &
10166 "3,0,inoperational,locked,on,rsl-down;");
10167
10168 f_logp(BSCVTY, "TC_ctrl_trx_rf_locked: unlock an already unlocked TRX, nothing should change");
10169 f_ctrl_set(IPA_CTRL, "bts.0.trx.0.rf_locked", "0");
10170 f_sleep(1.0);
10171 f_ctrl_get_exp(IPA_CTRL, "rf_states",
10172 "0,0,operational,unlocked,on,rsl-up;" &
10173 "1,0,operational,unlocked,on,rsl-up;" &
10174 "2,0,operational,unlocked,on,rsl-down;" &
10175 "3,0,inoperational,locked,on,rsl-down;");
10176
10177 f_logp(BSCVTY, "TC_ctrl_trx_rf_locked: unlock an inoperational TRX");
10178 f_ctrl_set(IPA_CTRL, "bts.3.trx.0.rf_locked", "0");
10179 f_sleep(1.0);
10180 f_ctrl_get_exp(IPA_CTRL, "rf_states",
10181 "0,0,operational,unlocked,on,rsl-up;" &
10182 "1,0,operational,unlocked,on,rsl-up;" &
10183 "2,0,operational,unlocked,on,rsl-down;" &
10184 "3,0,inoperational,locked,on,rsl-down;");
10185
10186 f_shutdown_helper();
10187}
10188
Neels Hofmeyr92cfa1c2021-09-28 18:29:44 +020010189/* Reproduce a segfault happening when the SDCCH (primary) lchan is lost in-between a TCH Channel Activ and its Channel
10190 * Activ Ack (SYS#5627). */
10191private function f_TC_lost_sdcch_during_assignment(charstring id) runs on MSC_ConnHdlr {
10192 var PDU_BSSAP ass_cmd := f_gen_ass_req();
10193 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
10194 ass_cmd.pdu.bssmap.assignmentRequest.codecList := g_pars.ass_codec_list;
10195 }
10196 ass_cmd.pdu.bssmap.assignmentRequest.channelType :=
10197 f_BSSMAP_chtype_from_codec(g_pars.ass_codec_list.codecElements[0]);
10198
10199 var BSSMAP_FIELD_CodecType codecType;
10200 codecType := valueof(ass_cmd.pdu.bssmap.assignmentRequest.codecList.codecElements[0].codecType);
10201
10202 f_MscConnHdlr_init(g_pars.media_nr, host_bts, host_mgw_mgcp, codecType);
10203
10204 /* First establish a signalling lchan */
10205 f_create_chan_and_exp();
10206 f_rslem_dchan_queue_enable();
10207
10208 /* we should now have a COMPL_L3 at the MSC */
10209 var template PDU_BSSAP exp_l3_compl;
10210 exp_l3_compl := tr_BSSMAP_ComplL3()
10211 if (g_pars.aoip == false) {
10212 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := omit;
10213 } else {
10214 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := ?;
10215 }
10216 timer T := 10.0;
10217 T.start;
10218 alt {
10219 [] BSSAP.receive(exp_l3_compl);
10220 [] BSSAP.receive(tr_BSSMAP_ComplL3) {
10221 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Received non-matching COMPLETE LAYER 3 INFORMATION");
10222 }
10223 [] T.timeout {
10224 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for COMPLETE LAYER 3 INFORMATION");
10225 }
10226 }
10227
10228 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
10229 activate(as_Media_mgw());
10230
10231 var RslChannelNr chan_nr := { u := { ch0 := RSL_CHAN_NR_Bm_ACCH }, tn := 1 };
10232 f_rslem_register(0, chan_nr);
10233
10234 f_rslem_set_auto_chan_act_ack(RSL_PROC, false);
10235 BSSAP.send(ass_cmd);
10236
10237
10238 /* Wait for the Channel Activ for the TCH channel */
10239 var ASP_RSL_Unitdata rx_rsl_ud;
10240 RSL.receive(tr_ASP_RSL_UD(tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV), sid := ?)) -> value rx_rsl_ud;
10241
10242 /* make the original SDCCH disappear */
10243 RSL.send(ts_RSL_REL_IND(g_chan_nr, valueof(ts_RslLinkID_DCCH(0))));
10244
10245 /* and ACK the TCH channel activation. This caused a segfault up to OsmoBSC 1.7.0 (SYS#5627) */
10246 RSL.send(ts_ASP_RSL_UD(ts_RSL_CHAN_ACT_ACK(chan_nr, 23), rx_rsl_ud.streamId));
10247
10248 interleave {
10249 [] BSSAP.receive(tr_BSSMAP_AssignmentFail);
10250 [] BSSAP.receive(tr_BSSMAP_ClearRequest);
10251 }
10252
10253 BSSAP.send(ts_BSSMAP_ClearCommand(0));
10254 BSSAP.receive(tr_BSSMAP_ClearComplete);
10255 BSSAP.send(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_REQ);
10256
10257 var MgcpCommand mgcp;
10258 MGCP.receive(tr_DLCX()) -> value mgcp {
10259 MGCP.send(ts_DLCX_ACK2(mgcp.line.trans_id));
10260 };
10261
10262 f_sleep(0.5);
10263}
10264testcase TC_lost_sdcch_during_assignment() runs on test_CT {
10265 var TestHdlrParams pars := f_gen_test_hdlr_pars();
10266 var MSC_ConnHdlr vc_conn;
10267
10268 f_init(1, true);
10269 f_sleep(1.0);
10270
10271 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
10272 vc_conn := f_start_handler(refers(f_TC_lost_sdcch_during_assignment), pars);
10273 vc_conn.done;
10274
10275 f_shutdown_helper();
10276}
10277
Harald Welte28d943e2017-11-25 15:00:50 +010010278control {
Harald Welte898113b2018-01-31 18:32:21 +010010279 /* CTRL interface testing */
Harald Welte4003d112017-12-09 22:35:39 +010010280 execute( TC_ctrl_msc_connection_status() );
Stefan Sperlingb041b3d2018-01-03 17:14:55 +010010281 execute( TC_ctrl_msc0_connection_status() );
Neels Hofmeyrf65ce872021-09-23 18:40:10 +020010282 /* In SCCPlite tests, only one MSC is configured. These tests assume that three MSCs are configured, so only run
10283 * these in the AoIP test suite. */
10284 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
10285 execute( TC_stat_num_msc_connected_1() );
10286 execute( TC_stat_num_msc_connected_2() );
10287 execute( TC_stat_num_msc_connected_3() );
10288 }
Neels Hofmeyr5ce3ae42021-08-29 15:32:00 +020010289 execute( TC_stat_num_bts_connected_1() );
10290 execute( TC_stat_num_bts_connected_2() );
10291 execute( TC_stat_num_bts_connected_3() );
Harald Welte96c94412017-12-09 03:12:45 +010010292 execute( TC_ctrl() );
Neels Hofmeyrf246a922020-05-13 02:27:10 +020010293 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_SCCPlite_SERVER) {
Pau Espin Pedrol5a2d7432019-06-07 19:43:45 +020010294 execute( TC_ctrl_location() );
10295 }
Harald Welte898113b2018-01-31 18:32:21 +010010296
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +020010297 execute( TC_si_default() );
Neels Hofmeyr66aeba42020-07-06 02:21:21 +020010298 execute( TC_si2quater_2_earfcns() );
10299 execute( TC_si2quater_3_earfcns() );
10300 execute( TC_si2quater_4_earfcns() );
10301 execute( TC_si2quater_5_earfcns() );
10302 execute( TC_si2quater_6_earfcns() );
Neels Hofmeyrad132f22020-07-08 02:20:16 +020010303 execute( TC_si2quater_12_earfcns() );
10304 execute( TC_si2quater_23_earfcns() );
10305 execute( TC_si2quater_32_earfcns() );
10306 execute( TC_si2quater_33_earfcns() );
10307 execute( TC_si2quater_42_earfcns() );
10308 execute( TC_si2quater_48_earfcns() );
10309 execute( TC_si2quater_49_earfcns() );
Pau Espin Pedrol85a84432020-07-20 18:45:03 +020010310 execute( TC_si_acc_rotate() );
Alexander Couzens4ad3a352020-09-10 22:29:12 +020010311 execute( TC_si_acc_ramp_rotate() );
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +020010312
Harald Welte898113b2018-01-31 18:32:21 +010010313 /* RSL DCHAN Channel ACtivation / Deactivation */
Harald Welteae026692017-12-09 01:03:01 +010010314 execute( TC_chan_act_noreply() );
Harald Welte4003d112017-12-09 22:35:39 +010010315 execute( TC_chan_act_counter() );
Harald Welteae026692017-12-09 01:03:01 +010010316 execute( TC_chan_act_ack_noest() );
Philipp Maier9c60a622020-07-09 15:08:46 +020010317 execute( TC_chan_act_ack_noest_emerg() );
Philipp Maier606f07d2020-08-12 17:21:58 +020010318 execute( TC_chan_rqd_emerg_deny() );
Harald Welteae026692017-12-09 01:03:01 +010010319 execute( TC_chan_act_ack_est_ind_noreply() );
10320 execute( TC_chan_act_ack_est_ind_refused() );
Harald Welte618ef642017-12-14 14:58:20 +010010321 execute( TC_chan_act_nack() );
Harald Welte799c97b2017-12-14 17:50:30 +010010322 execute( TC_chan_exhaustion() );
Vadim Yanitskiy1ff1fdf2018-11-27 01:32:57 +070010323 execute( TC_chan_deact_silence() );
Harald Welte4003d112017-12-09 22:35:39 +010010324 execute( TC_chan_rel_rll_rel_ind() );
10325 execute( TC_chan_rel_conn_fail() );
10326 execute( TC_chan_rel_hard_clear() );
Pau Espin Pedrol841b90d2021-04-15 16:42:52 +020010327 execute( TC_chan_rel_last_eutran_plmn_hard_clear_no_csfb() );
10328 execute( TC_chan_rel_last_eutran_plmn_hard_clear_csfb() );
Harald Welte99787102019-02-04 10:41:36 +010010329 execute( TC_chan_rel_hard_clear_csfb() );
Harald Welted8c36cd2017-12-09 23:05:31 +010010330 execute( TC_chan_rel_hard_rlsd() );
Harald Welte550daf92018-06-11 19:22:13 +020010331 execute( TC_chan_rel_hard_rlsd_ms_dead() );
Harald Welte85804d42017-12-10 14:11:58 +010010332 execute( TC_chan_rel_a_reset() );
Pau Espin Pedrolc675b612020-01-09 19:55:40 +010010333 execute( TC_chan_rel_sccp_tiar_timeout() );
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +020010334 execute( TC_chan_rel_rr_cause() );
Harald Welte6f521d82017-12-11 19:52:02 +010010335
Harald Weltecfe2c962017-12-15 12:09:32 +010010336 execute( TC_outbound_connect() );
Harald Welte898113b2018-01-31 18:32:21 +010010337
10338 /* Assignment related */
Harald Welte16a4adf2017-12-14 18:54:01 +010010339 execute( TC_assignment_cic_only() );
Harald Welte235ebf12017-12-15 14:18:16 +010010340 execute( TC_assignment_csd() );
10341 execute( TC_assignment_ctm() );
10342 execute( TC_assignment_sign() );
Pau Espin Pedrol07866632020-09-03 19:10:55 +020010343 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
10344 execute( TC_assignment_aoip_tla_v6() );
10345 }
Harald Welte235ebf12017-12-15 14:18:16 +010010346 execute( TC_assignment_fr_a5_0() );
10347 execute( TC_assignment_fr_a5_1() );
Neels Hofmeyrf246a922020-05-13 02:27:10 +020010348 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
Harald Welte8f67d1d2018-05-25 20:38:42 +020010349 execute( TC_assignment_fr_a5_1_codec_missing() );
10350 }
Harald Welte235ebf12017-12-15 14:18:16 +010010351 execute( TC_assignment_fr_a5_3() );
Neels Hofmeyr0d8ec532021-06-11 00:09:48 +020010352 execute( TC_assignment_fr_a5_4() );
Neels Hofmeyr0faeb7a2021-06-10 23:59:35 +020010353 execute( TC_assignment_fr_a5_4_fail() );
Neels Hofmeyr04d6e6a2021-06-11 00:10:02 +020010354 execute( TC_assignment_fr_a5_not_sup() );
Harald Welte3c86ea02018-05-10 22:28:05 +020010355 execute( TC_ciph_mode_a5_0() );
10356 execute( TC_ciph_mode_a5_1() );
Oliver Smith50b98122021-07-09 15:00:28 +020010357 execute( TC_ciph_mode_a5_2_0() );
Oliver Smith1dff88d2021-07-09 08:45:51 +020010358 execute( TC_ciph_mode_a5_2_1() );
Harald Welte3c86ea02018-05-10 22:28:05 +020010359 execute( TC_ciph_mode_a5_3() );
Neels Hofmeyr81ad27f2021-06-11 00:09:40 +020010360 execute( TC_ciph_mode_a5_4() );
Harald Welte16a4adf2017-12-14 18:54:01 +010010361
Harald Welte60aa5762018-03-21 19:33:13 +010010362 execute( TC_assignment_codec_fr() );
Neels Hofmeyr559d5d02021-04-16 16:50:49 +020010363 execute( TC_assignment_codec_fr_by_mode_modify() );
Harald Welte60aa5762018-03-21 19:33:13 +010010364 execute( TC_assignment_codec_hr() );
10365 execute( TC_assignment_codec_efr() );
10366 execute( TC_assignment_codec_amr_f() );
10367 execute( TC_assignment_codec_amr_h() );
Philipp Maier8a581d22019-03-26 18:32:48 +010010368
Neels Hofmeyrf246a922020-05-13 02:27:10 +020010369 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
Philipp Maier8a581d22019-03-26 18:32:48 +010010370 execute( TC_assignment_codec_amr_f_S1() );
10371 execute( TC_assignment_codec_amr_h_S1() );
10372 execute( TC_assignment_codec_amr_f_S124() );
10373 execute( TC_assignment_codec_amr_h_S124() );
10374 execute( TC_assignment_codec_amr_f_S0() );
10375 execute( TC_assignment_codec_amr_f_S02() );
10376 execute( TC_assignment_codec_amr_f_S024() );
10377 execute( TC_assignment_codec_amr_f_S0247() );
10378 execute( TC_assignment_codec_amr_h_S0() );
10379 execute( TC_assignment_codec_amr_h_S02() );
10380 execute( TC_assignment_codec_amr_h_S024() );
10381 execute( TC_assignment_codec_amr_h_S0247() );
10382 execute( TC_assignment_codec_amr_f_S01234567() );
10383 execute( TC_assignment_codec_amr_f_S0234567() );
10384 execute( TC_assignment_codec_amr_f_zero() );
10385 execute( TC_assignment_codec_amr_f_unsupp() );
10386 execute( TC_assignment_codec_amr_h_S7() );
Neels Hofmeyr21863562020-11-26 00:34:33 +000010387 execute( TC_assignment_codec_amr_f_start_mode_auto() );
10388 execute( TC_assignment_codec_amr_h_start_mode_auto() );
Neels Hofmeyr3eb94562020-11-26 02:40:26 +000010389 execute( TC_assignment_codec_amr_f_start_mode_4() );
10390 execute( TC_assignment_codec_amr_h_start_mode_4() );
Neels Hofmeyr454d7922020-11-26 02:24:57 +000010391 execute( TC_assignment_codec_amr_startmode_cruft() );
Philipp Maier8a581d22019-03-26 18:32:48 +010010392 }
Harald Welte60aa5762018-03-21 19:33:13 +010010393
Philipp Maierac09bfc2019-01-08 13:41:39 +010010394 execute( TC_assignment_codec_fr_exhausted_req_hr() );
10395 execute( TC_assignment_codec_fr_exhausted_req_fr() );
10396 execute( TC_assignment_codec_fr_exhausted_req_fr_hr() );
10397 execute( TC_assignment_codec_fr_exhausted_req_hr_fr() );
10398 execute( TC_assignment_codec_hr_exhausted_req_fr() );
10399 execute( TC_assignment_codec_hr_exhausted_req_hr() );
10400 execute( TC_assignment_codec_hr_exhausted_req_hr_fr() );
10401 execute( TC_assignment_codec_hr_exhausted_req_fr_hr() );
10402 execute( TC_assignment_codec_req_hr_fr() );
10403 execute( TC_assignment_codec_req_fr_hr() );
Pau Espin Pedrol14475352021-07-22 15:48:16 +020010404 execute( TC_assignment_sdcch_exhausted_req_signalling() );
10405 execute( TC_assignment_sdcch_exhausted_req_signalling_tch_forbidden() );
10406 execute( TC_assignment_sdcch_exhausted_req_voice_tch_forbidden() );
Philipp Maierac09bfc2019-01-08 13:41:39 +010010407
Pau Espin Pedrol23510fb2021-07-20 17:00:38 +020010408 execute( TC_assignment_osmux() );
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +020010409
Harald Welte898113b2018-01-31 18:32:21 +010010410 /* RLL Establish Indication on inactive DCHAN / SAPI */
Harald Welte5cd20ed2017-12-13 21:03:20 +010010411 execute( TC_rll_est_ind_inact_lchan() );
10412 execute( TC_rll_est_ind_inval_sapi1() );
10413 execute( TC_rll_est_ind_inval_sapi3() );
10414 execute( TC_rll_est_ind_inval_sacch() );
10415
Vadim Yanitskiy61f784a2020-10-01 21:12:19 +070010416 /* DLCI / RSL Link ID conversion for MO/MT messages on SAPI0/SAPI3 */
10417 execute( TC_tch_dlci_link_id_sapi() );
10418
Vadim Yanitskiy6ef5dfa2020-08-28 18:04:41 +070010419 /* SAPI N Reject triggered by RLL establishment failures */
10420 execute( TC_rll_rel_ind_sapi_n_reject() );
10421 execute( TC_rll_err_ind_sapi_n_reject() );
10422 execute( TC_rll_timeout_sapi_n_reject() );
10423
Harald Welte898113b2018-01-31 18:32:21 +010010424 /* Paging related tests */
Harald Welte6f521d82017-12-11 19:52:02 +010010425 execute( TC_paging_imsi_nochan() );
10426 execute( TC_paging_tmsi_nochan() );
10427 execute( TC_paging_tmsi_any() );
10428 execute( TC_paging_tmsi_sdcch() );
10429 execute( TC_paging_tmsi_tch_f() );
10430 execute( TC_paging_tmsi_tch_hf() );
10431 execute( TC_paging_imsi_nochan_cgi() );
10432 execute( TC_paging_imsi_nochan_lac_ci() );
10433 execute( TC_paging_imsi_nochan_ci() );
10434 execute( TC_paging_imsi_nochan_lai() );
10435 execute( TC_paging_imsi_nochan_lac() );
10436 execute( TC_paging_imsi_nochan_all() );
Harald Welte751d3eb2018-01-31 15:51:06 +010010437 execute( TC_paging_imsi_nochan_plmn_lac_rnc() );
10438 execute( TC_paging_imsi_nochan_rnc() );
10439 execute( TC_paging_imsi_nochan_lac_rnc() );
10440 execute( TC_paging_imsi_nochan_lacs() );
10441 execute( TC_paging_imsi_nochan_lacs_empty() );
Stefan Sperling049a86e2018-03-20 15:51:00 +010010442 execute( TC_paging_imsi_nochan_cgi_unknown_cid() );
Harald Welte10985002017-12-12 09:29:15 +010010443 execute( TC_paging_imsi_a_reset() );
Harald Weltee65d40e2017-12-13 00:09:06 +010010444 execute( TC_paging_imsi_load() );
Philipp Maier779a7922018-02-16 11:00:37 +010010445 execute( TC_paging_counter() );
Pau Espin Pedrol3466cc52018-11-05 12:41:05 +010010446 execute( TC_paging_resp_unsol() );
Harald Welte4e9b9cc2017-12-14 18:31:02 +010010447
10448 execute( TC_rsl_drop_counter() );
Stefan Sperling830dc9d2018-02-12 21:08:28 +010010449 execute( TC_rsl_unknown_unit_id() );
10450
10451 execute( TC_oml_unknown_unit_id() );
Harald Welte898113b2018-01-31 18:32:21 +010010452
10453 execute( TC_classmark() );
Harald Welteeddf0e92020-06-21 19:42:15 +020010454 execute( TC_common_id() );
Harald Welte898113b2018-01-31 18:32:21 +010010455 execute( TC_unsol_ass_fail() );
Harald Welteea99a002018-01-31 20:46:43 +010010456 execute( TC_unsol_ass_compl() );
Harald Weltefbf9b5e2018-01-31 20:41:23 +010010457 execute( TC_unsol_ho_fail() );
Harald Weltee3bd6582018-01-31 22:51:25 +010010458 execute( TC_err_82_short_msg() );
Harald Weltee9e02e42018-01-31 23:36:25 +010010459 execute( TC_err_84_unknown_msg() );
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +010010460
Harald Welte261af4b2018-02-12 21:20:39 +010010461 execute( TC_ho_int() );
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +020010462 execute( TC_ho_int_a5_0() );
10463 execute( TC_ho_int_a5_1() );
10464 execute( TC_ho_int_a5_3() );
10465 execute( TC_ho_int_a5_4() );
Neels Hofmeyr5f144212020-11-03 15:41:58 +000010466 execute( TC_ho_int_radio_link_failure() );
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +010010467
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +010010468 execute( TC_ho_out_of_this_bsc() );
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +020010469 execute( TC_ho_out_fail_no_msc_response() );
10470 execute( TC_ho_out_fail_rr_ho_failure() );
Neels Hofmeyrd8a602c2019-07-09 19:46:01 +020010471 execute( TC_ho_out_fail_no_result_after_ho_cmd() );
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +010010472
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +010010473 execute( TC_ho_into_this_bsc() );
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +020010474 execute( TC_ho_into_this_bsc_a5_0() );
10475 execute( TC_ho_into_this_bsc_a5_1() );
10476 execute( TC_ho_into_this_bsc_a5_3() );
10477 execute( TC_ho_into_this_bsc_a5_4() );
Pau Espin Pedrol07866632020-09-03 19:10:55 +020010478 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
10479 execute( TC_ho_into_this_bsc_tla_v6() );
10480 }
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +020010481 execute( TC_srvcc_eutran_to_geran() );
Pau Espin Pedrol35801c32021-04-19 13:03:20 +020010482 execute( TC_srvcc_eutran_to_geran_ho_out() );
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +020010483 execute( TC_srvcc_eutran_to_geran_forbid_fast_return() );
10484 execute( TC_srvcc_eutran_to_geran_ho_out_forbid_fast_return() );
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +010010485 execute( TC_ho_in_fail_msc_clears() );
10486 execute( TC_ho_in_fail_msc_clears_after_ho_detect() );
10487 execute( TC_ho_in_fail_no_detect() );
10488 execute( TC_ho_in_fail_no_detect2() );
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +010010489
Neels Hofmeyr91401012019-07-11 00:42:35 +020010490 execute( TC_ho_neighbor_config_1() );
10491 execute( TC_ho_neighbor_config_2() );
10492 execute( TC_ho_neighbor_config_3() );
10493 execute( TC_ho_neighbor_config_4() );
10494 execute( TC_ho_neighbor_config_5() );
10495 execute( TC_ho_neighbor_config_6() );
10496 execute( TC_ho_neighbor_config_7() );
10497
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +010010498 execute( TC_bssap_rlsd_does_not_cause_bssmap_reset() );
Neels Hofmeyr4ff93282018-03-12 04:25:35 +010010499 execute( TC_bssmap_clear_does_not_cause_bssmap_reset() );
Neels Hofmeyrfd445c32018-03-09 15:39:31 +010010500 execute( TC_ms_rel_ind_does_not_cause_bssmap_reset() );
Harald Welte94e0c342018-04-07 11:33:23 +020010501
10502 execute( TC_dyn_pdch_ipa_act_deact() );
10503 execute( TC_dyn_pdch_ipa_act_nack() );
10504 execute( TC_dyn_pdch_osmo_act_deact() );
10505 execute( TC_dyn_pdch_osmo_act_nack() );
Pau Espin Pedrole076b3f2021-07-20 16:45:57 +020010506 if (mp_enable_dyn_sdcch8_test) {
10507 execute( TC_dyn_ts_sdcch8_act_deact() );
10508 execute (TC_dyn_ts_sdcch8_tch_call_act_deact() );
10509 execute( TC_dyn_ts_sdcch8_act_nack() );
10510 }
Harald Welte99f3ca02018-06-14 13:40:29 +020010511
Stefan Sperling0796a822018-10-05 13:01:39 +020010512 execute( TC_chopped_ipa_ping() );
Stefan Sperlingaa1e60f2018-10-15 16:34:07 +020010513 execute( TC_chopped_ipa_payload() );
Stefan Sperling0796a822018-10-05 13:01:39 +020010514
Pau Espin Pedrol8f773632019-11-05 11:46:53 +010010515 /* Power control related */
10516 execute( TC_assignment_verify_ms_power_params_ie() );
Vadim Yanitskiy4b233042021-06-30 00:58:43 +020010517 execute( TC_c0_power_red_mode() );
Neels Hofmeyr4f118412020-06-04 15:25:10 +020010518
10519 /* MSC pooling */
10520 /* FIXME: in SCCPlite, indicating how many MSCs should be connected does currently not work. Since
10521 * RESET->RESET-ACK is unconditionally negotiated for all configured MSCs, they always all appear as connected
10522 * to osmo-bsc. The MSC pooling tests however require disconnecting selected MSCs, and hence don't work out as
10523 * intended on SCCPlite. So for now, run these only for SCCP/M3UA. */
10524 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
10525 execute( TC_mscpool_L3Compl_on_1_msc() );
10526 execute( TC_mscpool_L3Complete_by_imsi_round_robin() );
10527 execute( TC_mscpool_LU_by_tmsi_null_nri_0_round_robin() );
10528 execute( TC_mscpool_LU_by_tmsi_null_nri_1_round_robin() );
10529 execute( TC_mscpool_L3Complete_by_tmsi_unassigned_nri_round_robin() );
10530 execute( TC_mscpool_L3Complete_by_tmsi_valid_nri_msc_not_connected_round_robin() );
10531 execute( TC_mscpool_L3Complete_by_tmsi_valid_nri_1() );
10532 execute( TC_mscpool_L3Complete_by_tmsi_valid_nri_2() );
10533 execute( TC_mscpool_LU_by_tmsi_from_other_PLMN() );
10534 execute( TC_mscpool_paging_and_response_imsi() );
10535 execute( TC_mscpool_paging_and_response_tmsi() );
10536 execute( TC_mscpool_no_allow_attach_round_robin() );
10537 execute( TC_mscpool_no_allow_attach_valid_nri() );
10538 }
10539
Harald Welte99f3ca02018-06-14 13:40:29 +020010540 execute( TC_early_conn_fail() );
10541 execute( TC_late_conn_fail() );
Oliver Smithaf03bef2021-08-24 15:34:51 +020010542 execute( TC_stats_conn_fail() );
Harald Welte99f3ca02018-06-14 13:40:29 +020010543
Philipp Maier783681c2020-07-16 16:47:06 +020010544 /* Emergency call handling (deny / allow) */
10545 execute( TC_assignment_emerg_setup_allow() );
10546 execute( TC_assignment_emerg_setup_deny_msc() );
10547 execute( TC_assignment_emerg_setup_deny_bts() );
Philipp Maier82812002020-08-13 18:48:27 +020010548 execute( TC_emerg_premption() );
10549
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +070010550 /* Frequency hopping parameters handling */
10551 execute( TC_fh_params_chan_activ() );
10552 execute( TC_fh_params_imm_ass() );
Vadim Yanitskiyaeb54a22020-09-01 06:25:25 +070010553 execute( TC_fh_params_assignment_cmd() );
Vadim Yanitskiy8f5430d2020-09-02 18:51:38 +070010554 execute( TC_fh_params_handover_cmd() );
Vadim Yanitskiyca974032020-09-01 07:20:39 +070010555 execute( TC_fh_params_si4_cbch() );
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +020010556
10557 if (mp_enable_lcs_tests) {
10558 execute( TC_lcs_loc_req_for_active_ms() );
10559 execute( TC_lcs_loc_req_for_active_ms_ta_req() );
10560 execute( TC_lcs_loc_req_for_idle_ms() );
10561 execute( TC_lcs_loc_req_no_subscriber() );
10562 execute( TC_lcs_loc_req_for_active_ms_le_timeout() );
10563 execute( TC_lcs_loc_req_for_active_ms_le_timeout2() );
10564 execute( TC_lcs_loc_req_for_idle_ms_no_pag_resp() );
10565 execute( TC_cm_service_during_lcs_loc_req() );
10566 execute( TC_ho_during_lcs_loc_req() );
10567 }
Neels Hofmeyrbf037052020-10-28 22:52:02 +000010568
10569 execute( TC_no_msc() );
Neels Hofmeyr87857ec2021-04-25 16:17:47 +000010570
10571 execute( TC_refuse_chan_act_to_vamos() );
10572 execute( TC_refuse_mode_modif_to_vamos() );
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +000010573
10574 execute( TC_reassignment_fr() );
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +020010575
10576 execute( TC_cm_reestablishment() );
Neels Hofmeyrb07b2952021-08-07 04:23:14 +020010577
10578 execute( TC_imm_ass_post_chan_ack() );
10579 execute( TC_imm_ass_pre_chan_ack() );
Neels Hofmeyr23158742021-09-07 19:08:07 +020010580 execute( TC_imm_ass_pre_ts_ack() );
Neels Hofmeyr7a6d0602021-08-07 04:23:50 +020010581 execute( TC_imm_ass_pre_chan_ack_dyn_ts() );
Neels Hofmeyrc8b95c12021-08-07 04:24:02 +020010582 execute( TC_imm_ass_pre_ts_ack_dyn_ts() );
Neels Hofmeyr5d7d13f2021-09-07 14:44:36 +020010583
10584 execute( TC_ctrl_trx_rf_locked() );
Neels Hofmeyr92cfa1c2021-09-28 18:29:44 +020010585
10586 execute( TC_lost_sdcch_during_assignment() );
Harald Welte28d943e2017-11-25 15:00:50 +010010587}
10588
10589}